#
# TABLE STRUCTURE FOR: sma_addresses
#

DROP TABLE IF EXISTS `sma_addresses`;

CREATE TABLE `sma_addresses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `company_id` int(11) NOT NULL,
  `line1` varchar(50) NOT NULL,
  `line2` varchar(50) DEFAULT NULL,
  `city` varchar(25) NOT NULL,
  `postal_code` varchar(20) DEFAULT NULL,
  `state` varchar(25) NOT NULL,
  `country` varchar(50) NOT NULL,
  `phone` varchar(50) DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `company_id` (`company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_adjustment_items
#

DROP TABLE IF EXISTS `sma_adjustment_items`;

CREATE TABLE `sma_adjustment_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `adjustment_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `option_id` int(11) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `type` varchar(20) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `adjustment_id` (`adjustment_id`)
) ENGINE=MyISAM AUTO_INCREMENT=854 DEFAULT CHARSET=utf8;

INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (6, 6, 165, NULL, '15.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (7, 7, 9, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (8, 8, 13, NULL, '15.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (9, 9, 17, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (10, 10, 19, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (11, 11, 18, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (12, 12, 15, NULL, '9.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (13, 13, 95, NULL, '9.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (14, 14, 210, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (15, 15, 111, NULL, '14.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (16, 16, 110, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (17, 17, 124, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (18, 18, 157, NULL, '23.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (19, 19, 75, NULL, '279.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (20, 20, 119, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (21, 21, 116, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (22, 21, 117, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (23, 21, 118, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (24, 22, 78, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (25, 23, 107, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (26, 24, 147, NULL, '13.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (27, 25, 147, NULL, '15.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (28, 26, 102, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (29, 27, 102, NULL, '4.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (30, 28, 129, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (31, 29, 121, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (32, 30, 100, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (33, 31, 100, NULL, '5.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (34, 32, 99, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (35, 33, 159, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (36, 34, 160, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (37, 35, 108, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (38, 35, 109, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (39, 36, 7, NULL, '8.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (40, 37, 114, NULL, '6.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (41, 38, 114, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (42, 39, 113, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (43, 40, 39, NULL, '6.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (44, 40, 38, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (45, 41, 39, NULL, '9.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (46, 42, 40, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (47, 43, 165, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (48, 44, 44, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (49, 45, 35, NULL, '12.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (50, 46, 28, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (51, 47, 33, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (52, 48, 32, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (53, 49, 43, NULL, '36.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (54, 50, 21, NULL, '8.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (55, 51, 60, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (56, 52, 58, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (57, 53, 12, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (58, 54, 153, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (59, 55, 6, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (60, 56, 3, NULL, '40.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (61, 57, 154, NULL, '19.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (62, 58, 156, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (63, 59, 81, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (64, 60, 5, NULL, '35.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (65, 61, 92, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (66, 62, 77, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (67, 63, 76, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (68, 64, 84, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (69, 64, 86, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (70, 64, 88, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (71, 64, 85, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (72, 64, 89, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (73, 64, 91, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (74, 64, 83, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (75, 65, 84, NULL, '6.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (76, 66, 88, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (77, 67, 85, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (78, 68, 83, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (79, 69, 195, NULL, '34.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (80, 70, 255, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (81, 71, 93, NULL, '29.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (82, 72, 14, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (83, 73, 31, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (84, 74, 214, NULL, '5.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (85, 75, 47, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (86, 76, 66, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (87, 77, 14, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (88, 78, 148, NULL, '8.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (89, 78, 149, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (90, 79, 22, NULL, '15.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (91, 80, 70, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (92, 81, 59, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (93, 82, 162, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (94, 83, 162, NULL, '10.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (95, 84, 261, NULL, '5.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (96, 85, 105, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (97, 86, 67, NULL, '8.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (98, 87, 67, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (99, 88, 55, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (100, 89, 244, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (101, 90, 210, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (102, 91, 257, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (103, 92, 74, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (104, 93, 74, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (105, 94, 195, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (106, 95, 8, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (107, 96, 154, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (108, 97, 32, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (109, 98, 240, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (110, 99, 11, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (111, 100, 179, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (112, 101, 91, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (113, 102, 78, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (114, 103, 45, NULL, '13.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (115, 104, 179, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (116, 105, 216, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (117, 106, 262, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (118, 107, 51, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (119, 108, 4, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (120, 109, 27, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (121, 110, 41, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (122, 110, 42, NULL, '50.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (123, 111, 49, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (124, 112, 36, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (125, 112, 80, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (126, 113, 9, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (127, 114, 62, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (128, 115, 48, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (129, 116, 37, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (130, 117, 30, NULL, '8.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (131, 118, 80, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (132, 119, 62, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (133, 120, 71, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (134, 121, 270, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (135, 122, 105, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (136, 123, 153, NULL, '14.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (137, 124, 116, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (138, 125, 95, NULL, '20.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (139, 126, 117, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (140, 127, 165, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (141, 128, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (142, 129, 11, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (143, 130, 195, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (144, 131, 63, NULL, '14.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (145, 132, 98, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (146, 133, 62, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (147, 134, 71, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (148, 135, 152, NULL, '20.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (149, 136, 22, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (150, 137, 227, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (151, 138, 55, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (152, 139, 262, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (153, 140, 33, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (154, 141, 68, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (155, 142, 43, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (156, 143, 111, NULL, '8.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (157, 144, 46, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (158, 145, 82, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (159, 146, 64, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (160, 147, 52, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (161, 148, 90, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (162, 149, 75, NULL, '296.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (163, 150, 60, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (164, 151, 72, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (165, 152, 59, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (166, 153, 59, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (167, 154, 61, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (168, 155, 13, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (169, 156, 3, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (170, 156, 58, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (171, 157, 4, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (172, 158, 6, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (173, 159, 2, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (174, 160, 74, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (175, 161, 93, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (176, 162, 212, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (177, 163, 14, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (178, 164, 109, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (179, 165, 88, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (180, 166, 38, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (181, 167, 57, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (182, 168, 104, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (183, 169, 45, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (184, 170, 126, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (185, 171, 12, NULL, '20.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (186, 172, 69, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (187, 173, 16, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (188, 174, 110, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (189, 175, 219, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (190, 176, 195, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (191, 177, 108, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (192, 178, 35, NULL, '17.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (193, 179, 272, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (194, 180, 94, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (195, 181, 65, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (196, 182, 70, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (197, 183, 131, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (198, 184, 67, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (199, 185, 141, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (200, 186, 164, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (201, 187, 214, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (202, 188, 13, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (203, 188, 206, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (204, 188, 191, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (205, 188, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (206, 188, 23, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (207, 189, 261, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (208, 190, 261, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (209, 191, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (210, 191, 13, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (211, 191, 23, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (212, 191, 166, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (213, 191, 206, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (214, 191, 199, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (215, 192, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (216, 193, 165, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (217, 194, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (218, 194, 72, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (219, 194, 206, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (220, 194, 13, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (221, 194, 175, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (222, 194, 167, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (223, 194, 266, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (224, 194, 241, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (225, 194, 67, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (226, 194, 261, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (227, 194, 21, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (228, 194, 25, NULL, '18.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (229, 194, 162, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (230, 194, 264, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (231, 194, 11, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (232, 194, 199, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (233, 194, 333, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (234, 195, 333, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (235, 196, 331, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (236, 197, 183, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (237, 198, 6, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (238, 199, 9, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (239, 199, 51, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (240, 199, 248, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (241, 199, 13, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (242, 199, 191, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (243, 199, 241, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (244, 199, 59, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (245, 199, 17, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (246, 199, 57, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (247, 200, 154, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (248, 201, 13, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (249, 201, 171, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (250, 201, 191, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (251, 201, 57, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (252, 201, 243, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (253, 201, 162, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (254, 201, 25, NULL, '15.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (255, 201, 67, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (256, 202, 304, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (257, 202, 261, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (258, 202, 47, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (259, 202, 84, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (260, 202, 153, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (261, 202, 349, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (262, 203, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (263, 203, 334, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (264, 203, 192, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (265, 203, 298, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (266, 203, 221, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (267, 203, 144, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (268, 204, 230, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (269, 205, 230, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (270, 206, 9, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (271, 206, 13, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (272, 206, 306, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (273, 206, 21, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (274, 206, 43, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (275, 206, 65, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (276, 206, 171, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (277, 207, 341, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (278, 207, 193, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (279, 207, 93, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (280, 207, 313, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (281, 207, 60, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (282, 207, 218, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (283, 207, 336, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (284, 207, 95, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (285, 207, 298, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (286, 207, 338, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (287, 207, 294, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (288, 207, 340, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (289, 207, 72, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (290, 207, 195, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (291, 207, 241, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (292, 207, 314, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (293, 207, 337, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (294, 207, 34, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (295, 208, 290, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (296, 208, 194, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (297, 208, 317, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (298, 208, 96, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (299, 208, 209, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (300, 208, 219, NULL, '9.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (301, 208, 208, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (302, 209, 20, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (303, 209, 18, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (304, 209, 15, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (305, 210, 255, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (306, 210, 35, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (307, 210, 9, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (308, 210, 200, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (309, 210, 17, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (310, 211, 366, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (311, 212, 43, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (312, 213, 125, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (313, 214, 47, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (314, 214, 43, NULL, '9.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (315, 214, 15, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (316, 215, 340, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (317, 215, 335, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (318, 215, 341, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (319, 215, 166, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (320, 216, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (321, 217, 341, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (322, 218, 65, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (323, 219, 341, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (324, 220, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (325, 220, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (326, 220, 17, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (327, 220, 360, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (328, 220, 262, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (329, 221, 48, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (330, 221, 208, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (331, 221, 153, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (332, 221, 367, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (333, 221, 321, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (334, 221, 332, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (335, 221, 349, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (336, 222, 276, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (337, 223, 246, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (338, 223, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (339, 223, 166, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (340, 223, 66, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (341, 224, 158, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (342, 225, 166, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (343, 225, 241, NULL, '13.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (344, 225, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (345, 225, 21, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (346, 225, 66, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (347, 226, 303, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (348, 226, 306, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (349, 226, 335, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (350, 226, 17, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (351, 226, 349, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (352, 226, 55, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (353, 226, 356, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (354, 227, 45, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (355, 227, 145, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (356, 228, 9, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (357, 228, 19, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (358, 228, 290, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (359, 228, 335, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (360, 228, 339, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (361, 229, 373, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (362, 230, 293, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (363, 230, 288, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (364, 230, 290, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (365, 231, 395, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (366, 231, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (367, 231, 246, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (368, 231, 66, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (369, 231, 62, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (370, 232, 166, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (371, 232, 360, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (372, 232, 162, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (373, 233, 25, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (374, 233, 162, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (375, 233, 13, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (376, 233, 22, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (377, 234, 312, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (378, 234, 194, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (379, 234, 36, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (380, 234, 13, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (381, 234, 347, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (382, 235, 13, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (383, 235, 371, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (384, 235, 21, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (385, 235, 162, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (386, 235, 179, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (387, 235, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (388, 235, 317, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (389, 235, 335, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (390, 236, 290, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (391, 237, 54, NULL, '8.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (392, 237, 243, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (393, 237, 9, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (394, 237, 171, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (395, 238, 367, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (396, 238, 384, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (397, 238, 22, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (398, 238, 35, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (399, 239, 29, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (400, 239, 47, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (401, 239, 17, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (402, 239, 15, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (403, 239, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (404, 240, 22, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (405, 241, 291, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (406, 242, 22, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (407, 242, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (408, 242, 306, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (409, 242, 166, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (410, 242, 165, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (411, 242, 367, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (412, 242, 193, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (413, 242, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (414, 242, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (415, 242, 371, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (416, 242, 329, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (417, 242, 243, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (418, 242, 162, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (419, 243, 3, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (420, 243, 8, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (421, 243, 394, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (422, 243, 290, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (423, 243, 230, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (424, 243, 288, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (425, 243, 383, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (426, 243, 385, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (427, 243, 126, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (428, 243, 386, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (429, 243, 293, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (430, 243, 156, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (431, 243, 314, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (432, 243, 214, NULL, '3.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (433, 243, 317, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (434, 243, 216, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (435, 243, 172, NULL, '4.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (436, 243, 52, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (437, 243, 194, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (438, 243, 218, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (439, 243, 219, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (440, 243, 192, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (441, 243, 217, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (442, 244, 271, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (443, 244, 270, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (444, 244, 269, NULL, '4.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (445, 245, 153, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (446, 246, 153, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (447, 247, 147, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (448, 248, 306, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (449, 248, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (450, 248, 21, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (451, 248, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (452, 248, 181, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (453, 248, 70, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (454, 248, 365, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (455, 249, 274, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (456, 250, 220, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (457, 250, 160, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (458, 250, 232, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (459, 250, 147, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (460, 250, 317, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (461, 250, 297, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (462, 251, 384, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (463, 251, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (464, 252, 351, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (465, 253, 166, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (466, 254, 47, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (467, 254, 65, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (468, 254, 63, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (469, 254, 317, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (470, 254, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (471, 254, 255, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (472, 254, 239, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (473, 254, 293, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (474, 255, 291, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (475, 255, 385, NULL, '9.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (476, 255, 386, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (477, 256, 306, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (478, 257, 397, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (479, 258, 53, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (480, 259, 268, NULL, '62.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (481, 260, 386, NULL, '7.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (482, 261, 36, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (483, 261, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (484, 261, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (485, 261, 22, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (486, 261, 424, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (487, 262, 165, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (488, 263, 31, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (489, 263, 22, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (490, 263, 166, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (491, 263, 162, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (492, 263, 332, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (493, 263, 184, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (494, 263, 346, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (495, 263, 39, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (496, 263, 172, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (497, 263, 320, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (498, 263, 309, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (499, 263, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (500, 263, 253, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (501, 263, 255, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (502, 263, 256, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (503, 263, 164, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (504, 264, 149, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (505, 265, 431, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (506, 265, 442, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (507, 265, 429, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (508, 265, 329, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (509, 265, 92, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (510, 266, 326, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (511, 266, 25, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (512, 266, 162, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (513, 267, 459, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (514, 268, 9, NULL, '13.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (515, 269, 36, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (516, 269, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (517, 270, 430, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (518, 270, 337, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (519, 271, 162, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (520, 271, 200, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (521, 271, 337, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (522, 272, 220, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (523, 273, 359, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (524, 274, 408, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (525, 275, 459, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (526, 276, 348, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (527, 277, 166, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (528, 277, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (529, 277, 287, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (530, 277, 113, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (531, 277, 19, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (532, 277, 370, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (533, 277, 396, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (534, 277, 319, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (535, 277, 428, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (536, 278, 354, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (537, 278, 245, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (538, 279, 434, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (539, 280, 441, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (540, 280, 22, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (541, 280, 165, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (542, 280, 25, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (543, 280, 31, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (544, 280, 36, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (545, 280, 245, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (546, 280, 361, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (547, 281, 384, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (548, 282, 164, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (549, 282, 165, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (550, 283, 50, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (551, 283, 9, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (552, 283, 430, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (553, 283, 17, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (554, 283, 435, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (555, 284, 435, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (556, 285, 9, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (557, 285, 239, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (558, 285, 51, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (559, 285, 195, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (560, 285, 71, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (561, 285, 338, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (562, 286, 423, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (563, 286, 317, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (564, 286, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (565, 286, 177, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (566, 286, 175, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (567, 286, 34, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (568, 286, 52, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (569, 286, 400, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (570, 286, 239, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (571, 286, 65, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (572, 287, 396, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (573, 287, 384, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (574, 287, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (575, 288, 71, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (576, 288, 360, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (577, 288, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (578, 288, 338, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (579, 289, 373, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (580, 289, 9, NULL, '24.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (581, 289, 166, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (582, 289, 65, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (583, 289, 22, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (584, 289, 384, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (585, 289, 47, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (586, 290, 11, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (587, 291, 165, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (588, 292, 220, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (589, 293, 282, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (590, 294, 166, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (591, 294, 162, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (592, 294, 173, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (593, 294, 312, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (594, 294, 319, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (595, 294, 14, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (596, 294, 354, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (597, 295, 446, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (598, 295, 498, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (599, 295, 28, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (600, 295, 14, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (601, 295, 354, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (602, 296, 166, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (603, 296, 435, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (604, 296, 430, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (605, 296, 165, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (606, 296, 292, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (607, 297, 319, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (608, 297, 312, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (611, 298, 407, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (610, 299, 406, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (612, 300, 254, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (613, 300, 166, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (614, 300, 477, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (615, 300, 400, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (616, 300, 395, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (617, 300, 51, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (618, 300, 399, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (619, 300, 429, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (620, 300, 319, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (621, 300, 381, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (622, 301, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (623, 302, 496, NULL, '15.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (631, 303, 287, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (630, 303, 429, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (629, 303, 427, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (628, 303, 428, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (632, 304, 195, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (633, 304, 65, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (634, 304, 47, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (635, 304, 317, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (636, 304, 442, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (637, 304, 165, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (638, 304, 319, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (639, 304, 445, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (640, 304, 254, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (641, 304, 312, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (642, 304, 34, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (654, 305, 385, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (653, 305, 319, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (652, 305, 396, NULL, '9.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (651, 305, 431, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (650, 305, 292, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (649, 305, 113, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (655, 306, 48, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (656, 306, 170, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (657, 306, 3, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (658, 306, 330, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (659, 306, 315, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (660, 306, 312, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (661, 306, 162, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (662, 306, 239, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (663, 306, 66, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (664, 306, 195, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (665, 306, 313, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (666, 307, 123, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (667, 307, 111, NULL, '35.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (668, 307, 110, NULL, '8.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (669, 307, 122, NULL, '12.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (670, 308, 412, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (671, 309, 503, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (672, 310, 459, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (673, 311, 313, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (674, 311, 431, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (675, 311, 306, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (676, 311, 154, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (677, 311, 70, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (678, 311, 47, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (679, 311, 66, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (680, 311, 262, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (681, 311, 287, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (682, 311, 315, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (683, 311, 429, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (684, 311, 256, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (685, 311, 492, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (686, 311, 323, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (687, 311, 445, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (688, 311, 162, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (689, 311, 19, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (690, 311, 460, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (700, 312, 195, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (699, 312, 470, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (698, 312, 427, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (697, 312, 429, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (696, 312, 494, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (701, 313, 533, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (702, 313, 195, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (703, 313, 428, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (704, 313, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (705, 313, 427, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (706, 313, 324, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (707, 313, 168, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (708, 313, 256, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (709, 314, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (710, 314, 427, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (711, 314, 325, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (712, 314, 533, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (713, 314, 195, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (714, 314, 396, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (715, 314, 170, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (716, 314, 326, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (717, 314, 293, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (718, 314, 389, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (719, 314, 31, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (720, 314, 46, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (721, 315, 470, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (722, 315, 264, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (723, 315, 164, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (724, 315, 158, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (725, 316, 315, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (726, 316, 428, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (727, 316, 427, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (728, 316, 256, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (729, 316, 481, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (730, 316, 195, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (731, 316, 498, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (732, 316, 170, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (733, 316, 3, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (734, 316, 374, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (735, 316, 389, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (736, 317, 78, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (737, 317, 222, NULL, '6.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (738, 317, 518, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (739, 317, 251, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (740, 318, 551, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (741, 318, 254, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (742, 318, 501, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (743, 318, 113, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (744, 318, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (745, 318, 35, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (746, 318, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (747, 318, 315, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (748, 318, 427, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (749, 318, 544, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (750, 318, 384, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (751, 318, 498, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (752, 318, 502, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (753, 318, 351, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (754, 318, 506, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (755, 318, 143, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (756, 318, 429, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (757, 319, 22, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (758, 319, 384, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (759, 320, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (760, 320, 429, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (761, 321, 311, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (762, 321, 442, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (763, 321, 535, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (764, 321, 198, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (765, 321, 351, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (766, 321, 120, NULL, '60.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (767, 321, 497, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (768, 321, 44, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (769, 322, 3, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (770, 322, 546, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (771, 322, 93, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (772, 322, 411, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (773, 322, 268, NULL, '1.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (774, 323, 427, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (775, 323, 428, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (776, 323, 429, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (777, 323, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (778, 323, 431, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (779, 324, 9, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (780, 324, 470, NULL, '5.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (781, 324, 413, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (782, 325, 9, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (783, 325, 145, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (784, 326, 563, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (785, 326, 540, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (786, 326, 321, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (787, 327, 486, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (788, 328, 582, NULL, '2.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (789, 329, 545, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (790, 329, 427, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (791, 329, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (792, 329, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (793, 329, 564, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (794, 329, 559, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (795, 329, 9, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (796, 329, 33, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (797, 329, 164, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (798, 329, 401, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (799, 329, 319, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (800, 329, 445, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (801, 329, 220, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (802, 330, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (803, 330, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (804, 331, 533, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (805, 331, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (806, 331, 254, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (807, 331, 342, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (808, 332, 590, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (809, 332, 428, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (810, 332, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (811, 332, 384, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (812, 332, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (813, 332, 472, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (814, 333, 494, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (815, 334, 9, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (816, 334, 445, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (817, 334, 36, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (818, 335, 404, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (819, 335, 579, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (820, 335, 580, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (821, 335, 568, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (822, 336, 462, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (823, 337, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (824, 337, 555, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (825, 337, 586, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (826, 338, 564, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (827, 338, 9, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (828, 338, 165, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (829, 338, 427, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (830, 338, 225, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (831, 338, 496, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (832, 339, 496, NULL, '10.0000', 2, '', 'addition');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (833, 339, 497, NULL, '10.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (834, 340, 107, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (835, 340, 396, NULL, '4.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (836, 340, 9, NULL, '7.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (837, 340, 385, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (838, 340, 506, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (839, 340, 425, NULL, '3.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (840, 340, 296, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (841, 340, 73, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (842, 340, 433, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (843, 340, 315, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (844, 341, 70, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (845, 341, 427, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (846, 342, 413, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (847, 342, 375, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (848, 342, 179, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (849, 343, 50, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (850, 343, 540, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (851, 343, 586, NULL, '2.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (852, 343, 256, NULL, '1.0000', 2, '', 'subtraction');
INSERT INTO `sma_adjustment_items` (`id`, `adjustment_id`, `product_id`, `option_id`, `quantity`, `warehouse_id`, `serial_no`, `type`) VALUES (853, 344, 541, NULL, '1.0000', 2, '', 'subtraction');


#
# TABLE STRUCTURE FOR: sma_adjustments
#

DROP TABLE IF EXISTS `sma_adjustments`;

CREATE TABLE `sma_adjustments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `note` text DEFAULT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `count_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=MyISAM AUTO_INCREMENT=345 DEFAULT CHARSET=utf8;

INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (6, '2022-03-14 19:49:00', '2022/03/0006', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (7, '2022-03-16 15:21:00', '2022/03/0007', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (8, '2022-03-16 15:25:00', '2022/03/0008', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (9, '2022-03-16 15:38:00', '2022/03/0009', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (10, '2022-03-16 15:45:00', '2022/03/0010', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (11, '2022-03-16 15:47:00', '2022/03/0011', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (12, '2022-03-16 15:53:00', '2022/03/0012', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (13, '2022-03-16 16:03:00', '2022/03/0013', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (14, '2022-03-16 16:14:00', '2022/03/0014', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (15, '2022-03-16 16:21:00', '2022/03/0015', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (16, '2022-03-16 16:23:00', '2022/03/0016', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (17, '2022-03-16 16:57:00', '2022/03/0017', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (18, '2022-03-16 17:11:00', '2022/03/0018', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (19, '2022-03-16 17:22:00', '2022/03/0019', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (20, '2022-03-16 17:24:00', '2022/03/0020', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (21, '2022-03-16 17:45:00', '2022/03/0021', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (22, '2022-03-16 17:46:00', '2022/03/0022', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (23, '2022-03-16 17:48:00', '2022/03/0023', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (24, '2022-03-16 17:56:00', '2022/03/0024', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (25, '2022-03-16 18:00:00', '2022/03/0025', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (26, '2022-03-16 18:04:00', '2022/03/0026', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (27, '2022-03-16 18:05:00', '2022/03/0027', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (28, '2022-03-16 18:06:00', '2022/03/0028', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (29, '2022-03-16 18:06:00', '2022/03/0029', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (30, '2022-03-16 18:16:00', '2022/03/0030', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (31, '2022-03-16 18:22:00', '2022/03/0031', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (32, '2022-03-16 18:22:00', '2022/03/0032', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (33, '2022-03-16 18:27:00', '2022/03/0033', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (34, '2022-03-16 18:32:00', '2022/03/0034', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (35, '2022-03-16 18:45:00', '2022/03/0035', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (36, '2022-03-16 18:47:00', '2022/03/0036', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (37, '2022-03-16 18:48:00', '2022/03/0037', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (38, '2022-03-16 18:48:00', '2022/03/0038', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (39, '2022-03-16 19:09:00', '2022/03/0039', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (40, '2022-03-16 19:12:00', '2022/03/0040', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (41, '2022-03-16 19:13:00', '2022/03/0041', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (42, '2022-03-16 19:14:00', '2022/03/0042', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (43, '2022-03-16 19:19:00', '2022/03/0043', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (44, '2022-03-16 19:23:00', '2022/03/0044', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (45, '2022-03-16 19:24:00', '2022/03/0045', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (46, '2022-03-16 19:52:00', '2022/03/0046', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (47, '2022-03-16 20:09:00', '2022/03/0047', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (48, '2022-03-16 20:21:00', '2022/03/0048', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (49, '2022-03-16 20:28:00', '2022/03/0049', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (50, '2022-03-16 20:30:00', '2022/03/0050', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (51, '2022-03-16 20:31:00', '2022/03/0051', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (52, '2022-03-16 20:32:00', '2022/03/0052', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (53, '2022-03-16 20:39:00', '2022/03/0053', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (54, '2022-03-17 12:29:00', '2022/03/0054', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (55, '2022-03-17 12:33:00', '2022/03/0055', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (56, '2022-03-17 12:34:00', '2022/03/0056', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (57, '2022-03-17 12:36:00', '2022/03/0057', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (58, '2022-03-17 12:37:00', '2022/03/0058', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (59, '2022-03-17 12:39:00', '2022/03/0059', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (60, '2022-03-17 12:44:00', '2022/03/0060', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (61, '2022-03-17 12:45:00', '2022/03/0061', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (62, '2022-03-17 12:47:00', '2022/03/0062', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (63, '2022-03-17 12:48:00', '2022/03/0063', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (64, '2022-03-17 12:51:00', '2022/03/0064', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (65, '2022-03-17 12:55:00', '2022/03/0065', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (66, '2022-03-17 12:58:00', '2022/03/0066', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (67, '2022-03-17 12:59:00', '2022/03/0067', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (68, '2022-03-17 12:59:00', '2022/03/0068', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (69, '2022-03-17 13:10:00', '2022/03/0069', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (70, '2022-03-17 13:35:00', '2022/03/0070', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (71, '2022-03-17 13:43:00', '2022/03/0071', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (72, '2022-03-17 13:47:00', '2022/03/0072', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (73, '2022-03-17 13:57:00', '2022/03/0073', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (74, '2022-03-17 13:59:00', '2022/03/0074', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (75, '2022-03-17 14:00:00', '2022/03/0075', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (76, '2022-03-17 14:03:00', '2022/03/0076', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (77, '2022-03-17 14:04:00', '2022/03/0077', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (78, '2022-03-17 14:10:00', '2022/03/0078', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (79, '2022-03-17 14:12:00', '2022/03/0079', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (80, '2022-03-17 14:23:00', '2022/03/0080', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (81, '2022-03-17 14:27:00', '2022/03/0081', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (82, '2022-03-17 14:31:00', '2022/03/0082', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (83, '2022-03-17 14:32:00', '2022/03/0083', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (84, '2022-03-17 14:40:00', '2022/03/0084', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (85, '2022-03-17 15:04:00', '2022/03/0085', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (86, '2022-03-17 15:05:00', '2022/03/0086', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (87, '2022-03-17 15:06:00', '2022/03/0087', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (88, '2022-03-17 15:16:00', '2022/03/0088', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (89, '2022-03-17 15:17:00', '2022/03/0089', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (90, '2022-03-17 15:18:00', '2022/03/0090', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (91, '2022-03-17 15:18:00', '2022/03/0091', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (92, '2022-03-17 15:19:00', '2022/03/0092', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (93, '2022-03-17 15:20:00', '2022/03/0093', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (94, '2022-03-17 15:20:00', '2022/03/0094', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (95, '2022-03-17 15:21:00', '2022/03/0095', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (96, '2022-03-17 15:21:00', '2022/03/0096', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (97, '2022-03-17 15:22:00', '2022/03/0097', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (98, '2022-03-17 15:22:00', '2022/03/0098', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (99, '2022-03-17 17:56:00', '2022/03/0099', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (100, '2022-03-17 18:11:00', '2022/03/0100', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (101, '2022-03-17 18:20:00', '2022/03/0101', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (102, '2022-03-17 18:38:00', '2022/03/0102', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (103, '2022-03-17 19:30:00', '2022/03/0103', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (104, '2022-03-17 20:03:00', '2022/03/0104', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (105, '2022-03-17 21:11:00', '2022/03/0105', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (106, '2022-03-19 03:38:00', '2022/03/0106', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (107, '2022-03-19 04:00:00', '2022/03/0107', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (108, '2022-03-20 00:38:00', '2022/03/0108', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (109, '2022-03-20 00:39:00', '2022/03/0109', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (110, '2022-03-20 00:40:00', '2022/03/0110', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (111, '2022-03-20 00:43:00', '2022/03/0111', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (112, '2022-03-20 00:55:00', '2022/03/0112', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (113, '2022-03-20 07:12:00', '2022/03/0113', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (114, '2022-03-20 07:39:00', '2022/03/0114', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (115, '2022-03-20 07:42:00', '2022/03/0115', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (116, '2022-03-20 07:45:00', '2022/03/0116', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (117, '2022-03-20 07:49:00', '2022/03/0117', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (118, '2022-03-20 07:50:00', '2022/03/0118', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (119, '2022-03-20 08:28:00', '2022/03/0119', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (120, '2022-03-20 08:30:00', '2022/03/0120', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (121, '2022-03-20 10:23:00', '2022/03/0121', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (122, '2022-03-20 23:48:00', '2022/03/0122', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (123, '2022-03-21 00:02:00', '2022/03/0123', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (124, '2022-03-21 00:24:00', '2022/03/0124', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (125, '2022-03-21 00:47:00', '2022/03/0125', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (126, '2022-03-21 10:16:00', '2022/03/0126', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (127, '2022-03-21 10:18:00', '2022/03/0127', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (128, '2022-03-21 10:20:00', '2022/03/0128', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (129, '2022-03-21 10:21:00', '2022/03/0129', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (130, '2022-03-21 10:24:00', '2022/03/0130', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (131, '2022-03-22 06:30:00', '2022/03/0131', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (132, '2022-03-22 06:32:00', '2022/03/0132', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (133, '2022-03-22 07:18:00', '2022/03/0133', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (134, '2022-03-22 07:18:00', '2022/03/0134', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (135, '2022-03-22 07:34:00', '2022/03/0135', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (136, '2022-03-22 08:11:00', '2022/03/0136', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (137, '2022-03-23 01:45:00', '2022/03/0137', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (138, '2022-03-23 01:53:00', '2022/03/0138', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (139, '2022-03-23 07:04:00', '2022/03/0139', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (140, '2022-03-23 07:08:00', '2022/03/0140', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (141, '2022-03-23 07:12:00', '2022/03/0141', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (142, '2022-03-23 07:14:00', '2022/03/0142', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (143, '2022-03-23 07:16:00', '2022/03/0143', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (144, '2022-03-23 07:18:00', '2022/03/0144', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (145, '2022-03-23 07:22:00', '2022/03/0145', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (146, '2022-03-23 07:24:00', '2022/03/0146', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (147, '2022-03-23 07:32:00', '2022/03/0147', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (148, '2022-03-23 07:38:00', '2022/03/0148', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (149, '2022-03-23 07:39:00', '2022/03/0149', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (150, '2022-03-23 07:44:00', '2022/03/0150', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (151, '2022-03-23 07:47:00', '2022/03/0151', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (152, '2022-03-23 07:48:00', '2022/03/0152', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (153, '2022-03-23 07:51:00', '2022/03/0153', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (154, '2022-03-23 07:55:00', '2022/03/0154', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (155, '2022-03-23 08:10:00', '2022/03/0155', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (156, '2022-03-23 08:15:00', '2022/03/0156', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (157, '2022-03-23 08:19:00', '2022/03/0157', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (158, '2022-03-23 08:19:00', '2022/03/0158', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (159, '2022-03-23 08:20:00', '2022/03/0159', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (160, '2022-03-23 08:21:00', '2022/03/0160', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (161, '2022-03-23 08:22:00', '2022/03/0161', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (162, '2022-03-23 08:23:00', '2022/03/0162', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (163, '2022-03-23 08:24:00', '2022/03/0163', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (164, '2022-03-23 08:25:00', '2022/03/0164', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (165, '2022-03-23 08:26:00', '2022/03/0165', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (166, '2022-03-23 08:27:00', '2022/03/0166', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (167, '2022-03-23 08:28:00', '2022/03/0167', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (168, '2022-03-23 08:31:00', '2022/03/0168', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (169, '2022-03-23 08:32:00', '2022/03/0169', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (170, '2022-03-23 08:32:00', '2022/03/0170', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (171, '2022-03-23 08:34:00', '2022/03/0171', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (172, '2022-03-23 08:35:00', '2022/03/0172', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (173, '2022-03-23 08:36:00', '2022/03/0173', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (174, '2022-03-23 08:37:00', '2022/03/0174', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (175, '2022-03-23 08:38:00', '2022/03/0175', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (176, '2022-03-23 08:45:00', '2022/03/0176', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (177, '2022-03-23 08:45:00', '2022/03/0177', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (178, '2022-03-23 08:47:00', '2022/03/0178', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (179, '2022-03-23 08:48:00', '2022/03/0179', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (180, '2022-03-23 08:49:00', '2022/03/0180', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (181, '2022-03-23 08:50:00', '2022/03/0181', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (182, '2022-03-23 08:52:00', '2022/03/0182', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (183, '2022-03-23 14:31:00', '2022/03/0183', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (184, '2022-03-24 01:19:00', '2022/03/0184', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (185, '2022-03-26 02:32:00', '2022/03/0185', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (186, '2022-03-26 02:34:00', '2022/03/0186', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (187, '2022-03-26 03:24:00', '2022/03/0187', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (188, '2022-03-27 01:04:00', '2022/03/0188', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (189, '2022-03-27 07:56:00', '2022/03/0189', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (190, '2022-03-27 07:58:00', '2022/03/0190', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (191, '2022-03-31 01:53:00', '2022/03/0191', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (192, '2022-04-03 11:04:00', '2022/04/0192', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (193, '2022-04-09 04:56:00', '2022/04/0193', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (194, '2022-04-12 02:04:00', '2022/04/0194', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (195, '2022-04-13 04:51:00', '2022/04/0195', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (196, '2022-04-13 04:52:00', '2022/04/0196', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (197, '2022-04-14 00:58:00', '2022/04/0197', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (198, '2022-04-19 02:25:00', '2022/04/0198', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (199, '2022-04-19 02:36:00', '2022/04/0199', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (200, '2022-04-22 01:10:00', '2022/04/0200', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (201, '2022-04-27 01:09:00', '2022/04/0201', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (202, '2022-05-01 12:08:00', '2022/04/0202', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (203, '2022-05-03 09:52:00', '2022/05/0203', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (204, '2022-05-07 07:54:00', '2022/05/0204', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (205, '2022-05-08 00:42:00', '2022/05/0205', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (206, '2022-05-10 01:23:00', '2022/05/0206', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (207, '2022-05-10 02:31:00', '2022/05/0207', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (208, '2022-05-10 02:39:00', '2022/05/0208', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (209, '2022-05-10 09:26:00', '2022/05/0209', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (210, '2022-05-14 07:40:00', '2022/05/0210', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (211, '2022-05-14 07:51:00', '2022/05/0211', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (212, '2022-05-14 07:54:00', '2022/05/0212', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (213, '2022-05-17 11:24:00', '2022/05/0213', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (214, '2022-05-17 23:30:00', '2022/05/0214', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (215, '2022-05-21 00:57:00', '2022/05/0215', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (216, '2022-05-21 00:59:00', '2022/05/0216', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (217, '2022-05-21 01:03:00', '2022/05/0217', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (218, '2022-05-21 01:04:00', '2022/05/0218', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (219, '2022-05-21 01:05:00', '2022/05/0219', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (220, '2022-05-24 07:55:00', '2022/05/0220', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (221, '2022-05-28 10:32:00', '2022/05/0221', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (222, '2022-05-30 00:07:00', '2022/05/0222', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (223, '2022-06-05 05:52:00', '2022/06/0223', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (224, '2022-06-07 00:58:00', '2022/06/0224', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (225, '2022-06-07 09:21:00', '2022/06/0225', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (226, '2022-06-07 09:25:00', '2022/06/0226', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (227, '2022-06-08 01:43:00', '2022/06/0227', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (228, '2022-06-12 00:13:00', '2022/06/0228', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (229, '2022-06-13 01:04:00', '2022/06/0229', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (230, '2022-06-14 08:12:00', '2022/06/0230', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (231, '2022-06-15 04:05:00', '2022/06/0231', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (232, '2022-06-17 00:32:00', '2022/06/0232', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (233, '2022-06-22 01:09:00', '2022/06/0233', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (234, '2022-06-23 01:13:00', '2022/06/0234', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (235, '2022-06-29 00:20:00', '2022/06/0235', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (236, '2022-06-29 08:05:00', '2022/06/0236', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (237, '2022-07-02 00:54:00', '2022/07/0237', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (238, '2022-07-03 01:48:00', '2022/07/0238', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (239, '2022-07-07 00:50:00', '2022/07/0239', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (240, '2022-07-07 00:53:00', '2022/07/0240', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (241, '2022-07-17 11:59:00', '2022/07/0241', 2, '', NULL, 6, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (242, '2022-07-19 01:13:00', '2022/07/0242', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (243, '2022-07-19 09:54:00', '2022/07/0243', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (244, '2022-07-20 01:43:00', '2022/07/0244', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (245, '2022-07-20 07:28:00', '2022/07/0245', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (246, '2022-07-20 07:39:00', '2022/07/0246', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (247, '2022-07-21 00:18:00', '2022/07/0247', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (248, '2022-07-21 00:46:00', '2022/07/0248', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (249, '2022-07-22 01:50:00', '2022/07/0249', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (250, '2022-07-25 02:10:00', '2022/07/0250', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (251, '2022-07-25 03:10:00', '2022/07/0251', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (252, '2022-07-25 09:24:00', '2022/07/0252', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (253, '2022-07-27 00:18:00', '2022/07/0253', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (254, '2022-08-01 01:22:00', '2022/07/0254', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (255, '2022-08-01 06:17:00', '2022/07/0255', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (256, '2022-08-01 09:02:00', '2022/07/0256', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (257, '2022-08-01 09:03:00', '2022/07/0257', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (258, '2022-08-01 09:03:00', '2022/07/0258', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (259, '2022-08-01 09:12:00', '2022/07/0259', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (260, '2022-08-01 09:13:00', '2022/07/0260', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (261, '2022-08-04 02:08:00', '2022/08/0261', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (262, '2022-08-08 23:47:00', '2022/08/0262', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (263, '2022-08-09 02:13:00', '2022/08/0263', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (264, '2022-08-10 06:33:00', '2022/08/0264', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (265, '2022-08-13 02:42:00', '2022/08/0265', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (266, '2022-08-16 06:36:00', '2022/08/0266', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (267, '2022-08-16 06:46:00', '2022/08/0267', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (268, '2022-08-21 03:15:00', '2022/08/0268', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (269, '2022-08-22 02:00:00', '2022/08/0269', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (270, '2022-08-25 06:18:00', '2022/08/0270', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (271, '2022-08-31 06:07:00', '2022/08/0271', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (272, '2022-08-31 06:24:00', '2022/08/0272', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (273, '2022-08-31 23:40:00', '2022/08/0273', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (274, '2022-09-04 01:31:00', '2022/09/0274', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (275, '2022-09-10 00:50:00', '2022/09/0275', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (276, '2022-09-10 01:01:00', '2022/09/0276', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (277, '2022-09-13 01:32:00', '2022/09/0277', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (278, '2022-09-13 01:54:00', '2022/09/0278', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (279, '2022-09-17 07:59:00', '2022/09/0279', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (280, '2022-09-19 08:53:00', '2022/09/0280', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (281, '2022-09-24 06:42:00', '2022/09/0281', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (282, '2022-09-24 07:11:00', '2022/09/0282', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (283, '2022-09-24 07:33:00', '2022/09/0283', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (284, '2022-09-26 09:31:00', '2022/09/0284', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (285, '2022-10-01 01:03:00', '2022/09/0285', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (286, '2022-10-06 02:09:00', '2022/10/0286', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (287, '2022-10-10 09:28:00', '2022/10/0287', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (288, '2022-10-16 01:22:00', '2022/10/0288', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (289, '2022-10-16 07:07:00', '2022/10/0289', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (290, '2022-10-16 09:42:00', '2022/10/0290', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (291, '2022-10-17 00:11:00', '2022/10/0291', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (292, '2022-10-17 00:12:00', '2022/10/0292', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (293, '2022-10-22 02:35:00', '2022/10/0293', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (294, '2022-10-22 02:48:00', '2022/10/0294', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (295, '2022-10-26 02:24:00', '2022/10/0295', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (296, '2022-10-29 06:39:00', '2022/10/0296', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (297, '2022-10-31 07:38:00', '2022/10/0297', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (298, '2022-11-05 09:26:00', '2022/11/0298', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (299, '2022-11-05 09:27:00', '2022/11/0299', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (300, '2022-11-06 08:57:00', '2022/11/0300', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (301, '2022-11-07 06:44:00', '2022/11/0301', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (302, '2022-11-07 06:46:00', '2022/11/0302', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (303, '2022-11-08 01:07:00', '2022/11/0303', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (304, '2022-11-09 01:11:00', '2022/11/0304', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (305, '2022-11-12 00:23:00', '2022/11/0305', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (306, '2022-11-20 03:10:00', '2022/11/0306', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (307, '2022-11-20 07:12:00', '2022/11/0307', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (308, '2022-11-21 02:38:00', '2022/11/0308', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (309, '2022-11-21 02:38:00', '2022/11/0309', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (310, '2022-11-23 10:25:00', '2022/11/0310', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (311, '2022-11-25 02:24:00', '2022/11/0311', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (312, '2022-11-27 01:50:00', '2022/12/0312', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (313, '2022-12-04 01:05:00', '2022/12/0313', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (314, '2022-12-12 01:54:00', '2022/12/0314', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (315, '2022-12-14 02:25:00', '2022/12/0315', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (316, '2022-12-20 01:53:00', '2022/12/0316', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (317, '2022-12-26 02:25:00', '2022/12/0317', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (318, '2023-01-22 09:47:00', '2023/01/0318', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (319, '2023-01-23 03:50:00', '2023/01/0319', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (320, '2023-01-25 08:02:00', '2023/01/0320', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (321, '2023-01-25 08:17:00', '2023/01/0321', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (322, '2023-01-25 08:21:00', '2023/01/0322', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (323, '2023-01-29 00:52:00', '2023/01/0323', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (324, '2023-02-04 01:39:00', '2023/02/0324', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (325, '2023-02-08 00:59:00', '2023/02/0325', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (326, '2023-02-12 10:16:00', '2023/02/0326', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (327, '2023-02-14 07:23:00', '2023/02/0327', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (328, '2023-02-14 07:28:00', '2023/02/0328', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (329, '2023-02-19 03:38:00', '2023/02/0329', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (330, '2023-02-20 10:00:00', '2023/02/0330', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (331, '2023-02-23 04:07:00', '2023/02/0331', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (332, '2023-02-27 01:21:00', '2023/02/0332', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (333, '2023-03-01 08:06:00', '2023/02/0333', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (334, '2023-03-04 02:00:00', '2023/03/0334', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (335, '2023-03-08 07:45:00', '2023/03/0335', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (336, '2023-03-08 07:59:00', '2023/03/0336', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (337, '2023-03-09 02:48:00', '2023/03/0337', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (338, '2023-03-14 02:51:00', '2023/03/0338', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (339, '2023-03-15 02:41:00', '2023/03/0339', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (340, '2023-03-18 09:29:00', '2023/03/0340', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (341, '2023-03-20 09:47:00', '2023/03/0341', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (342, '2023-03-22 09:49:00', '2023/03/0342', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (343, '2023-03-25 01:04:00', '2023/03/0343', 2, '', NULL, 5, NULL, NULL, NULL);
INSERT INTO `sma_adjustments` (`id`, `date`, `reference_no`, `warehouse_id`, `note`, `attachment`, `created_by`, `updated_by`, `updated_at`, `count_id`) VALUES (344, '2023-03-28 03:20:00', '2023/03/0344', 2, '', NULL, 5, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_attachments
#

DROP TABLE IF EXISTS `sma_attachments`;

CREATE TABLE `sma_attachments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `subject_id` int(11) NOT NULL,
  `subject_type` varchar(55) NOT NULL,
  `file_name` varchar(100) NOT NULL,
  `orig_name` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_brands
#

DROP TABLE IF EXISTS `sma_brands`;

CREATE TABLE `sma_brands` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(20) DEFAULT NULL,
  `name` varchar(50) NOT NULL,
  `image` varchar(50) DEFAULT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_calendar
#

DROP TABLE IF EXISTS `sma_calendar`;

CREATE TABLE `sma_calendar` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(55) NOT NULL,
  `description` varchar(255) DEFAULT NULL,
  `start` datetime NOT NULL,
  `end` datetime DEFAULT NULL,
  `color` varchar(7) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_captcha
#

DROP TABLE IF EXISTS `sma_captcha`;

CREATE TABLE `sma_captcha` (
  `captcha_id` bigint(13) unsigned NOT NULL AUTO_INCREMENT,
  `captcha_time` int(10) unsigned NOT NULL,
  `ip_address` varchar(16) CHARACTER SET latin1 NOT NULL DEFAULT '0',
  `word` varchar(20) CHARACTER SET latin1 NOT NULL,
  PRIMARY KEY (`captcha_id`),
  KEY `word` (`word`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_categories
#

DROP TABLE IF EXISTS `sma_categories`;

CREATE TABLE `sma_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(55) NOT NULL,
  `name` varchar(55) NOT NULL,
  `image` varchar(55) DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (3, '02', 'Fertiliser', NULL, 0, 'fertiliser', 'All Types of Fertiliser and insecticide');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (2, '01', 'Plants', NULL, 0, 'plants', 'All Types of Plants');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (4, '03', 'Planters', NULL, 0, 'planters', 'Pot And Decoration');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (5, '04', 'Accessories ', NULL, 0, 'accessories', 'All Gardening Accsesories');
INSERT INTO `sma_categories` (`id`, `code`, `name`, `image`, `parent_id`, `slug`, `description`) VALUES (6, '05', 'Decor & FLowers', NULL, 0, 'decor-flowers', 'all Decorative items and flowers');


#
# TABLE STRUCTURE FOR: sma_combo_items
#

DROP TABLE IF EXISTS `sma_combo_items`;

CREATE TABLE `sma_combo_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `item_code` varchar(20) NOT NULL,
  `quantity` decimal(12,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_companies
#

DROP TABLE IF EXISTS `sma_companies`;

CREATE TABLE `sma_companies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(10) unsigned DEFAULT NULL,
  `group_name` varchar(20) NOT NULL,
  `customer_group_id` int(11) DEFAULT NULL,
  `customer_group_name` varchar(100) DEFAULT NULL,
  `name` varchar(55) NOT NULL,
  `company` varchar(255) NOT NULL,
  `vat_no` varchar(100) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(55) DEFAULT NULL,
  `state` varchar(55) DEFAULT NULL,
  `postal_code` varchar(8) DEFAULT NULL,
  `country` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `cf1` varchar(100) DEFAULT NULL,
  `cf2` varchar(100) DEFAULT NULL,
  `cf3` varchar(100) DEFAULT NULL,
  `cf4` varchar(100) DEFAULT NULL,
  `cf5` varchar(100) DEFAULT NULL,
  `cf6` varchar(100) DEFAULT NULL,
  `invoice_footer` text DEFAULT NULL,
  `payment_term` int(11) DEFAULT 0,
  `logo` varchar(255) DEFAULT 'logo.png',
  `award_points` int(11) DEFAULT 0,
  `deposit_amount` decimal(25,4) DEFAULT NULL,
  `price_group_id` int(11) DEFAULT NULL,
  `price_group_name` varchar(50) DEFAULT NULL,
  `gst_no` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `group_id` (`group_id`),
  KEY `group_id_2` (`group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;

INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (1, 3, 'customer', 1, 'General', 'Walk-in Customer', 'Walk-in Customer', '', 'Customer Address', 'Petaling Jaya', 'Selangor', '46000', 'Malaysia', '0123456789', 'customer@tecdiary.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, NULL);
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (2, 4, 'supplier', NULL, NULL, 'RG Self', 'RecallGreen', '', 'House 152/20, Road-9, Block-B, Mirpur 12', 'Dhaka', 'Dhaka', '1216', 'Bangladesh', '01711134541', '0rdesr@recallgreen.com', '-', '-', '-', '-', '-', '-', NULL, 0, 'logo.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (6, NULL, 'biller', NULL, NULL, 'Jamuna Future park', 'RecallGreen JFP', '', 'Level -2, In Front of Whole sale Club , Jamuna Future park', 'Dhaka', '', '1216', '', '+8801711134541', 'orders@recallgreen.com', '', '', '', '', '', '', 'Thank Your For Shopping With RecallGreen', 0, 'bil_logo.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (4, 3, 'customer', 1, 'General', 'Mr.Habib', 'na', '', 'na', 'na', '', '', '', '01717137791', 'habib@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (5, NULL, 'biller', NULL, NULL, 'Recallgreen', 'RecallGreen', '', 'Main Outlet-House-152/20, Road-9, Block-B, Section-12, Mirpur', 'Dhaka', '', '', '', '+880 1711 134541', 'orders@recallgreen.com', '', '', '', '', '', '', 'Thank You For Shopping with RecallGreen.com', 0, 'bil_logo.png', 0, NULL, NULL, NULL, '');
INSERT INTO `sma_companies` (`id`, `group_id`, `group_name`, `customer_group_id`, `customer_group_name`, `name`, `company`, `vat_no`, `address`, `city`, `state`, `postal_code`, `country`, `phone`, `email`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `invoice_footer`, `payment_term`, `logo`, `award_points`, `deposit_amount`, `price_group_id`, `price_group_name`, `gst_no`) VALUES (7, 3, 'customer', 1, 'General', 'Robin', 'Rg', '', 'na', 'na', '', '', '', '01711134541', 'robin@gmail.com', '', '', '', '', '', '', NULL, 0, 'logo.png', 0, NULL, 1, 'Default', '');


#
# TABLE STRUCTURE FOR: sma_costing
#

DROP TABLE IF EXISTS `sma_costing`;

CREATE TABLE `sma_costing` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `product_id` int(11) DEFAULT NULL,
  `sale_item_id` int(11) NOT NULL,
  `sale_id` int(11) DEFAULT NULL,
  `purchase_item_id` int(11) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `purchase_net_unit_cost` decimal(25,4) DEFAULT NULL,
  `purchase_unit_cost` decimal(25,4) DEFAULT NULL,
  `sale_net_unit_price` decimal(25,4) NOT NULL,
  `sale_unit_price` decimal(25,4) NOT NULL,
  `quantity_balance` decimal(15,4) DEFAULT NULL,
  `inventory` tinyint(1) DEFAULT 0,
  `overselling` tinyint(1) DEFAULT 0,
  `option_id` int(11) DEFAULT NULL,
  `purchase_id` int(11) DEFAULT NULL,
  `transfer_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7860 DEFAULT CHARSET=utf8;

INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (192, '2022-03-19', 195, 192, 141, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '45.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (191, '2022-03-19', 194, 191, 141, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '13.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (190, '2022-03-19', 21, 190, 140, 238, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '15.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (193, '2022-03-19', 170, 193, 142, 233, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (194, '2022-03-19', 220, 194, 143, 196, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (195, '2022-03-19', 153, 195, 144, 132, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '19.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (196, '2022-03-19', 9, 196, 145, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '105.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (197, '2022-03-19', 220, 197, 146, 196, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (198, '2022-03-19', 9, 198, 147, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '104.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (200, '2022-03-19', 11, 200, 149, 10, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (199, '2022-03-19', 200, 199, 148, 178, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (201, '2022-03-20', 164, 201, 150, 155, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '11.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (202, '2022-03-20', 271, 202, 151, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '58.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (204, '2022-03-20', 146, 204, 153, 127, '1.0000', '1.0000', '1.0000', '1.0000', '1.0000', '99.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (203, '2022-03-20', 95, 203, 152, 85, '3.0000', '450.0000', '450.0000', '650.0000', '650.0000', '30.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (205, '2022-03-20', 146, 205, 154, 127, '1.0000', '1.0000', '1.0000', '1.0000', '1.0000', '98.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (206, '2022-03-20', 146, 206, 155, 127, '1.0000', '1.0000', '1.0000', '1.0000', '1.0000', '97.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (207, '2022-03-20', 241, 207, 156, 212, '3.0000', '250.0000', '250.0000', '300.0000', '300.0000', '19.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (208, '2022-03-20', 165, 208, 156, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (209, '2022-03-20', 38, 209, 156, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '8.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (210, '2022-03-20', 145, 210, 157, 272, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (211, '2022-03-20', 214, 211, 158, 175, '5.0000', '100.0000', '100.0000', '150.0000', '150.0000', '34.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (212, '2022-03-20', 267, 212, 159, 266, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (213, '2022-03-21', 200, 213, 160, 178, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (221, '2022-03-21', 107, 221, 167, 100, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (214, '2022-03-21', 168, 214, 161, 232, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (215, '2022-03-21', 258, 215, 162, 246, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 99, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (216, '2022-03-21', 107, 216, 163, 100, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (218, '2022-03-21', 208, 218, 165, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (217, '2022-03-21', 208, 217, 164, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (222, '2022-03-22', 206, 222, 168, 160, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (219, '2022-03-21', 266, 219, 166, 262, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (220, '2022-03-21', 278, 220, 166, 289, '1.0000', '60.0000', '60.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (223, '2022-03-22', 166, 223, 168, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '10.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (224, '2022-03-22', 194, 224, 168, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (225, '2022-03-22', 159, 225, 169, 140, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (189, '2022-03-19', 105, 189, 139, 98, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (188, '2022-03-19', 260, 188, 139, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '58.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (187, '2022-03-19', 218, 187, 139, 181, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (226, '2022-03-22', 195, 226, 170, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '43.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (185, '2022-03-19', 105, 185, 139, 98, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (186, '2022-03-19', 141, 186, 139, 143, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 23, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (183, '2022-03-19', 247, 183, 139, 222, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (184, '2022-03-19', 107, 184, 139, 100, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (182, '2022-03-19', 153, 182, 138, 132, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '22.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (181, '2022-03-19', 119, 181, 137, 112, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (122, '2022-03-16', 17, 122, 100, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (123, '2022-03-16', 17, 123, 100, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (124, '2022-03-16', 195, 124, 100, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (125, '2022-03-16', 16, 125, 101, 21, '5.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (126, '2022-03-16', 17, 126, 101, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '17.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (127, '2022-03-16', 165, 127, 102, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '18.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (180, '2022-03-19', 116, 180, 137, 109, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (160, '2022-03-18', 165, 160, 125, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '14.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (130, '2022-03-17', 204, 130, 105, 153, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '19.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (179, '2022-03-19', 95, 179, 136, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '13.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (162, '2022-03-18', 162, 162, 126, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (133, '2022-03-17', 9, 133, 108, 8, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '111.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (134, '2022-03-17', 195, 134, 109, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '51.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (135, '2022-03-17', 203, 135, 110, 152, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '16.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (136, '2022-03-17', 204, 136, 111, 153, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '18.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (137, '2022-03-17', 203, 137, 112, 152, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '15.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (138, '2022-03-17', 205, 138, 112, 154, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '18.0000', 1, 0, NULL, 28, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (161, '2022-03-18', 6, 161, 125, 6, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (140, '2022-03-17', 252, 140, 114, 237, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (141, '2022-03-17', 195, 141, 115, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '50.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (142, '2022-03-17', 195, 142, 116, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '49.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (143, '2022-03-17', 153, 143, 117, 132, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '24.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (144, '2022-03-17', 9, 144, 118, 8, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '108.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (145, '2022-03-17', 17, 145, 118, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (146, '2022-03-17', 195, 146, 118, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '48.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (147, '2022-03-17', 194, 147, 118, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '15.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (148, '2022-03-17', 166, 148, 119, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '12.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (149, '2022-03-17', 35, 149, 119, 34, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '16.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (150, '2022-03-17', 196, 150, 120, 247, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (151, '2022-03-17', 214, 151, 121, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '39.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (152, '2022-03-17', 154, 152, 122, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (153, '2022-03-17', 257, 153, 122, 244, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (154, '2022-03-17', 263, 154, 123, 258, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (155, '2022-03-17', 115, 155, 123, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (156, '2022-03-17', 164, 156, 123, 155, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '14.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (157, '2022-03-17', 220, 157, 123, 196, '6.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (158, '2022-03-17', 166, 158, 123, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '11.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (159, '2022-03-17', 179, 159, 124, 252, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (163, '2022-03-18', 163, 163, 126, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '32.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (164, '2022-03-18', 195, 164, 127, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '47.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (165, '2022-03-18', 39, 165, 128, 39, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (166, '2022-03-18', 107, 166, 129, 100, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (167, '2022-03-18', 72, 167, 130, 251, '2.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (168, '2022-03-18', 165, 168, 130, 150, '5.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (169, '2022-03-18', 147, 169, 130, 128, '2.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '20.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (170, '2022-03-18', 164, 170, 130, 155, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '13.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (171, '2022-03-18', 14, 171, 130, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (172, '2022-03-18', 93, 172, 130, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (173, '2022-03-18', 244, 173, 131, 216, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (174, '2022-03-18', 9, 174, 132, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '107.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (175, '2022-03-18', 194, 175, 132, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '14.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (176, '2022-03-18', 14, 176, 133, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (177, '2022-03-18', 195, 177, 134, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '46.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (178, '2022-03-18', 43, 178, 135, 43, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (227, '2022-03-22', 21, 227, 171, 238, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '13.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (228, '2022-03-22', 217, 228, 172, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (229, '2022-03-22', 118, 229, 173, 111, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (230, '2022-03-22', 119, 230, 173, 112, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (231, '2022-03-22', 3, 231, 174, 3, '-20.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (232, '2022-03-22', 3, 231, 174, 87, '21.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (233, '2022-03-22', 15, 232, 175, 20, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (234, '2022-03-22', 95, 233, 175, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '29.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (235, '2022-03-22', 271, 234, 176, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '57.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (236, '2022-03-22', 268, 235, 176, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '40.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (237, '2022-03-22', 271, 236, 176, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '57.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (238, '2022-03-22', 8, 237, 176, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (239, '2022-03-22', 276, 238, 177, 284, '4.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (240, '2022-03-22', 186, 239, 177, 224, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 83, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (241, '2022-03-22', 271, 240, 178, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '55.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (242, '2022-03-22', 271, 241, 178, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '55.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (243, '2022-03-22', 269, 242, 178, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (244, '2022-03-22', 220, 243, 178, 196, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (245, '2022-03-22', 19, 244, 178, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '24.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (246, '2022-03-22', 94, 245, 178, 84, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (247, '2022-03-22', 9, 246, 179, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '102.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (248, '2022-03-22', 277, 247, 179, 288, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (249, '2022-03-23', 29, 248, 180, 28, '1.0000', '2500.0000', '2500.0000', '4000.0000', '4000.0000', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (250, '2022-03-23', 274, 249, 181, 274, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (251, '2022-03-23', 15, 250, 181, 20, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (252, '2022-03-23', 95, 251, 181, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '28.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (253, '2022-03-23', 195, 252, 181, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '32.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (254, '2022-03-23', 13, 253, 181, 12, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '28.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (255, '2022-03-23', 239, 254, 182, 208, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '6.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (256, '2022-03-23', 206, 255, 183, 160, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 33, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (257, '2022-03-23', 85, 256, 183, 76, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (258, '2022-03-24', 165, 257, 184, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (259, '2022-03-24', 195, 258, 185, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '31.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (260, '2022-03-24', 220, 259, 186, 196, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (261, '2022-03-24', 200, 260, 186, 178, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (262, '2022-03-24', 12, 261, 187, 11, '-20.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (263, '2022-03-24', 12, 261, 187, 239, '5.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 95, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (264, '2022-03-24', 12, 261, 187, 278, '16.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (265, '2022-03-24', 200, 262, 188, 178, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (266, '2022-03-24', 9, 263, 189, 8, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '99.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (267, '2022-03-24', 209, 264, 189, 167, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (268, '2022-03-24', 195, 265, 189, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '30.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (269, '2022-03-24', 95, 266, 190, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '27.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (270, '2022-03-24', 43, 267, 191, 43, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (271, '2022-03-24', 271, 268, 192, 270, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '52.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (272, '2022-03-24', 9, 269, 193, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '98.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (273, '2022-03-24', 217, 270, 194, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (274, '2022-03-24', 149, 271, 195, 134, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (275, '2022-03-24', 153, 272, 196, 132, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '30.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (276, '2022-03-24', 200, 273, 197, 178, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (277, '2022-03-25', 220, 274, 198, 196, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (278, '2022-03-25', 119, 275, 199, 112, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (279, '2022-03-25', 268, 276, 200, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (280, '2022-03-25', 269, 277, 200, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '22.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (281, '2022-03-25', 271, 278, 200, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '51.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (282, '2022-03-25', 271, 279, 200, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '51.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (283, '2022-03-25', 220, 280, 200, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (284, '2022-03-25', 220, 281, 200, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (285, '2022-03-25', 271, 282, 201, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '49.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (286, '2022-03-25', 271, 283, 201, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '49.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (287, '2022-03-25', 93, 284, 202, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (288, '2022-03-25', 47, 285, 202, 47, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (289, '2022-03-25', 195, 286, 202, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '29.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (290, '2022-03-25', 95, 287, 202, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '26.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (291, '2022-03-25', 47, 288, 203, 47, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (292, '2022-03-25', 14, 289, 203, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (293, '2022-03-25', 93, 290, 203, 83, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '12.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (294, '2022-03-25', 195, 291, 204, 151, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '27.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (295, '2022-03-25', 200, 292, 205, 277, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (296, '2022-03-25', 9, 293, 206, 8, '6.0000', '250.0000', '250.0000', '400.0000', '400.0000', '92.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (297, '2022-03-25', 40, 294, 206, 40, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (298, '2022-03-25', 195, 295, 206, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '26.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (299, '2022-03-25', 170, 296, 207, 233, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (300, '2022-03-25', 164, 297, 208, 155, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (301, '2022-03-25', 14, 298, 208, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (302, '2022-03-25', 9, 299, 209, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '91.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (303, '2022-03-25', 9, 300, 210, 8, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '89.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (304, '2022-03-25', 200, 301, 211, 277, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (305, '2022-03-25', 166, 302, 212, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '9.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (306, '2022-03-25', 3, 303, 212, 3, '-2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (307, '2022-03-25', 3, 303, 212, 87, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (308, '2022-03-25', 35, 304, 212, 34, '-1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (309, '2022-03-25', 35, 304, 212, 209, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '15.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (310, '2022-03-25', 263, 305, 213, 258, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (311, '2022-03-25', 196, 306, 213, 247, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 100, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (312, '2022-03-25', 14, 307, 213, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (313, '2022-03-25', 38, 308, 214, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '6.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (314, '2022-03-25', 47, 309, 215, 47, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (315, '2022-03-25', 93, 310, 215, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (316, '2022-03-26', 194, 311, 216, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '11.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (317, '2022-03-26', 194, 312, 216, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '11.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (318, '2022-03-26', 93, 313, 216, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (319, '2022-03-26', 14, 314, 216, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (320, '2022-03-26', 218, 315, 216, 181, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (321, '2022-03-26', 262, 316, 216, 263, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (322, '2022-03-26', 259, 317, 216, 249, '1.0000', '300.0000', '300.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (323, '2022-03-26', 9, 318, 217, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '87.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (324, '2022-03-26', 119, 319, 218, 112, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (325, '2022-03-26', 219, 320, 219, 182, '5.0000', '20.0000', '20.0000', '30.0000', '30.0000', '5.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (326, '2022-03-26', 219, 321, 220, 182, '2.0000', '20.0000', '20.0000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (327, '2022-03-26', 9, 322, 221, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '86.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (328, '2022-03-26', 160, 323, 222, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (329, '2022-03-26', 232, 324, 222, 200, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (330, '2022-03-26', 107, 325, 223, 100, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (331, '2022-03-26', 107, 325, 223, 276, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (332, '2022-03-26', 182, 326, 224, 254, '1.0000', '900.0000', '900.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 107, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (333, '2022-03-26', 159, 327, 224, 141, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (334, '2022-03-26', 210, 328, 225, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (335, '2022-03-26', 276, 329, 225, 284, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (336, '2022-03-26', 210, 330, 225, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (337, '2022-03-26', 261, 331, 226, 256, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (343, '2022-03-26', 281, 337, 230, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (339, '2022-03-26', 232, 333, 228, 200, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (340, '2022-03-26', 200, 334, 228, 277, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (341, '2022-03-26', 271, 335, 229, 270, '6.0000', '30.0000', '30.0000', '40.0000', '40.0000', '42.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (342, '2022-03-26', 220, 336, 229, 275, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (344, '2022-03-26', 200, 338, 231, 277, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (345, '2022-03-26', 263, 339, 232, 258, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (346, '2022-03-26', 192, 340, 232, 157, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '21.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (347, '2022-03-26', 220, 341, 233, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (348, '2022-03-26', 220, 342, 233, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (349, '2022-03-27', 195, 343, 234, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '25.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (350, '2022-03-27', 195, 344, 235, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '24.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (351, '2022-03-27', 9, 345, 236, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '85.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (352, '2022-03-27', 95, 346, 236, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '25.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (353, '2022-03-27', 269, 347, 237, 268, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '20.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (354, '2022-03-27', 270, 348, 237, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (355, '2022-03-27', 271, 349, 237, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '41.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (356, '2022-03-27', 232, 350, 238, 200, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (357, '2022-03-27', 217, 351, 239, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (358, '2022-03-27', 270, 352, 240, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (359, '2022-03-27', 220, 353, 240, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (360, '2022-03-27', 62, 354, 240, 58, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (361, '2022-03-27', 267, 355, 240, 266, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 114, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (362, '2022-03-27', 116, 356, 241, 109, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (363, '2022-03-27', 119, 357, 242, 112, '3.0000', '120.0000', '120.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (364, '2022-03-28', 220, 358, 243, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (374, '2022-03-28', 290, 368, 244, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (373, '2022-03-28', 263, 367, 244, 258, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (372, '2022-03-28', 171, 366, 244, 220, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (371, '2022-03-28', 137, 365, 244, 188, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '2.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (375, '2022-03-28', 292, 369, 244, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '19.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (370, '2022-03-28', 214, 364, 245, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '28.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (376, '2022-03-28', 260, 370, 246, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '57.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (377, '2022-03-28', 195, 371, 247, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (378, '2022-03-28', 38, 372, 248, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '5.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (379, '2022-03-28', 297, 373, 248, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '39.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (380, '2022-03-28', 293, 374, 249, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (381, '2022-03-28', 17, 375, 249, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (382, '2022-03-28', 9, 376, 249, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '84.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (383, '2022-03-28', 289, 377, 249, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (384, '2022-03-28', 261, 378, 250, 256, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (385, '2022-03-28', 167, 379, 250, 248, '1.0000', '400.0000', '400.0000', '800.0000', '800.0000', '3.0000', 1, 0, NULL, 101, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (386, '2022-03-28', 72, 380, 250, 251, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (387, '2022-03-28', 191, 381, 250, 163, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 36, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (388, '2022-03-28', 214, 382, 250, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '27.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (389, '2022-03-28', 271, 383, 251, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '40.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (390, '2022-03-28', 220, 384, 251, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (391, '2022-03-28', 35, 385, 252, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '14.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (392, '2022-03-28', 38, 386, 253, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '4.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (393, '2022-03-28', 297, 387, 253, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '38.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (394, '2022-03-28', 54, 388, 253, 211, '2.0000', '110.0000', '110.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (395, '2022-03-28', 193, 389, 253, 156, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (396, '2022-03-28', 220, 390, 254, 275, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (397, '2022-03-28', 208, 391, 254, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (398, '2022-03-28', 200, 392, 255, 294, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (399, '2022-03-28', 293, 393, 256, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (400, '2022-03-28', 262, 394, 256, 263, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (401, '2022-03-28', 193, 395, 257, 156, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (402, '2022-03-28', 295, 396, 257, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '39.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (403, '2022-03-28', 284, 397, 257, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '9.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (404, '2022-03-28', 153, 398, 257, 132, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '28.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (405, '2022-03-28', 220, 399, 258, 323, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (406, '2022-03-29', 162, 400, 259, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (407, '2022-03-29', 261, 401, 259, 256, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 109, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (408, '2022-03-29', 200, 402, 260, 294, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (409, '2022-03-29', 280, 403, 261, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '9.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (410, '2022-03-29', 7, 404, 262, 7, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 5, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (411, '2022-03-29', 282, 405, 262, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '9.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (412, '2022-03-29', 107, 406, 263, 276, '2.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (413, '2022-03-29', 271, 407, 264, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '39.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (414, '2022-03-29', 260, 408, 264, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '56.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (415, '2022-03-29', 237, 409, 265, 206, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (416, '2022-03-29', 220, 410, 265, 323, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (417, '2022-03-29', 263, 411, 266, 258, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (418, '2022-03-29', 93, 412, 266, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (419, '2022-03-29', 290, 413, 267, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (420, '2022-03-29', 93, 414, 268, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (421, '2022-03-29', 193, 415, 268, 156, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (422, '2022-03-29', 288, 416, 269, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (423, '2022-03-29', 230, 417, 270, 198, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (424, '2022-03-29', 88, 418, 271, 79, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (425, '2022-03-29', 21, 419, 271, 238, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '12.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (426, '2022-03-29', 219, 420, 271, 182, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (427, '2022-03-29', 219, 421, 271, 182, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '2.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (428, '2022-03-29', 195, 422, 272, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (429, '2022-03-29', 193, 423, 273, 156, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (430, '2022-03-30', 271, 424, 274, 270, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '37.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (431, '2022-03-30', 290, 425, 275, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (432, '2022-03-30', 165, 426, 276, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (433, '2022-03-30', 298, 427, 276, 321, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '9.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (434, '2022-03-31', 114, 428, 277, 107, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (435, '2022-03-31', 262, 429, 278, 263, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (436, '2022-03-31', 93, 430, 278, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (437, '2022-03-31', 253, 431, 279, 240, '3.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (438, '2022-03-31', 93, 432, 279, 83, '3.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (439, '2022-03-31', 162, 433, 279, 147, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (440, '2022-03-31', 67, 434, 279, 59, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '8.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (441, '2022-03-31', 163, 435, 279, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '30.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (442, '2022-03-31', 14, 436, 279, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (443, '2022-03-31', 47, 437, 279, 47, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (444, '2022-03-31', 293, 438, 280, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (445, '2022-03-31', 290, 439, 280, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (446, '2022-03-31', 17, 440, 280, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (447, '2022-03-31', 208, 441, 280, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (448, '2022-03-31', 18, 442, 280, 23, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (449, '2022-03-31', 93, 443, 280, 83, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (450, '2022-03-31', 220, 444, 280, 323, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (451, '2022-03-31', 14, 445, 280, 13, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (452, '2022-03-31', 54, 446, 280, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (453, '2022-03-31', 269, 447, 280, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (454, '2022-03-31', 271, 448, 280, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '36.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (455, '2022-03-31', 73, 449, 280, 162, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (456, '2022-03-31', 282, 450, 280, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '8.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (457, '2022-03-31', 200, 451, 280, 294, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (458, '2022-03-31', 47, 452, 281, 329, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (459, '2022-03-31', 93, 453, 281, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (460, '2022-03-31', 38, 454, 282, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '3.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (461, '2022-03-31', 220, 455, 282, 323, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (462, '2022-03-31', 298, 456, 283, 321, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (463, '2022-03-31', 166, 457, 284, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '7.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (464, '2022-03-31', 298, 458, 284, 321, '4.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (465, '2022-03-31', 264, 459, 284, 257, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (466, '2022-03-31', 7, 460, 284, 7, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 5, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (467, '2022-03-31', 230, 461, 284, 198, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (468, '2022-03-31', 297, 462, 284, 320, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '35.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (469, '2022-03-31', 292, 463, 284, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '18.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (470, '2022-03-31', 195, 464, 285, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (471, '2022-03-31', 15, 465, 285, 20, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (472, '2022-03-31', 271, 466, 286, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '35.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (473, '2022-03-31', 271, 467, 286, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '35.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (474, '2022-03-31', 157, 468, 287, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '41.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (529, '2022-04-01', 43, 523, 318, 43, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (476, '2022-04-01', 166, 470, 289, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '6.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (477, '2022-04-01', 126, 471, 290, 122, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (478, '2022-04-01', 9, 472, 291, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '82.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (479, '2022-04-01', 162, 473, 292, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (480, '2022-04-01', 195, 474, 292, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (481, '2022-04-01', 163, 475, 292, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '29.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (482, '2022-04-01', 259, 476, 293, 249, '1.0000', '300.0000', '300.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 102, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (483, '2022-04-01', 77, 477, 293, 69, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (484, '2022-04-01', 38, 478, 294, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '2.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (485, '2022-04-01', 35, 479, 294, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '13.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (486, '2022-04-01', 194, 480, 294, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (487, '2022-04-01', 171, 481, 294, 220, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (488, '2022-04-01', 260, 482, 295, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '55.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (489, '2022-04-01', 284, 483, 296, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '8.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (490, '2022-04-01', 237, 484, 297, 206, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (491, '2022-04-01', 107, 485, 298, 309, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (492, '2022-04-01', 52, 486, 299, 218, '1.0000', '1700.0000', '1700.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (493, '2022-04-01', 189, 487, 299, 226, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (494, '2022-04-01', 200, 488, 300, 294, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (495, '2022-04-01', 8, 489, 300, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (496, '2022-04-01', 164, 490, 301, 155, '9.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (497, '2022-04-01', 21, 491, 302, 238, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (498, '2022-04-01', 260, 492, 303, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '54.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (499, '2022-04-01', 289, 493, 303, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '38.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (500, '2022-04-01', 9, 494, 303, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '81.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (501, '2022-04-01', 214, 495, 304, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '26.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (502, '2022-04-01', 45, 496, 305, 45, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (503, '2022-04-01', 166, 497, 306, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '5.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (504, '2022-04-01', 220, 498, 307, 323, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (505, '2022-04-01', 95, 499, 308, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '24.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (506, '2022-04-01', 194, 500, 309, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (507, '2022-04-01', 153, 501, 310, 132, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '25.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (508, '2022-04-01', 208, 502, 311, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (509, '2022-04-01', 159, 503, 312, 141, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (510, '2022-04-01', 200, 504, 312, 294, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (511, '2022-04-01', 11, 505, 313, 10, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (512, '2022-04-01', 14, 506, 314, 328, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (513, '2022-04-01', 93, 507, 314, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (514, '2022-04-01', 277, 508, 315, 288, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (515, '2022-04-01', 266, 509, 315, 262, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (516, '2022-04-01', 266, 510, 316, 262, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (517, '2022-04-01', 290, 511, 316, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (518, '2022-04-01', 54, 512, 316, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (519, '2022-04-01', 276, 513, 316, 284, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (520, '2022-04-01', 293, 514, 316, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (521, '2022-04-01', 289, 515, 316, 313, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '36.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (522, '2022-04-01', 20, 516, 316, 161, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (523, '2022-04-01', 3, 517, 316, 87, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (524, '2022-04-01', 296, 518, 316, 319, '1.0000', '95.0000', '95.0000', '120.0000', '120.0000', '89.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (525, '2022-04-01', 20, 519, 317, 161, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 34, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (526, '2022-04-01', 47, 520, 317, 329, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (527, '2022-04-01', 93, 521, 317, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (528, '2022-04-01', 289, 522, 317, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '35.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (530, '2022-04-01', 54, 524, 318, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (531, '2022-04-01', 289, 525, 318, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '34.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (532, '2022-04-01', 9, 526, 318, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '80.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (533, '2022-04-02', 116, 527, 319, 109, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (534, '2022-04-02', 119, 528, 319, 112, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (535, '2022-04-02', 195, 529, 320, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (536, '2022-04-02', 232, 530, 321, 336, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (537, '2022-04-02', 95, 531, 322, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '23.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (538, '2022-04-02', 93, 532, 323, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (539, '2022-04-02', 54, 533, 323, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (540, '2022-04-02', 115, 534, 324, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (541, '2022-04-02', 9, 535, 325, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '79.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (542, '2022-04-02', 289, 536, 325, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '33.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (543, '2022-04-02', 289, 537, 326, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '32.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (544, '2022-04-02', 195, 538, 327, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (545, '2022-04-02', 271, 539, 328, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '33.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (546, '2022-04-02', 165, 540, 329, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (547, '2022-04-02', 298, 541, 329, 321, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (548, '2022-04-02', 200, 542, 329, 294, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (549, '2022-04-02', 194, 543, 329, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (550, '2022-04-02', 194, 544, 329, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (551, '2022-04-02', 113, 545, 330, 106, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (552, '2022-04-02', 163, 546, 331, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '27.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (553, '2022-04-02', 162, 547, 331, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (554, '2022-04-02', 67, 548, 331, 59, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '7.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (555, '2022-04-02', 195, 549, 332, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (556, '2022-04-02', 73, 550, 333, 162, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 35, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (557, '2022-04-02', 282, 551, 333, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '7.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (558, '2022-04-02', 84, 552, 334, 75, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (559, '2022-04-02', 200, 553, 335, 342, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (560, '2022-04-02', 107, 554, 336, 309, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (561, '2022-04-02', 282, 555, 336, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '6.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (562, '2022-04-02', 271, 556, 337, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '32.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (563, '2022-04-02', 214, 557, 338, 175, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '24.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (564, '2022-04-02', 43, 558, 339, 43, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (565, '2022-04-02', 195, 559, 340, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (566, '2022-04-02', 93, 560, 341, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '12.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (567, '2022-04-02', 54, 561, 341, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (568, '2022-04-03', 153, 562, 342, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '24.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (569, '2022-04-03', 277, 563, 343, 288, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (570, '2022-04-03', 9, 564, 343, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '74.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (571, '2022-04-03', 153, 565, 344, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '23.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (572, '2022-04-03', 60, 566, 345, 56, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (573, '2022-04-03', 72, 567, 345, 251, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 104, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (574, '2022-04-03', 21, 568, 345, 238, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '10.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (575, '2022-04-03', 64, 569, 345, 60, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (576, '2022-04-03', 241, 570, 345, 212, '2.0000', '250.0000', '250.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 74, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (577, '2022-04-03', 25, 571, 345, 255, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '18.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (578, '2022-04-03', 45, 572, 345, 45, '2.0000', '130.0000', '130.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (579, '2022-04-03', 296, 573, 346, 319, '10.0000', '95.0000', '95.0000', '120.0000', '120.0000', '79.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (580, '2022-04-03', 297, 574, 346, 320, '4.0000', '180.0000', '180.0000', '250.0000', '250.0000', '31.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (581, '2022-04-04', 165, 575, 347, 150, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (582, '2022-04-04', 288, 576, 348, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (583, '2022-04-04', 284, 577, 349, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '7.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (584, '2022-04-04', 179, 578, 349, 252, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (585, '2022-04-04', 271, 579, 350, 270, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '30.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (586, '2022-04-04', 171, 580, 351, 220, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (587, '2022-04-04', 171, 580, 351, 364, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (588, '2022-04-04', 271, 581, 352, 270, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '28.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (589, '2022-04-05', 232, 582, 353, 336, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (590, '2022-04-05', 217, 583, 353, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (591, '2022-04-05', 297, 584, 354, 320, '8.0000', '180.0000', '180.0000', '250.0000', '250.0000', '23.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (592, '2022-04-05', 293, 585, 354, 317, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (593, '2022-04-05', 290, 586, 354, 314, '4.0000', '160.0000', '160.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (594, '2022-04-05', 287, 587, 354, 311, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '18.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (595, '2022-04-05', 288, 588, 354, 312, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (596, '2022-04-05', 289, 589, 354, 313, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (597, '2022-04-05', 210, 590, 354, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (598, '2022-04-05', 292, 591, 354, 316, '5.0000', '350.0000', '350.0000', '450.0000', '450.0000', '13.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (599, '2022-04-05', 291, 592, 354, 315, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '18.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (600, '2022-04-05', 220, 593, 355, 343, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (601, '2022-04-05', 16, 594, 356, 21, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (602, '2022-04-05', 290, 595, 356, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (603, '2022-04-05', 95, 596, 357, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '22.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (604, '2022-04-05', 195, 597, 358, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (605, '2022-04-05', 9, 598, 359, 8, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '72.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (606, '2022-04-05', 289, 599, 359, 313, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '28.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (607, '2022-04-05', 290, 600, 359, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (608, '2022-04-05', 307, 601, 360, 370, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (609, '2022-04-06', 278, 602, 361, 289, '1.0000', '60.0000', '60.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (610, '2022-04-06', 166, 603, 362, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '4.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (611, '2022-04-06', 171, 604, 363, 364, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (612, '2022-04-06', 166, 605, 363, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '3.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (613, '2022-04-06', 298, 606, 363, 321, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (614, '2022-04-06', 9, 607, 364, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '71.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (615, '2022-04-06', 284, 608, 365, 306, '2.0000', '50.0000', '50.0000', '80.0000', '80.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (616, '2022-04-06', 303, 609, 365, 362, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (617, '2022-04-06', 153, 610, 365, 132, '4.0000', '250.0000', '250.0000', '400.0000', '400.0000', '19.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (618, '2022-04-06', 11, 611, 366, 10, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (619, '2022-04-07', 218, 612, 367, 326, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (620, '2022-04-07', 218, 613, 367, 326, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (621, '2022-04-07', 289, 614, 367, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '27.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (622, '2022-04-07', 293, 615, 368, 317, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (623, '2022-04-07', 281, 616, 368, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (624, '2022-04-07', 282, 617, 368, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (625, '2022-04-07', 308, 618, 369, 385, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 140, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (626, '2022-04-07', 192, 619, 370, 157, '6.0000', '200.0000', '200.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (627, '2022-04-07', 95, 620, 371, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '21.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (628, '2022-04-07', 58, 621, 372, 54, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (629, '2022-04-07', 58, 622, 372, 54, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (630, '2022-04-07', 164, 623, 372, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (631, '2022-04-07', 85, 624, 373, 76, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (632, '2022-04-07', 95, 625, 373, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '20.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (633, '2022-04-07', 288, 626, 373, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (634, '2022-04-07', 297, 627, 373, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '22.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (635, '2022-04-07', 297, 628, 373, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '22.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (636, '2022-04-07', 208, 629, 373, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (637, '2022-04-07', 289, 630, 374, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '26.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (638, '2022-04-07', 277, 631, 374, 288, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (639, '2022-04-08', 44, 632, 375, 44, '1.0000', '450.0000', '450.0000', '900.0000', '900.0000', '5.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (640, '2022-04-08', 170, 633, 376, 233, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (641, '2022-04-08', 220, 634, 377, 343, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (642, '2022-04-08', 237, 635, 377, 338, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (643, '2022-04-08', 5, 636, 378, 5, '-15.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (644, '2022-04-08', 5, 636, 378, 86, '16.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (645, '2022-04-08', 297, 637, 379, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '20.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (646, '2022-04-08', 160, 638, 379, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (647, '2022-04-08', 6, 639, 380, 6, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (648, '2022-04-08', 282, 640, 381, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (649, '2022-04-08', 195, 641, 382, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (650, '2022-04-08', 308, 642, 383, 385, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 140, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (651, '2022-04-08', 195, 643, 384, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (652, '2022-04-08', 192, 644, 385, 157, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (653, '2022-04-08', 98, 645, 386, 298, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (654, '2022-04-08', 309, 646, 387, 372, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (655, '2022-04-08', 218, 647, 387, 326, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (656, '2022-04-08', 230, 648, 388, 198, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (657, '2022-04-08', 305, 649, 389, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '9.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (658, '2022-04-08', 17, 650, 389, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (659, '2022-04-08', 290, 651, 389, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (660, '2022-04-08', 195, 652, 389, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (661, '2022-04-08', 200, 653, 390, 342, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (662, '2022-04-08', 25, 654, 391, 255, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '17.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (663, '2022-04-08', 163, 655, 391, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '26.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (664, '2022-04-08', 93, 656, 391, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (665, '2022-04-08', 162, 657, 391, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (666, '2022-04-08', 195, 658, 392, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (667, '2022-04-08', 166, 659, 393, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '2.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (668, '2022-04-08', 166, 660, 394, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '1.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (669, '2022-04-08', 119, 661, 395, 112, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (670, '2022-04-08', 15, 662, 396, 20, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (671, '2022-04-08', 93, 663, 396, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (672, '2022-04-08', 289, 664, 397, 313, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (673, '2022-04-08', 338, 665, 397, 423, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '46.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (674, '2022-04-08', 282, 666, 398, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (675, '2022-04-08', 67, 667, 399, 59, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (676, '2022-04-08', 163, 668, 399, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '25.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (677, '2022-04-08', 11, 669, 399, 10, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (678, '2022-04-08', 338, 670, 399, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '45.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (679, '2022-04-08', 289, 671, 399, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '23.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (680, '2022-04-08', 293, 672, 399, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (681, '2022-04-08', 316, 673, 400, 392, '1.0000', '900.0000', '900.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (682, '2022-04-08', 165, 674, 400, 150, '-3.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (683, '2022-04-08', 165, 674, 400, 286, '3.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 127, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (684, '2022-04-08', 165, 674, 400, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (685, '2022-04-08', 159, 675, 401, 141, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (686, '2022-04-08', 296, 676, 401, 319, '1.0000', '95.0000', '95.0000', '120.0000', '120.0000', '78.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (687, '2022-04-08', 271, 677, 402, 270, '12.0000', '30.0000', '30.0000', '40.0000', '40.0000', '16.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (688, '2022-04-08', 268, 678, 402, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '38.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (689, '2022-04-08', 269, 679, 402, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '18.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (690, '2022-04-09', 338, 680, 403, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '44.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (691, '2022-04-09', 268, 681, 404, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '37.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (692, '2022-04-09', 269, 682, 404, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (693, '2022-04-09', 271, 683, 404, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '15.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (694, '2022-04-09', 15, 684, 405, 20, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (695, '2022-04-09', 95, 685, 405, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '19.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (696, '2022-04-09', 47, 686, 406, 348, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (697, '2022-04-09', 93, 687, 406, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (698, '2022-04-09', 218, 688, 406, 326, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (699, '2022-04-09', 338, 689, 407, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '43.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (700, '2022-04-09', 9, 690, 407, 8, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '69.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (701, '2022-04-09', 148, 691, 408, 133, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (702, '2022-04-09', 193, 692, 408, 156, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (703, '2022-04-09', 165, 693, 409, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '18.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (704, '2022-04-09', 341, 694, 409, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (705, '2022-04-09', 298, 695, 409, 321, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (706, '2022-04-09', 107, 696, 410, 309, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (707, '2022-04-09', 49, 697, 411, 369, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (708, '2022-04-09', 331, 698, 412, 416, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (709, '2022-04-09', 162, 699, 413, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (710, '2022-04-09', 65, 700, 413, 380, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (711, '2022-04-09', 163, 701, 414, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (712, '2022-04-09', 93, 702, 415, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (713, '2022-04-09', 25, 703, 415, 255, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '16.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (714, '2022-04-09', 153, 704, 416, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '18.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (715, '2022-04-09', 196, 705, 417, 356, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (716, '2022-04-09', 93, 706, 417, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (717, '2022-04-09', 92, 707, 418, 82, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (718, '2022-04-09', 216, 708, 419, 177, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (719, '2022-04-09', 65, 709, 420, 425, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (720, '2022-04-09', 195, 710, 421, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (721, '2022-04-09', 162, 711, 422, 147, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (722, '2022-04-09', 25, 712, 422, 255, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '15.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (723, '2022-04-09', 165, 713, 422, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (724, '2022-04-09', 103, 714, 422, 113, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '12.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (725, '2022-04-09', 95, 715, 423, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '18.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (726, '2022-04-09', 195, 716, 424, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (727, '2022-04-09', 193, 717, 425, 156, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (728, '2022-04-09', 40, 718, 425, 40, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (729, '2022-04-09', 164, 719, 426, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (730, '2022-04-09', 193, 720, 426, 156, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (731, '2022-04-09', 165, 721, 427, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '16.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (732, '2022-04-09', 338, 722, 427, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '42.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (733, '2022-04-09', 157, 723, 427, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '40.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (734, '2022-04-09', 49, 724, 427, 369, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (735, '2022-04-09', 3, 725, 427, 87, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (736, '2022-04-09', 334, 726, 427, 420, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (737, '2022-04-09', 298, 727, 427, 321, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (738, '2022-04-09', 271, 728, 428, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '14.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (739, '2022-04-10', 292, 729, 429, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '12.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (740, '2022-04-10', 170, 730, 430, 233, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (741, '2022-04-10', 310, 731, 430, 373, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (742, '2022-04-10', 314, 732, 431, 389, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (743, '2022-04-10', 290, 733, 431, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (744, '2022-04-10', 341, 734, 431, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '18.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (745, '2022-04-10', 291, 735, 431, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (746, '2022-04-10', 337, 736, 431, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (747, '2022-04-10', 287, 737, 431, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (748, '2022-04-10', 165, 738, 431, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (749, '2022-04-10', 257, 739, 431, 244, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (750, '2022-04-10', 6, 740, 431, 6, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (751, '2022-04-10', 292, 741, 431, 316, '4.0000', '350.0000', '350.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (752, '2022-04-10', 288, 742, 432, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (753, '2022-04-10', 293, 743, 433, 317, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (754, '2022-04-10', 282, 744, 434, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (755, '2022-04-10', 220, 745, 434, 343, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (756, '2022-04-10', 220, 746, 434, 343, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (757, '2022-04-10', 284, 747, 434, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (758, '2022-04-10', 286, 748, 434, 308, '1.0000', '75.0000', '75.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (759, '2022-04-10', 113, 749, 434, 106, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (760, '2022-04-10', 8, 750, 434, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (761, '2022-04-10', 217, 751, 434, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (762, '2022-04-10', 312, 752, 435, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (763, '2022-04-10', 289, 753, 435, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (764, '2022-04-10', 289, 754, 435, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (765, '2022-04-10', 289, 755, 435, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (766, '2022-04-10', 74, 756, 436, 66, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (767, '2022-04-10', 12, 757, 437, 278, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (768, '2022-04-10', 196, 758, 438, 356, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (769, '2022-04-10', 93, 759, 438, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (770, '2022-04-10', 217, 760, 438, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (771, '2022-04-10', 303, 761, 438, 362, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (772, '2022-04-10', 287, 762, 438, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '16.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (773, '2022-04-10', 165, 763, 438, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (774, '2022-04-10', 156, 764, 438, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (775, '2022-04-10', 338, 765, 439, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '41.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (776, '2022-04-10', 289, 766, 439, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (777, '2022-04-11', 296, 767, 440, 319, '1.0000', '95.0000', '95.0000', '120.0000', '120.0000', '77.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (778, '2022-04-11', 290, 768, 440, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (779, '2022-04-11', 165, 769, 441, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (780, '2022-04-11', 216, 770, 442, 177, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (781, '2022-04-11', 186, 771, 443, 401, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (782, '2022-04-11', 8, 772, 444, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (783, '2022-04-11', 271, 773, 445, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '13.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (784, '2022-04-11', 220, 774, 446, 343, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (785, '2022-04-11', 317, 775, 447, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (786, '2022-04-11', 195, 776, 447, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (787, '2022-04-11', 17, 777, 447, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (788, '2022-04-11', 290, 778, 447, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (789, '2022-04-11', 288, 779, 448, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (790, '2022-04-11', 305, 780, 449, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '8.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (791, '2022-04-11', 217, 781, 450, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (792, '2022-04-11', 92, 782, 450, 82, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (793, '2022-04-11', 340, 783, 450, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (794, '2022-04-11', 340, 784, 450, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (795, '2022-04-11', 7, 785, 450, 339, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (796, '2022-04-11', 273, 786, 451, 273, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (797, '2022-04-11', 35, 787, 451, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (798, '2022-04-11', 166, 788, 451, 207, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (799, '2022-04-11', 298, 789, 451, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '8.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (800, '2022-04-11', 113, 790, 451, 106, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (801, '2022-04-11', 159, 791, 451, 141, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (802, '2022-04-11', 67, 792, 451, 59, '-1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (803, '2022-04-11', 67, 792, 451, 431, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (804, '2022-04-11', 253, 793, 451, 240, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (805, '2022-04-11', 342, 794, 452, 440, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (806, '2022-04-12', 290, 795, 453, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (807, '2022-04-12', 293, 796, 453, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (808, '2022-04-12', 143, 797, 453, 437, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (809, '2022-04-12', 200, 798, 454, 342, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (810, '2022-04-12', 35, 799, 455, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '11.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (811, '2022-04-12', 165, 800, 456, 386, '3.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (812, '2022-04-12', 143, 801, 456, 437, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (813, '2022-04-12', 165, 802, 457, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (814, '2022-04-12', 164, 803, 457, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (815, '2022-04-12', 298, 804, 457, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (816, '2022-04-12', 193, 805, 458, 279, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '19.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (817, '2022-04-12', 166, 806, 459, 355, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (818, '2022-04-12', 136, 807, 460, 189, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (819, '2022-04-12', 271, 808, 461, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '12.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (820, '2022-04-12', 159, 809, 462, 141, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 21, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (821, '2022-04-12', 289, 810, 463, 313, '5.0000', '140.0000', '140.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (822, '2022-04-12', 338, 811, 463, 423, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '39.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (823, '2022-04-12', 9, 812, 463, 8, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '62.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (824, '2022-04-12', 307, 813, 463, 370, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (825, '2022-04-12', 288, 814, 463, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (826, '2022-04-12', 298, 815, 464, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (827, '2022-04-12', 166, 816, 464, 377, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (828, '2022-04-12', 40, 817, 464, 40, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (829, '2022-04-12', 291, 818, 464, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '16.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (830, '2022-04-12', 317, 819, 464, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '18.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (831, '2022-04-12', 287, 820, 464, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (832, '2022-04-12', 288, 821, 464, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (833, '2022-04-12', 313, 822, 464, 388, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (834, '2022-04-13', 333, 823, 465, 419, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (835, '2022-04-13', 170, 824, 465, 233, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (836, '2022-04-13', 184, 825, 466, 406, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (837, '2022-04-13', 325, 826, 466, 409, '1.0000', '1500.0000', '1500.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (838, '2022-04-13', 289, 827, 467, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (839, '2022-04-13', 54, 828, 467, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (840, '2022-04-13', 93, 829, 467, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (841, '2022-04-13', 184, 830, 468, 406, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (842, '2022-04-13', 195, 831, 469, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (843, '2022-04-13', 9, 832, 470, 8, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '59.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (844, '2022-04-13', 338, 833, 470, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '38.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (845, '2022-04-13', 342, 834, 470, 440, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (846, '2022-04-13', 100, 835, 470, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '14.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (847, '2022-04-13', 164, 836, 470, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (848, '2022-04-13', 166, 837, 470, 377, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (849, '2022-04-13', 67, 838, 470, 431, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (850, '2022-04-13', 93, 839, 470, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (851, '2022-04-13', 268, 840, 471, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '36.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (852, '2022-04-13', 271, 841, 471, 270, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '10.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (853, '2022-04-13', 145, 842, 472, 272, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (854, '2022-04-13', 271, 843, 473, 270, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (857, '2022-04-13', 119, 846, 474, 112, '4.0000', '120.0000', '120.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (858, '2022-04-14', 199, 847, 475, 245, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '4.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (859, '2022-04-14', 9, 848, 476, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '58.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (860, '2022-04-14', 338, 849, 477, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '37.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (861, '2022-04-14', 119, 850, 478, 112, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (862, '2022-04-14', 200, 851, 479, 360, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (863, '2022-04-14', 165, 852, 480, 386, '1.0000', '1350.0000', '1350.0000', '1550.0000', '1550.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (864, '2022-04-14', 298, 853, 480, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (865, '2022-04-14', 166, 854, 480, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (866, '2022-04-14', 257, 855, 480, 244, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 97, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (867, '2022-04-14', 318, 856, 481, 397, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (868, '2022-04-14', 208, 857, 481, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (869, '2022-04-14', 208, 858, 481, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (870, '2022-04-14', 195, 859, 481, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (871, '2022-04-14', 319, 860, 481, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (872, '2022-04-14', 218, 861, 481, 326, '5.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (873, '2022-04-14', 336, 862, 481, 427, '1.0000', '200.0000', '200.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (874, '2022-04-14', 232, 863, 482, 336, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (875, '2022-04-14', 195, 864, 483, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (876, '2022-04-14', 107, 865, 484, 309, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (877, '2022-04-14', 280, 866, 484, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '8.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (878, '2022-04-14', 14, 867, 485, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (879, '2022-04-14', 252, 868, 485, 237, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (880, '2022-04-14', 271, 869, 485, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '7.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (881, '2022-04-14', 220, 870, 486, 343, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (882, '2022-04-14', 271, 871, 486, 270, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (883, '2022-04-14', 200, 872, 487, 360, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (884, '2022-04-14', 195, 873, 488, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (885, '2022-04-14', 95, 874, 489, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '17.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (899, '2022-04-14', 338, 888, 490, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '36.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (898, '2022-04-14', 171, 887, 490, 364, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (897, '2022-04-14', 337, 886, 490, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (896, '2022-04-14', 289, 885, 490, 313, '4.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (900, '2022-04-14', 317, 889, 490, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (891, '2022-04-14', 209, 880, 491, 167, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (892, '2022-04-14', 341, 881, 492, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (893, '2022-04-14', 164, 882, 493, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (894, '2022-04-14', 166, 883, 493, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (895, '2022-04-14', 5, 884, 493, 86, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (901, '2022-04-14', 5, 890, 494, 86, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (902, '2022-04-14', 306, 891, 494, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '19.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (903, '2022-04-14', 96, 892, 494, 90, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (904, '2022-04-14', 165, 893, 494, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (905, '2022-04-14', 292, 894, 494, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (906, '2022-04-15', 232, 895, 495, 336, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (907, '2022-04-15', 193, 896, 496, 279, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '18.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (908, '2022-04-15', 192, 897, 497, 157, '3.0000', '200.0000', '200.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (909, '2022-04-15', 95, 898, 498, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '16.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (910, '2022-04-15', 338, 899, 498, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '35.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (911, '2022-04-15', 295, 900, 499, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '38.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (912, '2022-04-15', 288, 901, 499, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (913, '2022-04-15', 290, 902, 499, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (914, '2022-04-15', 293, 903, 499, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (915, '2022-04-15', 293, 904, 499, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (916, '2022-04-15', 200, 905, 499, 360, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (917, '2022-04-15', 100, 906, 499, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '13.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (918, '2022-04-15', 287, 907, 500, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '14.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (919, '2022-04-15', 271, 908, 500, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (920, '2022-04-15', 296, 909, 501, 319, '2.0000', '95.0000', '95.0000', '120.0000', '120.0000', '75.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (921, '2022-04-15', 290, 910, 501, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (922, '2022-04-15', 288, 911, 501, 312, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (923, '2022-04-15', 8, 912, 502, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (924, '2022-04-15', 280, 913, 502, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '7.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (925, '2022-04-15', 194, 914, 503, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (926, '2022-04-15', 313, 915, 503, 388, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (927, '2022-04-15', 282, 916, 504, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (928, '2022-04-15', 217, 917, 505, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (929, '2022-04-15', 269, 918, 506, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (930, '2022-04-15', 171, 919, 507, 364, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (931, '2022-04-15', 338, 920, 508, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '34.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (932, '2022-04-15', 289, 921, 508, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (933, '2022-04-15', 9, 922, 509, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '57.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (934, '2022-04-15', 289, 923, 509, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (935, '2022-04-15', 271, 924, 510, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (936, '2022-04-15', 289, 925, 511, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (937, '2022-04-15', 338, 926, 511, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '33.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (938, '2022-04-15', 274, 927, 512, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (939, '2022-04-15', 290, 928, 512, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (940, '2022-04-15', 338, 929, 513, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '32.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (941, '2022-04-15', 289, 930, 513, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (942, '2022-04-15', 217, 931, 513, 179, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (943, '2022-04-15', 200, 932, 514, 360, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (944, '2022-04-15', 93, 933, 514, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (945, '2022-04-15', 271, 934, 515, 270, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (946, '2022-04-15', 298, 935, 515, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (947, '2022-04-15', 165, 936, 515, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (948, '2022-04-15', 311, 937, 515, 374, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (949, '2022-04-16', 220, 938, 516, 449, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (950, '2022-04-16', 195, 939, 517, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (951, '2022-04-16', 230, 940, 518, 198, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (952, '2022-04-16', 341, 941, 519, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '16.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (953, '2022-04-16', 35, 942, 519, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '10.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (954, '2022-04-16', 293, 943, 519, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (955, '2022-04-16', 288, 944, 519, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (956, '2022-04-16', 165, 945, 520, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (957, '2022-04-16', 298, 946, 520, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (958, '2022-04-16', 341, 947, 521, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (959, '2022-04-16', 171, 948, 521, 364, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (960, '2022-04-16', 317, 949, 521, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '16.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (961, '2022-04-16', 293, 950, 521, 317, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (962, '2022-04-16', 290, 951, 521, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (963, '2022-04-16', 163, 952, 522, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (964, '2022-04-16', 162, 953, 522, 147, '-3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (965, '2022-04-16', 162, 953, 522, 430, '4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (966, '2022-04-16', 253, 954, 522, 240, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (967, '2022-04-16', 109, 955, 523, 375, '6.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (968, '2022-04-16', 7, 956, 524, 457, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (969, '2022-04-16', 253, 957, 525, 240, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (970, '2022-04-16', 339, 958, 525, 415, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (971, '2022-04-16', 315, 959, 525, 390, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (972, '2022-04-16', 243, 960, 525, 215, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (973, '2022-04-16', 99, 961, 525, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (974, '2022-04-16', 154, 962, 525, 131, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (975, '2022-04-16', 292, 963, 525, 316, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (976, '2022-04-16', 282, 964, 526, 305, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (977, '2022-04-16', 260, 965, 526, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '53.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (978, '2022-04-16', 3, 966, 527, 87, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (979, '2022-04-16', 196, 967, 527, 443, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 144, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (980, '2022-04-16', 93, 968, 527, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (981, '2022-04-16', 317, 969, 528, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (982, '2022-04-16', 154, 970, 529, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (983, '2022-04-16', 25, 971, 530, 255, '-3.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (984, '2022-04-16', 25, 971, 530, 429, '5.0000', '200.0000', '200.0000', '400.0000', '400.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (985, '2022-04-16', 93, 972, 530, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (986, '2022-04-16', 165, 973, 531, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (987, '2022-04-16', 271, 974, 532, 301, '5.0000', '30.0000', '30.0000', '40.0000', '40.0000', '10.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (988, '2022-04-16', 220, 975, 532, 449, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (989, '2022-04-16', 95, 976, 533, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '15.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (990, '2022-04-16', 195, 977, 534, 151, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (991, '2022-04-16', 338, 978, 535, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '31.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (992, '2022-04-16', 212, 979, 535, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (993, '2022-04-16', 95, 980, 536, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '14.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (994, '2022-04-16', 340, 981, 536, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (995, '2022-04-16', 153, 982, 537, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '17.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (996, '2022-04-16', 220, 983, 538, 449, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (997, '2022-04-16', 230, 984, 539, 198, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (998, '2022-04-16', 269, 985, 540, 268, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (999, '2022-04-16', 270, 986, 540, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1000, '2022-04-16', 165, 987, 541, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1001, '2022-04-16', 298, 988, 541, 376, '1.0000', '850.0000', '850.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1002, '2022-04-17', 99, 989, 542, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1003, '2022-04-17', 164, 990, 543, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1004, '2022-04-17', 93, 991, 543, 144, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 24, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1005, '2022-04-17', 47, 992, 543, 348, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1006, '2022-04-17', 21, 993, 543, 17, '-3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1007, '2022-04-17', 21, 993, 543, 238, '6.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1008, '2022-04-17', 293, 994, 544, 317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1009, '2022-04-17', 293, 994, 544, 444, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1010, '2022-04-17', 95, 995, 545, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '13.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1011, '2022-04-17', 284, 996, 546, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1012, '2022-04-17', 192, 997, 547, 157, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1013, '2022-04-17', 287, 998, 548, 311, '3.0000', '80.0000', '80.0000', '100.0000', '100.0000', '11.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1014, '2022-04-17', 319, 999, 549, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1015, '2022-04-17', 317, 1000, 549, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1016, '2022-04-17', 287, 1001, 549, 311, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1017, '2022-04-17', 303, 1002, 550, 362, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1018, '2022-04-17', 219, 1003, 551, 182, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1019, '2022-04-17', 219, 1003, 551, 327, '5.0000', '20.0000', '20.0000', '30.0000', '30.0000', '5.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1020, '2022-04-17', 163, 1004, 551, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1021, '2022-04-17', 291, 1005, 551, 315, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1022, '2022-04-17', 292, 1006, 551, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1023, '2022-04-17', 154, 1007, 551, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1024, '2022-04-17', 331, 1008, 551, 416, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1025, '2022-04-17', 177, 1009, 551, 229, '1.0000', '1000.0000', '1000.0000', '1100.0000', '1100.0000', '1.0000', 1, 0, NULL, 88, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1026, '2022-04-17', 173, 1010, 551, 230, '1.0000', '4000.0000', '4000.0000', '5200.0000', '5200.0000', '1.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1027, '2022-04-17', 316, 1011, 552, 392, '1.0000', '900.0000', '900.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1028, '2022-04-17', 292, 1012, 552, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1029, '2022-04-17', 30, 1013, 552, 29, '-4.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1030, '2022-04-17', 30, 1013, 552, 61, '4.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1031, '2022-04-17', 30, 1013, 552, 391, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1032, '2022-04-17', 334, 1014, 552, 420, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1033, '2022-04-17', 165, 1015, 552, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1034, '2022-04-17', 192, 1016, 552, 157, '4.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1035, '2022-04-17', 292, 1017, 553, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1036, '2022-04-17', 291, 1018, 553, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1037, '2022-04-17', 340, 1019, 554, 433, '5.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1038, '2022-04-17', 220, 1020, 554, 449, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1039, '2022-04-17', 220, 1020, 554, 467, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 147, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1040, '2022-04-17', 166, 1021, 554, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1041, '2022-04-17', 309, 1022, 554, 372, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1042, '2022-04-17', 200, 1023, 555, 360, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1043, '2022-04-18', 107, 1024, 556, 335, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1044, '2022-04-18', 200, 1025, 556, 360, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1045, '2022-04-18', 304, 1026, 557, 363, '2.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1046, '2022-04-18', 293, 1027, 557, 444, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1047, '2022-04-18', 334, 1028, 557, 420, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1048, '2022-04-18', 291, 1029, 557, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1049, '2022-04-18', 49, 1030, 557, 369, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1050, '2022-04-18', 220, 1031, 558, 467, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 147, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1051, '2022-04-18', 195, 1032, 559, 151, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1052, '2022-04-18', 21, 1033, 559, 238, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1053, '2022-04-18', 11, 1034, 560, 10, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1054, '2022-04-18', 38, 1035, 560, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '1.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1055, '2022-04-18', 149, 1036, 561, 134, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1056, '2022-04-18', 193, 1037, 561, 279, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1057, '2022-04-18', 218, 1038, 562, 460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1058, '2022-04-18', 294, 1039, 563, 318, '2.0000', '450.0000', '450.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1059, '2022-04-18', 115, 1040, 564, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1060, '2022-04-18', 280, 1041, 564, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '6.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1061, '2022-04-18', 142, 1042, 564, 439, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1062, '2022-04-18', 200, 1043, 564, 451, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1063, '2022-04-18', 6, 1044, 565, 6, '2.0000', '300.0000', '300.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1064, '2022-04-18', 316, 1045, 565, 392, '1.0000', '900.0000', '900.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1065, '2022-04-18', 170, 1046, 565, 400, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1066, '2022-04-18', 208, 1047, 565, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1067, '2022-04-18', 208, 1048, 565, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1068, '2022-04-18', 293, 1049, 565, 444, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1069, '2022-04-18', 172, 1050, 565, 417, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1070, '2022-04-18', 3, 1051, 566, 87, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1071, '2022-04-18', 142, 1052, 567, 439, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1072, '2022-04-18', 336, 1053, 567, 427, '2.0000', '200.0000', '200.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1073, '2022-04-18', 171, 1054, 567, 364, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1074, '2022-04-18', 192, 1055, 568, 157, '3.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1075, '2022-04-18', 317, 1056, 568, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1076, '2022-04-18', 340, 1057, 568, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1077, '2022-04-18', 341, 1058, 568, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1078, '2022-04-18', 282, 1059, 569, 454, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1079, '2022-04-18', 208, 1060, 570, 325, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1080, '2022-04-18', 289, 1061, 570, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1081, '2022-04-19', 208, 1062, 571, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1082, '2022-04-19', 271, 1063, 572, 301, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '9.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1083, '2022-04-19', 160, 1064, 573, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1084, '2022-04-19', 271, 1065, 574, 301, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1085, '2022-04-19', 271, 1066, 575, 301, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1086, '2022-04-19', 57, 1067, 576, 53, '-1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1087, '2022-04-19', 57, 1067, 576, 260, '2.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1088, '2022-04-19', 93, 1068, 576, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1089, '2022-04-19', 107, 1069, 577, 335, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1090, '2022-04-19', 293, 1070, 578, 444, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1091, '2022-04-19', 341, 1071, 578, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1092, '2022-04-19', 268, 1072, 579, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '35.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1093, '2022-04-19', 280, 1073, 579, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1094, '2022-04-19', 166, 1074, 580, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '11.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1095, '2022-04-20', 184, 1075, 581, 406, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1096, '2022-04-20', 337, 1076, 581, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1097, '2022-04-20', 322, 1077, 581, 404, '1.0000', '4500.0000', '4500.0000', '6000.0000', '6000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1098, '2022-04-20', 218, 1078, 581, 460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1099, '2022-04-20', 219, 1079, 581, 327, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '4.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1100, '2022-04-20', 341, 1080, 582, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1101, '2022-04-20', 143, 1081, 582, 437, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1102, '2022-04-20', 337, 1082, 582, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1103, '2022-04-20', 5, 1083, 582, 86, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1104, '2022-04-20', 153, 1084, 582, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '16.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1105, '2022-04-20', 200, 1085, 582, 451, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1106, '2022-04-20', 291, 1086, 583, 315, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1107, '2022-04-20', 321, 1087, 583, 403, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1108, '2022-04-20', 271, 1088, 584, 301, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1109, '2022-04-20', 220, 1089, 584, 467, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 147, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1110, '2022-04-20', 218, 1090, 585, 460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1111, '2022-04-20', 285, 1091, 586, 302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1112, '2022-04-20', 31, 1092, 586, 30, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1113, '2022-04-20', 219, 1093, 586, 327, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '3.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1114, '2022-04-20', 218, 1094, 586, 460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1115, '2022-04-20', 200, 1095, 586, 451, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1116, '2022-04-20', 145, 1096, 586, 272, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1117, '2022-04-20', 195, 1097, 587, 334, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 137, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1118, '2022-04-20', 271, 1098, 588, 301, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1119, '2022-04-20', 193, 1099, 588, 279, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '16.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1120, '2022-04-20', 220, 1100, 589, 467, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 147, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1121, '2022-04-20', 271, 1101, 589, 337, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1122, '2022-04-20', 287, 1102, 590, 311, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1123, '2022-04-20', 166, 1103, 591, 422, '3.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1124, '2022-04-20', 81, 1104, 591, 72, '1.0000', '75.0000', '75.0000', '120.0000', '120.0000', '7.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1125, '2022-04-20', 30, 1105, 591, 391, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1126, '2022-04-20', 252, 1106, 591, 237, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1127, '2022-04-20', 305, 1107, 592, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1128, '2022-04-20', 40, 1108, 592, 40, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1129, '2022-04-20', 166, 1109, 592, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1130, '2022-04-20', 30, 1110, 592, 391, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1131, '2022-04-20', 81, 1111, 592, 72, '1.0000', '75.0000', '75.0000', '120.0000', '120.0000', '6.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1132, '2022-04-20', 218, 1112, 592, 460, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1133, '2022-04-20', 170, 1113, 592, 400, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1134, '2022-04-21', 99, 1114, 593, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1135, '2022-04-21', 294, 1115, 594, 318, '2.0000', '450.0000', '450.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1136, '2022-04-21', 49, 1116, 595, 369, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1137, '2022-04-21', 293, 1117, 595, 444, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1138, '2022-04-21', 271, 1118, 596, 337, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1139, '2022-04-21', 269, 1119, 596, 268, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1140, '2022-04-21', 268, 1120, 596, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '33.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1141, '2022-04-21', 274, 1121, 597, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1142, '2022-04-21', 13, 1122, 597, 12, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1143, '2022-04-21', 312, 1123, 598, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '18.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1144, '2022-04-21', 260, 1124, 599, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '52.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1145, '2022-04-21', 260, 1125, 600, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '51.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1146, '2022-04-21', 274, 1126, 600, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1147, '2022-04-21', 274, 1127, 600, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1148, '2022-04-21', 283, 1128, 601, 303, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1149, '2022-04-21', 200, 1129, 602, 451, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1150, '2022-04-22', 290, 1130, 603, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1151, '2022-04-22', 212, 1131, 603, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1152, '2022-04-22', 295, 1132, 603, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '37.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1153, '2022-04-22', 314, 1133, 604, 389, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1154, '2022-04-22', 290, 1134, 605, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1155, '2022-04-22', 217, 1135, 605, 473, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1156, '2022-04-22', 195, 1136, 605, 334, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 137, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1157, '2022-04-22', 162, 1137, 606, 430, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1158, '2022-04-22', 317, 1138, 607, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1159, '2022-04-22', 162, 1139, 608, 430, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1160, '2022-04-22', 93, 1140, 608, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1161, '2022-04-22', 100, 1141, 609, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '12.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1162, '2022-04-22', 8, 1142, 609, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1163, '2022-04-22', 288, 1143, 609, 312, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1164, '2022-04-22', 271, 1144, 609, 337, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1165, '2022-04-22', 247, 1145, 609, 222, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1166, '2022-04-22', 292, 1146, 609, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1167, '2022-04-22', 295, 1147, 609, 332, '2.0000', '400.0000', '400.0000', '500.0000', '500.0000', '35.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1168, '2022-04-22', 340, 1148, 609, 433, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1169, '2022-04-22', 171, 1149, 609, 364, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1170, '2022-04-22', 171, 1149, 609, 395, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1171, '2022-04-22', 337, 1150, 609, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1172, '2022-04-22', 156, 1151, 610, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1173, '2022-04-22', 296, 1152, 610, 319, '3.0000', '95.0000', '95.0000', '120.0000', '120.0000', '72.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1174, '2022-04-22', 271, 1153, 611, 337, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1175, '2022-04-22', 284, 1154, 611, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1176, '2022-04-22', 95, 1155, 612, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '12.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1177, '2022-04-22', 293, 1156, 613, 444, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1178, '2022-04-22', 154, 1157, 613, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1179, '2022-04-22', 274, 1158, 613, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1180, '2022-04-22', 157, 1159, 613, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '38.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1181, '2022-04-22', 220, 1160, 614, 467, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 147, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1182, '2022-04-22', 113, 1161, 614, 106, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1183, '2022-04-22', 100, 1162, 615, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '11.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1184, '2022-04-22', 107, 1163, 616, 335, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1185, '2022-04-22', 319, 1164, 617, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1186, '2022-04-22', 95, 1165, 618, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '11.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1187, '2022-04-22', 210, 1166, 619, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1188, '2022-04-22', 293, 1167, 619, 470, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1189, '2022-04-22', 291, 1168, 619, 315, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1190, '2022-04-22', 292, 1169, 619, 316, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1191, '2022-04-22', 292, 1169, 619, 474, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1192, '2022-04-22', 317, 1170, 620, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1193, '2022-04-22', 319, 1171, 620, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1194, '2022-04-22', 14, 1172, 620, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1195, '2022-04-22', 164, 1173, 621, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1196, '2022-04-22', 195, 1174, 622, 383, '3.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1197, '2022-04-22', 315, 1175, 622, 390, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1198, '2022-04-22', 291, 1176, 622, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1199, '2022-04-23', 271, 1177, 623, 337, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1200, '2022-04-23', 297, 1178, 624, 320, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1201, '2022-04-23', 290, 1179, 625, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1202, '2022-04-23', 9, 1180, 625, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '54.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1203, '2022-04-23', 338, 1181, 625, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '30.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1204, '2022-04-23', 232, 1182, 626, 336, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1205, '2022-04-23', 159, 1183, 626, 354, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1206, '2022-04-23', 217, 1184, 626, 473, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1207, '2022-04-23', 317, 1185, 627, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1208, '2022-04-23', 18, 1186, 627, 23, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1209, '2022-04-23', 337, 1187, 627, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1210, '2022-04-23', 287, 1188, 627, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1211, '2022-04-23', 287, 1189, 627, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1212, '2022-04-23', 264, 1190, 627, 257, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1213, '2022-04-23', 293, 1191, 628, 470, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1214, '2022-04-23', 297, 1192, 628, 320, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1215, '2022-04-23', 287, 1193, 629, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1216, '2022-04-23', 293, 1194, 629, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1217, '2022-04-23', 260, 1195, 629, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '50.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1218, '2022-04-23', 220, 1196, 630, 467, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 147, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1219, '2022-04-23', 3, 1197, 630, 87, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1220, '2022-04-23', 3, 1197, 630, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '16.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1221, '2022-04-23', 5, 1198, 630, 86, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1222, '2022-04-23', 6, 1199, 630, 6, '2.0000', '300.0000', '300.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1223, '2022-04-23', 270, 1200, 631, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1224, '2022-04-23', 271, 1201, 631, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '92.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1225, '2022-04-23', 282, 1202, 632, 454, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1226, '2022-04-23', 66, 1203, 633, 16, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1227, '2022-04-23', 93, 1204, 633, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1228, '2022-04-23', 343, 1205, 633, 442, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1229, '2022-04-23', 262, 1206, 634, 263, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1230, '2022-04-23', 166, 1207, 634, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1231, '2022-04-23', 289, 1208, 635, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1232, '2022-04-23', 54, 1209, 636, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1233, '2022-04-23', 93, 1210, 636, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1234, '2022-04-23', 312, 1211, 636, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1235, '2022-04-23', 93, 1212, 637, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1236, '2022-04-23', 65, 1213, 637, 425, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1237, '2022-04-23', 183, 1214, 637, 165, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '2.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1238, '2022-04-23', 278, 1215, 637, 289, '1.0000', '60.0000', '60.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1239, '2022-04-23', 95, 1216, 638, 85, '4.0000', '450.0000', '450.0000', '650.0000', '650.0000', '7.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1240, '2022-04-23', 218, 1217, 638, 460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1241, '2022-04-23', 16, 1218, 639, 21, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1242, '2022-04-23', 293, 1219, 639, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1243, '2022-04-23', 3, 1220, 639, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1244, '2022-04-23', 93, 1221, 639, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1245, '2022-04-23', 57, 1222, 639, 260, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1246, '2022-04-23', 164, 1223, 639, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1247, '2022-04-23', 220, 1224, 639, 475, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 149, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1248, '2022-04-23', 220, 1225, 640, 475, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 149, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1249, '2022-04-23', 293, 1226, 641, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1250, '2022-04-24', 268, 1227, 642, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '32.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1251, '2022-04-24', 153, 1228, 643, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '15.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1252, '2022-04-24', 159, 1229, 644, 354, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1253, '2022-04-24', 14, 1230, 645, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1254, '2022-04-24', 193, 1231, 645, 279, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1255, '2022-04-24', 284, 1232, 646, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1256, '2022-04-24', 230, 1233, 646, 455, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1257, '2022-04-24', 12, 1234, 646, 278, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1258, '2022-04-24', 312, 1235, 647, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1259, '2022-04-24', 293, 1236, 647, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1260, '2022-04-24', 288, 1237, 648, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1261, '2022-04-24', 291, 1238, 648, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1262, '2022-04-24', 297, 1239, 648, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1263, '2022-04-24', 81, 1240, 648, 72, '1.0000', '75.0000', '75.0000', '120.0000', '120.0000', '5.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1264, '2022-04-24', 81, 1241, 648, 72, '1.0000', '75.0000', '75.0000', '120.0000', '120.0000', '5.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1265, '2022-04-24', 154, 1242, 648, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1266, '2022-04-24', 274, 1243, 648, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1267, '2022-04-24', 274, 1244, 648, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1268, '2022-04-24', 274, 1245, 648, 274, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1269, '2022-04-24', 214, 1246, 648, 175, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '22.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1270, '2022-04-24', 338, 1247, 649, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '29.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1271, '2022-04-24', 340, 1248, 649, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1272, '2022-04-24', 289, 1249, 649, 313, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1273, '2022-04-24', 93, 1250, 650, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1274, '2022-04-24', 260, 1251, 651, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '49.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1275, '2022-04-24', 146, 1252, 652, 127, '1.0000', '1.0000', '1.0000', '0.0000', '0.0000', '96.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1276, '2022-04-24', 146, 1253, 653, 127, '1.0000', '1.0000', '1.0000', '0.0000', '0.0000', '95.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1277, '2022-04-24', 146, 1254, 654, 127, '1.0000', '1.0000', '1.0000', '0.0000', '0.0000', '94.0000', 1, 0, NULL, 17, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1278, '2022-04-24', 200, 1255, 655, 451, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1279, '2022-04-24', 195, 1256, 656, 383, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1280, '2022-04-24', 293, 1257, 657, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1281, '2022-04-24', 294, 1258, 658, 318, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1282, '2022-04-24', 323, 1259, 658, 405, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1283, '2022-04-24', 326, 1260, 658, 410, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1284, '2022-04-24', 40, 1261, 659, 366, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1285, '2022-04-24', 30, 1262, 659, 391, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1286, '2022-04-24', 292, 1263, 659, 474, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1287, '2022-04-24', 166, 1264, 660, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1288, '2022-04-24', 291, 1265, 660, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1289, '2022-04-24', 309, 1266, 660, 372, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1290, '2022-04-24', 15, 1267, 660, 20, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1291, '2022-04-24', 95, 1268, 660, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '6.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1292, '2022-04-24', 93, 1269, 660, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1293, '2022-04-24', 47, 1270, 660, 379, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1294, '2022-04-24', 171, 1271, 661, 395, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1295, '2022-04-24', 21, 1272, 661, 238, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1296, '2022-04-24', 304, 1273, 661, 363, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1297, '2022-04-24', 337, 1274, 661, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1298, '2022-04-24', 9, 1275, 661, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '53.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1299, '2022-04-24', 338, 1276, 661, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '28.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1300, '2022-04-24', 289, 1277, 661, 313, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1301, '2022-04-24', 345, 1278, 662, 485, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1302, '2022-04-25', 195, 1279, 663, 383, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1303, '2022-04-25', 230, 1280, 664, 455, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1304, '2022-04-25', 293, 1281, 665, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1305, '2022-04-25', 308, 1282, 665, 385, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 140, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1306, '2022-04-25', 350, 1283, 666, 508, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1307, '2022-04-25', 47, 1284, 666, 426, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1308, '2022-04-25', 271, 1285, 667, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '91.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1309, '2022-04-25', 308, 1286, 668, 385, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 140, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1310, '2022-04-25', 200, 1287, 669, 451, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1311, '2022-04-25', 271, 1288, 669, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '89.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1312, '2022-04-25', 269, 1289, 670, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1313, '2022-04-25', 285, 1290, 671, 302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1314, '2022-04-25', 11, 1291, 671, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1315, '2022-04-25', 352, 1292, 671, 521, '6.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1316, '2022-04-25', 200, 1293, 671, 471, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1317, '2022-04-25', 193, 1294, 672, 279, '13.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1318, '2022-04-25', 193, 1294, 672, 333, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 136, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1319, '2022-04-25', 193, 1294, 672, 483, '7.0000', '200.0000', '200.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1320, '2022-04-25', 214, 1295, 673, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1321, '2022-04-25', 50, 1296, 674, 50, '1.0000', '1750.0000', '1750.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1322, '2022-04-25', 14, 1297, 675, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1323, '2022-04-25', 200, 1298, 676, 471, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1324, '2022-04-26', 352, 1299, 677, 521, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1325, '2022-04-26', 265, 1300, 678, 261, '1.0000', '1300.0000', '1300.0000', '1800.0000', '1800.0000', '1.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1326, '2022-04-26', 317, 1301, 678, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1327, '2022-04-26', 164, 1302, 679, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1328, '2022-04-26', 160, 1303, 680, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1329, '2022-04-26', 232, 1304, 680, 336, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1330, '2022-04-26', 192, 1305, 681, 157, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1331, '2022-04-26', 8, 1306, 682, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1332, '2022-04-26', 192, 1307, 683, 157, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1333, '2022-04-26', 338, 1308, 683, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '27.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1334, '2022-04-26', 289, 1309, 683, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1335, '2022-04-26', 210, 1310, 684, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1336, '2022-04-26', 210, 1311, 684, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1337, '2022-04-26', 280, 1312, 685, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1338, '2022-04-26', 292, 1313, 686, 474, '4.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1339, '2022-04-26', 260, 1314, 687, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '48.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1340, '2022-04-26', 253, 1315, 688, 240, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1341, '2022-04-26', 164, 1316, 688, 358, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1342, '2022-04-26', 164, 1316, 688, 399, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1343, '2022-04-26', 14, 1317, 689, 424, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1344, '2022-04-26', 352, 1318, 690, 521, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1345, '2022-04-26', 338, 1319, 690, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '26.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1346, '2022-04-26', 289, 1320, 690, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1347, '2022-04-26', 11, 1321, 690, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1348, '2022-04-26', 98, 1322, 691, 298, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1349, '2022-04-26', 315, 1323, 691, 390, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1350, '2022-04-26', 226, 1324, 691, 192, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1351, '2022-04-26', 21, 1325, 692, 238, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 94, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1352, '2022-04-26', 290, 1326, 692, 445, '4.0000', '160.0000', '160.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1353, '2022-04-26', 153, 1327, 692, 132, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '13.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1354, '2022-04-26', 93, 1328, 692, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1355, '2022-04-26', 288, 1329, 693, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1356, '2022-04-27', 315, 1330, 694, 390, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1357, '2022-04-27', 194, 1331, 694, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1358, '2022-04-27', 352, 1332, 694, 521, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1359, '2022-04-27', 154, 1333, 694, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1360, '2022-04-27', 271, 1334, 695, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '87.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1361, '2022-04-27', 246, 1335, 696, 221, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1362, '2022-04-27', 100, 1336, 697, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '10.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1363, '2022-04-27', 195, 1337, 698, 383, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1364, '2022-04-27', 232, 1338, 699, 453, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1365, '2022-04-27', 285, 1339, 699, 302, '3.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1366, '2022-04-27', 280, 1340, 699, 307, '2.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1367, '2022-04-27', 271, 1341, 699, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '86.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1368, '2022-04-27', 351, 1342, 699, 520, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1369, '2022-04-27', 154, 1343, 699, 131, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1370, '2022-04-27', 239, 1344, 699, 208, '2.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1371, '2022-04-27', 113, 1345, 700, 296, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1372, '2022-04-27', 308, 1346, 700, 385, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 140, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1373, '2022-04-27', 338, 1347, 701, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '25.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1374, '2022-04-27', 289, 1348, 701, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1375, '2022-04-27', 271, 1349, 702, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '83.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1376, '2022-04-27', 159, 1350, 703, 354, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1377, '2022-04-27', 269, 1351, 704, 268, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1378, '2022-04-27', 220, 1352, 704, 499, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1379, '2022-04-27', 195, 1353, 705, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '49.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1380, '2022-04-27', 95, 1354, 706, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '5.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1381, '2022-04-28', 308, 1355, 707, 494, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1382, '2022-04-28', 335, 1356, 707, 421, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1383, '2022-04-28', 313, 1357, 707, 388, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1384, '2022-04-28', 311, 1358, 707, 374, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1385, '2022-04-28', 337, 1359, 707, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1386, '2022-04-28', 3, 1360, 707, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1387, '2022-04-28', 218, 1361, 708, 460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1388, '2022-04-28', 219, 1362, 708, 327, '2.0000', '20.0000', '20.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1389, '2022-04-28', 220, 1363, 709, 499, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1390, '2022-04-28', 283, 1364, 709, 303, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1391, '2022-04-28', 226, 1365, 710, 524, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1392, '2022-04-28', 67, 1366, 710, 59, '-1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1393, '2022-04-28', 67, 1366, 710, 431, '2.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1394, '2022-04-28', 64, 1367, 710, 60, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1395, '2022-04-28', 181, 1368, 710, 253, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1396, '2022-04-28', 93, 1369, 710, 378, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1397, '2022-04-28', 243, 1370, 710, 215, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1398, '2022-04-28', 135, 1371, 710, 190, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 59, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1399, '2022-04-28', 352, 1372, 711, 521, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1400, '2022-04-28', 156, 1373, 712, 130, '2.0000', '185.0000', '185.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1401, '2022-04-28', 271, 1374, 713, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '82.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1402, '2022-04-28', 156, 1375, 714, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1403, '2022-04-28', 288, 1376, 714, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1404, '2022-04-28', 292, 1377, 714, 474, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1405, '2022-04-28', 3, 1378, 714, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1406, '2022-04-28', 220, 1379, 714, 499, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1407, '2022-04-28', 314, 1380, 715, 389, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1408, '2022-04-28', 288, 1381, 716, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1409, '2022-04-28', 261, 1382, 717, 497, '4.0000', '500.0000', '500.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1410, '2022-04-28', 171, 1383, 717, 220, '-3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1411, '2022-04-28', 171, 1383, 717, 395, '7.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1412, '2022-04-28', 195, 1384, 718, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '48.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1413, '2022-04-28', 293, 1385, 719, 470, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1414, '2022-04-28', 220, 1386, 719, 499, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1415, '2022-04-28', 217, 1387, 720, 473, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1416, '2022-04-28', 290, 1388, 721, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1417, '2022-04-28', 293, 1389, 721, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1418, '2022-04-28', 287, 1390, 721, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1419, '2022-04-28', 287, 1391, 721, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1420, '2022-04-28', 291, 1392, 721, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1421, '2022-04-28', 195, 1393, 722, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '47.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1422, '2022-04-28', 9, 1394, 723, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '52.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1423, '2022-04-28', 338, 1395, 723, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '24.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1424, '2022-04-28', 183, 1396, 723, 165, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '1.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1425, '2022-04-28', 157, 1397, 723, 138, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '34.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1426, '2022-04-28', 266, 1398, 723, 262, '-2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 113, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1427, '2022-04-28', 266, 1398, 723, 291, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1428, '2022-04-29', 341, 1399, 724, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1429, '2022-04-29', 312, 1400, 724, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1430, '2022-04-29', 317, 1401, 724, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1431, '2022-04-29', 314, 1402, 724, 389, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1432, '2022-04-29', 314, 1403, 724, 389, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1433, '2022-04-29', 271, 1404, 725, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '79.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1434, '2022-04-29', 338, 1405, 726, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1435, '2022-04-29', 195, 1406, 727, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '46.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1436, '2022-04-29', 253, 1407, 728, 240, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1437, '2022-04-29', 255, 1408, 728, 242, '1.0000', '1800.0000', '1800.0000', '2500.0000', '2500.0000', '5.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1438, '2022-04-29', 328, 1409, 728, 412, '1.0000', '5000.0000', '5000.0000', '7500.0000', '7500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1439, '2022-04-29', 31, 1410, 728, 408, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1440, '2022-04-29', 172, 1411, 728, 417, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1441, '2022-04-29', 335, 1412, 728, 421, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1442, '2022-04-29', 181, 1413, 728, 434, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1443, '2022-04-29', 186, 1414, 728, 401, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1444, '2022-04-29', 344, 1415, 728, 484, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1445, '2022-04-29', 335, 1416, 728, 421, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1446, '2022-04-29', 243, 1417, 728, 215, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1447, '2022-04-29', 51, 1418, 728, 264, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1448, '2022-04-29', 30, 1419, 728, 501, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1449, '2022-04-29', 81, 1420, 728, 72, '1.0000', '75.0000', '75.0000', '120.0000', '120.0000', '3.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1450, '2022-04-29', 275, 1421, 728, 281, '3.0000', '300.0000', '300.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 122, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1451, '2022-04-29', 220, 1422, 729, 499, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1452, '2022-04-29', 268, 1423, 729, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '31.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1453, '2022-04-29', 269, 1424, 729, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1454, '2022-04-29', 195, 1425, 729, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '45.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1455, '2022-04-29', 290, 1426, 729, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1456, '2022-04-29', 283, 1427, 730, 303, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1457, '2022-04-29', 11, 1428, 731, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1458, '2022-04-29', 95, 1429, 732, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '4.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1459, '2022-04-29', 47, 1430, 732, 426, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1460, '2022-04-29', 93, 1431, 732, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '19.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1461, '2022-04-29', 290, 1432, 732, 445, '2.0000', '160.0000', '160.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1462, '2022-04-29', 195, 1433, 733, 481, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '43.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1463, '2022-04-29', 200, 1434, 734, 471, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1464, '2022-04-29', 95, 1435, 735, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '3.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1465, '2022-04-29', 305, 1436, 736, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1466, '2022-04-29', 292, 1437, 736, 474, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1467, '2022-04-29', 47, 1438, 737, 426, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1468, '2022-04-29', 65, 1439, 737, 425, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1469, '2022-04-29', 281, 1440, 738, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1470, '2022-04-29', 49, 1441, 739, 369, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1471, '2022-04-29', 195, 1442, 739, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '42.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1472, '2022-04-29', 142, 1443, 740, 468, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1473, '2022-04-29', 200, 1444, 740, 471, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1474, '2022-04-29', 341, 1445, 741, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1475, '2022-04-29', 289, 1446, 741, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1476, '2022-04-29', 47, 1447, 741, 426, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1477, '2022-04-29', 93, 1448, 741, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '18.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1478, '2022-04-29', 340, 1449, 742, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1479, '2022-04-29', 287, 1450, 742, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1480, '2022-04-29', 142, 1451, 743, 468, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1481, '2022-04-29', 160, 1452, 744, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1482, '2022-04-29', 93, 1453, 744, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '17.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1483, '2022-04-29', 63, 1454, 744, 371, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1484, '2022-04-29', 288, 1455, 744, 312, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1485, '2022-04-29', 287, 1456, 744, 311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1486, '2022-04-29', 287, 1456, 744, 512, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1487, '2022-04-29', 293, 1457, 744, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1488, '2022-04-29', 313, 1458, 744, 388, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1489, '2022-04-29', 291, 1459, 744, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1490, '2022-04-29', 200, 1460, 744, 471, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1491, '2022-04-29', 153, 1461, 745, 132, '12.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1492, '2022-04-29', 312, 1462, 745, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1493, '2022-04-29', 287, 1463, 745, 512, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1494, '2022-04-29', 278, 1464, 745, 289, '1.0000', '60.0000', '60.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1495, '2022-04-29', 209, 1465, 745, 167, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1496, '2022-04-29', 11, 1466, 745, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1497, '2022-04-29', 195, 1467, 745, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '41.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1498, '2022-04-29', 14, 1468, 745, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1499, '2022-04-29', 93, 1469, 746, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1500, '2022-04-29', 63, 1470, 746, 371, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1501, '2022-04-29', 351, 1471, 747, 520, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1502, '2022-04-29', 351, 1472, 748, 520, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1503, '2022-04-29', 334, 1473, 749, 420, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1504, '2022-04-29', 315, 1474, 749, 478, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1505, '2022-04-29', 319, 1475, 749, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1506, '2022-04-30', 15, 1476, 750, 292, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1507, '2022-04-30', 95, 1477, 750, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1508, '2022-04-30', 245, 1478, 751, 217, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1509, '2022-04-30', 153, 1479, 751, 132, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1510, '2022-04-30', 47, 1480, 752, 426, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1511, '2022-04-30', 65, 1481, 752, 425, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1512, '2022-04-30', 337, 1482, 753, 428, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1513, '2022-04-30', 317, 1483, 753, 393, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1514, '2022-04-30', 340, 1484, 753, 433, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1515, '2022-04-30', 314, 1485, 754, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1516, '2022-04-30', 154, 1486, 754, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1517, '2022-04-30', 283, 1487, 755, 303, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1518, '2022-04-30', 287, 1488, 756, 512, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1519, '2022-04-30', 292, 1489, 757, 474, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1520, '2022-04-30', 74, 1490, 757, 66, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1521, '2022-04-30', 282, 1491, 758, 454, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1522, '2022-04-30', 208, 1492, 758, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1523, '2022-04-30', 290, 1493, 758, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1524, '2022-04-30', 290, 1494, 758, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1525, '2022-04-30', 277, 1495, 759, 288, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1526, '2022-04-30', 166, 1496, 760, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1527, '2022-04-30', 337, 1497, 761, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1528, '2022-04-30', 192, 1498, 762, 157, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1529, '2022-04-30', 192, 1498, 762, 285, '5.0000', '200.0000', '200.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1530, '2022-04-30', 271, 1499, 763, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '76.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1531, '2022-04-30', 271, 1500, 764, 463, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '72.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1532, '2022-04-30', 195, 1501, 765, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '40.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1533, '2022-04-30', 338, 1502, 766, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1534, '2022-04-30', 289, 1503, 766, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1535, '2022-04-30', 295, 1504, 767, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '34.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1536, '2022-04-30', 200, 1505, 768, 471, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1537, '2022-04-30', 341, 1506, 769, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1538, '2022-04-30', 287, 1507, 769, 512, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1539, '2022-04-30', 95, 1508, 770, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1540, '2022-04-30', 290, 1509, 771, 445, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1541, '2022-04-30', 72, 1510, 772, 510, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1542, '2022-04-30', 314, 1511, 772, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '10.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1543, '2022-04-30', 95, 1512, 772, 85, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1544, '2022-04-30', 145, 1513, 772, 272, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1545, '2022-04-30', 143, 1514, 772, 437, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1546, '2022-04-30', 290, 1515, 772, 518, '2.0000', '160.0000', '160.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1547, '2022-04-30', 287, 1516, 772, 512, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1548, '2022-04-30', 214, 1517, 773, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '20.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1549, '2022-04-30', 287, 1518, 774, 512, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1550, '2022-04-30', 293, 1519, 774, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1551, '2022-04-30', 337, 1520, 774, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1552, '2022-04-30', 319, 1521, 774, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1553, '2022-04-30', 338, 1522, 775, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1554, '2022-04-30', 289, 1523, 775, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1555, '2022-04-30', 341, 1524, 775, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1556, '2022-04-30', 293, 1525, 775, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1557, '2022-04-30', 195, 1526, 775, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '39.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1558, '2022-04-30', 195, 1527, 776, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '38.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1559, '2022-04-30', 293, 1528, 777, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1560, '2022-04-30', 54, 1529, 778, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1561, '2022-04-30', 93, 1530, 778, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1562, '2022-04-30', 92, 1531, 779, 82, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1563, '2022-04-30', 210, 1532, 780, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1564, '2022-04-30', 352, 1533, 780, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1565, '2022-04-30', 292, 1534, 781, 474, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1566, '2022-04-30', 133, 1535, 781, 458, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1567, '2022-04-30', 163, 1536, 781, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '18.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1568, '2022-04-30', 290, 1537, 782, 518, '2.0000', '160.0000', '160.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1569, '2022-04-30', 106, 1538, 783, 99, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1570, '2022-04-30', 195, 1539, 784, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '37.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1571, '2022-04-30', 199, 1540, 784, 245, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '3.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1572, '2022-05-01', 290, 1541, 785, 518, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1573, '2022-05-01', 291, 1542, 785, 315, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1574, '2022-05-01', 214, 1543, 786, 175, '4.0000', '100.0000', '100.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1575, '2022-05-01', 72, 1544, 786, 510, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1576, '2022-05-01', 317, 1545, 787, 393, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1577, '2022-05-01', 35, 1546, 787, 209, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1578, '2022-05-01', 312, 1547, 788, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1579, '2022-05-01', 195, 1548, 789, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '36.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1580, '2022-05-01', 287, 1549, 790, 512, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1581, '2022-05-01', 195, 1550, 790, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '35.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1582, '2022-05-01', 350, 1551, 791, 508, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1583, '2022-05-01', 293, 1552, 792, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1584, '2022-05-01', 208, 1553, 792, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1585, '2022-05-01', 291, 1554, 792, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1586, '2022-05-01', 230, 1555, 793, 525, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1587, '2022-05-01', 291, 1556, 794, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1588, '2022-05-01', 32, 1557, 794, 31, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1589, '2022-05-01', 315, 1558, 794, 478, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1590, '2022-05-01', 165, 1559, 794, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1591, '2022-05-01', 99, 1560, 794, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1592, '2022-05-01', 271, 1561, 794, 463, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '68.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1593, '2022-05-01', 269, 1562, 794, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1594, '2022-05-01', 17, 1563, 795, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1595, '2022-05-01', 287, 1564, 795, 544, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1596, '2022-05-01', 100, 1565, 796, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1597, '2022-05-01', 65, 1566, 797, 425, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1598, '2022-05-01', 164, 1567, 797, 399, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1599, '2022-05-01', 313, 1568, 798, 388, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1600, '2022-05-01', 154, 1569, 798, 131, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1601, '2022-05-01', 210, 1570, 798, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1602, '2022-05-01', 333, 1571, 798, 419, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1603, '2022-05-01', 292, 1572, 798, 540, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1604, '2022-05-01', 9, 1573, 798, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '51.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1605, '2022-05-01', 289, 1574, 798, 446, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1606, '2022-05-01', 316, 1575, 799, 502, '1.0000', '900.0000', '900.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1607, '2022-05-01', 280, 1576, 800, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1608, '2022-05-01', 145, 1577, 801, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1609, '2022-05-01', 340, 1578, 802, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1610, '2022-05-01', 99, 1579, 803, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1611, '2022-05-01', 145, 1580, 804, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1612, '2022-05-01', 32, 1581, 805, 31, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1613, '2022-05-01', 291, 1582, 805, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1614, '2022-05-01', 94, 1583, 806, 293, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1615, '2022-05-01', 289, 1584, 807, 446, '3.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1616, '2022-05-01', 119, 1585, 808, 112, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1617, '2022-05-01', 351, 1586, 809, 520, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1618, '2022-05-01', 200, 1587, 809, 519, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1619, '2022-05-01', 280, 1588, 810, 307, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1620, '2022-05-01', 6, 1589, 810, 6, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 4, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1621, '2022-05-01', 293, 1590, 810, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1622, '2022-05-01', 334, 1591, 811, 420, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1623, '2022-05-01', 314, 1592, 811, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1624, '2022-05-01', 153, 1593, 812, 132, '-1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1625, '2022-05-01', 153, 1593, 812, 322, '5.0000', '250.0000', '250.0000', '400.0000', '400.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1626, '2022-05-01', 164, 1594, 813, 399, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1627, '2022-05-01', 137, 1595, 813, 188, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '1.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1628, '2022-05-01', 160, 1596, 813, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1629, '2022-05-01', 195, 1597, 814, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '34.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1630, '2022-05-01', 195, 1598, 815, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '33.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1631, '2022-05-01', 293, 1599, 815, 470, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1632, '2022-05-01', 293, 1599, 815, 516, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1633, '2022-05-01', 14, 1600, 816, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1634, '2022-05-02', 195, 1601, 817, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '32.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1635, '2022-05-02', 199, 1602, 818, 245, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1636, '2022-05-02', 352, 1603, 819, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1637, '2022-05-02', 338, 1604, 819, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1638, '2022-05-02', 289, 1605, 819, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1639, '2022-05-02', 195, 1606, 819, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '31.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1640, '2022-05-02', 352, 1607, 820, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '17.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1641, '2022-05-02', 271, 1608, 821, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '67.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1642, '2022-05-02', 338, 1609, 822, 423, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1643, '2022-05-02', 9, 1610, 822, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '50.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1644, '2022-05-02', 160, 1611, 823, 142, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1645, '2022-05-02', 230, 1612, 823, 525, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1646, '2022-05-02', 340, 1613, 824, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1647, '2022-05-02', 170, 1614, 824, 400, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1648, '2022-05-02', 306, 1615, 825, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '18.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1649, '2022-05-02', 195, 1616, 826, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '30.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1650, '2022-05-02', 351, 1617, 827, 520, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1651, '2022-05-02', 200, 1618, 828, 519, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1652, '2022-05-02', 286, 1619, 829, 308, '1.0000', '75.0000', '75.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1653, '2022-05-02', 280, 1620, 829, 531, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1654, '2022-05-02', 192, 1621, 830, 285, '3.0000', '200.0000', '200.0000', '350.0000', '350.0000', '12.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1655, '2022-05-02', 11, 1622, 831, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1656, '2022-05-02', 334, 1623, 832, 420, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1657, '2022-05-02', 290, 1624, 832, 518, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1658, '2022-05-02', 291, 1625, 832, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1659, '2022-05-02', 166, 1626, 832, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1660, '2022-05-02', 165, 1627, 832, 386, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1661, '2022-05-02', 22, 1628, 832, 19, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1662, '2022-05-02', 291, 1629, 832, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1663, '2022-05-02', 107, 1630, 833, 335, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1664, '2022-05-02', 269, 1631, 834, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1665, '2022-05-02', 271, 1632, 834, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '66.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1666, '2022-05-02', 338, 1633, 835, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1667, '2022-05-02', 289, 1634, 835, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1668, '2022-05-02', 314, 1635, 836, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1669, '2022-05-02', 40, 1636, 837, 366, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1670, '2022-05-02', 48, 1637, 837, 368, '1.0000', '1500.0000', '1500.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1671, '2022-05-02', 220, 1638, 838, 550, '10.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1672, '2022-05-02', 8, 1639, 839, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1673, '2022-05-02', 147, 1640, 840, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '19.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1674, '2022-05-02', 166, 1641, 841, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1675, '2022-05-02', 291, 1642, 841, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1676, '2022-05-02', 195, 1643, 841, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '29.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1677, '2022-05-02', 315, 1644, 841, 478, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1678, '2022-05-02', 352, 1645, 841, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1679, '2022-05-02', 217, 1646, 841, 473, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1680, '2022-05-02', 282, 1647, 842, 454, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1681, '2022-05-02', 284, 1648, 842, 306, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1682, '2022-05-02', 271, 1649, 842, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '65.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1683, '2022-05-02', 200, 1650, 843, 519, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1739, '2022-05-07', 74, 1705, 873, 66, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1685, '2022-05-02', 230, 1652, 845, 525, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1686, '2022-05-02', 93, 1653, 846, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1687, '2022-05-02', 14, 1654, 846, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1688, '2022-05-02', 9, 1655, 847, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '49.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1689, '2022-05-02', 289, 1656, 847, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1690, '2022-05-02', 100, 1657, 848, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1691, '2022-05-02', 308, 1658, 849, 494, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1692, '2022-05-02', 14, 1659, 850, 424, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1693, '2022-05-02', 293, 1660, 851, 516, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1694, '2022-05-03', 317, 1661, 852, 393, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1695, '2022-05-06', 200, 1662, 853, 519, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1696, '2022-05-06', 156, 1663, 854, 130, '3.0000', '185.0000', '185.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1697, '2022-05-06', 292, 1664, 854, 540, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1698, '2022-05-06', 211, 1665, 854, 169, '1.0000', '180.0000', '180.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 42, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1699, '2022-05-06', 116, 1666, 854, 357, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1700, '2022-05-06', 119, 1667, 854, 112, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1701, '2022-05-06', 119, 1667, 854, 310, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1702, '2022-05-06', 208, 1668, 854, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1703, '2022-05-06', 208, 1669, 854, 325, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1704, '2022-05-06', 338, 1670, 855, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1705, '2022-05-06', 208, 1671, 856, 447, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1706, '2022-05-06', 289, 1672, 856, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1707, '2022-05-06', 94, 1673, 856, 293, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1708, '2022-05-06', 293, 1674, 856, 516, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1709, '2022-05-06', 153, 1675, 856, 322, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1710, '2022-05-06', 220, 1676, 857, 559, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1711, '2022-05-06', 271, 1677, 857, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '64.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1712, '2022-05-06', 97, 1678, 858, 91, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '8.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1713, '2022-05-06', 220, 1679, 859, 559, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1714, '2022-05-06', 268, 1680, 860, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1715, '2022-05-06', 286, 1681, 860, 308, '1.0000', '75.0000', '75.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1716, '2022-05-06', 220, 1682, 861, 559, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1717, '2022-05-06', 286, 1683, 861, 308, '1.0000', '75.0000', '75.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1718, '2022-05-06', 100, 1684, 862, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1719, '2022-05-06', 95, 1685, 862, 300, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1720, '2022-05-06', 291, 1686, 863, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1721, '2022-05-06', 156, 1687, 863, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1722, '2022-05-06', 154, 1688, 863, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1723, '2022-05-06', 154, 1689, 863, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1724, '2022-05-06', 220, 1690, 864, 559, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1725, '2022-05-06', 220, 1691, 865, 559, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1726, '2022-05-06', 107, 1692, 866, 361, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1727, '2022-05-06', 220, 1693, 867, 559, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1728, '2022-05-06', 295, 1694, 868, 332, '2.0000', '400.0000', '400.0000', '500.0000', '500.0000', '32.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1729, '2022-05-06', 260, 1695, 868, 250, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '46.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1730, '2022-05-06', 338, 1696, 868, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1731, '2022-05-06', 9, 1697, 868, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '48.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1732, '2022-05-06', 220, 1698, 868, 559, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 159, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1733, '2022-05-06', 237, 1699, 868, 338, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1734, '2022-05-06', 352, 1700, 869, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1735, '2022-05-06', 352, 1701, 869, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1736, '2022-05-06', 195, 1702, 870, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '28.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1737, '2022-05-06', 291, 1703, 871, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1738, '2022-05-06', 282, 1704, 872, 454, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1740, '2022-05-07', 195, 1706, 874, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '27.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1741, '2022-05-07', 113, 1707, 875, 296, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1742, '2022-05-07', 143, 1708, 876, 437, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1743, '2022-05-07', 159, 1709, 876, 354, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1744, '2022-05-07', 352, 1710, 877, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1745, '2022-05-07', 271, 1711, 878, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '63.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1746, '2022-05-07', 271, 1712, 879, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '61.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1747, '2022-05-07', 193, 1713, 880, 483, '6.0000', '200.0000', '200.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1748, '2022-05-07', 30, 1714, 880, 501, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1749, '2022-05-07', 35, 1715, 880, 209, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1750, '2022-05-07', 40, 1716, 880, 366, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1751, '2022-05-07', 40, 1717, 881, 366, '1.0000', '700.0000', '700.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1752, '2022-05-07', 193, 1718, 881, 483, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1753, '2022-05-07', 16, 1719, 881, 21, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1754, '2022-05-07', 288, 1720, 881, 541, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1755, '2022-05-07', 18, 1721, 881, 23, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1756, '2022-05-07', 287, 1722, 881, 544, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1757, '2022-05-07', 290, 1723, 881, 518, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1758, '2022-05-07', 183, 1724, 881, 165, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 38, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1759, '2022-05-07', 19, 1725, 881, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '22.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1760, '2022-05-07', 279, 1726, 882, 297, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1761, '2022-05-07', 342, 1727, 882, 448, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1771, '2022-05-07', 340, 1737, 883, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1770, '2022-05-07', 9, 1736, 883, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '47.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1772, '2022-05-07', 289, 1738, 883, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1765, '2022-05-07', 352, 1731, 884, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1766, '2022-05-07', 312, 1732, 885, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1767, '2022-05-07', 340, 1733, 885, 433, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1768, '2022-05-07', 325, 1734, 886, 409, '1.0000', '1500.0000', '1500.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1769, '2022-05-07', 109, 1735, 886, 375, '2.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1773, '2022-05-07', 195, 1739, 887, 481, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '25.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1774, '2022-05-08', 338, 1740, 888, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1775, '2022-05-08', 289, 1741, 888, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1776, '2022-05-08', 35, 1742, 889, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1777, '2022-05-08', 93, 1743, 889, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1778, '2022-05-08', 195, 1744, 890, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '24.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1779, '2022-05-08', 317, 1745, 891, 393, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1780, '2022-05-08', 340, 1746, 892, 495, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1781, '2022-05-08', 192, 1747, 893, 157, '-1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1782, '2022-05-08', 192, 1747, 893, 285, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1783, '2022-05-08', 160, 1748, 894, 552, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 157, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1784, '2022-05-08', 8, 1749, 895, 180, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1785, '2022-05-08', 220, 1750, 895, 568, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1786, '2022-05-08', 102, 1751, 896, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1787, '2022-05-08', 94, 1752, 897, 566, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1788, '2022-05-08', 288, 1753, 897, 541, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1789, '2022-05-08', 288, 1754, 897, 541, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1790, '2022-05-08', 271, 1755, 898, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '60.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1791, '2022-05-09', 271, 1756, 899, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '59.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1792, '2022-05-09', 9, 1757, 900, 8, '4.0000', '250.0000', '250.0000', '400.0000', '400.0000', '38.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1793, '2022-05-09', 338, 1758, 900, 423, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1794, '2022-05-09', 295, 1759, 900, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '31.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1795, '2022-05-09', 352, 1760, 900, 522, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1796, '2022-05-09', 220, 1761, 901, 568, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1797, '2022-05-09', 260, 1762, 901, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '45.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1798, '2022-05-09', 107, 1763, 902, 361, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1799, '2022-05-09', 338, 1764, 903, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1800, '2022-05-09', 157, 1765, 903, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '33.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1801, '2022-05-09', 338, 1766, 904, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1802, '2022-05-09', 9, 1767, 904, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '37.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1803, '2022-05-09', 255, 1768, 905, 242, '1.0000', '1800.0000', '1800.0000', '2500.0000', '2500.0000', '4.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1804, '2022-05-09', 3, 1769, 906, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1805, '2022-05-09', 280, 1770, 907, 531, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1806, '2022-05-09', 220, 1771, 907, 568, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1807, '2022-05-09', 314, 1772, 908, 389, '-1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1808, '2022-05-09', 314, 1772, 908, 477, '2.0000', '500.0000', '500.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1809, '2022-05-09', 351, 1773, 909, 557, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1810, '2022-05-09', 195, 1774, 910, 151, '-1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1811, '2022-05-09', 195, 1774, 910, 481, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1812, '2022-05-09', 195, 1775, 911, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1813, '2022-05-10', 3, 1776, 912, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1814, '2022-05-10', 345, 1777, 913, 485, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1815, '2022-05-10', 195, 1778, 914, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1816, '2022-05-10', 352, 1779, 914, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1817, '2022-05-10', 271, 1780, 915, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '58.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1818, '2022-05-10', 195, 1781, 916, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1819, '2022-05-10', 8, 1782, 916, 579, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1820, '2022-05-10', 232, 1783, 917, 453, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1821, '2022-05-10', 220, 1784, 917, 568, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1822, '2022-05-10', 340, 1785, 918, 433, '-2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1823, '2022-05-10', 340, 1785, 918, 495, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1824, '2022-05-10', 317, 1786, 918, 393, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1825, '2022-05-10', 323, 1787, 919, 405, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1826, '2022-05-10', 271, 1788, 920, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '57.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1827, '2022-05-10', 220, 1789, 920, 568, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1828, '2022-05-10', 107, 1790, 920, 472, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1829, '2022-05-10', 317, 1791, 921, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1830, '2022-05-10', 292, 1792, 922, 540, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1831, '2022-05-11', 340, 1793, 923, 495, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1832, '2022-05-11', 317, 1794, 923, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1833, '2022-05-11', 271, 1795, 924, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '55.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1834, '2022-05-11', 95, 1796, 925, 85, '-1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1835, '2022-05-11', 95, 1796, 925, 469, '2.0000', '450.0000', '450.0000', '650.0000', '650.0000', '8.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1836, '2022-05-12', 340, 1797, 926, 495, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1837, '2022-05-12', 337, 1798, 926, 428, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1838, '2022-05-12', 217, 1799, 926, 473, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1839, '2022-05-12', 220, 1800, 927, 568, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1840, '2022-05-12', 107, 1801, 927, 472, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1841, '2022-05-12', 288, 1802, 928, 541, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1842, '2022-05-12', 290, 1803, 928, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1843, '2022-05-12', 306, 1804, 929, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '13.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1844, '2022-05-12', 195, 1805, 930, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1845, '2022-05-12', 9, 1806, 930, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '36.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1846, '2022-05-12', 154, 1807, 931, 514, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1847, '2022-05-12', 163, 1808, 931, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1848, '2022-05-12', 99, 1809, 931, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1849, '2022-05-12', 157, 1810, 931, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '32.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1850, '2022-05-12', 280, 1811, 932, 531, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1851, '2022-05-12', 352, 1812, 933, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1852, '2022-05-12', 290, 1813, 933, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1853, '2022-05-12', 293, 1814, 933, 516, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1854, '2022-05-13', 353, 1815, 934, 569, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 161, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1855, '2022-05-13', 319, 1816, 934, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1856, '2022-05-13', 317, 1817, 934, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1857, '2022-05-13', 35, 1818, 934, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1858, '2022-05-13', 287, 1819, 934, 544, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1859, '2022-05-13', 288, 1820, 934, 541, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1860, '2022-05-13', 271, 1821, 935, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '54.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1861, '2022-05-13', 109, 1822, 936, 375, '2.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1862, '2022-05-13', 288, 1823, 936, 541, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1863, '2022-05-13', 159, 1824, 937, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1864, '2022-05-13', 296, 1825, 938, 319, '2.0000', '95.0000', '95.0000', '120.0000', '120.0000', '70.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1865, '2022-05-13', 100, 1826, 939, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1866, '2022-05-13', 351, 1827, 939, 557, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1867, '2022-05-13', 338, 1828, 940, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1868, '2022-05-13', 195, 1829, 940, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1869, '2022-05-13', 208, 1830, 941, 166, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 39, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1870, '2022-05-13', 293, 1831, 941, 516, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1871, '2022-05-13', 291, 1832, 941, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1872, '2022-05-13', 348, 1833, 942, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1873, '2022-05-13', 153, 1834, 943, 322, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1874, '2022-05-13', 9, 1835, 944, 8, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '32.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1875, '2022-05-13', 338, 1836, 944, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1876, '2022-05-13', 280, 1837, 944, 531, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1877, '2022-05-13', 89, 1838, 944, 89, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1878, '2022-05-13', 260, 1839, 944, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '44.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1879, '2022-05-13', 35, 1840, 945, 34, '-1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1880, '2022-05-13', 35, 1840, 945, 209, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1881, '2022-05-13', 195, 1841, 945, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1882, '2022-05-13', 165, 1842, 946, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '19.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1883, '2022-05-14', 291, 1843, 947, 513, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1884, '2022-05-14', 70, 1844, 947, 64, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1885, '2022-05-14', 166, 1845, 948, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1886, '2022-05-14', 291, 1846, 948, 539, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1887, '2022-05-14', 271, 1847, 949, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '52.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1888, '2022-05-14', 195, 1848, 950, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1889, '2022-05-14', 291, 1849, 951, 539, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1890, '2022-05-14', 338, 1850, 952, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1891, '2022-05-14', 289, 1851, 952, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1892, '2022-05-14', 352, 1852, 952, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1893, '2022-05-14', 352, 1853, 953, 522, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1894, '2022-05-14', 159, 1854, 954, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1895, '2022-05-14', 159, 1855, 955, 452, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1896, '2022-05-14', 165, 1856, 955, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '18.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1897, '2022-05-14', 372, 1857, 955, 613, '1.0000', '1200.0000', '1200.0000', '1800.0000', '1800.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1898, '2022-05-14', 165, 1858, 956, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '17.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1899, '2022-05-14', 165, 1859, 957, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '16.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1900, '2022-05-14', 288, 1860, 958, 541, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1901, '2022-05-14', 357, 1861, 958, 589, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1902, '2022-05-14', 335, 1862, 958, 421, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1903, '2022-05-14', 319, 1863, 958, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1904, '2022-05-14', 162, 1864, 958, 147, '-4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1905, '2022-05-14', 162, 1864, 958, 430, '4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1906, '2022-05-14', 162, 1864, 958, 622, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '18.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1907, '2022-05-14', 271, 1865, 959, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '51.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1908, '2022-05-14', 352, 1866, 959, 522, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1909, '2022-05-14', 247, 1867, 960, 222, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1910, '2022-05-14', 288, 1868, 960, 541, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1911, '2022-05-14', 195, 1869, 960, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1912, '2022-05-14', 35, 1870, 960, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1913, '2022-05-14', 93, 1871, 960, 83, '-1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1914, '2022-05-14', 93, 1871, 960, 435, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1915, '2022-05-14', 309, 1872, 960, 493, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1916, '2022-05-14', 344, 1873, 960, 484, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1917, '2022-05-14', 280, 1874, 961, 531, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1918, '2022-05-14', 208, 1875, 962, 447, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1919, '2022-05-14', 212, 1876, 962, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1920, '2022-05-14', 288, 1877, 962, 541, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 153, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1921, '2022-05-14', 153, 1878, 962, 322, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1922, '2022-05-15', 14, 1879, 963, 505, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1923, '2022-05-15', 363, 1880, 963, 599, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1924, '2022-05-15', 366, 1881, 963, 605, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1925, '2022-05-15', 164, 1882, 963, 399, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1926, '2022-05-15', 164, 1883, 964, 399, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1927, '2022-05-15', 35, 1884, 964, 209, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1928, '2022-05-15', 93, 1885, 964, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1929, '2022-05-15', 287, 1886, 964, 544, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1930, '2022-05-15', 284, 1887, 965, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '9.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1931, '2022-05-15', 351, 1888, 965, 557, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1942, '2022-05-15', 208, 1899, 971, 447, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1943, '2022-05-15', 306, 1900, 972, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1934, '2022-05-15', 207, 1891, 967, 164, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1935, '2022-05-15', 293, 1892, 968, 516, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1936, '2022-05-15', 282, 1893, 969, 527, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1937, '2022-05-15', 353, 1894, 969, 569, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 161, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1938, '2022-05-15', 230, 1895, 970, 525, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1939, '2022-05-15', 143, 1896, 970, 437, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1940, '2022-05-15', 280, 1897, 970, 618, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1941, '2022-05-15', 160, 1898, 970, 552, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 157, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1944, '2022-05-15', 200, 1901, 973, 178, '-1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1945, '2022-05-15', 200, 1901, 973, 555, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1946, '2022-05-15', 280, 1902, 973, 618, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1947, '2022-05-15', 319, 1903, 974, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1948, '2022-05-15', 351, 1904, 975, 621, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1949, '2022-05-15', 345, 1905, 976, 485, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1950, '2022-05-15', 165, 1906, 977, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '15.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1951, '2022-05-15', 168, 1907, 978, 232, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1952, '2022-05-15', 371, 1908, 978, 609, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1953, '2022-05-15', 173, 1909, 978, 230, '1.0000', '4000.0000', '4000.0000', '5500.0000', '5500.0000', '0.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1954, '2022-05-15', 153, 1910, 978, 322, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1955, '2022-05-15', 163, 1911, 978, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1956, '2022-05-15', 11, 1912, 979, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1957, '2022-05-15', 195, 1913, 979, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1958, '2022-05-15', 15, 1914, 980, 20, '-1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1959, '2022-05-15', 15, 1914, 980, 292, '2.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1960, '2022-05-16', 321, 1915, 981, 403, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1961, '2022-05-16', 364, 1916, 981, 600, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1962, '2022-05-16', 245, 1917, 981, 217, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1963, '2022-05-16', 335, 1918, 981, 421, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1964, '2022-05-16', 313, 1919, 981, 388, '-1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1965, '2022-05-16', 313, 1919, 981, 476, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1966, '2022-05-16', 296, 1920, 981, 319, '2.0000', '95.0000', '95.0000', '120.0000', '120.0000', '68.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1967, '2022-05-16', 218, 1921, 981, 181, '-2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1968, '2022-05-16', 218, 1921, 981, 460, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1969, '2022-05-16', 218, 1921, 981, 576, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1970, '2022-05-16', 141, 1922, 982, 438, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1971, '2022-05-16', 271, 1923, 983, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '48.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1972, '2022-05-16', 347, 1924, 984, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1973, '2022-05-16', 293, 1925, 985, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1974, '2022-05-16', 299, 1926, 985, 346, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1975, '2022-05-16', 17, 1927, 985, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1976, '2022-05-16', 15, 1928, 985, 292, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1977, '2022-05-16', 289, 1929, 985, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1978, '2022-05-16', 305, 1930, 986, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1979, '2022-05-16', 195, 1931, 986, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1980, '2022-05-16', 15, 1932, 986, 292, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1981, '2022-05-16', 289, 1933, 986, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1982, '2022-05-16', 17, 1934, 986, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1983, '2022-05-16', 289, 1935, 986, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1984, '2022-05-16', 17, 1936, 986, 22, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1985, '2022-05-16', 289, 1937, 986, 517, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1986, '2022-05-16', 35, 1938, 986, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '14.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1987, '2022-05-16', 93, 1939, 986, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1988, '2022-05-16', 352, 1940, 986, 522, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 151, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1989, '2022-05-16', 208, 1941, 987, 447, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1990, '2022-05-16', 293, 1942, 987, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1991, '2022-05-16', 290, 1943, 987, 518, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1992, '2022-05-16', 364, 1944, 988, 600, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1993, '2022-05-16', 348, 1945, 988, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1994, '2022-05-16', 355, 1946, 988, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1995, '2022-05-16', 186, 1947, 988, 401, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1996, '2022-05-16', 44, 1948, 988, 44, '1.0000', '450.0000', '450.0000', '900.0000', '900.0000', '4.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1997, '2022-05-16', 232, 1949, 988, 453, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1998, '2022-05-16', 280, 1950, 988, 618, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (1999, '2022-05-16', 21, 1951, 988, 17, '-1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2000, '2022-05-16', 21, 1951, 988, 509, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2001, '2022-05-16', 165, 1952, 988, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '14.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2002, '2022-05-16', 193, 1953, 988, 156, '-2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2003, '2022-05-16', 193, 1953, 988, 483, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2004, '2022-05-16', 193, 1953, 988, 612, '8.0000', '200.0000', '200.0000', '250.0000', '250.0000', '32.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2005, '2022-05-16', 291, 1954, 988, 539, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2006, '2022-05-16', 160, 1955, 988, 554, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2007, '2022-05-16', 141, 1956, 988, 438, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2008, '2022-05-16', 342, 1957, 988, 448, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2009, '2022-05-16', 149, 1958, 988, 134, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2010, '2022-05-16', 282, 1959, 989, 527, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2011, '2022-05-16', 271, 1960, 990, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '47.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2012, '2022-05-16', 165, 1961, 991, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '13.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2013, '2022-05-16', 292, 1962, 991, 540, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2014, '2022-05-16', 193, 1963, 992, 612, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '30.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2015, '2022-05-17', 282, 1964, 993, 527, '2.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2016, '2022-05-17', 284, 1965, 993, 529, '2.0000', '50.0000', '50.0000', '80.0000', '80.0000', '7.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2017, '2022-05-17', 166, 1966, 994, 422, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2018, '2022-05-17', 214, 1967, 994, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '15.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2019, '2022-05-17', 220, 1968, 994, 631, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '39.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2020, '2022-05-17', 119, 1969, 995, 310, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2021, '2022-05-17', 165, 1970, 996, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '12.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2022, '2022-05-17', 290, 1971, 997, 518, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2023, '2022-05-17', 290, 1972, 998, 518, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2024, '2022-05-17', 288, 1973, 998, 545, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2025, '2022-05-17', 165, 1974, 998, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2026, '2022-05-17', 166, 1975, 998, 488, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2027, '2022-05-17', 337, 1976, 998, 577, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2028, '2022-05-17', 318, 1977, 998, 397, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2029, '2022-05-17', 220, 1978, 999, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '37.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2030, '2022-05-17', 28, 1979, 1000, 27, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2031, '2022-05-17', 3, 1980, 1000, 126, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2032, '2022-05-18', 153, 1981, 1001, 549, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '18.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2033, '2022-05-18', 280, 1982, 1002, 618, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2034, '2022-05-18', 220, 1983, 1002, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '35.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2035, '2022-05-19', 210, 1984, 1003, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2036, '2022-05-19', 143, 1985, 1003, 553, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2037, '2022-05-19', 145, 1986, 1003, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2038, '2022-05-19', 280, 1987, 1004, 618, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2039, '2022-05-19', 291, 1988, 1005, 539, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2040, '2022-05-19', 153, 1989, 1006, 549, '6.0000', '250.0000', '250.0000', '400.0000', '400.0000', '12.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2041, '2022-05-19', 145, 1990, 1007, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2042, '2022-05-19', 280, 1991, 1008, 630, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2043, '2022-05-19', 95, 1992, 1009, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '7.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2044, '2022-05-19', 268, 1993, 1010, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '29.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2045, '2022-05-19', 271, 1994, 1010, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '45.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2046, '2022-05-19', 289, 1995, 1011, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2047, '2022-05-19', 338, 1996, 1011, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2048, '2022-05-19', 165, 1997, 1012, 583, '2.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2049, '2022-05-20', 353, 1998, 1013, 569, '1.0000', '50.0000', '50.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 161, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2050, '2022-05-20', 143, 1999, 1014, 553, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2051, '2022-05-20', 143, 2000, 1015, 553, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2052, '2022-05-20', 115, 2001, 1015, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2053, '2022-05-20', 160, 2002, 1015, 554, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2054, '2022-05-20', 338, 2003, 1016, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2055, '2022-05-20', 338, 2004, 1017, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2056, '2022-05-20', 289, 2005, 1017, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2057, '2022-05-20', 11, 2006, 1018, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2058, '2022-05-20', 271, 2007, 1019, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '44.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2059, '2022-05-20', 220, 2008, 1019, 631, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '34.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2060, '2022-05-20', 165, 2009, 1020, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2061, '2022-05-20', 166, 2010, 1020, 207, '-1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2062, '2022-05-20', 166, 2010, 1020, 488, '2.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2063, '2022-05-20', 313, 2011, 1020, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2064, '2022-05-20', 313, 2012, 1020, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2065, '2022-05-20', 291, 2013, 1020, 539, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2066, '2022-05-20', 292, 2014, 1020, 540, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2067, '2022-05-20', 95, 2015, 1021, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '6.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2068, '2022-05-20', 312, 2016, 1022, 387, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2069, '2022-05-20', 317, 2017, 1022, 496, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2070, '2022-05-20', 271, 2018, 1023, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '43.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2071, '2022-05-20', 295, 2019, 1024, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '30.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2072, '2022-05-20', 164, 2020, 1025, 588, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2073, '2022-05-20', 250, 2021, 1025, 235, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '1.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2074, '2022-05-20', 93, 2022, 1025, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2075, '2022-05-20', 297, 2023, 1025, 320, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2076, '2022-05-20', 153, 2024, 1025, 549, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '10.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2077, '2022-05-20', 289, 2025, 1025, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2078, '2022-05-20', 290, 2026, 1025, 546, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2079, '2022-05-20', 347, 2027, 1025, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2080, '2022-05-20', 195, 2028, 1025, 481, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2081, '2022-05-20', 362, 2029, 1025, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '14.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2082, '2022-05-20', 199, 2030, 1025, 245, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2083, '2022-05-20', 11, 2031, 1025, 381, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2084, '2022-05-20', 345, 2032, 1025, 485, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2085, '2022-05-20', 291, 2033, 1025, 539, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2086, '2022-05-20', 195, 2034, 1026, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2087, '2022-05-20', 293, 2035, 1027, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2088, '2022-05-20', 276, 2036, 1027, 284, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2089, '2022-05-20', 220, 2037, 1027, 631, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '31.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2090, '2022-05-20', 351, 2038, 1028, 621, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2091, '2022-05-20', 200, 2039, 1029, 555, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2092, '2022-05-20', 280, 2040, 1030, 630, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2093, '2022-05-20', 220, 2041, 1030, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '29.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2094, '2022-05-20', 312, 2042, 1031, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2095, '2022-05-21', 355, 2043, 1032, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2096, '2022-05-21', 337, 2044, 1032, 577, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2097, '2022-05-21', 246, 2045, 1032, 221, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 80, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2098, '2022-05-21', 340, 2046, 1032, 433, '-3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2099, '2022-05-21', 340, 2046, 1032, 495, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2100, '2022-05-21', 340, 2046, 1032, 635, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2101, '2022-05-21', 348, 2047, 1032, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2102, '2022-05-21', 338, 2048, 1033, 423, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2103, '2022-05-21', 338, 2048, 1033, 479, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2104, '2022-05-21', 290, 2049, 1033, 546, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2105, '2022-05-21', 95, 2050, 1034, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '5.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2106, '2022-05-21', 217, 2051, 1034, 581, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2107, '2022-05-21', 352, 2052, 1034, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '29.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2108, '2022-05-21', 338, 2053, 1035, 479, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2109, '2022-05-21', 289, 2054, 1035, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2110, '2022-05-21', 220, 2055, 1036, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '27.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2111, '2022-05-21', 284, 2056, 1036, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '6.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2112, '2022-05-21', 286, 2057, 1036, 535, '1.0000', '75.0000', '75.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2124, '2022-05-22', 293, 2069, 1045, 547, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2123, '2022-05-21', 87, 2068, 1044, 78, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2125, '2022-05-22', 220, 2070, 1045, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '25.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2116, '2022-05-21', 193, 2061, 1038, 612, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '29.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2117, '2022-05-21', 355, 2062, 1039, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2118, '2022-05-21', 293, 2063, 1040, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2119, '2022-05-21', 193, 2064, 1041, 612, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '25.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2120, '2022-05-21', 352, 2065, 1042, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '28.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2121, '2022-05-21', 287, 2066, 1042, 544, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2122, '2022-05-21', 341, 2067, 1043, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2126, '2022-05-22', 160, 2071, 1046, 554, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2127, '2022-05-22', 361, 2072, 1046, 594, '1.0000', '1800.0000', '1800.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2128, '2022-05-22', 291, 2073, 1047, 628, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2129, '2022-05-22', 35, 2074, 1047, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '13.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2130, '2022-05-22', 337, 2075, 1048, 577, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2131, '2022-05-22', 92, 2076, 1048, 283, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2132, '2022-05-22', 107, 2077, 1049, 556, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2133, '2022-05-22', 291, 2078, 1050, 628, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2134, '2022-05-22', 260, 2079, 1051, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '43.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2135, '2022-05-22', 351, 2080, 1052, 621, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2136, '2022-05-22', 357, 2081, 1053, 589, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2137, '2022-05-22', 372, 2082, 1053, 613, '1.0000', '1200.0000', '1200.0000', '1800.0000', '1800.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2138, '2022-05-22', 100, 2083, 1053, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2139, '2022-05-22', 193, 2084, 1053, 612, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '21.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2140, '2022-05-22', 230, 2085, 1054, 525, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2141, '2022-05-22', 142, 2086, 1054, 561, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2142, '2022-05-23', 219, 2087, 1055, 182, '1.0000', '20.0000', '20.0000', '30.0000', '30.0000', '8.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2143, '2022-05-23', 260, 2088, 1056, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '42.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2144, '2022-05-23', 271, 2089, 1057, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '42.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2145, '2022-05-23', 220, 2090, 1057, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '23.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2146, '2022-05-23', 348, 2091, 1058, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2147, '2022-05-23', 226, 2092, 1058, 524, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2148, '2022-05-23', 3, 2093, 1058, 126, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2149, '2022-05-23', 293, 2094, 1058, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2150, '2022-05-23', 289, 2095, 1059, 548, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2151, '2022-05-23', 271, 2096, 1060, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '41.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2152, '2022-05-23', 119, 2097, 1061, 310, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2153, '2022-05-23', 214, 2098, 1061, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2154, '2022-05-23', 166, 2099, 1062, 488, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2155, '2022-05-23', 338, 2100, 1063, 479, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2156, '2022-05-23', 289, 2101, 1063, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2157, '2022-05-24', 145, 2102, 1064, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2158, '2022-05-24', 159, 2103, 1065, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2159, '2022-05-24', 162, 2104, 1065, 622, '4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '14.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2160, '2022-05-24', 220, 2105, 1066, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2161, '2022-05-24', 271, 2106, 1067, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '40.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2162, '2022-05-24', 269, 2107, 1068, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2163, '2022-05-24', 271, 2108, 1068, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '39.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2164, '2022-05-24', 195, 2109, 1069, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2165, '2022-05-24', 352, 2110, 1070, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '27.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2166, '2022-05-24', 247, 2111, 1071, 222, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 81, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2167, '2022-05-24', 165, 2112, 1071, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2168, '2022-05-24', 292, 2113, 1071, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2169, '2022-05-24', 164, 2114, 1072, 588, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2170, '2022-05-24', 17, 2115, 1072, 22, '-2.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2171, '2022-05-24', 17, 2115, 1072, 492, '3.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2172, '2022-05-24', 157, 2116, 1072, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '31.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2173, '2022-05-24', 100, 2117, 1072, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2174, '2022-05-24', 105, 2118, 1072, 98, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2175, '2022-05-24', 166, 2119, 1072, 582, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2176, '2022-05-24', 166, 2119, 1072, 584, '2.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '18.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2177, '2022-05-24', 165, 2120, 1072, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2178, '2022-05-24', 292, 2121, 1072, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2179, '2022-05-24', 47, 2122, 1072, 47, '-3.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2180, '2022-05-24', 47, 2122, 1072, 426, '5.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2181, '2022-05-24', 47, 2122, 1072, 602, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2182, '2022-05-24', 63, 2123, 1072, 371, '3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2183, '2022-05-24', 17, 2124, 1073, 597, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2184, '2022-05-24', 195, 2125, 1073, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2185, '2022-05-24', 287, 2126, 1073, 544, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2186, '2022-05-24', 117, 2127, 1074, 110, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2187, '2022-05-24', 208, 2128, 1075, 447, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2188, '2022-05-24', 165, 2129, 1076, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2189, '2022-05-24', 292, 2130, 1076, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2190, '2022-05-24', 314, 2131, 1076, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2191, '2022-05-25', 293, 2132, 1077, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2192, '2022-05-25', 194, 2133, 1077, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2193, '2022-05-25', 92, 2134, 1077, 283, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 124, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2194, '2022-05-25', 340, 2135, 1077, 635, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2195, '2022-05-25', 317, 2136, 1077, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2196, '2022-05-25', 195, 2137, 1078, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2197, '2022-05-25', 355, 2138, 1078, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2198, '2022-05-25', 289, 2139, 1078, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2199, '2022-05-25', 162, 2140, 1078, 622, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '13.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2200, '2022-05-25', 199, 2141, 1079, 245, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 98, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2201, '2022-05-25', 232, 2142, 1079, 453, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2202, '2022-05-25', 193, 2143, 1079, 612, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2203, '2022-05-25', 192, 2144, 1079, 285, '3.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2216, '2022-05-26', 3, 2157, 1081, 126, '8.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 16, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2215, '2022-05-26', 164, 2156, 1081, 588, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2214, '2022-05-26', 314, 2155, 1081, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2213, '2022-05-26', 313, 2154, 1081, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2212, '2022-05-26', 35, 2153, 1081, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2211, '2022-05-26', 35, 2152, 1081, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2217, '2022-05-26', 93, 2158, 1081, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2218, '2022-05-26', 54, 2159, 1081, 211, '1.0000', '110.0000', '110.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 73, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2219, '2022-05-26', 338, 2160, 1082, 479, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2220, '2022-05-26', 287, 2161, 1082, 544, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2221, '2022-05-26', 265, 2162, 1083, 261, '1.0000', '1300.0000', '1300.0000', '1800.0000', '1800.0000', '0.0000', 1, 0, NULL, 112, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2222, '2022-05-26', 284, 2163, 1084, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '5.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2223, '2022-05-26', 220, 2164, 1085, 631, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2224, '2022-05-26', 95, 2165, 1086, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '4.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2225, '2022-05-26', 218, 2166, 1087, 576, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2226, '2022-05-26', 341, 2167, 1088, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2227, '2022-05-26', 293, 2168, 1088, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2228, '2022-05-26', 193, 2169, 1088, 612, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '16.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2229, '2022-05-26', 220, 2170, 1089, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2230, '2022-05-26', 39, 2171, 1090, 39, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2231, '2022-05-26', 268, 2172, 1091, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '27.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2232, '2022-05-26', 220, 2173, 1091, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2233, '2022-05-26', 366, 2174, 1092, 605, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2234, '2022-05-26', 356, 2175, 1092, 623, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 166, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2235, '2022-05-26', 290, 2176, 1092, 546, '2.0000', '160.0000', '160.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2236, '2022-05-26', 199, 2177, 1092, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '9.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2237, '2022-05-26', 200, 2178, 1093, 555, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2238, '2022-05-26', 145, 2179, 1094, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2239, '2022-05-26', 220, 2180, 1095, 631, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2240, '2022-05-26', 288, 2181, 1096, 545, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2241, '2022-05-27', 195, 2182, 1097, 481, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2242, '2022-05-27', 338, 2183, 1097, 479, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2243, '2022-05-27', 289, 2184, 1097, 548, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2244, '2022-05-27', 289, 2184, 1097, 626, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2245, '2022-05-27', 293, 2185, 1097, 547, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2246, '2022-05-27', 293, 2185, 1097, 627, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2247, '2022-05-27', 288, 2186, 1097, 545, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2248, '2022-05-27', 355, 2187, 1097, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2249, '2022-05-27', 312, 2188, 1097, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2250, '2022-05-27', 354, 2189, 1097, 586, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2251, '2022-05-27', 356, 2190, 1097, 623, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 166, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2252, '2022-05-27', 366, 2191, 1097, 605, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2253, '2022-05-27', 20, 2192, 1097, 350, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2254, '2022-05-27', 296, 2193, 1097, 319, '1.0000', '95.0000', '95.0000', '120.0000', '120.0000', '67.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2255, '2022-05-27', 15, 2194, 1098, 20, '-1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2256, '2022-05-27', 15, 2194, 1098, 292, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2257, '2022-05-27', 15, 2194, 1098, 491, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2258, '2022-05-27', 289, 2195, 1098, 626, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2259, '2022-05-27', 315, 2196, 1099, 478, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2260, '2022-05-27', 293, 2197, 1099, 627, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2261, '2022-05-27', 35, 2198, 1099, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2262, '2022-05-27', 291, 2199, 1099, 628, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2263, '2022-05-27', 165, 2200, 1099, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2264, '2022-05-27', 292, 2201, 1099, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2265, '2022-05-27', 6, 2202, 1099, 88, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2266, '2022-05-27', 306, 2203, 1099, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '11.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2267, '2022-05-27', 200, 2204, 1099, 555, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2268, '2022-05-27', 113, 2205, 1100, 296, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2269, '2022-05-27', 352, 2206, 1100, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '26.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2270, '2022-05-27', 8, 2207, 1100, 579, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2271, '2022-05-27', 352, 2208, 1101, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '25.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2272, '2022-05-27', 149, 2209, 1102, 134, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2273, '2022-05-27', 352, 2210, 1103, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '24.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2274, '2022-05-27', 195, 2211, 1104, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2275, '2022-05-27', 220, 2212, 1105, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2276, '2022-05-27', 291, 2213, 1106, 628, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2277, '2022-05-27', 338, 2214, 1107, 479, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2278, '2022-05-27', 9, 2215, 1107, 8, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '29.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2279, '2022-05-27', 239, 2216, 1107, 208, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2280, '2022-05-27', 297, 2217, 1108, 320, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2281, '2022-05-27', 271, 2218, 1109, 463, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '35.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2282, '2022-05-27', 195, 2219, 1110, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2283, '2022-05-27', 352, 2220, 1110, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '23.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2284, '2022-05-27', 352, 2221, 1111, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '22.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2285, '2022-05-27', 47, 2222, 1112, 602, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2286, '2022-05-27', 220, 2223, 1113, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2287, '2022-05-28', 352, 2224, 1114, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '21.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2288, '2022-05-28', 220, 2225, 1115, 631, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2289, '2022-05-28', 220, 2226, 1116, 631, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2290, '2022-05-28', 280, 2227, 1116, 630, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2291, '2022-05-28', 153, 2228, 1116, 132, '-1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2292, '2022-05-28', 153, 2228, 1116, 549, '4.0000', '250.0000', '250.0000', '400.0000', '400.0000', '6.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2293, '2022-05-28', 280, 2229, 1117, 630, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2294, '2022-05-28', 220, 2230, 1118, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2295, '2022-05-28', 286, 2231, 1118, 535, '1.0000', '75.0000', '75.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2296, '2022-05-28', 282, 2232, 1118, 527, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2297, '2022-05-28', 95, 2233, 1119, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '3.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2298, '2022-05-28', 312, 2234, 1119, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2299, '2022-05-28', 352, 2235, 1120, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '20.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2300, '2022-05-28', 141, 2236, 1121, 438, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2301, '2022-05-28', 219, 2237, 1122, 182, '7.0000', '20.0000', '20.0000', '30.0000', '30.0000', '1.0000', 1, 0, NULL, 54, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2302, '2022-05-28', 363, 2238, 1123, 599, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2303, '2022-05-28', 290, 2239, 1123, 546, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2304, '2022-05-28', 9, 2240, 1124, 8, '4.0000', '250.0000', '250.0000', '400.0000', '400.0000', '25.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2305, '2022-05-28', 338, 2241, 1124, 479, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2306, '2022-05-28', 305, 2242, 1125, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2307, '2022-05-28', 143, 2243, 1125, 553, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2308, '2022-05-28', 95, 2244, 1126, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '2.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2309, '2022-05-28', 363, 2245, 1126, 599, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2310, '2022-05-28', 293, 2246, 1126, 627, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2311, '2022-05-28', 260, 2247, 1127, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '41.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2312, '2022-05-28', 95, 2248, 1128, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '1.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2313, '2022-05-28', 15, 2249, 1128, 491, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2314, '2022-05-28', 217, 2250, 1128, 581, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2315, '2022-05-29', 271, 2251, 1129, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '34.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2316, '2022-05-29', 319, 2252, 1130, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2317, '2022-05-29', 289, 2253, 1130, 626, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2318, '2022-05-29', 284, 2254, 1131, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2319, '2022-05-29', 220, 2255, 1131, 631, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2320, '2022-05-29', 269, 2256, 1132, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2321, '2022-05-29', 292, 2257, 1133, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2322, '2022-05-29', 289, 2258, 1134, 626, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2323, '2022-05-29', 200, 2259, 1135, 555, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2324, '2022-05-29', 149, 2260, 1136, 134, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2325, '2022-05-29', 153, 2261, 1137, 549, '6.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2326, '2022-05-29', 376, 2262, 1138, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2327, '2022-05-29', 165, 2263, 1139, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2328, '2022-05-29', 164, 2264, 1139, 588, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2329, '2022-05-29', 66, 2265, 1139, 500, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2330, '2022-05-29', 21, 2266, 1139, 509, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2331, '2022-05-30', 15, 2267, 1140, 491, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2332, '2022-05-30', 289, 2268, 1140, 626, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2333, '2022-05-30', 193, 2269, 1140, 612, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2334, '2022-05-30', 93, 2270, 1141, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2335, '2022-05-30', 116, 2271, 1142, 357, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2336, '2022-05-30', 381, 2272, 1142, 645, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2337, '2022-05-30', 287, 2273, 1143, 648, '5.0000', '80.0000', '80.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2338, '2022-05-30', 289, 2274, 1143, 626, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2339, '2022-05-30', 260, 2275, 1143, 250, '6.0000', '35.0000', '35.0000', '50.0000', '50.0000', '35.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2340, '2022-05-30', 293, 2276, 1143, 627, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2341, '2022-05-30', 366, 2277, 1143, 605, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2342, '2022-05-30', 105, 2278, 1144, 98, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2343, '2022-05-30', 104, 2279, 1144, 97, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2344, '2022-05-30', 345, 2280, 1144, 485, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2345, '2022-05-30', 291, 2281, 1144, 628, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2346, '2022-05-30', 358, 2282, 1144, 590, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2347, '2022-05-31', 269, 2283, 1145, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2348, '2022-05-31', 351, 2284, 1146, 621, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2349, '2022-05-31', 271, 2285, 1147, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '33.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2350, '2022-05-31', 165, 2286, 1148, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2351, '2022-05-31', 230, 2287, 1148, 558, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2352, '2022-05-31', 160, 2288, 1148, 632, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2353, '2022-05-31', 164, 2289, 1149, 588, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2354, '2022-05-31', 319, 2290, 1149, 398, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2355, '2022-05-31', 364, 2291, 1149, 600, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2356, '2022-05-31', 275, 2292, 1149, 560, '1.0000', '300.0000', '300.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2357, '2022-05-31', 254, 2293, 1149, 241, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2358, '2022-05-31', 106, 2294, 1149, 99, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2359, '2022-05-31', 105, 2295, 1149, 98, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2360, '2022-05-31', 95, 2296, 1150, 469, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 148, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2361, '2022-05-31', 77, 2297, 1151, 69, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2362, '2022-05-31', 355, 2298, 1151, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2363, '2022-05-31', 95, 2299, 1151, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '19.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2364, '2022-05-31', 95, 2300, 1152, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '18.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2365, '2022-05-31', 9, 2301, 1153, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '24.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2366, '2022-05-31', 338, 2302, 1153, 479, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2367, '2022-05-31', 289, 2303, 1153, 626, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2368, '2022-05-31', 217, 2304, 1153, 581, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2369, '2022-05-31', 105, 2305, 1154, 287, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 128, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2370, '2022-05-31', 376, 2306, 1154, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2371, '2022-05-31', 338, 2307, 1155, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2372, '2022-05-31', 287, 2308, 1155, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '14.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2373, '2022-05-31', 354, 2309, 1156, 586, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '8.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2374, '2022-05-31', 341, 2310, 1156, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2375, '2022-05-31', 9, 2311, 1157, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '23.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2376, '2022-05-31', 338, 2312, 1157, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2377, '2022-05-31', 289, 2313, 1157, 650, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2378, '2022-05-31', 47, 2314, 1158, 602, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2379, '2022-05-31', 338, 2315, 1158, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2380, '2022-05-31', 289, 2316, 1158, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2381, '2022-05-31', 292, 2317, 1159, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2382, '2022-05-31', 6, 2318, 1160, 88, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2383, '2022-05-31', 312, 2319, 1161, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2384, '2022-05-31', 95, 2320, 1162, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '17.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2385, '2022-06-01', 289, 2321, 1163, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2386, '2022-06-01', 289, 2322, 1163, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2387, '2022-06-01', 352, 2323, 1163, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '19.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2388, '2022-06-01', 21, 2324, 1164, 509, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2389, '2022-06-01', 289, 2325, 1165, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2390, '2022-06-01', 9, 2326, 1165, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '22.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2391, '2022-06-02', 163, 2327, 1166, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2392, '2022-06-02', 160, 2328, 1167, 632, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2393, '2022-06-02', 377, 2329, 1167, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2394, '2022-06-02', 305, 2330, 1168, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2395, '2022-06-02', 194, 2331, 1168, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2396, '2022-06-02', 95, 2332, 1168, 663, '2.0000', '450.0000', '450.0000', '650.0000', '650.0000', '15.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2397, '2022-06-02', 338, 2333, 1168, 578, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2398, '2022-06-02', 293, 2334, 1168, 627, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2399, '2022-06-02', 192, 2335, 1169, 285, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2400, '2022-06-02', 74, 2336, 1170, 66, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2401, '2022-06-02', 341, 2337, 1171, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2402, '2022-06-02', 340, 2338, 1171, 635, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2403, '2022-06-02', 287, 2339, 1171, 648, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '12.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2420, '2022-06-03', 351, 2356, 1181, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2421, '2022-06-03', 268, 2357, 1182, 267, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2418, '2022-06-03', 271, 2354, 1179, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '31.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2419, '2022-06-03', 212, 2355, 1180, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2416, '2022-06-03', 220, 2352, 1178, 631, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2417, '2022-06-03', 268, 2353, 1179, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '25.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2415, '2022-06-03', 193, 2351, 1178, 612, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2413, '2022-06-03', 95, 2349, 1177, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '14.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2414, '2022-06-03', 20, 2350, 1177, 350, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2422, '2022-06-03', 271, 2358, 1182, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '29.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2423, '2022-06-03', 6, 2359, 1183, 88, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2424, '2022-06-03', 141, 2360, 1183, 438, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2425, '2022-06-03', 296, 2361, 1184, 319, '4.0000', '95.0000', '95.0000', '120.0000', '120.0000', '63.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2426, '2022-06-03', 104, 2362, 1184, 97, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2427, '2022-06-03', 260, 2363, 1184, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '34.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2428, '2022-06-03', 107, 2364, 1185, 556, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2429, '2022-06-03', 288, 2365, 1186, 545, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2430, '2022-06-03', 9, 2366, 1187, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '21.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2431, '2022-06-03', 338, 2367, 1187, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2432, '2022-06-03', 289, 2368, 1187, 650, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2433, '2022-06-03', 276, 2369, 1188, 284, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 125, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2434, '2022-06-03', 276, 2369, 1188, 330, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2435, '2022-06-03', 288, 2370, 1188, 545, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2436, '2022-06-03', 318, 2371, 1188, 397, '2.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2437, '2022-06-03', 376, 2372, 1189, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2438, '2022-06-03', 376, 2373, 1190, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2439, '2022-06-03', 293, 2374, 1190, 627, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2440, '2022-06-03', 288, 2375, 1190, 551, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2441, '2022-06-03', 292, 2376, 1190, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2442, '2022-06-03', 293, 2377, 1191, 627, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2443, '2022-06-03', 297, 2378, 1192, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2444, '2022-06-03', 377, 2379, 1193, 655, '2.0000', '70.0000', '70.0000', '90.0000', '90.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2445, '2022-06-03', 195, 2380, 1194, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2446, '2022-06-03', 93, 2381, 1195, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2447, '2022-06-03', 351, 2382, 1195, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2448, '2022-06-03', 355, 2383, 1195, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2449, '2022-06-03', 287, 2384, 1195, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '11.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2450, '2022-06-03', 276, 2385, 1196, 330, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2451, '2022-06-03', 356, 2386, 1196, 623, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 166, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2452, '2022-06-03', 200, 2387, 1196, 620, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2453, '2022-06-03', 355, 2388, 1196, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2454, '2022-06-03', 287, 2389, 1196, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '10.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2455, '2022-06-03', 293, 2390, 1196, 627, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2456, '2022-06-03', 376, 2391, 1197, 636, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2457, '2022-06-03', 239, 2392, 1198, 208, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2458, '2022-06-03', 355, 2393, 1198, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2459, '2022-06-03', 93, 2394, 1198, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2460, '2022-06-03', 107, 2395, 1199, 556, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2461, '2022-06-03', 284, 2396, 1199, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2462, '2022-06-03', 200, 2397, 1200, 620, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2463, '2022-06-03', 35, 2398, 1201, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2464, '2022-06-03', 93, 2399, 1201, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2465, '2022-06-04', 145, 2400, 1202, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2466, '2022-06-04', 231, 2401, 1202, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2467, '2022-06-04', 232, 2402, 1202, 453, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2468, '2022-06-04', 214, 2403, 1203, 175, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2469, '2022-06-04', 13, 2404, 1204, 12, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2470, '2022-06-04', 352, 2405, 1205, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '18.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2471, '2022-06-04', 338, 2406, 1206, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2472, '2022-06-04', 376, 2407, 1207, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2473, '2022-06-04', 290, 2408, 1207, 546, '3.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2474, '2022-06-04', 289, 2409, 1207, 650, '3.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2475, '2022-06-04', 292, 2410, 1207, 564, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2476, '2022-06-04', 292, 2410, 1207, 651, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2477, '2022-06-04', 354, 2411, 1207, 586, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2478, '2022-06-04', 210, 2412, 1208, 168, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 41, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2479, '2022-06-04', 288, 2413, 1209, 551, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2480, '2022-06-04', 314, 2414, 1209, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2481, '2022-06-04', 297, 2415, 1210, 320, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2482, '2022-06-04', 319, 2416, 1211, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2483, '2022-06-04', 165, 2417, 1212, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2484, '2022-06-04', 196, 2418, 1212, 507, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2485, '2022-06-04', 153, 2419, 1212, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '14.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2486, '2022-06-05', 341, 2420, 1213, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2487, '2022-06-05', 230, 2421, 1214, 558, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2488, '2022-06-05', 220, 2422, 1215, 665, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 173, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2489, '2022-06-05', 280, 2423, 1215, 630, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2490, '2022-06-05', 9, 2424, 1216, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '19.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2491, '2022-06-05', 289, 2425, 1217, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2492, '2022-06-05', 276, 2426, 1217, 330, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2493, '2022-06-05', 212, 2427, 1217, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2494, '2022-06-05', 268, 2428, 1218, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '21.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2495, '2022-06-05', 271, 2429, 1218, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '28.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2496, '2022-06-05', 220, 2430, 1219, 665, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 173, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2497, '2022-06-05', 9, 2431, 1220, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '18.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2498, '2022-06-05', 220, 2432, 1221, 665, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 173, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2499, '2022-06-05', 288, 2433, 1222, 551, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2508, '2022-06-06', 376, 2442, 1224, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2507, '2022-06-06', 290, 2441, 1224, 546, '2.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2506, '2022-06-06', 289, 2440, 1224, 650, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2505, '2022-06-06', 292, 2439, 1224, 651, '5.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2509, '2022-06-06', 284, 2443, 1225, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2510, '2022-06-06', 291, 2444, 1226, 628, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2511, '2022-06-06', 318, 2445, 1227, 397, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2512, '2022-06-06', 288, 2446, 1227, 551, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2513, '2022-06-07', 17, 2447, 1228, 22, '-1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2514, '2022-06-07', 17, 2447, 1228, 597, '2.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2515, '2022-06-07', 289, 2448, 1228, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2516, '2022-06-07', 164, 2449, 1229, 588, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2517, '2022-06-07', 166, 2450, 1229, 207, '-5.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2518, '2022-06-07', 166, 2450, 1229, 584, '6.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '12.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2519, '2022-06-07', 5, 2451, 1229, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '19.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2520, '2022-06-07', 74, 2452, 1229, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2521, '2022-06-07', 74, 2453, 1229, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2522, '2022-06-07', 287, 2454, 1229, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2523, '2022-06-07', 288, 2455, 1229, 551, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2524, '2022-06-07', 165, 2456, 1229, 583, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2525, '2022-06-07', 270, 2457, 1230, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2526, '2022-06-07', 268, 2458, 1230, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2527, '2022-06-07', 317, 2459, 1231, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2528, '2022-06-07', 287, 2460, 1231, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2529, '2022-06-07', 160, 2461, 1232, 632, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2530, '2022-06-07', 312, 2462, 1232, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2531, '2022-06-07', 284, 2463, 1232, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2532, '2022-06-07', 289, 2464, 1232, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2533, '2022-06-07', 348, 2465, 1232, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2534, '2022-06-07', 289, 2466, 1232, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2535, '2022-06-07', 200, 2467, 1232, 620, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2536, '2022-06-07', 49, 2468, 1233, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2537, '2022-06-07', 291, 2469, 1233, 628, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2538, '2022-06-07', 165, 2470, 1233, 668, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2539, '2022-06-07', 163, 2471, 1234, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2540, '2022-06-07', 275, 2472, 1234, 560, '1.0000', '300.0000', '300.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2541, '2022-06-07', 280, 2473, 1234, 644, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2542, '2022-06-07', 297, 2474, 1235, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2543, '2022-06-07', 117, 2475, 1236, 110, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2544, '2022-06-07', 119, 2476, 1236, 310, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2545, '2022-06-07', 289, 2477, 1236, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2546, '2022-06-07', 171, 2478, 1236, 220, '-6.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2547, '2022-06-07', 171, 2478, 1236, 395, '6.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2548, '2022-06-07', 171, 2478, 1236, 673, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2549, '2022-06-07', 217, 2479, 1237, 581, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2550, '2022-06-07', 21, 2480, 1238, 17, '-1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2551, '2022-06-07', 21, 2480, 1238, 509, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2552, '2022-06-07', 217, 2481, 1239, 581, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2553, '2022-06-07', 384, 2482, 1240, 667, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '18.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2554, '2022-06-07', 25, 2483, 1241, 255, '-15.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2555, '2022-06-07', 25, 2483, 1241, 429, '15.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2556, '2022-06-07', 25, 2483, 1241, 718, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '14.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2557, '2022-06-08', 288, 2484, 1242, 551, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 156, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2558, '2022-06-08', 194, 2485, 1242, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2559, '2022-06-08', 385, 2486, 1242, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '29.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2560, '2022-06-08', 220, 2487, 1243, 665, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 173, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2561, '2022-06-08', 338, 2488, 1244, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2562, '2022-06-08', 7, 2489, 1245, 457, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2563, '2022-06-08', 378, 2490, 1246, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2564, '2022-06-08', 107, 2491, 1247, 619, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2565, '2022-06-08', 338, 2492, 1248, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2566, '2022-06-08', 119, 2493, 1249, 310, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2567, '2022-06-09', 85, 2494, 1250, 532, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2568, '2022-06-09', 276, 2495, 1251, 330, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2569, '2022-06-09', 156, 2496, 1251, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2570, '2022-06-09', 165, 2497, 1251, 668, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2571, '2022-06-09', 5, 2498, 1251, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '18.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2572, '2022-06-09', 260, 2499, 1252, 250, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '32.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2573, '2022-06-09', 164, 2500, 1253, 588, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2574, '2022-06-09', 162, 2501, 1254, 622, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '12.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2575, '2022-06-09', 338, 2502, 1254, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2576, '2022-06-09', 289, 2503, 1254, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2577, '2022-06-09', 25, 2504, 1255, 718, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '13.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2578, '2022-06-09', 163, 2505, 1255, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2579, '2022-06-09', 397, 2506, 1256, 707, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2580, '2022-06-09', 31, 2507, 1256, 408, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2581, '2022-06-09', 399, 2508, 1256, 709, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2582, '2022-06-09', 358, 2509, 1256, 590, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2583, '2022-06-09', 401, 2510, 1256, 712, '1.0000', '2500.0000', '2500.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2584, '2022-06-09', 400, 2511, 1256, 711, '1.0000', '3000.0000', '3000.0000', '4000.0000', '4000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2585, '2022-06-09', 386, 2512, 1257, 681, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2586, '2022-06-09', 276, 2513, 1257, 330, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2587, '2022-06-09', 297, 2514, 1257, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2588, '2022-06-09', 74, 2515, 1257, 675, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2589, '2022-06-09', 398, 2516, 1258, 708, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2590, '2022-06-10', 107, 2517, 1259, 619, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2591, '2022-06-10', 283, 2518, 1259, 303, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2592, '2022-06-10', 284, 2519, 1259, 529, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2593, '2022-06-10', 93, 2520, 1259, 435, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2594, '2022-06-10', 35, 2521, 1259, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2595, '2022-06-10', 220, 2522, 1259, 665, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 173, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2596, '2022-06-10', 220, 2522, 1259, 692, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2597, '2022-06-10', 63, 2523, 1259, 504, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2598, '2022-06-10', 14, 2524, 1259, 505, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2599, '2022-06-10', 268, 2525, 1259, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2600, '2022-06-10', 269, 2526, 1259, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2601, '2022-06-10', 271, 2527, 1259, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '27.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2602, '2022-06-10', 162, 2528, 1260, 622, '3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2603, '2022-06-10', 287, 2529, 1261, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2604, '2022-06-10', 15, 2530, 1261, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2605, '2022-06-10', 195, 2531, 1261, 481, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2606, '2022-06-10', 338, 2532, 1261, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2607, '2022-06-10', 289, 2533, 1261, 650, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2608, '2022-06-10', 394, 2534, 1262, 689, '5.0000', '70.0000', '70.0000', '100.0000', '100.0000', '25.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2609, '2022-06-10', 164, 2535, 1263, 588, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2610, '2022-06-10', 162, 2536, 1263, 622, '3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2611, '2022-06-10', 49, 2537, 1263, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2612, '2022-06-10', 404, 2538, 1263, 721, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2613, '2022-06-10', 166, 2539, 1263, 584, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2614, '2022-06-10', 166, 2540, 1263, 584, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2615, '2022-06-10', 5, 2541, 1263, 678, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2616, '2022-06-10', 3, 2542, 1263, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2617, '2022-06-10', 290, 2543, 1263, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2618, '2022-06-10', 220, 2544, 1263, 692, '8.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2619, '2022-06-10', 220, 2544, 1263, 723, '22.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2620, '2022-06-10', 17, 2545, 1264, 597, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '8.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2621, '2022-06-10', 287, 2546, 1264, 648, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2622, '2022-06-10', 93, 2547, 1264, 435, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 142, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2623, '2022-06-10', 355, 2548, 1264, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2624, '2022-06-10', 21, 2549, 1264, 713, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '18.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2625, '2022-06-10', 312, 2550, 1264, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2626, '2022-06-10', 25, 2551, 1264, 718, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '12.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2627, '2022-06-10', 271, 2552, 1264, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '26.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2628, '2022-06-10', 63, 2553, 1265, 504, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2629, '2022-06-10', 377, 2554, 1266, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2630, '2022-06-10', 338, 2555, 1267, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2631, '2022-06-10', 287, 2556, 1267, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2632, '2022-06-10', 8, 2557, 1268, 579, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2633, '2022-06-10', 220, 2558, 1269, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '17.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2634, '2022-06-10', 237, 2559, 1270, 456, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2635, '2022-06-10', 268, 2560, 1271, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2636, '2022-06-10', 269, 2561, 1271, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2637, '2022-06-10', 271, 2562, 1271, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '25.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2638, '2022-06-10', 317, 2563, 1272, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2639, '2022-06-10', 394, 2564, 1272, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '24.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2640, '2022-06-10', 116, 2565, 1273, 616, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2641, '2022-06-10', 119, 2566, 1273, 310, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2642, '2022-06-10', 352, 2567, 1274, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2643, '2022-06-10', 193, 2568, 1275, 612, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2644, '2022-06-10', 317, 2569, 1276, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2645, '2022-06-10', 287, 2570, 1276, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2646, '2022-06-10', 297, 2571, 1277, 320, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2647, '2022-06-10', 386, 2572, 1277, 681, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2648, '2022-06-10', 292, 2573, 1277, 651, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2649, '2022-06-10', 295, 2574, 1278, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '29.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2650, '2022-06-10', 3, 2575, 1278, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2651, '2022-06-10', 5, 2576, 1278, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2652, '2022-06-10', 220, 2577, 1278, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2653, '2022-06-10', 269, 2578, 1278, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2654, '2022-06-10', 269, 2578, 1278, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2655, '2022-06-10', 394, 2579, 1278, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '23.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2656, '2022-06-10', 317, 2580, 1279, 496, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2657, '2022-06-10', 317, 2580, 1279, 638, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2658, '2022-06-10', 317, 2580, 1279, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '23.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2659, '2022-06-11', 119, 2581, 1280, 310, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2660, '2022-06-11', 357, 2582, 1281, 589, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2661, '2022-06-11', 165, 2583, 1281, 668, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2662, '2022-06-11', 17, 2584, 1282, 597, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2663, '2022-06-11', 287, 2585, 1282, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2664, '2022-06-11', 351, 2586, 1283, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2665, '2022-06-11', 21, 2587, 1284, 713, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '17.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2666, '2022-06-11', 214, 2588, 1285, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2667, '2022-06-11', 116, 2589, 1286, 616, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2668, '2022-06-11', 156, 2590, 1286, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2669, '2022-06-11', 156, 2591, 1286, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2670, '2022-06-11', 119, 2592, 1286, 310, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 132, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2671, '2022-06-11', 381, 2593, 1286, 645, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '7.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2672, '2022-06-11', 337, 2594, 1287, 577, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2673, '2022-06-11', 171, 2595, 1287, 673, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2674, '2022-06-11', 200, 2596, 1288, 620, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2675, '2022-06-11', 310, 2597, 1289, 373, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2676, '2022-06-11', 171, 2598, 1289, 673, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2677, '2022-06-11', 74, 2599, 1289, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2678, '2022-06-11', 3, 2600, 1289, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2679, '2022-06-11', 220, 2601, 1289, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2680, '2022-06-11', 200, 2602, 1290, 620, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2681, '2022-06-11', 312, 2603, 1291, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2682, '2022-06-11', 287, 2604, 1291, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2683, '2022-06-11', 114, 2605, 1292, 107, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2684, '2022-06-11', 312, 2606, 1293, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2685, '2022-06-11', 293, 2607, 1293, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2686, '2022-06-11', 153, 2608, 1294, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '13.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2687, '2022-06-11', 137, 2609, 1295, 188, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 58, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2688, '2022-06-11', 404, 2610, 1295, 721, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2689, '2022-06-11', 3, 2611, 1295, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2690, '2022-06-11', 402, 2612, 1295, 714, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2691, '2022-06-11', 100, 2613, 1296, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2692, '2022-06-11', 317, 2614, 1297, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '22.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2693, '2022-06-11', 355, 2615, 1297, 587, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2694, '2022-06-11', 3, 2616, 1297, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2695, '2022-06-12', 105, 2617, 1298, 287, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 128, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2696, '2022-06-12', 362, 2618, 1299, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '13.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2697, '2022-06-12', 352, 2619, 1299, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '16.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2698, '2022-06-12', 291, 2620, 1299, 628, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2699, '2022-06-12', 385, 2621, 1300, 680, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '27.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2700, '2022-06-12', 288, 2622, 1300, 649, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2701, '2022-06-12', 338, 2623, 1301, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2702, '2022-06-12', 289, 2624, 1301, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2703, '2022-06-12', 337, 2625, 1302, 672, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2704, '2022-06-12', 171, 2626, 1302, 673, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2705, '2022-06-12', 396, 2627, 1302, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2706, '2022-06-12', 319, 2628, 1302, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2707, '2022-06-12', 386, 2629, 1302, 681, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2708, '2022-06-12', 290, 2630, 1302, 314, '-1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2709, '2022-06-12', 290, 2630, 1302, 647, '3.0000', '160.0000', '160.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2710, '2022-06-12', 362, 2631, 1303, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '12.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2711, '2022-06-12', 386, 2632, 1303, 681, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2712, '2022-06-12', 352, 2633, 1303, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2713, '2022-06-12', 22, 2634, 1304, 19, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2714, '2022-06-12', 74, 2635, 1304, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2715, '2022-06-12', 160, 2636, 1305, 632, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2716, '2022-06-12', 143, 2637, 1305, 634, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2717, '2022-06-12', 377, 2638, 1306, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2718, '2022-06-12', 220, 2639, 1307, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2719, '2022-06-12', 165, 2640, 1308, 668, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2720, '2022-06-12', 342, 2641, 1308, 633, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2721, '2022-06-12', 133, 2642, 1308, 543, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 155, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2722, '2022-06-13', 293, 2643, 1309, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2723, '2022-06-13', 385, 2644, 1309, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '26.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2724, '2022-06-13', 19, 2645, 1310, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '15.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2725, '2022-06-13', 289, 2646, 1311, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2726, '2022-06-13', 107, 2647, 1312, 619, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2727, '2022-06-13', 276, 2648, 1313, 330, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2728, '2022-06-13', 290, 2649, 1313, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2729, '2022-06-13', 293, 2650, 1313, 317, '-2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2730, '2022-06-13', 293, 2650, 1313, 646, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2731, '2022-06-13', 288, 2651, 1313, 312, '-1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2732, '2022-06-13', 288, 2651, 1313, 649, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2733, '2022-06-13', 162, 2652, 1314, 622, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2734, '2022-06-13', 165, 2653, 1314, 668, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2735, '2022-06-13', 21, 2654, 1315, 713, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '16.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2736, '2022-06-13', 396, 2655, 1315, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2737, '2022-06-13', 143, 2656, 1315, 634, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2738, '2022-06-14', 19, 2657, 1316, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '14.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2739, '2022-06-14', 95, 2658, 1316, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '13.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2740, '2022-06-14', 171, 2659, 1316, 673, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2741, '2022-06-14', 288, 2660, 1316, 649, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2742, '2022-06-14', 312, 2661, 1316, 387, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2743, '2022-06-14', 288, 2662, 1316, 649, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2744, '2022-06-14', 162, 2663, 1317, 622, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2745, '2022-06-14', 25, 2664, 1318, 718, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '11.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2746, '2022-06-14', 193, 2665, 1319, 612, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2747, '2022-06-14', 67, 2666, 1319, 715, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2748, '2022-06-15', 12, 2667, 1320, 278, '2.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 120, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2749, '2022-06-15', 352, 2668, 1320, 637, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '13.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2750, '2022-06-15', 164, 2669, 1321, 669, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2751, '2022-06-16', 160, 2670, 1322, 632, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2752, '2022-06-16', 284, 2671, 1322, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2753, '2022-06-16', 220, 2672, 1322, 723, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2754, '2022-06-16', 271, 2673, 1322, 463, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '21.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2755, '2022-06-16', 268, 2674, 1322, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2756, '2022-06-16', 269, 2675, 1322, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2757, '2022-06-16', 9, 2676, 1323, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '13.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2758, '2022-06-16', 338, 2677, 1323, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2759, '2022-06-16', 289, 2678, 1323, 726, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2760, '2022-06-16', 22, 2679, 1324, 19, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2761, '2022-06-16', 289, 2680, 1325, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2762, '2022-06-16', 21, 2681, 1326, 713, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '15.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2763, '2022-06-17', 88, 2682, 1327, 79, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2764, '2022-06-17', 292, 2683, 1328, 651, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2765, '2022-06-17', 80, 2684, 1328, 687, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2766, '2022-06-17', 386, 2685, 1329, 681, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2767, '2022-06-17', 289, 2686, 1329, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2768, '2022-06-17', 315, 2687, 1329, 478, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2769, '2022-06-17', 315, 2687, 1329, 703, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2770, '2022-06-17', 166, 2688, 1329, 207, '-1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2771, '2022-06-17', 166, 2688, 1329, 584, '2.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '8.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2772, '2022-06-17', 200, 2689, 1329, 620, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2773, '2022-06-17', 156, 2690, 1330, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2774, '2022-06-17', 402, 2691, 1331, 714, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2775, '2022-06-17', 67, 2692, 1331, 715, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2776, '2022-06-17', 175, 2693, 1331, 704, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2777, '2022-06-17', 22, 2694, 1331, 666, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2778, '2022-06-17', 25, 2695, 1332, 718, '2.0000', '200.0000', '200.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2779, '2022-06-17', 163, 2696, 1332, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2780, '2022-06-17', 9, 2697, 1332, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '12.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2781, '2022-06-17', 290, 2698, 1332, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2782, '2022-06-17', 338, 2699, 1333, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2783, '2022-06-17', 200, 2700, 1334, 695, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2784, '2022-06-17', 14, 2701, 1335, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2785, '2022-06-17', 159, 2702, 1336, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2786, '2022-06-17', 317, 2703, 1337, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '21.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2787, '2022-06-17', 93, 2704, 1337, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2788, '2022-06-17', 394, 2705, 1338, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '22.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2789, '2022-06-17', 276, 2706, 1339, 330, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2790, '2022-06-17', 319, 2707, 1339, 398, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2791, '2022-06-17', 317, 2708, 1339, 674, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '19.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2792, '2022-06-17', 260, 2709, 1340, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '31.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2793, '2022-06-17', 394, 2710, 1340, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '21.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2794, '2022-06-17', 153, 2711, 1341, 664, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '11.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2795, '2022-06-18', 13, 2712, 1342, 12, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2796, '2022-06-18', 193, 2713, 1343, 612, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2797, '2022-06-18', 351, 2714, 1344, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2798, '2022-06-18', 385, 2715, 1345, 680, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '23.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2799, '2022-06-18', 20, 2716, 1346, 359, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2800, '2022-06-18', 296, 2717, 1346, 319, '1.0000', '95.0000', '95.0000', '120.0000', '120.0000', '62.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2801, '2022-06-18', 153, 2718, 1347, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '10.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2802, '2022-06-18', 95, 2719, 1347, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '12.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2803, '2022-06-18', 253, 2720, 1348, 240, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2804, '2022-06-18', 317, 2721, 1348, 674, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2805, '2022-06-18', 3, 2722, 1348, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2806, '2022-06-18', 14, 2723, 1348, 601, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2807, '2022-06-18', 93, 2724, 1349, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2808, '2022-06-18', 355, 2725, 1349, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2809, '2022-06-18', 351, 2726, 1350, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2810, '2022-06-18', 276, 2727, 1351, 330, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2811, '2022-06-18', 220, 2728, 1352, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2812, '2022-06-18', 284, 2729, 1352, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2813, '2022-06-18', 271, 2730, 1352, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '20.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2814, '2022-06-18', 396, 2731, 1353, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2815, '2022-06-18', 289, 2732, 1353, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2816, '2022-06-18', 288, 2733, 1354, 649, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2817, '2022-06-18', 156, 2734, 1355, 130, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2818, '2022-06-18', 317, 2735, 1355, 674, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2819, '2022-06-18', 171, 2736, 1355, 673, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2820, '2022-06-18', 289, 2737, 1355, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2821, '2022-06-18', 15, 2738, 1356, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '10.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2822, '2022-06-18', 289, 2739, 1356, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2823, '2022-06-18', 14, 2740, 1357, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2824, '2022-06-18', 394, 2741, 1358, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '20.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2825, '2022-06-18', 74, 2742, 1359, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2826, '2022-06-18', 220, 2743, 1359, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2827, '2022-06-18', 160, 2744, 1359, 699, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2828, '2022-06-18', 143, 2745, 1359, 634, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2829, '2022-06-19', 153, 2746, 1360, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2830, '2022-06-19', 25, 2747, 1361, 718, '1.0000', '200.0000', '200.0000', '400.0000', '400.0000', '8.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2831, '2022-06-19', 175, 2748, 1361, 704, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2832, '2022-06-19', 390, 2749, 1362, 685, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2833, '2022-06-19', 49, 2750, 1362, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2834, '2022-06-19', 394, 2751, 1363, 689, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '18.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2835, '2022-06-19', 377, 2752, 1364, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2836, '2022-06-19', 8, 2753, 1364, 579, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2837, '2022-06-19', 394, 2754, 1365, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2838, '2022-06-19', 394, 2755, 1365, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2839, '2022-06-19', 288, 2756, 1365, 649, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2840, '2022-06-19', 290, 2757, 1365, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2841, '2022-06-19', 389, 2758, 1365, 684, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '18.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2842, '2022-06-19', 385, 2759, 1365, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2843, '2022-06-19', 291, 2760, 1365, 652, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2844, '2022-06-19', 154, 2761, 1365, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2845, '2022-06-19', 292, 2762, 1365, 651, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2846, '2022-06-19', 165, 2763, 1365, 668, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2847, '2022-06-20', 5, 2764, 1366, 678, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2848, '2022-06-20', 220, 2765, 1366, 723, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2849, '2022-06-20', 160, 2766, 1366, 699, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2850, '2022-06-20', 107, 2767, 1366, 619, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2851, '2022-06-20', 193, 2768, 1367, 612, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2852, '2022-06-20', 193, 2768, 1367, 731, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '33.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2853, '2022-06-20', 347, 2769, 1367, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2854, '2022-06-20', 338, 2770, 1368, 578, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2855, '2022-06-20', 289, 2771, 1368, 726, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2856, '2022-06-20', 338, 2772, 1369, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2857, '2022-06-20', 289, 2773, 1369, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2858, '2022-06-20', 195, 2774, 1370, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2859, '2022-06-20', 396, 2775, 1371, 705, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2860, '2022-06-20', 386, 2776, 1371, 681, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2861, '2022-06-20', 195, 2777, 1372, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2862, '2022-06-21', 153, 2778, 1373, 664, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '7.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2863, '2022-06-21', 271, 2779, 1373, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '19.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2864, '2022-06-21', 195, 2780, 1373, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2865, '2022-06-21', 163, 2781, 1374, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2866, '2022-06-21', 162, 2782, 1375, 147, '-3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2867, '2022-06-21', 162, 2782, 1375, 622, '4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 165, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2868, '2022-06-21', 163, 2783, 1376, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2869, '2022-06-21', 348, 2784, 1376, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2870, '2022-06-22', 288, 2785, 1377, 649, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2871, '2022-06-22', 93, 2786, 1377, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2872, '2022-06-23', 21, 2787, 1378, 713, '3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '12.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2873, '2022-06-23', 163, 2788, 1379, 173, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2874, '2022-06-23', 295, 2789, 1379, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '28.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2875, '2022-06-23', 220, 2790, 1380, 723, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2876, '2022-06-23', 271, 2791, 1381, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '18.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2877, '2022-06-23', 271, 2792, 1381, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '18.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2878, '2022-06-23', 271, 2793, 1382, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '16.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2879, '2022-06-23', 271, 2794, 1382, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '16.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2880, '2022-06-23', 93, 2795, 1383, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2881, '2022-06-23', 393, 2796, 1384, 700, '2.0000', '300.0000', '300.0000', '400.0000', '400.0000', '8.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2882, '2022-06-23', 5, 2797, 1384, 678, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2883, '2022-06-23', 405, 2798, 1384, 738, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 181, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2884, '2022-06-23', 126, 2799, 1384, 122, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2885, '2022-06-23', 3, 2800, 1384, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2886, '2022-06-23', 6, 2801, 1384, 88, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2887, '2022-06-24', 70, 2802, 1385, 64, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2888, '2022-06-24', 193, 2803, 1386, 731, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '30.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2889, '2022-06-24', 288, 2804, 1387, 743, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2890, '2022-06-24', 338, 2805, 1388, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2891, '2022-06-24', 95, 2806, 1388, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '11.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2892, '2022-06-24', 220, 2807, 1389, 723, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2893, '2022-06-24', 220, 2807, 1389, 746, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2894, '2022-06-24', 377, 2808, 1389, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2895, '2022-06-24', 231, 2809, 1390, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2896, '2022-06-24', 268, 2810, 1390, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2897, '2022-06-24', 271, 2811, 1390, 463, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '13.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2898, '2022-06-24', 290, 2812, 1391, 647, '3.0000', '160.0000', '160.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2899, '2022-06-24', 90, 2813, 1392, 80, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2900, '2022-06-24', 289, 2814, 1392, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2901, '2022-06-24', 163, 2815, 1392, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2902, '2022-06-24', 163, 2816, 1392, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2903, '2022-06-24', 365, 2817, 1393, 604, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2904, '2022-06-24', 288, 2818, 1393, 743, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2905, '2022-06-24', 338, 2819, 1394, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2906, '2022-06-24', 289, 2820, 1394, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2907, '2022-06-24', 317, 2821, 1395, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2908, '2022-06-24', 289, 2822, 1396, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2909, '2022-06-24', 195, 2823, 1397, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2910, '2022-06-24', 289, 2824, 1398, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2911, '2022-06-24', 195, 2825, 1399, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2912, '2022-06-24', 193, 2826, 1400, 731, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '28.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2913, '2022-06-24', 376, 2827, 1400, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2914, '2022-06-24', 148, 2828, 1401, 133, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2915, '2022-06-24', 317, 2829, 1401, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2916, '2022-06-24', 394, 2830, 1401, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2917, '2022-06-24', 165, 2831, 1402, 716, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2918, '2022-06-24', 405, 2832, 1402, 738, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 181, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2919, '2022-06-24', 67, 2833, 1403, 715, '1.0000', '1500.0000', '1500.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2920, '2022-06-24', 271, 2834, 1404, 463, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2921, '2022-06-25', 200, 2835, 1405, 695, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2922, '2022-06-25', 287, 2836, 1406, 648, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2923, '2022-06-25', 287, 2836, 1406, 727, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2924, '2022-06-25', 289, 2837, 1407, 726, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2925, '2022-06-25', 94, 2838, 1407, 566, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2926, '2022-06-25', 288, 2839, 1407, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2927, '2022-06-25', 293, 2840, 1407, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2928, '2022-06-25', 352, 2841, 1407, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '12.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2929, '2022-06-25', 403, 2842, 1408, 720, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2930, '2022-06-25', 163, 2843, 1408, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2931, '2022-06-25', 365, 2844, 1408, 604, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2932, '2022-06-25', 14, 2845, 1408, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2933, '2022-06-25', 47, 2846, 1408, 602, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2934, '2022-06-25', 100, 2847, 1408, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2935, '2022-06-25', 293, 2848, 1409, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2936, '2022-06-25', 394, 2849, 1410, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2937, '2022-06-25', 394, 2850, 1410, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2938, '2022-06-25', 375, 2851, 1411, 617, '1.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '3.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2939, '2022-06-25', 119, 2852, 1411, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '64.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2940, '2022-06-25', 195, 2853, 1412, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2941, '2022-06-25', 338, 2854, 1413, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2942, '2022-06-25', 289, 2855, 1413, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2943, '2022-06-25', 199, 2856, 1414, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '8.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2944, '2022-06-25', 317, 2857, 1415, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2945, '2022-06-25', 337, 2858, 1415, 672, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2946, '2022-06-25', 377, 2859, 1416, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2947, '2022-06-26', 293, 2860, 1417, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2948, '2022-06-26', 199, 2861, 1418, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '7.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2949, '2022-06-26', 195, 2862, 1419, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2950, '2022-06-26', 195, 2863, 1420, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2951, '2022-06-26', 338, 2864, 1420, 578, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 162, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2952, '2022-06-26', 289, 2865, 1420, 726, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2953, '2022-06-26', 338, 2866, 1421, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2954, '2022-06-26', 289, 2867, 1421, 744, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2955, '2022-06-26', 195, 2868, 1421, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2956, '2022-06-26', 297, 2869, 1422, 320, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2957, '2022-06-26', 153, 2870, 1423, 664, '4.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2958, '2022-06-26', 351, 2871, 1424, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2959, '2022-06-26', 271, 2872, 1425, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2960, '2022-06-26', 220, 2873, 1426, 746, '4.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2961, '2022-06-26', 124, 2874, 1426, 120, '2.0000', '750.0000', '750.0000', '1150.0000', '1150.0000', '7.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2962, '2022-06-26', 351, 2875, 1426, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2963, '2022-06-26', 271, 2876, 1426, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2964, '2022-06-26', 220, 2877, 1426, 746, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2965, '2022-06-26', 377, 2878, 1426, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2966, '2022-06-26', 383, 2879, 1426, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2967, '2022-06-26', 102, 2880, 1426, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2968, '2022-06-26', 319, 2881, 1426, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2969, '2022-06-26', 394, 2882, 1426, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2970, '2022-06-27', 195, 2883, 1427, 732, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2971, '2022-06-27', 115, 2884, 1428, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2972, '2022-06-27', 268, 2885, 1429, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2973, '2022-06-27', 271, 2886, 1429, 463, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2974, '2022-06-27', 289, 2887, 1430, 744, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2975, '2022-06-27', 171, 2888, 1430, 673, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2976, '2022-06-27', 338, 2889, 1430, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2977, '2022-06-27', 195, 2890, 1431, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '24.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2978, '2022-06-27', 74, 2891, 1432, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2979, '2022-06-27', 287, 2892, 1433, 727, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2980, '2022-06-27', 352, 2893, 1433, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '11.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2981, '2022-06-28', 287, 2894, 1434, 727, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2982, '2022-06-28', 12, 2895, 1435, 384, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2983, '2022-06-28', 351, 2896, 1435, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2984, '2022-06-28', 195, 2897, 1436, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2985, '2022-06-28', 106, 2898, 1437, 99, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2986, '2022-06-28', 193, 2899, 1438, 731, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '27.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2987, '2022-06-28', 394, 2900, 1439, 689, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2988, '2022-06-28', 338, 2901, 1440, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2989, '2022-06-28', 85, 2902, 1440, 532, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2990, '2022-06-28', 292, 2903, 1441, 651, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2991, '2022-06-28', 386, 2904, 1442, 681, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2992, '2022-06-28', 199, 2905, 1443, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '6.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2993, '2022-06-28', 166, 2906, 1443, 584, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2994, '2022-06-28', 291, 2907, 1443, 652, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2995, '2022-06-28', 199, 2908, 1444, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2996, '2022-06-28', 195, 2909, 1444, 750, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2997, '2022-06-28', 296, 2910, 1445, 319, '2.0000', '95.0000', '95.0000', '120.0000', '120.0000', '60.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2998, '2022-06-28', 389, 2911, 1445, 684, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (2999, '2022-06-28', 3, 2912, 1445, 515, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3000, '2022-06-28', 297, 2913, 1445, 320, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3001, '2022-06-28', 297, 2913, 1445, 690, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3002, '2022-06-28', 390, 2914, 1445, 685, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3003, '2022-06-28', 166, 2915, 1445, 584, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3004, '2022-06-28', 35, 2916, 1445, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3005, '2022-06-29', 293, 2917, 1446, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3006, '2022-06-29', 385, 2918, 1446, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '21.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3007, '2022-06-29', 396, 2919, 1446, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3008, '2022-06-29', 14, 2920, 1446, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3009, '2022-06-29', 93, 2921, 1446, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3010, '2022-06-29', 393, 2922, 1446, 700, '1.0000', '300.0000', '300.0000', '400.0000', '400.0000', '7.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3011, '2022-06-29', 290, 2923, 1447, 314, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3012, '2022-06-29', 356, 2924, 1447, 623, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 166, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3013, '2022-06-29', 163, 2925, 1447, 173, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 46, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3014, '2022-06-29', 162, 2926, 1447, 147, '-1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3015, '2022-06-29', 162, 2926, 1447, 717, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '18.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3016, '2022-06-29', 217, 2927, 1447, 763, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3017, '2022-06-29', 271, 2928, 1448, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3018, '2022-06-30', 268, 2929, 1449, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3019, '2022-06-30', 269, 2930, 1449, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3020, '2022-06-30', 271, 2931, 1449, 463, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3021, '2022-06-30', 271, 2931, 1449, 533, '5.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3022, '2022-06-30', 271, 2931, 1449, 733, '5.0000', '30.0000', '30.0000', '40.0000', '40.0000', '10.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3023, '2022-06-30', 352, 2932, 1450, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '10.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3024, '2022-06-30', 376, 2933, 1450, 636, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3025, '2022-06-30', 351, 2934, 1451, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3026, '2022-06-30', 292, 2935, 1452, 679, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3027, '2022-06-30', 391, 2936, 1452, 686, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3028, '2022-06-30', 199, 2937, 1453, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3029, '2022-06-30', 379, 2938, 1454, 659, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3030, '2022-06-30', 105, 2939, 1455, 287, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 128, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3031, '2022-06-30', 80, 2940, 1456, 687, '2.0000', '70.0000', '70.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3032, '2022-06-30', 106, 2941, 1457, 99, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3033, '2022-06-30', 80, 2942, 1458, 687, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3034, '2022-06-30', 297, 2943, 1458, 690, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3035, '2022-06-30', 220, 2944, 1458, 746, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3036, '2022-06-30', 338, 2945, 1459, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3037, '2022-06-30', 289, 2946, 1459, 744, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3038, '2022-07-01', 352, 2947, 1460, 637, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3039, '2022-07-01', 288, 2948, 1460, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3040, '2022-07-01', 293, 2949, 1460, 646, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3041, '2022-07-01', 195, 2950, 1460, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3042, '2022-07-01', 118, 2951, 1461, 111, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '5.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3043, '2022-07-01', 389, 2952, 1462, 684, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3044, '2022-07-01', 14, 2953, 1463, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3045, '2022-07-01', 338, 2954, 1463, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3046, '2022-07-01', 289, 2955, 1463, 744, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3047, '2022-07-01', 284, 2956, 1464, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3048, '2022-07-01', 283, 2957, 1464, 303, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3049, '2022-07-01', 282, 2958, 1464, 660, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3050, '2022-07-01', 383, 2959, 1465, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3051, '2022-07-01', 377, 2960, 1465, 655, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3052, '2022-07-01', 284, 2961, 1466, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3053, '2022-07-01', 193, 2962, 1467, 731, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '24.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3054, '2022-07-01', 377, 2963, 1467, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '11.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3055, '2022-07-01', 6, 2964, 1468, 88, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3056, '2022-07-01', 93, 2965, 1469, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3057, '2022-07-01', 271, 2966, 1469, 733, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '9.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3058, '2022-07-01', 396, 2967, 1470, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3059, '2022-07-01', 21, 2968, 1471, 17, '-3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3060, '2022-07-01', 21, 2968, 1471, 713, '4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3061, '2022-07-01', 14, 2969, 1471, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3062, '2022-07-01', 163, 2970, 1472, 523, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3063, '2022-07-01', 365, 2971, 1472, 604, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3064, '2022-07-01', 162, 2972, 1472, 717, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '17.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3065, '2022-07-01', 271, 2973, 1473, 733, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3066, '2022-07-01', 200, 2974, 1473, 695, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3067, '2022-07-01', 269, 2975, 1474, 465, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3068, '2022-07-01', 268, 2976, 1474, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3069, '2022-07-01', 271, 2977, 1474, 733, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '6.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3070, '2022-07-02', 8, 2978, 1475, 654, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3071, '2022-07-02', 284, 2979, 1475, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3072, '2022-07-02', 100, 2980, 1475, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3073, '2022-07-02', 195, 2981, 1476, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3074, '2022-07-02', 17, 2982, 1477, 597, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3075, '2022-07-02', 287, 2983, 1477, 727, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3076, '2022-07-02', 262, 2984, 1478, 263, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3077, '2022-07-02', 386, 2985, 1478, 681, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3078, '2022-07-02', 195, 2986, 1479, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3079, '2022-07-02', 271, 2987, 1480, 733, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3080, '2022-07-02', 108, 2988, 1480, 101, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3081, '2022-07-02', 109, 2989, 1480, 641, '1.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '4.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3082, '2022-07-02', 390, 2990, 1480, 685, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3083, '2022-07-02', 362, 2991, 1481, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3084, '2022-07-02', 362, 2992, 1481, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '11.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3085, '2022-07-02', 385, 2993, 1481, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3086, '2022-07-02', 385, 2994, 1481, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3087, '2022-07-02', 199, 2995, 1481, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3088, '2022-07-02', 352, 2996, 1481, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3089, '2022-07-02', 352, 2997, 1481, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3090, '2022-07-02', 220, 2998, 1482, 746, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3091, '2022-07-02', 284, 2999, 1482, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3092, '2022-07-02', 93, 3000, 1483, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3093, '2022-07-02', 355, 3001, 1483, 587, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3094, '2022-07-02', 317, 3002, 1484, 393, '-1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3095, '2022-07-02', 317, 3002, 1484, 674, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3096, '2022-07-02', 351, 3003, 1485, 653, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3097, '2022-07-02', 409, 3004, 1486, 760, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3098, '2022-07-02', 306, 3005, 1486, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3099, '2022-07-03', 405, 3006, 1487, 751, '2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3100, '2022-07-03', 292, 3007, 1488, 679, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3101, '2022-07-03', 290, 3008, 1488, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3102, '2022-07-03', 289, 3009, 1488, 744, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3103, '2022-07-03', 288, 3010, 1489, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3104, '2022-07-03', 288, 3011, 1489, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3105, '2022-07-03', 338, 3012, 1490, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3106, '2022-07-03', 159, 3013, 1490, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3107, '2022-07-03', 192, 3014, 1491, 285, '5.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 126, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3108, '2022-07-03', 338, 3015, 1492, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3109, '2022-07-03', 287, 3016, 1492, 727, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3110, '2022-07-03', 271, 3017, 1493, 733, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3111, '2022-07-04', 195, 3018, 1494, 750, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3112, '2022-07-04', 287, 3019, 1495, 727, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3113, '2022-07-04', 47, 3020, 1496, 602, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3114, '2022-07-04', 93, 3021, 1497, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3115, '2022-07-04', 231, 3022, 1498, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3116, '2022-07-04', 292, 3023, 1499, 679, '6.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3117, '2022-07-04', 231, 3024, 1500, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3118, '2022-07-04', 220, 3025, 1500, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3119, '2022-07-05', 21, 3026, 1501, 713, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3120, '2022-07-05', 313, 3027, 1501, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3121, '2022-07-05', 276, 3028, 1502, 330, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3122, '2022-07-05', 293, 3029, 1502, 646, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3123, '2022-07-05', 293, 3029, 1502, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3124, '2022-07-05', 390, 3030, 1503, 685, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3125, '2022-07-05', 391, 3031, 1503, 686, '2.0000', '450.0000', '450.0000', '550.0000', '550.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3126, '2022-07-05', 288, 3032, 1504, 743, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3127, '2022-07-05', 293, 3033, 1505, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3128, '2022-07-05', 171, 3034, 1506, 220, '-3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 79, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3129, '2022-07-05', 171, 3034, 1506, 673, '4.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3130, '2022-07-05', 404, 3035, 1506, 721, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3131, '2022-07-05', 290, 3036, 1506, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3132, '2022-07-05', 291, 3037, 1506, 652, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3133, '2022-07-05', 269, 3038, 1507, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3134, '2022-07-05', 271, 3039, 1507, 733, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3135, '2022-07-05', 49, 3040, 1507, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3136, '2022-07-05', 291, 3041, 1507, 652, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3137, '2022-07-06', 386, 3042, 1508, 681, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3138, '2022-07-06', 271, 3043, 1509, 739, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '26.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3139, '2022-07-06', 271, 3044, 1510, 739, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '24.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3140, '2022-07-06', 338, 3045, 1511, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3141, '2022-07-06', 289, 3046, 1511, 744, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3142, '2022-07-06', 352, 3047, 1511, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3143, '2022-07-06', 410, 3048, 1512, 776, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3144, '2022-07-06', 362, 3049, 1513, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '9.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3145, '2022-07-06', 289, 3050, 1514, 744, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3146, '2022-07-06', 289, 3050, 1514, 764, '3.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3147, '2022-07-06', 289, 3050, 1514, 771, '6.0000', '140.0000', '140.0000', '200.0000', '200.0000', '26.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3148, '2022-07-06', 319, 3051, 1514, 398, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3149, '2022-07-06', 171, 3052, 1514, 706, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3150, '2022-07-06', 337, 3053, 1514, 672, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3151, '2022-07-06', 338, 3054, 1514, 698, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3152, '2022-07-06', 15, 3055, 1514, 20, '-1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3153, '2022-07-06', 15, 3055, 1514, 596, '3.0000', '500.0000', '500.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3154, '2022-07-06', 17, 3056, 1514, 22, '-1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3155, '2022-07-06', 17, 3056, 1514, 597, '2.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3156, '2022-07-07', 220, 3057, 1515, 753, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3157, '2022-07-07', 338, 3058, 1516, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3158, '2022-07-07', 289, 3059, 1516, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '25.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3159, '2022-07-07', 195, 3060, 1516, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3160, '2022-07-07', 195, 3061, 1517, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3161, '2022-07-07', 160, 3062, 1517, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3162, '2022-07-07', 49, 3063, 1517, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3163, '2022-07-07', 386, 3064, 1517, 681, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3164, '2022-07-07', 231, 3065, 1517, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3165, '2022-07-07', 288, 3066, 1517, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3166, '2022-07-07', 220, 3067, 1517, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3167, '2022-07-07', 186, 3068, 1517, 401, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3168, '2022-07-07', 287, 3069, 1517, 741, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3169, '2022-07-07', 287, 3070, 1517, 741, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3170, '2022-07-07', 271, 3071, 1518, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '23.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3171, '2022-07-07', 271, 3072, 1519, 739, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '21.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3172, '2022-07-07', 338, 3073, 1520, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3173, '2022-07-07', 289, 3074, 1520, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3174, '2022-07-07', 184, 3075, 1521, 406, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3175, '2022-07-07', 385, 3076, 1522, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3176, '2022-07-07', 362, 3077, 1522, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '8.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3177, '2022-07-07', 352, 3078, 1522, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3178, '2022-07-07', 383, 3079, 1523, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3179, '2022-07-07', 271, 3080, 1523, 739, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '18.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3180, '2022-07-08', 213, 3081, 1524, 174, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '11.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3181, '2022-07-08', 394, 3082, 1524, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3182, '2022-07-08', 220, 3083, 1524, 753, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3183, '2022-07-08', 193, 3084, 1525, 731, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '23.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3184, '2022-07-08', 338, 3085, 1526, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3185, '2022-07-08', 289, 3086, 1526, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '23.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3186, '2022-07-08', 195, 3087, 1527, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3187, '2022-07-08', 377, 3088, 1528, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '10.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3188, '2022-07-08', 383, 3089, 1528, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3189, '2022-07-08', 293, 3090, 1529, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3190, '2022-07-08', 348, 3091, 1530, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3191, '2022-07-08', 289, 3092, 1531, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3192, '2022-07-08', 287, 3093, 1531, 741, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3193, '2022-07-08', 385, 3094, 1531, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3194, '2022-07-08', 394, 3095, 1531, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3195, '2022-07-08', 289, 3096, 1532, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '21.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3196, '2022-07-08', 220, 3097, 1533, 753, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '12.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3197, '2022-07-08', 295, 3098, 1534, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '27.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3198, '2022-07-08', 74, 3099, 1534, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3199, '2022-07-08', 348, 3100, 1535, 498, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3200, '2022-07-08', 338, 3101, 1535, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3201, '2022-07-08', 287, 3102, 1535, 741, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3202, '2022-07-08', 93, 3103, 1536, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3203, '2022-07-08', 252, 3104, 1536, 237, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3204, '2022-07-08', 220, 3105, 1537, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3205, '2022-07-08', 271, 3106, 1537, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '17.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3206, '2022-07-08', 337, 3107, 1538, 672, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3207, '2022-07-08', 384, 3108, 1539, 667, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3208, '2022-07-08', 338, 3109, 1539, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3209, '2022-07-08', 287, 3110, 1539, 741, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3210, '2022-07-08', 3, 3111, 1539, 515, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3211, '2022-07-09', 21, 3112, 1540, 713, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3212, '2022-07-09', 338, 3113, 1541, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3213, '2022-07-09', 289, 3114, 1541, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3214, '2022-07-09', 195, 3115, 1541, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3215, '2022-07-09', 271, 3116, 1542, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '16.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3216, '2022-07-09', 49, 3117, 1543, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3217, '2022-07-09', 291, 3118, 1543, 652, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3218, '2022-07-09', 271, 3119, 1544, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '15.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3219, '2022-07-09', 119, 3120, 1545, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '63.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3220, '2022-07-09', 317, 3121, 1546, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3221, '2022-07-09', 6, 3122, 1546, 88, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3222, '2022-07-09', 271, 3123, 1547, 739, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '12.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3223, '2022-07-09', 284, 3124, 1548, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3224, '2022-07-09', 93, 3125, 1549, 642, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3225, '2022-07-09', 394, 3126, 1549, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3226, '2022-07-09', 271, 3127, 1549, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '11.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3227, '2022-07-09', 268, 3128, 1550, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3228, '2022-07-09', 220, 3129, 1551, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '10.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3229, '2022-07-09', 282, 3130, 1552, 660, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3230, '2022-07-09', 220, 3131, 1553, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3231, '2022-07-09', 284, 3132, 1553, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3232, '2022-07-09', 377, 3133, 1553, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '9.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3233, '2022-07-09', 220, 3134, 1554, 753, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3234, '2022-07-09', 100, 3135, 1554, 94, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3235, '2022-07-09', 162, 3136, 1554, 717, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '16.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3236, '2022-07-09', 164, 3137, 1555, 669, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3237, '2022-07-09', 315, 3138, 1555, 703, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3238, '2022-07-09', 194, 3139, 1555, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3239, '2022-07-09', 3, 3140, 1555, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '19.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3240, '2022-07-09', 288, 3141, 1555, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3241, '2022-07-09', 289, 3142, 1556, 771, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3242, '2022-07-09', 103, 3143, 1557, 113, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '11.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3243, '2022-07-09', 405, 3144, 1557, 751, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3244, '2022-07-14', 296, 3145, 1558, 319, '2.0000', '95.0000', '95.0000', '120.0000', '120.0000', '58.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3245, '2022-07-14', 352, 3146, 1558, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3246, '2022-07-14', 119, 3147, 1558, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '62.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3247, '2022-07-14', 21, 3148, 1559, 713, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3248, '2022-07-14', 117, 3149, 1560, 110, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3249, '2022-07-14', 119, 3150, 1560, 341, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '60.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3250, '2022-07-14', 232, 3151, 1561, 526, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3251, '2022-07-14', 271, 3152, 1562, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '10.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3252, '2022-07-14', 290, 3153, 1563, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3253, '2022-07-14', 293, 3154, 1563, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3254, '2022-07-14', 14, 3155, 1564, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3255, '2022-07-14', 220, 3156, 1564, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3256, '2022-07-14', 288, 3157, 1565, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3257, '2022-07-15', 338, 3158, 1566, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3258, '2022-07-15', 289, 3159, 1566, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3259, '2022-07-15', 284, 3160, 1567, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3260, '2022-07-15', 214, 3161, 1568, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3261, '2022-07-15', 93, 3162, 1569, 725, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3262, '2022-07-15', 153, 3163, 1569, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3263, '2022-07-15', 347, 3164, 1570, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3264, '2022-07-15', 157, 3165, 1571, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '30.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3265, '2022-07-15', 296, 3166, 1571, 319, '1.0000', '95.0000', '95.0000', '120.0000', '120.0000', '57.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3266, '2022-07-15', 220, 3167, 1571, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3267, '2022-07-15', 195, 3168, 1572, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3268, '2022-07-15', 214, 3169, 1573, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3269, '2022-07-15', 394, 3170, 1573, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3270, '2022-07-15', 396, 3171, 1574, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3271, '2022-07-15', 102, 3172, 1574, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3272, '2022-07-15', 160, 3173, 1574, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3273, '2022-07-15', 166, 3174, 1574, 584, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3274, '2022-07-15', 390, 3175, 1574, 685, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3275, '2022-07-15', 159, 3176, 1575, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3276, '2022-07-15', 396, 3177, 1576, 705, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3277, '2022-07-15', 377, 3178, 1577, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '8.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3278, '2022-07-15', 284, 3179, 1577, 656, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3279, '2022-07-15', 405, 3180, 1578, 751, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3280, '2022-07-15', 338, 3181, 1579, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3281, '2022-07-15', 212, 3182, 1579, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3282, '2022-07-15', 193, 3183, 1580, 731, '6.0000', '200.0000', '200.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3283, '2022-07-15', 347, 3184, 1580, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3284, '2022-07-15', 195, 3185, 1581, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3285, '2022-07-15', 338, 3186, 1581, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3286, '2022-07-15', 289, 3187, 1581, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3287, '2022-07-15', 195, 3188, 1582, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3288, '2022-07-15', 91, 3189, 1583, 81, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3289, '2022-07-15', 15, 3190, 1583, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3290, '2022-07-15', 17, 3191, 1583, 597, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3291, '2022-07-15', 338, 3192, 1583, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3292, '2022-07-15', 317, 3193, 1583, 674, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3293, '2022-07-15', 337, 3194, 1583, 672, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3294, '2022-07-15', 375, 3195, 1584, 617, '1.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3295, '2022-07-15', 271, 3196, 1585, 739, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3296, '2022-07-15', 377, 3197, 1586, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '7.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3297, '2022-07-15', 232, 3198, 1587, 526, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3298, '2022-07-15', 293, 3199, 1588, 694, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3299, '2022-07-15', 394, 3200, 1588, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3300, '2022-07-15', 338, 3201, 1589, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3301, '2022-07-15', 9, 3202, 1589, 8, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3302, '2022-07-15', 288, 3203, 1589, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3303, '2022-07-15', 165, 3204, 1590, 716, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3304, '2022-07-15', 377, 3205, 1591, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '6.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3305, '2022-07-15', 293, 3206, 1591, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3306, '2022-07-16', 271, 3207, 1592, 739, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3307, '2022-07-16', 220, 3208, 1593, 753, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3308, '2022-07-16', 383, 3209, 1593, 657, '2.0000', '45.0000', '45.0000', '130.0000', '130.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3309, '2022-07-16', 90, 3210, 1594, 345, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3310, '2022-07-16', 293, 3211, 1595, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3311, '2022-07-16', 291, 3212, 1595, 652, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3312, '2022-07-16', 385, 3213, 1595, 680, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3313, '2022-07-16', 342, 3214, 1596, 633, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3314, '2022-07-16', 377, 3215, 1597, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '5.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3315, '2022-07-16', 271, 3216, 1597, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3316, '2022-07-16', 290, 3217, 1598, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3317, '2022-07-16', 288, 3218, 1598, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3318, '2022-07-16', 385, 3219, 1598, 680, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3319, '2022-07-16', 293, 3220, 1598, 694, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3320, '2022-07-16', 3, 3221, 1598, 677, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3376, '2022-07-18', 377, 3274, 1617, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3375, '2022-07-18', 282, 3273, 1617, 660, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3374, '2022-07-18', 220, 3272, 1616, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3373, '2022-07-18', 386, 3271, 1616, 779, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3377, '2022-07-18', 378, 3275, 1617, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3383, '2022-07-19', 220, 3281, 1623, 791, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3382, '2022-07-19', 157, 3280, 1622, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '28.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3381, '2022-07-18', 394, 3279, 1621, 689, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3378, '2022-07-18', 195, 3276, 1618, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3384, '2022-07-19', 160, 3282, 1623, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3331, '2022-07-16', 289, 3232, 1601, 771, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3332, '2022-07-16', 271, 3233, 1602, 739, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3333, '2022-07-17', 297, 3234, 1603, 690, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3334, '2022-07-17', 220, 3235, 1603, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3335, '2022-07-17', 145, 3236, 1603, 272, '-1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3336, '2022-07-17', 145, 3236, 1603, 436, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3337, '2022-07-17', 220, 3237, 1604, 753, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3338, '2022-07-17', 396, 3238, 1605, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3389, '2022-07-19', 297, 3286, 1623, 690, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3388, '2022-07-19', 317, 3285, 1623, 674, '3.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3387, '2022-07-19', 317, 3285, 1623, 393, '-2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3386, '2022-07-19', 147, 3284, 1623, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '18.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3385, '2022-07-19', 232, 3283, 1623, 526, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3390, '2022-07-19', 303, 3288, 1623, 362, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3345, '2022-07-17', 268, 3245, 1607, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3346, '2022-07-17', 271, 3246, 1607, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '104.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3347, '2022-07-17', 271, 3247, 1607, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '104.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3348, '2022-07-17', 383, 3248, 1607, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3349, '2022-07-17', 8, 3249, 1607, 654, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3350, '2022-07-17', 126, 3250, 1607, 122, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3351, '2022-07-17', 126, 3250, 1607, 768, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3418, '2022-07-21', 284, 3312, 1637, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '8.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3417, '2022-07-21', 199, 3311, 1636, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3416, '2022-07-20', 271, 3310, 1635, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '96.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3415, '2022-07-19', 271, 3309, 1634, 773, '5.0000', '30.0000', '30.0000', '40.0000', '40.0000', '97.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3392, '2022-07-19', 153, 3289, 1623, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3413, '2022-07-19', 271, 3309, 1634, 270, '-6.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3419, '2022-07-21', 154, 3313, 1638, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3359, '2022-07-17', 326, 3257, 1609, 410, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3360, '2022-07-17', 377, 3258, 1609, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3361, '2022-07-17', 377, 3259, 1609, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3362, '2022-07-17', 93, 3260, 1610, 725, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3363, '2022-07-17', 21, 3261, 1610, 713, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3364, '2022-07-17', 8, 3262, 1610, 654, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3365, '2022-07-17', 231, 3263, 1611, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3366, '2022-07-17', 195, 3264, 1612, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3367, '2022-07-17', 271, 3265, 1613, 773, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '100.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3368, '2022-07-17', 199, 3266, 1614, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3369, '2022-07-17', 362, 3267, 1614, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '7.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3370, '2022-07-17', 385, 3268, 1614, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3371, '2022-07-17', 352, 3269, 1614, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3372, '2022-07-17', 102, 3270, 1615, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3414, '2022-07-19', 271, 3309, 1634, 739, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 182, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3399, '2022-07-19', 297, 3297, 1626, 690, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3400, '2022-07-19', 220, 3298, 1627, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3401, '2022-07-19', 293, 3299, 1628, 317, '-1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3402, '2022-07-19', 293, 3299, 1628, 694, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3403, '2022-07-19', 290, 3300, 1628, 314, '-1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3404, '2022-07-19', 290, 3300, 1628, 647, '2.0000', '160.0000', '160.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3405, '2022-07-19', 281, 3301, 1628, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3406, '2022-07-19', 214, 3302, 1628, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3407, '2022-07-19', 284, 3303, 1629, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '9.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3408, '2022-07-19', 220, 3304, 1629, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '15.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3420, '2022-07-21', 195, 3314, 1639, 750, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3421, '2022-07-21', 352, 3315, 1639, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3422, '2022-07-21', 220, 3316, 1640, 791, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '15.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3423, '2022-07-21', 268, 3317, 1640, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3424, '2022-07-21', 410, 3318, 1640, 801, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3425, '2022-07-21', 230, 3319, 1641, 198, '-1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 65, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3426, '2022-07-21', 230, 3319, 1641, 558, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 158, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3427, '2022-07-21', 230, 3319, 1641, 728, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3428, '2022-07-21', 377, 3320, 1641, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3429, '2022-07-21', 95, 3321, 1642, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '10.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3430, '2022-07-21', 153, 3322, 1643, 664, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 172, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3431, '2022-07-21', 153, 3322, 1643, 691, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3432, '2022-07-22', 165, 3323, 1644, 150, '-1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3433, '2022-07-22', 165, 3323, 1644, 716, '2.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3434, '2022-07-22', 405, 3324, 1644, 772, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3435, '2022-07-22', 396, 3325, 1644, 705, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3436, '2022-07-22', 74, 3326, 1644, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3437, '2022-07-22', 220, 3327, 1644, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3438, '2022-07-22', 195, 3328, 1645, 750, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3439, '2022-07-22', 386, 3329, 1646, 681, '-5.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3440, '2022-07-22', 386, 3329, 1646, 779, '6.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3441, '2022-07-22', 287, 3330, 1647, 741, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3442, '2022-07-22', 314, 3331, 1648, 389, '-1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3443, '2022-07-22', 314, 3331, 1648, 477, '2.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3444, '2022-07-22', 160, 3332, 1648, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3445, '2022-07-22', 74, 3333, 1649, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3446, '2022-07-22', 160, 3334, 1649, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3447, '2022-07-22', 232, 3335, 1649, 526, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3448, '2022-07-22', 283, 3336, 1650, 303, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3449, '2022-07-22', 220, 3337, 1651, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3450, '2022-07-22', 93, 3338, 1651, 734, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3451, '2022-07-22', 396, 3339, 1651, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3452, '2022-07-22', 17, 3340, 1652, 597, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3453, '2022-07-22', 289, 3341, 1652, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3454, '2022-07-22', 165, 3342, 1652, 716, '1.0000', '1350.0000', '1350.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3455, '2022-07-22', 405, 3343, 1652, 772, '2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3456, '2022-07-22', 50, 3344, 1652, 50, '1.0000', '1750.0000', '1750.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3457, '2022-07-22', 5, 3345, 1652, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3458, '2022-07-22', 53, 3346, 1652, 65, '1.0000', '1700.0000', '1700.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3459, '2022-07-22', 239, 3347, 1653, 208, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3460, '2022-07-22', 338, 3348, 1654, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3461, '2022-07-22', 289, 3349, 1654, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3462, '2022-07-22', 95, 3350, 1655, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '9.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3463, '2022-07-22', 95, 3351, 1656, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '8.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3464, '2022-07-22', 405, 3352, 1657, 772, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3465, '2022-07-22', 317, 3353, 1658, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3466, '2022-07-22', 289, 3354, 1658, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3467, '2022-07-22', 271, 3355, 1659, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '95.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3468, '2022-07-22', 220, 3356, 1659, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '12.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3469, '2022-07-22', 334, 3357, 1660, 420, '-1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3470, '2022-07-22', 334, 3357, 1660, 486, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3471, '2022-07-22', 288, 3358, 1660, 312, '-1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3472, '2022-07-22', 288, 3358, 1660, 743, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3473, '2022-07-22', 35, 3359, 1661, 34, '-1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3474, '2022-07-22', 35, 3359, 1661, 396, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3475, '2022-07-22', 154, 3360, 1661, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3476, '2022-07-22', 411, 3361, 1662, 792, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3477, '2022-07-22', 383, 3362, 1662, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3478, '2022-07-22', 380, 3363, 1662, 658, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3479, '2022-07-22', 80, 3364, 1663, 687, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3480, '2022-07-22', 290, 3365, 1664, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3481, '2022-07-22', 80, 3366, 1665, 687, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3482, '2022-07-22', 293, 3367, 1665, 742, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3483, '2022-07-22', 290, 3368, 1665, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3484, '2022-07-23', 293, 3369, 1666, 742, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3485, '2022-07-23', 287, 3370, 1666, 741, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3486, '2022-07-23', 383, 3371, 1666, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3487, '2022-07-23', 8, 3372, 1666, 180, '-2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 53, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3488, '2022-07-23', 8, 3372, 1666, 654, '3.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3489, '2022-07-23', 352, 3373, 1666, 637, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 169, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3490, '2022-07-23', 200, 3374, 1666, 695, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3491, '2022-07-23', 385, 3375, 1666, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3492, '2022-07-23', 287, 3376, 1667, 806, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '19.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3493, '2022-07-23', 271, 3377, 1668, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '94.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3494, '2022-07-23', 289, 3378, 1669, 771, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3495, '2022-07-23', 287, 3379, 1670, 806, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3496, '2022-07-23', 6, 3380, 1671, 88, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3497, '2022-07-23', 271, 3381, 1672, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '93.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3498, '2022-07-23', 220, 3382, 1672, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3499, '2022-07-23', 195, 3383, 1673, 750, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3500, '2022-07-23', 412, 3384, 1673, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '19.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3501, '2022-07-23', 338, 3385, 1674, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3502, '2022-07-23', 113, 3386, 1675, 296, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3503, '2022-07-23', 195, 3387, 1676, 750, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3504, '2022-07-23', 95, 3388, 1676, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3505, '2022-07-23', 95, 3389, 1677, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3506, '2022-07-23', 412, 3390, 1677, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '18.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3507, '2022-07-23', 15, 3391, 1677, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3508, '2022-07-23', 88, 3392, 1677, 79, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3509, '2022-07-23', 157, 3393, 1677, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '26.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3510, '2022-07-23', 289, 3394, 1677, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3511, '2022-07-23', 154, 3395, 1678, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3512, '2022-07-23', 351, 3396, 1679, 697, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3513, '2022-07-23', 338, 3397, 1680, 698, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3514, '2022-07-23', 49, 3398, 1681, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3515, '2022-07-23', 386, 3399, 1681, 779, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3516, '2022-07-23', 239, 3400, 1681, 208, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3517, '2022-07-23', 288, 3401, 1681, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3518, '2022-07-23', 337, 3402, 1681, 672, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3519, '2022-07-23', 290, 3403, 1681, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3520, '2022-07-23', 319, 3404, 1681, 398, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3521, '2022-07-23', 3, 3405, 1681, 3, '-2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3522, '2022-07-23', 3, 3405, 1681, 677, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '16.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3523, '2022-07-23', 171, 3406, 1681, 706, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3524, '2022-07-23', 290, 3407, 1681, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3525, '2022-07-23', 366, 3408, 1681, 605, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3526, '2022-07-23', 288, 3409, 1681, 743, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3527, '2022-07-23', 315, 3410, 1681, 390, '-1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3528, '2022-07-23', 315, 3410, 1681, 703, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3529, '2022-07-23', 386, 3411, 1681, 779, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3530, '2022-07-23', 404, 3412, 1681, 721, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3531, '2022-07-23', 386, 3413, 1681, 779, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3532, '2022-07-23', 15, 3414, 1681, 596, '2.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3533, '2022-07-23', 289, 3415, 1681, 771, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3534, '2022-07-23', 338, 3416, 1681, 769, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3535, '2022-07-23', 289, 3417, 1681, 771, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3536, '2022-07-23', 315, 3418, 1681, 390, '-1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3537, '2022-07-23', 315, 3418, 1681, 703, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3538, '2022-07-23', 386, 3419, 1681, 779, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3539, '2022-07-23', 20, 3420, 1681, 359, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3540, '2022-07-23', 296, 3421, 1681, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '56.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3541, '2022-07-23', 12, 3422, 1681, 384, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3542, '2022-07-23', 186, 3423, 1681, 401, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3543, '2022-07-23', 385, 3424, 1681, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3544, '2022-07-23', 200, 3425, 1681, 695, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3545, '2022-07-23', 195, 3426, 1682, 750, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3546, '2022-07-23', 352, 3427, 1683, 809, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3547, '2022-07-23', 411, 3428, 1684, 792, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3548, '2022-07-23', 271, 3429, 1684, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '92.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3549, '2022-07-23', 411, 3430, 1685, 792, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3550, '2022-07-23', 271, 3431, 1685, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '90.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3551, '2022-07-23', 44, 3432, 1685, 44, '1.0000', '450.0000', '450.0000', '900.0000', '900.0000', '3.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3552, '2022-07-23', 306, 3433, 1686, 367, '2.0000', '300.0000', '300.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3553, '2022-07-23', 396, 3434, 1686, 705, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3554, '2022-07-23', 99, 3435, 1686, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3555, '2022-07-24', 95, 3436, 1687, 663, '2.0000', '450.0000', '450.0000', '650.0000', '650.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3556, '2022-07-24', 193, 3437, 1688, 156, '-1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 30, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3557, '2022-07-24', 193, 3437, 1688, 731, '7.0000', '200.0000', '200.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3558, '2022-07-24', 347, 3438, 1688, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3559, '2022-07-24', 95, 3439, 1689, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3560, '2022-07-24', 338, 3440, 1690, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3561, '2022-07-24', 289, 3441, 1690, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3562, '2022-07-24', 338, 3442, 1691, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3563, '2022-07-24', 289, 3443, 1691, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3564, '2022-07-24', 352, 3444, 1692, 809, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3565, '2022-07-24', 200, 3445, 1693, 762, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3566, '2022-07-24', 100, 3446, 1693, 799, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3567, '2022-07-24', 7, 3447, 1694, 536, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3568, '2022-07-24', 323, 3448, 1694, 405, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3569, '2022-07-24', 74, 3449, 1694, 675, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3570, '2022-07-24', 240, 3450, 1694, 210, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3571, '2022-07-24', 386, 3451, 1694, 782, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3574, '2022-07-25', 393, 3454, 1696, 700, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3575, '2022-07-25', 156, 3455, 1696, 736, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3576, '2022-07-25', 293, 3456, 1697, 742, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3577, '2022-07-25', 223, 3457, 1698, 185, '1.0000', '1250.0000', '1250.0000', '1750.0000', '1750.0000', '1.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3578, '2022-07-25', 293, 3458, 1699, 742, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3579, '2022-07-25', 376, 3459, 1700, 808, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3580, '2022-07-26', 351, 3460, 1701, 520, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3581, '2022-07-26', 391, 3461, 1702, 686, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3582, '2022-07-26', 12, 3462, 1703, 482, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3583, '2022-07-26', 289, 3463, 1704, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3584, '2022-07-26', 220, 3464, 1705, 196, '-2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3585, '2022-07-26', 220, 3464, 1705, 791, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3586, '2022-07-26', 194, 3465, 1706, 213, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 75, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3587, '2022-07-26', 377, 3466, 1706, 765, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3588, '2022-07-26', 220, 3467, 1706, 791, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3589, '2022-07-26', 282, 3468, 1706, 660, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3590, '2022-07-26', 288, 3469, 1706, 783, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3591, '2022-07-26', 405, 3470, 1707, 811, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3592, '2022-07-26', 212, 3471, 1708, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3593, '2022-07-26', 95, 3472, 1708, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3594, '2022-07-31', 314, 3473, 1709, 477, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3595, '2022-07-31', 195, 3474, 1709, 750, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3596, '2022-07-31', 281, 3475, 1710, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3597, '2022-07-31', 387, 3476, 1711, 682, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3598, '2022-07-31', 220, 3477, 1711, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3599, '2022-07-31', 380, 3478, 1711, 658, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3600, '2022-07-31', 383, 3479, 1711, 657, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3601, '2022-07-31', 153, 3480, 1711, 691, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3602, '2022-07-31', 269, 3481, 1711, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3603, '2022-07-31', 317, 3482, 1711, 393, '-1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3604, '2022-07-31', 317, 3482, 1711, 674, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3605, '2022-07-31', 159, 3483, 1711, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3606, '2022-07-31', 95, 3484, 1711, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3607, '2022-07-31', 153, 3485, 1711, 691, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3608, '2022-07-31', 231, 3486, 1711, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3609, '2022-07-31', 271, 3487, 1711, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '89.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3610, '2022-07-31', 220, 3488, 1711, 791, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3611, '2022-07-31', 162, 3489, 1711, 147, '-4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3612, '2022-07-31', 162, 3489, 1711, 717, '5.0000', '400.0000', '400.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3613, '2022-07-31', 22, 3490, 1711, 19, '-5.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3614, '2022-07-31', 22, 3490, 1711, 666, '6.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3615, '2022-07-31', 164, 3491, 1711, 669, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3616, '2022-07-31', 403, 3492, 1711, 720, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3617, '2022-07-31', 162, 3493, 1711, 147, '-4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3618, '2022-07-31', 162, 3493, 1711, 717, '5.0000', '400.0000', '400.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3619, '2022-07-31', 195, 3494, 1711, 750, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3620, '2022-07-31', 352, 3495, 1711, 809, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3621, '2022-07-31', 209, 3496, 1711, 167, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3622, '2022-07-31', 147, 3497, 1711, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '16.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3623, '2022-07-31', 317, 3498, 1712, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3624, '2022-07-31', 93, 3499, 1712, 734, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 179, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3625, '2022-07-31', 231, 3500, 1713, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3626, '2022-07-31', 385, 3501, 1713, 680, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3747, '2022-07-31', 407, 3612, 1752, 758, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3746, '2022-07-31', 108, 3611, 1752, 101, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3748, '2022-07-31', 145, 3613, 1752, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3630, '2022-07-31', 338, 3505, 1715, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3631, '2022-07-31', 289, 3506, 1715, 771, '1.0000', '140.0000', '140.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3632, '2022-07-31', 195, 3507, 1715, 810, '2.0000', '350.0000', '350.0000', '600.0000', '600.0000', '18.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3633, '2022-07-31', 220, 3508, 1715, 791, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3634, '2022-07-31', 383, 3509, 1715, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '9.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3635, '2022-07-31', 287, 3510, 1716, 806, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3636, '2022-07-31', 269, 3511, 1716, 268, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3637, '2022-07-31', 271, 3512, 1716, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '88.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3638, '2022-07-31', 220, 3513, 1716, 791, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3639, '2022-07-31', 411, 3514, 1716, 812, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3640, '2022-07-31', 220, 3515, 1716, 791, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3749, '2022-08-01', 220, 3614, 1753, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3750, '2022-08-01', 386, 3615, 1754, 681, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3643, '2022-07-31', 32, 3518, 1718, 511, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3644, '2022-07-31', 291, 3519, 1718, 315, '-10.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3645, '2022-07-31', 291, 3519, 1718, 652, '4.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3646, '2022-07-31', 291, 3519, 1718, 756, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3647, '2022-07-31', 291, 3519, 1718, 778, '6.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3648, '2022-07-31', 359, 3520, 1718, 591, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3649, '2022-07-31', 124, 3521, 1719, 120, '1.0000', '750.0000', '750.0000', '1150.0000', '1150.0000', '6.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3650, '2022-07-31', 388, 3522, 1720, 683, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3651, '2022-07-31', 296, 3523, 1721, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '55.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3652, '2022-07-31', 93, 3524, 1722, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3653, '2022-07-31', 317, 3525, 1722, 393, '-3.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3654, '2022-07-31', 317, 3525, 1722, 674, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3655, '2022-07-31', 317, 3525, 1722, 814, '3.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3656, '2022-07-31', 412, 3526, 1722, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3657, '2022-07-31', 220, 3527, 1723, 836, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3658, '2022-07-31', 306, 3528, 1724, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3659, '2022-07-31', 154, 3529, 1724, 514, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3660, '2022-07-31', 411, 3530, 1725, 812, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3661, '2022-07-31', 306, 3531, 1725, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3662, '2022-07-31', 154, 3532, 1725, 565, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3663, '2022-07-31', 305, 3533, 1725, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3664, '2022-07-31', 289, 3534, 1726, 807, '2.0000', '140.0000', '140.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3665, '2022-07-31', 287, 3535, 1726, 806, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '13.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3666, '2022-07-31', 385, 3536, 1726, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3667, '2022-07-31', 287, 3537, 1726, 806, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '13.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3668, '2022-07-31', 220, 3538, 1726, 836, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3669, '2022-07-31', 195, 3539, 1726, 810, '3.0000', '350.0000', '350.0000', '600.0000', '600.0000', '15.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3670, '2022-07-31', 268, 3540, 1726, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3671, '2022-07-31', 274, 3541, 1726, 274, '-1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 119, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3672, '2022-07-31', 274, 3541, 1726, 803, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3673, '2022-07-31', 351, 3542, 1727, 697, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3674, '2022-07-31', 424, 3543, 1728, 831, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3675, '2022-07-31', 396, 3544, 1728, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3676, '2022-07-31', 317, 3545, 1728, 814, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3677, '2022-07-31', 16, 3546, 1728, 21, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3678, '2022-07-31', 288, 3547, 1728, 783, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3679, '2022-07-31', 153, 3548, 1729, 691, '2.0000', '250.0000', '250.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3680, '2022-07-31', 220, 3549, 1730, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3681, '2022-07-31', 414, 3550, 1731, 816, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '64.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3682, '2022-07-31', 33, 3551, 1731, 32, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3683, '2022-07-31', 36, 3552, 1731, 35, '-3.0000', '500.0000', '500.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3684, '2022-07-31', 36, 3552, 1731, 394, '4.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3685, '2022-07-31', 414, 3553, 1732, 816, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '63.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3686, '2022-07-31', 271, 3554, 1733, 773, '8.0000', '30.0000', '30.0000', '40.0000', '40.0000', '80.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3687, '2022-07-31', 269, 3555, 1733, 268, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3688, '2022-07-31', 269, 3555, 1733, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3689, '2022-07-31', 270, 3556, 1733, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3690, '2022-07-31', 268, 3557, 1733, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3691, '2022-07-31', 414, 3558, 1733, 816, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '62.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3692, '2022-07-31', 147, 3559, 1734, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '15.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3693, '2022-07-31', 317, 3560, 1734, 814, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3694, '2022-07-31', 347, 3561, 1734, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3695, '2022-07-31', 193, 3562, 1734, 731, '6.0000', '200.0000', '200.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3696, '2022-07-31', 195, 3563, 1734, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '14.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3697, '2022-07-31', 214, 3564, 1734, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3698, '2022-07-31', 386, 3565, 1735, 782, '4.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3699, '2022-07-31', 153, 3566, 1735, 691, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3700, '2022-07-31', 80, 3567, 1735, 687, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3701, '2022-07-31', 145, 3568, 1735, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3702, '2022-07-31', 128, 3569, 1735, 124, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3703, '2022-07-31', 386, 3570, 1736, 782, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3704, '2022-07-31', 385, 3571, 1736, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3705, '2022-07-31', 189, 3572, 1737, 226, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 85, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3706, '2022-07-31', 388, 3573, 1737, 683, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3707, '2022-07-31', 162, 3574, 1737, 717, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3708, '2022-07-31', 297, 3575, 1738, 320, '-1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3709, '2022-07-31', 297, 3575, 1738, 690, '4.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3710, '2022-07-31', 3, 3576, 1738, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3711, '2022-07-31', 394, 3577, 1738, 689, '3.0000', '70.0000', '70.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3712, '2022-07-31', 220, 3578, 1738, 836, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3713, '2022-07-31', 317, 3579, 1739, 814, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3714, '2022-07-31', 317, 3579, 1739, 839, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3715, '2022-07-31', 195, 3580, 1739, 810, '2.0000', '350.0000', '350.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3716, '2022-07-31', 95, 3581, 1740, 663, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3717, '2022-07-31', 3, 3582, 1741, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3718, '2022-07-31', 19, 3583, 1741, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3719, '2022-07-31', 394, 3584, 1741, 689, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3720, '2022-07-31', 195, 3585, 1741, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '11.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3721, '2022-07-31', 171, 3586, 1741, 706, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3722, '2022-07-31', 290, 3587, 1741, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3723, '2022-07-31', 271, 3588, 1741, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '79.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3724, '2022-07-31', 220, 3589, 1741, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '10.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3725, '2022-07-31', 194, 3590, 1741, 280, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3726, '2022-07-31', 3, 3591, 1741, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3727, '2022-07-31', 220, 3592, 1741, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '10.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3728, '2022-07-31', 426, 3593, 1742, 835, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3729, '2022-07-31', 220, 3594, 1743, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3730, '2022-07-31', 268, 3595, 1744, 267, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3731, '2022-07-31', 269, 3596, 1744, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3732, '2022-07-31', 411, 3597, 1744, 812, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3733, '2022-07-31', 271, 3598, 1744, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '78.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3734, '2022-07-31', 287, 3599, 1745, 806, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '10.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3735, '2022-07-31', 171, 3600, 1746, 706, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3736, '2022-07-31', 290, 3601, 1746, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3737, '2022-07-31', 107, 3602, 1747, 696, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3738, '2022-07-31', 6, 3603, 1748, 88, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 12, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3739, '2022-07-31', 80, 3604, 1748, 687, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3740, '2022-07-31', 282, 3605, 1748, 660, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3741, '2022-07-31', 319, 3606, 1749, 815, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3742, '2022-07-31', 385, 3607, 1749, 680, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3743, '2022-07-31', 269, 3608, 1750, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3744, '2022-07-31', 220, 3609, 1750, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3745, '2022-07-31', 351, 3610, 1751, 761, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3751, '2022-08-01', 99, 3616, 1754, 93, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3752, '2022-08-01', 351, 3617, 1755, 761, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3753, '2022-08-01', 141, 3618, 1756, 693, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3754, '2022-08-01', 220, 3619, 1756, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3755, '2022-08-01', 352, 3620, 1756, 809, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3756, '2022-08-01', 377, 3621, 1756, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '9.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3757, '2022-08-01', 212, 3622, 1757, 170, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3758, '2022-08-01', 21, 3623, 1757, 17, '-2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3759, '2022-08-01', 21, 3623, 1757, 713, '3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3760, '2022-08-01', 195, 3624, 1758, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '10.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3761, '2022-08-01', 49, 3625, 1759, 670, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3762, '2022-08-01', 3, 3626, 1759, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3763, '2022-08-01', 193, 3627, 1760, 731, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3764, '2022-08-01', 193, 3627, 1760, 754, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3765, '2022-08-01', 347, 3628, 1760, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3766, '2022-08-01', 377, 3629, 1761, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3767, '2022-08-01', 114, 3630, 1762, 107, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3768, '2022-08-01', 396, 3631, 1763, 705, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3769, '2022-08-01', 93, 3632, 1763, 747, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3770, '2022-08-02', 74, 3633, 1764, 745, '3.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3771, '2022-08-02', 220, 3634, 1764, 836, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3772, '2022-08-02', 377, 3635, 1765, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3773, '2022-08-02', 338, 3636, 1765, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3774, '2022-08-02', 289, 3637, 1765, 807, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3775, '2022-08-02', 193, 3638, 1766, 754, '6.0000', '200.0000', '200.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3776, '2022-08-02', 347, 3639, 1766, 490, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3777, '2022-08-02', 144, 3640, 1767, 191, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 60, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3778, '2022-08-02', 15, 3641, 1768, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3779, '2022-08-02', 287, 3642, 1768, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3780, '2022-08-02', 199, 3643, 1769, 382, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3781, '2022-08-02', 166, 3644, 1770, 207, '-7.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3782, '2022-08-02', 166, 3644, 1770, 584, '5.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3783, '2022-08-02', 166, 3644, 1770, 701, '3.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '2.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3784, '2022-08-02', 405, 3645, 1770, 811, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3785, '2022-08-03', 375, 3646, 1771, 617, '1.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3786, '2022-08-03', 351, 3647, 1771, 795, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3787, '2022-08-04', 153, 3648, 1772, 691, '2.0000', '250.0000', '250.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3788, '2022-08-04', 410, 3649, 1773, 853, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3789, '2022-08-04', 271, 3650, 1773, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '77.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3790, '2022-08-04', 220, 3651, 1774, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3791, '2022-08-04', 319, 3652, 1775, 815, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3792, '2022-08-04', 293, 3653, 1775, 317, '-1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3793, '2022-08-04', 293, 3653, 1775, 742, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3794, '2022-08-04', 393, 3654, 1776, 700, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3795, '2022-08-04', 292, 3655, 1777, 679, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3796, '2022-08-04', 292, 3655, 1777, 777, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3797, '2022-08-04', 131, 3656, 1778, 299, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3798, '2022-08-04', 93, 3657, 1779, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3799, '2022-08-04', 200, 3658, 1780, 762, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3800, '2022-08-04', 104, 3659, 1781, 97, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3801, '2022-08-05', 386, 3660, 1782, 681, '4.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3802, '2022-08-05', 319, 3661, 1783, 815, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3803, '2022-08-05', 239, 3662, 1784, 208, '-1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3804, '2022-08-05', 239, 3662, 1784, 828, '2.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3805, '2022-08-05', 162, 3663, 1785, 717, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3806, '2022-08-05', 376, 3664, 1785, 808, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3807, '2022-08-05', 220, 3665, 1786, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3808, '2022-08-05', 268, 3666, 1786, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '64.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3809, '2022-08-05', 95, 3667, 1787, 748, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3810, '2022-08-05', 338, 3668, 1788, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3811, '2022-08-05', 289, 3669, 1788, 807, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3812, '2022-08-05', 317, 3670, 1789, 839, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3813, '2022-08-05', 288, 3671, 1789, 783, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3814, '2022-08-05', 271, 3672, 1790, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '76.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3815, '2022-08-05', 410, 3673, 1790, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '17.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3816, '2022-08-05', 413, 3674, 1791, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3817, '2022-08-05', 425, 3675, 1792, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '37.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3818, '2022-08-05', 386, 3676, 1793, 782, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3819, '2022-08-05', 394, 3677, 1794, 689, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3820, '2022-08-05', 260, 3678, 1794, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '30.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3821, '2022-08-05', 425, 3679, 1795, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '35.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3822, '2022-08-05', 411, 3680, 1795, 812, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3823, '2022-08-05', 214, 3681, 1796, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3824, '2022-08-06', 160, 3682, 1797, 142, '-1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 22, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3825, '2022-08-06', 160, 3682, 1797, 740, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3826, '2022-08-06', 230, 3683, 1797, 728, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3827, '2022-08-06', 109, 3684, 1798, 641, '2.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '2.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3828, '2022-08-06', 393, 3685, 1799, 700, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3829, '2022-08-06', 306, 3686, 1800, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3830, '2022-08-06', 154, 3687, 1800, 565, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3831, '2022-08-06', 284, 3688, 1800, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '7.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3832, '2022-08-06', 143, 3689, 1800, 639, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3833, '2022-08-06', 296, 3690, 1800, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '53.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3834, '2022-08-06', 425, 3691, 1800, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '33.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3835, '2022-08-06', 268, 3692, 1801, 267, '5.0000', '170.0000', '170.0000', '200.0000', '200.0000', '59.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3836, '2022-08-06', 426, 3693, 1802, 835, '11.0000', '30.0000', '30.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3837, '2022-08-06', 394, 3694, 1802, 784, '8.0000', '70.0000', '70.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3838, '2022-08-06', 295, 3695, 1802, 332, '4.0000', '400.0000', '400.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3839, '2022-08-06', 213, 3696, 1802, 174, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '10.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3840, '2022-08-06', 351, 3697, 1802, 795, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3841, '2022-08-06', 95, 3698, 1802, 748, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3842, '2022-08-06', 296, 3699, 1802, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '51.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3843, '2022-08-06', 293, 3700, 1802, 742, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3844, '2022-08-06', 288, 3701, 1802, 783, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3845, '2022-08-06', 425, 3702, 1802, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '32.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3846, '2022-08-06', 15, 3703, 1803, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3847, '2022-08-06', 289, 3704, 1803, 807, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3848, '2022-08-06', 214, 3705, 1803, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3849, '2022-08-06', 352, 3706, 1804, 809, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3850, '2022-08-06', 282, 3707, 1805, 789, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3851, '2022-08-06', 425, 3708, 1806, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '31.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3852, '2022-08-06', 271, 3709, 1807, 773, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '73.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3853, '2022-08-06', 268, 3710, 1807, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '58.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3854, '2022-08-06', 270, 3711, 1807, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3855, '2022-08-06', 410, 3712, 1807, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3856, '2022-08-06', 287, 3713, 1808, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3857, '2022-08-06', 287, 3714, 1809, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3858, '2022-08-06', 394, 3715, 1809, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3859, '2022-08-06', 385, 3716, 1809, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3860, '2022-08-06', 268, 3717, 1810, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '57.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3861, '2022-08-06', 270, 3718, 1810, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3862, '2022-08-06', 8, 3719, 1810, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3863, '2022-08-07', 269, 3720, 1811, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3864, '2022-08-07', 270, 3721, 1811, 269, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3865, '2022-08-07', 271, 3722, 1811, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '72.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3866, '2022-08-07', 289, 3723, 1812, 807, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3867, '2022-08-07', 12, 3724, 1813, 482, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3868, '2022-08-07', 195, 3725, 1813, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3869, '2022-08-07', 239, 3726, 1813, 828, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3870, '2022-08-07', 352, 3727, 1813, 809, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3871, '2022-08-07', 338, 3728, 1813, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3872, '2022-08-07', 289, 3729, 1813, 807, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3873, '2022-08-07', 126, 3730, 1813, 122, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3874, '2022-08-07', 126, 3730, 1813, 768, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3875, '2022-08-07', 332, 3731, 1814, 418, '1.0000', '1250.0000', '1250.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3876, '2022-08-07', 404, 3732, 1814, 721, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3877, '2022-08-07', 396, 3733, 1814, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3878, '2022-08-07', 293, 3734, 1815, 742, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3879, '2022-08-07', 317, 3735, 1816, 839, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3880, '2022-08-07', 319, 3736, 1816, 815, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3881, '2022-08-07', 200, 3737, 1816, 793, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3882, '2022-08-07', 305, 3738, 1817, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3883, '2022-08-07', 319, 3739, 1817, 838, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3884, '2022-08-07', 385, 3740, 1817, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3885, '2022-08-07', 386, 3741, 1818, 782, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3886, '2022-08-07', 288, 3742, 1818, 783, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3887, '2022-08-07', 195, 3743, 1819, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3888, '2022-08-07', 160, 3744, 1820, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3889, '2022-08-08', 293, 3745, 1821, 840, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3890, '2022-08-08', 268, 3746, 1822, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '56.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3891, '2022-08-08', 270, 3747, 1822, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '24.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3892, '2022-08-08', 410, 3748, 1822, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3893, '2022-08-08', 271, 3749, 1822, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '70.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3894, '2022-08-08', 226, 3750, 1823, 640, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3895, '2022-08-08', 157, 3751, 1824, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '24.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3896, '2022-08-08', 405, 3752, 1825, 811, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3897, '2022-08-08', 165, 3753, 1825, 150, '-1.0000', '1350.0000', '1350.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3898, '2022-08-08', 165, 3753, 1825, 871, '2.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '23.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3899, '2022-08-08', 317, 3754, 1825, 839, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3900, '2022-08-08', 385, 3755, 1825, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3901, '2022-08-08', 162, 3756, 1826, 147, '-3.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3902, '2022-08-08', 162, 3756, 1826, 717, '4.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3903, '2022-08-08', 284, 3757, 1826, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '6.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3904, '2022-08-08', 84, 3758, 1827, 75, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3905, '2022-08-08', 425, 3759, 1827, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '30.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3906, '2022-08-08', 317, 3760, 1828, 839, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3907, '2022-08-08', 42, 3761, 1828, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3908, '2022-08-08', 385, 3762, 1828, 680, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3909, '2022-08-08', 200, 3763, 1828, 793, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3910, '2022-08-08', 383, 3764, 1828, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '8.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3911, '2022-08-08', 377, 3765, 1828, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3912, '2022-08-08', 74, 3766, 1828, 745, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3913, '2022-08-08', 104, 3767, 1828, 97, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3914, '2022-08-08', 165, 3768, 1829, 871, '8.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '15.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3915, '2022-08-08', 268, 3769, 1829, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '54.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3916, '2022-08-08', 270, 3770, 1829, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '23.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3917, '2022-08-08', 410, 3771, 1829, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3918, '2022-08-08', 271, 3772, 1829, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '69.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3919, '2022-08-08', 453, 3773, 1830, 891, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3920, '2022-08-08', 231, 3774, 1830, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3921, '2022-08-08', 413, 3775, 1830, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3922, '2022-08-08', 160, 3776, 1830, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3923, '2022-08-08', 425, 3777, 1830, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '29.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3924, '2022-08-08', 352, 3778, 1831, 809, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3925, '2022-08-08', 166, 3779, 1832, 207, '-3.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3926, '2022-08-08', 166, 3779, 1832, 701, '2.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3927, '2022-08-08', 166, 3779, 1832, 752, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3928, '2022-08-08', 166, 3779, 1832, 872, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '19.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3929, '2022-08-08', 284, 3780, 1832, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '5.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3930, '2022-08-08', 377, 3781, 1832, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3931, '2022-08-09', 93, 3782, 1833, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3932, '2022-08-09', 25, 3783, 1833, 255, '-4.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3933, '2022-08-09', 25, 3783, 1833, 718, '5.0000', '200.0000', '200.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3934, '2022-08-09', 129, 3784, 1834, 117, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3935, '2022-08-09', 352, 3785, 1834, 809, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3936, '2022-08-09', 377, 3786, 1834, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3937, '2022-08-09', 195, 3787, 1834, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3938, '2022-08-09', 193, 3788, 1835, 754, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 184, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3939, '2022-08-09', 165, 3789, 1836, 871, '2.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '13.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3940, '2022-08-09', 107, 3790, 1837, 696, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3941, '2022-08-09', 226, 3791, 1837, 640, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3942, '2022-08-09', 160, 3792, 1837, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3943, '2022-08-09', 9, 3793, 1838, 8, '-1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3944, '2022-08-09', 9, 3793, 1838, 282, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '14.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3945, '2022-08-09', 425, 3794, 1839, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '28.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3946, '2022-08-09', 425, 3795, 1839, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '28.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3947, '2022-08-09', 425, 3796, 1839, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '28.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3948, '2022-08-09', 71, 3797, 1840, 870, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3949, '2022-08-09', 292, 3798, 1841, 777, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3950, '2022-08-09', 165, 3799, 1841, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '12.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3951, '2022-08-09', 165, 3800, 1842, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '11.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3952, '2022-08-09', 220, 3801, 1843, 836, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3953, '2022-08-09', 220, 3801, 1843, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3954, '2022-08-09', 102, 3802, 1843, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3955, '2022-08-09', 271, 3803, 1843, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '68.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3956, '2022-08-09', 455, 3804, 1844, 911, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3957, '2022-08-09', 452, 3805, 1845, 934, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 203, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3958, '2022-08-09', 428, 3806, 1845, 858, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3959, '2022-08-09', 49, 3807, 1846, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3960, '2022-08-09', 9, 3808, 1847, 282, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '12.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3961, '2022-08-09', 289, 3809, 1847, 807, '2.0000', '140.0000', '140.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3962, '2022-08-09', 394, 3810, 1848, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3963, '2022-08-09', 453, 3811, 1848, 891, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3964, '2022-08-09', 220, 3812, 1849, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '18.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3965, '2022-08-09', 458, 3813, 1850, 918, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '18.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3966, '2022-08-09', 438, 3814, 1851, 867, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3967, '2022-08-09', 444, 3815, 1851, 874, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3968, '2022-08-09', 447, 3816, 1851, 880, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3969, '2022-08-09', 220, 3817, 1852, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3970, '2022-08-09', 284, 3818, 1852, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3971, '2022-08-09', 113, 3819, 1853, 296, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3972, '2022-08-09', 458, 3820, 1854, 918, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '16.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3973, '2022-08-09', 195, 3821, 1855, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3974, '2022-08-09', 289, 3822, 1855, 807, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3975, '2022-08-09', 338, 3823, 1855, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3976, '2022-08-09', 220, 3824, 1856, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3977, '2022-08-09', 141, 3825, 1856, 693, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3978, '2022-08-09', 270, 3826, 1856, 852, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '21.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3979, '2022-08-09', 273, 3827, 1857, 273, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 118, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3980, '2022-08-09', 174, 3828, 1857, 227, '1.0000', '2000.0000', '2000.0000', '3500.0000', '3500.0000', '0.0000', 1, 0, NULL, 86, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3981, '2022-08-09', 250, 3829, 1857, 235, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 91, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3982, '2022-08-09', 385, 3830, 1857, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3983, '2022-08-10', 166, 3831, 1858, 872, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '18.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3984, '2022-08-10', 165, 3832, 1858, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '10.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3985, '2022-08-10', 239, 3833, 1858, 828, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3986, '2022-08-10', 194, 3834, 1858, 280, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3987, '2022-08-10', 288, 3835, 1858, 783, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3988, '2022-08-10', 195, 3836, 1858, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3989, '2022-08-10', 312, 3837, 1858, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3990, '2022-08-10', 319, 3838, 1858, 838, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3991, '2022-08-10', 385, 3839, 1858, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3992, '2022-08-10', 293, 3840, 1858, 840, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3993, '2022-08-10', 338, 3841, 1858, 769, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3994, '2022-08-10', 9, 3842, 1858, 282, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '11.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3995, '2022-08-10', 289, 3843, 1858, 842, '3.0000', '140.0000', '140.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3996, '2022-08-10', 165, 3844, 1859, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3997, '2022-08-10', 166, 3845, 1859, 872, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '17.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3998, '2022-08-10', 271, 3846, 1860, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '66.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (3999, '2022-08-10', 312, 3847, 1861, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4000, '2022-08-10', 385, 3848, 1861, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4001, '2022-08-11', 91, 3849, 1862, 797, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4002, '2022-08-11', 66, 3850, 1862, 16, '-4.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4003, '2022-08-11', 66, 3850, 1862, 500, '4.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4004, '2022-08-11', 66, 3850, 1862, 893, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4005, '2022-08-11', 157, 3851, 1862, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '22.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4006, '2022-08-11', 260, 3852, 1862, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '29.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4007, '2022-08-11', 104, 3853, 1862, 97, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4008, '2022-08-11', 426, 3854, 1862, 835, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4009, '2022-08-11', 387, 3855, 1863, 682, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4010, '2022-08-11', 388, 3856, 1863, 683, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4011, '2022-08-11', 388, 3857, 1863, 683, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4012, '2022-08-11', 391, 3858, 1863, 686, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4013, '2022-08-11', 391, 3859, 1863, 686, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4014, '2022-08-11', 293, 3860, 1863, 840, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4015, '2022-08-11', 220, 3861, 1863, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '15.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4016, '2022-08-11', 165, 3862, 1864, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4017, '2022-08-11', 352, 3863, 1864, 817, '3.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4018, '2022-08-11', 147, 3864, 1864, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '14.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4019, '2022-08-11', 317, 3865, 1864, 899, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4020, '2022-08-11', 458, 3866, 1864, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4021, '2022-08-11', 186, 3867, 1864, 877, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4022, '2022-08-11', 378, 3868, 1865, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '7.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4023, '2022-08-11', 433, 3869, 1865, 863, '1.0000', '3000.0000', '3000.0000', '4000.0000', '4000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4024, '2022-08-11', 442, 3870, 1865, 873, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4025, '2022-08-11', 359, 3871, 1866, 591, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4026, '2022-08-11', 113, 3872, 1867, 912, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4027, '2022-08-11', 108, 3873, 1868, 101, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4028, '2022-08-11', 168, 3874, 1869, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4029, '2022-08-11', 168, 3875, 1869, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4030, '2022-08-11', 452, 3876, 1869, 934, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 203, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4031, '2022-08-11', 389, 3877, 1869, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4032, '2022-08-11', 194, 3878, 1869, 280, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4033, '2022-08-11', 3, 3879, 1869, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4034, '2022-08-11', 319, 3880, 1869, 838, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4035, '2022-08-11', 385, 3881, 1869, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4036, '2022-08-11', 86, 3882, 1869, 77, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4037, '2022-08-11', 268, 3883, 1869, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '53.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4038, '2022-08-11', 200, 3884, 1869, 793, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4039, '2022-08-11', 42, 3885, 1870, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4040, '2022-08-11', 293, 3886, 1870, 840, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4041, '2022-08-11', 464, 3887, 1871, 929, '1.0000', '250.0000', '250.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4042, '2022-08-11', 463, 3888, 1871, 928, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4043, '2022-08-12', 410, 3889, 1872, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4044, '2022-08-12', 271, 3890, 1872, 773, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '62.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4045, '2022-08-12', 270, 3891, 1872, 852, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '19.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4046, '2022-08-12', 268, 3892, 1872, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '52.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4047, '2022-08-12', 271, 3893, 1873, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '60.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4048, '2022-08-12', 284, 3894, 1874, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4049, '2022-08-12', 220, 3895, 1874, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4050, '2022-08-12', 42, 3896, 1875, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4051, '2022-08-12', 288, 3897, 1875, 783, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4052, '2022-08-12', 119, 3898, 1876, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '59.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4053, '2022-08-12', 341, 3899, 1876, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4054, '2022-08-12', 284, 3900, 1877, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4055, '2022-08-12', 380, 3901, 1877, 658, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4056, '2022-08-12', 260, 3902, 1877, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '28.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4057, '2022-08-12', 42, 3903, 1877, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4058, '2022-08-12', 394, 3904, 1877, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4059, '2022-08-12', 453, 3905, 1877, 891, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4060, '2022-08-12', 164, 3906, 1878, 155, '-2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4061, '2022-08-12', 164, 3906, 1878, 669, '3.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4062, '2022-08-12', 231, 3907, 1879, 199, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 66, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4063, '2022-08-12', 231, 3907, 1879, 819, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4064, '2022-08-12', 93, 3908, 1879, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4065, '2022-08-12', 288, 3909, 1880, 783, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4066, '2022-08-12', 42, 3910, 1880, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4067, '2022-08-12', 319, 3911, 1880, 838, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4068, '2022-08-12', 74, 3912, 1881, 745, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4069, '2022-08-12', 387, 3913, 1881, 682, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4070, '2022-08-12', 411, 3914, 1882, 907, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4071, '2022-08-12', 42, 3915, 1883, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4072, '2022-08-12', 288, 3916, 1883, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4073, '2022-08-12', 434, 3917, 1884, 864, '2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4074, '2022-08-12', 166, 3918, 1884, 872, '2.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '15.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4075, '2022-08-12', 268, 3919, 1884, 267, '16.0000', '170.0000', '170.0000', '200.0000', '200.0000', '36.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4076, '2022-08-12', 220, 3920, 1885, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4077, '2022-08-12', 14, 3921, 1886, 601, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4078, '2022-08-12', 458, 3922, 1886, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4079, '2022-08-12', 162, 3923, 1886, 717, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4080, '2022-08-12', 458, 3924, 1887, 918, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4081, '2022-08-12', 143, 3925, 1887, 639, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4082, '2022-08-12', 455, 3926, 1888, 911, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4083, '2022-08-12', 162, 3927, 1889, 717, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4084, '2022-08-12', 165, 3928, 1889, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4085, '2022-08-12', 289, 3929, 1889, 842, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4086, '2022-08-12', 338, 3930, 1889, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4087, '2022-08-13', 458, 3931, 1890, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4088, '2022-08-13', 282, 3932, 1890, 789, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4089, '2022-08-13', 42, 3933, 1890, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4090, '2022-08-13', 397, 3934, 1891, 865, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4091, '2022-08-13', 458, 3935, 1892, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4092, '2022-08-13', 455, 3936, 1893, 911, '2.0000', '110.0000', '110.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4093, '2022-08-13', 9, 3937, 1894, 282, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '10.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4094, '2022-08-13', 463, 3938, 1894, 928, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4095, '2022-08-13', 284, 3939, 1895, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4096, '2022-08-13', 220, 3940, 1895, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '12.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4097, '2022-08-13', 351, 3941, 1896, 795, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4098, '2022-08-13', 372, 3942, 1897, 933, '1.0000', '1200.0000', '1200.0000', '1800.0000', '1800.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4099, '2022-08-13', 160, 3943, 1897, 740, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4100, '2022-08-13', 413, 3944, 1898, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4101, '2022-08-13', 458, 3945, 1899, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4102, '2022-08-13', 93, 3946, 1899, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4103, '2022-08-13', 186, 3947, 1899, 877, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4104, '2022-08-13', 289, 3948, 1899, 842, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4105, '2022-08-13', 338, 3949, 1899, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4106, '2022-08-13', 200, 3950, 1899, 793, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4107, '2022-08-13', 243, 3951, 1900, 215, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 77, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4108, '2022-08-13', 410, 3952, 1901, 853, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4109, '2022-08-13', 271, 3953, 1901, 773, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '57.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4110, '2022-08-13', 268, 3954, 1901, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '34.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4111, '2022-08-13', 269, 3955, 1901, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4112, '2022-08-13', 159, 3956, 1901, 452, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4113, '2022-08-13', 444, 3957, 1902, 874, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4114, '2022-08-13', 195, 3958, 1903, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4115, '2022-08-13', 378, 3959, 1904, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '6.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4116, '2022-08-13', 231, 3960, 1904, 819, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4117, '2022-08-13', 293, 3961, 1905, 840, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4118, '2022-08-13', 288, 3962, 1905, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4119, '2022-08-13', 461, 3963, 1906, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4120, '2022-08-13', 16, 3964, 1906, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4121, '2022-08-13', 454, 3965, 1906, 895, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4122, '2022-08-13', 154, 3966, 1906, 565, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4123, '2022-08-13', 385, 3967, 1906, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4124, '2022-08-13', 49, 3968, 1906, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '10.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4125, '2022-08-13', 3, 3969, 1906, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4126, '2022-08-13', 143, 3970, 1907, 735, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4127, '2022-08-13', 164, 3971, 1907, 669, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4128, '2022-08-13', 113, 3972, 1908, 912, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4129, '2022-08-13', 458, 3973, 1909, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4130, '2022-08-13', 327, 3974, 1910, 411, '2.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4131, '2022-08-13', 388, 3975, 1910, 683, '2.0000', '550.0000', '550.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4132, '2022-08-13', 397, 3976, 1910, 865, '2.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4133, '2022-08-13', 391, 3977, 1910, 686, '2.0000', '450.0000', '450.0000', '550.0000', '550.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4134, '2022-08-13', 254, 3978, 1910, 241, '2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4135, '2022-08-13', 439, 3979, 1910, 903, '1.0000', '2000.0000', '2000.0000', '4000.0000', '4000.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4136, '2022-08-13', 7, 3980, 1910, 729, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4137, '2022-08-13', 135, 3981, 1910, 459, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4138, '2022-08-13', 108, 3982, 1911, 101, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4139, '2022-08-13', 413, 3983, 1911, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4140, '2022-08-13', 458, 3984, 1912, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4141, '2022-08-13', 3, 3985, 1913, 677, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4142, '2022-08-13', 220, 3986, 1913, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4143, '2022-08-13', 317, 3987, 1914, 899, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4144, '2022-08-14', 49, 3988, 1915, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4145, '2022-08-14', 315, 3989, 1915, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4146, '2022-08-14', 312, 3990, 1915, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4147, '2022-08-14', 15, 3991, 1915, 596, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4148, '2022-08-14', 398, 3992, 1915, 708, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4149, '2022-08-14', 461, 3993, 1915, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '10.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4150, '2022-08-14', 16, 3994, 1915, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4151, '2022-08-14', 93, 3995, 1916, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4152, '2022-08-14', 162, 3996, 1917, 717, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4153, '2022-08-14', 162, 3996, 1917, 854, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4154, '2022-08-14', 413, 3997, 1918, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4155, '2022-08-14', 429, 3998, 1919, 859, '2.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4156, '2022-08-14', 390, 3999, 1919, 685, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4157, '2022-08-14', 143, 4000, 1919, 735, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4158, '2022-08-14', 9, 4001, 1920, 282, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4159, '2022-08-14', 113, 4002, 1921, 912, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4160, '2022-08-14', 119, 4003, 1921, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '58.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4161, '2022-08-14', 458, 4004, 1922, 918, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4162, '2022-08-14', 164, 4005, 1923, 669, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4163, '2022-08-15', 293, 4006, 1924, 840, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4164, '2022-08-15', 74, 4007, 1925, 745, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4165, '2022-08-15', 387, 4008, 1925, 682, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4166, '2022-08-15', 269, 4009, 1926, 465, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4167, '2022-08-15', 271, 4010, 1927, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '56.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4168, '2022-08-15', 387, 4011, 1928, 682, '2.0000', '650.0000', '650.0000', '850.0000', '850.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4169, '2022-08-15', 387, 4011, 1928, 937, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4170, '2022-08-15', 352, 4012, 1929, 817, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4171, '2022-08-15', 352, 4012, 1929, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4172, '2022-08-15', 153, 4013, 1930, 691, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4173, '2022-08-15', 312, 4014, 1931, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4174, '2022-08-15', 293, 4015, 1931, 840, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4175, '2022-08-15', 457, 4016, 1931, 909, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4176, '2022-08-15', 6, 4017, 1932, 676, '3.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4177, '2022-08-15', 293, 4018, 1932, 840, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4178, '2022-08-15', 293, 4018, 1932, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4179, '2022-08-15', 46, 4019, 1932, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4180, '2022-08-15', 220, 4020, 1932, 908, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4181, '2022-08-15', 455, 4021, 1932, 911, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4182, '2022-08-15', 456, 4022, 1932, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4183, '2022-08-15', 377, 4023, 1933, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4202, '2022-08-15', 160, 4042, 1935, 953, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4201, '2022-08-15', 385, 4041, 1935, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4200, '2022-08-15', 16, 4040, 1935, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4199, '2022-08-15', 49, 4039, 1935, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4198, '2022-08-15', 341, 4038, 1935, 432, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4197, '2022-08-15', 312, 4037, 1935, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4196, '2022-08-15', 396, 4036, 1935, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4195, '2022-08-15', 168, 4035, 1935, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4194, '2022-08-15', 313, 4034, 1935, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4203, '2022-08-15', 143, 4043, 1935, 785, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4204, '2022-08-15', 459, 4044, 1936, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '48.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4205, '2022-08-15', 413, 4045, 1936, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4206, '2022-08-15', 352, 4046, 1937, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4207, '2022-08-15', 396, 4047, 1938, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4208, '2022-08-15', 288, 4048, 1939, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4209, '2022-08-15', 454, 4049, 1939, 895, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4210, '2022-08-15', 171, 4050, 1940, 706, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4211, '2022-08-15', 290, 4051, 1940, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4212, '2022-08-16', 165, 4052, 1941, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4213, '2022-08-16', 66, 4053, 1941, 893, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4214, '2022-08-16', 9, 4054, 1941, 282, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '7.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4215, '2022-08-16', 9, 4055, 1942, 282, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '6.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4216, '2022-08-16', 413, 4056, 1942, 805, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4217, '2022-08-16', 338, 4057, 1943, 769, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4218, '2022-08-16', 289, 4058, 1943, 842, '2.0000', '140.0000', '140.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4219, '2022-08-17', 200, 4059, 1944, 938, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4220, '2022-08-17', 458, 4060, 1945, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4221, '2022-08-17', 454, 4061, 1945, 895, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4222, '2022-08-17', 282, 4062, 1945, 789, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4223, '2022-08-17', 456, 4063, 1946, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4224, '2022-08-17', 456, 4064, 1947, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4225, '2022-08-17', 338, 4065, 1948, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4226, '2022-08-17', 388, 4066, 1949, 683, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4227, '2022-08-17', 317, 4067, 1949, 899, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4228, '2022-08-17', 9, 4068, 1950, 282, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '5.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4229, '2022-08-17', 271, 4069, 1950, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '54.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4230, '2022-08-17', 410, 4070, 1950, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4231, '2022-08-18', 200, 4071, 1951, 938, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4232, '2022-08-18', 220, 4072, 1952, 908, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4233, '2022-08-18', 160, 4073, 1952, 953, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4234, '2022-08-18', 383, 4074, 1952, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '7.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4235, '2022-08-18', 458, 4075, 1953, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4236, '2022-08-18', 165, 4076, 1954, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4237, '2022-08-18', 396, 4077, 1954, 705, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4238, '2022-08-18', 93, 4078, 1954, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4239, '2022-08-18', 452, 4079, 1954, 934, '4.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 203, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4240, '2022-08-18', 212, 4080, 1954, 170, '4.0000', '100.0000', '100.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4241, '2022-08-18', 3, 4081, 1954, 677, '6.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4242, '2022-08-18', 428, 4082, 1954, 858, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4243, '2022-08-18', 429, 4083, 1954, 859, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4244, '2022-08-18', 427, 4084, 1954, 857, '4.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4245, '2022-08-18', 456, 4085, 1955, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4246, '2022-08-18', 16, 4086, 1956, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4247, '2022-08-18', 287, 4087, 1956, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4248, '2022-08-18', 338, 4088, 1957, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4249, '2022-08-18', 289, 4089, 1957, 842, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4250, '2022-08-18', 282, 4090, 1958, 789, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4251, '2022-08-18', 5, 4091, 1959, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4252, '2022-08-18', 16, 4092, 1960, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4253, '2022-08-18', 455, 4093, 1960, 911, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4254, '2022-08-18', 459, 4094, 1961, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '47.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4255, '2022-08-18', 413, 4095, 1962, 805, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4256, '2022-08-18', 145, 4096, 1963, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4257, '2022-08-18', 434, 4097, 1963, 864, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4258, '2022-08-18', 143, 4098, 1963, 785, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4259, '2022-08-18', 287, 4099, 1964, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4260, '2022-08-18', 107, 4100, 1965, 696, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4261, '2022-08-18', 166, 4101, 1966, 872, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '14.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4262, '2022-08-18', 160, 4102, 1967, 953, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4263, '2022-08-18', 293, 4103, 1968, 950, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4264, '2022-08-18', 288, 4104, 1968, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4265, '2022-08-19', 351, 4105, 1969, 795, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4266, '2022-08-19', 377, 4106, 1969, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4267, '2022-08-19', 268, 4107, 1969, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '33.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4268, '2022-08-19', 271, 4108, 1969, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '52.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4269, '2022-08-19', 220, 4109, 1969, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4270, '2022-08-19', 3, 4110, 1970, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4271, '2022-08-19', 166, 4111, 1970, 872, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '13.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4272, '2022-08-19', 93, 4112, 1970, 747, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4273, '2022-08-19', 338, 4113, 1970, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4274, '2022-08-19', 16, 4114, 1970, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4275, '2022-08-19', 268, 4115, 1971, 267, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '29.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4276, '2022-08-19', 454, 4116, 1972, 895, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4277, '2022-08-19', 317, 4117, 1972, 899, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4278, '2022-08-19', 386, 4118, 1972, 782, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4279, '2022-08-19', 9, 4119, 1973, 282, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4280, '2022-08-19', 338, 4120, 1974, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4281, '2022-08-19', 377, 4121, 1975, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4282, '2022-08-19', 341, 4122, 1976, 924, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4283, '2022-08-19', 413, 4123, 1977, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '39.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4284, '2022-08-19', 459, 4124, 1978, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '46.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4285, '2022-08-19', 413, 4125, 1978, 913, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '37.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4286, '2022-08-19', 431, 4126, 1979, 887, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4287, '2022-08-19', 377, 4127, 1980, 837, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4288, '2022-08-19', 292, 4128, 1981, 777, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4289, '2022-08-19', 42, 4129, 1982, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4290, '2022-08-19', 271, 4130, 1982, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '50.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4291, '2022-08-19', 271, 4131, 1983, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '48.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4292, '2022-08-19', 269, 4132, 1984, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4293, '2022-08-19', 410, 4133, 1984, 853, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4294, '2022-08-19', 271, 4134, 1984, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '47.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4295, '2022-08-19', 220, 4135, 1985, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4296, '2022-08-19', 284, 4136, 1985, 787, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4297, '2022-08-19', 410, 4137, 1986, 853, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4298, '2022-08-19', 268, 4138, 1987, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '28.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4299, '2022-08-19', 454, 4139, 1987, 895, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4300, '2022-08-19', 8, 4140, 1987, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4301, '2022-08-19', 107, 4141, 1987, 794, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4302, '2022-08-20', 186, 4142, 1988, 877, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4303, '2022-08-20', 458, 4143, 1988, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4304, '2022-08-20', 452, 4144, 1988, 934, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 203, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4305, '2022-08-20', 212, 4145, 1988, 170, '2.0000', '100.0000', '100.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4306, '2022-08-20', 348, 4146, 1989, 498, '1.0000', '200.0000', '200.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4307, '2022-08-20', 436, 4147, 1989, 866, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4308, '2022-08-20', 165, 4148, 1990, 871, '3.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4309, '2022-08-20', 165, 4149, 1991, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4310, '2022-08-20', 16, 4150, 1991, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4311, '2022-08-20', 461, 4151, 1991, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4312, '2022-08-20', 377, 4152, 1992, 952, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4313, '2022-08-20', 458, 4153, 1993, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4314, '2022-08-20', 186, 4154, 1993, 877, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4315, '2022-08-20', 389, 4155, 1993, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '12.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4316, '2022-08-20', 264, 4156, 1993, 960, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 208, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4317, '2022-08-20', 95, 4157, 1994, 748, '2.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4318, '2022-08-20', 19, 4158, 1994, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4319, '2022-08-20', 143, 4159, 1995, 785, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4320, '2022-08-20', 71, 4160, 1995, 870, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4321, '2022-08-20', 434, 4161, 1995, 864, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4322, '2022-08-20', 164, 4162, 1995, 669, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4323, '2022-08-20', 449, 4163, 1995, 882, '1.0000', '3000.0000', '3000.0000', '4000.0000', '4000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4324, '2022-08-20', 168, 4164, 1995, 886, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4325, '2022-08-20', 153, 4165, 1995, 691, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4326, '2022-08-20', 393, 4166, 1995, 700, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4327, '2022-08-20', 453, 4167, 1995, 891, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4328, '2022-08-20', 317, 4168, 1996, 899, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4329, '2022-08-20', 271, 4169, 1996, 773, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '44.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4330, '2022-08-20', 270, 4170, 1997, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '18.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4331, '2022-08-20', 317, 4171, 1998, 899, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4332, '2022-08-21', 410, 4172, 1999, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4333, '2022-08-21', 292, 4173, 2000, 777, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4334, '2022-08-21', 282, 4174, 2001, 789, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4335, '2022-08-21', 271, 4175, 2002, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '43.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4336, '2022-08-21', 410, 4176, 2002, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4337, '2022-08-21', 220, 4177, 2002, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4338, '2022-08-21', 270, 4178, 2003, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4339, '2022-08-21', 271, 4179, 2004, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '42.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4340, '2022-08-21', 293, 4180, 2005, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4341, '2022-08-21', 287, 4181, 2005, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4342, '2022-08-22', 165, 4182, 2006, 871, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4343, '2022-08-22', 165, 4182, 2006, 916, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4344, '2022-08-22', 326, 4183, 2006, 410, '-1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4345, '2022-08-22', 326, 4183, 2006, 884, '2.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4346, '2022-08-22', 66, 4184, 2006, 893, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4347, '2022-08-22', 173, 4185, 2006, 861, '1.0000', '4000.0000', '4000.0000', '6000.0000', '6000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4348, '2022-08-22', 292, 4186, 2006, 777, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4349, '2022-08-22', 428, 4187, 2006, 858, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4350, '2022-08-22', 3, 4188, 2006, 677, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4351, '2022-08-22', 448, 4189, 2006, 881, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4352, '2022-08-22', 386, 4190, 2006, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4353, '2022-08-22', 429, 4191, 2006, 859, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4354, '2022-08-22', 386, 4192, 2006, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4355, '2022-08-22', 7, 4193, 2006, 956, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4356, '2022-08-22', 228, 4194, 2006, 194, '1.0000', '2200.0000', '2200.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 61, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4357, '2022-08-22', 232, 4195, 2006, 200, '-1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 67, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4358, '2022-08-22', 232, 4195, 2006, 526, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4359, '2022-08-22', 437, 4196, 2006, 935, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 204, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4360, '2022-08-22', 220, 4197, 2007, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4361, '2022-08-22', 268, 4198, 2007, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '26.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4362, '2022-08-22', 425, 4199, 2007, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '25.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4363, '2022-08-22', 377, 4200, 2007, 952, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4364, '2022-08-22', 284, 4201, 2007, 951, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4365, '2022-08-22', 383, 4202, 2007, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '6.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4366, '2022-08-22', 293, 4203, 2007, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4367, '2022-08-22', 200, 4204, 2007, 938, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4368, '2022-08-22', 461, 4205, 2007, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4369, '2022-08-22', 168, 4206, 2007, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4370, '2022-08-22', 386, 4207, 2007, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4371, '2022-08-22', 338, 4208, 2008, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4372, '2022-08-22', 287, 4209, 2008, 806, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4373, '2022-08-22', 463, 4210, 2008, 928, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4374, '2022-08-22', 352, 4211, 2009, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4375, '2022-08-22', 453, 4212, 2010, 891, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4376, '2022-08-22', 425, 4213, 2010, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '24.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4377, '2022-08-22', 389, 4214, 2010, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4378, '2022-08-22', 46, 4215, 2011, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4379, '2022-08-22', 386, 4216, 2011, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4380, '2022-08-23', 338, 4217, 2012, 769, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4381, '2022-08-23', 93, 4218, 2013, 847, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4382, '2022-08-23', 268, 4219, 2014, 267, '6.0000', '170.0000', '170.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4383, '2022-08-23', 271, 4220, 2014, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '41.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4384, '2022-08-23', 113, 4221, 2014, 912, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4385, '2022-08-23', 135, 4222, 2015, 786, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4386, '2022-08-23', 164, 4223, 2016, 876, '4.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '16.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4387, '2022-08-23', 282, 4224, 2017, 965, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4388, '2022-08-23', 93, 4225, 2018, 847, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4389, '2022-08-23', 394, 4226, 2018, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4390, '2022-08-23', 220, 4227, 2019, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4391, '2022-08-23', 383, 4228, 2019, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '5.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4392, '2022-08-23', 459, 4229, 2020, 914, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '44.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4393, '2022-08-23', 425, 4230, 2020, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '22.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4394, '2022-08-23', 131, 4231, 2021, 299, '3.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4395, '2022-08-23', 268, 4232, 2022, 267, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4396, '2022-08-23', 270, 4233, 2022, 852, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4397, '2022-08-23', 271, 4234, 2022, 773, '5.0000', '30.0000', '30.0000', '40.0000', '40.0000', '36.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4398, '2022-08-23', 459, 4235, 2022, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '43.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4403, '2022-08-24', 5, 4240, 2024, 678, '3.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4402, '2022-08-24', 46, 4239, 2024, 889, '2.0000', '210.0000', '210.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4404, '2022-08-24', 3, 4241, 2024, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4405, '2022-08-24', 49, 4242, 2024, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4406, '2022-08-24', 100, 4243, 2025, 799, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4407, '2022-08-24', 268, 4244, 2025, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4408, '2022-08-24', 270, 4245, 2025, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '14.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4409, '2022-08-24', 410, 4246, 2025, 853, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4410, '2022-08-24', 271, 4247, 2025, 773, '5.0000', '30.0000', '30.0000', '40.0000', '40.0000', '31.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4411, '2022-08-24', 8, 4248, 2025, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4412, '2022-08-24', 410, 4249, 2026, 853, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4413, '2022-08-24', 271, 4250, 2026, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '30.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4414, '2022-08-24', 220, 4251, 2027, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4415, '2022-08-25', 223, 4252, 2028, 185, '1.0000', '1250.0000', '1250.0000', '1750.0000', '1750.0000', '0.0000', 1, 0, NULL, 57, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4416, '2022-08-25', 408, 4253, 2028, 759, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4417, '2022-08-25', 168, 4254, 2028, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4418, '2022-08-25', 9, 4255, 2028, 8, '-13.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4419, '2022-08-25', 9, 4255, 2028, 282, '4.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 123, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4420, '2022-08-25', 9, 4255, 2028, 331, '10.0000', '250.0000', '250.0000', '400.0000', '400.0000', '8.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4421, '2022-08-25', 287, 4256, 2028, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4422, '2022-08-25', 312, 4257, 2029, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4423, '2022-08-25', 389, 4258, 2029, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4424, '2022-08-25', 220, 4259, 2029, 908, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4425, '2022-08-25', 231, 4260, 2030, 819, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4426, '2022-08-25', 19, 4261, 2030, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4427, '2022-08-25', 157, 4262, 2030, 138, '8.0000', '30.0000', '30.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4428, '2022-08-25', 163, 4263, 2030, 523, '3.0000', '75.0000', '75.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4429, '2022-08-25', 6, 4264, 2030, 676, '2.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4430, '2022-08-25', 292, 4265, 2030, 777, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4431, '2022-08-25', 74, 4266, 2030, 936, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4432, '2022-08-25', 80, 4267, 2030, 687, '2.0000', '70.0000', '70.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4433, '2022-08-25', 154, 4268, 2030, 629, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4434, '2022-08-25', 374, 4269, 2031, 615, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4435, '2022-08-25', 293, 4270, 2032, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4436, '2022-08-25', 413, 4271, 2033, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '36.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4437, '2022-08-26', 220, 4272, 2034, 959, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 207, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4438, '2022-08-26', 383, 4273, 2034, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '4.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4439, '2022-08-26', 284, 4274, 2034, 951, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4440, '2022-08-26', 352, 4275, 2035, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4441, '2022-08-26', 413, 4276, 2036, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '35.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4442, '2022-08-26', 459, 4277, 2036, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '42.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4443, '2022-08-26', 457, 4278, 2037, 909, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4444, '2022-08-26', 413, 4279, 2038, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '34.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4445, '2022-08-26', 459, 4280, 2038, 914, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4446, '2022-08-26', 271, 4281, 2039, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '29.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4447, '2022-08-26', 413, 4282, 2040, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '33.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4448, '2022-08-26', 377, 4283, 2041, 952, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4449, '2022-08-26', 383, 4284, 2041, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '3.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4450, '2022-08-26', 284, 4285, 2041, 951, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4451, '2022-08-26', 412, 4286, 2041, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '16.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4452, '2022-08-26', 293, 4287, 2042, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4453, '2022-08-26', 160, 4288, 2043, 953, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4454, '2022-08-26', 319, 4289, 2043, 838, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4455, '2022-08-26', 287, 4290, 2043, 806, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4456, '2022-08-26', 293, 4291, 2043, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4457, '2022-08-26', 389, 4292, 2043, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4458, '2022-08-26', 389, 4293, 2043, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4459, '2022-08-26', 3, 4294, 2043, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4460, '2022-08-26', 352, 4295, 2044, 943, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4461, '2022-08-26', 415, 4296, 2045, 821, '1.0000', '200.0000', '200.0000', '280.0000', '280.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4462, '2022-08-26', 454, 4297, 2046, 895, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4463, '2022-08-26', 394, 4298, 2047, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4464, '2022-08-26', 260, 4299, 2048, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '27.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4465, '2022-08-27', 195, 4300, 2049, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4466, '2022-08-27', 288, 4301, 2049, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4467, '2022-08-27', 461, 4302, 2049, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4468, '2022-08-27', 231, 4303, 2050, 819, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4469, '2022-08-27', 7, 4304, 2051, 956, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4470, '2022-08-27', 70, 4305, 2051, 64, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 10, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4471, '2022-08-27', 284, 4306, 2052, 951, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4472, '2022-08-27', 14, 4307, 2052, 920, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4473, '2022-08-27', 287, 4308, 2053, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4474, '2022-08-27', 260, 4309, 2053, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '26.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4475, '2022-08-27', 448, 4310, 2054, 881, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4476, '2022-08-27', 46, 4311, 2054, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4477, '2022-08-27', 49, 4312, 2054, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4478, '2022-08-27', 386, 4313, 2054, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4479, '2022-08-27', 429, 4314, 2055, 859, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4480, '2022-08-27', 325, 4315, 2055, 722, '1.0000', '1500.0000', '1500.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4481, '2022-08-27', 107, 4316, 2056, 794, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4482, '2022-08-27', 271, 4317, 2057, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '28.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4483, '2022-08-27', 163, 4318, 2058, 523, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4484, '2022-08-27', 108, 4319, 2059, 931, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4485, '2022-08-28', 116, 4320, 2060, 730, '2.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 178, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4486, '2022-08-28', 71, 4321, 2061, 870, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4487, '2022-08-28', 230, 4322, 2062, 728, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4488, '2022-08-28', 165, 4323, 2063, 916, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4489, '2022-08-28', 164, 4324, 2063, 876, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '15.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4490, '2022-08-28', 436, 4325, 2063, 866, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4491, '2022-08-28', 440, 4326, 2063, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4492, '2022-08-28', 391, 4327, 2063, 686, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4493, '2022-08-28', 453, 4328, 2064, 891, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4494, '2022-08-28', 393, 4329, 2064, 700, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4495, '2022-08-29', 271, 4330, 2065, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '27.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4496, '2022-08-29', 456, 4331, 2066, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4497, '2022-08-29', 168, 4332, 2067, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4498, '2022-08-29', 459, 4333, 2068, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '38.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4499, '2022-08-29', 162, 4334, 2069, 147, '-7.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4500, '2022-08-29', 162, 4334, 2069, 854, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4501, '2022-08-29', 162, 4334, 2069, 917, '8.0000', '400.0000', '400.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4502, '2022-08-29', 445, 4335, 2070, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '14.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4503, '2022-08-29', 269, 4336, 2071, 465, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4504, '2022-08-29', 271, 4337, 2071, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '26.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4505, '2022-08-29', 220, 4338, 2072, 959, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 207, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4506, '2022-08-29', 284, 4339, 2072, 951, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4507, '2022-08-30', 156, 4340, 2073, 736, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4508, '2022-08-30', 87, 4341, 2073, 78, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4509, '2022-08-30', 413, 4342, 2073, 913, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '31.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4510, '2022-08-30', 459, 4343, 2073, 914, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '36.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4511, '2022-08-30', 412, 4344, 2073, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4512, '2022-08-30', 426, 4345, 2073, 835, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4513, '2022-08-30', 464, 4346, 2074, 929, '1.0000', '250.0000', '250.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4514, '2022-08-30', 463, 4347, 2074, 928, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4515, '2022-08-30', 413, 4348, 2074, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '30.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4516, '2022-08-30', 459, 4349, 2074, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '35.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4517, '2022-08-30', 425, 4350, 2075, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '21.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4518, '2022-08-30', 459, 4351, 2075, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '34.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4519, '2022-08-30', 413, 4352, 2075, 913, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '28.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4520, '2022-08-30', 427, 4353, 2076, 857, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4521, '2022-08-30', 260, 4354, 2076, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '25.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4522, '2022-08-30', 46, 4355, 2077, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4523, '2022-08-30', 386, 4356, 2077, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4524, '2022-08-30', 220, 4357, 2078, 196, '-10.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4525, '2022-08-30', 220, 4357, 2078, 959, '5.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 207, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4526, '2022-08-30', 220, 4357, 2078, 981, '7.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4527, '2022-08-30', 220, 4357, 2078, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4528, '2022-08-30', 290, 4358, 2079, 647, '1.0000', '160.0000', '160.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4529, '2022-08-31', 160, 4359, 2080, 953, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4530, '2022-08-31', 220, 4360, 2080, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '18.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4531, '2022-08-31', 284, 4361, 2080, 966, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4532, '2022-08-31', 118, 4362, 2081, 111, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4533, '2022-08-31', 119, 4363, 2081, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '57.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4534, '2022-08-31', 102, 4364, 2082, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4535, '2022-08-31', 268, 4365, 2082, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4536, '2022-08-31', 220, 4366, 2082, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4537, '2022-09-01', 352, 4367, 2083, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4538, '2022-09-01', 107, 4368, 2084, 794, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4539, '2022-09-01', 271, 4369, 2084, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '25.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4540, '2022-09-01', 268, 4370, 2085, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4541, '2022-09-01', 458, 4371, 2086, 918, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4542, '2022-09-01', 458, 4372, 2087, 980, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4543, '2022-09-01', 153, 4373, 2088, 749, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4544, '2022-09-01', 394, 4374, 2089, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4545, '2022-09-02', 409, 4375, 2090, 760, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4546, '2022-09-02', 342, 4376, 2090, 790, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4547, '2022-09-02', 16, 4377, 2091, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4548, '2022-09-02', 385, 4378, 2091, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4549, '2022-09-02', 383, 4379, 2092, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '2.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4550, '2022-09-02', 282, 4380, 2092, 965, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4551, '2022-09-02', 3, 4381, 2093, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4552, '2022-09-02', 271, 4382, 2094, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '24.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4553, '2022-09-02', 220, 4383, 2094, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4554, '2022-09-02', 459, 4384, 2095, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '33.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4555, '2022-09-02', 274, 4385, 2096, 803, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4556, '2022-09-02', 389, 4386, 2097, 684, '4.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4557, '2022-09-02', 81, 4387, 2097, 72, '3.0000', '75.0000', '75.0000', '120.0000', '120.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4558, '2022-09-02', 455, 4388, 2097, 911, '2.0000', '110.0000', '110.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4559, '2022-09-02', 165, 4389, 2097, 916, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4560, '2022-09-02', 143, 4390, 2097, 785, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4561, '2022-09-02', 456, 4391, 2097, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4562, '2022-09-02', 458, 4392, 2097, 980, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4563, '2022-09-03', 268, 4393, 2098, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4564, '2022-09-03', 341, 4394, 2099, 924, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4565, '2022-09-03', 287, 4395, 2099, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4566, '2022-09-03', 213, 4396, 2099, 174, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4567, '2022-09-03', 270, 4397, 2100, 852, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '12.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4568, '2022-09-03', 153, 4398, 2101, 749, '2.0000', '250.0000', '250.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4569, '2022-09-03', 434, 4399, 2101, 864, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4570, '2022-09-03', 459, 4400, 2102, 914, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '31.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4571, '2022-09-03', 85, 4401, 2102, 532, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4572, '2022-09-03', 83, 4402, 2102, 74, '1.0000', '400.0000', '400.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4573, '2022-09-03', 88, 4403, 2102, 79, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4574, '2022-09-03', 271, 4404, 2103, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '23.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4575, '2022-09-03', 394, 4405, 2104, 784, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4576, '2022-09-03', 464, 4406, 2105, 929, '1.0000', '250.0000', '250.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4577, '2022-09-03', 287, 4407, 2105, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4578, '2022-09-04', 163, 4408, 2106, 523, '12.0000', '75.0000', '75.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4579, '2022-09-04', 271, 4409, 2107, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '21.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4580, '2022-09-04', 200, 4410, 2108, 178, '-2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 51, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4581, '2022-09-04', 200, 4410, 2108, 938, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4582, '2022-09-04', 200, 4410, 2108, 968, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4583, '2022-09-04', 386, 4411, 2109, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4584, '2022-09-04', 282, 4412, 2110, 965, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4585, '2022-09-04', 284, 4413, 2110, 966, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4586, '2022-09-04', 377, 4414, 2110, 952, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4587, '2022-09-04', 220, 4415, 2111, 984, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4588, '2022-09-04', 287, 4416, 2112, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4589, '2022-09-04', 385, 4417, 2112, 680, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4590, '2022-09-05', 9, 4418, 2113, 331, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '7.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4591, '2022-09-05', 352, 4419, 2113, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4592, '2022-09-05', 445, 4420, 2114, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '13.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4593, '2022-09-05', 16, 4421, 2114, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4594, '2022-09-05', 385, 4422, 2115, 781, '4.0000', '150.0000', '150.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4595, '2022-09-05', 229, 4423, 2116, 197, '1.0000', '1300.0000', '1300.0000', '1650.0000', '1650.0000', '1.0000', 1, 0, NULL, 64, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4596, '2022-09-05', 233, 4424, 2116, 203, '1.0000', '500.0000', '500.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 68, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4597, '2022-09-05', 441, 4425, 2117, 869, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4598, '2022-09-05', 317, 4426, 2118, 899, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4599, '2022-09-05', 425, 4427, 2118, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '20.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4600, '2022-09-05', 19, 4428, 2119, 24, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4601, '2022-09-05', 90, 4429, 2119, 345, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4602, '2022-09-06', 135, 4430, 2120, 993, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4603, '2022-09-06', 115, 4431, 2120, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4604, '2022-09-06', 352, 4432, 2121, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4605, '2022-09-06', 160, 4433, 2121, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4606, '2022-09-06', 406, 4434, 2121, 757, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4607, '2022-09-06', 383, 4435, 2121, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4608, '2022-09-06', 459, 4436, 2122, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4609, '2022-09-06', 66, 4437, 2122, 893, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4610, '2022-09-06', 143, 4438, 2122, 982, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4611, '2022-09-06', 269, 4439, 2123, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4612, '2022-09-06', 461, 4440, 2124, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4613, '2022-09-06', 293, 4441, 2124, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4614, '2022-09-06', 274, 4442, 2125, 803, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4615, '2022-09-06', 341, 4443, 2125, 924, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4616, '2022-09-06', 296, 4444, 2125, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '49.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4617, '2022-09-06', 100, 4445, 2126, 799, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4618, '2022-09-07', 293, 4446, 2127, 950, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4619, '2022-09-07', 412, 4447, 2128, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4620, '2022-09-07', 413, 4448, 2128, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '27.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4621, '2022-09-07', 459, 4449, 2128, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '29.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4622, '2022-09-07', 268, 4450, 2129, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4623, '2022-09-07', 410, 4451, 2129, 962, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4624, '2022-09-08', 124, 4452, 2130, 120, '2.0000', '750.0000', '750.0000', '1150.0000', '1150.0000', '4.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4625, '2022-09-08', 220, 4453, 2130, 984, '5.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4626, '2022-09-08', 170, 4454, 2131, 611, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4627, '2022-09-08', 166, 4455, 2131, 872, '1.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '12.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4628, '2022-09-08', 377, 4456, 2131, 952, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4629, '2022-09-08', 383, 4457, 2131, 788, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4630, '2022-09-08', 143, 4458, 2131, 982, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4631, '2022-09-08', 220, 4459, 2131, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4632, '2022-09-08', 341, 4460, 2131, 924, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4633, '2022-09-08', 287, 4461, 2131, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4634, '2022-09-08', 386, 4462, 2132, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4635, '2022-09-08', 293, 4463, 2132, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4636, '2022-09-08', 297, 4464, 2132, 690, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4637, '2022-09-08', 410, 4465, 2133, 962, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4638, '2022-09-08', 269, 4466, 2133, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '18.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4639, '2022-09-08', 458, 4467, 2134, 980, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4640, '2022-09-08', 458, 4468, 2135, 980, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4641, '2022-09-08', 186, 4469, 2135, 877, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4642, '2022-09-08', 268, 4470, 2136, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4643, '2022-09-08', 410, 4471, 2136, 962, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4644, '2022-09-08', 342, 4472, 2136, 790, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4645, '2022-09-09', 107, 4473, 2137, 969, '1.0000', '160.0000', '160.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4646, '2022-09-09', 411, 4474, 2138, 907, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4647, '2022-09-09', 271, 4475, 2138, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '20.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4648, '2022-09-09', 410, 4476, 2138, 962, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4649, '2022-09-09', 425, 4477, 2139, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '18.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4650, '2022-09-09', 459, 4478, 2139, 914, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4651, '2022-09-09', 413, 4479, 2139, 913, '4.0000', '100.0000', '100.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4652, '2022-09-09', 394, 4480, 2140, 784, '5.0000', '70.0000', '70.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4653, '2022-09-09', 425, 4481, 2140, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '16.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4654, '2022-09-09', 426, 4482, 2140, 835, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4655, '2022-09-09', 459, 4483, 2140, 914, '5.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4656, '2022-09-09', 348, 4484, 2140, 888, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4657, '2022-09-09', 434, 4485, 2140, 864, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4658, '2022-09-09', 342, 4486, 2140, 832, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4659, '2022-09-09', 355, 4487, 2141, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4660, '2022-09-09', 458, 4488, 2141, 980, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4661, '2022-09-09', 143, 4489, 2141, 982, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4662, '2022-09-09', 408, 4490, 2141, 991, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4663, '2022-09-09', 268, 4491, 2141, 267, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4664, '2022-09-09', 11, 4492, 2142, 1004, '2.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4665, '2022-09-09', 352, 4493, 2142, 943, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4666, '2022-09-09', 352, 4493, 2142, 1005, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4667, '2022-09-09', 136, 4494, 2143, 466, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '1.0000', 1, 0, NULL, 146, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4668, '2022-09-09', 383, 4495, 2144, 967, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4669, '2022-09-09', 380, 4496, 2144, 658, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4670, '2022-09-09', 268, 4497, 2145, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4671, '2022-09-09', 268, 4498, 2146, 267, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4672, '2022-09-09', 410, 4499, 2147, 962, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4673, '2022-09-09', 271, 4500, 2148, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '19.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4674, '2022-09-09', 220, 4501, 2148, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4675, '2022-09-09', 389, 4502, 2149, 684, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4676, '2022-09-09', 220, 4503, 2150, 984, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4677, '2022-09-09', 383, 4504, 2150, 967, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4678, '2022-09-09', 383, 4504, 2150, 970, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 210, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4679, '2022-09-09', 284, 4505, 2150, 966, '2.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4680, '2022-09-09', 8, 4506, 2150, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4681, '2022-09-09', 156, 4507, 2151, 736, '1.0000', '185.0000', '185.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4682, '2022-09-09', 220, 4508, 2151, 984, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4683, '2022-09-10', 410, 4509, 2152, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '94.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4684, '2022-09-10', 410, 4510, 2153, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '93.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4685, '2022-09-10', 377, 4511, 2153, 1006, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4686, '2022-09-10', 46, 4512, 2154, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4687, '2022-09-10', 386, 4513, 2154, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4688, '2022-09-10', 269, 4514, 2155, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4689, '2022-09-10', 16, 4515, 2156, 925, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4690, '2022-09-10', 293, 4516, 2156, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4691, '2022-09-10', 458, 4517, 2157, 980, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4692, '2022-09-10', 458, 4518, 2158, 980, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4693, '2022-09-10', 93, 4519, 2158, 847, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4694, '2022-09-10', 454, 4520, 2158, 895, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4695, '2022-09-10', 458, 4521, 2159, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4696, '2022-09-10', 147, 4522, 2160, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '13.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4697, '2022-09-10', 317, 4523, 2160, 899, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4698, '2022-09-10', 459, 4524, 2160, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4699, '2022-09-10', 220, 4525, 2161, 984, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4700, '2022-09-10', 274, 4526, 2162, 803, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4701, '2022-09-10', 312, 4527, 2163, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4702, '2022-09-10', 385, 4528, 2163, 781, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4703, '2022-09-10', 411, 4529, 2164, 907, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4704, '2022-09-10', 383, 4530, 2164, 994, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '9.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4705, '2022-09-10', 341, 4531, 2165, 924, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4706, '2022-09-10', 341, 4532, 2166, 924, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4707, '2022-09-10', 355, 4533, 2166, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4708, '2022-09-10', 268, 4534, 2167, 267, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4709, '2022-09-10', 268, 4534, 2167, 464, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4710, '2022-09-10', 271, 4535, 2167, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '18.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4711, '2022-09-10', 410, 4536, 2167, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '91.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4712, '2022-09-10', 220, 4537, 2167, 984, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 213, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4713, '2022-09-10', 220, 4537, 2167, 1003, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4714, '2022-09-10', 220, 4538, 2168, 1003, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4715, '2022-09-11', 145, 4539, 2169, 436, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4716, '2022-09-11', 8, 4540, 2170, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4717, '2022-09-11', 410, 4541, 2170, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '89.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4718, '2022-09-11', 269, 4542, 2170, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4719, '2022-09-11', 220, 4543, 2170, 1003, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4720, '2022-09-11', 425, 4544, 2170, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4721, '2022-09-11', 170, 4545, 2171, 849, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 198, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4722, '2022-09-11', 297, 4546, 2172, 690, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4723, '2022-09-11', 297, 4546, 2172, 845, '9.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4724, '2022-09-11', 297, 4547, 2173, 845, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4725, '2022-09-11', 385, 4548, 2174, 781, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4726, '2022-09-11', 386, 4549, 2174, 844, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4727, '2022-09-11', 386, 4549, 2174, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4728, '2022-09-11', 362, 4550, 2174, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '6.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4729, '2022-09-11', 46, 4551, 2174, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4730, '2022-09-11', 315, 4552, 2174, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4731, '2022-09-11', 362, 4553, 2175, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '5.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4732, '2022-09-11', 386, 4554, 2176, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4733, '2022-09-11', 119, 4555, 2177, 341, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '55.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4734, '2022-09-11', 413, 4556, 2178, 913, '5.0000', '100.0000', '100.0000', '150.0000', '150.0000', '18.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4735, '2022-09-12', 458, 4557, 2179, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4736, '2022-09-12', 46, 4558, 2180, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4737, '2022-09-12', 386, 4559, 2180, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4738, '2022-09-12', 268, 4560, 2180, 464, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4739, '2022-09-12', 9, 4561, 2181, 8, '-1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4740, '2022-09-12', 9, 4561, 2181, 331, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '5.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4741, '2022-09-12', 195, 4562, 2181, 810, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4742, '2022-09-12', 164, 4563, 2182, 876, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '14.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4743, '2022-09-12', 440, 4564, 2182, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4744, '2022-09-12', 145, 4565, 2183, 436, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4745, '2022-09-12', 293, 4566, 2184, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4746, '2022-09-12', 458, 4567, 2185, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4747, '2022-09-12', 16, 4568, 2186, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '9.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4748, '2022-09-12', 8, 4569, 2187, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4749, '2022-09-12', 385, 4570, 2188, 781, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4750, '2022-09-12', 458, 4571, 2189, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4751, '2022-09-12', 268, 4572, 2189, 464, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4752, '2022-09-12', 355, 4573, 2190, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4753, '2022-09-12', 455, 4574, 2191, 911, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4754, '2022-09-13', 220, 4575, 2192, 1003, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4755, '2022-09-13', 383, 4576, 2192, 994, '2.0000', '45.0000', '45.0000', '130.0000', '130.0000', '7.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4756, '2022-09-13', 458, 4577, 2193, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4757, '2022-09-13', 281, 4578, 2194, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4758, '2022-09-13', 239, 4579, 2195, 828, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4759, '2022-09-13', 389, 4580, 2195, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4760, '2022-09-13', 271, 4581, 2196, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '17.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4761, '2022-09-13', 427, 4582, 2197, 857, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4762, '2022-09-13', 386, 4583, 2197, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4763, '2022-09-13', 268, 4584, 2198, 464, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4764, '2022-09-13', 271, 4585, 2198, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '15.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4765, '2022-09-13', 410, 4586, 2198, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '88.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4766, '2022-09-13', 410, 4587, 2199, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '86.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4767, '2022-09-13', 411, 4588, 2200, 907, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4768, '2022-09-14', 7, 4589, 2201, 1022, '1.0000', '1875.0000', '1875.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 222, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4769, '2022-09-14', 268, 4590, 2202, 464, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4770, '2022-09-15', 160, 4591, 2203, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4771, '2022-09-15', 220, 4592, 2203, 1003, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4772, '2022-09-15', 383, 4593, 2203, 994, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '6.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4773, '2022-09-15', 93, 4594, 2204, 847, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4774, '2022-09-15', 458, 4595, 2205, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4775, '2022-09-15', 214, 4596, 2206, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4776, '2022-09-15', 412, 4597, 2207, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4777, '2022-09-15', 410, 4598, 2208, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '84.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4778, '2022-09-15', 282, 4599, 2209, 965, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4779, '2022-09-15', 231, 4600, 2209, 819, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4780, '2022-09-15', 458, 4601, 2210, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4781, '2022-09-15', 33, 4602, 2210, 32, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4782, '2022-09-16', 231, 4603, 2211, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4783, '2022-09-16', 239, 4604, 2212, 1018, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4784, '2022-09-16', 220, 4605, 2213, 1003, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4785, '2022-09-16', 220, 4605, 2213, 1012, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 220, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4786, '2022-09-16', 389, 4606, 2214, 684, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4787, '2022-09-16', 220, 4607, 2215, 1012, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 220, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4788, '2022-09-16', 269, 4608, 2216, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '15.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4789, '2022-09-16', 410, 4609, 2216, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '83.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4790, '2022-09-16', 271, 4610, 2216, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '14.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4791, '2022-09-16', 16, 4611, 2217, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4792, '2022-09-16', 293, 4612, 2217, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4793, '2022-09-16', 49, 4613, 2217, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4794, '2022-09-16', 3, 4614, 2217, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4795, '2022-09-16', 214, 4615, 2217, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4796, '2022-09-16', 386, 4616, 2217, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4797, '2022-09-16', 35, 4617, 2217, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4798, '2022-09-16', 385, 4618, 2217, 781, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4799, '2022-09-16', 160, 4619, 2218, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4800, '2022-09-16', 410, 4620, 2218, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '81.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4801, '2022-09-16', 385, 4621, 2219, 781, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 190, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4802, '2022-09-16', 385, 4621, 2219, 947, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4803, '2022-09-16', 386, 4622, 2219, 948, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4804, '2022-09-16', 458, 4623, 2220, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4805, '2022-09-16', 355, 4624, 2220, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4806, '2022-09-16', 386, 4625, 2221, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4807, '2022-09-16', 168, 4626, 2221, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4808, '2022-09-17', 410, 4627, 2222, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '80.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4809, '2022-09-17', 268, 4628, 2223, 464, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4810, '2022-09-17', 220, 4629, 2224, 1012, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 220, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4811, '2022-09-17', 175, 4630, 2225, 1062, '2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4812, '2022-09-17', 93, 4631, 2225, 847, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4813, '2022-09-17', 74, 4632, 2225, 936, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4814, '2022-09-17', 292, 4633, 2225, 777, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 188, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4815, '2022-09-17', 170, 4634, 2225, 862, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4816, '2022-09-17', 269, 4635, 2226, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4817, '2022-09-17', 271, 4636, 2226, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '13.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4818, '2022-09-17', 220, 4637, 2226, 1012, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 220, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4819, '2022-09-17', 410, 4638, 2226, 998, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '77.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4820, '2022-09-17', 268, 4639, 2227, 464, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4821, '2022-09-17', 136, 4640, 2227, 466, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 146, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4822, '2022-09-17', 386, 4641, 2227, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4823, '2022-09-17', 168, 4642, 2227, 886, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4824, '2022-09-17', 411, 4643, 2227, 1023, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4825, '2022-09-17', 467, 4644, 2228, 1030, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4826, '2022-09-17', 6, 4645, 2228, 676, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4827, '2022-09-17', 175, 4646, 2229, 1062, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4828, '2022-09-17', 293, 4647, 2229, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4829, '2022-09-17', 467, 4648, 2230, 1030, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4830, '2022-09-17', 165, 4649, 2230, 916, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4831, '2022-09-17', 162, 4650, 2230, 147, '-7.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4832, '2022-09-17', 162, 4650, 2230, 917, '7.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4833, '2022-09-17', 162, 4650, 2230, 1061, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4834, '2022-09-17', 163, 4651, 2230, 523, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4835, '2022-09-17', 33, 4652, 2230, 32, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4836, '2022-09-17', 268, 4653, 2230, 774, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4837, '2022-09-17', 269, 4654, 2230, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4838, '2022-09-17', 410, 4655, 2230, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '75.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4839, '2022-09-17', 410, 4656, 2231, 998, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '72.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4840, '2022-09-18', 141, 4657, 2232, 983, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4841, '2022-09-18', 94, 4658, 2232, 802, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4842, '2022-09-18', 16, 4659, 2232, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4843, '2022-09-18', 153, 4660, 2233, 749, '4.0000', '250.0000', '250.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4844, '2022-09-18', 410, 4661, 2233, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '70.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4845, '2022-09-18', 292, 4662, 2234, 946, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4846, '2022-09-18', 458, 4663, 2235, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4847, '2022-09-18', 88, 4664, 2236, 79, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4848, '2022-09-18', 413, 4665, 2236, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4849, '2022-09-18', 459, 4666, 2236, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4850, '2022-09-18', 458, 4667, 2236, 1010, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4851, '2022-09-18', 458, 4667, 2236, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4852, '2022-09-18', 274, 4668, 2236, 803, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4853, '2022-09-18', 458, 4669, 2237, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4854, '2022-09-18', 393, 4670, 2238, 700, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 175, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4855, '2022-09-18', 44, 4671, 2238, 44, '1.0000', '450.0000', '450.0000', '900.0000', '900.0000', '2.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4856, '2022-09-18', 343, 4672, 2239, 534, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4857, '2022-09-18', 285, 4673, 2239, 563, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4858, '2022-09-18', 230, 4674, 2239, 728, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 177, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4859, '2022-09-18', 160, 4675, 2239, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4860, '2022-09-18', 470, 4676, 2240, 1035, '1.0000', '1800.0000', '1800.0000', '2500.0000', '2500.0000', '9.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4861, '2022-09-19', 458, 4677, 2241, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4862, '2022-09-19', 355, 4678, 2241, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4863, '2022-09-19', 65, 4679, 2241, 15, '-7.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4864, '2022-09-19', 65, 4679, 2241, 425, '5.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4865, '2022-09-19', 65, 4679, 2241, 506, '2.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4866, '2022-09-19', 65, 4679, 2241, 1052, '1.0000', '450.0000', '450.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4867, '2022-09-19', 293, 4680, 2242, 950, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4868, '2022-09-19', 3, 4681, 2242, 780, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4869, '2022-09-19', 220, 4682, 2242, 1012, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 220, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4870, '2022-09-19', 160, 4683, 2242, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4871, '2022-09-19', 410, 4684, 2243, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '69.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4872, '2022-09-19', 165, 4685, 2244, 150, '-2.0000', '1350.0000', '1350.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4873, '2022-09-19', 165, 4685, 2244, 916, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4874, '2022-09-19', 165, 4685, 2244, 1028, '2.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '28.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4875, '2022-09-19', 292, 4686, 2244, 946, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4876, '2022-09-19', 175, 4687, 2244, 1062, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4877, '2022-09-19', 93, 4688, 2244, 847, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4878, '2022-09-19', 165, 4689, 2245, 1028, '3.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '25.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4879, '2022-09-19', 292, 4690, 2245, 946, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4880, '2022-09-19', 292, 4690, 2245, 1002, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4881, '2022-09-19', 46, 4691, 2246, 889, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4882, '2022-09-19', 386, 4692, 2246, 948, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4883, '2022-09-19', 287, 4693, 2246, 311, '-1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4884, '2022-09-19', 287, 4693, 2246, 949, '3.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4885, '2022-09-19', 42, 4694, 2246, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4886, '2022-09-19', 43, 4695, 2246, 43, '-11.0000', '130.0000', '130.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4887, '2022-09-19', 43, 4695, 2246, 259, '6.0000', '130.0000', '130.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 110, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4888, '2022-09-19', 43, 4695, 2246, 606, '5.0000', '130.0000', '130.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4889, '2022-09-19', 43, 4695, 2246, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4890, '2022-09-19', 148, 4696, 2247, 462, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4891, '2022-09-19', 115, 4697, 2247, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4892, '2022-09-19', 427, 4698, 2247, 857, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4893, '2022-09-19', 293, 4699, 2248, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4894, '2022-09-19', 220, 4700, 2249, 1012, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 220, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4895, '2022-09-20', 410, 4701, 2250, 998, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '66.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4896, '2022-09-20', 271, 4702, 2250, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '12.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4897, '2022-09-20', 293, 4703, 2251, 950, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4898, '2022-09-20', 293, 4703, 2251, 979, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4899, '2022-09-20', 3, 4704, 2251, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4900, '2022-09-20', 271, 4705, 2252, 773, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '10.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4901, '2022-09-20', 220, 4706, 2252, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4902, '2022-09-21', 220, 4707, 2253, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '18.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4903, '2022-09-21', 410, 4708, 2253, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '65.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4904, '2022-09-21', 271, 4709, 2253, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '9.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4905, '2022-09-21', 220, 4710, 2254, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4906, '2022-09-21', 410, 4711, 2254, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '64.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4907, '2022-09-21', 42, 4712, 2255, 894, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4908, '2022-09-21', 458, 4713, 2256, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4909, '2022-09-22', 410, 4714, 2257, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '63.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4910, '2022-09-22', 268, 4715, 2257, 774, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4911, '2022-09-22', 220, 4716, 2257, 1058, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '15.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4912, '2022-09-22', 410, 4717, 2258, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '62.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4913, '2022-09-22', 271, 4718, 2258, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4914, '2022-09-22', 380, 4719, 2258, 658, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4915, '2022-09-22', 220, 4720, 2258, 1058, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4916, '2022-09-22', 322, 4721, 2259, 404, '1.0000', '4500.0000', '4500.0000', '6000.0000', '6000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4917, '2022-09-22', 5, 4722, 2259, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4918, '2022-09-22', 463, 4723, 2260, 928, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4919, '2022-09-23', 388, 4724, 2261, 683, '2.0000', '550.0000', '550.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4920, '2022-09-23', 165, 4725, 2261, 1028, '2.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '23.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4921, '2022-09-23', 458, 4726, 2261, 1060, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4922, '2022-09-23', 164, 4727, 2262, 876, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '12.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4923, '2022-09-23', 43, 4728, 2263, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4924, '2022-09-23', 287, 4729, 2263, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4925, '2022-09-23', 42, 4730, 2263, 1045, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4926, '2022-09-23', 71, 4731, 2264, 870, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4927, '2022-09-23', 458, 4732, 2265, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4928, '2022-09-23', 390, 4733, 2266, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4929, '2022-09-23', 464, 4734, 2267, 929, '1.0000', '250.0000', '250.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4930, '2022-09-23', 195, 4735, 2268, 810, '2.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 193, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4931, '2022-09-23', 9, 4736, 2268, 8, '-2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4932, '2022-09-23', 9, 4736, 2268, 331, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4933, '2022-09-23', 287, 4737, 2268, 949, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4934, '2022-09-23', 93, 4738, 2268, 847, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4935, '2022-09-24', 11, 4739, 2269, 1004, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4936, '2022-09-24', 352, 4740, 2269, 1005, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4937, '2022-09-24', 209, 4741, 2269, 167, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 40, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4938, '2022-09-24', 42, 4742, 2269, 1045, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4939, '2022-09-24', 43, 4743, 2269, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4940, '2022-09-24', 287, 4744, 2269, 988, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4941, '2022-09-24', 482, 4745, 2270, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4943, '2022-09-24', 108, 4747, 2272, 931, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4944, '2022-09-24', 410, 4748, 2273, 998, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '58.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4945, '2022-09-24', 269, 4749, 2273, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4946, '2022-09-24', 268, 4750, 2273, 774, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4947, '2022-09-24', 165, 4751, 2274, 150, '-2.0000', '1350.0000', '1350.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4948, '2022-09-24', 165, 4751, 2274, 1028, '3.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '20.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4949, '2022-09-24', 388, 4752, 2274, 683, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4950, '2022-09-24', 162, 4753, 2274, 1061, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4951, '2022-09-24', 93, 4754, 2274, 847, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4952, '2022-09-24', 85, 4755, 2274, 532, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4953, '2022-09-24', 459, 4756, 2274, 914, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4954, '2022-09-24', 42, 4757, 2274, 1045, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4955, '2022-09-24', 293, 4758, 2274, 979, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4956, '2022-09-24', 461, 4759, 2274, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4957, '2022-09-24', 392, 4760, 2275, 688, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4958, '2022-09-24', 264, 4761, 2275, 960, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 208, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4959, '2022-09-24', 5, 4762, 2275, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4960, '2022-09-24', 468, 4763, 2275, 1033, '1.0000', '4500.0000', '4500.0000', '6000.0000', '6000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4961, '2022-09-24', 310, 4764, 2275, 1032, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4962, '2022-09-24', 438, 4765, 2275, 1031, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4963, '2022-09-24', 165, 4766, 2276, 1028, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '19.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4964, '2022-09-24', 160, 4767, 2276, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4965, '2022-09-24', 410, 4768, 2277, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '57.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4966, '2022-09-24', 220, 4769, 2277, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '12.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4967, '2022-09-25', 458, 4770, 2278, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4968, '2022-09-25', 220, 4771, 2279, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4969, '2022-09-25', 239, 4772, 2280, 1018, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4970, '2022-09-25', 389, 4773, 2280, 975, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4971, '2022-09-25', 268, 4774, 2280, 774, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4972, '2022-09-25', 410, 4775, 2280, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '56.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4973, '2022-09-25', 143, 4776, 2281, 982, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4974, '2022-09-25', 231, 4777, 2281, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4975, '2022-09-25', 149, 4778, 2281, 134, '-1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4976, '2022-09-25', 149, 4778, 2281, 461, '2.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4977, '2022-09-25', 396, 4779, 2281, 705, '-1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4978, '2022-09-25', 396, 4779, 2281, 813, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4979, '2022-09-25', 43, 4780, 2281, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4980, '2022-09-25', 287, 4781, 2281, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4981, '2022-09-25', 410, 4782, 2281, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '54.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4982, '2022-09-25', 268, 4783, 2282, 774, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4983, '2022-09-25', 214, 4784, 2283, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4984, '2022-09-25', 413, 4785, 2283, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4985, '2022-09-26', 293, 4786, 2284, 979, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4986, '2022-09-26', 11, 4787, 2285, 1019, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4987, '2022-09-26', 458, 4788, 2286, 1060, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4988, '2022-09-26', 458, 4789, 2287, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4989, '2022-09-26', 355, 4790, 2288, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4990, '2022-09-26', 264, 4791, 2289, 960, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 208, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4991, '2022-09-26', 80, 4792, 2289, 989, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4992, '2022-09-26', 268, 4793, 2290, 774, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4993, '2022-09-26', 268, 4793, 2290, 850, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4994, '2022-09-26', 410, 4794, 2290, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '52.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4995, '2022-09-26', 456, 4795, 2291, 910, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4996, '2022-09-26', 455, 4796, 2292, 911, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4997, '2022-09-26', 467, 4797, 2293, 1030, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4998, '2022-09-26', 9, 4798, 2294, 331, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (4999, '2022-09-27', 410, 4799, 2295, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '51.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5000, '2022-09-27', 271, 4800, 2295, 773, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5001, '2022-09-27', 287, 4801, 2296, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5002, '2022-09-27', 342, 4802, 2297, 832, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5003, '2022-09-27', 153, 4803, 2298, 749, '2.0000', '250.0000', '250.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5004, '2022-09-27', 393, 4804, 2298, 846, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5005, '2022-09-27', 385, 4805, 2298, 947, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5006, '2022-09-27', 279, 4806, 2299, 297, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5007, '2022-09-27', 268, 4807, 2300, 850, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5008, '2022-09-27', 270, 4808, 2300, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '11.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5009, '2022-09-27', 268, 4809, 2301, 850, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5010, '2022-09-27', 270, 4810, 2301, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '10.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5011, '2022-09-27', 220, 4811, 2301, 1058, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5012, '2022-09-27', 160, 4812, 2302, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5013, '2022-09-27', 282, 4813, 2302, 965, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5014, '2022-09-27', 379, 4814, 2302, 659, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5015, '2022-09-27', 411, 4815, 2302, 1023, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5016, '2022-09-28', 383, 4816, 2303, 994, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '5.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5017, '2022-09-28', 42, 4817, 2304, 1045, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5018, '2022-09-28', 413, 4818, 2305, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '15.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5019, '2022-09-29', 220, 4819, 2306, 1058, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5020, '2022-09-29', 436, 4820, 2307, 866, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5021, '2022-09-29', 162, 4821, 2308, 1061, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5022, '2022-09-29', 93, 4822, 2308, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '19.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5023, '2022-09-29', 379, 4823, 2308, 659, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5024, '2022-09-29', 380, 4824, 2309, 1069, '2.0000', '100.0000', '100.0000', '190.0000', '190.0000', '8.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5025, '2022-09-29', 383, 4825, 2309, 994, '2.0000', '45.0000', '45.0000', '130.0000', '130.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5026, '2022-09-29', 231, 4826, 2309, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5027, '2022-09-29', 456, 4827, 2309, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5028, '2022-09-29', 268, 4828, 2309, 850, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5029, '2022-09-29', 268, 4829, 2310, 850, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5030, '2022-09-29', 8, 4830, 2311, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5031, '2022-09-29', 268, 4831, 2312, 850, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5032, '2022-09-29', 143, 4832, 2313, 982, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5033, '2022-09-29', 268, 4833, 2313, 850, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5034, '2022-09-29', 408, 4834, 2313, 991, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5035, '2022-09-29', 379, 4835, 2314, 659, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5036, '2022-09-30', 410, 4836, 2315, 998, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '48.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5037, '2022-09-30', 164, 4837, 2316, 155, '-2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5038, '2022-09-30', 164, 4837, 2316, 876, '4.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5039, '2022-09-30', 143, 4838, 2316, 1007, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5040, '2022-09-30', 141, 4839, 2317, 983, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 212, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5041, '2022-09-30', 88, 4840, 2318, 79, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5042, '2022-09-30', 425, 4841, 2318, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '13.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5043, '2022-09-30', 268, 4842, 2319, 961, '7.0000', '170.0000', '170.0000', '200.0000', '200.0000', '25.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5044, '2022-09-30', 269, 4843, 2319, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5045, '2022-09-30', 270, 4844, 2319, 852, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5046, '2022-09-30', 410, 4845, 2319, 998, '6.0000', '35.0000', '35.0000', '50.0000', '50.0000', '42.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5047, '2022-09-30', 165, 4846, 2319, 1028, '2.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '17.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5048, '2022-09-30', 46, 4847, 2320, 1055, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5049, '2022-09-30', 386, 4848, 2320, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '19.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5050, '2022-09-30', 288, 4849, 2320, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5051, '2022-09-30', 194, 4850, 2320, 280, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 121, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5052, '2022-09-30', 377, 4851, 2321, 1011, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5053, '2022-09-30', 271, 4852, 2322, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5054, '2022-09-30', 220, 4853, 2323, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5055, '2022-09-30', 220, 4854, 2324, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5056, '2022-09-30', 410, 4855, 2324, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '41.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5057, '2022-09-30', 383, 4856, 2324, 994, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '2.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5058, '2022-09-30', 143, 4857, 2324, 1007, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5059, '2022-09-30', 200, 4858, 2325, 968, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5060, '2022-09-30', 8, 4859, 2325, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5061, '2022-09-30', 342, 4860, 2326, 832, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5063, '2022-10-01', 284, 4862, 2328, 966, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5064, '2022-10-01', 164, 4863, 2329, 876, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5065, '2022-10-01', 390, 4864, 2329, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5066, '2022-10-01', 388, 4865, 2329, 978, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5067, '2022-10-01', 428, 4866, 2329, 858, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5068, '2022-10-01', 282, 4867, 2329, 1068, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '9.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5069, '2022-10-01', 425, 4868, 2329, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '12.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5070, '2022-10-01', 268, 4869, 2330, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5071, '2022-10-01', 220, 4870, 2330, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5072, '2022-10-01', 282, 4871, 2331, 1068, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '8.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5073, '2022-10-01', 410, 4872, 2332, 998, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '37.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5074, '2022-10-01', 380, 4873, 2333, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5075, '2022-10-01', 383, 4874, 2333, 994, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5076, '2022-10-01', 458, 4875, 2334, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5077, '2022-10-01', 355, 4876, 2334, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5078, '2022-10-01', 293, 4877, 2334, 979, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5079, '2022-10-01', 425, 4878, 2334, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '11.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5080, '2022-10-01', 380, 4879, 2335, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '6.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5081, '2022-10-02', 268, 4880, 2336, 961, '7.0000', '170.0000', '170.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5082, '2022-10-02', 410, 4881, 2336, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '36.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5083, '2022-10-02', 385, 4882, 2337, 947, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5084, '2022-10-02', 456, 4883, 2337, 910, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5085, '2022-10-02', 410, 4884, 2337, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '35.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5086, '2022-10-02', 375, 4885, 2338, 617, '1.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5087, '2022-10-02', 410, 4886, 2338, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '34.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5088, '2022-10-02', 42, 4887, 2339, 1045, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5089, '2022-10-02', 288, 4888, 2339, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5090, '2022-10-02', 413, 4889, 2339, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5091, '2022-10-03', 431, 4890, 2340, 887, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5092, '2022-10-03', 145, 4891, 2340, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5093, '2022-10-03', 93, 4892, 2341, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '18.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5094, '2022-10-03', 268, 4893, 2341, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5095, '2022-10-03', 165, 4894, 2342, 1028, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '16.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5096, '2022-10-03', 292, 4895, 2342, 1002, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5097, '2022-10-03', 411, 4896, 2343, 1023, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5098, '2022-10-04', 268, 4897, 2344, 961, '5.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5099, '2022-10-04', 410, 4898, 2345, 998, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '30.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5100, '2022-10-05', 108, 4899, 2346, 931, '3.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5101, '2022-10-05', 109, 4900, 2346, 641, '1.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '1.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5102, '2022-10-05', 312, 4901, 2347, 898, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5103, '2022-10-05', 315, 4902, 2347, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5104, '2022-10-05', 43, 4903, 2347, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5105, '2022-10-05', 287, 4904, 2347, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5106, '2022-10-05', 268, 4905, 2348, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5107, '2022-10-05', 411, 4906, 2349, 1091, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5108, '2022-10-05', 473, 4907, 2350, 1041, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5109, '2022-10-05', 461, 4908, 2351, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5110, '2022-10-05', 293, 4909, 2351, 979, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5111, '2022-10-05', 220, 4910, 2351, 1058, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5112, '2022-10-05', 383, 4911, 2351, 994, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5113, '2022-10-05', 282, 4912, 2351, 1068, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5114, '2022-10-05', 413, 4913, 2351, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5115, '2022-10-06', 231, 4914, 2352, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5116, '2022-10-06', 305, 4915, 2353, 365, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5117, '2022-10-06', 385, 4916, 2353, 947, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5118, '2022-10-06', 370, 4917, 2353, 608, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 164, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5119, '2022-10-06', 231, 4918, 2353, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5120, '2022-10-06', 220, 4919, 2354, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5121, '2022-10-06', 268, 4920, 2355, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5122, '2022-10-06', 220, 4921, 2355, 1058, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5123, '2022-10-06', 297, 4922, 2356, 1075, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '20.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5124, '2022-10-06', 385, 4923, 2357, 947, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5125, '2022-10-06', 153, 4924, 2357, 749, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 183, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5126, '2022-10-06', 153, 4924, 2357, 985, '2.0000', '250.0000', '250.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5127, '2022-10-06', 230, 4925, 2358, 1080, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5128, '2022-10-06', 226, 4926, 2358, 1084, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5129, '2022-10-06', 42, 4927, 2359, 1045, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5130, '2022-10-06', 43, 4928, 2359, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5131, '2022-10-06', 287, 4929, 2359, 988, '3.0000', '80.0000', '80.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5132, '2022-10-06', 16, 4930, 2359, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5133, '2022-10-06', 296, 4931, 2359, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '48.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5134, '2022-10-06', 461, 4932, 2359, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5135, '2022-10-06', 389, 4933, 2359, 975, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5136, '2022-10-06', 239, 4934, 2359, 208, '-3.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 72, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5137, '2022-10-06', 239, 4934, 2359, 1018, '2.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5138, '2022-10-06', 239, 4934, 2359, 1053, '2.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5139, '2022-10-06', 268, 4935, 2360, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5140, '2022-10-06', 145, 4936, 2360, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5141, '2022-10-06', 193, 4937, 2360, 1054, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '25.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5142, '2022-10-06', 347, 4938, 2360, 1096, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 229, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5143, '2022-10-06', 268, 4939, 2361, 961, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5144, '2022-10-06', 396, 4940, 2362, 813, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5145, '2022-10-06', 386, 4941, 2362, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '18.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5146, '2022-10-06', 119, 4942, 2362, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '54.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5147, '2022-10-06', 396, 4943, 2363, 813, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 194, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5148, '2022-10-06', 319, 4944, 2363, 398, '-1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5149, '2022-10-06', 319, 4944, 2363, 897, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5150, '2022-10-07', 293, 4945, 2364, 979, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5151, '2022-10-07', 287, 4946, 2364, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5152, '2022-10-07', 473, 4947, 2365, 1041, '2.0000', '100.0000', '100.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5153, '2022-10-07', 474, 4948, 2365, 1042, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5154, '2022-10-07', 457, 4949, 2366, 909, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5155, '2022-10-07', 268, 4950, 2367, 961, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5156, '2022-10-07', 271, 4951, 2367, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5157, '2022-10-07', 410, 4952, 2367, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '29.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5158, '2022-10-07', 268, 4953, 2368, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5159, '2022-10-07', 6, 4954, 2369, 676, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5160, '2022-10-07', 287, 4955, 2370, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5161, '2022-10-07', 296, 4956, 2370, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '47.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5162, '2022-10-07', 268, 4957, 2371, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5163, '2022-10-07', 287, 4958, 2372, 988, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5164, '2022-10-07', 391, 4959, 2373, 686, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5165, '2022-10-07', 226, 4960, 2373, 1084, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5166, '2022-10-07', 160, 4961, 2373, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5167, '2022-10-07', 143, 4962, 2373, 1007, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5168, '2022-10-07', 271, 4963, 2373, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5169, '2022-10-07', 410, 4964, 2373, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '27.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5170, '2022-10-07', 220, 4965, 2374, 1090, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5171, '2022-10-07', 380, 4966, 2374, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5172, '2022-10-07', 411, 4967, 2375, 1091, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5173, '2022-10-07', 383, 4968, 2375, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '9.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5174, '2022-10-07', 217, 4969, 2375, 179, '-1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 52, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5175, '2022-10-07', 217, 4969, 2375, 763, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5176, '2022-10-07', 217, 4969, 2375, 1089, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5177, '2022-10-07', 410, 4970, 2375, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '26.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5178, '2022-10-07', 270, 4971, 2376, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5179, '2022-10-08', 413, 4972, 2377, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5180, '2022-10-08', 214, 4973, 2377, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5181, '2022-10-08', 425, 4974, 2377, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '10.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5182, '2022-10-08', 396, 4975, 2377, 896, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5183, '2022-10-08', 355, 4976, 2377, 885, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5184, '2022-10-08', 315, 4977, 2377, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5185, '2022-10-08', 282, 4978, 2377, 1068, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '6.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5186, '2022-10-08', 141, 4979, 2377, 1093, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5187, '2022-10-08', 220, 4980, 2377, 1090, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5188, '2022-10-08', 160, 4981, 2377, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5189, '2022-10-08', 385, 4982, 2378, 947, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5190, '2022-10-08', 43, 4983, 2379, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5191, '2022-10-08', 287, 4984, 2379, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5192, '2022-10-08', 425, 4985, 2379, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5193, '2022-10-08', 270, 4986, 2380, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5194, '2022-10-08', 231, 4987, 2381, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5195, '2022-10-08', 484, 4988, 2381, 1103, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5196, '2022-10-08', 317, 4989, 2381, 393, '-1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5197, '2022-10-08', 317, 4989, 2381, 899, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5198, '2022-10-08', 282, 4990, 2381, 1068, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5199, '2022-10-08', 465, 4991, 2382, 930, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5200, '2022-10-08', 459, 4992, 2382, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5201, '2022-10-08', 425, 4993, 2383, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5202, '2022-10-08', 412, 4994, 2383, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5203, '2022-10-08', 459, 4995, 2383, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5204, '2022-10-08', 459, 4996, 2384, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5205, '2022-10-08', 268, 4997, 2385, 961, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5206, '2022-10-09', 98, 4998, 2386, 537, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5207, '2022-10-09', 427, 4999, 2387, 857, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5208, '2022-10-09', 475, 5000, 2388, 1049, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5209, '2022-10-09', 389, 5001, 2388, 975, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5210, '2022-10-09', 141, 5002, 2388, 1093, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5211, '2022-10-09', 238, 5003, 2388, 205, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5212, '2022-10-09', 9, 5004, 2389, 8, '-7.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5213, '2022-10-09', 9, 5004, 2389, 331, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 134, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5214, '2022-10-09', 9, 5004, 2389, 480, '8.0000', '250.0000', '250.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5215, '2022-10-09', 287, 5005, 2389, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5216, '2022-10-09', 413, 5006, 2389, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5217, '2022-10-09', 425, 5007, 2389, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5218, '2022-10-09', 377, 5008, 2389, 1011, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 219, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5219, '2022-10-09', 380, 5009, 2389, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5220, '2022-10-09', 268, 5010, 2390, 996, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5221, '2022-10-09', 296, 5011, 2391, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '46.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5222, '2022-10-09', 16, 5012, 2391, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5223, '2022-10-09', 287, 5013, 2391, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5224, '2022-10-09', 43, 5014, 2391, 1044, '1.0000', '130.0000', '130.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5225, '2022-10-09', 465, 5015, 2391, 930, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5226, '2022-10-09', 342, 5016, 2391, 832, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5227, '2022-10-09', 220, 5017, 2391, 1090, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5228, '2022-10-09', 282, 5018, 2391, 1068, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5229, '2022-10-09', 281, 5019, 2391, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5230, '2022-10-09', 193, 5020, 2392, 1054, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '20.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5231, '2022-10-09', 347, 5021, 2392, 1096, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 229, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5232, '2022-10-09', 287, 5022, 2393, 988, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5239, '2022-10-09', 410, 5029, 2396, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '25.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5238, '2022-10-09', 268, 5028, 2396, 996, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5240, '2022-10-09', 220, 5030, 2396, 1090, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5236, '2022-10-09', 268, 5026, 2395, 996, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5237, '2022-10-09', 220, 5027, 2395, 1090, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5241, '2022-10-10', 141, 5031, 2397, 1093, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5242, '2022-10-10', 98, 5032, 2398, 537, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5243, '2022-10-10', 226, 5033, 2398, 1084, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5244, '2022-10-10', 231, 5034, 2398, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5245, '2022-10-10', 113, 5035, 2398, 106, '-1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5246, '2022-10-10', 113, 5035, 2398, 912, '2.0000', '100.0000', '100.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5247, '2022-10-10', 5, 5036, 2398, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5248, '2022-10-10', 392, 5037, 2398, 688, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5249, '2022-10-10', 387, 5038, 2399, 937, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5250, '2022-10-10', 268, 5039, 2400, 996, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5251, '2022-10-10', 270, 5040, 2400, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5252, '2022-10-10', 413, 5041, 2401, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5253, '2022-10-11', 83, 5042, 2402, 74, '1.0000', '400.0000', '400.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5254, '2022-10-11', 214, 5043, 2402, 175, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5255, '2022-10-11', 379, 5044, 2403, 659, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5256, '2022-10-11', 317, 5045, 2404, 1105, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5257, '2022-10-11', 319, 5046, 2404, 897, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5258, '2022-10-11', 352, 5047, 2404, 1095, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5259, '2022-10-11', 392, 5048, 2405, 688, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5260, '2022-10-11', 200, 5049, 2406, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5261, '2022-10-11', 482, 5050, 2407, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5262, '2022-10-11', 231, 5051, 2407, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5263, '2022-10-11', 355, 5052, 2407, 1104, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5264, '2022-10-11', 164, 5053, 2408, 876, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5265, '2022-10-11', 168, 5054, 2408, 1040, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5266, '2022-10-11', 393, 5055, 2408, 846, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5267, '2022-10-12', 220, 5056, 2409, 1108, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5268, '2022-10-12', 287, 5057, 2409, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5269, '2022-10-12', 319, 5058, 2410, 897, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5270, '2022-10-12', 385, 5059, 2410, 947, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5271, '2022-10-12', 287, 5060, 2411, 1077, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5272, '2022-10-12', 6, 5061, 2412, 676, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5273, '2022-10-12', 380, 5062, 2412, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5274, '2022-10-12', 165, 5063, 2413, 1028, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '15.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5275, '2022-10-12', 220, 5064, 2413, 1108, '4.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5276, '2022-10-12', 285, 5065, 2413, 563, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5277, '2022-10-13', 16, 5066, 2414, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5278, '2022-10-13', 296, 5067, 2414, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '45.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5279, '2022-10-13', 220, 5068, 2415, 1108, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5280, '2022-10-13', 113, 5069, 2415, 912, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5281, '2022-10-13', 184, 5070, 2416, 406, '-2.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5282, '2022-10-13', 184, 5070, 2416, 598, '3.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5283, '2022-10-13', 461, 5071, 2417, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5284, '2022-10-13', 293, 5072, 2417, 979, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5285, '2022-10-13', 35, 5073, 2417, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5286, '2022-10-13', 154, 5074, 2417, 629, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5287, '2022-10-13', 200, 5075, 2417, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5288, '2022-10-13', 305, 5076, 2417, 542, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 154, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5289, '2022-10-13', 165, 5077, 2418, 1028, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '14.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5290, '2022-10-13', 46, 5078, 2418, 1055, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5291, '2022-10-13', 386, 5079, 2418, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '17.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5292, '2022-10-13', 362, 5080, 2418, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5293, '2022-10-13', 385, 5081, 2418, 1008, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '19.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5294, '2022-10-13', 296, 5082, 2419, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '43.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5295, '2022-10-13', 385, 5083, 2419, 1008, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5296, '2022-10-13', 165, 5084, 2420, 1028, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '13.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5297, '2022-10-13', 135, 5085, 2420, 1024, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '0.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5298, '2022-10-13', 310, 5086, 2420, 1032, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5299, '2022-10-13', 482, 5087, 2420, 1073, '2.0000', '235.0000', '235.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5300, '2022-10-13', 160, 5088, 2420, 990, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5301, '2022-10-13', 482, 5089, 2421, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5302, '2022-10-13', 145, 5090, 2421, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5303, '2022-10-13', 268, 5091, 2421, 996, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5304, '2022-10-13', 109, 5092, 2422, 641, '1.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '0.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5305, '2022-10-13', 109, 5092, 2422, 932, '2.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5306, '2022-10-13', 391, 5093, 2422, 977, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5307, '2022-10-13', 388, 5094, 2422, 978, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5308, '2022-10-13', 390, 5095, 2422, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5309, '2022-10-13', 49, 5096, 2422, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5310, '2022-10-13', 3, 5097, 2422, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5311, '2022-10-13', 466, 5098, 2422, 1112, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 233, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5312, '2022-10-13', 388, 5099, 2422, 978, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5313, '2022-10-13', 397, 5100, 2422, 865, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5314, '2022-10-13', 467, 5101, 2422, 1072, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5315, '2022-10-13', 446, 5102, 2422, 904, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5316, '2022-10-13', 317, 5103, 2422, 1105, '6.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5317, '2022-10-13', 341, 5104, 2422, 924, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5318, '2022-10-13', 386, 5105, 2422, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5319, '2022-10-13', 35, 5106, 2422, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5320, '2022-10-13', 154, 5107, 2422, 629, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5321, '2022-10-13', 252, 5108, 2422, 237, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5322, '2022-10-13', 393, 5109, 2422, 846, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5323, '2022-10-13', 453, 5110, 2422, 891, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5324, '2022-10-13', 393, 5111, 2422, 846, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5325, '2022-10-13', 469, 5112, 2422, 1034, '1.0000', '3500.0000', '3500.0000', '4500.0000', '4500.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5326, '2022-10-13', 268, 5113, 2423, 996, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5327, '2022-10-13', 268, 5113, 2423, 1001, '11.0000', '170.0000', '170.0000', '200.0000', '200.0000', '129.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5328, '2022-10-13', 410, 5114, 2424, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '24.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5329, '2022-10-13', 271, 5115, 2425, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5330, '2022-10-13', 380, 5116, 2426, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5331, '2022-10-13', 380, 5117, 2427, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5332, '2022-10-13', 270, 5118, 2427, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5333, '2022-10-13', 271, 5119, 2427, 773, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5334, '2022-10-14', 8, 5120, 2428, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5335, '2022-10-14', 268, 5121, 2428, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '128.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5336, '2022-10-14', 268, 5122, 2429, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '127.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5337, '2022-10-14', 315, 5123, 2430, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5338, '2022-10-14', 469, 5124, 2431, 1034, '1.0000', '3500.0000', '3500.0000', '4500.0000', '4500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5339, '2022-10-14', 433, 5125, 2431, 863, '1.0000', '3000.0000', '3000.0000', '4000.0000', '4000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5340, '2022-10-14', 397, 5126, 2431, 865, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5341, '2022-10-14', 8, 5127, 2431, 833, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5342, '2022-10-14', 388, 5128, 2432, 978, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5343, '2022-10-14', 5, 5129, 2432, 678, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5344, '2022-10-14', 292, 5130, 2432, 1002, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5345, '2022-10-14', 427, 5131, 2433, 857, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5346, '2022-10-14', 390, 5132, 2433, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5347, '2022-10-14', 482, 5133, 2433, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5348, '2022-10-14', 119, 5134, 2434, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '53.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5349, '2022-10-14', 268, 5135, 2434, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '126.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5350, '2022-10-14', 410, 5136, 2434, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '23.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5351, '2022-10-14', 271, 5137, 2434, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '34.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5352, '2022-10-14', 378, 5138, 2435, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '5.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5353, '2022-10-14', 268, 5139, 2436, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '124.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5354, '2022-10-14', 410, 5140, 2436, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5355, '2022-10-15', 268, 5141, 2437, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '121.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5356, '2022-10-15', 268, 5142, 2438, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '118.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5357, '2022-10-15', 46, 5143, 2439, 1055, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5358, '2022-10-15', 386, 5144, 2439, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5359, '2022-10-15', 268, 5145, 2440, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '117.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5360, '2022-10-15', 8, 5146, 2441, 1083, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5361, '2022-10-15', 145, 5147, 2442, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5362, '2022-10-15', 5, 5148, 2443, 678, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5363, '2022-10-15', 342, 5149, 2443, 1085, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5364, '2022-10-15', 145, 5150, 2443, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5365, '2022-10-15', 458, 5151, 2443, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5366, '2022-10-15', 200, 5152, 2444, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5367, '2022-10-15', 482, 5153, 2445, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5368, '2022-10-15', 239, 5154, 2446, 1053, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5369, '2022-10-16', 268, 5155, 2447, 1001, '14.0000', '170.0000', '170.0000', '200.0000', '200.0000', '103.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5370, '2022-10-16', 410, 5156, 2447, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5371, '2022-10-16', 271, 5157, 2447, 820, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '32.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5372, '2022-10-16', 239, 5158, 2448, 1053, '1.0000', '1000.0000', '1000.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5373, '2022-10-16', 164, 5159, 2448, 876, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5374, '2022-10-16', 34, 5160, 2448, 33, '-3.0000', '1300.0000', '1300.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5375, '2022-10-16', 34, 5160, 2448, 219, '1.0000', '1300.0000', '1300.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 78, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5376, '2022-10-16', 34, 5160, 2448, 1057, '3.0000', '1300.0000', '1300.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5377, '2022-10-16', 429, 5161, 2448, 859, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5378, '2022-10-16', 376, 5162, 2448, 808, '3.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5379, '2022-10-16', 42, 5163, 2448, 1045, '2.0000', '90.0000', '90.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5380, '2022-10-16', 287, 5164, 2448, 1077, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '15.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5381, '2022-10-16', 387, 5165, 2448, 937, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5382, '2022-10-16', 195, 5166, 2448, 151, '-1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5383, '2022-10-16', 195, 5166, 2448, 1020, '2.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5384, '2022-10-16', 482, 5167, 2449, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5385, '2022-10-16', 145, 5168, 2449, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5386, '2022-10-16', 114, 5169, 2450, 107, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5387, '2022-10-16', 268, 5170, 2450, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '102.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5388, '2022-10-16', 115, 5171, 2450, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5389, '2022-10-16', 385, 5172, 2451, 1008, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5390, '2022-10-16', 163, 5173, 2451, 767, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '30.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5391, '2022-10-16', 315, 5174, 2452, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5392, '2022-10-16', 170, 5175, 2452, 862, '2.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5393, '2022-10-16', 297, 5176, 2452, 1075, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '19.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5394, '2022-10-16', 436, 5177, 2452, 866, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5395, '2022-10-16', 292, 5178, 2452, 1002, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5396, '2022-10-16', 292, 5178, 2452, 1092, '5.0000', '350.0000', '350.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5397, '2022-10-16', 342, 5179, 2452, 1085, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5398, '2022-10-16', 409, 5180, 2452, 760, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5399, '2022-10-16', 323, 5181, 2452, 405, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5400, '2022-10-16', 173, 5182, 2452, 861, '1.0000', '4000.0000', '4000.0000', '6000.0000', '6000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5401, '2022-10-16', 188, 5183, 2452, 228, '1.0000', '3500.0000', '3500.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 87, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5402, '2022-10-16', 254, 5184, 2452, 241, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5403, '2022-10-16', 93, 5185, 2453, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '17.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5404, '2022-10-16', 385, 5186, 2453, 1008, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5405, '2022-10-16', 293, 5187, 2453, 979, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5406, '2022-10-16', 268, 5188, 2453, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '100.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5407, '2022-10-16', 411, 5189, 2453, 1107, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5408, '2022-10-16', 312, 5190, 2453, 898, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5409, '2022-10-16', 355, 5191, 2453, 1104, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5410, '2022-10-16', 246, 5192, 2453, 1106, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5411, '2022-10-16', 300, 5193, 2454, 351, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5412, '2022-10-16', 16, 5194, 2454, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5413, '2022-10-16', 296, 5195, 2454, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '42.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5414, '2022-10-16', 9, 5196, 2455, 8, '-26.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5415, '2022-10-16', 9, 5196, 2455, 480, '4.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5416, '2022-10-16', 9, 5196, 2455, 927, '24.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5417, '2022-10-16', 348, 5197, 2456, 888, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5418, '2022-10-16', 385, 5198, 2456, 1008, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5419, '2022-10-16', 200, 5199, 2456, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5420, '2022-10-16', 226, 5200, 2457, 1084, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5421, '2022-10-17', 412, 5201, 2458, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5422, '2022-10-17', 145, 5202, 2459, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5423, '2022-10-17', 342, 5203, 2459, 1085, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5424, '2022-10-17', 200, 5204, 2460, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5425, '2022-10-17', 380, 5205, 2460, 1069, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5426, '2022-10-18', 385, 5206, 2461, 1008, '6.0000', '150.0000', '150.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5427, '2022-10-18', 3, 5207, 2461, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5428, '2022-10-18', 440, 5208, 2461, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5429, '2022-10-18', 262, 5209, 2461, 1158, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5430, '2022-10-18', 268, 5210, 2462, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '98.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5431, '2022-10-18', 268, 5211, 2463, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '95.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5432, '2022-10-18', 145, 5212, 2463, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5433, '2022-10-18', 220, 5213, 2463, 196, '-4.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5434, '2022-10-18', 220, 5213, 2463, 1108, '4.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5435, '2022-10-18', 220, 5213, 2463, 1151, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '24.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5436, '2022-10-18', 268, 5214, 2464, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '94.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5437, '2022-10-18', 271, 5215, 2464, 820, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '30.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5438, '2022-10-18', 380, 5216, 2464, 1148, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5439, '2022-10-18', 25, 5217, 2465, 255, '-8.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 108, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5440, '2022-10-18', 25, 5217, 2465, 718, '3.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5441, '2022-10-18', 25, 5217, 2465, 855, '5.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5442, '2022-10-18', 25, 5217, 2465, 1165, '2.0000', '200.0000', '200.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5443, '2022-10-18', 163, 5218, 2465, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '29.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5444, '2022-10-18', 491, 5219, 2465, 1129, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '7.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5445, '2022-10-18', 482, 5220, 2465, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5446, '2022-10-18', 268, 5221, 2466, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '92.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5447, '2022-10-18', 485, 5222, 2466, 1119, '1.0000', '120.0000', '120.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5448, '2022-10-18', 495, 5223, 2466, 1157, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5449, '2022-10-18', 287, 5224, 2466, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5450, '2022-10-18', 9, 5225, 2466, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '71.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5451, '2022-10-18', 485, 5226, 2467, 1119, '1.0000', '120.0000', '120.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5452, '2022-10-18', 162, 5227, 2468, 1061, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5453, '2022-10-18', 403, 5228, 2468, 1126, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5454, '2022-10-18', 163, 5229, 2468, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '28.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5455, '2022-10-18', 378, 5230, 2469, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5456, '2022-10-19', 287, 5231, 2470, 1077, '6.0000', '80.0000', '80.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5457, '2022-10-19', 211, 5232, 2471, 1120, '5.0000', '220.0000', '220.0000', '350.0000', '350.0000', '12.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5458, '2022-10-19', 212, 5233, 2471, 170, '2.0000', '100.0000', '100.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 43, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5459, '2022-10-19', 212, 5233, 2471, 1118, '3.0000', '100.0000', '100.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5460, '2022-10-19', 485, 5234, 2471, 1119, '4.0000', '120.0000', '120.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5461, '2022-10-19', 276, 5235, 2471, 1113, '5.0000', '300.0000', '300.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5462, '2022-10-19', 287, 5236, 2471, 1077, '3.0000', '80.0000', '80.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5463, '2022-10-19', 268, 5237, 2471, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '91.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5464, '2022-10-19', 220, 5238, 2472, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '23.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5465, '2022-10-19', 378, 5239, 2472, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5466, '2022-10-19', 160, 5240, 2472, 1110, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5467, '2022-10-19', 264, 5241, 2472, 960, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 208, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5468, '2022-10-19', 159, 5242, 2472, 737, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5469, '2022-10-19', 276, 5243, 2473, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5470, '2022-10-19', 485, 5244, 2473, 1119, '1.0000', '120.0000', '120.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5471, '2022-10-19', 378, 5245, 2473, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5472, '2022-10-19', 380, 5246, 2473, 1148, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5473, '2022-10-19', 342, 5247, 2473, 1085, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5474, '2022-10-19', 409, 5248, 2473, 942, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5475, '2022-10-19', 114, 5249, 2473, 107, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5476, '2022-10-19', 270, 5250, 2473, 852, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5477, '2022-10-19', 268, 5251, 2473, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '90.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5478, '2022-10-19', 268, 5252, 2474, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '88.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5479, '2022-10-19', 410, 5253, 2474, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5480, '2022-10-19', 86, 5254, 2474, 77, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5481, '2022-10-19', 458, 5255, 2474, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5482, '2022-10-19', 271, 5256, 2474, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '29.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5483, '2022-10-19', 220, 5257, 2474, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '22.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5484, '2022-10-19', 108, 5258, 2475, 931, '3.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5485, '2022-10-19', 114, 5259, 2475, 107, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5486, '2022-10-20', 495, 5260, 2476, 1157, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5487, '2022-10-20', 166, 5261, 2477, 207, '-8.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '0.0000', 1, 0, NULL, 71, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5488, '2022-10-20', 166, 5261, 2477, 872, '9.0000', '900.0000', '900.0000', '1600.0000', '1600.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5489, '2022-10-20', 145, 5262, 2478, 964, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5490, '2022-10-20', 342, 5263, 2478, 1085, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5491, '2022-10-20', 500, 5264, 2479, 1161, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5492, '2022-10-20', 271, 5265, 2480, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '28.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5493, '2022-10-20', 410, 5266, 2480, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5494, '2022-10-20', 170, 5267, 2481, 862, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5495, '2022-10-20', 292, 5268, 2481, 1092, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5496, '2022-10-20', 63, 5269, 2481, 14, '-1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5497, '2022-10-20', 63, 5269, 2481, 504, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5498, '2022-10-20', 63, 5269, 2481, 1124, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5499, '2022-10-20', 93, 5270, 2481, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '16.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5500, '2022-10-20', 252, 5271, 2481, 237, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 93, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5501, '2022-10-20', 73, 5272, 2482, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5502, '2022-10-20', 296, 5273, 2482, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '41.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5503, '2022-10-21', 385, 5274, 2483, 1008, '4.0000', '150.0000', '150.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5504, '2022-10-21', 271, 5275, 2483, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '27.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5505, '2022-10-21', 317, 5276, 2484, 1105, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5506, '2022-10-21', 212, 5277, 2484, 1118, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5507, '2022-10-21', 282, 5278, 2484, 305, '-5.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5508, '2022-10-21', 282, 5278, 2484, 1068, '4.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5509, '2022-10-21', 282, 5278, 2484, 1171, '2.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5510, '2022-10-21', 271, 5279, 2485, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '26.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5511, '2022-10-21', 292, 5280, 2486, 1092, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5512, '2022-10-21', 410, 5281, 2487, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5513, '2022-10-21', 220, 5282, 2487, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '21.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5514, '2022-10-21', 351, 5283, 2488, 1169, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5515, '2022-10-21', 377, 5284, 2488, 1172, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5516, '2022-10-21', 220, 5285, 2488, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '20.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5517, '2022-10-21', 377, 5286, 2489, 1172, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5518, '2022-10-21', 46, 5287, 2490, 1055, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5519, '2022-10-21', 351, 5288, 2490, 1169, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5520, '2022-10-21', 73, 5289, 2491, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5521, '2022-10-21', 296, 5290, 2491, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '40.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5522, '2022-10-21', 268, 5291, 2492, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '87.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5523, '2022-10-21', 220, 5292, 2492, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5524, '2022-10-21', 434, 5293, 2493, 864, '3.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5525, '2022-10-21', 268, 5294, 2493, 1001, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '83.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5526, '2022-10-21', 212, 5295, 2493, 1118, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5527, '2022-10-21', 410, 5296, 2494, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5528, '2022-10-21', 377, 5297, 2494, 1172, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5529, '2022-10-21', 491, 5298, 2494, 1129, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5530, '2022-10-22', 393, 5299, 2495, 848, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 197, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5531, '2022-10-22', 153, 5300, 2495, 985, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5532, '2022-10-22', 287, 5301, 2495, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5533, '2022-10-22', 271, 5302, 2496, 820, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '24.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5534, '2022-10-22', 410, 5303, 2496, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5535, '2022-10-22', 119, 5304, 2497, 341, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '51.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5536, '2022-10-22', 11, 5305, 2498, 10, '-1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5537, '2022-10-22', 11, 5305, 2498, 1164, '5.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5538, '2022-10-22', 500, 5306, 2498, 1161, '3.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5539, '2022-10-22', 269, 5307, 2498, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5540, '2022-10-22', 271, 5308, 2498, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '23.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5541, '2022-10-22', 220, 5309, 2499, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '18.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5542, '2022-10-22', 315, 5310, 2500, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5543, '2022-10-22', 145, 5311, 2501, 1140, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5544, '2022-10-22', 282, 5312, 2501, 1171, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5545, '2022-10-22', 285, 5313, 2501, 563, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5546, '2022-10-22', 226, 5314, 2502, 1179, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5547, '2022-10-22', 220, 5315, 2502, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5548, '2022-10-22', 409, 5316, 2503, 942, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5549, '2022-10-22', 410, 5317, 2504, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5550, '2022-10-22', 271, 5318, 2504, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '22.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5551, '2022-10-22', 276, 5319, 2505, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5552, '2022-10-22', 348, 5320, 2506, 888, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5553, '2022-10-22', 164, 5321, 2507, 876, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5554, '2022-10-22', 482, 5322, 2507, 1073, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5555, '2022-10-22', 458, 5323, 2508, 1060, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5556, '2022-10-22', 33, 5324, 2508, 32, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5557, '2022-10-22', 426, 5325, 2509, 835, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5558, '2022-10-22', 220, 5326, 2509, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5559, '2022-10-23', 393, 5327, 2510, 848, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 197, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5560, '2022-10-23', 163, 5328, 2511, 767, '3.0000', '75.0000', '75.0000', '150.0000', '150.0000', '25.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5561, '2022-10-23', 396, 5329, 2511, 705, '-1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5562, '2022-10-23', 396, 5329, 2511, 896, '3.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5563, '2022-10-23', 473, 5330, 2511, 1041, '2.0000', '100.0000', '100.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5564, '2022-10-23', 474, 5331, 2511, 1042, '3.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5565, '2022-10-23', 220, 5332, 2511, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '15.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5566, '2022-10-23', 482, 5333, 2511, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5567, '2022-10-23', 483, 5334, 2511, 1102, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5568, '2022-10-23', 317, 5335, 2511, 1105, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5569, '2022-10-23', 410, 5336, 2511, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5570, '2022-10-23', 429, 5337, 2512, 859, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5571, '2022-10-23', 319, 5338, 2512, 398, '-1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5572, '2022-10-23', 319, 5338, 2512, 897, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5573, '2022-10-23', 74, 5339, 2513, 936, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5574, '2022-10-23', 195, 5340, 2514, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '19.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5575, '2022-10-23', 491, 5341, 2514, 1129, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5576, '2022-10-23', 312, 5342, 2514, 387, '-1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5577, '2022-10-23', 312, 5342, 2514, 898, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5578, '2022-10-23', 188, 5343, 2515, 1136, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5579, '2022-10-24', 495, 5344, 2516, 1157, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5580, '2022-10-24', 385, 5345, 2517, 1008, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5581, '2022-10-24', 412, 5346, 2518, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5582, '2022-10-24', 195, 5347, 2519, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '18.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5583, '2022-10-24', 500, 5348, 2520, 1161, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5584, '2022-10-24', 268, 5349, 2521, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '82.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5585, '2022-10-24', 220, 5350, 2522, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5586, '2022-10-25', 268, 5351, 2523, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '80.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5587, '2022-10-25', 165, 5352, 2524, 150, '-7.0000', '1350.0000', '1350.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5588, '2022-10-25', 165, 5352, 2524, 1028, '9.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5589, '2022-10-25', 306, 5353, 2524, 367, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 139, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5590, '2022-10-25', 386, 5354, 2524, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5591, '2022-10-25', 482, 5355, 2524, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5592, '2022-10-25', 165, 5356, 2525, 1028, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5593, '2022-10-25', 315, 5357, 2525, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5594, '2022-10-25', 193, 5358, 2526, 1054, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5595, '2022-10-25', 347, 5359, 2526, 1096, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 229, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5596, '2022-10-25', 193, 5360, 2527, 1054, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5597, '2022-10-25', 347, 5361, 2527, 1096, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 229, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5598, '2022-10-25', 287, 5362, 2528, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5599, '2022-10-25', 410, 5363, 2529, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5600, '2022-10-25', 271, 5364, 2529, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '21.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5601, '2022-10-25', 109, 5365, 2529, 1167, '2.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '2.0000', 1, 0, NULL, 236, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5602, '2022-10-25', 221, 5366, 2530, 183, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 55, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5603, '2022-10-25', 153, 5367, 2531, 985, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5604, '2022-10-25', 393, 5368, 2531, 848, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 197, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5605, '2022-10-25', 385, 5369, 2531, 1008, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5606, '2022-10-25', 8, 5370, 2532, 1083, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5607, '2022-10-25', 284, 5371, 2532, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '9.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5608, '2022-10-25', 164, 5372, 2533, 876, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5609, '2022-10-25', 348, 5373, 2533, 888, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5610, '2022-10-25', 393, 5374, 2533, 848, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 197, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5611, '2022-10-26', 268, 5375, 2534, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '79.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5612, '2022-10-26', 271, 5376, 2535, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '20.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5613, '2022-10-26', 410, 5377, 2536, 998, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5614, '2022-10-27', 217, 5378, 2537, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5615, '2022-10-27', 380, 5379, 2537, 1148, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5616, '2022-10-27', 282, 5380, 2538, 1171, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5617, '2022-10-27', 141, 5381, 2538, 1139, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5618, '2022-10-27', 220, 5382, 2538, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5619, '2022-10-27', 375, 5383, 2539, 945, '2.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5620, '2022-10-27', 375, 5383, 2539, 1204, '2.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5621, '2022-10-27', 481, 5384, 2540, 1071, '1.0000', '1400.0000', '1400.0000', '1800.0000', '1800.0000', '0.0000', 1, 0, NULL, 225, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5622, '2022-10-27', 217, 5385, 2540, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5623, '2022-10-27', 461, 5386, 2541, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5624, '2022-10-27', 293, 5387, 2541, 987, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5625, '2022-10-27', 38, 5388, 2542, 38, '1.0000', '250.0000', '250.0000', '700.0000', '700.0000', '0.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5626, '2022-10-27', 292, 5389, 2542, 1092, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5627, '2022-10-27', 491, 5390, 2542, 1129, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5628, '2022-10-27', 220, 5391, 2542, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '12.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5629, '2022-10-27', 393, 5392, 2543, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '19.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5630, '2022-10-27', 217, 5393, 2543, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5631, '2022-10-27', 220, 5394, 2543, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5632, '2022-10-27', 491, 5395, 2544, 1129, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5633, '2022-10-28', 164, 5396, 2545, 876, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5634, '2022-10-28', 164, 5396, 2545, 1122, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5635, '2022-10-28', 342, 5397, 2545, 1085, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5636, '2022-10-28', 491, 5398, 2545, 1129, '3.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5637, '2022-10-28', 409, 5399, 2545, 942, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5638, '2022-10-28', 293, 5400, 2546, 987, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5639, '2022-10-28', 157, 5401, 2547, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5640, '2022-10-28', 293, 5402, 2548, 987, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5641, '2022-10-28', 157, 5403, 2549, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5642, '2022-10-28', 157, 5404, 2549, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5643, '2022-10-28', 287, 5405, 2549, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5644, '2022-10-28', 160, 5406, 2550, 1110, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5645, '2022-10-28', 280, 5407, 2550, 1173, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5646, '2022-10-28', 482, 5408, 2551, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5647, '2022-10-28', 268, 5409, 2552, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '78.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5648, '2022-10-28', 163, 5410, 2553, 767, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5649, '2022-10-28', 149, 5411, 2554, 461, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5650, '2022-10-28', 268, 5412, 2554, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '77.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5651, '2022-10-28', 195, 5413, 2555, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5652, '2022-10-28', 3, 5414, 2555, 780, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 189, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5653, '2022-10-28', 282, 5415, 2556, 1171, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5654, '2022-10-28', 280, 5416, 2556, 1173, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5655, '2022-10-28', 282, 5417, 2557, 1206, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5656, '2022-10-28', 5, 5418, 2557, 972, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5657, '2022-10-28', 5, 5419, 2557, 972, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5658, '2022-10-28', 393, 5420, 2557, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '18.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5659, '2022-10-28', 410, 5421, 2557, 998, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5660, '2022-10-28', 32, 5422, 2558, 511, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5661, '2022-10-28', 386, 5423, 2558, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5662, '2022-10-28', 461, 5424, 2558, 922, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5663, '2022-10-28', 293, 5425, 2558, 987, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5664, '2022-10-28', 73, 5426, 2558, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5665, '2022-10-28', 293, 5427, 2558, 987, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5666, '2022-10-28', 482, 5428, 2558, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5667, '2022-10-28', 489, 5429, 2559, 1114, '1.0000', '350.0000', '350.0000', '700.0000', '700.0000', '1.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5668, '2022-10-28', 107, 5430, 2559, 1168, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5669, '2022-10-28', 80, 5431, 2559, 989, '2.0000', '70.0000', '70.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5670, '2022-10-28', 268, 5432, 2559, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '76.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5671, '2022-10-29', 271, 5433, 2560, 820, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '18.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5672, '2022-10-29', 388, 5434, 2561, 978, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5673, '2022-10-29', 410, 5435, 2562, 998, '7.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5674, '2022-10-29', 410, 5435, 2562, 1025, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5675, '2022-10-29', 271, 5436, 2562, 820, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '16.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5676, '2022-10-29', 8, 5437, 2562, 1083, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5677, '2022-10-29', 315, 5438, 2562, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5678, '2022-10-29', 3, 5439, 2562, 971, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5679, '2022-10-29', 440, 5440, 2562, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5680, '2022-10-29', 296, 5441, 2562, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '39.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5681, '2022-10-29', 73, 5442, 2562, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5682, '2022-10-29', 154, 5443, 2562, 629, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5683, '2022-10-29', 35, 5444, 2562, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5684, '2022-10-29', 217, 5445, 2562, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5685, '2022-10-29', 482, 5446, 2562, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5686, '2022-10-29', 73, 5447, 2563, 1142, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5687, '2022-10-29', 296, 5448, 2563, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '37.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5688, '2022-10-29', 195, 5449, 2563, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5689, '2022-10-29', 431, 5450, 2564, 887, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5690, '2022-10-29', 217, 5451, 2564, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5691, '2022-10-29', 377, 5452, 2564, 1172, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5692, '2022-10-29', 312, 5453, 2565, 1143, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5693, '2022-10-29', 287, 5454, 2565, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5694, '2022-10-29', 268, 5455, 2566, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '75.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5695, '2022-10-29', 268, 5456, 2567, 1001, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '71.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5696, '2022-10-29', 410, 5457, 2567, 1025, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5697, '2022-10-29', 503, 5458, 2568, 1182, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5698, '2022-10-29', 268, 5459, 2569, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '70.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5699, '2022-10-30', 305, 5460, 2570, 1128, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5700, '2022-10-30', 16, 5461, 2570, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5701, '2022-10-30', 385, 5462, 2570, 1008, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5702, '2022-10-30', 73, 5463, 2570, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5703, '2022-10-30', 390, 5464, 2570, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5704, '2022-10-30', 389, 5465, 2570, 975, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5705, '2022-10-30', 280, 5466, 2570, 1173, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5706, '2022-10-30', 217, 5467, 2570, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5707, '2022-10-30', 268, 5468, 2570, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '67.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5708, '2022-10-30', 269, 5469, 2570, 775, '4.0000', '130.0000', '130.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5709, '2022-10-30', 411, 5470, 2570, 1107, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5710, '2022-10-31', 134, 5471, 2571, 340, '1.0000', '1800.0000', '1800.0000', '2800.0000', '2800.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5711, '2022-10-31', 342, 5472, 2571, 1181, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5712, '2022-10-31', 268, 5473, 2572, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '66.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5713, '2022-10-31', 282, 5474, 2573, 1206, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5714, '2022-10-31', 73, 5475, 2574, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5715, '2022-10-31', 296, 5476, 2574, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '36.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5716, '2022-10-31', 385, 5477, 2575, 1078, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '19.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5717, '2022-10-31', 293, 5478, 2575, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5718, '2022-10-31', 410, 5479, 2575, 1025, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5719, '2022-10-31', 296, 5480, 2576, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '34.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5720, '2022-10-31', 195, 5481, 2577, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '15.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5721, '2022-10-31', 385, 5482, 2578, 1078, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '18.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5722, '2022-11-01', 213, 5483, 2579, 174, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '8.0000', 1, 0, NULL, 47, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5723, '2022-11-01', 93, 5484, 2579, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '15.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5724, '2022-11-01', 200, 5485, 2580, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5725, '2022-11-01', 351, 5486, 2580, 1169, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5726, '2022-11-01', 211, 5487, 2581, 1120, '1.0000', '220.0000', '220.0000', '350.0000', '350.0000', '11.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5727, '2022-11-01', 393, 5488, 2582, 1153, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5728, '2022-11-01', 153, 5489, 2582, 985, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5729, '2022-11-01', 287, 5490, 2583, 1077, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5730, '2022-11-01', 287, 5490, 2583, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5731, '2022-11-01', 347, 5491, 2584, 1096, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 229, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5732, '2022-11-01', 193, 5492, 2584, 1054, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5733, '2022-11-02', 195, 5493, 2585, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '14.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5734, '2022-11-02', 9, 5494, 2586, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '70.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5735, '2022-11-02', 220, 5495, 2587, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '10.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5736, '2022-11-02', 410, 5496, 2588, 1025, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5737, '2022-11-02', 271, 5497, 2588, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '15.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5738, '2022-11-03', 231, 5498, 2589, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5739, '2022-11-03', 9, 5499, 2590, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '69.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5740, '2022-11-03', 458, 5500, 2591, 1138, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5741, '2022-11-03', 355, 5501, 2591, 1104, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5742, '2022-11-03', 268, 5502, 2591, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '64.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5743, '2022-11-03', 287, 5503, 2591, 1203, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5744, '2022-11-03', 217, 5504, 2591, 1170, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5745, '2022-11-03', 9, 5505, 2591, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '68.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5746, '2022-11-03', 193, 5506, 2591, 1054, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5747, '2022-11-03', 347, 5507, 2591, 1096, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 229, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5748, '2022-11-03', 268, 5508, 2592, 1001, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '60.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5749, '2022-11-03', 292, 5509, 2592, 316, '-1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5750, '2022-11-03', 292, 5509, 2592, 1092, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5751, '2022-11-03', 268, 5510, 2593, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '59.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5752, '2022-11-04', 145, 5511, 2594, 1140, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5753, '2022-11-04', 268, 5512, 2595, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '57.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5754, '2022-11-04', 269, 5513, 2595, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5755, '2022-11-04', 410, 5514, 2595, 1025, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5756, '2022-11-04', 411, 5515, 2595, 1107, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5757, '2022-11-04', 268, 5516, 2596, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '56.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5758, '2022-11-04', 393, 5517, 2597, 1153, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '14.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5759, '2022-11-04', 74, 5518, 2597, 936, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5760, '2022-11-04', 282, 5519, 2598, 1206, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5761, '2022-11-04', 145, 5520, 2598, 1140, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5762, '2022-11-04', 131, 5521, 2598, 299, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5763, '2022-11-04', 482, 5522, 2598, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5764, '2022-11-04', 236, 5523, 2598, 204, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5765, '2022-11-04', 287, 5524, 2599, 1203, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5766, '2022-11-04', 393, 5525, 2599, 1153, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '12.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5767, '2022-11-04', 268, 5526, 2600, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '54.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5768, '2022-11-04', 220, 5527, 2601, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5769, '2022-11-04', 410, 5528, 2601, 1025, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5770, '2022-11-05', 3, 5529, 2602, 971, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5771, '2022-11-05', 389, 5530, 2602, 975, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5772, '2022-11-05', 282, 5531, 2602, 1206, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5773, '2022-11-05', 284, 5532, 2602, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '8.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5774, '2022-11-05', 231, 5533, 2602, 954, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5775, '2022-11-05', 217, 5534, 2602, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5776, '2022-11-05', 99, 5535, 2602, 798, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5777, '2022-11-05', 268, 5536, 2603, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '53.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5778, '2022-11-05', 195, 5537, 2603, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '13.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5779, '2022-11-05', 73, 5538, 2603, 1142, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5780, '2022-11-05', 296, 5539, 2603, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '32.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5781, '2022-11-05', 220, 5540, 2603, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5782, '2022-11-05', 212, 5541, 2604, 1118, '2.0000', '100.0000', '100.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5783, '2022-11-05', 427, 5542, 2604, 857, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5784, '2022-11-05', 315, 5543, 2604, 860, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5785, '2022-11-05', 443, 5544, 2605, 901, '1.0000', '3000.0000', '3000.0000', '4500.0000', '4500.0000', '0.0000', 1, 0, NULL, 201, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5786, '2022-11-05', 305, 5545, 2605, 1128, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5787, '2022-11-05', 390, 5546, 2605, 976, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5788, '2022-11-05', 285, 5547, 2605, 1086, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5789, '2022-11-05', 482, 5548, 2605, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5790, '2022-11-05', 220, 5549, 2605, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5791, '2022-11-05', 292, 5550, 2605, 1200, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5792, '2022-11-05', 211, 5551, 2605, 1120, '1.0000', '220.0000', '220.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5793, '2022-11-05', 46, 5552, 2605, 1146, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5794, '2022-11-05', 268, 5553, 2606, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '52.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5795, '2022-11-05', 220, 5554, 2606, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5796, '2022-11-05', 268, 5555, 2607, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '51.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5797, '2022-11-05', 269, 5556, 2607, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5798, '2022-11-05', 220, 5557, 2607, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5799, '2022-11-05', 9, 5558, 2608, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '67.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5800, '2022-11-05', 412, 5559, 2608, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5801, '2022-11-05', 496, 5560, 2608, 1133, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5802, '2022-11-05', 276, 5561, 2609, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5803, '2022-11-05', 389, 5562, 2609, 975, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5804, '2022-11-05', 390, 5563, 2609, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5805, '2022-11-05', 296, 5564, 2609, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '31.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5806, '2022-11-05', 16, 5565, 2609, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5807, '2022-11-05', 482, 5566, 2609, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5808, '2022-11-05', 164, 5567, 2610, 1122, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5809, '2022-11-05', 296, 5568, 2610, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '29.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5810, '2022-11-05', 288, 5569, 2610, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5811, '2022-11-05', 73, 5570, 2610, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5812, '2022-11-05', 16, 5571, 2610, 1017, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5813, '2022-11-05', 207, 5572, 2610, 164, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5814, '2022-11-06', 455, 5573, 2611, 1266, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5815, '2022-11-06', 9, 5574, 2611, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '65.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5816, '2022-11-06', 497, 5575, 2611, 1134, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5817, '2022-11-06', 287, 5576, 2611, 1203, '3.0000', '80.0000', '80.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5818, '2022-11-06', 352, 5577, 2611, 1095, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 228, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5819, '2022-11-06', 385, 5578, 2611, 1078, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5820, '2022-11-06', 313, 5579, 2611, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5821, '2022-11-06', 268, 5580, 2611, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '50.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5822, '2022-11-06', 440, 5581, 2611, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5823, '2022-11-06', 217, 5582, 2611, 1170, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5824, '2022-11-06', 200, 5583, 2612, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5825, '2022-11-06', 431, 5584, 2613, 887, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5826, '2022-11-06', 313, 5585, 2613, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5827, '2022-11-06', 288, 5586, 2613, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5829, '2022-11-06', 119, 5588, 2615, 341, '5.0000', '120.0000', '120.0000', '200.0000', '200.0000', '46.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5830, '2022-11-06', 268, 5589, 2616, 1001, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '46.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5831, '2022-11-06', 270, 5590, 2616, 852, '3.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5832, '2022-11-06', 270, 5590, 2616, 1177, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5833, '2022-11-06', 410, 5591, 2616, 1025, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5834, '2022-11-06', 410, 5591, 2616, 1176, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5835, '2022-11-06', 9, 5592, 2616, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '63.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5836, '2022-11-06', 287, 5593, 2616, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '15.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5837, '2022-11-06', 385, 5594, 2616, 1078, '3.0000', '150.0000', '150.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5838, '2022-11-06', 362, 5595, 2616, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5839, '2022-11-06', 458, 5596, 2617, 1138, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5840, '2022-11-06', 162, 5597, 2618, 147, '-1.0000', '400.0000', '400.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5841, '2022-11-06', 162, 5597, 2618, 1166, '2.0000', '400.0000', '400.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5842, '2022-11-06', 482, 5598, 2618, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5843, '2022-11-06', 293, 5599, 2618, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5844, '2022-11-06', 287, 5600, 2618, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5845, '2022-11-07', 482, 5601, 2619, 1180, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5846, '2022-11-07', 410, 5602, 2620, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5847, '2022-11-07', 385, 5603, 2621, 1078, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5848, '2022-11-07', 292, 5604, 2622, 1200, '2.0000', '350.0000', '350.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5849, '2022-11-07', 9, 5605, 2623, 1131, '3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '60.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5850, '2022-11-07', 458, 5606, 2624, 1212, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5851, '2022-11-07', 154, 5607, 2624, 629, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5852, '2022-11-07', 427, 5608, 2624, 1063, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '9.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5853, '2022-11-07', 254, 5609, 2625, 241, '-1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5854, '2022-11-07', 254, 5609, 2625, 892, '2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5855, '2022-11-07', 482, 5610, 2625, 1207, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5856, '2022-11-07', 163, 5611, 2625, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '22.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5857, '2022-11-08', 3, 5612, 2626, 971, '4.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5858, '2022-11-08', 268, 5613, 2627, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '45.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5859, '2022-11-08', 181, 5614, 2628, 253, '-2.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 106, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5860, '2022-11-08', 181, 5614, 2628, 434, '2.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5861, '2022-11-08', 181, 5614, 2628, 1244, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5862, '2022-11-08', 269, 5615, 2629, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5863, '2022-11-08', 220, 5616, 2630, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5864, '2022-11-08', 410, 5617, 2630, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5865, '2022-11-08', 238, 5618, 2631, 205, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5866, '2022-11-08', 162, 5619, 2632, 1243, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '10.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5867, '2022-11-08', 181, 5620, 2632, 1244, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5868, '2022-11-08', 293, 5621, 2632, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5869, '2022-11-08', 9, 5622, 2633, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '59.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5870, '2022-11-08', 220, 5623, 2633, 1151, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5871, '2022-11-09', 217, 5624, 2634, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5872, '2022-11-09', 220, 5625, 2635, 1151, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5873, '2022-11-09', 411, 5626, 2635, 1107, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5874, '2022-11-09', 411, 5627, 2636, 1277, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 243, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5875, '2022-11-10', 268, 5628, 2637, 1001, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '41.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5876, '2022-11-10', 269, 5629, 2637, 775, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5877, '2022-11-10', 271, 5630, 2637, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '14.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5878, '2022-11-10', 411, 5631, 2637, 1277, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 243, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5879, '2022-11-10', 113, 5632, 2637, 912, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5880, '2022-11-10', 292, 5633, 2638, 1200, '4.0000', '350.0000', '350.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5881, '2022-11-10', 410, 5634, 2639, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5882, '2022-11-10', 271, 5635, 2639, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '13.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5883, '2022-11-10', 9, 5636, 2640, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '57.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5884, '2022-11-10', 260, 5637, 2640, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '24.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5885, '2022-11-10', 86, 5638, 2641, 344, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5886, '2022-11-10', 427, 5639, 2642, 1063, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '8.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5887, '2022-11-10', 9, 5640, 2643, 1131, '3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '54.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5888, '2022-11-10', 217, 5641, 2643, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5889, '2022-11-10', 500, 5642, 2644, 1260, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5890, '2022-11-11', 396, 5643, 2645, 896, '4.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5891, '2022-11-11', 220, 5644, 2645, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5892, '2022-11-11', 355, 5645, 2645, 1104, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5893, '2022-11-11', 439, 5646, 2646, 1021, '1.0000', '2000.0000', '2000.0000', '4000.0000', '4000.0000', '0.0000', 1, 0, NULL, 221, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5894, '2022-11-11', 292, 5647, 2646, 1200, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5895, '2022-11-11', 491, 5648, 2646, 1234, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5896, '2022-11-11', 154, 5649, 2646, 629, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5897, '2022-11-11', 449, 5650, 2646, 882, '1.0000', '3000.0000', '3000.0000', '4000.0000', '4000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5898, '2022-11-11', 388, 5651, 2646, 978, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5899, '2022-11-11', 427, 5652, 2646, 1063, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5900, '2022-11-11', 390, 5653, 2646, 976, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5901, '2022-11-11', 256, 5654, 2646, 243, '1.0000', '2400.0000', '2400.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5902, '2022-11-11', 256, 5654, 2646, 1236, '1.0000', '2400.0000', '2400.0000', '3000.0000', '3000.0000', '10.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5903, '2022-11-11', 149, 5655, 2646, 1081, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5904, '2022-11-11', 490, 5656, 2646, 1137, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5905, '2022-11-11', 270, 5657, 2647, 1177, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5906, '2022-11-11', 410, 5658, 2647, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '17.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5907, '2022-11-11', 220, 5659, 2647, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '18.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5908, '2022-11-11', 269, 5660, 2648, 775, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 187, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5909, '2022-11-11', 270, 5661, 2648, 1177, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5910, '2022-11-11', 410, 5662, 2648, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5911, '2022-11-11', 458, 5663, 2649, 1212, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5912, '2022-11-11', 311, 5664, 2650, 1257, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5913, '2022-11-11', 46, 5665, 2650, 1146, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5914, '2022-11-11', 268, 5666, 2651, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '40.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5915, '2022-11-11', 496, 5667, 2652, 1133, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5916, '2022-11-11', 86, 5668, 2652, 344, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5917, '2022-11-11', 220, 5669, 2653, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5918, '2022-11-11', 489, 5670, 2654, 1114, '1.0000', '350.0000', '350.0000', '700.0000', '700.0000', '0.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5919, '2022-11-11', 271, 5671, 2655, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '12.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5920, '2022-11-11', 410, 5672, 2655, 1176, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5921, '2022-11-11', 312, 5673, 2656, 387, '-1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5922, '2022-11-11', 312, 5673, 2656, 1143, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5923, '2022-11-11', 410, 5674, 2656, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5924, '2022-11-11', 312, 5675, 2657, 1143, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5925, '2022-11-11', 268, 5676, 2658, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5926, '2022-11-11', 410, 5677, 2658, 1176, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5927, '2022-11-11', 271, 5678, 2658, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '11.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5928, '2022-11-11', 280, 5679, 2658, 1173, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5929, '2022-11-11', 348, 5680, 2658, 888, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5930, '2022-11-12', 410, 5681, 2659, 1176, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5931, '2022-11-12', 387, 5682, 2659, 937, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5932, '2022-11-12', 387, 5682, 2659, 957, '1.0000', '650.0000', '650.0000', '850.0000', '850.0000', '2.0000', 1, 0, NULL, 206, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5933, '2022-11-12', 380, 5683, 2659, 1148, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5934, '2022-11-12', 455, 5684, 2659, 1266, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5935, '2022-11-12', 456, 5685, 2659, 1267, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5936, '2022-11-12', 217, 5686, 2660, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5937, '2022-11-12', 220, 5687, 2661, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5938, '2022-11-12', 145, 5688, 2661, 1140, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5939, '2022-11-12', 154, 5689, 2661, 629, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5940, '2022-11-12', 388, 5690, 2661, 1076, '1.0000', '550.0000', '550.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5941, '2022-11-12', 220, 5691, 2662, 1275, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5942, '2022-11-12', 3, 5692, 2663, 971, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5943, '2022-11-12', 459, 5693, 2663, 914, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5944, '2022-11-12', 9, 5694, 2664, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '52.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5945, '2022-11-12', 157, 5695, 2664, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5946, '2022-11-12', 220, 5696, 2665, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5947, '2022-11-12', 384, 5697, 2666, 1262, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '8.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5948, '2022-11-12', 217, 5698, 2666, 1276, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5949, '2022-11-12', 445, 5699, 2666, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '12.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5950, '2022-11-12', 276, 5700, 2667, 1113, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5951, '2022-11-12', 63, 5701, 2668, 1124, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5952, '2022-11-12', 503, 5702, 2669, 1182, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5953, '2022-11-12', 385, 5703, 2669, 1078, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5954, '2022-11-12', 396, 5704, 2669, 896, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5955, '2022-11-12', 312, 5705, 2669, 1143, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5956, '2022-11-12', 293, 5706, 2669, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5957, '2022-11-12', 413, 5707, 2669, 913, '4.0000', '100.0000', '100.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5958, '2022-11-12', 505, 5708, 2669, 1184, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5959, '2022-11-12', 319, 5709, 2669, 398, '-6.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5960, '2022-11-12', 319, 5709, 2669, 897, '4.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5961, '2022-11-12', 319, 5709, 2669, 1043, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5962, '2022-11-12', 90, 5710, 2669, 345, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5963, '2022-11-12', 317, 5711, 2669, 1145, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5964, '2022-11-12', 268, 5712, 2669, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '37.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5965, '2022-11-12', 217, 5713, 2669, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5966, '2022-11-13', 5, 5714, 2670, 972, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5967, '2022-11-13', 3, 5715, 2670, 971, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5968, '2022-11-13', 385, 5716, 2670, 1078, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5969, '2022-11-13', 293, 5717, 2670, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5970, '2022-11-13', 458, 5718, 2671, 1212, '4.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5971, '2022-11-13', 268, 5719, 2671, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '35.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5972, '2022-11-13', 268, 5720, 2672, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '34.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5973, '2022-11-13', 410, 5721, 2672, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5974, '2022-11-13', 220, 5722, 2672, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '12.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5975, '2022-11-13', 498, 5723, 2673, 1159, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5976, '2022-11-13', 500, 5724, 2674, 1260, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5977, '2022-11-13', 315, 5725, 2675, 1064, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5978, '2022-11-13', 315, 5726, 2675, 1064, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5979, '2022-11-13', 212, 5727, 2675, 1118, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '8.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5980, '2022-11-13', 458, 5728, 2676, 1212, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5981, '2022-11-13', 164, 5729, 2677, 1122, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5982, '2022-11-13', 440, 5730, 2677, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5983, '2022-11-13', 268, 5731, 2677, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '32.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5984, '2022-11-14', 217, 5732, 2678, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5985, '2022-11-14', 9, 5733, 2679, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '50.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5986, '2022-11-14', 287, 5734, 2679, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5987, '2022-11-14', 381, 5735, 2680, 645, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '5.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5988, '2022-11-14', 220, 5736, 2681, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5989, '2022-11-15', 162, 5737, 2682, 1243, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '9.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5990, '2022-11-15', 403, 5738, 2682, 1126, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5991, '2022-11-15', 482, 5739, 2682, 1207, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5992, '2022-11-15', 455, 5740, 2683, 1266, '3.0000', '110.0000', '110.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5993, '2022-11-15', 268, 5741, 2684, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5994, '2022-11-15', 163, 5742, 2685, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5995, '2022-11-15', 268, 5743, 2686, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '29.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5996, '2022-11-15', 195, 5744, 2687, 1162, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5997, '2022-11-15', 268, 5745, 2688, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '28.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5998, '2022-11-15', 220, 5746, 2689, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '10.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (5999, '2022-11-16', 164, 5747, 2690, 1122, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6000, '2022-11-16', 14, 5748, 2690, 13, '-2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6001, '2022-11-16', 14, 5748, 2690, 920, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6002, '2022-11-16', 14, 5748, 2690, 1051, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6003, '2022-11-16', 63, 5749, 2690, 1124, '2.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6004, '2022-11-16', 458, 5750, 2691, 1212, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6005, '2022-11-16', 119, 5751, 2692, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '45.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6006, '2022-11-16', 268, 5752, 2693, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '25.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6007, '2022-11-16', 220, 5753, 2694, 1275, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6008, '2022-11-17', 458, 5754, 2695, 1212, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6009, '2022-11-17', 351, 5755, 2696, 1169, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6010, '2022-11-17', 230, 5756, 2696, 1080, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6011, '2022-11-17', 46, 5757, 2697, 1146, '1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6012, '2022-11-17', 73, 5758, 2697, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6013, '2022-11-17', 296, 5759, 2697, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '28.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6014, '2022-11-17', 338, 5760, 2698, 423, '-2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6015, '2022-11-17', 338, 5760, 2698, 769, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6016, '2022-11-17', 9, 5761, 2698, 1131, '3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '47.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6017, '2022-11-17', 324, 5762, 2699, 407, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6018, '2022-11-17', 292, 5763, 2699, 1200, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6020, '2022-11-17', 385, 5765, 2701, 1078, '6.0000', '150.0000', '150.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6021, '2022-11-17', 93, 5766, 2702, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '14.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6022, '2022-11-17', 295, 5767, 2703, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6023, '2022-11-17', 74, 5768, 2703, 974, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6024, '2022-11-17', 388, 5769, 2703, 1076, '4.0000', '550.0000', '550.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6025, '2022-11-17', 385, 5770, 2703, 1078, '4.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6026, '2022-11-17', 319, 5771, 2703, 398, '-7.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6027, '2022-11-17', 319, 5771, 2703, 1043, '4.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6028, '2022-11-17', 319, 5771, 2703, 1147, '4.0000', '300.0000', '300.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6029, '2022-11-17', 348, 5772, 2703, 888, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6030, '2022-11-17', 153, 5773, 2703, 985, '1.0000', '250.0000', '250.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6031, '2022-11-17', 447, 5774, 2703, 880, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6032, '2022-11-17', 188, 5775, 2703, 1252, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6033, '2022-11-17', 170, 5776, 2703, 862, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6034, '2022-11-17', 5, 5777, 2703, 972, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6035, '2022-11-17', 322, 5778, 2703, 1251, '1.0000', '4500.0000', '4500.0000', '6000.0000', '6000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6036, '2022-11-17', 440, 5779, 2703, 868, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6037, '2022-11-17', 432, 5780, 2703, 900, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6038, '2022-11-17', 391, 5781, 2703, 977, '1.0000', '450.0000', '450.0000', '550.0000', '550.0000', '8.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6039, '2022-11-17', 325, 5782, 2703, 722, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6040, '2022-11-17', 305, 5783, 2703, 1128, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6041, '2022-11-17', 351, 5784, 2703, 1169, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6042, '2022-11-17', 456, 5785, 2703, 1267, '3.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6043, '2022-11-17', 6, 5786, 2703, 676, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6044, '2022-11-17', 411, 5787, 2703, 1277, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 243, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6045, '2022-11-17', 316, 5788, 2703, 502, '1.0000', '900.0000', '900.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6046, '2022-11-17', 388, 5789, 2704, 1194, '2.0000', '550.0000', '550.0000', '750.0000', '750.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6047, '2022-11-17', 310, 5790, 2704, 1238, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6048, '2022-11-17', 438, 5791, 2704, 1189, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6049, '2022-11-17', 107, 5792, 2705, 1168, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6050, '2022-11-17', 217, 5793, 2706, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6051, '2022-11-17', 220, 5794, 2707, 1275, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6052, '2022-11-17', 282, 5795, 2707, 1206, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6053, '2022-11-17', 145, 5796, 2707, 1140, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6054, '2022-11-17', 445, 5797, 2708, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6055, '2022-11-17', 293, 5798, 2708, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6056, '2022-11-17', 312, 5799, 2708, 387, '-1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6057, '2022-11-17', 312, 5799, 2708, 1143, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6058, '2022-11-17', 63, 5800, 2708, 1124, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6059, '2022-11-17', 319, 5801, 2708, 1147, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6060, '2022-11-17', 93, 5802, 2708, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '13.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6061, '2022-11-17', 482, 5803, 2708, 1207, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6062, '2022-11-17', 8, 5804, 2709, 1235, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6063, '2022-11-18', 217, 5805, 2710, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6064, '2022-11-18', 446, 5806, 2711, 904, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6065, '2022-11-18', 470, 5807, 2711, 1035, '1.0000', '1800.0000', '1800.0000', '2500.0000', '2500.0000', '8.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6066, '2022-11-18', 188, 5808, 2712, 1252, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6067, '2022-11-18', 293, 5809, 2713, 1202, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6068, '2022-11-18', 220, 5810, 2714, 1275, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6069, '2022-11-18', 268, 5811, 2714, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6070, '2022-11-18', 423, 5812, 2714, 830, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6071, '2022-11-18', 159, 5813, 2715, 737, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6072, '2022-11-18', 220, 5814, 2715, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6073, '2022-11-18', 269, 5815, 2715, 1000, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6074, '2022-11-18', 458, 5816, 2715, 1212, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6075, '2022-11-19', 457, 5817, 2716, 909, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6076, '2022-11-19', 287, 5818, 2717, 311, '-1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6077, '2022-11-19', 287, 5818, 2717, 1203, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6078, '2022-11-19', 8, 5819, 2718, 1235, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6079, '2022-11-19', 457, 5820, 2719, 909, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6080, '2022-11-19', 268, 5821, 2720, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6081, '2022-11-19', 458, 5822, 2720, 1212, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6082, '2022-11-19', 268, 5823, 2721, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6083, '2022-11-19', 287, 5824, 2722, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6084, '2022-11-19', 484, 5825, 2722, 1103, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6085, '2022-11-19', 456, 5826, 2722, 1267, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6086, '2022-11-19', 483, 5827, 2722, 1102, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6087, '2022-11-19', 389, 5828, 2722, 975, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6088, '2022-11-19', 386, 5829, 2722, 986, '3.0000', '200.0000', '200.0000', '350.0000', '350.0000', '10.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6089, '2022-11-19', 482, 5830, 2723, 1207, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6090, '2022-11-19', 377, 5831, 2723, 1172, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6091, '2022-11-19', 457, 5832, 2723, 1268, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6092, '2022-11-19', 391, 5833, 2723, 977, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6093, '2022-11-19', 268, 5834, 2724, 1001, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6094, '2022-11-19', 270, 5835, 2724, 1177, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6095, '2022-11-19', 410, 5836, 2725, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6096, '2022-11-19', 269, 5837, 2726, 1000, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6097, '2022-11-19', 377, 5838, 2726, 1248, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6098, '2022-11-20', 269, 5839, 2727, 1000, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6099, '2022-11-20', 220, 5840, 2727, 1275, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6100, '2022-11-20', 220, 5840, 2727, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '38.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6101, '2022-11-20', 284, 5841, 2727, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '7.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6102, '2022-11-20', 217, 5842, 2727, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6103, '2022-11-20', 268, 5843, 2728, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6104, '2022-11-20', 159, 5844, 2728, 737, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6105, '2022-11-20', 457, 5845, 2729, 1268, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6106, '2022-11-20', 457, 5845, 2729, 1306, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6107, '2022-11-20', 276, 5846, 2730, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6108, '2022-11-20', 217, 5847, 2731, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6109, '2022-11-20', 284, 5848, 2732, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '6.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6110, '2022-11-20', 217, 5849, 2732, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6111, '2022-11-20', 458, 5850, 2733, 1291, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6112, '2022-11-20', 380, 5851, 2734, 1148, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6113, '2022-11-21', 482, 5852, 2735, 1207, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6114, '2022-11-21', 268, 5853, 2736, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6115, '2022-11-21', 278, 5854, 2737, 289, '1.0000', '60.0000', '60.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6116, '2022-11-21', 102, 5855, 2738, 96, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6117, '2022-11-21', 132, 5856, 2738, 562, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6118, '2022-11-21', 491, 5857, 2738, 1234, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6119, '2022-11-21', 268, 5858, 2738, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6120, '2022-11-21', 410, 5859, 2739, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6121, '2022-11-21', 159, 5860, 2740, 737, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6122, '2022-11-21', 220, 5861, 2741, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '37.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6123, '2022-11-22', 446, 5862, 2742, 904, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6124, '2022-11-22', 520, 5863, 2742, 1278, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 244, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6125, '2022-11-22', 448, 5864, 2742, 1211, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6126, '2022-11-22', 114, 5865, 2742, 941, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6127, '2022-11-22', 297, 5866, 2743, 1075, '4.0000', '180.0000', '180.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6128, '2022-11-22', 220, 5867, 2743, 1292, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '35.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6129, '2022-11-22', 143, 5868, 2744, 1109, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6130, '2022-11-22', 351, 5869, 2744, 1289, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6131, '2022-11-22', 9, 5870, 2745, 1131, '5.0000', '250.0000', '250.0000', '500.0000', '500.0000', '42.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6132, '2022-11-22', 162, 5871, 2745, 147, '-1.0000', '400.0000', '400.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6133, '2022-11-22', 162, 5871, 2745, 1243, '5.0000', '600.0000', '600.0000', '900.0000', '900.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6134, '2022-11-22', 93, 5872, 2745, 1059, '9.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6135, '2022-11-22', 480, 5873, 2745, 1067, '1.0000', '3000.0000', '3000.0000', '4500.0000', '4500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6136, '2022-11-22', 390, 5874, 2745, 976, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6137, '2022-11-22', 268, 5875, 2746, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6138, '2022-11-22', 220, 5876, 2746, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '34.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6139, '2022-11-22', 458, 5877, 2747, 1291, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6140, '2022-11-22', 93, 5878, 2748, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6141, '2022-11-22', 519, 5879, 2749, 1259, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6142, '2022-11-22', 388, 5880, 2749, 1194, '1.0000', '550.0000', '550.0000', '850.0000', '850.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6143, '2022-11-22', 534, 5881, 2749, 1350, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '4.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6144, '2022-11-22', 9, 5882, 2750, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '41.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6145, '2022-11-22', 287, 5883, 2750, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6146, '2022-11-23', 217, 5884, 2751, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6147, '2022-11-23', 410, 5885, 2752, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6148, '2022-11-24', 163, 5886, 2753, 767, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6149, '2022-11-24', 522, 5887, 2753, 1314, '4.0000', '50.0000', '50.0000', '70.0000', '70.0000', '54.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6150, '2022-11-24', 132, 5888, 2753, 562, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 160, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6151, '2022-11-24', 457, 5889, 2753, 1306, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6152, '2022-11-24', 427, 5890, 2754, 857, '-1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6153, '2022-11-24', 427, 5890, 2754, 1063, '2.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6154, '2022-11-24', 315, 5891, 2754, 390, '-4.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6155, '2022-11-24', 315, 5891, 2754, 1064, '3.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6156, '2022-11-24', 315, 5891, 2754, 1132, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '9.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6157, '2022-11-24', 429, 5892, 2754, 859, '-3.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6158, '2022-11-24', 429, 5892, 2754, 1039, '4.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6159, '2022-11-24', 526, 5893, 2754, 1322, '1.0000', '520.0000', '520.0000', '700.0000', '700.0000', '3.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6160, '2022-11-24', 220, 5894, 2755, 1292, '5.0000', '35.0000', '35.0000', '60.0000', '60.0000', '29.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6161, '2022-11-25', 533, 5895, 2756, 1339, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6162, '2022-11-25', 63, 5896, 2757, 1233, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6163, '2022-11-25', 217, 5897, 2757, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6164, '2022-11-25', 403, 5898, 2757, 1341, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6165, '2022-11-25', 164, 5899, 2757, 1340, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6166, '2022-11-25', 425, 5900, 2757, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6167, '2022-11-25', 164, 5901, 2758, 1340, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6168, '2022-11-25', 268, 5902, 2759, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6169, '2022-11-25', 280, 5903, 2760, 1173, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6170, '2022-11-25', 217, 5904, 2761, 1276, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 242, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6185, '2022-11-25', 489, 5915, 2764, 1116, '1.0000', '350.0000', '350.0000', '700.0000', '700.0000', '3.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6184, '2022-11-25', 217, 5914, 2764, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6183, '2022-11-25', 313, 5913, 2764, 1263, '3.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6182, '2022-11-25', 313, 5913, 2764, 476, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6181, '2022-11-25', 313, 5913, 2764, 388, '-3.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6180, '2022-11-25', 351, 5912, 2763, 1289, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6179, '2022-11-25', 282, 5911, 2763, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '9.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6186, '2022-11-25', 533, 5916, 2764, 1339, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6187, '2022-11-25', 220, 5917, 2764, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '28.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6188, '2022-11-25', 506, 5918, 2765, 1185, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6189, '2022-11-25', 457, 5919, 2766, 1306, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6190, '2022-11-25', 312, 5920, 2767, 387, '-1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6191, '2022-11-25', 312, 5920, 2767, 1143, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6192, '2022-11-25', 220, 5921, 2767, 1292, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '26.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6193, '2022-11-26', 500, 5922, 2768, 1260, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6194, '2022-11-26', 93, 5923, 2769, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6195, '2022-11-26', 217, 5924, 2769, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6196, '2022-11-26', 319, 5925, 2769, 398, '-1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6197, '2022-11-26', 319, 5925, 2769, 1147, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6213, '2022-11-26', 534, 5938, 2776, 1350, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6214, '2022-11-26', 220, 5939, 2776, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '23.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6222, '2022-11-26', 389, 5945, 2777, 975, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6221, '2022-11-26', 295, 5944, 2777, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '21.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6220, '2022-11-26', 66, 5943, 2777, 1048, '2.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6219, '2022-11-26', 66, 5943, 2777, 893, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6218, '2022-11-26', 66, 5943, 2777, 16, '-2.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6217, '2022-11-26', 534, 5942, 2777, 1350, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6216, '2022-11-26', 220, 5941, 2777, 1292, '6.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6215, '2022-11-26', 393, 5940, 2777, 1153, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '10.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6223, '2022-11-26', 389, 5945, 2777, 1197, '8.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6209, '2022-11-26', 200, 5934, 2772, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6210, '2022-11-26', 220, 5935, 2773, 1292, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6211, '2022-11-26', 217, 5936, 2774, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6212, '2022-11-26', 268, 5937, 2775, 1001, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6224, '2022-11-26', 220, 5946, 2778, 1292, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '14.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6225, '2022-11-26', 280, 5947, 2778, 1247, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6226, '2022-11-26', 282, 5948, 2779, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '8.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6227, '2022-11-26', 285, 5949, 2780, 1086, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6228, '2022-11-27', 268, 5950, 2781, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6229, '2022-11-27', 458, 5951, 2782, 1291, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6230, '2022-11-27', 220, 5952, 2783, 1292, '5.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6231, '2022-11-27', 410, 5953, 2784, 1176, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6232, '2022-11-28', 458, 5954, 2785, 1291, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6233, '2022-11-28', 220, 5955, 2786, 1292, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6234, '2022-11-28', 271, 5956, 2787, 820, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '9.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6235, '2022-11-28', 410, 5957, 2788, 1176, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6236, '2022-11-28', 410, 5957, 2788, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '35.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6237, '2022-11-29', 445, 5958, 2789, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6238, '2022-11-29', 534, 5959, 2790, 1350, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6239, '2022-11-29', 268, 5960, 2791, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6240, '2022-11-29', 377, 5961, 2791, 1248, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6241, '2022-11-29', 427, 5962, 2792, 1063, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6242, '2022-11-29', 3, 5963, 2793, 3, '-2.0000', '180.0000', '180.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6243, '2022-11-29', 3, 5963, 2793, 1196, '3.0000', '180.0000', '180.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6244, '2022-11-29', 113, 5964, 2794, 106, '-1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6245, '2022-11-29', 113, 5964, 2794, 912, '2.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6246, '2022-11-29', 163, 5965, 2795, 767, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6247, '2022-11-29', 9, 5966, 2796, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '40.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6248, '2022-11-29', 287, 5967, 2796, 311, '-1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6249, '2022-11-29', 287, 5967, 2796, 1203, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6250, '2022-11-29', 108, 5968, 2797, 931, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6251, '2022-11-29', 410, 5969, 2798, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '34.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6252, '2022-11-30', 487, 5970, 2799, 1117, '1.0000', '300.0000', '300.0000', '550.0000', '550.0000', '3.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6253, '2022-11-30', 482, 5971, 2800, 1303, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6254, '2022-11-30', 268, 5972, 2800, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6255, '2022-11-30', 154, 5973, 2801, 131, '-2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 19, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6256, '2022-11-30', 154, 5973, 2801, 629, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 168, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6257, '2022-11-30', 154, 5973, 2801, 1199, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6258, '2022-12-01', 466, 5974, 2802, 1112, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 233, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6259, '2022-12-01', 388, 5975, 2802, 1194, '1.0000', '550.0000', '550.0000', '850.0000', '850.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6260, '2022-12-01', 425, 5976, 2803, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6261, '2022-12-01', 388, 5977, 2804, 1194, '1.0000', '550.0000', '550.0000', '850.0000', '850.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6262, '2022-12-01', 74, 5978, 2804, 974, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6263, '2022-12-02', 351, 5979, 2805, 1289, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6264, '2022-12-02', 282, 5980, 2806, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '7.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6265, '2022-12-02', 410, 5981, 2807, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '33.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6266, '2022-12-02', 220, 5982, 2807, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6267, '2022-12-02', 268, 5983, 2808, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6268, '2022-12-02', 410, 5984, 2808, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '32.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6269, '2022-12-02', 388, 5985, 2809, 1194, '1.0000', '550.0000', '550.0000', '850.0000', '850.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6270, '2022-12-02', 141, 5986, 2809, 1139, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6271, '2022-12-02', 284, 5987, 2810, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6272, '2022-12-02', 268, 5988, 2811, 1001, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 217, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6273, '2022-12-02', 220, 5989, 2811, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6274, '2022-12-02', 9, 5990, 2812, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '38.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6275, '2022-12-02', 312, 5991, 2812, 1143, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6276, '2022-12-02', 482, 5992, 2812, 1303, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6277, '2022-12-02', 522, 5993, 2812, 1314, '3.0000', '50.0000', '50.0000', '70.0000', '70.0000', '51.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6278, '2022-12-02', 141, 5994, 2812, 1139, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6279, '2022-12-02', 537, 5995, 2812, 1366, '2.0000', '40.0000', '40.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6280, '2022-12-02', 496, 5996, 2812, 1133, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6281, '2022-12-02', 455, 5997, 2813, 1308, '2.0000', '110.0000', '110.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6282, '2022-12-02', 9, 5998, 2814, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '37.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6283, '2022-12-02', 287, 5999, 2814, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6284, '2022-12-02', 487, 6000, 2815, 1117, '1.0000', '300.0000', '300.0000', '550.0000', '550.0000', '2.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6285, '2022-12-02', 526, 6001, 2816, 1322, '1.0000', '520.0000', '520.0000', '700.0000', '700.0000', '2.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6286, '2022-12-02', 217, 6002, 2817, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6287, '2022-12-02', 217, 6003, 2818, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6288, '2022-12-03', 9, 6004, 2819, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '36.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6289, '2022-12-03', 230, 6005, 2820, 1080, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6290, '2022-12-03', 306, 6006, 2821, 1258, '1.0000', '300.0000', '300.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6291, '2022-12-03', 80, 6007, 2821, 1309, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6292, '2022-12-03', 491, 6008, 2821, 1234, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6293, '2022-12-03', 220, 6009, 2821, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6294, '2022-12-03', 80, 6010, 2822, 1309, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6295, '2022-12-03', 403, 6011, 2823, 1341, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6296, '2022-12-03', 193, 6012, 2824, 1345, '8.0000', '200.0000', '200.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6297, '2022-12-03', 287, 6013, 2825, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6298, '2022-12-03', 276, 6014, 2825, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6299, '2022-12-03', 485, 6015, 2825, 1369, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '28.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6300, '2022-12-03', 104, 6016, 2826, 97, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6301, '2022-12-03', 282, 6017, 2826, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '6.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6302, '2022-12-03', 220, 6018, 2826, 1292, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6303, '2022-12-03', 141, 6019, 2827, 1139, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6304, '2022-12-03', 159, 6020, 2828, 1213, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6305, '2022-12-03', 195, 6021, 2829, 151, '-14.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6306, '2022-12-03', 195, 6021, 2829, 1162, '12.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6307, '2022-12-03', 195, 6021, 2829, 1346, '3.0000', '350.0000', '350.0000', '600.0000', '600.0000', '12.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6308, '2022-12-03', 93, 6022, 2829, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6309, '2022-12-03', 484, 6023, 2829, 1103, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6310, '2022-12-05', 217, 6024, 2830, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6311, '2022-12-05', 445, 6025, 2830, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '6.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6312, '2022-12-05', 396, 6026, 2830, 705, '-9.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6313, '2022-12-05', 396, 6026, 2830, 896, '3.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6314, '2022-12-05', 396, 6026, 2830, 1144, '8.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6315, '2022-12-05', 220, 6027, 2830, 1292, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6316, '2022-12-05', 391, 6028, 2830, 977, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '6.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6317, '2022-12-05', 385, 6029, 2830, 680, '-2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6318, '2022-12-05', 385, 6029, 2830, 1078, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6319, '2022-12-05', 385, 6029, 2830, 1201, '6.0000', '150.0000', '150.0000', '300.0000', '300.0000', '24.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6320, '2022-12-05', 410, 6030, 2830, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '31.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6321, '2022-12-05', 107, 6031, 2830, 1168, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6322, '2022-12-05', 268, 6032, 2830, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '48.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6323, '2022-12-05', 411, 6033, 2830, 1367, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6324, '2022-12-05', 9, 6034, 2830, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '34.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6325, '2022-12-05', 485, 6035, 2830, 1369, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '26.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6326, '2022-12-05', 503, 6036, 2831, 1182, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6327, '2022-12-06', 268, 6037, 2832, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '46.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6328, '2022-12-06', 270, 6038, 2832, 1177, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6329, '2022-12-06', 107, 6039, 2832, 1168, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6330, '2022-12-06', 282, 6040, 2832, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '5.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6331, '2022-12-06', 411, 6041, 2833, 1367, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6332, '2022-12-06', 268, 6042, 2834, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '45.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6333, '2022-12-06', 458, 6043, 2834, 1291, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6334, '2022-12-06', 458, 6043, 2834, 1368, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6335, '2022-12-06', 411, 6044, 2834, 1367, '3.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6336, '2022-12-06', 456, 6045, 2835, 1307, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6337, '2022-12-06', 431, 6046, 2836, 887, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6338, '2022-12-06', 288, 6047, 2836, 841, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6339, '2022-12-06', 207, 6048, 2836, 164, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 37, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6340, '2022-12-06', 458, 6049, 2837, 1368, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6341, '2022-12-06', 351, 6050, 2837, 1289, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6342, '2022-12-06', 521, 6051, 2838, 1301, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6343, '2022-12-06', 392, 6052, 2838, 1300, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6344, '2022-12-06', 297, 6053, 2838, 1075, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6345, '2022-12-06', 5, 6054, 2838, 972, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6346, '2022-12-06', 315, 6055, 2839, 390, '-1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6347, '2022-12-06', 315, 6055, 2839, 1132, '2.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6348, '2022-12-06', 154, 6056, 2839, 1199, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6349, '2022-12-06', 506, 6057, 2840, 1185, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6350, '2022-12-07', 130, 6058, 2841, 114, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6351, '2022-12-07', 108, 6059, 2841, 1190, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6352, '2022-12-07', 491, 6060, 2841, 1234, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6353, '2022-12-07', 491, 6060, 2841, 1342, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6354, '2022-12-07', 193, 6061, 2841, 1345, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6355, '2022-12-07', 268, 6062, 2842, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '43.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6356, '2022-12-08', 220, 6063, 2843, 1370, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '29.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6357, '2022-12-08', 379, 6064, 2844, 1250, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6358, '2022-12-08', 268, 6065, 2845, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '42.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6359, '2022-12-08', 217, 6066, 2846, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6360, '2022-12-08', 107, 6067, 2847, 1168, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6361, '2022-12-08', 280, 6068, 2847, 1247, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6362, '2022-12-08', 457, 6069, 2848, 1306, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6363, '2022-12-08', 284, 6070, 2848, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6364, '2022-12-08', 5, 6071, 2848, 972, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6365, '2022-12-08', 217, 6072, 2848, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6366, '2022-12-08', 220, 6073, 2848, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '27.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6367, '2022-12-08', 458, 6074, 2849, 1368, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6368, '2022-12-08', 482, 6075, 2849, 1303, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6369, '2022-12-09', 276, 6076, 2850, 1113, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6370, '2022-12-09', 217, 6077, 2850, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6371, '2022-12-09', 220, 6078, 2850, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '25.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6372, '2022-12-09', 35, 6079, 2850, 396, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6373, '2022-12-09', 35, 6079, 2850, 1352, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6374, '2022-12-09', 168, 6080, 2851, 232, '-2.0000', '1000.0000', '1000.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6375, '2022-12-09', 168, 6080, 2851, 1040, '3.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6376, '2022-12-09', 156, 6081, 2851, 736, '1.0000', '185.0000', '185.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6377, '2022-12-09', 271, 6082, 2852, 820, '4.0000', '30.0000', '30.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6378, '2022-12-09', 410, 6083, 2852, 1269, '8.0000', '35.0000', '35.0000', '50.0000', '50.0000', '23.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6379, '2022-12-09', 270, 6084, 2852, 1177, '4.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6380, '2022-12-09', 269, 6085, 2852, 1000, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6381, '2022-12-09', 268, 6086, 2853, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '41.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6382, '2022-12-09', 35, 6087, 2854, 1352, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6383, '2022-12-09', 386, 6088, 2854, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6384, '2022-12-09', 341, 6089, 2854, 1356, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6385, '2022-12-09', 295, 6090, 2854, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '20.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6386, '2022-12-09', 447, 6091, 2854, 1232, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6387, '2022-12-09', 324, 6092, 2854, 1231, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6388, '2022-12-09', 536, 6093, 2854, 1355, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6389, '2022-12-09', 391, 6094, 2854, 977, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '5.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6390, '2022-12-09', 388, 6095, 2854, 1194, '2.0000', '550.0000', '550.0000', '850.0000', '850.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6391, '2022-12-09', 457, 6096, 2854, 1306, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6392, '2022-12-09', 220, 6097, 2854, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '23.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6393, '2022-12-09', 193, 6098, 2854, 1345, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6394, '2022-12-09', 351, 6099, 2854, 1289, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6395, '2022-12-09', 325, 6100, 2855, 722, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6396, '2022-12-09', 386, 6101, 2855, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6397, '2022-12-09', 220, 6102, 2856, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '21.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6398, '2022-12-09', 458, 6103, 2856, 1368, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6399, '2022-12-09', 397, 6104, 2857, 1152, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6400, '2022-12-09', 391, 6105, 2857, 977, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6401, '2022-12-09', 109, 6106, 2858, 1167, '1.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '1.0000', 1, 0, NULL, 236, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6402, '2022-12-09', 220, 6107, 2859, 1370, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '20.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6403, '2022-12-09', 100, 6108, 2859, 799, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6404, '2022-12-09', 8, 6109, 2859, 1235, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6405, '2022-12-09', 482, 6110, 2860, 1303, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6406, '2022-12-09', 385, 6111, 2861, 1201, '3.0000', '150.0000', '150.0000', '300.0000', '300.0000', '21.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6407, '2022-12-09', 456, 6112, 2861, 1307, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6408, '2022-12-09', 214, 6113, 2861, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6409, '2022-12-09', 217, 6114, 2862, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6410, '2022-12-09', 220, 6115, 2862, 1370, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '19.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6411, '2022-12-09', 458, 6116, 2863, 1368, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6412, '2022-12-09', 193, 6117, 2864, 1345, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6413, '2022-12-10', 217, 6118, 2865, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6414, '2022-12-10', 6, 6119, 2866, 676, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6415, '2022-12-10', 6, 6119, 2866, 958, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 207, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6416, '2022-12-10', 220, 6120, 2867, 1370, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '18.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6417, '2022-12-10', 410, 6121, 2867, 1269, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6418, '2022-12-10', 282, 6122, 2867, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6419, '2022-12-11', 319, 6123, 2868, 1147, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6420, '2022-12-11', 385, 6124, 2868, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '20.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6421, '2022-12-11', 519, 6125, 2869, 1259, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6422, '2022-12-11', 74, 6126, 2869, 974, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6423, '2022-12-11', 220, 6127, 2869, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '16.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6424, '2022-12-11', 268, 6128, 2870, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6425, '2022-12-11', 9, 6129, 2871, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '33.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6426, '2022-12-11', 287, 6130, 2871, 1203, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6427, '2022-12-11', 458, 6131, 2872, 1368, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6428, '2022-12-11', 280, 6132, 2872, 1247, '2.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6429, '2022-12-11', 281, 6133, 2872, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6430, '2022-12-11', 284, 6134, 2872, 1174, '2.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6431, '2022-12-11', 283, 6135, 2872, 303, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6432, '2022-12-11', 283, 6135, 2872, 530, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6433, '2022-12-11', 272, 6136, 2872, 290, '1.0000', '1400.0000', '1400.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 130, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6434, '2022-12-11', 220, 6137, 2872, 1370, '5.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6435, '2022-12-11', 260, 6138, 2873, 250, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '22.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6436, '2022-12-11', 377, 6139, 2874, 1248, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6437, '2022-12-11', 456, 6140, 2874, 1307, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6438, '2022-12-11', 220, 6141, 2875, 1370, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '10.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6439, '2022-12-11', 35, 6142, 2876, 1352, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6440, '2022-12-11', 491, 6143, 2876, 1342, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6441, '2022-12-11', 220, 6144, 2877, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6442, '2022-12-11', 500, 6145, 2878, 1349, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6443, '2022-12-11', 220, 6146, 2879, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6444, '2022-12-12', 157, 6147, 2880, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6445, '2022-12-12', 282, 6148, 2881, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6446, '2022-12-13', 487, 6149, 2882, 1117, '1.0000', '300.0000', '300.0000', '550.0000', '550.0000', '1.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6447, '2022-12-13', 260, 6150, 2883, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6450, '2022-12-13', 260, 6153, 2885, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6451, '2022-12-13', 377, 6154, 2886, 1248, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6452, '2022-12-13', 271, 6155, 2886, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6453, '2022-12-13', 410, 6156, 2886, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6454, '2022-12-13', 268, 6157, 2886, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '38.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6455, '2022-12-13', 269, 6158, 2886, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '22.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6456, '2022-12-13', 220, 6159, 2886, 1370, '4.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6457, '2022-12-13', 456, 6160, 2887, 1307, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6458, '2022-12-13', 457, 6161, 2888, 1379, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6459, '2022-12-14', 534, 6162, 2889, 1350, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6460, '2022-12-14', 9, 6163, 2890, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '32.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6461, '2022-12-14', 276, 6164, 2890, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6462, '2022-12-14', 271, 6165, 2891, 820, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6463, '2022-12-14', 482, 6166, 2892, 1303, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6464, '2022-12-14', 410, 6167, 2892, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6465, '2022-12-14', 537, 6168, 2893, 1366, '1.0000', '40.0000', '40.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6466, '2022-12-15', 217, 6169, 2894, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6467, '2022-12-15', 458, 6170, 2895, 1368, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6468, '2022-12-15', 212, 6171, 2896, 1118, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6469, '2022-12-15', 458, 6172, 2897, 1368, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6470, '2022-12-15', 9, 6173, 2898, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '30.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6471, '2022-12-15', 485, 6174, 2899, 1369, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '24.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6472, '2022-12-15', 459, 6175, 2900, 914, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6473, '2022-12-15', 413, 6176, 2901, 913, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6474, '2022-12-15', 425, 6177, 2901, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6475, '2022-12-16', 11, 6178, 2902, 1361, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 249, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6476, '2022-12-16', 445, 6179, 2902, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6477, '2022-12-16', 457, 6180, 2903, 1379, '3.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6478, '2022-12-16', 119, 6181, 2904, 341, '3.0000', '120.0000', '120.0000', '200.0000', '200.0000', '42.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6479, '2022-12-16', 147, 6182, 2905, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '12.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6480, '2022-12-16', 74, 6183, 2906, 974, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6481, '2022-12-16', 74, 6183, 2906, 1192, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6482, '2022-12-16', 107, 6184, 2907, 1290, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6483, '2022-12-16', 268, 6185, 2907, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '37.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6484, '2022-12-16', 195, 6186, 2907, 151, '-5.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6485, '2022-12-16', 195, 6186, 2907, 1346, '6.0000', '350.0000', '350.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6486, '2022-12-16', 212, 6187, 2907, 1118, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6487, '2022-12-16', 296, 6188, 2907, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '27.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6488, '2022-12-16', 73, 6189, 2907, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6489, '2022-12-16', 456, 6190, 2908, 1380, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6490, '2022-12-16', 506, 6191, 2909, 1185, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6491, '2022-12-16', 458, 6192, 2910, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6492, '2022-12-16', 220, 6193, 2910, 1370, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 253, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6493, '2022-12-16', 220, 6193, 2910, 1383, '3.0000', '35.0000', '35.0000', '60.0000', '60.0000', '17.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6494, '2022-12-16', 506, 6194, 2911, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6495, '2022-12-17', 342, 6195, 2912, 1181, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6496, '2022-12-17', 212, 6196, 2913, 1118, '3.0000', '100.0000', '100.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6497, '2022-12-17', 149, 6197, 2914, 1081, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6498, '2022-12-17', 193, 6198, 2914, 1345, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6499, '2022-12-17', 500, 6199, 2914, 1349, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6500, '2022-12-17', 220, 6200, 2915, 1383, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '15.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6501, '2022-12-17', 193, 6201, 2916, 1345, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6502, '2022-12-17', 149, 6202, 2916, 1335, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6503, '2022-12-17', 268, 6203, 2917, 1070, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '34.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6504, '2022-12-17', 312, 6204, 2918, 1143, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6505, '2022-12-17', 220, 6205, 2919, 1383, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '13.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6506, '2022-12-17', 145, 6206, 2919, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6507, '2022-12-17', 284, 6207, 2920, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6508, '2022-12-17', 287, 6208, 2921, 1203, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6509, '2022-12-18', 268, 6209, 2922, 1070, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6510, '2022-12-18', 268, 6210, 2923, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '29.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6511, '2022-12-18', 269, 6211, 2923, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6512, '2022-12-18', 238, 6212, 2924, 205, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6513, '2022-12-18', 93, 6213, 2925, 1059, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6514, '2022-12-18', 93, 6213, 2925, 1377, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6515, '2022-12-18', 375, 6214, 2926, 1209, '1.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '3.0000', 1, 0, NULL, 240, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6516, '2022-12-18', 381, 6215, 2926, 645, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6517, '2022-12-18', 217, 6216, 2926, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6518, '2022-12-18', 457, 6217, 2927, 1390, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6519, '2022-12-19', 410, 6218, 2928, 1269, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6520, '2022-12-19', 271, 6219, 2928, 820, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 195, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6521, '2022-12-19', 351, 6220, 2929, 1371, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6522, '2022-12-19', 385, 6221, 2930, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '19.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6523, '2022-12-19', 268, 6222, 2930, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '28.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6524, '2022-12-19', 456, 6223, 2930, 1380, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6525, '2022-12-19', 457, 6224, 2930, 1390, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6526, '2022-12-19', 458, 6225, 2930, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6527, '2022-12-19', 457, 6226, 2931, 1390, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6528, '2022-12-19', 113, 6227, 2931, 1374, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6529, '2022-12-20', 11, 6228, 2932, 1361, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 249, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6530, '2022-12-20', 276, 6229, 2932, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6531, '2022-12-20', 211, 6230, 2933, 1120, '6.0000', '220.0000', '220.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6532, '2022-12-20', 380, 6231, 2934, 1249, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6533, '2022-12-20', 193, 6232, 2934, 1345, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6534, '2022-12-20', 230, 6233, 2935, 1080, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6535, '2022-12-20', 113, 6234, 2936, 1374, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6536, '2022-12-20', 268, 6235, 2936, 1070, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '25.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6537, '2022-12-20', 411, 6236, 2936, 1367, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6538, '2022-12-20', 458, 6237, 2937, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6539, '2022-12-20', 446, 6238, 2937, 904, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6540, '2022-12-20', 432, 6239, 2937, 900, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6541, '2022-12-20', 113, 6240, 2938, 1374, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6542, '2022-12-20', 268, 6241, 2939, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6543, '2022-12-20', 74, 6242, 2940, 1192, '2.0000', '450.0000', '450.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6544, '2022-12-20', 411, 6243, 2940, 1378, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6545, '2022-12-20', 8, 6244, 2940, 1235, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6546, '2022-12-20', 268, 6245, 2941, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '23.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6547, '2022-12-20', 426, 6246, 2942, 1364, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '66.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6548, '2022-12-20', 506, 6247, 2943, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6549, '2022-12-21', 268, 6248, 2944, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '21.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6550, '2022-12-22', 456, 6249, 2945, 1380, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6551, '2022-12-22', 145, 6250, 2946, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6552, '2022-12-22', 389, 6251, 2947, 684, '-2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6553, '2022-12-22', 389, 6251, 2947, 1197, '2.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6554, '2022-12-22', 389, 6251, 2947, 1294, '1.0000', '280.0000', '280.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6555, '2022-12-22', 475, 6252, 2947, 1049, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6556, '2022-12-22', 148, 6253, 2947, 462, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 145, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6557, '2022-12-22', 355, 6254, 2948, 1104, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6558, '2022-12-22', 393, 6255, 2948, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '9.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6559, '2022-12-22', 351, 6256, 2949, 1371, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6560, '2022-12-22', 217, 6257, 2950, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6561, '2022-12-23', 9, 6258, 2951, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '28.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6562, '2022-12-23', 147, 6259, 2952, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '11.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6563, '2022-12-23', 458, 6260, 2953, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6564, '2022-12-23', 377, 6261, 2954, 1248, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6565, '2022-12-23', 296, 6262, 2955, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '26.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6566, '2022-12-23', 11, 6263, 2956, 1361, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 249, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6567, '2022-12-23', 271, 6264, 2956, 851, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 199, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6568, '2022-12-23', 342, 6265, 2957, 1181, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6569, '2022-12-23', 268, 6266, 2957, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6570, '2022-12-23', 280, 6267, 2957, 1247, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6571, '2022-12-23', 351, 6268, 2958, 1371, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6572, '2022-12-23', 287, 6269, 2958, 1203, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6573, '2022-12-23', 282, 6270, 2959, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6574, '2022-12-23', 385, 6271, 2959, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '18.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6575, '2022-12-23', 392, 6272, 2959, 1300, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6576, '2022-12-23', 220, 6273, 2960, 1383, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '11.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6577, '2022-12-23', 220, 6274, 2961, 1383, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6578, '2022-12-23', 220, 6275, 2962, 1383, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6579, '2022-12-24', 385, 6276, 2963, 1201, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '16.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6580, '2022-12-24', 296, 6277, 2964, 319, '2.0000', '95.0000', '95.0000', '150.0000', '150.0000', '24.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6581, '2022-12-24', 9, 6278, 2965, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '27.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6582, '2022-12-24', 287, 6279, 2965, 1373, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6583, '2022-12-24', 458, 6280, 2965, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6584, '2022-12-24', 280, 6281, 2966, 1386, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6585, '2022-12-24', 425, 6282, 2966, 834, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6586, '2022-12-24', 410, 6283, 2966, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6587, '2022-12-24', 268, 6284, 2966, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6588, '2022-12-24', 107, 6285, 2967, 1290, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6589, '2022-12-24', 458, 6286, 2968, 1375, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6590, '2022-12-24', 425, 6287, 2969, 834, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6591, '2022-12-24', 459, 6288, 2969, 914, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6592, '2022-12-24', 113, 6289, 2969, 1374, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6593, '2022-12-24', 172, 6290, 2969, 417, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6594, '2022-12-24', 3, 6291, 2969, 3, '-1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6595, '2022-12-24', 3, 6291, 2969, 1196, '2.0000', '180.0000', '180.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6596, '2022-12-24', 85, 6292, 2970, 1079, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6597, '2022-12-24', 270, 6293, 2971, 1271, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6598, '2022-12-24', 268, 6294, 2972, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6599, '2022-12-24', 145, 6295, 2973, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6600, '2022-12-24', 280, 6296, 2973, 1386, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6601, '2022-12-24', 145, 6297, 2974, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6602, '2022-12-24', 119, 6298, 2975, 341, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '40.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6603, '2022-12-25', 164, 6299, 2976, 155, '-1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6604, '2022-12-25', 164, 6299, 2976, 1340, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6605, '2022-12-25', 482, 6300, 2976, 1338, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6606, '2022-12-25', 107, 6301, 2977, 1290, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6607, '2022-12-25', 220, 6302, 2978, 1383, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6608, '2022-12-25', 145, 6303, 2978, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6609, '2022-12-25', 482, 6304, 2978, 1338, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6610, '2022-12-25', 230, 6305, 2978, 1080, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6611, '2022-12-25', 147, 6306, 2979, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '10.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6612, '2022-12-25', 9, 6307, 2980, 1131, '3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '24.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6613, '2022-12-25', 287, 6308, 2980, 1373, '4.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6614, '2022-12-25', 497, 6309, 2980, 1134, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6615, '2022-12-25', 411, 6310, 2981, 1378, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6616, '2022-12-25', 425, 6311, 2981, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '26.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6617, '2022-12-25', 3, 6312, 2982, 1196, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6618, '2022-12-25', 385, 6313, 2982, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '15.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6619, '2022-12-25', 561, 6314, 2983, 1418, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6620, '2022-12-25', 280, 6315, 2983, 1386, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6621, '2023-01-21', 385, 6316, 2984, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6622, '2023-01-21', 567, 6317, 2984, 1430, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6623, '2023-01-21', 526, 6318, 2984, 1322, '1.0000', '520.0000', '520.0000', '700.0000', '700.0000', '1.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6624, '2023-01-21', 458, 6319, 2984, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6625, '2023-01-21', 276, 6320, 2984, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6626, '2023-01-21', 458, 6321, 2984, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6627, '2023-01-21', 411, 6322, 2984, 1378, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6628, '2023-01-21', 268, 6323, 2984, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6629, '2023-01-21', 410, 6324, 2984, 1269, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6630, '2023-01-21', 271, 6325, 2984, 963, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6631, '2023-01-21', 566, 6326, 2985, 1429, '1.0000', '6000.0000', '6000.0000', '7500.0000', '7500.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6634, '2023-01-21', 533, 6329, 2987, 1339, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6635, '2023-01-21', 375, 6330, 2988, 1209, '1.0000', '1800.0000', '1800.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 240, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6636, '2023-01-21', 70, 6331, 2989, 1416, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6637, '2023-01-21', 163, 6332, 2989, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6638, '2023-01-21', 407, 6333, 2990, 758, '2.0000', '450.0000', '450.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6639, '2023-01-21', 406, 6334, 2990, 757, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6640, '2023-01-21', 406, 6334, 2990, 1216, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6641, '2023-01-21', 343, 6335, 2990, 1273, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6642, '2023-01-21', 408, 6336, 2990, 1088, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6643, '2023-01-21', 409, 6337, 2990, 992, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6644, '2023-01-21', 236, 6338, 2990, 204, '6.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 69, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6645, '2023-01-21', 268, 6339, 2990, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6646, '2023-01-21', 561, 6340, 2991, 1418, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6647, '2023-01-21', 70, 6341, 2991, 1416, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6648, '2023-01-21', 120, 6342, 2991, 115, '100.0000', '4.0000', '4.0000', '7.0000', '7.0000', '200.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6649, '2023-01-21', 268, 6343, 2991, 1070, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6650, '2023-01-21', 9, 6344, 2992, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6651, '2023-01-21', 199, 6345, 2993, 1348, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '4.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6652, '2023-01-21', 230, 6346, 2993, 1214, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6653, '2023-01-21', 445, 6347, 2993, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6654, '2023-01-21', 533, 6348, 2993, 1339, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6655, '2023-01-21', 287, 6349, 2993, 1373, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6656, '2023-01-21', 268, 6350, 2993, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6657, '2023-01-21', 284, 6351, 2993, 1174, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6658, '2023-01-21', 268, 6352, 2993, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6659, '2023-01-21', 220, 6353, 2993, 1383, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6660, '2023-01-21', 268, 6354, 2993, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6661, '2023-01-21', 458, 6355, 2993, 1375, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6662, '2023-01-21', 458, 6355, 2993, 1425, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6663, '2023-01-21', 410, 6356, 2993, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6664, '2023-01-21', 147, 6357, 2994, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '9.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6665, '2023-01-21', 411, 6358, 2995, 1378, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6666, '2023-01-21', 411, 6358, 2995, 1491, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6667, '2023-01-21', 351, 6359, 2995, 1426, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6668, '2023-01-21', 297, 6360, 2995, 1075, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '12.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6669, '2023-01-21', 393, 6361, 2995, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '8.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6670, '2023-01-21', 410, 6362, 2995, 1269, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6671, '2023-01-21', 268, 6363, 2995, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6672, '2023-01-21', 220, 6364, 2995, 1383, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6673, '2023-01-21', 521, 6365, 2995, 1301, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6674, '2023-01-21', 102, 6366, 2995, 940, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6675, '2023-01-21', 217, 6367, 2995, 1288, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6676, '2023-01-21', 42, 6368, 2995, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6677, '2023-01-21', 458, 6369, 2995, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6678, '2023-01-21', 200, 6370, 2995, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6679, '2023-01-21', 268, 6371, 2996, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '7.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6680, '2023-01-21', 458, 6372, 2997, 1425, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6681, '2023-01-21', 410, 6373, 2997, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6682, '2023-01-21', 42, 6374, 2997, 1415, '2.0000', '90.0000', '90.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6683, '2023-01-21', 485, 6375, 2997, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '23.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6684, '2023-01-21', 403, 6376, 2997, 1466, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6685, '2023-01-21', 392, 6377, 2997, 1300, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6686, '2023-01-21', 119, 6378, 2997, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6687, '2023-01-21', 381, 6379, 2997, 645, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6688, '2023-01-21', 42, 6380, 2997, 1415, '2.0000', '90.0000', '90.0000', '150.0000', '150.0000', '21.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6689, '2023-01-21', 385, 6381, 2997, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6690, '2023-01-21', 425, 6382, 2997, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '25.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6691, '2023-01-21', 6, 6383, 2998, 973, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6692, '2023-01-21', 494, 6384, 2998, 1242, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6693, '2023-01-21', 487, 6385, 2999, 1117, '1.0000', '300.0000', '300.0000', '550.0000', '550.0000', '0.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6694, '2023-01-21', 70, 6386, 3000, 1416, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6695, '2023-01-21', 567, 6387, 3000, 1430, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6696, '2023-01-21', 105, 6388, 3000, 287, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 128, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6697, '2023-01-21', 458, 6389, 3000, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6698, '2023-01-21', 319, 6390, 3000, 1147, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6699, '2023-01-21', 119, 6391, 3000, 341, '4.0000', '120.0000', '120.0000', '200.0000', '200.0000', '35.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6700, '2023-01-21', 154, 6392, 3000, 1199, '3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6701, '2023-01-21', 70, 6393, 3000, 1416, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6702, '2023-01-21', 560, 6394, 3000, 1417, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6703, '2023-01-21', 163, 6395, 3000, 767, '2.0000', '75.0000', '75.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6704, '2023-01-21', 287, 6396, 3000, 1373, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6705, '2023-01-21', 410, 6397, 3000, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6706, '2023-01-21', 145, 6398, 3000, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6707, '2023-01-21', 458, 6399, 3000, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6708, '2023-01-21', 426, 6400, 3001, 1364, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '62.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6709, '2023-01-21', 284, 6401, 3001, 1387, '2.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6710, '2023-01-21', 220, 6402, 3001, 1383, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6711, '2023-01-21', 351, 6403, 3001, 520, '-1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6712, '2023-01-21', 351, 6403, 3001, 1426, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6713, '2023-01-21', 505, 6404, 3001, 1184, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6714, '2023-01-21', 458, 6405, 3001, 1425, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6715, '2023-01-21', 410, 6406, 3001, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6716, '2023-01-21', 305, 6407, 3002, 1254, '1.0000', '600.0000', '600.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6717, '2023-01-21', 145, 6408, 3002, 1208, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6718, '2023-01-21', 230, 6409, 3002, 1214, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6719, '2023-01-21', 560, 6410, 3002, 1417, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6720, '2023-01-21', 489, 6411, 3002, 1116, '1.0000', '350.0000', '350.0000', '700.0000', '700.0000', '2.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6721, '2023-01-21', 42, 6412, 3002, 1415, '2.0000', '90.0000', '90.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6722, '2023-01-21', 163, 6413, 3002, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6723, '2023-01-21', 74, 6414, 3002, 1192, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6724, '2023-01-21', 388, 6415, 3002, 1194, '1.0000', '550.0000', '550.0000', '850.0000', '850.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6725, '2023-01-21', 393, 6416, 3002, 1153, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6726, '2023-01-21', 411, 6417, 3002, 1491, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6727, '2023-01-21', 458, 6418, 3002, 1425, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6728, '2023-01-21', 159, 6419, 3002, 1213, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6729, '2023-01-21', 280, 6420, 3002, 1386, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6730, '2023-01-21', 427, 6421, 3003, 857, '-12.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6731, '2023-01-21', 427, 6421, 3003, 1063, '4.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6732, '2023-01-21', 427, 6421, 3003, 1224, '9.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6733, '2023-01-21', 428, 6422, 3003, 858, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6734, '2023-01-21', 428, 6422, 3003, 1225, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6735, '2023-01-21', 70, 6423, 3003, 1416, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6736, '2023-01-21', 114, 6424, 3003, 941, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6737, '2023-01-22', 220, 6425, 3004, 1383, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6738, '2023-01-22', 284, 6426, 3004, 1387, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6739, '2023-01-22', 107, 6427, 3005, 1290, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6740, '2023-01-22', 379, 6428, 3005, 1250, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6741, '2023-01-22', 500, 6429, 3005, 1349, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6742, '2023-01-22', 379, 6430, 3006, 1250, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6743, '2023-01-22', 383, 6431, 3006, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '8.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6744, '2023-01-22', 270, 6432, 3006, 1271, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6745, '2023-01-22', 276, 6433, 3006, 1113, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6746, '2023-01-22', 497, 6434, 3006, 1134, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6747, '2023-01-22', 287, 6435, 3006, 1373, '2.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6748, '2023-01-22', 42, 6436, 3006, 1415, '3.0000', '90.0000', '90.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6749, '2023-01-22', 506, 6437, 3006, 1185, '-1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6750, '2023-01-22', 506, 6437, 3006, 1318, '2.0000', '170.0000', '170.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6751, '2023-01-22', 115, 6438, 3007, 108, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6752, '2023-01-22', 458, 6439, 3007, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6753, '2023-01-22', 220, 6440, 3007, 1383, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6754, '2023-01-22', 119, 6441, 3007, 341, '5.0000', '120.0000', '120.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6755, '2023-01-22', 410, 6442, 3007, 1269, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6756, '2023-01-22', 270, 6443, 3007, 1271, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6757, '2023-01-22', 116, 6444, 3007, 944, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6758, '2023-01-22', 381, 6445, 3007, 645, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 170, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6759, '2023-01-22', 381, 6445, 3007, 1483, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '9.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6760, '2023-01-22', 342, 6446, 3007, 1181, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6761, '2023-01-22', 8, 6447, 3007, 1235, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6762, '2023-01-22', 268, 6448, 3007, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6763, '2023-01-22', 9, 6449, 3007, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6764, '2023-01-22', 287, 6450, 3007, 1373, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6765, '2023-01-22', 458, 6451, 3008, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6766, '2023-01-22', 159, 6452, 3008, 1213, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6767, '2023-01-22', 455, 6453, 3008, 1308, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6768, '2023-01-22', 195, 6454, 3008, 151, '-2.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 27, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6769, '2023-01-22', 195, 6454, 3008, 1346, '3.0000', '350.0000', '350.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6770, '2023-01-22', 93, 6455, 3008, 1377, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6771, '2023-01-22', 319, 6456, 3008, 1147, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6772, '2023-01-22', 483, 6457, 3008, 1102, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6773, '2023-01-22', 199, 6458, 3009, 1348, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6774, '2023-01-22', 390, 6459, 3010, 1198, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6775, '2023-01-22', 85, 6460, 3010, 1079, '1.0000', '400.0000', '400.0000', '700.0000', '700.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6776, '2023-01-22', 164, 6461, 3010, 1340, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6777, '2023-01-22', 403, 6462, 3010, 1466, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6778, '2023-01-22', 521, 6463, 3011, 1301, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6779, '2023-01-22', 271, 6464, 3011, 963, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6780, '2023-01-22', 410, 6465, 3011, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6781, '2023-01-22', 383, 6466, 3011, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '7.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6782, '2023-01-22', 458, 6467, 3012, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6783, '2023-01-22', 425, 6468, 3012, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '24.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6784, '2023-01-22', 200, 6469, 3012, 1111, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 232, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6785, '2023-01-22', 9, 6470, 3013, 1131, '5.0000', '250.0000', '250.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6786, '2023-01-22', 217, 6471, 3013, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6787, '2023-01-22', 389, 6472, 3013, 1294, '1.0000', '280.0000', '280.0000', '400.0000', '400.0000', '8.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6788, '2023-01-22', 475, 6473, 3013, 1049, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6789, '2023-01-22', 49, 6474, 3013, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6790, '2023-01-22', 390, 6475, 3013, 1198, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6791, '2023-01-22', 397, 6476, 3014, 1152, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6792, '2023-01-22', 6, 6477, 3014, 973, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6793, '2023-01-22', 393, 6478, 3014, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6794, '2023-01-22', 495, 6479, 3014, 1157, '3.0000', '130.0000', '130.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6795, '2023-01-22', 99, 6480, 3015, 798, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6796, '2023-01-22', 8, 6481, 3015, 1376, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6797, '2023-01-22', 411, 6482, 3015, 1491, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6798, '2023-01-22', 410, 6483, 3015, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6799, '2023-01-22', 211, 6484, 3015, 1120, '4.0000', '220.0000', '220.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6800, '2023-01-22', 351, 6485, 3015, 1426, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6801, '2023-01-22', 195, 6486, 3015, 1346, '2.0000', '350.0000', '350.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6802, '2023-01-22', 220, 6487, 3015, 1464, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6803, '2023-01-22', 214, 6488, 3015, 175, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 48, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6804, '2023-01-22', 458, 6489, 3016, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6805, '2023-01-22', 458, 6489, 3016, 1457, '4.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6806, '2023-01-22', 276, 6490, 3016, 1113, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6807, '2023-01-22', 276, 6490, 3016, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '14.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6808, '2023-01-22', 385, 6491, 3016, 1201, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6809, '2023-01-22', 108, 6492, 3016, 1190, '5.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6810, '2023-01-22', 268, 6493, 3016, 1070, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6811, '2023-01-22', 270, 6494, 3016, 1271, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6812, '2023-01-22', 220, 6495, 3016, 1464, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6813, '2023-01-22', 410, 6496, 3016, 1269, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6814, '2023-01-22', 410, 6496, 3016, 1310, '3.0000', '35.0000', '35.0000', '50.0000', '50.0000', '37.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6815, '2023-01-22', 269, 6497, 3016, 1178, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '19.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6816, '2023-01-22', 270, 6498, 3016, 1271, '3.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6817, '2023-01-22', 456, 6499, 3016, 1380, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6818, '2023-01-22', 458, 6500, 3016, 1425, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6819, '2023-01-22', 458, 6500, 3016, 1457, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6820, '2023-01-22', 22, 6501, 3017, 19, '-7.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6821, '2023-01-22', 22, 6501, 3017, 666, '8.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6822, '2023-01-22', 22, 6501, 3017, 724, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6823, '2023-01-22', 5, 6502, 3017, 972, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6824, '2023-01-22', 391, 6503, 3017, 977, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '3.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6825, '2023-01-22', 456, 6504, 3017, 1380, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6826, '2023-01-22', 220, 6505, 3017, 1464, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6827, '2023-01-22', 342, 6506, 3017, 1181, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6828, '2023-01-22', 559, 6507, 3017, 1414, '1.0000', '3500.0000', '3500.0000', '4500.0000', '4500.0000', '3.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6829, '2023-01-22', 268, 6508, 3018, 1070, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6830, '2023-01-22', 342, 6509, 3018, 1181, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6831, '2023-01-22', 409, 6510, 3018, 992, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6832, '2023-01-22', 445, 6511, 3018, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6833, '2023-01-22', 148, 6512, 3018, 1334, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6834, '2023-01-22', 268, 6513, 3018, 1070, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6835, '2023-01-22', 426, 6514, 3018, 1364, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '58.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6836, '2023-01-22', 199, 6515, 3018, 1348, '2.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6837, '2023-01-22', 116, 6516, 3019, 944, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6838, '2023-01-22', 119, 6517, 3019, 341, '3.0000', '120.0000', '120.0000', '200.0000', '200.0000', '27.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6839, '2023-01-22', 557, 6518, 3020, 1412, '1.0000', '2200.0000', '2200.0000', '3000.0000', '3000.0000', '4.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6840, '2023-01-22', 394, 6519, 3021, 1382, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6841, '2023-01-22', 297, 6520, 3021, 1075, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6842, '2023-01-22', 410, 6521, 3021, 1310, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '33.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6843, '2023-01-22', 270, 6522, 3021, 1271, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6844, '2023-01-22', 269, 6523, 3021, 1178, '2.0000', '130.0000', '130.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6845, '2023-01-22', 220, 6524, 3021, 1464, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6846, '2023-01-22', 199, 6525, 3021, 1348, '1.0000', '1000.0000', '1000.0000', '1250.0000', '1250.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6847, '2023-01-22', 391, 6526, 3021, 977, '2.0000', '450.0000', '450.0000', '650.0000', '650.0000', '1.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6848, '2023-01-22', 159, 6527, 3021, 1213, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6849, '2023-01-22', 351, 6528, 3021, 1426, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6850, '2023-01-22', 383, 6529, 3021, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '6.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6851, '2023-01-22', 380, 6530, 3021, 1249, '1.0000', '100.0000', '100.0000', '190.0000', '190.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6852, '2023-01-22', 410, 6531, 3022, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '32.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6853, '2023-01-22', 426, 6532, 3022, 1364, '4.0000', '30.0000', '30.0000', '50.0000', '50.0000', '54.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6854, '2023-01-22', 268, 6533, 3023, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '51.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6855, '2023-01-22', 269, 6534, 3023, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6856, '2023-01-22', 220, 6535, 3023, 1464, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6857, '2023-01-22', 268, 6536, 3024, 1150, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '48.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6858, '2023-01-22', 482, 6537, 3024, 1338, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6859, '2023-01-22', 230, 6538, 3024, 1214, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6860, '2023-01-22', 427, 6539, 3024, 1224, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6861, '2023-01-22', 315, 6540, 3024, 390, '-7.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6862, '2023-01-22', 315, 6540, 3024, 1132, '7.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6863, '2023-01-22', 315, 6540, 3024, 1264, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '12.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6864, '2023-01-22', 426, 6541, 3024, 1364, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '52.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6865, '2023-01-22', 459, 6542, 3024, 914, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6866, '2023-01-22', 220, 6543, 3024, 1464, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6867, '2023-01-22', 458, 6544, 3024, 1457, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6868, '2023-01-22', 42, 6545, 3024, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6869, '2023-01-22', 295, 6546, 3024, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '19.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6870, '2023-01-22', 220, 6547, 3024, 1464, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6871, '2023-01-22', 148, 6548, 3025, 1334, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6872, '2023-01-22', 458, 6549, 3025, 1457, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6873, '2023-01-22', 145, 6550, 3026, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6874, '2023-01-22', 212, 6551, 3026, 1118, '1.0000', '100.0000', '100.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6875, '2023-01-22', 42, 6552, 3026, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6876, '2023-01-22', 426, 6553, 3026, 1364, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '51.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6877, '2023-01-22', 287, 6554, 3026, 1373, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6878, '2023-01-22', 342, 6555, 3026, 1423, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6879, '2023-01-22', 409, 6556, 3026, 997, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 215, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6880, '2023-01-22', 8, 6557, 3026, 1376, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6881, '2023-01-22', 216, 6558, 3026, 177, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6882, '2023-01-22', 271, 6559, 3026, 963, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 209, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6883, '2023-01-22', 410, 6560, 3026, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '31.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6884, '2023-01-22', 521, 6561, 3026, 1301, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6885, '2023-01-22', 193, 6562, 3026, 1435, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '18.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6886, '2023-01-22', 42, 6563, 3026, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6887, '2023-01-22', 102, 6564, 3026, 940, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6916, '2023-01-22', 217, 6591, 3029, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6915, '2023-01-22', 42, 6590, 3028, 1415, '2.0000', '90.0000', '90.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6914, '2023-01-22', 220, 6589, 3028, 1481, '6.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6913, '2023-01-22', 458, 6588, 3028, 1457, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6912, '2023-01-22', 572, 6587, 3028, 1493, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 261, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6911, '2023-01-22', 268, 6586, 3028, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '47.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6910, '2023-01-22', 396, 6585, 3028, 1353, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6909, '2023-01-22', 396, 6585, 3028, 705, '-1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6908, '2023-01-22', 386, 6584, 3028, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6907, '2023-01-22', 485, 6583, 3028, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '22.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6906, '2023-01-22', 36, 6582, 3028, 394, '12.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 141, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6905, '2023-01-22', 36, 6582, 3028, 35, '-11.0000', '500.0000', '500.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6904, '2023-01-22', 282, 6581, 3028, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6903, '2023-01-22', 9, 6580, 3028, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6917, '2023-01-22', 499, 6592, 3029, 1160, '1.0000', '600.0000', '600.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6918, '2023-01-22', 42, 6593, 3029, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6919, '2023-01-22', 394, 6594, 3029, 1382, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6920, '2023-01-22', 193, 6595, 3029, 1435, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '15.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6921, '2023-01-22', 411, 6596, 3030, 1491, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6922, '2023-01-22', 411, 6596, 3030, 1480, '3.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6923, '2023-01-22', 262, 6597, 3031, 1462, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6924, '2023-01-22', 385, 6598, 3031, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6925, '2023-01-22', 96, 6599, 3032, 90, '1.0000', '800.0000', '800.0000', '1250.0000', '1250.0000', '2.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6926, '2023-01-22', 230, 6600, 3032, 1214, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6927, '2023-01-22', 114, 6601, 3032, 941, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6928, '2023-01-22', 506, 6602, 3032, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6929, '2023-01-22', 503, 6603, 3032, 1182, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6930, '2023-01-22', 500, 6604, 3033, 1438, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6931, '2023-01-22', 351, 6605, 3034, 1454, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6932, '2023-01-22', 458, 6606, 3035, 1457, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6933, '2023-01-23', 482, 6607, 3036, 1338, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6934, '2023-01-23', 284, 6608, 3037, 1387, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6935, '2023-01-23', 217, 6609, 3037, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6936, '2023-01-23', 383, 6610, 3037, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '5.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6937, '2023-01-23', 93, 6611, 3038, 1377, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6938, '2023-01-23', 124, 6612, 3039, 120, '2.0000', '750.0000', '750.0000', '1150.0000', '1150.0000', '2.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6939, '2023-01-23', 268, 6613, 3039, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '45.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6940, '2023-01-23', 458, 6614, 3040, 1494, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 262, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6941, '2023-01-24', 42, 6615, 3041, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6942, '2023-01-24', 394, 6616, 3041, 1382, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6943, '2023-01-24', 15, 6617, 3042, 1440, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6944, '2023-01-24', 147, 6618, 3042, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '8.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6945, '2023-01-24', 485, 6619, 3042, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '21.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6946, '2023-01-24', 503, 6620, 3042, 1182, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6947, '2023-01-24', 425, 6621, 3042, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '23.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6948, '2023-01-24', 121, 6622, 3043, 116, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6949, '2023-01-24', 280, 6623, 3043, 1386, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6950, '2023-01-24', 280, 6623, 3043, 1485, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '4.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6951, '2023-01-24', 285, 6624, 3043, 1086, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6952, '2023-01-24', 145, 6625, 3043, 1208, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6953, '2023-01-24', 383, 6626, 3043, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '4.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6954, '2023-01-24', 145, 6627, 3044, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '11.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6955, '2023-01-24', 409, 6628, 3044, 997, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 215, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6956, '2023-01-24', 220, 6629, 3045, 1481, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6957, '2023-01-25', 198, 6630, 3046, 1463, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6958, '2023-01-25', 386, 6631, 3046, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6959, '2023-01-25', 217, 6632, 3046, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6960, '2023-01-25', 268, 6633, 3047, 267, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 115, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6961, '2023-01-25', 268, 6633, 3047, 1150, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '42.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6962, '2023-01-26', 389, 6634, 3048, 1294, '2.0000', '280.0000', '280.0000', '400.0000', '400.0000', '6.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6963, '2023-01-26', 268, 6635, 3049, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '41.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6964, '2023-01-26', 296, 6636, 3050, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '23.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6965, '2023-01-26', 36, 6637, 3051, 1451, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6966, '2023-01-26', 485, 6638, 3051, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '20.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6967, '2023-01-26', 105, 6639, 3051, 287, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 128, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6968, '2023-01-26', 425, 6640, 3051, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '22.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6969, '2023-01-26', 410, 6641, 3052, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '29.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6970, '2023-01-26', 270, 6642, 3052, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6971, '2023-01-26', 9, 6643, 3053, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '15.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6972, '2023-01-26', 287, 6644, 3053, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '12.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6973, '2023-01-27', 42, 6645, 3054, 1415, '2.0000', '90.0000', '90.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6974, '2023-01-27', 413, 6646, 3055, 913, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6975, '2023-01-27', 459, 6647, 3055, 1317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '59.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6976, '2023-01-27', 42, 6648, 3056, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6977, '2023-01-27', 212, 6649, 3056, 1118, '2.0000', '100.0000', '100.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 234, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6978, '2023-01-27', 206, 6650, 3056, 1449, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6979, '2023-01-27', 484, 6651, 3057, 1103, '1.0000', '130.0000', '130.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 230, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6980, '2023-01-27', 287, 6652, 3057, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6981, '2023-01-27', 217, 6653, 3057, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6982, '2023-01-27', 426, 6654, 3057, 1364, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '50.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6983, '2023-01-27', 425, 6655, 3058, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '21.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6984, '2023-01-27', 280, 6656, 3059, 1485, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '3.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6985, '2023-01-27', 220, 6657, 3060, 1481, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6986, '2023-01-27', 458, 6658, 3061, 1494, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 262, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6987, '2023-01-28', 154, 6659, 3062, 1199, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6988, '2023-01-28', 217, 6660, 3062, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6989, '2023-01-28', 100, 6661, 3062, 799, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6990, '2023-01-28', 8, 6662, 3062, 1376, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6992, '2023-01-28', 410, 6664, 3064, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '27.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6993, '2023-01-28', 411, 6665, 3065, 792, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 191, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6994, '2023-01-28', 393, 6666, 3066, 1153, '2.0000', '300.0000', '300.0000', '450.0000', '450.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6995, '2023-01-28', 351, 6667, 3067, 520, '-1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6996, '2023-01-28', 351, 6667, 3067, 1454, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6997, '2023-01-28', 351, 6668, 3068, 1488, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6998, '2023-01-28', 410, 6669, 3068, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '26.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (6999, '2023-01-28', 506, 6670, 3069, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7000, '2023-01-28', 193, 6671, 3069, 1435, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '14.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7001, '2023-01-28', 457, 6672, 3070, 1390, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7002, '2023-01-28', 456, 6673, 3070, 1459, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7003, '2023-01-28', 458, 6674, 3071, 1494, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 262, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7004, '2023-01-29', 426, 6675, 3072, 1364, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '48.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7005, '2023-01-29', 170, 6676, 3073, 233, '-4.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 90, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7006, '2023-01-29', 170, 6676, 3073, 1130, '5.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7007, '2023-01-29', 385, 6677, 3073, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7008, '2023-01-29', 458, 6678, 3074, 1494, '7.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 262, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7009, '2023-01-29', 455, 6679, 3075, 1308, '2.0000', '110.0000', '110.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7010, '2023-01-30', 295, 6680, 3076, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '18.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7011, '2023-01-30', 485, 6681, 3077, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '19.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7012, '2023-01-31', 145, 6682, 3078, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7013, '2023-01-31', 393, 6683, 3079, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7014, '2023-01-31', 295, 6684, 3079, 332, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 135, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7015, '2023-01-31', 351, 6685, 3080, 1488, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7016, '2023-01-31', 276, 6686, 3081, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7017, '2023-02-02', 385, 6687, 3082, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7018, '2023-02-02', 319, 6688, 3082, 1147, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7019, '2023-02-02', 217, 6689, 3082, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7020, '2023-02-02', 491, 6690, 3082, 1342, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7021, '2023-02-02', 455, 6691, 3083, 1391, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7022, '2023-02-02', 80, 6692, 3083, 1309, '3.0000', '120.0000', '120.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7023, '2023-02-02', 108, 6693, 3084, 1490, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7024, '2023-02-03', 269, 6694, 3085, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '15.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7025, '2023-02-03', 270, 6695, 3085, 1311, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7026, '2023-02-03', 271, 6696, 3085, 995, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '5.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7027, '2023-02-03', 410, 6697, 3085, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '24.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7028, '2023-02-03', 220, 6698, 3085, 1481, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7029, '2023-02-03', 383, 6699, 3085, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '3.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7030, '2023-02-03', 284, 6700, 3085, 1387, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7031, '2023-02-03', 524, 6701, 3086, 1325, '1.0000', '300.0000', '300.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7032, '2023-02-03', 528, 6702, 3086, 1323, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7033, '2023-02-03', 412, 6703, 3086, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7034, '2023-02-03', 268, 6704, 3086, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '39.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7035, '2023-02-03', 287, 6705, 3086, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7036, '2023-02-03', 220, 6706, 3086, 1481, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7037, '2023-02-03', 220, 6706, 3086, 1504, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7038, '2023-02-03', 482, 6707, 3087, 1338, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7039, '2023-02-03', 482, 6708, 3088, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7040, '2023-02-03', 348, 6709, 3089, 1344, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7041, '2023-02-03', 141, 6710, 3089, 1139, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7042, '2023-02-03', 456, 6711, 3090, 1459, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7043, '2023-02-03', 457, 6712, 3090, 1390, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7044, '2023-02-03', 271, 6713, 3091, 995, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7045, '2023-02-03', 269, 6714, 3092, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7046, '2023-02-03', 285, 6715, 3093, 1086, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7047, '2023-02-03', 200, 6716, 3093, 1498, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7048, '2023-02-04', 141, 6717, 3094, 1381, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7049, '2023-02-04', 8, 6718, 3095, 1376, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7050, '2023-02-04', 482, 6719, 3096, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7051, '2023-02-04', 431, 6720, 3097, 1155, '2.0000', '400.0000', '400.0000', '700.0000', '700.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7052, '2023-02-04', 393, 6721, 3097, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7053, '2023-02-04', 93, 6722, 3097, 83, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7054, '2023-02-04', 445, 6723, 3097, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7055, '2023-02-04', 63, 6724, 3097, 1233, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7056, '2023-02-04', 268, 6725, 3097, 1150, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '36.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7057, '2023-02-04', 425, 6726, 3097, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '20.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7058, '2023-02-04', 473, 6727, 3098, 1041, '3.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7059, '2023-02-04', 390, 6728, 3098, 1198, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7060, '2023-02-04', 482, 6729, 3098, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7061, '2023-02-04', 55, 6730, 3098, 1343, '1.0000', '700.0000', '700.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7062, '2023-02-04', 49, 6731, 3099, 906, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7063, '2023-02-04', 11, 6732, 3100, 1434, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7064, '2023-02-04', 107, 6733, 3101, 1290, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 245, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7065, '2023-02-04', 8, 6734, 3101, 1376, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7066, '2023-02-04', 285, 6735, 3102, 1086, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7067, '2023-02-04', 459, 6736, 3103, 1317, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '57.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7068, '2023-02-04', 282, 6737, 3104, 1246, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7069, '2023-02-04', 231, 6738, 3105, 1141, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7070, '2023-02-04', 116, 6739, 3106, 1452, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7071, '2023-02-04', 119, 6740, 3106, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '26.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7072, '2023-02-05', 3, 6741, 3107, 3, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 2, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7073, '2023-02-05', 3, 6741, 3107, 1196, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7074, '2023-02-05', 97, 6742, 3107, 91, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '7.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7075, '2023-02-05', 506, 6743, 3108, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7076, '2023-02-05', 491, 6744, 3109, 1342, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7077, '2023-02-05', 119, 6745, 3109, 341, '6.0000', '120.0000', '120.0000', '200.0000', '200.0000', '20.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7078, '2023-02-05', 394, 6746, 3109, 1382, '3.0000', '70.0000', '70.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7079, '2023-02-05', 42, 6747, 3109, 1415, '3.0000', '90.0000', '90.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7080, '2023-02-05', 217, 6748, 3109, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7081, '2023-02-05', 475, 6749, 3109, 1049, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7082, '2023-02-05', 389, 6750, 3109, 1294, '1.0000', '280.0000', '280.0000', '400.0000', '400.0000', '5.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7083, '2023-02-05', 522, 6751, 3109, 1314, '5.0000', '50.0000', '50.0000', '70.0000', '70.0000', '46.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7084, '2023-02-05', 379, 6752, 3110, 1250, '2.0000', '55.0000', '55.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7085, '2023-02-05', 351, 6753, 3111, 1484, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7086, '2023-02-05', 280, 6754, 3111, 1485, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7087, '2023-02-05', 285, 6755, 3112, 1509, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7088, '2023-02-05', 280, 6756, 3112, 1485, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7089, '2023-02-05', 9, 6757, 3113, 8, '-2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7090, '2023-02-05', 9, 6757, 3113, 1131, '3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7091, '2023-02-05', 217, 6758, 3113, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7092, '2023-02-05', 385, 6759, 3113, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7093, '2023-02-06', 269, 6760, 3114, 1178, '3.0000', '130.0000', '130.0000', '150.0000', '150.0000', '11.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7094, '2023-02-06', 410, 6761, 3114, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '22.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7095, '2023-02-06', 572, 6762, 3114, 1502, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '26.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7096, '2023-02-06', 411, 6763, 3114, 1480, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7097, '2023-02-06', 9, 6764, 3115, 1131, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7098, '2023-02-06', 287, 6765, 3115, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7099, '2023-02-06', 351, 6766, 3116, 1484, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7100, '2023-02-06', 283, 6767, 3117, 530, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7101, '2023-02-07', 458, 6768, 3118, 1514, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7102, '2023-02-07', 283, 6769, 3119, 530, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7103, '2023-02-07', 287, 6770, 3120, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7104, '2023-02-07', 195, 6771, 3120, 1346, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7105, '2023-02-08', 354, 6772, 3121, 586, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7106, '2023-02-08', 289, 6773, 3121, 955, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7107, '2023-02-08', 522, 6774, 3121, 1314, '5.0000', '50.0000', '50.0000', '70.0000', '70.0000', '41.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7108, '2023-02-08', 217, 6775, 3121, 1420, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7109, '2023-02-08', 217, 6775, 3121, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7110, '2023-02-08', 485, 6776, 3121, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '18.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7111, '2023-02-08', 15, 6777, 3121, 1440, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7112, '2023-02-08', 425, 6778, 3121, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '19.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7113, '2023-02-08', 280, 6779, 3121, 1485, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7114, '2023-02-08', 148, 6780, 3122, 1334, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7115, '2023-02-09', 269, 6781, 3123, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7116, '2023-02-09', 500, 6782, 3123, 1438, '1.0000', '1600.0000', '1600.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7117, '2023-02-09', 456, 6783, 3124, 1459, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7118, '2023-02-09', 457, 6784, 3124, 1390, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7119, '2023-02-09', 457, 6784, 3124, 1460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '9.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7120, '2023-02-09', 108, 6785, 3125, 1490, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '7.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7121, '2023-02-09', 268, 6786, 3126, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '35.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7122, '2023-02-09', 260, 6787, 3126, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7123, '2023-02-09', 458, 6788, 3127, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7124, '2023-02-09', 284, 6789, 3127, 1486, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7125, '2023-02-10', 458, 6790, 3128, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7126, '2023-02-10', 445, 6791, 3129, 875, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7127, '2023-02-10', 385, 6792, 3129, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7128, '2023-02-10', 217, 6793, 3129, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7129, '2023-02-10', 200, 6794, 3130, 1498, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7130, '2023-02-10', 9, 6795, 3131, 8, '-3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7131, '2023-02-10', 9, 6795, 3131, 1131, '4.0000', '250.0000', '250.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7132, '2023-02-10', 348, 6796, 3132, 1344, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7133, '2023-02-10', 268, 6797, 3133, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '34.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7134, '2023-02-10', 100, 6798, 3134, 1501, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7135, '2023-02-10', 8, 6799, 3134, 1499, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7136, '2023-02-10', 119, 6800, 3135, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7137, '2023-02-10', 148, 6801, 3136, 1334, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7138, '2023-02-10', 193, 6802, 3136, 1435, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '13.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7139, '2023-02-10', 159, 6803, 3137, 1213, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7140, '2023-02-10', 220, 6804, 3137, 1504, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7141, '2023-02-10', 429, 6805, 3137, 859, '-3.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7142, '2023-02-10', 429, 6805, 3137, 1039, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7143, '2023-02-10', 429, 6805, 3137, 1226, '3.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '7.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7144, '2023-02-10', 154, 6806, 3137, 1199, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7145, '2023-02-10', 386, 6807, 3138, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7146, '2023-02-10', 396, 6808, 3138, 1353, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7147, '2023-02-10', 220, 6809, 3138, 1504, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7148, '2023-02-10', 195, 6810, 3139, 1495, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '6.0000', 1, 0, NULL, 263, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7149, '2023-02-10', 268, 6811, 3139, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '33.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7150, '2023-02-10', 287, 6812, 3139, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7151, '2023-02-10', 410, 6813, 3139, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7152, '2023-02-11', 100, 6814, 3140, 1501, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7153, '2023-02-11', 200, 6815, 3140, 1498, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7154, '2023-02-11', 193, 6816, 3141, 1435, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7155, '2023-02-11', 482, 6817, 3141, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7156, '2023-02-11', 193, 6818, 3142, 1435, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '9.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7157, '2023-02-11', 458, 6819, 3143, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7158, '2023-02-11', 145, 6820, 3144, 272, '-1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 117, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7159, '2023-02-11', 145, 6820, 3144, 1302, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7160, '2023-02-11', 217, 6821, 3145, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7161, '2023-02-11', 11, 6822, 3146, 1434, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7162, '2023-02-11', 63, 6823, 3147, 1439, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '4.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7163, '2023-02-11', 458, 6824, 3147, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7164, '2023-02-11', 506, 6825, 3148, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7165, '2023-02-11', 193, 6826, 3149, 1435, '9.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7166, '2023-02-11', 482, 6827, 3150, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7167, '2023-02-12', 482, 6828, 3151, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7168, '2023-02-12', 80, 6829, 3151, 1309, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7169, '2023-02-12', 268, 6830, 3152, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '32.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7170, '2023-02-12', 410, 6831, 3152, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7171, '2023-02-12', 147, 6832, 3153, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '7.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7172, '2023-02-12', 457, 6833, 3154, 1460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '8.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7173, '2023-02-13', 145, 6834, 3155, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7174, '2023-02-13', 383, 6835, 3155, 1087, '2.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7175, '2023-02-13', 284, 6836, 3155, 1486, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7176, '2023-02-13', 217, 6837, 3155, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7177, '2023-02-13', 220, 6838, 3155, 1504, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7178, '2023-02-13', 102, 6839, 3155, 940, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7179, '2023-02-13', 260, 6840, 3156, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7180, '2023-02-13', 390, 6841, 3157, 1198, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7181, '2023-02-13', 220, 6842, 3158, 1504, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7182, '2023-02-13', 220, 6843, 3159, 1504, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7183, '2023-02-13', 262, 6844, 3160, 1462, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7184, '2023-02-13', 458, 6845, 3160, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7185, '2023-02-13', 220, 6846, 3160, 1504, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7186, '2023-02-13', 458, 6847, 3161, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7187, '2023-02-13', 351, 6848, 3162, 1505, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7188, '2023-02-14', 506, 6849, 3163, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7189, '2023-02-14', 63, 6850, 3164, 1439, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '3.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7190, '2023-02-14', 195, 6851, 3165, 1495, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '5.0000', 1, 0, NULL, 263, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7191, '2023-02-14', 268, 6852, 3165, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '31.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7192, '2023-02-14', 458, 6853, 3166, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7193, '2023-02-14', 85, 6854, 3167, 1333, '1.0000', '450.0000', '450.0000', '700.0000', '700.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7194, '2023-02-14', 73, 6855, 3167, 1142, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7195, '2023-02-14', 426, 6856, 3167, 1364, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '46.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7196, '2023-02-15', 164, 6857, 3168, 1340, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7197, '2023-02-15', 482, 6858, 3168, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7198, '2023-02-15', 148, 6859, 3168, 1334, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7199, '2023-02-15', 482, 6860, 3169, 1421, '2.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7200, '2023-02-15', 485, 6861, 3170, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '17.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7201, '2023-02-15', 383, 6862, 3171, 1087, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7202, '2023-02-15', 280, 6863, 3171, 1513, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '2.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7203, '2023-02-15', 106, 6864, 3171, 796, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7204, '2023-02-15', 351, 6865, 3171, 1505, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7205, '2023-02-15', 103, 6866, 3171, 113, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '10.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7206, '2023-02-16', 200, 6867, 3172, 1498, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7207, '2023-02-16', 411, 6868, 3173, 1503, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7208, '2023-02-17', 67, 6869, 3174, 1444, '2.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7209, '2023-02-17', 590, 6870, 3174, 1562, '5.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7210, '2023-02-17', 93, 6871, 3174, 1377, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7211, '2023-02-17', 159, 6872, 3174, 1213, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7212, '2023-02-17', 159, 6872, 3174, 1422, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7213, '2023-02-17', 413, 6873, 3174, 805, '-1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7214, '2023-02-17', 413, 6873, 3174, 913, '3.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 202, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7215, '2023-02-17', 413, 6873, 3174, 1316, '3.0000', '100.0000', '100.0000', '150.0000', '150.0000', '62.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7216, '2023-02-17', 413, 6874, 3175, 1316, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '60.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7217, '2023-02-17', 459, 6875, 3175, 1317, '5.0000', '150.0000', '150.0000', '200.0000', '200.0000', '52.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7218, '2023-02-17', 390, 6876, 3175, 1198, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7219, '2023-02-17', 503, 6877, 3175, 1182, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7220, '2023-02-17', 164, 6878, 3176, 1340, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7221, '2023-02-17', 164, 6878, 3176, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '13.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7222, '2023-02-17', 586, 6879, 3176, 1555, '1.0000', '1200.0000', '1200.0000', '1800.0000', '1800.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7223, '2023-02-17', 262, 6880, 3176, 1559, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7224, '2023-02-17', 194, 6881, 3176, 1558, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7225, '2023-02-17', 207, 6882, 3176, 1550, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '9.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7226, '2023-02-17', 555, 6883, 3176, 1409, '1.0000', '1700.0000', '1700.0000', '2500.0000', '2500.0000', '11.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7227, '2023-02-17', 458, 6884, 3177, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7228, '2023-02-17', 80, 6885, 3178, 1309, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7229, '2023-02-17', 220, 6886, 3178, 1504, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7230, '2023-02-17', 220, 6886, 3178, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7231, '2023-02-17', 283, 6887, 3179, 530, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 152, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7232, '2023-02-17', 284, 6888, 3180, 1486, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7233, '2023-02-17', 141, 6889, 3181, 1381, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7234, '2023-02-17', 280, 6890, 3182, 1513, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '1.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7235, '2023-02-17', 164, 6891, 3183, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '12.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7236, '2023-02-17', 193, 6892, 3183, 1521, '5.0000', '200.0000', '200.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7237, '2023-02-17', 582, 6893, 3183, 1543, '1.0000', '900.0000', '900.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7238, '2023-02-17', 348, 6894, 3184, 1344, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7239, '2023-02-17', 51, 6895, 3184, 264, '-4.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, NULL, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7240, '2023-02-17', 51, 6895, 3184, 585, '6.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7241, '2023-02-17', 231, 6896, 3185, 1141, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7242, '2023-02-18', 268, 6897, 3186, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '30.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7243, '2023-02-18', 164, 6898, 3187, 155, '-2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 29, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7244, '2023-02-18', 164, 6898, 3187, 1547, '3.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '9.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7245, '2023-02-18', 592, 6899, 3187, 1567, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7246, '2023-02-18', 458, 6900, 3187, 1514, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7247, '2023-02-18', 458, 6900, 3187, 1564, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7248, '2023-02-18', 280, 6901, 3187, 1513, '1.0000', '120.0000', '120.0000', '160.0000', '160.0000', '0.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7249, '2023-02-18', 283, 6902, 3187, 1569, '3.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7250, '2023-02-18', 285, 6903, 3187, 1509, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7251, '2023-02-18', 93, 6904, 3187, 1377, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7252, '2023-02-18', 63, 6905, 3187, 1439, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7253, '2023-02-18', 351, 6906, 3187, 1505, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7254, '2023-02-18', 260, 6907, 3187, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '17.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7255, '2023-02-18', 268, 6908, 3187, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '28.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7256, '2023-02-18', 269, 6909, 3187, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7257, '2023-02-18', 270, 6910, 3187, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7258, '2023-02-18', 271, 6911, 3187, 995, '3.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7259, '2023-02-18', 410, 6912, 3187, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7260, '2023-02-18', 231, 6913, 3188, 1141, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7261, '2023-02-18', 285, 6914, 3188, 1509, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7262, '2023-02-18', 351, 6915, 3188, 1505, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7263, '2023-02-18', 262, 6916, 3189, 1559, '1.0000', '400.0000', '400.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7264, '2023-02-18', 5, 6917, 3190, 972, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7265, '2023-02-19', 458, 6918, 3191, 1564, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7266, '2023-02-19', 51, 6919, 3192, 585, '1.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7267, '2023-02-19', 9, 6920, 3193, 8, '-1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7268, '2023-02-19', 9, 6920, 3193, 1131, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7269, '2023-02-19', 287, 6921, 3194, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7270, '2023-02-19', 271, 6922, 3195, 999, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7271, '2023-02-19', 410, 6923, 3195, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '17.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7272, '2023-02-19', 458, 6924, 3196, 1564, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7273, '2023-02-20', 141, 6925, 3197, 1522, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7274, '2023-02-20', 231, 6926, 3198, 1141, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7275, '2023-02-20', 220, 6927, 3198, 196, '-1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 63, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7276, '2023-02-20', 220, 6927, 3198, 1523, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7277, '2023-02-20', 193, 6928, 3198, 1521, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7278, '2023-02-20', 93, 6929, 3199, 1377, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7279, '2023-02-20', 9, 6930, 3200, 8, '-4.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7280, '2023-02-20', 9, 6930, 3200, 1131, '5.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7281, '2023-02-20', 410, 6931, 3201, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7282, '2023-02-20', 269, 6932, 3201, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7283, '2023-02-20', 271, 6933, 3201, 999, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7284, '2023-02-20', 220, 6934, 3201, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7285, '2023-02-20', 9, 6935, 3202, 1357, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '23.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7286, '2023-02-20', 394, 6936, 3202, 1382, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7287, '2023-02-20', 276, 6937, 3203, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7288, '2023-02-21', 294, 6938, 3204, 318, '2.0000', '450.0000', '450.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7289, '2023-02-21', 254, 6939, 3204, 241, '-2.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7290, '2023-02-21', 254, 6939, 3204, 892, '3.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7291, '2023-02-21', 93, 6940, 3204, 1377, '2.0000', '200.0000', '200.0000', '350.0000', '350.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7292, '2023-02-21', 445, 6941, 3204, 875, '-3.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7293, '2023-02-21', 445, 6941, 3204, 1229, '4.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '7.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7294, '2023-02-21', 33, 6942, 3204, 32, '-1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 7, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7295, '2023-02-21', 33, 6942, 3204, 231, '2.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 89, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7296, '2023-02-21', 220, 6943, 3204, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7297, '2023-02-21', 268, 6944, 3205, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '27.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7298, '2023-02-21', 220, 6945, 3205, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7299, '2023-02-21', 458, 6946, 3206, 1564, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7300, '2023-02-21', 351, 6947, 3207, 1505, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7301, '2023-02-21', 5, 6948, 3208, 1195, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7302, '2023-02-21', 6, 6949, 3208, 973, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '7.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7303, '2023-02-21', 427, 6950, 3208, 857, '-4.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7304, '2023-02-21', 427, 6950, 3208, 1224, '4.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7305, '2023-02-21', 427, 6950, 3208, 1410, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7306, '2023-02-21', 165, 6951, 3208, 150, '-3.0000', '1350.0000', '1350.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 26, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7307, '2023-02-21', 165, 6951, 3208, 1028, '3.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7308, '2023-02-21', 165, 6951, 3208, 1552, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7309, '2023-02-21', 220, 6952, 3208, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7310, '2023-02-21', 482, 6953, 3208, 1421, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7311, '2023-02-21', 193, 6954, 3209, 1521, '3.0000', '200.0000', '200.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7312, '2023-02-21', 11, 6955, 3210, 1434, '1.0000', '750.0000', '750.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7313, '2023-02-21', 297, 6956, 3211, 1075, '1.0000', '180.0000', '180.0000', '250.0000', '250.0000', '10.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7314, '2023-02-21', 590, 6957, 3212, 1562, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7315, '2023-02-21', 482, 6958, 3212, 1507, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7316, '2023-02-21', 226, 6959, 3213, 1179, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7317, '2023-02-21', 145, 6960, 3213, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7318, '2023-02-21', 269, 6961, 3214, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7319, '2023-02-21', 278, 6962, 3215, 289, '1.0000', '60.0000', '60.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 129, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7320, '2023-02-21', 385, 6963, 3215, 1201, '3.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7321, '2023-02-21', 394, 6964, 3215, 1382, '3.0000', '70.0000', '70.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7322, '2023-02-21', 107, 6965, 3216, 1372, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7323, '2023-02-21', 260, 6966, 3217, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7324, '2023-02-21', 116, 6967, 3218, 1452, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7325, '2023-02-21', 119, 6968, 3218, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7326, '2023-02-21', 268, 6969, 3219, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '26.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7327, '2023-02-22', 548, 6970, 3220, 1402, '1.0000', '3000.0000', '3000.0000', '4000.0000', '4000.0000', '0.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7328, '2023-02-23', 268, 6971, 3221, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '25.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7329, '2023-02-23', 271, 6972, 3222, 999, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7330, '2023-02-23', 410, 6973, 3222, 1310, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7331, '2023-02-26', 269, 6974, 3223, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '6.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7332, '2023-02-26', 287, 6975, 3223, 1389, '3.0000', '80.0000', '80.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7333, '2023-02-26', 102, 6976, 3223, 940, '2.0000', '70.0000', '70.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7334, '2023-02-26', 482, 6977, 3223, 1507, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7335, '2023-02-26', 394, 6978, 3223, 1382, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7336, '2023-02-26', 93, 6979, 3223, 1377, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7337, '2023-02-26', 93, 6979, 3223, 1519, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '9.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7338, '2023-02-26', 260, 6980, 3223, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7339, '2023-02-26', 482, 6981, 3224, 1507, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7340, '2023-02-26', 144, 6982, 3224, 441, '1.0000', '500.0000', '500.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7341, '2023-02-26', 147, 6983, 3224, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '6.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7342, '2023-02-26', 458, 6984, 3224, 1564, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7343, '2023-02-26', 268, 6985, 3224, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7344, '2023-02-26', 410, 6986, 3224, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7345, '2023-02-26', 164, 6987, 3224, 1547, '2.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '7.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7346, '2023-02-26', 503, 6988, 3224, 1319, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7347, '2023-02-26', 99, 6989, 3224, 798, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7348, '2023-02-26', 411, 6990, 3224, 1503, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7349, '2023-02-26', 411, 6991, 3224, 1503, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7350, '2023-02-26', 42, 6992, 3224, 1415, '1.0000', '90.0000', '90.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7351, '2023-02-26', 394, 6993, 3224, 1382, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7352, '2023-02-26', 238, 6994, 3224, 205, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '5.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7353, '2023-02-26', 260, 6995, 3224, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '14.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7354, '2023-02-26', 145, 6996, 3224, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7355, '2023-02-26', 268, 6997, 3224, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '24.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7356, '2023-02-26', 410, 6998, 3224, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7357, '2023-02-26', 220, 6999, 3224, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7358, '2023-02-26', 383, 7000, 3224, 1487, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '4.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7359, '2023-02-26', 482, 7001, 3224, 1507, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7360, '2023-02-26', 411, 7002, 3225, 1503, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7361, '2023-02-26', 63, 7003, 3225, 1439, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7362, '2023-02-26', 410, 7004, 3225, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '10.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7363, '2023-02-26', 119, 7005, 3226, 341, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7364, '2023-02-26', 394, 7006, 3226, 1382, '3.0000', '70.0000', '70.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7365, '2023-02-26', 394, 7006, 3226, 1531, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '20.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7366, '2023-02-26', 124, 7007, 3226, 120, '1.0000', '750.0000', '750.0000', '1150.0000', '1150.0000', '1.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7367, '2023-02-26', 260, 7008, 3226, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7368, '2023-02-26', 385, 7009, 3226, 1201, '2.0000', '150.0000', '150.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7369, '2023-02-26', 342, 7010, 3226, 440, '-1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 143, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7370, '2023-02-26', 342, 7010, 3226, 1423, '2.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7371, '2023-02-26', 390, 7011, 3226, 1198, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7372, '2023-02-26', 393, 7012, 3226, 1153, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7373, '2023-02-26', 393, 7012, 3226, 1456, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '11.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7374, '2023-02-26', 458, 7013, 3226, 1564, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7375, '2023-02-26', 268, 7014, 3226, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '22.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7376, '2023-02-26', 231, 7015, 3226, 1141, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7377, '2023-02-26', 410, 7016, 3227, 1310, '7.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7378, '2023-02-26', 271, 7017, 3227, 999, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 216, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7379, '2023-02-26', 271, 7017, 3227, 1026, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '0.0000', 1, 0, NULL, 223, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7380, '2023-02-26', 269, 7018, 3227, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '5.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7381, '2023-02-26', 268, 7019, 3227, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '21.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7382, '2023-02-26', 351, 7020, 3228, 1571, '2.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7383, '2023-02-26', 99, 7021, 3228, 798, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7384, '2023-02-26', 590, 7022, 3229, 1562, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7385, '2023-02-26', 282, 7023, 3230, 1424, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '4.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7386, '2023-02-26', 539, 7024, 3231, 1392, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7387, '2023-02-26', 482, 7025, 3231, 1507, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7388, '2023-02-26', 482, 7025, 3231, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7389, '2023-02-26', 164, 7026, 3232, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '6.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7390, '2023-02-26', 342, 7027, 3232, 1423, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7391, '2023-02-26', 145, 7028, 3232, 1302, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7392, '2023-02-26', 482, 7029, 3232, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '8.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7393, '2023-02-26', 556, 7030, 3233, 1411, '1.0000', '3800.0000', '3800.0000', '5000.0000', '5000.0000', '0.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7394, '2023-02-26', 108, 7031, 3233, 1490, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7395, '2023-02-26', 156, 7032, 3233, 736, '1.0000', '185.0000', '185.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7396, '2023-02-27', 410, 7033, 3234, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7397, '2023-02-27', 220, 7034, 3234, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7398, '2023-02-27', 387, 7035, 3235, 957, '2.0000', '650.0000', '650.0000', '850.0000', '850.0000', '0.0000', 1, 0, NULL, 206, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7399, '2023-02-27', 457, 7036, 3236, 1460, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7400, '2023-02-28', 102, 7037, 3237, 940, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7401, '2023-02-28', 351, 7038, 3237, 1571, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7402, '2023-02-28', 9, 7039, 3238, 1357, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '22.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7403, '2023-02-28', 485, 7040, 3238, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '16.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7404, '2023-02-28', 589, 7041, 3238, 1557, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7405, '2023-02-28', 217, 7042, 3238, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7406, '2023-02-28', 506, 7043, 3239, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7407, '2023-02-28', 194, 7044, 3240, 1558, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7408, '2023-02-28', 385, 7045, 3240, 1201, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7409, '2023-02-28', 269, 7046, 3240, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7410, '2023-02-28', 458, 7047, 3240, 1564, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7411, '2023-02-28', 397, 7048, 3241, 1227, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7412, '2023-02-28', 154, 7049, 3241, 1199, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7413, '2023-02-28', 268, 7050, 3241, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7414, '2023-02-28', 12, 7051, 3241, 482, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7415, '2023-02-28', 276, 7052, 3241, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7416, '2023-02-28', 413, 7053, 3241, 1316, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '58.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7417, '2023-02-28', 411, 7054, 3242, 1572, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 271, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7418, '2023-02-28', 269, 7055, 3242, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7419, '2023-02-28', 410, 7056, 3242, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7420, '2023-02-28', 268, 7057, 3242, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7421, '2023-02-28', 283, 7058, 3242, 1569, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7422, '2023-02-28', 136, 7059, 3243, 1217, '1.0000', '1250.0000', '1250.0000', '1650.0000', '1650.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7423, '2023-02-28', 233, 7060, 3243, 1222, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7424, '2023-02-28', 233, 7061, 3243, 1222, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7425, '2023-02-28', 300, 7062, 3243, 351, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '0.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7426, '2023-02-28', 12, 7063, 3243, 482, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '1.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7427, '2023-02-28', 485, 7064, 3243, 1369, '3.0000', '250.0000', '250.0000', '400.0000', '400.0000', '13.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7428, '2023-02-28', 276, 7065, 3243, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '10.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7429, '2023-02-28', 220, 7066, 3244, 1523, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7430, '2023-02-28', 74, 7067, 3245, 1192, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7431, '2023-02-28', 282, 7068, 3246, 1424, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '3.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7432, '2023-02-28', 379, 7069, 3246, 1489, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7433, '2023-02-28', 383, 7070, 3246, 1487, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '3.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7434, '2023-02-28', 351, 7071, 3246, 1571, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7435, '2023-02-28', 220, 7072, 3246, 1570, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '8.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7436, '2023-03-01', 3, 7073, 3247, 1196, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7437, '2023-03-01', 220, 7074, 3247, 1570, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7438, '2023-03-02', 379, 7075, 3248, 1489, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7439, '2023-03-02', 220, 7076, 3249, 1570, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7440, '2023-03-02', 107, 7077, 3250, 1372, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7441, '2023-03-02', 268, 7078, 3251, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7442, '2023-03-02', 5, 7079, 3252, 1195, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7443, '2023-03-02', 80, 7080, 3252, 1309, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7444, '2023-03-02', 145, 7081, 3253, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7445, '2023-03-02', 379, 7082, 3253, 1489, '1.0000', '55.0000', '55.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7446, '2023-03-03', 285, 7083, 3254, 1509, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7447, '2023-03-03', 271, 7084, 3254, 1149, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '8.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7448, '2023-03-03', 410, 7085, 3254, 1310, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7449, '2023-03-03', 410, 7085, 3254, 1365, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '25.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7450, '2023-03-03', 283, 7086, 3255, 1569, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7451, '2023-03-03', 284, 7087, 3255, 1486, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7452, '2023-03-03', 383, 7088, 3255, 1487, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '2.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7453, '2023-03-03', 491, 7089, 3256, 1437, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7454, '2023-03-03', 260, 7090, 3257, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7455, '2023-03-03', 88, 7091, 3258, 1330, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7456, '2023-03-03', 530, 7092, 3258, 1327, '1.0000', '350.0000', '350.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7457, '2023-03-03', 412, 7093, 3258, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7458, '2023-03-03', 503, 7094, 3258, 1319, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7459, '2023-03-03', 413, 7095, 3258, 1316, '14.0000', '100.0000', '100.0000', '150.0000', '150.0000', '44.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7460, '2023-03-03', 389, 7096, 3258, 1294, '1.0000', '280.0000', '280.0000', '400.0000', '400.0000', '4.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7461, '2023-03-03', 106, 7097, 3258, 796, '2.0000', '150.0000', '150.0000', '250.0000', '250.0000', '2.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7462, '2023-03-03', 80, 7098, 3258, 1385, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7463, '2023-03-03', 163, 7099, 3258, 767, '4.0000', '75.0000', '75.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7464, '2023-03-03', 385, 7100, 3258, 1293, '2.0000', '180.0000', '180.0000', '300.0000', '300.0000', '20.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7465, '2023-03-03', 287, 7101, 3258, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7466, '2023-03-03', 522, 7102, 3258, 1314, '4.0000', '50.0000', '50.0000', '70.0000', '70.0000', '37.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7467, '2023-03-03', 102, 7103, 3258, 940, '2.0000', '70.0000', '70.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7468, '2023-03-03', 214, 7104, 3258, 295, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '10.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7469, '2023-03-03', 156, 7105, 3258, 736, '1.0000', '185.0000', '185.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 180, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7470, '2023-03-03', 216, 7106, 3258, 177, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 50, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7471, '2023-03-03', 485, 7107, 3258, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '12.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7472, '2023-03-03', 456, 7108, 3258, 1459, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7473, '2023-03-03', 147, 7109, 3258, 128, '1.0000', '600.0000', '600.0000', '1050.0000', '1050.0000', '5.0000', 1, 0, NULL, 18, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7474, '2023-03-03', 149, 7110, 3258, 1335, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7475, '2023-03-03', 83, 7111, 3258, 74, '1.0000', '400.0000', '400.0000', '1350.0000', '1350.0000', '0.0000', 1, 0, NULL, 11, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7476, '2023-03-03', 130, 7112, 3258, 114, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7477, '2023-03-03', 343, 7113, 3258, 1273, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7478, '2023-03-03', 458, 7114, 3258, 1564, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7479, '2023-03-03', 459, 7115, 3258, 1317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '51.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7480, '2023-03-03', 107, 7116, 3259, 1372, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7481, '2023-03-03', 107, 7116, 3259, 1455, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7482, '2023-03-03', 458, 7117, 3260, 1574, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7483, '2023-03-03', 284, 7118, 3261, 1486, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7484, '2023-03-03', 383, 7119, 3261, 1487, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7485, '2023-03-03', 283, 7120, 3261, 1569, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7486, '2023-03-03', 572, 7121, 3261, 1502, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '24.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7487, '2023-03-03', 162, 7122, 3262, 147, '-4.0000', '400.0000', '400.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 25, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7488, '2023-03-03', 162, 7122, 3262, 1243, '4.0000', '600.0000', '600.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7489, '2023-03-03', 162, 7122, 3262, 1443, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7490, '2023-03-03', 160, 7123, 3262, 1110, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '7.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7491, '2023-03-03', 164, 7124, 3263, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7492, '2023-03-03', 287, 7125, 3263, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7493, '2023-03-03', 589, 7126, 3263, 1557, '1.0000', '600.0000', '600.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7494, '2023-03-03', 231, 7127, 3263, 1188, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '4.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7495, '2023-03-03', 458, 7128, 3263, 1574, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7496, '2023-03-03', 107, 7129, 3263, 1455, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7497, '2023-03-03', 157, 7130, 3263, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7498, '2023-03-03', 86, 7131, 3264, 1331, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7499, '2023-03-04', 200, 7132, 3265, 1498, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7500, '2023-03-04', 590, 7133, 3266, 1562, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7501, '2023-03-04', 590, 7133, 3266, 1566, '2.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '10.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7502, '2023-03-04', 592, 7134, 3266, 1567, '3.0000', '750.0000', '750.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7503, '2023-03-04', 57, 7135, 3266, 53, '-1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7504, '2023-03-04', 57, 7135, 3266, 260, '1.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 111, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7505, '2023-03-04', 57, 7135, 3266, 1568, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7506, '2023-03-04', 194, 7136, 3266, 1558, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7507, '2023-03-04', 410, 7137, 3267, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '24.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7508, '2023-03-04', 271, 7138, 3268, 1149, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '7.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7509, '2023-03-04', 383, 7139, 3268, 1487, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7510, '2023-03-04', 284, 7140, 3268, 1512, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '5.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7511, '2023-03-04', 410, 7141, 3269, 1365, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '22.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7512, '2023-03-04', 220, 7142, 3269, 1570, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7513, '2023-03-04', 107, 7143, 3270, 1455, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7515, '2023-03-05', 231, 7145, 3272, 1188, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '3.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7516, '2023-03-05', 287, 7146, 3273, 1389, '1.0000', '80.0000', '80.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7517, '2023-03-05', 164, 7147, 3274, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7518, '2023-03-05', 124, 7148, 3274, 120, '1.0000', '750.0000', '750.0000', '1150.0000', '1150.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7519, '2023-03-05', 80, 7149, 3274, 1385, '2.0000', '120.0000', '120.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7520, '2023-03-05', 154, 7150, 3274, 1199, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7521, '2023-03-05', 482, 7151, 3274, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7522, '2023-03-05', 160, 7152, 3274, 1110, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '6.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7523, '2023-03-05', 457, 7153, 3275, 1460, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7524, '2023-03-05', 162, 7154, 3276, 1443, '2.0000', '600.0000', '600.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7525, '2023-03-05', 590, 7155, 3276, 1566, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '9.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7526, '2023-03-05', 194, 7156, 3276, 1558, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7527, '2023-03-05', 385, 7157, 3276, 1293, '2.0000', '180.0000', '180.0000', '300.0000', '300.0000', '18.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7528, '2023-03-05', 160, 7158, 3276, 1110, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7529, '2023-03-05', 408, 7159, 3276, 1088, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7530, '2023-03-05', 226, 7160, 3276, 1179, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7531, '2023-03-05', 510, 7161, 3276, 1221, '1.0000', '2000.0000', '2000.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7532, '2023-03-05', 513, 7162, 3276, 1272, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7533, '2023-03-05', 145, 7163, 3276, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7534, '2023-03-06', 425, 7164, 3277, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '18.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7535, '2023-03-06', 458, 7165, 3278, 1574, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7536, '2023-03-06', 193, 7166, 3279, 1521, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7537, '2023-03-06', 193, 7166, 3279, 1581, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '19.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7538, '2023-03-06', 458, 7167, 3279, 1574, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7539, '2023-03-06', 154, 7168, 3279, 1384, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '19.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7540, '2023-03-06', 154, 7169, 3280, 1384, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '18.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7541, '2023-03-06', 285, 7170, 3281, 1509, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7542, '2023-03-06', 268, 7171, 3282, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '16.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7543, '2023-03-07', 458, 7172, 3283, 1574, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7544, '2023-03-07', 394, 7173, 3284, 1531, '3.0000', '70.0000', '70.0000', '150.0000', '150.0000', '17.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7545, '2023-03-07', 260, 7174, 3284, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7546, '2023-03-07', 590, 7175, 3285, 1566, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '8.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7547, '2023-03-07', 109, 7176, 3286, 1167, '1.0000', '2000.0000', '2000.0000', '2650.0000', '2650.0000', '0.0000', 1, 0, NULL, 236, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7548, '2023-03-07', 342, 7177, 3287, 1423, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7549, '2023-03-07', 409, 7178, 3287, 1205, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7550, '2023-03-07', 230, 7179, 3287, 1508, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '4.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7551, '2023-03-07', 351, 7180, 3287, 1577, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7552, '2023-03-07', 377, 7181, 3288, 1582, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '8.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7553, '2023-03-07', 165, 7182, 3288, 1552, '1.0000', '1600.0000', '1600.0000', '2200.0000', '2200.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7554, '2023-03-07', 590, 7183, 3288, 1566, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '7.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7555, '2023-03-07', 445, 7184, 3288, 875, '-1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7556, '2023-03-07', 445, 7184, 3288, 1229, '2.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '5.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7557, '2023-03-07', 93, 7185, 3288, 1519, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7558, '2023-03-07', 193, 7186, 3288, 1581, '2.0000', '200.0000', '200.0000', '250.0000', '250.0000', '17.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7559, '2023-03-08', 482, 7187, 3289, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7560, '2023-03-08', 458, 7188, 3290, 1574, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7561, '2023-03-08', 220, 7189, 3291, 1570, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7562, '2023-03-09', 362, 7190, 3292, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '2.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7563, '2023-03-09', 385, 7191, 3292, 1293, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '17.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7564, '2023-03-09', 268, 7192, 3293, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7565, '2023-03-09', 260, 7193, 3293, 250, '4.0000', '35.0000', '35.0000', '50.0000', '50.0000', '7.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7566, '2023-03-09', 9, 7194, 3294, 8, '-4.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7567, '2023-03-09', 9, 7194, 3294, 1357, '5.0000', '250.0000', '250.0000', '500.0000', '500.0000', '17.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7568, '2023-03-10', 456, 7195, 3295, 1583, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7569, '2023-03-10', 457, 7196, 3295, 1460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7570, '2023-03-10', 260, 7197, 3295, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '6.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7571, '2023-03-10', 157, 7198, 3295, 138, '2.0000', '30.0000', '30.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7572, '2023-03-10', 86, 7199, 3295, 1331, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7573, '2023-03-10', 89, 7200, 3295, 89, '1.0000', '500.0000', '500.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 13, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7574, '2023-03-10', 425, 7201, 3295, 1315, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '17.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7575, '2023-03-10', 377, 7202, 3296, 1582, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '7.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7576, '2023-03-10', 220, 7203, 3296, 1570, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7577, '2023-03-10', 385, 7204, 3297, 1293, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '16.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7578, '2023-03-10', 276, 7205, 3297, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '9.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7579, '2023-03-10', 383, 7206, 3298, 1515, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '5.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7580, '2023-03-10', 377, 7207, 3298, 1582, '2.0000', '70.0000', '70.0000', '90.0000', '90.0000', '5.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7581, '2023-03-10', 220, 7208, 3298, 1570, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 270, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7582, '2023-03-10', 220, 7208, 3298, 1575, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '9.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7583, '2023-03-10', 283, 7209, 3298, 1569, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7584, '2023-03-10', 268, 7210, 3298, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '13.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7585, '2023-03-10', 269, 7211, 3298, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7586, '2023-03-10', 458, 7212, 3299, 1574, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7587, '2023-03-10', 268, 7213, 3300, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7588, '2023-03-10', 271, 7214, 3300, 1149, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7589, '2023-03-10', 193, 7215, 3301, 1581, '6.0000', '200.0000', '200.0000', '250.0000', '250.0000', '11.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7590, '2023-03-10', 412, 7216, 3301, 804, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7591, '2023-03-10', 160, 7217, 3302, 1110, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7592, '2023-03-10', 268, 7218, 3303, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7593, '2023-03-10', 342, 7219, 3304, 1511, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7594, '2023-03-10', 217, 7220, 3305, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7595, '2023-03-11', 284, 7221, 3306, 1512, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '4.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7596, '2023-03-11', 377, 7222, 3306, 1582, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '4.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7597, '2023-03-11', 282, 7223, 3306, 1424, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '2.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7598, '2023-03-11', 383, 7224, 3306, 1515, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '4.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7599, '2023-03-11', 271, 7225, 3306, 1149, '2.0000', '30.0000', '30.0000', '40.0000', '40.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7600, '2023-03-11', 159, 7226, 3307, 1422, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '8.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7601, '2023-03-11', 107, 7227, 3307, 1576, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7602, '2023-03-11', 458, 7228, 3308, 1574, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 273, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7603, '2023-03-11', 383, 7229, 3309, 1515, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '3.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7604, '2023-03-11', 284, 7230, 3309, 1512, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '3.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7605, '2023-03-11', 377, 7231, 3309, 1582, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '3.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7606, '2023-03-11', 269, 7232, 3310, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7607, '2023-03-11', 410, 7233, 3310, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '21.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7608, '2023-03-11', 431, 7234, 3310, 1155, '2.0000', '400.0000', '400.0000', '700.0000', '700.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7609, '2023-03-11', 393, 7235, 3310, 1456, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '10.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7610, '2023-03-11', 270, 7236, 3311, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '5.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7611, '2023-03-11', 271, 7237, 3312, 1149, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7612, '2023-03-11', 410, 7238, 3312, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '20.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7613, '2023-03-12', 455, 7239, 3313, 1391, '3.0000', '110.0000', '110.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7614, '2023-03-12', 458, 7240, 3314, 1594, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '9.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7615, '2023-03-12', 220, 7241, 3315, 1575, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '7.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7616, '2023-03-13', 393, 7242, 3316, 1456, '8.0000', '300.0000', '300.0000', '450.0000', '450.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7617, '2023-03-13', 590, 7243, 3317, 1566, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '6.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7618, '2023-03-13', 348, 7244, 3317, 1344, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7619, '2023-03-13', 393, 7245, 3317, 1456, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7620, '2023-03-13', 163, 7246, 3317, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '8.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7624, '2023-03-13', 584, 7250, 3321, 1553, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7622, '2023-03-13', 458, 7248, 3319, 1594, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '6.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7625, '2023-03-13', 157, 7251, 3322, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7626, '2023-03-13', 389, 7252, 3323, 1294, '1.0000', '280.0000', '280.0000', '400.0000', '400.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7627, '2023-03-13', 194, 7253, 3323, 1558, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7628, '2023-03-13', 482, 7254, 3323, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7629, '2023-03-13', 107, 7255, 3324, 1576, '2.0000', '270.0000', '270.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7630, '2023-03-14', 458, 7256, 3325, 1594, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7631, '2023-03-14', 409, 7257, 3326, 1205, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '4.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7632, '2023-03-14', 342, 7258, 3326, 1511, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '1.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7633, '2023-03-14', 297, 7259, 3326, 1075, '3.0000', '180.0000', '180.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 227, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7634, '2023-03-14', 220, 7260, 3327, 1575, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7635, '2023-03-14', 268, 7261, 3328, 1150, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '6.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7636, '2023-03-14', 269, 7262, 3328, 1178, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7637, '2023-03-14', 411, 7263, 3328, 1572, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 271, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7638, '2023-03-14', 160, 7264, 3329, 1110, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 231, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7639, '2023-03-14', 482, 7265, 3329, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7640, '2023-03-23', 393, 7266, 3330, 1456, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7641, '2023-03-23', 393, 7266, 3330, 1595, '1.0000', '300.0000', '300.0000', '450.0000', '450.0000', '7.0000', 1, 0, NULL, 276, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7642, '2023-03-23', 47, 7267, 3330, 47, '-12.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 9, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7643, '2023-03-23', 47, 7267, 3330, 719, '8.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7644, '2023-03-23', 47, 7267, 3330, 1050, '5.0000', '500.0000', '500.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7645, '2023-03-23', 539, 7268, 3330, 1392, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7646, '2023-03-23', 557, 7269, 3330, 1412, '1.0000', '2200.0000', '2200.0000', '3000.0000', '3000.0000', '3.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7647, '2023-03-23', 458, 7270, 3330, 1594, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7648, '2023-03-23', 63, 7271, 3330, 1439, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7649, '2023-03-23', 391, 7272, 3330, 977, '1.0000', '450.0000', '450.0000', '650.0000', '650.0000', '0.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7650, '2023-03-23', 425, 7273, 3330, 1315, '2.0000', '80.0000', '80.0000', '100.0000', '100.0000', '15.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7651, '2023-03-23', 145, 7274, 3331, 1302, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7652, '2023-03-23', 482, 7275, 3331, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7653, '2023-03-23', 268, 7276, 3331, 1150, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7654, '2023-03-23', 410, 7277, 3331, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '19.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7655, '2023-03-23', 271, 7278, 3331, 1149, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '2.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7656, '2023-03-23', 9, 7279, 3331, 8, '-3.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7657, '2023-03-23', 9, 7279, 3331, 1357, '4.0000', '250.0000', '250.0000', '500.0000', '500.0000', '13.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7658, '2023-03-23', 200, 7280, 3332, 1518, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7659, '2023-03-23', 269, 7281, 3332, 1270, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7660, '2023-03-23', 270, 7282, 3332, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '4.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7661, '2023-03-23', 269, 7283, 3332, 1270, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7662, '2023-03-23', 168, 7284, 3332, 1360, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7663, '2023-03-23', 390, 7285, 3332, 1198, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7664, '2023-03-23', 482, 7286, 3332, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7665, '2023-03-23', 457, 7287, 3332, 1460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7666, '2023-03-23', 413, 7288, 3332, 1316, '2.0000', '100.0000', '100.0000', '150.0000', '150.0000', '42.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7667, '2023-03-23', 195, 7289, 3332, 1495, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 263, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7668, '2023-03-23', 268, 7290, 3332, 1150, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '3.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7669, '2023-03-23', 268, 7291, 3332, 1150, '3.0000', '170.0000', '170.0000', '200.0000', '200.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7670, '2023-03-23', 411, 7292, 3332, 1572, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 271, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7671, '2023-03-23', 200, 7293, 3332, 1518, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7672, '2023-03-23', 100, 7294, 3332, 1501, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7673, '2023-03-23', 458, 7295, 3333, 1594, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7674, '2023-03-23', 103, 7296, 3334, 113, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '9.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7675, '2023-03-23', 106, 7297, 3334, 796, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7676, '2023-03-23', 538, 7298, 3334, 1388, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 256, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7677, '2023-03-23', 127, 7299, 3334, 123, '1.0000', '1500.0000', '1500.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7678, '2023-03-23', 102, 7300, 3334, 940, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7679, '2023-03-23', 521, 7301, 3334, 1301, '2.0000', '220.0000', '220.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7680, '2023-03-23', 392, 7302, 3334, 1300, '2.0000', '180.0000', '180.0000', '250.0000', '250.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7681, '2023-03-23', 522, 7303, 3334, 1314, '2.0000', '50.0000', '50.0000', '70.0000', '70.0000', '35.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7682, '2023-03-23', 3, 7304, 3334, 1196, '2.0000', '180.0000', '180.0000', '300.0000', '300.0000', '10.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7683, '2023-03-23', 228, 7305, 3334, 1492, '1.0000', '2200.0000', '2200.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7684, '2023-03-23', 74, 7306, 3335, 1192, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7685, '2023-03-23', 6, 7307, 3335, 973, '3.0000', '400.0000', '400.0000', '600.0000', '600.0000', '4.0000', 1, 0, NULL, 211, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7686, '2023-03-23', 456, 7308, 3335, 1583, '2.0000', '70.0000', '70.0000', '100.0000', '100.0000', '7.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7687, '2023-03-23', 457, 7309, 3335, 1460, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7688, '2023-03-23', 164, 7310, 3335, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '3.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7689, '2023-03-23', 193, 7311, 3335, 1581, '4.0000', '200.0000', '200.0000', '250.0000', '250.0000', '7.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7690, '2023-03-23', 387, 7312, 3335, 1542, '2.0000', '650.0000', '650.0000', '850.0000', '850.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7691, '2023-03-23', 389, 7313, 3336, 1294, '2.0000', '280.0000', '280.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7714, '2023-03-23', 269, 7332, 3338, 1270, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '14.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7713, '2023-03-23', 141, 7331, 3338, 1596, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 277, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7712, '2023-03-23', 342, 7330, 3338, 1511, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7711, '2023-03-23', 482, 7329, 3338, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7710, '2023-03-23', 226, 7328, 3338, 1179, '1.0000', '350.0000', '350.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7709, '2023-03-23', 163, 7327, 3338, 767, '1.0000', '75.0000', '75.0000', '150.0000', '150.0000', '7.0000', 1, 0, NULL, 185, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7708, '2023-03-23', 254, 7326, 3338, 1237, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '2.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7707, '2023-03-23', 254, 7326, 3338, 892, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 200, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7706, '2023-03-23', 254, 7326, 3338, 241, '-1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '0.0000', 1, 0, NULL, 96, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7705, '2023-03-23', 564, 7325, 3338, 1407, '1.0000', '1000.0000', '1000.0000', '1500.0000', '1500.0000', '1.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7704, '2023-03-23', 410, 7324, 3338, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '18.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7715, '2023-03-23', 270, 7333, 3338, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '3.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7716, '2023-03-23', 164, 7334, 3339, 1547, '1.0000', '1200.0000', '1200.0000', '2000.0000', '2000.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7717, '2023-03-23', 482, 7335, 3339, 1524, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7718, '2023-03-23', 9, 7336, 3339, 1357, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '12.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7719, '2023-03-23', 485, 7337, 3339, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '11.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7720, '2023-03-23', 572, 7338, 3339, 1502, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '23.0000', 1, 0, NULL, 265, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7721, '2023-03-23', 100, 7339, 3340, 1501, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7722, '2023-03-23', 113, 7340, 3340, 106, '-1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7723, '2023-03-23', 113, 7340, 3340, 1374, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 254, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7724, '2023-03-23', 113, 7340, 3340, 1613, '1.0000', '100.0000', '100.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7725, '2023-03-23', 497, 7341, 3340, 1134, '-9.0000', '400.0000', '400.0000', '750.0000', '750.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7726, '2023-03-23', 497, 7341, 3340, 1436, '10.0000', '400.0000', '400.0000', '750.0000', '750.0000', '14.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7727, '2023-03-23', 9, 7342, 3340, 1357, '1.0000', '250.0000', '250.0000', '500.0000', '500.0000', '11.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7728, '2023-03-23', 217, 7343, 3340, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '3.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7729, '2023-03-23', 260, 7344, 3340, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '5.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7730, '2023-03-23', 207, 7345, 3341, 1550, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '8.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7731, '2023-03-23', 293, 7346, 3341, 317, '-3.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7732, '2023-03-23', 293, 7346, 3341, 1202, '4.0000', '150.0000', '150.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7733, '2023-03-23', 458, 7347, 3342, 1594, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7734, '2023-03-23', 458, 7347, 3342, 1622, '2.0000', '200.0000', '200.0000', '300.0000', '300.0000', '5.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7735, '2023-03-23', 270, 7348, 3342, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '2.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7736, '2023-03-23', 281, 7349, 3342, 304, '1.0000', '110.0000', '110.0000', '150.0000', '150.0000', '1.0000', 1, 0, NULL, 131, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7737, '2023-03-23', 378, 7350, 3342, 662, '1.0000', '60.0000', '60.0000', '90.0000', '90.0000', '1.0000', 1, 0, NULL, 171, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7738, '2023-03-23', 383, 7351, 3342, 1515, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '2.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7739, '2023-03-23', 282, 7352, 3342, 1424, '1.0000', '120.0000', '120.0000', '170.0000', '170.0000', '1.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7740, '2023-03-23', 383, 7353, 3343, 1515, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '1.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7741, '2023-03-23', 456, 7354, 3343, 1583, '1.0000', '70.0000', '70.0000', '100.0000', '100.0000', '6.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7742, '2023-03-23', 217, 7355, 3343, 1517, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '2.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7743, '2023-03-23', 220, 7356, 3344, 1575, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '5.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7744, '2023-03-23', 270, 7357, 3344, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '1.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7745, '2023-03-23', 458, 7358, 3345, 1622, '3.0000', '200.0000', '200.0000', '300.0000', '300.0000', '2.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7746, '2023-03-23', 107, 7359, 3345, 100, '-3.0000', '160.0000', '160.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 14, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7747, '2023-03-23', 107, 7359, 3345, 1576, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7748, '2023-03-23', 107, 7359, 3345, 1593, '3.0000', '270.0000', '270.0000', '400.0000', '400.0000', '2.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7749, '2023-03-23', 220, 7360, 3345, 1575, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7750, '2023-03-23', 116, 7361, 3345, 1452, '1.0000', '1500.0000', '1500.0000', '2500.0000', '2500.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7751, '2023-03-23', 119, 7362, 3345, 341, '1.0000', '120.0000', '120.0000', '200.0000', '200.0000', '15.0000', 1, 0, NULL, 138, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7752, '2023-03-23', 145, 7363, 3345, 1465, '1.0000', '220.0000', '220.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7753, '2023-03-23', 268, 7364, 3345, 1191, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '14.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7754, '2023-03-23', 9, 7365, 3345, 8, '-7.0000', '250.0000', '250.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 6, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7755, '2023-03-23', 9, 7365, 3345, 1357, '8.0000', '250.0000', '250.0000', '500.0000', '500.0000', '3.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7756, '2023-03-23', 497, 7366, 3345, 1436, '1.0000', '400.0000', '400.0000', '750.0000', '750.0000', '13.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7757, '2023-03-23', 410, 7367, 3345, 1365, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '16.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7758, '2023-03-23', 3, 7368, 3346, 1196, '3.0000', '180.0000', '180.0000', '300.0000', '300.0000', '7.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7759, '2023-03-23', 485, 7369, 3346, 1369, '1.0000', '250.0000', '250.0000', '400.0000', '400.0000', '10.0000', 1, 0, NULL, 252, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7760, '2023-03-23', 15, 7370, 3346, 1440, '1.0000', '500.0000', '500.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 259, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7761, '2023-03-23', 194, 7371, 3346, 1634, '1.0000', '400.0000', '400.0000', '600.0000', '600.0000', '0.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7762, '2023-03-23', 242, 7372, 3346, 214, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '2.0000', 1, 0, NULL, 76, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7763, '2023-03-23', 386, 7373, 3346, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '4.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7764, '2023-03-23', 397, 7374, 3346, 1227, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7765, '2023-03-23', 154, 7375, 3346, 1384, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '17.0000', 1, 0, NULL, 255, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7766, '2023-03-23', 107, 7376, 3347, 1593, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '1.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7767, '2023-03-23', 590, 7377, 3348, 1566, '1.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '5.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7768, '2023-03-23', 179, 7378, 3348, 252, '-1.0000', '800.0000', '800.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 105, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7769, '2023-03-23', 179, 7378, 3348, 1624, '6.0000', '800.0000', '800.0000', '1000.0000', '1000.0000', '3.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7770, '2023-03-23', 413, 7379, 3348, 805, '-1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7771, '2023-03-23', 413, 7379, 3348, 1316, '4.0000', '100.0000', '100.0000', '150.0000', '150.0000', '38.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7772, '2023-03-23', 459, 7380, 3348, 1317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '50.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7773, '2023-03-23', 200, 7381, 3349, 1518, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7776, '2023-03-23', 12, 7384, 3352, 482, '1.0000', '1000.0000', '1000.0000', '2000.0000', '2000.0000', '0.0000', 1, 0, NULL, 150, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7775, '2023-03-23', 238, 7383, 3351, 205, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 70, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7777, '2023-03-23', 362, 7385, 3352, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '1.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7778, '2023-03-23', 385, 7386, 3352, 680, '-1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 174, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7779, '2023-03-23', 385, 7386, 3352, 1293, '2.0000', '180.0000', '180.0000', '300.0000', '300.0000', '14.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7780, '2023-03-23', 482, 7387, 3352, 1580, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '4.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7781, '2023-03-23', 268, 7388, 3352, 1191, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '12.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7782, '2023-03-23', 515, 7389, 3353, 1239, '1.0000', '4000.0000', '4000.0000', '5000.0000', '5000.0000', '0.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7783, '2023-03-23', 583, 7390, 3353, 1546, '1.0000', '3500.0000', '3500.0000', '4500.0000', '4500.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7790, '2023-03-24', 271, 7396, 3356, 1149, '1.0000', '30.0000', '30.0000', '40.0000', '40.0000', '1.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7789, '2023-03-24', 220, 7395, 3356, 1575, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '1.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7791, '2023-03-24', 410, 7397, 3356, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '15.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7787, '2023-03-24', 319, 7393, 3355, 1147, '2.0000', '300.0000', '300.0000', '500.0000', '500.0000', '5.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7788, '2023-03-24', 296, 7394, 3355, 319, '1.0000', '95.0000', '95.0000', '150.0000', '150.0000', '20.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7792, '2023-03-24', 412, 7398, 3356, 804, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7793, '2023-03-24', 270, 7399, 3356, 1311, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7794, '2023-03-25', 276, 7400, 3357, 1427, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '8.0000', 1, 0, NULL, 258, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7795, '2023-03-25', 458, 7401, 3358, 1622, '1.0000', '200.0000', '200.0000', '300.0000', '300.0000', '1.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7796, '2023-03-25', 252, 7402, 3358, 1633, '2.0000', '150.0000', '150.0000', '200.0000', '200.0000', '2.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7797, '2023-03-25', 459, 7403, 3358, 1317, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '49.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7798, '2023-03-25', 193, 7404, 3358, 1581, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '6.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7799, '2023-03-25', 220, 7405, 3359, 1575, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '0.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7800, '2023-03-25', 270, 7406, 3360, 1585, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '9.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7801, '2023-03-25', 268, 7407, 3361, 1191, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '11.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7802, '2023-03-26', 268, 7408, 3362, 1191, '2.0000', '170.0000', '170.0000', '200.0000', '200.0000', '9.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7803, '2023-03-26', 410, 7409, 3362, 1365, '2.0000', '35.0000', '35.0000', '50.0000', '50.0000', '13.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7804, '2023-03-26', 162, 7410, 3363, 1635, '1.0000', '600.0000', '600.0000', '900.0000', '900.0000', '0.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7805, '2023-03-26', 482, 7411, 3363, 1580, '1.0000', '235.0000', '235.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7806, '2023-03-26', 590, 7412, 3363, 1566, '2.0000', '1200.0000', '1200.0000', '1500.0000', '1500.0000', '3.0000', 1, 0, NULL, 269, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7807, '2023-03-26', 310, 7413, 3364, 1551, '1.0000', '2000.0000', '2000.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7808, '2023-03-26', 389, 7414, 3364, 1294, '1.0000', '280.0000', '280.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7809, '2023-03-26', 475, 7415, 3364, 1049, '1.0000', '700.0000', '700.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 224, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7810, '2023-03-26', 268, 7416, 3365, 1191, '1.0000', '170.0000', '170.0000', '200.0000', '200.0000', '8.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7811, '2023-03-26', 269, 7417, 3365, 1270, '1.0000', '130.0000', '130.0000', '150.0000', '150.0000', '13.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7812, '2023-03-26', 107, 7418, 3366, 1593, '1.0000', '270.0000', '270.0000', '400.0000', '400.0000', '0.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7813, '2023-03-26', 8, 7419, 3367, 1499, '1.0000', '150.0000', '150.0000', '300.0000', '300.0000', '3.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7814, '2023-03-26', 100, 7420, 3368, 1501, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 264, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7815, '2023-03-26', 362, 7421, 3369, 595, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7816, '2023-03-26', 385, 7422, 3369, 1293, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '13.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7817, '2023-03-26', 103, 7423, 3369, 113, '1.0000', '750.0000', '750.0000', '1200.0000', '1200.0000', '8.0000', 1, 0, NULL, 15, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7818, '2023-03-26', 195, 7424, 3369, 1495, '1.0000', '350.0000', '350.0000', '600.0000', '600.0000', '3.0000', 1, 0, NULL, 263, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7819, '2023-03-26', 46, 7425, 3370, 46, '-1.0000', '210.0000', '210.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 8, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7820, '2023-03-26', 46, 7425, 3370, 1146, '2.0000', '210.0000', '210.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 235, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7821, '2023-03-26', 386, 7426, 3370, 986, '1.0000', '200.0000', '200.0000', '350.0000', '350.0000', '3.0000', 1, 0, NULL, 214, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7822, '2023-03-26', 410, 7427, 3371, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '12.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7823, '2023-03-26', 193, 7428, 3372, 1581, '1.0000', '200.0000', '200.0000', '250.0000', '250.0000', '5.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7824, '2023-03-26', 74, 7429, 3373, 1541, '1.0000', '450.0000', '450.0000', '750.0000', '750.0000', '1.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7825, '2023-03-27', 377, 7430, 3374, 1582, '1.0000', '70.0000', '70.0000', '90.0000', '90.0000', '2.0000', 1, 0, NULL, 274, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7826, '2023-03-27', 231, 7431, 3375, 1188, '1.0000', '100.0000', '100.0000', '150.0000', '150.0000', '2.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7827, '2023-03-27', 506, 7432, 3376, 1185, '-2.0000', '170.0000', '170.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7828, '2023-03-27', 506, 7432, 3376, 1318, '1.0000', '170.0000', '170.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7829, '2023-03-27', 506, 7432, 3376, 1603, '2.0000', '170.0000', '170.0000', '250.0000', '250.0000', '1.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7830, '2023-03-27', 507, 7433, 3376, 1186, '1.0000', '300.0000', '300.0000', '500.0000', '500.0000', '0.0000', 1, 0, NULL, 237, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7831, '2023-03-27', 425, 7434, 3376, 834, '-3.0000', '80.0000', '80.0000', '100.0000', '100.0000', '0.0000', 1, 0, NULL, 196, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7832, '2023-03-27', 425, 7434, 3376, 1315, '4.0000', '80.0000', '80.0000', '100.0000', '100.0000', '11.0000', 1, 0, NULL, 247, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7833, '2023-03-27', 362, 7435, 3377, 710, '1.0000', '800.0000', '800.0000', '1200.0000', '1200.0000', '4.0000', 1, 0, NULL, 176, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7834, '2023-03-27', 385, 7436, 3377, 1293, '1.0000', '180.0000', '180.0000', '300.0000', '300.0000', '12.0000', 1, 0, NULL, 246, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7835, '2023-03-27', 157, 7437, 3378, 138, '1.0000', '30.0000', '30.0000', '50.0000', '50.0000', '1.0000', 1, 0, NULL, 20, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7836, '2023-03-27', 260, 7438, 3378, 250, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '4.0000', 1, 0, NULL, 103, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7837, '2023-03-27', 394, 7439, 3379, 1531, '1.0000', '70.0000', '70.0000', '150.0000', '150.0000', '16.0000', 1, 0, NULL, 267, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7838, '2023-03-27', 383, 7440, 3380, 1515, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '0.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7839, '2023-03-27', 383, 7440, 3380, 1619, '1.0000', '45.0000', '45.0000', '130.0000', '130.0000', '13.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7840, '2023-03-27', 284, 7441, 3380, 1512, '1.0000', '50.0000', '50.0000', '80.0000', '80.0000', '2.0000', 1, 0, NULL, 266, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7841, '2023-03-28', 106, 7442, 3381, 796, '1.0000', '150.0000', '150.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 192, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7842, '2023-03-28', 557, 7443, 3382, 1412, '1.0000', '2200.0000', '2200.0000', '3000.0000', '3000.0000', '2.0000', 1, 0, NULL, 257, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7843, '2023-03-28', 294, 7444, 3383, 318, '1.0000', '450.0000', '450.0000', '600.0000', '600.0000', '1.0000', 1, 0, NULL, 133, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7844, '2023-03-28', 5, 7445, 3383, 1195, '2.0000', '250.0000', '250.0000', '350.0000', '350.0000', '6.0000', 1, 0, NULL, 239, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7845, '2023-03-28', 220, 7446, 3383, 1616, '4.0000', '35.0000', '35.0000', '60.0000', '60.0000', '6.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7846, '2023-03-28', 593, 7447, 3384, 1626, '1.0000', '150.0000', '150.0000', '200.0000', '200.0000', '10.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7847, '2023-03-28', 268, 7448, 3385, 1191, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '4.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7848, '2023-03-28', 354, 7449, 3386, 586, '1.0000', '600.0000', '600.0000', '800.0000', '800.0000', '0.0000', 1, 0, NULL, 163, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7849, '2023-03-28', 289, 7450, 3386, 955, '1.0000', '140.0000', '140.0000', '250.0000', '250.0000', '0.0000', 1, 0, NULL, 205, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7850, '2023-03-28', 9, 7451, 3386, 1357, '2.0000', '250.0000', '250.0000', '500.0000', '500.0000', '1.0000', 1, 0, NULL, 248, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7851, '2023-03-29', 220, 7452, 3387, 1616, '2.0000', '35.0000', '35.0000', '60.0000', '60.0000', '4.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7852, '2023-03-29', 179, 7453, 3388, 1624, '3.0000', '800.0000', '800.0000', '1000.0000', '1000.0000', '0.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7853, '2023-03-29', 220, 7454, 3388, 1616, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '3.0000', 1, 0, NULL, 278, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7854, '2023-03-29', 268, 7455, 3389, 1191, '4.0000', '170.0000', '170.0000', '200.0000', '200.0000', '0.0000', 1, 0, NULL, 238, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7855, '2023-03-29', 269, 7456, 3389, 1270, '4.0000', '130.0000', '130.0000', '150.0000', '150.0000', '9.0000', 1, 0, NULL, 241, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7856, '2023-03-29', 410, 7457, 3390, 1365, '1.0000', '35.0000', '35.0000', '50.0000', '50.0000', '11.0000', 1, 0, NULL, 251, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7857, '2023-03-30', 108, 7458, 3391, 1490, '1.0000', '250.0000', '250.0000', '350.0000', '350.0000', '5.0000', 1, 0, NULL, 260, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7858, '2023-03-30', 270, 7459, 3392, 1585, '1.0000', '80.0000', '80.0000', '100.0000', '100.0000', '8.0000', 1, 0, NULL, 275, NULL);
INSERT INTO `sma_costing` (`id`, `date`, `product_id`, `sale_item_id`, `sale_id`, `purchase_item_id`, `quantity`, `purchase_net_unit_cost`, `purchase_unit_cost`, `sale_net_unit_price`, `sale_unit_price`, `quantity_balance`, `inventory`, `overselling`, `option_id`, `purchase_id`, `transfer_id`) VALUES (7859, '2023-03-30', 220, 7460, 3392, 1616, '1.0000', '35.0000', '35.0000', '60.0000', '60.0000', '2.0000', 1, 0, NULL, 278, NULL);


#
# TABLE STRUCTURE FOR: sma_currencies
#

DROP TABLE IF EXISTS `sma_currencies`;

CREATE TABLE `sma_currencies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(5) NOT NULL,
  `name` varchar(55) NOT NULL,
  `rate` decimal(12,4) NOT NULL,
  `auto_update` tinyint(1) NOT NULL DEFAULT 0,
  `symbol` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_currencies` (`id`, `code`, `name`, `rate`, `auto_update`, `symbol`) VALUES (1, 'BDT', 'Taka', '1.0000', 0, 'TK');


#
# TABLE STRUCTURE FOR: sma_customer_groups
#

DROP TABLE IF EXISTS `sma_customer_groups`;

CREATE TABLE `sma_customer_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `percent` int(11) NOT NULL,
  `discount` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (1, 'General', 0, NULL);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (2, 'Reseller', -5, NULL);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (3, 'Distributor', -15, NULL);
INSERT INTO `sma_customer_groups` (`id`, `name`, `percent`, `discount`) VALUES (4, 'New Customer (+10)', 10, NULL);


#
# TABLE STRUCTURE FOR: sma_date_format
#

DROP TABLE IF EXISTS `sma_date_format`;

CREATE TABLE `sma_date_format` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `js` varchar(20) NOT NULL,
  `php` varchar(20) NOT NULL,
  `sql` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (1, 'mm-dd-yyyy', 'm-d-Y', '%m-%d-%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (2, 'mm/dd/yyyy', 'm/d/Y', '%m/%d/%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (3, 'mm.dd.yyyy', 'm.d.Y', '%m.%d.%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (4, 'dd-mm-yyyy', 'd-m-Y', '%d-%m-%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (5, 'dd/mm/yyyy', 'd/m/Y', '%d/%m/%Y');
INSERT INTO `sma_date_format` (`id`, `js`, `php`, `sql`) VALUES (6, 'dd.mm.yyyy', 'd.m.Y', '%d.%m.%Y');


#
# TABLE STRUCTURE FOR: sma_deliveries
#

DROP TABLE IF EXISTS `sma_deliveries`;

CREATE TABLE `sma_deliveries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `sale_id` int(11) NOT NULL,
  `do_reference_no` varchar(50) NOT NULL,
  `sale_reference_no` varchar(50) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `address` varchar(1000) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `status` varchar(15) DEFAULT NULL,
  `attachment` varchar(50) DEFAULT NULL,
  `delivered_by` varchar(50) DEFAULT NULL,
  `received_by` varchar(50) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_deposits
#

DROP TABLE IF EXISTS `sma_deposits`;

CREATE TABLE `sma_deposits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `company_id` int(11) NOT NULL,
  `amount` decimal(25,4) NOT NULL,
  `paid_by` varchar(50) DEFAULT NULL,
  `note` varchar(255) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) NOT NULL,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_expense_categories
#

DROP TABLE IF EXISTS `sma_expense_categories`;

CREATE TABLE `sma_expense_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(55) NOT NULL,
  `name` varchar(55) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_expenses
#

DROP TABLE IF EXISTS `sma_expenses`;

CREATE TABLE `sma_expenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `reference` varchar(50) NOT NULL,
  `amount` decimal(25,4) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `created_by` varchar(55) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_gift_card_topups
#

DROP TABLE IF EXISTS `sma_gift_card_topups`;

CREATE TABLE `sma_gift_card_topups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `card_id` int(11) NOT NULL,
  `amount` decimal(15,4) NOT NULL,
  `created_by` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `card_id` (`card_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_gift_cards
#

DROP TABLE IF EXISTS `sma_gift_cards`;

CREATE TABLE `sma_gift_cards` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `card_no` varchar(20) NOT NULL,
  `value` decimal(25,4) NOT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer` varchar(255) DEFAULT NULL,
  `balance` decimal(25,4) NOT NULL,
  `expiry` date DEFAULT NULL,
  `created_by` varchar(55) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `card_no` (`card_no`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_groups
#

DROP TABLE IF EXISTS `sma_groups`;

CREATE TABLE `sma_groups` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(20) NOT NULL,
  `description` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (1, 'owner', 'Owner');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (2, 'admin', 'Administrator');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (3, 'customer', 'Customer');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (4, 'supplier', 'Supplier');
INSERT INTO `sma_groups` (`id`, `name`, `description`) VALUES (5, 'sales', 'Sales Staff');


#
# TABLE STRUCTURE FOR: sma_login_attempts
#

DROP TABLE IF EXISTS `sma_login_attempts`;

CREATE TABLE `sma_login_attempts` (
  `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  `ip_address` varbinary(16) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=88 DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_logs
#

DROP TABLE IF EXISTS `sma_logs`;

CREATE TABLE `sma_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `detail` varchar(190) NOT NULL,
  `model` longtext DEFAULT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=193 DEFAULT CHARSET=utf8;

INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (1, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4\",\"date\":\"2021-12-16 13:47:24\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0004\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"03339d54090ea0a5cdcfa84d660b5638870184ba2e48932591c7c883ca3ff5aa\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5\",\"sale_id\":\"4\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":null}]}', '2021-12-16 13:54:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (2, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3\",\"date\":\"2021-12-16 13:00:10\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0003\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"aee115197c6e4768b104554b6f201d2ae9b4bc4de704194d73c4a967c1a6c07c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4\",\"sale_id\":\"3\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":null}]}', '2021-12-16 13:54:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (3, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"2\",\"date\":\"2021-12-16 12:47:12\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0002\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"6ef899f8bb41fe45e2e3fecd09bf88fa8aab4262fe2cff7261e69c92ddd208cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3\",\"sale_id\":\"2\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":null}]}', '2021-12-16 13:55:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (4, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"date\":\"2021-12-16 12:33:10\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0001\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"3\",\"biller\":\"Test Biller\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5010.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5010.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"5010.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"eccb58b598b93477a165ff0ea7b4fc8b93bd90bc24012ae63d57e1f8afe83fa6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1\",\"sale_id\":\"1\",\"product_id\":\"1\",\"product_code\":\"01\",\"product_name\":\"Hi\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":null},{\"id\":\"2\",\"sale_id\":\"1\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"5000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"1\",\"base_unit_code\":null}]}', '2021-12-16 13:55:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (5, 'Biller is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3\",\"group_id\":null,\"group_name\":\"biller\",\"customer_group_id\":null,\"customer_group_name\":null,\"name\":\"Mian Saleem\",\"company\":\"Test Biller\",\"vat_no\":\"5555\",\"address\":\"Biller adddress\",\"city\":\"City\",\"state\":\"\",\"postal_code\":\"\",\"country\":\"Country\",\"phone\":\"012345678\",\"email\":\"saleem@tecdiary.com\",\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"invoice_footer\":\" Thank you for shopping with us. Please come again\",\"payment_term\":\"0\",\"logo\":\"logo1.png\",\"award_points\":\"0\",\"deposit_amount\":null,\"price_group_id\":null,\"price_group_name\":null,\"gst_no\":null}}', '2021-12-16 13:56:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (6, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"code\":\"01\",\"name\":\"Hi\",\"unit\":\"1\",\"cost\":\"12.0000\",\"price\":\"10.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"1\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"19.0000\",\"tax_rate\":\"1\",\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":\"1\",\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"1\",\"purchase_unit\":\"1\",\"brand\":\"0\",\"slug\":\"No\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2021-12-16 22:54:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (7, 'Product is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"161\",\"code\":\"67153971\",\"name\":\"B-1 ROOT GROWER\",\"unit\":\"2\",\"cost\":\"300.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"67153971\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-01-13 20:43:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (8, 'Quantity adjustment is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"1\",\"date\":\"2022-01-06 08:02:00\",\"reference_no\":\"2022\\/01\\/0001\",\"warehouse_id\":\"2\",\"note\":\"\",\"attachment\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"1\",\"adjustment_id\":\"1\",\"product_id\":\"3\",\"option_id\":null,\"quantity\":\"30.0000\",\"warehouse_id\":\"2\",\"serial_no\":\"\",\"type\":\"subtraction\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null}]}', '2022-02-20 13:35:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (9, 'Quantity adjustment is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"2\",\"date\":\"2022-02-20 13:32:00\",\"reference_no\":\"2022\\/02\\/0002\",\"warehouse_id\":\"2\",\"note\":\"\",\"attachment\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"2\",\"adjustment_id\":\"2\",\"product_id\":\"142\",\"option_id\":null,\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"44857076\",\"product_name\":\"SPAGHNUM MOSS 12L\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null}]}', '2022-02-20 13:35:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (10, 'Quantity adjustment is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"3\",\"date\":\"2022-02-20 13:33:00\",\"reference_no\":\"2022\\/02\\/0003\",\"warehouse_id\":\"2\",\"note\":\"\",\"attachment\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"3\",\"adjustment_id\":\"3\",\"product_id\":\"142\",\"option_id\":null,\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"44857076\",\"product_name\":\"SPAGHNUM MOSS 12L\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null}]}', '2022-02-20 13:35:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (11, 'Quantity adjustment is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"4\",\"date\":\"2022-02-20 13:34:00\",\"reference_no\":\"2022\\/02\\/0004\",\"warehouse_id\":\"2\",\"note\":\"\",\"attachment\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"4\",\"adjustment_id\":\"4\",\"product_id\":\"142\",\"option_id\":null,\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"serial_no\":\"\",\"type\":\"subtraction\",\"product_code\":\"44857076\",\"product_name\":\"SPAGHNUM MOSS 12L\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null}]}', '2022-02-20 13:35:58');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (12, 'Quantity adjustment is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5\",\"date\":\"2022-02-20 13:35:00\",\"reference_no\":\"2022\\/02\\/0005\",\"warehouse_id\":\"2\",\"note\":\"\",\"attachment\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"count_id\":null},\"items\":[{\"id\":\"5\",\"adjustment_id\":\"5\",\"product_id\":\"136\",\"option_id\":null,\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"serial_no\":\"\",\"type\":\"addition\",\"product_code\":\"00863032\",\"product_name\":\"CACTUS & SUCCULENT FOCUS\",\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null}]}', '2022-02-20 13:36:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (13, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"56\",\"date\":\"2022-01-18 14:06:44\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0056\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2e4a5ae86e8bde7631401cc3f8334c24c9e74bcf5990c23d761b1584fe5a67cf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"64\",\"sale_id\":\"56\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:37:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (14, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"59\",\"date\":\"2022-01-18 14:14:07\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0059\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"afd808fdc682fbdf08f2522df9d788eff5683c566385c9b4320d0da31349ce16\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"67\",\"sale_id\":\"59\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:37:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (15, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"64\",\"date\":\"2022-02-20 13:09:20\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0064\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2400.0000\",\"product_discount\":\"100.0000\",\"order_discount_id\":\"10\",\"total_discount\":\"110.0000\",\"order_discount\":\"10.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2390.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"2390.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"cb8bfecb9970a140f0285eac3117e002a37eb08598c9f1e9f9c75eb34ea846c8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"72\",\"sale_id\":\"64\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"10%\",\"item_discount\":\"100.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"73\",\"sale_id\":\"64\",\"product_id\":\"22\",\"product_code\":\"01402428\",\"product_name\":\"BROMELIAD THAI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:37:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (16, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"63\",\"date\":\"2022-01-18 14:26:51\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0063\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"547d3c4450dbe19c1cb424cd8ead429af7ac3fc96f945e6fd2fff82f02880b4a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"71\",\"sale_id\":\"63\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:38:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (17, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"62\",\"date\":\"2022-01-18 14:25:00\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0062\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ab9318f0f96de45b1acc7d5b08e0b05006fa0036964c3c337e084f8b7ff85e3f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"70\",\"sale_id\":\"62\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:38:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (18, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"61\",\"date\":\"2022-01-18 14:18:49\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0061\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"fa2c6e138980251a9ade52b39730ccf930d7875fbde69ab58f6879a3f8d8241b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"69\",\"sale_id\":\"61\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:38:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (19, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"60\",\"date\":\"2022-01-18 14:15:20\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0060\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3373981fb47cf265852bb606950c5ac023526c4eafba46a8b9051d8fde037479\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"68\",\"sale_id\":\"60\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:38:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (20, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"57\",\"date\":\"2022-01-18 14:10:29\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0057\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8c00a480918d4820334343e027953aad30e19d4cb466ee6409e3b9dc0e95155b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"65\",\"sale_id\":\"57\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:39:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (21, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"50\",\"date\":\"2022-01-16 12:17:05\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0050\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"fd9fb4bc76f149861eefcfdb108c640f137f60ff48d259eb4c564cddf536777e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"58\",\"sale_id\":\"50\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:39:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (22, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"48\",\"date\":\"2022-01-07 12:33:29\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0048\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"fe15d7a35e665702bf993af81fb290f6546c3da5b66bde9ebf233bcb7c02c655\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"56\",\"sale_id\":\"48\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:39:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (23, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"46\",\"date\":\"2022-01-07 12:27:48\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0046\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2bc60723f1c3b82ae48e7aff27ff2a041e9968bc9959b5c5f29b504b6ebdf518\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"54\",\"sale_id\":\"46\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:40:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (24, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"58\",\"date\":\"2022-01-18 14:11:56\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0058\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5aa3fc3208eee277c19d936c414f2ff1f92ac9f28e51d708c353bc52530cf535\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"66\",\"sale_id\":\"58\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:40:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (25, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"55\",\"date\":\"2022-01-18 14:04:10\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0055\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"1924eec73394fa47d428d6fbc6c277f3f86c5d6830071ffefd39c7c0af41d981\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"63\",\"sale_id\":\"55\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:40:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (26, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"43\",\"date\":\"2022-01-07 12:08:14\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0043\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"48a1073ad6fc69849386e8de6562f8b743cec5991c7ffda13c30090c1a694c19\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"51\",\"sale_id\":\"43\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:40:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (27, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"65\",\"date\":\"2022-02-20 13:24:21\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0065\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1190.0000\",\"product_discount\":\"10.0000\",\"order_discount_id\":\"\",\"total_discount\":\"10.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1190.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1190.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0df054ad7cfa2a64c39592152d293212e71d02b6b86688a65ec8445e730d6eb4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"74\",\"sale_id\":\"65\",\"product_id\":\"45\",\"product_code\":\"47418622\",\"product_name\":\"CRYPTHENTHUS\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"75\",\"sale_id\":\"65\",\"product_id\":\"33\",\"product_code\":\"03006363\",\"product_name\":\"EPIOREMNUM AMPLISSIMUM SILVER\",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"990.0000\",\"unit_price\":\"990.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"10\",\"item_discount\":\"10.0000\",\"subtotal\":\"990.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (28, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"54\",\"date\":\"2022-01-18 14:02:48\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0054\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c17cbb1b11608c95066dffcce2057b5e931cfdc1130d7d2570005261f3612b88\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"62\",\"sale_id\":\"54\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (29, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"53\",\"date\":\"2022-01-18 13:58:08\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0053\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"69520f84f05b0889434297adef2219486e88b5939ba5f3debe00216e634816cb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"61\",\"sale_id\":\"53\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (30, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"52\",\"date\":\"2022-01-18 12:51:31\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0052\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"e4781bad5959fb6eb5f090b9406401beeec9903b7755e70eaea9240ab2c304c2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"60\",\"sale_id\":\"52\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (31, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"51\",\"date\":\"2022-01-16 12:27:51\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0051\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"48aa8b7e45e6565e99abb7ed9bf6b9cb960ff0c276928f40b7e1def842fe3970\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"59\",\"sale_id\":\"51\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (32, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"49\",\"date\":\"2022-01-16 12:15:47\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0049\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9ab58d0291dd64ffbb4f509c4d63dbcfdded2deb5a1cfb33036bdc037da59012\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"57\",\"sale_id\":\"49\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (33, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"47\",\"date\":\"2022-01-07 12:33:00\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0047\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0179812e4538ff4a1e70cdc03706c4a62c5d655f4ec927c616166622a8406d7f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"55\",\"sale_id\":\"47\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (34, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"45\",\"date\":\"2022-01-07 12:12:48\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0045\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2e103fa9033c6fb08db2c4ad377754e7a53b0ba3916ad52bdaf049f585ed95a3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"53\",\"sale_id\":\"45\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (35, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"44\",\"date\":\"2022-01-07 12:09:00\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0044\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9241961edb3621d89ba7bcbf8a663ad2225dfc9a4f77a2a98c40f6d1a38733e4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"52\",\"sale_id\":\"44\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (36, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"42\",\"date\":\"2022-01-07 12:05:43\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0042\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"6d9f5d6a77c9f2e9dbe04cfd776a79b4004c4706f2799e3d136b0436e86fdb6c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"50\",\"sale_id\":\"42\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (37, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"41\",\"date\":\"2022-01-07 12:04:50\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0041\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"656ce66d7e20f4fd846d9a330b591bd9ae251087f3e702445985d7533f4b4256\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"49\",\"sale_id\":\"41\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (38, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"40\",\"date\":\"2022-01-07 12:03:38\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0040\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"f3e2a81daba15f41f748e67fa702b355f79dc6768265b42a1f48f7a48a3dcd9f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"48\",\"sale_id\":\"40\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (39, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"39\",\"date\":\"2022-01-07 12:02:10\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0039\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2473d899f170a874c5da135aeeffb6973a7d4f5dadab871a757bdca9399cf923\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"47\",\"sale_id\":\"39\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (40, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"38\",\"date\":\"2022-01-07 11:59:20\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0038\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7465482858727b4c390bd99f56b61c8ca4780845580da3b10fba0d0f52534d60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"46\",\"sale_id\":\"38\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (41, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"37\",\"date\":\"2022-01-07 11:55:48\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0037\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"764757697466809225049b31f38735e27a1f9441ed4aa6f865cc9afd9b9820dd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"45\",\"sale_id\":\"37\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (42, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"36\",\"date\":\"2022-01-07 11:46:19\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0036\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c2ebce27918d2cac38745ca7dcd97530008ab02663e4f2c2839eceaa93ae3fb5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"44\",\"sale_id\":\"36\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (43, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"35\",\"date\":\"2022-01-06 02:32:18\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0035\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"350.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"caf63aacd93251244d3d7915307548424b1b84cf89adca2a2f1029f8c1cdc2d7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"43\",\"sale_id\":\"35\",\"product_id\":\"5\",\"product_code\":\"06\",\"product_name\":\"Zen Pot M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (44, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"34\",\"date\":\"2022-01-05 17:23:58\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0034\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a8f0c1d9960aab8294a793b2150e96e499c9cb72a0d37f7a08a3f65a4541163e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"42\",\"sale_id\":\"34\",\"product_id\":\"6\",\"product_code\":\"08\",\"product_name\":\"Zen Pot Tall M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (45, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"33\",\"date\":\"2022-01-05 15:55:53\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0033\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c895c8c488397f356821f9e86bfa417fcceab57afd2d7efe1abbbc37604fe43e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"41\",\"sale_id\":\"33\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (46, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"32\",\"date\":\"2022-01-05 14:47:12\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0032\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"1ebd0b160d368155109542a5aae74b367289d2574dc771e8477bf0765df42dd7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"40\",\"sale_id\":\"32\",\"product_id\":\"6\",\"product_code\":\"08\",\"product_name\":\"Zen Pot Tall M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (47, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"31\",\"date\":\"2022-01-05 13:48:53\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0031\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5117d78bac8ac6eab8172acb5f35fdcb46cfb15f98d798a83102179cf9a53ddc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"39\",\"sale_id\":\"31\",\"product_id\":\"6\",\"product_code\":\"08\",\"product_name\":\"Zen Pot Tall M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (48, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"30\",\"date\":\"2022-01-05 12:47:33\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0030\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"350.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"81320a16983a6a5c3de59c3ff6987d4df0eb83b0dd169bc2bd4b80c482e4b04f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"38\",\"sale_id\":\"30\",\"product_id\":\"5\",\"product_code\":\"06\",\"product_name\":\"Zen Pot M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (49, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"29\",\"date\":\"2022-01-05 10:08:21\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0029\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"3450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"e6f758f2863ea74fedd1d2ea38d75c57dbddadc9e09c094f5cb2c85154f145ad\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"34\",\"sale_id\":\"29\",\"product_id\":\"6\",\"product_code\":\"08\",\"product_name\":\"Zen Pot Tall M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"35\",\"sale_id\":\"29\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"36\",\"sale_id\":\"29\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"37\",\"sale_id\":\"29\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (50, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"28\",\"date\":\"2022-01-04 10:03:01\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0028\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"5000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"1bb043f26d88dfd0f59794cdc041d0301091864269e5942832702b2fe57e297c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"32\",\"sale_id\":\"28\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"33\",\"sale_id\":\"28\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (51, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"27\",\"date\":\"2022-01-04 08:46:07\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0027\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"f3cacf7a9d7615d692228f6fcf6d0a8336bf2fbc3609256a2be314bbd2339344\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"31\",\"sale_id\":\"27\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (52, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"26\",\"date\":\"2022-01-04 08:37:18\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0026\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d148c84320380f4c0bb56239e8ac5b7f9178aa0807b7bcb48bf427bb96c7f2f3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"30\",\"sale_id\":\"26\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (53, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"25\",\"date\":\"2022-01-04 08:26:49\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0025\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"f688f6b187ce6dab0dbe0be2fd7c43001420f77dac1ef602af04ded1e28bdfb5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"29\",\"sale_id\":\"25\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (54, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"24\",\"date\":\"2022-01-03 07:16:00\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0024\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d7ff99d28df02a256fc26e429ceb684c7ebe4676ac85a35bdd27451dd9f97b09\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"28\",\"sale_id\":\"24\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (55, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"23\",\"date\":\"2022-01-03 07:07:55\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0023\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"4ae3a26e0d73a19f38b5eea28194e3a42acc0d58f8855673bcb03b05d56a2b66\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"27\",\"sale_id\":\"23\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (56, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"22\",\"date\":\"2022-01-03 07:06:28\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0022\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"e2b01f2bdef255efef977d6d1afaee63b012d34af0ae03bec503fba23966a426\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"26\",\"sale_id\":\"22\",\"product_id\":\"6\",\"product_code\":\"08\",\"product_name\":\"Zen Pot Tall M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (57, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"21\",\"date\":\"2022-01-03 03:55:10\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0021\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"350.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8ffcb2705ae2edda2264db11d36ffe7c824a88a6a4659c02727e47e0ad590a65\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"25\",\"sale_id\":\"21\",\"product_id\":\"5\",\"product_code\":\"06\",\"product_name\":\"Zen Pot M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (58, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"20\",\"date\":\"2022-01-03 03:38:07\",\"reference_no\":\"SALE\\/POS2022\\/01\\/0020\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"350.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"192bbd66bc1f2642392ced1b63923efe37f6bfb076369fb8f2fa8a9ceef2b968\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"24\",\"sale_id\":\"20\",\"product_id\":\"5\",\"product_code\":\"06\",\"product_name\":\"Zen Pot M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (59, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"19\",\"date\":\"2021-12-31 10:40:32\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0019\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d48d271b8b488df1e9de81ef766235dbf16754ca1ee9e0a073a49a5b48217996\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"23\",\"sale_id\":\"19\",\"product_id\":\"2\",\"product_code\":\"12\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (60, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"18\",\"date\":\"2021-12-29 11:56:23\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0018\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d8f3449cd80eabafe67ffc5269204778f6c78b5c138a06b72f9a4e1275e10279\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"22\",\"sale_id\":\"18\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (61, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"17\",\"date\":\"2021-12-29 07:58:19\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0017\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"7500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"7500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"7500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"cd0d5eca74a22c4cf51098d7b1b2f133773163938ad527a916bc7b680648fa19\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"19\",\"sale_id\":\"17\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"20\",\"sale_id\":\"17\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"21\",\"sale_id\":\"17\",\"product_id\":\"7\",\"product_code\":\"11\",\"product_name\":\"Miracal Gro Osmocote 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (62, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"16\",\"date\":\"2021-12-28 15:51:43\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0016\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"450.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"450.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"450.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5c918637e8f1acbe2ca7e1d34ae79131fae7fc47f0b67e1c82809c9569f4d904\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"18\",\"sale_id\":\"16\",\"product_id\":\"6\",\"product_code\":\"08\",\"product_name\":\"Zen Pot Tall M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"450.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (63, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"15\",\"date\":\"2021-12-28 15:38:28\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0015\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0ce01a13df4d0357f6110986ab307f9d2ae528521671e86045f013fc158947bf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"17\",\"sale_id\":\"15\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (64, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"14\",\"date\":\"2021-12-28 15:30:39\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0014\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0b846a3716d5939dad1e0ac0527a1fdd8f7986a29d2b2ca72961ccadbae55d9c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"16\",\"sale_id\":\"14\",\"product_id\":\"4\",\"product_code\":\"05\",\"product_name\":\"Dracena (Potted)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (65, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"13\",\"date\":\"2021-12-28 15:24:08\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0013\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"800.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"800.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3f2d23dc4e8ecdceb61d315a58ab51f99da1788e548b6b4f1b5ff1d62083b11a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"14\",\"sale_id\":\"13\",\"product_id\":\"4\",\"product_code\":\"05\",\"product_name\":\"Dracena (Potted)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"15\",\"sale_id\":\"13\",\"product_id\":\"4\",\"product_code\":\"05\",\"product_name\":\"Dracena (Potted)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (66, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"12\",\"date\":\"2021-12-28 15:20:37\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0012\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"6edd37054e3e50d3e05063f3accc3f9c18e369ba769a400361e86bde5812c900\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"13\",\"sale_id\":\"12\",\"product_id\":\"4\",\"product_code\":\"05\",\"product_name\":\"Dracena (Potted)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:47');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (67, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"11\",\"date\":\"2021-12-20 08:47:31\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0011\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3481ea585c573bf7e029e517fa6d056bb8431ba8a22ba52c40283643b87d9663\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"12\",\"sale_id\":\"11\",\"product_id\":\"2\",\"product_code\":\"12\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (68, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"10\",\"date\":\"2021-12-19 00:21:10\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0010\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2e1bec297f602b5a63dc12c7626f1dc2bfceb2c703bde8968e0302a6dcd8d9d8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"11\",\"sale_id\":\"10\",\"product_id\":\"4\",\"product_code\":\"05\",\"product_name\":\"Dracena (Potted)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (69, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"9\",\"date\":\"2021-12-17 12:43:01\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0009\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"5%\",\"total_discount\":\"125.0000\",\"order_discount\":\"125.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2375.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2375.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"aa95d9712d8cf51f5a5d566fd627c45693782d2f3aac153ca07ed23ecb62ddf8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"10\",\"sale_id\":\"9\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (70, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"8\",\"date\":\"2021-12-17 12:34:29\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0008\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"5\",\"biller\":\"RecallGreen\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"10.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"10.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"10.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3b4cf4001ecda959fbf1029042913720d14348ebb28bde1d03fd6d48919172d9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"9\",\"sale_id\":\"8\",\"product_id\":\"1\",\"product_code\":\"01\",\"product_name\":\"Hi\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"10.0000\",\"unit_price\":\"10.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"10.0000\",\"serial_no\":\"\",\"real_unit_price\":\"10.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (71, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"7\",\"date\":\"2021-12-17 12:32:37\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0007\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"6bf0e29cc9e1ef93a8da3549975fc62e2e876b09c1bf7b62e725da2fadb6de93\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"8\",\"sale_id\":\"7\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (72, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"6\",\"date\":\"2021-12-17 12:11:53\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0006\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"na\",\"staff_note\":\"na\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"0\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"cacbce3ca13cf4c5d5cbfb9f25f08dc60ae14d75a2d0ed7c330f6d9688113337\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7\",\"sale_id\":\"6\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (73, 'Sale is being deleted by owner (User Id: 1)', '{\"model\":{\"id\":\"5\",\"date\":\"2021-12-17 10:16:13\",\"reference_no\":\"SALE\\/POS2021\\/12\\/0005\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"1\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c06daa157f6a3c3885b2bf609679a0640dce9db5ce980373209fec830cfb2d60\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6\",\"sale_id\":\"5\",\"product_id\":\"2\",\"product_code\":\"99324\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":null,\"product_unit_code\":null,\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-02-20 13:42:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (74, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"197\",\"code\":\"89243050\",\"name\":\"Lipistic\",\"unit\":\"2\",\"cost\":\"400.0000\",\"price\":\"600.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"89243050\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-11 13:57:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (75, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"26\",\"code\":\"55132343\",\"name\":\"HUPERGIA  FERN\",\"unit\":\"2\",\"cost\":\"1000.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"19.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"hupergia-fern\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-14 19:48:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (76, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"155\",\"code\":\"84760571\",\"name\":\"TRANSPARENT MESH POT\",\"unit\":\"2\",\"cost\":\"75.0000\",\"price\":\"140.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"106.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"84760571\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-16 17:01:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (77, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"201\",\"code\":\"40721399\",\"name\":\"Glass Tube Stand 1\",\"unit\":\"2\",\"cost\":\"500.0000\",\"price\":\"750.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"40721399\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-16 17:33:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (78, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"138\",\"code\":\"90165737\",\"name\":\"AIRPLANT MYST\",\"unit\":\"2\",\"cost\":\"1300.0000\",\"price\":\"1750.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"90165737\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-16 18:35:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (79, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"56\",\"code\":\"88151548\",\"name\":\"FERN\",\"unit\":\"2\",\"cost\":\"200.0000\",\"price\":\"300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"17.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"88151548\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-16 19:21:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (80, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"79\",\"code\":\"55989958\",\"name\":\"WHITE PRINTED TOB\",\"unit\":\"2\",\"cost\":\"70.0000\",\"price\":\"120.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"55989958\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-17 12:41:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (81, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"10\",\"code\":\"66310160\",\"name\":\"Lucky Bamboo 2 Step\",\"unit\":\"2\",\"cost\":\"300.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"43.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"66310160\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-17 13:10:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (82, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"202\",\"code\":\"20896390\",\"name\":\"Glass Tube set 2\",\"unit\":\"2\",\"cost\":\"900.0000\",\"price\":\"1200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"20896390\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-17 14:09:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (83, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"107\",\"date\":\"2022-03-17 15:49:01\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0107\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"52ae9d92efeee8c082769679dfc17bf0bdcee70e6880fe0a4596b64e3fa57e91\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"132\",\"sale_id\":\"107\",\"product_id\":\"203\",\"product_code\":\"23973222\",\"product_name\":\"Test 01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-18 13:51:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (84, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"113\",\"date\":\"2022-03-17 16:28:04\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0113\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2443b3f19ab969beff95d5a8abd093cf88a813a2c171fcaa4791daeac4816299\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"139\",\"sale_id\":\"113\",\"product_id\":\"203\",\"product_code\":\"23973222\",\"product_name\":\"Test 01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-18 13:53:42');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (85, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"104\",\"date\":\"2022-03-17 15:41:37\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0104\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"4bf65f99002d9d38f0b5b9e0d5f654bfcc0f206b337ae0bef7bc13e2e22918ac\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"129\",\"sale_id\":\"104\",\"product_id\":\"203\",\"product_code\":\"23973222\",\"product_name\":\"Test 01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-18 13:56:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (86, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"169\",\"code\":\"49129146\",\"name\":\"Tertraspharma\",\"unit\":\"2\",\"cost\":\"800.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"49129146\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-18 14:02:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (87, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"178\",\"code\":\"56414436\",\"name\":\"Cattelya\",\"unit\":\"2\",\"cost\":\"1000.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"56414436\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-18 14:05:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (88, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"95\",\"date\":\"2022-03-10 21:04:25\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0095\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"861580037870604627b2357741b124d093cdc3a5de30dbf3b9d031d1727e4809\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"115\",\"sale_id\":\"95\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:02:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (89, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"91\",\"date\":\"2022-02-24 01:16:49\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0091\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"2db628f09614d1f6620f199c336615e9e80452131909ae6fb5cce00125b9d3f1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"111\",\"sale_id\":\"91\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:03:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (90, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"90\",\"date\":\"2022-02-24 01:07:36\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0090\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a5038cf31d319bc56ac8e5921e9818b334ba7cf92fd5651a3782fea2f6bdc506\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"110\",\"sale_id\":\"90\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:03:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (91, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"89\",\"date\":\"2022-02-24 01:00:36\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0089\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"52785870945bdc4618efe0837b1d847b9e9256fc67c0006f1c8665c5264d02c5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"109\",\"sale_id\":\"89\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:04:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (92, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"84\",\"date\":\"2022-02-23 21:40:18\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0084\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ad1e83b88d4ed914f293286c112340b9f1a4a8d78ae9a51783eb15aa1ed453e6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"104\",\"sale_id\":\"84\",\"product_id\":\"2\",\"product_code\":\"12\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-03-19 12:05:41');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (93, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"80\",\"date\":\"2022-02-22 23:42:31\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0080\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"db54f3968a4f5f3b2584af1098965b91e58387dca86e8e8d30aeba782e6304c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"100\",\"sale_id\":\"80\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:05:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (94, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"88\",\"date\":\"2022-02-24 00:52:03\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0088\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5a8bf585b4f21c5fd01fd1595d49d8501252d0587e15a2d8ec468fb7e4b97c66\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"108\",\"sale_id\":\"88\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:06:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (95, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"87\",\"date\":\"2022-02-24 00:47:21\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0087\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"be37e52f51fb41aeb8d6e9ced914108f9f9207922ae4a57421dffaed2a84ae21\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"107\",\"sale_id\":\"87\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:06:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (96, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"86\",\"date\":\"2022-02-24 00:41:37\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0086\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"68fc6fefab1487d90ee3af1822da6aecbfa1aa3bdd810fd79101eb41f0cb8398\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"106\",\"sale_id\":\"86\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:06:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (97, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"85\",\"date\":\"2022-02-23 23:04:54\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0085\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9ebbc30dc75d899e240968df382f768452b26c4fa83cbdbe65be4566f58b9f98\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"105\",\"sale_id\":\"85\",\"product_id\":\"2\",\"product_code\":\"12\",\"product_name\":\"Miracal Gro NPK 1KG\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2500.0000\",\"unit_price\":\"2500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-03-19 12:06:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (98, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"83\",\"date\":\"2022-02-23 05:13:11\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0083\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"96040f536ea67d6e608a9c5704cf92eec36e751d3ff6f19012911d59e1d0ffcf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"103\",\"sale_id\":\"83\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:06:55');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (99, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"82\",\"date\":\"2022-02-23 04:06:52\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0082\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"46acf1f06d9d6d903b5e22249a1c635018df96665c07f03d15c8ec0d3b5b1460\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"102\",\"sale_id\":\"82\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:07:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (100, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"81\",\"date\":\"2022-02-23 02:36:36\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0081\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0cc023f5d7ef8e9a12abf9838e187261bec6dcd0a60cf71deb139de4559585bd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"101\",\"sale_id\":\"81\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:07:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (101, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"79\",\"date\":\"2022-02-22 23:34:18\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0079\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"21a8e7bbbfa1ae306516a3987abfdbba024bf0b5ac909ddf2827ad25d45d684e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"98\",\"sale_id\":\"79\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"99\",\"sale_id\":\"79\",\"product_id\":\"14\",\"product_code\":\"27506698\",\"product_name\":\"DICHIDIA MELON\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:07:22');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (102, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"78\",\"date\":\"2022-02-22 23:03:53\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0078\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"bf5632ac036c657c881e7331112f4477afb0c35d5996316290ca87a7df35e55a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"97\",\"sale_id\":\"78\",\"product_id\":\"45\",\"product_code\":\"47418622\",\"product_name\":\"CRYPTHENTHUS\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:07:29');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (103, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"77\",\"date\":\"2022-02-22 23:03:11\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0077\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"3000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"faae51cdb38591d61fd43af29ddbfb50f61766b0e33a99078fba81716e0a3db5\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"95\",\"sale_id\":\"77\",\"product_id\":\"55\",\"product_code\":\"00297348\",\"product_name\":\"BIG PHILODENDRON\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"96\",\"sale_id\":\"77\",\"product_id\":\"64\",\"product_code\":\"51770830\",\"product_name\":\"BULBOSA ORCHIOD\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:07:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (104, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"76\",\"date\":\"2022-02-22 22:47:25\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0076\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"c0358e3603c433e22bece8d10cdef6c003ba53914320add6515e2ae8590482f7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"94\",\"sale_id\":\"76\",\"product_id\":\"57\",\"product_code\":\"32032116\",\"product_name\":\"AIR PLANT FLEXOUSA \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:07:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (105, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"75\",\"date\":\"2022-02-22 22:44:46\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0075\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"213cf32b9a483de34801084019d5735602021f2ddd5bc28eecb8188f3325a699\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"93\",\"sale_id\":\"75\",\"product_id\":\"57\",\"product_code\":\"32032116\",\"product_name\":\"AIR PLANT FLEXOUSA \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:05');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (106, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"74\",\"date\":\"2022-02-22 22:39:21\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0074\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"1f9a4ca5f012f16bc16bf2a04ea7b44f81cb6024695a9b2fa3555216f87eb493\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"92\",\"sale_id\":\"74\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (107, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"73\",\"date\":\"2022-02-22 22:36:14\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0073\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"91b2184939a04293a0069ca6b97bf6e10cdec0520708255e5e844cafaca841bc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"91\",\"sale_id\":\"73\",\"product_id\":\"57\",\"product_code\":\"32032116\",\"product_name\":\"AIR PLANT FLEXOUSA \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:23');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (108, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"72\",\"date\":\"2022-02-22 22:28:17\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0072\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ce9b955a45298e537b833ece291fd3d437e12bc7699e161dc200fc26da2830f8\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"90\",\"sale_id\":\"72\",\"product_id\":\"65\",\"product_code\":\"95393801\",\"product_name\":\"DICHIDIA NECKLESS VERIGETTED\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:31');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (109, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"71\",\"date\":\"2022-02-22 22:21:59\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0071\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"4500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"e5a384927b9259a5b795544ce1241c332d4a903ca9bc6c690a53dce8d2695843\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"88\",\"sale_id\":\"71\",\"product_id\":\"26\",\"product_code\":\"55132343\",\"product_name\":\"HUPERGIA  FERN\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":null,\"details\":null,\"variant\":null,\"hsn_code\":null,\"second_name\":null,\"base_unit_id\":null,\"base_unit_code\":null},{\"id\":\"89\",\"sale_id\":\"71\",\"product_id\":\"48\",\"product_code\":\"57487006\",\"product_name\":\"FICUS GRAFTED BONSAI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (110, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"70\",\"date\":\"2022-02-22 22:19:48\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0070\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"4500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"34d5a295075c4a82f3d4f6ea8e94f437669ea2e12b703c1b6949993926d38bcd\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"85\",\"sale_id\":\"70\",\"product_id\":\"57\",\"product_code\":\"32032116\",\"product_name\":\"AIR PLANT FLEXOUSA \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"86\",\"sale_id\":\"70\",\"product_id\":\"22\",\"product_code\":\"01402428\",\"product_name\":\"BROMELIAD THAI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"87\",\"sale_id\":\"70\",\"product_id\":\"34\",\"product_code\":\"94599052\",\"product_name\":\"CEBU BLUE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (111, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"69\",\"date\":\"2022-02-22 22:11:31\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0069\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"2500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"fa1bf825cf6e7e0e7b1817fda90aeb6b058eb61ccb429b21cb89f62ad7061726\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"83\",\"sale_id\":\"69\",\"product_id\":\"57\",\"product_code\":\"32032116\",\"product_name\":\"AIR PLANT FLEXOUSA \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"84\",\"sale_id\":\"69\",\"product_id\":\"22\",\"product_code\":\"01402428\",\"product_name\":\"BROMELIAD THAI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (112, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"68\",\"date\":\"2022-02-22 22:10:15\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0068\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"3500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ab0edfff4aa059cc8f793c05681f1fc89266582d6c4af47bf7e29f20490b4457\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"81\",\"sale_id\":\"68\",\"product_id\":\"55\",\"product_code\":\"00297348\",\"product_name\":\"BIG PHILODENDRON\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"82\",\"sale_id\":\"68\",\"product_id\":\"34\",\"product_code\":\"94599052\",\"product_name\":\"CEBU BLUE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:08:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (113, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"67\",\"date\":\"2022-02-22 22:05:54\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0067\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"31f13430f109ffefa454c00c9939fe29f44c6344ce025eb215bd5d77cf9fee0f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"80\",\"sale_id\":\"67\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:09:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (114, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"66\",\"date\":\"2022-02-22 22:01:24\",\"reference_no\":\"SALE\\/POS2022\\/02\\/0066\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2900.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"2900.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9811e327ef45be23ee6df6812b47f838b6bbb3f87519c8717ed127bf8f44888d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"76\",\"sale_id\":\"66\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"77\",\"sale_id\":\"66\",\"product_id\":\"65\",\"product_code\":\"95393801\",\"product_name\":\"DICHIDIA NECKLESS VERIGETTED\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"78\",\"sale_id\":\"66\",\"product_id\":\"45\",\"product_code\":\"47418622\",\"product_name\":\"CRYPTHENTHUS\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"79\",\"sale_id\":\"66\",\"product_id\":\"58\",\"product_code\":\"02921723\",\"product_name\":\"FUNKIANA ON WOOD\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1200.0000\",\"unit_price\":\"1200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:09:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (115, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"92\",\"date\":\"2022-03-06 01:37:11\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0092\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"4\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5faaa6bda2c577bc5d13095491eaf602c6ba037197b011fd5bd30a37396a8659\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"112\",\"sale_id\":\"92\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1.0000\",\"unit_price\":\"1.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:09:27');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (116, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"93\",\"date\":\"2022-03-06 11:21:23\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0093\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"750.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"50eb60ad7559fcd4162279e2682b342ec85ea9c2cd9777beb845624acc27d416\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"113\",\"sale_id\":\"93\",\"product_id\":\"14\",\"product_code\":\"27506698\",\"product_name\":\"DICHIDIA MELON\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:09:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (117, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"94\",\"date\":\"2022-03-06 11:22:20\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0094\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"71aedb601b432c1846fcc31d32be7b3ff0fe89768c51633aef2b333378cffbfe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"114\",\"sale_id\":\"94\",\"product_id\":\"69\",\"product_code\":\"56957008\",\"product_name\":\"CATACITUM ORCHID\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:09:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (118, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"96\",\"date\":\"2022-03-14 20:03:27\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0096\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"300\",\"total_discount\":\"300.0000\",\"order_discount\":\"300.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1800.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"1800.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"48798d5edb397b0c65491797b9c515731f52e1e24159ac06023bc8fc8c149c56\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"116\",\"sale_id\":\"96\",\"product_id\":\"9\",\"product_code\":\"33282664\",\"product_name\":\"Moon Cactus \",\"product_type\":\"standard\",\"option_id\":\"0\",\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"\",\"item_discount\":\"0.0000\",\"subtotal\":\"1600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"117\",\"sale_id\":\"96\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:10:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (119, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"97\",\"date\":\"2022-03-14 20:05:47\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0097\",\"customer_id\":\"7\",\"customer\":\"Rg\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"2750.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"52f597308e8b015f680f3442bc92f0a55aec5b41f79511a7e4009936d65ee760\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"118\",\"sale_id\":\"97\",\"product_id\":\"63\",\"product_code\":\"43775956\",\"product_name\":\"DICHIDIA VERIGATED \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"119\",\"sale_id\":\"97\",\"product_id\":\"165\",\"product_code\":\"48621422\",\"product_name\":\"Anthurium\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:10:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (120, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"98\",\"date\":\"2022-03-14 20:06:20\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0098\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"dbc9b5ba303a41bf896bbd8866323215a2dc8c09ed4ef3ee1a6cf3fcddd8646a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"120\",\"sale_id\":\"98\",\"product_id\":\"65\",\"product_code\":\"95393801\",\"product_name\":\"DICHIDIA NECKLESS VERIGETTED\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:11:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (121, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"99\",\"date\":\"2022-03-14 20:07:42\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0099\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"64318126102d5656278db7a7245b65b23324a3249cb6cf00176c8aeff1ad74f9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"121\",\"sale_id\":\"99\",\"product_id\":\"4\",\"product_code\":\"05\",\"product_name\":\"Dracena (Potted)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:11:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (122, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"103\",\"date\":\"2022-03-16 15:16:37\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0103\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5a2d1d252e4bd870030a96a5c57c65a1b108f89c03e1eeac479647d7f6b1fdcf\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"128\",\"sale_id\":\"103\",\"product_id\":\"203\",\"product_code\":\"23973222\",\"product_name\":\"Test 01\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:13:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (123, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"106\",\"date\":\"2022-03-17 15:45:32\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0106\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"2000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"320cf50c6344aaf5e47554eac54dcbbeb3189e4e6cc7f7c9b0ef6e26aa45ce38\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"131\",\"sale_id\":\"106\",\"product_id\":\"205\",\"product_code\":\"11912321\",\"product_name\":\"Test 03\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-19 12:14:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (124, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"205\",\"code\":\"11912321\",\"name\":\"Test 03\",\"unit\":\"2\",\"cost\":\"1500.0000\",\"price\":\"2000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"19.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"11912321\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 12:58:48');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (125, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"203\",\"code\":\"23973222\",\"name\":\"Test 01\",\"unit\":\"2\",\"cost\":\"500.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"18.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"23973222\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 12:58:54');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (126, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"204\",\"code\":\"56832000\",\"name\":\"Test 02\",\"unit\":\"2\",\"cost\":\"1000.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"18.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"56832000\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 12:58:59');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (127, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"150\",\"code\":\"37726549\",\"name\":\"AIR PLANT STAND DYMOND S\",\"unit\":\"2\",\"cost\":\"200.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"10.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"37726549\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 17:33:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (128, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"151\",\"code\":\"59630646\",\"name\":\"AIR PLANT STAND DYMOND B\",\"unit\":\"2\",\"cost\":\"250.0000\",\"price\":\"450.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"10.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"59630646\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 17:33:19');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (129, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"101\",\"code\":\"51039717\",\"name\":\"TOOLS SET 3 PCS M\",\"unit\":\"2\",\"cost\":\"150.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"4.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"tools-set-3-pcs-m\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 17:47:15');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (130, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"24\",\"code\":\"46674887\",\"name\":\"PHALAENOPSIS ORCHID\",\"unit\":\"2\",\"cost\":\"1000.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"14.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"46674887\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-03-21 19:05:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (131, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"227\",\"date\":\"2022-03-26 17:59:12\",\"reference_no\":\"SALE\\/POS2022\\/03\\/0227\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"600.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8f85fb4e94cfdee1474ab84f51d4071aaf692a1a07eea43f1c096660a029197b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"332\",\"sale_id\":\"227\",\"product_id\":\"261\",\"product_code\":\"92200878\",\"product_name\":\"Fern S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-03-26 18:50:40');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (132, 'Sale is being deleted by rashed (User Id: 6)', '{\"model\":{\"id\":\"288\",\"date\":\"2022-04-01 12:19:15\",\"reference_no\":\"SALE\\/POS2022\\/04\\/0288\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"50.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"50.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"50.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0650c107cec3a25c6b0ac1761c9f0cdfec5b6cad2f976e83c17493f585fbd7ce\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"469\",\"sale_id\":\"288\",\"product_id\":\"126\",\"product_code\":\"50528427\",\"product_name\":\"LAZZY NOZZEL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-04-01 21:43:28');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (133, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"37\",\"code\":\"69273220\",\"name\":\"RUBBER PLANT \",\"unit\":\"2\",\"cost\":\"350.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"69273220\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-04-16 11:46:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (134, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"844\",\"date\":\"2022-05-02 22:23:57\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0844\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0b31a4d53f1b27a2a5eb52b4db424ac1d2eb18bfa90d3966c98962bf1a346fbc\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1651\",\"sale_id\":\"844\",\"product_id\":\"230\",\"product_code\":\"20161787\",\"product_name\":\"Cpatain Fungicide \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-05-07 11:41:33');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (135, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"966\",\"date\":\"2022-05-15 14:49:11\",\"reference_no\":\"SALE\\/POS2022\\/05\\/0966\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"480.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"480.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"480.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8f134e94f84094ffb206c689e78d692292b6df2a67ddfcfb1f5aa3798d47f3b6\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"1889\",\"sale_id\":\"966\",\"product_id\":\"284\",\"product_code\":\"33347731\",\"product_name\":\"Flora 50ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"80.0000\",\"unit_price\":\"80.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"80.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"1890\",\"sale_id\":\"966\",\"product_id\":\"351\",\"product_code\":\"57860529\",\"product_name\":\"2 Litter Sprayer with Vulb\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-05-15 17:06:02');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (136, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1037\",\"date\":\"2022-05-21 17:49:08\",\"reference_no\":\"SALE\\/POS2022\\/05\\/1037\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"270.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"270.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"270.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5e2ef2217e50f9e89b7f2b56cdb4098e6e0d55affcde57390a967cd950188090\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2058\",\"sale_id\":\"1037\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"2059\",\"sale_id\":\"1037\",\"product_id\":\"284\",\"product_code\":\"33347731\",\"product_name\":\"Flora 50ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"80.0000\",\"unit_price\":\"80.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"80.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2060\",\"sale_id\":\"1037\",\"product_id\":\"286\",\"product_code\":\"26365495\",\"product_name\":\"DPGR\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"90.0000\",\"unit_price\":\"90.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"90.0000\",\"serial_no\":\"\",\"real_unit_price\":\"90.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-05-21 21:39:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (137, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1080\",\"date\":\"2022-05-26 12:11:56\",\"reference_no\":\"SALE\\/POS2022\\/05\\/1080\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"6100.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"100\",\"total_discount\":\"100.0000\",\"order_discount\":\"100.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"6000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"1\",\"paid\":\"6000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7052793d1430fb2337d37ebd6db67e23de75bdfe413329f66fcfd768a4c9d977\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2145\",\"sale_id\":\"1080\",\"product_id\":\"54\",\"product_code\":\"14605298\",\"product_name\":\"PHILODENDRON S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2146\",\"sale_id\":\"1080\",\"product_id\":\"93\",\"product_code\":\"18394554\",\"product_name\":\"THAI JHURI\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2147\",\"sale_id\":\"1080\",\"product_id\":\"164\",\"product_code\":\"79323775\",\"product_name\":\"Hupergia \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2148\",\"sale_id\":\"1080\",\"product_id\":\"313\",\"product_code\":\"22361323\",\"product_name\":\"Aglonema 2\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2149\",\"sale_id\":\"1080\",\"product_id\":\"314\",\"product_code\":\"85167717\",\"product_name\":\"Aglonema 3\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2150\",\"sale_id\":\"1080\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2151\",\"sale_id\":\"1080\",\"product_id\":\"35\",\"product_code\":\"81983767\",\"product_name\":\"MONOSTERA PERU\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-05-26 12:51:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (138, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1172\",\"date\":\"2022-06-03 11:38:32\",\"reference_no\":\"SALE\\/POS2022\\/06\\/1172\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"02fb0e7d0fa1bf926694e86e8ddcd171873a1d166d936ed56dfb848e1ede5eb0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2340\",\"sale_id\":\"1172\",\"product_id\":\"20\",\"product_code\":\"16748388\",\"product_name\":\"SENSEVERIA FRANCISII\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2341\",\"sale_id\":\"1172\",\"product_id\":\"95\",\"product_code\":\"91943746\",\"product_name\":\"GROOT \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"650.0000\",\"unit_price\":\"650.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"650.0000\",\"serial_no\":\"\",\"real_unit_price\":\"650.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-06-03 20:10:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (139, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1173\",\"date\":\"2022-06-03 14:06:57\",\"reference_no\":\"SALE\\/POS2022\\/06\\/1173\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"600.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7af41c194e1767aa31f7913a4cd85c8cc5fa58e33cd3771dede20b0172827f07\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2342\",\"sale_id\":\"1173\",\"product_id\":\"193\",\"product_code\":\"17426260\",\"product_name\":\"Luck Bambo Spiral Stick\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2343\",\"sale_id\":\"1173\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-06-03 20:10:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (140, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1174\",\"date\":\"2022-06-03 14:41:02\",\"reference_no\":\"SALE\\/POS2022\\/06\\/1174\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"280.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"280.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"280.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"0b387d1a88371fc8d1e65a99d48504becc0af817a2862299ec5c561e2defcdf0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2344\",\"sale_id\":\"1174\",\"product_id\":\"268\",\"product_code\":\"83437543\",\"product_name\":\"SEED (200)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2345\",\"sale_id\":\"1174\",\"product_id\":\"271\",\"product_code\":\"47649014\",\"product_name\":\"SEED (40)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"40.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-06-03 20:11:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (141, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1175\",\"date\":\"2022-06-03 14:48:13\",\"reference_no\":\"SALE\\/POS2022\\/06\\/1175\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"200.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"200.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"200.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"33f6d0475708fae79cbbcf3e5994ddf4c62b0d480acc328a117eda918b85e3fe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2346\",\"sale_id\":\"1175\",\"product_id\":\"268\",\"product_code\":\"83437543\",\"product_name\":\"SEED (200)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-06-03 20:11:09');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (142, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1176\",\"date\":\"2022-06-03 15:10:04\",\"reference_no\":\"SALE\\/POS2022\\/06\\/1176\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"350.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"350.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"350.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ef7fd5c04e3c613cfe83640d46c847d8f999a0dbd8b001db8eb14b9140369a56\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2347\",\"sale_id\":\"1176\",\"product_id\":\"212\",\"product_code\":\"20024744\",\"product_name\":\"Ceramic Bowl Small\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2348\",\"sale_id\":\"1176\",\"product_id\":\"287\",\"product_code\":\"05315444\",\"product_name\":\"Artistic long Planter s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"100.0000\",\"unit_price\":\"100.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"100.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"cdc4c83bd125646e13c6bd825a4e392f.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-06-03 20:11:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (143, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1223\",\"date\":\"2022-06-06 12:44:26\",\"reference_no\":\"SALE\\/POS2022\\/06\\/1223\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3750.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3750.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"11\",\"pos\":\"1\",\"paid\":\"3750.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"56166e77399576f05889d2830ab76c2953d130d56a0347b695072579d7c142b4\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"2434\",\"sale_id\":\"1223\",\"product_id\":\"292\",\"product_code\":\"19851098\",\"product_name\":\"Stylish Stripe Planter b\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2435\",\"sale_id\":\"1223\",\"product_id\":\"289\",\"product_code\":\"30018566\",\"product_name\":\"Electroplated Round Planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2436\",\"sale_id\":\"1223\",\"product_id\":\"290\",\"product_code\":\"12624647\",\"product_name\":\"Artistic Round planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2437\",\"sale_id\":\"1223\",\"product_id\":\"276\",\"product_code\":\"04135216\",\"product_name\":\"Ceramic Color Bowl L \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"2438\",\"sale_id\":\"1223\",\"product_id\":\"376\",\"product_code\":\"44852135\",\"product_name\":\"Color stone 1kg\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-06-06 13:01:57');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (144, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1608\",\"date\":\"2022-07-17 16:51:29\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1608\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"810.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"810.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"1\",\"paid\":\"810.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3157a7d54e8aeccfaadce35ccba40b4e5665d9eccb69f4c16c25dccd6e74e21c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3251\",\"sale_id\":\"1608\",\"product_id\":\"268\",\"product_code\":\"83437543\",\"product_name\":\"SEED (200)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3252\",\"sale_id\":\"1608\",\"product_id\":\"271\",\"product_code\":\"47649014\",\"product_name\":\"SEED (40)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"40.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3253\",\"sale_id\":\"1608\",\"product_id\":\"271\",\"product_code\":\"47649014\",\"product_name\":\"SEED (40)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"40.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3254\",\"sale_id\":\"1608\",\"product_id\":\"383\",\"product_code\":\"40896840\",\"product_name\":\"Green Tonic PGR\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"130.0000\",\"unit_price\":\"130.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"130.0000\",\"serial_no\":\"\",\"real_unit_price\":\"130.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3255\",\"sale_id\":\"1608\",\"product_id\":\"8\",\"product_code\":\"14\",\"product_name\":\"3pcs Garden Tools Set M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3256\",\"sale_id\":\"1608\",\"product_id\":\"126\",\"product_code\":\"50528427\",\"product_name\":\"LAZZY NOZZEL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-18 12:07:12');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (145, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1606\",\"date\":\"2022-07-17 16:51:29\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1606\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"810.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"810.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"1\",\"paid\":\"810.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"4d4c8391b9dd00ce549ce45332026f4ab2002999cd4c5a1a7f8635987c4ffad2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3239\",\"sale_id\":\"1606\",\"product_id\":\"268\",\"product_code\":\"83437543\",\"product_name\":\"SEED (200)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3240\",\"sale_id\":\"1606\",\"product_id\":\"271\",\"product_code\":\"47649014\",\"product_name\":\"SEED (40)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"40.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3241\",\"sale_id\":\"1606\",\"product_id\":\"271\",\"product_code\":\"47649014\",\"product_name\":\"SEED (40)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"40.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3242\",\"sale_id\":\"1606\",\"product_id\":\"383\",\"product_code\":\"40896840\",\"product_name\":\"Green Tonic PGR\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"130.0000\",\"unit_price\":\"130.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"130.0000\",\"serial_no\":\"\",\"real_unit_price\":\"130.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3243\",\"sale_id\":\"1606\",\"product_id\":\"8\",\"product_code\":\"14\",\"product_name\":\"3pcs Garden Tools Set M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3244\",\"sale_id\":\"1606\",\"product_id\":\"126\",\"product_code\":\"50528427\",\"product_name\":\"LAZZY NOZZEL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"100.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-18 12:07:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (146, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1600\",\"date\":\"2022-07-16 19:36:53\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1600\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"1700.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d89d6dc503efa06cfdffe1bc862d891987dfe199abd74cb321a36687c439e7b9\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3227\",\"sale_id\":\"1600\",\"product_id\":\"290\",\"product_code\":\"12624647\",\"product_name\":\"Artistic Round planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3228\",\"sale_id\":\"1600\",\"product_id\":\"288\",\"product_code\":\"22783870\",\"product_name\":\"Artistic long Planter B\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"698d301aa12757b1defaf6200876a331.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3229\",\"sale_id\":\"1600\",\"product_id\":\"385\",\"product_code\":\"49994111\",\"product_name\":\"Stylish Stripe Planter color s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3230\",\"sale_id\":\"1600\",\"product_id\":\"293\",\"product_code\":\"99356481\",\"product_name\":\"Marbel planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3231\",\"sale_id\":\"1600\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-18 12:09:13');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (147, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1599\",\"date\":\"2022-07-16 19:36:53\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1598\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"8\",\"pos\":\"1\",\"paid\":\"1700.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"fd6182a1658b313c32f84b720d6af8ab253f531987ee9daab7fe41005b29a04a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3222\",\"sale_id\":\"1599\",\"product_id\":\"290\",\"product_code\":\"12624647\",\"product_name\":\"Artistic Round planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3223\",\"sale_id\":\"1599\",\"product_id\":\"288\",\"product_code\":\"22783870\",\"product_name\":\"Artistic long Planter B\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"698d301aa12757b1defaf6200876a331.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3224\",\"sale_id\":\"1599\",\"product_id\":\"385\",\"product_code\":\"49994111\",\"product_name\":\"Stylish Stripe Planter color s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3225\",\"sale_id\":\"1599\",\"product_id\":\"293\",\"product_code\":\"99356481\",\"product_name\":\"Marbel planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"200.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3226\",\"sale_id\":\"1599\",\"product_id\":\"3\",\"product_code\":\"02\",\"product_name\":\"Zen Pot Wide S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-18 12:09:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (148, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1620\",\"date\":\"2022-07-18 19:58:22\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1620\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"dd0b8f429a58bdd420ad508befdef41563238e3f3963d8164d94d94f187575c7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3278\",\"sale_id\":\"1620\",\"product_id\":\"195\",\"product_code\":\"72984009\",\"product_name\":\"Lucky Bamboo Small\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-18 20:08:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (149, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1619\",\"date\":\"2022-07-18 19:58:22\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1619\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"fc595d256eef8c8342bcaa8ff99f72b2a1da26c516d4b54003f312417ab95233\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3277\",\"sale_id\":\"1619\",\"product_id\":\"195\",\"product_code\":\"72984009\",\"product_name\":\"Lucky Bamboo Small\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-18 20:08:10');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (150, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1624\",\"date\":\"2022-07-19 16:36:58\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1623\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3920.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3920.0000\",\"sale_status\":\"completed\",\"payment_status\":\"due\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"9\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"b08fe400b1f1fd2aed8bc570f2c9d4208f1eb480303b4e6852af2b7ccff16a52\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3287\",\"sale_id\":\"1624\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"120.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"3290\",\"sale_id\":\"1624\",\"product_id\":\"160\",\"product_code\":\"10237543\",\"product_name\":\"B-1 ROOT GROWER\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3291\",\"sale_id\":\"1624\",\"product_id\":\"232\",\"product_code\":\"15417255\",\"product_name\":\"Fungicide 50gm\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3292\",\"sale_id\":\"1624\",\"product_id\":\"147\",\"product_code\":\"34275643\",\"product_name\":\"GLASS WITH CERAMIC DOLL \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1050.0000\",\"unit_price\":\"1050.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1050.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1050.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3293\",\"sale_id\":\"1624\",\"product_id\":\"317\",\"product_code\":\"49073858\",\"product_name\":\"Snow Queen \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3294\",\"sale_id\":\"1624\",\"product_id\":\"297\",\"product_code\":\"13535342\",\"product_name\":\"Glossy Self Watering Planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3295\",\"sale_id\":\"1624\",\"product_id\":\"303\",\"product_code\":\"50990480\",\"product_name\":\"Manjula Hanging\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-19 18:23:44');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (151, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1625\",\"date\":\"2022-07-19 16:41:06\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1624\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"400.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"400.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"400.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"334a9f0f700b1422b9008e48b072f57eb0ff656bd281ddcfc19bd90bc2b3c889\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3296\",\"sale_id\":\"1625\",\"product_id\":\"153\",\"product_code\":\"63407332\",\"product_name\":\"RATTAN HANGING POT\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-19 18:24:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (152, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1630\",\"date\":\"2022-07-19 18:34:17\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1629\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"9fc416146c3464d6a526d07ba15331f691685876a3e6b6b639f19038c5782ae1\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3305\",\"sale_id\":\"1630\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-19 18:34:49');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (153, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1631\",\"date\":\"2022-07-19 18:34:17\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1630\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3357ab1fd182a2a1041110a30890341a69df8c3cd7497d93c220a374feb8e080\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3306\",\"sale_id\":\"1631\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-19 18:35:00');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (154, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":false,\"items\":null}', '2022-07-19 18:35:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (155, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1632\",\"date\":\"2022-07-19 18:37:01\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1631\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"6898a87836399b8ab0a871d81e1bb5b7664e983df8977e75ad166ac9a476b5e7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3307\",\"sale_id\":\"1632\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-19 18:37:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (156, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1633\",\"date\":\"2022-07-19 18:38:30\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1632\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d2aa238811fcb4ca66d4e50315da855e197f90921c3faf85a1832060fd511955\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3308\",\"sale_id\":\"1633\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-19 18:38:52');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (157, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"265\",\"code\":\"91997687\",\"name\":\"RESIN PLANTER BIRD HOUSE\",\"unit\":\"2\",\"cost\":\"1300.0000\",\"price\":\"1800.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"resin-planter-bird-house\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-20 14:25:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (158, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1695\",\"date\":\"2022-07-25 11:33:05\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1694\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1150.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5d7beca01b518e3a7359b64a41ba0c4f934b299ce1c54cada706ae24ed7edbb2\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3452\",\"sale_id\":\"1695\",\"product_id\":\"393\",\"product_code\":\"62446910\",\"product_name\":\"Zen Hanging pod\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"800.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3453\",\"sale_id\":\"1695\",\"product_id\":\"156\",\"product_code\":\"98245533\",\"product_name\":\"IRIS WALL WHITE GLOSS POT 6\\\\\'\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-25 12:10:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (159, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1717\",\"date\":\"2022-07-31 12:29:49\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1716\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1600.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8c78b8a6660aa275a849af82c18dae6555a9b9729c322acdca1f716360d60754\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3516\",\"sale_id\":\"1717\",\"product_id\":\"74\",\"product_code\":\"12241939\",\"product_name\":\"ZEN TOB BIG \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3517\",\"sale_id\":\"1717\",\"product_id\":\"387\",\"product_code\":\"88192874\",\"product_name\":\"Zen Pot Metalica Big\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"850.0000\",\"unit_price\":\"850.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"850.0000\",\"serial_no\":\"\",\"real_unit_price\":\"850.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-31 19:59:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (160, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1714\",\"date\":\"2022-07-31 12:02:03\",\"reference_no\":\"SALE\\/POS2022\\/07\\/1713\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1600.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1600.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"4\",\"pos\":\"1\",\"paid\":\"1600.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"ec6118d49e5fec27b525444115590b4a419769eb71a09b4668bf45fca4939c4b\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"3502\",\"sale_id\":\"1714\",\"product_id\":\"108\",\"product_code\":\"76776881\",\"product_name\":\"GROW LIGHT 10 W\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3503\",\"sale_id\":\"1714\",\"product_id\":\"406\",\"product_code\":\"55901923\",\"product_name\":\"Thai NPK 10-52-17\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"3504\",\"sale_id\":\"1714\",\"product_id\":\"145\",\"product_code\":\"43356395\",\"product_name\":\"NPK 100GM\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-07-31 20:06:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (161, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"414\",\"code\":\"41279592\",\"name\":\"Seed Thai \",\"unit\":\"2\",\"cost\":\"150.0000\",\"price\":\"200.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"62.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"41279592\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-31 20:11:46');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (162, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"291\",\"code\":\"31566492\",\"name\":\"Stylish Stripe Planter s\",\"unit\":\"2\",\"cost\":\"180.0000\",\"price\":\"250.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"4\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"7.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"31566492\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-07-31 20:13:45');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (163, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"1934\",\"date\":\"2022-08-15 18:31:02\",\"reference_no\":\"SALE\\/POS2022\\/08\\/1933\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5250.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"5250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"033bec69118a910b17240ddefbb0cce8b8643588374e0a9ec229f9664be37abb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4024\",\"sale_id\":\"1934\",\"product_id\":\"313\",\"product_code\":\"22361323\",\"product_name\":\"Aglonema 2\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4025\",\"sale_id\":\"1934\",\"product_id\":\"168\",\"product_code\":\"07964908\",\"product_name\":\"Silver Shartin\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4026\",\"sale_id\":\"1934\",\"product_id\":\"396\",\"product_code\":\"40732224\",\"product_name\":\"Peru S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4027\",\"sale_id\":\"1934\",\"product_id\":\"312\",\"product_code\":\"65313386\",\"product_name\":\"Aglonema 1\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4028\",\"sale_id\":\"1934\",\"product_id\":\"341\",\"product_code\":\"02686278\",\"product_name\":\"Monostera Adinsoni\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4029\",\"sale_id\":\"1934\",\"product_id\":\"49\",\"product_code\":\"21457857\",\"product_name\":\"PHILODENDRON BIRKIN\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4030\",\"sale_id\":\"1934\",\"product_id\":\"16\",\"product_code\":\"65687548\",\"product_name\":\"SENSEVERIA BONCEL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4031\",\"sale_id\":\"1934\",\"product_id\":\"385\",\"product_code\":\"49994111\",\"product_name\":\"Stylish Stripe Planter color s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4032\",\"sale_id\":\"1934\",\"product_id\":\"160\",\"product_code\":\"10237543\",\"product_name\":\"B-1 ROOT GROWER\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4033\",\"sale_id\":\"1934\",\"product_id\":\"143\",\"product_code\":\"89351267\",\"product_name\":\"OSMOCOTE 250GM\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-08-15 18:40:11');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (164, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"451\",\"code\":\"25823623\",\"name\":\"African Viloet \",\"unit\":\"2\",\"cost\":\"300.0000\",\"price\":\"400.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"10.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"25823623\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-08-20 17:08:16');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (165, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2023\",\"date\":\"2022-08-24 16:19:05\",\"reference_no\":\"SALE\\/POS2022\\/08\\/2022\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"7\",\"pos\":\"1\",\"paid\":\"3150.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"7159c3edc8c6737e469241f69ea604e916de76412ce7ddaff9984723e296d7db\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4236\",\"sale_id\":\"2023\",\"product_id\":\"5\",\"product_code\":\"06\",\"product_name\":\"Zen Pot M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"4.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"4.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4237\",\"sale_id\":\"2023\",\"product_id\":\"46\",\"product_code\":\"32396546\",\"product_name\":\"AGOLONEMA WHITE\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"4238\",\"sale_id\":\"2023\",\"product_id\":\"49\",\"product_code\":\"21457857\",\"product_name\":\"PHILODENDRON BIRKIN\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"750.0000\",\"unit_price\":\"750.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"750.0000\",\"serial_no\":\"\",\"real_unit_price\":\"750.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-08-24 17:27:04');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (166, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2271\",\"date\":\"2022-09-24 16:08:19\",\"reference_no\":\"SALE\\/POS2022\\/09\\/2270\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"700.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"700.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"700.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"23446033dde3f6dbb8006d723ae7e6ef4e6143c1d02dc0ec888c04dae8b98a88\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4746\",\"sale_id\":\"2271\",\"product_id\":\"108\",\"product_code\":\"76776881\",\"product_name\":\"GROW LIGHT 10 W\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-09-24 17:34:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (167, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2327\",\"date\":\"2022-10-01 11:34:27\",\"reference_no\":\"SALE\\/POS2022\\/10\\/2326\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"80.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"80.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"80.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"10c3ad207ba309468a49c95005405f0d218fbd55dcdb0134ad8b5635283bc6f0\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"4861\",\"sale_id\":\"2327\",\"product_id\":\"284\",\"product_code\":\"33347731\",\"product_name\":\"Flora 50ml\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"80.0000\",\"unit_price\":\"80.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"80.0000\",\"serial_no\":\"\",\"real_unit_price\":\"80.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-10-01 12:07:53');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (168, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2394\",\"date\":\"2022-10-09 18:49:17\",\"reference_no\":\"SALE\\/POS2022\\/10\\/2393\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"710.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"710.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"710.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a26dc32ed92f8d678d2561ae93537fb6c4d5e75fd68f21d867e137771ec00ebb\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5023\",\"sale_id\":\"2394\",\"product_id\":\"268\",\"product_code\":\"83437543\",\"product_name\":\"SEED (200)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"3.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"3.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5024\",\"sale_id\":\"2394\",\"product_id\":\"410\",\"product_code\":\"86049659\",\"product_name\":\"SEED (50)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5025\",\"sale_id\":\"2394\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-10-09 20:27:14');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (169, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"493\",\"code\":\"93092344\",\"name\":\"Hoya Small\",\"unit\":\"2\",\"cost\":\"300.0000\",\"price\":\"500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"93092344\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-10-15 15:05:24');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (170, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2614\",\"date\":\"2022-11-06 15:05:55\",\"reference_no\":\"SALE\\/POS2022\\/11\\/2613\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"5\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"cd5fda3269dd1dbc3b01e7eae5635bbe7e77131fd8a863399bedd091913b9846\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5587\",\"sale_id\":\"2614\",\"product_id\":\"119\",\"product_code\":\"28814945\",\"product_name\":\"FRAGNENT OIL\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"200.0000\",\"unit_price\":\"200.0000\",\"quantity\":\"5.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"200.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"5.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-11-06 15:37:39');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (171, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"463\",\"code\":\"20093942\",\"name\":\"Astrophytum Asteris\",\"unit\":\"2\",\"cost\":\"250.0000\",\"price\":\"350.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"7.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"20093942\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-11-06 16:45:37');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (172, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"464\",\"code\":\"81915881\",\"name\":\"Gymno Calacium\",\"unit\":\"2\",\"cost\":\"250.0000\",\"price\":\"300.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"8.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"2\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"81915881\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-11-06 16:45:50');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (173, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2700\",\"date\":\"2022-11-17 16:16:10\",\"reference_no\":\"SALE\\/POS2022\\/11\\/2699\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"400\",\"total_discount\":\"400.0000\",\"order_discount\":\"400.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1100.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"1100.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"940e3b786f46ac334a1048315a98ae57b9a487bfe205d3a50858ec33f7c354a7\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5764\",\"sale_id\":\"2700\",\"product_id\":\"385\",\"product_code\":\"49994111\",\"product_name\":\"Stylish Stripe Planter color s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-11-17 16:21:51');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (174, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"422\",\"code\":\"97366139\",\"name\":\"Water Fall \",\"unit\":\"2\",\"cost\":\"2400.0000\",\"price\":\"3500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"5\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"1.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"0\",\"purchase_unit\":\"0\",\"brand\":\"0\",\"slug\":\"97366139\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-11-19 17:12:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (175, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2762\",\"date\":\"2022-11-25 19:27:39\",\"reference_no\":\"SALE\\/POS2022\\/11\\/2761\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"2260.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"010\",\"total_discount\":\"10.0000\",\"order_discount\":\"10.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"2250.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"6\",\"pos\":\"1\",\"paid\":\"2250.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d3b8557249899a3b5f75f101273f113bc4da50355adc2028e7b31bf750fbd814\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5905\",\"sale_id\":\"2762\",\"product_id\":\"386\",\"product_code\":\"68549735\",\"product_name\":\"Stylish Stripe Planter color M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5906\",\"sale_id\":\"2762\",\"product_id\":\"489\",\"product_code\":\"10019321\",\"product_name\":\"Flower vase M\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"700.0000\",\"unit_price\":\"700.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"700.0000\",\"serial_no\":\"\",\"real_unit_price\":\"700.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5907\",\"sale_id\":\"2762\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"5908\",\"sale_id\":\"2762\",\"product_id\":\"313\",\"product_code\":\"22361323\",\"product_name\":\"Aglonema 2\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"600.0000\",\"unit_price\":\"600.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"600.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5909\",\"sale_id\":\"2762\",\"product_id\":\"533\",\"product_code\":\"18728118\",\"product_name\":\"Deshi Local Mix\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5910\",\"sale_id\":\"2762\",\"product_id\":\"217\",\"product_code\":\"82630821\",\"product_name\":\"Mini Sprayer\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-11-25 19:41:35');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (176, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2771\",\"date\":\"2022-11-26 15:41:16\",\"reference_no\":\"SALE\\/POS2022\\/11\\/2770\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"9410.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"510\",\"total_discount\":\"510.0000\",\"order_discount\":\"510.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"8900.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"22\",\"pos\":\"1\",\"paid\":\"8900.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"5545119469468221f7b8b5f0eda4fe185e1190f1b27feaaaed707cf28654fb41\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5928\",\"sale_id\":\"2771\",\"product_id\":\"393\",\"product_code\":\"62446910\",\"product_name\":\"Zen Hanging pod\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"450.0000\",\"unit_price\":\"450.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"900.0000\",\"serial_no\":\"\",\"real_unit_price\":\"450.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5929\",\"sale_id\":\"2771\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"6.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"360.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"6.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"5930\",\"sale_id\":\"2771\",\"product_id\":\"199\",\"product_code\":\"91200856\",\"product_name\":\"Lucky Bamboo 3 step\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1250.0000\",\"unit_price\":\"1250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5931\",\"sale_id\":\"2771\",\"product_id\":\"66\",\"product_code\":\"77547002\",\"product_name\":\"DICHIDIA BUBLE \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"2000.0000\",\"unit_price\":\"2000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"2000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"2000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5932\",\"sale_id\":\"2771\",\"product_id\":\"295\",\"product_code\":\"45464062\",\"product_name\":\"Uv Firenze Wide Planter\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5933\",\"sale_id\":\"2771\",\"product_id\":\"389\",\"product_code\":\"60021183\",\"product_name\":\"Zen Metalica S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"400.0000\",\"unit_price\":\"400.0000\",\"quantity\":\"11.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"4400.0000\",\"serial_no\":\"\",\"real_unit_price\":\"400.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"11.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-11-26 17:59:56');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (177, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2770\",\"date\":\"2022-11-26 13:44:12\",\"reference_no\":\"SALE\\/POS2022\\/11\\/2769\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1310.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"010\",\"total_discount\":\"10.0000\",\"order_discount\":\"10.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"1300.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"3cf58ca7c08c35fbd682a33cf16beb6fcf90fa8bfc62e9ec966ea73c31e1912f\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"5926\",\"sale_id\":\"2770\",\"product_id\":\"199\",\"product_code\":\"91200856\",\"product_name\":\"Lucky Bamboo 3 step\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1250.0000\",\"unit_price\":\"1250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"5927\",\"sale_id\":\"2770\",\"product_id\":\"220\",\"product_code\":\"85347259\",\"product_name\":\"vermi compost\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"60.0000\",\"unit_price\":\"60.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"60.0000\",\"serial_no\":\"\",\"real_unit_price\":\"60.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"}]}', '2022-11-26 18:00:06');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (178, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2884\",\"date\":\"2022-12-13 12:09:21\",\"reference_no\":\"SALE\\/POS2022\\/12\\/2883\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"0.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"0.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"0.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"06f5d75be5e2e4e060e231650b761c66b0d61994ef5bc1cc015e9320417dd651\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6151\",\"sale_id\":\"2884\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6152\",\"sale_id\":\"2884\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"0.0000\",\"unit_price\":\"0.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"0.0000\",\"serial_no\":\"\",\"real_unit_price\":\"0.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2022-12-13 12:29:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (179, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"565\",\"code\":\"02309853\",\"name\":\"Epi Marbel\",\"unit\":\"2\",\"cost\":\"4000.0000\",\"price\":\"5000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"02309853\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-12-25 16:27:36');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (180, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"547\",\"code\":\"51334251\",\"name\":\"Philo El Choco Red\",\"unit\":\"2\",\"cost\":\"3000.0000\",\"price\":\"4000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"51334251\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-12-25 16:32:25');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (181, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"553\",\"code\":\"81894430\",\"name\":\"Phillo Maxicana\",\"unit\":\"2\",\"cost\":\"1000.0000\",\"price\":\"1500.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"2\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"81894430\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2022-12-25 16:33:43');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (182, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"2986\",\"date\":\"2023-01-21 17:02:43\",\"reference_no\":\"SALE\\/POS2023\\/01\\/2985\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"3500.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"3500.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"2\",\"pos\":\"1\",\"paid\":\"3500.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"8e94a9273b0005d52d18b588e3ce358e0eb7f1499785880b9d770e2a489e7d1e\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6327\",\"sale_id\":\"2986\",\"product_id\":\"533\",\"product_code\":\"18728118\",\"product_name\":\"Deshi Local Mix\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6328\",\"sale_id\":\"2986\",\"product_id\":\"375\",\"product_code\":\"75823196\",\"product_name\":\"Humidifier & Aroma Dufuser Big\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"3000.0000\",\"unit_price\":\"3000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"3000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"3000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-01-21 17:09:07');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (183, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"571\",\"code\":\"35184032\",\"name\":\"Liquid general purpose 1liter uk\",\"unit\":\"2\",\"cost\":\"2300.0000\",\"price\":\"3000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":null,\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"35184032\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-01-21 17:42:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (184, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3027\",\"date\":\"2023-01-22 14:57:03\",\"reference_no\":\"SALE\\/POS2023\\/01\\/3026\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"4990.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"4990.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"17\",\"pos\":\"1\",\"paid\":\"4990.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"4a1080b380905fe49e2a586a6157e8028b41f37916b4aa42c48e4ed21582847c\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6565\",\"sale_id\":\"3027\",\"product_id\":\"145\",\"product_code\":\"43356395\",\"product_name\":\"NPK 100GM\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6566\",\"sale_id\":\"3027\",\"product_id\":\"212\",\"product_code\":\"20024744\",\"product_name\":\"Ceramic Bowl Small\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"250.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6567\",\"sale_id\":\"3027\",\"product_id\":\"42\",\"product_code\":\"14233360\",\"product_name\":\"PEPORIMA GREEN \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6568\",\"sale_id\":\"3027\",\"product_id\":\"426\",\"product_code\":\"14071835\",\"product_name\":\"Butter Fly\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6569\",\"sale_id\":\"3027\",\"product_id\":\"287\",\"product_code\":\"05315444\",\"product_name\":\"Artistic long Planter s\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"cdc4c83bd125646e13c6bd825a4e392f.jpeg\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6570\",\"sale_id\":\"3027\",\"product_id\":\"342\",\"product_code\":\"42643313\",\"product_name\":\"Osmokot 500gm 14.14.14\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"6571\",\"sale_id\":\"3027\",\"product_id\":\"409\",\"product_code\":\"31197682\",\"product_name\":\"Alpha Omega House plant\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6572\",\"sale_id\":\"3027\",\"product_id\":\"8\",\"product_code\":\"14\",\"product_name\":\"3pcs Garden Tools Set M \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6573\",\"sale_id\":\"3027\",\"product_id\":\"216\",\"product_code\":\"49524419\",\"product_name\":\"RG Mug\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6574\",\"sale_id\":\"3027\",\"product_id\":\"271\",\"product_code\":\"47649014\",\"product_name\":\"SEED (40)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"40.0000\",\"unit_price\":\"40.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"40.0000\",\"serial_no\":\"\",\"real_unit_price\":\"40.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6575\",\"sale_id\":\"3027\",\"product_id\":\"410\",\"product_code\":\"86049659\",\"product_name\":\"SEED (50)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6576\",\"sale_id\":\"3027\",\"product_id\":\"521\",\"product_code\":\"67089630\",\"product_name\":\"Garden Pod L\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"600.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6577\",\"sale_id\":\"3027\",\"product_id\":\"193\",\"product_code\":\"17426260\",\"product_name\":\"Luck Bambo Spiral Stick\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"250.0000\",\"unit_price\":\"250.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"250.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6578\",\"sale_id\":\"3027\",\"product_id\":\"42\",\"product_code\":\"14233360\",\"product_name\":\"PEPORIMA GREEN \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"6579\",\"sale_id\":\"3027\",\"product_id\":\"102\",\"product_code\":\"82430231\",\"product_name\":\"MINI TOOLS SET \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-01-22 14:58:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (185, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3063\",\"date\":\"2023-01-28 12:14:05\",\"reference_no\":\"SALE\\/POS2023\\/01\\/3062\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"300.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"cd37c0a489bdc18068dfef3e06307dbb2f6322469c87ddb6c96ac9fac954926a\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"6663\",\"sale_id\":\"3063\",\"product_id\":\"458\",\"product_code\":\"95295008\",\"product_name\":\"Bird House\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-01-28 14:10:18');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (186, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3271\",\"date\":\"2023-03-05 13:32:04\",\"reference_no\":\"SALE\\/POS2023\\/03\\/3270\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"15.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"0\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"15.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"5\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"15.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"353cf71a44553feaf299bf305306909528c634703bc3cd14e62844e6e70c1e05\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7144\",\"sale_id\":\"3271\",\"product_id\":\"146\",\"product_code\":\"demo\",\"product_name\":\"Demo\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"15.0000\",\"unit_price\":\"15.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"15.0000\",\"serial_no\":\"\",\"real_unit_price\":\"15.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-03-05 13:33:32');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (187, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3320\",\"date\":\"2023-03-13 16:55:15\",\"reference_no\":\"SALE\\/POS2023\\/03\\/3319\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"172274b7ea9f5a9177612766418ac474462b198da7e97ffe1cd35cb251cfc8a3\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7249\",\"sale_id\":\"3320\",\"product_id\":\"584\",\"product_code\":\"41421487\",\"product_name\":\"syngonium pink lava \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-03-13 17:06:30');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (188, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3318\",\"date\":\"2023-03-13 15:09:17\",\"reference_no\":\"SALE\\/POS2023\\/03\\/3317\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1000.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1000.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"1000.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"a86731b864c15b514d025bd2368eb5a13b575f62ed4e14ec1adb8f80aa0de5fe\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7247\",\"sale_id\":\"3318\",\"product_id\":\"584\",\"product_code\":\"41421487\",\"product_name\":\"syngonium pink lava \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-03-13 17:08:34');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (189, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3337\",\"date\":\"2023-03-23 19:50:02\",\"reference_no\":\"SALE\\/POS2023\\/03\\/3336\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"5650.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"5650.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"10\",\"pos\":\"1\",\"paid\":\"5650.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"436c998e709ecac75aef9245f596f5cccc0732faf2e0767819c5065271a72620\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7314\",\"sale_id\":\"3337\",\"product_id\":\"410\",\"product_code\":\"86049659\",\"product_name\":\"SEED (50)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"50.0000\",\"unit_price\":\"50.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"50.0000\",\"serial_no\":\"\",\"real_unit_price\":\"50.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7315\",\"sale_id\":\"3337\",\"product_id\":\"564\",\"product_code\":\"94984162\",\"product_name\":\"Phillo Maxicana  \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7316\",\"sale_id\":\"3337\",\"product_id\":\"254\",\"product_code\":\"31700219\",\"product_name\":\"Hoya 1.5\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1500.0000\",\"unit_price\":\"1500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7317\",\"sale_id\":\"3337\",\"product_id\":\"163\",\"product_code\":\"60285514\",\"product_name\":\"Transparent Mesh Pot \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7318\",\"sale_id\":\"3337\",\"product_id\":\"226\",\"product_code\":\"21257351\",\"product_name\":\"Thai Root Hormon\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"500.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7319\",\"sale_id\":\"3337\",\"product_id\":\"482\",\"product_code\":\"79803566\",\"product_name\":\"Osmokot 100gm  13.13.13\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7320\",\"sale_id\":\"3337\",\"product_id\":\"342\",\"product_code\":\"42643313\",\"product_name\":\"Osmokot 500gm 14.14.14\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"1000.0000\",\"unit_price\":\"1000.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"1000.0000\",\"sale_item_id\":null,\"product_unit_id\":\"3\",\"product_unit_code\":\"KG\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"3\",\"base_unit_code\":\"KG\"},{\"id\":\"7321\",\"sale_id\":\"3337\",\"product_id\":\"141\",\"product_code\":\"86990658\",\"product_name\":\"PERLITE 2L\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"350.0000\",\"unit_price\":\"350.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"350.0000\",\"serial_no\":\"\",\"real_unit_price\":\"350.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7322\",\"sale_id\":\"3337\",\"product_id\":\"269\",\"product_code\":\"86051367\",\"product_name\":\"SEED (150)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7323\",\"sale_id\":\"3337\",\"product_id\":\"269\",\"product_code\":\"86051367\",\"product_name\":\"SEED (150)\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-03-23 20:02:03');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (190, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3350\",\"date\":\"2023-03-23 20:56:04\",\"reference_no\":\"SALE\\/POS2023\\/03\\/3349\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"300.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"300.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"1\",\"pos\":\"1\",\"paid\":\"300.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"d3b1051feb1af8b56e128dc92b64953955ddb6e459e3bd7b2ab2bbfef641b187\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7382\",\"sale_id\":\"3350\",\"product_id\":\"200\",\"product_code\":\"04148228\",\"product_name\":\"1 Litter Sprayer\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"300.0000\",\"unit_price\":\"300.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"300.0000\",\"serial_no\":\"\",\"real_unit_price\":\"300.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-03-23 20:59:20');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (191, 'Sale is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"3354\",\"date\":\"2023-03-24 19:09:25\",\"reference_no\":\"SALE\\/POS2023\\/03\\/3353\",\"customer_id\":\"1\",\"customer\":\"Walk-in Customer\",\"biller_id\":\"6\",\"biller\":\"RecallGreen JFP\",\"warehouse_id\":\"2\",\"note\":\"\",\"staff_note\":\"\",\"total\":\"1150.0000\",\"product_discount\":\"0.0000\",\"order_discount_id\":\"\",\"total_discount\":\"0.0000\",\"order_discount\":\"0.0000\",\"product_tax\":\"0.0000\",\"order_tax_id\":\"1\",\"order_tax\":\"0.0000\",\"total_tax\":\"0.0000\",\"shipping\":\"0.0000\",\"grand_total\":\"1150.0000\",\"sale_status\":\"completed\",\"payment_status\":\"paid\",\"payment_term\":\"0\",\"due_date\":null,\"created_by\":\"2\",\"updated_by\":null,\"updated_at\":null,\"total_items\":\"3\",\"pos\":\"1\",\"paid\":\"1150.0000\",\"return_id\":null,\"surcharge\":\"0.0000\",\"attachment\":null,\"return_sale_ref\":null,\"sale_id\":null,\"return_sale_total\":\"0.0000\",\"rounding\":\"0.0000\",\"suspend_note\":null,\"api\":\"0\",\"shop\":\"0\",\"address_id\":null,\"reserve_id\":null,\"hash\":\"516802fa2b91e71b41c12c4f3c5b3c4ba5a15d7aa9d85def35b07f0fcc77c41d\",\"manual_payment\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"payment_method\":null},\"items\":[{\"id\":\"7391\",\"sale_id\":\"3354\",\"product_id\":\"319\",\"product_code\":\"00716849\",\"product_name\":\"MoonLight S\",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"500.0000\",\"unit_price\":\"500.0000\",\"quantity\":\"2.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"1000.0000\",\"serial_no\":\"\",\"real_unit_price\":\"500.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"2.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"},{\"id\":\"7392\",\"sale_id\":\"3354\",\"product_id\":\"296\",\"product_code\":\"90188448\",\"product_name\":\"UV Flower pot \",\"product_type\":\"standard\",\"option_id\":null,\"net_unit_price\":\"150.0000\",\"unit_price\":\"150.0000\",\"quantity\":\"1.0000\",\"warehouse_id\":\"2\",\"item_tax\":\"0.0000\",\"tax_rate_id\":null,\"tax\":\"\",\"discount\":\"0\",\"item_discount\":\"0.0000\",\"subtotal\":\"150.0000\",\"serial_no\":\"\",\"real_unit_price\":\"150.0000\",\"sale_item_id\":null,\"product_unit_id\":\"2\",\"product_unit_code\":\"Pcs\",\"unit_quantity\":\"1.0000\",\"comment\":\"\",\"gst\":null,\"cgst\":null,\"sgst\":null,\"igst\":null,\"tax_code\":null,\"tax_name\":null,\"tax_rate\":null,\"image\":\"no_image.png\",\"details\":\"\",\"variant\":null,\"hsn_code\":null,\"second_name\":\"\",\"base_unit_id\":\"2\",\"base_unit_code\":\"Pcs\"}]}', '2023-03-24 19:19:38');
INSERT INTO `sma_logs` (`id`, `detail`, `model`, `date`) VALUES (192, 'Product is being deleted by recallgreen (User Id: 5)', '{\"model\":{\"id\":\"509\",\"code\":\"88779027\",\"name\":\"Vermiculite Thai\",\"unit\":\"2\",\"cost\":\"800.0000\",\"price\":\"1000.0000\",\"alert_quantity\":\"0.0000\",\"image\":\"no_image.png\",\"category_id\":\"3\",\"subcategory_id\":null,\"cf1\":\"\",\"cf2\":\"\",\"cf3\":\"\",\"cf4\":\"\",\"cf5\":\"\",\"cf6\":\"\",\"quantity\":\"0.0000\",\"tax_rate\":null,\"track_quantity\":\"1\",\"details\":\"\",\"warehouse\":null,\"barcode_symbology\":\"code128\",\"file\":\"\",\"product_details\":\"\",\"tax_method\":null,\"type\":\"standard\",\"supplier1\":\"0\",\"supplier1price\":null,\"supplier2\":null,\"supplier2price\":null,\"supplier3\":null,\"supplier3price\":null,\"supplier4\":null,\"supplier4price\":null,\"supplier5\":null,\"supplier5price\":null,\"promotion\":null,\"promo_price\":null,\"start_date\":null,\"end_date\":null,\"supplier1_part_no\":\"\",\"supplier2_part_no\":null,\"supplier3_part_no\":null,\"supplier4_part_no\":null,\"supplier5_part_no\":null,\"sale_unit\":\"2\",\"purchase_unit\":\"2\",\"brand\":\"0\",\"slug\":\"88779027\",\"featured\":null,\"weight\":\"0.0000\",\"hsn_code\":null,\"views\":\"0\",\"hide\":\"0\",\"second_name\":\"\",\"hide_pos\":\"0\"}}', '2023-03-28 12:28:23');


#
# TABLE STRUCTURE FOR: sma_migrations
#

DROP TABLE IF EXISTS `sma_migrations`;

CREATE TABLE `sma_migrations` (
  `version` bigint(20) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_migrations` (`version`) VALUES ('315');


#
# TABLE STRUCTURE FOR: sma_notifications
#

DROP TABLE IF EXISTS `sma_notifications`;

CREATE TABLE `sma_notifications` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `comment` text NOT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `from_date` datetime DEFAULT NULL,
  `till_date` datetime DEFAULT NULL,
  `scope` tinyint(1) NOT NULL DEFAULT 3,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_notifications` (`id`, `comment`, `date`, `from_date`, `till_date`, `scope`) VALUES (1, '<p>Thank you for purchasing Stock Manager Advance. Please do not forget to check the documentation in help folder. If you find any error/bug, please email to support@tecdiary.com with details. You can send us your valued suggestions/feedback too.</p><p>Please rate Stock Manager Advance on your download page of codecanyon.net</p>', '2014-08-15 19:00:57', '2015-01-01 00:00:00', '2017-01-01 00:00:00', 3);


#
# TABLE STRUCTURE FOR: sma_order_ref
#

DROP TABLE IF EXISTS `sma_order_ref`;

CREATE TABLE `sma_order_ref` (
  `ref_id` int(11) NOT NULL AUTO_INCREMENT,
  `date` date NOT NULL,
  `so` int(11) NOT NULL DEFAULT 1,
  `qu` int(11) NOT NULL DEFAULT 1,
  `po` int(11) NOT NULL DEFAULT 1,
  `to` int(11) NOT NULL DEFAULT 1,
  `pos` int(11) NOT NULL DEFAULT 1,
  `do` int(11) NOT NULL DEFAULT 1,
  `pay` int(11) NOT NULL DEFAULT 1,
  `re` int(11) NOT NULL DEFAULT 1,
  `rep` int(11) NOT NULL DEFAULT 1,
  `ex` int(11) NOT NULL DEFAULT 1,
  `ppay` int(11) NOT NULL DEFAULT 1,
  `qa` int(11) DEFAULT 1,
  PRIMARY KEY (`ref_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_order_ref` (`ref_id`, `date`, `so`, `qu`, `po`, `to`, `pos`, `do`, `pay`, `re`, `rep`, `ex`, `ppay`, `qa`) VALUES (1, '2023-05-01', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);


#
# TABLE STRUCTURE FOR: sma_payments
#

DROP TABLE IF EXISTS `sma_payments`;

CREATE TABLE `sma_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT current_timestamp(),
  `sale_id` int(11) DEFAULT NULL,
  `return_id` int(11) DEFAULT NULL,
  `purchase_id` int(11) DEFAULT NULL,
  `reference_no` varchar(50) NOT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `paid_by` varchar(20) NOT NULL,
  `cheque_no` varchar(20) DEFAULT NULL,
  `cc_no` varchar(20) DEFAULT NULL,
  `cc_holder` varchar(25) DEFAULT NULL,
  `cc_month` varchar(2) DEFAULT NULL,
  `cc_year` varchar(4) DEFAULT NULL,
  `cc_type` varchar(20) DEFAULT NULL,
  `amount` decimal(25,4) NOT NULL,
  `currency` varchar(3) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `type` varchar(20) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `pos_paid` decimal(25,4) DEFAULT 0.0000,
  `pos_balance` decimal(25,4) DEFAULT 0.0000,
  `approval_code` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3410 DEFAULT CHARSET=utf8;

INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (5, '2021-12-17 04:09:00', NULL, NULL, 2, 'POP2021/12/0001', NULL, 'cash', '', '', '', '', '', 'Visa', '3600.0000', NULL, 1, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (150, '2022-03-20 01:29:17', 136, NULL, NULL, 'IPAY2022/03/0138', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (151, '2022-03-20 01:31:12', 137, NULL, NULL, 'IPAY2022/03/0139', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (152, '2022-03-20 02:54:51', 138, NULL, NULL, 'IPAY2022/03/0140', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (153, '2022-03-20 03:01:07', 139, NULL, NULL, 'IPAY2022/03/0141', NULL, 'CC', '', '', '', '', '', '', '2050.0000', NULL, 2, NULL, 'received', '', '2050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (154, '2022-03-20 04:43:38', 140, NULL, NULL, 'IPAY2022/03/0142', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (155, '2022-03-20 04:55:05', 141, NULL, NULL, 'IPAY2022/03/0143', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (156, '2022-03-20 06:32:02', 142, NULL, NULL, 'IPAY2022/03/0144', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (157, '2022-03-20 06:57:36', 143, NULL, NULL, 'IPAY2022/03/0145', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (158, '2022-03-20 07:27:35', 144, NULL, NULL, 'IPAY2022/03/0146', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (159, '2022-03-20 08:01:54', 145, NULL, NULL, 'IPAY2022/03/0147', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (160, '2022-03-20 08:10:36', 146, NULL, NULL, 'IPAY2022/03/0148', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (161, '2022-03-20 08:18:33', 147, NULL, NULL, 'IPAY2022/03/0149', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (162, '2022-03-20 09:57:42', 148, NULL, NULL, 'IPAY2022/03/0150', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (163, '2022-03-20 09:57:58', 149, NULL, NULL, 'IPAY2022/03/0151', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (164, '2022-03-21 02:13:15', 150, NULL, NULL, 'IPAY2022/03/0152', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (165, '2022-03-21 06:04:30', 151, NULL, NULL, 'IPAY2022/03/0153', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (166, '2022-03-21 06:55:56', 152, NULL, NULL, 'IPAY2022/03/0154', NULL, 'cash', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (167, '2022-03-21 07:32:54', 153, NULL, NULL, 'IPAY2022/03/0155', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 2, NULL, 'received', '', '1.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (168, '2022-03-21 07:35:49', 154, NULL, NULL, 'IPAY2022/03/0156', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 2, NULL, 'received', '', '1.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (169, '2022-03-21 07:38:18', 155, NULL, NULL, 'IPAY2022/03/0157', NULL, 'cash', '', '', '', '', '', '', '1.0000', NULL, 2, NULL, 'received', '', '1.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (170, '2022-03-21 08:57:38', 156, NULL, NULL, 'IPAY2022/03/0158', NULL, 'other', '', '', '', '', '', '', '3600.0000', NULL, 2, NULL, 'received', '', '3600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (171, '2022-03-21 08:58:53', 157, NULL, NULL, 'IPAY2022/03/0159', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (172, '2022-03-21 09:01:54', 158, NULL, NULL, 'IPAY2022/03/0160', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (149, '2022-03-20 01:17:00', NULL, NULL, 104, 'POP2022/03/0012', NULL, 'cash', '', '', '', '', '', 'Visa', '4000.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (148, '2022-03-20 01:17:00', NULL, NULL, 105, 'POP2022/03/0011', NULL, 'cash', '', '', '', '', '', 'Visa', '2400.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (146, '2022-03-20 01:16:00', NULL, NULL, 107, 'POP2022/03/0009', NULL, 'cash', '', '', '', '', '', 'Visa', '900.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (147, '2022-03-20 01:17:00', NULL, NULL, 106, 'POP2022/03/0010', NULL, 'cash', '', '', '', '', '', 'Visa', '700.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (145, '2022-03-20 01:16:00', NULL, NULL, 108, 'POP2022/03/0008', NULL, 'cash', '', '', '', '', '', 'Visa', '3800.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (144, '2022-03-20 01:16:00', NULL, NULL, 109, 'POP2022/03/0007', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (143, '2022-03-20 01:16:00', NULL, NULL, 110, 'POP2022/03/0006', NULL, 'cash', '', '', '', '', '', 'Visa', '2880.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (142, '2022-03-20 01:16:00', NULL, NULL, 111, 'POP2022/03/0005', NULL, 'cash', '', '', '', '', '', 'Visa', '2000.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (101, '2022-03-17 02:38:29', 100, NULL, NULL, 'IPAY2022/03/0100', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (102, '2022-03-17 03:28:20', 101, NULL, NULL, 'IPAY2022/03/0101', NULL, 'cash', '', '', '', '', '', '', '4650.0000', NULL, 2, NULL, 'received', '', '4650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (103, '2022-03-17 03:35:17', 102, NULL, NULL, 'IPAY2022/03/0102', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (141, '2022-03-20 01:15:00', NULL, NULL, 112, 'POP2022/03/0004', NULL, 'cash', '', '', '', '', '', 'Visa', '2600.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (140, '2022-03-20 01:15:00', NULL, NULL, 10, 'POP2022/03/0003', NULL, 'cash', '', '', '', '', '', 'Visa', '24050.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (128, '2022-03-19 02:59:37', 125, NULL, NULL, 'IPAY2022/03/0127', NULL, 'CC', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (107, '2022-03-18 04:42:31', 105, NULL, NULL, 'IPAY2022/03/0106', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (139, '2022-03-20 01:15:00', NULL, NULL, 113, 'POP2022/03/0002', NULL, 'cash', '', '', '', '', '', 'Visa', '900.0000', NULL, 5, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (130, '2022-03-19 04:15:52', 127, NULL, NULL, 'IPAY2022/03/0129', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (110, '2022-03-18 05:05:07', 108, NULL, NULL, 'IPAY2022/03/0109', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (111, '2022-03-18 05:11:01', 109, NULL, NULL, 'IPAY2022/03/0110', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (112, '2022-03-18 05:13:34', 110, NULL, NULL, 'IPAY2022/03/0111', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '-500.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (113, '2022-03-18 05:13:34', 110, NULL, NULL, 'IPAY2022/03/0112', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (114, '2022-03-18 05:16:39', 111, NULL, NULL, 'IPAY2022/03/0113', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (115, '2022-03-18 05:20:42', 112, NULL, NULL, 'IPAY2022/03/0114', NULL, 'CC', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (129, '2022-03-19 03:23:20', 126, NULL, NULL, 'IPAY2022/03/0128', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (117, '2022-03-18 06:19:33', 114, NULL, NULL, 'IPAY2022/03/0116', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (118, '2022-03-18 07:09:36', 115, NULL, NULL, 'IPAY2022/03/0117', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (119, '2022-03-18 07:13:11', 116, NULL, NULL, 'IPAY2022/03/0118', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (120, '2022-03-18 07:43:12', 117, NULL, NULL, 'IPAY2022/03/0119', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (121, '2022-03-18 08:10:49', 118, NULL, NULL, 'IPAY2022/03/0120', NULL, 'cash', '', '', '', '', '', '', '3300.0000', NULL, 2, NULL, 'received', '', '3300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (122, '2022-03-18 08:17:55', 119, NULL, NULL, 'IPAY2022/03/0121', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (123, '2022-03-18 08:23:05', 120, NULL, NULL, 'IPAY2022/03/0122', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (124, '2022-03-18 08:47:02', 121, NULL, NULL, 'IPAY2022/03/0123', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (125, '2022-03-18 09:01:31', 122, NULL, NULL, 'IPAY2022/03/0124', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (126, '2022-03-18 09:55:31', 123, NULL, NULL, 'IPAY2022/03/0125', NULL, 'cash', '', '', '', '', '', '', '4420.0000', NULL, 2, NULL, 'received', '', '4420.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (127, '2022-03-18 10:29:46', 124, NULL, NULL, 'IPAY2022/03/0126', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (131, '2022-03-19 04:16:41', 128, NULL, NULL, 'IPAY2022/03/0130', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (132, '2022-03-19 05:29:30', 129, NULL, NULL, 'IPAY2022/03/0131', NULL, 'CC', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (133, '2022-03-19 05:46:39', 130, NULL, NULL, 'IPAY2022/03/0132', NULL, 'cash', '', '', '', '', '', '', '16500.0000', NULL, 2, NULL, 'received', '', '16500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (134, '2022-03-19 06:41:56', 131, NULL, NULL, 'IPAY2022/03/0133', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (135, '2022-03-19 08:14:07', 132, NULL, NULL, 'IPAY2022/03/0134', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (136, '2022-03-19 09:41:27', 133, NULL, NULL, 'IPAY2022/03/0135', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (137, '2022-03-19 10:05:10', 134, NULL, NULL, 'IPAY2022/03/0136', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (138, '2022-03-19 10:06:04', 135, NULL, NULL, 'IPAY2022/03/0137', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (173, '2022-03-21 09:02:43', 159, NULL, NULL, 'IPAY2022/03/0161', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (174, '2022-03-22 00:10:23', 160, NULL, NULL, 'IPAY2022/03/0162', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (175, '2022-03-22 02:48:26', 161, NULL, NULL, 'IPAY2022/03/0163', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (176, '2022-03-22 02:51:15', 162, NULL, NULL, 'IPAY2022/03/0164', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (177, '2022-03-22 07:07:20', 163, NULL, NULL, 'IPAY2022/03/0165', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (178, '2022-03-22 08:54:07', 164, NULL, NULL, 'IPAY2022/03/0166', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (179, '2022-03-22 09:08:02', 165, NULL, NULL, 'IPAY2022/03/0167', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (180, '2022-03-22 09:32:28', 166, NULL, NULL, 'IPAY2022/03/0168', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (181, '2022-03-22 09:47:01', 167, NULL, NULL, 'IPAY2022/03/0169', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (182, '2022-03-23 00:08:00', 168, NULL, NULL, 'IPAY2022/03/0170', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (183, '2022-03-23 02:00:50', 169, NULL, NULL, 'IPAY2022/03/0171', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (184, '2022-03-23 02:44:15', 170, NULL, NULL, 'IPAY2022/03/0172', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (185, '2022-03-23 04:15:48', 171, NULL, NULL, 'IPAY2022/03/0173', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (186, '2022-03-23 04:16:51', 172, NULL, NULL, 'IPAY2022/03/0174', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (187, '2022-03-23 05:31:18', 173, NULL, NULL, 'IPAY2022/03/0175', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (188, '2022-03-23 06:41:14', 174, NULL, NULL, 'IPAY2022/03/0176', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (189, '2022-03-23 06:48:10', 175, NULL, NULL, 'IPAY2022/03/0177', NULL, 'CC', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (190, '2022-03-23 09:39:06', 176, NULL, NULL, 'IPAY2022/03/0178', NULL, 'cash', '', '', '', '', '', '', '580.0000', NULL, 2, NULL, 'received', '', '580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (191, '2022-03-23 09:59:57', 177, NULL, NULL, 'IPAY2022/03/0179', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (192, '2022-03-23 10:09:34', 178, NULL, NULL, 'IPAY2022/03/0180', NULL, 'cash', '', '', '', '', '', '', '1080.0000', NULL, 2, NULL, 'received', '', '1080.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (193, '2022-03-23 10:18:42', 179, NULL, NULL, 'IPAY2022/03/0181', NULL, 'other', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (194, '2022-03-24 08:01:19', 180, NULL, NULL, 'IPAY2022/03/0182', NULL, 'other', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (195, '2022-03-24 09:34:05', 181, NULL, NULL, 'IPAY2022/03/0183', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (196, '2022-03-24 09:46:15', 182, NULL, NULL, 'IPAY2022/03/0184', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (197, '2022-03-24 10:21:25', 183, NULL, NULL, 'IPAY2022/03/0185', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (198, '2022-03-25 01:14:30', 184, NULL, NULL, 'IPAY2022/03/0186', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (199, '2022-03-25 02:42:37', 185, NULL, NULL, 'IPAY2022/03/0187', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (200, '2022-03-25 02:56:52', 186, NULL, NULL, 'IPAY2022/03/0188', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (201, '2022-03-25 03:23:53', 187, NULL, NULL, 'IPAY2022/03/0189', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (202, '2022-03-25 03:29:14', 188, NULL, NULL, 'IPAY2022/03/0190', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (203, '2022-03-25 04:28:32', 189, NULL, NULL, 'IPAY2022/03/0191', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (204, '2022-03-25 04:34:42', 190, NULL, NULL, 'IPAY2022/03/0192', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (205, '2022-03-25 05:20:49', 191, NULL, NULL, 'IPAY2022/03/0193', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (206, '2022-03-25 06:55:41', 192, NULL, NULL, 'IPAY2022/03/0194', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (207, '2022-03-25 07:27:05', 193, NULL, NULL, 'IPAY2022/03/0195', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (208, '2022-03-25 07:28:08', 194, NULL, NULL, 'IPAY2022/03/0196', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (209, '2022-03-25 07:58:25', 195, NULL, NULL, 'IPAY2022/03/0197', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (210, '2022-03-25 09:04:55', 196, NULL, NULL, 'IPAY2022/03/0198', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (211, '2022-03-25 09:06:08', 197, NULL, NULL, 'IPAY2022/03/0199', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (212, '2022-03-26 04:28:36', 198, NULL, NULL, 'IPAY2022/03/0200', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (213, '2022-03-26 04:57:34', 199, NULL, NULL, 'IPAY2022/03/0201', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (214, '2022-03-26 05:23:05', 200, NULL, NULL, 'IPAY2022/03/0202', NULL, 'cash', '', '', '', '', '', '', '530.0000', NULL, 2, NULL, 'received', '', '530.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (215, '2022-03-26 05:25:15', 201, NULL, NULL, 'IPAY2022/03/0203', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (216, '2022-03-26 05:27:14', 202, NULL, NULL, 'IPAY2022/03/0204', NULL, 'CC', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (217, '2022-03-26 06:42:38', 203, NULL, NULL, 'IPAY2022/03/0205', NULL, 'CC', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (218, '2022-03-26 06:43:35', 204, NULL, NULL, 'IPAY2022/03/0206', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (219, '2022-03-26 06:46:06', 205, NULL, NULL, 'IPAY2022/03/0207', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (220, '2022-03-26 08:06:53', 206, NULL, NULL, 'IPAY2022/03/0208', NULL, 'cash', '', '', '', '', '', '', '3950.0000', NULL, 2, NULL, 'received', '', '3950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (221, '2022-03-26 08:31:59', 207, NULL, NULL, 'IPAY2022/03/0209', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (222, '2022-03-26 08:39:12', 208, NULL, NULL, 'IPAY2022/03/0210', NULL, 'cash', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (223, '2022-03-26 08:43:09', 209, NULL, NULL, 'IPAY2022/03/0211', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (224, '2022-03-26 08:56:09', 210, NULL, NULL, 'IPAY2022/03/0212', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (225, '2022-03-26 09:04:12', 211, NULL, NULL, 'IPAY2022/03/0213', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (226, '2022-03-26 09:27:20', 212, NULL, NULL, 'IPAY2022/03/0214', NULL, 'cash', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (227, '2022-03-26 10:12:34', 213, NULL, NULL, 'IPAY2022/03/0215', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (228, '2022-03-26 10:14:19', 214, NULL, NULL, 'IPAY2022/03/0216', NULL, 'CC', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (229, '2022-03-26 10:58:41', 215, NULL, NULL, 'IPAY2022/03/0217', NULL, 'CC', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (230, '2022-03-27 01:14:16', 216, NULL, NULL, 'IPAY2022/03/0218', NULL, 'CC', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (231, '2022-03-27 02:13:36', 217, NULL, NULL, 'IPAY2022/03/0219', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (232, '2022-03-27 04:45:57', 218, NULL, NULL, 'IPAY2022/03/0220', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (233, '2022-03-27 05:43:38', 219, NULL, NULL, 'IPAY2022/03/0221', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (234, '2022-03-27 05:45:34', 220, NULL, NULL, 'IPAY2022/03/0222', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (235, '2022-03-27 05:51:39', 221, NULL, NULL, 'IPAY2022/03/0223', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (236, '2022-03-27 06:10:41', 222, NULL, NULL, 'IPAY2022/03/0224', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (237, '2022-03-27 06:30:49', 223, NULL, NULL, 'IPAY2022/03/0225', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (238, '2022-03-27 06:49:38', 224, NULL, NULL, 'IPAY2022/03/0226', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (239, '2022-03-27 06:52:32', 225, NULL, NULL, 'IPAY2022/03/0227', NULL, 'CC', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (240, '2022-03-27 06:58:15', 226, NULL, NULL, 'IPAY2022/03/0228', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (244, '2022-03-27 08:08:37', 230, NULL, NULL, 'IPAY2022/03/0232', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (242, '2022-03-27 07:19:08', 228, NULL, NULL, 'IPAY2022/03/0230', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (243, '2022-03-27 07:30:05', 229, NULL, NULL, 'IPAY2022/03/0231', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (245, '2022-03-27 08:10:23', 231, NULL, NULL, 'IPAY2022/03/0233', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (246, '2022-03-27 08:37:02', 232, NULL, NULL, 'IPAY2022/03/0234', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (247, '2022-03-27 09:49:27', 233, NULL, NULL, 'IPAY2022/03/0235', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (248, '2022-03-27 23:45:00', 232, NULL, NULL, 'IPAY2022/03/0236', NULL, 'other', '', '', '', '', '', 'Visa', '500.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (249, '2022-03-28 01:49:23', 234, NULL, NULL, 'IPAY2022/03/0237', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (250, '2022-03-28 02:04:33', 235, NULL, NULL, 'IPAY2022/03/0238', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (251, '2022-03-28 02:55:32', 236, NULL, NULL, 'IPAY2022/03/0239', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (252, '2022-03-28 05:52:25', 237, NULL, NULL, 'IPAY2022/03/0240', NULL, 'other', '', '', '', '', '', '', '440.0000', NULL, 2, NULL, 'received', '', '440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (253, '2022-03-28 06:06:02', 238, NULL, NULL, 'IPAY2022/03/0241', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (254, '2022-03-28 07:24:51', 239, NULL, NULL, 'IPAY2022/03/0242', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (255, '2022-03-28 08:48:08', 240, NULL, NULL, 'IPAY2022/03/0243', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (256, '2022-03-28 09:58:39', 241, NULL, NULL, 'IPAY2022/03/0244', NULL, 'CC', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (257, '2022-03-28 09:59:15', 242, NULL, NULL, 'IPAY2022/03/0245', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (258, '2022-03-29 04:21:47', 243, NULL, NULL, 'IPAY2022/03/0246', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (259, '2022-03-29 04:30:31', 244, NULL, NULL, 'IPAY2022/03/0247', NULL, 'cash', '', '', '', '', '', '', '3050.0000', NULL, 2, NULL, 'received', '', '3050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (260, '2022-03-29 04:32:31', 245, NULL, NULL, 'IPAY2022/03/0248', NULL, 'other', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (261, '2022-03-29 04:54:59', 246, NULL, NULL, 'IPAY2022/03/0249', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (262, '2022-03-29 05:40:04', 247, NULL, NULL, 'IPAY2022/03/0250', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (263, '2022-03-29 05:52:23', 248, NULL, NULL, 'IPAY2022/03/0251', NULL, 'CC', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (264, '2022-03-29 07:29:10', 249, NULL, NULL, 'IPAY2022/03/0252', NULL, 'CC', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (265, '2022-03-29 08:04:14', 250, NULL, NULL, 'IPAY2022/03/0253', NULL, 'cash', '', '', '', '', '', '', '3400.0000', NULL, 2, NULL, 'received', '', '3400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (266, '2022-03-29 08:08:51', 251, NULL, NULL, 'IPAY2022/03/0254', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (267, '2022-03-29 08:36:23', 252, NULL, NULL, 'IPAY2022/03/0255', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (268, '2022-03-29 08:50:01', 253, NULL, NULL, 'IPAY2022/03/0256', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (269, '2022-03-29 08:53:07', 254, NULL, NULL, 'IPAY2022/03/0257', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (270, '2022-03-29 09:30:59', 255, NULL, NULL, 'IPAY2022/03/0258', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (271, '2022-03-29 09:36:41', 256, NULL, NULL, 'IPAY2022/03/0259', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (272, '2022-03-29 09:50:19', 257, NULL, NULL, 'IPAY2022/03/0260', NULL, 'CC', '', '', '', '', '', '', '2130.0000', NULL, 2, NULL, 'received', '', '2130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (273, '2022-03-29 09:53:13', 258, NULL, NULL, 'IPAY2022/03/0261', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (274, '2022-03-29 12:15:00', NULL, NULL, 136, 'POP2022/03/0013', NULL, 'cash', '', '', '', '', '', 'Visa', '1000.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (275, '2022-03-29 12:16:00', NULL, NULL, 135, 'POP2022/03/0014', NULL, 'cash', '', '', '', '', '', 'Visa', '16000.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (276, '2022-03-29 12:16:00', NULL, NULL, 134, 'POP2022/03/0015', NULL, 'cash', '', '', '', '', '', 'Visa', '15825.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (277, '2022-03-29 12:16:00', NULL, NULL, 133, 'POP2022/03/0016', NULL, 'cash', '', '', '', '', '', 'Visa', '58250.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (278, '2022-03-29 12:16:00', NULL, NULL, 132, 'POP2022/03/0017', NULL, 'cash', '', '', '', '', '', 'Visa', '1840.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (279, '2022-03-29 12:17:00', NULL, NULL, 131, 'POP2022/03/0018', NULL, 'cash', '', '', '', '', '', 'Visa', '17080.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (280, '2022-03-29 12:17:00', NULL, NULL, 130, 'POP2022/03/0019', NULL, 'cash', '', '', '', '', '', 'Visa', '2800.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (281, '2022-03-29 12:17:00', NULL, NULL, 129, 'POP2022/03/0020', NULL, 'cash', '', '', '', '', '', 'Visa', '600.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (282, '2022-03-29 12:17:00', NULL, NULL, 128, 'POP2022/03/0021', NULL, 'cash', '', '', '', '', '', 'Visa', '750.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (283, '2022-03-30 01:11:29', 259, NULL, NULL, 'IPAY2022/03/0262', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (284, '2022-03-30 02:49:38', 260, NULL, NULL, 'IPAY2022/03/0263', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (285, '2022-03-30 03:12:38', 261, NULL, NULL, 'IPAY2022/03/0264', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (286, '2022-03-30 05:41:35', 262, NULL, NULL, 'IPAY2022/03/0265', NULL, 'cash', '', '', '', '', '', '', '2660.0000', NULL, 2, NULL, 'received', '', '2660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (287, '2022-03-30 05:46:23', 263, NULL, NULL, 'IPAY2022/03/0266', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (288, '2022-03-30 07:13:57', 264, NULL, NULL, 'IPAY2022/03/0267', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (289, '2022-03-30 07:19:52', 265, NULL, NULL, 'IPAY2022/03/0268', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (290, '2022-03-30 07:44:47', 266, NULL, NULL, 'IPAY2022/03/0269', NULL, 'other', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (291, '2022-03-30 07:58:32', 267, NULL, NULL, 'IPAY2022/03/0270', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (292, '2022-03-30 08:43:12', 268, NULL, NULL, 'IPAY2022/03/0271', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (293, '2022-03-30 08:57:40', 269, NULL, NULL, 'IPAY2022/03/0272', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (294, '2022-03-30 09:04:07', 270, NULL, NULL, 'IPAY2022/03/0273', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (295, '2022-03-30 09:36:15', 271, NULL, NULL, 'IPAY2022/03/0274', NULL, 'cash', '', '', '', '', '', '', '1310.0000', NULL, 2, NULL, 'received', '', '1310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (296, '2022-03-30 09:43:40', 272, NULL, NULL, 'IPAY2022/03/0275', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (297, '2022-03-30 10:02:12', 273, NULL, NULL, 'IPAY2022/03/0276', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (298, '2022-03-31 01:29:50', 274, NULL, NULL, 'IPAY2022/03/0277', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (299, '2022-03-31 09:19:04', 275, NULL, NULL, 'IPAY2022/03/0278', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (300, '2022-03-31 09:53:09', 276, NULL, NULL, 'IPAY2022/03/0279', NULL, 'CC', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (301, '2022-04-01 00:42:22', 277, NULL, NULL, 'IPAY2022/03/0280', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (302, '2022-04-01 02:07:55', 278, NULL, NULL, 'IPAY2022/03/0281', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (303, '2022-04-01 05:16:48', 279, NULL, NULL, 'IPAY2022/03/0282', NULL, 'CC', '', '', '', '', '', '', '12100.0000', NULL, 2, NULL, 'received', '', '12100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (304, '2022-04-01 05:47:35', 280, NULL, NULL, 'IPAY2022/03/0283', NULL, 'cash', '', '', '', '', '', '', '4800.0000', NULL, 2, NULL, 'received', '', '4800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (305, '2022-04-01 07:50:24', 281, NULL, NULL, 'IPAY2022/03/0284', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (306, '2022-04-01 08:12:07', 282, NULL, NULL, 'IPAY2022/03/0285', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (307, '2022-04-01 08:12:48', 283, NULL, NULL, 'IPAY2022/03/0286', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (308, '2022-04-01 08:39:01', 284, NULL, NULL, 'IPAY2022/03/0287', NULL, 'CC', '', '', '', '', '', '', '11450.0000', NULL, 2, NULL, 'received', '', '11450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (309, '2022-04-01 09:19:56', 286, NULL, NULL, 'IPAY2022/03/0288', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (310, '2022-04-01 09:33:52', 287, NULL, NULL, 'IPAY2022/03/0289', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (341, '2022-04-02 11:04:16', 318, NULL, NULL, 'IPAY2022/04/0320', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (312, '2022-04-02 01:24:27', 289, NULL, NULL, 'IPAY2022/04/0291', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (313, '2022-04-02 01:25:52', 290, NULL, NULL, 'IPAY2022/04/0292', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (314, '2022-04-02 01:30:01', 291, NULL, NULL, 'IPAY2022/04/0293', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (315, '2022-04-02 03:31:59', 292, NULL, NULL, 'IPAY2022/04/0294', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (316, '2022-04-02 03:47:52', 293, NULL, NULL, 'IPAY2022/04/0295', NULL, 'cash', '', '', '', '', '', '', '3750.0000', NULL, 2, NULL, 'received', '', '3750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (317, '2022-04-02 04:38:52', 294, NULL, NULL, 'IPAY2022/04/0296', NULL, 'CC', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (318, '2022-04-02 04:53:16', 295, NULL, NULL, 'IPAY2022/04/0297', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (319, '2022-04-02 05:08:05', 296, NULL, NULL, 'IPAY2022/04/0298', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (320, '2022-04-02 05:08:56', 297, NULL, NULL, 'IPAY2022/04/0299', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (321, '2022-04-02 05:09:27', 298, NULL, NULL, 'IPAY2022/04/0300', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (322, '2022-04-02 05:12:03', 299, NULL, NULL, 'IPAY2022/04/0301', NULL, 'cash', '', '', '', '', '', '', '5000.0000', NULL, 2, NULL, 'received', '', '5000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (323, '2022-04-02 05:27:31', 300, NULL, NULL, 'IPAY2022/04/0302', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (324, '2022-04-02 05:30:03', 301, NULL, NULL, 'IPAY2022/04/0303', NULL, 'cash', '', '', '', '', '', '', '15300.0000', NULL, 2, NULL, 'received', '', '15300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (325, '2022-04-02 05:56:49', 302, NULL, NULL, 'IPAY2022/04/0304', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (326, '2022-04-02 06:43:12', 303, NULL, NULL, 'IPAY2022/04/0305', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (327, '2022-04-02 07:21:44', 304, NULL, NULL, 'IPAY2022/04/0306', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (328, '2022-04-02 07:23:08', 305, NULL, NULL, 'IPAY2022/04/0307', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (329, '2022-04-02 07:59:53', 306, NULL, NULL, 'IPAY2022/04/0308', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (330, '2022-04-02 08:40:01', 307, NULL, NULL, 'IPAY2022/04/0309', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (331, '2022-04-02 08:59:28', 308, NULL, NULL, 'IPAY2022/04/0310', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (332, '2022-04-02 09:05:32', 309, NULL, NULL, 'IPAY2022/04/0311', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (333, '2022-04-02 09:11:11', 310, NULL, NULL, 'IPAY2022/04/0312', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (334, '2022-04-02 09:12:47', 311, NULL, NULL, 'IPAY2022/04/0313', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (335, '2022-04-02 09:15:50', 312, NULL, NULL, 'IPAY2022/04/0314', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (336, '2022-04-02 09:32:45', 313, NULL, NULL, 'IPAY2022/04/0315', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (337, '2022-04-02 09:41:02', 314, NULL, NULL, 'IPAY2022/04/0316', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (338, '2022-04-02 09:49:04', 315, NULL, NULL, 'IPAY2022/04/0317', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (339, '2022-04-02 10:17:22', 316, NULL, NULL, 'IPAY2022/04/0318', NULL, 'cash', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (340, '2022-04-02 10:23:20', 317, NULL, NULL, 'IPAY2022/04/0319', NULL, 'cash', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (342, '2022-04-03 01:50:59', 319, NULL, NULL, 'IPAY2022/04/0321', NULL, 'CC', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (343, '2022-04-03 02:04:16', 320, NULL, NULL, 'IPAY2022/04/0322', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (344, '2022-04-03 03:42:40', 321, NULL, NULL, 'IPAY2022/04/0323', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (345, '2022-04-03 04:12:01', 322, NULL, NULL, 'IPAY2022/04/0324', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (346, '2022-04-03 04:14:49', 323, NULL, NULL, 'IPAY2022/04/0325', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (347, '2022-04-03 04:46:53', 325, NULL, NULL, 'IPAY2022/04/0326', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (348, '2022-04-03 05:08:35', 326, NULL, NULL, 'IPAY2022/04/0327', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (349, '2022-04-03 05:16:09', 327, NULL, NULL, 'IPAY2022/04/0328', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (350, '2022-04-03 05:44:01', 328, NULL, NULL, 'IPAY2022/04/0329', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (351, '2022-04-03 06:10:19', 329, NULL, NULL, 'IPAY2022/04/0330', NULL, 'CC', '', '', '', '', '', '', '4650.0000', NULL, 2, NULL, 'received', '', '4650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (352, '2022-04-03 06:26:21', 330, NULL, NULL, 'IPAY2022/04/0331', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (353, '2022-04-03 06:30:07', 331, NULL, NULL, 'IPAY2022/04/0332', NULL, 'cash', '', '', '', '', '', '', '2550.0000', NULL, 2, NULL, 'received', '', '2550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (354, '2022-04-03 06:40:58', 332, NULL, NULL, 'IPAY2022/04/0333', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (355, '2022-04-03 07:20:26', 333, NULL, NULL, 'IPAY2022/04/0334', NULL, 'cash', '', '', '', '', '', '', '360.0000', NULL, 2, NULL, 'received', '', '360.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (356, '2022-04-03 07:40:40', 334, NULL, NULL, 'IPAY2022/04/0335', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (357, '2022-04-03 07:49:59', 335, NULL, NULL, 'IPAY2022/04/0336', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (358, '2022-04-03 07:51:26', 336, NULL, NULL, 'IPAY2022/04/0337', NULL, 'cash', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (359, '2022-04-03 07:53:36', 337, NULL, NULL, 'IPAY2022/04/0338', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (360, '2022-04-03 08:13:54', 338, NULL, NULL, 'IPAY2022/04/0339', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (361, '2022-04-03 08:43:23', 339, NULL, NULL, 'IPAY2022/04/0340', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (362, '2022-04-03 08:59:42', 340, NULL, NULL, 'IPAY2022/04/0341', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (363, '2022-04-03 09:54:00', 341, NULL, NULL, 'IPAY2022/04/0342', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (364, '2022-04-04 02:20:24', 342, NULL, NULL, 'IPAY2022/04/0343', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (365, '2022-04-04 03:21:03', 343, NULL, NULL, 'IPAY2022/04/0344', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (366, '2022-04-04 03:53:49', 344, NULL, NULL, 'IPAY2022/04/0345', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (367, '2022-04-04 05:09:26', 345, NULL, NULL, 'IPAY2022/04/0346', NULL, 'CC', '', '', '', '', '', '', '5850.0000', NULL, 2, NULL, 'received', '', '5850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (368, '2022-04-04 09:57:48', 346, NULL, NULL, 'IPAY2022/04/0347', NULL, 'CC', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (369, '2022-04-05 02:34:12', 347, NULL, NULL, 'IPAY2022/04/0348', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (370, '2022-04-05 03:33:45', 348, NULL, NULL, 'IPAY2022/04/0349', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (371, '2022-04-05 05:57:05', 349, NULL, NULL, 'IPAY2022/04/0350', NULL, 'cash', '', '', '', '', '', '', '1330.0000', NULL, 2, NULL, 'received', '', '1330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (372, '2022-04-05 06:29:14', 350, NULL, NULL, 'IPAY2022/04/0351', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (373, '2022-04-05 08:47:06', 351, NULL, NULL, 'IPAY2022/04/0352', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (374, '2022-04-05 09:57:29', 352, NULL, NULL, 'IPAY2022/04/0353', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (375, '2022-04-06 02:00:29', 353, NULL, NULL, 'IPAY2022/04/0354', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (376, '2022-04-06 04:54:57', 354, NULL, NULL, 'IPAY2022/04/0355', NULL, 'cash', '', '', '', '', '', '', '7800.0000', NULL, 2, NULL, 'received', '', '7800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (377, '2022-04-06 04:57:06', 355, NULL, NULL, 'IPAY2022/04/0356', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (378, '2022-04-06 05:10:48', 356, NULL, NULL, 'IPAY2022/04/0357', NULL, 'CC', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (379, '2022-04-06 08:30:36', 357, NULL, NULL, 'IPAY2022/04/0358', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (380, '2022-04-06 08:57:50', 358, NULL, NULL, 'IPAY2022/04/0359', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (381, '2022-04-06 09:57:37', 359, NULL, NULL, 'IPAY2022/04/0360', NULL, 'CC', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (382, '2022-04-06 10:17:02', 360, NULL, NULL, 'IPAY2022/04/0361', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (383, '2022-04-07 02:22:02', 361, NULL, NULL, 'IPAY2022/04/0362', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (384, '2022-04-07 06:34:16', 362, NULL, NULL, 'IPAY2022/04/0363', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (385, '2022-04-07 07:10:16', 363, NULL, NULL, 'IPAY2022/04/0364', NULL, 'CC', '', '', '', '', '', '', '3300.0000', NULL, 2, NULL, 'received', '', '3300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (386, '2022-04-07 09:03:36', 364, NULL, NULL, 'IPAY2022/04/0365', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (387, '2022-04-07 09:44:51', 365, NULL, NULL, 'IPAY2022/04/0366', NULL, 'cash', '', '', '', '', '', '', '2760.0000', NULL, 2, NULL, 'received', '', '2760.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (388, '2022-04-07 09:51:09', 366, NULL, NULL, 'IPAY2022/04/0367', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (389, '2022-04-08 01:03:21', 367, NULL, NULL, 'IPAY2022/04/0368', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (390, '2022-04-08 02:44:16', 368, NULL, NULL, 'IPAY2022/04/0369', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (391, '2022-04-08 02:59:53', 369, NULL, NULL, 'IPAY2022/04/0370', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (392, '2022-04-08 03:31:14', 370, NULL, NULL, 'IPAY2022/04/0371', NULL, 'CC', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (393, '2022-04-08 03:53:51', 371, NULL, NULL, 'IPAY2022/04/0372', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (394, '2022-04-08 05:35:14', 372, NULL, NULL, 'IPAY2022/04/0373', NULL, 'CC', '', '', '', '', '', '', '4250.0000', NULL, 2, NULL, 'received', '', '4250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (395, '2022-04-08 06:19:52', 373, NULL, NULL, 'IPAY2022/04/0374', NULL, 'cash', '', '', '', '', '', '', '2050.0000', NULL, 2, NULL, 'received', '', '2050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (396, '2022-04-08 09:08:10', 374, NULL, NULL, 'IPAY2022/04/0375', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (397, '2022-04-09 01:26:30', 375, NULL, NULL, 'IPAY2022/04/0376', NULL, 'other', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (398, '2022-04-09 02:46:38', 376, NULL, NULL, 'IPAY2022/04/0377', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (399, '2022-04-09 02:49:15', 377, NULL, NULL, 'IPAY2022/04/0378', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (400, '2022-04-09 02:55:49', 378, NULL, NULL, 'IPAY2022/04/0379', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (401, '2022-04-09 03:05:32', 379, NULL, NULL, 'IPAY2022/04/0380', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (402, '2022-04-09 03:14:06', 380, NULL, NULL, 'IPAY2022/04/0381', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (403, '2022-04-09 03:16:39', 381, NULL, NULL, 'IPAY2022/04/0382', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (404, '2022-04-09 04:50:18', 382, NULL, NULL, 'IPAY2022/04/0383', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (405, '2022-04-09 05:02:28', 383, NULL, NULL, 'IPAY2022/04/0384', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (406, '2022-04-09 05:35:50', 384, NULL, NULL, 'IPAY2022/04/0385', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (407, '2022-04-09 05:48:46', 385, NULL, NULL, 'IPAY2022/04/0386', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (408, '2022-04-09 06:10:40', 386, NULL, NULL, 'IPAY2022/04/0387', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (409, '2022-04-09 06:23:20', 387, NULL, NULL, 'IPAY2022/04/0388', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (410, '2022-04-09 06:29:52', 388, NULL, NULL, 'IPAY2022/04/0389', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (411, '2022-04-09 08:18:30', 389, NULL, NULL, 'IPAY2022/04/0390', NULL, 'cash', '', '', '', '', '', '', '2950.0000', NULL, 2, NULL, 'received', '', '2950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (412, '2022-04-09 08:32:04', 390, NULL, NULL, 'IPAY2022/04/0391', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (413, '2022-04-09 08:36:52', 391, NULL, NULL, 'IPAY2022/04/0392', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (414, '2022-04-09 09:17:58', 392, NULL, NULL, 'IPAY2022/04/0393', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (415, '2022-04-09 09:31:26', 393, NULL, NULL, 'IPAY2022/04/0394', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (416, '2022-04-09 09:33:09', 394, NULL, NULL, 'IPAY2022/04/0395', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (417, '2022-04-09 10:11:37', 395, NULL, NULL, 'IPAY2022/04/0396', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (418, '2022-04-09 10:28:23', 396, NULL, NULL, 'IPAY2022/04/0397', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (419, '2022-04-09 10:54:39', 397, NULL, NULL, 'IPAY2022/04/0398', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (420, '2022-04-09 10:59:52', 398, NULL, NULL, 'IPAY2022/04/0399', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (421, '2022-04-09 11:15:03', 399, NULL, NULL, 'IPAY2022/04/0400', NULL, 'CC', '', '', '', '', '', '', '4050.0000', NULL, 2, NULL, 'received', '', '4050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (422, '2022-04-09 11:30:48', 400, NULL, NULL, 'IPAY2022/04/0401', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (423, '2022-04-09 11:34:10', 401, NULL, NULL, 'IPAY2022/04/0402', NULL, 'cash', '', '', '', '', '', '', '470.0000', NULL, 2, NULL, 'received', '', '470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (424, '2022-04-09 11:40:15', 402, NULL, NULL, 'IPAY2022/04/0403', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (425, '2022-04-10 02:57:54', 403, NULL, NULL, 'IPAY2022/04/0404', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (426, '2022-04-10 02:58:42', 404, NULL, NULL, 'IPAY2022/04/0405', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 2, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (427, '2022-04-10 03:04:19', 405, NULL, NULL, 'IPAY2022/04/0406', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (428, '2022-04-10 03:09:25', 406, NULL, NULL, 'IPAY2022/04/0407', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (429, '2022-04-10 03:22:26', 407, NULL, NULL, 'IPAY2022/04/0408', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (430, '2022-04-10 03:30:12', 408, NULL, NULL, 'IPAY2022/04/0409', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (431, '2022-04-10 03:50:23', 409, NULL, NULL, 'IPAY2022/04/0410', NULL, 'cash', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (432, '2022-04-10 04:18:59', 410, NULL, NULL, 'IPAY2022/04/0411', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (433, '2022-04-10 04:21:52', 411, NULL, NULL, 'IPAY2022/04/0412', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (434, '2022-04-10 04:28:52', 412, NULL, NULL, 'IPAY2022/04/0413', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (435, '2022-04-10 04:46:19', 413, NULL, NULL, 'IPAY2022/04/0414', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (436, '2022-04-10 04:47:53', 414, NULL, NULL, 'IPAY2022/04/0415', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (437, '2022-04-10 04:48:59', 415, NULL, NULL, 'IPAY2022/04/0416', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (438, '2022-04-10 04:54:54', 416, NULL, NULL, 'IPAY2022/04/0417', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (439, '2022-04-10 05:00:00', 417, NULL, NULL, 'IPAY2022/04/0418', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (440, '2022-04-10 05:39:38', 418, NULL, NULL, 'IPAY2022/04/0419', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (441, '2022-04-10 05:48:30', 419, NULL, NULL, 'IPAY2022/04/0420', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (442, '2022-04-10 06:15:20', 420, NULL, NULL, 'IPAY2022/04/0421', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (443, '2022-04-10 06:22:47', 421, NULL, NULL, 'IPAY2022/04/0422', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (444, '2022-04-10 07:09:26', 422, NULL, NULL, 'IPAY2022/04/0423', NULL, 'cash', '', '', '', '', '', '', '4350.0000', NULL, 2, NULL, 'received', '', '4350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (445, '2022-04-10 09:33:51', 423, NULL, NULL, 'IPAY2022/04/0424', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (446, '2022-04-10 10:14:52', 424, NULL, NULL, 'IPAY2022/04/0425', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (447, '2022-04-10 10:45:37', 425, NULL, NULL, 'IPAY2022/04/0426', NULL, 'cash', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (448, '2022-04-10 10:54:50', 426, NULL, NULL, 'IPAY2022/04/0427', NULL, 'cash', '', '', '', '', '', '', '3250.0000', NULL, 2, NULL, 'received', '', '3250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (449, '2022-04-10 11:43:34', 427, NULL, NULL, 'IPAY2022/04/0428', NULL, 'CC', '', '', '', '', '', '', '6000.0000', NULL, 2, NULL, 'received', '', '6000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (450, '2022-04-10 11:45:07', 428, NULL, NULL, 'IPAY2022/04/0429', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (451, '2022-04-11 00:17:23', 429, NULL, NULL, 'IPAY2022/04/0430', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (452, '2022-04-11 01:54:49', 430, NULL, NULL, 'IPAY2022/04/0431', NULL, 'CC', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (453, '2022-04-11 02:50:03', 431, NULL, NULL, 'IPAY2022/04/0432', NULL, 'cash', '', '', '', '', '', '', '6200.0000', NULL, 2, NULL, 'received', '', '6200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (454, '2022-04-11 03:52:09', 432, NULL, NULL, 'IPAY2022/04/0433', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (455, '2022-04-11 05:19:27', 433, NULL, NULL, 'IPAY2022/04/0434', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (456, '2022-04-11 05:50:10', 434, NULL, NULL, 'IPAY2022/04/0435', NULL, 'cash', '', '', '', '', '', '', '980.0000', NULL, 2, NULL, 'received', '', '980.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (457, '2022-04-11 05:51:03', 435, NULL, NULL, 'IPAY2022/04/0436', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (458, '2022-04-11 06:08:32', 436, NULL, NULL, 'IPAY2022/04/0437', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (459, '2022-04-11 07:47:47', 437, NULL, NULL, 'IPAY2022/04/0438', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (460, '2022-04-11 10:44:40', 438, NULL, NULL, 'IPAY2022/04/0439', NULL, 'cash', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (461, '2022-04-11 10:45:33', 439, NULL, NULL, 'IPAY2022/04/0440', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (462, '2022-04-12 03:17:50', 440, NULL, NULL, 'IPAY2022/04/0441', NULL, 'CC', '', '', '', '', '', '', '320.0000', NULL, 2, NULL, 'received', '', '320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (463, '2022-04-12 03:23:22', 441, NULL, NULL, 'IPAY2022/04/0442', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (464, '2022-04-12 03:31:45', 442, NULL, NULL, 'IPAY2022/04/0443', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (465, '2022-04-12 03:53:22', 443, NULL, NULL, 'IPAY2022/04/0444', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (466, '2022-04-12 04:11:12', 444, NULL, NULL, 'IPAY2022/04/0445', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (467, '2022-04-12 05:06:29', 445, NULL, NULL, 'IPAY2022/04/0446', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (468, '2022-04-12 05:44:47', 446, NULL, NULL, 'IPAY2022/04/0447', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (469, '2022-04-12 05:54:10', 447, NULL, NULL, 'IPAY2022/04/0448', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (470, '2022-04-12 05:59:52', 448, NULL, NULL, 'IPAY2022/04/0449', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (471, '2022-04-12 06:08:07', 449, NULL, NULL, 'IPAY2022/04/0450', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (472, '2022-04-12 08:59:26', 450, NULL, NULL, 'IPAY2022/04/0451', NULL, 'CC', '', '', '', '', '', '', '4150.0000', NULL, 2, NULL, 'received', '', '4150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (473, '2022-04-12 10:46:21', 451, NULL, NULL, 'IPAY2022/04/0452', NULL, 'cash', '', '', '', '', '', '', '7800.0000', NULL, 2, NULL, 'received', '', '7800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (474, '2022-04-12 10:50:41', 452, NULL, NULL, 'IPAY2022/04/0453', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (475, '2022-04-13 01:46:28', 453, NULL, NULL, 'IPAY2022/04/0454', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (476, '2022-04-13 04:37:04', 454, NULL, NULL, 'IPAY2022/04/0455', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (477, '2022-04-13 04:58:40', 455, NULL, NULL, 'IPAY2022/04/0456', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (478, '2022-04-13 05:00:26', 456, NULL, NULL, 'IPAY2022/04/0457', NULL, 'cash', '', '', '', '', '', '', '6550.0000', NULL, 2, NULL, 'received', '', '6550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (479, '2022-04-13 05:01:49', 457, NULL, NULL, 'IPAY2022/04/0458', NULL, 'cash', '', '', '', '', '', '', '5000.0000', NULL, 2, NULL, 'received', '', '5000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (480, '2022-04-13 08:19:39', 458, NULL, NULL, 'IPAY2022/04/0459', NULL, 'CC', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (481, '2022-04-13 08:23:03', 459, NULL, NULL, 'IPAY2022/04/0460', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (482, '2022-04-13 08:45:16', 460, NULL, NULL, 'IPAY2022/04/0461', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (483, '2022-04-13 09:33:39', 461, NULL, NULL, 'IPAY2022/04/0462', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (484, '2022-04-13 09:41:45', 462, NULL, NULL, 'IPAY2022/04/0463', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (485, '2022-04-13 10:00:32', 463, NULL, NULL, 'IPAY2022/04/0464', NULL, 'cash', '', '', '', '', '', '', '4900.0000', NULL, 2, NULL, 'received', '', '4900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (486, '2022-04-13 10:27:28', 464, NULL, NULL, 'IPAY2022/04/0465', NULL, 'CC', '', '', '', '', '', '', '5450.0000', NULL, 2, NULL, 'received', '', '5450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (487, '2022-04-14 00:55:47', 465, NULL, NULL, 'IPAY2022/04/0466', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (488, '2022-04-14 02:33:46', 466, NULL, NULL, 'IPAY2022/04/0467', NULL, 'cash', '', '', '', '', '', '', '5500.0000', NULL, 2, NULL, 'received', '', '5500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (489, '2022-04-14 03:20:42', 467, NULL, NULL, 'IPAY2022/04/0468', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (490, '2022-04-14 03:38:40', 468, NULL, NULL, 'IPAY2022/04/0469', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (491, '2022-04-14 06:12:08', 469, NULL, NULL, 'IPAY2022/04/0470', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (492, '2022-04-14 09:33:40', 470, NULL, NULL, 'IPAY2022/04/0471', NULL, 'CC', '', '', '', '', '', '', '8400.0000', NULL, 2, NULL, 'received', '', '8400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (493, '2022-04-14 09:37:21', 471, NULL, NULL, 'IPAY2022/04/0472', NULL, 'cash', '', '', '', '', '', '', '280.0000', NULL, 2, NULL, 'received', '', '280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (494, '2022-04-14 09:41:38', 472, NULL, NULL, 'IPAY2022/04/0473', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (495, '2022-04-14 10:54:09', 473, NULL, NULL, 'IPAY2022/04/0474', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (496, '2022-04-14 10:55:38', 474, NULL, NULL, 'IPAY2022/04/0475', NULL, 'CC', '', '', '', '', '', '', '3300.0000', NULL, 2, NULL, 'received', '', '3300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (497, '2022-04-14 11:08:00', 474, NULL, NULL, 'IPAY2022/04/0476', NULL, 'cash', '', '', '', '', '', 'Visa', '800.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (498, '2022-04-14 11:08:00', 474, NULL, NULL, 'IPAY2022/04/0477', NULL, 'cash', '', '', '', '', '', 'Visa', '800.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (499, '2022-04-14 11:09:00', 474, NULL, NULL, 'IPAY2022/04/0478', NULL, 'cash', '', '', '', '', '', 'Visa', '-3300.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (500, '2022-04-14 11:10:00', 474, NULL, NULL, 'IPAY2022/04/0479', NULL, 'cash', '', '', '', '', '', 'Visa', '-800.0000', NULL, 6, NULL, 'received', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (501, '2022-04-15 01:26:10', 475, NULL, NULL, 'IPAY2022/04/0480', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (502, '2022-04-15 02:49:32', 476, NULL, NULL, 'IPAY2022/04/0481', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (503, '2022-04-15 02:50:13', 477, NULL, NULL, 'IPAY2022/04/0482', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (504, '2022-04-15 02:52:15', 478, NULL, NULL, 'IPAY2022/04/0483', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (505, '2022-04-15 03:21:21', 479, NULL, NULL, 'IPAY2022/04/0484', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (506, '2022-04-15 03:38:30', 480, NULL, NULL, 'IPAY2022/04/0485', NULL, 'cash', '', '', '', '', '', '', '4550.0000', NULL, 2, NULL, 'received', '', '4550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (507, '2022-04-15 03:46:29', 481, NULL, NULL, 'IPAY2022/04/0486', NULL, 'cash', '', '', '', '', '', '', '2800.0000', NULL, 2, NULL, 'received', '', '2800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (508, '2022-04-15 04:14:56', 482, NULL, NULL, 'IPAY2022/04/0487', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (509, '2022-04-15 04:21:52', 483, NULL, NULL, 'IPAY2022/04/0488', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (510, '2022-04-15 04:35:38', 484, NULL, NULL, 'IPAY2022/04/0489', NULL, 'cash', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (511, '2022-04-15 05:25:14', 485, NULL, NULL, 'IPAY2022/04/0490', NULL, 'cash', '', '', '', '', '', '', '1190.0000', NULL, 2, NULL, 'received', '', '1190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (512, '2022-04-15 05:43:25', 486, NULL, NULL, 'IPAY2022/04/0491', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (513, '2022-04-15 06:23:05', 487, NULL, NULL, 'IPAY2022/04/0492', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (514, '2022-04-15 08:37:42', 488, NULL, NULL, 'IPAY2022/04/0493', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (515, '2022-04-15 09:06:41', 489, NULL, NULL, 'IPAY2022/04/0494', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (516, '2022-04-15 09:49:02', 490, NULL, NULL, 'IPAY2022/04/0495', NULL, 'CC', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (517, '2022-04-15 10:05:02', 491, NULL, NULL, 'IPAY2022/04/0496', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (518, '2022-04-15 10:41:14', 492, NULL, NULL, 'IPAY2022/04/0497', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (519, '2022-04-15 10:56:30', 493, NULL, NULL, 'IPAY2022/04/0498', NULL, 'CC', '', '', '', '', '', '', '3950.0000', NULL, 2, NULL, 'received', '', '3950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (520, '2022-04-15 11:31:39', 494, NULL, NULL, 'IPAY2022/04/0499', NULL, 'CC', '', '', '', '', '', '', '4350.0000', NULL, 2, NULL, 'received', '', '4350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (521, '2022-04-16 00:43:33', 495, NULL, NULL, 'IPAY2022/04/0500', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (522, '2022-04-16 01:01:04', 496, NULL, NULL, 'IPAY2022/04/0501', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (523, '2022-04-16 01:28:47', 497, NULL, NULL, 'IPAY2022/04/0502', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (524, '2022-04-16 03:08:29', 498, NULL, NULL, 'IPAY2022/04/0503', NULL, 'other', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (525, '2022-04-16 03:33:45', 499, NULL, NULL, 'IPAY2022/04/0504', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (526, '2022-04-16 04:58:05', 500, NULL, NULL, 'IPAY2022/04/0505', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (527, '2022-04-16 05:04:33', 501, NULL, NULL, 'IPAY2022/04/0506', NULL, 'cash', '', '', '', '', '', '', '840.0000', NULL, 2, NULL, 'received', '', '840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (528, '2022-04-16 05:13:51', 502, NULL, NULL, 'IPAY2022/04/0507', NULL, 'cash', '', '', '', '', '', '', '460.0000', NULL, 2, NULL, 'received', '', '460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (529, '2022-04-16 05:18:53', 503, NULL, NULL, 'IPAY2022/04/0508', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (530, '2022-04-16 05:24:57', 504, NULL, NULL, 'IPAY2022/04/0509', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (531, '2022-04-16 05:26:58', 505, NULL, NULL, 'IPAY2022/04/0510', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (532, '2022-04-16 05:56:05', 506, NULL, NULL, 'IPAY2022/04/0511', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (533, '2022-04-16 06:15:28', 507, NULL, NULL, 'IPAY2022/04/0512', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (534, '2022-04-16 06:24:58', 508, NULL, NULL, 'IPAY2022/04/0513', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (535, '2022-04-16 06:34:29', 509, NULL, NULL, 'IPAY2022/04/0514', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (536, '2022-04-16 07:56:31', 510, NULL, NULL, 'IPAY2022/04/0515', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (537, '2022-04-16 10:08:13', 511, NULL, NULL, 'IPAY2022/04/0516', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (538, '2022-04-16 10:17:27', 512, NULL, NULL, 'IPAY2022/04/0517', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (539, '2022-04-16 10:52:53', 513, NULL, NULL, 'IPAY2022/04/0518', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (540, '2022-04-16 11:06:07', 514, NULL, NULL, 'IPAY2022/04/0519', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (541, '2022-04-16 12:01:21', 515, NULL, NULL, 'IPAY2022/04/0520', NULL, 'cash', '', '', '', '', '', '', '3950.0000', NULL, 2, NULL, 'received', '', '3950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (542, '2022-04-17 00:55:29', 516, NULL, NULL, 'IPAY2022/04/0521', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (543, '2022-04-17 01:58:29', 517, NULL, NULL, 'IPAY2022/04/0522', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (544, '2022-04-17 02:06:03', 518, NULL, NULL, 'IPAY2022/04/0523', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (545, '2022-04-17 02:23:11', 519, NULL, NULL, 'IPAY2022/04/0524', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (546, '2022-04-17 02:35:07', 520, NULL, NULL, 'IPAY2022/04/0525', NULL, 'CC', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (547, '2022-04-17 03:51:52', 521, NULL, NULL, 'IPAY2022/04/0526', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (548, '2022-04-17 04:11:36', 522, NULL, NULL, 'IPAY2022/04/0527', NULL, 'CC', '', '', '', '', '', '', '3050.0000', NULL, 2, NULL, 'received', '', '3050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (549, '2022-04-17 04:27:16', 523, NULL, NULL, 'IPAY2022/04/0528', NULL, 'cash', '', '', '', '', '', '', '15500.0000', NULL, 2, NULL, 'received', '', '15500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (550, '2022-04-17 04:28:15', 524, NULL, NULL, 'IPAY2022/04/0529', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (551, '2022-04-17 04:46:52', 525, NULL, NULL, 'IPAY2022/04/0530', NULL, 'CC', '', '', '', '', '', '', '7500.0000', NULL, 2, NULL, 'received', '', '7500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (552, '2022-04-17 05:11:16', 526, NULL, NULL, 'IPAY2022/04/0531', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (553, '2022-04-17 05:32:30', 527, NULL, NULL, 'IPAY2022/04/0532', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (554, '2022-04-17 05:37:31', 528, NULL, NULL, 'IPAY2022/04/0533', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (555, '2022-04-17 05:38:45', 529, NULL, NULL, 'IPAY2022/04/0534', NULL, 'CC', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (556, '2022-04-17 05:56:53', 530, NULL, NULL, 'IPAY2022/04/0535', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (557, '2022-04-17 06:27:15', 531, NULL, NULL, 'IPAY2022/04/0536', NULL, 'CC', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (558, '2022-04-17 06:44:13', 532, NULL, NULL, 'IPAY2022/04/0537', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (559, '2022-04-17 06:53:02', 533, NULL, NULL, 'IPAY2022/04/0538', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (560, '2022-04-17 09:18:35', 534, NULL, NULL, 'IPAY2022/04/0539', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (561, '2022-04-17 09:35:06', 535, NULL, NULL, 'IPAY2022/04/0540', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (562, '2022-04-17 09:51:38', 536, NULL, NULL, 'IPAY2022/04/0541', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (563, '2022-04-17 10:06:37', 537, NULL, NULL, 'IPAY2022/04/0542', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (564, '2022-04-17 10:08:29', 538, NULL, NULL, 'IPAY2022/04/0543', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (565, '2022-04-17 10:21:31', 539, NULL, NULL, 'IPAY2022/04/0544', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (566, '2022-04-17 11:24:13', 540, NULL, NULL, 'IPAY2022/04/0545', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (567, '2022-04-17 12:05:44', 541, NULL, NULL, 'IPAY2022/04/0546', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (568, '2022-04-18 02:18:37', 542, NULL, NULL, 'IPAY2022/04/0547', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (569, '2022-04-18 03:43:13', 543, NULL, NULL, 'IPAY2022/04/0548', NULL, 'CC', '', '', '', '', '', '', '5500.0000', NULL, 2, NULL, 'received', '', '5500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (570, '2022-04-18 04:08:02', 544, NULL, NULL, 'IPAY2022/04/0549', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (571, '2022-04-18 05:22:18', 545, NULL, NULL, 'IPAY2022/04/0550', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (572, '2022-04-18 05:38:00', 546, NULL, NULL, 'IPAY2022/04/0551', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (573, '2022-04-18 06:57:22', 547, NULL, NULL, 'IPAY2022/04/0552', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (574, '2022-04-18 07:03:38', 548, NULL, NULL, 'IPAY2022/04/0553', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (575, '2022-04-18 07:50:54', 549, NULL, NULL, 'IPAY2022/04/0554', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (576, '2022-04-18 08:40:30', 550, NULL, NULL, 'IPAY2022/04/0555', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (577, '2022-04-18 09:34:30', 551, NULL, NULL, 'IPAY2022/04/0556', NULL, 'CC', '', '', '', '', '', '', '10180.0000', NULL, 2, NULL, 'received', '', '10180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (578, '2022-04-18 10:54:07', 552, NULL, NULL, 'IPAY2022/04/0557', NULL, 'CC', '', '', '', '', '', '', '7200.0000', NULL, 2, NULL, 'received', '', '7200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (579, '2022-04-18 11:15:35', 553, NULL, NULL, 'IPAY2022/04/0558', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (580, '2022-04-18 11:33:43', 554, NULL, NULL, 'IPAY2022/04/0559', NULL, 'cash', '', '', '', '', '', '', '4300.0000', NULL, 2, NULL, 'received', '', '4300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (581, '2022-04-18 11:40:28', 555, NULL, NULL, 'IPAY2022/04/0560', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (582, '2022-04-19 01:50:49', 556, NULL, NULL, 'IPAY2022/04/0561', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (583, '2022-04-19 02:14:48', 557, NULL, NULL, 'IPAY2022/04/0562', NULL, 'CC', '', '', '', '', '', '', '3900.0000', NULL, 2, NULL, 'received', '', '3900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (584, '2022-04-19 02:30:29', 558, NULL, NULL, 'IPAY2022/04/0563', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (585, '2022-04-19 05:07:20', 560, NULL, NULL, 'IPAY2022/04/0564', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (586, '2022-04-19 05:25:40', 561, NULL, NULL, 'IPAY2022/04/0565', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (587, '2022-04-19 05:29:38', 562, NULL, NULL, 'IPAY2022/04/0566', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (588, '2022-04-19 05:43:56', 563, NULL, NULL, 'IPAY2022/04/0567', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (589, '2022-04-19 06:40:32', 564, NULL, NULL, 'IPAY2022/04/0568', NULL, 'cash', '', '', '', '', '', '', '1660.0000', NULL, 2, NULL, 'received', '', '1660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (590, '2022-04-19 09:02:02', 565, NULL, NULL, 'IPAY2022/04/0569', NULL, 'other', '', '', '', '', '', '', '5800.0000', NULL, 2, NULL, 'received', '', '5800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (591, '2022-04-19 09:05:33', 566, NULL, NULL, 'IPAY2022/04/0570', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (592, '2022-04-19 09:14:28', 567, NULL, NULL, 'IPAY2022/04/0571', NULL, 'cash', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (593, '2022-04-19 11:14:31', 568, NULL, NULL, 'IPAY2022/04/0572', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (594, '2022-04-19 11:15:16', 569, NULL, NULL, 'IPAY2022/04/0573', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (595, '2022-04-19 11:16:36', 570, NULL, NULL, 'IPAY2022/04/0574', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (596, '2022-04-20 02:08:14', 571, NULL, NULL, 'IPAY2022/04/0575', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (597, '2022-04-20 02:31:11', 572, NULL, NULL, 'IPAY2022/04/0576', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (598, '2022-04-20 03:28:28', 573, NULL, NULL, 'IPAY2022/04/0577', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (599, '2022-04-20 04:29:37', 574, NULL, NULL, 'IPAY2022/04/0578', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (600, '2022-04-20 06:05:38', 575, NULL, NULL, 'IPAY2022/04/0579', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (601, '2022-04-20 08:18:23', 576, NULL, NULL, 'IPAY2022/04/0580', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (602, '2022-04-20 08:47:44', 577, NULL, NULL, 'IPAY2022/04/0581', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (603, '2022-04-20 10:15:22', 578, NULL, NULL, 'IPAY2022/04/0582', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (604, '2022-04-20 11:45:57', 579, NULL, NULL, 'IPAY2022/04/0583', NULL, 'cash', '', '', '', '', '', '', '360.0000', NULL, 2, NULL, 'received', '', '360.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (605, '2022-04-20 11:49:41', 580, NULL, NULL, 'IPAY2022/04/0584', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (606, '2022-04-21 01:37:17', 581, NULL, NULL, 'IPAY2022/04/0585', NULL, 'cash', '', '', '', '', '', '', '8880.0000', NULL, 2, NULL, 'received', '', '8880.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (607, '2022-04-21 02:59:21', 582, NULL, NULL, 'IPAY2022/04/0586', NULL, 'cash', '', '', '', '', '', '', '2350.0000', NULL, 2, NULL, 'received', '', '2350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (608, '2022-04-21 04:00:41', 583, NULL, NULL, 'IPAY2022/04/0587', NULL, 'cash', '', '', '', '', '', '', '3750.0000', NULL, 2, NULL, 'received', '', '3750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (609, '2022-04-21 05:34:22', 584, NULL, NULL, 'IPAY2022/04/0588', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 2, NULL, 'received', '', '220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (610, '2022-04-21 05:41:44', 585, NULL, NULL, 'IPAY2022/04/0589', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (611, '2022-04-21 06:26:01', 586, NULL, NULL, 'IPAY2022/04/0590', NULL, 'cash', '', '', '', '', '', '', '2930.0000', NULL, 2, NULL, 'received', '', '2930.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (612, '2022-04-21 06:33:15', 587, NULL, NULL, 'IPAY2022/04/0591', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (613, '2022-04-21 06:58:29', 588, NULL, NULL, 'IPAY2022/04/0592', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (614, '2022-04-21 08:14:25', 589, NULL, NULL, 'IPAY2022/04/0593', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (615, '2022-04-21 11:08:20', 590, NULL, NULL, 'IPAY2022/04/0594', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (616, '2022-04-21 11:24:15', 591, NULL, NULL, 'IPAY2022/04/0595', NULL, 'CC', '', '', '', '', '', '', '6820.0000', NULL, 2, NULL, 'received', '', '6820.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (617, '2022-04-21 11:28:27', 592, NULL, NULL, 'IPAY2022/04/0596', NULL, 'CC', '', '', '', '', '', '', '7270.0000', NULL, 2, NULL, 'received', '', '7270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (618, '2022-04-22 00:24:06', 593, NULL, NULL, 'IPAY2022/04/0597', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (619, '2022-04-22 00:49:15', 594, NULL, NULL, 'IPAY2022/04/0598', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (620, '2022-04-22 02:36:14', 595, NULL, NULL, 'IPAY2022/04/0599', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (621, '2022-04-22 03:39:57', 596, NULL, NULL, 'IPAY2022/04/0600', NULL, 'cash', '', '', '', '', '', '', '820.0000', NULL, 2, NULL, 'received', '', '820.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (622, '2022-04-22 04:51:38', 597, NULL, NULL, 'IPAY2022/04/0601', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (623, '2022-04-22 05:34:53', 598, NULL, NULL, 'IPAY2022/04/0602', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (624, '2022-04-22 05:38:52', 599, NULL, NULL, 'IPAY2022/04/0603', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (625, '2022-04-22 05:39:41', 600, NULL, NULL, 'IPAY2022/04/0604', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (626, '2022-04-22 06:04:06', 601, NULL, NULL, 'IPAY2022/04/0605', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (627, '2022-04-22 10:18:52', 602, NULL, NULL, 'IPAY2022/04/0606', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (628, '2022-04-23 02:06:23', 603, NULL, NULL, 'IPAY2022/04/0607', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (629, '2022-04-23 02:42:09', 604, NULL, NULL, 'IPAY2022/04/0608', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (630, '2022-04-23 02:50:25', 605, NULL, NULL, 'IPAY2022/04/0609', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (631, '2022-04-23 02:59:05', 606, NULL, NULL, 'IPAY2022/04/0610', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (632, '2022-04-23 03:09:27', 607, NULL, NULL, 'IPAY2022/04/0611', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (633, '2022-04-23 03:41:47', 608, NULL, NULL, 'IPAY2022/04/0612', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (634, '2022-04-23 04:45:00', 609, NULL, NULL, 'IPAY2022/04/0613', NULL, 'CC', '', '', '', '', '', '', '4790.0000', NULL, 2, NULL, 'received', '', '4790.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (635, '2022-04-23 05:07:03', 610, NULL, NULL, 'IPAY2022/04/0614', NULL, 'CC', '', '', '', '', '', '', '710.0000', NULL, 2, NULL, 'received', '', '710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (636, '2022-04-23 06:07:28', 611, NULL, NULL, 'IPAY2022/04/0615', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (637, '2022-04-23 06:10:47', 612, NULL, NULL, 'IPAY2022/04/0616', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (638, '2022-04-23 07:07:31', 613, NULL, NULL, 'IPAY2022/04/0617', NULL, 'CC', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (639, '2022-04-23 08:58:09', 614, NULL, NULL, 'IPAY2022/04/0618', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (640, '2022-04-23 09:58:22', 615, NULL, NULL, 'IPAY2022/04/0619', NULL, 'CC', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (641, '2022-04-23 10:15:15', 616, NULL, NULL, 'IPAY2022/04/0620', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (642, '2022-04-23 11:37:41', 617, NULL, NULL, 'IPAY2022/04/0621', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (643, '2022-04-23 11:38:09', 618, NULL, NULL, 'IPAY2022/04/0622', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (644, '2022-04-23 11:55:27', 619, NULL, NULL, 'IPAY2022/04/0623', NULL, 'CC', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (645, '2022-04-23 11:58:43', 620, NULL, NULL, 'IPAY2022/04/0624', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (646, '2022-04-23 12:00:10', 621, NULL, NULL, 'IPAY2022/04/0625', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (647, '2022-04-23 12:27:23', 622, NULL, NULL, 'IPAY2022/04/0626', NULL, 'cash', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (648, '2022-04-24 01:19:40', 623, NULL, NULL, 'IPAY2022/04/0627', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (649, '2022-04-24 01:36:17', 624, NULL, NULL, 'IPAY2022/04/0628', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (650, '2022-04-24 03:36:32', 625, NULL, NULL, 'IPAY2022/04/0629', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (651, '2022-04-24 03:42:29', 626, NULL, NULL, 'IPAY2022/04/0630', NULL, 'CC', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (652, '2022-04-24 05:00:49', 627, NULL, NULL, 'IPAY2022/04/0631', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (653, '2022-04-24 05:25:07', 628, NULL, NULL, 'IPAY2022/04/0632', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (654, '2022-04-24 05:26:03', 629, NULL, NULL, 'IPAY2022/04/0633', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (655, '2022-04-24 05:28:36', 630, NULL, NULL, 'IPAY2022/04/0634', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (656, '2022-04-24 05:43:09', 631, NULL, NULL, 'IPAY2022/04/0635', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 2, NULL, 'received', '', '220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (657, '2022-04-24 06:03:34', 632, NULL, NULL, 'IPAY2022/04/0636', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (658, '2022-04-24 06:14:02', 633, NULL, NULL, 'IPAY2022/04/0637', NULL, 'CC', '', '', '', '', '', '', '2950.0000', NULL, 2, NULL, 'received', '', '2950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (659, '2022-04-24 06:43:07', 634, NULL, NULL, 'IPAY2022/04/0638', NULL, 'cash', '', '', '', '', '', '', '2350.0000', NULL, 2, NULL, 'received', '', '2350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (660, '2022-04-24 06:53:38', 635, NULL, NULL, 'IPAY2022/04/0639', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (661, '2022-04-24 08:35:28', 636, NULL, NULL, 'IPAY2022/04/0640', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (662, '2022-04-24 09:32:33', 637, NULL, NULL, 'IPAY2022/04/0641', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (663, '2022-04-24 10:09:54', 638, NULL, NULL, 'IPAY2022/04/0642', NULL, 'CC', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (664, '2022-04-24 11:31:15', 639, NULL, NULL, 'IPAY2022/04/0643', NULL, 'cash', '', '', '', '', '', '', '4300.0000', NULL, 2, NULL, 'received', '', '4300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (665, '2022-04-24 11:56:53', 640, NULL, NULL, 'IPAY2022/04/0644', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (666, '2022-04-24 12:07:28', 641, NULL, NULL, 'IPAY2022/04/0645', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (667, '2022-04-25 00:15:59', 642, NULL, NULL, 'IPAY2022/04/0646', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (668, '2022-04-25 00:39:25', 643, NULL, NULL, 'IPAY2022/04/0647', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (669, '2022-04-25 01:12:00', 644, NULL, NULL, 'IPAY2022/04/0648', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (670, '2022-04-25 01:13:05', 645, NULL, NULL, 'IPAY2022/04/0649', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (671, '2022-04-25 01:21:09', 646, NULL, NULL, 'IPAY2022/04/0650', NULL, 'cash', '', '', '', '', '', '', '2580.0000', NULL, 2, NULL, 'received', '', '2580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (672, '2022-04-25 03:56:04', 647, NULL, NULL, 'IPAY2022/04/0651', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (673, '2022-04-25 04:55:09', 648, NULL, NULL, 'IPAY2022/04/0652', NULL, 'cash', '', '', '', '', '', '', '1590.0000', NULL, 2, NULL, 'received', '', '1590.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (674, '2022-04-25 05:27:13', 649, NULL, NULL, 'IPAY2022/04/0653', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (675, '2022-04-25 06:07:01', 650, NULL, NULL, 'IPAY2022/04/0654', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (676, '2022-04-25 06:10:52', 651, NULL, NULL, 'IPAY2022/04/0655', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (677, '2022-04-25 08:54:35', 655, NULL, NULL, 'IPAY2022/04/0656', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (678, '2022-04-25 09:53:00', 656, NULL, NULL, 'IPAY2022/04/0657', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (679, '2022-04-25 10:07:54', 657, NULL, NULL, 'IPAY2022/04/0658', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (680, '2022-04-25 10:50:10', 658, NULL, NULL, 'IPAY2022/04/0659', NULL, 'cash', '', '', '', '', '', '', '5600.0000', NULL, 2, NULL, 'received', '', '5600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (681, '2022-04-25 11:10:45', 659, NULL, NULL, 'IPAY2022/04/0660', NULL, 'cash', '', '', '', '', '', '', '3150.0000', NULL, 2, NULL, 'received', '', '3150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (682, '2022-04-25 11:25:20', 660, NULL, NULL, 'IPAY2022/04/0661', NULL, 'CC', '', '', '', '', '', '', '6100.0000', NULL, 2, NULL, 'received', '', '6100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (683, '2022-04-25 11:38:58', 661, NULL, NULL, 'IPAY2022/04/0662', NULL, 'CC', '', '', '', '', '', '', '3600.0000', NULL, 2, NULL, 'received', '', '3600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (684, '2022-04-25 11:43:33', 662, NULL, NULL, 'IPAY2022/04/0663', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (685, '2022-04-26 02:17:43', 663, NULL, NULL, 'IPAY2022/04/0664', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (686, '2022-04-26 04:30:27', 664, NULL, NULL, 'IPAY2022/04/0665', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (687, '2022-04-26 05:39:50', 665, NULL, NULL, 'IPAY2022/04/0666', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (688, '2022-04-26 05:42:27', 666, NULL, NULL, 'IPAY2022/04/0667', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (689, '2022-04-26 06:44:09', 667, NULL, NULL, 'IPAY2022/04/0668', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (690, '2022-04-26 08:49:12', 668, NULL, NULL, 'IPAY2022/04/0669', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (691, '2022-04-26 09:33:02', 669, NULL, NULL, 'IPAY2022/04/0670', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 2, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (692, '2022-04-26 09:48:20', 670, NULL, NULL, 'IPAY2022/04/0671', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (693, '2022-04-26 10:10:22', 671, NULL, NULL, 'IPAY2022/04/0672', NULL, 'CC', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (694, '2022-04-26 10:22:22', 672, NULL, NULL, 'IPAY2022/04/0673', NULL, 'cash', '', '', '', '', '', '', '5000.0000', NULL, 2, NULL, 'received', '', '5000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (695, '2022-04-26 11:29:22', 673, NULL, NULL, 'IPAY2022/04/0674', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (696, '2022-04-26 11:32:19', 674, NULL, NULL, 'IPAY2022/04/0675', NULL, 'cash', '', '', '', '', '', '', '2800.0000', NULL, 2, NULL, 'received', '', '2800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (697, '2022-04-26 11:47:30', 675, NULL, NULL, 'IPAY2022/04/0676', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (698, '2022-04-26 11:50:06', 676, NULL, NULL, 'IPAY2022/04/0677', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (699, '2022-04-27 01:26:31', 677, NULL, NULL, 'IPAY2022/04/0678', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (700, '2022-04-27 01:42:42', 678, NULL, NULL, 'IPAY2022/04/0679', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (701, '2022-04-27 02:39:24', 679, NULL, NULL, 'IPAY2022/04/0680', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (702, '2022-04-27 03:22:01', 680, NULL, NULL, 'IPAY2022/04/0681', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (703, '2022-04-27 03:55:32', 681, NULL, NULL, 'IPAY2022/04/0682', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (704, '2022-04-27 04:55:19', 682, NULL, NULL, 'IPAY2022/04/0683', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (705, '2022-04-27 05:58:35', 683, NULL, NULL, 'IPAY2022/04/0684', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (706, '2022-04-27 06:20:08', 684, NULL, NULL, 'IPAY2022/04/0685', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (707, '2022-04-27 08:45:41', 685, NULL, NULL, 'IPAY2022/04/0686', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (708, '2022-04-27 09:02:25', 686, NULL, NULL, 'IPAY2022/04/0687', NULL, 'CC', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (709, '2022-04-27 09:11:30', 687, NULL, NULL, 'IPAY2022/04/0688', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (710, '2022-04-27 10:32:22', 688, NULL, NULL, 'IPAY2022/04/0689', NULL, 'CC', '', '', '', '', '', '', '6000.0000', NULL, 2, NULL, 'received', '', '6000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (711, '2022-04-27 10:56:13', 689, NULL, NULL, 'IPAY2022/04/0690', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (712, '2022-04-27 11:07:31', 690, NULL, NULL, 'IPAY2022/04/0691', NULL, 'CC', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (713, '2022-04-27 11:19:11', 691, NULL, NULL, 'IPAY2022/04/0692', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (714, '2022-04-27 12:02:29', 692, NULL, NULL, 'IPAY2022/04/0693', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (715, '2022-04-27 12:13:51', 693, NULL, NULL, 'IPAY2022/04/0694', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (716, '2022-04-28 01:26:56', 694, NULL, NULL, 'IPAY2022/04/0695', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (717, '2022-04-28 02:12:45', 695, NULL, NULL, 'IPAY2022/04/0696', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (718, '2022-04-28 02:20:36', 696, NULL, NULL, 'IPAY2022/04/0697', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (719, '2022-04-28 03:52:35', 697, NULL, NULL, 'IPAY2022/04/0698', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (720, '2022-04-28 04:12:12', 698, NULL, NULL, 'IPAY2022/04/0699', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (721, '2022-04-28 05:02:08', 699, NULL, NULL, 'IPAY2022/04/0700', NULL, 'cash', '', '', '', '', '', '', '4520.0000', NULL, 2, NULL, 'received', '', '4520.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (722, '2022-04-28 05:11:16', 700, NULL, NULL, 'IPAY2022/04/0701', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (723, '2022-04-28 05:23:37', 701, NULL, NULL, 'IPAY2022/04/0702', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (724, '2022-04-28 08:37:57', 702, NULL, NULL, 'IPAY2022/04/0703', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (725, '2022-04-28 08:49:32', 703, NULL, NULL, 'IPAY2022/04/0704', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (726, '2022-04-28 09:44:28', 704, NULL, NULL, 'IPAY2022/04/0705', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (727, '2022-04-28 11:30:03', 705, NULL, NULL, 'IPAY2022/04/0706', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (728, '2022-04-28 11:46:33', 706, NULL, NULL, 'IPAY2022/04/0707', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (729, '2022-04-29 04:00:39', 707, NULL, NULL, 'IPAY2022/04/0708', NULL, 'cash', '', '', '', '', '', '', '3300.0000', NULL, 2, NULL, 'received', '', '3300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (730, '2022-04-29 04:24:30', 708, NULL, NULL, 'IPAY2022/04/0709', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (731, '2022-04-29 04:33:19', 709, NULL, NULL, 'IPAY2022/04/0710', NULL, 'CC', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (732, '2022-04-29 05:10:35', 710, NULL, NULL, 'IPAY2022/04/0711', NULL, 'other', '', '', '', '', '', '', '7600.0000', NULL, 2, NULL, 'received', '', '7600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (733, '2022-04-29 05:12:02', 711, NULL, NULL, 'IPAY2022/04/0712', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (734, '2022-04-29 05:24:28', 712, NULL, NULL, 'IPAY2022/04/0713', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (735, '2022-04-29 05:27:19', 713, NULL, NULL, 'IPAY2022/04/0714', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (736, '2022-04-29 05:59:52', 714, NULL, NULL, 'IPAY2022/04/0715', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (737, '2022-04-29 06:06:59', 715, NULL, NULL, 'IPAY2022/04/0716', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (738, '2022-04-29 06:32:51', 716, NULL, NULL, 'IPAY2022/04/0717', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (739, '2022-04-29 06:37:44', 717, NULL, NULL, 'IPAY2022/04/0718', NULL, 'cash', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (740, '2022-04-29 08:03:34', 718, NULL, NULL, 'IPAY2022/04/0719', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (741, '2022-04-29 08:41:22', 719, NULL, NULL, 'IPAY2022/04/0720', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (742, '2022-04-29 09:49:36', 720, NULL, NULL, 'IPAY2022/04/0721', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (743, '2022-04-29 10:42:08', 721, NULL, NULL, 'IPAY2022/04/0722', NULL, 'CC', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (744, '2022-04-29 10:51:02', 722, NULL, NULL, 'IPAY2022/04/0723', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (745, '2022-04-29 11:44:00', NULL, NULL, 152, 'POP2022/04/0022', NULL, 'cash', '', '', '', '', '', 'Visa', '18875.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (746, '2022-04-29 11:45:00', NULL, NULL, 150, 'POP2022/04/0023', NULL, 'cash', '', '', '', '', '', 'Visa', '115495.0000', NULL, 6, NULL, 'sent', '', '0.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (747, '2022-04-29 12:49:13', 723, NULL, NULL, 'IPAY2022/04/0724', NULL, 'CC', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (748, '2022-04-30 01:30:29', 724, NULL, NULL, 'IPAY2022/04/0725', NULL, 'cash', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (749, '2022-04-30 01:31:28', 725, NULL, NULL, 'IPAY2022/04/0726', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (750, '2022-04-30 02:45:03', 726, NULL, NULL, 'IPAY2022/04/0727', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (751, '2022-04-30 03:40:11', 727, NULL, NULL, 'IPAY2022/04/0728', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (752, '2022-04-30 05:11:29', 728, NULL, NULL, 'IPAY2022/04/0729', NULL, 'cash', '', '', '', '', '', '', '25000.0000', NULL, 2, NULL, 'received', '', '25000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (753, '2022-04-30 05:18:16', 729, NULL, NULL, 'IPAY2022/04/0730', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (754, '2022-04-30 05:55:35', 730, NULL, NULL, 'IPAY2022/04/0731', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (755, '2022-04-30 06:06:21', 731, NULL, NULL, 'IPAY2022/04/0732', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (756, '2022-04-30 06:31:36', 732, NULL, NULL, 'IPAY2022/04/0733', NULL, 'CC', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (757, '2022-04-30 06:37:02', 733, NULL, NULL, 'IPAY2022/04/0734', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (758, '2022-04-30 07:22:09', 734, NULL, NULL, 'IPAY2022/04/0735', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (759, '2022-04-30 08:51:13', 735, NULL, NULL, 'IPAY2022/04/0736', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (760, '2022-04-30 09:05:17', 736, NULL, NULL, 'IPAY2022/04/0737', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (761, '2022-04-30 09:24:28', 737, NULL, NULL, 'IPAY2022/04/0738', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (762, '2022-04-30 09:37:49', 738, NULL, NULL, 'IPAY2022/04/0739', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (763, '2022-04-30 09:43:05', 739, NULL, NULL, 'IPAY2022/04/0740', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (764, '2022-04-30 09:57:11', 740, NULL, NULL, 'IPAY2022/04/0741', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (765, '2022-04-30 10:34:54', 741, NULL, NULL, 'IPAY2022/04/0742', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (766, '2022-04-30 10:36:46', 742, NULL, NULL, 'IPAY2022/04/0743', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (767, '2022-04-30 10:57:45', 743, NULL, NULL, 'IPAY2022/04/0744', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (768, '2022-04-30 11:38:44', 744, NULL, NULL, 'IPAY2022/04/0745', NULL, 'cash', '', '', '', '', '', '', '3300.0000', NULL, 2, NULL, 'received', '', '3300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (769, '2022-04-30 11:51:51', 745, NULL, NULL, 'IPAY2022/04/0746', NULL, 'cash', '', '', '', '', '', '', '8500.0000', NULL, 2, NULL, 'received', '', '8500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (770, '2022-04-30 11:53:41', 746, NULL, NULL, 'IPAY2022/04/0747', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (771, '2022-04-30 12:08:59', 747, NULL, NULL, 'IPAY2022/04/0748', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (772, '2022-04-30 12:38:14', 748, NULL, NULL, 'IPAY2022/04/0749', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (773, '2022-04-30 12:48:12', 749, NULL, NULL, 'IPAY2022/04/0750', NULL, 'CC', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (774, '2022-04-30 13:38:16', 750, NULL, NULL, 'IPAY2022/04/0751', NULL, 'other', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (775, '2022-05-01 01:18:22', 751, NULL, NULL, 'IPAY2022/04/0752', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (776, '2022-05-01 01:20:40', 752, NULL, NULL, 'IPAY2022/04/0753', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (777, '2022-05-01 01:27:00', 753, NULL, NULL, 'IPAY2022/04/0754', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (778, '2022-05-01 01:52:05', 754, NULL, NULL, 'IPAY2022/04/0755', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (779, '2022-05-01 01:56:02', 755, NULL, NULL, 'IPAY2022/04/0756', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (780, '2022-05-01 02:29:54', 756, NULL, NULL, 'IPAY2022/04/0757', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (781, '2022-05-01 02:39:07', 757, NULL, NULL, 'IPAY2022/04/0758', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (782, '2022-05-01 02:53:03', 758, NULL, NULL, 'IPAY2022/04/0759', NULL, 'cash', '', '', '', '', '', '', '710.0000', NULL, 2, NULL, 'received', '', '710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (783, '2022-05-01 03:04:27', 759, NULL, NULL, 'IPAY2022/04/0760', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (784, '2022-05-01 03:47:14', 760, NULL, NULL, 'IPAY2022/04/0761', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (785, '2022-05-01 04:10:28', 761, NULL, NULL, 'IPAY2022/04/0762', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (786, '2022-05-01 04:21:00', 762, NULL, NULL, 'IPAY2022/04/0763', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (787, '2022-05-01 04:30:41', 763, NULL, NULL, 'IPAY2022/04/0764', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (788, '2022-05-01 04:59:41', 764, NULL, NULL, 'IPAY2022/04/0765', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (789, '2022-05-01 05:15:05', 765, NULL, NULL, 'IPAY2022/04/0766', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (790, '2022-05-01 05:37:09', 766, NULL, NULL, 'IPAY2022/04/0767', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (791, '2022-05-01 05:45:09', 767, NULL, NULL, 'IPAY2022/04/0768', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (792, '2022-05-01 05:47:20', 768, NULL, NULL, 'IPAY2022/04/0769', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (793, '2022-05-01 05:56:32', 769, NULL, NULL, 'IPAY2022/04/0770', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (794, '2022-05-01 06:25:57', 770, NULL, NULL, 'IPAY2022/04/0771', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (795, '2022-05-01 06:57:22', 771, NULL, NULL, 'IPAY2022/04/0772', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (796, '2022-05-01 08:19:57', 772, NULL, NULL, 'IPAY2022/04/0773', NULL, 'CC', '', '', '', '', '', '', '4050.0000', NULL, 2, NULL, 'received', '', '4050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (797, '2022-05-01 08:26:26', 773, NULL, NULL, 'IPAY2022/04/0774', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (798, '2022-05-01 08:42:09', 774, NULL, NULL, 'IPAY2022/04/0775', NULL, 'other', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (799, '2022-05-01 09:22:43', 775, NULL, NULL, 'IPAY2022/04/0776', NULL, 'CC', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (800, '2022-05-01 09:25:22', 776, NULL, NULL, 'IPAY2022/04/0777', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (801, '2022-05-01 09:27:17', 777, NULL, NULL, 'IPAY2022/04/0778', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (802, '2022-05-01 09:35:25', 778, NULL, NULL, 'IPAY2022/04/0779', NULL, 'other', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (803, '2022-05-01 09:49:37', 779, NULL, NULL, 'IPAY2022/04/0780', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (804, '2022-05-01 10:21:32', 780, NULL, NULL, 'IPAY2022/04/0781', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (805, '2022-05-01 10:42:56', 781, NULL, NULL, 'IPAY2022/04/0782', NULL, 'CC', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (806, '2022-05-01 11:03:23', 782, NULL, NULL, 'IPAY2022/04/0783', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (807, '2022-05-01 11:17:42', 783, NULL, NULL, 'IPAY2022/04/0784', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (808, '2022-05-01 12:18:50', 784, NULL, NULL, 'IPAY2022/04/0785', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (809, '2022-05-01 13:38:57', 785, NULL, NULL, 'IPAY2022/05/0786', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (810, '2022-05-01 13:40:50', 786, NULL, NULL, 'IPAY2022/05/0787', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (811, '2022-05-01 23:35:23', 787, NULL, NULL, 'IPAY2022/05/0788', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (812, '2022-05-02 00:47:18', 788, NULL, NULL, 'IPAY2022/05/0789', NULL, 'CC', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (813, '2022-05-02 00:47:44', 789, NULL, NULL, 'IPAY2022/05/0790', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (814, '2022-05-02 01:30:49', 790, NULL, NULL, 'IPAY2022/05/0791', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (815, '2022-05-02 01:57:01', 791, NULL, NULL, 'IPAY2022/05/0792', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (816, '2022-05-02 03:00:14', 792, NULL, NULL, 'IPAY2022/05/0793', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (817, '2022-05-02 03:29:27', 793, NULL, NULL, 'IPAY2022/05/0794', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (818, '2022-05-02 03:43:07', 794, NULL, NULL, 'IPAY2022/05/0795', NULL, 'CC', '', '', '', '', '', '', '5510.0000', NULL, 2, NULL, 'received', '', '5510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (819, '2022-05-02 04:00:39', 795, NULL, NULL, 'IPAY2022/05/0796', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (820, '2022-05-02 04:27:26', 796, NULL, NULL, 'IPAY2022/05/0797', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (821, '2022-05-02 04:43:55', 797, NULL, NULL, 'IPAY2022/05/0798', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (822, '2022-05-02 04:55:18', 798, NULL, NULL, 'IPAY2022/05/0799', NULL, 'cash', '', '', '', '', '', '', '3800.0000', NULL, 2, NULL, 'received', '', '3800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (823, '2022-05-02 05:01:01', 799, NULL, NULL, 'IPAY2022/05/0800', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (824, '2022-05-02 05:02:41', 800, NULL, NULL, 'IPAY2022/05/0801', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (825, '2022-05-02 05:18:30', 801, NULL, NULL, 'IPAY2022/05/0802', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (826, '2022-05-02 05:29:58', 802, NULL, NULL, 'IPAY2022/05/0803', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (827, '2022-05-02 05:45:06', 803, NULL, NULL, 'IPAY2022/05/0804', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (828, '2022-05-02 06:37:06', 804, NULL, NULL, 'IPAY2022/05/0805', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (829, '2022-05-02 06:45:45', 805, NULL, NULL, 'IPAY2022/05/0806', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (830, '2022-05-02 07:01:53', 806, NULL, NULL, 'IPAY2022/05/0807', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (831, '2022-05-02 08:30:40', 807, NULL, NULL, 'IPAY2022/05/0808', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (832, '2022-05-02 09:06:21', 808, NULL, NULL, 'IPAY2022/05/0809', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (833, '2022-05-02 09:19:35', 809, NULL, NULL, 'IPAY2022/05/0810', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (834, '2022-05-02 09:27:45', 810, NULL, NULL, 'IPAY2022/05/0811', NULL, 'cash', '', '', '', '', '', '', '960.0000', NULL, 2, NULL, 'received', '', '960.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (835, '2022-05-02 10:05:07', 811, NULL, NULL, 'IPAY2022/05/0812', NULL, 'CC', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (836, '2022-05-02 10:10:59', 812, NULL, NULL, 'IPAY2022/05/0813', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (837, '2022-05-02 10:36:17', 813, NULL, NULL, 'IPAY2022/05/0814', NULL, 'CC', '', '', '', '', '', '', '3650.0000', NULL, 2, NULL, 'received', '', '3650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (838, '2022-05-02 10:43:41', 814, NULL, NULL, 'IPAY2022/05/0815', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (839, '2022-05-02 11:57:31', 815, NULL, NULL, 'IPAY2022/05/0816', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (840, '2022-05-02 12:39:48', 816, NULL, NULL, 'IPAY2022/05/0817', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (841, '2022-05-02 23:42:15', 817, NULL, NULL, 'IPAY2022/05/0818', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (842, '2022-05-03 00:40:19', 818, NULL, NULL, 'IPAY2022/05/0819', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (843, '2022-05-03 01:03:48', 819, NULL, NULL, 'IPAY2022/05/0820', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (844, '2022-05-03 01:04:57', 820, NULL, NULL, 'IPAY2022/05/0821', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (845, '2022-05-03 01:20:13', 821, NULL, NULL, 'IPAY2022/05/0822', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (846, '2022-05-03 01:50:13', 822, NULL, NULL, 'IPAY2022/05/0823', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (847, '2022-05-03 03:00:18', 823, NULL, NULL, 'IPAY2022/05/0824', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (848, '2022-05-03 03:11:06', 824, NULL, NULL, 'IPAY2022/05/0825', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (849, '2022-05-03 03:44:53', 825, NULL, NULL, 'IPAY2022/05/0826', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (850, '2022-05-03 03:58:52', 826, NULL, NULL, 'IPAY2022/05/0827', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (851, '2022-05-03 04:06:42', 827, NULL, NULL, 'IPAY2022/05/0828', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (852, '2022-05-03 04:29:32', 828, NULL, NULL, 'IPAY2022/05/0829', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (853, '2022-05-03 04:33:09', 829, NULL, NULL, 'IPAY2022/05/0830', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (854, '2022-05-03 04:34:11', 830, NULL, NULL, 'IPAY2022/05/0831', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (855, '2022-05-03 05:31:50', 831, NULL, NULL, 'IPAY2022/05/0832', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (856, '2022-05-03 05:48:44', 832, NULL, NULL, 'IPAY2022/05/0833', NULL, 'CC', '', '', '', '', '', '', '6800.0000', NULL, 2, NULL, 'received', '', '6800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (857, '2022-05-03 05:58:18', 833, NULL, NULL, 'IPAY2022/05/0834', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (858, '2022-05-03 06:00:10', 834, NULL, NULL, 'IPAY2022/05/0835', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (859, '2022-05-03 06:01:45', 835, NULL, NULL, 'IPAY2022/05/0836', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (860, '2022-05-03 06:16:37', 836, NULL, NULL, 'IPAY2022/05/0837', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (861, '2022-05-03 07:56:35', 837, NULL, NULL, 'IPAY2022/05/0838', NULL, 'cash', '', '', '', '', '', '', '4200.0000', NULL, 2, NULL, 'received', '', '4200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (862, '2022-05-03 09:19:00', 838, NULL, NULL, 'IPAY2022/05/0839', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (863, '2022-05-03 09:21:38', 839, NULL, NULL, 'IPAY2022/05/0840', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (864, '2022-05-03 09:42:53', 840, NULL, NULL, 'IPAY2022/05/0841', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (865, '2022-05-03 09:56:05', 841, NULL, NULL, 'IPAY2022/05/0842', NULL, 'CC', '', '', '', '', '', '', '3450.0000', NULL, 2, NULL, 'received', '', '3450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (866, '2022-05-03 10:16:06', 842, NULL, NULL, 'IPAY2022/05/0843', NULL, 'cash', '', '', '', '', '', '', '280.0000', NULL, 2, NULL, 'received', '', '280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (867, '2022-05-03 10:25:08', 843, NULL, NULL, 'IPAY2022/05/0844', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (897, '2022-05-08 00:56:54', 873, NULL, NULL, 'IPAY2022/05/0874', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (869, '2022-05-03 11:24:55', 845, NULL, NULL, 'IPAY2022/05/0846', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (870, '2022-05-03 11:32:04', 846, NULL, NULL, 'IPAY2022/05/0847', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (871, '2022-05-03 11:46:13', 847, NULL, NULL, 'IPAY2022/05/0848', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (872, '2022-05-03 11:49:49', 848, NULL, NULL, 'IPAY2022/05/0849', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (873, '2022-05-03 12:14:33', 849, NULL, NULL, 'IPAY2022/05/0850', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (874, '2022-05-03 12:17:19', 850, NULL, NULL, 'IPAY2022/05/0851', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (875, '2022-05-03 12:58:04', 851, NULL, NULL, 'IPAY2022/05/0852', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (876, '2022-05-03 13:28:07', 852, NULL, NULL, 'IPAY2022/05/0853', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (877, '2022-05-07 00:45:23', 853, NULL, NULL, 'IPAY2022/05/0854', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (878, '2022-05-07 04:54:46', 854, NULL, NULL, 'IPAY2022/05/0855', NULL, 'CC', '', '', '', '', '', '', '5250.0000', NULL, 2, NULL, 'received', '', '5250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (879, '2022-05-07 04:56:55', 855, NULL, NULL, 'IPAY2022/05/0856', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (880, '2022-05-07 05:42:43', 856, NULL, NULL, 'IPAY2022/05/0857', NULL, 'CC', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (881, '2022-05-07 06:07:26', 857, NULL, NULL, 'IPAY2022/05/0858', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (882, '2022-05-07 06:22:44', 858, NULL, NULL, 'IPAY2022/05/0859', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (883, '2022-05-07 06:27:43', 859, NULL, NULL, 'IPAY2022/05/0860', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (884, '2022-05-07 07:00:57', 860, NULL, NULL, 'IPAY2022/05/0861', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (885, '2022-05-07 07:16:33', 861, NULL, NULL, 'IPAY2022/05/0862', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (886, '2022-05-07 07:17:50', 862, NULL, NULL, 'IPAY2022/05/0863', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (887, '2022-05-07 07:59:44', 863, NULL, NULL, 'IPAY2022/05/0864', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (888, '2022-05-07 08:07:46', 864, NULL, NULL, 'IPAY2022/05/0865', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (889, '2022-05-07 08:10:10', 865, NULL, NULL, 'IPAY2022/05/0866', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (890, '2022-05-07 08:42:38', 866, NULL, NULL, 'IPAY2022/05/0867', NULL, 'other', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (891, '2022-05-07 08:45:39', 867, NULL, NULL, 'IPAY2022/05/0868', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (892, '2022-05-07 08:58:48', 868, NULL, NULL, 'IPAY2022/05/0869', NULL, 'CC', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (893, '2022-05-07 09:08:50', 869, NULL, NULL, 'IPAY2022/05/0870', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (894, '2022-05-07 09:26:29', 870, NULL, NULL, 'IPAY2022/05/0871', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (895, '2022-05-07 09:54:52', 871, NULL, NULL, 'IPAY2022/05/0872', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (896, '2022-05-07 09:55:41', 872, NULL, NULL, 'IPAY2022/05/0873', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (898, '2022-05-08 01:54:42', 874, NULL, NULL, 'IPAY2022/05/0875', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (899, '2022-05-08 02:19:30', 875, NULL, NULL, 'IPAY2022/05/0876', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (900, '2022-05-08 02:43:20', 876, NULL, NULL, 'IPAY2022/05/0877', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (901, '2022-05-08 04:53:43', 877, NULL, NULL, 'IPAY2022/05/0878', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (902, '2022-05-08 05:17:52', 878, NULL, NULL, 'IPAY2022/05/0879', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (903, '2022-05-08 06:48:46', 879, NULL, NULL, 'IPAY2022/05/0880', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (904, '2022-05-08 06:55:27', 880, NULL, NULL, 'IPAY2022/05/0881', NULL, 'CC', '', '', '', '', '', '', '5400.0000', NULL, 2, NULL, 'received', '', '5400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (905, '2022-05-08 07:04:41', 881, NULL, NULL, 'IPAY2022/05/0882', NULL, 'CC', '', '', '', '', '', '', '5850.0000', NULL, 2, NULL, 'received', '', '5850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (906, '2022-05-08 07:47:49', 882, NULL, NULL, 'IPAY2022/05/0883', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (907, '2022-05-08 08:05:37', 883, NULL, NULL, 'IPAY2022/05/0884', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (908, '2022-05-08 08:08:55', 884, NULL, NULL, 'IPAY2022/05/0885', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (909, '2022-05-08 08:37:20', 885, NULL, NULL, 'IPAY2022/05/0886', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (910, '2022-05-08 08:56:56', 886, NULL, NULL, 'IPAY2022/05/0887', NULL, 'CC', '', '', '', '', '', '', '8300.0000', NULL, 2, NULL, 'received', '', '8300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (911, '2022-05-08 09:32:51', 887, NULL, NULL, 'IPAY2022/05/0888', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (912, '2022-05-09 02:01:29', 888, NULL, NULL, 'IPAY2022/05/0889', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (913, '2022-05-09 02:02:30', 889, NULL, NULL, 'IPAY2022/05/0890', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (914, '2022-05-09 02:07:46', 890, NULL, NULL, 'IPAY2022/05/0891', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (915, '2022-05-09 02:31:52', 891, NULL, NULL, 'IPAY2022/05/0892', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (916, '2022-05-09 02:48:59', 892, NULL, NULL, 'IPAY2022/05/0893', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (917, '2022-05-09 05:38:20', 893, NULL, NULL, 'IPAY2022/05/0894', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (918, '2022-05-09 05:41:52', 894, NULL, NULL, 'IPAY2022/05/0895', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (919, '2022-05-09 06:43:58', 895, NULL, NULL, 'IPAY2022/05/0896', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (920, '2022-05-09 07:45:18', 896, NULL, NULL, 'IPAY2022/05/0897', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (921, '2022-05-09 09:12:53', 897, NULL, NULL, 'IPAY2022/05/0898', NULL, 'other', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (922, '2022-05-09 09:21:23', 898, NULL, NULL, 'IPAY2022/05/0899', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (923, '2022-05-10 03:22:27', 899, NULL, NULL, 'IPAY2022/05/0900', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (924, '2022-05-10 04:39:07', 900, NULL, NULL, 'IPAY2022/05/0901', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (925, '2022-05-10 04:39:57', 901, NULL, NULL, 'IPAY2022/05/0902', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (926, '2022-05-10 05:56:40', 902, NULL, NULL, 'IPAY2022/05/0903', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (927, '2022-05-10 06:08:03', 903, NULL, NULL, 'IPAY2022/05/0904', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (928, '2022-05-10 06:34:17', 904, NULL, NULL, 'IPAY2022/05/0905', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (929, '2022-05-10 07:11:39', 905, NULL, NULL, 'IPAY2022/05/0906', NULL, 'other', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (930, '2022-05-10 07:14:42', 906, NULL, NULL, 'IPAY2022/05/0907', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (931, '2022-05-10 07:21:38', 907, NULL, NULL, 'IPAY2022/05/0908', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (932, '2022-05-10 08:20:29', 908, NULL, NULL, 'IPAY2022/05/0909', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (933, '2022-05-10 08:34:43', 909, NULL, NULL, 'IPAY2022/05/0910', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (934, '2022-05-10 09:11:55', 910, NULL, NULL, 'IPAY2022/05/0911', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (935, '2022-05-10 09:45:39', 911, NULL, NULL, 'IPAY2022/05/0912', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (936, '2022-05-11 01:49:31', 912, NULL, NULL, 'IPAY2022/05/0913', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (937, '2022-05-11 01:53:30', 913, NULL, NULL, 'IPAY2022/05/0914', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (938, '2022-05-11 02:41:04', 914, NULL, NULL, 'IPAY2022/05/0915', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (939, '2022-05-11 02:42:37', 915, NULL, NULL, 'IPAY2022/05/0916', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (940, '2022-05-11 03:36:33', 916, NULL, NULL, 'IPAY2022/05/0917', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (941, '2022-05-11 05:07:48', 917, NULL, NULL, 'IPAY2022/05/0918', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (942, '2022-05-11 05:13:45', 918, NULL, NULL, 'IPAY2022/05/0919', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (943, '2022-05-11 05:33:01', 919, NULL, NULL, 'IPAY2022/05/0920', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (944, '2022-05-11 07:58:02', 920, NULL, NULL, 'IPAY2022/05/0921', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (945, '2022-05-11 09:37:24', 921, NULL, NULL, 'IPAY2022/05/0922', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (946, '2022-05-11 09:59:54', 922, NULL, NULL, 'IPAY2022/05/0923', NULL, 'CC', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (947, '2022-05-12 02:33:17', 923, NULL, NULL, 'IPAY2022/05/0924', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (948, '2022-05-12 02:35:03', 924, NULL, NULL, 'IPAY2022/05/0925', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (949, '2022-05-12 08:18:45', 925, NULL, NULL, 'IPAY2022/05/0926', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (950, '2022-05-13 03:18:17', 926, NULL, NULL, 'IPAY2022/05/0927', NULL, 'CC', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (951, '2022-05-13 03:59:43', 927, NULL, NULL, 'IPAY2022/05/0928', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (952, '2022-05-13 04:29:50', 928, NULL, NULL, 'IPAY2022/05/0929', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (953, '2022-05-13 07:58:49', 929, NULL, NULL, 'IPAY2022/05/0930', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (954, '2022-05-13 08:24:36', 930, NULL, NULL, 'IPAY2022/05/0931', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (955, '2022-05-13 09:07:22', 931, NULL, NULL, 'IPAY2022/05/0932', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (956, '2022-05-13 09:22:35', 932, NULL, NULL, 'IPAY2022/05/0933', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (957, '2022-05-13 10:27:00', 933, NULL, NULL, 'IPAY2022/05/0934', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (958, '2022-05-14 03:16:10', 934, NULL, NULL, 'IPAY2022/05/0935', NULL, 'cash', '', '', '', '', '', '', '2060.0000', NULL, 2, NULL, 'received', '', '2060.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (959, '2022-05-14 04:02:45', 935, NULL, NULL, 'IPAY2022/05/0936', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (960, '2022-05-14 05:32:39', 936, NULL, NULL, 'IPAY2022/05/0937', NULL, 'cash', '', '', '', '', '', '', '5500.0000', NULL, 2, NULL, 'received', '', '5500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (961, '2022-05-14 05:49:07', 937, NULL, NULL, 'IPAY2022/05/0938', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (962, '2022-05-14 06:40:03', 938, NULL, NULL, 'IPAY2022/05/0939', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (963, '2022-05-14 07:56:02', 939, NULL, NULL, 'IPAY2022/05/0940', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (964, '2022-05-14 08:56:44', 940, NULL, NULL, 'IPAY2022/05/0941', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (965, '2022-05-14 09:36:41', 941, NULL, NULL, 'IPAY2022/05/0942', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (966, '2022-05-14 09:39:19', 942, NULL, NULL, 'IPAY2022/05/0943', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (967, '2022-05-14 09:44:40', 943, NULL, NULL, 'IPAY2022/05/0944', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (968, '2022-05-14 10:09:51', 944, NULL, NULL, 'IPAY2022/05/0945', NULL, 'cash', '', '', '', '', '', '', '2260.0000', NULL, 2, NULL, 'received', '', '2260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (969, '2022-05-14 10:16:21', 945, NULL, NULL, 'IPAY2022/05/0946', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (970, '2022-05-14 10:37:35', 946, NULL, NULL, 'IPAY2022/05/0947', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (971, '2022-05-15 01:28:44', 947, NULL, NULL, 'IPAY2022/05/0948', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (972, '2022-05-15 02:35:41', 948, NULL, NULL, 'IPAY2022/05/0949', NULL, 'CC', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (973, '2022-05-15 04:26:41', 950, NULL, NULL, 'IPAY2022/05/0950', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (974, '2022-05-15 05:24:03', 951, NULL, NULL, 'IPAY2022/05/0951', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (975, '2022-05-15 06:07:05', 952, NULL, NULL, 'IPAY2022/05/0952', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (976, '2022-05-15 07:01:50', 953, NULL, NULL, 'IPAY2022/05/0953', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (977, '2022-05-15 07:06:25', 954, NULL, NULL, 'IPAY2022/05/0954', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (978, '2022-05-15 07:07:55', 955, NULL, NULL, 'IPAY2022/05/0955', NULL, 'cash', '', '', '', '', '', '', '4500.0000', NULL, 2, NULL, 'received', '', '4500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (979, '2022-05-15 07:13:48', 956, NULL, NULL, 'IPAY2022/05/0956', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (980, '2022-05-15 07:34:21', 957, NULL, NULL, 'IPAY2022/05/0957', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (981, '2022-05-15 09:19:00', 958, NULL, NULL, 'IPAY2022/05/0958', NULL, 'CC', '', '', '', '', '', '', '5400.0000', NULL, 2, NULL, 'received', '', '5400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (982, '2022-05-15 09:20:54', 959, NULL, NULL, 'IPAY2022/05/0959', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (983, '2022-05-15 10:25:59', 960, NULL, NULL, 'IPAY2022/05/0960', NULL, 'CC', '', '', '', '', '', '', '6100.0000', NULL, 2, NULL, 'received', '', '6100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (984, '2022-05-15 10:28:55', 961, NULL, NULL, 'IPAY2022/05/0961', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (985, '2022-05-15 10:30:53', 962, NULL, NULL, 'IPAY2022/05/0962', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (986, '2022-05-16 03:43:48', 963, NULL, NULL, 'IPAY2022/05/0963', NULL, 'cash', '', '', '', '', '', '', '6400.0000', NULL, 2, NULL, 'received', '', '6400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (987, '2022-05-16 03:47:00', 964, NULL, NULL, 'IPAY2022/05/0964', NULL, 'CC', '', '', '', '', '', '', '3050.0000', NULL, 2, NULL, 'received', '', '3050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (988, '2022-05-16 03:48:11', 965, NULL, NULL, 'IPAY2022/05/0965', NULL, 'cash', '', '', '', '', '', '', '480.0000', NULL, 2, NULL, 'received', '', '480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (994, '2022-05-16 07:05:15', 971, NULL, NULL, 'IPAY2022/05/0971', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (990, '2022-05-16 04:16:48', 967, NULL, NULL, 'IPAY2022/05/0967', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (991, '2022-05-16 04:20:50', 968, NULL, NULL, 'IPAY2022/05/0968', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (992, '2022-05-16 04:21:24', 969, NULL, NULL, 'IPAY2022/05/0969', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 2, NULL, 'received', '', '220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (993, '2022-05-16 04:37:17', 970, NULL, NULL, 'IPAY2022/05/0970', NULL, 'cash', '', '', '', '', '', '', '1910.0000', NULL, 2, NULL, 'received', '', '1910.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (995, '2022-05-16 07:31:59', 972, NULL, NULL, 'IPAY2022/05/0972', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (996, '2022-05-16 08:23:19', 973, NULL, NULL, 'IPAY2022/05/0973', NULL, 'CC', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (997, '2022-05-16 09:31:45', 974, NULL, NULL, 'IPAY2022/05/0974', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (998, '2022-05-16 09:39:41', 975, NULL, NULL, 'IPAY2022/05/0975', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (999, '2022-05-16 09:43:51', 976, NULL, NULL, 'IPAY2022/05/0976', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1000, '2022-05-16 09:50:51', 977, NULL, NULL, 'IPAY2022/05/0977', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1001, '2022-05-16 10:31:07', 978, NULL, NULL, 'IPAY2022/05/0978', NULL, 'cash', '', '', '', '', '', '', '8500.0000', NULL, 2, NULL, 'received', '', '8500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1002, '2022-05-16 10:40:44', 979, NULL, NULL, 'IPAY2022/05/0979', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1003, '2022-05-16 10:42:45', 980, NULL, NULL, 'IPAY2022/05/0980', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1004, '2022-05-17 01:26:45', 981, NULL, NULL, 'IPAY2022/05/0981', NULL, 'other', '', '', '', '', '', '', '8140.0000', NULL, 2, NULL, 'received', '', '8140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1005, '2022-05-17 01:32:01', 982, NULL, NULL, 'IPAY2022/05/0982', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1006, '2022-05-17 04:10:10', 983, NULL, NULL, 'IPAY2022/05/0983', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1007, '2022-05-17 05:29:43', 984, NULL, NULL, 'IPAY2022/05/0984', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1008, '2022-05-17 07:19:49', 985, NULL, NULL, 'IPAY2022/05/0985', NULL, 'cash', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1009, '2022-05-17 07:31:57', 986, NULL, NULL, 'IPAY2022/05/0986', NULL, 'cash', '', '', '', '', '', '', '6150.0000', NULL, 2, NULL, 'received', '', '6150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1010, '2022-05-17 08:33:27', 987, NULL, NULL, 'IPAY2022/05/0987', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1011, '2022-05-17 09:27:48', 988, NULL, NULL, 'IPAY2022/05/0988', NULL, 'CC', '', '', '', '', '', '', '12410.0000', NULL, 2, NULL, 'received', '', '12410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1012, '2022-05-17 09:58:49', 989, NULL, NULL, 'IPAY2022/05/0989', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1013, '2022-05-17 10:02:01', 990, NULL, NULL, 'IPAY2022/05/0990', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1014, '2022-05-17 10:08:43', 991, NULL, NULL, 'IPAY2022/05/0991', NULL, 'cash', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1015, '2022-05-17 10:13:48', 992, NULL, NULL, 'IPAY2022/05/0992', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1016, '2022-05-18 00:58:21', 993, NULL, NULL, 'IPAY2022/05/0993', NULL, 'cash', '', '', '', '', '', '', '480.0000', NULL, 2, NULL, 'received', '', '480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1017, '2022-05-18 03:52:34', 994, NULL, NULL, 'IPAY2022/05/0994', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1018, '2022-05-18 05:21:38', 995, NULL, NULL, 'IPAY2022/05/0995', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1019, '2022-05-18 05:50:26', 996, NULL, NULL, 'IPAY2022/05/0996', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1020, '2022-05-18 05:50:47', 997, NULL, NULL, 'IPAY2022/05/0997', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1021, '2022-05-18 06:25:45', 998, NULL, NULL, 'IPAY2022/05/0998', NULL, 'CC', '', '', '', '', '', '', '5050.0000', NULL, 2, NULL, 'received', '', '5050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1022, '2022-05-18 08:11:19', 999, NULL, NULL, 'IPAY2022/05/0999', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1023, '2022-05-18 10:19:58', 1000, NULL, NULL, 'IPAY2022/05/1000', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1024, '2022-05-19 01:51:25', 1001, NULL, NULL, 'IPAY2022/05/1001', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1025, '2022-05-19 08:00:22', 1002, NULL, NULL, 'IPAY2022/05/1002', NULL, 'CC', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1026, '2022-05-20 00:14:44', 1003, NULL, NULL, 'IPAY2022/05/1003', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1027, '2022-05-20 01:59:27', 1004, NULL, NULL, 'IPAY2022/05/1004', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1028, '2022-05-20 02:00:45', 1005, NULL, NULL, 'IPAY2022/05/1005', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1029, '2022-05-20 02:11:20', 1006, NULL, NULL, 'IPAY2022/05/1006', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1030, '2022-05-20 04:44:46', 1007, NULL, NULL, 'IPAY2022/05/1007', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1031, '2022-05-20 04:55:34', 1008, NULL, NULL, 'IPAY2022/05/1008', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1032, '2022-05-20 05:42:44', 1009, NULL, NULL, 'IPAY2022/05/1009', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1033, '2022-05-20 06:54:53', 1010, NULL, NULL, 'IPAY2022/05/1010', NULL, 'cash', '', '', '', '', '', '', '280.0000', NULL, 2, NULL, 'received', '', '280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1034, '2022-05-20 08:43:53', 1011, NULL, NULL, 'IPAY2022/05/1011', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1035, '2022-05-20 09:17:53', 1012, NULL, NULL, 'IPAY2022/05/1012', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1036, '2022-05-21 02:13:36', 1013, NULL, NULL, 'IPAY2022/05/1013', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1037, '2022-05-21 02:31:42', 1014, NULL, NULL, 'IPAY2022/05/1014', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1038, '2022-05-21 05:19:43', 1015, NULL, NULL, 'IPAY2022/05/1015', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1039, '2022-05-21 05:20:23', 1016, NULL, NULL, 'IPAY2022/05/1016', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1040, '2022-05-21 06:28:57', 1017, NULL, NULL, 'IPAY2022/05/1017', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1041, '2022-05-21 06:30:57', 1018, NULL, NULL, 'IPAY2022/05/1018', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1042, '2022-05-21 06:53:11', 1019, NULL, NULL, 'IPAY2022/05/1019', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1043, '2022-05-21 07:17:12', 1020, NULL, NULL, 'IPAY2022/05/1020', NULL, 'CC', '', '', '', '', '', '', '6000.0000', NULL, 2, NULL, 'received', '', '6000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1044, '2022-05-21 07:19:24', 1021, NULL, NULL, 'IPAY2022/05/1021', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1045, '2022-05-21 07:22:18', 1022, NULL, NULL, 'IPAY2022/05/1022', NULL, 'CC', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1046, '2022-05-21 08:04:09', 1023, NULL, NULL, 'IPAY2022/05/1023', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1047, '2022-05-21 08:42:06', 1024, NULL, NULL, 'IPAY2022/05/1024', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1048, '2022-05-21 09:01:55', 1025, NULL, NULL, 'IPAY2022/05/1025', NULL, 'CC', '', '', '', '', '', '', '11500.0000', NULL, 2, NULL, 'received', '', '11500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1049, '2022-05-21 09:18:19', 1026, NULL, NULL, 'IPAY2022/05/1026', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1050, '2022-05-21 09:36:55', 1027, NULL, NULL, 'IPAY2022/05/1027', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1051, '2022-05-21 10:30:13', 1028, NULL, NULL, 'IPAY2022/05/1028', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1052, '2022-05-21 10:48:13', 1029, NULL, NULL, 'IPAY2022/05/1029', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1053, '2022-05-21 10:50:43', 1030, NULL, NULL, 'IPAY2022/05/1030', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1054, '2022-05-21 11:25:21', 1031, NULL, NULL, 'IPAY2022/05/1031', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1055, '2022-05-22 01:10:38', 1032, NULL, NULL, 'IPAY2022/05/1032', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1056, '2022-05-22 02:54:28', 1033, NULL, NULL, 'IPAY2022/05/1033', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1057, '2022-05-22 03:10:58', 1034, NULL, NULL, 'IPAY2022/05/1034', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1058, '2022-05-22 05:58:47', 1035, NULL, NULL, 'IPAY2022/05/1035', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1059, '2022-05-22 06:48:10', 1036, NULL, NULL, 'IPAY2022/05/1036', NULL, 'cash', '', '', '', '', '', '', '270.0000', NULL, 2, NULL, 'received', '', '270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1067, '2022-05-22 10:45:11', 1044, NULL, NULL, 'IPAY2022/05/1044', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1061, '2022-05-22 07:35:28', 1038, NULL, NULL, 'IPAY2022/05/1038', NULL, 'other', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1062, '2022-05-22 07:57:49', 1039, NULL, NULL, 'IPAY2022/05/1039', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1063, '2022-05-22 08:09:22', 1040, NULL, NULL, 'IPAY2022/05/1040', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1064, '2022-05-22 08:15:56', 1041, NULL, NULL, 'IPAY2022/05/1041', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1065, '2022-05-22 08:20:36', 1042, NULL, NULL, 'IPAY2022/05/1042', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1066, '2022-05-22 10:19:37', 1043, NULL, NULL, 'IPAY2022/05/1043', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1068, '2022-05-23 00:09:10', 1045, NULL, NULL, 'IPAY2022/05/1045', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1069, '2022-05-23 02:06:07', 1046, NULL, NULL, 'IPAY2022/05/1046', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1070, '2022-05-23 05:31:59', 1047, NULL, NULL, 'IPAY2022/05/1047', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1071, '2022-05-23 05:50:20', 1048, NULL, NULL, 'IPAY2022/05/1048', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1072, '2022-05-23 07:06:55', 1049, NULL, NULL, 'IPAY2022/05/1049', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1073, '2022-05-23 07:18:07', 1050, NULL, NULL, 'IPAY2022/05/1050', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1074, '2022-05-23 07:33:14', 1051, NULL, NULL, 'IPAY2022/05/1051', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1075, '2022-05-23 08:41:07', 1052, NULL, NULL, 'IPAY2022/05/1052', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1076, '2022-05-23 09:34:11', 1053, NULL, NULL, 'IPAY2022/05/1053', NULL, 'cash', '', '', '', '', '', '', '5000.0000', NULL, 2, NULL, 'received', '', '5000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1077, '2022-05-23 09:56:40', 1054, NULL, NULL, 'IPAY2022/05/1054', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1078, '2022-05-24 01:20:42', 1055, NULL, NULL, 'IPAY2022/05/1055', NULL, 'cash', '', '', '', '', '', '', '30.0000', NULL, 2, NULL, 'received', '', '30.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1079, '2022-05-24 02:02:44', 1056, NULL, NULL, 'IPAY2022/05/1056', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1080, '2022-05-24 02:52:57', 1057, NULL, NULL, 'IPAY2022/05/1057', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1081, '2022-05-24 06:13:10', 1058, NULL, NULL, 'IPAY2022/05/1058', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1082, '2022-05-24 07:36:39', 1059, NULL, NULL, 'IPAY2022/05/1059', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1083, '2022-05-24 07:45:27', 1060, NULL, NULL, 'IPAY2022/05/1060', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1084, '2022-05-24 08:14:38', 1061, NULL, NULL, 'IPAY2022/05/1061', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1085, '2022-05-24 08:53:21', 1062, NULL, NULL, 'IPAY2022/05/1062', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1086, '2022-05-24 10:15:08', 1063, NULL, NULL, 'IPAY2022/05/1063', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1087, '2022-05-25 00:48:52', 1064, NULL, NULL, 'IPAY2022/05/1064', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1088, '2022-05-25 01:52:51', 1065, NULL, NULL, 'IPAY2022/05/1065', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1089, '2022-05-25 05:50:06', 1066, NULL, NULL, 'IPAY2022/05/1066', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1090, '2022-05-25 07:08:11', 1067, NULL, NULL, 'IPAY2022/05/1067', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1091, '2022-05-25 07:14:25', 1068, NULL, NULL, 'IPAY2022/05/1068', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1092, '2022-05-25 08:15:36', 1069, NULL, NULL, 'IPAY2022/05/1069', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1093, '2022-05-25 08:16:44', 1070, NULL, NULL, 'IPAY2022/05/1070', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1094, '2022-05-25 08:55:20', 1071, NULL, NULL, 'IPAY2022/05/1071', NULL, 'CC', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1095, '2022-05-25 09:12:50', 1072, NULL, NULL, 'IPAY2022/05/1072', NULL, 'CC', '', '', '', '', '', '', '18250.0000', NULL, 2, NULL, 'received', '', '18250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1096, '2022-05-25 09:32:08', 1073, NULL, NULL, 'IPAY2022/05/1073', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1097, '2022-05-25 09:34:20', 1074, NULL, NULL, 'IPAY2022/05/1074', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1098, '2022-05-25 09:55:40', 1075, NULL, NULL, 'IPAY2022/05/1075', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1099, '2022-05-25 10:44:10', 1076, NULL, NULL, 'IPAY2022/05/1076', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1100, '2022-05-26 06:29:26', 1077, NULL, NULL, 'IPAY2022/05/1077', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1101, '2022-05-26 08:01:42', 1078, NULL, NULL, 'IPAY2022/05/1078', NULL, 'other', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1102, '2022-05-26 09:21:23', 1079, NULL, NULL, 'IPAY2022/05/1079', NULL, 'cash', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1104, '2022-05-27 02:08:02', 1081, NULL, NULL, 'IPAY2022/05/1081', NULL, 'cash', '', '', '', '', '', '', '7000.0000', NULL, 2, NULL, 'received', '', '7000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1105, '2022-05-27 02:09:57', 1082, NULL, NULL, 'IPAY2022/05/1082', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1106, '2022-05-27 02:11:37', 1083, NULL, NULL, 'IPAY2022/05/1083', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1107, '2022-05-27 02:42:25', 1084, NULL, NULL, 'IPAY2022/05/1084', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1108, '2022-05-27 02:44:52', 1085, NULL, NULL, 'IPAY2022/05/1085', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1109, '2022-05-27 04:28:15', 1086, NULL, NULL, 'IPAY2022/05/1086', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1110, '2022-05-27 04:58:40', 1087, NULL, NULL, 'IPAY2022/05/1087', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1111, '2022-05-27 05:22:22', 1088, NULL, NULL, 'IPAY2022/05/1088', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1112, '2022-05-27 06:09:33', 1089, NULL, NULL, 'IPAY2022/05/1089', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1113, '2022-05-27 06:38:15', 1090, NULL, NULL, 'IPAY2022/05/1090', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1114, '2022-05-27 06:50:50', 1091, NULL, NULL, 'IPAY2022/05/1091', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1115, '2022-05-27 07:04:20', 1092, NULL, NULL, 'IPAY2022/05/1092', NULL, 'CC', '', '', '', '', '', '', '3550.0000', NULL, 2, NULL, 'received', '', '3550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1116, '2022-05-27 07:08:55', 1093, NULL, NULL, 'IPAY2022/05/1093', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1117, '2022-05-27 07:59:30', 1094, NULL, NULL, 'IPAY2022/05/1094', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1118, '2022-05-27 08:56:20', 1095, NULL, NULL, 'IPAY2022/05/1095', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', 'whole sell club office stuf\r\n', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1119, '2022-05-27 10:12:32', 1096, NULL, NULL, 'IPAY2022/05/1096', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1120, '2022-05-28 02:10:27', 1097, NULL, NULL, 'IPAY2022/05/1097', NULL, 'CC', '', '', '', '', '', '', '7820.0000', NULL, 2, NULL, 'received', '', '7820.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1121, '2022-05-28 04:07:07', 1098, NULL, NULL, 'IPAY2022/05/1098', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1122, '2022-05-28 04:48:49', 1099, NULL, NULL, 'IPAY2022/05/1099', NULL, 'cash', '', '', '', '', '', '', '5950.0000', NULL, 2, NULL, 'received', '', '5950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1123, '2022-05-28 05:43:31', 1100, NULL, NULL, 'IPAY2022/05/1100', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1124, '2022-05-28 06:09:46', 1101, NULL, NULL, 'IPAY2022/05/1101', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1125, '2022-05-28 07:02:27', 1102, NULL, NULL, 'IPAY2022/05/1102', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1126, '2022-05-28 08:00:32', 1103, NULL, NULL, 'IPAY2022/05/1103', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1127, '2022-05-28 08:38:09', 1104, NULL, NULL, 'IPAY2022/05/1104', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1128, '2022-05-28 08:48:00', 1105, NULL, NULL, 'IPAY2022/05/1105', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1129, '2022-05-28 08:57:40', 1106, NULL, NULL, 'IPAY2022/05/1106', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1130, '2022-05-28 09:16:42', 1107, NULL, NULL, 'IPAY2022/05/1107', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1131, '2022-05-28 09:28:58', 1108, NULL, NULL, 'IPAY2022/05/1108', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1132, '2022-05-28 09:33:34', 1109, NULL, NULL, 'IPAY2022/05/1109', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1133, '2022-05-28 09:44:38', 1110, NULL, NULL, 'IPAY2022/05/1110', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1134, '2022-05-28 10:46:24', 1111, NULL, NULL, 'IPAY2022/05/1111', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1135, '2022-05-28 11:20:02', 1112, NULL, NULL, 'IPAY2022/05/1112', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1136, '2022-05-28 11:24:27', 1113, NULL, NULL, 'IPAY2022/05/1113', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1137, '2022-05-28 23:59:46', 1114, NULL, NULL, 'IPAY2022/05/1114', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1138, '2022-05-29 01:55:52', 1115, NULL, NULL, 'IPAY2022/05/1115', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1139, '2022-05-29 06:40:04', 1116, NULL, NULL, 'IPAY2022/05/1116', NULL, 'cash', '', '', '', '', '', '', '1510.0000', NULL, 2, NULL, 'received', '', '1510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1140, '2022-05-29 06:51:37', 1117, NULL, NULL, 'IPAY2022/05/1117', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1141, '2022-05-29 06:54:47', 1118, NULL, NULL, 'IPAY2022/05/1118', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1142, '2022-05-29 06:55:38', 1119, NULL, NULL, 'IPAY2022/05/1119', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1143, '2022-05-29 07:28:29', 1120, NULL, NULL, 'IPAY2022/05/1120', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1144, '2022-05-29 07:45:30', 1121, NULL, NULL, 'IPAY2022/05/1121', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1145, '2022-05-29 07:51:16', 1122, NULL, NULL, 'IPAY2022/05/1122', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1146, '2022-05-29 08:39:08', 1123, NULL, NULL, 'IPAY2022/05/1123', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1147, '2022-05-29 09:03:20', 1124, NULL, NULL, 'IPAY2022/05/1124', NULL, 'cash', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1148, '2022-05-29 09:17:48', 1125, NULL, NULL, 'IPAY2022/05/1125', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1149, '2022-05-29 09:43:37', 1126, NULL, NULL, 'IPAY2022/05/1126', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1150, '2022-05-29 09:46:38', 1127, NULL, NULL, 'IPAY2022/05/1127', NULL, 'other', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1151, '2022-05-29 10:11:35', 1128, NULL, NULL, 'IPAY2022/05/1128', NULL, 'CC', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1152, '2022-05-30 01:51:22', 1129, NULL, NULL, 'IPAY2022/05/1129', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1153, '2022-05-30 02:00:53', 1130, NULL, NULL, 'IPAY2022/05/1130', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1154, '2022-05-30 02:12:50', 1131, NULL, NULL, 'IPAY2022/05/1131', NULL, 'cash', '', '', '', '', '', '', '230.0000', NULL, 2, NULL, 'received', '', '230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1155, '2022-05-30 04:01:15', 1132, NULL, NULL, 'IPAY2022/05/1132', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1156, '2022-05-30 05:10:53', 1133, NULL, NULL, 'IPAY2022/05/1133', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1157, '2022-05-30 05:14:02', 1134, NULL, NULL, 'IPAY2022/05/1134', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1158, '2022-05-30 05:47:25', 1135, NULL, NULL, 'IPAY2022/05/1135', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1159, '2022-05-30 06:28:49', 1136, NULL, NULL, 'IPAY2022/05/1136', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1160, '2022-05-30 07:16:34', 1137, NULL, NULL, 'IPAY2022/05/1137', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1161, '2022-05-30 09:19:41', 1138, NULL, NULL, 'IPAY2022/05/1138', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1162, '2022-05-30 09:39:02', 1139, NULL, NULL, 'IPAY2022/05/1139', NULL, 'CC', '', '', '', '', '', '', '6750.0000', NULL, 2, NULL, 'received', '', '6750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1163, '2022-05-31 01:12:51', 1140, NULL, NULL, 'IPAY2022/05/1140', NULL, 'CC', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1164, '2022-05-31 02:32:51', 1141, NULL, NULL, 'IPAY2022/05/1141', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1165, '2022-05-31 03:37:36', 1142, NULL, NULL, 'IPAY2022/05/1142', NULL, 'cash', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1166, '2022-05-31 08:17:43', 1143, NULL, NULL, 'IPAY2022/05/1143', NULL, 'CC', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1167, '2022-05-31 08:33:16', 1144, NULL, NULL, 'IPAY2022/05/1144', NULL, 'CC', '', '', '', '', '', '', '2550.0000', NULL, 2, NULL, 'received', '', '2550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1168, '2022-06-01 03:03:28', 1145, NULL, NULL, 'IPAY2022/05/1145', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1169, '2022-06-01 03:04:48', 1146, NULL, NULL, 'IPAY2022/05/1146', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1170, '2022-06-01 03:08:42', 1147, NULL, NULL, 'IPAY2022/05/1147', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1171, '2022-06-01 03:10:08', 1148, NULL, NULL, 'IPAY2022/05/1148', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1172, '2022-06-01 03:21:52', 1149, NULL, NULL, 'IPAY2022/05/1149', NULL, 'cash', '', '', '', '', '', '', '8170.0000', NULL, 2, NULL, 'received', '', '8170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1173, '2022-06-01 03:58:02', 1150, NULL, NULL, 'IPAY2022/05/1150', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1174, '2022-06-01 04:00:09', 1151, NULL, NULL, 'IPAY2022/05/1151', NULL, 'cash', '', '', '', '', '', '', '4150.0000', NULL, 2, NULL, 'received', '', '4150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1175, '2022-06-01 04:45:45', 1152, NULL, NULL, 'IPAY2022/05/1152', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1176, '2022-06-01 04:50:19', 1153, NULL, NULL, 'IPAY2022/05/1153', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1177, '2022-06-01 05:06:16', 1154, NULL, NULL, 'IPAY2022/05/1154', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1178, '2022-06-01 06:31:43', 1155, NULL, NULL, 'IPAY2022/05/1155', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1179, '2022-06-01 07:56:39', 1156, NULL, NULL, 'IPAY2022/05/1156', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1180, '2022-06-01 08:29:47', 1157, NULL, NULL, 'IPAY2022/05/1157', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1181, '2022-06-01 09:04:55', 1158, NULL, NULL, 'IPAY2022/05/1158', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1182, '2022-06-01 09:21:28', 1159, NULL, NULL, 'IPAY2022/05/1159', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1183, '2022-06-01 09:35:28', 1160, NULL, NULL, 'IPAY2022/05/1160', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1184, '2022-06-01 09:58:41', 1161, NULL, NULL, 'IPAY2022/05/1161', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1185, '2022-06-01 10:11:19', 1162, NULL, NULL, 'IPAY2022/05/1162', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1186, '2022-06-02 05:07:57', 1163, NULL, NULL, 'IPAY2022/06/1163', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1187, '2022-06-02 05:37:25', 1164, NULL, NULL, 'IPAY2022/06/1164', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1188, '2022-06-02 06:13:06', 1165, NULL, NULL, 'IPAY2022/06/1165', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1189, '2022-06-03 01:45:55', 1166, NULL, NULL, 'IPAY2022/06/1166', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1190, '2022-06-03 04:11:37', 1167, NULL, NULL, 'IPAY2022/06/1167', NULL, 'cash', '', '', '', '', '', '', '590.0000', NULL, 2, NULL, 'received', '', '590.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1191, '2022-06-03 07:39:15', 1168, NULL, NULL, 'IPAY2022/06/1168', NULL, 'cash', '', '', '', '', '', '', '4350.0000', NULL, 2, NULL, 'received', '', '4350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1192, '2022-06-03 08:04:32', 1169, NULL, NULL, 'IPAY2022/06/1169', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1193, '2022-06-03 08:58:02', 1170, NULL, NULL, 'IPAY2022/06/1170', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1194, '2022-06-03 09:49:35', 1171, NULL, NULL, 'IPAY2022/06/1171', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1204, '2022-06-04 09:56:22', 1181, NULL, NULL, 'IPAY2022/06/1181', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1203, '2022-06-04 09:55:17', 1180, NULL, NULL, 'IPAY2022/06/1180', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1202, '2022-06-04 09:54:36', 1179, NULL, NULL, 'IPAY2022/06/1179', NULL, 'cash', '', '', '', '', '', '', '480.0000', NULL, 2, NULL, 'received', '', '480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1201, '2022-06-04 09:53:19', 1178, NULL, NULL, 'IPAY2022/06/1178', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1200, '2022-06-04 09:51:05', 1177, NULL, NULL, 'IPAY2022/06/1177', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1205, '2022-06-04 09:57:16', 1182, NULL, NULL, 'IPAY2022/06/1182', NULL, 'cash', '', '', '', '', '', '', '680.0000', NULL, 2, NULL, 'received', '', '680.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1206, '2022-06-04 09:58:38', 1183, NULL, NULL, 'IPAY2022/06/1183', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1207, '2022-06-04 09:59:51', 1184, NULL, NULL, 'IPAY2022/06/1184', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1208, '2022-06-04 10:00:46', 1185, NULL, NULL, 'IPAY2022/06/1185', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1209, '2022-06-04 10:01:43', 1186, NULL, NULL, 'IPAY2022/06/1186', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1210, '2022-06-04 10:02:51', 1187, NULL, NULL, 'IPAY2022/06/1187', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1211, '2022-06-04 10:05:03', 1188, NULL, NULL, 'IPAY2022/06/1188', NULL, 'cash', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1212, '2022-06-04 10:05:31', 1189, NULL, NULL, 'IPAY2022/06/1189', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1213, '2022-06-04 10:07:35', 1190, NULL, NULL, 'IPAY2022/06/1190', NULL, 'CC', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1214, '2022-06-04 10:08:08', 1191, NULL, NULL, 'IPAY2022/06/1191', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1215, '2022-06-04 10:08:36', 1192, NULL, NULL, 'IPAY2022/06/1192', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1216, '2022-06-04 10:09:11', 1193, NULL, NULL, 'IPAY2022/06/1193', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 2, NULL, 'received', '', '180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1217, '2022-06-04 10:10:02', 1194, NULL, NULL, 'IPAY2022/06/1194', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1218, '2022-06-04 10:11:32', 1195, NULL, NULL, 'IPAY2022/06/1195', NULL, 'CC', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1219, '2022-06-04 10:18:20', 1196, NULL, NULL, 'IPAY2022/06/1196', NULL, 'cash', '', '', '', '', '', '', '3050.0000', NULL, 2, NULL, 'received', '', '3050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1220, '2022-06-04 10:18:47', 1197, NULL, NULL, 'IPAY2022/06/1197', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1221, '2022-06-04 10:21:08', 1198, NULL, NULL, 'IPAY2022/06/1198', NULL, 'cash', '', '', '', '', '', '', '2050.0000', NULL, 2, NULL, 'received', '', '2050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1222, '2022-06-04 10:53:03', 1199, NULL, NULL, 'IPAY2022/06/1199', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 2, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1223, '2022-06-04 10:56:52', 1200, NULL, NULL, 'IPAY2022/06/1200', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1224, '2022-06-04 10:58:45', 1201, NULL, NULL, 'IPAY2022/06/1201', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1225, '2022-06-05 03:02:35', 1202, NULL, NULL, 'IPAY2022/06/1202', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1226, '2022-06-05 03:55:23', 1203, NULL, NULL, 'IPAY2022/06/1203', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1227, '2022-06-05 04:13:23', 1204, NULL, NULL, 'IPAY2022/06/1204', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1228, '2022-06-05 04:29:48', 1205, NULL, NULL, 'IPAY2022/06/1205', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1229, '2022-06-05 07:51:15', 1206, NULL, NULL, 'IPAY2022/06/1206', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1230, '2022-06-05 08:03:58', 1207, NULL, NULL, 'IPAY2022/06/1207', NULL, 'cash', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1231, '2022-06-05 08:35:40', 1208, NULL, NULL, 'IPAY2022/06/1208', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1232, '2022-06-05 08:47:56', 1209, NULL, NULL, 'IPAY2022/06/1209', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1233, '2022-06-05 09:05:13', 1210, NULL, NULL, 'IPAY2022/06/1210', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1234, '2022-06-05 10:15:45', 1211, NULL, NULL, 'IPAY2022/06/1211', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1235, '2022-06-05 10:42:28', 1212, NULL, NULL, 'IPAY2022/06/1212', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1236, '2022-06-06 00:50:02', 1213, NULL, NULL, 'IPAY2022/06/1213', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1237, '2022-06-06 04:01:27', 1214, NULL, NULL, 'IPAY2022/06/1214', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1238, '2022-06-06 05:21:49', 1215, NULL, NULL, 'IPAY2022/06/1215', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1239, '2022-06-06 05:52:15', 1216, NULL, NULL, 'IPAY2022/06/1216', NULL, 'other', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1240, '2022-06-06 06:00:51', 1217, NULL, NULL, 'IPAY2022/06/1217', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1241, '2022-06-06 07:16:32', 1218, NULL, NULL, 'IPAY2022/06/1218', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1242, '2022-06-06 07:50:08', 1219, NULL, NULL, 'IPAY2022/06/1219', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1243, '2022-06-06 08:21:20', 1220, NULL, NULL, 'IPAY2022/06/1220', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1244, '2022-06-06 09:20:54', 1221, NULL, NULL, 'IPAY2022/06/1221', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1245, '2022-06-06 09:32:53', 1222, NULL, NULL, 'IPAY2022/06/1222', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1247, '2022-06-07 02:04:36', 1224, NULL, NULL, 'IPAY2022/06/1224', NULL, 'cash', '', '', '', '', '', '', '3250.0000', NULL, 2, NULL, 'received', '', '3250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1248, '2022-06-07 03:17:02', 1225, NULL, NULL, 'IPAY2022/06/1225', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1249, '2022-06-07 06:31:57', 1226, NULL, NULL, 'IPAY2022/06/1226', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1250, '2022-06-07 07:17:46', 1227, NULL, NULL, 'IPAY2022/06/1227', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1251, '2022-06-08 01:51:20', 1228, NULL, NULL, 'IPAY2022/06/1228', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1252, '2022-06-08 02:59:09', 1229, NULL, NULL, 'IPAY2022/06/1229', NULL, 'CC', '', '', '', '', '', '', '7750.0000', NULL, 2, NULL, 'received', '', '7750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1253, '2022-06-08 04:10:16', 1230, NULL, NULL, 'IPAY2022/06/1230', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1254, '2022-06-08 04:15:27', 1231, NULL, NULL, 'IPAY2022/06/1231', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1255, '2022-06-08 06:28:04', 1232, NULL, NULL, 'IPAY2022/06/1232', NULL, 'cash', '', '', '', '', '', '', '1880.0000', NULL, 2, NULL, 'received', '', '1880.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1256, '2022-06-08 06:44:35', 1233, NULL, NULL, 'IPAY2022/06/1233', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1257, '2022-06-08 08:21:24', 1234, NULL, NULL, 'IPAY2022/06/1234', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1258, '2022-06-08 08:42:54', 1235, NULL, NULL, 'IPAY2022/06/1235', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1259, '2022-06-08 08:52:15', 1236, NULL, NULL, 'IPAY2022/06/1236', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1260, '2022-06-08 08:58:58', 1237, NULL, NULL, 'IPAY2022/06/1237', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1261, '2022-06-08 09:14:02', 1238, NULL, NULL, 'IPAY2022/06/1238', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1262, '2022-06-08 09:14:19', 1239, NULL, NULL, 'IPAY2022/06/1239', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1263, '2022-06-08 09:49:34', 1240, NULL, NULL, 'IPAY2022/06/1240', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1264, '2022-06-08 09:54:25', 1241, NULL, NULL, 'IPAY2022/06/1241', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1265, '2022-06-09 04:43:44', 1242, NULL, NULL, 'IPAY2022/06/1242', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1266, '2022-06-09 06:16:46', 1243, NULL, NULL, 'IPAY2022/06/1243', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1267, '2022-06-09 06:25:42', 1244, NULL, NULL, 'IPAY2022/06/1244', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1268, '2022-06-09 07:12:25', 1245, NULL, NULL, 'IPAY2022/06/1245', NULL, 'CC', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1269, '2022-06-09 08:46:41', 1246, NULL, NULL, 'IPAY2022/06/1246', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1270, '2022-06-09 08:50:41', 1247, NULL, NULL, 'IPAY2022/06/1247', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1271, '2022-06-09 09:26:16', 1248, NULL, NULL, 'IPAY2022/06/1248', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1272, '2022-06-09 09:26:36', 1249, NULL, NULL, 'IPAY2022/06/1249', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1273, '2022-06-10 01:57:41', 1250, NULL, NULL, 'IPAY2022/06/1250', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1274, '2022-06-10 03:02:20', 1251, NULL, NULL, 'IPAY2022/06/1251', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1275, '2022-06-10 04:42:48', 1252, NULL, NULL, 'IPAY2022/06/1252', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1276, '2022-06-10 05:24:32', 1253, NULL, NULL, 'IPAY2022/06/1253', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1277, '2022-06-10 09:18:31', 1254, NULL, NULL, 'IPAY2022/06/1254', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1278, '2022-06-10 10:04:21', 1255, NULL, NULL, 'IPAY2022/06/1255', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1279, '2022-06-10 10:15:54', 1256, NULL, NULL, 'IPAY2022/06/1256', NULL, 'CC', '', '', '', '', '', '', '16500.0000', NULL, 2, NULL, 'received', '', '16500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1280, '2022-06-10 10:26:53', 1257, NULL, NULL, 'IPAY2022/06/1257', NULL, 'other', '', '', '', '', '', '', '2550.0000', NULL, 2, NULL, 'received', '', '2550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1281, '2022-06-10 10:32:47', 1258, NULL, NULL, 'IPAY2022/06/1258', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1282, '2022-06-11 00:20:42', 1259, NULL, NULL, 'IPAY2022/06/1259', NULL, 'cash', '', '', '', '', '', '', '3670.0000', NULL, 2, NULL, 'received', '', '3670.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1283, '2022-06-11 00:39:37', 1260, NULL, NULL, 'IPAY2022/06/1260', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1284, '2022-06-11 02:24:48', 1261, NULL, NULL, 'IPAY2022/06/1261', NULL, 'cash', '', '', '', '', '', '', '2050.0000', NULL, 2, NULL, 'received', '', '2050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1285, '2022-06-11 02:49:13', 1262, NULL, NULL, 'IPAY2022/06/1262', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1286, '2022-06-11 03:30:58', 1263, NULL, NULL, 'IPAY2022/06/1263', NULL, 'CC', '', '', '', '', '', '', '11850.0000', NULL, 2, NULL, 'received', '', '11850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1287, '2022-06-11 04:20:47', 1264, NULL, NULL, 'IPAY2022/06/1264', NULL, 'cash', '', '', '', '', '', '', '4340.0000', NULL, 2, NULL, 'received', '', '4340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1288, '2022-06-11 04:44:01', 1265, NULL, NULL, 'IPAY2022/06/1265', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1289, '2022-06-11 05:08:01', 1266, NULL, NULL, 'IPAY2022/06/1266', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1290, '2022-06-11 06:12:23', 1267, NULL, NULL, 'IPAY2022/06/1267', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1291, '2022-06-11 06:40:53', 1268, NULL, NULL, 'IPAY2022/06/1268', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1292, '2022-06-11 06:41:27', 1269, NULL, NULL, 'IPAY2022/06/1269', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1293, '2022-06-11 06:44:52', 1270, NULL, NULL, 'IPAY2022/06/1270', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1294, '2022-06-11 06:48:42', 1271, NULL, NULL, 'IPAY2022/06/1271', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 2, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1295, '2022-06-11 08:27:40', 1272, NULL, NULL, 'IPAY2022/06/1272', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1296, '2022-06-11 08:58:25', 1273, NULL, NULL, 'IPAY2022/06/1273', NULL, 'cash', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1297, '2022-06-11 09:00:36', 1274, NULL, NULL, 'IPAY2022/06/1274', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1298, '2022-06-11 09:42:26', 1275, NULL, NULL, 'IPAY2022/06/1275', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1299, '2022-06-11 09:43:13', 1276, NULL, NULL, 'IPAY2022/06/1276', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1300, '2022-06-11 09:46:32', 1277, NULL, NULL, 'IPAY2022/06/1277', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1301, '2022-06-11 10:20:59', 1278, NULL, NULL, 'IPAY2022/06/1278', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1302, '2022-06-11 11:20:09', 1279, NULL, NULL, 'IPAY2022/06/1279', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1303, '2022-06-12 00:51:47', 1280, NULL, NULL, 'IPAY2022/06/1280', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1304, '2022-06-12 02:18:17', 1281, NULL, NULL, 'IPAY2022/06/1281', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1305, '2022-06-12 03:06:31', 1282, NULL, NULL, 'IPAY2022/06/1282', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1306, '2022-06-12 05:03:33', 1283, NULL, NULL, 'IPAY2022/06/1283', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1307, '2022-06-12 05:40:21', 1284, NULL, NULL, 'IPAY2022/06/1284', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1308, '2022-06-12 05:48:26', 1285, NULL, NULL, 'IPAY2022/06/1285', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1309, '2022-06-12 06:46:34', 1286, NULL, NULL, 'IPAY2022/06/1286', NULL, 'cash', '', '', '', '', '', '', '4200.0000', NULL, 2, NULL, 'received', '', '4200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1310, '2022-06-12 06:49:20', 1287, NULL, NULL, 'IPAY2022/06/1287', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1311, '2022-06-12 07:55:52', 1288, NULL, NULL, 'IPAY2022/06/1288', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1312, '2022-06-12 08:02:10', 1289, NULL, NULL, 'IPAY2022/06/1289', NULL, 'CC', '', '', '', '', '', '', '4050.0000', NULL, 2, NULL, 'received', '', '4050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1313, '2022-06-12 08:58:05', 1290, NULL, NULL, 'IPAY2022/06/1290', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1314, '2022-06-12 09:07:36', 1291, NULL, NULL, 'IPAY2022/06/1291', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1315, '2022-06-12 09:15:59', 1292, NULL, NULL, 'IPAY2022/06/1292', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1316, '2022-06-12 09:46:31', 1293, NULL, NULL, 'IPAY2022/06/1293', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1317, '2022-06-12 09:57:14', 1294, NULL, NULL, 'IPAY2022/06/1294', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1318, '2022-06-12 10:24:28', 1295, NULL, NULL, 'IPAY2022/06/1295', NULL, 'cash', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1319, '2022-06-12 10:47:39', 1296, NULL, NULL, 'IPAY2022/06/1296', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1320, '2022-06-12 10:54:48', 1297, NULL, NULL, 'IPAY2022/06/1297', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1321, '2022-06-13 00:34:03', 1298, NULL, NULL, 'IPAY2022/06/1298', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1322, '2022-06-13 02:46:38', 1299, NULL, NULL, 'IPAY2022/06/1299', NULL, 'other', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1323, '2022-06-13 04:04:28', 1300, NULL, NULL, 'IPAY2022/06/1300', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1324, '2022-06-13 04:17:19', 1301, NULL, NULL, 'IPAY2022/06/1301', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1325, '2022-06-13 04:41:21', 1302, NULL, NULL, 'IPAY2022/06/1302', NULL, 'cash', '', '', '', '', '', '', '2800.0000', NULL, 2, NULL, 'received', '', '2800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1326, '2022-06-13 04:52:13', 1303, NULL, NULL, 'IPAY2022/06/1303', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1327, '2022-06-13 06:07:00', 1304, NULL, NULL, 'IPAY2022/06/1304', NULL, 'CC', '', '', '', '', '', 'Visa', '2250.0000', NULL, 5, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1328, '2022-06-13 08:15:08', 1305, NULL, NULL, 'IPAY2022/06/1305', NULL, 'CC', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1329, '2022-06-13 09:13:11', 1306, NULL, NULL, 'IPAY2022/06/1306', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1330, '2022-06-13 09:59:39', 1307, NULL, NULL, 'IPAY2022/06/1307', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1331, '2022-06-13 10:09:39', 1308, NULL, NULL, 'IPAY2022/06/1308', NULL, 'cash', '', '', '', '', '', '', '4650.0000', NULL, 2, NULL, 'received', '', '4650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1332, '2022-06-14 01:08:05', 1309, NULL, NULL, 'IPAY2022/06/1309', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1333, '2022-06-14 01:38:12', 1310, NULL, NULL, 'IPAY2022/06/1310', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1334, '2022-06-14 06:18:10', 1311, NULL, NULL, 'IPAY2022/06/1311', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1335, '2022-06-14 08:18:22', 1312, NULL, NULL, 'IPAY2022/06/1312', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1336, '2022-06-14 08:41:08', 1313, NULL, NULL, 'IPAY2022/06/1313', NULL, 'other', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1337, '2022-06-14 08:57:47', 1314, NULL, NULL, 'IPAY2022/06/1314', NULL, 'CC', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1338, '2022-06-14 09:19:17', 1315, NULL, NULL, 'IPAY2022/06/1315', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1339, '2022-06-15 02:24:12', 1316, NULL, NULL, 'IPAY2022/06/1316', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1340, '2022-06-15 07:37:29', 1317, NULL, NULL, 'IPAY2022/06/1317', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1341, '2022-06-15 08:11:00', 1318, NULL, NULL, 'IPAY2022/06/1318', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1342, '2022-06-15 09:30:19', 1319, NULL, NULL, 'IPAY2022/06/1319', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1343, '2022-06-16 02:36:18', 1320, NULL, NULL, 'IPAY2022/06/1320', NULL, 'cash', '', '', '', '', '', '', '4200.0000', NULL, 2, NULL, 'received', '', '4200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1344, '2022-06-16 04:07:55', 1321, NULL, NULL, 'IPAY2022/06/1321', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1345, '2022-06-17 03:24:27', 1322, NULL, NULL, 'IPAY2022/06/1322', NULL, 'cash', '', '', '', '', '', '', '1290.0000', NULL, 2, NULL, 'received', '', '1290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1346, '2022-06-17 05:30:45', 1323, NULL, NULL, 'IPAY2022/06/1323', NULL, 'CC', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1347, '2022-06-17 06:00:45', 1324, NULL, NULL, 'IPAY2022/06/1324', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1348, '2022-06-17 07:53:55', 1325, NULL, NULL, 'IPAY2022/06/1325', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1349, '2022-06-17 09:14:58', 1326, NULL, NULL, 'IPAY2022/06/1326', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1350, '2022-06-18 00:00:31', 1327, NULL, NULL, 'IPAY2022/06/1327', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1351, '2022-06-18 01:14:28', 1328, NULL, NULL, 'IPAY2022/06/1328', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1352, '2022-06-18 01:31:42', 1329, NULL, NULL, 'IPAY2022/06/1329', NULL, 'cash', '', '', '', '', '', '', '4650.0000', NULL, 2, NULL, 'received', '', '4650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1353, '2022-06-18 01:49:24', 1330, NULL, NULL, 'IPAY2022/06/1330', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1354, '2022-06-18 03:11:11', 1331, NULL, NULL, 'IPAY2022/06/1331', NULL, 'cash', '', '', '', '', '', '', '6000.0000', NULL, 2, NULL, 'received', '', '6000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1355, '2022-06-18 03:36:39', 1332, NULL, NULL, 'IPAY2022/06/1332', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1356, '2022-06-18 03:39:45', 1333, NULL, NULL, 'IPAY2022/06/1333', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1357, '2022-06-18 06:18:08', 1334, NULL, NULL, 'IPAY2022/06/1334', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1358, '2022-06-18 06:38:13', 1335, NULL, NULL, 'IPAY2022/06/1335', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1359, '2022-06-18 07:16:45', 1336, NULL, NULL, 'IPAY2022/06/1336', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1360, '2022-06-18 07:39:29', 1337, NULL, NULL, 'IPAY2022/06/1337', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1361, '2022-06-18 07:42:29', 1338, NULL, NULL, 'IPAY2022/06/1338', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1362, '2022-06-18 08:12:14', 1339, NULL, NULL, 'IPAY2022/06/1339', NULL, 'cash', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1363, '2022-06-18 08:50:52', 1340, NULL, NULL, 'IPAY2022/06/1340', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1364, '2022-06-18 09:12:40', 1341, NULL, NULL, 'IPAY2022/06/1341', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1365, '2022-06-19 00:30:46', 1342, NULL, NULL, 'IPAY2022/06/1342', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1366, '2022-06-19 01:33:08', 1343, NULL, NULL, 'IPAY2022/06/1343', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1367, '2022-06-19 01:59:14', 1344, NULL, NULL, 'IPAY2022/06/1344', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1368, '2022-06-19 04:12:01', 1345, NULL, NULL, 'IPAY2022/06/1345', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1369, '2022-06-19 07:38:33', 1346, NULL, NULL, 'IPAY2022/06/1346', NULL, 'cash', '', '', '', '', '', '', '870.0000', NULL, 2, NULL, 'received', '', '870.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1370, '2022-06-19 07:42:35', 1347, NULL, NULL, 'IPAY2022/06/1347', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1371, '2022-06-19 07:56:52', 1348, NULL, NULL, 'IPAY2022/06/1348', NULL, 'cash', '', '', '', '', '', '', '4350.0000', NULL, 2, NULL, 'received', '', '4350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1372, '2022-06-19 08:12:52', 1349, NULL, NULL, 'IPAY2022/06/1349', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1373, '2022-06-19 08:49:56', 1350, NULL, NULL, 'IPAY2022/06/1350', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1374, '2022-06-19 08:55:12', 1351, NULL, NULL, 'IPAY2022/06/1351', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1375, '2022-06-19 09:10:22', 1352, NULL, NULL, 'IPAY2022/06/1352', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1376, '2022-06-19 09:22:07', 1353, NULL, NULL, 'IPAY2022/06/1353', NULL, 'CC', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1377, '2022-06-19 09:23:21', 1354, NULL, NULL, 'IPAY2022/06/1354', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1378, '2022-06-19 09:33:40', 1355, NULL, NULL, 'IPAY2022/06/1355', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1379, '2022-06-19 10:13:47', 1356, NULL, NULL, 'IPAY2022/06/1356', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1380, '2022-06-19 10:22:54', 1357, NULL, NULL, 'IPAY2022/06/1357', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1381, '2022-06-19 10:24:59', 1358, NULL, NULL, 'IPAY2022/06/1358', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1382, '2022-06-19 10:31:18', 1359, NULL, NULL, 'IPAY2022/06/1359', NULL, 'CC', '', '', '', '', '', '', '2050.0000', NULL, 2, NULL, 'received', '', '2050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1383, '2022-06-20 01:54:39', 1360, NULL, NULL, 'IPAY2022/06/1360', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1384, '2022-06-20 05:23:36', 1361, NULL, NULL, 'IPAY2022/06/1361', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1385, '2022-06-20 05:34:51', 1362, NULL, NULL, 'IPAY2022/06/1362', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1386, '2022-06-20 06:57:30', 1363, NULL, NULL, 'IPAY2022/06/1363', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1387, '2022-06-20 08:45:33', 1364, NULL, NULL, 'IPAY2022/06/1364', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 2, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1388, '2022-06-20 10:10:20', 1365, NULL, NULL, 'IPAY2022/06/1365', NULL, 'CC', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1389, '2022-06-21 01:59:45', 1366, NULL, NULL, 'IPAY2022/06/1366', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1390, '2022-06-21 02:25:58', 1367, NULL, NULL, 'IPAY2022/06/1367', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1391, '2022-06-21 02:49:57', 1368, NULL, NULL, 'IPAY2022/06/1368', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1392, '2022-06-21 08:22:38', 1369, NULL, NULL, 'IPAY2022/06/1369', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1393, '2022-06-21 08:35:31', 1370, NULL, NULL, 'IPAY2022/06/1370', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1394, '2022-06-21 08:53:13', 1371, NULL, NULL, 'IPAY2022/06/1371', NULL, 'other', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1395, '2022-06-21 09:19:06', 1372, NULL, NULL, 'IPAY2022/06/1372', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1396, '2022-06-22 02:34:46', 1373, NULL, NULL, 'IPAY2022/06/1373', NULL, 'cash', '', '', '', '', '', '', '1340.0000', NULL, 2, NULL, 'received', '', '1340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1397, '2022-06-22 02:52:37', 1374, NULL, NULL, 'IPAY2022/06/1374', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1398, '2022-06-22 03:34:29', 1375, NULL, NULL, 'IPAY2022/06/1375', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1399, '2022-06-22 04:20:02', 1376, NULL, NULL, 'IPAY2022/06/1376', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1400, '2022-06-23 03:28:39', 1377, NULL, NULL, 'IPAY2022/06/1377', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1401, '2022-06-24 00:52:48', 1378, NULL, NULL, 'IPAY2022/06/1378', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1402, '2022-06-24 01:38:26', 1379, NULL, NULL, 'IPAY2022/06/1379', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1403, '2022-06-24 01:50:01', 1380, NULL, NULL, 'IPAY2022/06/1380', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1404, '2022-06-24 03:06:58', 1381, NULL, NULL, 'IPAY2022/06/1381', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1405, '2022-06-24 07:00:40', 1382, NULL, NULL, 'IPAY2022/06/1382', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1406, '2022-06-24 07:33:46', 1383, NULL, NULL, 'IPAY2022/06/1383', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1407, '2022-06-24 10:20:33', 1384, NULL, NULL, 'IPAY2022/06/1384', NULL, 'cash', '', '', '', '', '', '', '4050.0000', NULL, 2, NULL, 'received', '', '4050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1408, '2022-06-25 04:06:51', 1385, NULL, NULL, 'IPAY2022/06/1385', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1409, '2022-06-25 05:04:40', 1386, NULL, NULL, 'IPAY2022/06/1386', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1410, '2022-06-25 05:34:59', 1387, NULL, NULL, 'IPAY2022/06/1387', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1411, '2022-06-25 05:39:26', 1388, NULL, NULL, 'IPAY2022/06/1388', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1412, '2022-06-25 05:44:16', 1389, NULL, NULL, 'IPAY2022/06/1389', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1413, '2022-06-25 06:34:27', 1390, NULL, NULL, 'IPAY2022/06/1390', NULL, 'cash', '', '', '', '', '', '', '430.0000', NULL, 2, NULL, 'received', '', '430.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1414, '2022-06-25 07:26:30', 1391, NULL, NULL, 'IPAY2022/06/1391', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1415, '2022-06-25 07:45:32', 1392, NULL, NULL, 'IPAY2022/06/1392', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1416, '2022-06-25 08:52:35', 1393, NULL, NULL, 'IPAY2022/06/1393', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1417, '2022-06-25 08:59:50', 1394, NULL, NULL, 'IPAY2022/06/1394', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1418, '2022-06-25 09:19:24', 1395, NULL, NULL, 'IPAY2022/06/1395', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1419, '2022-06-25 09:21:38', 1396, NULL, NULL, 'IPAY2022/06/1396', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1420, '2022-06-25 09:43:03', 1397, NULL, NULL, 'IPAY2022/06/1397', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1421, '2022-06-25 09:49:56', 1398, NULL, NULL, 'IPAY2022/06/1398', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1422, '2022-06-25 09:55:41', 1399, NULL, NULL, 'IPAY2022/06/1399', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1423, '2022-06-25 10:12:03', 1400, NULL, NULL, 'IPAY2022/06/1400', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1424, '2022-06-25 10:18:02', 1401, NULL, NULL, 'IPAY2022/06/1401', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1425, '2022-06-25 10:20:33', 1402, NULL, NULL, 'IPAY2022/06/1402', NULL, 'CC', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1426, '2022-06-25 10:28:44', 1403, NULL, NULL, 'IPAY2022/06/1403', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1427, '2022-06-25 10:51:21', 1404, NULL, NULL, 'IPAY2022/06/1404', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1428, '2022-06-26 05:31:59', 1405, NULL, NULL, 'IPAY2022/06/1405', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1429, '2022-06-26 05:43:17', 1406, NULL, NULL, 'IPAY2022/06/1406', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1430, '2022-06-26 06:32:02', 1407, NULL, NULL, 'IPAY2022/06/1407', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1431, '2022-06-26 06:50:18', 1408, NULL, NULL, 'IPAY2022/06/1408', NULL, 'cash', '', '', '', '', '', '', '5050.0000', NULL, 2, NULL, 'received', '', '5050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1432, '2022-06-26 06:56:11', 1409, NULL, NULL, 'IPAY2022/06/1409', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1433, '2022-06-26 07:15:46', 1410, NULL, NULL, 'IPAY2022/06/1410', NULL, 'CC', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1434, '2022-06-26 08:04:27', 1411, NULL, NULL, 'IPAY2022/06/1411', NULL, 'CC', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1435, '2022-06-26 08:05:29', 1412, NULL, NULL, 'IPAY2022/06/1412', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1436, '2022-06-26 08:10:19', 1413, NULL, NULL, 'IPAY2022/06/1413', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1437, '2022-06-26 08:35:29', 1414, NULL, NULL, 'IPAY2022/06/1414', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1438, '2022-06-26 08:47:12', 1415, NULL, NULL, 'IPAY2022/06/1415', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1439, '2022-06-26 08:54:13', 1416, NULL, NULL, 'IPAY2022/06/1416', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1440, '2022-06-27 00:48:40', 1417, NULL, NULL, 'IPAY2022/06/1417', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1441, '2022-06-27 01:03:16', 1418, NULL, NULL, 'IPAY2022/06/1418', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1442, '2022-06-27 02:33:35', 1419, NULL, NULL, 'IPAY2022/06/1419', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1443, '2022-06-27 03:54:20', 1420, NULL, NULL, 'IPAY2022/06/1420', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1444, '2022-06-27 04:01:26', 1421, NULL, NULL, 'IPAY2022/06/1421', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1445, '2022-06-27 05:35:10', 1422, NULL, NULL, 'IPAY2022/06/1422', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1446, '2022-06-27 05:38:58', 1423, NULL, NULL, 'IPAY2022/06/1423', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1447, '2022-06-27 07:07:52', 1424, NULL, NULL, 'IPAY2022/06/1424', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1448, '2022-06-27 07:27:47', 1425, NULL, NULL, 'IPAY2022/06/1425', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1449, '2022-06-27 09:35:13', 1426, NULL, NULL, 'IPAY2022/06/1426', NULL, 'cash', '', '', '', '', '', '', '3910.0000', NULL, 2, NULL, 'received', '', '3910.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1450, '2022-06-28 03:10:55', 1427, NULL, NULL, 'IPAY2022/06/1427', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1451, '2022-06-28 03:47:43', 1428, NULL, NULL, 'IPAY2022/06/1428', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1452, '2022-06-28 04:10:04', 1429, NULL, NULL, 'IPAY2022/06/1429', NULL, 'cash', '', '', '', '', '', '', '320.0000', NULL, 2, NULL, 'received', '', '320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1453, '2022-06-28 06:53:04', 1430, NULL, NULL, 'IPAY2022/06/1430', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1454, '2022-06-28 07:23:15', 1431, NULL, NULL, 'IPAY2022/06/1431', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1455, '2022-06-28 09:12:04', 1432, NULL, NULL, 'IPAY2022/06/1432', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1456, '2022-06-28 09:16:33', 1433, NULL, NULL, 'IPAY2022/06/1433', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1457, '2022-06-28 23:15:57', 1434, NULL, NULL, 'IPAY2022/06/1434', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1458, '2022-06-29 00:16:57', 1435, NULL, NULL, 'IPAY2022/06/1435', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1459, '2022-06-29 00:23:16', 1436, NULL, NULL, 'IPAY2022/06/1436', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1460, '2022-06-29 06:12:18', 1437, NULL, NULL, 'IPAY2022/06/1437', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1461, '2022-06-29 06:55:07', 1438, NULL, NULL, 'IPAY2022/06/1438', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1462, '2022-06-29 07:32:32', 1439, NULL, NULL, 'IPAY2022/06/1439', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1463, '2022-06-29 07:35:52', 1440, NULL, NULL, 'IPAY2022/06/1440', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1464, '2022-06-29 07:39:54', 1441, NULL, NULL, 'IPAY2022/06/1441', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1465, '2022-06-29 08:07:59', 1442, NULL, NULL, 'IPAY2022/06/1442', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1466, '2022-06-29 09:50:08', 1443, NULL, NULL, 'IPAY2022/06/1443', NULL, 'cash', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1467, '2022-06-29 09:50:43', 1444, NULL, NULL, 'IPAY2022/06/1444', NULL, 'cash', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1468, '2022-06-29 10:03:47', 1445, NULL, NULL, 'IPAY2022/06/1445', NULL, 'cash', '', '', '', '', '', '', '5290.0000', NULL, 2, NULL, 'received', '', '5290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1469, '2022-06-30 01:20:15', 1446, NULL, NULL, 'IPAY2022/06/1446', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1470, '2022-06-30 04:13:15', 1447, NULL, NULL, 'IPAY2022/06/1447', NULL, 'cash', '', '', '', '', '', '', '2150.0000', NULL, 2, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1471, '2022-06-30 07:10:48', 1448, NULL, NULL, 'IPAY2022/06/1448', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1472, '2022-06-30 23:22:29', 1449, NULL, NULL, 'IPAY2022/06/1449', NULL, 'cash', '', '', '', '', '', '', '990.0000', NULL, 2, NULL, 'received', '', '990.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1473, '2022-07-01 02:14:13', 1450, NULL, NULL, 'IPAY2022/06/1450', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1474, '2022-07-01 02:44:02', 1451, NULL, NULL, 'IPAY2022/06/1451', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1475, '2022-07-01 03:26:44', 1452, NULL, NULL, 'IPAY2022/06/1452', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1476, '2022-07-01 03:32:12', 1453, NULL, NULL, 'IPAY2022/06/1453', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1477, '2022-07-01 04:32:01', 1454, NULL, NULL, 'IPAY2022/06/1454', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1478, '2022-07-01 04:35:34', 1455, NULL, NULL, 'IPAY2022/06/1455', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1479, '2022-07-01 05:13:50', 1456, NULL, NULL, 'IPAY2022/06/1456', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1480, '2022-07-01 08:54:53', 1457, NULL, NULL, 'IPAY2022/06/1457', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1481, '2022-07-01 09:45:42', 1458, NULL, NULL, 'IPAY2022/06/1458', NULL, 'cash', '', '', '', '', '', '', '770.0000', NULL, 2, NULL, 'received', '', '770.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1482, '2022-07-01 10:11:35', 1459, NULL, NULL, 'IPAY2022/06/1459', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1483, '2022-07-02 01:58:23', 1460, NULL, NULL, 'IPAY2022/07/1460', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1484, '2022-07-02 03:21:35', 1461, NULL, NULL, 'IPAY2022/07/1461', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1485, '2022-07-02 03:40:31', 1462, NULL, NULL, 'IPAY2022/07/1462', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1486, '2022-07-02 07:10:48', 1463, NULL, NULL, 'IPAY2022/07/1463', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1487, '2022-07-02 07:13:52', 1464, NULL, NULL, 'IPAY2022/07/1464', NULL, 'cash', '', '', '', '', '', '', '440.0000', NULL, 2, NULL, 'received', '', '440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1488, '2022-07-02 07:19:13', 1465, NULL, NULL, 'IPAY2022/07/1465', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 2, NULL, 'received', '', '220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1489, '2022-07-02 07:23:35', 1466, NULL, NULL, 'IPAY2022/07/1466', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1490, '2022-07-02 07:43:27', 1467, NULL, NULL, 'IPAY2022/07/1467', NULL, 'cash', '', '', '', '', '', '', '840.0000', NULL, 2, NULL, 'received', '', '840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1491, '2022-07-02 08:11:24', 1468, NULL, NULL, 'IPAY2022/07/1468', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1492, '2022-07-02 08:28:44', 1469, NULL, NULL, 'IPAY2022/07/1469', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 2, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1493, '2022-07-02 09:25:06', 1470, NULL, NULL, 'IPAY2022/07/1470', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1494, '2022-07-02 09:59:11', 1471, NULL, NULL, 'IPAY2022/07/1471', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1495, '2022-07-02 10:50:00', 1472, NULL, NULL, 'IPAY2022/07/1472', NULL, 'CC', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1496, '2022-07-02 10:52:09', 1473, NULL, NULL, 'IPAY2022/07/1473', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1497, '2022-07-02 10:54:33', 1474, NULL, NULL, 'IPAY2022/07/1474', NULL, 'cash', '', '', '', '', '', '', '580.0000', NULL, 2, NULL, 'received', '', '580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1498, '2022-07-03 03:40:19', 1475, NULL, NULL, 'IPAY2022/07/1475', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1499, '2022-07-03 04:01:10', 1476, NULL, NULL, 'IPAY2022/07/1476', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1500, '2022-07-03 05:52:29', 1477, NULL, NULL, 'IPAY2022/07/1477', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1501, '2022-07-03 06:07:10', 1478, NULL, NULL, 'IPAY2022/07/1478', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1502, '2022-07-03 06:55:45', 1479, NULL, NULL, 'IPAY2022/07/1479', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1503, '2022-07-03 07:53:47', 1480, NULL, NULL, 'IPAY2022/07/1480', NULL, 'CC', '', '', '', '', '', '', '4330.0000', NULL, 2, NULL, 'received', '', '4330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1504, '2022-07-03 08:27:50', 1481, NULL, NULL, 'IPAY2022/07/1481', NULL, 'cash', '', '', '', '', '', '', '4250.0000', NULL, 2, NULL, 'received', '', '4250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1505, '2022-07-03 09:28:35', 1482, NULL, NULL, 'IPAY2022/07/1482', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1506, '2022-07-03 09:49:47', 1483, NULL, NULL, 'IPAY2022/07/1483', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1507, '2022-07-03 09:52:29', 1484, NULL, NULL, 'IPAY2022/07/1484', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1508, '2022-07-03 11:01:44', 1485, NULL, NULL, 'IPAY2022/07/1485', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1509, '2022-07-03 11:08:30', 1486, NULL, NULL, 'IPAY2022/07/1486', NULL, 'CC', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1510, '2022-07-04 01:16:41', 1487, NULL, NULL, 'IPAY2022/07/1487', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1511, '2022-07-04 06:11:30', 1488, NULL, NULL, 'IPAY2022/07/1488', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1512, '2022-07-04 07:06:32', 1489, NULL, NULL, 'IPAY2022/07/1489', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1513, '2022-07-04 07:36:22', 1490, NULL, NULL, 'IPAY2022/07/1490', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1514, '2022-07-04 08:55:36', 1491, NULL, NULL, 'IPAY2022/07/1491', NULL, 'CC', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1515, '2022-07-04 08:57:50', 1492, NULL, NULL, 'IPAY2022/07/1492', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1516, '2022-07-04 10:36:49', 1493, NULL, NULL, 'IPAY2022/07/1493', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1517, '2022-07-05 01:22:21', 1494, NULL, NULL, 'IPAY2022/07/1494', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1518, '2022-07-05 01:56:08', 1495, NULL, NULL, 'IPAY2022/07/1495', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1519, '2022-07-05 08:30:14', 1496, NULL, NULL, 'IPAY2022/07/1496', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1520, '2022-07-05 08:30:39', 1497, NULL, NULL, 'IPAY2022/07/1497', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1521, '2022-07-05 08:30:59', 1498, NULL, NULL, 'IPAY2022/07/1498', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1522, '2022-07-05 08:31:39', 1499, NULL, NULL, 'IPAY2022/07/1499', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1523, '2022-07-05 08:54:52', 1500, NULL, NULL, 'IPAY2022/07/1500', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1524, '2022-07-06 01:22:16', 1501, NULL, NULL, 'IPAY2022/07/1501', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1525, '2022-07-06 05:38:49', 1502, NULL, NULL, 'IPAY2022/07/1502', NULL, 'CC', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1526, '2022-07-06 06:11:29', 1503, NULL, NULL, 'IPAY2022/07/1503', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1527, '2022-07-06 09:13:29', 1504, NULL, NULL, 'IPAY2022/07/1504', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1528, '2022-07-06 09:37:19', 1505, NULL, NULL, 'IPAY2022/07/1505', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1529, '2022-07-06 10:55:52', 1506, NULL, NULL, 'IPAY2022/07/1506', NULL, 'CC', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1530, '2022-07-06 11:01:40', 1507, NULL, NULL, 'IPAY2022/07/1507', NULL, 'CC', '', '', '', '', '', '', '1230.0000', NULL, 2, NULL, 'received', '', '1230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1531, '2022-07-07 02:12:08', 1508, NULL, NULL, 'IPAY2022/07/1508', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1532, '2022-07-07 02:20:54', 1509, NULL, NULL, 'IPAY2022/07/1509', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1533, '2022-07-07 05:14:19', 1510, NULL, NULL, 'IPAY2022/07/1510', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1534, '2022-07-07 05:15:58', 1511, NULL, NULL, 'IPAY2022/07/1511', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1535, '2022-07-07 05:33:34', 1512, NULL, NULL, 'IPAY2022/07/1512', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1536, '2022-07-07 07:39:14', 1513, NULL, NULL, 'IPAY2022/07/1513', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1537, '2022-07-07 09:51:24', 1514, NULL, NULL, 'IPAY2022/07/1514', NULL, 'cash', '', '', '', '', '', '', '8300.0000', NULL, 2, NULL, 'received', '', '8300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1538, '2022-07-07 23:17:05', 1515, NULL, NULL, 'IPAY2022/07/1515', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1539, '2022-07-08 00:20:19', 1516, NULL, NULL, 'IPAY2022/07/1516', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1540, '2022-07-08 02:16:39', 1517, NULL, NULL, 'IPAY2022/07/1517', NULL, 'cash', '', '', '', '', '', '', '3660.0000', NULL, 2, NULL, 'received', '', '3660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1541, '2022-07-08 03:06:56', 1518, NULL, NULL, 'IPAY2022/07/1518', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1542, '2022-07-08 03:14:32', 1519, NULL, NULL, 'IPAY2022/07/1519', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1543, '2022-07-08 05:19:47', 1520, NULL, NULL, 'IPAY2022/07/1520', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1544, '2022-07-08 07:22:51', 1521, NULL, NULL, 'IPAY2022/07/1521', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1545, '2022-07-08 10:09:00', 1522, NULL, NULL, 'IPAY2022/07/1522', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1546, '2022-07-08 10:10:31', 1523, NULL, NULL, 'IPAY2022/07/1523', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1547, '2022-07-09 00:27:33', 1524, NULL, NULL, 'IPAY2022/07/1524', NULL, 'cash', '', '', '', '', '', '', '620.0000', NULL, 2, NULL, 'received', '', '620.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1548, '2022-07-09 02:59:10', 1525, NULL, NULL, 'IPAY2022/07/1525', NULL, 'CC', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1549, '2022-07-09 03:44:05', 1526, NULL, NULL, 'IPAY2022/07/1526', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1550, '2022-07-09 04:56:32', 1527, NULL, NULL, 'IPAY2022/07/1527', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1551, '2022-07-09 05:04:08', 1528, NULL, NULL, 'IPAY2022/07/1528', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 2, NULL, 'received', '', '220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1552, '2022-07-09 06:59:58', 1529, NULL, NULL, 'IPAY2022/07/1529', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1553, '2022-07-09 08:52:56', 1530, NULL, NULL, 'IPAY2022/07/1530', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1554, '2022-07-09 09:04:52', 1531, NULL, NULL, 'IPAY2022/07/1531', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1555, '2022-07-09 09:05:30', 1532, NULL, NULL, 'IPAY2022/07/1532', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1556, '2022-07-09 09:09:33', 1533, NULL, NULL, 'IPAY2022/07/1533', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1557, '2022-07-09 09:29:58', 1534, NULL, NULL, 'IPAY2022/07/1534', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1558, '2022-07-09 09:33:06', 1535, NULL, NULL, 'IPAY2022/07/1535', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1559, '2022-07-09 09:44:11', 1536, NULL, NULL, 'IPAY2022/07/1536', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1560, '2022-07-09 09:53:44', 1537, NULL, NULL, 'IPAY2022/07/1537', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1561, '2022-07-09 10:48:52', 1538, NULL, NULL, 'IPAY2022/07/1538', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1562, '2022-07-09 11:33:28', 1539, NULL, NULL, 'IPAY2022/07/1539', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1563, '2022-07-10 02:12:08', 1540, NULL, NULL, 'IPAY2022/07/1540', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1564, '2022-07-10 03:12:39', 1541, NULL, NULL, 'IPAY2022/07/1541', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1565, '2022-07-10 03:35:43', 1542, NULL, NULL, 'IPAY2022/07/1542', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1566, '2022-07-10 04:19:35', 1543, NULL, NULL, 'IPAY2022/07/1543', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1567, '2022-07-10 04:35:12', 1544, NULL, NULL, 'IPAY2022/07/1544', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1568, '2022-07-10 04:56:55', 1545, NULL, NULL, 'IPAY2022/07/1545', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1569, '2022-07-10 05:22:22', 1546, NULL, NULL, 'IPAY2022/07/1546', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1570, '2022-07-10 05:47:53', 1547, NULL, NULL, 'IPAY2022/07/1547', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1571, '2022-07-10 06:36:11', 1548, NULL, NULL, 'IPAY2022/07/1548', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1572, '2022-07-10 06:44:33', 1549, NULL, NULL, 'IPAY2022/07/1549', NULL, 'cash', '', '', '', '', '', '', '490.0000', NULL, 2, NULL, 'received', '', '490.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1573, '2022-07-10 07:17:41', 1550, NULL, NULL, 'IPAY2022/07/1550', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1574, '2022-07-10 07:29:33', 1551, NULL, NULL, 'IPAY2022/07/1551', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1575, '2022-07-10 07:38:44', 1552, NULL, NULL, 'IPAY2022/07/1552', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1576, '2022-07-10 07:43:52', 1553, NULL, NULL, 'IPAY2022/07/1553', NULL, 'cash', '', '', '', '', '', '', '230.0000', NULL, 2, NULL, 'received', '', '230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1577, '2022-07-10 08:24:13', 1554, NULL, NULL, 'IPAY2022/07/1554', NULL, 'cash', '', '', '', '', '', '', '1320.0000', NULL, 2, NULL, 'received', '', '1320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1578, '2022-07-10 09:12:41', 1555, NULL, NULL, 'IPAY2022/07/1555', NULL, 'CC', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1579, '2022-07-10 09:13:06', 1556, NULL, NULL, 'IPAY2022/07/1556', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1580, '2022-07-10 09:40:32', 1557, NULL, NULL, 'IPAY2022/07/1557', NULL, 'CC', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1581, '2022-07-15 00:43:49', 1558, NULL, NULL, 'IPAY2022/07/1558', NULL, 'cash', '', '', '', '', '', '', '540.0000', NULL, 2, NULL, 'received', '', '540.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1582, '2022-07-15 01:25:27', 1559, NULL, NULL, 'IPAY2022/07/1559', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1583, '2022-07-15 03:31:18', 1560, NULL, NULL, 'IPAY2022/07/1560', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1584, '2022-07-15 05:07:58', 1561, NULL, NULL, 'IPAY2022/07/1561', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1585, '2022-07-15 06:04:21', 1562, NULL, NULL, 'IPAY2022/07/1562', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1586, '2022-07-15 06:41:08', 1563, NULL, NULL, 'IPAY2022/07/1563', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1587, '2022-07-15 06:50:44', 1564, NULL, NULL, 'IPAY2022/07/1564', NULL, 'cash', '', '', '', '', '', '', '810.0000', NULL, 2, NULL, 'received', '', '810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1588, '2022-07-15 08:16:46', 1565, NULL, NULL, 'IPAY2022/07/1565', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1589, '2022-07-16 01:24:10', 1566, NULL, NULL, 'IPAY2022/07/1566', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1590, '2022-07-16 01:34:35', 1567, NULL, NULL, 'IPAY2022/07/1567', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1591, '2022-07-16 02:45:51', 1568, NULL, NULL, 'IPAY2022/07/1568', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1592, '2022-07-16 03:54:41', 1569, NULL, NULL, 'IPAY2022/07/1569', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1593, '2022-07-16 05:58:51', 1570, NULL, NULL, 'IPAY2022/07/1570', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1594, '2022-07-16 06:21:23', 1571, NULL, NULL, 'IPAY2022/07/1571', NULL, 'cash', '', '', '', '', '', '', '230.0000', NULL, 2, NULL, 'received', '', '230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1595, '2022-07-16 06:33:51', 1572, NULL, NULL, 'IPAY2022/07/1572', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1596, '2022-07-16 07:21:17', 1573, NULL, NULL, 'IPAY2022/07/1573', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1597, '2022-07-16 07:36:08', 1574, NULL, NULL, 'IPAY2022/07/1574', NULL, 'CC', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1598, '2022-07-16 07:41:37', 1575, NULL, NULL, 'IPAY2022/07/1575', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1599, '2022-07-16 07:54:39', 1576, NULL, NULL, 'IPAY2022/07/1576', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1600, '2022-07-16 08:14:34', 1577, NULL, NULL, 'IPAY2022/07/1577', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1601, '2022-07-16 08:32:44', 1578, NULL, NULL, 'IPAY2022/07/1578', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1602, '2022-07-16 08:44:05', 1579, NULL, NULL, 'IPAY2022/07/1579', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1603, '2022-07-16 08:47:20', 1580, NULL, NULL, 'IPAY2022/07/1580', NULL, 'CC', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1604, '2022-07-16 08:48:02', 1581, NULL, NULL, 'IPAY2022/07/1581', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1605, '2022-07-16 08:55:31', 1582, NULL, NULL, 'IPAY2022/07/1582', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1606, '2022-07-16 09:08:58', 1583, NULL, NULL, 'IPAY2022/07/1583', NULL, 'cash', '', '', '', '', '', '', '6150.0000', NULL, 2, NULL, 'received', '', '6150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1607, '2022-07-16 09:16:07', 1584, NULL, NULL, 'IPAY2022/07/1584', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1608, '2022-07-16 09:21:40', 1585, NULL, NULL, 'IPAY2022/07/1585', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1609, '2022-07-16 09:22:19', 1586, NULL, NULL, 'IPAY2022/07/1586', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1610, '2022-07-16 09:23:19', 1587, NULL, NULL, 'IPAY2022/07/1587', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1611, '2022-07-16 10:00:58', 1588, NULL, NULL, 'IPAY2022/07/1588', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1612, '2022-07-16 10:17:58', 1589, NULL, NULL, 'IPAY2022/07/1589', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1613, '2022-07-16 10:38:12', 1590, NULL, NULL, 'IPAY2022/07/1590', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1614, '2022-07-16 10:49:18', 1591, NULL, NULL, 'IPAY2022/07/1591', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1615, '2022-07-17 00:27:29', 1592, NULL, NULL, 'IPAY2022/07/1592', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1616, '2022-07-17 00:52:24', 1593, NULL, NULL, 'IPAY2022/07/1593', NULL, 'CC', '', '', '', '', '', '', '440.0000', NULL, 2, NULL, 'received', '', '440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1617, '2022-07-17 03:25:09', 1594, NULL, NULL, 'IPAY2022/07/1594', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1618, '2022-07-17 05:10:56', 1595, NULL, NULL, 'IPAY2022/07/1595', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1619, '2022-07-17 06:51:41', 1596, NULL, NULL, 'IPAY2022/07/1596', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1620, '2022-07-17 07:22:37', 1597, NULL, NULL, 'IPAY2022/07/1597', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 2, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1621, '2022-07-17 08:36:53', 1598, NULL, NULL, 'IPAY2022/07/1598', NULL, 'CC', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1639, '2022-07-19 08:41:01', 1616, NULL, NULL, 'IPAY2022/07/1616', NULL, 'cash', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1640, '2022-07-19 08:45:16', 1617, NULL, NULL, 'IPAY2022/07/1617', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1624, '2022-07-17 08:40:25', 1601, NULL, NULL, 'IPAY2022/07/1601', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1625, '2022-07-17 09:30:04', 1602, NULL, NULL, 'IPAY2022/07/1602', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1626, '2022-07-18 03:19:33', 1603, NULL, NULL, 'IPAY2022/07/1603', NULL, 'cash', '', '', '', '', '', '', '610.0000', NULL, 2, NULL, 'received', '', '610.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1627, '2022-07-18 04:15:04', 1604, NULL, NULL, 'IPAY2022/07/1604', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1628, '2022-07-18 05:07:09', 1605, NULL, NULL, 'IPAY2022/07/1605', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1641, '2022-07-19 08:57:10', 1618, NULL, NULL, 'IPAY2022/07/1618', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1630, '2022-07-18 05:51:29', 1607, NULL, NULL, 'IPAY2022/07/1607', NULL, 'cash', '', '', '', '', '', '', '810.0000', NULL, 2, NULL, 'received', '', '810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1632, '2022-07-18 06:19:21', 1609, NULL, NULL, 'IPAY2022/07/1609', NULL, 'cash', '', '', '', '', '', '', '3180.0000', NULL, 2, NULL, 'received', '', '3180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1633, '2022-07-18 06:21:36', 1610, NULL, NULL, 'IPAY2022/07/1610', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1634, '2022-07-18 06:25:01', 1611, NULL, NULL, 'IPAY2022/07/1611', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1635, '2022-07-18 06:25:54', 1612, NULL, NULL, 'IPAY2022/07/1612', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1636, '2022-07-18 07:08:01', 1613, NULL, NULL, 'IPAY2022/07/1613', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1637, '2022-07-18 08:15:02', 1614, NULL, NULL, 'IPAY2022/07/1614', NULL, 'CC', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1638, '2022-07-18 09:54:41', 1615, NULL, NULL, 'IPAY2022/07/1615', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1644, '2022-07-19 09:36:42', 1621, NULL, NULL, 'IPAY2022/07/1621', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1645, '2022-07-20 04:18:39', 1622, NULL, NULL, 'IPAY2022/07/1622', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1646, '2022-07-20 05:36:58', 1623, NULL, NULL, 'IPAY2022/07/1623', NULL, 'CC', '', '', '', '', '', '', '3920.0000', NULL, 2, NULL, 'received', '', '3920.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1652, '2022-07-20 08:04:37', 1634, NULL, NULL, 'IPAY2022/07/1629', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1648, '2022-07-20 05:50:39', 1626, NULL, NULL, 'IPAY2022/07/1625', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1649, '2022-07-20 05:57:15', 1627, NULL, NULL, 'IPAY2022/07/1626', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1650, '2022-07-20 06:04:05', 1628, NULL, NULL, 'IPAY2022/07/1627', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1651, '2022-07-20 07:05:00', 1629, NULL, NULL, 'IPAY2022/07/1628', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1653, '2022-07-21 03:09:51', 1635, NULL, NULL, 'IPAY2022/07/1630', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1654, '2022-07-22 00:56:36', 1636, NULL, NULL, 'IPAY2022/07/1631', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1655, '2022-07-22 05:16:31', 1637, NULL, NULL, 'IPAY2022/07/1632', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1656, '2022-07-22 05:55:47', 1638, NULL, NULL, 'IPAY2022/07/1633', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1657, '2022-07-22 06:28:08', 1639, NULL, NULL, 'IPAY2022/07/1634', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1658, '2022-07-22 06:31:03', 1640, NULL, NULL, 'IPAY2022/07/1635', NULL, 'cash', '', '', '', '', '', '', '370.0000', NULL, 2, NULL, 'received', '', '370.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1659, '2022-07-22 06:44:04', 1641, NULL, NULL, 'IPAY2022/07/1636', NULL, 'CC', '', '', '', '', '', '', '590.0000', NULL, 2, NULL, 'received', '', '590.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1660, '2022-07-22 06:56:27', 1642, NULL, NULL, 'IPAY2022/07/1637', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1661, '2022-07-22 08:19:55', 1643, NULL, NULL, 'IPAY2022/07/1638', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1662, '2022-07-23 03:08:59', 1644, NULL, NULL, 'IPAY2022/07/1639', NULL, 'CC', '', '', '', '', '', '', '5300.0000', NULL, 2, NULL, 'received', '', '5300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1663, '2022-07-23 03:10:18', 1645, NULL, NULL, 'IPAY2022/07/1640', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1664, '2022-07-23 03:11:00', 1646, NULL, NULL, 'IPAY2022/07/1641', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1665, '2022-07-23 04:17:23', 1647, NULL, NULL, 'IPAY2022/07/1642', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1666, '2022-07-23 05:14:56', 1648, NULL, NULL, 'IPAY2022/07/1643', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1667, '2022-07-23 05:40:52', 1649, NULL, NULL, 'IPAY2022/07/1644', NULL, 'CC', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1668, '2022-07-23 05:41:32', 1650, NULL, NULL, 'IPAY2022/07/1645', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1669, '2022-07-23 05:55:45', 1651, NULL, NULL, 'IPAY2022/07/1646', NULL, 'cash', '', '', '', '', '', '', '910.0000', NULL, 2, NULL, 'received', '', '910.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1670, '2022-07-23 06:46:30', 1652, NULL, NULL, 'IPAY2022/07/1647', NULL, 'CC', '', '', '', '', '', '', '12550.0000', NULL, 2, NULL, 'received', '', '12550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1671, '2022-07-23 09:44:08', 1653, NULL, NULL, 'IPAY2022/07/1648', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1672, '2022-07-23 09:45:00', 1654, NULL, NULL, 'IPAY2022/07/1649', NULL, 'CC', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1673, '2022-07-23 09:45:25', 1655, NULL, NULL, 'IPAY2022/07/1650', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1674, '2022-07-23 09:45:45', 1656, NULL, NULL, 'IPAY2022/07/1651', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1675, '2022-07-23 09:46:14', 1657, NULL, NULL, 'IPAY2022/07/1652', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1676, '2022-07-23 09:46:42', 1658, NULL, NULL, 'IPAY2022/07/1653', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1677, '2022-07-23 09:57:45', 1659, NULL, NULL, 'IPAY2022/07/1654', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1678, '2022-07-23 09:59:34', 1660, NULL, NULL, 'IPAY2022/07/1655', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1679, '2022-07-23 10:00:56', 1661, NULL, NULL, 'IPAY2022/07/1656', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1680, '2022-07-23 10:02:21', 1662, NULL, NULL, 'IPAY2022/07/1657', NULL, 'cash', '', '', '', '', '', '', '620.0000', NULL, 2, NULL, 'received', '', '620.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1681, '2022-07-23 10:13:06', 1663, NULL, NULL, 'IPAY2022/07/1658', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1682, '2022-07-23 10:19:06', 1664, NULL, NULL, 'IPAY2022/07/1659', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1683, '2022-07-23 10:20:45', 1665, NULL, NULL, 'IPAY2022/07/1660', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1684, '2022-07-24 01:42:30', 1666, NULL, NULL, 'IPAY2022/07/1661', NULL, 'cash', '', '', '', '', '', '', '1380.0000', NULL, 2, NULL, 'received', '', '1380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1685, '2022-07-24 01:58:38', 1667, NULL, NULL, 'IPAY2022/07/1662', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1686, '2022-07-24 02:06:22', 1668, NULL, NULL, 'IPAY2022/07/1663', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1687, '2022-07-24 02:06:48', 1669, NULL, NULL, 'IPAY2022/07/1664', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1688, '2022-07-24 02:07:12', 1670, NULL, NULL, 'IPAY2022/07/1665', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1689, '2022-07-24 02:07:33', 1671, NULL, NULL, 'IPAY2022/07/1666', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1690, '2022-07-24 02:08:06', 1672, NULL, NULL, 'IPAY2022/07/1667', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1691, '2022-07-24 03:19:38', 1673, NULL, NULL, 'IPAY2022/07/1668', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1692, '2022-07-24 03:30:56', 1674, NULL, NULL, 'IPAY2022/07/1669', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1693, '2022-07-24 04:00:11', 1675, NULL, NULL, 'IPAY2022/07/1670', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1694, '2022-07-24 04:29:33', 1676, NULL, NULL, 'IPAY2022/07/1671', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1695, '2022-07-24 04:58:27', 1677, NULL, NULL, 'IPAY2022/07/1672', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1696, '2022-07-24 05:53:53', 1678, NULL, NULL, 'IPAY2022/07/1673', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1697, '2022-07-24 06:45:07', 1679, NULL, NULL, 'IPAY2022/07/1674', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1698, '2022-07-24 08:07:59', 1680, NULL, NULL, 'IPAY2022/07/1675', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1699, '2022-07-24 08:21:19', 1681, NULL, NULL, 'IPAY2022/07/1676', NULL, 'CC', '', '', '', '', '', '', '18000.0000', NULL, 2, NULL, 'received', '', '18000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1700, '2022-07-24 09:46:12', 1682, NULL, NULL, 'IPAY2022/07/1677', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1701, '2022-07-24 09:46:33', 1683, NULL, NULL, 'IPAY2022/07/1678', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1702, '2022-07-24 09:53:44', 1684, NULL, NULL, 'IPAY2022/07/1679', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1703, '2022-07-24 09:56:26', 1685, NULL, NULL, 'IPAY2022/07/1680', NULL, 'CC', '', '', '', '', '', '', '1280.0000', NULL, 2, NULL, 'received', '', '1280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1704, '2022-07-24 10:33:47', 1686, NULL, NULL, 'IPAY2022/07/1681', NULL, 'CC', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1705, '2022-07-25 01:45:17', 1687, NULL, NULL, 'IPAY2022/07/1682', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1706, '2022-07-25 02:25:46', 1688, NULL, NULL, 'IPAY2022/07/1683', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1707, '2022-07-25 08:28:24', 1689, NULL, NULL, 'IPAY2022/07/1684', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1708, '2022-07-25 09:04:31', 1690, NULL, NULL, 'IPAY2022/07/1685', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1709, '2022-07-25 09:18:37', 1691, NULL, NULL, 'IPAY2022/07/1686', NULL, 'other', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1710, '2022-07-25 09:21:25', 1692, NULL, NULL, 'IPAY2022/07/1687', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1711, '2022-07-25 09:30:33', 1693, NULL, NULL, 'IPAY2022/07/1688', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1712, '2022-07-25 09:48:23', 1694, NULL, NULL, 'IPAY2022/07/1689', NULL, 'cash', '', '', '', '', '', '', '7600.0000', NULL, 2, NULL, 'received', '', '7600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1714, '2022-07-26 01:54:37', 1696, NULL, NULL, 'IPAY2022/07/1691', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1715, '2022-07-26 01:54:56', 1697, NULL, NULL, 'IPAY2022/07/1692', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1716, '2022-07-26 01:55:49', 1698, NULL, NULL, 'IPAY2022/07/1693', NULL, 'other', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1717, '2022-07-26 03:54:41', 1699, NULL, NULL, 'IPAY2022/07/1694', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1718, '2022-07-26 04:28:47', 1700, NULL, NULL, 'IPAY2022/07/1695', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1719, '2022-07-27 02:23:15', 1701, NULL, NULL, 'IPAY2022/07/1696', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1720, '2022-07-27 02:24:35', 1702, NULL, NULL, 'IPAY2022/07/1697', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1721, '2022-07-27 04:09:21', 1703, NULL, NULL, 'IPAY2022/07/1698', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1722, '2022-07-27 05:00:52', 1704, NULL, NULL, 'IPAY2022/07/1699', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1723, '2022-07-27 05:29:01', 1705, NULL, NULL, 'IPAY2022/07/1700', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1724, '2022-07-27 06:42:09', 1706, NULL, NULL, 'IPAY2022/07/1701', NULL, 'cash', '', '', '', '', '', '', '1170.0000', NULL, 2, NULL, 'received', '', '1170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1725, '2022-07-27 09:04:44', 1707, NULL, NULL, 'IPAY2022/07/1702', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1726, '2022-07-27 09:12:58', 1708, NULL, NULL, 'IPAY2022/07/1703', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1727, '2022-08-01 00:35:17', 1709, NULL, NULL, 'IPAY2022/07/1704', NULL, 'CC', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1728, '2022-08-01 00:36:53', 1710, NULL, NULL, 'IPAY2022/07/1705', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1729, '2022-08-01 00:57:20', 1711, NULL, NULL, 'IPAY2022/07/1706', NULL, 'cash', '', '', '', '', '', '', '12230.0000', NULL, 2, NULL, 'received', '', '12230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1730, '2022-08-01 00:58:09', 1712, NULL, NULL, 'IPAY2022/07/1707', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1731, '2022-08-01 01:00:59', 1713, NULL, NULL, 'IPAY2022/07/1708', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1770, '2022-08-01 10:02:02', 1752, NULL, NULL, 'IPAY2022/07/1747', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1733, '2022-08-01 01:03:23', 1715, NULL, NULL, 'IPAY2022/07/1710', NULL, 'CC', '', '', '', '', '', '', '2150.0000', NULL, 2, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1734, '2022-08-01 01:28:50', 1716, NULL, NULL, 'IPAY2022/07/1711', NULL, 'cash', '', '', '', '', '', '', '930.0000', NULL, 2, NULL, 'received', '', '930.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1771, '2022-08-02 02:58:46', 1753, NULL, NULL, 'IPAY2022/08/1748', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1736, '2022-08-01 01:33:37', 1718, NULL, NULL, 'IPAY2022/07/1713', NULL, 'cash', '', '', '', '', '', '', '3250.0000', NULL, 2, NULL, 'received', '', '3250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1737, '2022-08-01 01:34:10', 1719, NULL, NULL, 'IPAY2022/07/1714', NULL, 'CC', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1738, '2022-08-01 01:34:58', 1720, NULL, NULL, 'IPAY2022/07/1715', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1739, '2022-08-01 01:35:16', 1721, NULL, NULL, 'IPAY2022/07/1716', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1740, '2022-08-01 01:35:58', 1722, NULL, NULL, 'IPAY2022/07/1717', NULL, 'CC', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1741, '2022-08-01 01:36:29', 1723, NULL, NULL, 'IPAY2022/07/1718', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1742, '2022-08-01 01:37:17', 1724, NULL, NULL, 'IPAY2022/07/1719', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1743, '2022-08-01 01:40:51', 1725, NULL, NULL, 'IPAY2022/07/1720', NULL, 'cash', '', '', '', '', '', '', '2350.0000', NULL, 2, NULL, 'received', '', '2350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1744, '2022-08-01 01:51:12', 1726, NULL, NULL, 'IPAY2022/07/1721', NULL, 'cash', '', '', '', '', '', '', '3220.0000', NULL, 2, NULL, 'received', '', '3220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1745, '2022-08-01 01:52:44', 1727, NULL, NULL, 'IPAY2022/07/1722', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1746, '2022-08-01 01:54:21', 1728, NULL, NULL, 'IPAY2022/07/1723', NULL, 'CC', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1747, '2022-08-01 01:54:47', 1729, NULL, NULL, 'IPAY2022/07/1724', NULL, 'other', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1748, '2022-08-01 01:55:09', 1730, NULL, NULL, 'IPAY2022/07/1725', NULL, 'other', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1749, '2022-08-01 02:04:58', 1731, NULL, NULL, 'IPAY2022/07/1726', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1750, '2022-08-01 02:06:02', 1732, NULL, NULL, 'IPAY2022/07/1727', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1751, '2022-08-01 02:07:24', 1733, NULL, NULL, 'IPAY2022/07/1728', NULL, 'cash', '', '', '', '', '', '', '1470.0000', NULL, 2, NULL, 'received', '', '1470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1752, '2022-08-01 02:10:08', 1734, NULL, NULL, 'IPAY2022/07/1729', NULL, 'CC', '', '', '', '', '', '', '4200.0000', NULL, 2, NULL, 'received', '', '4200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1753, '2022-08-01 02:16:39', 1735, NULL, NULL, 'IPAY2022/07/1730', NULL, 'cash', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1754, '2022-08-01 02:18:16', 1736, NULL, NULL, 'IPAY2022/07/1731', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1755, '2022-08-01 02:20:34', 1737, NULL, NULL, 'IPAY2022/07/1732', NULL, 'CC', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1756, '2022-08-01 02:22:04', 1738, NULL, NULL, 'IPAY2022/07/1733', NULL, 'CC', '', '', '', '', '', '', '1570.0000', NULL, 2, NULL, 'received', '', '1570.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1757, '2022-08-01 02:22:38', 1739, NULL, NULL, 'IPAY2022/07/1734', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1758, '2022-08-01 02:22:58', 1740, NULL, NULL, 'IPAY2022/07/1735', NULL, 'CC', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1759, '2022-08-01 02:27:45', 1741, NULL, NULL, 'IPAY2022/07/1736', NULL, 'cash', '', '', '', '', '', '', '3810.0000', NULL, 2, NULL, 'received', '', '3810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1760, '2022-08-01 02:29:00', 1742, NULL, NULL, 'IPAY2022/07/1737', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1761, '2022-08-01 02:59:47', 1743, NULL, NULL, 'IPAY2022/07/1738', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1762, '2022-08-01 03:35:16', 1744, NULL, NULL, 'IPAY2022/07/1739', NULL, 'cash', '', '', '', '', '', '', '1090.0000', NULL, 2, NULL, 'received', '', '1090.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1763, '2022-08-01 03:46:11', 1745, NULL, NULL, 'IPAY2022/07/1740', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1764, '2022-08-01 05:04:51', 1746, NULL, NULL, 'IPAY2022/07/1741', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1765, '2022-08-01 06:44:02', 1747, NULL, NULL, 'IPAY2022/07/1742', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1766, '2022-08-01 08:18:57', 1748, NULL, NULL, 'IPAY2022/07/1743', NULL, 'cash', '', '', '', '', '', '', '1510.0000', NULL, 2, NULL, 'received', '', '1510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1767, '2022-08-01 08:31:23', 1749, NULL, NULL, 'IPAY2022/07/1744', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1768, '2022-08-01 08:48:48', 1750, NULL, NULL, 'IPAY2022/07/1745', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1769, '2022-08-01 08:54:23', 1751, NULL, NULL, 'IPAY2022/07/1746', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1772, '2022-08-02 02:59:24', 1754, NULL, NULL, 'IPAY2022/08/1749', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1773, '2022-08-02 05:02:59', 1755, NULL, NULL, 'IPAY2022/08/1750', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1774, '2022-08-02 05:36:33', 1756, NULL, NULL, 'IPAY2022/08/1751', NULL, 'other', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1775, '2022-08-02 05:43:40', 1757, NULL, NULL, 'IPAY2022/08/1752', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1776, '2022-08-02 07:32:29', 1758, NULL, NULL, 'IPAY2022/08/1753', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1777, '2022-08-02 07:56:42', 1759, NULL, NULL, 'IPAY2022/08/1754', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1778, '2022-08-02 07:58:15', 1760, NULL, NULL, 'IPAY2022/08/1755', NULL, 'CC', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1779, '2022-08-02 08:48:39', 1761, NULL, NULL, 'IPAY2022/08/1756', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1780, '2022-08-02 09:32:34', 1762, NULL, NULL, 'IPAY2022/08/1757', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1781, '2022-08-02 09:33:46', 1763, NULL, NULL, 'IPAY2022/08/1758', NULL, 'CC', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1782, '2022-08-03 00:02:07', 1764, NULL, NULL, 'IPAY2022/08/1759', NULL, 'cash', '', '', '', '', '', '', '2370.0000', NULL, 2, NULL, 'received', '', '2370.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1783, '2022-08-03 00:54:17', 1765, NULL, NULL, 'IPAY2022/08/1760', NULL, 'cash', '', '', '', '', '', '', '840.0000', NULL, 2, NULL, 'received', '', '840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1784, '2022-08-03 07:01:46', 1766, NULL, NULL, 'IPAY2022/08/1761', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1785, '2022-08-03 07:29:48', 1767, NULL, NULL, 'IPAY2022/08/1762', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1786, '2022-08-03 09:02:06', 1768, NULL, NULL, 'IPAY2022/08/1763', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1787, '2022-08-03 09:04:00', 1769, NULL, NULL, 'IPAY2022/08/1764', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1788, '2022-08-03 09:35:36', 1770, NULL, NULL, 'IPAY2022/08/1765', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1789, '2022-08-04 08:09:37', 1771, NULL, NULL, 'IPAY2022/08/1766', NULL, 'CC', '', '', '', '', '', '', '3400.0000', NULL, 2, NULL, 'received', '', '3400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1790, '2022-08-05 01:45:55', 1772, NULL, NULL, 'IPAY2022/08/1767', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1791, '2022-08-05 03:17:51', 1773, NULL, NULL, 'IPAY2022/08/1768', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1792, '2022-08-05 05:11:55', 1774, NULL, NULL, 'IPAY2022/08/1769', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1793, '2022-08-05 05:14:02', 1775, NULL, NULL, 'IPAY2022/08/1770', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1794, '2022-08-05 05:50:17', 1776, NULL, NULL, 'IPAY2022/08/1771', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1795, '2022-08-05 07:19:36', 1777, NULL, NULL, 'IPAY2022/08/1772', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1796, '2022-08-05 08:37:29', 1778, NULL, NULL, 'IPAY2022/08/1773', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1797, '2022-08-05 09:09:43', 1779, NULL, NULL, 'IPAY2022/08/1774', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1798, '2022-08-05 09:29:39', 1780, NULL, NULL, 'IPAY2022/08/1775', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1799, '2022-08-05 09:56:13', 1781, NULL, NULL, 'IPAY2022/08/1776', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1800, '2022-08-05 23:54:13', 1782, NULL, NULL, 'IPAY2022/08/1777', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1801, '2022-08-06 02:34:47', 1783, NULL, NULL, 'IPAY2022/08/1778', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1802, '2022-08-06 02:56:55', 1784, NULL, NULL, 'IPAY2022/08/1779', NULL, 'CC', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1803, '2022-08-06 04:27:38', 1785, NULL, NULL, 'IPAY2022/08/1780', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1804, '2022-08-06 05:10:19', 1786, NULL, NULL, 'IPAY2022/08/1781', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1805, '2022-08-06 07:10:08', 1787, NULL, NULL, 'IPAY2022/08/1782', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1806, '2022-08-06 07:12:04', 1788, NULL, NULL, 'IPAY2022/08/1783', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1807, '2022-08-06 07:32:53', 1789, NULL, NULL, 'IPAY2022/08/1784', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1808, '2022-08-06 08:25:53', 1790, NULL, NULL, 'IPAY2022/08/1785', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1809, '2022-08-06 08:29:30', 1791, NULL, NULL, 'IPAY2022/08/1786', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1810, '2022-08-06 08:52:28', 1792, NULL, NULL, 'IPAY2022/08/1787', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1811, '2022-08-06 09:04:41', 1793, NULL, NULL, 'IPAY2022/08/1788', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1812, '2022-08-06 09:10:16', 1794, NULL, NULL, 'IPAY2022/08/1789', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1813, '2022-08-06 09:45:44', 1795, NULL, NULL, 'IPAY2022/08/1790', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1814, '2022-08-06 10:06:57', 1796, NULL, NULL, 'IPAY2022/08/1791', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1815, '2022-08-07 00:38:07', 1798, NULL, NULL, 'IPAY2022/08/1792', NULL, 'CC', '', '', '', '', '', '', '4800.0000', NULL, 2, NULL, 'received', '', '4800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1816, '2022-08-07 02:45:29', 1799, NULL, NULL, 'IPAY2022/08/1793', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1817, '2022-08-07 04:49:26', 1800, NULL, NULL, 'IPAY2022/08/1794', NULL, 'CC', '', '', '', '', '', '', '2130.0000', NULL, 2, NULL, 'received', '', '2130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1818, '2022-08-07 05:20:44', 1801, NULL, NULL, 'IPAY2022/08/1795', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1819, '2022-08-07 06:33:46', 1802, NULL, NULL, 'IPAY2022/08/1796', NULL, 'cash', '', '', '', '', '', '', '6300.0000', NULL, 2, NULL, 'received', '', '6300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1820, '2022-08-07 06:55:57', 1803, NULL, NULL, 'IPAY2022/08/1797', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1821, '2022-08-07 07:08:59', 1804, NULL, NULL, 'IPAY2022/08/1798', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1822, '2022-08-07 07:30:54', 1805, NULL, NULL, 'IPAY2022/08/1799', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1823, '2022-08-07 07:36:47', 1806, NULL, NULL, 'IPAY2022/08/1800', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1824, '2022-08-07 08:40:40', 1807, NULL, NULL, 'IPAY2022/08/1801', NULL, 'cash', '', '', '', '', '', '', '470.0000', NULL, 2, NULL, 'received', '', '470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1825, '2022-08-07 08:48:49', 1808, NULL, NULL, 'IPAY2022/08/1802', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1826, '2022-08-07 08:52:30', 1809, NULL, NULL, 'IPAY2022/08/1803', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1827, '2022-08-07 09:42:17', 1810, NULL, NULL, 'IPAY2022/08/1804', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1828, '2022-08-08 01:13:59', 1811, NULL, NULL, 'IPAY2022/08/1805', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1829, '2022-08-08 02:09:10', 1812, NULL, NULL, 'IPAY2022/08/1806', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1830, '2022-08-08 03:59:59', 1813, NULL, NULL, 'IPAY2022/08/1807', NULL, 'cash', '', '', '', '', '', '', '4850.0000', NULL, 2, NULL, 'received', '', '4850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1831, '2022-08-08 04:39:56', 1814, NULL, NULL, 'IPAY2022/08/1808', NULL, 'cash', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1832, '2022-08-08 04:46:14', 1815, NULL, NULL, 'IPAY2022/08/1809', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1833, '2022-08-08 06:06:36', 1816, NULL, NULL, 'IPAY2022/08/1810', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1834, '2022-08-08 07:26:59', 1817, NULL, NULL, 'IPAY2022/08/1811', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1835, '2022-08-08 07:27:31', 1818, NULL, NULL, 'IPAY2022/08/1812', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1836, '2022-08-08 08:04:12', 1819, NULL, NULL, 'IPAY2022/08/1813', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1837, '2022-08-08 09:26:26', 1820, NULL, NULL, 'IPAY2022/08/1814', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1838, '2022-08-09 03:26:39', 1821, NULL, NULL, 'IPAY2022/08/1815', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1839, '2022-08-09 04:16:34', 1822, NULL, NULL, 'IPAY2022/08/1816', NULL, 'cash', '', '', '', '', '', '', '430.0000', NULL, 2, NULL, 'received', '', '430.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1840, '2022-08-09 04:57:34', 1823, NULL, NULL, 'IPAY2022/08/1817', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1841, '2022-08-09 05:03:57', 1824, NULL, NULL, 'IPAY2022/08/1818', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1842, '2022-08-09 05:21:30', 1825, NULL, NULL, 'IPAY2022/08/1819', NULL, 'cash', '', '', '', '', '', '', '4250.0000', NULL, 2, NULL, 'received', '', '4250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1843, '2022-08-09 05:50:05', 1826, NULL, NULL, 'IPAY2022/08/1820', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1844, '2022-08-09 06:36:06', 1827, NULL, NULL, 'IPAY2022/08/1821', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1845, '2022-08-09 06:46:11', 1828, NULL, NULL, 'IPAY2022/08/1822', NULL, 'CC', '', '', '', '', '', '', '2470.0000', NULL, 2, NULL, 'received', '', '2470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1846, '2022-08-09 07:16:24', 1829, NULL, NULL, 'IPAY2022/08/1823', NULL, 'cash', '', '', '', '', '', '', '17890.0000', NULL, 2, NULL, 'received', '', '17890.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1847, '2022-08-09 07:44:07', 1830, NULL, NULL, 'IPAY2022/08/1824', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1848, '2022-08-09 07:56:32', 1831, NULL, NULL, 'IPAY2022/08/1825', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1849, '2022-08-09 09:27:07', 1832, NULL, NULL, 'IPAY2022/08/1826', NULL, 'cash', '', '', '', '', '', '', '1770.0000', NULL, 2, NULL, 'received', '', '1770.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1850, '2022-08-09 23:39:32', 1833, NULL, NULL, 'IPAY2022/08/1827', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1851, '2022-08-10 00:33:44', 1834, NULL, NULL, 'IPAY2022/08/1828', NULL, 'cash', '', '', '', '', '', '', '1290.0000', NULL, 2, NULL, 'received', '', '1290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1852, '2022-08-10 01:17:58', 1835, NULL, NULL, 'IPAY2022/08/1829', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1853, '2022-08-10 01:38:56', 1836, NULL, NULL, 'IPAY2022/08/1830', NULL, 'cash', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1854, '2022-08-10 05:18:41', 1837, NULL, NULL, 'IPAY2022/08/1831', NULL, 'CC', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1855, '2022-08-10 05:57:22', 1838, NULL, NULL, 'IPAY2022/08/1832', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1856, '2022-08-10 06:01:18', 1839, NULL, NULL, 'IPAY2022/08/1833', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1857, '2022-08-10 06:29:02', 1840, NULL, NULL, 'IPAY2022/08/1834', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1858, '2022-08-10 06:41:25', 1841, NULL, NULL, 'IPAY2022/08/1835', NULL, 'other', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1859, '2022-08-10 07:01:31', 1842, NULL, NULL, 'IPAY2022/08/1836', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1860, '2022-08-10 07:16:14', 1843, NULL, NULL, 'IPAY2022/08/1837', NULL, 'cash', '', '', '', '', '', '', '310.0000', NULL, 2, NULL, 'received', '', '310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1861, '2022-08-10 07:17:09', 1844, NULL, NULL, 'IPAY2022/08/1838', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1862, '2022-08-10 07:32:12', 1845, NULL, NULL, 'IPAY2022/08/1839', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1863, '2022-08-10 08:05:45', 1846, NULL, NULL, 'IPAY2022/08/1840', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1864, '2022-08-10 08:23:11', 1847, NULL, NULL, 'IPAY2022/08/1841', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1865, '2022-08-10 08:24:16', 1848, NULL, NULL, 'IPAY2022/08/1842', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1866, '2022-08-10 08:34:15', 1849, NULL, NULL, 'IPAY2022/08/1843', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1867, '2022-08-10 08:50:26', 1850, NULL, NULL, 'IPAY2022/08/1844', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1868, '2022-08-10 09:01:37', 1851, NULL, NULL, 'IPAY2022/08/1845', NULL, 'CC', '', '', '', '', '', '', '8000.0000', NULL, 2, NULL, 'received', '', '8000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1869, '2022-08-10 09:07:56', 1852, NULL, NULL, 'IPAY2022/08/1846', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1870, '2022-08-10 09:18:19', 1853, NULL, NULL, 'IPAY2022/08/1847', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1871, '2022-08-10 09:22:04', 1854, NULL, NULL, 'IPAY2022/08/1848', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1872, '2022-08-10 09:41:46', 1855, NULL, NULL, 'IPAY2022/08/1849', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1873, '2022-08-10 09:43:27', 1856, NULL, NULL, 'IPAY2022/08/1850', NULL, 'cash', '', '', '', '', '', '', '610.0000', NULL, 2, NULL, 'received', '', '610.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1874, '2022-08-10 09:48:02', 1857, NULL, NULL, 'IPAY2022/08/1851', NULL, 'cash', '', '', '', '', '', '', '5400.0000', NULL, 2, NULL, 'received', '', '5400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1875, '2022-08-11 01:09:55', 1858, NULL, NULL, 'IPAY2022/08/1852', NULL, 'cash', '', '', '', '', '', '', '9850.0000', NULL, 2, NULL, 'received', '', '9850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1876, '2022-08-11 01:53:00', 1859, NULL, NULL, 'IPAY2022/08/1853', NULL, 'CC', '', '', '', '', '', '', '3800.0000', NULL, 2, NULL, 'received', '', '3800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1877, '2022-08-11 02:06:56', 1860, NULL, NULL, 'IPAY2022/08/1854', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1878, '2022-08-11 08:40:30', 1861, NULL, NULL, 'IPAY2022/08/1855', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1879, '2022-08-12 06:28:53', 1862, NULL, NULL, 'IPAY2022/08/1856', NULL, 'CC', '', '', '', '', '', '', '5550.0000', NULL, 2, NULL, 'received', '', '5550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1880, '2022-08-12 06:46:16', 1863, NULL, NULL, 'IPAY2022/08/1857', NULL, 'CC', '', '', '', '', '', '', '3710.0000', NULL, 2, NULL, 'received', '', '3710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1881, '2022-08-12 07:03:29', 1864, NULL, NULL, 'IPAY2022/08/1858', NULL, 'cash', '', '', '', '', '', '', '5150.0000', NULL, 2, NULL, 'received', '', '5150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1882, '2022-08-12 07:46:48', 1865, NULL, NULL, 'IPAY2022/08/1859', NULL, 'cash', '', '', '', '', '', '', '6090.0000', NULL, 2, NULL, 'received', '', '6090.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1883, '2022-08-12 07:48:14', 1866, NULL, NULL, 'IPAY2022/08/1860', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1884, '2022-08-12 07:49:12', 1867, NULL, NULL, 'IPAY2022/08/1861', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1885, '2022-08-12 07:54:52', 1868, NULL, NULL, 'IPAY2022/08/1862', NULL, 'CC', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1886, '2022-08-12 08:05:05', 1869, NULL, NULL, 'IPAY2022/08/1863', NULL, 'CC', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1887, '2022-08-12 09:00:17', 1870, NULL, NULL, 'IPAY2022/08/1864', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1888, '2022-08-12 09:33:52', 1871, NULL, NULL, 'IPAY2022/08/1865', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1889, '2022-08-13 02:40:32', 1872, NULL, NULL, 'IPAY2022/08/1866', NULL, 'cash', '', '', '', '', '', '', '610.0000', NULL, 2, NULL, 'received', '', '610.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1890, '2022-08-13 05:02:20', 1873, NULL, NULL, 'IPAY2022/08/1867', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1891, '2022-08-13 05:05:41', 1874, NULL, NULL, 'IPAY2022/08/1868', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1892, '2022-08-13 06:32:26', 1875, NULL, NULL, 'IPAY2022/08/1869', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1893, '2022-08-13 06:33:28', 1876, NULL, NULL, 'IPAY2022/08/1870', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1894, '2022-08-13 07:00:07', 1877, NULL, NULL, 'IPAY2022/08/1871', NULL, 'cash', '', '', '', '', '', '', '820.0000', NULL, 2, NULL, 'received', '', '820.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1895, '2022-08-13 07:03:41', 1878, NULL, NULL, 'IPAY2022/08/1872', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1896, '2022-08-13 07:05:36', 1879, NULL, NULL, 'IPAY2022/08/1873', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1897, '2022-08-13 07:18:59', 1880, NULL, NULL, 'IPAY2022/08/1874', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1898, '2022-08-13 08:08:52', 1882, NULL, NULL, 'IPAY2022/08/1875', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1899, '2022-08-13 08:26:33', 1883, NULL, NULL, 'IPAY2022/08/1876', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1900, '2022-08-13 08:34:23', 1884, NULL, NULL, 'IPAY2022/08/1877', NULL, 'cash', '', '', '', '', '', '', '9400.0000', NULL, 2, NULL, 'received', '', '9400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1901, '2022-08-13 08:38:52', 1885, NULL, NULL, 'IPAY2022/08/1878', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1902, '2022-08-13 09:14:00', 1886, NULL, NULL, 'IPAY2022/08/1879', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1903, '2022-08-13 09:19:14', 1887, NULL, NULL, 'IPAY2022/08/1880', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1904, '2022-08-13 09:30:52', 1888, NULL, NULL, 'IPAY2022/08/1881', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1905, '2022-08-13 09:40:01', 1889, NULL, NULL, 'IPAY2022/08/1882', NULL, 'cash', '', '', '', '', '', '', '4450.0000', NULL, 2, NULL, 'received', '', '4450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1906, '2022-08-13 23:19:06', 1890, NULL, NULL, 'IPAY2022/08/1883', NULL, 'cash', '', '', '', '', '', '', '610.0000', NULL, 2, NULL, 'received', '', '610.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1907, '2022-08-14 01:08:57', 1891, NULL, NULL, 'IPAY2022/08/1884', NULL, 'CC', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1908, '2022-08-14 01:09:17', 1892, NULL, NULL, 'IPAY2022/08/1885', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1909, '2022-08-14 03:03:32', 1893, NULL, NULL, 'IPAY2022/08/1886', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1910, '2022-08-14 03:24:50', 1894, NULL, NULL, 'IPAY2022/08/1887', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1911, '2022-08-14 03:49:34', 1895, NULL, NULL, 'IPAY2022/08/1888', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1912, '2022-08-14 04:06:17', 1896, NULL, NULL, 'IPAY2022/08/1889', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1913, '2022-08-14 04:10:11', 1897, NULL, NULL, 'IPAY2022/08/1890', NULL, 'CC', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1914, '2022-08-14 04:13:35', 1898, NULL, NULL, 'IPAY2022/08/1891', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1915, '2022-08-14 04:34:05', 1899, NULL, NULL, 'IPAY2022/08/1892', NULL, 'cash', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1916, '2022-08-14 04:37:31', 1900, NULL, NULL, 'IPAY2022/08/1893', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1917, '2022-08-14 04:41:11', 1901, NULL, NULL, 'IPAY2022/08/1894', NULL, 'cash', '', '', '', '', '', '', '1120.0000', NULL, 2, NULL, 'received', '', '1120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1918, '2022-08-14 05:35:01', 1902, NULL, NULL, 'IPAY2022/08/1895', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1919, '2022-08-14 06:03:55', 1903, NULL, NULL, 'IPAY2022/08/1896', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1920, '2022-08-14 06:43:52', 1904, NULL, NULL, 'IPAY2022/08/1897', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1921, '2022-08-14 07:01:30', 1905, NULL, NULL, 'IPAY2022/08/1898', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1922, '2022-08-14 08:13:58', 1906, NULL, NULL, 'IPAY2022/08/1899', NULL, 'cash', '', '', '', '', '', '', '3650.0000', NULL, 2, NULL, 'received', '', '3650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1923, '2022-08-14 08:15:11', 1907, NULL, NULL, 'IPAY2022/08/1900', NULL, 'cash', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1924, '2022-08-14 08:15:28', 1908, NULL, NULL, 'IPAY2022/08/1901', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1925, '2022-08-14 08:15:59', 1909, NULL, NULL, 'IPAY2022/08/1902', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1926, '2022-08-14 09:30:08', 1910, NULL, NULL, 'IPAY2022/08/1903', NULL, 'cash', '', '', '', '', '', '', '24150.0000', NULL, 2, NULL, 'received', '', '24150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1927, '2022-08-14 09:31:52', 1911, NULL, NULL, 'IPAY2022/08/1904', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1928, '2022-08-14 09:43:13', 1912, NULL, NULL, 'IPAY2022/08/1905', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1929, '2022-08-14 09:50:38', 1913, NULL, NULL, 'IPAY2022/08/1906', NULL, 'cash', '', '', '', '', '', '', '560.0000', NULL, 2, NULL, 'received', '', '560.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1930, '2022-08-14 09:54:34', 1914, NULL, NULL, 'IPAY2022/08/1907', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1931, '2022-08-15 01:06:06', 1915, NULL, NULL, 'IPAY2022/08/1908', NULL, 'CC', '', '', '', '', '', '', '6350.0000', NULL, 2, NULL, 'received', '', '6350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1932, '2022-08-15 01:59:36', 1916, NULL, NULL, 'IPAY2022/08/1909', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1933, '2022-08-15 02:28:40', 1917, NULL, NULL, 'IPAY2022/08/1910', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1934, '2022-08-15 05:11:52', 1918, NULL, NULL, 'IPAY2022/08/1911', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1935, '2022-08-15 07:05:00', 1919, NULL, NULL, 'IPAY2022/08/1912', NULL, 'cash', '', '', '', '', '', '', '6650.0000', NULL, 2, NULL, 'received', '', '6650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1936, '2022-08-15 08:19:41', 1920, NULL, NULL, 'IPAY2022/08/1913', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1937, '2022-08-15 08:51:34', 1921, NULL, NULL, 'IPAY2022/08/1914', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1938, '2022-08-15 08:56:15', 1922, NULL, NULL, 'IPAY2022/08/1915', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1939, '2022-08-15 09:51:13', 1923, NULL, NULL, 'IPAY2022/08/1916', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1940, '2022-08-16 01:20:34', 1924, NULL, NULL, 'IPAY2022/08/1917', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1941, '2022-08-16 03:04:33', 1925, NULL, NULL, 'IPAY2022/08/1918', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1942, '2022-08-16 03:32:23', 1926, NULL, NULL, 'IPAY2022/08/1919', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1943, '2022-08-16 03:34:45', 1927, NULL, NULL, 'IPAY2022/08/1920', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1944, '2022-08-16 04:07:55', 1928, NULL, NULL, 'IPAY2022/08/1921', NULL, 'CC', '', '', '', '', '', '', '2550.0000', NULL, 2, NULL, 'received', '', '2550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1945, '2022-08-16 05:25:12', 1929, NULL, NULL, 'IPAY2022/08/1922', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1946, '2022-08-16 05:25:25', 1930, NULL, NULL, 'IPAY2022/08/1923', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1947, '2022-08-16 05:31:27', 1931, NULL, NULL, 'IPAY2022/08/1924', NULL, 'CC', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1948, '2022-08-16 05:36:12', 1932, NULL, NULL, 'IPAY2022/08/1925', NULL, 'cash', '', '', '', '', '', '', '3270.0000', NULL, 2, NULL, 'received', '', '3270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1949, '2022-08-16 06:22:59', 1933, NULL, NULL, 'IPAY2022/08/1926', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1951, '2022-08-16 07:45:19', 1935, NULL, NULL, 'IPAY2022/08/1928', NULL, 'CC', '', '', '', '', '', '', '5250.0000', NULL, 2, NULL, 'received', '', '5250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1952, '2022-08-16 08:18:59', 1936, NULL, NULL, 'IPAY2022/08/1929', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1953, '2022-08-16 08:27:32', 1937, NULL, NULL, 'IPAY2022/08/1930', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1954, '2022-08-16 09:04:27', 1938, NULL, NULL, 'IPAY2022/08/1931', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1955, '2022-08-16 09:23:29', 1939, NULL, NULL, 'IPAY2022/08/1932', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1956, '2022-08-16 09:52:09', 1940, NULL, NULL, 'IPAY2022/08/1933', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1957, '2022-08-17 02:06:47', 1941, NULL, NULL, 'IPAY2022/08/1934', NULL, 'cash', '', '', '', '', '', '', '5000.0000', NULL, 2, NULL, 'received', '', '5000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1958, '2022-08-17 06:23:31', 1942, NULL, NULL, 'IPAY2022/08/1935', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1959, '2022-08-17 08:27:28', 1943, NULL, NULL, 'IPAY2022/08/1936', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1960, '2022-08-18 01:19:40', 1944, NULL, NULL, 'IPAY2022/08/1937', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1961, '2022-08-18 01:46:47', 1945, NULL, NULL, 'IPAY2022/08/1938', NULL, 'CC', '', '', '', '', '', '', '710.0000', NULL, 2, NULL, 'received', '', '710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1962, '2022-08-18 01:48:47', 1946, NULL, NULL, 'IPAY2022/08/1939', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1963, '2022-08-18 04:43:23', 1947, NULL, NULL, 'IPAY2022/08/1940', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1964, '2022-08-18 04:52:18', 1948, NULL, NULL, 'IPAY2022/08/1941', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1965, '2022-08-18 07:49:04', 1949, NULL, NULL, 'IPAY2022/08/1942', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1966, '2022-08-18 09:24:37', 1950, NULL, NULL, 'IPAY2022/08/1943', NULL, 'cash', '', '', '', '', '', '', '530.0000', NULL, 2, NULL, 'received', '', '530.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1967, '2022-08-18 23:54:26', 1951, NULL, NULL, 'IPAY2022/08/1944', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1968, '2022-08-19 00:49:31', 1952, NULL, NULL, 'IPAY2022/08/1945', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1969, '2022-08-19 01:47:36', 1953, NULL, NULL, 'IPAY2022/08/1946', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1970, '2022-08-19 02:42:59', 1954, NULL, NULL, 'IPAY2022/08/1947', NULL, 'cash', '', '', '', '', '', '', '18050.0000', NULL, 2, NULL, 'received', '', '18050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1971, '2022-08-19 02:45:43', 1955, NULL, NULL, 'IPAY2022/08/1948', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1972, '2022-08-19 02:46:24', 1956, NULL, NULL, 'IPAY2022/08/1949', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1973, '2022-08-19 03:42:46', 1957, NULL, NULL, 'IPAY2022/08/1950', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1974, '2022-08-19 04:18:04', 1958, NULL, NULL, 'IPAY2022/08/1951', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1975, '2022-08-19 05:02:31', 1959, NULL, NULL, 'IPAY2022/08/1952', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1976, '2022-08-19 07:13:34', 1960, NULL, NULL, 'IPAY2022/08/1953', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1977, '2022-08-19 07:35:34', 1961, NULL, NULL, 'IPAY2022/08/1954', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1978, '2022-08-19 07:39:04', 1962, NULL, NULL, 'IPAY2022/08/1955', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1979, '2022-08-19 08:11:25', 1963, NULL, NULL, 'IPAY2022/08/1956', NULL, 'cash', '', '', '', '', '', '', '2550.0000', NULL, 2, NULL, 'received', '', '2550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1980, '2022-08-19 08:12:12', 1964, NULL, NULL, 'IPAY2022/08/1957', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1981, '2022-08-19 08:13:42', 1965, NULL, NULL, 'IPAY2022/08/1958', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1982, '2022-08-19 08:22:56', 1966, NULL, NULL, 'IPAY2022/08/1959', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1983, '2022-08-19 08:47:12', 1967, NULL, NULL, 'IPAY2022/08/1960', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1984, '2022-08-19 09:09:40', 1968, NULL, NULL, 'IPAY2022/08/1961', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1985, '2022-08-20 02:36:05', 1969, NULL, NULL, 'IPAY2022/08/1962', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1986, '2022-08-20 04:30:02', 1970, NULL, NULL, 'IPAY2022/08/1963', NULL, 'cash', '', '', '', '', '', '', '3450.0000', NULL, 2, NULL, 'received', '', '3450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1987, '2022-08-20 05:12:37', 1971, NULL, NULL, 'IPAY2022/08/1964', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1988, '2022-08-20 05:39:39', 1972, NULL, NULL, 'IPAY2022/08/1965', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1989, '2022-08-20 05:43:07', 1973, NULL, NULL, 'IPAY2022/08/1966', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1990, '2022-08-20 06:28:15', 1974, NULL, NULL, 'IPAY2022/08/1967', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1991, '2022-08-20 06:55:06', 1975, NULL, NULL, 'IPAY2022/08/1968', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1992, '2022-08-20 07:14:09', 1976, NULL, NULL, 'IPAY2022/08/1969', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1993, '2022-08-20 07:35:22', 1977, NULL, NULL, 'IPAY2022/08/1970', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1994, '2022-08-20 08:19:37', 1978, NULL, NULL, 'IPAY2022/08/1971', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1995, '2022-08-20 08:27:33', 1979, NULL, NULL, 'IPAY2022/08/1972', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1996, '2022-08-20 08:30:42', 1980, NULL, NULL, 'IPAY2022/08/1973', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1997, '2022-08-20 08:36:12', 1981, NULL, NULL, 'IPAY2022/08/1974', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1998, '2022-08-20 08:43:37', 1982, NULL, NULL, 'IPAY2022/08/1975', NULL, 'cash', '', '', '', '', '', '', '230.0000', NULL, 2, NULL, 'received', '', '230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (1999, '2022-08-20 09:03:13', 1983, NULL, NULL, 'IPAY2022/08/1976', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2000, '2022-08-20 09:06:40', 1984, NULL, NULL, 'IPAY2022/08/1977', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2001, '2022-08-20 09:23:58', 1985, NULL, NULL, 'IPAY2022/08/1978', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2002, '2022-08-20 09:29:39', 1986, NULL, NULL, 'IPAY2022/08/1979', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2003, '2022-08-20 09:52:25', 1987, NULL, NULL, 'IPAY2022/08/1980', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2004, '2022-08-21 01:26:16', 1988, NULL, NULL, 'IPAY2022/08/1981', NULL, 'CC', '', '', '', '', '', '', '2800.0000', NULL, 2, NULL, 'received', '', '2800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2005, '2022-08-21 03:34:35', 1989, NULL, NULL, 'IPAY2022/08/1982', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2006, '2022-08-21 05:24:01', 1990, NULL, NULL, 'IPAY2022/08/1983', NULL, 'CC', '', '', '', '', '', '', '6600.0000', NULL, 2, NULL, 'received', '', '6600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2007, '2022-08-21 05:50:32', 1991, NULL, NULL, 'IPAY2022/08/1984', NULL, 'CC', '', '', '', '', '', '', '3700.0000', NULL, 2, NULL, 'received', '', '3700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2008, '2022-08-21 06:03:48', 1992, NULL, NULL, 'IPAY2022/08/1985', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2009, '2022-08-21 06:24:30', 1993, NULL, NULL, 'IPAY2022/08/1986', NULL, 'other', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2010, '2022-08-21 06:33:29', 1994, NULL, NULL, 'IPAY2022/08/1987', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2011, '2022-08-21 07:14:00', 1995, NULL, NULL, 'IPAY2022/08/1988', NULL, 'cash', '', '', '', '', '', '', '11600.0000', NULL, 2, NULL, 'received', '', '11600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2012, '2022-08-21 07:15:05', 1996, NULL, NULL, 'IPAY2022/08/1989', NULL, 'cash', '', '', '', '', '', '', '420.0000', NULL, 2, NULL, 'received', '', '420.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2013, '2022-08-21 08:33:27', 1997, NULL, NULL, 'IPAY2022/08/1990', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2014, '2022-08-21 08:57:25', 1998, NULL, NULL, 'IPAY2022/08/1991', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2015, '2022-08-22 01:42:34', 1999, NULL, NULL, 'IPAY2022/08/1992', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2016, '2022-08-22 02:09:17', 2000, NULL, NULL, 'IPAY2022/08/1993', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2017, '2022-08-22 04:13:56', 2001, NULL, NULL, 'IPAY2022/08/1994', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2018, '2022-08-22 05:46:29', 2002, NULL, NULL, 'IPAY2022/08/1995', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2019, '2022-08-22 06:25:11', 2003, NULL, NULL, 'IPAY2022/08/1996', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2020, '2022-08-22 07:07:01', 2004, NULL, NULL, 'IPAY2022/08/1997', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2021, '2022-08-22 08:56:47', 2005, NULL, NULL, 'IPAY2022/08/1998', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2022, '2022-08-23 00:45:43', 2006, NULL, NULL, 'IPAY2022/08/1999', NULL, 'cash', '', '', '', '', '', '', '31920.0000', NULL, 2, NULL, 'received', '', '31920.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2023, '2022-08-23 02:01:05', 2007, NULL, NULL, 'IPAY2022/08/2000', NULL, 'cash', '', '', '', '', '', '', '2910.0000', NULL, 2, NULL, 'received', '', '2910.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2024, '2022-08-23 06:03:23', 2008, NULL, NULL, 'IPAY2022/08/2001', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2025, '2022-08-23 06:25:50', 2009, NULL, NULL, 'IPAY2022/08/2002', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2026, '2022-08-23 08:51:46', 2010, NULL, NULL, 'IPAY2022/08/2003', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2027, '2022-08-23 09:15:26', 2011, NULL, NULL, 'IPAY2022/08/2004', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2028, '2022-08-24 00:22:50', 2012, NULL, NULL, 'IPAY2022/08/2005', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2029, '2022-08-24 00:49:40', 2013, NULL, NULL, 'IPAY2022/08/2006', NULL, 'other', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2030, '2022-08-24 02:25:31', 2014, NULL, NULL, 'IPAY2022/08/2007', NULL, 'cash', '', '', '', '', '', '', '1440.0000', NULL, 2, NULL, 'received', '', '1440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2031, '2022-08-24 03:30:22', 2015, NULL, NULL, 'IPAY2022/08/2008', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2032, '2022-08-24 04:39:43', 2016, NULL, NULL, 'IPAY2022/08/2009', NULL, 'CC', '', '', '', '', '', '', '8000.0000', NULL, 2, NULL, 'received', '', '8000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2033, '2022-08-24 04:40:59', 2017, NULL, NULL, 'IPAY2022/08/2010', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2034, '2022-08-24 04:55:39', 2018, NULL, NULL, 'IPAY2022/08/2011', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2035, '2022-08-24 05:08:00', 2019, NULL, NULL, 'IPAY2022/08/2012', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2036, '2022-08-24 06:33:15', 2020, NULL, NULL, 'IPAY2022/08/2013', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2037, '2022-08-24 09:01:35', 2021, NULL, NULL, 'IPAY2022/08/2014', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2038, '2022-08-24 09:41:19', 2022, NULL, NULL, 'IPAY2022/08/2015', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2042, '2022-08-25 06:49:11', 2024, NULL, NULL, 'IPAY2022/08/2019', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '150.0000', '100.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2041, '2022-08-25 06:49:11', 2024, NULL, NULL, 'IPAY2022/08/2018', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '-50.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2043, '2022-08-25 07:03:06', 2025, NULL, NULL, 'IPAY2022/08/2020', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2044, '2022-08-25 08:18:43', 2026, NULL, NULL, 'IPAY2022/08/2021', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2045, '2022-08-25 08:58:11', 2027, NULL, NULL, 'IPAY2022/08/2022', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2046, '2022-08-26 03:07:21', 2028, NULL, NULL, 'IPAY2022/08/2023', NULL, 'cash', '', '', '', '', '', '', '3800.0000', NULL, 2, NULL, 'received', '', '3800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2047, '2022-08-26 03:41:56', 2029, NULL, NULL, 'IPAY2022/08/2024', NULL, 'cash', '', '', '', '', '', '', '760.0000', NULL, 2, NULL, 'received', '', '760.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2048, '2022-08-26 06:25:39', 2030, NULL, NULL, 'IPAY2022/08/2025', NULL, 'CC', '', '', '', '', '', '', '5150.0000', NULL, 2, NULL, 'received', '', '5150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2049, '2022-08-26 06:28:28', 2031, NULL, NULL, 'IPAY2022/08/2026', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2050, '2022-08-26 08:50:31', 2032, NULL, NULL, 'IPAY2022/08/2027', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2051, '2022-08-26 09:24:05', 2033, NULL, NULL, 'IPAY2022/08/2028', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2052, '2022-08-26 23:50:31', 2034, NULL, NULL, 'IPAY2022/08/2029', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 2, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2053, '2022-08-27 01:56:19', 2035, NULL, NULL, 'IPAY2022/08/2030', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2054, '2022-08-27 02:28:30', 2036, NULL, NULL, 'IPAY2022/08/2031', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2055, '2022-08-27 03:18:46', 2037, NULL, NULL, 'IPAY2022/08/2032', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2056, '2022-08-27 03:41:52', 2038, NULL, NULL, 'IPAY2022/08/2033', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2057, '2022-08-27 05:39:27', 2039, NULL, NULL, 'IPAY2022/08/2034', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2058, '2022-08-27 06:10:42', 2040, NULL, NULL, 'IPAY2022/08/2035', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2059, '2022-08-27 06:50:14', 2041, NULL, NULL, 'IPAY2022/08/2036', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2060, '2022-08-27 07:02:01', 2042, NULL, NULL, 'IPAY2022/08/2037', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2061, '2022-08-27 07:32:52', 2043, NULL, NULL, 'IPAY2022/08/2038', NULL, 'cash', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2062, '2022-08-27 09:02:59', 2044, NULL, NULL, 'IPAY2022/08/2039', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2063, '2022-08-27 09:46:43', 2045, NULL, NULL, 'IPAY2022/08/2040', NULL, 'cash', '', '', '', '', '', '', '280.0000', NULL, 2, NULL, 'received', '', '280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2064, '2022-08-27 09:47:10', 2046, NULL, NULL, 'IPAY2022/08/2041', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2065, '2022-08-27 09:56:54', 2047, NULL, NULL, 'IPAY2022/08/2042', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2066, '2022-08-27 10:18:57', 2048, NULL, NULL, 'IPAY2022/08/2043', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2067, '2022-08-28 01:19:29', 2049, NULL, NULL, 'IPAY2022/08/2044', NULL, 'CC', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2068, '2022-08-28 01:20:04', 2050, NULL, NULL, 'IPAY2022/08/2045', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2069, '2022-08-28 02:00:52', 2051, NULL, NULL, 'IPAY2022/08/2046', NULL, 'CC', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2070, '2022-08-28 03:13:43', 2052, NULL, NULL, 'IPAY2022/08/2047', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2071, '2022-08-28 04:37:46', 2053, NULL, NULL, 'IPAY2022/08/2048', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2072, '2022-08-28 08:37:33', 2054, NULL, NULL, 'IPAY2022/08/2049', NULL, 'CC', '', '', '', '', '', '', '4600.0000', NULL, 2, NULL, 'received', '', '4600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2073, '2022-08-28 08:39:00', 2055, NULL, NULL, 'IPAY2022/08/2050', NULL, 'cash', '', '', '', '', '', '', '5500.0000', NULL, 2, NULL, 'received', '', '5500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2074, '2022-08-28 08:51:21', 2056, NULL, NULL, 'IPAY2022/08/2051', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2075, '2022-08-28 08:53:55', 2057, NULL, NULL, 'IPAY2022/08/2052', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2076, '2022-08-28 09:08:02', 2058, NULL, NULL, 'IPAY2022/08/2053', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2077, '2022-08-28 09:15:20', 2059, NULL, NULL, 'IPAY2022/08/2054', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2078, '2022-08-29 01:14:39', 2060, NULL, NULL, 'IPAY2022/08/2055', NULL, 'cash', '', '', '', '', '', '', '5000.0000', NULL, 2, NULL, 'received', '', '5000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2079, '2022-08-29 04:04:12', 2061, NULL, NULL, 'IPAY2022/08/2056', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2080, '2022-08-29 04:36:50', 2062, NULL, NULL, 'IPAY2022/08/2057', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2081, '2022-08-29 05:13:03', 2063, NULL, NULL, 'IPAY2022/08/2058', NULL, 'cash', '', '', '', '', '', '', '8250.0000', NULL, 2, NULL, 'received', '', '8250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2082, '2022-08-29 06:23:14', 2064, NULL, NULL, 'IPAY2022/08/2059', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2083, '2022-08-30 00:24:53', 2065, NULL, NULL, 'IPAY2022/08/2060', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2084, '2022-08-30 00:30:40', 2066, NULL, NULL, 'IPAY2022/08/2061', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2085, '2022-08-30 01:10:22', 2067, NULL, NULL, 'IPAY2022/08/2062', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2086, '2022-08-30 02:13:55', 2068, NULL, NULL, 'IPAY2022/08/2063', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2087, '2022-08-30 02:27:15', 2069, NULL, NULL, 'IPAY2022/08/2064', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2088, '2022-08-30 05:02:22', 2070, NULL, NULL, 'IPAY2022/08/2065', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2089, '2022-08-30 08:37:35', 2071, NULL, NULL, 'IPAY2022/08/2066', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2090, '2022-08-30 09:04:07', 2072, NULL, NULL, 'IPAY2022/08/2067', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2091, '2022-08-31 03:02:20', 2073, NULL, NULL, 'IPAY2022/08/2068', NULL, 'other', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2092, '2022-08-31 04:12:40', 2074, NULL, NULL, 'IPAY2022/08/2069', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2093, '2022-08-31 04:19:45', 2075, NULL, NULL, 'IPAY2022/08/2070', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2094, '2022-08-31 05:28:06', 2076, NULL, NULL, 'IPAY2022/08/2071', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2095, '2022-08-31 07:25:36', 2077, NULL, NULL, 'IPAY2022/08/2072', NULL, 'CC', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2096, '2022-08-31 08:50:24', 2078, NULL, NULL, 'IPAY2022/08/2073', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 2, NULL, 'received', '', '180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2097, '2022-08-31 09:26:53', 2079, NULL, NULL, 'IPAY2022/08/2074', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2098, '2022-09-01 00:15:55', 2080, NULL, NULL, 'IPAY2022/08/2075', NULL, 'cash', '', '', '', '', '', '', '640.0000', NULL, 2, NULL, 'received', '', '640.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2099, '2022-09-01 07:55:55', 2081, NULL, NULL, 'IPAY2022/08/2076', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2100, '2022-09-01 07:56:49', 2082, NULL, NULL, 'IPAY2022/08/2077', NULL, 'cash', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2101, '2022-09-02 01:04:15', 2083, NULL, NULL, 'IPAY2022/09/2078', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2102, '2022-09-02 02:32:56', 2084, NULL, NULL, 'IPAY2022/09/2079', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2103, '2022-09-02 03:47:04', 2085, NULL, NULL, 'IPAY2022/09/2080', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2104, '2022-09-02 06:26:30', 2086, NULL, NULL, 'IPAY2022/09/2081', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2105, '2022-09-02 06:43:20', 2087, NULL, NULL, 'IPAY2022/09/2082', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2106, '2022-09-02 08:23:34', 2088, NULL, NULL, 'IPAY2022/09/2083', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2107, '2022-09-02 09:07:11', 2089, NULL, NULL, 'IPAY2022/09/2084', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2108, '2022-09-03 02:31:28', 2090, NULL, NULL, 'IPAY2022/09/2085', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2109, '2022-09-03 05:14:38', 2091, NULL, NULL, 'IPAY2022/09/2086', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2110, '2022-09-03 05:20:47', 2092, NULL, NULL, 'IPAY2022/09/2087', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2111, '2022-09-03 05:37:36', 2093, NULL, NULL, 'IPAY2022/09/2088', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2112, '2022-09-03 10:26:14', 2094, NULL, NULL, 'IPAY2022/09/2089', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2113, '2022-09-03 10:26:35', 2095, NULL, NULL, 'IPAY2022/09/2090', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2114, '2022-09-03 10:27:01', 2096, NULL, NULL, 'IPAY2022/09/2091', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2115, '2022-09-03 10:30:05', 2097, NULL, NULL, 'IPAY2022/09/2092', NULL, 'cash', '', '', '', '', '', '', '5510.0000', NULL, 2, NULL, 'received', '', '5510.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2116, '2022-09-04 00:35:17', 2098, NULL, NULL, 'IPAY2022/09/2093', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2117, '2022-09-04 06:29:34', 2099, NULL, NULL, 'IPAY2022/09/2094', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2118, '2022-09-04 06:46:03', 2100, NULL, NULL, 'IPAY2022/09/2095', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2119, '2022-09-04 07:08:57', 2101, NULL, NULL, 'IPAY2022/09/2096', NULL, 'CC', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2120, '2022-09-04 07:46:54', 2102, NULL, NULL, 'IPAY2022/09/2097', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2121, '2022-09-04 07:51:51', 2103, NULL, NULL, 'IPAY2022/09/2098', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2122, '2022-09-04 09:16:32', 2104, NULL, NULL, 'IPAY2022/09/2099', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2123, '2022-09-04 09:58:37', 2105, NULL, NULL, 'IPAY2022/09/2100', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2124, '2022-09-05 02:09:49', 2106, NULL, NULL, 'IPAY2022/09/2101', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2125, '2022-09-05 05:45:40', 2107, NULL, NULL, 'IPAY2022/09/2102', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2126, '2022-09-05 05:55:19', 2108, NULL, NULL, 'IPAY2022/09/2103', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2127, '2022-09-05 06:21:00', 2109, NULL, NULL, 'IPAY2022/09/2104', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2128, '2022-09-05 06:46:32', 2110, NULL, NULL, 'IPAY2022/09/2105', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 2, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2129, '2022-09-05 07:10:20', 2111, NULL, NULL, 'IPAY2022/09/2106', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2130, '2022-09-05 08:43:57', 2112, NULL, NULL, 'IPAY2022/09/2107', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2131, '2022-09-06 00:14:03', 2113, NULL, NULL, 'IPAY2022/09/2108', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2132, '2022-09-06 01:35:31', 2114, NULL, NULL, 'IPAY2022/09/2109', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2133, '2022-09-06 01:37:49', 2115, NULL, NULL, 'IPAY2022/09/2110', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2134, '2022-09-06 04:50:40', 2116, NULL, NULL, 'IPAY2022/09/2111', NULL, 'cash', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2135, '2022-09-06 06:12:48', 2117, NULL, NULL, 'IPAY2022/09/2112', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2136, '2022-09-06 06:48:45', 2118, NULL, NULL, 'IPAY2022/09/2113', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2137, '2022-09-06 09:37:44', 2119, NULL, NULL, 'IPAY2022/09/2114', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2138, '2022-09-07 01:55:08', 2120, NULL, NULL, 'IPAY2022/09/2115', NULL, 'cash', '', '', '', '', '', '', '2150.0000', NULL, 2, NULL, 'received', '', '2150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2139, '2022-09-07 04:35:31', 2121, NULL, NULL, 'IPAY2022/09/2116', NULL, 'cash', '', '', '', '', '', '', '1330.0000', NULL, 2, NULL, 'received', '', '1330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2140, '2022-09-07 05:33:35', 2122, NULL, NULL, 'IPAY2022/09/2117', NULL, 'cash', '', '', '', '', '', '', '2950.0000', NULL, 2, NULL, 'received', '', '2950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2141, '2022-09-07 06:47:33', 2123, NULL, NULL, 'IPAY2022/09/2118', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2142, '2022-09-07 07:56:27', 2124, NULL, NULL, 'IPAY2022/09/2119', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2143, '2022-09-07 08:20:58', 2125, NULL, NULL, 'IPAY2022/09/2120', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2144, '2022-09-07 08:23:50', 2126, NULL, NULL, 'IPAY2022/09/2121', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2145, '2022-09-08 01:25:12', 2127, NULL, NULL, 'IPAY2022/09/2122', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2146, '2022-09-08 07:05:01', 2128, NULL, NULL, 'IPAY2022/09/2123', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2147, '2022-09-08 07:05:52', 2129, NULL, NULL, 'IPAY2022/09/2124', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2148, '2022-09-09 00:21:06', 2130, NULL, NULL, 'IPAY2022/09/2125', NULL, 'other', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2149, '2022-09-09 07:32:12', 2131, NULL, NULL, 'IPAY2022/09/2126', NULL, 'CC', '', '', '', '', '', '', '4580.0000', NULL, 2, NULL, 'received', '', '4580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2150, '2022-09-09 07:43:45', 2132, NULL, NULL, 'IPAY2022/09/2127', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2151, '2022-09-09 08:04:15', 2133, NULL, NULL, 'IPAY2022/09/2128', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2152, '2022-09-09 09:01:22', 2134, NULL, NULL, 'IPAY2022/09/2129', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2153, '2022-09-09 09:37:55', 2135, NULL, NULL, 'IPAY2022/09/2130', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2154, '2022-09-09 09:53:59', 2136, NULL, NULL, 'IPAY2022/09/2131', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2155, '2022-09-10 01:05:08', 2137, NULL, NULL, 'IPAY2022/09/2132', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2156, '2022-09-10 02:25:30', 2138, NULL, NULL, 'IPAY2022/09/2133', NULL, 'cash', '', '', '', '', '', '', '390.0000', NULL, 2, NULL, 'received', '', '390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2157, '2022-09-10 02:56:53', 2139, NULL, NULL, 'IPAY2022/09/2134', NULL, 'CC', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2158, '2022-09-10 03:37:06', 2140, NULL, NULL, 'IPAY2022/09/2135', NULL, 'cash', '', '', '', '', '', '', '5550.0000', NULL, 2, NULL, 'received', '', '5550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2159, '2022-09-10 04:23:28', 2141, NULL, NULL, 'IPAY2022/09/2136', NULL, 'cash', '', '', '', '', '', '', '3750.0000', NULL, 2, NULL, 'received', '', '3750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2160, '2022-09-10 04:27:00', 2142, NULL, NULL, 'IPAY2022/09/2137', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2161, '2022-09-10 05:43:28', 2143, NULL, NULL, 'IPAY2022/09/2138', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2162, '2022-09-10 06:34:39', 2144, NULL, NULL, 'IPAY2022/09/2139', NULL, 'cash', '', '', '', '', '', '', '320.0000', NULL, 2, NULL, 'received', '', '320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2163, '2022-09-10 07:25:20', 2145, NULL, NULL, 'IPAY2022/09/2140', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2164, '2022-09-10 07:25:52', 2146, NULL, NULL, 'IPAY2022/09/2141', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2165, '2022-09-10 07:36:32', 2147, NULL, NULL, 'IPAY2022/09/2142', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2166, '2022-09-10 08:14:11', 2148, NULL, NULL, 'IPAY2022/09/2143', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2167, '2022-09-10 09:13:34', 2149, NULL, NULL, 'IPAY2022/09/2144', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2168, '2022-09-10 09:23:27', 2150, NULL, NULL, 'IPAY2022/09/2145', NULL, 'cash', '', '', '', '', '', '', '840.0000', NULL, 2, NULL, 'received', '', '840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2169, '2022-09-10 10:05:18', 2151, NULL, NULL, 'IPAY2022/09/2146', NULL, 'cash', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2170, '2022-09-11 01:50:40', 2152, NULL, NULL, 'IPAY2022/09/2147', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2171, '2022-09-11 02:43:41', 2153, NULL, NULL, 'IPAY2022/09/2148', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2172, '2022-09-11 03:15:07', 2154, NULL, NULL, 'IPAY2022/09/2149', NULL, 'CC', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2173, '2022-09-11 03:59:50', 2155, NULL, NULL, 'IPAY2022/09/2150', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2174, '2022-09-11 04:09:23', 2156, NULL, NULL, 'IPAY2022/09/2151', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2175, '2022-09-11 05:27:12', 2157, NULL, NULL, 'IPAY2022/09/2152', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2176, '2022-09-11 05:49:48', 2158, NULL, NULL, 'IPAY2022/09/2153', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2177, '2022-09-11 06:02:52', 2159, NULL, NULL, 'IPAY2022/09/2154', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2178, '2022-09-11 07:06:00', 2160, NULL, NULL, 'IPAY2022/09/2155', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2179, '2022-09-11 07:14:19', 2161, NULL, NULL, 'IPAY2022/09/2156', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2180, '2022-09-11 07:54:39', 2162, NULL, NULL, 'IPAY2022/09/2157', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2181, '2022-09-11 08:02:57', 2163, NULL, NULL, 'IPAY2022/09/2158', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2182, '2022-09-11 08:14:36', 2164, NULL, NULL, 'IPAY2022/09/2159', NULL, 'cash', '', '', '', '', '', '', '430.0000', NULL, 2, NULL, 'received', '', '430.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2183, '2022-09-11 08:19:05', 2165, NULL, NULL, 'IPAY2022/09/2160', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2184, '2022-09-11 09:03:23', 2166, NULL, NULL, 'IPAY2022/09/2161', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2185, '2022-09-11 09:44:40', 2167, NULL, NULL, 'IPAY2022/09/2162', NULL, 'cash', '', '', '', '', '', '', '1440.0000', NULL, 2, NULL, 'received', '', '1440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2186, '2022-09-11 09:59:14', 2168, NULL, NULL, 'IPAY2022/09/2163', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2187, '2022-09-12 02:49:29', 2169, NULL, NULL, 'IPAY2022/09/2164', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2188, '2022-09-12 04:38:13', 2170, NULL, NULL, 'IPAY2022/09/2165', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2189, '2022-09-12 06:49:02', 2171, NULL, NULL, 'IPAY2022/09/2166', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2190, '2022-09-12 06:51:10', 2172, NULL, NULL, 'IPAY2022/09/2167', NULL, 'other', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2191, '2022-09-12 06:54:06', 2173, NULL, NULL, 'IPAY2022/09/2168', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2192, '2022-09-12 08:16:48', 2174, NULL, NULL, 'IPAY2022/09/2169', NULL, 'cash', '', '', '', '', '', '', '3900.0000', NULL, 2, NULL, 'received', '', '3900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2193, '2022-09-12 08:34:31', 2175, NULL, NULL, 'IPAY2022/09/2170', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2194, '2022-09-12 08:41:00', 2176, NULL, NULL, 'IPAY2022/09/2171', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2195, '2022-09-12 09:13:00', 2177, NULL, NULL, 'IPAY2022/09/2172', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2196, '2022-09-12 09:40:00', 2178, NULL, NULL, 'IPAY2022/09/2173', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2197, '2022-09-13 00:51:04', 2179, NULL, NULL, 'IPAY2022/09/2174', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2198, '2022-09-13 02:32:29', 2180, NULL, NULL, 'IPAY2022/09/2175', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2199, '2022-09-13 03:28:01', 2181, NULL, NULL, 'IPAY2022/09/2176', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2200, '2022-09-13 04:30:38', 2182, NULL, NULL, 'IPAY2022/09/2177', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2201, '2022-09-13 04:43:01', 2183, NULL, NULL, 'IPAY2022/09/2178', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2202, '2022-09-13 05:09:14', 2184, NULL, NULL, 'IPAY2022/09/2179', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2203, '2022-09-13 05:18:18', 2185, NULL, NULL, 'IPAY2022/09/2180', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2204, '2022-09-13 05:54:22', 2186, NULL, NULL, 'IPAY2022/09/2181', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2205, '2022-09-13 05:55:36', 2187, NULL, NULL, 'IPAY2022/09/2182', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2206, '2022-09-13 06:09:20', 2188, NULL, NULL, 'IPAY2022/09/2183', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2207, '2022-09-13 06:50:06', 2189, NULL, NULL, 'IPAY2022/09/2184', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2208, '2022-09-13 07:46:45', 2190, NULL, NULL, 'IPAY2022/09/2185', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2209, '2022-09-13 08:18:34', 2191, NULL, NULL, 'IPAY2022/09/2186', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2210, '2022-09-14 01:30:47', 2192, NULL, NULL, 'IPAY2022/09/2187', NULL, 'cash', '', '', '', '', '', '', '380.0000', NULL, 2, NULL, 'received', '', '380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2211, '2022-09-14 05:03:16', 2193, NULL, NULL, 'IPAY2022/09/2188', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2212, '2022-09-14 06:09:57', 2194, NULL, NULL, 'IPAY2022/09/2189', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2213, '2022-09-14 06:23:56', 2195, NULL, NULL, 'IPAY2022/09/2190', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2214, '2022-09-14 07:06:26', 2196, NULL, NULL, 'IPAY2022/09/2191', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2215, '2022-09-14 07:21:44', 2197, NULL, NULL, 'IPAY2022/09/2192', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2216, '2022-09-14 08:12:58', 2198, NULL, NULL, 'IPAY2022/09/2193', NULL, 'cash', '', '', '', '', '', '', '320.0000', NULL, 2, NULL, 'received', '', '320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2217, '2022-09-14 08:14:42', 2199, NULL, NULL, 'IPAY2022/09/2194', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2218, '2022-09-14 08:36:19', 2200, NULL, NULL, 'IPAY2022/09/2195', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2219, '2022-09-15 01:01:24', 2201, NULL, NULL, 'IPAY2022/09/2196', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2220, '2022-09-15 01:48:06', 2202, NULL, NULL, 'IPAY2022/09/2197', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2221, '2022-09-16 04:03:28', 2203, NULL, NULL, 'IPAY2022/09/2198', NULL, 'cash', '', '', '', '', '', '', '690.0000', NULL, 2, NULL, 'received', '', '690.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2222, '2022-09-16 04:26:42', 2204, NULL, NULL, 'IPAY2022/09/2199', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2223, '2022-09-16 04:29:40', 2205, NULL, NULL, 'IPAY2022/09/2200', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2224, '2022-09-16 05:58:42', 2206, NULL, NULL, 'IPAY2022/09/2201', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2225, '2022-09-16 07:56:31', 2207, NULL, NULL, 'IPAY2022/09/2202', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2226, '2022-09-16 08:06:53', 2208, NULL, NULL, 'IPAY2022/09/2203', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2227, '2022-09-16 08:57:11', 2209, NULL, NULL, 'IPAY2022/09/2204', NULL, 'cash', '', '', '', '', '', '', '310.0000', NULL, 2, NULL, 'received', '', '310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2228, '2022-09-16 09:25:58', 2210, NULL, NULL, 'IPAY2022/09/2205', NULL, 'CC', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2229, '2022-09-17 01:41:46', 2211, NULL, NULL, 'IPAY2022/09/2206', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2230, '2022-09-17 01:57:31', 2212, NULL, NULL, 'IPAY2022/09/2207', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2231, '2022-09-17 02:04:57', 2213, NULL, NULL, 'IPAY2022/09/2208', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2232, '2022-09-17 02:26:36', 2214, NULL, NULL, 'IPAY2022/09/2209', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2233, '2022-09-17 05:14:44', 2215, NULL, NULL, 'IPAY2022/09/2210', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2234, '2022-09-17 05:42:40', 2216, NULL, NULL, 'IPAY2022/09/2211', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2235, '2022-09-17 06:34:17', 2217, NULL, NULL, 'IPAY2022/09/2212', NULL, 'cash', '', '', '', '', '', '', '3300.0000', NULL, 2, NULL, 'received', '', '3300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2236, '2022-09-17 10:01:56', 2218, NULL, NULL, 'IPAY2022/09/2213', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2237, '2022-09-17 10:02:49', 2219, NULL, NULL, 'IPAY2022/09/2214', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2238, '2022-09-17 10:04:19', 2220, NULL, NULL, 'IPAY2022/09/2215', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2239, '2022-09-17 10:06:04', 2221, NULL, NULL, 'IPAY2022/09/2216', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2240, '2022-09-18 05:18:18', 2222, NULL, NULL, 'IPAY2022/09/2217', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2241, '2022-09-18 05:27:33', 2223, NULL, NULL, 'IPAY2022/09/2218', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2242, '2022-09-18 07:55:22', 2224, NULL, NULL, 'IPAY2022/09/2219', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2243, '2022-09-18 07:57:31', 2225, NULL, NULL, 'IPAY2022/09/2220', NULL, 'cash', '', '', '', '', '', '', '6400.0000', NULL, 2, NULL, 'received', '', '6400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2244, '2022-09-18 08:09:37', 2226, NULL, NULL, 'IPAY2022/09/2221', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2245, '2022-09-18 09:23:45', 2227, NULL, NULL, 'IPAY2022/09/2222', NULL, 'CC', '', '', '', '', '', '', '3600.0000', NULL, 2, NULL, 'received', '', '3600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2246, '2022-09-18 09:24:43', 2228, NULL, NULL, 'IPAY2022/09/2223', NULL, 'CC', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2247, '2022-09-18 09:25:17', 2229, NULL, NULL, 'IPAY2022/09/2224', NULL, 'CC', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2248, '2022-09-18 09:29:12', 2230, NULL, NULL, 'IPAY2022/09/2225', NULL, 'cash', '', '', '', '', '', '', '7450.0000', NULL, 2, NULL, 'received', '', '7450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2249, '2022-09-18 09:42:27', 2231, NULL, NULL, 'IPAY2022/09/2226', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2250, '2022-09-19 05:28:30', 2232, NULL, NULL, 'IPAY2022/09/2227', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2251, '2022-09-19 05:42:45', 2233, NULL, NULL, 'IPAY2022/09/2228', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2252, '2022-09-19 05:49:40', 2234, NULL, NULL, 'IPAY2022/09/2229', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2253, '2022-09-19 06:26:19', 2235, NULL, NULL, 'IPAY2022/09/2230', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2254, '2022-09-19 07:04:06', 2236, NULL, NULL, 'IPAY2022/09/2231', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2255, '2022-09-19 07:48:19', 2237, NULL, NULL, 'IPAY2022/09/2232', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2256, '2022-09-19 08:41:44', 2238, NULL, NULL, 'IPAY2022/09/2233', NULL, 'other', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2257, '2022-09-19 08:56:04', 2239, NULL, NULL, 'IPAY2022/09/2234', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2258, '2022-09-19 09:12:52', 2240, NULL, NULL, 'IPAY2022/09/2235', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2259, '2022-09-20 00:08:16', 2241, NULL, NULL, 'IPAY2022/09/2236', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2260, '2022-09-20 02:27:22', 2242, NULL, NULL, 'IPAY2022/09/2237', NULL, 'CC', '', '', '', '', '', '', '1520.0000', NULL, 2, NULL, 'received', '', '1520.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2261, '2022-09-20 04:06:50', 2243, NULL, NULL, 'IPAY2022/09/2238', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2262, '2022-09-20 05:48:17', 2244, NULL, NULL, 'IPAY2022/09/2239', NULL, 'CC', '', '', '', '', '', '', '4500.0000', NULL, 2, NULL, 'received', '', '4500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2263, '2022-09-20 06:05:03', 2245, NULL, NULL, 'IPAY2022/09/2240', NULL, 'CC', '', '', '', '', '', '', '7950.0000', NULL, 2, NULL, 'received', '', '7950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2264, '2022-09-20 06:55:37', 2246, NULL, NULL, 'IPAY2022/09/2241', NULL, 'CC', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2265, '2022-09-20 07:00:13', 2247, NULL, NULL, 'IPAY2022/09/2242', NULL, 'other', '', '', '', '', '', '', '2750.0000', NULL, 2, NULL, 'received', '', '2750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2266, '2022-09-20 07:20:40', 2248, NULL, NULL, 'IPAY2022/09/2243', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2267, '2022-09-20 09:20:15', 2249, NULL, NULL, 'IPAY2022/09/2244', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2268, '2022-09-21 05:09:37', 2250, NULL, NULL, 'IPAY2022/09/2245', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2269, '2022-09-21 06:23:15', 2251, NULL, NULL, 'IPAY2022/09/2246', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2270, '2022-09-21 08:14:23', 2252, NULL, NULL, 'IPAY2022/09/2247', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2271, '2022-09-22 02:59:38', 2253, NULL, NULL, 'IPAY2022/09/2248', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2272, '2022-09-22 07:28:42', 2254, NULL, NULL, 'IPAY2022/09/2249', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 2, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2273, '2022-09-22 08:16:52', 2255, NULL, NULL, 'IPAY2022/09/2250', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2274, '2022-09-22 08:49:58', 2256, NULL, NULL, 'IPAY2022/09/2251', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2275, '2022-09-23 00:37:04', 2257, NULL, NULL, 'IPAY2022/09/2252', NULL, 'cash', '', '', '', '', '', '', '570.0000', NULL, 2, NULL, 'received', '', '570.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2276, '2022-09-23 00:58:51', 2258, NULL, NULL, 'IPAY2022/09/2253', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2277, '2022-09-23 02:15:22', 2259, NULL, NULL, 'IPAY2022/09/2254', NULL, 'other', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2278, '2022-09-23 05:12:25', 2260, NULL, NULL, 'IPAY2022/09/2255', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2279, '2022-09-24 00:30:50', 2261, NULL, NULL, 'IPAY2022/09/2256', NULL, 'cash', '', '', '', '', '', '', '6800.0000', NULL, 2, NULL, 'received', '', '6800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2280, '2022-09-24 01:36:35', 2262, NULL, NULL, 'IPAY2022/09/2257', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2281, '2022-09-24 03:26:54', 2263, NULL, NULL, 'IPAY2022/09/2258', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2282, '2022-09-24 03:39:49', 2264, NULL, NULL, 'IPAY2022/09/2259', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2283, '2022-09-24 05:08:01', 2265, NULL, NULL, 'IPAY2022/09/2260', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2284, '2022-09-24 05:52:51', 2266, NULL, NULL, 'IPAY2022/09/2261', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2285, '2022-09-24 06:22:05', 2267, NULL, NULL, 'IPAY2022/09/2262', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2286, '2022-09-24 08:00:12', 2268, NULL, NULL, 'IPAY2022/09/2263', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2287, '2022-09-25 00:57:33', 2269, NULL, NULL, 'IPAY2022/09/2264', NULL, 'CC', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2288, '2022-09-25 01:45:26', 2270, NULL, NULL, 'IPAY2022/09/2265', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2290, '2022-09-25 06:37:38', 2272, NULL, NULL, 'IPAY2022/09/2267', NULL, 'CC', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2291, '2022-09-25 06:46:02', 2273, NULL, NULL, 'IPAY2022/09/2268', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2292, '2022-09-25 08:21:06', 2274, NULL, NULL, 'IPAY2022/09/2269', NULL, 'CC', '', '', '', '', '', '', '6150.0000', NULL, 2, NULL, 'received', '', '6150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2293, '2022-09-25 08:30:59', 2275, NULL, NULL, 'IPAY2022/09/2270', NULL, 'cash', '', '', '', '', '', '', '13000.0000', NULL, 2, NULL, 'received', '', '13000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2294, '2022-09-25 08:47:38', 2276, NULL, NULL, 'IPAY2022/09/2271', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2295, '2022-09-25 09:08:58', 2277, NULL, NULL, 'IPAY2022/09/2272', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 2, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2296, '2022-09-26 03:39:34', 2278, NULL, NULL, 'IPAY2022/09/2273', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2297, '2022-09-26 03:40:01', 2279, NULL, NULL, 'IPAY2022/09/2274', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2298, '2022-09-26 05:09:01', 2280, NULL, NULL, 'IPAY2022/09/2275', NULL, 'other', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2299, '2022-09-26 05:50:52', 2281, NULL, NULL, 'IPAY2022/09/2276', NULL, 'cash', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2300, '2022-09-26 06:38:08', 2282, NULL, NULL, 'IPAY2022/09/2277', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2301, '2022-09-26 09:02:32', 2283, NULL, NULL, 'IPAY2022/09/2278', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2302, '2022-09-27 00:06:18', 2284, NULL, NULL, 'IPAY2022/09/2279', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2303, '2022-09-27 00:12:09', 2285, NULL, NULL, 'IPAY2022/09/2280', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2304, '2022-09-27 01:43:20', 2286, NULL, NULL, 'IPAY2022/09/2281', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2305, '2022-09-27 01:45:33', 2287, NULL, NULL, 'IPAY2022/09/2282', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2306, '2022-09-27 01:46:37', 2288, NULL, NULL, 'IPAY2022/09/2283', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2307, '2022-09-27 01:53:58', 2289, NULL, NULL, 'IPAY2022/09/2284', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2308, '2022-09-27 01:57:34', 2290, NULL, NULL, 'IPAY2022/09/2285', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2309, '2022-09-27 04:56:47', 2291, NULL, NULL, 'IPAY2022/09/2286', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2310, '2022-09-27 05:25:52', 2292, NULL, NULL, 'IPAY2022/09/2287', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2311, '2022-09-27 08:19:04', 2293, NULL, NULL, 'IPAY2022/09/2288', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2312, '2022-09-27 09:15:24', 2294, NULL, NULL, 'IPAY2022/09/2289', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2313, '2022-09-28 01:16:38', 2295, NULL, NULL, 'IPAY2022/09/2290', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2314, '2022-09-28 01:33:00', 2296, NULL, NULL, 'IPAY2022/09/2291', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 2, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2315, '2022-09-28 01:52:11', 2297, NULL, NULL, 'IPAY2022/09/2292', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2316, '2022-09-28 05:28:26', 2298, NULL, NULL, 'IPAY2022/09/2293', NULL, 'cash', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2317, '2022-09-28 07:20:30', 2299, NULL, NULL, 'IPAY2022/09/2294', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2318, '2022-09-28 08:26:53', 2300, NULL, NULL, 'IPAY2022/09/2295', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2319, '2022-09-28 08:29:02', 2301, NULL, NULL, 'IPAY2022/09/2296', NULL, 'cash', '', '', '', '', '', '', '420.0000', NULL, 2, NULL, 'received', '', '420.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2320, '2022-09-28 08:53:47', 2302, NULL, NULL, 'IPAY2022/09/2297', NULL, 'CC', '', '', '', '', '', '', '1060.0000', NULL, 2, NULL, 'received', '', '1060.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2321, '2022-09-29 05:15:43', 2303, NULL, NULL, 'IPAY2022/09/2298', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 2, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2322, '2022-09-29 06:25:00', 2304, NULL, NULL, 'IPAY2022/09/2299', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2323, '2022-09-29 07:34:34', 2305, NULL, NULL, 'IPAY2022/09/2300', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2324, '2022-09-30 03:01:57', 2306, NULL, NULL, 'IPAY2022/09/2301', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2325, '2022-09-30 03:03:03', 2307, NULL, NULL, 'IPAY2022/09/2302', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2326, '2022-09-30 03:18:31', 2308, NULL, NULL, 'IPAY2022/09/2303', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2327, '2022-09-30 05:51:32', 2309, NULL, NULL, 'IPAY2022/09/2304', NULL, 'cash', '', '', '', '', '', '', '1290.0000', NULL, 2, NULL, 'received', '', '1290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2328, '2022-09-30 05:55:45', 2310, NULL, NULL, 'IPAY2022/09/2305', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2329, '2022-09-30 05:59:34', 2311, NULL, NULL, 'IPAY2022/09/2306', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2330, '2022-09-30 06:59:46', 2312, NULL, NULL, 'IPAY2022/09/2307', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2331, '2022-09-30 07:13:54', 2313, NULL, NULL, 'IPAY2022/09/2308', NULL, 'cash', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2332, '2022-09-30 08:29:14', 2314, NULL, NULL, 'IPAY2022/09/2309', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2333, '2022-10-01 00:28:42', 2315, NULL, NULL, 'IPAY2022/09/2310', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2334, '2022-10-01 00:29:13', 2316, NULL, NULL, 'IPAY2022/09/2311', NULL, 'cash', '', '', '', '', '', '', '4750.0000', NULL, 2, NULL, 'received', '', '4750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2335, '2022-10-01 01:18:54', 2317, NULL, NULL, 'IPAY2022/09/2312', NULL, 'other', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2336, '2022-10-01 04:54:27', 2318, NULL, NULL, 'IPAY2022/09/2313', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2337, '2022-10-01 07:31:34', 2319, NULL, NULL, 'IPAY2022/09/2314', NULL, 'CC', '', '', '', '', '', '', '6450.0000', NULL, 2, NULL, 'received', '', '6450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2338, '2022-10-01 07:33:13', 2320, NULL, NULL, 'IPAY2022/09/2315', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2339, '2022-10-01 09:54:45', 2321, NULL, NULL, 'IPAY2022/09/2316', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2340, '2022-10-01 09:55:06', 2322, NULL, NULL, 'IPAY2022/09/2317', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2341, '2022-10-01 09:55:34', 2323, NULL, NULL, 'IPAY2022/09/2318', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2342, '2022-10-01 09:57:15', 2324, NULL, NULL, 'IPAY2022/09/2319', NULL, 'cash', '', '', '', '', '', '', '990.0000', NULL, 2, NULL, 'received', '', '990.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2343, '2022-10-01 09:57:47', 2325, NULL, NULL, 'IPAY2022/09/2320', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2344, '2022-10-01 09:58:14', 2326, NULL, NULL, 'IPAY2022/09/2321', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2346, '2022-10-02 01:40:23', 2328, NULL, NULL, 'IPAY2022/10/2323', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2347, '2022-10-02 03:09:04', 2329, NULL, NULL, 'IPAY2022/10/2324', NULL, 'cash', '', '', '', '', '', '', '5460.0000', NULL, 2, NULL, 'received', '', '5460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2348, '2022-10-02 04:55:07', 2330, NULL, NULL, 'IPAY2022/10/2325', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2349, '2022-10-02 05:00:56', 2331, NULL, NULL, 'IPAY2022/10/2326', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2350, '2022-10-02 06:33:14', 2332, NULL, NULL, 'IPAY2022/10/2327', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2351, '2022-10-02 06:39:25', 2333, NULL, NULL, 'IPAY2022/10/2328', NULL, 'cash', '', '', '', '', '', '', '320.0000', NULL, 2, NULL, 'received', '', '320.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2352, '2022-10-02 09:17:04', 2334, NULL, NULL, 'IPAY2022/10/2329', NULL, 'CC', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2353, '2022-10-02 09:25:16', 2335, NULL, NULL, 'IPAY2022/10/2330', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2354, '2022-10-03 04:44:17', 2336, NULL, NULL, 'IPAY2022/10/2331', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2355, '2022-10-03 06:58:28', 2337, NULL, NULL, 'IPAY2022/10/2332', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2356, '2022-10-03 08:22:44', 2338, NULL, NULL, 'IPAY2022/10/2333', NULL, 'CC', '', '', '', '', '', '', '3050.0000', NULL, 2, NULL, 'received', '', '3050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2357, '2022-10-03 08:35:37', 2339, NULL, NULL, 'IPAY2022/10/2334', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2358, '2022-10-04 01:14:38', 2340, NULL, NULL, 'IPAY2022/10/2335', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2359, '2022-10-04 04:53:45', 2341, NULL, NULL, 'IPAY2022/10/2336', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2360, '2022-10-04 06:55:33', 2342, NULL, NULL, 'IPAY2022/10/2337', NULL, 'cash', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2361, '2022-10-04 07:36:37', 2343, NULL, NULL, 'IPAY2022/10/2338', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2362, '2022-10-05 01:46:16', 2344, NULL, NULL, 'IPAY2022/10/2339', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2363, '2022-10-05 02:35:25', 2345, NULL, NULL, 'IPAY2022/10/2340', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2364, '2022-10-06 00:17:03', 2346, NULL, NULL, 'IPAY2022/10/2341', NULL, 'cash', '', '', '', '', '', '', '3700.0000', NULL, 2, NULL, 'received', '', '3700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2365, '2022-10-06 00:23:25', 2347, NULL, NULL, 'IPAY2022/10/2342', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2366, '2022-10-06 00:24:00', 2348, NULL, NULL, 'IPAY2022/10/2343', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2367, '2022-10-06 00:24:46', 2349, NULL, NULL, 'IPAY2022/10/2344', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2368, '2022-10-06 01:16:14', 2350, NULL, NULL, 'IPAY2022/10/2345', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2369, '2022-10-06 04:25:20', 2351, NULL, NULL, 'IPAY2022/10/2346', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2370, '2022-10-06 23:33:14', 2352, NULL, NULL, 'IPAY2022/10/2347', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2371, '2022-10-07 03:02:16', 2353, NULL, NULL, 'IPAY2022/10/2348', NULL, 'CC', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2372, '2022-10-07 05:10:33', 2354, NULL, NULL, 'IPAY2022/10/2349', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2373, '2022-10-07 06:51:14', 2355, NULL, NULL, 'IPAY2022/10/2350', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2374, '2022-10-07 07:34:17', 2356, NULL, NULL, 'IPAY2022/10/2351', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2375, '2022-10-07 08:06:26', 2357, NULL, NULL, 'IPAY2022/10/2352', NULL, 'other', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2376, '2022-10-07 08:10:36', 2358, NULL, NULL, 'IPAY2022/10/2353', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2377, '2022-10-07 08:32:32', 2359, NULL, NULL, 'IPAY2022/10/2354', NULL, 'cash', '', '', '', '', '', '', '4050.0000', NULL, 2, NULL, 'received', '', '4050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2378, '2022-10-07 09:04:47', 2360, NULL, NULL, 'IPAY2022/10/2355', NULL, 'cash', '', '', '', '', '', '', '2350.0000', NULL, 2, NULL, 'received', '', '2350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2379, '2022-10-07 09:10:16', 2361, NULL, NULL, 'IPAY2022/10/2356', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2380, '2022-10-07 09:48:30', 2362, NULL, NULL, 'IPAY2022/10/2357', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2381, '2022-10-07 10:12:15', 2363, NULL, NULL, 'IPAY2022/10/2358', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2382, '2022-10-08 03:15:23', 2364, NULL, NULL, 'IPAY2022/10/2359', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2383, '2022-10-08 04:44:01', 2365, NULL, NULL, 'IPAY2022/10/2360', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2384, '2022-10-08 05:04:59', 2366, NULL, NULL, 'IPAY2022/10/2361', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2385, '2022-10-08 06:41:56', 2367, NULL, NULL, 'IPAY2022/10/2362', NULL, 'cash', '', '', '', '', '', '', '490.0000', NULL, 2, NULL, 'received', '', '490.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2386, '2022-10-08 07:03:42', 2368, NULL, NULL, 'IPAY2022/10/2363', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2387, '2022-10-08 07:33:36', 2369, NULL, NULL, 'IPAY2022/10/2364', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2388, '2022-10-08 07:41:18', 2370, NULL, NULL, 'IPAY2022/10/2365', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2389, '2022-10-08 08:14:57', 2371, NULL, NULL, 'IPAY2022/10/2366', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2390, '2022-10-08 09:30:14', 2372, NULL, NULL, 'IPAY2022/10/2367', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2391, '2022-10-08 09:37:36', 2373, NULL, NULL, 'IPAY2022/10/2368', NULL, 'CC', '', '', '', '', '', '', '2440.0000', NULL, 2, NULL, 'received', '', '2440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2392, '2022-10-08 09:39:44', 2374, NULL, NULL, 'IPAY2022/10/2369', NULL, 'CC', '', '', '', '', '', '', '310.0000', NULL, 2, NULL, 'received', '', '310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2393, '2022-10-08 09:46:27', 2375, NULL, NULL, 'IPAY2022/10/2370', NULL, 'cash', '', '', '', '', '', '', '530.0000', NULL, 2, NULL, 'received', '', '530.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2394, '2022-10-08 10:11:41', 2376, NULL, NULL, 'IPAY2022/10/2371', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2395, '2022-10-09 04:13:08', 2377, NULL, NULL, 'IPAY2022/10/2372', NULL, 'CC', '', '', '', '', '', '', '3470.0000', NULL, 2, NULL, 'received', '', '3470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2396, '2022-10-09 07:08:18', 2378, NULL, NULL, 'IPAY2022/10/2373', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2397, '2022-10-09 07:10:10', 2379, NULL, NULL, 'IPAY2022/10/2374', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2398, '2022-10-09 07:10:39', 2380, NULL, NULL, 'IPAY2022/10/2375', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2399, '2022-10-09 08:08:59', 2381, NULL, NULL, 'IPAY2022/10/2376', NULL, 'cash', '', '', '', '', '', '', '810.0000', NULL, 2, NULL, 'received', '', '810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2400, '2022-10-09 08:12:13', 2382, NULL, NULL, 'IPAY2022/10/2377', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2401, '2022-10-09 08:15:25', 2383, NULL, NULL, 'IPAY2022/10/2378', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2402, '2022-10-09 08:16:40', 2384, NULL, NULL, 'IPAY2022/10/2379', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2403, '2022-10-09 09:14:36', 2385, NULL, NULL, 'IPAY2022/10/2380', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2404, '2022-10-10 02:01:22', 2386, NULL, NULL, 'IPAY2022/10/2381', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2405, '2022-10-10 02:12:16', 2387, NULL, NULL, 'IPAY2022/10/2382', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2406, '2022-10-10 02:48:05', 2388, NULL, NULL, 'IPAY2022/10/2383', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2407, '2022-10-10 04:01:28', 2389, NULL, NULL, 'IPAY2022/10/2384', NULL, 'CC', '', '', '', '', '', '', '1480.0000', NULL, 2, NULL, 'received', '', '1480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2408, '2022-10-10 04:29:04', 2390, NULL, NULL, 'IPAY2022/10/2385', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2409, '2022-10-10 05:52:49', 2391, NULL, NULL, 'IPAY2022/10/2386', NULL, 'cash', '', '', '', '', '', '', '4230.0000', NULL, 2, NULL, 'received', '', '4230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2410, '2022-10-10 06:56:34', 2392, NULL, NULL, 'IPAY2022/10/2387', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2411, '2022-10-10 07:10:18', 2393, NULL, NULL, 'IPAY2022/10/2388', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2414, '2022-10-10 09:29:38', 2396, NULL, NULL, 'IPAY2022/10/2391', NULL, 'CC', '', '', '', '', '', '', '710.0000', NULL, 2, NULL, 'received', '', '710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2413, '2022-10-10 08:04:34', 2395, NULL, NULL, 'IPAY2022/10/2390', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2415, '2022-10-11 06:00:19', 2397, NULL, NULL, 'IPAY2022/10/2392', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2416, '2022-10-11 08:00:47', 2398, NULL, NULL, 'IPAY2022/10/2393', NULL, 'cash', '', '', '', '', '', '', '2950.0000', NULL, 2, NULL, 'received', '', '2950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2417, '2022-10-11 09:22:40', 2399, NULL, NULL, 'IPAY2022/10/2394', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2418, '2022-10-11 09:23:18', 2400, NULL, NULL, 'IPAY2022/10/2395', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2419, '2022-10-11 09:23:53', 2401, NULL, NULL, 'IPAY2022/10/2396', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2420, '2022-10-12 06:09:56', 2402, NULL, NULL, 'IPAY2022/10/2397', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2421, '2022-10-12 06:51:40', 2403, NULL, NULL, 'IPAY2022/10/2398', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2422, '2022-10-12 07:51:58', 2404, NULL, NULL, 'IPAY2022/10/2399', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2423, '2022-10-12 07:59:52', 2405, NULL, NULL, 'IPAY2022/10/2400', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2424, '2022-10-12 08:59:22', 2406, NULL, NULL, 'IPAY2022/10/2401', NULL, 'cash', '', '', '', '', '', '', '220.0000', NULL, 2, NULL, 'received', '', '220.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2425, '2022-10-12 09:41:41', 2407, NULL, NULL, 'IPAY2022/10/2402', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2426, '2022-10-12 09:53:26', 2408, NULL, NULL, 'IPAY2022/10/2403', NULL, 'CC', '', '', '', '', '', '', '2950.0000', NULL, 2, NULL, 'received', '', '2950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2427, '2022-10-12 23:49:53', 2409, NULL, NULL, 'IPAY2022/10/2404', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2428, '2022-10-12 23:50:20', 2410, NULL, NULL, 'IPAY2022/10/2405', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2429, '2022-10-12 23:55:47', 2411, NULL, NULL, 'IPAY2022/10/2406', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2430, '2022-10-13 03:05:32', 2412, NULL, NULL, 'IPAY2022/10/2407', NULL, 'CC', '', '', '', '', '', '', '790.0000', NULL, 2, NULL, 'received', '', '790.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2431, '2022-10-13 03:07:38', 2413, NULL, NULL, 'IPAY2022/10/2408', NULL, 'cash', '', '', '', '', '', '', '2740.0000', NULL, 2, NULL, 'received', '', '2740.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2432, '2022-10-14 00:10:07', 2414, NULL, NULL, 'IPAY2022/10/2409', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2433, '2022-10-14 00:24:05', 2415, NULL, NULL, 'IPAY2022/10/2410', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2434, '2022-10-14 02:40:43', 2416, NULL, NULL, 'IPAY2022/10/2411', NULL, 'CC', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2435, '2022-10-14 04:06:31', 2417, NULL, NULL, 'IPAY2022/10/2412', NULL, 'cash', '', '', '', '', '', '', '3250.0000', NULL, 2, NULL, 'received', '', '3250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2436, '2022-10-14 04:12:27', 2418, NULL, NULL, 'IPAY2022/10/2413', NULL, 'CC', '', '', '', '', '', '', '4500.0000', NULL, 2, NULL, 'received', '', '4500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2437, '2022-10-14 04:35:01', 2419, NULL, NULL, 'IPAY2022/10/2414', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2438, '2022-10-14 05:45:43', 2420, NULL, NULL, 'IPAY2022/10/2415', NULL, 'CC', '', '', '', '', '', '', '7950.0000', NULL, 2, NULL, 'received', '', '7950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2439, '2022-10-14 05:58:13', 2421, NULL, NULL, 'IPAY2022/10/2416', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2440, '2022-10-14 07:29:09', 2422, NULL, NULL, 'IPAY2022/10/2417', NULL, 'other', '', '', '', '', '', '', '31700.0000', NULL, 2, NULL, 'received', '', '31700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2441, '2022-10-14 07:49:59', 2423, NULL, NULL, 'IPAY2022/10/2418', NULL, 'cash', '', '', '', '', '', '', '2800.0000', NULL, 2, NULL, 'received', '', '2800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2442, '2022-10-14 07:50:34', 2424, NULL, NULL, 'IPAY2022/10/2419', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2443, '2022-10-14 08:03:40', 2425, NULL, NULL, 'IPAY2022/10/2420', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2444, '2022-10-14 08:57:44', 2426, NULL, NULL, 'IPAY2022/10/2421', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2445, '2022-10-14 09:29:41', 2427, NULL, NULL, 'IPAY2022/10/2422', NULL, 'other', '', '', '', '', '', '', '330.0000', NULL, 2, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2446, '2022-10-15 00:11:46', 2428, NULL, NULL, 'IPAY2022/10/2423', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2447, '2022-10-15 01:00:09', 2429, NULL, NULL, 'IPAY2022/10/2424', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2448, '2022-10-15 04:08:37', 2430, NULL, NULL, 'IPAY2022/10/2425', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2449, '2022-10-15 04:17:56', 2431, NULL, NULL, 'IPAY2022/10/2426', NULL, 'cash', '', '', '', '', '', '', '11800.0000', NULL, 2, NULL, 'received', '', '11800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2450, '2022-10-15 05:40:55', 2432, NULL, NULL, 'IPAY2022/10/2427', NULL, 'CC', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2451, '2022-10-15 08:16:13', 2433, NULL, NULL, 'IPAY2022/10/2428', NULL, 'CC', '', '', '', '', '', '', '2250.0000', NULL, 2, NULL, 'received', '', '2250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2452, '2022-10-15 08:36:27', 2434, NULL, NULL, 'IPAY2022/10/2429', NULL, 'cash', '', '', '', '', '', '', '490.0000', NULL, 2, NULL, 'received', '', '490.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2453, '2022-10-15 08:57:42', 2435, NULL, NULL, 'IPAY2022/10/2430', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2454, '2022-10-15 10:05:47', 2436, NULL, NULL, 'IPAY2022/10/2431', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2455, '2022-10-16 00:00:31', 2437, NULL, NULL, 'IPAY2022/10/2432', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2456, '2022-10-16 01:40:59', 2438, NULL, NULL, 'IPAY2022/10/2433', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2457, '2022-10-16 01:43:03', 2439, NULL, NULL, 'IPAY2022/10/2434', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2458, '2022-10-16 01:46:24', 2440, NULL, NULL, 'IPAY2022/10/2435', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2459, '2022-10-16 03:34:27', 2441, NULL, NULL, 'IPAY2022/10/2436', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2460, '2022-10-16 03:59:38', 2442, NULL, NULL, 'IPAY2022/10/2437', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2461, '2022-10-16 07:46:32', 2443, NULL, NULL, 'IPAY2022/10/2438', NULL, 'cash', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2462, '2022-10-16 08:24:55', 2444, NULL, NULL, 'IPAY2022/10/2439', NULL, 'CC', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2463, '2022-10-16 08:27:28', 2445, NULL, NULL, 'IPAY2022/10/2440', NULL, 'other', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2464, '2022-10-16 09:03:19', 2446, NULL, NULL, 'IPAY2022/10/2441', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2465, '2022-10-17 01:33:53', 2447, NULL, NULL, 'IPAY2022/10/2442', NULL, 'cash', '', '', '', '', '', '', '2790.0000', NULL, 2, NULL, 'received', '', '2790.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2466, '2022-10-17 01:49:39', 2448, NULL, NULL, 'IPAY2022/10/2443', NULL, 'cash', '', '', '', '', '', '', '10000.0000', NULL, 2, NULL, 'received', '', '10000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2467, '2022-10-17 01:59:02', 2449, NULL, NULL, 'IPAY2022/10/2444', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2468, '2022-10-17 02:19:37', 2450, NULL, NULL, 'IPAY2022/10/2445', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2469, '2022-10-17 04:05:37', 2451, NULL, NULL, 'IPAY2022/10/2446', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2470, '2022-10-17 06:58:47', 2452, NULL, NULL, 'IPAY2022/10/2447', NULL, 'CC', '', '', '', '', '', '', '21000.0000', NULL, 2, NULL, 'received', '', '21000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2471, '2022-10-17 07:08:09', 2453, NULL, NULL, 'IPAY2022/10/2448', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2472, '2022-10-17 07:10:54', 2454, NULL, NULL, 'IPAY2022/10/2449', NULL, 'cash', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2473, '2022-10-17 07:21:44', 2455, NULL, NULL, 'IPAY2022/10/2450', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2474, '2022-10-17 08:02:48', 2456, NULL, NULL, 'IPAY2022/10/2451', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2475, '2022-10-17 09:31:30', 2457, NULL, NULL, 'IPAY2022/10/2452', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2476, '2022-10-18 03:10:58', 2458, NULL, NULL, 'IPAY2022/10/2453', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2477, '2022-10-18 08:32:37', 2459, NULL, NULL, 'IPAY2022/10/2454', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2478, '2022-10-18 09:03:10', 2460, NULL, NULL, 'IPAY2022/10/2455', NULL, 'cash', '', '', '', '', '', '', '440.0000', NULL, 2, NULL, 'received', '', '440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2479, '2022-10-19 00:26:26', 2461, NULL, NULL, 'IPAY2022/10/2456', NULL, 'cash', '', '', '', '', '', '', '4500.0000', NULL, 2, NULL, 'received', '', '4500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2480, '2022-10-19 04:42:50', 2462, NULL, NULL, 'IPAY2022/10/2457', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2481, '2022-10-19 04:59:56', 2463, NULL, NULL, 'IPAY2022/10/2458', NULL, 'CC', '', '', '', '', '', '', '1020.0000', NULL, 2, NULL, 'received', '', '1020.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2482, '2022-10-19 05:03:00', 2464, NULL, NULL, 'IPAY2022/10/2459', NULL, 'cash', '', '', '', '', '', '', '470.0000', NULL, 2, NULL, 'received', '', '470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2483, '2022-10-19 06:50:26', 2465, NULL, NULL, 'IPAY2022/10/2460', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2484, '2022-10-19 06:53:33', 2466, NULL, NULL, 'IPAY2022/10/2461', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2485, '2022-10-19 07:58:06', 2467, NULL, NULL, 'IPAY2022/10/2462', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2486, '2022-10-19 09:05:50', 2468, NULL, NULL, 'IPAY2022/10/2463', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2487, '2022-10-19 09:17:38', 2469, NULL, NULL, 'IPAY2022/10/2464', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2488, '2022-10-20 01:59:25', 2470, NULL, NULL, 'IPAY2022/10/2465', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2489, '2022-10-20 02:06:02', 2471, NULL, NULL, 'IPAY2022/10/2466', NULL, 'CC', '', '', '', '', '', '', '7100.0000', NULL, 2, NULL, 'received', '', '7100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2490, '2022-10-20 02:08:15', 2472, NULL, NULL, 'IPAY2022/10/2467', NULL, 'cash', '', '', '', '', '', '', '1750.0000', NULL, 2, NULL, 'received', '', '1750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2491, '2022-10-20 06:29:17', 2473, NULL, NULL, 'IPAY2022/10/2468', NULL, 'CC', '', '', '', '', '', '', '3450.0000', NULL, 2, NULL, 'received', '', '3450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2492, '2022-10-20 07:59:26', 2474, NULL, NULL, 'IPAY2022/10/2469', NULL, 'CC', '', '', '', '', '', '', '1330.0000', NULL, 2, NULL, 'received', '', '1330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2493, '2022-10-20 08:01:19', 2475, NULL, NULL, 'IPAY2022/10/2470', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2494, '2022-10-21 02:14:44', 2476, NULL, NULL, 'IPAY2022/10/2471', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2495, '2022-10-21 03:49:39', 2477, NULL, NULL, 'IPAY2022/10/2472', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2496, '2022-10-21 05:31:48', 2478, NULL, NULL, 'IPAY2022/10/2473', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2497, '2022-10-21 08:31:41', 2479, NULL, NULL, 'IPAY2022/10/2474', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2498, '2022-10-21 08:49:28', 2480, NULL, NULL, 'IPAY2022/10/2475', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2499, '2022-10-21 09:11:01', 2481, NULL, NULL, 'IPAY2022/10/2476', NULL, 'cash', '', '', '', '', '', '', '3250.0000', NULL, 2, NULL, 'received', '', '3250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2500, '2022-10-21 09:15:40', 2482, NULL, NULL, 'IPAY2022/10/2477', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2501, '2022-10-22 01:14:04', 2483, NULL, NULL, 'IPAY2022/10/2478', NULL, 'CC', '', '', '', '', '', '', '1040.0000', NULL, 2, NULL, 'received', '', '1040.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2502, '2022-10-22 05:23:04', 2484, NULL, NULL, 'IPAY2022/10/2479', NULL, 'cash', '', '', '', '', '', '', '710.0000', NULL, 2, NULL, 'received', '', '710.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2503, '2022-10-22 06:46:01', 2485, NULL, NULL, 'IPAY2022/10/2480', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2504, '2022-10-22 07:34:52', 2486, NULL, NULL, 'IPAY2022/10/2481', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2505, '2022-10-22 07:59:00', 2487, NULL, NULL, 'IPAY2022/10/2482', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2506, '2022-10-22 08:19:35', 2488, NULL, NULL, 'IPAY2022/10/2483', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2507, '2022-10-22 08:32:46', 2489, NULL, NULL, 'IPAY2022/10/2484', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2508, '2022-10-22 09:27:59', 2490, NULL, NULL, 'IPAY2022/10/2485', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2509, '2022-10-22 09:42:06', 2491, NULL, NULL, 'IPAY2022/10/2486', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2510, '2022-10-22 09:55:12', 2492, NULL, NULL, 'IPAY2022/10/2487', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2511, '2022-10-22 09:56:51', 2493, NULL, NULL, 'IPAY2022/10/2488', NULL, 'CC', '', '', '', '', '', '', '5550.0000', NULL, 2, NULL, 'received', '', '5550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2512, '2022-10-22 10:17:17', 2494, NULL, NULL, 'IPAY2022/10/2489', NULL, 'cash', '', '', '', '', '', '', '940.0000', NULL, 2, NULL, 'received', '', '940.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2513, '2022-10-22 23:55:50', 2495, NULL, NULL, 'IPAY2022/10/2490', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2514, '2022-10-23 00:45:20', 2496, NULL, NULL, 'IPAY2022/10/2491', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 2, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2515, '2022-10-23 02:54:43', 2497, NULL, NULL, 'IPAY2022/10/2492', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2516, '2022-10-23 03:46:08', 2498, NULL, NULL, 'IPAY2022/10/2493', NULL, 'CC', '', '', '', '', '', '', '13690.0000', NULL, 2, NULL, 'received', '', '13690.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2517, '2022-10-23 03:49:51', 2499, NULL, NULL, 'IPAY2022/10/2494', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2518, '2022-10-23 06:31:53', 2500, NULL, NULL, 'IPAY2022/10/2495', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2519, '2022-10-23 07:45:03', 2501, NULL, NULL, 'IPAY2022/10/2496', NULL, 'cash', '', '', '', '', '', '', '760.0000', NULL, 2, NULL, 'received', '', '760.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2520, '2022-10-23 08:07:38', 2502, NULL, NULL, 'IPAY2022/10/2497', NULL, 'other', '', '', '', '', '', '', '560.0000', NULL, 2, NULL, 'received', '', '560.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2521, '2022-10-23 08:18:29', 2503, NULL, NULL, 'IPAY2022/10/2498', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2522, '2022-10-23 08:19:24', 2504, NULL, NULL, 'IPAY2022/10/2499', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2523, '2022-10-23 08:30:07', 2505, NULL, NULL, 'IPAY2022/10/2500', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2524, '2022-10-23 09:24:27', 2506, NULL, NULL, 'IPAY2022/10/2501', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2525, '2022-10-23 09:35:45', 2507, NULL, NULL, 'IPAY2022/10/2502', NULL, 'cash', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2526, '2022-10-23 09:44:22', 2508, NULL, NULL, 'IPAY2022/10/2503', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2527, '2022-10-23 09:49:13', 2509, NULL, NULL, 'IPAY2022/10/2504', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2528, '2022-10-24 01:44:03', 2510, NULL, NULL, 'IPAY2022/10/2505', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2529, '2022-10-24 06:31:41', 2511, NULL, NULL, 'IPAY2022/10/2506', NULL, 'cash', '', '', '', '', '', '', '3400.0000', NULL, 2, NULL, 'received', '', '3400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2530, '2022-10-24 07:03:27', 2512, NULL, NULL, 'IPAY2022/10/2507', NULL, 'cash', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2531, '2022-10-24 07:12:06', 2513, NULL, NULL, 'IPAY2022/10/2508', NULL, 'CC', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2532, '2022-10-24 08:44:58', 2514, NULL, NULL, 'IPAY2022/10/2509', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2533, '2022-10-24 09:17:34', 2515, NULL, NULL, 'IPAY2022/10/2510', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2534, '2022-10-25 04:57:07', 2516, NULL, NULL, 'IPAY2022/10/2511', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2535, '2022-10-25 05:58:28', 2517, NULL, NULL, 'IPAY2022/10/2512', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2536, '2022-10-25 05:58:46', 2518, NULL, NULL, 'IPAY2022/10/2513', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2537, '2022-10-25 05:59:09', 2519, NULL, NULL, 'IPAY2022/10/2514', NULL, 'other', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2538, '2022-10-25 08:52:19', 2520, NULL, NULL, 'IPAY2022/10/2515', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2539, '2022-10-25 08:55:06', 2521, NULL, NULL, 'IPAY2022/10/2516', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2540, '2022-10-25 08:57:37', 2522, NULL, NULL, 'IPAY2022/10/2517', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2541, '2022-10-26 01:45:28', 2523, NULL, NULL, 'IPAY2022/10/2518', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2542, '2022-10-26 02:26:22', 2524, NULL, NULL, 'IPAY2022/10/2519', NULL, 'cash', '', '', '', '', '', '', '5650.0000', NULL, 2, NULL, 'received', '', '5650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2543, '2022-10-26 02:43:51', 2525, NULL, NULL, 'IPAY2022/10/2520', NULL, 'CC', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2544, '2022-10-26 03:27:28', 2526, NULL, NULL, 'IPAY2022/10/2521', NULL, 'CC', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2545, '2022-10-26 03:48:44', 2527, NULL, NULL, 'IPAY2022/10/2522', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2546, '2022-10-26 05:15:23', 2528, NULL, NULL, 'IPAY2022/10/2523', NULL, 'CC', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2547, '2022-10-26 05:34:14', 2529, NULL, NULL, 'IPAY2022/10/2524', NULL, 'cash', '', '', '', '', '', '', '5390.0000', NULL, 2, NULL, 'received', '', '5390.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2548, '2022-10-26 06:16:43', 2530, NULL, NULL, 'IPAY2022/10/2525', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2549, '2022-10-26 06:31:24', 2531, NULL, NULL, 'IPAY2022/10/2526', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2550, '2022-10-26 07:01:48', 2532, NULL, NULL, 'IPAY2022/10/2527', NULL, 'cash', '', '', '', '', '', '', '380.0000', NULL, 2, NULL, 'received', '', '380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2551, '2022-10-26 07:02:55', 2533, NULL, NULL, 'IPAY2022/10/2528', NULL, 'cash', '', '', '', '', '', '', '3900.0000', NULL, 2, NULL, 'received', '', '3900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2552, '2022-10-27 08:11:07', 2534, NULL, NULL, 'IPAY2022/10/2529', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2553, '2022-10-27 08:11:23', 2535, NULL, NULL, 'IPAY2022/10/2530', NULL, 'cash', '', '', '', '', '', '', '40.0000', NULL, 2, NULL, 'received', '', '40.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2554, '2022-10-27 08:11:45', 2536, NULL, NULL, 'IPAY2022/10/2531', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2555, '2022-10-28 04:23:15', 2537, NULL, NULL, 'IPAY2022/10/2532', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2556, '2022-10-28 04:32:07', 2538, NULL, NULL, 'IPAY2022/10/2533', NULL, 'cash', '', '', '', '', '', '', '580.0000', NULL, 2, NULL, 'received', '', '580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2557, '2022-10-28 07:08:48', 2539, NULL, NULL, 'IPAY2022/10/2534', NULL, 'other', '', '', '', '', '', '', '11000.0000', NULL, 2, NULL, 'received', '', '11000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2558, '2022-10-28 07:58:40', 2540, NULL, NULL, 'IPAY2022/10/2535', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2559, '2022-10-28 08:08:35', 2541, NULL, NULL, 'IPAY2022/10/2536', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2560, '2022-10-28 08:23:35', 2542, NULL, NULL, 'IPAY2022/10/2537', NULL, 'cash', '', '', '', '', '', '', '1960.0000', NULL, 2, NULL, 'received', '', '1960.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2561, '2022-10-28 09:38:55', 2543, NULL, NULL, 'IPAY2022/10/2538', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2562, '2022-10-28 09:47:24', 2544, NULL, NULL, 'IPAY2022/10/2539', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2563, '2022-10-29 00:48:01', 2545, NULL, NULL, 'IPAY2022/10/2540', NULL, 'CC', '', '', '', '', '', '', '10250.0000', NULL, 2, NULL, 'received', '', '10250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2564, '2022-10-29 00:57:06', 2546, NULL, NULL, 'IPAY2022/10/2541', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2565, '2022-10-29 01:30:52', 2547, NULL, NULL, 'IPAY2022/10/2542', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2566, '2022-10-29 03:16:58', 2548, NULL, NULL, 'IPAY2022/10/2543', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2567, '2022-10-29 07:25:10', 2549, NULL, NULL, 'IPAY2022/10/2544', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2568, '2022-10-29 07:40:38', 2550, NULL, NULL, 'IPAY2022/10/2545', NULL, 'cash', '', '', '', '', '', '', '660.0000', NULL, 2, NULL, 'received', '', '660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2569, '2022-10-29 08:00:38', 2551, NULL, NULL, 'IPAY2022/10/2546', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2570, '2022-10-29 08:11:17', 2552, NULL, NULL, 'IPAY2022/10/2547', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2571, '2022-10-29 08:19:11', 2553, NULL, NULL, 'IPAY2022/10/2548', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2572, '2022-10-29 08:28:33', 2554, NULL, NULL, 'IPAY2022/10/2549', NULL, 'cash', '', '', '', '', '', '', '1400.0000', NULL, 2, NULL, 'received', '', '1400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2573, '2022-10-29 09:05:47', 2555, NULL, NULL, 'IPAY2022/10/2550', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2574, '2022-10-29 09:22:33', 2556, NULL, NULL, 'IPAY2022/10/2551', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 2, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2575, '2022-10-29 09:29:17', 2557, NULL, NULL, 'IPAY2022/10/2552', NULL, 'CC', '', '', '', '', '', '', '1370.0000', NULL, 2, NULL, 'received', '', '1370.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2576, '2022-10-29 09:51:45', 2558, NULL, NULL, 'IPAY2022/10/2553', NULL, 'CC', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2577, '2022-10-29 09:56:35', 2559, NULL, NULL, 'IPAY2022/10/2554', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2578, '2022-10-30 00:47:30', 2560, NULL, NULL, 'IPAY2022/10/2555', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2579, '2022-10-30 01:35:04', 2561, NULL, NULL, 'IPAY2022/10/2556', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2580, '2022-10-30 03:07:51', 2562, NULL, NULL, 'IPAY2022/10/2557', NULL, 'cash', '', '', '', '', '', '', '5630.0000', NULL, 2, NULL, 'received', '', '5630.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2581, '2022-10-30 05:30:50', 2563, NULL, NULL, 'IPAY2022/10/2558', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2582, '2022-10-30 05:51:57', 2564, NULL, NULL, 'IPAY2022/10/2559', NULL, 'cash', '', '', '', '', '', '', '840.0000', NULL, 2, NULL, 'received', '', '840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2583, '2022-10-30 06:11:56', 2565, NULL, NULL, 'IPAY2022/10/2560', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2584, '2022-10-30 06:29:31', 2566, NULL, NULL, 'IPAY2022/10/2561', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2585, '2022-10-30 06:55:13', 2567, NULL, NULL, 'IPAY2022/10/2562', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2586, '2022-10-30 07:00:52', 2568, NULL, NULL, 'IPAY2022/10/2563', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2587, '2022-10-30 08:40:27', 2569, NULL, NULL, 'IPAY2022/10/2564', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2588, '2022-10-31 04:29:52', 2570, NULL, NULL, 'IPAY2022/10/2565', NULL, 'cash', '', '', '', '', '', '', '4960.0000', NULL, 2, NULL, 'received', '', '4960.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2589, '2022-11-01 01:53:51', 2571, NULL, NULL, 'IPAY2022/10/2566', NULL, 'cash', '', '', '', '', '', '', '3800.0000', NULL, 2, NULL, 'received', '', '3800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2590, '2022-11-01 08:09:36', 2572, NULL, NULL, 'IPAY2022/10/2567', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2591, '2022-11-01 08:10:24', 2573, NULL, NULL, 'IPAY2022/10/2568', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2592, '2022-11-01 08:11:16', 2574, NULL, NULL, 'IPAY2022/10/2569', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2593, '2022-11-01 08:12:19', 2575, NULL, NULL, 'IPAY2022/10/2570', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2594, '2022-11-01 08:13:00', 2576, NULL, NULL, 'IPAY2022/10/2571', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2595, '2022-11-01 09:03:45', 2577, NULL, NULL, 'IPAY2022/10/2572', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2596, '2022-11-01 09:07:52', 2578, NULL, NULL, 'IPAY2022/10/2573', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2597, '2022-11-02 00:26:37', 2579, NULL, NULL, 'IPAY2022/11/2574', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2598, '2022-11-02 01:43:00', 2580, NULL, NULL, 'IPAY2022/11/2575', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2599, '2022-11-02 07:33:14', 2581, NULL, NULL, 'IPAY2022/11/2576', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2600, '2022-11-02 07:34:23', 2582, NULL, NULL, 'IPAY2022/11/2577', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2601, '2022-11-02 08:35:02', 2583, NULL, NULL, 'IPAY2022/11/2578', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2602, '2022-11-02 09:16:08', 2584, NULL, NULL, 'IPAY2022/11/2579', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2603, '2022-11-03 02:24:57', 2585, NULL, NULL, 'IPAY2022/11/2580', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2604, '2022-11-03 03:03:35', 2586, NULL, NULL, 'IPAY2022/11/2581', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2605, '2022-11-03 06:26:16', 2587, NULL, NULL, 'IPAY2022/11/2582', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2606, '2022-11-03 06:26:58', 2588, NULL, NULL, 'IPAY2022/11/2583', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2607, '2022-11-04 01:32:21', 2589, NULL, NULL, 'IPAY2022/11/2584', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2608, '2022-11-04 02:29:45', 2590, NULL, NULL, 'IPAY2022/11/2585', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2609, '2022-11-04 06:03:57', 2591, NULL, NULL, 'IPAY2022/11/2586', NULL, 'CC', '', '', '', '', '', '', '3950.0000', NULL, 2, NULL, 'received', '', '3950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2610, '2022-11-04 06:07:45', 2592, NULL, NULL, 'IPAY2022/11/2587', NULL, 'CC', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2611, '2022-11-04 09:23:27', 2593, NULL, NULL, 'IPAY2022/11/2588', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2612, '2022-11-05 00:39:08', 2594, NULL, NULL, 'IPAY2022/11/2589', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2613, '2022-11-05 02:14:47', 2595, NULL, NULL, 'IPAY2022/11/2590', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2614, '2022-11-05 05:44:33', 2596, NULL, NULL, 'IPAY2022/11/2591', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2615, '2022-11-05 06:27:47', 2597, NULL, NULL, 'IPAY2022/11/2592', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2616, '2022-11-05 07:01:54', 2598, NULL, NULL, 'IPAY2022/11/2593', NULL, 'cash', '', '', '', '', '', '', '1070.0000', NULL, 2, NULL, 'received', '', '1070.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2617, '2022-11-05 07:46:24', 2599, NULL, NULL, 'IPAY2022/11/2594', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2618, '2022-11-05 08:52:39', 2600, NULL, NULL, 'IPAY2022/11/2595', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2619, '2022-11-05 09:43:12', 2601, NULL, NULL, 'IPAY2022/11/2596', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 2, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2620, '2022-11-05 23:25:52', 2602, NULL, NULL, 'IPAY2022/11/2597', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2621, '2022-11-06 03:43:25', 2603, NULL, NULL, 'IPAY2022/11/2598', NULL, 'cash', '', '', '', '', '', '', '1560.0000', NULL, 2, NULL, 'received', '', '1560.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2622, '2022-11-06 05:40:41', 2604, NULL, NULL, 'IPAY2022/11/2599', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2623, '2022-11-06 07:23:25', 2605, NULL, NULL, 'IPAY2022/11/2600', NULL, 'CC', '', '', '', '', '', '', '8610.0000', NULL, 2, NULL, 'received', '', '8610.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2624, '2022-11-06 07:26:58', 2606, NULL, NULL, 'IPAY2022/11/2601', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2625, '2022-11-06 07:27:38', 2607, NULL, NULL, 'IPAY2022/11/2602', NULL, 'CC', '', '', '', '', '', '', '410.0000', NULL, 2, NULL, 'received', '', '410.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2626, '2022-11-06 08:15:47', 2608, NULL, NULL, 'IPAY2022/11/2603', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2627, '2022-11-06 09:17:45', 2609, NULL, NULL, 'IPAY2022/11/2604', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2628, '2022-11-06 09:33:43', 2610, NULL, NULL, 'IPAY2022/11/2605', NULL, 'cash', '', '', '', '', '', '', '4050.0000', NULL, 2, NULL, 'received', '', '4050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2629, '2022-11-07 04:07:21', 2611, NULL, NULL, 'IPAY2022/11/2606', NULL, 'cash', '', '', '', '', '', '', '5550.0000', NULL, 2, NULL, 'received', '', '5550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2630, '2022-11-07 04:47:22', 2612, NULL, NULL, 'IPAY2022/11/2607', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2631, '2022-11-07 04:54:56', 2613, NULL, NULL, 'IPAY2022/11/2608', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2633, '2022-11-07 06:11:34', 2615, NULL, NULL, 'IPAY2022/11/2610', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2634, '2022-11-07 09:28:36', 2616, NULL, NULL, 'IPAY2022/11/2611', NULL, 'CC', '', '', '', '', '', '', '4650.0000', NULL, 2, NULL, 'received', '', '4650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2635, '2022-11-07 09:37:50', 2617, NULL, NULL, 'IPAY2022/11/2612', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2636, '2022-11-07 10:06:12', 2618, NULL, NULL, 'IPAY2022/11/2613', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2637, '2022-11-08 02:22:51', 2619, NULL, NULL, 'IPAY2022/11/2614', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2638, '2022-11-08 04:14:51', 2620, NULL, NULL, 'IPAY2022/11/2615', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2639, '2022-11-08 04:20:00', 2621, NULL, NULL, 'IPAY2022/11/2616', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2640, '2022-11-08 06:28:09', 2622, NULL, NULL, 'IPAY2022/11/2617', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2641, '2022-11-08 06:49:32', 2623, NULL, NULL, 'IPAY2022/11/2618', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2642, '2022-11-08 07:26:15', 2624, NULL, NULL, 'IPAY2022/11/2619', NULL, 'CC', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2643, '2022-11-08 10:26:09', 2625, NULL, NULL, 'IPAY2022/11/2620', NULL, 'cash', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2644, '2022-11-09 02:44:20', 2626, NULL, NULL, 'IPAY2022/11/2621', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2645, '2022-11-09 04:42:21', 2627, NULL, NULL, 'IPAY2022/11/2622', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2646, '2022-11-09 07:12:52', 2628, NULL, NULL, 'IPAY2022/11/2623', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2647, '2022-11-09 07:58:35', 2629, NULL, NULL, 'IPAY2022/11/2624', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2648, '2022-11-09 08:28:28', 2630, NULL, NULL, 'IPAY2022/11/2625', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 2, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2649, '2022-11-09 09:01:50', 2631, NULL, NULL, 'IPAY2022/11/2626', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2650, '2022-11-09 10:11:02', 2632, NULL, NULL, 'IPAY2022/11/2627', NULL, 'CC', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2651, '2022-11-09 10:33:43', 2633, NULL, NULL, 'IPAY2022/11/2628', NULL, 'cash', '', '', '', '', '', '', '560.0000', NULL, 2, NULL, 'received', '', '560.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2652, '2022-11-10 06:06:07', 2634, NULL, NULL, 'IPAY2022/11/2629', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2653, '2022-11-10 07:49:33', 2635, NULL, NULL, 'IPAY2022/11/2630', NULL, 'cash', '', '', '', '', '', '', '480.0000', NULL, 2, NULL, 'received', '', '480.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2654, '2022-11-10 08:21:06', 2636, NULL, NULL, 'IPAY2022/11/2631', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2655, '2022-11-11 02:03:19', 2637, NULL, NULL, 'IPAY2022/11/2632', NULL, 'cash', '', '', '', '', '', '', '1490.0000', NULL, 2, NULL, 'received', '', '1490.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2656, '2022-11-11 03:45:15', 2638, NULL, NULL, 'IPAY2022/11/2633', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2657, '2022-11-11 04:41:11', 2639, NULL, NULL, 'IPAY2022/11/2634', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2658, '2022-11-11 06:36:46', 2640, NULL, NULL, 'IPAY2022/11/2635', NULL, 'other', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2659, '2022-11-11 07:19:43', 2641, NULL, NULL, 'IPAY2022/11/2636', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2660, '2022-11-11 07:57:22', 2642, NULL, NULL, 'IPAY2022/11/2637', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2661, '2022-11-11 09:17:28', 2643, NULL, NULL, 'IPAY2022/11/2638', NULL, 'other', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2662, '2022-11-11 10:26:00', 2644, NULL, NULL, 'IPAY2022/11/2639', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2663, '2022-11-12 02:47:43', 2645, NULL, NULL, 'IPAY2022/11/2640', NULL, 'cash', '', '', '', '', '', '', '2550.0000', NULL, 2, NULL, 'received', '', '2550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2664, '2022-11-12 05:54:30', 2646, NULL, NULL, 'IPAY2022/11/2641', NULL, 'CC', '', '', '', '', '', '', '19500.0000', NULL, 2, NULL, 'received', '', '19500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2665, '2022-11-12 06:52:04', 2647, NULL, NULL, 'IPAY2022/11/2642', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2666, '2022-11-12 06:53:54', 2648, NULL, NULL, 'IPAY2022/11/2643', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2667, '2022-11-12 08:47:11', 2649, NULL, NULL, 'IPAY2022/11/2644', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2668, '2022-11-12 08:49:42', 2650, NULL, NULL, 'IPAY2022/11/2645', NULL, 'CC', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2669, '2022-11-12 09:03:01', 2651, NULL, NULL, 'IPAY2022/11/2646', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2670, '2022-11-12 09:11:35', 2652, NULL, NULL, 'IPAY2022/11/2647', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2671, '2022-11-12 10:05:27', 2653, NULL, NULL, 'IPAY2022/11/2648', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2672, '2022-11-12 10:20:09', 2654, NULL, NULL, 'IPAY2022/11/2649', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2673, '2022-11-12 10:38:49', 2655, NULL, NULL, 'IPAY2022/11/2650', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2674, '2022-11-12 10:43:03', 2656, NULL, NULL, 'IPAY2022/11/2651', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2675, '2022-11-12 10:53:37', 2657, NULL, NULL, 'IPAY2022/11/2652', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2676, '2022-11-12 11:20:13', 2658, NULL, NULL, 'IPAY2022/11/2653', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2677, '2022-11-13 02:48:57', 2659, NULL, NULL, 'IPAY2022/11/2654', NULL, 'cash', '', '', '', '', '', '', '2240.0000', NULL, 2, NULL, 'received', '', '2240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2678, '2022-11-13 03:16:21', 2660, NULL, NULL, 'IPAY2022/11/2655', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2679, '2022-11-13 05:50:20', 2661, NULL, NULL, 'IPAY2022/11/2656', NULL, 'CC', '', '', '', '', '', '', '1310.0000', NULL, 2, NULL, 'received', '', '1310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2680, '2022-11-13 05:52:11', 2662, NULL, NULL, 'IPAY2022/11/2657', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2681, '2022-11-13 06:46:16', 2663, NULL, NULL, 'IPAY2022/11/2658', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2682, '2022-11-13 07:25:32', 2664, NULL, NULL, 'IPAY2022/11/2659', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2683, '2022-11-13 07:45:08', 2665, NULL, NULL, 'IPAY2022/11/2660', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2684, '2022-11-13 09:14:17', 2666, NULL, NULL, 'IPAY2022/11/2661', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2685, '2022-11-13 10:12:43', 2667, NULL, NULL, 'IPAY2022/11/2662', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2686, '2022-11-13 10:37:10', 2668, NULL, NULL, 'IPAY2022/11/2663', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2687, '2022-11-13 11:04:11', 2669, NULL, NULL, 'IPAY2022/11/2664', NULL, 'cash', '', '', '', '', '', '', '5150.0000', NULL, 2, NULL, 'received', '', '5150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2688, '2022-11-14 03:21:53', 2670, NULL, NULL, 'IPAY2022/11/2665', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2689, '2022-11-14 04:26:59', 2671, NULL, NULL, 'IPAY2022/11/2666', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2690, '2022-11-14 05:08:56', 2672, NULL, NULL, 'IPAY2022/11/2667', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2691, '2022-11-14 05:58:43', 2674, NULL, NULL, 'IPAY2022/11/2668', NULL, 'other', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2692, '2022-11-14 07:09:51', 2675, NULL, NULL, 'IPAY2022/11/2669', NULL, 'cash', '', '', '', '', '', '', '2120.0000', NULL, 2, NULL, 'received', '', '2120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2693, '2022-11-14 08:28:59', 2676, NULL, NULL, 'IPAY2022/11/2670', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2694, '2022-11-14 10:29:01', 2677, NULL, NULL, 'IPAY2022/11/2671', NULL, 'cash', '', '', '', '', '', '', '5900.0000', NULL, 2, NULL, 'received', '', '5900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2695, '2022-11-15 05:17:07', 2678, NULL, NULL, 'IPAY2022/11/2672', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2696, '2022-11-15 08:07:37', 2679, NULL, NULL, 'IPAY2022/11/2673', NULL, 'CC', '', '', '', '', '', '', '1140.0000', NULL, 2, NULL, 'received', '', '1140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2697, '2022-11-15 09:36:39', 2680, NULL, NULL, 'IPAY2022/11/2674', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2698, '2022-11-15 09:38:32', 2681, NULL, NULL, 'IPAY2022/11/2675', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2699, '2022-11-16 03:24:38', 2682, NULL, NULL, 'IPAY2022/11/2676', NULL, 'CC', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2700, '2022-11-16 03:58:15', 2683, NULL, NULL, 'IPAY2022/11/2677', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2701, '2022-11-16 04:20:19', 2684, NULL, NULL, 'IPAY2022/11/2678', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2702, '2022-11-16 05:46:43', 2685, NULL, NULL, 'IPAY2022/11/2679', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2703, '2022-11-16 06:20:06', 2686, NULL, NULL, 'IPAY2022/11/2680', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2704, '2022-11-16 07:35:11', 2687, NULL, NULL, 'IPAY2022/11/2681', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2705, '2022-11-16 09:02:54', 2688, NULL, NULL, 'IPAY2022/11/2682', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2706, '2022-11-16 10:14:42', 2689, NULL, NULL, 'IPAY2022/11/2683', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2707, '2022-11-17 06:25:57', 2690, NULL, NULL, 'IPAY2022/11/2684', NULL, 'cash', '', '', '', '', '', '', '7000.0000', NULL, 2, NULL, 'received', '', '7000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2708, '2022-11-17 06:26:55', 2691, NULL, NULL, 'IPAY2022/11/2685', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2709, '2022-11-17 06:28:13', 2692, NULL, NULL, 'IPAY2022/11/2686', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2710, '2022-11-17 06:29:41', 2693, NULL, NULL, 'IPAY2022/11/2687', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2711, '2022-11-17 09:50:59', 2694, NULL, NULL, 'IPAY2022/11/2688', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2712, '2022-11-18 01:33:54', 2695, NULL, NULL, 'IPAY2022/11/2689', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2713, '2022-11-18 01:56:51', 2696, NULL, NULL, 'IPAY2022/11/2690', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2714, '2022-11-18 02:11:42', 2697, NULL, NULL, 'IPAY2022/11/2691', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2715, '2022-11-18 03:43:56', 2698, NULL, NULL, 'IPAY2022/11/2692', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2716, '2022-11-18 04:01:02', 2699, NULL, NULL, 'IPAY2022/11/2693', NULL, 'cash', '', '', '', '', '', '', '3250.0000', NULL, 2, NULL, 'received', '', '3250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2718, '2022-11-18 06:23:03', 2701, NULL, NULL, 'IPAY2022/11/2695', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2719, '2022-11-18 06:23:30', 2702, NULL, NULL, 'IPAY2022/11/2696', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2720, '2022-11-18 06:48:46', 2703, NULL, NULL, 'IPAY2022/11/2697', NULL, 'CC', '', '', '', '', '', '', '29000.0000', NULL, 2, NULL, 'received', '', '29000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2721, '2022-11-18 08:43:52', 2704, NULL, NULL, 'IPAY2022/11/2698', NULL, 'cash', '', '', '', '', '', '', '7100.0000', NULL, 2, NULL, 'received', '', '7100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2722, '2022-11-18 08:49:48', 2705, NULL, NULL, 'IPAY2022/11/2699', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2723, '2022-11-18 10:17:06', 2706, NULL, NULL, 'IPAY2022/11/2700', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2724, '2022-11-18 10:50:31', 2707, NULL, NULL, 'IPAY2022/11/2701', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2725, '2022-11-18 11:00:27', 2708, NULL, NULL, 'IPAY2022/11/2702', NULL, 'cash', '', '', '', '', '', '', '3450.0000', NULL, 2, NULL, 'received', '', '3450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2726, '2022-11-18 11:01:19', 2709, NULL, NULL, 'IPAY2022/11/2703', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2727, '2022-11-19 11:08:10', 2710, NULL, NULL, 'IPAY2022/11/2704', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2728, '2022-11-19 11:09:29', 2711, NULL, NULL, 'IPAY2022/11/2705', NULL, 'cash', '', '', '', '', '', '', '4500.0000', NULL, 2, NULL, 'received', '', '4500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2729, '2022-11-19 11:15:06', 2712, NULL, NULL, 'IPAY2022/11/2706', NULL, 'other', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2730, '2022-11-19 11:16:00', 2713, NULL, NULL, 'IPAY2022/11/2707', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2731, '2022-11-19 11:18:35', 2714, NULL, NULL, 'IPAY2022/11/2708', NULL, 'CC', '', '', '', '', '', '', '1380.0000', NULL, 2, NULL, 'received', '', '1380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2732, '2022-11-19 11:22:49', 2715, NULL, NULL, 'IPAY2022/11/2709', NULL, 'cash', '', '', '', '', '', '', '1210.0000', NULL, 2, NULL, 'received', '', '1210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2733, '2022-11-20 03:27:33', 2716, NULL, NULL, 'IPAY2022/11/2710', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2734, '2022-11-20 03:28:18', 2717, NULL, NULL, 'IPAY2022/11/2711', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2735, '2022-11-20 03:28:51', 2718, NULL, NULL, 'IPAY2022/11/2712', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2736, '2022-11-20 03:32:21', 2719, NULL, NULL, 'IPAY2022/11/2713', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2737, '2022-11-20 08:00:35', 2720, NULL, NULL, 'IPAY2022/11/2714', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2738, '2022-11-20 08:53:40', 2721, NULL, NULL, 'IPAY2022/11/2715', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2739, '2022-11-20 09:22:07', 2722, NULL, NULL, 'IPAY2022/11/2716', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2740, '2022-11-20 09:27:02', 2723, NULL, NULL, 'IPAY2022/11/2717', NULL, 'cash', '', '', '', '', '', '', '1240.0000', NULL, 2, NULL, 'received', '', '1240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2741, '2022-11-20 09:30:56', 2724, NULL, NULL, 'IPAY2022/11/2718', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2742, '2022-11-20 09:44:37', 2725, NULL, NULL, 'IPAY2022/11/2719', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2743, '2022-11-20 10:23:59', 2726, NULL, NULL, 'IPAY2022/11/2720', NULL, 'cash', '', '', '', '', '', '', '240.0000', NULL, 2, NULL, 'received', '', '240.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2744, '2022-11-21 03:50:21', 2727, NULL, NULL, 'IPAY2022/11/2721', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2745, '2022-11-21 04:18:32', 2728, NULL, NULL, 'IPAY2022/11/2722', NULL, 'CC', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2746, '2022-11-21 05:37:00', 2729, NULL, NULL, 'IPAY2022/11/2723', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2747, '2022-11-21 05:39:59', 2730, NULL, NULL, 'IPAY2022/11/2724', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2748, '2022-11-21 07:18:11', 2731, NULL, NULL, 'IPAY2022/11/2725', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2749, '2022-11-21 08:07:06', 2732, NULL, NULL, 'IPAY2022/11/2726', NULL, 'cash', '', '', '', '', '', '', '130.0000', NULL, 2, NULL, 'received', '', '130.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2750, '2022-11-21 08:52:36', 2733, NULL, NULL, 'IPAY2022/11/2727', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2751, '2022-11-21 10:12:33', 2734, NULL, NULL, 'IPAY2022/11/2728', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2752, '2022-11-22 01:16:51', 2735, NULL, NULL, 'IPAY2022/11/2729', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2753, '2022-11-22 06:56:41', 2736, NULL, NULL, 'IPAY2022/11/2730', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2754, '2022-11-22 07:38:08', 2737, NULL, NULL, 'IPAY2022/11/2731', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2755, '2022-11-22 09:11:12', 2738, NULL, NULL, 'IPAY2022/11/2732', NULL, 'CC', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2756, '2022-11-22 09:11:33', 2739, NULL, NULL, 'IPAY2022/11/2733', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2757, '2022-11-22 09:46:50', 2740, NULL, NULL, 'IPAY2022/11/2734', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2758, '2022-11-22 09:48:44', 2741, NULL, NULL, 'IPAY2022/11/2735', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2759, '2022-11-23 02:22:24', 2742, NULL, NULL, 'IPAY2022/11/2736', NULL, 'cash', '', '', '', '', '', '', '5650.0000', NULL, 2, NULL, 'received', '', '5650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2760, '2022-11-23 02:51:29', 2743, NULL, NULL, 'IPAY2022/11/2737', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2761, '2022-11-23 04:13:04', 2744, NULL, NULL, 'IPAY2022/11/2738', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2762, '2022-11-23 05:09:39', 2745, NULL, NULL, 'IPAY2022/11/2739', NULL, 'CC', '', '', '', '', '', '', '12950.0000', NULL, 2, NULL, 'received', '', '12950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2763, '2022-11-23 08:16:48', 2746, NULL, NULL, 'IPAY2022/11/2740', NULL, 'cash', '', '', '', '', '', '', '660.0000', NULL, 2, NULL, 'received', '', '660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2764, '2022-11-23 09:03:50', 2747, NULL, NULL, 'IPAY2022/11/2741', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2765, '2022-11-23 09:05:39', 2748, NULL, NULL, 'IPAY2022/11/2742', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2766, '2022-11-23 10:39:25', 2749, NULL, NULL, 'IPAY2022/11/2743', NULL, 'cash', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2767, '2022-11-23 10:40:33', 2750, NULL, NULL, 'IPAY2022/11/2744', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2768, '2022-11-24 03:02:27', 2751, NULL, NULL, 'IPAY2022/11/2745', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2769, '2022-11-24 08:17:02', 2752, NULL, NULL, 'IPAY2022/11/2746', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2770, '2022-11-25 00:39:26', 2753, NULL, NULL, 'IPAY2022/11/2747', NULL, 'cash', '', '', '', '', '', '', '830.0000', NULL, 2, NULL, 'received', '', '830.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2771, '2022-11-25 04:50:37', 2754, NULL, NULL, 'IPAY2022/11/2748', NULL, 'CC', '', '', '', '', '', '', '5700.0000', NULL, 2, NULL, 'received', '', '5700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2772, '2022-11-25 08:01:08', 2755, NULL, NULL, 'IPAY2022/11/2749', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2773, '2022-11-26 02:08:56', 2756, NULL, NULL, 'IPAY2022/11/2750', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2774, '2022-11-26 06:23:20', 2757, NULL, NULL, 'IPAY2022/11/2751', NULL, 'CC', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2775, '2022-11-26 06:38:06', 2758, NULL, NULL, 'IPAY2022/11/2752', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2776, '2022-11-26 06:40:12', 2759, NULL, NULL, 'IPAY2022/11/2753', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2777, '2022-11-26 06:49:22', 2760, NULL, NULL, 'IPAY2022/11/2754', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2778, '2022-11-26 08:00:43', 2761, NULL, NULL, 'IPAY2022/11/2755', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2780, '2022-11-26 09:47:57', 2763, NULL, NULL, 'IPAY2022/11/2757', NULL, 'cash', '', '', '', '', '', '', '670.0000', NULL, 2, NULL, 'received', '', '670.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2781, '2022-11-26 09:49:30', 2764, NULL, NULL, 'IPAY2022/11/2758', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2782, '2022-11-26 10:02:51', 2765, NULL, NULL, 'IPAY2022/11/2759', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2783, '2022-11-26 10:22:12', 2766, NULL, NULL, 'IPAY2022/11/2760', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2784, '2022-11-26 11:20:56', 2767, NULL, NULL, 'IPAY2022/11/2761', NULL, 'cash', '', '', '', '', '', '', '470.0000', NULL, 2, NULL, 'received', '', '470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2785, '2022-11-27 02:53:55', 2768, NULL, NULL, 'IPAY2022/11/2762', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2786, '2022-11-27 03:01:40', 2769, NULL, NULL, 'IPAY2022/11/2763', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2793, '2022-11-27 08:03:18', 2776, NULL, NULL, 'IPAY2022/11/2770', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2794, '2022-11-27 08:07:12', 2777, NULL, NULL, 'IPAY2022/11/2771', NULL, 'cash', '', '', '', '', '', '', '8900.0000', NULL, 2, NULL, 'received', '', '8900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2789, '2022-11-27 05:43:35', 2772, NULL, NULL, 'IPAY2022/11/2766', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2790, '2022-11-27 06:07:38', 2773, NULL, NULL, 'IPAY2022/11/2767', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2791, '2022-11-27 06:25:00', 2774, NULL, NULL, 'IPAY2022/11/2768', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2792, '2022-11-27 07:12:50', 2775, NULL, NULL, 'IPAY2022/11/2769', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2795, '2022-11-27 10:02:51', 2778, NULL, NULL, 'IPAY2022/11/2772', NULL, 'CC', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2796, '2022-11-27 10:08:32', 2779, NULL, NULL, 'IPAY2022/11/2773', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2797, '2022-11-27 10:31:14', 2780, NULL, NULL, 'IPAY2022/11/2774', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2798, '2022-11-28 03:16:58', 2781, NULL, NULL, 'IPAY2022/11/2775', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2799, '2022-11-28 04:59:38', 2782, NULL, NULL, 'IPAY2022/11/2776', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2800, '2022-11-28 09:01:30', 2783, NULL, NULL, 'IPAY2022/11/2777', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2801, '2022-11-28 09:02:13', 2784, NULL, NULL, 'IPAY2022/11/2778', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2802, '2022-11-29 04:15:47', 2785, NULL, NULL, 'IPAY2022/11/2779', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2803, '2022-11-29 09:34:21', 2786, NULL, NULL, 'IPAY2022/11/2780', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2804, '2022-11-29 09:35:06', 2787, NULL, NULL, 'IPAY2022/11/2781', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2805, '2022-11-29 09:35:33', 2788, NULL, NULL, 'IPAY2022/11/2782', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2806, '2022-11-30 01:43:53', 2789, NULL, NULL, 'IPAY2022/11/2783', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2807, '2022-11-30 02:46:59', 2790, NULL, NULL, 'IPAY2022/11/2784', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2808, '2022-11-30 08:20:44', 2791, NULL, NULL, 'IPAY2022/11/2785', NULL, 'cash', '', '', '', '', '', '', '290.0000', NULL, 2, NULL, 'received', '', '290.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2809, '2022-11-30 10:28:12', 2792, NULL, NULL, 'IPAY2022/11/2786', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2810, '2022-11-30 10:31:27', 2793, NULL, NULL, 'IPAY2022/11/2787', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2811, '2022-11-30 10:31:47', 2794, NULL, NULL, 'IPAY2022/11/2788', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2812, '2022-11-30 10:32:15', 2795, NULL, NULL, 'IPAY2022/11/2789', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2813, '2022-11-30 10:32:46', 2796, NULL, NULL, 'IPAY2022/11/2790', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2814, '2022-11-30 10:33:32', 2797, NULL, NULL, 'IPAY2022/11/2791', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2815, '2022-11-30 10:34:12', 2798, NULL, NULL, 'IPAY2022/11/2792', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2816, '2022-12-01 00:49:11', 2799, NULL, NULL, 'IPAY2022/11/2793', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2817, '2022-12-01 01:43:49', 2800, NULL, NULL, 'IPAY2022/11/2794', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2818, '2022-12-01 06:49:01', 2801, NULL, NULL, 'IPAY2022/11/2795', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2819, '2022-12-02 05:47:01', 2802, NULL, NULL, 'IPAY2022/12/2796', NULL, 'cash', '', '', '', '', '', '', '3750.0000', NULL, 2, NULL, 'received', '', '3750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2820, '2022-12-02 09:04:38', 2803, NULL, NULL, 'IPAY2022/12/2797', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2821, '2022-12-02 10:47:33', 2804, NULL, NULL, 'IPAY2022/12/2798', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2822, '2022-12-03 02:28:58', 2805, NULL, NULL, 'IPAY2022/12/2799', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2823, '2022-12-03 05:09:31', 2806, NULL, NULL, 'IPAY2022/12/2800', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2824, '2022-12-03 07:00:17', 2807, NULL, NULL, 'IPAY2022/12/2801', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 2, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2825, '2022-12-03 07:48:28', 2808, NULL, NULL, 'IPAY2022/12/2802', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2826, '2022-12-03 08:00:33', 2809, NULL, NULL, 'IPAY2022/12/2803', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2827, '2022-12-03 08:47:08', 2810, NULL, NULL, 'IPAY2022/12/2804', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2828, '2022-12-03 09:19:03', 2811, NULL, NULL, 'IPAY2022/12/2805', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2829, '2022-12-03 09:42:08', 2812, NULL, NULL, 'IPAY2022/12/2806', NULL, 'cash', '', '', '', '', '', '', '2800.0000', NULL, 2, NULL, 'received', '', '2800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2830, '2022-12-03 09:55:06', 2813, NULL, NULL, 'IPAY2022/12/2807', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2831, '2022-12-03 10:16:06', 2814, NULL, NULL, 'IPAY2022/12/2808', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2832, '2022-12-03 10:20:18', 2815, NULL, NULL, 'IPAY2022/12/2809', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2833, '2022-12-03 10:22:44', 2816, NULL, NULL, 'IPAY2022/12/2810', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2834, '2022-12-03 10:32:18', 2817, NULL, NULL, 'IPAY2022/12/2811', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2835, '2022-12-03 11:26:40', 2818, NULL, NULL, 'IPAY2022/12/2812', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2836, '2022-12-04 07:28:26', 2819, NULL, NULL, 'IPAY2022/12/2813', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2837, '2022-12-04 08:15:14', 2820, NULL, NULL, 'IPAY2022/12/2814', NULL, 'CC', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2838, '2022-12-04 08:19:14', 2821, NULL, NULL, 'IPAY2022/12/2815', NULL, 'cash', '', '', '', '', '', '', '1860.0000', NULL, 2, NULL, 'received', '', '1860.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2839, '2022-12-04 08:56:11', 2822, NULL, NULL, 'IPAY2022/12/2816', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2840, '2022-12-04 09:27:13', 2823, NULL, NULL, 'IPAY2022/12/2817', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2841, '2022-12-04 09:34:54', 2824, NULL, NULL, 'IPAY2022/12/2818', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2842, '2022-12-04 09:50:15', 2825, NULL, NULL, 'IPAY2022/12/2819', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2843, '2022-12-04 09:57:01', 2826, NULL, NULL, 'IPAY2022/12/2820', NULL, 'cash', '', '', '', '', '', '', '530.0000', NULL, 2, NULL, 'received', '', '530.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2844, '2022-12-04 10:00:12', 2827, NULL, NULL, 'IPAY2022/12/2821', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2845, '2022-12-04 10:16:11', 2828, NULL, NULL, 'IPAY2022/12/2822', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2846, '2022-12-04 11:10:36', 2829, NULL, NULL, 'IPAY2022/12/2823', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2847, '2022-12-06 00:52:26', 2830, NULL, NULL, 'IPAY2022/12/2824', NULL, 'cash', '', '', '', '', '', '', '7330.0000', NULL, 2, NULL, 'received', '', '7330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2848, '2022-12-06 04:05:18', 2831, NULL, NULL, 'IPAY2022/12/2825', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2849, '2022-12-07 02:00:55', 2832, NULL, NULL, 'IPAY2022/12/2826', NULL, 'cash', '', '', '', '', '', '', '1070.0000', NULL, 2, NULL, 'received', '', '1070.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2850, '2022-12-07 02:20:26', 2833, NULL, NULL, 'IPAY2022/12/2827', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2851, '2022-12-07 04:32:54', 2834, NULL, NULL, 'IPAY2022/12/2828', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2852, '2022-12-07 05:56:33', 2835, NULL, NULL, 'IPAY2022/12/2829', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2853, '2022-12-07 06:22:51', 2836, NULL, NULL, 'IPAY2022/12/2830', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2854, '2022-12-07 06:58:37', 2837, NULL, NULL, 'IPAY2022/12/2831', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2855, '2022-12-07 07:28:26', 2838, NULL, NULL, 'IPAY2022/12/2832', NULL, 'cash', '', '', '', '', '', '', '1950.0000', NULL, 2, NULL, 'received', '', '1950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2856, '2022-12-07 09:23:07', 2839, NULL, NULL, 'IPAY2022/12/2833', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2857, '2022-12-07 09:33:06', 2840, NULL, NULL, 'IPAY2022/12/2834', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2858, '2022-12-08 06:11:51', 2841, NULL, NULL, 'IPAY2022/12/2835', NULL, 'cash', '', '', '', '', '', '', '3200.0000', NULL, 2, NULL, 'received', '', '3200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2859, '2022-12-08 08:42:49', 2842, NULL, NULL, 'IPAY2022/12/2836', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2860, '2022-12-09 02:49:45', 2843, NULL, NULL, 'IPAY2022/12/2837', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2861, '2022-12-09 04:38:29', 2844, NULL, NULL, 'IPAY2022/12/2838', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2862, '2022-12-09 05:28:53', 2845, NULL, NULL, 'IPAY2022/12/2839', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2863, '2022-12-09 07:17:05', 2846, NULL, NULL, 'IPAY2022/12/2840', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2864, '2022-12-09 08:48:15', 2847, NULL, NULL, 'IPAY2022/12/2841', NULL, 'cash', '', '', '', '', '', '', '560.0000', NULL, 2, NULL, 'received', '', '560.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2865, '2022-12-09 09:49:26', 2848, NULL, NULL, 'IPAY2022/12/2842', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2866, '2022-12-09 10:42:02', 2849, NULL, NULL, 'IPAY2022/12/2843', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2867, '2022-12-10 02:58:14', 2850, NULL, NULL, 'IPAY2022/12/2844', NULL, 'cash', '', '', '', '', '', '', '2370.0000', NULL, 2, NULL, 'received', '', '2370.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2868, '2022-12-10 02:59:54', 2851, NULL, NULL, 'IPAY2022/12/2845', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2869, '2022-12-10 04:34:22', 2852, NULL, NULL, 'IPAY2022/12/2846', NULL, 'cash', '', '', '', '', '', '', '1110.0000', NULL, 2, NULL, 'received', '', '1110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2870, '2022-12-10 05:25:00', 2853, NULL, NULL, 'IPAY2022/12/2847', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2871, '2022-12-10 08:15:21', 2854, NULL, NULL, 'IPAY2022/12/2848', NULL, 'CC', '', '', '', '', '', '', '13270.0000', NULL, 2, NULL, 'received', '', '13270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2872, '2022-12-10 08:16:08', 2855, NULL, NULL, 'IPAY2022/12/2849', NULL, 'cash', '', '', '', '', '', '', '2350.0000', NULL, 2, NULL, 'received', '', '2350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2873, '2022-12-10 08:21:32', 2856, NULL, NULL, 'IPAY2022/12/2850', NULL, 'cash', '', '', '', '', '', '', '420.0000', NULL, 2, NULL, 'received', '', '420.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2874, '2022-12-10 08:31:06', 2857, NULL, NULL, 'IPAY2022/12/2851', NULL, 'cash', '', '', '', '', '', '', '3650.0000', NULL, 2, NULL, 'received', '', '3650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2875, '2022-12-10 08:48:52', 2858, NULL, NULL, 'IPAY2022/12/2852', NULL, 'cash', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2876, '2022-12-10 09:00:19', 2859, NULL, NULL, 'IPAY2022/12/2853', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2877, '2022-12-10 09:12:22', 2860, NULL, NULL, 'IPAY2022/12/2854', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2878, '2022-12-10 09:57:03', 2861, NULL, NULL, 'IPAY2022/12/2855', NULL, 'CC', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2879, '2022-12-10 09:58:03', 2862, NULL, NULL, 'IPAY2022/12/2856', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2880, '2022-12-10 10:33:31', 2863, NULL, NULL, 'IPAY2022/12/2857', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2881, '2022-12-10 10:49:53', 2864, NULL, NULL, 'IPAY2022/12/2858', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2882, '2022-12-11 08:43:00', 2865, NULL, NULL, 'IPAY2022/12/2859', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2883, '2022-12-11 08:49:16', 2866, NULL, NULL, 'IPAY2022/12/2860', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2884, '2022-12-11 09:42:53', 2867, NULL, NULL, 'IPAY2022/12/2861', NULL, 'cash', '', '', '', '', '', '', '330.0000', NULL, 2, NULL, 'received', '', '330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2885, '2022-12-12 03:49:56', 2868, NULL, NULL, 'IPAY2022/12/2862', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2886, '2022-12-12 06:36:52', 2869, NULL, NULL, 'IPAY2022/12/2863', NULL, 'cash', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2887, '2022-12-12 06:39:05', 2870, NULL, NULL, 'IPAY2022/12/2864', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2888, '2022-12-12 07:09:09', 2871, NULL, NULL, 'IPAY2022/12/2865', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2889, '2022-12-12 07:41:54', 2872, NULL, NULL, 'IPAY2022/12/2866', NULL, 'cash', '', '', '', '', '', '', '3430.0000', NULL, 2, NULL, 'received', '', '3430.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2890, '2022-12-12 08:03:12', 2873, NULL, NULL, 'IPAY2022/12/2867', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2891, '2022-12-12 08:31:43', 2874, NULL, NULL, 'IPAY2022/12/2868', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2892, '2022-12-12 08:49:52', 2875, NULL, NULL, 'IPAY2022/12/2869', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2893, '2022-12-12 09:10:46', 2876, NULL, NULL, 'IPAY2022/12/2870', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2894, '2022-12-12 09:35:06', 2877, NULL, NULL, 'IPAY2022/12/2871', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2895, '2022-12-12 09:51:36', 2878, NULL, NULL, 'IPAY2022/12/2872', NULL, 'CC', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2896, '2022-12-12 10:53:10', 2879, NULL, NULL, 'IPAY2022/12/2873', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2897, '2022-12-13 04:12:53', 2880, NULL, NULL, 'IPAY2022/12/2874', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2898, '2022-12-13 04:13:29', 2881, NULL, NULL, 'IPAY2022/12/2875', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2899, '2022-12-14 00:56:04', 2882, NULL, NULL, 'IPAY2022/12/2876', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2900, '2022-12-14 00:56:33', 2883, NULL, NULL, 'IPAY2022/12/2877', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2901, '2022-12-14 03:13:59', 2885, NULL, NULL, 'IPAY2022/12/2878', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2902, '2022-12-14 06:04:18', 2886, NULL, NULL, 'IPAY2022/12/2879', NULL, 'cash', '', '', '', '', '', '', '770.0000', NULL, 2, NULL, 'received', '', '770.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2903, '2022-12-14 07:18:18', 2887, NULL, NULL, 'IPAY2022/12/2880', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2904, '2022-12-14 08:01:14', 2888, NULL, NULL, 'IPAY2022/12/2881', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2905, '2022-12-15 06:29:06', 2889, NULL, NULL, 'IPAY2022/12/2882', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2906, '2022-12-15 07:02:53', 2890, NULL, NULL, 'IPAY2022/12/2883', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2907, '2022-12-15 07:04:32', 2891, NULL, NULL, 'IPAY2022/12/2884', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2908, '2022-12-15 07:05:39', 2892, NULL, NULL, 'IPAY2022/12/2885', NULL, 'CC', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2909, '2022-12-15 07:06:37', 2893, NULL, NULL, 'IPAY2022/12/2886', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2910, '2022-12-16 01:41:57', 2894, NULL, NULL, 'IPAY2022/12/2887', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2911, '2022-12-16 04:18:35', 2895, NULL, NULL, 'IPAY2022/12/2888', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2912, '2022-12-16 05:43:29', 2896, NULL, NULL, 'IPAY2022/12/2889', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2913, '2022-12-16 06:05:24', 2897, NULL, NULL, 'IPAY2022/12/2890', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2914, '2022-12-16 06:54:39', 2898, NULL, NULL, 'IPAY2022/12/2891', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2915, '2022-12-16 06:55:34', 2899, NULL, NULL, 'IPAY2022/12/2892', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2916, '2022-12-16 08:34:38', 2900, NULL, NULL, 'IPAY2022/12/2893', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2917, '2022-12-16 09:25:04', 2901, NULL, NULL, 'IPAY2022/12/2894', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2918, '2022-12-17 03:22:36', 2902, NULL, NULL, 'IPAY2022/12/2895', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2919, '2022-12-17 03:31:39', 2903, NULL, NULL, 'IPAY2022/12/2896', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2920, '2022-12-17 04:19:51', 2904, NULL, NULL, 'IPAY2022/12/2897', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2921, '2022-12-17 07:26:26', 2905, NULL, NULL, 'IPAY2022/12/2898', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2922, '2022-12-17 08:10:16', 2906, NULL, NULL, 'IPAY2022/12/2899', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2923, '2022-12-17 08:41:49', 2907, NULL, NULL, 'IPAY2022/12/2900', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2924, '2022-12-17 09:29:56', 2908, NULL, NULL, 'IPAY2022/12/2901', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2925, '2022-12-17 09:33:26', 2909, NULL, NULL, 'IPAY2022/12/2902', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2926, '2022-12-17 09:47:38', 2910, NULL, NULL, 'IPAY2022/12/2903', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2927, '2022-12-17 10:44:40', 2911, NULL, NULL, 'IPAY2022/12/2904', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2928, '2022-12-18 01:36:08', 2912, NULL, NULL, 'IPAY2022/12/2905', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2929, '2022-12-18 02:52:25', 2913, NULL, NULL, 'IPAY2022/12/2906', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2930, '2022-12-18 06:11:49', 2914, NULL, NULL, 'IPAY2022/12/2907', NULL, 'cash', '', '', '', '', '', '', '4200.0000', NULL, 2, NULL, 'received', '', '4200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2931, '2022-12-18 06:41:46', 2915, NULL, NULL, 'IPAY2022/12/2908', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2932, '2022-12-18 07:21:14', 2916, NULL, NULL, 'IPAY2022/12/2909', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2933, '2022-12-18 07:39:19', 2917, NULL, NULL, 'IPAY2022/12/2910', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2934, '2022-12-18 08:12:49', 2918, NULL, NULL, 'IPAY2022/12/2911', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2935, '2022-12-18 08:16:37', 2919, NULL, NULL, 'IPAY2022/12/2912', NULL, 'cash', '', '', '', '', '', '', '420.0000', NULL, 2, NULL, 'received', '', '420.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2936, '2022-12-18 09:30:34', 2920, NULL, NULL, 'IPAY2022/12/2913', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2937, '2022-12-18 10:24:34', 2921, NULL, NULL, 'IPAY2022/12/2914', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2938, '2022-12-19 01:35:43', 2922, NULL, NULL, 'IPAY2022/12/2915', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2939, '2022-12-19 01:43:37', 2923, NULL, NULL, 'IPAY2022/12/2916', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2940, '2022-12-19 05:29:38', 2924, NULL, NULL, 'IPAY2022/12/2917', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2941, '2022-12-19 05:30:43', 2925, NULL, NULL, 'IPAY2022/12/2918', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2942, '2022-12-19 07:09:43', 2926, NULL, NULL, 'IPAY2022/12/2919', NULL, 'CC', '', '', '', '', '', '', '4250.0000', NULL, 2, NULL, 'received', '', '4250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2943, '2022-12-19 09:43:27', 2927, NULL, NULL, 'IPAY2022/12/2920', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2944, '2022-12-20 05:01:15', 2928, NULL, NULL, 'IPAY2022/12/2921', NULL, 'cash', '', '', '', '', '', '', '190.0000', NULL, 2, NULL, 'received', '', '190.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2945, '2022-12-20 05:04:04', 2929, NULL, NULL, 'IPAY2022/12/2922', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2946, '2022-12-20 08:23:48', 2930, NULL, NULL, 'IPAY2022/12/2923', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2947, '2022-12-20 09:13:16', 2931, NULL, NULL, 'IPAY2022/12/2924', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2948, '2022-12-21 02:37:08', 2932, NULL, NULL, 'IPAY2022/12/2925', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2949, '2022-12-21 02:38:49', 2933, NULL, NULL, 'IPAY2022/12/2926', NULL, 'CC', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2950, '2022-12-21 04:59:07', 2934, NULL, NULL, 'IPAY2022/12/2927', NULL, 'cash', '', '', '', '', '', '', '440.0000', NULL, 2, NULL, 'received', '', '440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2951, '2022-12-21 08:05:06', 2935, NULL, NULL, 'IPAY2022/12/2928', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2952, '2022-12-21 08:13:41', 2936, NULL, NULL, 'IPAY2022/12/2929', NULL, 'cash', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2953, '2022-12-21 08:14:43', 2937, NULL, NULL, 'IPAY2022/12/2930', NULL, 'cash', '', '', '', '', '', '', '4300.0000', NULL, 2, NULL, 'received', '', '4300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2954, '2022-12-21 08:16:01', 2938, NULL, NULL, 'IPAY2022/12/2931', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2955, '2022-12-21 09:32:30', 2939, NULL, NULL, 'IPAY2022/12/2932', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2956, '2022-12-21 09:38:57', 2940, NULL, NULL, 'IPAY2022/12/2933', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2957, '2022-12-21 09:51:04', 2941, NULL, NULL, 'IPAY2022/12/2934', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2958, '2022-12-21 10:20:58', 2942, NULL, NULL, 'IPAY2022/12/2935', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2959, '2022-12-21 10:27:58', 2943, NULL, NULL, 'IPAY2022/12/2936', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2960, '2022-12-22 04:31:43', 2944, NULL, NULL, 'IPAY2022/12/2937', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2961, '2022-12-23 01:52:29', 2945, NULL, NULL, 'IPAY2022/12/2938', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2962, '2022-12-23 02:09:40', 2946, NULL, NULL, 'IPAY2022/12/2939', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2963, '2022-12-23 07:41:09', 2947, NULL, NULL, 'IPAY2022/12/2940', NULL, 'other', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2964, '2022-12-23 09:19:51', 2948, NULL, NULL, 'IPAY2022/12/2941', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2965, '2022-12-23 09:58:56', 2949, NULL, NULL, 'IPAY2022/12/2942', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2966, '2022-12-23 10:11:10', 2950, NULL, NULL, 'IPAY2022/12/2943', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2967, '2022-12-24 04:20:17', 2951, NULL, NULL, 'IPAY2022/12/2944', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2968, '2022-12-24 04:57:19', 2952, NULL, NULL, 'IPAY2022/12/2945', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2969, '2022-12-24 06:31:26', 2953, NULL, NULL, 'IPAY2022/12/2946', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2970, '2022-12-24 06:45:26', 2954, NULL, NULL, 'IPAY2022/12/2947', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2971, '2022-12-24 08:14:30', 2955, NULL, NULL, 'IPAY2022/12/2948', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2972, '2022-12-24 09:22:45', 2956, NULL, NULL, 'IPAY2022/12/2949', NULL, 'CC', '', '', '', '', '', '', '1540.0000', NULL, 2, NULL, 'received', '', '1540.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2973, '2022-12-24 10:08:07', 2957, NULL, NULL, 'IPAY2022/12/2950', NULL, 'CC', '', '', '', '', '', '', '1360.0000', NULL, 2, NULL, 'received', '', '1360.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2974, '2022-12-24 10:22:05', 2958, NULL, NULL, 'IPAY2022/12/2951', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2975, '2022-12-24 10:32:20', 2959, NULL, NULL, 'IPAY2022/12/2952', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2976, '2022-12-24 10:44:41', 2960, NULL, NULL, 'IPAY2022/12/2953', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2977, '2022-12-24 10:50:08', 2961, NULL, NULL, 'IPAY2022/12/2954', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2978, '2022-12-24 10:51:11', 2962, NULL, NULL, 'IPAY2022/12/2955', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2979, '2022-12-25 02:06:24', 2963, NULL, NULL, 'IPAY2022/12/2956', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2980, '2022-12-25 06:03:59', 2964, NULL, NULL, 'IPAY2022/12/2957', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2981, '2022-12-25 07:00:54', 2965, NULL, NULL, 'IPAY2022/12/2958', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2982, '2022-12-25 07:06:54', 2966, NULL, NULL, 'IPAY2022/12/2959', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2983, '2022-12-25 07:12:13', 2967, NULL, NULL, 'IPAY2022/12/2960', NULL, 'CC', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2984, '2022-12-25 08:14:51', 2968, NULL, NULL, 'IPAY2022/12/2961', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2985, '2022-12-25 08:54:32', 2969, NULL, NULL, 'IPAY2022/12/2962', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2986, '2022-12-25 09:01:42', 2970, NULL, NULL, 'IPAY2022/12/2963', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2987, '2022-12-25 09:13:03', 2971, NULL, NULL, 'IPAY2022/12/2964', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2988, '2022-12-25 09:50:15', 2972, NULL, NULL, 'IPAY2022/12/2965', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2989, '2022-12-25 10:03:14', 2973, NULL, NULL, 'IPAY2022/12/2966', NULL, 'cash', '', '', '', '', '', '', '460.0000', NULL, 2, NULL, 'received', '', '460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2990, '2022-12-25 10:41:32', 2974, NULL, NULL, 'IPAY2022/12/2967', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2991, '2022-12-25 10:59:48', 2975, NULL, NULL, 'IPAY2022/12/2968', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2992, '2022-12-26 03:03:33', 2976, NULL, NULL, 'IPAY2022/12/2969', NULL, 'cash', '', '', '', '', '', '', '2300.0000', NULL, 2, NULL, 'received', '', '2300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2993, '2022-12-26 05:08:28', 2977, NULL, NULL, 'IPAY2022/12/2970', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2994, '2022-12-26 05:57:48', 2978, NULL, NULL, 'IPAY2022/12/2971', NULL, 'cash', '', '', '', '', '', '', '1160.0000', NULL, 2, NULL, 'received', '', '1160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2995, '2022-12-26 06:33:06', 2979, NULL, NULL, 'IPAY2022/12/2972', NULL, 'other', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2996, '2022-12-26 07:50:15', 2980, NULL, NULL, 'IPAY2022/12/2973', NULL, 'cash', '', '', '', '', '', '', '2850.0000', NULL, 2, NULL, 'received', '', '2850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2997, '2022-12-26 08:19:01', 2981, NULL, NULL, 'IPAY2022/12/2974', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2998, '2022-12-26 08:32:40', 2982, NULL, NULL, 'IPAY2022/12/2975', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (2999, '2022-12-26 10:59:29', 2983, NULL, NULL, 'IPAY2022/12/2976', NULL, 'cash', '', '', '', '', '', '', '1660.0000', NULL, 2, NULL, 'received', '', '1660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3000, '2023-01-22 06:59:10', 2984, NULL, NULL, 'IPAY2023/01/2977', NULL, 'cash', '', '', '', '', '', '', '4440.0000', NULL, 2, NULL, 'received', '', '4440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3001, '2023-01-22 07:01:30', 2985, NULL, NULL, 'IPAY2023/01/2978', NULL, 'other', '', '', '', '', '', '', '7500.0000', NULL, 2, NULL, 'received', '', '7500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3003, '2023-01-22 07:09:42', 2987, NULL, NULL, 'IPAY2023/01/2980', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3004, '2023-01-22 07:10:22', 2988, NULL, NULL, 'IPAY2023/01/2981', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3005, '2023-01-22 07:22:36', 2989, NULL, NULL, 'IPAY2023/01/2982', NULL, 'CC', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3006, '2023-01-22 07:27:37', 2990, NULL, NULL, 'IPAY2023/01/2983', NULL, 'CC', '', '', '', '', '', '', '6600.0000', NULL, 2, NULL, 'received', '', '6600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3007, '2023-01-22 07:33:36', 2991, NULL, NULL, 'IPAY2023/01/2984', NULL, 'CC', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3008, '2023-01-22 07:43:20', 2992, NULL, NULL, 'IPAY2023/01/2985', NULL, 'other', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3009, '2023-01-22 07:50:20', 2993, NULL, NULL, 'IPAY2023/01/2986', NULL, 'cash', '', '', '', '', '', '', '5090.0000', NULL, 2, NULL, 'received', '', '5090.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3010, '2023-01-22 07:56:10', 2994, NULL, NULL, 'IPAY2023/01/2987', NULL, 'CC', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3011, '2023-01-22 08:05:29', 2995, NULL, NULL, 'IPAY2023/01/2988', NULL, 'cash', '', '', '', '', '', '', '4160.0000', NULL, 2, NULL, 'received', '', '4160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3012, '2023-01-22 08:06:01', 2996, NULL, NULL, 'IPAY2023/01/2989', NULL, 'other', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3013, '2023-01-22 08:49:17', 2997, NULL, NULL, 'IPAY2023/01/2990', NULL, 'cash', '', '', '', '', '', '', '4280.0000', NULL, 2, NULL, 'received', '', '4280.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3014, '2023-01-22 08:51:10', 2998, NULL, NULL, 'IPAY2023/01/2991', NULL, 'CC', '', '', '', '', '', '', '3600.0000', NULL, 2, NULL, 'received', '', '3600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3015, '2023-01-22 08:51:37', 2999, NULL, NULL, 'IPAY2023/01/2992', NULL, 'CC', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3016, '2023-01-22 10:07:16', 3000, NULL, NULL, 'IPAY2023/01/2993', NULL, 'cash', '', '', '', '', '', '', '9950.0000', NULL, 2, NULL, 'received', '', '9950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3017, '2023-01-22 10:15:08', 3001, NULL, NULL, 'IPAY2023/01/2994', NULL, 'cash', '', '', '', '', '', '', '2380.0000', NULL, 2, NULL, 'received', '', '2380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3018, '2023-01-22 10:21:53', 3002, NULL, NULL, 'IPAY2023/01/2995', NULL, 'cash', '', '', '', '', '', '', '8860.0000', NULL, 2, NULL, 'received', '', '8860.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3019, '2023-01-22 10:34:58', 3003, NULL, NULL, 'IPAY2023/01/2996', NULL, 'cash', '', '', '', '', '', '', '6800.0000', NULL, 2, NULL, 'received', '', '6800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3020, '2023-01-23 02:15:04', 3004, NULL, NULL, 'IPAY2023/01/2997', NULL, 'cash', '', '', '', '', '', '', '140.0000', NULL, 2, NULL, 'received', '', '140.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3021, '2023-01-23 02:17:56', 3005, NULL, NULL, 'IPAY2023/01/2998', NULL, 'CC', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3022, '2023-01-23 02:23:40', 3006, NULL, NULL, 'IPAY2023/01/2999', NULL, 'cash', '', '', '', '', '', '', '2680.0000', NULL, 2, NULL, 'received', '', '2680.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3023, '2023-01-23 02:30:02', 3007, NULL, NULL, 'IPAY2023/01/3000', NULL, 'cash', '', '', '', '', '', '', '7620.0000', NULL, 2, NULL, 'received', '', '7620.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3024, '2023-01-23 02:41:33', 3008, NULL, NULL, 'IPAY2023/01/3001', NULL, 'cash', '', '', '', '', '', '', '2850.0000', NULL, 2, NULL, 'received', '', '2850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3025, '2023-01-23 02:43:42', 3009, NULL, NULL, 'IPAY2023/01/3002', NULL, 'other', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3026, '2023-01-23 02:44:53', 3010, NULL, NULL, 'IPAY2023/01/3003', NULL, 'cash', '', '', '', '', '', '', '4700.0000', NULL, 2, NULL, 'received', '', '4700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3027, '2023-01-23 02:47:31', 3011, NULL, NULL, 'IPAY2023/01/3004', NULL, 'cash', '', '', '', '', '', '', '520.0000', NULL, 2, NULL, 'received', '', '520.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3028, '2023-01-23 02:52:58', 3012, NULL, NULL, 'IPAY2023/01/3005', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3029, '2023-01-23 03:00:11', 3013, NULL, NULL, 'IPAY2023/01/3006', NULL, 'cash', '', '', '', '', '', '', '5200.0000', NULL, 2, NULL, 'received', '', '5200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3030, '2023-01-23 03:02:06', 3014, NULL, NULL, 'IPAY2023/01/3007', NULL, 'other', '', '', '', '', '', '', '4600.0000', NULL, 2, NULL, 'received', '', '4600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3031, '2023-01-23 03:09:54', 3015, NULL, NULL, 'IPAY2023/01/3008', NULL, 'cash', '', '', '', '', '', '', '4310.0000', NULL, 2, NULL, 'received', '', '4310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3032, '2023-01-23 03:22:02', 3016, NULL, NULL, 'IPAY2023/01/3009', NULL, 'cash', '', '', '', '', '', '', '7160.0000', NULL, 2, NULL, 'received', '', '7160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3033, '2023-01-23 03:58:42', 3017, NULL, NULL, 'IPAY2023/01/3010', NULL, 'other', '', '', '', '', '', '', '10000.0000', NULL, 2, NULL, 'received', '', '10000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3034, '2023-01-23 04:11:09', 3018, NULL, NULL, 'IPAY2023/01/3011', NULL, 'cash', '', '', '', '', '', '', '7800.0000', NULL, 2, NULL, 'received', '', '7800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3035, '2023-01-23 04:13:36', 3019, NULL, NULL, 'IPAY2023/01/3012', NULL, 'CC', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3036, '2023-01-23 04:22:38', 3020, NULL, NULL, 'IPAY2023/01/3013', NULL, 'other', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3037, '2023-01-23 04:26:41', 3021, NULL, NULL, 'IPAY2023/01/3014', NULL, 'cash', '', '', '', '', '', '', '4840.0000', NULL, 2, NULL, 'received', '', '4840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3038, '2023-01-23 04:30:07', 3022, NULL, NULL, 'IPAY2023/01/3015', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3039, '2023-01-23 04:33:14', 3023, NULL, NULL, 'IPAY2023/01/3016', NULL, 'CC', '', '', '', '', '', '', '470.0000', NULL, 2, NULL, 'received', '', '470.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3040, '2023-01-23 04:49:54', 3024, NULL, NULL, 'IPAY2023/01/3017', NULL, 'cash', '', '', '', '', '', '', '5270.0000', NULL, 2, NULL, 'received', '', '5270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3041, '2023-01-23 04:52:34', 3025, NULL, NULL, 'IPAY2023/01/3018', NULL, 'CC', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3042, '2023-01-23 04:56:36', 3026, NULL, NULL, 'IPAY2023/01/3019', NULL, 'cash', '', '', '', '', '', '', '4990.0000', NULL, 2, NULL, 'received', '', '4990.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3044, '2023-01-23 05:09:03', 3028, NULL, NULL, 'IPAY2023/01/3021', NULL, 'cash', '', '', '', '', '', '', '4030.0000', NULL, 2, NULL, 'received', '', '4030.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3045, '2023-01-23 05:12:37', 3029, NULL, NULL, 'IPAY2023/01/3022', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3046, '2023-01-23 05:13:11', 3030, NULL, NULL, 'IPAY2023/01/3023', NULL, 'cash', '', '', '', '', '', '', '1200.0000', NULL, 2, NULL, 'received', '', '1200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3047, '2023-01-23 05:14:08', 3031, NULL, NULL, 'IPAY2023/01/3024', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3048, '2023-01-23 05:23:54', 3032, NULL, NULL, 'IPAY2023/01/3025', NULL, 'cash', '', '', '', '', '', '', '2450.0000', NULL, 2, NULL, 'received', '', '2450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3049, '2023-01-23 05:57:09', 3033, NULL, NULL, 'IPAY2023/01/3026', NULL, 'cash', '', '', '', '', '', '', '2500.0000', NULL, 2, NULL, 'received', '', '2500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3050, '2023-01-23 07:58:06', 3034, NULL, NULL, 'IPAY2023/01/3027', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3051, '2023-01-23 09:54:07', 3035, NULL, NULL, 'IPAY2023/01/3028', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3052, '2023-01-24 03:44:37', 3036, NULL, NULL, 'IPAY2023/01/3029', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3053, '2023-01-24 06:12:15', 3037, NULL, NULL, 'IPAY2023/01/3030', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3054, '2023-01-24 06:12:51', 3038, NULL, NULL, 'IPAY2023/01/3031', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3055, '2023-01-24 07:41:34', 3039, NULL, NULL, 'IPAY2023/01/3032', NULL, 'CC', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3056, '2023-01-24 07:57:15', 3040, NULL, NULL, 'IPAY2023/01/3033', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3057, '2023-01-25 02:30:27', 3041, NULL, NULL, 'IPAY2023/01/3034', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3058, '2023-01-25 02:32:06', 3042, NULL, NULL, 'IPAY2023/01/3035', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3059, '2023-01-25 02:33:27', 3043, NULL, NULL, 'IPAY2023/01/3036', NULL, 'cash', '', '', '', '', '', '', '1550.0000', NULL, 2, NULL, 'received', '', '1550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3060, '2023-01-25 05:38:11', 3044, NULL, NULL, 'IPAY2023/01/3037', NULL, 'CC', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3061, '2023-01-25 08:14:16', 3045, NULL, NULL, 'IPAY2023/01/3038', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3062, '2023-01-26 09:25:06', 3046, NULL, NULL, 'IPAY2023/01/3039', NULL, 'cash', '', '', '', '', '', '', '1900.0000', NULL, 2, NULL, 'received', '', '1900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3063, '2023-01-26 09:26:01', 3047, NULL, NULL, 'IPAY2023/01/3040', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3064, '2023-01-27 02:47:09', 3048, NULL, NULL, 'IPAY2023/01/3041', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3065, '2023-01-27 03:22:49', 3049, NULL, NULL, 'IPAY2023/01/3042', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3066, '2023-01-27 03:26:33', 3050, NULL, NULL, 'IPAY2023/01/3043', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3067, '2023-01-27 03:53:15', 3051, NULL, NULL, 'IPAY2023/01/3044', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3068, '2023-01-27 07:51:03', 3052, NULL, NULL, 'IPAY2023/01/3045', NULL, 'CC', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3069, '2023-01-27 10:13:33', 3053, NULL, NULL, 'IPAY2023/01/3046', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3070, '2023-01-28 04:21:18', 3054, NULL, NULL, 'IPAY2023/01/3047', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3071, '2023-01-28 06:40:01', 3055, NULL, NULL, 'IPAY2023/01/3048', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3072, '2023-01-28 06:59:48', 3056, NULL, NULL, 'IPAY2023/01/3049', NULL, 'cash', '', '', '', '', '', '', '1650.0000', NULL, 2, NULL, 'received', '', '1650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3073, '2023-01-28 07:10:18', 3057, NULL, NULL, 'IPAY2023/01/3050', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3074, '2023-01-28 07:13:31', 3058, NULL, NULL, 'IPAY2023/01/3051', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3075, '2023-01-28 08:31:25', 3059, NULL, NULL, 'IPAY2023/01/3052', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3076, '2023-01-28 09:43:41', 3060, NULL, NULL, 'IPAY2023/01/3053', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3077, '2023-01-28 11:04:52', 3061, NULL, NULL, 'IPAY2023/01/3054', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3078, '2023-01-29 02:13:16', 3062, NULL, NULL, 'IPAY2023/01/3055', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3080, '2023-01-29 06:06:28', 3064, NULL, NULL, 'IPAY2023/01/3057', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3081, '2023-01-29 06:23:40', 3065, NULL, NULL, 'IPAY2023/01/3058', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3082, '2023-01-29 06:56:58', 3066, NULL, NULL, 'IPAY2023/01/3059', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3083, '2023-01-29 07:03:05', 3067, NULL, NULL, 'IPAY2023/01/3060', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3084, '2023-01-29 07:55:20', 3068, NULL, NULL, 'IPAY2023/01/3061', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3085, '2023-01-29 09:07:29', 3069, NULL, NULL, 'IPAY2023/01/3062', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3086, '2023-01-29 09:49:10', 3070, NULL, NULL, 'IPAY2023/01/3063', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3087, '2023-01-29 10:04:33', 3071, NULL, NULL, 'IPAY2023/01/3064', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3088, '2023-01-30 01:11:46', 3072, NULL, NULL, 'IPAY2023/01/3065', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3089, '2023-01-30 04:23:53', 3073, NULL, NULL, 'IPAY2023/01/3066', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3090, '2023-01-30 06:02:26', 3074, NULL, NULL, 'IPAY2023/01/3067', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3091, '2023-01-30 08:45:01', 3075, NULL, NULL, 'IPAY2023/01/3068', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3092, '2023-01-31 05:40:53', 3076, NULL, NULL, 'IPAY2023/01/3069', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3093, '2023-01-31 07:42:36', 3077, NULL, NULL, 'IPAY2023/01/3070', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3094, '2023-02-01 02:45:14', 3078, NULL, NULL, 'IPAY2023/01/3071', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3095, '2023-02-01 06:26:04', 3079, NULL, NULL, 'IPAY2023/01/3072', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3096, '2023-02-01 07:05:21', 3080, NULL, NULL, 'IPAY2023/01/3073', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3097, '2023-02-01 09:20:44', 3081, NULL, NULL, 'IPAY2023/01/3074', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3098, '2023-02-03 01:21:56', 3082, NULL, NULL, 'IPAY2023/02/3075', NULL, 'cash', '', '', '', '', '', '', '1850.0000', NULL, 2, NULL, 'received', '', '1850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3099, '2023-02-03 07:20:28', 3083, NULL, NULL, 'IPAY2023/02/3076', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3100, '2023-02-03 08:44:16', 3084, NULL, NULL, 'IPAY2023/02/3077', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3101, '2023-02-04 02:27:07', 3085, NULL, NULL, 'IPAY2023/02/3078', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3102, '2023-02-04 03:02:20', 3086, NULL, NULL, 'IPAY2023/02/3079', NULL, 'cash', '', '', '', '', '', '', '1670.0000', NULL, 2, NULL, 'received', '', '1670.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3103, '2023-02-04 03:04:56', 3087, NULL, NULL, 'IPAY2023/02/3080', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3104, '2023-02-04 03:46:34', 3088, NULL, NULL, 'IPAY2023/02/3081', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3105, '2023-02-04 08:37:48', 3089, NULL, NULL, 'IPAY2023/02/3082', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3106, '2023-02-04 08:50:43', 3090, NULL, NULL, 'IPAY2023/02/3083', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3107, '2023-02-04 09:54:16', 3091, NULL, NULL, 'IPAY2023/02/3084', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3108, '2023-02-04 10:02:16', 3092, NULL, NULL, 'IPAY2023/02/3085', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3109, '2023-02-04 10:52:22', 3093, NULL, NULL, 'IPAY2023/02/3086', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3110, '2023-02-05 02:22:09', 3094, NULL, NULL, 'IPAY2023/02/3087', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3111, '2023-02-05 02:33:16', 3095, NULL, NULL, 'IPAY2023/02/3088', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3112, '2023-02-05 02:51:02', 3096, NULL, NULL, 'IPAY2023/02/3089', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3113, '2023-02-05 03:29:02', 3097, NULL, NULL, 'IPAY2023/02/3090', NULL, 'cash', '', '', '', '', '', '', '4400.0000', NULL, 2, NULL, 'received', '', '4400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3114, '2023-02-05 04:12:07', 3098, NULL, NULL, 'IPAY2023/02/3091', NULL, 'cash', '', '', '', '', '', '', '2900.0000', NULL, 2, NULL, 'received', '', '2900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3115, '2023-02-05 04:16:06', 3099, NULL, NULL, 'IPAY2023/02/3092', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3116, '2023-02-05 04:40:30', 3100, NULL, NULL, 'IPAY2023/02/3093', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3117, '2023-02-05 09:58:43', 3101, NULL, NULL, 'IPAY2023/02/3094', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3118, '2023-02-05 10:02:11', 3102, NULL, NULL, 'IPAY2023/02/3095', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3119, '2023-02-05 10:15:29', 3103, NULL, NULL, 'IPAY2023/02/3096', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3120, '2023-02-05 10:23:10', 3104, NULL, NULL, 'IPAY2023/02/3097', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3121, '2023-02-05 10:30:19', 3105, NULL, NULL, 'IPAY2023/02/3098', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3122, '2023-02-05 10:47:00', 3106, NULL, NULL, 'IPAY2023/02/3099', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3123, '2023-02-06 01:24:03', 3107, NULL, NULL, 'IPAY2023/02/3100', NULL, 'CC', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3124, '2023-02-06 01:24:58', 3108, NULL, NULL, 'IPAY2023/02/3101', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3125, '2023-02-06 03:56:06', 3109, NULL, NULL, 'IPAY2023/02/3102', NULL, 'CC', '', '', '', '', '', '', '4800.0000', NULL, 2, NULL, 'received', '', '4800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3126, '2023-02-06 03:56:46', 3110, NULL, NULL, 'IPAY2023/02/3103', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3127, '2023-02-06 04:38:37', 3111, NULL, NULL, 'IPAY2023/02/3104', NULL, 'cash', '', '', '', '', '', '', '660.0000', NULL, 2, NULL, 'received', '', '660.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3128, '2023-02-06 09:24:54', 3112, NULL, NULL, 'IPAY2023/02/3105', NULL, 'cash', '', '', '', '', '', '', '460.0000', NULL, 2, NULL, 'received', '', '460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3129, '2023-02-06 09:30:25', 3113, NULL, NULL, 'IPAY2023/02/3106', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3130, '2023-02-07 04:56:29', 3114, NULL, NULL, 'IPAY2023/02/3107', NULL, 'CC', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3131, '2023-02-07 07:52:22', 3115, NULL, NULL, 'IPAY2023/02/3108', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3132, '2023-02-07 09:14:18', 3116, NULL, NULL, 'IPAY2023/02/3109', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3133, '2023-02-07 09:15:07', 3117, NULL, NULL, 'IPAY2023/02/3110', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3134, '2023-02-08 02:59:14', 3118, NULL, NULL, 'IPAY2023/02/3111', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3135, '2023-02-08 04:01:18', 3119, NULL, NULL, 'IPAY2023/02/3112', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3136, '2023-02-08 08:53:07', 3120, NULL, NULL, 'IPAY2023/02/3113', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3137, '2023-02-09 08:13:02', 3121, NULL, NULL, 'IPAY2023/02/3114', NULL, 'CC', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3138, '2023-02-09 08:19:40', 3122, NULL, NULL, 'IPAY2023/02/3115', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3139, '2023-02-10 05:52:44', 3123, NULL, NULL, 'IPAY2023/02/3116', NULL, 'cash', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3140, '2023-02-10 06:18:49', 3124, NULL, NULL, 'IPAY2023/02/3117', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3141, '2023-02-10 07:25:27', 3125, NULL, NULL, 'IPAY2023/02/3118', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3142, '2023-02-10 09:08:36', 3126, NULL, NULL, 'IPAY2023/02/3119', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3143, '2023-02-10 10:42:07', 3127, NULL, NULL, 'IPAY2023/02/3120', NULL, 'cash', '', '', '', '', '', '', '380.0000', NULL, 2, NULL, 'received', '', '380.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3144, '2023-02-11 02:06:52', 3128, NULL, NULL, 'IPAY2023/02/3121', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3145, '2023-02-11 04:48:14', 3129, NULL, NULL, 'IPAY2023/02/3122', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3146, '2023-02-11 05:50:18', 3130, NULL, NULL, 'IPAY2023/02/3123', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3147, '2023-02-11 06:00:34', 3131, NULL, NULL, 'IPAY2023/02/3124', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3148, '2023-02-11 06:26:49', 3132, NULL, NULL, 'IPAY2023/02/3125', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3149, '2023-02-11 06:27:27', 3133, NULL, NULL, 'IPAY2023/02/3126', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3150, '2023-02-11 07:10:05', 3134, NULL, NULL, 'IPAY2023/02/3127', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3151, '2023-02-11 09:08:30', 3135, NULL, NULL, 'IPAY2023/02/3128', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3152, '2023-02-11 10:09:59', 3136, NULL, NULL, 'IPAY2023/02/3129', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3153, '2023-02-11 10:29:45', 3137, NULL, NULL, 'IPAY2023/02/3130', NULL, 'CC', '', '', '', '', '', '', '3170.0000', NULL, 2, NULL, 'received', '', '3170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3154, '2023-02-11 10:36:11', 3138, NULL, NULL, 'IPAY2023/02/3131', NULL, 'cash', '', '', '', '', '', '', '970.0000', NULL, 2, NULL, 'received', '', '970.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3155, '2023-02-11 10:51:49', 3139, NULL, NULL, 'IPAY2023/02/3132', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3156, '2023-02-12 05:06:51', 3140, NULL, NULL, 'IPAY2023/02/3133', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3157, '2023-02-12 05:28:43', 3141, NULL, NULL, 'IPAY2023/02/3134', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3158, '2023-02-12 05:45:27', 3142, NULL, NULL, 'IPAY2023/02/3135', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3159, '2023-02-12 08:15:19', 3143, NULL, NULL, 'IPAY2023/02/3136', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3160, '2023-02-12 08:24:26', 3144, NULL, NULL, 'IPAY2023/02/3137', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3161, '2023-02-12 08:27:49', 3145, NULL, NULL, 'IPAY2023/02/3138', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3162, '2023-02-12 09:28:35', 3146, NULL, NULL, 'IPAY2023/02/3139', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3163, '2023-02-12 09:30:38', 3147, NULL, NULL, 'IPAY2023/02/3140', NULL, 'CC', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3164, '2023-02-12 09:41:36', 3148, NULL, NULL, 'IPAY2023/02/3141', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3165, '2023-02-12 10:36:22', 3149, NULL, NULL, 'IPAY2023/02/3142', NULL, 'cash', '', '', '', '', '', '', '2200.0000', NULL, 2, NULL, 'received', '', '2200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3166, '2023-02-12 10:56:55', 3150, NULL, NULL, 'IPAY2023/02/3143', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3167, '2023-02-13 01:12:57', 3151, NULL, NULL, 'IPAY2023/02/3144', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3168, '2023-02-13 05:31:25', 3152, NULL, NULL, 'IPAY2023/02/3145', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3169, '2023-02-13 07:48:28', 3153, NULL, NULL, 'IPAY2023/02/3146', NULL, 'cash', '', '', '', '', '', '', '1050.0000', NULL, 2, NULL, 'received', '', '1050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3170, '2023-02-13 09:35:19', 3154, NULL, NULL, 'IPAY2023/02/3147', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3171, '2023-02-14 02:09:19', 3155, NULL, NULL, 'IPAY2023/02/3148', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3172, '2023-02-14 02:37:28', 3156, NULL, NULL, 'IPAY2023/02/3149', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3173, '2023-02-14 03:11:48', 3157, NULL, NULL, 'IPAY2023/02/3150', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3174, '2023-02-14 05:52:14', 3158, NULL, NULL, 'IPAY2023/02/3151', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3175, '2023-02-14 07:57:40', 3159, NULL, NULL, 'IPAY2023/02/3152', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3176, '2023-02-14 08:24:37', 3160, NULL, NULL, 'IPAY2023/02/3153', NULL, 'cash', '', '', '', '', '', '', '860.0000', NULL, 2, NULL, 'received', '', '860.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3177, '2023-02-14 08:50:18', 3161, NULL, NULL, 'IPAY2023/02/3154', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3178, '2023-02-14 09:43:19', 3162, NULL, NULL, 'IPAY2023/02/3155', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3179, '2023-02-15 05:04:51', 3163, NULL, NULL, 'IPAY2023/02/3156', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3180, '2023-02-15 07:16:38', 3164, NULL, NULL, 'IPAY2023/02/3157', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3181, '2023-02-15 08:30:22', 3165, NULL, NULL, 'IPAY2023/02/3158', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3182, '2023-02-15 09:23:08', 3166, NULL, NULL, 'IPAY2023/02/3159', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3183, '2023-02-15 10:06:53', 3167, NULL, NULL, 'IPAY2023/02/3160', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3184, '2023-02-16 01:10:03', 3168, NULL, NULL, 'IPAY2023/02/3161', NULL, 'CC', '', '', '', '', '', '', '3050.0000', NULL, 2, NULL, 'received', '', '3050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3185, '2023-02-16 08:03:47', 3169, NULL, NULL, 'IPAY2023/02/3162', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3186, '2023-02-16 08:21:40', 3170, NULL, NULL, 'IPAY2023/02/3163', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3187, '2023-02-16 09:49:09', 3171, NULL, NULL, 'IPAY2023/02/3164', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3188, '2023-02-17 05:48:37', 3172, NULL, NULL, 'IPAY2023/02/3165', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3189, '2023-02-17 11:18:20', 3173, NULL, NULL, 'IPAY2023/02/3166', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3190, '2023-02-18 07:08:24', 3174, NULL, NULL, 'IPAY2023/02/3167', NULL, 'CC', '', '', '', '', '', '', '12000.0000', NULL, 2, NULL, 'received', '', '12000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3191, '2023-02-18 07:12:40', 3175, NULL, NULL, 'IPAY2023/02/3168', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3192, '2023-02-18 07:15:26', 3176, NULL, NULL, 'IPAY2023/02/3169', NULL, 'CC', '', '', '', '', '', '', '10000.0000', NULL, 2, NULL, 'received', '', '10000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3193, '2023-02-18 07:24:54', 3177, NULL, NULL, 'IPAY2023/02/3170', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3194, '2023-02-18 07:37:06', 3178, NULL, NULL, 'IPAY2023/02/3171', NULL, 'cash', '', '', '', '', '', '', '520.0000', NULL, 2, NULL, 'received', '', '520.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3195, '2023-02-18 08:14:23', 3179, NULL, NULL, 'IPAY2023/02/3172', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3196, '2023-02-18 08:29:28', 3180, NULL, NULL, 'IPAY2023/02/3173', NULL, 'cash', '', '', '', '', '', '', '80.0000', NULL, 2, NULL, 'received', '', '80.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3197, '2023-02-18 08:58:49', 3181, NULL, NULL, 'IPAY2023/02/3174', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3198, '2023-02-18 09:37:45', 3182, NULL, NULL, 'IPAY2023/02/3175', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3199, '2023-02-18 10:34:11', 3183, NULL, NULL, 'IPAY2023/02/3176', NULL, 'cash', '', '', '', '', '', '', '4750.0000', NULL, 2, NULL, 'received', '', '4750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3200, '2023-02-18 10:40:14', 3184, NULL, NULL, 'IPAY2023/02/3177', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3201, '2023-02-18 11:13:54', 3185, NULL, NULL, 'IPAY2023/02/3178', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3202, '2023-02-19 02:12:50', 3186, NULL, NULL, 'IPAY2023/02/3179', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3203, '2023-02-19 05:27:30', 3187, NULL, NULL, 'IPAY2023/02/3180', NULL, 'CC', '', '', '', '', '', '', '7000.0000', NULL, 2, NULL, 'received', '', '7000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3204, '2023-02-19 07:09:05', 3188, NULL, NULL, 'IPAY2023/02/3181', NULL, 'cash', '', '', '', '', '', '', '950.0000', NULL, 2, NULL, 'received', '', '950.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3205, '2023-02-19 08:42:54', 3189, NULL, NULL, 'IPAY2023/02/3182', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3206, '2023-02-19 10:09:57', 3190, NULL, NULL, 'IPAY2023/02/3183', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3207, '2023-02-20 06:14:33', 3191, NULL, NULL, 'IPAY2023/02/3184', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3208, '2023-02-20 07:15:24', 3192, NULL, NULL, 'IPAY2023/02/3185', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3209, '2023-02-20 09:11:54', 3193, NULL, NULL, 'IPAY2023/02/3186', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3210, '2023-02-20 09:12:20', 3194, NULL, NULL, 'IPAY2023/02/3187', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3211, '2023-02-20 09:13:52', 3195, NULL, NULL, 'IPAY2023/02/3188', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3212, '2023-02-20 10:15:20', 3196, NULL, NULL, 'IPAY2023/02/3189', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3213, '2023-02-21 04:04:07', 3197, NULL, NULL, 'IPAY2023/02/3190', NULL, 'cash', '', '', '', '', '', '', '700.0000', NULL, 2, NULL, 'received', '', '700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3214, '2023-02-21 04:36:18', 3198, NULL, NULL, 'IPAY2023/02/3191', NULL, 'cash', '', '', '', '', '', '', '460.0000', NULL, 2, NULL, 'received', '', '460.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3215, '2023-02-21 05:54:39', 3199, NULL, NULL, 'IPAY2023/02/3192', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3216, '2023-02-21 09:43:55', 3200, NULL, NULL, 'IPAY2023/02/3193', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3217, '2023-02-21 10:07:06', 3201, NULL, NULL, 'IPAY2023/02/3194', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3218, '2023-02-21 10:26:05', 3202, NULL, NULL, 'IPAY2023/02/3195', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3219, '2023-02-21 10:49:38', 3203, NULL, NULL, 'IPAY2023/02/3196', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3220, '2023-02-22 02:14:36', 3204, NULL, NULL, 'IPAY2023/02/3197', NULL, 'other', '', '', '', '', '', '', '5100.0000', NULL, 2, NULL, 'received', '', '5100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3221, '2023-02-22 02:18:50', 3205, NULL, NULL, 'IPAY2023/02/3198', NULL, 'cash', '', '', '', '', '', '', '260.0000', NULL, 2, NULL, 'received', '', '260.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3222, '2023-02-22 03:50:07', 3206, NULL, NULL, 'IPAY2023/02/3199', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3223, '2023-02-22 03:50:23', 3207, NULL, NULL, 'IPAY2023/02/3200', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3224, '2023-02-22 04:04:14', 3208, NULL, NULL, 'IPAY2023/02/3201', NULL, 'CC', '', '', '', '', '', '', '5010.0000', NULL, 2, NULL, 'received', '', '5010.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3225, '2023-02-22 06:08:56', 3209, NULL, NULL, 'IPAY2023/02/3202', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3226, '2023-02-22 07:04:45', 3210, NULL, NULL, 'IPAY2023/02/3203', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3227, '2023-02-22 08:05:18', 3211, NULL, NULL, 'IPAY2023/02/3204', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3228, '2023-02-22 08:55:41', 3212, NULL, NULL, 'IPAY2023/02/3205', NULL, 'cash', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3229, '2023-02-22 10:24:27', 3213, NULL, NULL, 'IPAY2023/02/3206', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3230, '2023-02-22 10:25:22', 3214, NULL, NULL, 'IPAY2023/02/3207', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3231, '2023-02-22 10:26:30', 3215, NULL, NULL, 'IPAY2023/02/3208', NULL, 'cash', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3232, '2023-02-22 10:27:19', 3216, NULL, NULL, 'IPAY2023/02/3209', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3233, '2023-02-22 10:27:54', 3217, NULL, NULL, 'IPAY2023/02/3210', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3234, '2023-02-22 10:59:19', 3218, NULL, NULL, 'IPAY2023/02/3211', NULL, 'CC', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3235, '2023-02-22 11:04:11', 3219, NULL, NULL, 'IPAY2023/02/3212', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3236, '2023-02-23 05:37:49', 3220, NULL, NULL, 'IPAY2023/02/3213', NULL, 'cash', '', '', '', '', '', '', '3800.0000', NULL, 2, NULL, 'received', '', '3800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3237, '2023-02-24 01:58:34', 3221, NULL, NULL, 'IPAY2023/02/3214', NULL, 'CC', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3238, '2023-02-24 02:58:29', 3222, NULL, NULL, 'IPAY2023/02/3215', NULL, 'cash', '', '', '', '', '', '', '180.0000', NULL, 2, NULL, 'received', '', '180.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3239, '2023-02-27 01:22:46', 3223, NULL, NULL, 'IPAY2023/02/3216', NULL, 'cash', '', '', '', '', '', '', '2100.0000', NULL, 2, NULL, 'received', '', '2100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3240, '2023-02-27 01:39:26', 3224, NULL, NULL, 'IPAY2023/02/3217', NULL, 'cash', '', '', '', '', '', '', '9890.0000', NULL, 2, NULL, 'received', '', '9890.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3241, '2023-02-27 01:43:06', 3225, NULL, NULL, 'IPAY2023/02/3218', NULL, 'CC', '', '', '', '', '', '', '1100.0000', NULL, 2, NULL, 'received', '', '1100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3242, '2023-02-27 02:12:15', 3226, NULL, NULL, 'IPAY2023/02/3219', NULL, 'cash', '', '', '', '', '', '', '6570.0000', NULL, 2, NULL, 'received', '', '6570.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3243, '2023-02-27 02:21:22', 3227, NULL, NULL, 'IPAY2023/02/3220', NULL, 'CC', '', '', '', '', '', '', '780.0000', NULL, 2, NULL, 'received', '', '780.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3244, '2023-02-27 02:24:47', 3228, NULL, NULL, 'IPAY2023/02/3221', NULL, 'CC', '', '', '', '', '', '', '1450.0000', NULL, 2, NULL, 'received', '', '1450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3245, '2023-02-27 02:41:31', 3229, NULL, NULL, 'IPAY2023/02/3222', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3246, '2023-02-27 03:24:58', 3230, NULL, NULL, 'IPAY2023/02/3223', NULL, 'cash', '', '', '', '', '', '', '170.0000', NULL, 2, NULL, 'received', '', '170.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3247, '2023-02-27 04:16:58', 3231, NULL, NULL, 'IPAY2023/02/3224', NULL, 'cash', '', '', '', '', '', '', '2600.0000', NULL, 2, NULL, 'received', '', '2600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3248, '2023-02-27 06:17:46', 3232, NULL, NULL, 'IPAY2023/02/3225', NULL, 'cash', '', '', '', '', '', '', '3900.0000', NULL, 2, NULL, 'received', '', '3900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3249, '2023-02-27 08:34:22', 3233, NULL, NULL, 'IPAY2023/02/3226', NULL, 'cash', '', '', '', '', '', '', '5700.0000', NULL, 2, NULL, 'received', '', '5700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3250, '2023-02-28 01:07:39', 3234, NULL, NULL, 'IPAY2023/02/3227', NULL, 'cash', '', '', '', '', '', '', '110.0000', NULL, 2, NULL, 'received', '', '110.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3251, '2023-02-28 05:52:06', 3235, NULL, NULL, 'IPAY2023/02/3228', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3252, '2023-02-28 09:03:38', 3236, NULL, NULL, 'IPAY2023/02/3229', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3253, '2023-03-01 02:06:17', 3237, NULL, NULL, 'IPAY2023/02/3230', NULL, 'cash', '', '', '', '', '', '', '650.0000', NULL, 2, NULL, 'received', '', '650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3254, '2023-03-01 02:08:16', 3238, NULL, NULL, 'IPAY2023/02/3231', NULL, 'cash', '', '', '', '', '', '', '1600.0000', NULL, 2, NULL, 'received', '', '1600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3255, '2023-03-01 02:09:35', 3239, NULL, NULL, 'IPAY2023/02/3232', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3256, '2023-03-01 02:26:30', 3240, NULL, NULL, 'IPAY2023/02/3233', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3257, '2023-03-01 06:28:00', 3241, NULL, NULL, 'IPAY2023/02/3234', NULL, 'cash', '', '', '', '', '', '', '6400.0000', NULL, 2, NULL, 'received', '', '6400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3258, '2023-03-01 07:12:20', 3242, NULL, NULL, 'IPAY2023/02/3235', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3259, '2023-03-01 08:41:17', 3243, NULL, NULL, 'IPAY2023/02/3236', NULL, 'CC', '', '', '', '', '', '', '9550.0000', NULL, 2, NULL, 'received', '', '9550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3260, '2023-03-01 09:44:16', 3244, NULL, NULL, 'IPAY2023/02/3237', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3261, '2023-03-01 10:11:14', 3245, NULL, NULL, 'IPAY2023/02/3238', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3262, '2023-03-01 10:26:37', 3246, NULL, NULL, 'IPAY2023/02/3239', NULL, 'CC', '', '', '', '', '', '', '1020.0000', NULL, 2, NULL, 'received', '', '1020.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3263, '2023-03-02 02:59:40', 3247, NULL, NULL, 'IPAY2023/03/3240', NULL, 'cash', '', '', '', '', '', '', '360.0000', NULL, 2, NULL, 'received', '', '360.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3264, '2023-03-03 01:42:54', 3248, NULL, NULL, 'IPAY2023/03/3241', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3265, '2023-03-03 01:53:01', 3249, NULL, NULL, 'IPAY2023/03/3242', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3266, '2023-03-03 02:21:25', 3250, NULL, NULL, 'IPAY2023/03/3243', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3267, '2023-03-03 02:21:38', 3251, NULL, NULL, 'IPAY2023/03/3244', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3268, '2023-03-03 06:31:02', 3252, NULL, NULL, 'IPAY2023/03/3245', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3269, '2023-03-03 06:57:23', 3253, NULL, NULL, 'IPAY2023/03/3246', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3270, '2023-03-04 01:52:17', 3254, NULL, NULL, 'IPAY2023/03/3247', NULL, 'cash', '', '', '', '', '', '', '490.0000', NULL, 2, NULL, 'received', '', '490.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3271, '2023-03-04 03:03:38', 3255, NULL, NULL, 'IPAY2023/03/3248', NULL, 'cash', '', '', '', '', '', '', '310.0000', NULL, 2, NULL, 'received', '', '310.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3272, '2023-03-04 04:22:37', 3256, NULL, NULL, 'IPAY2023/03/3249', NULL, 'CC', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3273, '2023-03-04 06:19:03', 3257, NULL, NULL, 'IPAY2023/03/3250', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3274, '2023-03-04 07:51:18', 3258, NULL, NULL, 'IPAY2023/03/3251', NULL, 'cash', '', '', '', '', '', '', '13230.0000', NULL, 2, NULL, 'received', '', '13230.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3275, '2023-03-04 08:24:22', 3259, NULL, NULL, 'IPAY2023/03/3252', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3276, '2023-03-04 09:24:58', 3260, NULL, NULL, 'IPAY2023/03/3253', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3277, '2023-03-04 09:32:48', 3261, NULL, NULL, 'IPAY2023/03/3254', NULL, 'cash', '', '', '', '', '', '', '810.0000', NULL, 2, NULL, 'received', '', '810.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3278, '2023-03-04 10:07:33', 3262, NULL, NULL, 'IPAY2023/03/3255', NULL, 'cash', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3279, '2023-03-04 10:26:28', 3263, NULL, NULL, 'IPAY2023/03/3256', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3280, '2023-03-04 10:59:55', 3264, NULL, NULL, 'IPAY2023/03/3257', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3281, '2023-03-05 05:02:21', 3265, NULL, NULL, 'IPAY2023/03/3258', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3282, '2023-03-05 05:05:32', 3266, NULL, NULL, 'IPAY2023/03/3259', NULL, 'CC', '', '', '', '', '', '', '9000.0000', NULL, 2, NULL, 'received', '', '9000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3283, '2023-03-05 06:34:38', 3267, NULL, NULL, 'IPAY2023/03/3260', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3284, '2023-03-05 08:35:18', 3268, NULL, NULL, 'IPAY2023/03/3261', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3285, '2023-03-05 09:40:45', 3269, NULL, NULL, 'IPAY2023/03/3262', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3286, '2023-03-05 09:55:20', 3270, NULL, NULL, 'IPAY2023/03/3263', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3290, '2023-03-06 04:41:26', 3273, NULL, NULL, 'IPAY2023/03/3267', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3289, '2023-03-06 03:39:42', 3272, NULL, NULL, 'IPAY2023/03/3266', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3291, '2023-03-06 05:40:21', 3274, NULL, NULL, 'IPAY2023/03/3268', NULL, 'cash', '', '', '', '', '', '', '4600.0000', NULL, 2, NULL, 'received', '', '4600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3292, '2023-03-06 06:29:37', 3275, NULL, NULL, 'IPAY2023/03/3269', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3293, '2023-03-06 07:34:11', 3276, NULL, NULL, 'IPAY2023/03/3270', NULL, 'cash', '', '', '', '', '', '', '10500.0000', NULL, 2, NULL, 'received', '', '10500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3294, '2023-03-07 00:55:18', 3277, NULL, NULL, 'IPAY2023/03/3271', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3295, '2023-03-07 07:40:13', 3278, NULL, NULL, 'IPAY2023/03/3272', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3296, '2023-03-07 08:17:55', 3279, NULL, NULL, 'IPAY2023/03/3273', NULL, 'cash', '', '', '', '', '', '', '1250.0000', NULL, 2, NULL, 'received', '', '1250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3297, '2023-03-07 08:21:51', 3280, NULL, NULL, 'IPAY2023/03/3274', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3298, '2023-03-07 08:26:13', 3281, NULL, NULL, 'IPAY2023/03/3275', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3299, '2023-03-07 08:40:22', 3282, NULL, NULL, 'IPAY2023/03/3276', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3300, '2023-03-08 02:20:52', 3283, NULL, NULL, 'IPAY2023/03/3277', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3301, '2023-03-08 02:41:53', 3284, NULL, NULL, 'IPAY2023/03/3278', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3302, '2023-03-08 05:01:32', 3285, NULL, NULL, 'IPAY2023/03/3279', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3303, '2023-03-08 06:53:25', 3286, NULL, NULL, 'IPAY2023/03/3280', NULL, 'other', '', '', '', '', '', '', '2650.0000', NULL, 2, NULL, 'received', '', '2650.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3304, '2023-03-08 08:25:08', 3287, NULL, NULL, 'IPAY2023/03/3281', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3305, '2023-03-08 10:40:03', 3288, NULL, NULL, 'IPAY2023/03/3282', NULL, 'cash', '', '', '', '', '', '', '5090.0000', NULL, 2, NULL, 'received', '', '5090.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3306, '2023-03-09 01:54:26', 3289, NULL, NULL, 'IPAY2023/03/3283', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3307, '2023-03-09 06:50:58', 3290, NULL, NULL, 'IPAY2023/03/3284', NULL, 'CC', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3308, '2023-03-09 09:33:53', 3291, NULL, NULL, 'IPAY2023/03/3285', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3309, '2023-03-10 02:17:34', 3292, NULL, NULL, 'IPAY2023/03/3286', NULL, 'cash', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3310, '2023-03-10 07:10:10', 3293, NULL, NULL, 'IPAY2023/03/3287', NULL, 'cash', '', '', '', '', '', '', '600.0000', NULL, 2, NULL, 'received', '', '600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3311, '2023-03-10 08:17:04', 3294, NULL, NULL, 'IPAY2023/03/3288', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3312, '2023-03-11 02:05:19', 3295, NULL, NULL, 'IPAY2023/03/3289', NULL, 'cash', '', '', '', '', '', '', '1700.0000', NULL, 2, NULL, 'received', '', '1700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3313, '2023-03-11 02:50:46', 3296, NULL, NULL, 'IPAY2023/03/3290', NULL, 'cash', '', '', '', '', '', '', '210.0000', NULL, 2, NULL, 'received', '', '210.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3314, '2023-03-11 03:17:10', 3297, NULL, NULL, 'IPAY2023/03/3291', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3315, '2023-03-11 07:21:20', 3298, NULL, NULL, 'IPAY2023/03/3292', NULL, 'cash', '', '', '', '', '', '', '980.0000', NULL, 2, NULL, 'received', '', '980.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3316, '2023-03-11 07:46:07', 3299, NULL, NULL, 'IPAY2023/03/3293', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3317, '2023-03-11 08:30:31', 3300, NULL, NULL, 'IPAY2023/03/3294', NULL, 'cash', '', '', '', '', '', '', '440.0000', NULL, 2, NULL, 'received', '', '440.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3318, '2023-03-11 08:43:51', 3301, NULL, NULL, 'IPAY2023/03/3295', NULL, 'cash', '', '', '', '', '', '', '2400.0000', NULL, 2, NULL, 'received', '', '2400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3319, '2023-03-11 09:19:21', 3302, NULL, NULL, 'IPAY2023/03/3296', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3320, '2023-03-11 09:50:46', 3303, NULL, NULL, 'IPAY2023/03/3297', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3321, '2023-03-11 09:58:19', 3304, NULL, NULL, 'IPAY2023/03/3298', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3322, '2023-03-11 10:25:49', 3305, NULL, NULL, 'IPAY2023/03/3299', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3323, '2023-03-12 01:25:24', 3306, NULL, NULL, 'IPAY2023/03/3300', NULL, 'cash', '', '', '', '', '', '', '550.0000', NULL, 2, NULL, 'received', '', '550.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3324, '2023-03-12 03:11:17', 3307, NULL, NULL, 'IPAY2023/03/3301', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3325, '2023-03-12 07:04:18', 3308, NULL, NULL, 'IPAY2023/03/3302', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3326, '2023-03-12 08:01:08', 3309, NULL, NULL, 'IPAY2023/03/3303', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3327, '2023-03-12 09:13:02', 3310, NULL, NULL, 'IPAY2023/03/3304', NULL, 'cash', '', '', '', '', '', '', '2000.0000', NULL, 2, NULL, 'received', '', '2000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3328, '2023-03-12 09:46:25', 3311, NULL, NULL, 'IPAY2023/03/3305', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3329, '2023-03-12 09:54:09', 3312, NULL, NULL, 'IPAY2023/03/3306', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3330, '2023-03-13 02:09:10', 3313, NULL, NULL, 'IPAY2023/03/3307', NULL, 'cash', '', '', '', '', '', '', '450.0000', NULL, 2, NULL, 'received', '', '450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3331, '2023-03-13 03:27:39', 3314, NULL, NULL, 'IPAY2023/03/3308', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3332, '2023-03-13 08:59:51', 3315, NULL, NULL, 'IPAY2023/03/3309', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3333, '2023-03-14 01:32:07', 3316, NULL, NULL, 'IPAY2023/03/3310', NULL, 'cash', '', '', '', '', '', '', '3500.0000', NULL, 2, NULL, 'received', '', '3500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3334, '2023-03-14 03:12:19', 3317, NULL, NULL, 'IPAY2023/03/3311', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3338, '2023-03-14 06:09:14', 3321, NULL, NULL, 'IPAY2023/03/3315', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3336, '2023-03-14 04:26:11', 3319, NULL, NULL, 'IPAY2023/03/3313', NULL, 'cash', '', '', '', '', '', '', '900.0000', NULL, 2, NULL, 'received', '', '900.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3339, '2023-03-14 06:35:33', 3322, NULL, NULL, 'IPAY2023/03/3316', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3340, '2023-03-14 06:42:05', 3323, NULL, NULL, 'IPAY2023/03/3317', NULL, 'CC', '', '', '', '', '', '', '1300.0000', NULL, 2, NULL, 'received', '', '1300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3341, '2023-03-14 07:10:13', 3324, NULL, NULL, 'IPAY2023/03/3318', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3342, '2023-03-15 02:51:55', 3325, NULL, NULL, 'IPAY2023/03/3319', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3343, '2023-03-15 04:29:37', 3326, NULL, NULL, 'IPAY2023/03/3320', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3344, '2023-03-15 05:20:10', 3327, NULL, NULL, 'IPAY2023/03/3321', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3345, '2023-03-15 06:16:47', 3328, NULL, NULL, 'IPAY2023/03/3322', NULL, 'cash', '', '', '', '', '', '', '1350.0000', NULL, 2, NULL, 'received', '', '1350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3346, '2023-03-15 09:28:23', 3329, NULL, NULL, 'IPAY2023/03/3323', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3347, '2023-03-24 01:33:30', 3330, NULL, NULL, 'IPAY2023/03/3324', NULL, 'CC', '', '', '', '', '', '', '9000.0000', NULL, 2, NULL, 'received', '', '9000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3348, '2023-03-24 01:40:26', 3331, NULL, NULL, 'IPAY2023/03/3325', NULL, 'cash', '', '', '', '', '', '', '1580.0000', NULL, 2, NULL, 'received', '', '1580.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3349, '2023-03-24 01:49:58', 3332, NULL, NULL, 'IPAY2023/03/3326', NULL, 'cash', '', '', '', '', '', '', '4750.0000', NULL, 2, NULL, 'received', '', '4750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3350, '2023-03-24 01:51:48', 3333, NULL, NULL, 'IPAY2023/03/3327', NULL, 'other', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3351, '2023-03-24 01:59:22', 3334, NULL, NULL, 'IPAY2023/03/3328', NULL, 'CC', '', '', '', '', '', '', '8740.0000', NULL, 2, NULL, 'received', '', '8740.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3352, '2023-03-24 02:02:27', 3335, NULL, NULL, 'IPAY2023/03/3329', NULL, 'cash', '', '', '', '', '', '', '7250.0000', NULL, 2, NULL, 'received', '', '7250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3353, '2023-03-24 02:02:54', 3336, NULL, NULL, 'IPAY2023/03/3330', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3355, '2023-03-24 09:04:15', 3338, NULL, NULL, 'IPAY2023/03/3332', NULL, 'cash', '', '', '', '', '', '', '5600.0000', NULL, 2, NULL, 'received', '', '5600.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3356, '2023-03-24 09:22:46', 3339, NULL, NULL, 'IPAY2023/03/3333', NULL, 'CC', '', '', '', '', '', '', '3450.0000', NULL, 2, NULL, 'received', '', '3450.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3357, '2023-03-24 09:24:16', 3340, NULL, NULL, 'IPAY2023/03/3334', NULL, 'CC', '', '', '', '', '', '', '2050.0000', NULL, 2, NULL, 'received', '', '2050.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3358, '2023-03-24 09:26:37', 3341, NULL, NULL, 'IPAY2023/03/3335', NULL, 'CC', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3359, '2023-03-24 09:29:19', 3342, NULL, NULL, 'IPAY2023/03/3336', NULL, 'cash', '', '', '', '', '', '', '1840.0000', NULL, 2, NULL, 'received', '', '1840.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3360, '2023-03-24 09:32:24', 3343, NULL, NULL, 'IPAY2023/03/3337', NULL, 'cash', '', '', '', '', '', '', '270.0000', NULL, 2, NULL, 'received', '', '270.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3361, '2023-03-24 09:33:34', 3344, NULL, NULL, 'IPAY2023/03/3338', NULL, 'CC', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3362, '2023-03-24 09:45:45', 3345, NULL, NULL, 'IPAY2023/03/3339', NULL, 'cash', '', '', '', '', '', '', '5970.0000', NULL, 2, NULL, 'received', '', '5970.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3363, '2023-03-24 09:47:40', 3346, NULL, NULL, 'IPAY2023/03/3340', NULL, 'CC', '', '', '', '', '', '', '7000.0000', NULL, 2, NULL, 'received', '', '7000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3364, '2023-03-24 09:48:51', 3347, NULL, NULL, 'IPAY2023/03/3341', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3365, '2023-03-24 09:53:56', 3348, NULL, NULL, 'IPAY2023/03/3342', NULL, 'CC', '', '', '', '', '', '', '7150.0000', NULL, 2, NULL, 'received', '', '7150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3366, '2023-03-24 09:55:36', 3349, NULL, NULL, 'IPAY2023/03/3343', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3369, '2023-03-24 10:01:07', 3352, NULL, NULL, 'IPAY2023/03/3346', NULL, 'cash', '', '', '', '', '', '', '3800.0000', NULL, 2, NULL, 'received', '', '3800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3368, '2023-03-24 09:58:14', 3351, NULL, NULL, 'IPAY2023/03/3345', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3370, '2023-03-24 10:04:23', 3353, NULL, NULL, 'IPAY2023/03/3347', NULL, 'cash', '', '', '', '', '', '', '8850.0000', NULL, 2, NULL, 'received', '', '8850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3373, '2023-03-25 10:01:34', 3356, NULL, NULL, 'IPAY2023/03/3350', NULL, 'CC', '', '', '', '', '', '', '610.0000', NULL, 2, NULL, 'received', '', '610.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3372, '2023-03-25 08:13:52', 3355, NULL, NULL, 'IPAY2023/03/3349', NULL, 'cash', '', '', '', '', '', '', '1000.0000', NULL, 2, NULL, 'received', '', '1000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3374, '2023-03-26 02:22:12', 3357, NULL, NULL, 'IPAY2023/03/3351', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3375, '2023-03-26 04:18:24', 3358, NULL, NULL, 'IPAY2023/03/3352', NULL, 'cash', '', '', '', '', '', '', '1150.0000', NULL, 2, NULL, 'received', '', '1150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3376, '2023-03-26 05:53:41', 3359, NULL, NULL, 'IPAY2023/03/3353', NULL, 'cash', '', '', '', '', '', '', '60.0000', NULL, 2, NULL, 'received', '', '60.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3377, '2023-03-26 10:01:52', 3360, NULL, NULL, 'IPAY2023/03/3354', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3378, '2023-03-26 10:26:59', 3361, NULL, NULL, 'IPAY2023/03/3355', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3379, '2023-03-27 00:36:46', 3362, NULL, NULL, 'IPAY2023/03/3356', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3380, '2023-03-27 01:04:41', 3363, NULL, NULL, 'IPAY2023/03/3357', NULL, 'cash', '', '', '', '', '', '', '4000.0000', NULL, 2, NULL, 'received', '', '4000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3381, '2023-03-27 02:22:14', 3364, NULL, NULL, 'IPAY2023/03/3358', NULL, 'CC', '', '', '', '', '', '', '4250.0000', NULL, 2, NULL, 'received', '', '4250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3382, '2023-03-27 02:42:29', 3365, NULL, NULL, 'IPAY2023/03/3359', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3383, '2023-03-27 03:40:12', 3366, NULL, NULL, 'IPAY2023/03/3360', NULL, 'cash', '', '', '', '', '', '', '400.0000', NULL, 2, NULL, 'received', '', '400.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3384, '2023-03-27 03:51:35', 3367, NULL, NULL, 'IPAY2023/03/3361', NULL, 'cash', '', '', '', '', '', '', '300.0000', NULL, 2, NULL, 'received', '', '300.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3385, '2023-03-27 04:43:33', 3368, NULL, NULL, 'IPAY2023/03/3362', NULL, 'cash', '', '', '', '', '', '', '500.0000', NULL, 2, NULL, 'received', '', '500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3386, '2023-03-27 05:28:43', 3369, NULL, NULL, 'IPAY2023/03/3363', NULL, 'CC', '', '', '', '', '', '', '3100.0000', NULL, 2, NULL, 'received', '', '3100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3387, '2023-03-27 06:12:00', 3370, NULL, NULL, 'IPAY2023/03/3364', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3388, '2023-03-27 06:15:10', 3371, NULL, NULL, 'IPAY2023/03/3365', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3389, '2023-03-27 06:22:45', 3372, NULL, NULL, 'IPAY2023/03/3366', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3390, '2023-03-27 07:57:24', 3373, NULL, NULL, 'IPAY2023/03/3367', NULL, 'cash', '', '', '', '', '', '', '750.0000', NULL, 2, NULL, 'received', '', '750.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3391, '2023-03-28 01:27:06', 3374, NULL, NULL, 'IPAY2023/03/3368', NULL, 'cash', '', '', '', '', '', '', '90.0000', NULL, 2, NULL, 'received', '', '90.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3392, '2023-03-28 01:39:04', 3375, NULL, NULL, 'IPAY2023/03/3369', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3393, '2023-03-28 04:14:09', 3376, NULL, NULL, 'IPAY2023/03/3370', NULL, 'cash', '', '', '', '', '', '', '850.0000', NULL, 2, NULL, 'received', '', '850.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3394, '2023-03-28 04:14:51', 3377, NULL, NULL, 'IPAY2023/03/3371', NULL, 'CC', '', '', '', '', '', '', '1500.0000', NULL, 2, NULL, 'received', '', '1500.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3395, '2023-03-28 04:30:45', 3378, NULL, NULL, 'IPAY2023/03/3372', NULL, 'cash', '', '', '', '', '', '', '100.0000', NULL, 2, NULL, 'received', '', '100.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3396, '2023-03-28 05:30:55', 3379, NULL, NULL, 'IPAY2023/03/3373', NULL, 'cash', '', '', '', '', '', '', '150.0000', NULL, 2, NULL, 'received', '', '150.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3397, '2023-03-28 06:34:44', 3380, NULL, NULL, 'IPAY2023/03/3374', NULL, 'cash', '', '', '', '', '', '', '340.0000', NULL, 2, NULL, 'received', '', '340.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3398, '2023-03-29 02:35:09', 3381, NULL, NULL, 'IPAY2023/03/3375', NULL, 'cash', '', '', '', '', '', '', '250.0000', NULL, 2, NULL, 'received', '', '250.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3399, '2023-03-29 03:46:37', 3382, NULL, NULL, 'IPAY2023/03/3376', NULL, 'cash', '', '', '', '', '', '', '2700.0000', NULL, 2, NULL, 'received', '', '2700.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3400, '2023-03-29 04:24:33', 3383, NULL, NULL, 'IPAY2023/03/3377', NULL, 'cash', '', '', '', '', '', '', '1540.0000', NULL, 2, NULL, 'received', '', '1540.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3401, '2023-03-29 05:40:54', 3384, NULL, NULL, 'IPAY2023/03/3378', NULL, 'cash', '', '', '', '', '', '', '200.0000', NULL, 2, NULL, 'received', '', '200.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3402, '2023-03-29 10:16:32', 3385, NULL, NULL, 'IPAY2023/03/3379', NULL, 'cash', '', '', '', '', '', '', '800.0000', NULL, 2, NULL, 'received', '', '800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3403, '2023-03-29 10:40:41', 3386, NULL, NULL, 'IPAY2023/03/3380', NULL, 'other', '', '', '', '', '', '', '1800.0000', NULL, 2, NULL, 'received', '', '1800.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3404, '2023-03-30 02:30:22', 3387, NULL, NULL, 'IPAY2023/03/3381', NULL, 'cash', '', '', '', '', '', '', '120.0000', NULL, 2, NULL, 'received', '', '120.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3405, '2023-03-30 05:00:38', 3388, NULL, NULL, 'IPAY2023/03/3382', NULL, 'cash', '', '', '', '', '', '', '3000.0000', NULL, 2, NULL, 'received', '', '3000.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3406, '2023-03-30 05:16:55', 3389, NULL, NULL, 'IPAY2023/03/3383', NULL, 'CC', '', '', '', '', '', '', '1330.0000', NULL, 2, NULL, 'received', '', '1330.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3407, '2023-03-30 09:39:28', 3390, NULL, NULL, 'IPAY2023/03/3384', NULL, 'cash', '', '', '', '', '', '', '50.0000', NULL, 2, NULL, 'received', '', '50.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3408, '2023-03-31 02:25:11', 3391, NULL, NULL, 'IPAY2023/03/3385', NULL, 'cash', '', '', '', '', '', '', '350.0000', NULL, 2, NULL, 'received', '', '350.0000', '0.0000', NULL);
INSERT INTO `sma_payments` (`id`, `date`, `sale_id`, `return_id`, `purchase_id`, `reference_no`, `transaction_id`, `paid_by`, `cheque_no`, `cc_no`, `cc_holder`, `cc_month`, `cc_year`, `cc_type`, `amount`, `currency`, `created_by`, `attachment`, `type`, `note`, `pos_paid`, `pos_balance`, `approval_code`) VALUES (3409, '2023-03-31 05:14:49', 3392, NULL, NULL, 'IPAY2023/03/3386', NULL, 'cash', '', '', '', '', '', '', '160.0000', NULL, 2, NULL, 'received', '', '160.0000', '0.0000', NULL);


#
# TABLE STRUCTURE FOR: sma_paypal
#

DROP TABLE IF EXISTS `sma_paypal`;

CREATE TABLE `sma_paypal` (
  `id` int(11) NOT NULL,
  `active` tinyint(4) NOT NULL,
  `account_email` varchar(255) NOT NULL,
  `paypal_currency` varchar(3) NOT NULL DEFAULT 'USD',
  `fixed_charges` decimal(25,4) NOT NULL DEFAULT 2.0000,
  `extra_charges_my` decimal(25,4) NOT NULL DEFAULT 3.9000,
  `extra_charges_other` decimal(25,4) NOT NULL DEFAULT 4.4000,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_paypal` (`id`, `active`, `account_email`, `paypal_currency`, `fixed_charges`, `extra_charges_my`, `extra_charges_other`) VALUES (1, 1, 'mypaypal@paypal.com', 'USD', '0.0000', '0.0000', '0.0000');


#
# TABLE STRUCTURE FOR: sma_permissions
#

DROP TABLE IF EXISTS `sma_permissions`;

CREATE TABLE `sma_permissions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group_id` int(11) NOT NULL,
  `products-index` tinyint(1) DEFAULT 0,
  `products-add` tinyint(1) DEFAULT 0,
  `products-edit` tinyint(1) DEFAULT 0,
  `products-delete` tinyint(1) DEFAULT 0,
  `products-cost` tinyint(1) DEFAULT 0,
  `products-price` tinyint(1) DEFAULT 0,
  `quotes-index` tinyint(1) DEFAULT 0,
  `quotes-add` tinyint(1) DEFAULT 0,
  `quotes-edit` tinyint(1) DEFAULT 0,
  `quotes-pdf` tinyint(1) DEFAULT 0,
  `quotes-email` tinyint(1) DEFAULT 0,
  `quotes-delete` tinyint(1) DEFAULT 0,
  `sales-index` tinyint(1) DEFAULT 0,
  `sales-add` tinyint(1) DEFAULT 0,
  `sales-edit` tinyint(1) DEFAULT 0,
  `sales-pdf` tinyint(1) DEFAULT 0,
  `sales-email` tinyint(1) DEFAULT 0,
  `sales-delete` tinyint(1) DEFAULT 0,
  `purchases-index` tinyint(1) DEFAULT 0,
  `purchases-add` tinyint(1) DEFAULT 0,
  `purchases-edit` tinyint(1) DEFAULT 0,
  `purchases-pdf` tinyint(1) DEFAULT 0,
  `purchases-email` tinyint(1) DEFAULT 0,
  `purchases-delete` tinyint(1) DEFAULT 0,
  `transfers-index` tinyint(1) DEFAULT 0,
  `transfers-add` tinyint(1) DEFAULT 0,
  `transfers-edit` tinyint(1) DEFAULT 0,
  `transfers-pdf` tinyint(1) DEFAULT 0,
  `transfers-email` tinyint(1) DEFAULT 0,
  `transfers-delete` tinyint(1) DEFAULT 0,
  `customers-index` tinyint(1) DEFAULT 0,
  `customers-add` tinyint(1) DEFAULT 0,
  `customers-edit` tinyint(1) DEFAULT 0,
  `customers-delete` tinyint(1) DEFAULT 0,
  `suppliers-index` tinyint(1) DEFAULT 0,
  `suppliers-add` tinyint(1) DEFAULT 0,
  `suppliers-edit` tinyint(1) DEFAULT 0,
  `suppliers-delete` tinyint(1) DEFAULT 0,
  `sales-deliveries` tinyint(1) DEFAULT 0,
  `sales-add_delivery` tinyint(1) DEFAULT 0,
  `sales-edit_delivery` tinyint(1) DEFAULT 0,
  `sales-delete_delivery` tinyint(1) DEFAULT 0,
  `sales-email_delivery` tinyint(1) DEFAULT 0,
  `sales-pdf_delivery` tinyint(1) DEFAULT 0,
  `sales-gift_cards` tinyint(1) DEFAULT 0,
  `sales-add_gift_card` tinyint(1) DEFAULT 0,
  `sales-edit_gift_card` tinyint(1) DEFAULT 0,
  `sales-delete_gift_card` tinyint(1) DEFAULT 0,
  `pos-index` tinyint(1) DEFAULT 0,
  `sales-return_sales` tinyint(1) DEFAULT 0,
  `reports-index` tinyint(1) DEFAULT 0,
  `reports-warehouse_stock` tinyint(1) DEFAULT 0,
  `reports-quantity_alerts` tinyint(1) DEFAULT 0,
  `reports-expiry_alerts` tinyint(1) DEFAULT 0,
  `reports-products` tinyint(1) DEFAULT 0,
  `reports-daily_sales` tinyint(1) DEFAULT 0,
  `reports-monthly_sales` tinyint(1) DEFAULT 0,
  `reports-sales` tinyint(1) DEFAULT 0,
  `reports-payments` tinyint(1) DEFAULT 0,
  `reports-purchases` tinyint(1) DEFAULT 0,
  `reports-profit_loss` tinyint(1) DEFAULT 0,
  `reports-customers` tinyint(1) DEFAULT 0,
  `reports-suppliers` tinyint(1) DEFAULT 0,
  `reports-staff` tinyint(1) DEFAULT 0,
  `reports-register` tinyint(1) DEFAULT 0,
  `sales-payments` tinyint(1) DEFAULT 0,
  `purchases-payments` tinyint(1) DEFAULT 0,
  `purchases-expenses` tinyint(1) DEFAULT 0,
  `products-adjustments` tinyint(1) NOT NULL DEFAULT 0,
  `bulk_actions` tinyint(1) NOT NULL DEFAULT 0,
  `customers-deposits` tinyint(1) NOT NULL DEFAULT 0,
  `customers-delete_deposit` tinyint(1) NOT NULL DEFAULT 0,
  `products-barcode` tinyint(1) NOT NULL DEFAULT 0,
  `purchases-return_purchases` tinyint(1) NOT NULL DEFAULT 0,
  `reports-expenses` tinyint(1) NOT NULL DEFAULT 0,
  `reports-daily_purchases` tinyint(1) DEFAULT 0,
  `reports-monthly_purchases` tinyint(1) DEFAULT 0,
  `products-stock_count` tinyint(1) DEFAULT 0,
  `edit_price` tinyint(1) DEFAULT 0,
  `returns-index` tinyint(1) DEFAULT 0,
  `returns-add` tinyint(1) DEFAULT 0,
  `returns-edit` tinyint(1) DEFAULT 0,
  `returns-delete` tinyint(1) DEFAULT 0,
  `returns-email` tinyint(1) DEFAULT 0,
  `returns-pdf` tinyint(1) DEFAULT 0,
  `reports-tax` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_permissions` (`id`, `group_id`, `products-index`, `products-add`, `products-edit`, `products-delete`, `products-cost`, `products-price`, `quotes-index`, `quotes-add`, `quotes-edit`, `quotes-pdf`, `quotes-email`, `quotes-delete`, `sales-index`, `sales-add`, `sales-edit`, `sales-pdf`, `sales-email`, `sales-delete`, `purchases-index`, `purchases-add`, `purchases-edit`, `purchases-pdf`, `purchases-email`, `purchases-delete`, `transfers-index`, `transfers-add`, `transfers-edit`, `transfers-pdf`, `transfers-email`, `transfers-delete`, `customers-index`, `customers-add`, `customers-edit`, `customers-delete`, `suppliers-index`, `suppliers-add`, `suppliers-edit`, `suppliers-delete`, `sales-deliveries`, `sales-add_delivery`, `sales-edit_delivery`, `sales-delete_delivery`, `sales-email_delivery`, `sales-pdf_delivery`, `sales-gift_cards`, `sales-add_gift_card`, `sales-edit_gift_card`, `sales-delete_gift_card`, `pos-index`, `sales-return_sales`, `reports-index`, `reports-warehouse_stock`, `reports-quantity_alerts`, `reports-expiry_alerts`, `reports-products`, `reports-daily_sales`, `reports-monthly_sales`, `reports-sales`, `reports-payments`, `reports-purchases`, `reports-profit_loss`, `reports-customers`, `reports-suppliers`, `reports-staff`, `reports-register`, `sales-payments`, `purchases-payments`, `purchases-expenses`, `products-adjustments`, `bulk_actions`, `customers-deposits`, `customers-delete_deposit`, `products-barcode`, `purchases-return_purchases`, `reports-expenses`, `reports-daily_purchases`, `reports-monthly_purchases`, `products-stock_count`, `edit_price`, `returns-index`, `returns-add`, `returns-edit`, `returns-delete`, `returns-email`, `returns-pdf`, `reports-tax`) VALUES (1, 5, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);


#
# TABLE STRUCTURE FOR: sma_pos_register
#

DROP TABLE IF EXISTS `sma_pos_register`;

CREATE TABLE `sma_pos_register` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `user_id` int(11) NOT NULL,
  `cash_in_hand` decimal(25,4) NOT NULL,
  `status` varchar(10) NOT NULL,
  `total_cash` decimal(25,4) DEFAULT NULL,
  `total_cheques` int(11) DEFAULT NULL,
  `total_cc_slips` int(11) DEFAULT NULL,
  `total_cash_submitted` decimal(25,4) DEFAULT NULL,
  `total_cheques_submitted` int(11) DEFAULT NULL,
  `total_cc_slips_submitted` int(11) DEFAULT NULL,
  `note` text DEFAULT NULL,
  `closed_at` timestamp NULL DEFAULT NULL,
  `transfer_opened_bills` varchar(50) DEFAULT NULL,
  `closed_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=386 DEFAULT CHARSET=utf8;

INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (1, '2021-12-16 12:35:21', 1, '100.0000', 'close', '100.0000', 0, 0, '100.0000', 0, 0, '', '2021-12-17 04:21:48', NULL, 1);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (2, '2021-12-17 04:22:00', 1, '100.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (3, '2022-02-20 13:22:01', 2, '100.0000', 'close', '1290.0000', 0, 0, '1290.0000', 0, 0, '', '2022-02-20 13:28:38', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (4, '2022-02-20 13:29:36', 2, '1200.0000', 'close', '46451.0000', 0, 1, '46451.0000', 0, 1, '', '2022-03-17 03:35:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (5, '2022-02-24 15:00:11', 5, '0.0000', 'close', '3.0000', 0, 0, '3.0000', 0, 0, '', '2022-03-15 09:04:46', NULL, 5);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (6, '2022-02-24 15:06:01', 4, '0.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (7, '2022-03-15 09:05:07', 5, '1400.0000', 'close', '4150.0000', 0, 0, '4150.0000', 0, 0, '', '2022-03-15 09:07:17', NULL, 5);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (8, '2022-03-15 09:07:29', 5, '100.0000', 'close', '500.0000', 0, 0, '500.0000', 0, 0, '', '2022-03-15 09:08:05', NULL, 5);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (9, '2022-03-17 03:36:23', 2, '1440.0000', 'close', '8640.0000', 0, 1, '8640.0000', 0, 1, '', '2022-03-18 05:18:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (10, '2022-03-17 04:15:32', 5, '100.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (11, '2022-03-18 05:18:50', 2, '2780.0000', 'close', '16700.0000', 0, 3, '16700.0000', 0, 3, '', '2022-03-18 23:29:14', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (12, '2022-03-18 23:30:21', 2, '2180.0000', 'close', '23030.0000', 0, 3, '23030.0000', 0, 3, '', '2022-03-19 23:25:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (13, '2022-03-19 23:27:33', 2, '480.0000', 'close', '5830.0000', 0, 7, '5830.0000', 0, 7, '', '2022-03-20 10:36:22', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (14, '2022-03-20 23:04:24', 2, '780.0000', 'close', '7923.0000', 0, 0, '7923.0000', 0, 0, '', '2022-03-21 10:09:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (15, '2022-03-21 23:18:13', 2, '1840.0000', 'close', '6690.0000', 0, 0, '6690.0000', 0, 0, '', '2022-03-22 23:56:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (16, '2022-03-22 23:57:52', 2, '9340.0000', 'close', '20750.0000', 0, 1, '20750.0000', 0, 1, '', '2022-03-23 23:40:24', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (17, '2022-03-23 23:41:04', 2, '5050.0000', 'close', '9600.0000', 0, 0, '9600.0000', 0, 0, '', '2022-03-25 00:04:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (18, '2022-03-25 00:04:25', 2, '70.0000', 'close', '5200.0000', 0, 6, '5200.0000', 0, 6, '', '2022-03-25 23:40:43', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (19, '2022-03-25 23:41:08', 2, '1620.0000', 'close', '15830.0000', 0, 5, '15830.0000', 0, 5, '', '2022-03-26 23:24:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (20, '2022-03-26 23:25:03', 2, '330.0000', 'close', '6120.0000', 0, 3, '6120.0000', 0, 3, '', '2022-03-27 23:56:42', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (21, '2022-03-27 23:57:12', 2, '500.0000', 'close', '3900.0000', 0, 1, '3900.0000', 0, 1, '', '2022-03-28 23:48:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (22, '2022-03-28 23:49:42', 2, '3900.0000', 'close', '14190.0000', 0, 4, '14190.0000', 0, 4, '', '2022-03-30 01:06:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (23, '2022-03-30 01:07:35', 2, '1140.0000', 'close', '10610.0000', 0, 0, '10610.0000', 0, 0, '', '2022-03-31 00:27:45', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (24, '2022-03-31 00:28:05', 2, '3110.0000', 'close', '3390.0000', 0, 1, '3390.0000', 0, 1, '', '2022-04-01 00:39:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (25, '2022-04-01 00:40:59', 2, '3290.0000', 'close', '12820.0000', 0, 2, '12820.0000', 0, 2, '', '2022-04-01 10:02:47', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (26, '2022-04-01 10:03:09', 2, '0.0000', 'close', '42480.0000', 0, 3, '42480.0000', 0, 3, '', '2022-04-02 23:06:47', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (27, '2022-04-02 23:07:03', 2, '0.0000', 'close', '9350.0000', 0, 3, '9350.0000', 0, 3, '', '2022-04-03 23:49:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (28, '2022-04-03 23:49:35', 2, '2350.0000', 'close', '3600.0000', 0, 2, '3600.0000', 0, 2, '', '2022-04-04 23:50:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (29, '2022-04-04 23:50:35', 2, '9250.0000', 'close', '15240.0000', 0, 0, '15240.0000', 0, 0, '', '2022-04-05 10:01:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (30, '2022-04-05 10:03:26', 2, '15040.0000', 'close', '24440.0000', 0, 3, '24440.0000', 0, 3, '', '2022-04-06 10:22:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (31, '2022-04-06 10:23:04', 2, '540.0000', 'close', '6900.0000', 0, 1, '6900.0000', 0, 1, '', '2022-04-07 23:26:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (32, '2022-04-07 23:26:54', 2, '7190.0000', 'close', '11490.0000', 0, 2, '11490.0000', 0, 2, '', '2022-04-08 10:40:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (33, '2022-04-08 10:40:26', 2, '4790.0000', 'close', '28210.0000', 0, 2, '28210.0000', 0, 2, '', '2022-04-09 23:51:51', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (34, '2022-04-09 23:52:07', 2, '2710.0000', 'close', '31340.0000', 0, 3, '31340.0000', 0, 3, '', '2022-04-11 00:33:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (35, '2022-04-11 00:34:18', 2, '2190.0000', 'close', '19520.0000', 0, 1, '19520.0000', 0, 1, '', '2022-04-11 10:49:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (36, '2022-04-11 10:50:04', 2, '820.0000', 'close', '16410.0000', 0, 3, '16410.0000', 0, 3, '', '2022-04-12 10:56:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (37, '2022-04-12 10:57:06', 2, '410.0000', 'close', '20900.0000', 0, 3, '20900.0000', 0, 3, '', '2022-04-14 00:39:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (38, '2022-04-14 00:39:49', 2, '700.0000', 'close', '13610.0000', 0, 2, '13610.0000', 0, 2, '', '2022-04-15 00:03:12', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (39, '2022-04-15 00:14:50', 2, '15900.0000', 'close', '29910.0000', 0, 4, '29910.0000', 0, 4, '', '2022-04-16 00:39:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (40, '2022-04-16 00:40:22', 2, '9110.0000', 'close', '23350.0000', 0, 1, '23350.0000', 0, 1, '', '2022-04-17 00:56:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (41, '2022-04-17 00:56:57', 2, '3150.0000', 'close', '35260.0000', 0, 6, '35260.0000', 0, 6, '', '2022-04-18 00:05:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (42, '2022-04-18 00:05:26', 2, '2060.0000', 'close', '12040.0000', 0, 3, '12040.0000', 0, 3, '', '2022-04-19 02:08:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (43, '2022-04-19 02:08:41', 2, '10640.0000', 'close', '22760.0000', 0, 1, '22760.0000', 0, 1, '', '2022-04-19 11:32:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (44, '2022-04-19 11:33:11', 2, '1270.0000', 'close', '4120.0000', 0, 2, '4120.0000', 0, 2, '', '2022-04-20 11:53:28', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (45, '2022-04-20 11:53:57', 2, '3920.0000', 'close', '23180.0000', 0, 2, '23180.0000', 0, 2, '', '2022-04-21 11:44:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (46, '2022-04-21 11:45:07', 2, '660.0000', 'close', '5680.0000', 0, 0, '5680.0000', 0, 0, '', '2022-04-22 11:53:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (47, '2022-04-22 11:53:34', 2, '480.0000', 'close', '8490.0000', 0, 8, '8490.0000', 0, 8, '', '2022-04-23 12:18:31', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (48, '2022-04-23 12:18:42', 2, '0.0000', 'close', '20310.0000', 0, 4, '20310.0000', 0, 4, '', '2022-04-24 12:10:51', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (49, '2022-04-24 12:11:04', 2, '80.0000', 'close', '19000.0000', 0, 2, '19000.0000', 0, 2, '', '2022-04-25 11:55:34', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (50, '2022-04-25 11:55:51', 2, '9440.0000', 'close', '22910.0000', 0, 1, '22910.0000', 0, 1, '', '2022-04-26 12:23:02', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (51, '2022-04-26 12:23:24', 2, '9320.0000', 'close', '21630.0000', 0, 4, '21630.0000', 0, 4, '', '2022-04-27 12:30:26', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (52, '2022-04-27 12:30:44', 2, '9480.0000', 'close', '19850.0000', 0, 1, '19850.0000', 0, 1, '', '2022-04-28 12:50:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (53, '2022-04-28 05:33:20', 6, '100.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (54, '2022-04-28 12:50:18', 2, '8250.0000', 'close', '20140.0000', 0, 4, '20140.0000', 0, 4, '', '2022-04-29 23:05:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (55, '2022-04-29 23:06:23', 2, '6040.0000', 'close', '62010.0000', 0, 2, '62010.0000', 0, 2, '', '2022-04-30 13:30:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (56, '2022-04-30 13:31:26', 2, '5800.0000', 'close', '26740.0000', 0, 4, '26740.0000', 0, 4, '', '2022-05-01 13:36:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (57, '2022-05-01 13:36:22', 2, '970.0000', 'close', '23390.0000', 0, 6, '23390.0000', 0, 6, '', '2022-05-02 23:41:14', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (58, '2022-05-02 23:41:46', 2, '1310.0000', 'close', '26620.0000', 0, 2, '26620.0000', 0, 2, '', '2022-05-07 00:44:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (59, '2022-05-07 00:44:57', 2, '0.0000', 'close', '7180.0000', 0, 3, '7180.0000', 0, 3, '', '2022-05-07 23:44:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (60, '2022-05-07 23:44:35', 2, '7150.0000', 'close', '13820.0000', 0, 3, '13820.0000', 0, 3, '', '2022-05-08 10:15:35', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (61, '2022-05-08 10:16:01', 2, '310.0000', 'close', '4400.0000', 0, 0, '4400.0000', 0, 0, '', '2022-05-09 09:59:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (62, '2022-05-09 10:00:08', 2, '340.0000', 'close', '7990.0000', 0, 0, '7990.0000', 0, 0, '', '2022-05-10 10:12:27', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (63, '2022-05-10 10:12:45', 2, '100.0000', 'close', '7280.0000', 0, 1, '7280.0000', 0, 1, '', '2022-05-11 10:29:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (64, '2022-05-11 10:30:14', 2, '250.0000', 'close', '1480.0000', 0, 0, '1480.0000', 0, 0, '', '2022-05-12 23:40:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (65, '2022-05-12 23:40:32', 2, '1450.0000', 'close', '4560.0000', 0, 3, '4560.0000', 0, 3, '', '2022-05-13 10:40:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (66, '2022-05-13 10:40:36', 2, '80.0000', 'close', '17180.0000', 0, 0, '17180.0000', 0, 0, '', '2022-05-14 11:27:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (67, '2022-05-14 11:28:26', 2, '1220.0000', 'close', '10520.0000', 0, 6, '10520.0000', 0, 6, '', '2022-05-15 10:47:31', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (68, '2022-05-15 10:48:07', 2, '490.0000', 'close', '22900.0000', 0, 4, '22900.0000', 0, 4, '', '2022-05-17 00:10:59', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (69, '2022-05-17 00:11:18', 2, '1840.0000', 'close', '14910.0000', 0, 2, '14910.0000', 0, 2, '', '2022-05-18 00:29:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (70, '2022-05-18 00:29:29', 2, '880.0000', 'close', '8160.0000', 0, 1, '8160.0000', 0, 1, '', '2022-05-18 10:24:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (71, '2022-05-18 10:25:27', 2, '130.0000', 'close', '930.0000', 0, 1, '930.0000', 0, 1, '', '2022-05-20 00:13:24', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (72, '2022-05-20 00:14:05', 2, '900.0000', 'close', '11300.0000', 0, 0, '11300.0000', 0, 0, '', '2022-05-20 10:22:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (73, '2022-05-20 10:22:50', 2, '740.0000', 'close', '8840.0000', 0, 5, '8840.0000', 0, 5, '', '2022-05-21 11:33:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (74, '2022-05-21 11:33:21', 2, '450.0000', 'close', '6720.0000', 0, 1, '6720.0000', 0, 1, '', '2022-05-22 10:50:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (75, '2022-05-22 10:50:42', 2, '2270.0000', 'close', '15770.0000', 0, 0, '15770.0000', 0, 0, '', '2022-05-23 10:10:45', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (76, '2022-05-23 10:11:12', 2, '2710.0000', 'close', '7270.0000', 0, 0, '7270.0000', 0, 0, '', '2022-05-24 10:20:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (77, '2022-05-24 10:21:13', 2, '1820.0000', 'close', '8700.0000', 0, 2, '8700.0000', 0, 2, '', '2022-05-25 10:21:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (78, '2022-05-25 10:22:17', 2, '2670.0000', 'close', '11870.0000', 0, 0, '11870.0000', 0, 0, '', '2022-05-27 01:56:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (79, '2022-05-27 01:58:56', 2, '4820.0000', 'close', '18280.0000', 0, 2, '18280.0000', 0, 2, '', '2022-05-27 10:20:47', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (80, '2022-05-27 10:21:18', 2, '7380.0000', 'close', '19090.0000', 0, 3, '19090.0000', 0, 3, '', '2022-05-28 11:31:28', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (81, '2022-05-28 11:31:46', 2, '4060.0000', 'close', '13440.0000', 0, 2, '13440.0000', 0, 2, '', '2022-05-29 10:39:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (82, '2022-05-29 10:40:15', 2, '3410.0000', 'close', '8030.0000', 0, 2, '8030.0000', 0, 2, '', '2022-05-30 10:10:42', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (83, '2022-05-30 10:11:08', 2, '3470.0000', 'close', '6720.0000', 0, 3, '6720.0000', 0, 3, '', '2022-05-31 10:13:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (84, '2022-05-31 10:14:20', 2, '3690.0000', 'close', '26450.0000', 0, 1, '26450.0000', 0, 1, '', '2022-06-01 10:40:11', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (85, '2022-06-01 10:40:32', 2, '3660.0000', 'close', '5460.0000', 0, 0, '5460.0000', 0, 0, '', '2022-06-03 00:33:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (86, '2022-06-03 00:38:54', 2, '5430.0000', 'close', '12470.0000', 0, 0, '12470.0000', 0, 0, '', '2022-06-04 09:44:46', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (87, '2022-06-04 09:45:51', 2, '10440.0000', 'close', '29640.0000', 0, 3, '29640.0000', 0, 3, '', '2022-06-05 00:55:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (88, '2022-06-05 00:55:48', 2, '29710.0000', 'close', '36810.0000', 0, 1, '36810.0000', 0, 1, '', '2022-06-05 10:40:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (89, '2022-06-05 10:41:34', 2, '7420.0000', 'close', '13870.0000', 0, 0, '13870.0000', 0, 0, '', '2022-06-06 09:44:28', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (90, '2022-06-06 09:44:59', 2, '310.0000', 'close', '5090.0000', 0, 0, '5090.0000', 0, 0, '', '2022-06-07 23:18:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (91, '2022-06-07 23:18:52', 2, '180.0000', 'close', '12560.0000', 0, 1, '12560.0000', 0, 1, '', '2022-06-08 10:28:12', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (92, '2022-06-08 10:28:34', 2, '0.0000', 'close', '2740.0000', 0, 1, '2740.0000', 0, 1, '', '2022-06-09 09:37:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (93, '2022-06-09 09:38:01', 2, '2710.0000', 'close', '12610.0000', 0, 1, '12610.0000', 0, 1, '', '2022-06-10 23:37:01', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (94, '2022-06-10 23:37:20', 2, '1580.0000', 'close', '24670.0000', 0, 1, '24670.0000', 0, 1, '', '2022-06-12 00:10:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (95, '2022-06-12 00:10:41', 2, '1160.0000', 'close', '21960.0000', 0, 2, '21960.0000', 0, 2, '', '2022-06-12 10:58:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (96, '2022-06-12 10:58:29', 2, '2480.0000', 'close', '13220.0000', 0, 1, '13220.0000', 0, 1, '', '2022-06-14 01:06:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (97, '2022-06-14 01:07:06', 2, '2160.0000', 'close', '3610.0000', 0, 2, '3610.0000', 0, 2, '', '2022-06-14 10:39:40', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (98, '2022-06-14 10:40:04', 2, '3550.0000', 'close', '9450.0000', 0, 0, '9450.0000', 0, 0, '', '2022-06-15 23:56:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (99, '2022-06-15 23:57:00', 2, '9460.0000', 'close', '17660.0000', 0, 0, '17660.0000', 0, 0, '', '2022-06-16 10:15:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (100, '2022-06-16 10:15:36', 2, '2630.0000', 'close', '4120.0000', 0, 3, '4120.0000', 0, 3, '', '2022-06-17 10:18:46', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (101, '2022-06-17 10:19:09', 2, '4090.0000', 'close', '23240.0000', 0, 1, '23240.0000', 0, 1, '', '2022-06-19 00:29:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (102, '2022-06-19 00:29:53', 2, '4180.0000', 'close', '17770.0000', 0, 2, '17770.0000', 0, 2, '', '2022-06-19 10:46:30', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (103, '2022-06-19 10:47:26', 2, '2840.0000', 'close', '5730.0000', 0, 2, '5730.0000', 0, 2, '', '2022-06-20 10:29:22', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (104, '2022-06-20 10:29:37', 2, '5670.0000', 'close', '12370.0000', 0, 0, '12370.0000', 0, 0, '', '2022-06-21 10:05:11', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (105, '2022-06-21 10:05:40', 2, '2960.0000', 'close', '5950.0000', 0, 0, '5950.0000', 0, 0, '', '2022-06-22 10:10:46', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (106, '2022-06-22 10:11:02', 2, '2890.0000', 'close', '3840.0000', 0, 0, '3840.0000', 0, 0, '', '2022-06-23 23:31:14', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (107, '2022-06-23 23:31:43', 2, '3810.0000', 'close', '11570.0000', 0, 0, '11570.0000', 0, 0, '', '2022-06-24 10:34:45', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (108, '2022-06-24 10:35:07', 2, '2510.0000', 'close', '15590.0000', 0, 2, '15590.0000', 0, 2, '', '2022-06-25 11:02:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (109, '2022-06-25 11:02:31', 2, '3630.0000', 'close', '13770.0000', 0, 2, '13770.0000', 0, 2, '', '2022-06-26 10:21:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (110, '2022-06-26 10:22:13', 2, '1260.0000', 'close', '10460.0000', 0, 1, '10460.0000', 0, 1, '', '2022-06-27 10:11:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (111, '2022-06-27 10:13:44', 2, '1000.0000', 'close', '4770.0000', 0, 0, '4770.0000', 0, 0, '', '2022-06-28 10:21:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (112, '2022-06-28 10:21:38', 2, '1210.0000', 'close', '16400.0000', 0, 1, '16400.0000', 0, 1, '', '2022-06-29 10:13:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (113, '2022-06-29 10:13:44', 2, '840.0000', 'close', '5430.0000', 0, 0, '5430.0000', 0, 0, '', '2022-06-30 09:23:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (114, '2022-06-30 09:23:49', 2, '5400.0000', 'close', '11960.0000', 0, 0, '11960.0000', 0, 0, '', '2022-07-01 10:34:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (115, '2022-07-01 10:35:09', 2, '1400.0000', 'close', '8990.0000', 0, 3, '8990.0000', 0, 3, '', '2022-07-02 11:40:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (116, '2022-07-02 11:40:45', 2, '6930.0000', 'close', '15250.0000', 0, 3, '15250.0000', 0, 3, '', '2022-07-03 11:12:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (117, '2022-07-03 11:13:05', 2, '2190.0000', 'close', '8020.0000', 0, 2, '8020.0000', 0, 2, '', '2022-07-04 10:52:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (118, '2022-07-04 10:52:26', 2, '1810.0000', 'close', '7320.0000', 0, 0, '7320.0000', 0, 0, '', '2022-07-05 10:41:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (119, '2022-07-05 10:41:36', 2, '760.0000', 'close', '3460.0000', 0, 4, '3460.0000', 0, 4, '', '2022-07-06 11:09:26', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (120, '2022-07-06 11:10:30', 2, '90.0000', 'close', '11240.0000', 0, 0, '11240.0000', 0, 0, '', '2022-07-07 10:35:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (121, '2022-07-07 10:35:49', 2, '11310.0000', 'close', '19860.0000', 0, 1, '19860.0000', 0, 1, '', '2022-07-08 11:36:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (122, '2022-07-08 11:36:26', 2, '190.0000', 'close', '8700.0000', 0, 1, '8700.0000', 0, 1, '', '2022-07-09 11:57:35', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (123, '2022-07-09 11:58:01', 2, '2270.0000', 'close', '9460.0000', 0, 2, '9460.0000', 0, 2, '', '2022-07-10 10:59:45', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (124, '2022-07-10 10:59:56', 2, '0.0000', 'close', '4940.0000', 0, 0, '4940.0000', 0, 0, '', '2022-07-15 09:48:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (125, '2022-07-15 09:48:29', 2, '0.0000', 'close', '21490.0000', 0, 3, '21490.0000', 0, 3, '', '2022-07-16 11:03:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (126, '2022-07-16 11:03:43', 2, '3420.0000', 'close', '6600.0000', 0, 4, '6600.0000', 0, 4, '', '2022-07-17 10:26:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (127, '2022-07-17 10:27:18', 2, '6240.0000', 'close', '15690.0000', 0, 1, '15690.0000', 0, 1, '', '2022-07-19 01:03:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (128, '2022-07-19 01:04:30', 2, '3040.0000', 'close', '3890.0000', 0, 1, '3890.0000', 0, 1, '', '2022-07-19 09:46:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (129, '2022-07-19 09:47:25', 2, '3880.0000', 'close', '5420.0000', 0, 1, '5420.0000', 0, 1, '', '2022-07-20 09:52:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (130, '2022-07-20 09:52:40', 2, '1960.0000', 'close', '2000.0000', 0, 0, '2000.0000', 0, 0, '', '2022-07-22 00:34:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (131, '2022-07-22 00:35:02', 2, '1970.0000', 'close', '5920.0000', 0, 1, '5920.0000', 0, 1, '', '2022-07-22 09:36:57', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (132, '2022-07-22 09:37:38', 2, '1360.0000', 'close', '13220.0000', 0, 5, '13220.0000', 0, 5, '', '2022-07-24 02:05:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (133, '2022-07-24 02:05:22', 2, '1990.0000', 'close', '10220.0000', 0, 4, '10220.0000', 0, 4, '', '2022-07-25 01:34:18', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (134, '2022-07-25 01:34:50', 2, '3200.0000', 'close', '16050.0000', 0, 0, '16050.0000', 0, 0, '', '2022-07-26 01:53:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (135, '2022-07-26 01:53:28', 2, '2790.0000', 'close', '4640.0000', 0, 0, '4640.0000', 0, 0, '', '2022-07-27 00:09:12', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (136, '2022-07-27 00:09:34', 2, '2180.0000', 'close', '7460.0000', 0, 0, '7460.0000', 0, 0, '', '2022-07-27 09:55:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (137, '2022-07-27 09:56:48', 2, '1200.0000', 'close', '1350.0000', 0, 1, '1350.0000', 0, 1, '', '2022-08-01 00:37:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (138, '2022-08-01 00:37:46', 2, '1420.0000', 'close', '13650.0000', 0, 1, '13650.0000', 0, 1, '', '2022-08-01 00:59:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (139, '2022-08-01 00:59:19', 2, '120.0000', 'close', '11490.0000', 0, 7, '11490.0000', 0, 7, '', '2022-08-01 01:56:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (140, '2022-08-01 01:56:22', 2, '970.0000', 'close', '13650.0000', 0, 4, '13650.0000', 0, 4, '', '2022-08-01 02:29:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (141, '2022-08-01 02:30:03', 2, '600.0000', 'close', '660.0000', 0, 0, '660.0000', 0, 0, '', '2022-08-01 03:00:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (142, '2022-08-01 03:00:25', 2, '600.0000', 'close', '7660.0000', 0, 0, '7660.0000', 0, 0, '', '2022-08-01 10:12:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (143, '2022-08-01 10:12:42', 2, '890.0000', 'close', '4990.0000', 0, 2, '4990.0000', 0, 2, '', '2022-08-02 09:40:31', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (144, '2022-08-02 09:40:55', 2, '130.0000', 'close', '11340.0000', 0, 0, '11340.0000', 0, 0, '', '2022-08-03 09:49:24', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (145, '2022-08-03 09:49:41', 2, '230.0000', 'close', '230.0000', 0, 1, '230.0000', 0, 1, '', '2022-08-04 08:22:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (146, '2022-08-04 08:23:02', 2, '205.0000', 'close', '4355.0000', 0, 0, '4355.0000', 0, 0, '', '2022-08-05 10:00:39', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (147, '2022-08-05 10:01:00', 2, '4320.0000', 'close', '10120.0000', 0, 2, '10120.0000', 0, 2, '', '2022-08-06 23:40:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (148, '2022-08-06 23:40:38', 2, '10060.0000', 'close', '21040.0000', 0, 2, '21040.0000', 0, 2, '', '2022-08-07 09:53:43', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (149, '2022-08-07 09:54:00', 2, '250.0000', 'close', '13640.0000', 0, 1, '13640.0000', 0, 1, '', '2022-08-08 09:49:02', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (150, '2022-08-08 09:49:28', 2, '380.0000', 'close', '28550.0000', 0, 1, '28550.0000', 0, 1, '', '2022-08-09 09:56:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (151, '2022-08-09 09:57:07', 2, '540.0000', 'close', '26450.0000', 0, 2, '26450.0000', 0, 2, '', '2022-08-11 00:39:51', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (152, '2022-08-11 00:40:13', 2, '1560.0000', 'close', '12060.0000', 0, 1, '12060.0000', 0, 1, '', '2022-08-11 08:51:30', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (153, '2022-08-11 08:52:00', 2, '12380.0000', 'close', '24820.0000', 0, 5, '24820.0000', 0, 5, '', '2022-08-12 09:54:59', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (154, '2022-08-12 09:55:14', 2, '310.0000', 'close', '23270.0000', 0, 1, '23270.0000', 0, 1, '', '2022-08-14 00:02:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (155, '2022-08-14 00:02:26', 2, '1310.0000', 'close', '45070.0000', 0, 2, '45070.0000', 0, 2, '', '2022-08-15 00:12:32', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (156, '2022-08-15 00:12:56', 2, '1760.0000', 'close', '11810.0000', 0, 2, '11810.0000', 0, 2, '', '2022-08-15 10:05:22', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (157, '2022-08-15 10:05:38', 2, '750.0000', 'close', '9500.0000', 0, 3, '9500.0000', 0, 3, '', '2022-08-16 10:04:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (158, '2022-08-16 10:04:49', 2, '2940.0000', 'close', '10140.0000', 0, 0, '10140.0000', 0, 0, '', '2022-08-17 08:37:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (159, '2022-08-17 08:37:40', 2, '4155.0000', 'close', '6455.0000', 0, 1, '6455.0000', 0, 1, '', '2022-08-18 09:22:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (160, '2022-08-18 09:23:17', 2, '6425.0000', 'close', '35465.0000', 0, 0, '35465.0000', 0, 0, '', '2022-08-19 10:08:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (161, '2022-08-19 10:08:52', 2, '2730.0000', 'close', '13480.0000', 0, 1, '13480.0000', 0, 1, '', '2022-08-20 10:13:46', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (162, '2022-08-20 10:13:58', 2, '970.0000', 'close', '17680.0000', 0, 3, '17680.0000', 0, 3, '', '2022-08-21 09:42:57', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (163, '2022-08-21 09:43:27', 2, '1520.0000', 'close', '2820.0000', 0, 0, '2820.0000', 0, 0, '', '2022-08-22 09:28:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (164, '2022-08-22 09:28:40', 2, '760.0000', 'close', '38340.0000', 0, 0, '38340.0000', 0, 0, '', '2022-08-23 09:34:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (165, '2022-08-23 09:34:30', 2, '2430.0000', 'close', '8970.0000', 0, 1, '8970.0000', 0, 1, '', '2022-08-24 09:50:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (166, '2022-08-24 09:51:12', 2, '2710.0000', 'close', '4510.0000', 0, 1, '4510.0000', 0, 1, '', '2022-08-26 00:13:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (167, '2022-08-26 00:13:33', 2, '4580.0000', 'close', '11340.0000', 0, 1, '11340.0000', 0, 1, '', '2022-08-26 09:19:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (168, '2022-08-26 09:20:30', 2, '11510.0000', 'close', '17670.0000', 0, 0, '17670.0000', 0, 0, '', '2022-08-27 10:24:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (169, '2022-08-27 10:25:06', 2, '240.0000', 'close', '7860.0000', 0, 3, '7860.0000', 0, 3, '', '2022-08-28 09:45:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (170, '2022-08-28 09:46:22', 2, '2800.0000', 'close', '18650.0000', 0, 0, '18650.0000', 0, 0, '', '2022-08-29 09:40:34', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (171, '2022-08-29 09:40:55', 2, '5180.0000', 'close', '8910.0000', 0, 0, '8910.0000', 0, 0, '', '2022-08-30 09:29:59', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (172, '2022-08-30 09:30:16', 2, '850.0000', 'close', '3380.0000', 0, 2, '3380.0000', 0, 2, '', '2022-08-31 09:37:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (173, '2022-08-31 09:37:51', 2, '750.0000', 'close', '3200.0000', 0, 0, '3200.0000', 0, 0, '', '2022-09-01 08:45:31', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (174, '2022-09-01 08:45:58', 2, '3170.0000', 'close', '4960.0000', 0, 0, '4960.0000', 0, 0, '', '2022-09-02 09:49:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (175, '2022-09-02 09:49:57', 2, '4930.0000', 'close', '14330.0000', 0, 0, '14330.0000', 0, 0, '', '2022-09-03 10:36:30', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (176, '2022-09-03 10:36:46', 2, '2240.0000', 'close', '6830.0000', 0, 1, '6830.0000', 0, 1, '', '2022-09-04 10:08:34', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (177, '2022-09-04 10:09:02', 2, '1320.0000', 'close', '4650.0000', 0, 0, '4650.0000', 0, 0, '', '2022-09-05 09:48:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (178, '2022-09-05 09:48:58', 2, '590.0000', 'close', '9090.0000', 0, 0, '9090.0000', 0, 0, '', '2022-09-07 00:19:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (179, '2022-09-07 00:20:16', 2, '1590.0000', 'close', '10570.0000', 0, 0, '10570.0000', 0, 0, '', '2022-09-07 09:36:32', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (180, '2022-09-07 09:36:57', 2, '760.0000', 'close', '2160.0000', 0, 0, '2160.0000', 0, 0, '', '2022-09-08 08:42:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (181, '2022-09-08 08:42:27', 2, '2130.0000', 'close', '6080.0000', 0, 1, '6080.0000', 0, 1, '', '2022-09-09 10:01:18', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (182, '2022-09-09 10:01:31', 2, '50.0000', 'close', '17710.0000', 0, 1, '17710.0000', 0, 1, '', '2022-09-10 10:23:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (183, '2022-09-10 10:23:59', 2, '1250.0000', 'close', '8580.0000', 0, 2, '8580.0000', 0, 2, '', '2022-09-11 09:58:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (184, '2022-09-11 09:58:37', 2, '570.0000', 'close', '8440.0000', 0, 1, '8440.0000', 0, 1, '', '2022-09-12 09:45:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (185, '2022-09-12 09:46:04', 2, '380.0000', 'close', '9980.0000', 0, 0, '9980.0000', 0, 0, '', '2022-09-13 09:36:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (186, '2022-09-13 09:36:39', 2, '3920.0000', 'close', '8910.0000', 0, 0, '8910.0000', 0, 0, '', '2022-09-14 09:30:57', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (187, '2022-09-14 09:31:16', 2, '2250.0000', 'close', '4950.0000', 0, 0, '4950.0000', 0, 0, '', '2022-09-15 08:38:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (188, '2022-09-15 08:39:22', 2, '4920.0000', 'close', '7120.0000', 0, 1, '7120.0000', 0, 1, '', '2022-09-16 09:53:27', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (189, '2022-09-16 09:53:40', 2, '2990.0000', 'close', '11920.0000', 0, 0, '11920.0000', 0, 0, '', '2022-09-18 00:49:31', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (190, '2022-09-18 00:49:49', 2, '11210.0000', 'close', '25980.0000', 0, 3, '25980.0000', 0, 3, '', '2022-09-18 09:54:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (191, '2022-09-18 09:55:27', 2, '2920.0000', 'close', '14070.0000', 0, 0, '14070.0000', 0, 0, '', '2022-09-19 09:49:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (192, '2022-09-19 09:51:35', 2, '2010.0000', 'close', '4180.0000', 0, 4, '4180.0000', 0, 4, '', '2022-09-20 09:41:34', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (193, '2022-09-20 09:41:50', 2, '4050.0000', 'close', '5230.0000', 0, 0, '5230.0000', 0, 0, '', '2022-09-21 09:37:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (194, '2022-09-21 09:38:12', 2, '5070.0000', 'close', '5780.0000', 0, 0, '5780.0000', 0, 0, '', '2022-09-22 08:58:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (195, '2022-09-22 08:58:36', 2, '5750.0000', 'close', '7070.0000', 0, 0, '7070.0000', 0, 0, '', '2022-09-23 09:50:36', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (196, '2022-09-23 09:50:52', 2, '7040.0000', 'close', '22490.0000', 0, 1, '22490.0000', 0, 1, '', '2022-09-24 10:24:54', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (197, '2022-09-24 10:25:13', 2, '580.0000', 'close', '17240.0000', 0, 3, '17240.0000', 0, 3, '', '2022-09-25 09:50:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (198, '2022-09-25 09:50:48', 2, '960.0000', 'close', '4720.0000', 0, 1, '4720.0000', 0, 1, '', '2022-09-26 09:54:06', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (199, '2022-09-26 09:54:30', 2, '4860.0000', 'close', '10510.0000', 0, 1, '10510.0000', 0, 1, '', '2022-09-27 09:38:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (200, '2022-09-27 09:38:32', 2, '850.0000', 'close', '5370.0000', 0, 1, '5370.0000', 0, 1, '', '2022-09-28 09:39:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (201, '2022-09-28 09:40:02', 2, '710.0000', 'close', '1140.0000', 0, 0, '1140.0000', 0, 0, '', '2022-09-29 23:29:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (202, '2022-09-29 23:29:24', 2, '1210.0000', 'close', '11670.0000', 0, 0, '11670.0000', 0, 0, '', '2022-10-01 00:32:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (203, '2022-10-01 00:33:07', 2, '540.0000', 'close', '5700.0000', 0, 1, '5700.0000', 0, 1, '', '2022-10-02 00:41:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (204, '2022-10-02 00:42:36', 2, '6410.0000', 'close', '13060.0000', 0, 1, '13060.0000', 0, 1, '', '2022-10-02 09:51:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (205, '2022-10-02 09:52:05', 2, '13000.0000', 'close', '15350.0000', 0, 1, '15350.0000', 0, 1, '', '2022-10-03 09:29:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (206, '2022-10-03 09:29:34', 2, '2290.0000', 'close', '5790.0000', 0, 1, '5790.0000', 0, 1, '', '2022-10-04 09:25:22', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (207, '2022-10-04 09:25:51', 2, '1110.0000', 'close', '8260.0000', 0, 0, '8260.0000', 0, 0, '', '2022-10-06 00:41:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (208, '2022-10-06 00:42:34', 2, '1250.0000', 'close', '1450.0000', 0, 1, '1450.0000', 0, 1, '', '2022-10-06 09:11:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (209, '2022-10-06 09:11:32', 2, '1420.0000', 'close', '13440.0000', 0, 1, '13440.0000', 0, 1, '', '2022-10-07 10:20:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (210, '2022-10-07 10:20:46', 2, '140.0000', 'close', '3960.0000', 0, 2, '3960.0000', 0, 2, '', '2022-10-08 10:08:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (211, '2022-10-08 10:08:45', 2, '3900.0000', 'close', '8110.0000', 0, 2, '8110.0000', 0, 2, '', '2022-10-09 09:56:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (212, '2022-10-09 09:56:41', 2, '50.0000', 'close', '8640.0000', 0, 3, '8640.0000', 0, 3, '', '2022-10-10 10:02:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (213, '2022-10-10 10:02:41', 2, '9080.0000', 'close', '14030.0000', 0, 0, '14030.0000', 0, 0, '', '2022-10-11 23:44:26', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (214, '2022-10-11 23:44:49', 2, '13970.0000', 'close', '18190.0000', 0, 1, '18190.0000', 0, 1, '', '2022-10-12 10:05:28', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (215, '2022-10-12 10:05:43', 2, '130.0000', 'close', '4130.0000', 0, 1, '4130.0000', 0, 1, '', '2022-10-13 08:43:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (216, '2022-10-13 08:44:38', 2, '4350.0000', 'close', '13440.0000', 0, 3, '13440.0000', 0, 3, '', '2022-10-14 09:46:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (217, '2022-10-14 09:46:46', 2, '450.0000', 'close', '14030.0000', 0, 3, '14030.0000', 0, 3, '', '2022-10-15 10:25:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (218, '2022-10-15 10:26:14', 2, '900.0000', 'close', '7250.0000', 0, 1, '7250.0000', 0, 1, '', '2022-10-16 09:57:11', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (219, '2022-10-16 09:57:29', 2, '300.0000', 'close', '20940.0000', 0, 2, '20940.0000', 0, 2, '', '2022-10-17 09:45:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (220, '2022-10-17 09:45:58', 2, '3880.0000', 'close', '5920.0000', 0, 0, '5920.0000', 0, 0, '', '2022-10-18 09:24:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (221, '2022-10-18 09:25:15', 2, '5860.0000', 'close', '15470.0000', 0, 2, '15470.0000', 0, 2, '', '2022-10-19 09:38:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (222, '2022-10-19 09:39:16', 2, '1410.0000', 'close', '5260.0000', 0, 3, '5260.0000', 0, 3, '', '2022-10-20 08:54:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (223, '2022-10-20 08:54:20', 2, '5230.0000', 'close', '14520.0000', 0, 0, '14520.0000', 0, 0, '', '2022-10-21 09:29:39', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (224, '2022-10-21 09:30:19', 2, '14260.0000', 'close', '18910.0000', 0, 2, '18910.0000', 0, 2, '', '2022-10-22 10:28:45', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (225, '2022-10-22 10:33:49', 2, '14350.0000', 'close', '23090.0000', 0, 2, '23090.0000', 0, 2, '', '2022-10-23 10:06:57', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (226, '2022-10-23 10:07:17', 2, '1030.0000', 'close', '10080.0000', 0, 1, '10080.0000', 0, 1, '', '2022-10-24 09:30:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (227, '2022-10-24 09:30:29', 2, '2020.0000', 'close', '5520.0000', 0, 0, '5520.0000', 0, 0, '', '2022-10-25 09:09:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (228, '2022-10-25 09:10:08', 2, '5490.0000', 'close', '24710.0000', 0, 3, '24710.0000', 0, 3, '', '2022-10-26 09:38:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (229, '2022-10-26 09:38:30', 2, '300.0000', 'close', '640.0000', 0, 0, '640.0000', 0, 0, '', '2022-10-27 09:01:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (230, '2022-10-27 09:01:22', 2, '610.0000', 'close', '7490.0000', 0, 0, '7490.0000', 0, 0, '', '2022-10-28 09:53:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (231, '2022-10-28 09:54:13', 2, '0.0000', 'close', '6790.0000', 0, 3, '6790.0000', 0, 3, '', '2022-10-29 10:14:26', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (232, '2022-10-29 10:14:38', 2, '1230.0000', 'close', '11880.0000', 0, 0, '11880.0000', 0, 0, '', '2022-10-30 09:56:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (233, '2022-10-30 09:56:45', 2, '1020.0000', 'close', '5980.0000', 0, 0, '5980.0000', 0, 0, '', '2022-10-31 09:13:38', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (234, '2022-10-31 09:13:56', 2, '6150.0000', 'close', '12320.0000', 0, 0, '12320.0000', 0, 0, '', '2022-11-01 09:22:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (235, '2022-11-01 09:23:21', 2, '12340.0000', 'close', '17690.0000', 0, 0, '17690.0000', 0, 0, '', '2022-11-02 09:37:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (236, '2022-11-02 09:37:56', 2, '15810.0000', 'close', '17050.0000', 0, 0, '17050.0000', 0, 0, '', '2022-11-03 23:53:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (237, '2022-11-03 23:53:28', 2, '17020.0000', 'close', '17870.0000', 0, 2, '17870.0000', 0, 2, '', '2022-11-04 09:39:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (238, '2022-11-04 09:39:52', 2, '4840.0000', 'close', '10670.0000', 0, 0, '10670.0000', 0, 0, '', '2022-11-05 09:59:26', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (239, '2022-11-05 09:59:41', 2, '510.0000', 'close', '15180.0000', 0, 2, '15180.0000', 0, 2, '', '2022-11-06 09:50:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (240, '2022-11-06 09:50:30', 2, '120.0000', 'close', '9270.0000', 0, 2, '9270.0000', 0, 2, '', '2022-11-07 10:33:35', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (241, '2022-11-07 10:33:55', 2, '800.0000', 'close', '5750.0000', 0, 1, '5750.0000', 0, 1, '', '2022-11-08 10:40:46', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (242, '2022-11-08 10:41:08', 2, '8720.0000', 'close', '10940.0000', 0, 2, '10940.0000', 0, 2, '', '2022-11-09 10:40:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (243, '2022-11-09 10:40:54', 2, '4380.0000', 'close', '5210.0000', 0, 0, '5210.0000', 0, 0, '', '2022-11-10 10:07:40', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (244, '2022-11-10 10:08:04', 2, '5180.0000', 'close', '13060.0000', 0, 0, '13060.0000', 0, 0, '', '2022-11-11 10:57:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (245, '2022-11-11 10:58:05', 2, '2530.0000', 'close', '8890.0000', 0, 3, '8890.0000', 0, 3, '', '2022-11-12 11:12:45', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (246, '2022-11-12 11:13:03', 2, '830.0000', 'close', '14350.0000', 0, 2, '14350.0000', 0, 2, '', '2022-11-13 11:14:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (247, '2022-11-13 11:14:41', 2, '290.0000', 'close', '11560.0000', 0, 0, '11560.0000', 0, 0, '', '2022-11-14 10:41:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (248, '2022-11-14 10:42:05', 2, '1530.0000', 'close', '2040.0000', 0, 1, '2040.0000', 0, 1, '', '2022-11-15 10:39:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (249, '2022-11-15 10:40:08', 2, '1980.0000', 'close', '3980.0000', 0, 1, '3980.0000', 0, 1, '', '2022-11-17 02:42:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (250, '2022-11-17 02:43:12', 2, '3920.0000', 'close', '12740.0000', 0, 0, '12740.0000', 0, 0, '', '2022-11-17 09:58:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (251, '2022-11-17 09:58:47', 2, '12710.0000', 'close', '33910.0000', 0, 1, '33910.0000', 0, 1, '', '2022-11-18 11:12:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (252, '2022-11-18 11:12:35', 2, '800.0000', 'close', '6760.0000', 0, 1, '6760.0000', 0, 1, '', '2022-11-19 11:28:59', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (253, '2022-11-19 11:29:12', 2, '700.0000', 'close', '6880.0000', 0, 0, '6880.0000', 0, 0, '', '2022-11-21 00:20:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (254, '2022-11-21 00:21:31', 2, '6820.0000', 'close', '8640.0000', 0, 1, '8640.0000', 0, 1, '', '2022-11-21 10:30:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (255, '2022-11-21 10:30:22', 2, '4080.0000', 'close', '5140.0000', 0, 1, '5140.0000', 0, 1, '', '2022-11-22 10:51:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (256, '2022-11-22 10:51:32', 2, '5080.0000', 'close', '18440.0000', 0, 1, '18440.0000', 0, 1, '', '2022-11-23 10:46:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (257, '2022-11-23 10:46:39', 2, '18380.0000', 'close', '18380.0000', 0, 0, '18380.0000', 0, 0, '', '2022-11-24 02:01:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (258, '2022-11-24 02:02:04', 2, '4380.0000', 'close', '4480.0000', 0, 0, '4480.0000', 0, 0, '', '2022-11-24 09:55:04', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (259, '2022-11-24 09:55:28', 2, '4450.0000', 'close', '5580.0000', 0, 1, '5580.0000', 0, 1, '', '2022-11-25 10:29:35', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (260, '2022-11-25 10:29:53', 2, '5550.0000', 'close', '11800.0000', 0, 1, '11800.0000', 0, 1, '', '2022-11-26 11:27:42', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (261, '2022-11-26 11:27:59', 2, '3730.0000', 'close', '18810.0000', 0, 1, '18810.0000', 0, 1, '', '2022-11-27 10:42:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (262, '2022-11-27 10:42:45', 2, '5250.0000', 'close', '6750.0000', 0, 0, '6750.0000', 0, 0, '', '2022-11-28 10:27:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (263, '2022-11-28 10:28:03', 2, '6720.0000', 'close', '7920.0000', 0, 0, '7920.0000', 0, 0, '', '2022-11-30 01:41:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (264, '2022-11-30 01:42:24', 2, '7890.0000', 'close', '13780.0000', 0, 0, '13780.0000', 0, 0, '', '2022-12-01 00:48:26', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (265, '2022-12-01 00:48:46', 2, '13750.0000', 'close', '15000.0000', 0, 0, '15000.0000', 0, 0, '', '2022-12-01 10:10:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (266, '2022-12-01 10:11:48', 2, '14970.0000', 'close', '20320.0000', 0, 0, '20320.0000', 0, 0, '', '2022-12-02 10:56:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (267, '2022-12-02 10:57:13', 2, '5290.0000', 'close', '12950.0000', 0, 0, '12950.0000', 0, 0, '', '2022-12-03 11:30:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (268, '2022-12-03 11:30:25', 2, '4890.0000', 'close', '14980.0000', 0, 1, '14980.0000', 0, 1, '', '2022-12-04 11:16:02', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (269, '2022-12-04 11:16:20', 2, '4920.0000', 'close', '12250.0000', 0, 0, '12250.0000', 0, 0, '', '2022-12-06 00:53:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (270, '2022-12-06 00:53:32', 2, '4560.0000', 'close', '5930.0000', 0, 0, '5930.0000', 0, 0, '', '2022-12-07 02:01:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (271, '2022-12-07 02:02:12', 2, '5900.0000', 'close', '14100.0000', 0, 0, '14100.0000', 0, 0, '', '2022-12-07 10:13:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (272, '2022-12-07 10:13:47', 2, '4040.0000', 'close', '7640.0000', 0, 0, '7640.0000', 0, 0, '', '2022-12-09 01:04:28', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (273, '2022-12-09 01:05:30', 2, '7610.0000', 'close', '9230.0000', 0, 0, '9230.0000', 0, 0, '', '2022-12-09 10:06:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (274, '2022-12-09 10:06:52', 2, '4200.0000', 'close', '20500.0000', 0, 2, '20500.0000', 0, 2, '', '2022-12-10 10:59:01', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (275, '2022-12-10 10:59:20', 2, '7570.0000', 'close', '9150.0000', 0, 0, '9150.0000', 0, 0, '', '2022-12-11 10:44:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (276, '2022-12-11 10:45:50', 2, '4120.0000', 'close', '14070.0000', 0, 1, '14070.0000', 0, 1, '', '2022-12-12 10:40:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (277, '2022-12-12 10:40:38', 2, '3000.0000', 'close', '3940.0000', 0, 0, '3940.0000', 0, 0, '', '2022-12-14 00:57:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (278, '2022-12-14 00:57:27', 2, '3880.0000', 'close', '4900.0000', 0, 0, '4900.0000', 0, 0, '', '2022-12-15 01:05:57', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (279, '2022-12-15 01:06:56', 2, '2840.0000', 'close', '5260.0000', 0, 1, '5260.0000', 0, 1, '', '2022-12-15 09:58:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (280, '2022-12-15 09:59:04', 2, '5230.0000', 'close', '8580.0000', 0, 0, '8580.0000', 0, 0, '', '2022-12-16 10:45:34', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (281, '2022-12-16 10:45:57', 2, '3550.0000', 'close', '12350.0000', 0, 0, '12350.0000', 0, 0, '', '2022-12-17 11:12:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (282, '2022-12-17 11:13:21', 2, '4290.0000', 'close', '13810.0000', 0, 0, '13810.0000', 0, 0, '', '2022-12-18 10:37:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (283, '2022-12-18 10:37:31', 2, '2750.0000', 'close', '4900.0000', 0, 1, '4900.0000', 0, 1, '', '2022-12-19 09:48:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (284, '2022-12-19 09:48:37', 2, '2340.0000', 'close', '4280.0000', 0, 0, '4280.0000', 0, 0, '', '2022-12-20 10:40:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (285, '2022-12-20 10:40:50', 2, '4220.0000', 'close', '15710.0000', 0, 1, '15710.0000', 0, 1, '', '2022-12-21 11:02:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (286, '2022-12-21 11:02:21', 2, '2120.0000', 'close', '2520.0000', 0, 0, '2520.0000', 0, 0, '', '2022-12-22 09:52:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (287, '2022-12-22 09:52:21', 2, '2490.0000', 'close', '4890.0000', 0, 0, '4890.0000', 0, 0, '', '2022-12-23 10:35:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (288, '2022-12-23 10:35:37', 2, '350.0000', 'close', '4740.0000', 0, 2, '4740.0000', 0, 2, '', '2022-12-24 11:16:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (289, '2022-12-24 11:16:56', 2, '180.0000', 'close', '8340.0000', 0, 1, '8340.0000', 0, 1, '', '2022-12-25 11:13:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (290, '2022-12-26 00:49:48', 2, '280.0000', 'close', '9950.0000', 0, 0, '9950.0000', 0, 0, '', '2022-12-26 11:28:36', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (291, '2022-12-26 11:28:51', 2, '400.0000', 'close', '4840.0000', 0, 0, '4840.0000', 0, 0, '', '2023-01-22 07:00:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (292, '2023-01-22 07:00:30', 2, '300.0000', 'close', '800.0000', 0, 1, '800.0000', 0, 1, '', '2023-01-22 07:14:07', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (293, '2023-01-22 07:14:23', 2, '740.0000', 'close', '740.0000', 0, 3, '740.0000', 0, 3, '', '2023-01-22 07:35:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (294, '2023-01-22 07:35:36', 2, '710.0000', 'close', '5800.0000', 0, 0, '5800.0000', 0, 0, '', '2023-01-22 07:53:17', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (295, '2023-01-22 07:53:39', 2, '740.0000', 'close', '4900.0000', 0, 1, '4900.0000', 0, 1, '', '2023-01-22 08:06:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (296, '2023-01-22 08:07:13', 2, '2590.0000', 'close', '6870.0000', 0, 2, '6870.0000', 0, 2, '', '2023-01-22 08:52:35', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (297, '2023-01-22 08:52:51', 2, '310.0000', 'close', '10260.0000', 0, 0, '10260.0000', 0, 0, '', '2023-01-22 10:09:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (298, '2023-01-22 10:09:52', 2, '900.0000', 'close', '3280.0000', 0, 0, '3280.0000', 0, 0, '', '2023-01-22 10:15:54', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (299, '2023-01-22 10:16:11', 2, '1220.0000', 'close', '10080.0000', 0, 0, '10080.0000', 0, 0, '', '2023-01-22 10:23:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (300, '2023-01-22 10:23:21', 2, '1520.0000', 'close', '8320.0000', 0, 0, '8320.0000', 0, 0, '', '2023-01-22 10:35:30', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (301, '2023-01-22 10:36:04', 2, '8290.0000', 'close', '8430.0000', 0, 0, '8430.0000', 0, 0, '', '2023-01-23 02:15:32', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (302, '2023-01-23 02:15:58', 2, '900.0000', 'close', '3580.0000', 0, 1, '3580.0000', 0, 1, '', '2023-01-23 02:24:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (303, '2023-01-23 02:24:33', 2, '1020.0000', 'close', '8640.0000', 0, 0, '8640.0000', 0, 0, '', '2023-01-23 02:30:46', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (304, '2023-01-23 02:31:13', 2, '580.0000', 'close', '3430.0000', 0, 0, '3430.0000', 0, 0, '', '2023-01-23 02:42:22', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (305, '2023-01-23 02:42:34', 2, '370.0000', 'close', '5070.0000', 0, 0, '5070.0000', 0, 0, '', '2023-01-23 02:45:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (306, '2023-01-23 02:45:35', 2, '0.0000', 'close', '520.0000', 0, 0, '520.0000', 0, 0, '', '2023-01-23 02:49:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (307, '2023-01-23 02:49:24', 2, '460.0000', 'close', '1110.0000', 0, 0, '1110.0000', 0, 0, '', '2023-01-23 02:53:41', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (308, '2023-01-23 02:54:10', 2, '1080.0000', 'close', '6280.0000', 0, 0, '6280.0000', 0, 0, '', '2023-01-23 03:02:39', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (309, '2023-01-23 03:03:06', 2, '0.0000', 'close', '4310.0000', 0, 0, '4310.0000', 0, 0, '', '2023-01-23 03:10:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (310, '2023-01-23 03:10:36', 2, '750.0000', 'close', '7910.0000', 0, 0, '7910.0000', 0, 0, '', '2023-01-23 03:59:18', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (311, '2023-01-23 03:59:39', 2, '850.0000', 'close', '8650.0000', 0, 0, '8650.0000', 0, 0, '', '2023-01-23 04:11:56', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (312, '2023-01-23 04:12:20', 2, '3600.0000', 'close', '3600.0000', 0, 1, '3600.0000', 0, 1, '', '2023-01-23 04:15:02', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (313, '2023-01-23 04:15:28', 2, '1070.0000', 'close', '5910.0000', 0, 0, '5910.0000', 0, 0, '', '2023-01-23 04:27:08', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (314, '2023-01-23 04:27:21', 2, '350.0000', 'close', '600.0000', 0, 0, '600.0000', 0, 0, '', '2023-01-23 04:31:23', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (315, '2023-01-23 04:31:58', 2, '570.0000', 'close', '5840.0000', 0, 1, '5840.0000', 0, 1, '', '2023-01-23 04:50:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (316, '2023-01-23 04:50:36', 2, '280.0000', 'close', '5270.0000', 0, 1, '5270.0000', 0, 1, '', '2023-01-23 04:59:05', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (317, '2023-01-23 04:59:16', 2, '700.0000', 'close', '4730.0000', 0, 0, '4730.0000', 0, 0, '', '2023-01-23 05:10:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (318, '2023-01-23 05:10:19', 2, '1170.0000', 'close', '11020.0000', 0, 0, '11020.0000', 0, 0, '', '2023-01-23 10:55:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (319, '2023-01-23 10:55:32', 2, '1490.0000', 'close', '2700.0000', 0, 1, '2700.0000', 0, 1, '', '2023-01-24 10:22:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (320, '2023-01-24 10:22:53', 2, '2640.0000', 'close', '6950.0000', 0, 1, '6950.0000', 0, 1, '', '2023-01-25 10:10:40', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (321, '2023-01-25 10:11:00', 2, '6800.0000', 'close', '9500.0000', 0, 0, '9500.0000', 0, 0, '', '2023-01-26 09:59:43', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (322, '2023-01-26 09:59:57', 2, '9470.0000', 'close', '11720.0000', 0, 2, '11720.0000', 0, 2, '', '2023-01-27 10:55:11', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (323, '2023-01-27 10:55:29', 2, '3190.0000', 'close', '6410.0000', 0, 0, '6410.0000', 0, 0, '', '2023-01-28 11:04:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (324, '2023-01-28 11:04:37', 2, '2850.0000', 'close', '7500.0000', 0, 0, '7500.0000', 0, 0, '', '2023-01-29 10:52:33', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (325, '2023-01-29 10:52:46', 2, '7440.0000', 'close', '11640.0000', 0, 0, '11640.0000', 0, 0, '', '2023-01-30 10:42:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (326, '2023-01-30 10:43:02', 2, '2580.0000', 'close', '3480.0000', 0, 0, '3480.0000', 0, 0, '', '2023-01-31 10:26:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (327, '2023-01-31 10:26:51', 2, '3420.0000', 'close', '5670.0000', 0, 0, '5670.0000', 0, 0, '', '2023-02-01 10:42:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (328, '2023-02-01 10:42:21', 2, '3600.0000', 'close', '3600.0000', 0, 0, '3600.0000', 0, 0, '', '2023-02-02 09:54:01', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (329, '2023-02-02 09:54:13', 2, '3600.0000', 'close', '6900.0000', 0, 0, '6900.0000', 0, 0, '', '2023-02-03 10:49:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (330, '2023-02-03 10:50:06', 2, '870.0000', 'close', '4920.0000', 0, 1, '4920.0000', 0, 1, '', '2023-02-04 11:10:25', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (331, '2023-02-04 11:10:46', 2, '860.0000', 'close', '14280.0000', 0, 1, '14280.0000', 0, 1, '', '2023-02-05 10:59:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (332, '2023-02-05 10:59:28', 2, '220.0000', 'close', '2590.0000', 0, 2, '2590.0000', 0, 2, '', '2023-02-06 10:32:01', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (333, '2023-02-06 10:32:13', 2, '30.0000', 'close', '1280.0000', 0, 1, '1280.0000', 0, 1, '', '2023-02-07 10:27:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (334, '2023-02-07 10:27:59', 2, '1220.0000', 'close', '2970.0000', 0, 0, '2970.0000', 0, 0, '', '2023-02-08 10:35:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (335, '2023-02-08 10:36:11', 2, '2910.0000', 'close', '3660.0000', 0, 1, '3660.0000', 0, 1, '', '2023-02-10 01:09:13', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (336, '2023-02-10 01:10:07', 2, '3630.0000', 'close', '7460.0000', 0, 0, '7460.0000', 0, 0, '', '2023-02-10 10:47:37', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (337, '2023-02-10 10:47:53', 2, '1930.0000', 'close', '8300.0000', 0, 2, '8300.0000', 0, 2, '', '2023-02-11 11:10:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (338, '2023-02-11 11:10:35', 2, '8270.0000', 'close', '15270.0000', 0, 1, '15270.0000', 0, 1, '', '2023-02-12 11:05:43', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (339, '2023-02-12 11:06:08', 2, '15240.0000', 'close', '17090.0000', 0, 0, '17090.0000', 0, 0, '', '2023-02-13 10:46:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (340, '2023-02-13 10:47:25', 2, '2530.0000', 'close', '5760.0000', 0, 0, '5760.0000', 0, 0, '', '2023-02-14 11:07:49', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (341, '2023-02-14 11:10:29', 2, '2640.0000', 'close', '5740.0000', 0, 0, '5740.0000', 0, 0, '', '2023-02-15 10:48:54', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (342, '2023-02-15 10:49:12', 2, '2680.0000', 'close', '5780.0000', 0, 1, '5780.0000', 0, 1, '', '2023-02-16 09:57:41', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (343, '2023-02-16 09:58:01', 2, '5750.0000', 'close', '6050.0000', 0, 1, '6050.0000', 0, 1, '', '2023-02-17 11:23:15', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (344, '2023-02-17 11:23:33', 2, '3020.0000', 'close', '14530.0000', 0, 2, '14530.0000', 0, 2, '', '2023-02-18 11:20:41', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (345, '2023-02-18 11:21:02', 2, '470.0000', 'close', '2820.0000', 0, 1, '2820.0000', 0, 1, '', '2023-02-19 10:53:02', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (346, '2023-02-19 10:53:23', 2, '2760.0000', 'close', '5100.0000', 0, 0, '5100.0000', 0, 0, '', '2023-02-20 10:25:38', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (347, '2023-02-20 10:25:59', 2, '5070.0000', 'close', '8580.0000', 0, 0, '8580.0000', 0, 0, '', '2023-02-21 10:55:57', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (348, '2023-02-21 10:56:12', 2, '5020.0000', 'close', '13430.0000', 0, 2, '13430.0000', 0, 2, '', '2023-02-22 11:19:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (349, '2023-02-22 11:20:14', 2, '5370.0000', 'close', '9170.0000', 0, 0, '9170.0000', 0, 0, '', '2023-02-23 09:52:10', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (350, '2023-02-23 09:53:08', 2, '9140.0000', 'close', '11420.0000', 0, 1, '11420.0000', 0, 1, '', '2023-02-27 01:23:21', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (351, '2023-02-27 01:23:51', 2, '3890.0000', 'close', '13780.0000', 0, 1, '13780.0000', 0, 1, '', '2023-02-27 01:51:47', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (352, '2023-02-27 01:52:07', 2, '13750.0000', 'close', '20320.0000', 0, 1, '20320.0000', 0, 1, '', '2023-02-27 02:21:41', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (353, '2023-02-27 02:22:30', 2, '4790.0000', 'close', '18660.0000', 0, 1, '18660.0000', 0, 1, '', '2023-02-27 10:25:53', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (354, '2023-02-27 10:26:17', 2, '4130.0000', 'close', '6040.0000', 0, 0, '6040.0000', 0, 0, '', '2023-02-28 10:54:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (355, '2023-02-28 10:54:49', 2, '3980.0000', 'close', '15790.0000', 0, 2, '15790.0000', 0, 2, '', '2023-03-01 11:17:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (356, '2023-03-01 11:18:07', 2, '5730.0000', 'close', '6090.0000', 0, 0, '6090.0000', 0, 0, '', '2023-03-02 09:54:18', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (357, '2023-03-02 09:54:36', 2, '6060.0000', 'close', '7830.0000', 0, 0, '7830.0000', 0, 0, '', '2023-03-03 10:30:52', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (358, '2023-03-03 10:31:03', 2, '7800.0000', 'close', '29690.0000', 0, 1, '29690.0000', 0, 1, '', '2023-03-04 11:10:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (359, '2023-03-04 11:11:18', 2, '29590.0000', 'close', '30450.0000', 0, 2, '30450.0000', 0, 2, '', '2023-03-05 10:58:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (360, '2023-03-05 10:59:30', 2, '2920.0000', 'close', '18420.0000', 0, 0, '18420.0000', 0, 0, '', '2023-03-06 10:51:35', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (361, '2023-03-06 10:51:51', 2, '2860.0000', 'close', '5510.0000', 0, 0, '5510.0000', 0, 0, '', '2023-03-07 10:07:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (362, '2023-03-07 10:07:36', 2, '5450.0000', 'close', '10750.0000', 0, 0, '10750.0000', 0, 0, '', '2023-03-08 10:00:03', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (363, '2023-03-08 10:00:14', 2, '690.0000', 'close', '6130.0000', 0, 1, '6130.0000', 0, 1, '', '2023-03-09 09:53:06', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (364, '2023-03-09 09:53:32', 2, '600.0000', 'close', '3200.0000', 0, 0, '3200.0000', 0, 0, '', '2023-03-10 10:26:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (365, '2023-03-10 10:27:13', 2, '20.0000', 'close', '8800.0000', 0, 0, '8800.0000', 0, 0, '', '2023-03-11 11:31:50', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (366, '2023-03-11 11:32:15', 2, '790.0000', 'close', '4880.0000', 0, 0, '4880.0000', 0, 0, '', '2023-03-12 11:03:20', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (367, '2023-03-12 11:03:47', 2, '820.0000', 'close', '1690.0000', 0, 0, '1690.0000', 0, 0, '', '2023-03-13 09:33:48', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (368, '2023-03-13 09:34:03', 2, '630.0000', 'close', '9880.0000', 0, 1, '9880.0000', 0, 1, '', '2023-03-14 09:33:58', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (369, '2023-03-14 09:34:10', 2, '20.0000', 'close', '5230.0000', 0, 0, '5230.0000', 0, 0, '', '2023-03-15 09:37:24', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (370, '2023-03-15 09:37:39', 2, '1170.0000', 'close', '1170.0000', 0, 1, '1170.0000', 0, 1, '', '2023-03-24 01:35:44', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (371, '2023-03-24 01:36:17', 2, '1140.0000', 'close', '2720.0000', 0, 0, '2720.0000', 0, 0, '', '2023-03-24 01:41:16', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (372, '2023-03-24 01:41:41', 2, '2690.0000', 'close', '7440.0000', 0, 0, '7440.0000', 0, 0, '', '2023-03-24 01:50:29', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (373, '2023-03-24 01:50:47', 2, '3380.0000', 'close', '17030.0000', 0, 1, '17030.0000', 0, 1, '', '2023-03-24 09:04:51', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (374, '2023-03-24 09:05:07', 2, '2970.0000', 'close', '4810.0000', 0, 3, '4810.0000', 0, 3, '', '2023-03-24 09:30:31', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (375, '2023-03-24 09:30:46', 2, '2750.0000', 'close', '3020.0000', 0, 1, '3020.0000', 0, 1, '', '2023-03-24 09:34:19', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (376, '2023-03-24 09:34:45', 2, '2960.0000', 'close', '8930.0000', 0, 1, '8930.0000', 0, 1, '', '2023-03-24 09:48:09', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (377, '2023-03-24 09:48:28', 2, '2370.0000', 'close', '2770.0000', 0, 1, '2770.0000', 0, 1, '', '2023-03-24 09:54:24', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (378, '2023-03-24 09:54:41', 2, '2740.0000', 'close', '15890.0000', 0, 0, '15890.0000', 0, 0, '', '2023-03-24 10:10:36', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (379, '2023-03-24 10:10:52', 2, '1860.0000', 'close', '2860.0000', 0, 1, '2860.0000', 0, 1, '', '2023-03-25 23:42:32', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (380, '2023-03-25 23:43:24', 2, '2660.0000', 'close', '4670.0000', 0, 0, '4670.0000', 0, 0, '', '2023-03-26 10:45:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (381, '2023-03-26 10:46:10', 2, '4470.0000', 'close', '12370.0000', 0, 2, '12370.0000', 0, 2, '', '2023-03-27 10:54:24', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (382, '2023-03-27 10:55:32', 2, '1170.0000', 'close', '2850.0000', 0, 1, '2850.0000', 0, 1, '', '2023-03-28 10:34:36', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (383, '2023-03-28 10:35:01', 2, '2650.0000', 'close', '8140.0000', 0, 0, '8140.0000', 0, 0, '', '2023-03-29 10:44:00', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (384, '2023-03-29 10:44:16', 2, '1940.0000', 'close', '5110.0000', 0, 1, '5110.0000', 0, 1, '', '2023-03-30 10:19:55', NULL, 2);
INSERT INTO `sma_pos_register` (`id`, `date`, `user_id`, `cash_in_hand`, `status`, `total_cash`, `total_cheques`, `total_cc_slips`, `total_cash_submitted`, `total_cheques_submitted`, `total_cc_slips_submitted`, `note`, `closed_at`, `transfer_opened_bills`, `closed_by`) VALUES (385, '2023-03-30 10:20:10', 2, '4910.0000', 'open', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_pos_settings
#

DROP TABLE IF EXISTS `sma_pos_settings`;

CREATE TABLE `sma_pos_settings` (
  `pos_id` int(1) NOT NULL,
  `cat_limit` int(11) NOT NULL,
  `pro_limit` int(11) NOT NULL,
  `default_category` int(11) NOT NULL,
  `default_customer` int(11) NOT NULL,
  `default_biller` int(11) NOT NULL,
  `display_time` varchar(3) NOT NULL DEFAULT 'yes',
  `cf_title1` varchar(255) DEFAULT NULL,
  `cf_title2` varchar(255) DEFAULT NULL,
  `cf_value1` varchar(255) DEFAULT NULL,
  `cf_value2` varchar(255) DEFAULT NULL,
  `receipt_printer` varchar(55) DEFAULT NULL,
  `cash_drawer_codes` varchar(55) DEFAULT NULL,
  `focus_add_item` varchar(55) DEFAULT NULL,
  `add_manual_product` varchar(55) DEFAULT NULL,
  `customer_selection` varchar(55) DEFAULT NULL,
  `add_customer` varchar(55) DEFAULT NULL,
  `toggle_category_slider` varchar(55) DEFAULT NULL,
  `toggle_subcategory_slider` varchar(55) DEFAULT NULL,
  `cancel_sale` varchar(55) DEFAULT NULL,
  `suspend_sale` varchar(55) DEFAULT NULL,
  `print_items_list` varchar(55) DEFAULT NULL,
  `finalize_sale` varchar(55) DEFAULT NULL,
  `today_sale` varchar(55) DEFAULT NULL,
  `open_hold_bills` varchar(55) DEFAULT NULL,
  `close_register` varchar(55) DEFAULT NULL,
  `keyboard` tinyint(1) NOT NULL,
  `pos_printers` varchar(255) DEFAULT NULL,
  `java_applet` tinyint(1) NOT NULL,
  `product_button_color` varchar(20) NOT NULL DEFAULT 'default',
  `tooltips` tinyint(1) DEFAULT 1,
  `paypal_pro` tinyint(1) DEFAULT 0,
  `stripe` tinyint(1) DEFAULT 0,
  `rounding` tinyint(1) DEFAULT 0,
  `char_per_line` tinyint(4) DEFAULT 42,
  `pin_code` varchar(20) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT 'purchase_code',
  `envato_username` varchar(50) DEFAULT 'envato_username',
  `version` varchar(10) DEFAULT '3.4.52',
  `after_sale_page` tinyint(1) DEFAULT 0,
  `item_order` tinyint(1) DEFAULT 0,
  `authorize` tinyint(1) DEFAULT 0,
  `toggle_brands_slider` varchar(55) DEFAULT NULL,
  `remote_printing` tinyint(1) DEFAULT 1,
  `printer` int(11) DEFAULT NULL,
  `order_printers` varchar(55) DEFAULT NULL,
  `auto_print` tinyint(1) DEFAULT 0,
  `customer_details` tinyint(1) DEFAULT NULL,
  `local_printers` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`pos_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_pos_settings` (`pos_id`, `cat_limit`, `pro_limit`, `default_category`, `default_customer`, `default_biller`, `display_time`, `cf_title1`, `cf_title2`, `cf_value1`, `cf_value2`, `receipt_printer`, `cash_drawer_codes`, `focus_add_item`, `add_manual_product`, `customer_selection`, `add_customer`, `toggle_category_slider`, `toggle_subcategory_slider`, `cancel_sale`, `suspend_sale`, `print_items_list`, `finalize_sale`, `today_sale`, `open_hold_bills`, `close_register`, `keyboard`, `pos_printers`, `java_applet`, `product_button_color`, `tooltips`, `paypal_pro`, `stripe`, `rounding`, `char_per_line`, `pin_code`, `purchase_code`, `envato_username`, `version`, `after_sale_page`, `item_order`, `authorize`, `toggle_brands_slider`, `remote_printing`, `printer`, `order_printers`, `auto_print`, `customer_details`, `local_printers`) VALUES (1, 22, 20, 2, 1, 6, '1', '', '', '', '', NULL, 'x1C', 'Ctrl+F3', 'Ctrl+Shift+M', 'Ctrl+Shift+C', 'Ctrl+Shift+A', 'Ctrl+F11', 'Ctrl+F12', 'F4', 'F7', 'F9', 'F8', 'Ctrl+F1', 'Ctrl+F2', 'Ctrl+F10', 1, NULL, 0, 'default', 1, 0, 0, 0, 42, NULL, 'purchase_code', 'envato_username', '3.4.52', 0, 0, 0, '', 3, NULL, 'null', 0, 0, 1);


#
# TABLE STRUCTURE FOR: sma_price_groups
#

DROP TABLE IF EXISTS `sma_price_groups`;

CREATE TABLE `sma_price_groups` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;

INSERT INTO `sma_price_groups` (`id`, `name`) VALUES (1, 'Default');


#
# TABLE STRUCTURE FOR: sma_printers
#

DROP TABLE IF EXISTS `sma_printers`;

CREATE TABLE `sma_printers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(55) NOT NULL,
  `type` varchar(25) NOT NULL,
  `profile` varchar(25) NOT NULL,
  `char_per_line` tinyint(3) unsigned DEFAULT NULL,
  `path` varchar(255) DEFAULT NULL,
  `ip_address` varbinary(45) DEFAULT NULL,
  `port` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_product_photos
#

DROP TABLE IF EXISTS `sma_product_photos`;

CREATE TABLE `sma_product_photos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `photo` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_product_prices
#

DROP TABLE IF EXISTS `sma_product_prices`;

CREATE TABLE `sma_product_prices` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `price_group_id` int(11) NOT NULL,
  `price` decimal(25,4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `price_group_id` (`price_group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_product_variants
#

DROP TABLE IF EXISTS `sma_product_variants`;

CREATE TABLE `sma_product_variants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `name` varchar(55) NOT NULL,
  `cost` decimal(25,4) DEFAULT NULL,
  `price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unique_product_id_name` (`product_id`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_products
#

DROP TABLE IF EXISTS `sma_products`;

CREATE TABLE `sma_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `unit` int(11) DEFAULT NULL,
  `cost` decimal(25,4) DEFAULT NULL,
  `price` decimal(25,4) NOT NULL,
  `alert_quantity` decimal(15,4) DEFAULT 20.0000,
  `image` varchar(255) DEFAULT 'no_image.png',
  `category_id` int(11) NOT NULL,
  `subcategory_id` int(11) DEFAULT NULL,
  `cf1` varchar(255) DEFAULT NULL,
  `cf2` varchar(255) DEFAULT NULL,
  `cf3` varchar(255) DEFAULT NULL,
  `cf4` varchar(255) DEFAULT NULL,
  `cf5` varchar(255) DEFAULT NULL,
  `cf6` varchar(255) DEFAULT NULL,
  `quantity` decimal(15,4) DEFAULT 0.0000,
  `tax_rate` int(11) DEFAULT NULL,
  `track_quantity` tinyint(1) DEFAULT 1,
  `details` varchar(1000) DEFAULT NULL,
  `warehouse` int(11) DEFAULT NULL,
  `barcode_symbology` varchar(55) NOT NULL DEFAULT 'code128',
  `file` varchar(100) DEFAULT NULL,
  `product_details` text DEFAULT NULL,
  `tax_method` tinyint(1) DEFAULT 0,
  `type` varchar(55) NOT NULL DEFAULT 'standard',
  `supplier1` int(11) DEFAULT NULL,
  `supplier1price` decimal(25,4) DEFAULT NULL,
  `supplier2` int(11) DEFAULT NULL,
  `supplier2price` decimal(25,4) DEFAULT NULL,
  `supplier3` int(11) DEFAULT NULL,
  `supplier3price` decimal(25,4) DEFAULT NULL,
  `supplier4` int(11) DEFAULT NULL,
  `supplier4price` decimal(25,4) DEFAULT NULL,
  `supplier5` int(11) DEFAULT NULL,
  `supplier5price` decimal(25,4) DEFAULT NULL,
  `promotion` tinyint(1) DEFAULT 0,
  `promo_price` decimal(25,4) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `supplier1_part_no` varchar(50) DEFAULT NULL,
  `supplier2_part_no` varchar(50) DEFAULT NULL,
  `supplier3_part_no` varchar(50) DEFAULT NULL,
  `supplier4_part_no` varchar(50) DEFAULT NULL,
  `supplier5_part_no` varchar(50) DEFAULT NULL,
  `sale_unit` int(11) DEFAULT NULL,
  `purchase_unit` int(11) DEFAULT NULL,
  `brand` int(11) DEFAULT NULL,
  `slug` varchar(55) DEFAULT NULL,
  `featured` tinyint(1) DEFAULT NULL,
  `weight` decimal(10,4) DEFAULT NULL,
  `hsn_code` int(11) DEFAULT NULL,
  `views` int(11) NOT NULL DEFAULT 0,
  `hide` tinyint(1) NOT NULL DEFAULT 0,
  `second_name` varchar(255) DEFAULT NULL,
  `hide_pos` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `code` (`code`),
  KEY `category_id` (`category_id`),
  KEY `id` (`id`),
  KEY `id_2` (`id`),
  KEY `category_id_2` (`category_id`),
  KEY `unit` (`unit`),
  KEY `brand` (`brand`)
) ENGINE=MyISAM AUTO_INCREMENT=594 DEFAULT CHARSET=utf8;

INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (7, '11', 'Miracal Gro Osmocote 1KG', 3, '1875.0000', '2500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, 'miracal-gro-osmocote-1kg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (2, '12', 'Miracal Gro NPK 1KG', 3, '1875.0000', '2500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, 'miracal-gro-npk-1kg', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (3, '02', 'Zen Pot Wide S', 2, '220.0000', '300.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '39.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'zen-pot-wide-s', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (4, '05', 'Dracena (Potted)', 2, '300.0000', '400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'dracena-potted', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (5, '06', 'Zen Pot M ', 2, '250.0000', '350.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'zen-pot-m', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (6, '08', 'Zen Pot Tall M', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'zen-pot-tall-m', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (8, '14', '3pcs Garden Tools Set M ', 2, '150.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '3pcs-garden-tools-set-m', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (9, '33282664', 'Moon Cactus ', 2, '250.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '49.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'moon-cactus', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (258, '62267336', 'Victoria with busket ', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '62267336', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (11, '77245440', 'Lucky Bamboo Spiral Step', 2, '750.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '77245440', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (12, '51267664', 'Lucky Bamboo Big', 2, '1000.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51267664', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (13, '00034709', 'Painted Love Hoya', 2, '100.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '00034709', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (14, '27506698', 'DICHIDIA MELON', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27506698', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (15, '15389577', 'SENSEVERIA MIKADO', 2, '500.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '15389577', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (16, '65687548', 'SENSEVERIA BONCEL', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '65687548', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (17, '72182335', 'SENSEVERIA COLOR CAP', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'senseveria-color-cap', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (18, '96592653', 'SENSEVERIA RHYNO', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '96592653', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (19, '44836242', 'SENSEVERIA SILVER BLUE', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '44836242', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (20, '16748388', 'SENSEVERIA FRANCISII', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'senseveria-francisii', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (21, '26738846', 'SPANISH MOSS SET', 2, '400.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26738846', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (22, '01402428', 'BROMELIAD THAI', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'bromeliad-thai', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (23, '79409745', 'SPANISH MOSS', 2, '200.0000', '400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '79409745', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (279, '33099580', 'Plant Clip', 2, '120.0000', '200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '33099580', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (25, '84339014', 'MINI DENDROBIUM', 2, '200.0000', '400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '84339014', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (285, '40986136', 'Saaf 100gm', 2, '220.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40986136', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (27, '07316946', 'PHILODENDRON GOLDEN VIOLIN', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '07316946', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (28, '62083562', 'PHILODENDRON LUPINUM', 2, '1200.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '62083562', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (29, '24835571', 'PHILODENDRON GIGAS', 2, '2500.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '24835571', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (30, '93418363', 'PHILODENDRON GREEN SAW', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philodendron-green-saw', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (31, '81231523', 'PHILODENDRON BRANDIATUM', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '81231523', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (32, '53236471', 'PHILODENDRON CHERRY RED', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philodendron-cherry-red', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (33, '03006363', 'EPIPREMNUM AMPLISSIMUM SILVER', 2, '500.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03006363', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (34, '94599052', 'CEBU BLUE', 2, '1300.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '94599052', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (35, '81983767', 'MONOSTERA PERU', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'monostera-peru', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (36, '41780961', 'SYNGONIUM RED ARROW', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '41780961', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (344, '85524239', 'Adenium Arabicum ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '85524239', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (38, '3107739', 'ZZ SMALL', 2, '500.0000', '700.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '31077399', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (39, '24917109', 'ZZ BIG POT', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '24917109', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (40, '58132834', 'ZZ ZENZI', 2, '700.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '58132834', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (41, '11697504', 'SPIDER', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'spider', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (42, '14233360', 'PEPORIMA GREEN ', 2, '90.0000', '150.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '14233360', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (43, '28210704', 'PEPORIMA VERIEGATED', 2, '130.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'peporima-veriegated', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (44, '91825750', 'PHILODENDRON BRASIL BIG POT', 2, '450.0000', '900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91825750', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (45, '47418622', 'CRYPTHENTHUS', 2, '130.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '47418622', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (46, '32396546', 'AGOLONEMA WHITE', 2, '210.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'agolonema-white', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (47, '51995656', 'MILLION HEART VERIEGATED ', 2, '500.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51995656', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (48, '57487006', 'FICUS GRAFTED BONSAI', 2, '1500.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57487006', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (49, '21457857', 'PHILODENDRON BIRKIN', 2, '600.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21457857', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (50, '88680893', 'DUBIA', 2, '1750.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '88680893', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (51, '95981019', 'SHANGRILA', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '95981019', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (52, '75558838', 'VERIEGATED EPIPRENIUM', 2, '1700.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '75558838', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (53, '64694164', 'PHILODENDRON PAINTED LADY', 2, '1700.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '64694164', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (54, '14605298', 'PHILODENDRON S', 2, '110.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '14605298', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (55, '00297348', 'BIG PHILODENDRON', 2, '700.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'big-philodendron', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (239, '97108426', 'Euphorbia lectia ', 2, '1000.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '97108426', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (57, '32032116', 'AIR PLANT Bulbosa', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'air-plant-bulbosa', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (58, '02921723', 'FUNKIANA ON WOOD', 2, '750.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '02921723', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (59, '43064452', 'IONNANTHA DRUID ON WOOD', 2, '500.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '43064452', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (60, '23801668', 'IONNATHA VANHYNIGII', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '23801668', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (61, '83237150', 'IONNANTHA FUEGO ON WOOD ', 2, '500.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ionnantha-fuego-on-wood', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (62, '46851569', 'IONNANTHA FUEGO CLUMP', 2, '350.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '46851569', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (63, '43775956', 'DICHIDIA VERIGATED LEAF', 2, '400.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'dichidia-verigated-leaf', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (64, '51770830', 'BULBOSA ORCHIOD', 2, '750.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'bulbosa-orchiod', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 2, '450.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'dichidia-neckless-verigetted', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (66, '77547002', 'DICHIDIA BUBLE ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '77547002', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (67, '26136413', 'CATTLEYA ORCHID', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26136413', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (68, '03537982', 'SPP CATTLEYA ON WOOD ', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03537982', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (69, '56957008', 'CATACITUM ORCHID', 2, '1200.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '56957008', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (70, '98281106', 'VANDA ORCHID ', 2, '750.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '98281106', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (71, '53980043', 'Ionantha Ball', 2, '800.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ionantha-ball', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (72, '68672346', 'IONNATHA ON WOOD', 2, '500.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '68672346', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (73, '78968160', 'SENSEVERIA DRWAF', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '78968160', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (74, '12241939', 'ZEN TOB BIG ', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12241939', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (75, '91459819', '2.5 INCH COLOR POT', 2, '8.0000', '12.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '100.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91459819', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (76, '76306875', 'CLOUD POT', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76306875', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (77, '66007347', 'BIG DOLL RESIGN PLANTER ', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'big-doll-resign-planter', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (78, '70248389', 'MUSIC PLANTER', 2, '1200.0000', '1800.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '70248389', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (257, '67002273', 'Dymond Tob', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67002273', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (80, '63589701', 'WHITE PRINTED TOB', 2, '120.0000', '200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '63589701', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (81, '95295192', 'SUNSHINE POT', 2, '75.0000', '120.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'sunshine-pot', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (82, '39183869', 'TRAY WITH WHOLE ', 2, '175.0000', '300.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '39183869', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (83, '79775908', 'RESIN PLANTER C1', 2, '800.0000', '1350.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'resin-planter-c1', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (84, '27666711', 'RESIN PLANTER M2', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27666711', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (85, '67443382', 'RESIN PLNATER G3', 2, '450.0000', '700.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67443382', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (86, '08010277', 'RESIN PLANTER K2', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '08010277', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (87, '5200549', 'RESIN PLANTER E1', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '52005493', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (88, '29238547', 'RESIN PLANTER K7', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '29238547', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (89, '82658699', 'RESIN PLANTER DA', 2, '500.0000', '800.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'resin-planter-da', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (90, '87334901', 'RESIN PPANTER N4', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87334901', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (91, '61326340', 'RESIN BIG PLANTER ', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61326340', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (92, '87688869', 'ANIMAL HAND CRAFT PLANTER', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'animal-hand-craft-planter', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (93, '18394554', 'THAI JHURI', 2, '200.0000', '350.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '18394554', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (94, '86499263', 'SELF WATERING TRANSPARENT ', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'self-watering-transparent', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (95, '91943746', 'GROOT ', 2, '450.0000', '650.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91943746', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (96, '26699468', 'MIRACLE GRO PRUNING SHEARS', 2, '800.0000', '1250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26699468', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (97, '84986835', 'SHELLERY CARBON PRUNER ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '84986835', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (98, '20607197', 'HARD CUTTER ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '20607197', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (99, '22510797', 'RED NOSE CUTTER ', 2, '300.0000', '450.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '22510797', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (100, '61786707', 'PRUNING SHEARS RED ', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61786707', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (280, '87761269', 'Naitro 100ml', 2, '120.0000', '160.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87761269', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (102, '82430231', 'MINI TOOLS SET ', 2, '70.0000', '150.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '82430231', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (103, '38704330', 'TOOLS SET GIFT BOX', 2, '750.0000', '1200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'tools-set-gift-box', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '44690436', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (105, '51600376', 'GLOVES WITH CLAWS', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51600376', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (106, '06940400', 'CLEANING GLOVES', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '06940400', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (107, '20002901', ' 2L SPRAYER ORANGE', 2, '270.0000', '400.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '2l-sprayer-orange', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (108, '76776881', 'GROW LIGHT 10 W', 2, '250.0000', '350.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76776881', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (109, '28303880', 'GROW LIGHT PANEL', 2, '2000.0000', '2650.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '28303880', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (110, '71950745', 'SEEDLING TRAY WITH COVER', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'seedling-tray-with-cover', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (111, '31425516', 'NURSERY TRAY', 2, '200.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '31425516', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (112, '51346912', 'BIG CUTTER ', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'big-cutter', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (113, '02483091', '8 WAY SPRAYER HEAD', 2, '100.0000', '200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '02483091', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (114, '36957565', 'GRAFTING TAP', 2, '80.0000', '150.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '36957565', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (115, '83904738', 'TIE RIBON', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83904738', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (116, '76327589', 'HUMIDIFIER WOOD STYLE ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76327589', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (117, '13936928', 'HUMIDIFIER DEER', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'humidifier-deer', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (118, '70757607', 'HUMIDIFIER SMALL', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '70757607', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (119, '28814945', 'FRAGNENT OIL', 2, '120.0000', '200.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '53.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '28814945', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (120, '69110056', 'PLANT TAG MISSILE', 2, '4.0000', '7.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '140.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '69110056', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (121, '83740228', 'IRON BELCHA', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83740228', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (122, '92758147', '2.5 INCH POT TRAY', 2, '200.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '92758147', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (123, '04424126', '4 INCH POT TRAY ', 2, '200.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04424126', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (124, '67000649', 'ANTIQUE LOOK UV POT BIG', 2, '750.0000', '1150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67000649', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (125, '24721887', 'BARREL TOB BIG', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '24721887', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (126, '50528427', 'LAZZY NOZZEL', 2, '35.0000', '50.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '50528427', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (127, '14631786', 'PH METER DIGITAL', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '14631786', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (128, '58964119', 'PH METER ', 2, '500.0000', '600.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '58964119', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (129, '42608953', 'STEEL BELCHA', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '42608953', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (130, '97226489', 'GARDEN APROAN', 2, '250.0000', '350.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '97226489', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (131, '57685758', 'FERTILISER BOX', 2, '80.0000', '100.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57685758', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (132, '51287048', 'SMALL BELCHA ', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51287048', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (133, '58176268', 'ORCHID FOCUS BLOOM 300 ML', 2, '1250.0000', '1650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '58176268', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (134, '71760053', 'MIRACLE GRO NPK 1200GM', 3, '1800.0000', '2800.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, 'miracle-gro-npk-1200gm', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (135, '38349643', 'ORCHID FOCUS GROW', 2, '1250.0000', '1650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '38349643', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (136, '00863032', 'CACTUS & SUCCULENT FOCUS', 2, '1250.0000', '1650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '00863032', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (137, '68749706', 'HOUSE PLANT FOCUS', 2, '1250.0000', '1650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '68749706', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (226, '21257351', 'Thai Root Hormon', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'thai-root-hormon', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (139, '94387951', 'SEAWEED 1 L', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '94387951', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (140, '33991636', 'CAL MEG 1L', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '33991636', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (141, '86990658', 'PERLITE 2L', 2, '250.0000', '350.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '86990658', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (142, '44857076', 'SPAGHNUM MOSS 12L', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '44857076', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (143, '89351267', 'OSMOCOTE 250GM', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'osmocote-250gm', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (144, '70118098', 'NPK 250GM', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '70118098', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (145, '43356395', 'NPK 100GM', 2, '220.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '43356395', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (146, 'demo', 'Demo', 2, '10.0000', '15.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '94.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'demo', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (147, '34275643', 'GLASS WITH CERAMIC DOLL ', 2, '600.0000', '1050.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '34275643', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (148, '06330036', 'GLASS TUBE WITH STAND 1', 2, '400.0000', '750.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '06330036', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (149, '01269763', 'GLASS TUBE WITH STAND 2', 2, '750.0000', '1200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '01269763', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (282, '61225679', 'Mancer 100gm', 2, '120.0000', '170.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61225679', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (281, '96402267', 'Emetuf 50ml', 2, '110.0000', '150.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '96402267', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (152, '54127050', 'PLASTIC WATER VASE ', 2, '75.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'plastic-water-vase', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (153, '63407332', 'RATTAN HANGING POT', 2, '250.0000', '450.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '63407332', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (154, '66903672', 'IRIS UV PLANTER 7\\\"', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '66903672', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (213, '34176921', 'Air plant Hanging Stand', 2, '250.0000', '400.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '34176921', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 2, '220.0000', '400.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '98245533', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (157, '88534889', 'MESH POT 6CM', 2, '30.0000', '50.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '88534889', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (158, '28288452', 'GRAVITY POT', 2, '4500.0000', '7500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '28288452', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (159, '02891148', 'FLOWERING TABLET FERTILISER', 2, '200.0000', '350.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '02891148', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (160, '10237543', 'B-1 ROOT GROWER', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '10237543', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (162, '23510383', 'Hybrid Dendrobium orchid ', 2, '600.0000', '900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '23510383', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (163, '60285514', 'Transparent Mesh Pot ', 2, '75.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '22.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '60285514', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (164, '79323775', 'Hupergia ', 2, '1200.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '79323775', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (165, '48621422', 'Anthurium', 2, '1600.0000', '2200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48621422', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (166, '36023208', 'Fern ', 2, '900.0000', '1600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '36023208', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (167, '48885827', 'Kangaro Pocket', 2, '400.0000', '800.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48885827', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (168, '07964908', 'Silver Shartin', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'silver-shartin', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (268, '83437543', 'SEED (200)', 2, '170.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '185.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83437543', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (170, '52762464', 'Tetraspharma', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'tetraspharma', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (171, '66305946', 'Fitunia', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '66305946', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (172, '75049629', 'AmDrium Zippelianum', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'amdrium-zippelianum', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (173, '63588432', 'Ring Of Fire ', 2, '4000.0000', '6000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '63588432', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (174, '76806853', 'philo.Atabaponese', 2, '2000.0000', '3500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76806853', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (175, '61824284', 'Phelenopsis', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61824284', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (176, '48843043', 'zygo', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48843043', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (177, '08229328', 'Pink Splash ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '08229328', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (267, '69979880', 'WOOD STAND AIR PLANT', 2, '100.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'wood-stabd-air-plant', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (179, '25713355', 'Mounted Spp Den', 2, '800.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '25713355', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (180, '95222940', 'Maxalaria ', 2, '900.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '95222940', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (181, '50278507', 'lava brast', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'lava-brast', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (182, '52920385', 'Den Hibiki', 2, '900.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '52920385', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (183, '17151150', 'Senseveria pagoda', 2, '600.0000', '800.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '17151150', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (184, '44306670', 'Burlemax Verigatted ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'burlemax-verigatted', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (185, '68904433', 'Philo Tortum', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '68904433', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (186, '21212277', 'philo Cream Splash ', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21212277', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (187, '69718240', 'Philo Squamiferum', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '69718240', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (188, '92625394', 'Florida Ghost Mint ', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'florida-ghost-mint', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (189, '95207952', 'Philo 69686', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '95207952', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (190, '48872819', 'Melon With Busket', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48872819', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (191, '32906813', 'Love shape Senseveria', 2, '450.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '32906813', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (192, '54673266', 'Luck Bamboo Big stick', 2, '200.0000', '350.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '54673266', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (193, '17426260', 'Luck Bambo Spiral Stick', 2, '200.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '17426260', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (194, '16535351', 'Aglonema Color', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '16535351', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (195, '72984009', 'Lucky Bamboo Small', 2, '350.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72984009', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (196, '46584489', 'Lipistic', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '46584489', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (198, '44272783', 'Philodendron Red Emarland', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '44272783', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (199, '91200856', 'Lucky Bamboo 3 step', 2, '1000.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91200856', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (200, '04148228', '1 Litter Sprayer', 2, '180.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04148228', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (216, '49524419', 'RG Mug', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '49524419', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (260, '86423471', 'Mini 4 pcs tub', 2, '35.0000', '50.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '86423471', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (283, '44882476', 'Indrofil M-45', 2, '80.0000', '100.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'indrofil-m-45', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (284, '33347731', 'Flora 50ml', 2, '50.0000', '80.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '33347731', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (206, '03630608', 'Senseveria Drwaf Thai', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03630608', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (207, '31471473', 'senseveria whalfin', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '31471473', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (208, '93276343', 'plastic Terrarium Jar', 2, '100.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '93276343', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (209, '51591750', '6 corner ceramic ', 2, '100.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51591750', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (210, '85752820', 'Ceramic White Big', 2, '300.0000', '450.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '85752820', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (211, '19735813', 'creamic color bowl ', 2, '220.0000', '350.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '19735813', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (212, '20024744', 'Ceramic Bowl Small', 2, '100.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '15.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '20024744', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (214, '27889670', 'Mini Air Plant Stand', 2, '100.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27889670', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (215, '67662654', 'Glass Bulb ', 2, '300.0000', '450.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67662654', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (217, '82630821', 'Mini Sprayer', 2, '35.0000', '50.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '82630821', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (218, '39824435', 'Jute Pole Big ', 2, '30.0000', '50.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '39824435', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (219, '72884759', 'jute pole small', 2, '20.0000', '30.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'jute-pole-small', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (220, '85347259', 'vermi compost', 3, '35.0000', '60.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '85347259', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (221, '95442491', 'Scissor', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '95442491', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (222, '72597139', 'Plant note pad', 2, '50.0000', '200.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72597139', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (223, '91005899', 'Air Plant Myst', 2, '1250.0000', '1750.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91005899', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (224, '11987508', 'baby Bio House Plant', 2, '700.0000', '900.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '11987508', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (225, '21675471', 'Red Mite Spray', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21675471', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (227, '04614706', 'UK Root Hormon', 2, '500.0000', '650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04614706', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (228, '03917430', 'WIlko 1 L Fertiliser', 2, '2200.0000', '3000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03917430', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (229, '93138172', 'Peat Moss', 3, '1300.0000', '1650.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '93138172', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (230, '20161787', 'Cpatain Fungicide ', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '20161787', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (231, '25710966', 'Root Powder Small ', 2, '100.0000', '150.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'root-powder-small', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (232, '15417255', 'Fungicide 50gm', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '15417255', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (233, '03531371', 'Akadama Soil', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03531371', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (234, '72175034', 'Zeolite stone ', 2, '500.0000', '600.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72175034', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (235, '11431294', 'Vermiculite ', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '11431294', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (236, '30356263', 'Plant Tag hanging ', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '30356263', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (237, '51964534', 'Neem Khoil', 3, '80.0000', '100.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '51964534', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (238, '07455606', 'Seedling tools 4 pcs', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '07455606', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (240, '75492184', 'Jungle Bogie', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'jungle-bogie', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (241, '78219718', 'Tulumonia small ', 2, '250.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '78219718', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (242, '87951158', 'Aglonema Green ', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87951158', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (243, '19090261', 'Verigetted Phelonopsis ', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '19090261', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (244, '46625179', 'Kalanchos ', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '46625179', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (245, '44167983', 'philo.Melanocrysum', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philomelanocrysum', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (246, '64970785', 'Syngonium', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '64970785', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (247, '06119241', 'monostera esq', 2, '250.0000', '450.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '06119241', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (248, '99419799', 'jwel orchd', 2, '600.0000', '900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '99419799', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (249, '37342563', 'Philodendron Sp Peru', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '37342563', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (250, '15651501', 'moonlight', 2, '600.0000', '900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '15651501', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (251, '89029729', 'Rpahi Hay veriggeted', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '89029729', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (252, '33614746', 'philo. Neon', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '33614746', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (253, '55299742', 'Hoya 2k', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '55299742', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (254, '31700219', 'Hoya 1.5', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '31700219', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (255, '91803098', 'Hoya 2.5', 2, '1800.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91803098', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (256, '06157895', 'Hoya 3', 2, '2400.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '06157895', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (259, '96893813', 'Philo neon Big', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '96893813', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (261, '92200878', 'Fern S', 2, '500.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '92200878', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (262, '02739001', 'Peporima Verg. Big', 2, '400.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '02739001', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (263, '83925261', 'Trailing peoporima ', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83925261', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (264, '63489717', 'African Violet', 2, '450.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '63489717', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (412, '65156688', 'TOY M', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '65156688', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (266, '44158245', 'Hawarhtia', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '44158245', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (269, '86051367', 'SEED (150)', 2, '130.0000', '150.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '59.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '86051367', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (270, '61319065', 'SEED (100)', 2, '80.0000', '100.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61319065', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (271, '47649014', 'SEED (40)', 2, '30.0000', '40.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '47649014', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (272, '85526942', 'Granular Npk 8-24-24', 3, '1400.0000', '2000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '85526942', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (273, '43570472', 'Raphidophora Hay', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '43570472', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (274, '37141257', 'Double part Color Tub', 2, '35.0000', '50.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'double-part-color-tub', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (275, '32621776', 'Orchid Flowering Booster', 2, '300.0000', '400.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '32621776', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (276, '04135216', 'Ceramic Color Bowl L ', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04135216', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (277, '80818544', 'Concreate pot S', 2, '30.0000', '50.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'concreate-pot-s', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (278, '45978696', 'Concreat pot M', 2, '60.0000', '100.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '45978696', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (286, '26365495', 'DPGR', 2, '75.0000', '90.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26365495', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (287, '05315444', 'Artistic long Planter s', 2, '80.0000', '150.0000', '0.0000', 'cdc4c83bd125646e13c6bd825a4e392f.jpeg', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '05315444', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (288, '22783870', 'Artistic long Planter B', 2, '150.0000', '200.0000', '0.0000', '698d301aa12757b1defaf6200876a331.jpeg', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '22783870', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (289, '30018566', 'Electroplated Round Planter', 2, '140.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '30018566', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (290, '12624647', 'Artistic Round planter', 2, '160.0000', '200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12624647', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (427, '28587289', 'Aglonema 5', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '12.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '28587289', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (292, '19851098', 'Stylish Stripe Planter b', 2, '350.0000', '450.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '19851098', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (293, '99356481', 'Marbel planter', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '99356481', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (294, '61731312', 'Uv Firenze Wall Planter', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61731312', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (295, '45464062', 'Uv Firenze Wide Planter', 2, '400.0000', '500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '17.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '45464062', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (296, '90188448', 'UV Flower pot ', 2, '95.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '21.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '90188448', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (297, '13535342', 'Glossy Self Watering Planter', 2, '180.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '13535342', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (298, '54093978', 'Rattan Stand ', 2, '850.0000', '1200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'rattan-stand', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (299, '53672838', 'Resin D2', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '53672838', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (300, '27748537', 'Osmokot 13.13.13', 3, '1600.0000', '2200.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '27748537', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (301, '41132008', 'Osmokot 12.25.6', 3, '1800.0000', '2400.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '41132008', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (302, '52850949', 'NPK 10.52.17', 3, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '52850949', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (303, '50990480', 'Manjula Hanging', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '50990480', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (304, '69305033', 'Begonia', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '69305033', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (305, '42248228', 'Black zz', 2, '600.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '42248228', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (306, '03398645', 'Ruber', 2, '300.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03398645', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (307, '28473863', 'Euphorbia verg', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '28473863', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (308, '14337396', 'Philodendron b', 2, '250.0000', '400.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philodendron-b', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (309, '85368633', 'Philo neon Big Pole', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '85368633', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (310, '19536640', 'Monostera Esquleta ', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'monostera-esquleta', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (311, '02531031', 'Monostera Deliciosa', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '02531031', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (312, '65313386', 'Aglonema 1', 2, '250.0000', '350.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '65313386', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (313, '22361323', 'Aglonema 2', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '22361323', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (314, '85167717', 'Aglonema 3', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '85167717', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (315, '27100647', 'Aglonema 4', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27100647', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (316, '51031679', 'Philo. pedatum', 2, '900.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51031679', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (317, '49073858', 'Snow Queen ', 2, '150.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '49073858', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (318, '40799266', 'SYNGONIUM Crismas Holiday', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40799266', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (319, '00716849', 'MoonLight S', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '00716849', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (320, '21530917', 'Philo. Ecudorian', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21530917', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (321, '64685178', 'Philo. parisio Verde', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '64685178', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (322, '56110482', 'Philo. Splendid', 2, '4500.0000', '6000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '56110482', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (323, '52372789', 'Philo. Nangaritense', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '52372789', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (324, '93521508', 'Philo. Billietiae', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philo-billietiae', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (325, '25522346', 'Pink princess', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '25522346', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (326, '28746933', 'Raphidoohora Cryptantha', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '28746933', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (327, '85091215', 'Raphidoohora cealatocaulis', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '85091215', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (328, '62000880', 'Epipremnum variegated Big', 2, '5000.0000', '7500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'epipremnum-variegated-big', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (329, '47352214', 'Syngonium frosted Heart', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'syngonium-frosted-heart', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (330, '72522923', 'Syngonium Three King', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72522923', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (331, '34947943', 'Pink Splash Big', 2, '1200.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '34947943', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (332, '53235235', 'Calathia Golden Mosaic', 2, '1250.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '53235235', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (333, '09018704', 'Calathia Mosaic', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '09018704', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (334, '94199597', 'Calathia ', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '94199597', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (335, '81200669', 'Alocasia ', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '81200669', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (336, '48444140', 'fern Small', 2, '200.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48444140', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (337, '92857184', 'Pilea norfolk', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '92857184', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (338, '56488698', 'Moon Cactus Red', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '56488698', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (339, '26050934', 'Syngonium Albo Verg', 2, '600.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26050934', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (340, '65696053', 'NJoy Pothos', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '65696053', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (341, '02686278', 'Monostera Adinsoni', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '02686278', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (342, '42643313', 'Osmokot 500gm 14.14.14', 3, '700.0000', '1000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '42643313', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (343, '37152007', 'Snail Killer', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '37152007', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (345, '84980693', 'Senseveria Metalica', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'senseveria-metalica', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (346, '48777714', 'verigetted fern ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48777714', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (347, '45927746', 'glass vase ', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '45927746', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (348, '94516686', 'Philo. Mican ', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philo-mican', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (349, '81128168', 'Begonia T', 2, '600.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '81128168', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (350, '76094827', 'Lipistic Big yellow ', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76094827', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (351, '57860529', '2 Litter Sprayer with Vulb', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57860529', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (352, '55296642', 'Color stone 500g', 2, '70.0000', '100.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'color-stone-500g', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (353, '67911538', 'Crops Care', 2, '50.0000', '60.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67911538', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (354, '49485824', 'Euphorbia Francoisi', 2, '600.0000', '800.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '49485824', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (355, '89030971', 'philo Brazil s', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '89030971', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (356, '29617821', 'peoporima verg Thai ', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '29617821', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (357, '40772614', 'Cattelya Big', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40772614', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (358, '99246609', 'Solid Gold Big', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '99246609', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (359, '88375660', 'Philo.Gueldi ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '88375660', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (360, '07747335', 'Till. Xerographica ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '07747335', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (361, '29921673', 'Philo Gloriasum', 2, '1800.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '29921673', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (362, '37678201', 'Lucky Bamboo Golden Ring ', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '37678201', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (363, '90323088', 'Calathia orbifolia ', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '90323088', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (364, '67122033', 'Sciundupsis Argerious ', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67122033', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (365, '59080001', 'Den parisi', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '59080001', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (366, '76182407', 'peoporima argyreia', 2, '600.0000', '900.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'peoporima-thai', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (367, '73229268', 'Begonia maculata ', 2, '2500.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '73229268', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (368, '63277364', 'Zebrina (naunok)', 2, '600.0000', '800.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '63277364', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (369, '29796396', 'Gramo. Green ', 2, '1500.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '29796396', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (370, '38281816', 'Philo Warchezew', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '38281816', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (371, '67933855', 'Pitcher plant ', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67933855', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (372, '59471278', 'Enobi Big Pot ', 2, '1200.0000', '1800.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '59471278', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (373, '67910730', 'Philo Macdwel Big ', 2, '7000.0000', '10000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67910730', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (374, '27646289', 'Hydonphytum Formicarium', 2, '1000.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27646289', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (375, '75823196', 'Humidifier & Aroma Dufuser Big', 2, '1800.0000', '3000.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'humidifier-aroma-dufuser-big', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (376, '44852135', 'Color stone 1kg', 3, '120.0000', '200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '44852135', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (377, '74069968', 'Naitro 50ml', 2, '70.0000', '90.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '74069968', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (378, '75708593', 'Emetuf 25ml', 2, '60.0000', '90.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '75708593', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (379, '56291360', 'Siko 50ml', 2, '55.0000', '100.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '56291360', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (380, '75829195', 'Siko 100ml', 2, '100.0000', '190.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '75829195', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (381, '41008445', 'Essential Oil', 2, '250.0000', '400.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '41008445', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (382, '94298575', 'Mancer 500gm', 3, '400.0000', '690.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '94298575', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (383, '40896840', 'Green Tonic PGR', 2, '45.0000', '130.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40896840', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (384, '91229260', 'BROMELIAD THAI S', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91229260', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (385, '49994111', 'Stylish Stripe Planter color s', 2, '180.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '37.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '49994111', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (386, '68549735', 'Stylish Stripe Planter color M', 2, '200.0000', '350.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '68549735', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (387, '88192874', 'Zen Pot Metalica Big', 2, '650.0000', '850.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '88192874', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (388, '87398804', 'Zen Pot Tall Metalica M', 2, '600.0000', '850.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '11.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87398804', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (389, '60021183', 'Zen Metalica S', 2, '280.0000', '400.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '60021183', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (390, '66988109', 'Zen Metalica M', 2, '380.0000', '500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '24.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '66988109', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (391, '89877743', 'Zen Metalica L', 2, '480.0000', '650.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '89877743', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (392, '14849048', 'Garden Pod M', 2, '180.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'garden-pod-m', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (393, '62446910', 'Zen Hanging pod', 2, '300.0000', '450.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '62446910', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (394, '18806425', 'Mini Hanging Pod', 2, '70.0000', '150.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '16.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '18806425', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (395, '72918232', 'Fern  Philippine', 2, '900.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72918232', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (396, '40732224', 'Peru S', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40732224', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (397, '85158991', 'Scindupsis Silver lady ', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '85158991', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (398, '95341318', 'Senseveria Cleopetra ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '95341318', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (399, '61053416', 'Silver Zebra ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61053416', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (400, '77552458', 'Cebu Blue Big ', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '77552458', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (401, '38332626', 'Lupinum Big ', 2, '2500.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'lupinum-big', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (402, '87099053', 'Million herat shape ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87099053', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (403, '10498681', 'Air plant Ball ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '10498681', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (404, '37694427', 'cryptenthus big', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '37694427', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (405, '69849054', 'Plastic Stand tob', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '69849054', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (406, '55901923', 'Thai NPK 10-52-17', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '55901923', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (407, '23661246', 'Thai NPK 21-21-21', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '23661246', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (408, '03054245', 'Alpha Omega Bloom', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03054245', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (409, '31197682', 'Alpha Omega House plant', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '31197682', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (410, '86049659', 'SEED (50)', 2, '35.0000', '50.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '31.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '86049659', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (411, '36633513', 'vermi compost 5kg', 3, '220.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '36633513', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (413, '22733418', 'TOY S', 2, '100.0000', '150.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '38.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '22733418', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (428, '53896849', 'Aglonema 6', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '19.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '53896849', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (415, '38974763', 'Book 280', 2, '200.0000', '280.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'book-280', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (416, '37699670', 'Book 450', 2, '320.0000', '450.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 0, '37699670', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (417, '92460660', 'Book 300', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '92460660', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (418, '37588522', 'Book 220', 2, '150.0000', '220.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '37588522', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (419, '56636045', 'Book 200', 2, '140.0000', '200.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '56636045', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (420, '32612358', 'Book 400', 2, '270.0000', '400.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '32612358', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (421, '30002300', 'Book 250', 2, '170.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '30002300', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (521, '67089630', 'Garden Pod L', 2, '220.0000', '300.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67089630', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (423, '57636814', 'Hanging Bird Thai', 2, '400.0000', '600.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 0, 0, 0, '57636814', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (424, '77188704', 'Ceramic Wood Style', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '77188704', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (425, '69132898', 'Toy Mini 4pcs', 2, '80.0000', '100.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '57.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '69132898', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (426, '14071835', 'Butter Fly', 2, '30.0000', '50.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '46.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '14071835', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (429, '90163075', 'Aglonema 7', 2, '2000.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '90163075', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (430, '21514256', 'Senseverai Hahnii Big ', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'senseverai-hahnii-big', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (431, '98630352', 'Hoya Sunrise ', 2, '400.0000', '700.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '98630352', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (432, '92521439', 'Raphidoohora Hayii verg. ', 2, '1000.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '92521439', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (433, '16510893', 'Philodendron Rungsum', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philodendron-rungsum', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (434, '57995031', 'Fern With Coco Shell', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57995031', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (435, '11021741', 'Wild fern ', 2, '1800.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'wild-fern', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (436, '54948921', 'Philodendron Silver Sword', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '54948921', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (437, '29380615', 'Parisio verde Big', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '29380615', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (438, '00947711', 'Philodendron mayoi', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '00947711', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (439, '83290543', 'Raphidophora Hay Big ', 2, '2000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83290543', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (440, '91750949', 'Senseveria Boncel Big ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91750949', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (441, '42572053', 'Senseveria Gold Flame ', 2, '800.0000', '1200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '42572053', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (442, '17138235', 'Philo. Thai Sunrise ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '17138235', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (443, '27418502', 'Variegated ZZ', 2, '3000.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27418502', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (444, '91635945', 'Adensoni Indo. ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91635945', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (445, '81800808', 'Moonlight dark', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '81800808', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (446, '29217468', 'Scindupsus Platinum ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'scindupsus-platinum', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (447, '72901803', 'Philo Tortum Big', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72901803', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (448, '93803138', 'Syngonium Tricolor', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '93803138', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (449, '27598414', 'Shangrila Big ', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27598414', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (450, '74433323', 'Diffenbachia Big ', 2, '4000.0000', '6000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '58176268', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (466, '17763342', 'Philodendron Dragon Lime ', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '17763342', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (452, '41218792', 'peoprima Red', 2, '350.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '41218792', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (453, '93505738', 'small Trailing peoporima ', 2, '120.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '93505738', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (454, '95429654', 'peporima verg small', 2, '150.0000', '250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '95429654', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (455, '18818074', 'Coco Pole L', 2, '110.0000', '150.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '18818074', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (456, '07689641', 'Coco Pole M', 2, '70.0000', '100.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '07689641', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (457, '88884807', 'Coco Pole S', 2, '30.0000', '50.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '88884807', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (458, '95295008', 'Bird House', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'bird-house', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (459, '83233710', 'Toy', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '49.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83233710', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (460, '09782659', 'Adensoni Verg', 2, '6000.0000', '8000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '09782659', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (461, '67667255', 'Senseverai Hahnii Small', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67667255', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (462, '43381530', 'Monostera Thai Constalation Big', 2, '18000.0000', '27500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'monostera-thai-constalation-big', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (522, '68056588', 'Green Pot 4inchi', 2, '50.0000', '70.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '35.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '68056588', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (520, '48984898', 'Milk Confeti', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48984898', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (465, '86512066', 'Astrophytum Asteris Big', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '86512066', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (467, '53203502', 'Monostera deliciosa big ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '53203502', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (468, '27225059', 'Splendid Big ', 2, '5000.0000', '3500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27225059', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (469, '23037669', 'Philo. Fat boy', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '23037669', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (470, '62507647', 'Global Green', 2, '1800.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '62507647', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (471, '74981812', 'Xanido vereigated  ', 2, '3600.0000', '5000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '74981812', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (472, '87908060', 'Philodendron Tripadium ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87908060', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (473, '21904700', 'Silver Shatin Small ', 2, '100.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21904700', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (474, '45643281', 'Brasil Small ', 2, '120.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '45643281', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (475, '50561074', 'Silver lady Small', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '50561074', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (476, '54138267', 'ORCHID FOCUS Grow 1liter', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '54138267', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (477, '40372247', 'Wild fern Big', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40372247', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (478, '75238013', 'Monostera  Albo', 2, '12000.0000', '15000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '75238013', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (479, '68269511', 'Epi Marbel Verg. Big', 2, '7000.0000', '10000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '68269511', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (480, '38637086', 'Senseveria Beauty Queen ', 2, '3000.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '38637086', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (481, '21888825', 'SPAGHNUM MOSS newzealand', 2, '1400.0000', '1800.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21888825', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (482, '79803566', 'Osmokot 100gm  13.13.13', 2, '235.0000', '300.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '79803566', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (483, '08247109', 'Manjula S', 2, '150.0000', '300.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '08247109', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (484, '06524120', 'Niyon Pothos S', 2, '130.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '06524120', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (485, '15964763', 'Ceramic Glass S', 2, '250.0000', '400.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '15964763', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (486, '26750491', 'Flower vase L', 2, '650.0000', '1200.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26750491', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (487, '26757569', 'Flower vase S', 2, '300.0000', '550.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26757569', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (488, '49007515', 'Ceramic Color Bati 6\\\"', 2, '80.0000', '250.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'ceramic-color-bati-6', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (489, '10019321', 'Flower vase M', 2, '350.0000', '700.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '10019321', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (490, '96878912', 'Niyon Pothos Big', 2, '1200.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '96878912', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (491, '88790984', 'Senseveria Local Big', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'senseveria-local-big', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (492, '34491163', 'Moonlight Verigated', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '34491163', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (494, '41549189', 'Aglonema 8', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '41549189', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (495, '91094211', 'Devil Back Bone', 2, '130.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91094211', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (496, '27165880', 'Caktus Zimno S', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '20.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27165880', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (497, '82833386', 'Caktus Zimno M', 2, '400.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '13.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '82833386', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (498, '04415101', 'Lucky Bamboo Verigated Sprial big', 2, '1200.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04415101', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (499, '56022994', 'Lucky Bamboo Verigated S', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '56022994', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (500, '45642814', 'Lucky Bambo 5 step big', 2, '1600.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '45642814', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (501, '27976806', 'Lucky Bambo Green Big', 2, '1300.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '27976806', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (502, '32980308', 'Vertimake 50ml', 2, '90.0000', '100.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '32980308', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (503, '04718707', 'Toy 300', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04718707', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (504, '51459412', 'Toy 400', 2, '250.0000', '400.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51459412', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (505, '98909806', 'Toy 750', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '98909806', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (506, '51521519', 'Toy 250', 2, '170.0000', '250.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51521519', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (507, '88770464', 'Toy 500', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '88770464', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (508, '34824627', 'Toy 350', 2, '200.0000', '350.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '34824627', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (510, '61040889', 'Thai npk 20.20.20 1kg', 3, '2000.0000', '2500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 3, 3, 0, '61040889', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (511, '12706180', 'Vermiculite Thai', 2, '800.0000', '1000.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12706180', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (512, '03420741', 'Pumic stone ', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03420741', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (513, '37918833', 'Wood Bark ', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '37918833', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (514, '67018656', 'Cebu Verigated ', 2, '2000.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '67018656', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (515, '86200111', 'Aglonema 9', 2, '4000.0000', '5000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'aglonema-9', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (516, '48759507', 'MONOSTERA PERU VERIGATED S', 2, '2400.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48759507', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (517, '21688860', 'Anthurium 01', 2, '4000.0000', '5000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '21688860', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (518, '22657239', 'Black Mamba', 2, '5000.0000', '6000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '22657239', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (519, '57249590', 'Ruber Big', 2, '600.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57249590', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (523, '07770328', 'Thai Wood Item 01', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '07770328', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (524, '74056003', 'Thai Wood Item 02', 2, '300.0000', '400.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '74056003', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (525, '51913448', 'Thai Wood Item 03', 2, '450.0000', '600.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51913448', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (526, '08521390', 'Thai Wood Item 04', 2, '520.0000', '700.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '08521390', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (527, '51530781', 'Thai Wood Item 05', 2, '800.0000', '1000.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '51530781', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (528, '57790873', 'Thai Wood Item 06', 2, '220.0000', '300.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '9.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57790873', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (529, '99627949', 'Thai Wood Item 07', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '99627949', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (530, '50894057', 'Thai Ketly', 2, '350.0000', '450.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '50894057', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (531, '61322072', 'senseveria whalfin 2leaf', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '61322072', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (532, '19254733', 'Senseveria Boncel Big Double', 2, '2000.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '19254733', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (533, '18728118', 'Deshi Local Mix', 2, '300.0000', '500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '18728118', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (534, '57525691', 'Lucky Bamboo Spiral', 2, '700.0000', '1250.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '57525691', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (535, '12257176', 'White Princes', 2, '500.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12257176', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (536, '96619146', 'Burlemax', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '96619146', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (537, '20811261', 'Osmokot Box 5pcs', 2, '40.0000', '50.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '20811261', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (538, '04170236', 'Seedling tools 8 pcs', 2, '200.0000', '300.0000', '0.0000', 'no_image.png', 5, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '04170236', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (539, '26410617', 'Heart Leaf verigatted ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '26410617', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (540, '07166498', 'Philodendron Joepii', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philodendron-joepii', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (541, '19613543', 'Philodendron Strawberru Shake', 2, '8000.0000', '10000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '19613543', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (542, '82624063', 'Monostera Obliqua ', 2, '7500.0000', '10000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '82624063', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (543, '82350573', 'Calathia Lime ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '82350573', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (544, '70282666', 'Dubia big leaf ', 2, '2200.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '70282666', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (545, '94096454', 'Piper Verigatted', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '94096454', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (546, '17144576', 'Plowmani small', 2, '2200.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '17144576', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (567, '13455777', 'Funkiana Clump ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '13455777', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (548, '10997337', 'Philo Majestic', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '10997337', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (549, '73311689', 'Snow Driff', 2, '2700.0000', '3500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '73311689', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (550, '84001093', 'Philo Plowmani Black Face', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'philo-plowmani-black-face', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (551, '87951885', 'Philo Plowmani round face', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '87951885', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (552, '35882573', 'Thai White Princes ', 2, '1500.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '35882573', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (566, '69521248', 'philodendron alternans', 2, '6000.0000', '7500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '69521248', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (554, '62012412', 'Anthurium Pedatoraditum ', 2, '4500.0000', '6000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '62012412', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (555, '40256610', 'Aglonema 10', 2, '1700.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '7.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '40256610', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (556, '60644367', 'Epi Marbel', 2, '3800.0000', '5000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '60644367', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (557, '73192175', 'Scindupsis Silver Cloud', 2, '2200.0000', '3000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '73192175', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (558, '91120646', 'Scindupsis Sp', 2, '1600.0000', '2000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '91120646', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (559, '35988906', 'Philo melanocrysum Big', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '35988906', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (560, '72460639', 'Cylogena ', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '72460639', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (561, '76839694', 'Onchidium ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76839694', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (562, '58673395', 'Macdowle Small', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '58673395', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (563, '18931997', 'Philo El Choco Red  ', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '18931997', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (564, '94984162', 'Phillo Maxicana  ', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '94984162', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (568, '96453308', 'Ionantha clump', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '96453308', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (569, '18617686', 'Anthurium Vittariifolium', 2, '2500.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '18617686', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (570, '37034768', 'Philo Tortum s', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '37034768', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (572, '83271839', 'Key Ring', 2, '200.0000', '250.0000', '0.0000', 'no_image.png', 6, NULL, '', '', '', '', '', '', '23.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '83271839', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (573, '65934596', 'Leaf Shine', 2, '800.0000', '1250.0000', '0.0000', 'no_image.png', 3, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '65934596', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (574, '19340298', 'Anthurium Toba', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '6.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '19340298', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (575, '62854316', 'anthurium angelwing ', 2, '5000.0000', '7500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '62854316', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (576, '49423912', 'Burlemarx Fantasy', 2, '3500.0000', '5000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '49423912', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (577, '20339525', 'Raphidophora petrusa verg ', 2, '2500.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '20339525', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (578, '89397759', 'Raphidophora Big leaves  ', 2, '1500.0000', '2500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '89397759', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (579, '03175098', 'begonia thai 1', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '8.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '03175098', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (580, '24191591', 'begonia thai 2', 2, '1000.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '24191591', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (581, '39630654', 'aglonema pictus triclor  ', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '0.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '39630654', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (582, '80071736', 'Flower Vase XL  ', 2, '900.0000', '1500.0000', '0.0000', 'no_image.png', 4, NULL, '', '', '', '', '', '', '5.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '80071736', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (583, '12712286', 'aglonema 11', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12712286', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (584, '41421487', 'syngonium pink lava ', 2, '700.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '41421487', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (585, '75284701', 'Brandiatum Congo', 2, '2500.0000', '3500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '75284701', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (586, '93522899', 'thai fern ', 2, '1200.0000', '1800.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '93522899', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (587, '76340502', 'anthurium verg ', 2, '3500.0000', '5000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '76340502', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (588, '12592248', 'philo Holtiatum', 2, '3000.0000', '4000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '2.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12592248', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (589, '12397457', 'agave crysted', 2, '600.0000', '750.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '4.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '12397457', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (590, '45607651', 'orchid Mixed', 2, '1200.0000', '1500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '3.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'orchid-mixed', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (591, '06843771', 'orange marmaled verg', 2, '3500.0000', '4500.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '1.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '06843771', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (592, '48954838', 'Tulumonia L', 2, '750.0000', '1000.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', NULL, NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, '48954838', NULL, '0.0000', NULL, 0, 0, '', 0);
INSERT INTO `sma_products` (`id`, `code`, `name`, `unit`, `cost`, `price`, `alert_quantity`, `image`, `category_id`, `subcategory_id`, `cf1`, `cf2`, `cf3`, `cf4`, `cf5`, `cf6`, `quantity`, `tax_rate`, `track_quantity`, `details`, `warehouse`, `barcode_symbology`, `file`, `product_details`, `tax_method`, `type`, `supplier1`, `supplier1price`, `supplier2`, `supplier2price`, `supplier3`, `supplier3price`, `supplier4`, `supplier4price`, `supplier5`, `supplier5price`, `promotion`, `promo_price`, `start_date`, `end_date`, `supplier1_part_no`, `supplier2_part_no`, `supplier3_part_no`, `supplier4_part_no`, `supplier5_part_no`, `sale_unit`, `purchase_unit`, `brand`, `slug`, `featured`, `weight`, `hsn_code`, `views`, `hide`, `second_name`, `hide_pos`) VALUES (593, '95149162', 'Mican S', 2, '150.0000', '200.0000', '0.0000', 'no_image.png', 2, NULL, '', '', '', '', '', '', '10.0000', NULL, 1, '', NULL, 'code128', '', '', NULL, 'standard', 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 2, 2, 0, 'mican-s', NULL, '0.0000', NULL, 0, 0, '', 0);


#
# TABLE STRUCTURE FOR: sma_promos
#

DROP TABLE IF EXISTS `sma_promos`;

CREATE TABLE `sma_promos` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `product2buy` int(11) NOT NULL,
  `product2get` int(11) NOT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `description` text DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_purchase_items
#

DROP TABLE IF EXISTS `sma_purchase_items`;

CREATE TABLE `sma_purchase_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `purchase_id` int(11) DEFAULT NULL,
  `transfer_id` int(11) DEFAULT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(50) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_cost` decimal(25,4) NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(20) DEFAULT NULL,
  `discount` varchar(20) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `expiry` date DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `quantity_balance` decimal(15,4) DEFAULT 0.0000,
  `date` date NOT NULL,
  `status` varchar(50) NOT NULL,
  `unit_cost` decimal(25,4) DEFAULT NULL,
  `real_unit_cost` decimal(25,4) DEFAULT NULL,
  `quantity_received` decimal(15,4) DEFAULT NULL,
  `supplier_part_no` varchar(50) DEFAULT NULL,
  `purchase_item_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  `base_unit_cost` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `purchase_id` (`purchase_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1636 DEFAULT CHARSET=utf8;

INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1, 1, NULL, 2, '99324', 'Miracal Gro NPK 1KG', NULL, '1875.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9375.0000', '0.0000', '2021-12-16', 'received', '1875.0000', '1875.0000', '5.0000', NULL, NULL, 1, NULL, '5.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (2, 1, NULL, 1, '01', 'Hi', NULL, '12.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '240.0000', '19.0000', '2021-12-16', 'received', '12.0000', '12.0000', '20.0000', NULL, NULL, 1, NULL, '20.0000', NULL, NULL, NULL, NULL, '12.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (3, 2, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2021-12-16', 'received', '180.0000', '180.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (4, 3, NULL, 4, '05', 'Dracena (Potted)', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2021-12-16', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (5, 4, NULL, 5, '06', 'Zen Pot M ', NULL, '250.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2021-12-16', 'received', '250.0000', '250.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (6, 4, NULL, 6, '08', 'Zen Pot Tall M', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2021-12-16', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (7, 5, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18750.0000', '0.0000', '2021-12-28', 'received', '1875.0000', '1875.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (8, 6, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '114.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '28500.0000', '0.0000', '2022-01-05', 'received', '250.0000', '250.0000', '114.0000', NULL, NULL, 2, 'Pcs', '114.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (9, 6, NULL, 10, '66310160', 'Lucky Bamboo 2 Step', NULL, '300.0000', '43.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12900.0000', '43.0000', '2022-01-05', 'received', '300.0000', '300.0000', '43.0000', NULL, NULL, 2, 'Pcs', '43.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (10, 6, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6750.0000', '0.0000', '2022-01-05', 'received', '750.0000', '750.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (11, 6, NULL, 12, '51267664', 'Lucky Bamboo Big', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (12, 6, NULL, 13, '00034709', 'Painted Love Hoya', NULL, '100.0000', '46.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4600.0000', '0.0000', '2022-01-05', 'received', '100.0000', '100.0000', '46.0000', NULL, NULL, 2, 'Pcs', '46.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (13, 6, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (14, 6, NULL, 63, '43775956', 'DICHIDIA VERIGATED ', NULL, '400.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5600.0000', '0.0000', '2022-01-05', 'received', '400.0000', '400.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (15, 6, NULL, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', NULL, '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '-4.0000', '2022-01-05', 'received', '450.0000', '450.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (16, 6, NULL, 66, '77547002', 'DICHIDIA BUBLE ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (17, 6, NULL, 21, '26738846', 'SPANISH MOSS SET', NULL, '400.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-01-05', 'received', '400.0000', '400.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (18, 6, NULL, 23, '79409745', 'SPANISH MOSS', NULL, '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (19, 6, NULL, 22, '01402428', 'BROMELIAD THAI', NULL, '1000.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '20000.0000', '0.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (20, 6, NULL, 15, '15389577', 'SENSEVERIA MIKADO', NULL, '450.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6750.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (21, 6, NULL, 16, '65687548', 'SENSEVERIA BONCEL', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (22, 6, NULL, 17, '72182335', 'SENSEVERIA COLOR CAP', NULL, '600.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '-2.0000', '2022-01-05', 'received', '600.0000', '600.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (23, 6, NULL, 18, '96592653', 'SENSEVERIA RHYNO', NULL, '450.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4950.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (24, 6, NULL, 19, '44836242', 'SENSEVERIA SILVER BLUE', NULL, '450.0000', '27.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12150.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '27.0000', NULL, NULL, 2, 'Pcs', '27.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (25, 7, NULL, 24, '46674887', 'PHALAENOPSIS ORCHID', NULL, '1000.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '12.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (26, 7, NULL, 27, '07316946', 'PHILODENDRON GOLDEN VIOLIN', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-01-05', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (27, 7, NULL, 28, '62083562', 'PHILODENDRON LUPINUM', NULL, '1200.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10800.0000', '0.0000', '2022-01-05', 'received', '1200.0000', '1200.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (28, 7, NULL, 29, '24835571', 'PHILODENDRON GIGAS', NULL, '2500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-01-05', 'received', '2500.0000', '2500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (29, 7, NULL, 30, '93418363', 'PHILODENDRON GREEN SAW', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-01-05', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (30, 7, NULL, 31, '81231523', 'PHILODENDRON BRANDIATUM', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '-7.0000', '2022-01-05', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (31, 7, NULL, 32, '53236471', 'PHILODENDRON CHERRY RED', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-01-05', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (32, 7, NULL, 33, '03006363', 'EPIOREMNUM AMPLISSIMUM SILVER', NULL, '500.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (33, 7, NULL, 34, '94599052', 'CEBU BLUE', NULL, '1300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2600.0000', '-1.0000', '2022-01-05', 'received', '1300.0000', '1300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (34, 7, NULL, 35, '81983767', 'MONOSTERA PERU', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '-1.0000', '2022-01-05', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (35, 7, NULL, 36, '41780961', 'SYNGONIUM RED ARROW', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '-1.0000', '2022-01-05', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (36, 7, NULL, 26, '55132343', 'HUPERGIA  FERN', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '3.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (37, 8, NULL, 37, '69273220', 'RUBBER PLANT ', NULL, '350.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2450.0000', '0.0000', '2022-01-05', 'received', '350.0000', '350.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (38, 8, NULL, 38, '3107739', 'ZZ SMALL', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-01-05', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (39, 8, NULL, 39, '24917109', 'ZZ BIG POT', NULL, '600.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-01-05', 'received', '600.0000', '600.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (40, 8, NULL, 40, '58132834', 'ZZ ZENZI', NULL, '700.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-01-05', 'received', '700.0000', '700.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (41, 8, NULL, 41, '11697504', 'SPIDER', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-01-05', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (42, 8, NULL, 42, '14233360', 'PEPORIMA GREEN ', NULL, '90.0000', '50.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-01-05', 'received', '90.0000', '90.0000', '50.0000', NULL, NULL, 2, 'Pcs', '50.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (43, 8, NULL, 43, '28210704', 'PEPORIMA VERIEGATED', NULL, '130.0000', '50.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6500.0000', '0.0000', '2022-01-05', 'received', '130.0000', '130.0000', '50.0000', NULL, NULL, 2, 'Pcs', '50.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (44, 8, NULL, 44, '91825750', 'PHILODENDRON BRASIL BIG POT', NULL, '450.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4050.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (45, 8, NULL, 45, '47418622', 'CRYPTHENTHUS', NULL, '130.0000', '19.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2470.0000', '0.0000', '2022-01-05', 'received', '130.0000', '130.0000', '19.0000', NULL, NULL, 2, 'Pcs', '19.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (46, 8, NULL, 46, '32396546', 'AGOLONEMA WHITE', NULL, '210.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-01-05', 'received', '210.0000', '210.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '210.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (47, 9, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (48, 9, NULL, 48, '57487006', 'FICUS GRAFTED BONSAI', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '-4.0000', '2022-01-05', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (49, 9, NULL, 49, '21457857', 'PHILODENDRON BIRKIN', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-01-05', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (50, 9, NULL, 50, '88680893', 'DUBIA', NULL, '1750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '-2.0000', '2022-01-05', 'received', '1750.0000', '1750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (51, 9, NULL, 55, '00297348', 'BIG PHILODENDRON', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-01-05', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (52, 9, NULL, 56, '88151548', 'FERN', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '2.0000', '2022-01-05', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (53, 9, NULL, 57, '32032116', 'AIR PLANT FLEXOUSA ', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (54, 9, NULL, 58, '02921723', 'FUNKIANA ON WOOD', NULL, '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-01-05', 'received', '750.0000', '750.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (55, 9, NULL, 59, '43064452', 'IONNANTHA DRUID ON WOOD', NULL, '500.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (56, 9, NULL, 60, '23801668', 'IONNATHA VANHYNIGII', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-01-05', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (57, 10, NULL, 61, '83237150', 'IONNANTHA FUEGO ON WOOD ', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (58, 10, NULL, 62, '46851569', 'IONNANTHA FUEGO CLUMP', NULL, '350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-01-05', 'received', '350.0000', '350.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (59, 10, NULL, 67, '26136413', 'CATTLEYA ORCHID', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-01-05', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (60, 10, NULL, 64, '51770830', 'BULBOSA ORCHIOD', NULL, '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-01-05', 'received', '750.0000', '750.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (61, 10, NULL, 30, '93418363', 'PHILODENDRON GREEN SAW', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-01-05', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (62, 10, NULL, 69, '56957008', 'CATACITUM ORCHID', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-01-05', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (63, 10, NULL, 68, '03537982', 'SPP CATTLEYA ON WOOD ', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-01-05', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (64, 10, NULL, 70, '98281106', 'VANDA ORCHID ', NULL, '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '-2.0000', '2022-01-05', 'received', '750.0000', '750.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (65, 10, NULL, 53, '64694164', 'PHILODENDRON PAINTED LADY', NULL, '1700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3400.0000', '2.0000', '2022-01-05', 'received', '1700.0000', '1700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (66, 11, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (67, 11, NULL, 75, '91459819', '2.5 INCH COLOR POT', NULL, '8.0000', '575.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4600.0000', '0.0000', '2022-01-05', 'received', '8.0000', '8.0000', '575.0000', NULL, NULL, 2, 'Pcs', '575.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (68, 11, NULL, 76, '76306875', 'CLOUD POT', NULL, '150.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '4.0000', '2022-01-05', 'received', '150.0000', '150.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (69, 11, NULL, 77, '66007347', 'BIG DOLL RESIGN PLANTER ', NULL, '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-01-05', 'received', '2000.0000', '2000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (70, 11, NULL, 78, '70248389', 'MUSIC PLANTER', NULL, '1200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-01-05', 'received', '1200.0000', '1200.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (71, 11, NULL, 80, '63589701', 'WHITE PRINTED TOB', NULL, '70.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '630.0000', '0.0000', '2022-01-05', 'received', '70.0000', '70.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (72, 11, NULL, 81, '95295192', 'SUNSHINE POT', NULL, '75.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-01-05', 'received', '75.0000', '75.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (73, 11, NULL, 82, '39183869', 'TRAY WITH WHOLE ', NULL, '175.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-01-05', 'received', '175.0000', '175.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '175.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (74, 11, NULL, 83, '79775908', 'RESIN PLANTER C1', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-01-05', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (75, 11, NULL, 84, '27666711', 'RESIN PLANTER M2', NULL, '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '3.0000', '2022-01-05', 'received', '400.0000', '400.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (76, 11, NULL, 85, '67443382', 'RESIN PLNATER G3', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-01-05', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (77, 11, NULL, 86, '08010277', 'RESIN PLANTER K2', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-01-05', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (78, 11, NULL, 87, '5200549', 'RESIN PLANTER E1', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (79, 11, NULL, 88, '29238547', 'RESIN PLANTER K7', NULL, '350.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2450.0000', '0.0000', '2022-01-05', 'received', '350.0000', '350.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (80, 11, NULL, 90, '87334901', 'RESIN PPANTER N4', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (81, 11, NULL, 91, '61326340', 'RESIN BIG PLANTER ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-01-05', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (82, 11, NULL, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', NULL, '800.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '-2.0000', '2022-01-05', 'received', '800.0000', '800.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (83, 11, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '46.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9200.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '46.0000', NULL, NULL, 2, 'Pcs', '46.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (84, 11, NULL, 94, '86499263', 'SELF WATERING TRANSPARENT ', NULL, '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-01-05', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (85, 11, NULL, 95, '91943746', 'GROOT ', NULL, '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-01-05', 'received', '450.0000', '450.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (86, 12, NULL, 5, '06', 'Zen Pot M ', NULL, '250.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-01-05', 'received', '250.0000', '250.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (87, 12, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5400.0000', '0.0000', '2022-01-05', 'received', '180.0000', '180.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (88, 12, NULL, 6, '08', 'Zen Pot Tall M', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-01-05', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (89, 13, NULL, 89, '82658699', 'RESIN PLANTER DA', NULL, '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (90, 14, NULL, 96, '26699468', 'MIRACLE GRO PRUNING SHEARS', NULL, '800.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '2.0000', '2022-01-05', 'received', '800.0000', '800.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (91, 14, NULL, 97, '84986835', 'SHELLERY CARBON PRUNER ', NULL, '1500.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '13500.0000', '7.0000', '2022-01-05', 'received', '1500.0000', '1500.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (92, 14, NULL, 98, '20607197', 'HARD CUTTER ', NULL, '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (93, 14, NULL, 99, '22510797', 'RED NOSE CUTTER ', NULL, '300.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-01-05', 'received', '300.0000', '300.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (94, 14, NULL, 100, '61786707', 'PRUNING SHEARS RED ', NULL, '300.0000', '17.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5100.0000', '0.0000', '2022-01-05', 'received', '300.0000', '300.0000', '17.0000', NULL, NULL, 2, 'Pcs', '17.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (95, 14, NULL, 101, '51039717', 'TOOLS SET 3 PCS M', NULL, '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '4.0000', '2022-01-05', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (96, 14, NULL, 102, '82430231', 'MINI TOOLS SET ', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-01-05', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (97, 14, NULL, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', NULL, '200.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (98, 14, NULL, 105, '51600376', 'GLOVES WITH CLAWS', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-01-05', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (99, 14, NULL, 106, '06940400', 'CLEANING GLOVES', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-01-05', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (100, 14, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1920.0000', '0.0000', '2022-01-05', 'received', '160.0000', '160.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (101, 14, NULL, 108, '76776881', 'GROW LIGHT 10 W', NULL, '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-01-05', 'received', '250.0000', '250.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (102, 14, NULL, 109, '28303880', 'GROW LIGHT PANEL', NULL, '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-01-05', 'received', '2000.0000', '2000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (103, 14, NULL, 110, '71950745', 'SEEDLING TRAY WITH COVER', NULL, '200.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (104, 14, NULL, 111, '31425516', 'NURSERY TRAY', NULL, '200.0000', '41.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8200.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '41.0000', NULL, NULL, 2, 'Pcs', '41.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (105, 14, NULL, 112, '51346912', 'BIG CUTTER ', NULL, '800.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '3.0000', '2022-01-05', 'received', '800.0000', '800.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (106, 14, NULL, 113, '02483091', '8 WAY SPRAYER HEAD', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (107, 14, NULL, 114, '36957565', 'GRAFTING TAP', NULL, '80.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-01-05', 'received', '80.0000', '80.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (108, 14, NULL, 115, '83904738', 'TIE RIBON', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2022-01-05', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (109, 14, NULL, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', NULL, '1500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-01-05', 'received', '1500.0000', '1500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (110, 14, NULL, 117, '13936928', 'HUMIDIFIER DEER', NULL, '1000.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '2.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (111, 14, NULL, 118, '70757607', 'HUMIDIFIER SMALL', NULL, '800.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '4.0000', '2022-01-05', 'received', '800.0000', '800.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (112, 14, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '27.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3240.0000', '0.0000', '2022-01-05', 'received', '120.0000', '120.0000', '27.0000', NULL, NULL, 2, 'Pcs', '27.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (113, 15, NULL, 103, '38704330', 'TOOLS SET GIFT BOX', NULL, '750.0000', '13.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9750.0000', '8.0000', '2022-01-05', 'received', '750.0000', '750.0000', '13.0000', NULL, NULL, 2, 'Pcs', '13.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (114, 15, NULL, 130, '97226489', 'GARDEN APROAN', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-01-05', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (115, 15, NULL, 120, '69110056', 'PLANT TAG MISSILE', NULL, '4.0000', '300.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '140.0000', '2022-01-05', 'received', '4.0000', '4.0000', '300.0000', NULL, NULL, 2, 'Pcs', '300.0000', NULL, NULL, NULL, NULL, '4.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (116, 15, NULL, 121, '83740228', 'IRON BELCHA', NULL, '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '1.0000', '2022-01-05', 'received', '350.0000', '350.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (117, 15, NULL, 129, '42608953', 'STEEL BELCHA', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2022-01-05', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (118, 15, NULL, 122, '92758147', '2.5 INCH POT TRAY', NULL, '200.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (119, 15, NULL, 123, '04424126', '4 INCH POT TRAY ', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (120, 15, NULL, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', NULL, '750.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-01-05', 'received', '750.0000', '750.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (121, 15, NULL, 125, '24721887', 'BARREL TOB BIG', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-05', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (122, 15, NULL, 126, '50528427', 'LAZZY NOZZEL', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-01-05', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (123, 15, NULL, 127, '14631786', 'PH METER DIGITAL', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-01-05', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (124, 15, NULL, 128, '58964119', 'PH METER ', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-01-05', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (125, 15, NULL, 131, '57685758', 'FERTILISER BOX', NULL, '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '80.0000', '0.0000', '2022-01-05', 'received', '80.0000', '80.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (126, 16, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '17.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3060.0000', '0.0000', '2022-01-05', 'received', '180.0000', '180.0000', '17.0000', NULL, NULL, 2, 'Pcs', '17.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (127, 17, NULL, 146, 'demo', 'Demo', NULL, '1.0000', '100.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '100.0000', '94.0000', '2022-01-06', 'received', '1.0000', '1.0000', '100.0000', NULL, NULL, 2, 'Pcs', '100.0000', NULL, NULL, NULL, NULL, '1.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (128, 18, NULL, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', NULL, '600.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '5.0000', '2022-01-13', 'received', '600.0000', '600.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (129, 19, NULL, 155, '84760571', 'TRANSPARENT MESH POT', NULL, '75.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '40.0000', '2022-01-13', 'received', '75.0000', '75.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (130, 19, NULL, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', NULL, '185.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3700.0000', '0.0000', '2022-01-13', 'received', '185.0000', '185.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '185.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (131, 19, NULL, 154, '66903672', 'IRIS UV PLANTER 7\\\"', NULL, '150.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-01-13', 'received', '150.0000', '150.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (132, 19, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '32.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-01-13', 'received', '250.0000', '250.0000', '32.0000', NULL, NULL, 2, 'Pcs', '32.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (133, 19, NULL, 148, '06330036', 'GLASS TUBE WITH STAND 1', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-01-13', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (134, 19, NULL, 149, '01269763', 'GLASS TUBE WITH STAND 2', NULL, '750.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-01-13', 'received', '750.0000', '750.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (135, 19, NULL, 150, '37726549', 'AIR PLANT STAND DYMOND S', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '10.0000', '2022-01-13', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (136, 19, NULL, 151, '59630646', 'AIR PLANT STAND DYMOND B', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '10.0000', '2022-01-13', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (137, 19, NULL, 152, '54127050', 'PLASTIC WATER VASE ', NULL, '75.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-01-13', 'received', '75.0000', '75.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (138, 20, NULL, 157, '88534889', 'MESH POT 6CM', NULL, '30.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '1.0000', '2022-01-13', 'received', '30.0000', '30.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (139, 20, NULL, 158, '28288452', 'GRAVITY POT', NULL, '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '-1.0000', '2022-01-13', 'received', '4500.0000', '4500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (140, 20, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-13', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (141, 21, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-13', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (142, 22, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-01-13', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (143, 23, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-01-13', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (144, 24, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-01-13', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (145, NULL, NULL, 142, '44857076', 'SPAGHNUM MOSS 12L', NULL, '500.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '500.0000', '0.0000', '2022-02-20', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (146, NULL, NULL, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', NULL, '1250.0000', '1.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '1250.0000', '0.0000', '2022-02-20', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (147, 25, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-02-23', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (148, 26, NULL, 56, '88151548', 'FERN', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '15.0000', '2022-03-14', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (149, 26, NULL, 26, '55132343', 'HUPERGIA  FERN', NULL, '1000.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '16000.0000', '16.0000', '2022-03-14', 'received', '1000.0000', '1000.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (150, 26, NULL, 165, '48621422', 'Anthurium', NULL, '1350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6750.0000', '-1.0000', '2022-03-14', 'received', '1350.0000', '1350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (151, 27, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '0.0000', '2022-03-14', 'received', '350.0000', '350.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (152, 28, NULL, 203, '23973222', 'Test 01', NULL, '500.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '18.0000', '2022-03-16', 'received', '500.0000', '500.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (153, 28, NULL, 204, '56832000', 'Test 02', NULL, '1000.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '20000.0000', '18.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (154, 28, NULL, 205, '11912321', 'Test 03', NULL, '1500.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '30000.0000', '19.0000', '2022-03-16', 'received', '1500.0000', '1500.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (155, 29, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '0.0000', '2022-03-16', 'received', '1200.0000', '1200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (156, 30, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-03-16', 'received', '200.0000', '200.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (157, 30, NULL, 192, '54673266', 'Luck Bamboo Big stick', NULL, '200.0000', '22.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4400.0000', '-1.0000', '2022-03-16', 'received', '200.0000', '200.0000', '22.0000', NULL, NULL, 2, 'Pcs', '22.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (158, 31, NULL, 24, '46674887', 'PHALAENOPSIS ORCHID', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '2.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (159, 32, NULL, 175, '61824284', 'Phelenopsis', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '-1.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (160, 33, NULL, 206, '03630608', 'Senseveria Drwaf Thai', NULL, '300.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-03-16', 'received', '300.0000', '300.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (161, 34, NULL, 20, '16748388', 'SENSEVERIA FRANCISII', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-03-16', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (162, 35, NULL, 73, '78968160', 'SENSEVERIA DRWAF', NULL, '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '-1.0000', '2022-03-16', 'received', '150.0000', '150.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (163, 36, NULL, 191, '32906813', 'Love shape Senseveria', NULL, '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-03-16', 'received', '450.0000', '450.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (164, 37, NULL, 207, '31471473', 'senseveria whalfin', NULL, '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-03-16', 'received', '400.0000', '400.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (165, 38, NULL, 183, '17151150', 'Senseveria pagoda', NULL, '600.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-03-16', 'received', '600.0000', '600.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (166, 39, NULL, 208, '93276343', 'plastic Terrarium Jar', NULL, '100.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '-4.0000', '2022-03-16', 'received', '100.0000', '100.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (167, 40, NULL, 209, '51591750', '6 corner ceramic ', NULL, '100.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-03-16', 'received', '100.0000', '100.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (168, 41, NULL, 210, '85752820', 'Ceramic White Big', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-16', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (169, 42, NULL, 211, '19735813', 'creamic color bowl ', NULL, '180.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2022-03-16', 'received', '180.0000', '180.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (170, 43, NULL, 212, '20024744', 'Ceramic Bowl Small', NULL, '100.0000', '17.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1700.0000', '0.0000', '2022-03-16', 'received', '100.0000', '100.0000', '17.0000', NULL, NULL, 2, 'Pcs', '17.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (171, 44, NULL, 155, '84760571', 'TRANSPARENT MESH POT', NULL, '75.0000', '33.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2475.0000', '33.0000', '2022-03-16', 'received', '75.0000', '75.0000', '33.0000', NULL, NULL, 2, 'Pcs', '33.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (172, 45, NULL, 155, '84760571', 'TRANSPARENT MESH POT', NULL, '75.0000', '33.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2475.0000', '33.0000', '2022-03-16', 'received', '75.0000', '75.0000', '33.0000', NULL, NULL, 2, 'Pcs', '33.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (173, 46, NULL, 163, '60285514', 'Transparent Mesh Pot ', NULL, '75.0000', '33.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2475.0000', '0.0000', '2022-03-16', 'received', '75.0000', '75.0000', '33.0000', NULL, NULL, 2, 'Pcs', '33.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (174, 47, NULL, 213, '34176921', 'Air plant Hanging Stand', NULL, '250.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '8.0000', '2022-03-16', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (175, 48, NULL, 214, '27889670', 'Mini Air Plant Stand', NULL, '100.0000', '35.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-03-16', 'received', '100.0000', '100.0000', '35.0000', NULL, NULL, 2, 'Pcs', '35.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (176, 49, NULL, 215, '67662654', 'Glass Bulb ', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '3.0000', '2022-03-16', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (177, 50, NULL, 216, '49524419', 'RG Mug', NULL, '200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '1.0000', '2022-03-16', 'received', '200.0000', '200.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (178, 51, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-03-16', 'received', '180.0000', '180.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (179, 52, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '315.0000', '0.0000', '2022-03-16', 'received', '35.0000', '35.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (180, 53, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-03-16', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (181, 54, NULL, 218, '39824435', 'Jute Pole Big ', NULL, '30.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '-7.0000', '2022-03-16', 'received', '30.0000', '30.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (182, 54, NULL, 219, '72884759', 'jute pole small', NULL, '20.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '220.0000', '-1.0000', '2022-03-16', 'received', '20.0000', '20.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (183, 55, NULL, 221, '95442491', 'Scissor', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-03-16', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (184, 56, NULL, 222, '72597139', 'Plant note pad', NULL, '50.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-03-16', 'received', '50.0000', '50.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (185, 57, NULL, 223, '91005899', 'Air Plant Myst', NULL, '1250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-03-16', 'received', '1250.0000', '1250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (186, 57, NULL, 225, '21675471', 'Red Mite Spray', NULL, '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-03-16', 'received', '350.0000', '350.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (187, 57, NULL, 224, '11987508', 'baby Bio House Plant', NULL, '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '1.0000', '2022-03-16', 'received', '700.0000', '700.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (188, 58, NULL, 137, '68749706', 'HOUSE PLANT FOCUS', NULL, '1250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-03-16', 'received', '1250.0000', '1250.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (189, 58, NULL, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-03-16', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (190, 59, NULL, 135, '38349643', 'ORCHID FOCUS GROW', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-03-16', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (191, 60, NULL, 144, '70118098', 'NPK 250GM', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-16', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (192, 61, NULL, 226, '21257351', 'Thai Root Hormon', NULL, '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-03-16', 'received', '350.0000', '350.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (193, 61, NULL, 227, '04614706', 'UK Root Hormon', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-03-16', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (194, 61, NULL, 228, '03917430', 'WIlko 1 L Fertiliser', NULL, '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '0.0000', '2022-03-16', 'received', '2200.0000', '2200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (195, 62, NULL, 139, '94387951', 'SEAWEED 1 L', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '1.0000', '2022-03-16', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (196, 63, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '385.0000', '0.0000', '2022-03-16', 'received', '35.0000', '35.0000', '11.0000', NULL, NULL, 3, 'KG', '11.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (197, 64, NULL, 229, '93138172', 'Peat Moss', NULL, '1300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2600.0000', '1.0000', '2022-03-16', 'received', '1300.0000', '1300.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (198, 65, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-03-16', 'received', '300.0000', '300.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (199, 66, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-16', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (200, 67, NULL, 232, '15417255', 'Fungicide 50gm', NULL, '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-03-16', 'received', '200.0000', '200.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (201, 68, NULL, 235, '11431294', 'Vermiculite ', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '1.0000', '2022-03-16', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (202, 68, NULL, 234, '72175034', 'Zeolite stone ', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '1.0000', '2022-03-16', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (203, 68, NULL, 233, '03531371', 'Akadama Soil', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-03-16', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (204, 69, NULL, 236, '30356263', 'Plant Tag hanging ', NULL, '150.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-03-16', 'received', '150.0000', '150.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (205, 70, NULL, 238, '07455606', 'Seedling tools 4 pcs', NULL, '150.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '4.0000', '2022-03-16', 'received', '150.0000', '150.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (206, 70, NULL, 237, '51964534', 'Neem Khoil', NULL, '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '160.0000', '0.0000', '2022-03-16', 'received', '80.0000', '80.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (207, 71, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '13.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '11700.0000', '-4.0000', '2022-03-16', 'received', '900.0000', '900.0000', '13.0000', NULL, NULL, 2, 'Pcs', '13.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (208, 72, NULL, 239, '97108426', 'Euphorbia lectia ', NULL, '1000.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '-1.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (209, 72, NULL, 35, '81983767', 'MONOSTERA PERU', NULL, '400.0000', '17.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6800.0000', '0.0000', '2022-03-16', 'received', '400.0000', '400.0000', '17.0000', NULL, NULL, 2, 'Pcs', '17.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (210, 72, NULL, 240, '75492184', 'Jungle Bogie', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (211, 73, NULL, 54, '14605298', 'PHILODENDRON S', NULL, '110.0000', '19.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2090.0000', '0.0000', '2022-03-16', 'received', '110.0000', '110.0000', '19.0000', NULL, NULL, 2, 'Pcs', '19.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (212, 74, NULL, 241, '78219718', 'Tulumonia small ', NULL, '250.0000', '22.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5500.0000', '0.0000', '2022-03-16', 'received', '250.0000', '250.0000', '22.0000', NULL, NULL, 2, 'Pcs', '22.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (213, 75, NULL, 194, '16535351', 'AGloONEMA COLOR', NULL, '400.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6400.0000', '0.0000', '2022-03-16', 'received', '400.0000', '400.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (214, 76, NULL, 242, '87951158', 'Aglonema Green ', NULL, '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '2.0000', '2022-03-16', 'received', '300.0000', '300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (215, 77, NULL, 243, '19090261', 'Verigetted Phelonopsis ', NULL, '1200.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8400.0000', '0.0000', '2022-03-16', 'received', '1200.0000', '1200.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (216, 77, NULL, 244, '46625179', 'Kalanchos ', NULL, '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-03-16', 'received', '150.0000', '150.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (217, 77, NULL, 245, '44167983', 'philo.Melanocrysum', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '-4.0000', '2022-03-16', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (218, 77, NULL, 52, '75558838', 'VERIEGATED EPIPRENIUM', NULL, '1700.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6800.0000', '0.0000', '2022-03-16', 'received', '1700.0000', '1700.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (219, 78, NULL, 34, '94599052', 'CEBU BLUE', NULL, '1300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1300.0000', '0.0000', '2022-03-16', 'received', '1300.0000', '1300.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (220, 79, NULL, 171, '66305946', 'Fitunia', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-03-16', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (221, 80, NULL, 246, '64970785', 'Syngonium', NULL, '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-03-16', 'received', '200.0000', '200.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (222, 81, NULL, 247, '06119241', 'monostera esq', NULL, '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-16', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (223, 82, NULL, 248, '99419799', 'jwel orchd', NULL, '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-03-16', 'received', '600.0000', '600.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (224, 83, NULL, 186, '21212277', 'philo Cream Splash ', NULL, '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-03-16', 'received', '600.0000', '600.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (225, 84, NULL, 185, '68904433', 'Philo Tortum', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-03-16', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (226, 85, NULL, 189, '95207952', 'Philo 69686', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-16', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (227, 86, NULL, 174, '76806853', 'philo.Atabaponese', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-03-16', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (228, 87, NULL, 188, '92625394', 'Florida Ghost Mint ', NULL, '3500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-03-16', 'received', '3500.0000', '3500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (229, 88, NULL, 177, '08229328', 'Pink Splash ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (230, 89, NULL, 173, '63588432', 'Ring Of Fire ', NULL, '4000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '-1.0000', '2022-03-16', 'received', '4000.0000', '4000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '4000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (231, 89, NULL, 33, '03006363', 'EPIOREMNUM AMPLISSIMUM SILVER', NULL, '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '2.0000', '2022-03-16', 'received', '500.0000', '500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (232, 89, NULL, 168, '07964908', 'Zade Shartin', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (233, 90, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-03-16', 'received', '900.0000', '900.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (234, 90, NULL, 249, '37342563', 'Philodendron Sp Peru', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '2.0000', '2022-03-16', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (235, 91, NULL, 250, '15651501', 'moonlight', NULL, '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-03-16', 'received', '600.0000', '600.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (236, 92, NULL, 251, '89029729', 'Rpahi Hay veriggeted', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-16', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (237, 93, NULL, 252, '33614746', 'philo. Lime', NULL, '150.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1650.0000', '0.0000', '2022-03-16', 'received', '150.0000', '150.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (238, 94, NULL, 21, '26738846', 'SPANISH MOSS SET', NULL, '400.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6400.0000', '0.0000', '2022-03-16', 'received', '400.0000', '400.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (239, 95, NULL, 12, '51267664', 'Lucky Bamboo Big', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (240, 96, NULL, 253, '55299742', 'Hoya 2k', NULL, '1500.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '16500.0000', '1.0000', '2022-03-16', 'received', '1500.0000', '1500.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (241, 96, NULL, 254, '31700219', 'Hoya 1.5', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-03-16', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (242, 96, NULL, 255, '91803098', 'Hoya 2.5', NULL, '1800.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '0.0000', '2022-03-16', 'received', '1800.0000', '1800.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (243, 96, NULL, 256, '06157895', 'Hoya 3', NULL, '2400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '-5.0000', '2022-03-16', 'received', '2400.0000', '2400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (244, 97, NULL, 257, '67002273', 'Dymond Tob', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-03-16', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (245, 98, NULL, 199, '91200856', 'Lucky Bamboo 3 step', NULL, '1000.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '0.0000', '2022-03-17', 'received', '1000.0000', '1000.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (246, 99, NULL, 258, '62267336', 'Victoria with busket ', NULL, '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-03-17', 'received', '800.0000', '800.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (247, 100, NULL, 196, '46584489', 'Lipistic', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-03-17', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (248, 101, NULL, 167, '48885827', 'Kangaro Pocket', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-03-17', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (249, 102, NULL, 259, '96893813', 'Philo neon Big', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-03-17', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (250, 103, NULL, 260, '86423471', 'Mini 4 pcs tub', NULL, '35.0000', '59.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2065.0000', '4.0000', '2022-03-17', 'received', '35.0000', '35.0000', '59.0000', NULL, NULL, 2, 'Pcs', '59.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (251, 104, NULL, 72, '68672346', 'IONNATHA ON WOOD', NULL, '500.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '-1.0000', '2022-03-17', 'received', '500.0000', '500.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (252, 105, NULL, 179, '25713355', 'Mounted Spp Den', NULL, '800.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-03-17', 'received', '800.0000', '800.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (253, 106, NULL, 181, '50278507', 'lava brast', NULL, '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-03-17', 'received', '700.0000', '700.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (254, 107, NULL, 182, '52920385', 'Den Hibiki', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-03-17', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (255, 108, NULL, 25, '84339014', 'MINI DENDROBIUM', NULL, '200.0000', '19.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3800.0000', '0.0000', '2022-03-17', 'received', '200.0000', '200.0000', '19.0000', NULL, NULL, 2, 'Pcs', '19.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (256, 109, NULL, 261, '92200878', 'Fern S', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '-1.0000', '2022-03-17', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (257, 110, NULL, 264, '63489717', 'African Violet', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '-6.0000', '2022-03-17', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (258, 110, NULL, 263, '83925261', 'Trailing peoporima ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-03-17', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (259, 110, NULL, 43, '28210704', 'PEPORIMA VERIEGATED', NULL, '130.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '780.0000', '0.0000', '2022-03-17', 'received', '130.0000', '130.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (260, 111, NULL, 57, '32032116', 'AIR PLANT FLEXOUSA ', NULL, '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-03-17', 'received', '500.0000', '500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (261, 112, NULL, 265, '91997687', 'RESIN PLANTER BIRD HOUSE', NULL, '1300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2600.0000', '0.0000', '2022-03-17', 'received', '1300.0000', '1300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (262, 113, NULL, 266, '44158245', 'Hawarhtia', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-03-17', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (263, NULL, NULL, 262, '02739001', 'Peporima Verg. Big', NULL, '450.0000', '3.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '1350.0000', '0.0000', '2022-03-18', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (264, NULL, NULL, 51, '95981019', 'SHANGRILA', NULL, '750.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '1500.0000', '0.0000', '2022-03-18', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (265, NULL, NULL, 71, '53980043', 'IONNATHA CLUMP ', NULL, '300.0000', '2.0000', 2, NULL, NULL, NULL, NULL, NULL, NULL, '600.0000', '-6.0000', '2022-03-19', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (266, 114, NULL, 267, '69979880', 'WOOD STABD AIR PLANT', NULL, '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '0.0000', '2022-03-19', 'received', '100.0000', '100.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (267, 115, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '41.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6970.0000', '0.0000', '2022-03-19', 'received', '170.0000', '170.0000', '41.0000', NULL, NULL, 2, 'Pcs', '41.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (268, 115, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3120.0000', '0.0000', '2022-03-19', 'received', '130.0000', '130.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (269, 115, NULL, 270, '61319065', 'SEED (100)', NULL, '80.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2022-03-19', 'received', '80.0000', '80.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (270, 115, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '59.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1770.0000', '0.0000', '2022-03-19', 'received', '30.0000', '30.0000', '59.0000', NULL, NULL, 2, 'Pcs', '59.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (271, 116, NULL, 272, '85526942', 'Granular Npk 8-24-24', NULL, '1400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-03-20', 'received', '1400.0000', '1400.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (272, 117, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2022-03-20', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (273, 118, NULL, 273, '43570472', 'Raphidophora Hay', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-20', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (274, 119, NULL, 274, '37141257', 'Double part Color Tub', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-03-20', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (275, 120, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-03-20', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (276, 120, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '480.0000', '0.0000', '2022-03-20', 'received', '160.0000', '160.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (277, 120, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2022-03-20', 'received', '180.0000', '180.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (278, 120, NULL, 12, '51267664', 'Lucky Bamboo Big', NULL, '1000.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '20000.0000', '0.0000', '2022-03-20', 'received', '1000.0000', '1000.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (279, 120, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-03-20', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (280, 121, NULL, 194, '16535351', 'Aglonema Color', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-03-20', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (281, 122, NULL, 275, '32621776', 'Orchid Flowering Booster', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-03-20', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (282, 123, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-03-20', 'received', '250.0000', '250.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (283, 124, NULL, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-03-20', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (284, 125, NULL, 276, '04135216', 'Ceramic Color Bowl L ', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-20', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (285, 126, NULL, 192, '54673266', 'Luck Bamboo Big stick', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '1.0000', '2022-03-20', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (286, 127, NULL, 165, '48621422', 'Anthurium', NULL, '1350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4050.0000', '0.0000', '2022-03-20', 'received', '1350.0000', '1350.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (287, 128, NULL, 105, '51600376', 'GLOVES WITH CLAWS', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-03-20', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (288, 129, NULL, 277, '80818544', 'Concreate pot S', NULL, '30.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '1.0000', '2022-03-20', 'received', '30.0000', '30.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (289, 129, NULL, 278, '45978696', 'Concreat pot M', NULL, '60.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '420.0000', '1.0000', '2022-03-20', 'received', '60.0000', '60.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (290, 130, NULL, 272, '85526942', 'Granular Npk 8-24-24', NULL, '1400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '1.0000', '2022-03-24', 'received', '1400.0000', '1400.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (291, 131, NULL, 266, '44158245', 'Hawarhtia', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-03-24', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (292, 131, NULL, 15, '15389577', 'SENSEVERIA MIKADO', NULL, '500.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-24', 'received', '500.0000', '500.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (293, 131, NULL, 94, '86499263', 'SELF WATERING TRANSPARENT ', NULL, '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-03-24', 'received', '150.0000', '150.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (294, 131, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2022-03-24', 'received', '180.0000', '180.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (295, 131, NULL, 214, '27889670', 'Mini Air Plant Stand', NULL, '100.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '10.0000', '2022-03-24', 'received', '100.0000', '100.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (296, 131, NULL, 113, '02483091', '8 WAY SPRAYER HEAD', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-03-24', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (297, 131, NULL, 279, '33099580', 'Plant Clip', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '3.0000', '2022-03-24', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (298, 131, NULL, 98, '20607197', 'HARD CUTTER ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-03-24', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (299, 131, NULL, 131, '57685758', 'FERTILISER BOX', NULL, '80.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-03-24', 'received', '80.0000', '80.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (300, 131, NULL, 95, '91943746', 'GROOT ', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-03-24', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (301, 131, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-03-24', 'received', '30.0000', '30.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (302, 131, NULL, 285, '40986136', 'Saaf 100gm', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2022-03-24', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (303, 131, NULL, 283, '44882476', 'Indrofil M-45', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-03-24', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (304, 131, NULL, 281, '96402267', 'Emetuf 50ml', NULL, '110.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '1.0000', '2022-03-24', 'received', '110.0000', '110.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (305, 131, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-03-24', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (306, 131, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-03-24', 'received', '50.0000', '50.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (307, 131, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-03-24', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (308, 131, NULL, 286, '26365495', 'DPGR', NULL, '75.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-03-24', 'received', '75.0000', '75.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (309, 132, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '640.0000', '0.0000', '2022-03-26', 'received', '160.0000', '160.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (310, 132, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-03-26', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (311, 133, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-03-26', 'received', '80.0000', '80.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (312, 133, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-26', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (313, 133, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5600.0000', '0.0000', '2022-03-26', 'received', '140.0000', '140.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (314, 133, NULL, 290, '12624647', 'Artistic Round planter', NULL, '160.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-03-26', 'received', '160.0000', '160.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (315, 133, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '-7.0000', '2022-03-26', 'received', '180.0000', '180.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (316, 133, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '-1.0000', '2022-03-26', 'received', '350.0000', '350.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (317, 133, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-03-26', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (318, 133, NULL, 294, '61731312', 'Uv Firenze Wall Planter', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '1.0000', '2022-03-26', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (319, 133, NULL, 296, '90188448', 'UV Flower pot ', NULL, '95.0000', '90.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8550.0000', '21.0000', '2022-03-26', 'received', '95.0000', '95.0000', '90.0000', NULL, NULL, 2, 'Pcs', '90.0000', NULL, NULL, NULL, NULL, '95.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (320, 133, NULL, 297, '13535342', 'Glossy Self Watering Planter', NULL, '180.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '0.0000', '2022-03-26', 'received', '180.0000', '180.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (321, 133, NULL, 298, '54093978', 'Rattan Stand ', NULL, '850.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8500.0000', '-2.0000', '2022-03-26', 'received', '850.0000', '850.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '850.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (322, 133, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-03-26', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (323, 134, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '175.0000', '0.0000', '2022-03-27', 'received', '35.0000', '35.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (324, 134, NULL, 117, '13936928', 'HUMIDIFIER DEER', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '4.0000', '2022-03-27', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (325, 134, NULL, 208, '93276343', 'plastic Terrarium Jar', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-27', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (326, 134, NULL, 218, '39824435', 'Jute Pole Big ', NULL, '30.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-03-27', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (327, 134, NULL, 219, '72884759', 'jute pole small', NULL, '20.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '1.0000', '2022-03-27', 'received', '20.0000', '20.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '20.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (328, 134, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-03-27', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (329, 134, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-27', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (330, 134, NULL, 276, '04135216', 'Ceramic Color Bowl L ', NULL, '300.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-03-27', 'received', '300.0000', '300.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (331, 134, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '18.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-03-27', 'received', '250.0000', '250.0000', '18.0000', NULL, NULL, 2, 'Pcs', '18.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (332, 135, NULL, 295, '45464062', 'Uv Firenze Wide Planter', NULL, '400.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '16000.0000', '17.0000', '2022-03-28', 'received', '400.0000', '400.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (333, 136, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-03-28', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (334, 137, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-03-30', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (335, 138, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '640.0000', '0.0000', '2022-04-01', 'received', '160.0000', '160.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (336, 138, NULL, 232, '15417255', 'Fungicide 50gm', NULL, '200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-04-01', 'received', '200.0000', '200.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (337, 138, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2022-04-01', 'received', '30.0000', '30.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (338, 138, NULL, 237, '51964534', 'Neem Khoil', NULL, '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '160.0000', '0.0000', '2022-04-01', 'received', '80.0000', '80.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (339, 138, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1875.0000', '0.0000', '2022-04-01', 'received', '1875.0000', '1875.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (340, 138, NULL, 134, '71760053', 'MIRACLE GRO NPK 1200GM', NULL, '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-01', 'received', '1800.0000', '1800.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (341, 138, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '65.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7800.0000', '15.0000', '2022-04-01', 'received', '120.0000', '120.0000', '65.0000', NULL, NULL, 2, 'Pcs', '65.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (342, 138, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2022-04-01', 'received', '180.0000', '180.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (343, 138, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-04-01', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (344, 138, NULL, 86, '08010277', 'RESIN PLANTER K2', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-04-01', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (345, 138, NULL, 90, '87334901', 'RESIN PPANTER N4', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-04-01', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (346, 138, NULL, 299, '53672838', 'Resin D2', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-04-01', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (347, 138, NULL, 84, '27666711', 'RESIN PLANTER M2', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '2.0000', '2022-04-01', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (348, 138, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-01', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (349, 138, NULL, 58, '02921723', 'FUNKIANA ON WOOD', NULL, '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-04-01', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (350, 138, NULL, 20, '16748388', 'SENSEVERIA FRANCISII', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-04-01', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (351, 138, NULL, 300, '27748537', 'Osmokot 13.13.13', NULL, '1600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-04-01', 'received', '1600.0000', '1600.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (352, 138, NULL, 301, '41132008', 'Osmokot 12.25.6', NULL, '1800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '2.0000', '2022-04-01', 'received', '1800.0000', '1800.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (353, 138, NULL, 302, '52850949', 'NPK 10.52.17', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-04-01', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (354, 138, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-01', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (355, 138, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-04-01', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (356, 139, NULL, 196, '46584489', 'Lipistic', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-04-04', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (357, 139, NULL, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-04', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (358, 139, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '0.0000', '2022-04-04', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (359, 139, NULL, 20, '16748388', 'SENSEVERIA FRANCISII', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-04-04', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (360, 139, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2022-04-04', 'received', '180.0000', '180.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (361, 139, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '320.0000', '0.0000', '2022-04-04', 'received', '160.0000', '160.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (362, 139, NULL, 303, '50990480', 'Manjula Hanging', NULL, '700.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-04-04', 'received', '700.0000', '700.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (363, 139, NULL, 304, '69305033', 'Begonia', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-04-04', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (364, 139, NULL, 171, '66305946', 'Fitunia', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-04', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (365, 139, NULL, 305, '42248228', 'Black zz', NULL, '600.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-04', 'received', '600.0000', '600.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (366, 139, NULL, 40, '58132834', 'ZZ ZENZI', NULL, '700.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-04-04', 'received', '700.0000', '700.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (367, 139, NULL, 306, '03398645', 'Ruber', NULL, '300.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-04', 'received', '300.0000', '300.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (368, 139, NULL, 48, '57487006', 'FICUS GRAFTED BONSAI', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '2.0000', '2022-04-04', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (369, 139, NULL, 49, '21457857', 'PHILODENDRON BIRKIN', NULL, '600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-04', 'received', '600.0000', '600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (370, 139, NULL, 307, '28473863', 'Euphorbia verg', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-04', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (371, 139, NULL, 63, '43775956', 'DICHIDIA VERIGATED LEAF', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-04', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (372, 139, NULL, 309, '85368633', 'Philo neon Big Pole', NULL, '900.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '-1.0000', '2022-04-04', 'received', '900.0000', '900.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (373, 139, NULL, 310, '19536640', 'Big esquleta', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-04-04', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (374, 139, NULL, 311, '02531031', 'Monostera Deliciosa', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '-1.0000', '2022-04-04', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (375, 139, NULL, 109, '28303880', 'GROW LIGHT PANEL', NULL, '2000.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '20000.0000', '0.0000', '2022-04-04', 'received', '2000.0000', '2000.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (376, 139, NULL, 298, '54093978', 'Rattan Stand ', NULL, '850.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7650.0000', '2.0000', '2022-04-04', 'received', '850.0000', '850.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '850.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (377, 139, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-04', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (378, 139, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-04', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (379, 139, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-04-04', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (380, 139, NULL, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-04-04', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (381, 139, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-04', 'received', '750.0000', '750.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (382, 139, NULL, 199, '91200856', 'Lucky Bamboo 3 step', NULL, '1000.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '0.0000', '2022-04-04', 'received', '1000.0000', '1000.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (383, 139, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-04-04', 'received', '350.0000', '350.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (384, 139, NULL, 12, '51267664', 'Lucky Bamboo Big', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-04', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (385, 140, NULL, 308, '14337396', 'Philodendron b', NULL, '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-04-04', 'received', '250.0000', '250.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (386, 141, NULL, 165, '48621422', 'Anthurium', NULL, '1350.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '27000.0000', '0.0000', '2022-04-08', 'received', '1350.0000', '1350.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (387, 141, NULL, 312, '65313386', 'Aglonema 1', NULL, '250.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-04-08', 'received', '250.0000', '250.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (388, 141, NULL, 313, '22361323', 'Aglonema 2', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-08', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (389, 141, NULL, 314, '85167717', 'Aglonema 3', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-04-08', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (390, 141, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '-4.0000', '2022-04-08', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (391, 141, NULL, 30, '93418363', 'PHILODENDRON GREEN SAW', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-04-08', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (392, 141, NULL, 316, '51031679', 'Philo. pedatum', NULL, '900.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-04-08', 'received', '900.0000', '900.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (393, 141, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '-2.0000', '2022-04-08', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (394, 141, NULL, 36, '41780961', 'SYNGONIUM RED ARROW', NULL, '300.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '0.0000', '2022-04-08', 'received', '300.0000', '300.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (395, 141, NULL, 171, '66305946', 'Fitunia', NULL, '300.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-04-08', 'received', '300.0000', '300.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (396, 141, NULL, 35, '81983767', 'MONOSTERA PERU', NULL, '400.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-08', 'received', '400.0000', '400.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (397, 141, NULL, 318, '40799266', 'SYNGONIUM Crismas Holiday', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-04-08', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (398, 141, NULL, 319, '00716849', 'MoonLight S', NULL, '300.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '-3.0000', '2022-04-08', 'received', '300.0000', '300.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (399, 141, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '0.0000', '2022-04-08', 'received', '1200.0000', '1200.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (400, 141, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-04-08', 'received', '900.0000', '900.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (401, 141, NULL, 186, '21212277', 'philo Cream Splash ', NULL, '600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-08', 'received', '600.0000', '600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (402, 141, NULL, 320, '21530917', 'Philo. Ecudorian', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-08', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (403, 141, NULL, 321, '64685178', 'Philo. parisio Verde', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '-2.0000', '2022-04-08', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (404, 141, NULL, 322, '56110482', 'Philo. Splendid', NULL, '4500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '0.0000', '2022-04-08', 'received', '4500.0000', '4500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (405, 141, NULL, 323, '52372789', 'Philo. Nangaritense', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-04-08', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (406, 141, NULL, 184, '44306670', 'Burlemax Verigatted ', NULL, '1500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-08', 'received', '1500.0000', '1500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (407, 141, NULL, 324, '93521508', 'Philo. Billietiae', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-08', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (408, 141, NULL, 31, '81231523', 'PHILODENDRON BRANDIATUM', NULL, '1500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '2.0000', '2022-04-08', 'received', '1500.0000', '1500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (409, 141, NULL, 325, '25522346', 'Pink princess', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '-1.0000', '2022-04-08', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (410, 141, NULL, 326, '28746933', 'Raphidoohora Cryptantha', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '-1.0000', '2022-04-08', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (411, 141, NULL, 327, '85091215', 'Raphidoohora cealatocaulis', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-08', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (412, 141, NULL, 328, '62000880', 'Epipremnum variegated Big', NULL, '5000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-04-08', 'received', '5000.0000', '5000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '5000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (413, 141, NULL, 329, '47352214', 'Syngonium frosted Heart', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-08', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (414, 141, NULL, 330, '72522923', 'Syngonium Three King', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-08', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (415, 141, NULL, 339, '26050934', 'Syngonium Albo Verg', NULL, '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-04-08', 'received', '600.0000', '600.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (416, 141, NULL, 331, '34947943', 'Pink Splash Big', NULL, '1200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '0.0000', '2022-04-08', 'received', '1200.0000', '1200.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (417, 141, NULL, 172, '75049629', 'AmDrium Zippelianum', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '2.0000', '2022-04-08', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (418, 141, NULL, 332, '53235235', 'Calathia Golden Mosaic', NULL, '1250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-04-08', 'received', '1250.0000', '1250.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (419, 141, NULL, 333, '09018704', 'Calathia Mosaic', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-08', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (420, 141, NULL, 334, '94199597', 'Calathia ', NULL, '750.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-04-08', 'received', '750.0000', '750.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (421, 141, NULL, 335, '81200669', 'Alocasia ', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '-6.0000', '2022-04-08', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (422, 141, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '13500.0000', '0.0000', '2022-04-08', 'received', '900.0000', '900.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (423, 141, NULL, 338, '56488698', 'Moon Cactus Red', NULL, '300.0000', '48.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '14400.0000', '0.0000', '2022-04-08', 'received', '300.0000', '300.0000', '48.0000', NULL, NULL, 2, 'Pcs', '48.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (424, 141, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-04-08', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (425, 141, NULL, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-04-08', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (426, 141, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-04-08', 'received', '500.0000', '500.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (427, 141, NULL, 336, '48444140', 'fern Small', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-08', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (428, 141, NULL, 337, '92857184', 'Pilea norfolk', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '-2.0000', '2022-04-08', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (429, 141, NULL, 25, '84339014', 'MINI DENDROBIUM', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-08', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (430, 141, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-08', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (431, 141, NULL, 67, '26136413', 'CATTLEYA ORCHID', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-04-08', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (432, 141, NULL, 341, '02686278', 'Monostera Adinsoni', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-08', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (433, 141, NULL, 340, '65696053', 'NJoy Pothos', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-08', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (434, 141, NULL, 181, '50278507', 'lava brast', NULL, '700.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-04-08', 'received', '700.0000', '700.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (435, 142, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-11', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (436, 143, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3300.0000', '0.0000', '2022-04-11', 'received', '220.0000', '220.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (437, 143, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '-1.0000', '2022-04-11', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (438, 143, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-11', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (439, 143, NULL, 142, '44857076', 'SPAGHNUM MOSS 12L', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-11', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (440, 143, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-04-11', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (441, 143, NULL, 144, '70118098', 'NPK 250GM', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-04-11', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (442, 143, NULL, 343, '37152007', 'Snail Killer', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-04-11', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (443, 144, NULL, 196, '46584489', 'Lipistic', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-04-11', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (444, 145, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-16', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (445, 145, NULL, 290, '12624647', 'Artistic Round planter', NULL, '160.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2240.0000', '0.0000', '2022-04-16', 'received', '160.0000', '160.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (446, 145, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-04-16', 'received', '140.0000', '140.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (447, 145, NULL, 208, '93276343', 'plastic Terrarium Jar', NULL, '100.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '2.0000', '2022-04-16', 'received', '100.0000', '100.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (448, 145, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-04-16', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (449, 145, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-04-16', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (450, 145, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '3.0000', '2022-04-16', 'received', '120.0000', '120.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (451, 145, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2022-04-16', 'received', '180.0000', '180.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (452, 145, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-16', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (453, 145, NULL, 232, '15417255', 'Fungicide 50gm', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-16', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (454, 145, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-04-16', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (455, 145, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-04-16', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (456, 145, NULL, 237, '51964534', 'Neem Khoil', NULL, '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '80.0000', '0.0000', '2022-04-16', 'received', '80.0000', '80.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (457, 145, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-04-16', 'received', '1875.0000', '1875.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (458, 145, NULL, 133, '58176268', 'ORCHID FOCUS BLOOM 300 ML', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-04-16', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (459, 145, NULL, 135, '38349643', 'ORCHID FOCUS GROW', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-04-16', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (460, 145, NULL, 218, '39824435', 'Jute Pole Big ', NULL, '30.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-04-16', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (461, 145, NULL, 149, '01269763', 'GLASS TUBE WITH STAND 2', NULL, '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-04-16', 'received', '750.0000', '750.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (462, 145, NULL, 148, '06330036', 'GLASS TUBE WITH STAND 1', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-04-16', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (463, 145, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '95.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2850.0000', '0.0000', '2022-04-16', 'received', '30.0000', '30.0000', '95.0000', NULL, NULL, 2, 'Pcs', '95.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (464, 145, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1700.0000', '0.0000', '2022-04-16', 'received', '170.0000', '170.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (465, 145, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1950.0000', '0.0000', '2022-04-16', 'received', '130.0000', '130.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (466, 146, NULL, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', NULL, '1250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-04-16', 'received', '1250.0000', '1250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (467, 147, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-04-17', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (468, 148, NULL, 142, '44857076', 'SPAGHNUM MOSS 12L', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-18', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (469, 148, NULL, 95, '91943746', 'GROOT ', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-04-18', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (470, 148, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-18', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (471, 148, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2022-04-18', 'received', '180.0000', '180.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (472, 148, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '320.0000', '0.0000', '2022-04-18', 'received', '160.0000', '160.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (473, 148, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '175.0000', '0.0000', '2022-04-18', 'received', '35.0000', '35.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (474, 148, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-04-18', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (475, 149, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '140.0000', '0.0000', '2022-04-23', 'received', '35.0000', '35.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (476, 150, NULL, 313, '22361323', 'Aglonema 2', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-24', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (477, 150, NULL, 314, '85167717', 'Aglonema 3', NULL, '500.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-04-24', 'received', '500.0000', '500.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (478, 150, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-04-24', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (479, 150, NULL, 338, '56488698', 'Moon Cactus Red', NULL, '300.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-04-24', 'received', '300.0000', '300.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (480, 150, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-24', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (481, 150, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '50.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '17500.0000', '0.0000', '2022-04-24', 'received', '350.0000', '350.0000', '50.0000', NULL, NULL, 2, 'Pcs', '50.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (482, 150, NULL, 12, '51267664', 'Lucky Bamboo Big', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-04-24', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (483, 150, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-24', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (484, 150, NULL, 344, '85524239', 'Adenium Arabicum ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-04-24', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (485, 150, NULL, 345, '84980693', 'Senseveria Metalica', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-04-24', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (486, 150, NULL, 334, '94199597', 'Calathia ', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (487, 150, NULL, 335, '81200669', 'Alocasia ', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '2.0000', '2022-04-24', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (488, 150, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-04-24', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (489, 150, NULL, 346, '48777714', 'verigetted fern ', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-24', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (490, 150, NULL, 347, '45927746', 'glass vase ', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-04-24', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (491, 150, NULL, 15, '15389577', 'SENSEVERIA MIKADO', NULL, '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (492, 150, NULL, 17, '72182335', 'SENSEVERIA COLOR CAP', NULL, '600.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-04-24', 'received', '600.0000', '600.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (493, 150, NULL, 309, '85368633', 'Philo neon Big Pole', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '1.0000', '2022-04-24', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (494, 150, NULL, 308, '14337396', 'Philodendron b', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-04-24', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (495, 150, NULL, 340, '65696053', 'NJoy Pothos', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (496, 150, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (497, 150, NULL, 261, '92200878', 'Fern S', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '1.0000', '2022-04-24', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (498, 150, NULL, 348, '94516686', 'Mican ', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-24', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (499, 150, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-04-24', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (500, 150, NULL, 66, '77547002', 'DICHIDIA BUBLE ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-04-24', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (501, 150, NULL, 30, '93418363', 'PHILODENDRON GREEN SAW', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-24', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (502, 150, NULL, 316, '51031679', 'Philo. pedatum', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-24', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (503, 150, NULL, 349, '81128168', 'Begonia T', NULL, '600.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-04-24', 'received', '600.0000', '600.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (504, 150, NULL, 63, '43775956', 'DICHIDIA VERIGATED LEAF', NULL, '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-04-24', 'received', '400.0000', '400.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (505, 150, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-04-24', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (506, 150, NULL, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-04-24', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (507, 150, NULL, 196, '46584489', 'Lipistic', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-04-24', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (508, 150, NULL, 350, '76094827', 'Lipistic Big yellow ', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (509, 150, NULL, 21, '26738846', 'SPANISH MOSS SET', NULL, '400.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-04-24', 'received', '400.0000', '400.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (510, 150, NULL, 72, '68672346', 'IONNATHA ON WOOD', NULL, '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-04-24', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (511, 150, NULL, 32, '53236471', 'PHILODENDRON CHERRY RED', NULL, '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-24', 'received', '900.0000', '900.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (512, 150, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-04-24', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (513, 150, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-24', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (514, 150, NULL, 154, '66903672', 'IRIS UV PLANTER 7\\\"', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (515, 150, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-24', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (516, 150, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-24', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (517, 150, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-04-24', 'received', '140.0000', '140.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (518, 150, NULL, 290, '12624647', 'Artistic Round planter', NULL, '160.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-04-24', 'received', '160.0000', '160.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (519, 150, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2022-04-24', 'received', '180.0000', '180.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (520, 150, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-04-24', 'received', '250.0000', '250.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (521, 150, NULL, 352, '55296642', 'Color stone 250g', NULL, '35.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '525.0000', '0.0000', '2022-04-24', 'received', '35.0000', '35.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (522, 151, NULL, 352, '55296642', 'Color stone 250g', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-04-27', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (523, 152, NULL, 163, '60285514', 'Transparent Mesh Pot ', NULL, '75.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-28', 'received', '75.0000', '75.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (524, 152, NULL, 226, '21257351', 'Thai Root Hormon', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-04-28', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (525, 152, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-04-28', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (526, 152, NULL, 232, '15417255', 'Fungicide 50gm', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-04-28', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (527, 152, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-04-28', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (528, 152, NULL, 281, '96402267', 'Emetuf 50ml', NULL, '110.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '550.0000', '5.0000', '2022-04-28', 'received', '110.0000', '110.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (529, 152, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-04-28', 'received', '50.0000', '50.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (530, 152, NULL, 283, '44882476', 'Indrofil M-45', NULL, '80.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-04-28', 'received', '80.0000', '80.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (531, 152, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-04-28', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (532, 152, NULL, 85, '67443382', 'RESIN PLNATER G3', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-04-28', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (533, 152, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-04-28', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (534, 152, NULL, 343, '37152007', 'Snail Killer', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-04-28', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (535, 152, NULL, 286, '26365495', 'DPGR', NULL, '75.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-04-28', 'received', '75.0000', '75.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (536, 152, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1875.0000', '0.0000', '2022-04-28', 'received', '1875.0000', '1875.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (537, 152, NULL, 98, '20607197', 'HARD CUTTER ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-04-28', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (538, 152, NULL, 134, '71760053', 'MIRACLE GRO NPK 1200GM', NULL, '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '1.0000', '2022-04-28', 'received', '1800.0000', '1800.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (539, 152, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-28', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (540, 152, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-04-28', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (541, 153, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-04-29', 'received', '150.0000', '150.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (542, 154, NULL, 305, '42248228', 'Black zz', NULL, '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-04-29', 'received', '600.0000', '600.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (543, 155, NULL, 133, '58176268', 'ORCHID FOCUS BLOOM 300 ML', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-05-01', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (544, 155, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-05-01', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (545, 155, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-01', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (546, 155, NULL, 290, '12624647', 'Artistic Round planter', NULL, '160.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-05-01', 'received', '160.0000', '160.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (547, 155, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-01', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (548, 155, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-05-01', 'received', '140.0000', '140.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (549, 156, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-05-02', 'received', '250.0000', '250.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (550, 156, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-05-02', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (551, 156, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-05-02', 'received', '150.0000', '150.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (552, 157, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-05-02', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (553, 158, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-05-02', 'received', '450.0000', '450.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (554, 158, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-05-02', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (555, 158, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2022-05-02', 'received', '180.0000', '180.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (556, 158, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '480.0000', '0.0000', '2022-05-02', 'received', '160.0000', '160.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (557, 158, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-05-02', 'received', '250.0000', '250.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (558, 158, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-05-02', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (559, 159, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-05-02', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (560, 160, NULL, 275, '32621776', 'Orchid Flowering Booster', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-05-07', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (561, 160, NULL, 142, '44857076', 'SPAGHNUM MOSS 12L', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-05-07', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (562, 160, NULL, 132, '51287048', 'SMALL BELCHA ', NULL, '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-05-07', 'received', '150.0000', '150.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (563, 160, NULL, 285, '40986136', 'Saaf 100gm', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2022-05-07', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (564, 160, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-05-07', 'received', '350.0000', '350.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (565, 160, NULL, 154, '66903672', 'IRIS UV PLANTER 7\\\"', NULL, '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-05-07', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (566, 160, NULL, 94, '86499263', 'SELF WATERING TRANSPARENT ', NULL, '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-05-07', 'received', '150.0000', '150.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (567, 160, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '5.0000', '2022-05-07', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (568, 160, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '280.0000', '0.0000', '2022-05-07', 'received', '35.0000', '35.0000', '8.0000', NULL, NULL, 3, 'KG', '8.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (569, 161, NULL, 353, '67911538', 'Crops Care', NULL, '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-05-07', 'received', '50.0000', '50.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (581, 162, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '175.0000', '0.0000', '2022-05-08', 'received', '35.0000', '35.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (580, 162, NULL, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '2.0000', '2022-05-08', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (579, 162, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-05-08', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (578, 162, NULL, 338, '56488698', 'Moon Cactus Red', NULL, '300.0000', '22.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6600.0000', '0.0000', '2022-05-08', 'received', '300.0000', '300.0000', '22.0000', NULL, NULL, 2, 'Pcs', '22.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (577, 162, NULL, 337, '92857184', 'Pilea norfolk', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-05-08', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (576, 162, NULL, 218, '39824435', 'Jute Pole Big ', NULL, '30.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '7.0000', '2022-05-08', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (582, 162, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-05-08', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (583, 163, NULL, 165, '48621422', 'Anthurium', NULL, '1350.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '27000.0000', '0.0000', '2022-05-13', 'received', '1350.0000', '1350.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (584, 163, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '0.0000', '2022-05-13', 'received', '900.0000', '900.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (585, 163, NULL, 51, '95981019', 'SHANGRILA', NULL, '750.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '3.0000', '2022-05-13', 'received', '750.0000', '750.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (586, 163, NULL, 354, '49485824', 'Euphorbia Francoisi', NULL, '600.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-05-13', 'received', '600.0000', '600.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (587, 163, NULL, 355, '89030971', 'philo Brazil s', NULL, '300.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-05-13', 'received', '300.0000', '300.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (588, 163, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '0.0000', '2022-05-13', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (589, 163, NULL, 357, '40772614', 'Cattelya Big', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-05-13', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (590, 163, NULL, 358, '99246609', 'Solid Gold Big', NULL, '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-05-13', 'received', '750.0000', '750.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (591, 163, NULL, 359, '88375660', 'Philo.Gueldi ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '1.0000', '2022-05-13', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (592, 163, NULL, 360, '07747335', 'Till. Xerographica ', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-05-13', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (593, 163, NULL, 245, '44167983', 'philo.Melanocrysum', NULL, '1500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '4.0000', '2022-05-13', 'received', '1500.0000', '1500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (594, 163, NULL, 361, '29921673', 'Philo Gloriasum', NULL, '1800.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5400.0000', '0.0000', '2022-05-13', 'received', '1800.0000', '1800.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (595, 163, NULL, 362, '37678201', 'Lucky Bamboo Golden Ring ', NULL, '800.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '0.0000', '2022-05-13', 'received', '800.0000', '800.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (596, 163, NULL, 15, '15389577', 'SENSEVERIA MIKADO', NULL, '500.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-05-13', 'received', '500.0000', '500.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (597, 163, NULL, 17, '72182335', 'SENSEVERIA COLOR CAP', NULL, '600.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '2.0000', '2022-05-13', 'received', '600.0000', '600.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (598, 163, NULL, 184, '44306670', 'Burlemax Verigatted ', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '2.0000', '2022-05-13', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (599, 163, NULL, 363, '90323088', 'Calathia orbifolia ', NULL, '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-13', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (600, 163, NULL, 364, '67122033', 'Sciundupsis Argerious ', NULL, '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-05-13', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (601, 163, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-05-13', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (602, 163, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-05-13', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (603, 163, NULL, 321, '64685178', 'Philo. parisio Verde', NULL, '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '3.0000', '2022-05-13', 'received', '2000.0000', '2000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (604, 163, NULL, 365, '59080001', 'Den parisi', NULL, '800.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-05-13', 'received', '800.0000', '800.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (605, 163, NULL, 366, '76182407', 'peoporima argyreia', NULL, '600.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-05-13', 'received', '600.0000', '600.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (606, 163, NULL, 43, '28210704', 'PEPORIMA VERIEGATED', NULL, '130.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '650.0000', '0.0000', '2022-05-13', 'received', '130.0000', '130.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (607, 164, NULL, 367, '73229268', 'Begonia maculata ', NULL, '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '-3.0000', '2022-05-13', 'received', '2500.0000', '2500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (608, 164, NULL, 370, '38281816', 'Philo Warchezew', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-05-13', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (609, 164, NULL, 371, '67933855', 'Pitcher plant ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-13', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (610, 164, NULL, 335, '81200669', 'Alocasia ', NULL, '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '4.0000', '2022-05-13', 'received', '750.0000', '750.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (611, 164, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-05-13', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (612, 164, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-05-13', 'received', '200.0000', '200.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (613, 164, NULL, 372, '59471278', 'Enobi Big Pot ', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-05-13', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (614, 164, NULL, 373, '67910730', 'Philo Macdwel Big ', NULL, '7000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '-2.0000', '2022-05-13', 'received', '7000.0000', '7000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '7000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (615, 164, NULL, 374, '27646289', 'Hydonphytum Formicarium', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-05-13', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (616, 164, NULL, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-05-13', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (617, 164, NULL, 375, '75823196', 'Humidifier & Aroma Dufuser Big', NULL, '1800.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '-1.0000', '2022-05-13', 'received', '1800.0000', '1800.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (618, 164, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-05-13', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (619, 164, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '640.0000', '0.0000', '2022-05-13', 'received', '160.0000', '160.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (620, 164, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2022-05-13', 'received', '180.0000', '180.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (621, 164, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-05-13', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (622, 165, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-05-13', 'received', '400.0000', '400.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (623, 166, NULL, 356, '29617821', 'peoporima verg Thai ', NULL, '600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-05-13', 'received', '600.0000', '600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (624, 167, NULL, 329, '47352214', 'Syngonium frosted Heart', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-05-14', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (625, 168, NULL, 208, '93276343', 'plastic Terrarium Jar', NULL, '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '2.0000', '2022-05-16', 'received', '100.0000', '100.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (626, 168, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-05-16', 'received', '140.0000', '140.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (627, 168, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-16', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (628, 168, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-05-16', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (629, 168, NULL, 154, '66903672', 'IRIS UV PLANTER 7\\\"', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-16', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (630, 168, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-05-16', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (631, 168, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-05-16', 'received', '35.0000', '35.0000', '40.0000', NULL, NULL, 3, 'KG', '40.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (632, 169, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-21', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (633, 169, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-05-21', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (634, 169, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-05-21', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (635, 169, NULL, 340, '65696053', 'NJoy Pothos', NULL, '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-05-21', 'received', '150.0000', '150.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (636, 169, NULL, 376, '44852135', 'Color stone 1kg', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-05-21', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (637, 169, NULL, 352, '55296642', 'Color stone 500g', NULL, '70.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-05-21', 'received', '70.0000', '70.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (638, 169, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-05-21', 'received', '150.0000', '150.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (639, 170, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-05-27', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (640, 170, NULL, 226, '21257351', 'Thai Root Hormon', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-05-27', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (641, 170, NULL, 109, '28303880', 'GROW LIGHT PANEL', NULL, '2000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '0.0000', '2022-05-27', 'received', '2000.0000', '2000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (642, 170, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-05-27', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (643, 170, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '10.0000', '2022-05-27', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (644, 170, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '120.0000', '0.0000', '2022-05-27', 'received', '120.0000', '120.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (645, 170, NULL, 381, '41008445', 'Essential Oil', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-05-27', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (646, 171, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-05-28', 'received', '150.0000', '150.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (647, 171, NULL, 290, '12624647', 'Artistic Round planter', NULL, '160.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-05-28', 'received', '160.0000', '160.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (648, 171, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-05-28', 'received', '80.0000', '80.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (649, 171, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-05-28', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (650, 171, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-05-28', 'received', '140.0000', '140.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (651, 171, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-05-28', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (652, 171, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-05-28', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (653, 171, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-05-28', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (654, 171, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-05-28', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (655, 171, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-05-28', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (656, 171, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-05-28', 'received', '50.0000', '50.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (657, 171, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-05-28', 'received', '45.0000', '45.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (658, 171, NULL, 380, '75829195', 'Siko 100ml', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-05-28', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (659, 171, NULL, 379, '56291360', 'Siko 50ml', NULL, '55.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '275.0000', '0.0000', '2022-05-28', 'received', '55.0000', '55.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '55.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (660, 171, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-05-28', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (661, 171, NULL, 382, '94298575', 'Mancer 500gm', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '2.0000', '2022-05-28', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (662, 171, NULL, 378, '75708593', 'Emetuf 25ml', NULL, '60.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '1.0000', '2022-05-28', 'received', '60.0000', '60.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '60.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (663, 171, NULL, 95, '91943746', 'GROOT ', NULL, '450.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '0.0000', '2022-05-28', 'received', '450.0000', '450.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (664, 172, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-05-28', 'received', '250.0000', '250.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (665, 173, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-05-30', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (666, 174, NULL, 22, '01402428', 'BROMELIAD THAI', NULL, '1000.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '15000.0000', '0.0000', '2022-06-06', 'received', '1000.0000', '1000.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (667, 174, NULL, 384, '91229260', 'BROMELIAD THAI S', NULL, '750.0000', '19.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '14250.0000', '-7.0000', '2022-06-06', 'received', '750.0000', '750.0000', '19.0000', NULL, NULL, 2, 'Pcs', '19.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (668, 174, NULL, 165, '48621422', 'Anthurium', NULL, '1350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8100.0000', '0.0000', '2022-06-06', 'received', '1350.0000', '1350.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (669, 174, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '0.0000', '2022-06-06', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (670, 174, NULL, 49, '21457857', 'PHILODENDRON BIRKIN', NULL, '600.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '0.0000', '2022-06-06', 'received', '600.0000', '600.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (671, 174, NULL, 367, '73229268', 'Begonia maculata ', NULL, '2500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '3.0000', '2022-06-06', 'received', '2500.0000', '2500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (672, 174, NULL, 337, '92857184', 'Pilea norfolk', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '2.0000', '2022-06-06', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (673, 174, NULL, 171, '66305946', 'Fitunia', NULL, '300.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-06-06', 'received', '300.0000', '300.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (674, 174, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-06-06', 'received', '150.0000', '150.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (675, 174, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5400.0000', '0.0000', '2022-06-06', 'received', '450.0000', '450.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (676, 174, NULL, 6, '08', 'Zen Pot Tall M', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-06-06', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (677, 174, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-06-06', 'received', '180.0000', '180.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (678, 174, NULL, 5, '06', 'Zen Pot M ', NULL, '250.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-06-06', 'received', '250.0000', '250.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (679, 174, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-06-06', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (680, 174, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '150.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-06-06', 'received', '150.0000', '150.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (681, 174, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-06', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (682, 174, NULL, 387, '88192874', 'Zen Pot Metalica Big', NULL, '650.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3900.0000', '0.0000', '2022-06-06', 'received', '650.0000', '650.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (683, 174, NULL, 388, '87398804', 'Zen Pot Tall Metalica M', NULL, '550.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5500.0000', '0.0000', '2022-06-06', 'received', '550.0000', '550.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '550.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (684, 174, NULL, 389, '60021183', 'Zen Metalica S', NULL, '250.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-06-06', 'received', '250.0000', '250.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (685, 174, NULL, 390, '66988109', 'Zen Metalica M', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-06-06', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (686, 174, NULL, 391, '89877743', 'Zen Metalica L', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-06-06', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (687, 174, NULL, 80, '63589701', 'WHITE PRINTED TOB', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-06-06', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (688, 174, NULL, 392, '14849048', 'Green Pod Big', NULL, '180.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-06-06', 'received', '180.0000', '180.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (689, 174, NULL, 394, '18806425', 'Mini Hanging Pod', NULL, '70.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-06-06', 'received', '70.0000', '70.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (690, 174, NULL, 297, '13535342', 'Glossy Self Watering Planter', NULL, '180.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2160.0000', '0.0000', '2022-06-06', 'received', '180.0000', '180.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (691, 174, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-06-06', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (692, 174, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-06-06', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (693, 174, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-06-06', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (694, 174, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-06-06', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (695, 174, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-06-06', 'received', '180.0000', '180.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (696, 174, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '480.0000', '0.0000', '2022-06-06', 'received', '160.0000', '160.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (697, 174, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-06-06', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (698, 174, NULL, 338, '56488698', 'Moon Cactus Red', NULL, '300.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '0.0000', '2022-06-06', 'received', '300.0000', '300.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (699, 174, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-06-06', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (700, 175, NULL, 393, '62446910', 'Zen Hanging pod', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-07', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (701, 176, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-06-07', 'received', '900.0000', '900.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (702, 176, NULL, 395, '72918232', 'Fern  Philippine', NULL, '900.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '-4.0000', '2022-06-07', 'received', '900.0000', '900.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (703, 176, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-06-07', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (704, 176, NULL, 175, '61824284', 'Phelenopsis', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-06-07', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (705, 176, NULL, 396, '40732224', 'Peru S', NULL, '350.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8400.0000', '-4.0000', '2022-06-07', 'received', '350.0000', '350.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (706, 176, NULL, 171, '66305946', 'Fitunia', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-07', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (707, 176, NULL, 397, '85158991', 'Scindupsis Silver lady ', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-06-07', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (708, 176, NULL, 398, '95341318', 'Senseveria Cleopetra ', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '3.0000', '2022-06-07', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (709, 176, NULL, 399, '61053416', 'Silver Zebra ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-07', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (710, 176, NULL, 362, '37678201', 'Lucky Bamboo Golden Ring ', NULL, '800.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '4.0000', '2022-06-07', 'received', '800.0000', '800.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (711, 176, NULL, 400, '77552458', 'Cebu Blue Big ', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '-2.0000', '2022-06-07', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (712, 176, NULL, 401, '38332626', 'Lupinum Big ', NULL, '2500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-06-07', 'received', '2500.0000', '2500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (713, 176, NULL, 21, '26738846', 'SPANISH MOSS SET', NULL, '400.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-06-07', 'received', '400.0000', '400.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (714, 176, NULL, 402, '87099053', 'Million herat shape ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-06-07', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (715, 176, NULL, 67, '26136413', 'CATTLEYA ORCHID', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-06-07', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (716, 176, NULL, 165, '48621422', 'Anthurium', NULL, '1350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6750.0000', '0.0000', '2022-06-07', 'received', '1350.0000', '1350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (717, 176, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-06-07', 'received', '400.0000', '400.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (718, 176, NULL, 25, '84339014', 'MINI DENDROBIUM', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-07', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (719, 176, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-06-07', 'received', '500.0000', '500.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (720, 176, NULL, 403, '10498681', 'Air plant Ball ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-06-07', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (721, 176, NULL, 404, '37694427', 'cryptenthus big', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '-2.0000', '2022-06-07', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (722, 176, NULL, 325, '25522346', 'Pink princess', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-06-07', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (723, 176, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-06-07', 'received', '35.0000', '35.0000', '40.0000', NULL, NULL, 3, 'KG', '40.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (724, 176, NULL, 22, '01402428', 'BROMELIAD THAI', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-06-07', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (725, 177, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-06-12', 'received', '200.0000', '200.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (726, 177, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-06-12', 'received', '140.0000', '140.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (727, 177, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '560.0000', '0.0000', '2022-06-12', 'received', '80.0000', '80.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (728, 177, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-06-12', 'received', '300.0000', '300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (729, 178, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1875.0000', '0.0000', '2022-06-12', 'received', '1875.0000', '1875.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (730, 178, NULL, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-12', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (731, 178, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '35.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '0.0000', '2022-06-12', 'received', '200.0000', '200.0000', '35.0000', NULL, NULL, 2, 'Pcs', '35.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (732, 178, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-06-12', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (733, 179, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-06-12', 'received', '30.0000', '30.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (734, 179, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-06-12', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (735, 180, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-06-19', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (736, 180, NULL, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', NULL, '185.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1110.0000', '0.0000', '2022-06-19', 'received', '185.0000', '185.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '185.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (737, 180, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-06-19', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (738, 181, NULL, 405, '69849054', 'Plastic Stand tob', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-06-19', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (739, 182, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '29.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '870.0000', '0.0000', '2022-06-23', 'received', '30.0000', '30.0000', '29.0000', NULL, NULL, 2, 'Pcs', '29.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (740, 183, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-24', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (741, 183, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-06-24', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (742, 183, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-06-24', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (743, 183, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-06-24', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (744, 183, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-06-24', 'received', '140.0000', '140.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (745, 183, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-06-24', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (746, 183, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-06-24', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (747, 183, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-06-24', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (748, 183, NULL, 95, '91943746', 'GROOT ', NULL, '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-06-24', 'received', '450.0000', '450.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (749, 183, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-06-24', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (750, 184, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '25.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8750.0000', '0.0000', '2022-06-25', 'received', '350.0000', '350.0000', '25.0000', NULL, NULL, 2, 'Pcs', '25.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (751, 184, NULL, 405, '69849054', 'Plastic Stand tob', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-06-25', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (752, 184, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-06-25', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (753, 184, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-06-25', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (754, 184, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-06-25', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (755, 184, NULL, 20, '16748388', 'SENSEVERIA FRANCISII', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '1.0000', '2022-06-25', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (756, 184, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '180.0000', '0.0000', '2022-06-25', 'received', '180.0000', '180.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (757, 185, NULL, 406, '55901923', 'Thai NPK 10-52-17', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-06-27', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (758, 185, NULL, 407, '23661246', 'Thai NPK 21-21-21', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '1.0000', '2022-06-27', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (759, 185, NULL, 408, '03054245', 'Alpha Omega Bloom', NULL, '700.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-06-27', 'received', '700.0000', '700.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (760, 185, NULL, 409, '31197682', 'Alpha Omega House plant', NULL, '700.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-06-27', 'received', '700.0000', '700.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (761, 185, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-06-27', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (762, 185, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2022-06-27', 'received', '180.0000', '180.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (763, 185, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '70.0000', '0.0000', '2022-06-27', 'received', '35.0000', '35.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (764, 185, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '420.0000', '0.0000', '2022-06-27', 'received', '140.0000', '140.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (765, 185, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '840.0000', '0.0000', '2022-06-27', 'received', '70.0000', '70.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (766, 185, NULL, 224, '11987508', 'baby Bio House Plant', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '2.0000', '2022-06-27', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (767, 185, NULL, 163, '60285514', 'Transparent Mesh Pot ', NULL, '75.0000', '32.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '7.0000', '2022-06-27', 'received', '75.0000', '75.0000', '32.0000', NULL, NULL, 2, 'Pcs', '32.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (768, 185, NULL, 126, '50528427', 'LAZZY NOZZEL', NULL, '35.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '175.0000', '2.0000', '2022-06-27', 'received', '35.0000', '35.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (769, 185, NULL, 338, '56488698', 'Moon Cactus Red', NULL, '300.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '0.0000', '2022-06-27', 'received', '300.0000', '300.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (770, 186, NULL, 105, '51600376', 'GLOVES WITH CLAWS', NULL, '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '2.0000', '2022-07-02', 'received', '150.0000', '150.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (771, 187, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '32.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4480.0000', '0.0000', '2022-07-04', 'received', '140.0000', '140.0000', '32.0000', NULL, NULL, 2, 'Pcs', '32.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (772, 187, NULL, 405, '69849054', 'Plastic Stand tob', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-07-04', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (773, 187, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '105.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3150.0000', '0.0000', '2022-07-04', 'received', '30.0000', '30.0000', '105.0000', NULL, NULL, 2, 'Pcs', '105.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (774, 187, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1700.0000', '0.0000', '2022-07-04', 'received', '170.0000', '170.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (775, 187, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2600.0000', '0.0000', '2022-07-04', 'received', '130.0000', '130.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (776, 187, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '35.0000', '0.0000', '2022-07-04', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (777, 188, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-07-06', 'received', '350.0000', '350.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (778, 189, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '4.0000', '2022-07-15', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (779, 189, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-07-15', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (780, 189, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-07-15', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (781, 190, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-16', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (782, 190, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-07-16', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (783, 191, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-18', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (784, 191, NULL, 394, '18806425', 'Mini Hanging Pod', NULL, '70.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-07-18', 'received', '70.0000', '70.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (785, 191, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-07-18', 'received', '450.0000', '450.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (786, 191, NULL, 135, '38349643', 'ORCHID FOCUS GROW', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-07-18', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (787, 191, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-07-18', 'received', '50.0000', '50.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (788, 191, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-07-18', 'received', '45.0000', '45.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (789, 191, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-07-18', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (790, 191, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-07-18', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (791, 191, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-07-18', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (792, 191, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '660.0000', '0.0000', '2022-07-18', 'received', '220.0000', '220.0000', '3.0000', NULL, NULL, 3, 'KG', '3.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (793, 192, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2022-07-21', 'received', '180.0000', '180.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (794, 192, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '480.0000', '0.0000', '2022-07-21', 'received', '160.0000', '160.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (795, 192, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-07-21', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (796, 192, NULL, 106, '06940400', 'CLEANING GLOVES', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-07-21', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (797, 192, NULL, 91, '61326340', 'RESIN BIG PLANTER ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-07-21', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (798, 192, NULL, 99, '22510797', 'RED NOSE CUTTER ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-07-21', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (799, 192, NULL, 100, '61786707', 'PRUNING SHEARS RED ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-21', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (800, 192, NULL, 158, '28288452', 'GRAVITY POT', NULL, '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '1.0000', '2022-07-21', 'received', '4500.0000', '4500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (801, 192, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '35.0000', '0.0000', '2022-07-21', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (802, 192, NULL, 94, '86499263', 'SELF WATERING TRANSPARENT ', NULL, '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-07-21', 'received', '150.0000', '150.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (803, 192, NULL, 274, '37141257', 'Double part Color Tub', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-07-21', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (804, 192, NULL, 412, '65156688', 'TOY M', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-07-21', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (805, 192, NULL, 413, '22733418', 'TOY S', NULL, '100.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-07-21', 'received', '100.0000', '100.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (806, 192, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-07-21', 'received', '80.0000', '80.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (807, 192, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-07-21', 'received', '140.0000', '140.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (808, 192, NULL, 376, '44852135', 'Color stone 1kg', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-07-21', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (809, 192, NULL, 352, '55296642', 'Color stone 500g', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-07-21', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (810, 193, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '0.0000', '2022-07-23', 'received', '350.0000', '350.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (811, 194, NULL, 405, '69849054', 'Plastic Stand tob', NULL, '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-07-25', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (812, 194, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2022-07-25', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (813, 194, NULL, 396, '40732224', 'Peru S', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-07-25', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (814, 194, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-07-25', 'received', '150.0000', '150.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (815, 194, NULL, 319, '00716849', 'MoonLight S', NULL, '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-07-25', 'received', '300.0000', '300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (816, 195, NULL, 414, '41279592', 'Seed Thai ', NULL, '150.0000', '66.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9900.0000', '62.0000', '2022-07-26', 'received', '150.0000', '150.0000', '66.0000', NULL, NULL, 2, 'Pcs', '66.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (817, 195, NULL, 352, '55296642', 'Color stone 500g', NULL, '70.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '280.0000', '0.0000', '2022-07-26', 'received', '70.0000', '70.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (818, 195, NULL, 232, '15417255', 'Fungicide 50gm', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '5.0000', '2022-07-26', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (819, 195, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-07-26', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (820, 195, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '35.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-07-26', 'received', '30.0000', '30.0000', '35.0000', NULL, NULL, 2, 'Pcs', '35.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (821, 195, NULL, 415, '38974763', 'Book 280', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '1.0000', '2022-07-26', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (822, 195, NULL, 416, '37699670', 'Book 450', NULL, '320.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '320.0000', '1.0000', '2022-07-26', 'received', '320.0000', '320.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '320.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (823, 195, NULL, 417, '92460660', 'Book 300', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '2.0000', '2022-07-26', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (824, 195, NULL, 418, '37588522', 'Book 220', NULL, '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '1.0000', '2022-07-26', 'received', '150.0000', '150.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (825, 195, NULL, 419, '56636045', 'Book 200', NULL, '140.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '5.0000', '2022-07-26', 'received', '140.0000', '140.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (826, 195, NULL, 420, '32612358', 'Book 400', NULL, '270.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '810.0000', '3.0000', '2022-07-26', 'received', '270.0000', '270.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (827, 195, NULL, 421, '30002300', 'Book 250', NULL, '170.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '680.0000', '4.0000', '2022-07-26', 'received', '170.0000', '170.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (828, 195, NULL, 239, '97108426', 'Euphorbia lectia ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-07-26', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (829, 195, NULL, 422, '97366139', 'Water Fall ', NULL, '2400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '1.0000', '2022-07-26', 'received', '2400.0000', '2400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (830, 195, NULL, 423, '57636814', 'Hanging Bird Thai', NULL, '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-07-26', 'received', '400.0000', '400.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (831, 195, NULL, 424, '77188704', 'Ceramic Wood Style', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-07-26', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (832, 195, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-07-26', 'received', '700.0000', '700.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (833, 195, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-26', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (834, 196, NULL, 425, '69132898', 'Toy Mini 4pcs', NULL, '80.0000', '38.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3040.0000', '0.0000', '2022-07-31', 'received', '80.0000', '80.0000', '38.0000', NULL, NULL, 2, 'Pcs', '38.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (835, 196, NULL, 426, '14071835', 'Butter Fly', NULL, '30.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-07-31', 'received', '30.0000', '30.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (836, 196, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-07-31', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (837, 196, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-07-31', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (838, 196, NULL, 319, '00716849', 'MoonLight S', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-31', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (839, 196, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-07-31', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (840, 196, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-31', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (841, 196, NULL, 288, '22783870', 'Artistic long Planter B', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-31', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (842, 196, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1120.0000', '0.0000', '2022-07-31', 'received', '140.0000', '140.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (843, 196, NULL, 291, '31566492', 'Stylish Stripe Planter s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '10.0000', '2022-07-31', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (844, 196, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-07-31', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (845, 196, NULL, 297, '13535342', 'Glossy Self Watering Planter', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-07-31', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (846, 196, NULL, 393, '62446910', 'Zen Hanging pod', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-31', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (847, 196, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-07-31', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (848, 197, NULL, 393, '62446910', 'Zen Hanging pod', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-07-31', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (849, 198, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-07-31', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (850, 199, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1700.0000', '0.0000', '2022-08-01', 'received', '170.0000', '170.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (851, 199, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '30.0000', '0.0000', '2022-08-01', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (852, 199, NULL, 270, '61319065', 'SEED (100)', NULL, '80.0000', '25.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-01', 'received', '80.0000', '80.0000', '25.0000', NULL, NULL, 2, 'Pcs', '25.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (853, 199, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-08-01', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (854, 199, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-08-01', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (855, 199, NULL, 25, '84339014', 'MINI DENDROBIUM', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-08-01', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (856, 200, NULL, 430, '21514256', 'Senseverai Hahnii Big ', NULL, '3000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '0.0000', '2022-08-08', 'received', '3000.0000', '3000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (857, 200, NULL, 427, '28587289', 'Aglonema 5', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '-2.0000', '2022-08-08', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (858, 200, NULL, 428, '53896849', 'Aglonema 6', NULL, '1500.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '15000.0000', '-2.0000', '2022-08-08', 'received', '1500.0000', '1500.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (859, 200, NULL, 429, '90163075', 'Aglonema 7', NULL, '2000.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '20000.0000', '0.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (860, 200, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-08-08', 'received', '750.0000', '750.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (861, 200, NULL, 173, '63588432', 'Ring Of Fire ', NULL, '4000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-08-08', 'received', '4000.0000', '4000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '4000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (862, 200, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-08-08', 'received', '900.0000', '900.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (863, 200, NULL, 433, '16510893', 'Philodendron Rungsum', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '-1.0000', '2022-08-08', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (864, 200, NULL, 434, '57995031', 'Fern With Coco Shell', NULL, '1000.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '0.0000', '2022-08-08', 'received', '1000.0000', '1000.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (865, 200, NULL, 397, '85158991', 'Scindupsis Silver lady ', NULL, '2000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '0.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (866, 200, NULL, 436, '54948921', 'Philodendron Silver Sword', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '1.0000', '2022-08-08', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (867, 200, NULL, 438, '00947711', 'Philodendron mayoi', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (868, 200, NULL, 440, '91750949', 'Senseveria Boncel Big ', NULL, '1500.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '15000.0000', '3.0000', '2022-08-08', 'received', '1500.0000', '1500.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (869, 200, NULL, 441, '42572053', 'Senseveria Gold Flame ', NULL, '800.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '2.0000', '2022-08-08', 'received', '800.0000', '800.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (870, 200, NULL, 71, '53980043', 'Ionantha Ball', NULL, '800.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '6.0000', '2022-08-08', 'received', '800.0000', '800.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (871, 200, NULL, 165, '48621422', 'Anthurium', NULL, '1600.0000', '25.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '40000.0000', '0.0000', '2022-08-08', 'received', '1600.0000', '1600.0000', '25.0000', NULL, NULL, 2, 'Pcs', '25.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (872, 200, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '3.0000', '2022-08-08', 'received', '900.0000', '900.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (873, 200, NULL, 442, '17138235', 'Philo. Thai Sunrise ', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-08-08', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (874, 200, NULL, 444, '91635945', 'Adensoni Indo. ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-08', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (875, 200, NULL, 445, '81800808', 'Moonlight dark', NULL, '700.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10500.0000', '0.0000', '2022-08-08', 'received', '700.0000', '700.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (876, 200, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '24000.0000', '0.0000', '2022-08-08', 'received', '1200.0000', '1200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (877, 200, NULL, 186, '21212277', 'philo Cream Splash ', NULL, '600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-08', 'received', '600.0000', '600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (878, 200, NULL, 50, '88680893', 'DUBIA', NULL, '1750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '4.0000', '2022-08-08', 'received', '1750.0000', '1750.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (879, 200, NULL, 249, '37342563', 'Philodendron Sp Peru', NULL, '2000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '5.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (880, 200, NULL, 447, '72901803', 'Philo Tortum Big', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (881, 200, NULL, 448, '93803138', 'Syngonium Tricolor', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (882, 200, NULL, 449, '27598414', 'Shangrila Big ', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-08-08', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (883, 200, NULL, 29, '24835571', 'PHILODENDRON GIGAS', NULL, '2500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '2.0000', '2022-08-08', 'received', '2500.0000', '2500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (884, 200, NULL, 326, '28746933', 'Raphidoohora Cryptantha', NULL, '2000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '2.0000', '2022-08-08', 'received', '2000.0000', '2000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (885, 200, NULL, 355, '89030971', 'philo Brazil s', NULL, '300.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-08-08', 'received', '300.0000', '300.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (886, 200, NULL, 168, '07964908', 'Silver Shartin', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-08', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (887, 200, NULL, 431, '98630352', 'Hoya Sunrise ', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-08-08', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (888, 200, NULL, 348, '94516686', 'Philo. Mican ', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-08', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (889, 200, NULL, 46, '32396546', 'AGOLONEMA WHITE', NULL, '210.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-08-08', 'received', '210.0000', '210.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '210.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (890, 200, NULL, 451, '25823623', 'African Viloet ', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '10.0000', '2022-08-08', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (891, 200, NULL, 453, '93505738', 'small Trailing peoporima ', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-08-08', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (892, 200, NULL, 254, '31700219', 'Hoya 1.5', NULL, '1000.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-08-08', 'received', '1000.0000', '1000.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (893, 200, NULL, 66, '77547002', 'DICHIDIA BUBLE ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-08-08', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (894, 200, NULL, 42, '14233360', 'PEPORIMA GREEN ', NULL, '90.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-08-08', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (895, 200, NULL, 454, '95429654', 'peporima verg small', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-08-08', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (896, 200, NULL, 396, '40732224', 'Peru S', NULL, '350.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-08-08', 'received', '350.0000', '350.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (897, 200, NULL, 319, '00716849', 'MoonLight S', NULL, '300.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-08-08', 'received', '300.0000', '300.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (898, 200, NULL, 312, '65313386', 'Aglonema 1', NULL, '250.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-08', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (899, 200, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-08-08', 'received', '150.0000', '150.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (900, 200, NULL, 432, '92521439', 'Raphidoohora Hayii verg. ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-08', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (901, 201, NULL, 443, '27418502', 'Variegated ZZ', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-08', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (902, 202, NULL, 435, '11021741', 'Wild fern ', NULL, '1800.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10800.0000', '0.0000', '2022-08-09', 'received', '1800.0000', '1800.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (903, 202, NULL, 439, '83290543', 'Raphidophora Hay Big ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-09', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (904, 202, NULL, 446, '29217468', 'Scindupsus Platinum ', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-08-09', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (905, 202, NULL, 460, '09782659', 'Adensoni Verg', NULL, '6000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '1.0000', '2022-08-09', 'received', '6000.0000', '6000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '6000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (906, 202, NULL, 49, '21457857', 'PHILODENDRON BIRKIN', NULL, '600.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '2.0000', '2022-08-09', 'received', '600.0000', '600.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (907, 202, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2022-08-09', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (908, 202, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-08-09', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (909, 202, NULL, 457, '88884807', 'Coco Pole S', NULL, '30.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-08-09', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (910, 202, NULL, 456, '07689641', 'Coco Pole M', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-08-09', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (911, 202, NULL, 455, '18818074', 'Coco Pole L', NULL, '110.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2022-08-09', 'received', '110.0000', '110.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (912, 202, NULL, 113, '02483091', '8 WAY SPRAYER HEAD', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-08-09', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (913, 202, NULL, 413, '22733418', 'TOY S', NULL, '100.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-08-09', 'received', '100.0000', '100.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (914, 202, NULL, 459, '83233710', 'Toy', NULL, '150.0000', '50.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '0.0000', '2022-08-09', 'received', '150.0000', '150.0000', '50.0000', NULL, NULL, 2, 'Pcs', '50.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (915, 202, NULL, 412, '65156688', 'TOY M', NULL, '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '1.0000', '2022-08-09', 'received', '200.0000', '200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (916, 202, NULL, 165, '48621422', 'Anthurium', NULL, '1600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-08-09', 'received', '1600.0000', '1600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (917, 202, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-08-09', 'received', '400.0000', '400.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (918, 202, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-08-09', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (919, 202, NULL, 323, '52372789', 'Philo. Nangaritense', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-08-09', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (920, 202, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-08-09', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (921, 202, NULL, 31, '81231523', 'PHILODENDRON BRANDIATUM', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '5.0000', '2022-08-09', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (922, 202, NULL, 461, '67667255', 'Senseverai Hahnii Small', NULL, '500.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-08-09', 'received', '500.0000', '500.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (923, 202, NULL, 373, '67910730', 'Philo Macdwel Big ', NULL, '7000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '14000.0000', '2.0000', '2022-08-09', 'received', '7000.0000', '7000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '7000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (924, 202, NULL, 341, '02686278', 'Monostera Adinsoni', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-09', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (925, 202, NULL, 16, '65687548', 'SENSEVERIA BONCEL', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-08-09', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (926, 202, NULL, 462, '43381530', 'Monostera Thai Constalation Big', NULL, '18000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '0.0000', '2022-08-09', 'received', '18000.0000', '18000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '18000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (927, 202, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-08-09', 'received', '250.0000', '250.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (928, 202, NULL, 463, '20093942', 'Astrophytum Asteris', NULL, '250.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '7.0000', '2022-08-09', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (929, 202, NULL, 464, '81915881', 'Gymno Calacium', NULL, '250.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '8.0000', '2022-08-09', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (930, 202, NULL, 465, '86512066', 'Astrophytum Asteris Big', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-09', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (931, 202, NULL, 108, '76776881', 'GROW LIGHT 10 W', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-08-09', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (932, 202, NULL, 109, '28303880', 'GROW LIGHT PANEL', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-08-09', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (933, 202, NULL, 372, '59471278', 'Enobi Big Pot ', NULL, '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-08-09', 'received', '1200.0000', '1200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (934, 203, NULL, 452, '41218792', 'peoprima Red', NULL, '350.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3150.0000', '0.0000', '2022-08-09', 'received', '350.0000', '350.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (935, 204, NULL, 437, '29380615', 'Parisio verde Big', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-11', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (936, 205, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-08-14', 'received', '450.0000', '450.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (937, 205, NULL, 387, '88192874', 'Zen Pot Metalica Big', NULL, '650.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2600.0000', '0.0000', '2022-08-14', 'received', '650.0000', '650.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (938, 205, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2022-08-14', 'received', '180.0000', '180.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (939, 205, NULL, 126, '50528427', 'LAZZY NOZZEL', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '10.0000', '2022-08-14', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (940, 205, NULL, 102, '82430231', 'MINI TOOLS SET ', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '1.0000', '2022-08-14', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (941, 205, NULL, 114, '36957565', 'GRAFTING TAP', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '7.0000', '2022-08-14', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (942, 205, NULL, 409, '31197682', 'Alpha Omega House plant', NULL, '700.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-08-14', 'received', '700.0000', '700.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (943, 205, NULL, 352, '55296642', 'Color stone 500g', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-08-14', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (944, 205, NULL, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-14', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (945, 205, NULL, 375, '75823196', 'Humidifier & Aroma Dufuser Big', NULL, '1800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-08-14', 'received', '1800.0000', '1800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (946, 205, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-08-14', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (947, 205, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-08-14', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (948, 205, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-14', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (949, 205, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-08-14', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (950, 205, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-08-14', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (951, 205, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '250.0000', '0.0000', '2022-08-14', 'received', '50.0000', '50.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (952, 205, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-08-14', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (953, 205, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-08-14', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (954, 205, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-08-14', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (955, 205, NULL, 289, '30018566', 'Electroplated Round Planter', NULL, '140.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '280.0000', '0.0000', '2022-08-14', 'received', '140.0000', '140.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '140.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (956, 205, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-08-14', 'received', '1875.0000', '1875.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (957, 206, NULL, 387, '88192874', 'Zen Pot Metalica Big', NULL, '650.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1950.0000', '0.0000', '2022-08-15', 'received', '650.0000', '650.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (958, 207, NULL, 6, '08', 'Zen Pot Tall M', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-08-19', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (959, 207, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-08-19', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (960, 208, NULL, 264, '63489717', 'African Violet', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '6.0000', '2022-08-20', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (961, 209, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '32.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5440.0000', '0.0000', '2022-08-21', 'received', '170.0000', '170.0000', '32.0000', NULL, NULL, 2, 'Pcs', '32.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (962, 209, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-08-21', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (963, 209, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2022-08-21', 'received', '30.0000', '30.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (964, 209, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1980.0000', '0.0000', '2022-08-21', 'received', '220.0000', '220.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (965, 209, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-08-21', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (966, 209, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '250.0000', '0.0000', '2022-08-21', 'received', '50.0000', '50.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (967, 209, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '90.0000', '0.0000', '2022-08-21', 'received', '45.0000', '45.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (968, 209, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2022-08-21', 'received', '180.0000', '180.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (969, 209, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '160.0000', '0.0000', '2022-08-21', 'received', '160.0000', '160.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '160.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (970, 210, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '45.0000', '0.0000', '2022-08-21', 'received', '45.0000', '45.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (971, 211, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-08-23', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (972, 211, NULL, 5, '06', 'Zen Pot M ', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-08-23', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (973, 211, NULL, 6, '08', 'Zen Pot Tall M', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '4.0000', '2022-08-23', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (974, 211, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-08-23', 'received', '450.0000', '450.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (975, 211, NULL, 389, '60021183', 'Zen Metalica S', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-08-23', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (976, 211, NULL, 390, '66988109', 'Zen Metalica M', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-08-23', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (977, 211, NULL, 391, '89877743', 'Zen Metalica L', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-08-23', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (978, 211, NULL, 388, '87398804', 'Zen Pot Tall Metalica M', NULL, '550.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3300.0000', '0.0000', '2022-08-23', 'received', '550.0000', '550.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '550.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (979, 211, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-08-23', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (980, 211, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-08-23', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (981, 212, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '245.0000', '0.0000', '2022-08-30', 'received', '35.0000', '35.0000', '7.0000', NULL, NULL, 3, 'KG', '7.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (982, 212, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-08-30', 'received', '450.0000', '450.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (983, 212, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-08-30', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (984, 213, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-08-30', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (985, 214, NULL, 153, '63407332', 'RATTAN HANGING POT', NULL, '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-09-03', 'received', '250.0000', '250.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (986, 214, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '3.0000', '2022-09-03', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (987, 214, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-09-03', 'received', '150.0000', '150.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (988, 214, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1280.0000', '0.0000', '2022-09-03', 'received', '80.0000', '80.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (989, 214, NULL, 80, '63589701', 'WHITE PRINTED TOB', NULL, '70.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '210.0000', '0.0000', '2022-09-03', 'received', '70.0000', '70.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (990, 214, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-09-03', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (991, 214, NULL, 408, '03054245', 'Alpha Omega Bloom', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-09-03', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (992, 214, NULL, 409, '31197682', 'Alpha Omega House plant', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-09-03', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (993, 214, NULL, 135, '38349643', 'ORCHID FOCUS GROW', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-09-03', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (994, 214, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-09-03', 'received', '45.0000', '45.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (995, 214, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '210.0000', '0.0000', '2022-09-03', 'received', '30.0000', '30.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (996, 214, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1700.0000', '0.0000', '2022-09-03', 'received', '170.0000', '170.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (997, 215, NULL, 409, '31197682', 'Alpha Omega House plant', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-09-03', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (998, 216, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '95.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3325.0000', '0.0000', '2022-09-06', 'received', '35.0000', '35.0000', '95.0000', NULL, NULL, 2, 'Pcs', '95.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (999, 216, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-09-06', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1000, 216, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '650.0000', '0.0000', '2022-09-06', 'received', '130.0000', '130.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1001, 217, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '140.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '23800.0000', '0.0000', '2022-09-09', 'received', '170.0000', '170.0000', '140.0000', NULL, NULL, 2, 'Pcs', '140.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1002, 217, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-09-09', 'received', '350.0000', '350.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1003, 217, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-09-09', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1004, 217, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-09-09', 'received', '750.0000', '750.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1005, 217, NULL, 352, '55296642', 'Color stone 500g', NULL, '70.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '140.0000', '0.0000', '2022-09-09', 'received', '70.0000', '70.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1006, 217, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '70.0000', '0.0000', '2022-09-09', 'received', '70.0000', '70.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1007, 217, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-09-09', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1008, 217, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-09-09', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1009, 218, NULL, 412, '65156688', 'TOY M', NULL, '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '1.0000', '2022-09-09', 'received', '200.0000', '200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1010, 219, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-09-10', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1011, 219, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '140.0000', '0.0000', '2022-09-10', 'received', '70.0000', '70.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1012, 220, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-09-11', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1020, 221, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-09-12', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1019, 221, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-09-12', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1018, 221, NULL, 239, '97108426', 'Euphorbia lectia ', NULL, '1000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-09-12', 'received', '1000.0000', '1000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1017, 221, NULL, 16, '65687548', 'SENSEVERIA BONCEL', NULL, '450.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-09-12', 'received', '450.0000', '450.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1021, 221, NULL, 439, '83290543', 'Raphidophora Hay Big ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-09-12', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1022, 222, NULL, 7, '11', 'Miracal Gro Osmocote 1KG', NULL, '1875.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1875.0000', '0.0000', '2022-09-13', 'received', '1875.0000', '1875.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '1875.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1023, 223, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '660.0000', '0.0000', '2022-09-16', 'received', '220.0000', '220.0000', '3.0000', NULL, NULL, 3, 'KG', '3.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1024, 223, NULL, 135, '38349643', 'ORCHID FOCUS GROW', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-09-16', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1025, 223, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '315.0000', '0.0000', '2022-09-16', 'received', '35.0000', '35.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1026, 223, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '30.0000', '0.0000', '2022-09-16', 'received', '30.0000', '30.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1027, 223, NULL, 476, '54138267', 'ORCHID FOCUS Grow 1liter', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2022-09-16', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1028, 224, NULL, 165, '48621422', 'Anthurium', NULL, '1600.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '48000.0000', '0.0000', '2022-09-17', 'received', '1600.0000', '1600.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1029, 224, NULL, 477, '40372247', 'Wild fern Big', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-09-17', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1030, 224, NULL, 467, '53203502', 'Monostera deliciosa big ', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-09-17', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1031, 224, NULL, 438, '00947711', 'Philodendron mayoi', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-09-17', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1032, 224, NULL, 310, '19536640', 'Monostera Esquleta ', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-09-17', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1033, 224, NULL, 468, '27225059', 'Splendid Big ', NULL, '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-09-17', 'received', '4500.0000', '4500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1034, 224, NULL, 469, '23037669', 'Philo. Fat boy', NULL, '3500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '0.0000', '2022-09-17', 'received', '3500.0000', '3500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1035, 224, NULL, 470, '62507647', 'Global Green', NULL, '1800.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '-5.0000', '2022-09-17', 'received', '1800.0000', '1800.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1036, 224, NULL, 471, '74981812', 'Xanido vereigated  ', NULL, '3600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '1.0000', '2022-09-17', 'received', '3600.0000', '3600.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1037, 224, NULL, 395, '72918232', 'Fern  Philippine', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '4.0000', '2022-09-17', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1038, 224, NULL, 472, '87908060', 'Philodendron Tripadium ', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2022-09-17', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1039, 224, NULL, 429, '90163075', 'Aglonema 7', NULL, '2000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '0.0000', '2022-09-17', 'received', '2000.0000', '2000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1040, 224, NULL, 168, '07964908', 'Silver Shartin', NULL, '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-09-17', 'received', '300.0000', '300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1041, 224, NULL, 473, '21904700', 'Silver Shatin Small ', NULL, '100.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-09-17', 'received', '100.0000', '100.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1042, 224, NULL, 474, '45643281', 'Brasil Small ', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-09-17', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1043, 224, NULL, 319, '00716849', 'MoonLight S', NULL, '300.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-09-17', 'received', '300.0000', '300.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1044, 224, NULL, 43, '28210704', 'PEPORIMA VERIEGATED', NULL, '130.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1040.0000', '0.0000', '2022-09-17', 'received', '130.0000', '130.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1045, 224, NULL, 42, '14233360', 'PEPORIMA GREEN ', NULL, '90.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '0.0000', '2022-09-17', 'received', '90.0000', '90.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1046, 224, NULL, 173, '63588432', 'Ring Of Fire ', NULL, '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '1.0000', '2022-09-17', 'received', '4000.0000', '4000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1047, 224, NULL, 437, '29380615', 'Parisio verde Big', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '2.0000', '2022-09-17', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1048, 224, NULL, 66, '77547002', 'DICHIDIA BUBLE ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-09-17', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1049, 224, NULL, 475, '50561074', 'Silver lady Small', NULL, '700.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-09-17', 'received', '700.0000', '700.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1050, 224, NULL, 47, '51995656', 'MILLION HEART VERIEGATED ', NULL, '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-09-17', 'received', '500.0000', '500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1051, 224, NULL, 14, '27506698', 'DICHIDIA MELON', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2022-09-17', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1052, 224, NULL, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', NULL, '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '4.0000', '2022-09-17', 'received', '450.0000', '450.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1053, 224, NULL, 239, '97108426', 'Euphorbia lectia ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '1.0000', '2022-09-17', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1054, 224, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-09-17', 'received', '200.0000', '200.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1055, 224, NULL, 46, '32396546', 'AGOLONEMA WHITE', NULL, '210.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '840.0000', '0.0000', '2022-09-17', 'received', '210.0000', '210.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '210.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1056, 224, NULL, 439, '83290543', 'Raphidophora Hay Big ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '1.0000', '2022-09-17', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1057, 224, NULL, 34, '94599052', 'CEBU BLUE', NULL, '1300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5200.0000', '1.0000', '2022-09-17', 'received', '1300.0000', '1300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1058, 224, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-09-17', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1059, 224, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-09-17', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1060, 224, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2022-09-17', 'received', '200.0000', '200.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1061, 224, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-09-17', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1062, 224, NULL, 175, '61824284', 'Phelenopsis', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '1.0000', '2022-09-17', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1063, 224, NULL, 427, '28587289', 'Aglonema 5', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '0.0000', '2022-09-17', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1064, 224, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-09-17', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1065, 224, NULL, 478, '75238013', 'Monostera  Albo', NULL, '12000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '1.0000', '2022-09-17', 'received', '12000.0000', '12000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '12000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1066, 224, NULL, 479, '68269511', 'Epi Marbel Verg. Big', NULL, '7000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '1.0000', '2022-09-17', 'received', '7000.0000', '7000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '7000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1067, 224, NULL, 480, '38637086', 'Senseveria Beauty Queen ', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-09-17', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1068, 224, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-09-17', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1069, 224, NULL, 380, '75829195', 'Siko 100ml', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-09-17', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1070, 224, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '50.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8500.0000', '0.0000', '2022-09-17', 'received', '170.0000', '170.0000', '50.0000', NULL, NULL, 2, 'Pcs', '50.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1071, 225, NULL, 481, '21888825', 'SPAGHNUM MOSS newzealand', NULL, '1400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '-1.0000', '2022-09-24', 'received', '1400.0000', '1400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1072, 225, NULL, 467, '53203502', 'Monostera deliciosa big ', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-09-24', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1073, 225, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2350.0000', '0.0000', '2022-09-24', 'received', '235.0000', '235.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1074, 226, NULL, 481, '21888825', 'SPAGHNUM MOSS newzealand', NULL, '1400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '2.0000', '2022-09-25', 'received', '1400.0000', '1400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1075, 227, NULL, 297, '13535342', 'Glossy Self Watering Planter', NULL, '180.0000', '22.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3960.0000', '7.0000', '2022-09-30', 'received', '180.0000', '180.0000', '22.0000', NULL, NULL, 2, 'Pcs', '22.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1076, 227, NULL, 388, '87398804', 'Zen Pot Tall Metalica M', NULL, '550.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2750.0000', '0.0000', '2022-09-30', 'received', '550.0000', '550.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '550.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1077, 227, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-09-30', 'received', '80.0000', '80.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1078, 227, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-09-30', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1079, 227, NULL, 85, '67443382', 'RESIN PLNATER G3', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-09-30', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1080, 227, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-09-30', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1081, 227, NULL, 149, '01269763', 'GLASS TUBE WITH STAND 2', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-09-30', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1082, 227, NULL, 115, '83904738', 'TIE RIBON', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '5.0000', '2022-09-30', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1083, 227, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-09-30', 'received', '150.0000', '150.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1084, 227, NULL, 226, '21257351', 'Thai Root Hormon', NULL, '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-09-30', 'received', '350.0000', '350.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1085, 227, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-09-30', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, 3, 'KG', '6.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1086, 227, NULL, 285, '40986136', 'Saaf 100gm', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2022-09-30', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1087, 227, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-09-30', 'received', '45.0000', '45.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1088, 227, NULL, 408, '03054245', 'Alpha Omega Bloom', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-09-30', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1089, 227, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '35.0000', '0.0000', '2022-09-30', 'received', '35.0000', '35.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1090, 228, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '245.0000', '0.0000', '2022-10-04', 'received', '35.0000', '35.0000', '7.0000', NULL, NULL, 3, 'KG', '7.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1091, 228, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '440.0000', '0.0000', '2022-10-04', 'received', '220.0000', '220.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1092, 228, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-10-04', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1093, 228, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-10-04', 'received', '250.0000', '250.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1094, 228, NULL, 386, '68549735', 'Stylish Stripe Planter color M', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '2.0000', '2022-10-04', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1095, 228, NULL, 352, '55296642', 'Color stone 500g', NULL, '70.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '140.0000', '0.0000', '2022-10-04', 'received', '70.0000', '70.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1096, 229, NULL, 347, '45927746', 'glass vase ', NULL, '400.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-10-06', 'received', '400.0000', '400.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1106, 230, NULL, 246, '64970785', 'Syngonium', NULL, '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '0.0000', '2022-10-08', 'received', '200.0000', '200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1105, 230, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-10-08', 'received', '150.0000', '150.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1104, 230, NULL, 355, '89030971', 'philo Brazil s', NULL, '300.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-10-08', 'received', '300.0000', '300.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1103, 230, NULL, 484, '06524120', 'Niyon Pothos S', NULL, '130.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '520.0000', '0.0000', '2022-10-08', 'received', '130.0000', '130.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1102, 230, NULL, 483, '08247109', 'Manjula S', NULL, '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-10-08', 'received', '150.0000', '150.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1107, 231, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2022-10-09', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1108, 231, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-10-09', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1109, 231, NULL, 143, '89351267', 'OSMOCOTE 250GM', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2022-10-09', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1110, 231, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-10-09', 'received', '300.0000', '300.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1111, 232, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-10-11', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1112, 233, NULL, 466, '17763342', 'Philodendron Dragon Lime ', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-10-13', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1113, 234, NULL, 276, '04135216', 'Ceramic Color Bowl L ', NULL, '300.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-10-15', 'received', '300.0000', '300.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1114, 234, NULL, 489, '10019321', 'Flower vase M', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-10-15', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1115, 234, NULL, 486, '26750491', 'Flower vase L', NULL, '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1300.0000', '0.0000', '2022-10-15', 'received', '650.0000', '650.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1116, 234, NULL, 489, '10019321', 'Flower vase M', NULL, '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '2.0000', '2022-10-15', 'received', '350.0000', '350.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1117, 234, NULL, 487, '26757569', 'Flower vase S', NULL, '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-10-15', 'received', '300.0000', '300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1118, 234, NULL, 212, '20024744', 'Ceramic Bowl Small', NULL, '100.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-10-15', 'received', '100.0000', '100.0000', '16.0000', NULL, NULL, 2, 'Pcs', '16.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1119, 234, NULL, 485, '15964763', 'Ceramic Glass S', NULL, '120.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '840.0000', '0.0000', '2022-10-15', 'received', '120.0000', '120.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1120, 234, NULL, 211, '19735813', 'creamic color bowl ', NULL, '220.0000', '17.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3740.0000', '0.0000', '2022-10-15', 'received', '220.0000', '220.0000', '17.0000', NULL, NULL, 2, 'Pcs', '17.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1121, 235, NULL, 401, '38332626', 'Lupinum Big ', NULL, '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '1.0000', '2022-10-15', 'received', '2500.0000', '2500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1122, 235, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '0.0000', '2022-10-15', 'received', '1200.0000', '1200.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1123, 235, NULL, 400, '77552458', 'Cebu Blue Big ', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '2.0000', '2022-10-15', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1124, 235, NULL, 63, '43775956', 'DICHIDIA VERIGATED LEAF', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-10-15', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1125, 235, NULL, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '1.0000', '2022-10-15', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1126, 235, NULL, 403, '10498681', 'Air plant Ball ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-10-15', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1127, 235, NULL, 48, '57487006', 'FICUS GRAFTED BONSAI', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-10-15', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1128, 235, NULL, 305, '42248228', 'Black zz', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2022-10-15', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1129, 235, NULL, 491, '88790984', 'Senseverai Local Big', NULL, '500.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-10-15', 'received', '500.0000', '500.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1130, 235, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-10-15', 'received', '900.0000', '900.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1131, 235, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '72.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '18000.0000', '0.0000', '2022-10-15', 'received', '250.0000', '250.0000', '72.0000', NULL, NULL, 2, 'Pcs', '72.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1132, 235, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8250.0000', '0.0000', '2022-10-15', 'received', '750.0000', '750.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1133, 235, NULL, 496, '27165880', 'Caktus Zimno S', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '20.0000', '2022-10-15', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1134, 235, NULL, 497, '82833386', 'Caktus Zimno M', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-10-15', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1135, 235, NULL, 492, '34491163', 'Moonlight Verigated', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-10-15', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1136, 235, NULL, 188, '92625394', 'Florida Ghost Mint ', NULL, '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-10-15', 'received', '1200.0000', '1200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1137, 235, NULL, 490, '96878912', 'Niyon Pothos Big', NULL, '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-10-15', 'received', '1200.0000', '1200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1138, 235, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-10-15', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1139, 235, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '0.0000', '2022-10-15', 'received', '250.0000', '250.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1140, 235, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2022-10-15', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1141, 235, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-10-15', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1142, 235, NULL, 73, '78968160', 'SENSEVERIA DRWAF', NULL, '150.0000', '18.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '4.0000', '2022-10-15', 'received', '150.0000', '150.0000', '18.0000', NULL, NULL, 2, 'Pcs', '18.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1143, 235, NULL, 312, '65313386', 'Aglonema 1', NULL, '250.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-10-15', 'received', '250.0000', '250.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1144, 235, NULL, 396, '40732224', 'Peru S', NULL, '350.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-10-15', 'received', '350.0000', '350.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1145, 235, NULL, 317, '49073858', 'Snow Queen ', NULL, '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '2.0000', '2022-10-15', 'received', '150.0000', '150.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1146, 235, NULL, 46, '32396546', 'AGOLONEMA WHITE', NULL, '210.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-10-15', 'received', '210.0000', '210.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '210.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1147, 235, NULL, 319, '00716849', 'MoonLight S', NULL, '300.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '10.0000', '2022-10-15', 'received', '300.0000', '300.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1148, 235, NULL, 380, '75829195', 'Siko 100ml', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-10-15', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1149, 235, NULL, 271, '47649014', 'SEED (40)', NULL, '30.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '1.0000', '2022-10-15', 'received', '30.0000', '30.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1150, 235, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '54.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9180.0000', '0.0000', '2022-10-15', 'received', '170.0000', '170.0000', '54.0000', NULL, NULL, 2, 'Pcs', '54.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1151, 235, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '26.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '910.0000', '0.0000', '2022-10-15', 'received', '35.0000', '35.0000', '26.0000', NULL, NULL, 3, 'KG', '26.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1152, 235, NULL, 397, '85158991', 'Scindupsis Silver lady ', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-10-15', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1153, 235, NULL, 393, '62446910', 'Zen Hanging pod', NULL, '300.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-10-15', 'received', '300.0000', '300.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1154, 235, NULL, 166, '36023208', 'Fern ', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2022-10-15', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1155, 235, NULL, 431, '98630352', 'Hoya Sunrise ', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '0.0000', '2022-10-15', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1156, 235, NULL, 494, '41549189', 'Aglonema 8', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '-1.0000', '2022-10-15', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1157, 235, NULL, 495, '91094211', 'Devil Back Bone', NULL, '130.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '780.0000', '0.0000', '2022-10-15', 'received', '130.0000', '130.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1158, 235, NULL, 262, '02739001', 'Peporima Verg. Big', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-10-15', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1159, 235, NULL, 498, '04415101', 'Lucky Bamboo Verigated Sprial big', NULL, '1200.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9600.0000', '0.0000', '2022-10-15', 'received', '1200.0000', '1200.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1160, 235, NULL, 499, '56022994', 'Lucky Bamboo Verigated S', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '2.0000', '2022-10-15', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1161, 235, NULL, 500, '45642814', 'Lucky Bambo 5 step big', NULL, '1600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-10-15', 'received', '1600.0000', '1600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1162, 235, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '0.0000', '2022-10-15', 'received', '350.0000', '350.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1163, 235, NULL, 501, '27976806', 'Lucky Bambo Green Big', NULL, '1300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6500.0000', '3.0000', '2022-10-15', 'received', '1300.0000', '1300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1164, 235, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-10-15', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1165, 235, NULL, 25, '84339014', 'MINI DENDROBIUM', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-10-15', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1166, 235, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-10-15', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1167, 236, NULL, 109, '28303880', 'GROW LIGHT PANEL', NULL, '2000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-10-20', 'received', '2000.0000', '2000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1168, 237, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-10-21', 'received', '270.0000', '270.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1169, 237, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-10-21', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1170, 237, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-10-21', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1171, 237, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-10-21', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1172, 237, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-10-21', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1173, 237, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-10-21', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1174, 237, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-10-21', 'received', '50.0000', '50.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1175, 237, NULL, 502, '32980308', 'Vertimake 50ml', NULL, '90.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '9.0000', '2022-10-21', 'received', '90.0000', '90.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1176, 237, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '25.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '875.0000', '0.0000', '2022-10-21', 'received', '35.0000', '35.0000', '25.0000', NULL, NULL, 2, 'Pcs', '25.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1177, 237, NULL, 270, '61319065', 'SEED (100)', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-10-21', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1178, 237, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '23.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2990.0000', '0.0000', '2022-10-21', 'received', '130.0000', '130.0000', '23.0000', NULL, NULL, 2, 'Pcs', '23.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1179, 237, NULL, 226, '21257351', 'Thai Root Hormon', NULL, '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-10-21', 'received', '350.0000', '350.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1180, 237, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2350.0000', '0.0000', '2022-10-21', 'received', '235.0000', '235.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1181, 237, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '0.0000', '2022-10-21', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, 3, 'KG', '6.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1182, 237, NULL, 503, '04718707', 'Toy 300', NULL, '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-10-21', 'received', '200.0000', '200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1183, 237, NULL, 504, '51459412', 'Toy 400', NULL, '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '3.0000', '2022-10-21', 'received', '250.0000', '250.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1184, 237, NULL, 505, '98909806', 'Toy 750', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-10-21', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1185, 237, NULL, 506, '51521519', 'Toy 250', NULL, '170.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '510.0000', '0.0000', '2022-10-21', 'received', '170.0000', '170.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1186, 237, NULL, 507, '88770464', 'Toy 500', NULL, '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-10-21', 'received', '300.0000', '300.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1187, 237, NULL, 508, '34824627', 'Toy 350', NULL, '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '1.0000', '2022-10-21', 'received', '200.0000', '200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1188, 237, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '2.0000', '2022-10-21', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1189, 237, NULL, 438, '00947711', 'Philodendron mayoi', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-10-21', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1190, 238, NULL, 108, '76776881', 'GROW LIGHT 10 W', NULL, '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-10-23', 'received', '250.0000', '250.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1191, 238, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2550.0000', '0.0000', '2022-10-23', 'received', '170.0000', '170.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1192, 239, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '0.0000', '2022-10-27', 'received', '450.0000', '450.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1193, 239, NULL, 6, '08', 'Zen Pot Tall M', NULL, '400.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '8.0000', '2022-10-27', 'received', '400.0000', '400.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1194, 239, NULL, 388, '87398804', 'Zen Pot Tall Metalica M', NULL, '550.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5500.0000', '1.0000', '2022-10-27', 'received', '550.0000', '550.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '550.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1195, 239, NULL, 5, '06', 'Zen Pot M ', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '6.0000', '2022-10-27', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1196, 239, NULL, 3, '02', 'Zen Pot Wide S', NULL, '180.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '7.0000', '2022-10-27', 'received', '180.0000', '180.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1197, 239, NULL, 389, '60021183', 'Zen Metalica S', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '0.0000', '2022-10-27', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1198, 239, NULL, 390, '66988109', 'Zen Metalica M', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '2.0000', '2022-10-27', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1199, 239, NULL, 154, '66903672', 'IRIS UV PLANTER 7\\\"', NULL, '150.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-10-27', 'received', '150.0000', '150.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1200, 239, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '1.0000', '2022-10-27', 'received', '350.0000', '350.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1201, 239, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '150.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-10-27', 'received', '150.0000', '150.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1202, 239, NULL, 293, '99356481', 'Marbel planter', NULL, '150.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1650.0000', '0.0000', '2022-10-27', 'received', '150.0000', '150.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1203, 239, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1920.0000', '0.0000', '2022-10-27', 'received', '80.0000', '80.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1204, 239, NULL, 375, '75823196', 'Humidifier & Aroma Dufuser Big', NULL, '1800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2022-10-27', 'received', '1800.0000', '1800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1205, 239, NULL, 409, '31197682', 'Alpha Omega House plant', NULL, '700.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '4.0000', '2022-10-27', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1206, 239, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-10-27', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1207, 239, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1175.0000', '0.0000', '2022-10-27', 'received', '235.0000', '235.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1208, 239, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '0.0000', '2022-10-27', 'received', '220.0000', '220.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1209, 240, NULL, 375, '75823196', 'Humidifier & Aroma Dufuser Big', NULL, '1800.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '2.0000', '2022-10-27', 'received', '1800.0000', '1800.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1210, 241, NULL, 470, '62507647', 'Global Green', NULL, '1800.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '5.0000', '2022-11-05', 'received', '1800.0000', '1800.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1211, 241, NULL, 448, '93803138', 'Syngonium Tricolor', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '2.0000', '2022-11-05', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1212, 241, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-11-05', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1213, 241, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-11-05', 'received', '200.0000', '200.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1214, 241, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-11-05', 'received', '300.0000', '300.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1215, 241, NULL, 407, '23661246', 'Thai NPK 21-21-21', NULL, '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '4.0000', '2022-11-05', 'received', '450.0000', '450.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1216, 241, NULL, 406, '55901923', 'Thai NPK 10-52-17', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2022-11-05', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1217, 241, NULL, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', NULL, '1250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '1.0000', '2022-11-05', 'received', '1250.0000', '1250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1218, 241, NULL, 140, '33991636', 'CAL MEG 1L', NULL, '3500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '1.0000', '2022-11-05', 'received', '3500.0000', '3500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1219, 241, NULL, 301, '41132008', 'Osmokot 12.25.6', NULL, '1800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '2.0000', '2022-11-05', 'received', '1800.0000', '1800.0000', '2.0000', NULL, NULL, 3, 'KG', '2.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1220, 241, NULL, 300, '27748537', 'Osmokot 13.13.13', NULL, '1600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '3.0000', '2022-11-05', 'received', '1600.0000', '1600.0000', '3.0000', NULL, NULL, 3, 'KG', '3.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1221, 241, NULL, 510, '61040889', 'Thai npk 20.20.20 1kg', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 3, 'KG', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1222, 241, NULL, 233, '03531371', 'Akadama Soil', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-11-05', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1223, 241, NULL, 512, '03420741', 'Pumic stone ', NULL, '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '1.0000', '2022-11-05', 'received', '1200.0000', '1200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1224, 241, NULL, 427, '28587289', 'Aglonema 5', NULL, '1200.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '16800.0000', '0.0000', '2022-11-05', 'received', '1200.0000', '1200.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1225, 241, NULL, 428, '53896849', 'Aglonema 6', NULL, '1500.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10500.0000', '6.0000', '2022-11-05', 'received', '1500.0000', '1500.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1226, 241, NULL, 429, '90163075', 'Aglonema 7', NULL, '2000.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '20000.0000', '7.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1227, 241, NULL, 397, '85158991', 'Scindupsis Silver lady ', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1228, 241, NULL, 446, '29217468', 'Scindupsus Platinum ', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-11-05', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1229, 241, NULL, 445, '81800808', 'Moonlight dark', NULL, '700.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7700.0000', '5.0000', '2022-11-05', 'received', '700.0000', '700.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1230, 241, NULL, 514, '67018656', 'Cebu Verigated ', NULL, '2000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '5.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1231, 241, NULL, 324, '93521508', 'Philo. Billietiae', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '1.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1232, 241, NULL, 447, '72901803', 'Philo Tortum Big', NULL, '2000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '3.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1233, 241, NULL, 63, '43775956', 'DICHIDIA VERIGATED LEAF', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-11-05', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1234, 241, NULL, 491, '88790984', 'Senseveria Local Big', NULL, '700.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-11-05', 'received', '700.0000', '700.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1235, 241, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-11-05', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1236, 241, NULL, 256, '06157895', 'Hoya 3', NULL, '2400.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '26400.0000', '10.0000', '2022-11-05', 'received', '2400.0000', '2400.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '2400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1237, 241, NULL, 254, '31700219', 'Hoya 1.5', NULL, '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-11-05', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1238, 241, NULL, 310, '19536640', 'Monostera Esquleta ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1239, 241, NULL, 515, '86200111', 'Aglonema 9', NULL, '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-11-05', 'received', '4000.0000', '4000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1240, 241, NULL, 480, '38637086', 'Senseveria Beauty Queen ', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2022-11-05', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1241, 241, NULL, 516, '48759507', 'MONOSTERA PERU VERIGATED S', NULL, '2400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '1.0000', '2022-11-05', 'received', '2400.0000', '2400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1242, 241, NULL, 494, '41549189', 'Aglonema 8', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '1.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1243, 241, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '600.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6600.0000', '0.0000', '2022-11-05', 'received', '600.0000', '600.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1244, 241, NULL, 181, '50278507', 'lava brast', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-11-05', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1245, 241, NULL, 433, '16510893', 'Philodendron Rungsum', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2022-11-05', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1246, 241, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-11-05', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1247, 241, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-11-05', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1248, 241, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-11-05', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1249, 241, NULL, 380, '75829195', 'Siko 100ml', NULL, '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '0.0000', '2022-11-05', 'received', '100.0000', '100.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1250, 241, NULL, 379, '56291360', 'Siko 50ml', NULL, '55.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '275.0000', '0.0000', '2022-11-05', 'received', '55.0000', '55.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '55.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1251, 241, NULL, 322, '56110482', 'Philo. Splendid', NULL, '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2022-11-05', 'received', '4500.0000', '4500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1252, 241, NULL, 188, '92625394', 'Florida Ghost Mint ', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-11-05', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1253, 241, NULL, 517, '21688860', 'Anthurium 01', NULL, '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '1.0000', '2022-11-05', 'received', '4000.0000', '4000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1254, 241, NULL, 305, '42248228', 'Black zz', NULL, '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-11-05', 'received', '600.0000', '600.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1255, 241, NULL, 518, '22657239', 'Black Mamba', NULL, '5000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-11-05', 'received', '5000.0000', '5000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '5000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1256, 241, NULL, 439, '83290543', 'Raphidophora Hay Big ', NULL, '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '1.0000', '2022-11-05', 'received', '2000.0000', '2000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1257, 241, NULL, 311, '02531031', 'Monostera Deliciosa', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '1.0000', '2022-11-05', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1258, 241, NULL, 306, '03398645', 'Ruber', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '4.0000', '2022-11-05', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1259, 241, NULL, 519, '57249590', 'Ruber Big', NULL, '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-11-05', 'received', '600.0000', '600.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1260, 241, NULL, 500, '45642814', 'Lucky Bambo 5 step big', NULL, '1600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '0.0000', '2022-11-05', 'received', '1600.0000', '1600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1261, 241, NULL, 449, '27598414', 'Shangrila Big ', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '2.0000', '2022-11-05', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1262, 241, NULL, 384, '91229260', 'BROMELIAD THAI S', NULL, '750.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6750.0000', '8.0000', '2022-11-05', 'received', '750.0000', '750.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1263, 241, NULL, 313, '22361323', 'Aglonema 2', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '1.0000', '2022-11-05', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1264, 241, NULL, 315, '27100647', 'Aglonema 4', NULL, '750.0000', '13.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9750.0000', '12.0000', '2022-11-05', 'received', '750.0000', '750.0000', '13.0000', NULL, NULL, 2, 'Pcs', '13.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1265, 241, NULL, 325, '25522346', 'Pink princess', NULL, '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '2.0000', '2022-11-05', 'received', '1500.0000', '1500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1266, 241, NULL, 455, '18818074', 'Coco Pole L', NULL, '110.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '550.0000', '0.0000', '2022-11-05', 'received', '110.0000', '110.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1267, 241, NULL, 456, '07689641', 'Coco Pole M', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-11-05', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1268, 241, NULL, 457, '88884807', 'Coco Pole S', NULL, '30.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-11-05', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1269, 241, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '36.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1260.0000', '0.0000', '2022-11-05', 'received', '35.0000', '35.0000', '36.0000', NULL, NULL, 2, 'Pcs', '36.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1270, 241, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '17.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2210.0000', '9.0000', '2022-11-05', 'received', '130.0000', '130.0000', '17.0000', NULL, NULL, 2, 'Pcs', '17.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1271, 241, NULL, 270, '61319065', 'SEED (100)', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-11-05', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1272, 241, NULL, 513, '37918833', 'Wood Bark ', NULL, '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-11-05', 'received', '1200.0000', '1200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1273, 241, NULL, 343, '37152007', 'Snail Killer', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-11-05', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1274, 241, NULL, 511, '12706180', 'Vermiculite Thai', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '2.0000', '2022-11-05', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1275, 242, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-11-06', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1276, 242, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '525.0000', '0.0000', '2022-11-06', 'received', '35.0000', '35.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1277, 243, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2022-11-06', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1278, 244, NULL, 520, '48984898', 'Milk Confeti', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '1.0000', '2022-11-06', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1292, 245, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '39.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1365.0000', '0.0000', '2022-11-19', 'received', '35.0000', '35.0000', '39.0000', NULL, NULL, 3, 'KG', '39.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1289, 245, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2022-11-19', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1290, 245, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2022-11-19', 'received', '270.0000', '270.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1291, 245, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-11-19', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1288, 245, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '525.0000', '0.0000', '2022-11-19', 'received', '35.0000', '35.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1293, 246, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '180.0000', '22.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3960.0000', '12.0000', '2022-11-20', 'received', '180.0000', '180.0000', '22.0000', NULL, NULL, 2, 'Pcs', '22.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1294, 246, NULL, 389, '60021183', 'Zen Metalica S', NULL, '280.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-11-20', 'received', '280.0000', '280.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '280.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1295, 246, NULL, 390, '66988109', 'Zen Metalica M', NULL, '380.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3800.0000', '10.0000', '2022-11-20', 'received', '380.0000', '380.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '380.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1296, 246, NULL, 391, '89877743', 'Zen Metalica L', NULL, '480.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '10.0000', '2022-11-20', 'received', '480.0000', '480.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '480.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1297, 246, NULL, 388, '87398804', 'Zen Pot Tall Metalica M', NULL, '600.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '10.0000', '2022-11-20', 'received', '600.0000', '600.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1298, 246, NULL, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', NULL, '220.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1320.0000', '6.0000', '2022-11-20', 'received', '220.0000', '220.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1299, 246, NULL, 3, '02', 'Zen Pot Wide S', NULL, '220.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '10.0000', '2022-11-20', 'received', '220.0000', '220.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1300, 246, NULL, 392, '14849048', 'Garden Pod M', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '3.0000', '2022-11-20', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1301, 246, NULL, 521, '67089630', 'Garden Pod L', NULL, '220.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '2.0000', '2022-11-20', 'received', '220.0000', '220.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1302, 246, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2640.0000', '0.0000', '2022-11-20', 'received', '220.0000', '220.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1303, 246, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1175.0000', '0.0000', '2022-11-20', 'received', '235.0000', '235.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1304, 246, NULL, 119, '28814945', 'FRAGNENT OIL', NULL, '120.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '20.0000', '2022-11-20', 'received', '120.0000', '120.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1305, 246, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '10.0000', '2022-11-20', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1306, 246, NULL, 457, '88884807', 'Coco Pole S', NULL, '30.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-11-20', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1307, 246, NULL, 456, '07689641', 'Coco Pole M', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-11-20', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1308, 246, NULL, 455, '18818074', 'Coco Pole L', NULL, '110.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '550.0000', '0.0000', '2022-11-20', 'received', '110.0000', '110.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1309, 246, NULL, 80, '63589701', 'WHITE PRINTED TOB', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2022-11-20', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1310, 246, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2022-11-20', 'received', '35.0000', '35.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1311, 246, NULL, 270, '61319065', 'SEED (100)', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-11-20', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1312, 246, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '40.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5200.0000', '40.0000', '2022-11-20', 'received', '130.0000', '130.0000', '40.0000', NULL, NULL, 2, 'Pcs', '40.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1313, 246, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '850.0000', '5.0000', '2022-11-20', 'received', '170.0000', '170.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1314, 246, NULL, 522, '68056588', 'Green Pot 4inchi', NULL, '50.0000', '58.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2900.0000', '35.0000', '2022-11-20', 'received', '50.0000', '50.0000', '58.0000', NULL, NULL, 2, 'Pcs', '58.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1315, 247, NULL, 425, '69132898', 'Toy Mini 4pcs', NULL, '80.0000', '27.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2160.0000', '11.0000', '2022-11-22', 'received', '80.0000', '80.0000', '27.0000', NULL, NULL, 2, 'Pcs', '27.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1316, 247, NULL, 413, '22733418', 'TOY S', NULL, '100.0000', '65.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6500.0000', '38.0000', '2022-11-22', 'received', '100.0000', '100.0000', '65.0000', NULL, NULL, 2, 'Pcs', '65.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1317, 247, NULL, 459, '83233710', 'Toy', NULL, '150.0000', '60.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9000.0000', '49.0000', '2022-11-22', 'received', '150.0000', '150.0000', '60.0000', NULL, NULL, 2, 'Pcs', '60.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1318, 247, NULL, 506, '51521519', 'Toy 250', NULL, '170.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1870.0000', '0.0000', '2022-11-22', 'received', '170.0000', '170.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1319, 247, NULL, 503, '04718707', 'Toy 300', NULL, '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '2.0000', '2022-11-22', 'received', '200.0000', '200.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1320, 247, NULL, 527, '51530781', 'Thai Wood Item 05', NULL, '800.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '4.0000', '2022-11-22', 'received', '800.0000', '800.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1321, 247, NULL, 523, '07770328', 'Thai Wood Item 01', NULL, '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '2.0000', '2022-11-22', 'received', '150.0000', '150.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1322, 247, NULL, 526, '08521390', 'Thai Wood Item 04', NULL, '520.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2080.0000', '1.0000', '2022-11-22', 'received', '520.0000', '520.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '520.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1323, 247, NULL, 528, '57790873', 'Thai Wood Item 06', NULL, '220.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '9.0000', '2022-11-22', 'received', '220.0000', '220.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1324, 247, NULL, 525, '51913448', 'Thai Wood Item 03', NULL, '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '3.0000', '2022-11-22', 'received', '450.0000', '450.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1325, 247, NULL, 524, '74056003', 'Thai Wood Item 02', NULL, '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '0.0000', '2022-11-22', 'received', '300.0000', '300.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1326, 247, NULL, 529, '99627949', 'Thai Wood Item 07', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '1.0000', '2022-11-22', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1327, 247, NULL, 530, '50894057', 'Thai Ketly', NULL, '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-11-22', 'received', '350.0000', '350.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1328, 247, NULL, 83, '79775908', 'RESIN PLANTER C1', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '2.0000', '2022-11-22', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1329, 247, NULL, 89, '82658699', 'RESIN PLANTER DA', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '2.0000', '2022-11-22', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1330, 247, NULL, 88, '29238547', 'RESIN PLANTER K7', NULL, '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '2.0000', '2022-11-22', 'received', '400.0000', '400.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1331, 247, NULL, 86, '08010277', 'RESIN PLANTER K2', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2022-11-22', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1332, 247, NULL, 84, '27666711', 'RESIN PLANTER M2', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '2.0000', '2022-11-22', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1333, 247, NULL, 85, '67443382', 'RESIN PLNATER G3', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '0.0000', '2022-11-22', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1334, 247, NULL, 148, '06330036', 'GLASS TUBE WITH STAND 1', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-11-22', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1335, 247, NULL, 149, '01269763', 'GLASS TUBE WITH STAND 2', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2022-11-22', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1336, 247, NULL, 532, '19254733', 'Senseveria Boncel Big Double', NULL, '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '2.0000', '2022-11-22', 'received', '2000.0000', '2000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1337, 247, NULL, 531, '61322072', 'senseveria whalfin 2leaf', NULL, '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '1.0000', '2022-11-22', 'received', '700.0000', '700.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1338, 248, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1175.0000', '0.0000', '2022-11-22', 'received', '235.0000', '235.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1339, 248, NULL, 533, '18728118', 'Deshi Local Mix', NULL, '300.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-11-22', 'received', '300.0000', '300.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1340, 248, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8400.0000', '0.0000', '2022-11-22', 'received', '1200.0000', '1200.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1341, 248, NULL, 403, '10498681', 'Air plant Ball ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-11-22', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1342, 248, NULL, 491, '88790984', 'Senseveria Local Big', NULL, '700.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '0.0000', '2022-11-22', 'received', '700.0000', '700.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1343, 248, NULL, 55, '00297348', 'BIG PHILODENDRON', NULL, '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '1.0000', '2022-11-22', 'received', '700.0000', '700.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1344, 248, NULL, 348, '94516686', 'Philo. Mican ', NULL, '300.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '3.0000', '2022-11-22', 'received', '300.0000', '300.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1345, 248, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2022-11-22', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1346, 248, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5250.0000', '0.0000', '2022-11-22', 'received', '350.0000', '350.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1347, 248, NULL, 501, '27976806', 'Lucky Bambo Green Big', NULL, '1300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2600.0000', '2.0000', '2022-11-22', 'received', '1300.0000', '1300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1348, 248, NULL, 199, '91200856', 'Lucky Bamboo 3 step', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '0.0000', '2022-11-22', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1349, 248, NULL, 500, '45642814', 'Lucky Bambo 5 step big', NULL, '1600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '0.0000', '2022-11-22', 'received', '1600.0000', '1600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1350, 248, NULL, 534, '57525691', 'Lucky Bamboo Spiral', NULL, '600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-11-22', 'received', '600.0000', '600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1351, 248, NULL, 499, '56022994', 'Lucky Bamboo Verigated S', NULL, '600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '5.0000', '2022-11-22', 'received', '600.0000', '600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1352, 248, NULL, 35, '81983767', 'MONOSTERA PERU', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '1.0000', '2022-11-22', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1353, 248, NULL, 396, '40732224', 'Peru S', NULL, '350.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2450.0000', '4.0000', '2022-11-22', 'received', '350.0000', '350.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1354, 248, NULL, 535, '12257176', 'White Princes', NULL, '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '1.0000', '2022-11-22', 'received', '500.0000', '500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1355, 248, NULL, 536, '96619146', 'Burlemax', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2022-11-22', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1356, 248, NULL, 341, '02686278', 'Monostera Adinsoni', NULL, '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-11-22', 'received', '200.0000', '200.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1357, 248, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '1.0000', '2022-11-22', 'received', '250.0000', '250.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1358, 248, NULL, 32, '53236471', 'PHILODENDRON CHERRY RED', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2022-11-22', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1359, 248, NULL, 198, '44272783', 'Philodendron Red Emarland', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2022-11-22', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1360, 248, NULL, 168, '07964908', 'Silver Shartin', NULL, '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '2.0000', '2022-11-22', 'received', '300.0000', '300.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1361, 249, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2022-11-22', 'received', '750.0000', '750.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1362, 250, NULL, 292, '19851098', 'Stylish Stripe Planter b', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '2.0000', '2022-11-26', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1363, 251, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '49.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8330.0000', '49.0000', '2022-12-02', 'received', '170.0000', '170.0000', '49.0000', NULL, NULL, 2, 'Pcs', '49.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1364, 251, NULL, 426, '14071835', 'Butter Fly', NULL, '30.0000', '70.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '46.0000', '2022-12-02', 'received', '30.0000', '30.0000', '70.0000', NULL, NULL, 2, 'Pcs', '70.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1365, 251, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '27.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '945.0000', '11.0000', '2022-12-02', 'received', '35.0000', '35.0000', '27.0000', NULL, NULL, 2, 'Pcs', '27.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1366, 251, NULL, 537, '20811261', 'Osmokot Box 5pcs', NULL, '40.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '200.0000', '2.0000', '2022-12-02', 'received', '40.0000', '40.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '40.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1367, 251, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1320.0000', '0.0000', '2022-12-02', 'received', '220.0000', '220.0000', '6.0000', NULL, NULL, 3, 'KG', '6.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1368, 251, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-12-02', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1369, 252, NULL, 485, '15964763', 'Ceramic Glass S', NULL, '250.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '10.0000', '2022-12-03', 'received', '250.0000', '250.0000', '30.0000', NULL, NULL, 2, 'Pcs', '30.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1370, 253, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-12-06', 'received', '35.0000', '35.0000', '30.0000', NULL, NULL, 3, 'KG', '30.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1371, 254, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-12-12', 'received', '350.0000', '350.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1372, 254, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '810.0000', '0.0000', '2022-12-12', 'received', '270.0000', '270.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1373, 254, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '960.0000', '0.0000', '2022-12-12', 'received', '80.0000', '80.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1374, 254, NULL, 113, '02483091', '8 WAY SPRAYER HEAD', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-12-12', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1375, 254, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-12-12', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1376, 254, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-12-12', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1377, 254, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-12-12', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1378, 254, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2022-12-12', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1379, 254, NULL, 457, '88884807', 'Coco Pole S', NULL, '30.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '150.0000', '0.0000', '2022-12-12', 'received', '30.0000', '30.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1380, 254, NULL, 456, '07689641', 'Coco Pole M', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-12-12', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1381, 254, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2022-12-12', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1382, 254, NULL, 394, '18806425', 'Mini Hanging Pod', NULL, '70.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2022-12-12', 'received', '70.0000', '70.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1383, 255, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2022-12-16', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 3, 'KG', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1384, 255, NULL, 154, '66903672', 'IRIS UV PLANTER 7\\\"', NULL, '150.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '17.0000', '2022-12-16', 'received', '150.0000', '150.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1385, 255, NULL, 80, '63589701', 'WHITE PRINTED TOB', NULL, '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '6.0000', '2022-12-16', 'received', '120.0000', '120.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1386, 256, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2022-12-17', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1387, 256, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '250.0000', '0.0000', '2022-12-17', 'received', '50.0000', '50.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1388, 256, NULL, 538, '04170236', 'Seedling tools 8 pcs', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '1.0000', '2022-12-17', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1389, 256, NULL, 287, '05315444', 'Artistic long Planter s', NULL, '80.0000', '13.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1040.0000', '0.0000', '2022-12-17', 'received', '80.0000', '80.0000', '13.0000', NULL, NULL, 2, 'Pcs', '13.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1390, 256, NULL, 457, '88884807', 'Coco Pole S', NULL, '30.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2022-12-17', 'received', '30.0000', '30.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1391, 256, NULL, 455, '18818074', 'Coco Pole L', NULL, '110.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '660.0000', '2.0000', '2022-12-17', 'received', '110.0000', '110.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1392, 257, NULL, 539, '26410617', 'Heart Leaf verigatted ', NULL, '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '3.0000', '2022-12-25', 'received', '1500.0000', '1500.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1393, 257, NULL, 540, '07166498', 'Philodendron Joepii', NULL, '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-12-25', 'received', '3000.0000', '3000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1394, 257, NULL, 541, '19613543', 'Philodendron Strawberru Shake', NULL, '8000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '0.0000', '2022-12-25', 'received', '8000.0000', '8000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '8000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1395, 257, NULL, 516, '48759507', 'MONOSTERA PERU VERIGATED S', NULL, '2400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4800.0000', '2.0000', '2022-12-25', 'received', '2400.0000', '2400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1396, 257, NULL, 542, '82624063', 'Monostera Obliqua ', NULL, '7500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '15000.0000', '2.0000', '2022-12-25', 'received', '7500.0000', '7500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '7500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1397, 257, NULL, 543, '82350573', 'Calathia Lime ', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-12-25', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1398, 257, NULL, 544, '70282666', 'Dubia big leaf ', NULL, '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '0.0000', '2022-12-25', 'received', '2200.0000', '2200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1399, 257, NULL, 545, '94096454', 'Piper Verigatted', NULL, '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '0.0000', '2022-12-25', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1400, 257, NULL, 546, '17144576', 'Plowmani small', NULL, '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '2.0000', '2022-12-25', 'received', '2200.0000', '2200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1401, 257, NULL, 563, '18931997', 'Philo El Choco Red  ', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-12-25', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1402, 257, NULL, 548, '10997337', 'Philo Majestic', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-12-25', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1403, 257, NULL, 549, '73311689', 'Snow Driff', NULL, '2700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '1.0000', '2022-12-25', 'received', '2700.0000', '2700.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1404, 257, NULL, 550, '84001093', 'Philo Plowmani Black Face', NULL, '3500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '2.0000', '2022-12-25', 'received', '3500.0000', '3500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1405, 257, NULL, 551, '87951885', 'Philo Plowmani round face', NULL, '3500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '1.0000', '2022-12-25', 'received', '3500.0000', '3500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1406, 257, NULL, 552, '35882573', 'Thai White Princes ', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2022-12-25', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1407, 257, NULL, 564, '94984162', 'Phillo Maxicana  ', NULL, '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '1.0000', '2022-12-25', 'received', '1000.0000', '1000.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1408, 257, NULL, 554, '62012412', 'Anthurium Pedatoraditum ', NULL, '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '1.0000', '2022-12-25', 'received', '4500.0000', '4500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '4500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1409, 257, NULL, 555, '40256610', 'Aglonema 10', NULL, '1700.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '25500.0000', '7.0000', '2022-12-25', 'received', '1700.0000', '1700.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '1700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1410, 257, NULL, 427, '28587289', 'Aglonema 5', NULL, '1200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '4.0000', '2022-12-25', 'received', '1200.0000', '1200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1411, 257, NULL, 556, '60644367', 'Epi Marbel', NULL, '3800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3800.0000', '0.0000', '2022-12-25', 'received', '3800.0000', '3800.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1412, 257, NULL, 557, '73192175', 'Scindupsis Silver Cloud', NULL, '2200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '11000.0000', '2.0000', '2022-12-25', 'received', '2200.0000', '2200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '2200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1413, 257, NULL, 558, '91120646', 'Scindupsis Sp', NULL, '1600.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8000.0000', '5.0000', '2022-12-25', 'received', '1600.0000', '1600.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1414, 258, NULL, 559, '35988906', 'Philo melanocrysum Big', NULL, '3500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '14000.0000', '2.0000', '2022-12-25', 'received', '3500.0000', '3500.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1415, 258, NULL, 42, '14233360', 'PEPORIMA GREEN ', NULL, '90.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2160.0000', '0.0000', '2022-12-25', 'received', '90.0000', '90.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '90.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1416, 258, NULL, 70, '98281106', 'VANDA ORCHID ', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '0.0000', '2022-12-25', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1417, 258, NULL, 560, '72460639', 'Cylogena ', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2022-12-25', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1418, 258, NULL, 561, '76839694', 'Onchidium ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-12-25', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1419, 258, NULL, 562, '58673395', 'Macdowle Small', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2022-12-25', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1420, 258, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2022-12-25', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1421, 258, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2350.0000', '0.0000', '2022-12-25', 'received', '235.0000', '235.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1422, 258, NULL, 159, '02891148', 'FLOWERING TABLET FERTILISER', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '8.0000', '2022-12-25', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1423, 258, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '0.0000', '2022-12-25', 'received', '700.0000', '700.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1424, 258, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '1.0000', '2022-12-25', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1425, 258, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2022-12-25', 'received', '200.0000', '200.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1426, 258, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2022-12-25', 'received', '350.0000', '350.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1427, 258, NULL, 276, '04135216', 'Ceramic Color Bowl L ', NULL, '300.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '8.0000', '2022-12-25', 'received', '300.0000', '300.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1428, 258, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '850.0000', '5.0000', '2022-12-25', 'received', '170.0000', '170.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1429, 258, NULL, 566, '69521248', 'philodendron alternans', NULL, '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2022-12-25', 'received', '6000.0000', '6000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '6000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1430, 258, NULL, 567, '13455777', 'Funkiana Clump ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-12-25', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1431, 258, NULL, 568, '96453308', 'Ionantha clump', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2022-12-25', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1432, 258, NULL, 569, '18617686', 'Anthurium Vittariifolium', NULL, '2500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '3.0000', '2022-12-25', 'received', '2500.0000', '2500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1433, 259, NULL, 9, '33282664', 'Moon Cactus ', NULL, '250.0000', '48.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '48.0000', '2023-01-21', 'received', '250.0000', '250.0000', '48.0000', NULL, NULL, 2, 'Pcs', '48.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1434, 259, NULL, 11, '77245440', 'Lucky Bamboo Spiral Step', NULL, '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2250.0000', '0.0000', '2023-01-21', 'received', '750.0000', '750.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1435, 259, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '0.0000', '2023-01-21', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1436, 259, NULL, 497, '82833386', 'Caktus Zimno M', NULL, '400.0000', '24.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9600.0000', '13.0000', '2023-01-21', 'received', '400.0000', '400.0000', '24.0000', NULL, NULL, 2, 'Pcs', '24.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1437, 259, NULL, 491, '88790984', 'Senseveria Local Big', NULL, '700.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '5.0000', '2023-01-21', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1438, 259, NULL, 500, '45642814', 'Lucky Bambo 5 step big', NULL, '1600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3200.0000', '0.0000', '2023-01-21', 'received', '1600.0000', '1600.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1439, 259, NULL, 63, '43775956', 'DICHIDIA VERIGATED LEAF', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-01-21', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1440, 259, NULL, 15, '15389577', 'SENSEVERIA MIKADO', NULL, '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2023-01-21', 'received', '500.0000', '500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1441, 259, NULL, 66, '77547002', 'DICHIDIA BUBLE ', NULL, '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '3.0000', '2023-01-21', 'received', '1000.0000', '1000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1442, 259, NULL, 16, '65687548', 'SENSEVERIA BONCEL', NULL, '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '450.0000', '1.0000', '2023-01-21', 'received', '450.0000', '450.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1443, 259, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '0.0000', '2023-01-21', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1444, 259, NULL, 67, '26136413', 'CATTLEYA ORCHID', NULL, '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2023-01-21', 'received', '1200.0000', '1200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1445, 259, NULL, 384, '91229260', 'BROMELIAD THAI S', NULL, '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3750.0000', '5.0000', '2023-01-21', 'received', '750.0000', '750.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1446, 259, NULL, 404, '37694427', 'cryptenthus big', NULL, '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '4.0000', '2023-01-21', 'received', '750.0000', '750.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1447, 259, NULL, 170, '52762464', 'Tetraspharma', NULL, '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2023-01-21', 'received', '900.0000', '900.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1448, 259, NULL, 570, '37034768', 'Philo Tortum s', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '1.0000', '2023-01-21', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1449, 259, NULL, 206, '03630608', 'Senseveria Drwaf Thai', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2023-01-21', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1450, 259, NULL, 49, '21457857', 'PHILODENDRON BIRKIN', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '3.0000', '2023-01-21', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1451, 259, NULL, 36, '41780961', 'SYNGONIUM RED ARROW', NULL, '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '1.0000', '2023-01-21', 'received', '300.0000', '300.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1452, 259, NULL, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', NULL, '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4500.0000', '0.0000', '2023-01-21', 'received', '1500.0000', '1500.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1453, 259, NULL, 375, '75823196', 'Humidifier & Aroma Dufuser Big', NULL, '1800.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10800.0000', '6.0000', '2023-01-21', 'received', '1800.0000', '1800.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1454, 259, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '0.0000', '2023-01-21', 'received', '350.0000', '350.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1455, 259, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '810.0000', '0.0000', '2023-01-21', 'received', '270.0000', '270.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1456, 259, NULL, 393, '62446910', 'Zen Hanging pod', NULL, '300.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '0.0000', '2023-01-21', 'received', '300.0000', '300.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1457, 259, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-01-21', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1458, 259, NULL, 455, '18818074', 'Coco Pole L', NULL, '110.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '550.0000', '5.0000', '2023-01-21', 'received', '110.0000', '110.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '110.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1459, 259, NULL, 456, '07689641', 'Coco Pole M', NULL, '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-01-21', 'received', '70.0000', '70.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1460, 259, NULL, 457, '88884807', 'Coco Pole S', NULL, '30.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '1.0000', '2023-01-21', 'received', '30.0000', '30.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1461, 259, NULL, 70, '98281106', 'VANDA ORCHID ', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '2.0000', '2023-01-21', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1462, 259, NULL, 262, '02739001', 'Peporima Verg. Big', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '0.0000', '2023-01-21', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1463, 259, NULL, 198, '44272783', 'Philodendron Red Emarland', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2023-01-21', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1464, 259, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-01-21', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1465, 259, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '4.0000', '2023-01-21', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1466, 259, NULL, 403, '10498681', 'Air plant Ball ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-01-21', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1491, 260, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2023-01-21', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1490, 260, NULL, 108, '76776881', 'GROW LIGHT 10 W', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '5.0000', '2023-01-21', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1489, 260, NULL, 379, '56291360', 'Siko 50ml', NULL, '55.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '275.0000', '2.0000', '2023-01-21', 'received', '55.0000', '55.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '55.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1488, 260, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2023-01-21', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1487, 260, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '225.0000', '0.0000', '2023-01-21', 'received', '45.0000', '45.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1486, 260, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '250.0000', '0.0000', '2023-01-21', 'received', '50.0000', '50.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1485, 260, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2023-01-21', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1484, 260, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2023-01-21', 'received', '350.0000', '350.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1483, 260, NULL, 381, '41008445', 'Essential Oil', NULL, '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '9.0000', '2023-01-21', 'received', '250.0000', '250.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1482, 260, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '5.0000', '2023-01-21', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1481, 260, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-01-21', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1480, 260, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '0.0000', '2023-01-21', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1492, 260, NULL, 228, '03917430', 'WIlko 1 L Fertiliser', NULL, '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '0.0000', '2023-01-21', 'received', '2200.0000', '2200.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1493, 261, NULL, 572, '83271839', 'Key Ring', NULL, '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2023-01-21', 'received', '200.0000', '200.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1494, 262, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-01-23', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1495, 263, NULL, 195, '72984009', 'Lucky Bamboo Small', NULL, '350.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2450.0000', '3.0000', '2023-01-23', 'received', '350.0000', '350.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1496, 264, NULL, 408, '03054245', 'Alpha Omega Bloom', NULL, '700.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '6.0000', '2023-01-24', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1497, 264, NULL, 238, '07455606', 'Seedling tools 4 pcs', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '5.0000', '2023-01-24', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1498, 264, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '0.0000', '2023-01-24', 'received', '180.0000', '180.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1499, 264, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '3.0000', '2023-01-24', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1500, 264, NULL, 279, '33099580', 'Plant Clip', NULL, '120.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '240.0000', '2.0000', '2023-01-24', 'received', '120.0000', '120.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1501, 264, NULL, 100, '61786707', 'PRUNING SHEARS RED ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '0.0000', '2023-01-24', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1502, 265, NULL, 572, '83271839', 'Key Ring', NULL, '200.0000', '28.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5600.0000', '23.0000', '2023-02-03', 'received', '200.0000', '200.0000', '28.0000', NULL, NULL, 2, 'Pcs', '28.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1503, 265, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '0.0000', '2023-02-03', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1504, 265, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-02-03', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1505, 265, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '0.0000', '2023-02-03', 'received', '350.0000', '350.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1506, 265, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '76.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12920.0000', '76.0000', '2023-02-03', 'received', '170.0000', '170.0000', '76.0000', NULL, NULL, 2, 'Pcs', '76.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1507, 265, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1175.0000', '0.0000', '2023-02-03', 'received', '235.0000', '235.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1508, 265, NULL, 230, '20161787', 'Cpatain Fungicide ', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '4.0000', '2023-02-03', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1509, 265, NULL, 285, '40986136', 'Saaf 100gm', NULL, '220.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1980.0000', '4.0000', '2023-02-03', 'received', '220.0000', '220.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1510, 265, NULL, 573, '65934596', 'Leaf Shine', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '2.0000', '2023-02-03', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1511, 265, NULL, 342, '42643313', 'Osmokot 500gm 14.14.14', NULL, '700.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '0.0000', '2023-02-03', 'received', '700.0000', '700.0000', '3.0000', NULL, NULL, 3, 'KG', '3.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1512, 266, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '2.0000', '2023-02-07', 'received', '50.0000', '50.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1513, 266, NULL, 280, '87761269', 'Naitro 100ml', NULL, '120.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '360.0000', '0.0000', '2023-02-07', 'received', '120.0000', '120.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1514, 266, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '0.0000', '2023-02-07', 'received', '200.0000', '200.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1515, 266, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '270.0000', '0.0000', '2023-02-07', 'received', '45.0000', '45.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1516, 266, NULL, 223, '91005899', 'Air Plant Myst', NULL, '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '1.0000', '2023-02-07', 'received', '1250.0000', '1250.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1517, 266, NULL, 217, '82630821', 'Mini Sprayer', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '2.0000', '2023-02-07', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1518, 267, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '540.0000', '0.0000', '2023-02-13', 'received', '180.0000', '180.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1519, 267, NULL, 93, '18394554', 'THAI JHURI', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '8.0000', '2023-02-13', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1520, 267, NULL, 148, '06330036', 'GLASS TUBE WITH STAND 1', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '10.0000', '2023-02-13', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1521, 267, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '0.0000', '2023-02-13', 'received', '200.0000', '200.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1522, 267, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '0.0000', '2023-02-13', 'received', '250.0000', '250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1523, 267, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-02-13', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1524, 267, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2350.0000', '0.0000', '2023-02-13', 'received', '235.0000', '235.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1525, 267, NULL, 149, '01269763', 'GLASS TUBE WITH STAND 2', NULL, '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '2.0000', '2023-02-13', 'received', '750.0000', '750.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1526, 267, NULL, 574, '19340298', 'Anthurium Toba', NULL, '1000.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '6.0000', '2023-02-13', 'received', '1000.0000', '1000.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1527, 267, NULL, 575, '62854316', 'anthurium angelwing ', NULL, '5000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '1.0000', '2023-02-13', 'received', '5000.0000', '5000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '5000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1528, 267, NULL, 576, '49423912', 'Burlemarx Fantasy', NULL, '3500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '1.0000', '2023-02-13', 'received', '3500.0000', '3500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1529, 267, NULL, 577, '20339525', 'Raphidophora petrusa verg ', NULL, '2500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5000.0000', '2.0000', '2023-02-13', 'received', '2500.0000', '2500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1530, 267, NULL, 578, '89397759', 'Raphidophora Big leaves  ', NULL, '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '1.0000', '2023-02-13', 'received', '1500.0000', '1500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1531, 267, NULL, 394, '18806425', 'Mini Hanging Pod', NULL, '70.0000', '21.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1470.0000', '16.0000', '2023-02-13', 'received', '70.0000', '70.0000', '21.0000', NULL, NULL, 2, 'Pcs', '21.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1532, 267, NULL, 579, '03175098', 'begonia thai 1', NULL, '750.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7500.0000', '8.0000', '2023-02-13', 'received', '750.0000', '750.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1533, 267, NULL, 580, '24191591', 'begonia thai 2', NULL, '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '0.0000', '2023-02-13', 'received', '1000.0000', '1000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1534, 267, NULL, 468, '27225059', 'Splendid Big ', NULL, '5000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '10000.0000', '2.0000', '2023-02-13', 'received', '5000.0000', '5000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '5000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1535, 267, NULL, 6, '08', 'Zen Pot Tall M', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '10.0000', '2023-02-13', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1536, 267, NULL, 3, '02', 'Zen Pot Wide S', NULL, '220.0000', '22.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4840.0000', '22.0000', '2023-02-13', 'received', '220.0000', '220.0000', '22.0000', NULL, NULL, 2, 'Pcs', '22.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1537, 267, NULL, 5, '06', 'Zen Pot M ', NULL, '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1250.0000', '5.0000', '2023-02-13', 'received', '250.0000', '250.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1538, 267, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '180.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '10.0000', '2023-02-13', 'received', '180.0000', '180.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1539, 267, NULL, 389, '60021183', 'Zen Metalica S', NULL, '280.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '5600.0000', '20.0000', '2023-02-13', 'received', '280.0000', '280.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '280.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1540, 267, NULL, 390, '66988109', 'Zen Metalica M', NULL, '380.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4560.0000', '12.0000', '2023-02-13', 'received', '380.0000', '380.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '380.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1541, 267, NULL, 74, '12241939', 'ZEN TOB BIG ', NULL, '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '1.0000', '2023-02-13', 'received', '450.0000', '450.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '450.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1542, 267, NULL, 387, '88192874', 'Zen Pot Metalica Big', NULL, '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1300.0000', '0.0000', '2023-02-13', 'received', '650.0000', '650.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1543, 267, NULL, 582, '80071736', 'Flower Vase XL  ', NULL, '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3600.0000', '5.0000', '2023-02-13', 'received', '900.0000', '900.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '900.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1544, 267, NULL, 486, '26750491', 'Flower vase L', NULL, '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1300.0000', '2.0000', '2023-02-13', 'received', '650.0000', '650.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1545, 267, NULL, 212, '20024744', 'Ceramic Bowl Small', NULL, '100.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '15.0000', '2023-02-13', 'received', '100.0000', '100.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1546, 267, NULL, 583, '12712286', 'aglonema 11', NULL, '3500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7000.0000', '1.0000', '2023-02-13', 'received', '3500.0000', '3500.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1547, 267, NULL, 164, '79323775', 'Hupergia ', NULL, '1200.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '16800.0000', '2.0000', '2023-02-13', 'received', '1200.0000', '1200.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1548, 267, NULL, 427, '28587289', 'Aglonema 5', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '10.0000', '2023-02-13', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1549, 267, NULL, 428, '53896849', 'Aglonema 6', NULL, '1500.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '22500.0000', '15.0000', '2023-02-13', 'received', '1500.0000', '1500.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '1500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1550, 267, NULL, 207, '31471473', 'senseveria whalfin', NULL, '400.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '8.0000', '2023-02-13', 'received', '400.0000', '400.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1551, 267, NULL, 310, '19536640', 'Monostera Esquleta ', NULL, '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '2.0000', '2023-02-13', 'received', '2000.0000', '2000.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '2000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1552, 267, NULL, 165, '48621422', 'Anthurium', NULL, '1600.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '9600.0000', '4.0000', '2023-02-13', 'received', '1600.0000', '1600.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '1600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1553, 267, NULL, 584, '41421487', 'syngonium pink lava ', NULL, '700.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2100.0000', '2.0000', '2023-02-13', 'received', '700.0000', '700.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1554, 267, NULL, 585, '75284701', 'Brandiatum Congo', NULL, '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '1.0000', '2023-02-13', 'received', '2500.0000', '2500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '2500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1555, 267, NULL, 586, '93522899', 'thai fern ', NULL, '1200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '6000.0000', '0.0000', '2023-02-13', 'received', '1200.0000', '1200.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1556, 267, NULL, 567, '13455777', 'Funkiana Clump ', NULL, '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '2.0000', '2023-02-13', 'received', '1000.0000', '1000.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1557, 267, NULL, 589, '12397457', 'agave crysted', NULL, '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1200.0000', '0.0000', '2023-02-13', 'received', '600.0000', '600.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1558, 267, NULL, 194, '16535351', 'Aglonema Color', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-02-13', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1559, 267, NULL, 262, '02739001', 'Peporima Verg. Big', NULL, '400.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '3.0000', '2023-02-13', 'received', '400.0000', '400.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1560, 267, NULL, 587, '76340502', 'anthurium verg ', NULL, '3500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '1.0000', '2023-02-13', 'received', '3500.0000', '3500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1561, 267, NULL, 588, '12592248', 'philo Holtiatum', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2023-02-13', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1562, 267, NULL, 590, '45607651', 'orchid Mixed', NULL, '1200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '12000.0000', '0.0000', '2023-02-13', 'received', '1200.0000', '1200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1563, 267, NULL, 591, '06843771', 'orange marmaled verg', NULL, '3500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3500.0000', '1.0000', '2023-02-13', 'received', '3500.0000', '3500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1564, 267, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-02-13', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1565, 268, NULL, 588, '12592248', 'philo Holtiatum', NULL, '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '1.0000', '2023-02-13', 'received', '3000.0000', '3000.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '3000.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1566, 269, NULL, 590, '45607651', 'orchid Mixed', NULL, '1200.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '14400.0000', '3.0000', '2023-02-18', 'received', '1200.0000', '1200.0000', '12.0000', NULL, NULL, 2, 'Pcs', '12.0000', NULL, NULL, NULL, NULL, '1200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1567, 269, NULL, 592, '48954838', 'Tulumonia L', NULL, '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3000.0000', '0.0000', '2023-02-18', 'received', '750.0000', '750.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1568, 269, NULL, 57, '32032116', 'AIR PLANT Bulbosa', NULL, '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '0.0000', '2023-02-18', 'received', '700.0000', '700.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1569, 269, NULL, 283, '44882476', 'Indrofil M-45', NULL, '80.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '720.0000', '1.0000', '2023-02-18', 'received', '80.0000', '80.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1570, 270, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-02-23', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1571, 270, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '0.0000', '2023-02-23', 'received', '350.0000', '350.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1572, 271, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '1.0000', '2023-02-26', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 3, 'KG', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1573, 272, NULL, 387, '88192874', 'Zen Pot Metalica Big', NULL, '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1300.0000', '2.0000', '2023-02-27', 'received', '650.0000', '650.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '650.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1574, 273, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-03-03', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1575, 274, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-03-05', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1576, 274, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1080.0000', '0.0000', '2023-03-05', 'received', '270.0000', '270.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1577, 274, NULL, 351, '57860529', '2 Litter Sprayer with Vulb', NULL, '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '0.0000', '2023-03-05', 'received', '350.0000', '350.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1578, 274, NULL, 157, '88534889', 'MESH POT 6CM', NULL, '30.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '20.0000', '2023-03-05', 'received', '30.0000', '30.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '30.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1579, 274, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2200.0000', '10.0000', '2023-03-05', 'received', '220.0000', '220.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1580, 274, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1175.0000', '3.0000', '2023-03-05', 'received', '235.0000', '235.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1581, 274, NULL, 193, '17426260', 'Luck Bambo Spiral Stick', NULL, '200.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4000.0000', '5.0000', '2023-03-05', 'received', '200.0000', '200.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1582, 274, NULL, 377, '74069968', 'Naitro 50ml', NULL, '70.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '630.0000', '2.0000', '2023-03-05', 'received', '70.0000', '70.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1583, 274, NULL, 456, '07689641', 'Coco Pole M', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '6.0000', '2023-03-05', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1584, 275, NULL, 410, '86049659', 'SEED (50)', NULL, '35.0000', '20.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '20.0000', '2023-03-11', 'received', '35.0000', '35.0000', '20.0000', NULL, NULL, 2, 'Pcs', '20.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1585, 275, NULL, 270, '61319065', 'SEED (100)', NULL, '80.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '8.0000', '2023-03-11', 'received', '80.0000', '80.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1586, 275, NULL, 269, '86051367', 'SEED (150)', NULL, '130.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1300.0000', '10.0000', '2023-03-11', 'received', '130.0000', '130.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '130.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1587, 275, NULL, 343, '37152007', 'Snail Killer', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '1.0000', '2023-03-11', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1588, 275, NULL, 8, '14', '3pcs Garden Tools Set M ', NULL, '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '5.0000', '2023-03-11', 'received', '150.0000', '150.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1589, 275, NULL, 102, '82430231', 'MINI TOOLS SET ', NULL, '70.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '700.0000', '10.0000', '2023-03-11', 'received', '70.0000', '70.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '70.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1590, 275, NULL, 284, '33347731', 'Flora 50ml', NULL, '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '10.0000', '2023-03-11', 'received', '50.0000', '50.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '50.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1591, 275, NULL, 379, '56291360', 'Siko 50ml', NULL, '55.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '330.0000', '6.0000', '2023-03-11', 'received', '55.0000', '55.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '55.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1592, 275, NULL, 200, '04148228', '1 Litter Sprayer', NULL, '180.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '900.0000', '5.0000', '2023-03-11', 'received', '180.0000', '180.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1593, 275, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '0.0000', '2023-03-11', 'received', '270.0000', '270.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1594, 275, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2000.0000', '0.0000', '2023-03-11', 'received', '200.0000', '200.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1595, 276, NULL, 393, '62446910', 'Zen Hanging pod', NULL, '300.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2400.0000', '7.0000', '2023-03-13', 'received', '300.0000', '300.0000', '8.0000', NULL, NULL, 2, 'Pcs', '8.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1596, 277, NULL, 141, '86990658', 'PERLITE 2L', NULL, '250.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1750.0000', '6.0000', '2023-03-23', 'received', '250.0000', '250.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1597, 278, NULL, 107, '20002901', ' 2L SPRAYER ORANGE', NULL, '270.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1350.0000', '5.0000', '2023-03-23', 'received', '270.0000', '270.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '270.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1598, 278, NULL, 482, '79803566', 'Osmokot 100gm  13.13.13', NULL, '235.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1645.0000', '7.0000', '2023-03-23', 'received', '235.0000', '235.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '235.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1599, 278, NULL, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', NULL, '1250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2500.0000', '2.0000', '2023-03-23', 'received', '1250.0000', '1250.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '1250.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1600, 278, NULL, 231, '25710966', 'Root Powder Small ', NULL, '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '5.0000', '2023-03-23', 'received', '100.0000', '100.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1601, 278, NULL, 145, '43356395', 'NPK 100GM', NULL, '220.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1100.0000', '5.0000', '2023-03-23', 'received', '220.0000', '220.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1602, 278, NULL, 160, '10237543', 'B-1 ROOT GROWER', NULL, '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1500.0000', '5.0000', '2023-03-23', 'received', '300.0000', '300.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1603, 278, NULL, 506, '51521519', 'Toy 250', NULL, '170.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '510.0000', '1.0000', '2023-03-23', 'received', '170.0000', '170.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1604, 278, NULL, 86, '08010277', 'RESIN PLANTER K2', NULL, '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '2.0000', '2023-03-23', 'received', '400.0000', '400.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1605, 278, NULL, 503, '04718707', 'Toy 300', NULL, '200.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '7.0000', '2023-03-23', 'received', '200.0000', '200.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1606, 278, NULL, 163, '60285514', 'Transparent Mesh Pot ', NULL, '75.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1125.0000', '15.0000', '2023-03-23', 'received', '75.0000', '75.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '75.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1607, 278, NULL, 75, '91459819', '2.5 INCH COLOR POT', NULL, '8.0000', '100.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '100.0000', '2023-03-23', 'received', '8.0000', '8.0000', '100.0000', NULL, NULL, 2, 'Pcs', '100.0000', NULL, NULL, NULL, NULL, '8.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1608, 278, NULL, 96, '26699468', 'MIRACLE GRO PRUNING SHEARS', NULL, '800.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '2.0000', '2023-03-23', 'received', '800.0000', '800.0000', '2.0000', NULL, NULL, 2, 'Pcs', '2.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1609, 278, NULL, 100, '61786707', 'PRUNING SHEARS RED ', NULL, '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '300.0000', '1.0000', '2023-03-23', 'received', '300.0000', '300.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '300.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1610, 278, NULL, 385, '49994111', 'Stylish Stripe Planter color s', NULL, '180.0000', '15.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2700.0000', '15.0000', '2023-03-23', 'received', '180.0000', '180.0000', '15.0000', NULL, NULL, 2, 'Pcs', '15.0000', NULL, NULL, NULL, NULL, '180.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1611, 278, NULL, 233, '03531371', 'Akadama Soil', NULL, '700.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '2800.0000', '4.0000', '2023-03-23', 'received', '700.0000', '700.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1612, 278, NULL, 425, '69132898', 'Toy Mini 4pcs', NULL, '80.0000', '46.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '3680.0000', '46.0000', '2023-03-23', 'received', '80.0000', '80.0000', '46.0000', NULL, NULL, 2, 'Pcs', '46.0000', NULL, NULL, NULL, NULL, '80.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1613, 278, NULL, 113, '02483091', '8 WAY SPRAYER HEAD', NULL, '100.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1000.0000', '9.0000', '2023-03-23', 'received', '100.0000', '100.0000', '10.0000', NULL, NULL, 2, 'Pcs', '10.0000', NULL, NULL, NULL, NULL, '100.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1614, 278, NULL, 268, '83437543', 'SEED (200)', NULL, '170.0000', '50.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '8500.0000', '50.0000', '2023-03-23', 'received', '170.0000', '170.0000', '50.0000', NULL, NULL, 2, 'Pcs', '50.0000', NULL, NULL, NULL, NULL, '170.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1615, 278, NULL, 589, '12397457', 'agave crysted', NULL, '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '1.0000', '2023-03-23', 'received', '600.0000', '600.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1616, 278, NULL, 220, '85347259', 'vermi compost', NULL, '35.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '350.0000', '2.0000', '2023-03-23', 'received', '35.0000', '35.0000', '10.0000', NULL, NULL, 3, 'KG', '10.0000', NULL, NULL, NULL, NULL, '35.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1617, 278, NULL, 282, '61225679', 'Mancer 100gm', NULL, '120.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '5.0000', '2023-03-23', 'received', '120.0000', '120.0000', '5.0000', NULL, NULL, 2, 'Pcs', '5.0000', NULL, NULL, NULL, NULL, '120.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1618, 278, NULL, 379, '56291360', 'Siko 50ml', NULL, '55.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '55.0000', '1.0000', '2023-03-23', 'received', '55.0000', '55.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '55.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1619, 278, NULL, 383, '40896840', 'Green Tonic PGR', NULL, '45.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '630.0000', '13.0000', '2023-03-23', 'received', '45.0000', '45.0000', '14.0000', NULL, NULL, 2, 'Pcs', '14.0000', NULL, NULL, NULL, NULL, '45.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1620, 278, NULL, 409, '31197682', 'Alpha Omega House plant', NULL, '700.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '4200.0000', '6.0000', '2023-03-23', 'received', '700.0000', '700.0000', '6.0000', NULL, NULL, 2, 'Pcs', '6.0000', NULL, NULL, NULL, NULL, '700.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1621, 278, NULL, 226, '21257351', 'Thai Root Hormon', NULL, '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1050.0000', '3.0000', '2023-03-23', 'received', '350.0000', '350.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '350.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1622, 278, NULL, 458, '95295008', 'Bird House', NULL, '200.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1400.0000', '1.0000', '2023-03-23', 'received', '200.0000', '200.0000', '7.0000', NULL, NULL, 2, 'Pcs', '7.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1623, 278, NULL, 70, '98281106', 'VANDA ORCHID ', NULL, '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '750.0000', '1.0000', '2023-03-23', 'received', '750.0000', '750.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '750.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1624, 278, NULL, 179, '25713355', 'Mounted Spp Den', NULL, '800.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '7200.0000', '0.0000', '2023-03-23', 'received', '800.0000', '800.0000', '9.0000', NULL, NULL, 2, 'Pcs', '9.0000', NULL, NULL, NULL, NULL, '800.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1625, 278, NULL, 411, '36633513', 'vermi compost 5kg', NULL, '220.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '880.0000', '4.0000', '2023-03-23', 'received', '220.0000', '220.0000', '4.0000', NULL, NULL, 3, 'KG', '4.0000', NULL, NULL, NULL, NULL, '220.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1626, 278, NULL, 593, '95149162', 'Mican S', NULL, '150.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1650.0000', '10.0000', '2023-03-23', 'received', '150.0000', '150.0000', '11.0000', NULL, NULL, 2, 'Pcs', '11.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1627, 278, NULL, 35, '81983767', 'MONOSTERA PERU', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '1.0000', '2023-03-23', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1628, 278, NULL, 259, '96893813', 'Philo neon Big', NULL, '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '800.0000', '4.0000', '2023-03-23', 'received', '200.0000', '200.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '200.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1629, 278, NULL, 589, '12397457', 'agave crysted', NULL, '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1800.0000', '3.0000', '2023-03-23', 'received', '600.0000', '600.0000', '3.0000', NULL, NULL, 2, 'Pcs', '3.0000', NULL, NULL, NULL, NULL, '600.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1630, 278, NULL, 262, '02739001', 'Peporima Verg. Big', NULL, '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '1600.0000', '4.0000', '2023-03-23', 'received', '400.0000', '400.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1631, 278, NULL, 364, '67122033', 'Sciundupsis Argerious ', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '1.0000', '2023-03-23', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1632, 278, NULL, 186, '21212277', 'philo Cream Splash ', NULL, '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '500.0000', '1.0000', '2023-03-23', 'received', '500.0000', '500.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '500.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1633, 278, NULL, 252, '33614746', 'philo. Neon', NULL, '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '2.0000', '2023-03-23', 'received', '150.0000', '150.0000', '4.0000', NULL, NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, '150.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1634, 278, NULL, 194, '16535351', 'Aglonema Color', NULL, '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '400.0000', '0.0000', '2023-03-23', 'received', '400.0000', '400.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '400.0000');
INSERT INTO `sma_purchase_items` (`id`, `purchase_id`, `transfer_id`, `product_id`, `product_code`, `product_name`, `option_id`, `net_unit_cost`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `expiry`, `subtotal`, `quantity_balance`, `date`, `status`, `unit_cost`, `real_unit_cost`, `quantity_received`, `supplier_part_no`, `purchase_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `gst`, `cgst`, `sgst`, `igst`, `base_unit_cost`) VALUES (1635, 278, NULL, 162, '23510383', 'Hybrid Dendrobium orchid ', NULL, '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', NULL, '600.0000', '0.0000', '2023-03-23', 'received', '600.0000', '600.0000', '1.0000', NULL, NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, '600.0000');


#
# TABLE STRUCTURE FOR: sma_purchases
#

DROP TABLE IF EXISTS `sma_purchases`;

CREATE TABLE `sma_purchases` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `reference_no` varchar(55) NOT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `supplier_id` int(11) NOT NULL,
  `supplier` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `note` varchar(1000) NOT NULL,
  `total` decimal(25,4) DEFAULT NULL,
  `product_discount` decimal(25,4) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_discount` decimal(25,4) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT NULL,
  `product_tax` decimal(25,4) DEFAULT NULL,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT 0.0000,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  `grand_total` decimal(25,4) NOT NULL,
  `paid` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `status` varchar(55) DEFAULT '',
  `payment_status` varchar(20) DEFAULT 'pending',
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `payment_term` tinyint(4) DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `return_id` int(11) DEFAULT NULL,
  `surcharge` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `return_purchase_ref` varchar(55) DEFAULT NULL,
  `purchase_id` int(11) DEFAULT NULL,
  `return_purchase_total` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=279 DEFAULT CHARSET=utf8;

INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (1, 'PO2021/12/0001', '2021-12-17 02:24:00', 2, 'RecallGreen', 2, '', '9615.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9615.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (2, 'PO2021/12/0002', '2021-12-17 04:08:00', 2, 'RecallGreen', 2, '', '3600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', '3600.0000', 'received', 'paid', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (3, 'PO2021/12/0003', '2021-12-17 12:50:00', 2, 'RecallGreen', 2, '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (4, 'PO2021/12/0004', '2021-12-17 12:53:00', 2, 'RecallGreen', 2, '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (5, 'PO2021/12/0005', '2021-12-29 07:54:00', 2, 'RecallGreen', 2, '', '18750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18750.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (6, 'PO2022/01/0006', '2022-01-06 02:51:00', 2, 'RecallGreen', 2, '', '133200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '133200.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (7, 'PO2022/01/0007', '2022-01-06 02:59:00', 2, 'RecallGreen', 2, '', '59100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '59100.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (8, 'PO2022/01/0008', '2022-01-06 03:04:00', 2, 'RecallGreen', 2, '', '33020.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '33020.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (9, 'PO2022/01/0009', '2022-01-06 03:07:00', 2, 'RecallGreen', 2, '', '24700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24700.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (10, 'PO2022/01/0010', '2022-01-06 03:11:00', 2, 'RecallGreen', 2, '', '24050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24050.0000', '24050.0000', 'received', 'paid', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (11, 'PO2022/01/0011', '2022-01-06 03:56:00', 2, 'RecallGreen', 2, '', '48680.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48680.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (12, 'PO2022/01/0012', '2022-01-06 04:02:00', 2, 'RecallGreen', 2, '', '14400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14400.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (13, 'PO2022/01/0013', '2022-01-06 04:06:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (14, 'PO2022/01/0014', '2022-01-06 04:43:00', 2, 'RecallGreen', 2, '', '86760.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '86760.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (15, 'PO2022/01/0015', '2022-01-06 04:51:00', 2, 'RecallGreen', 2, '', '27730.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27730.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (16, 'PO2022/01/0016', '2022-01-06 08:04:00', 2, 'RecallGreen', 2, '', '3060.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3060.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (17, 'PO2022/01/0017', '2022-01-07 11:44:00', 2, 'RecallGreen', 2, '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (18, 'PO2022/01/0018', '2022-01-14 09:09:00', 2, 'RecallGreen', 2, '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (19, 'PO2022/01/0019', '2022-01-14 10:06:00', 2, 'RecallGreen', 2, '', '36700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '36700.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (20, 'PO2022/01/0020', '2022-01-14 10:30:00', 2, 'RecallGreen', 2, '', '6100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6100.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (21, 'PO2022/01/0021', '2022-01-14 10:43:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (22, 'PO2022/01/0022', '2022-01-14 10:45:00', 2, 'RecallGreen', 2, '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (23, 'PO2022/01/0023', '2022-01-14 10:48:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (24, 'PO2022/01/0024', '2022-01-14 11:16:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 1, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (25, 'PO2022/02/0025', '2022-02-23 12:05:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (26, 'PO2022/03/0026', '2022-03-14 19:42:00', 2, 'RecallGreen', 2, '', '25750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25750.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (27, 'PO2022/03/0027', '2022-03-14 19:52:00', 2, 'RecallGreen', 2, '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (28, 'PO2022/03/0028', '2022-03-16 13:46:00', 2, 'RecallGreen', 2, '', '60000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (29, 'PO2022/03/0029', '2022-03-16 15:19:00', 2, 'RecallGreen', 2, '', '18000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (30, 'PO2022/03/0030', '2022-03-16 15:29:00', 2, 'RecallGreen', 2, '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (31, 'PO2022/03/0031', '2022-03-16 15:42:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (32, 'PO2022/03/0032', '2022-03-16 15:43:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (33, 'PO2022/03/0033', '2022-03-16 15:49:00', 2, 'RecallGreen', 2, '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (34, 'PO2022/03/0034', '2022-03-16 15:51:00', 2, 'RecallGreen', 2, '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (35, 'PO2022/03/0035', '2022-03-16 15:54:00', 2, 'RecallGreen', 2, '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (36, 'PO2022/03/0036', '2022-03-16 15:55:00', 2, 'RecallGreen', 2, '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (37, 'PO2022/03/0037', '2022-03-16 15:59:00', 2, 'RecallGreen', 2, '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (38, 'PO2022/03/0038', '2022-03-16 16:00:00', 2, 'RecallGreen', 2, '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (39, 'PO2022/03/0039', '2022-03-16 16:05:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (40, 'PO2022/03/0040', '2022-03-16 16:10:00', 2, 'RecallGreen', 2, '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (41, 'PO2022/03/0041', '2022-03-16 16:12:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (42, 'PO2022/03/0042', '2022-03-16 16:17:00', 2, 'RecallGreen', 2, '', '180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '180.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (43, 'PO2022/03/0043', '2022-03-16 16:27:00', 2, 'RecallGreen', 2, '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (44, 'PO2022/03/0044', '2022-03-16 16:59:00', 2, 'RecallGreen', 2, '', '2475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2475.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (45, 'PO2022/03/0045', '2022-03-16 17:00:00', 2, 'RecallGreen', 2, '', '2475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2475.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (46, 'PO2022/03/0046', '2022-03-16 17:01:00', 2, 'RecallGreen', 2, '', '2475.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2475.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (47, 'PO2022/03/0047', '2022-03-16 17:05:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (48, 'PO2022/03/0048', '2022-03-16 17:27:00', 2, 'RecallGreen', 2, '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (49, 'PO2022/03/0049', '2022-03-16 17:31:00', 2, 'RecallGreen', 2, '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (50, 'PO2022/03/0050', '2022-03-16 17:38:00', 2, 'RecallGreen', 2, '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (51, 'PO2022/03/0051', '2022-03-16 17:47:00', 2, 'RecallGreen', 2, '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (52, 'PO2022/03/0052', '2022-03-16 17:50:00', 2, 'RecallGreen', 2, '', '315.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '315.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (53, 'PO2022/03/0053', '2022-03-16 18:03:00', 2, 'RecallGreen', 2, '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (54, 'PO2022/03/0054', '2022-03-16 18:11:00', 2, 'RecallGreen', 2, '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (55, 'PO2022/03/0055', '2022-03-16 18:25:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (56, 'PO2022/03/0056', '2022-03-16 18:28:00', 2, 'RecallGreen', 2, '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (57, 'PO2022/03/0057', '2022-03-16 18:33:00', 2, 'RecallGreen', 2, '', '3550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3550.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (58, 'PO2022/03/0058', '2022-03-16 18:35:00', 2, 'RecallGreen', 2, '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (59, 'PO2022/03/0059', '2022-03-16 18:37:00', 2, 'RecallGreen', 2, '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (60, 'PO2022/03/0060', '2022-03-16 18:39:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (61, 'PO2022/03/0061', '2022-03-16 18:41:00', 2, 'RecallGreen', 2, '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (62, 'PO2022/03/0062', '2022-03-16 18:43:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (63, 'PO2022/03/0063', '2022-03-16 18:44:00', 2, 'RecallGreen', 2, '', '385.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '385.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (64, 'PO2022/03/0064', '2022-03-16 18:51:00', 2, 'RecallGreen', 2, '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (65, 'PO2022/03/0065', '2022-03-16 18:53:00', 2, 'RecallGreen', 2, '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (66, 'PO2022/03/0066', '2022-03-16 18:55:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (67, 'PO2022/03/0067', '2022-03-16 18:57:00', 2, 'RecallGreen', 2, '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (68, 'PO2022/03/0068', '2022-03-16 19:00:00', 2, 'RecallGreen', 2, '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (69, 'PO2022/03/0069', '2022-03-16 19:02:00', 2, 'RecallGreen', 2, '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (70, 'PO2022/03/0070', '2022-03-16 19:07:00', 2, 'RecallGreen', 2, '', '1510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1510.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (71, 'PO2022/03/0071', '2022-03-16 19:21:00', 2, 'RecallGreen', 2, '', '11700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (72, 'PO2022/03/0072', '2022-03-16 19:28:00', 2, 'RecallGreen', 2, '', '15800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (73, 'PO2022/03/0073', '2022-03-16 19:32:00', 2, 'RecallGreen', 2, '', '2090.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2090.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (74, 'PO2022/03/0074', '2022-03-16 19:36:00', 2, 'RecallGreen', 2, '', '5500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (75, 'PO2022/03/0075', '2022-03-16 19:38:00', 2, 'RecallGreen', 2, '', '6400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (76, 'PO2022/03/0076', '2022-03-16 19:41:00', 2, 'RecallGreen', 2, '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (77, 'PO2022/03/0077', '2022-03-16 19:54:00', 2, 'RecallGreen', 2, '', '18650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18650.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (78, 'PO2022/03/0078', '2022-03-16 19:57:00', 2, 'RecallGreen', 2, '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (79, 'PO2022/03/0079', '2022-03-16 20:00:00', 2, 'RecallGreen', 2, '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (80, 'PO2022/03/0080', '2022-03-16 20:02:00', 2, 'RecallGreen', 2, '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (81, 'PO2022/03/0081', '2022-03-16 20:05:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (82, 'PO2022/03/0082', '2022-03-16 20:08:00', 2, 'RecallGreen', 2, '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (83, 'PO2022/03/0083', '2022-03-16 20:10:00', 2, 'RecallGreen', 2, '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (84, 'PO2022/03/0084', '2022-03-16 20:11:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (85, 'PO2022/03/0085', '2022-03-16 20:12:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (86, 'PO2022/03/0086', '2022-03-16 20:13:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (87, 'PO2022/03/0087', '2022-03-16 20:14:00', 2, 'RecallGreen', 2, '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (88, 'PO2022/03/0088', '2022-03-16 20:15:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (89, 'PO2022/03/0089', '2022-03-16 20:15:00', 2, 'RecallGreen', 2, '', '12000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (90, 'PO2022/03/0090', '2022-03-16 20:18:00', 2, 'RecallGreen', 2, '', '8500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (91, 'PO2022/03/0091', '2022-03-16 20:22:00', 2, 'RecallGreen', 2, '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (92, 'PO2022/03/0092', '2022-03-16 20:24:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (93, 'PO2022/03/0093', '2022-03-16 20:26:00', 2, 'RecallGreen', 2, '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (94, 'PO2022/03/0094', '2022-03-16 20:29:00', 2, 'RecallGreen', 2, '', '6400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (95, 'PO2022/03/0095', '2022-03-16 20:38:00', 2, 'RecallGreen', 2, '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (96, 'PO2022/03/0096', '2022-03-17 12:25:00', 2, 'RecallGreen', 2, '', '34300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '34300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (97, 'PO2022/03/0097', '2022-03-17 12:42:00', 2, 'RecallGreen', 2, '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (98, 'PO2022/03/0098', '2022-03-17 13:12:00', 2, 'RecallGreen', 2, '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (99, 'PO2022/03/0099', '2022-03-17 13:49:00', 2, 'RecallGreen', 2, '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (100, 'PO2022/03/0100', '2022-03-17 14:01:00', 2, 'RecallGreen', 2, '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (101, 'PO2022/03/0101', '2022-03-17 14:02:00', 2, 'RecallGreen', 2, '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (102, 'PO2022/03/0102', '2022-03-17 14:08:00', 2, 'RecallGreen', 2, '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (103, 'PO2022/03/0103', '2022-03-17 14:17:00', 2, 'RecallGreen', 2, '', '2065.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2065.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (104, 'PO2022/03/0104', '2022-03-17 14:25:00', 2, 'RecallGreen', 2, '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', '4000.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (105, 'PO2022/03/0105', '2022-03-17 14:29:00', 2, 'RecallGreen', 2, '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', '2400.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (106, 'PO2022/03/0106', '2022-03-17 14:30:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '700.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (107, 'PO2022/03/0107', '2022-03-17 14:33:00', 2, 'RecallGreen', 2, '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', '900.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (108, 'PO2022/03/0108', '2022-03-17 14:34:00', 2, 'RecallGreen', 2, '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', '3800.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (109, 'PO2022/03/0109', '2022-03-17 14:36:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (110, 'PO2022/03/0110', '2022-03-17 14:46:00', 2, 'RecallGreen', 2, '', '2880.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2880.0000', '2880.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (111, 'PO2022/03/0111', '2022-03-17 15:10:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '2000.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (112, 'PO2022/03/0112', '2022-03-17 18:32:00', 2, 'RecallGreen', 2, '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', '2600.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (113, 'PO2022/03/0113', '2022-03-17 19:25:00', 2, 'RecallGreen', 2, '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', '900.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (114, 'PO2022/03/0114', '2022-03-20 08:33:00', 2, 'RecallGreen', 2, '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (115, 'PO2022/03/0115', '2022-03-20 10:11:00', 2, 'RecallGreen', 2, '', '12740.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12740.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (116, 'PO2022/03/0116', '2022-03-21 00:07:00', 2, 'RecallGreen', 2, '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (117, 'PO2022/03/0117', '2022-03-21 00:11:00', 2, 'RecallGreen', 2, '', '880.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '880.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (118, 'PO2022/03/0118', '2022-03-21 00:14:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (119, 'PO2022/03/0119', '2022-03-21 00:23:00', 2, 'RecallGreen', 2, '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (120, 'PO2022/03/0120', '2022-03-21 00:57:00', 2, 'RecallGreen', 2, '', '25550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25550.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (121, 'PO2022/03/0121', '2022-03-21 01:32:00', 2, 'RecallGreen', 2, '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (122, 'PO2022/03/0122', '2022-03-21 01:37:00', 2, 'RecallGreen', 2, '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (123, 'PO2022/03/0123', '2022-03-21 01:44:00', 2, 'RecallGreen', 2, '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (124, 'PO2022/03/0124', '2022-03-21 01:50:00', 2, 'RecallGreen', 2, '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (125, 'PO2022/03/0125', '2022-03-21 02:05:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (126, 'PO2022/03/0126', '2022-03-21 02:22:00', 2, 'RecallGreen', 2, '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (127, 'PO2022/03/0127', '2022-03-21 02:24:00', 2, 'RecallGreen', 2, '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (128, 'PO2022/03/0128', '2022-03-21 02:29:00', 2, 'RecallGreen', 2, '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', '750.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (129, 'PO2022/03/0129', '2022-03-21 02:43:00', 2, 'RecallGreen', 2, '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', '600.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (130, 'PO2022/03/0130', '2022-03-25 06:25:00', 2, 'RecallGreen', 2, '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', '2800.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (131, 'PO2022/03/0131', '2022-03-25 09:09:00', 2, 'RecallGreen', 2, '', '17080.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17080.0000', '17080.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (132, 'PO2022/03/0132', '2022-03-27 00:11:00', 2, 'RecallGreen', 2, '', '1840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1840.0000', '1840.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (133, 'PO2022/03/0133', '2022-03-27 04:34:00', 2, 'RecallGreen', 2, '', '58250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '58250.0000', '58250.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (134, 'PO2022/03/0134', '2022-03-28 02:33:00', 2, 'RecallGreen', 2, '', '15825.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15825.0000', '15825.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (135, 'PO2022/03/0135', '2022-03-29 09:11:00', 2, 'RecallGreen', 2, '', '16000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16000.0000', '16000.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (136, 'PO2022/03/0136', '2022-03-29 09:17:00', 2, 'RecallGreen', 2, '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', '1000.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (137, 'PO2022/03/0137', '2022-03-31 00:30:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (138, 'PO2022/04/0138', '2022-04-02 01:55:00', 2, 'RecallGreen', 2, '', '32465.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32465.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (139, 'PO2022/04/0139', '2022-04-05 00:40:00', 2, 'RecallGreen', 2, '', '111800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '111800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (140, 'PO2022/04/0140', '2022-04-05 01:15:00', 2, 'RecallGreen', 2, '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (141, 'PO2022/04/0141', '2022-04-09 04:43:00', 2, 'RecallGreen', 2, '', '243850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '243850.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (142, 'PO2022/04/0142', '2022-04-12 00:05:00', 2, 'RecallGreen', 2, '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (143, 'PO2022/04/0143', '2022-04-12 01:30:00', 2, 'RecallGreen', 2, '', '10300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (144, 'PO2022/04/0144', '2022-04-12 02:00:00', 2, 'RecallGreen', 2, '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (145, 'PO2022/04/0145', '2022-04-17 00:35:00', 2, 'RecallGreen', 2, '', '29410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29410.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (146, 'PO2022/04/0146', '2022-04-17 01:49:00', 2, 'RecallGreen', 2, '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (147, 'PO2022/04/0147', '2022-04-18 00:37:00', 2, 'RecallGreen', 2, '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (148, 'PO2022/04/0148', '2022-04-19 11:53:00', 2, 'RecallGreen', 2, '', '13575.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13575.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (149, 'PO2022/04/0149', '2022-04-24 06:11:00', 2, 'RecallGreen', 2, '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (150, 'PO2022/04/0150', '2022-04-25 08:41:00', 2, 'RecallGreen', 2, '', '115495.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '115495.0000', '115495.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (151, 'PO2022/04/0151', '2022-04-28 09:13:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (152, 'PO2022/04/0152', '2022-04-29 00:04:00', 2, 'RecallGreen', 2, '', '18875.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18875.0000', '18875.0000', 'received', 'paid', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (153, 'PO2022/04/0153', '2022-04-30 01:52:00', 2, 'RecallGreen', 2, '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (154, 'PO2022/04/0154', '2022-04-30 03:26:00', 2, 'RecallGreen', 2, '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (155, 'PO2022/05/0155', '2022-05-02 01:39:00', 2, 'RecallGreen', 2, '', '8050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (156, 'PO2022/05/0156', '2022-05-03 02:50:00', 2, 'RecallGreen', 2, '', '6250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6250.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (157, 'PO2022/05/0157', '2022-05-03 03:49:00', 2, 'RecallGreen', 2, '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (158, 'PO2022/05/0158', '2022-05-03 04:04:00', 2, 'RecallGreen', 2, '', '5910.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5910.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (159, 'PO2022/05/0159', '2022-05-03 04:07:00', 2, 'RecallGreen', 2, '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (160, 'PO2022/05/0160', '2022-05-08 01:06:00', 2, 'RecallGreen', 2, '', '7010.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7010.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (161, 'PO2022/05/0161', '2022-05-08 01:22:00', 2, 'RecallGreen', 2, '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (162, 'PO2022/05/0162', '2022-05-09 03:38:00', 2, 'RecallGreen', 2, '', '11325.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11325.0000', '0.0000', 'received', 'pending', 5, 5, '2022-05-09 05:33:59', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (163, 'PO2022/05/0163', '2022-05-14 07:10:00', 2, 'RecallGreen', 2, '', '160000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (164, 'PO2022/05/0164', '2022-05-14 07:27:00', 2, 'RecallGreen', 2, '', '42620.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '42620.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (165, 'PO2022/05/0165', '2022-05-14 07:49:00', 2, 'RecallGreen', 2, '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (166, 'PO2022/05/0166', '2022-05-14 07:55:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (167, 'PO2022/05/0167', '2022-05-15 00:53:00', 2, 'RecallGreen', 2, '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (168, 'PO2022/05/0168', '2022-05-17 09:02:00', 2, 'RecallGreen', 2, '', '8400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (169, 'PO2022/05/0169', '2022-05-22 00:56:00', 2, 'RecallGreen', 2, '', '8150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8150.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (170, 'PO2022/05/0170', '2022-05-28 10:19:00', 2, 'RecallGreen', 2, '', '17420.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17420.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (171, 'PO2022/05/0171', '2022-05-29 03:03:00', 2, 'RecallGreen', 2, '', '32875.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32875.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (172, 'PO2022/05/0172', '2022-05-29 09:35:00', 2, 'RecallGreen', 2, '', '3750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3750.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (173, 'PO2022/05/0173', '2022-05-31 00:43:00', 2, 'RecallGreen', 2, '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (174, 'PO2022/06/0174', '2022-06-07 07:12:00', 2, 'RecallGreen', 2, '', '143240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '143240.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (175, 'PO2022/06/0175', '2022-06-07 23:51:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (176, 'PO2022/06/0176', '2022-06-08 07:50:00', 2, 'RecallGreen', 2, '', '104550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '104550.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (177, 'PO2022/06/0177', '2022-06-13 00:53:00', 2, 'RecallGreen', 2, '', '5160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5160.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (178, 'PO2022/06/0178', '2022-06-13 00:55:00', 2, 'RecallGreen', 2, '', '15375.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15375.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (179, 'PO2022/06/0179', '2022-06-13 01:47:00', 2, 'RecallGreen', 2, '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (180, 'PO2022/06/0180', '2022-06-20 01:24:00', 2, 'RecallGreen', 2, '', '3010.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3010.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (181, 'PO2022/06/0181', '2022-06-20 01:44:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (182, 'PO2022/06/0182', '2022-06-24 10:08:00', 2, 'RecallGreen', 2, '', '870.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '870.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (183, 'PO2022/06/0183', '2022-06-25 01:10:00', 2, 'RecallGreen', 2, '', '19050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (184, 'PO2022/06/0184', '2022-06-26 00:57:00', 2, 'RecallGreen', 2, '', '16980.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16980.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (185, 'PO2022/06/0185', '2022-06-28 00:51:00', 2, 'RecallGreen', 2, '', '20265.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20265.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (186, 'PO2022/07/0186', '2022-07-03 01:45:00', 2, 'RecallGreen', 2, '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (187, 'PO2022/07/0187', '2022-07-05 05:13:00', 2, 'RecallGreen', 2, '', '15965.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15965.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (188, 'PO2022/07/0188', '2022-07-07 00:49:00', 2, 'RecallGreen', 2, '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (189, 'PO2022/07/0189', '2022-07-16 05:14:00', 2, 'RecallGreen', 2, '', '5600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5600.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (190, 'PO2022/07/0190', '2022-07-17 11:57:00', 2, 'RecallGreen', 2, '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (191, 'PO2022/07/0191', '2022-07-19 01:34:00', 2, 'RecallGreen', 2, '', '10260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10260.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (192, 'PO2022/07/0192', '2022-07-22 00:29:00', 2, 'RecallGreen', 2, '', '22335.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '22335.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (193, 'PO2022/07/0193', '2022-07-24 02:11:00', 2, 'RecallGreen', 2, '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (194, 'PO2022/07/0194', '2022-07-26 01:12:00', 2, 'RecallGreen', 2, '', '7730.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7730.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (195, 'PO2022/07/0195', '2022-07-27 01:33:00', 2, 'RecallGreen', 2, '', '30490.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30490.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (196, 'PO2022/07/0196', '2022-08-01 01:15:00', 2, 'RecallGreen', 2, '', '20510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '20510.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (197, 'PO2022/07/0197', '2022-08-01 01:29:00', 2, 'RecallGreen', 2, '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (198, 'PO2022/07/0198', '2022-08-01 09:14:00', 2, 'RecallGreen', 2, '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (199, 'PO2022/08/0199', '2022-08-02 02:20:00', 2, 'RecallGreen', 2, '', '6230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6230.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (200, 'PO2022/08/0200', '2022-08-08 21:45:00', 2, 'RecallGreen', 2, '', '332700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '332700.0000', '0.0000', 'received', 'pending', 6, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (201, 'PO2022/08/0201', '2022-08-08 23:46:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (202, 'PO2022/08/0202', '2022-08-10 06:06:00', 2, 'RecallGreen', 2, '', '149650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '149650.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (203, 'PO2022/08/0203', '2022-08-10 07:24:00', 2, 'RecallGreen', 2, '', '3150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3150.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (204, 'PO2022/08/0204', '2022-08-12 02:30:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (205, 'PO2022/08/0205', '2022-08-15 00:31:00', 2, 'RecallGreen', 2, '', '32550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32550.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (206, 'PO2022/08/0206', '2022-08-16 06:51:00', 2, 'RecallGreen', 2, '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (207, 'PO2022/08/0207', '2022-08-20 00:24:00', 2, 'RecallGreen', 2, '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (208, 'PO2022/08/0208', '2022-08-21 06:08:00', 2, 'RecallGreen', 2, '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (209, 'PO2022/08/0209', '2022-08-22 01:57:00', 2, 'RecallGreen', 2, '', '9500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (210, 'PO2022/08/0210', '2022-08-22 07:20:00', 2, 'RecallGreen', 2, '', '45.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '45.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (211, 'PO2022/08/0211', '2022-08-24 00:30:00', 2, 'RecallGreen', 2, '', '27850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '27850.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (212, 'PO2022/08/0212', '2022-08-31 06:03:00', 2, 'RecallGreen', 2, '', '2995.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2995.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (213, 'PO2022/08/0213', '2022-08-31 06:12:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (214, 'PO2022/09/0214', '2022-09-04 00:09:00', 2, 'RecallGreen', 2, '', '17450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17450.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (215, 'PO2022/09/0215', '2022-09-04 01:31:00', 2, 'RecallGreen', 2, '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (216, 'PO2022/09/0216', '2022-09-07 04:02:00', 2, 'RecallGreen', 2, '', '4125.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4125.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (217, 'PO2022/09/0217', '2022-09-10 00:18:00', 2, 'RecallGreen', 2, '', '32360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '32360.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (218, 'PO2022/09/0218', '2022-09-10 00:50:00', 2, 'RecallGreen', 2, '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (219, 'PO2022/09/0219', '2022-09-11 02:31:00', 2, 'RecallGreen', 2, '', '2140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2140.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (220, 'PO2022/09/0220', '2022-09-12 00:50:00', 2, 'RecallGreen', 2, '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (221, 'PO2022/09/0221', '2022-09-13 01:20:00', 2, 'RecallGreen', 2, '', '11950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11950.0000', '0.0000', 'received', 'pending', 5, 5, '2022-09-13 01:24:54', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (222, 'PO2022/09/0222', '2022-09-14 01:28:00', 2, 'RecallGreen', 2, '', '1875.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1875.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (223, 'PO2022/09/0223', '2022-09-17 07:59:00', 2, 'RecallGreen', 2, '', '5255.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5255.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (224, 'PO2022/09/0224', '2022-09-18 06:42:00', 2, 'RecallGreen', 2, '', '220200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (225, 'PO2022/09/0225', '2022-09-25 00:12:00', 2, 'RecallGreen', 2, '', '5250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5250.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (226, 'PO2022/09/0226', '2022-09-26 02:42:00', 2, 'RecallGreen', 2, '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (227, 'PO2022/09/0227', '2022-10-01 00:55:00', 2, 'RecallGreen', 2, '', '25645.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25645.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (228, 'PO2022/10/0228', '2022-10-05 02:32:00', 2, 'RecallGreen', 2, '', '5725.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5725.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (229, 'PO2022/10/0229', '2022-10-07 09:01:00', 2, 'RecallGreen', 2, '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (230, 'PO2022/10/0230', '2022-10-09 01:25:00', 2, 'RecallGreen', 2, '', '4320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4320.0000', '0.0000', 'received', 'pending', 5, 5, '2022-10-09 01:50:34', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (231, 'PO2022/10/0231', '2022-10-10 09:29:00', 2, 'RecallGreen', 2, '', '5130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5130.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (232, 'PO2022/10/0232', '2022-10-12 08:51:00', 2, 'RecallGreen', 2, '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (233, 'PO2022/10/0233', '2022-10-14 07:04:00', 2, 'RecallGreen', 2, '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (234, 'PO2022/10/0234', '2022-10-16 05:24:00', 2, 'RecallGreen', 2, '', '16780.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16780.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (235, 'PO2022/10/0235', '2022-10-16 07:15:00', 2, 'RecallGreen', 2, '', '153390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '153390.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (236, 'PO2022/10/0236', '2022-10-21 08:39:00', 2, 'RecallGreen', 2, '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (237, 'PO2022/10/0237', '2022-10-22 01:47:00', 2, 'RecallGreen', 2, '', '25275.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25275.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (238, 'PO2022/10/0238', '2022-10-24 00:26:00', 2, 'RecallGreen', 2, '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (239, 'PO2022/10/0239', '2022-10-28 00:02:00', 2, 'RecallGreen', 2, '', '48345.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '48345.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (240, 'PO2022/10/0240', '2022-10-28 00:18:00', 2, 'RecallGreen', 2, '', '7200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7200.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (241, 'PO2022/11/0241', '2022-11-06 07:01:00', 2, 'RecallGreen', 2, '', '248895.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '248895.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (242, 'PO2022/11/0242', '2022-11-07 08:35:00', 2, 'RecallGreen', 2, '', '1225.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1225.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (243, 'PO2022/11/0243', '2022-11-07 08:54:00', 2, 'RecallGreen', 2, '', '880.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '880.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (244, 'PO2022/11/0244', '2022-11-07 09:28:00', 2, 'RecallGreen', 2, '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (245, 'PO2022/11/0245', '2022-11-20 02:51:00', 2, 'RecallGreen', 2, '', '6990.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6990.0000', '0.0000', 'received', 'pending', 5, 5, '2022-11-20 07:17:31', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (246, 'PO2022/11/0246', '2022-11-21 03:09:00', 2, 'RecallGreen', 2, '', '49495.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '49495.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (247, 'PO2022/11/0247', '2022-11-23 07:34:00', 2, 'RecallGreen', 2, '', '44660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '44660.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (248, 'PO2022/11/0248', '2022-11-23 07:47:00', 2, 'RecallGreen', 2, '', '63075.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '63075.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (249, 'PO2022/11/0249', '2022-11-23 10:23:00', 2, 'RecallGreen', 2, '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (250, 'PO2022/11/0250', '2022-11-27 00:46:00', 2, 'RecallGreen', 2, '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (251, 'PO2022/12/0251', '2022-12-03 01:59:00', 2, 'RecallGreen', 2, '', '14895.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '14895.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (252, 'PO2022/12/0252', '2022-12-04 01:12:00', 2, 'RecallGreen', 2, '', '7500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7500.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (253, 'PO2022/12/0253', '2022-12-07 01:18:00', 2, 'RecallGreen', 2, '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (254, 'PO2022/12/0254', '2022-12-13 03:20:00', 2, 'RecallGreen', 2, '', '11220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11220.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (255, 'PO2022/12/0255', '2022-12-17 01:24:00', 2, 'RecallGreen', 2, '', '4900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4900.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (256, 'PO2022/12/0256', '2022-12-18 00:43:00', 2, 'RecallGreen', 2, '', '3220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3220.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (257, 'PO2022/12/0257', '2022-12-26 10:03:00', 2, 'RecallGreen', 2, '', '135950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '135950.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (258, 'PO2022/12/0258', '2022-12-26 10:08:00', 2, 'RecallGreen', 2, '', '64060.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '64060.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (259, 'PO2023/01/0259', '2023-01-22 06:04:00', 2, 'RecallGreen', 2, '', '88760.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '88760.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (260, 'PO2023/01/0260', '2023-01-22 07:18:00', 2, 'RecallGreen', 2, '', '13160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13160.0000', '0.0000', 'received', 'pending', 5, 5, '2023-01-22 07:42:02', '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (261, 'PO2023/01/0261', '2023-01-22 09:52:00', 2, 'RecallGreen', 2, '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (262, 'PO2023/01/0262', '2023-01-24 07:54:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (263, 'PO2023/01/0263', '2023-01-24 10:22:00', 2, 'RecallGreen', 2, '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (264, 'PO2023/01/0264', '2023-01-25 08:39:00', 2, 'RecallGreen', 2, '', '8340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8340.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (265, 'PO2023/02/0265', '2023-02-04 01:34:00', 2, 'RecallGreen', 2, '', '30075.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30075.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (266, 'PO2023/02/0266', '2023-02-08 01:26:00', 2, 'RecallGreen', 2, '', '4930.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4930.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (267, 'PO2023/02/0267', '2023-02-14 06:53:00', 2, 'RecallGreen', 2, '', '204760.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '204760.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (268, 'PO2023/02/0268', '2023-02-14 10:13:00', 2, 'RecallGreen', 2, '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (269, 'PO2023/02/0269', '2023-02-19 01:15:00', 2, 'RecallGreen', 2, '', '18820.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18820.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (270, 'PO2023/02/0270', '2023-02-24 01:10:00', 2, 'RecallGreen', 2, '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (271, 'PO2023/02/0271', '2023-02-27 01:19:00', 2, 'RecallGreen', 2, '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (272, 'PO2023/02/0272', '2023-02-28 08:06:00', 2, 'RecallGreen', 2, '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (273, 'PO2023/03/0273', '2023-03-04 02:01:00', 2, 'RecallGreen', 2, '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (274, 'PO2023/03/0274', '2023-03-06 02:57:00', 2, 'RecallGreen', 2, '', '11085.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11085.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (275, 'PO2023/03/0275', '2023-03-12 09:30:00', 2, 'RecallGreen', 2, '', '9730.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9730.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (276, 'PO2023/03/0276', '2023-03-14 00:30:00', 2, 'RecallGreen', 2, '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (277, 'PO2023/03/0277', '2023-03-24 08:47:00', 2, 'RecallGreen', 2, '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);
INSERT INTO `sma_purchases` (`id`, `reference_no`, `date`, `supplier_id`, `supplier`, `warehouse_id`, `note`, `total`, `product_discount`, `order_discount_id`, `order_discount`, `total_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `paid`, `status`, `payment_status`, `created_by`, `updated_by`, `updated_at`, `attachment`, `payment_term`, `due_date`, `return_id`, `surcharge`, `return_purchase_ref`, `purchase_id`, `return_purchase_total`, `cgst`, `sgst`, `igst`) VALUES (278, 'PO2023/03/0278', '2023-03-24 08:51:00', 2, 'RecallGreen', 2, '', '60375.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60375.0000', '0.0000', 'received', 'pending', 5, NULL, NULL, '0', 0, NULL, NULL, '0.0000', NULL, NULL, '0.0000', NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_quote_items
#

DROP TABLE IF EXISTS `sma_quote_items`;

CREATE TABLE `sma_quote_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `quote_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `quote_id` (`quote_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_quotes
#

DROP TABLE IF EXISTS `sma_quotes`;

CREATE TABLE `sma_quotes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `internal_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount` decimal(25,4) DEFAULT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT 0.0000,
  `product_tax` decimal(25,4) DEFAULT 0.0000,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT NULL,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  `grand_total` decimal(25,4) NOT NULL,
  `status` varchar(20) DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `attachment` varchar(55) DEFAULT NULL,
  `supplier_id` int(11) DEFAULT NULL,
  `supplier` varchar(55) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_return_items
#

DROP TABLE IF EXISTS `sma_return_items`;

CREATE TABLE `sma_return_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `return_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `return_id` (`return_id`),
  KEY `product_id` (`product_id`),
  KEY `product_id_2` (`product_id`,`return_id`),
  KEY `return_id_2` (`return_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_returns
#

DROP TABLE IF EXISTS `sma_returns`;

CREATE TABLE `sma_returns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `staff_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount` decimal(25,4) DEFAULT 0.0000,
  `product_tax` decimal(25,4) DEFAULT 0.0000,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT 0.0000,
  `total_tax` decimal(25,4) DEFAULT 0.0000,
  `grand_total` decimal(25,4) NOT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `total_items` smallint(6) DEFAULT NULL,
  `paid` decimal(25,4) DEFAULT 0.0000,
  `surcharge` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `attachment` varchar(55) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_sale_items
#

DROP TABLE IF EXISTS `sma_sale_items`;

CREATE TABLE `sma_sale_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `sale_item_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `sale_id` (`sale_id`),
  KEY `product_id` (`product_id`),
  KEY `product_id_2` (`product_id`,`sale_id`),
  KEY `sale_id_2` (`sale_id`,`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7461 DEFAULT CHARSET=utf8;

INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (222, 168, 206, '03630608', 'Senseveria Drwaf Thai', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (221, 167, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (190, 140, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (191, 141, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (192, 141, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (193, 142, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (194, 143, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (195, 144, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (196, 145, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (197, 146, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (198, 147, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (199, 148, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (200, 149, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (201, 150, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (202, 151, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (203, 152, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1950.0000', '', '650.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (204, 153, 146, 'demo', 'Demo', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1.0000', '', '1.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (205, 154, 146, 'demo', 'Demo', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1.0000', '', '1.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (206, 155, 146, 'demo', 'Demo', 'standard', NULL, '1.0000', '1.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1.0000', '', '1.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (207, 156, 241, '78219718', 'Tulumonia small ', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (208, 156, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (209, 156, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (210, 157, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (211, 158, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '150.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (212, 159, 267, '69979880', 'WOOD STAND AIR PLANT', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (213, 160, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (214, 161, 168, '07964908', 'Zade Shartin', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (215, 162, 258, '62267336', 'Victoria with busket ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (216, 163, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (217, 164, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (218, 165, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (219, 166, 266, '44158245', 'Hawarhtia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (220, 166, 278, '45978696', 'Concreat pot M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (189, 139, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (188, 139, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (186, 139, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (187, 139, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (185, 139, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (184, 139, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (183, 139, 247, '06119241', 'monostera esq', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (182, 138, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (181, 137, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (122, 100, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (123, 100, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (124, 100, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (125, 101, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3750.0000', '', '750.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (126, 101, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (127, 102, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (180, 137, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (160, 125, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (130, 105, 204, '56832000', 'Test 02', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (179, 136, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (162, 126, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (133, 108, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (134, 109, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (135, 110, 203, '23973222', 'Test 01', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (136, 111, 204, '56832000', 'Test 02', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (137, 112, 203, '23973222', 'Test 01', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (138, 112, 205, '11912321', 'Test 03', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (161, 125, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (140, 114, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (141, 115, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (142, 116, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (143, 117, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (144, 118, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (145, 118, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (146, 118, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (147, 118, 194, '16535351', 'AGloONEMA COLOR', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (148, 119, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (149, 119, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (150, 120, 196, '46584489', 'Lipistic', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (151, 121, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (152, 122, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (153, 122, 257, '67002273', 'Dymond Tob', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (154, 123, 263, '83925261', 'Trailing peoporima ', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (155, 123, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (156, 123, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (157, 123, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '50.0000', NULL, 3, 'KG', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (158, 123, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (159, 124, 179, '25713355', 'Mounted Spp Den', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (163, 126, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (164, 127, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (165, 128, 39, '24917109', 'ZZ BIG POT', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (166, 129, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (167, 130, 72, '68672346', 'IONNATHA ON WOOD', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (168, 130, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '10000.0000', '', '2000.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (169, 130, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '1050.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (170, 130, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (171, 130, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (172, 130, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (173, 131, 244, '46625179', 'Kalanchos ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (174, 132, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (175, 132, 194, '16535351', 'AGloONEMA COLOR', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (176, 133, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (177, 134, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (178, 135, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (223, 168, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (224, 168, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (225, 169, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (226, 170, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (227, 171, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (228, 172, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (229, 173, 118, '70757607', 'HUMIDIFIER SMALL', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (230, 173, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (231, 174, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (232, 175, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (233, 175, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (234, 176, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (235, 176, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (236, 176, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (237, 176, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (238, 177, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (239, 177, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (240, 178, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (241, 178, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (242, 178, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (243, 178, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (244, 178, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (245, 178, 94, '86499263', 'SELF WATERING TRANSPARENT ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (246, 179, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (247, 179, 277, '80818544', 'Concreate pot S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (248, 180, 29, '24835571', 'PHILODENDRON GIGAS', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (249, 181, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (250, 181, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (251, 181, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (252, 181, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (253, 181, 13, '00034709', 'Painted Love Hoya', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (254, 182, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (255, 183, 206, '03630608', 'Senseveria Drwaf Thai', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (256, 183, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (257, 184, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (258, 185, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (259, 186, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (260, 186, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (261, 187, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (262, 188, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (263, 189, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (264, 189, 209, '51591750', '6 corner ceramic ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (265, 189, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (266, 190, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (267, 191, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (268, 192, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (269, 193, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (270, 194, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (271, 195, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (272, 196, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (273, 197, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (274, 198, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (275, 199, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (276, 200, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (277, 200, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (278, 200, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (279, 200, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (280, 200, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (281, 200, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (282, 201, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (283, 201, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (284, 202, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (285, 202, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (286, 202, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (287, 202, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (288, 203, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (289, 203, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (290, 203, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (291, 204, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (292, 205, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (293, 206, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '400.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (294, 206, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (295, 206, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (296, 207, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (297, 208, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (298, 208, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (299, 209, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (300, 210, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (301, 211, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (302, 212, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (303, 212, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (304, 212, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (305, 213, 263, '83925261', 'Trailing peoporima ', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (306, 213, 196, '46584489', 'Lipistic', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (307, 213, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (308, 214, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (309, 215, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (310, 215, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (311, 216, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (312, 216, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (313, 216, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (314, 216, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (315, 216, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (316, 216, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (317, 216, 259, '96893813', 'Philo neon Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (318, 217, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (319, 218, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (320, 219, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '30.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (321, 220, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '30.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (322, 221, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (323, 222, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (324, 222, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (325, 223, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (326, 224, 182, '52920385', 'Den Hibiki', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (327, 224, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (328, 225, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (329, 225, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (330, 225, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (331, 226, 261, '92200878', 'Fern S', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (337, 230, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (333, 228, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (334, 228, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (335, 229, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '40.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (336, 229, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (338, 231, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (339, 232, 263, '83925261', 'Trailing peoporima ', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (340, 232, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (341, 233, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (342, 233, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (343, 234, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (344, 235, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (345, 236, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (346, 236, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (347, 237, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (348, 237, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (349, 237, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (350, 238, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (351, 239, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (352, 240, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (353, 240, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (354, 240, 62, '46851569', 'IONNANTHA FUEGO CLUMP', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (355, 240, 267, '69979880', 'WOOD STAND AIR PLANT', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (356, 241, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (357, 242, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (358, 243, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (369, 244, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (368, 244, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (367, 244, 263, '83925261', 'Trailing peoporima ', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (366, 244, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (365, 244, 137, '68749706', 'HOUSE PLANT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (364, 245, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (370, 246, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (371, 247, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (372, 248, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (373, 248, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (374, 249, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (375, 249, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (376, 249, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (377, 249, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (378, 250, 261, '92200878', 'Fern S', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (379, 250, 167, '48885827', 'Kangaro Pocket', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (380, 250, 72, '68672346', 'IONNATHA ON WOOD', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (381, 250, 191, '32906813', 'Love shape Senseveria', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (382, 250, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (383, 251, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (384, 251, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (385, 252, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (386, 253, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (387, 253, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (388, 253, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (389, 253, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (390, 254, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (391, 254, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (392, 255, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (393, 256, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (394, 256, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (395, 257, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (396, 257, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (397, 257, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (398, 257, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (399, 258, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (400, 259, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (401, 259, 261, '92200878', 'Fern S', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (402, 260, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (403, 261, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (404, 262, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (405, 262, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (406, 263, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (407, 264, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (408, 264, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (409, 265, 237, '51964534', 'Neem Khoil', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (410, 265, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (411, 266, 263, '83925261', 'Trailing peoporima ', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (412, 266, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (413, 267, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (414, 268, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (415, 268, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (416, 269, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (417, 270, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (418, 271, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (419, 271, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (420, 271, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '30.0000', '', '30.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (421, 271, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '30.0000', '', '30.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (422, 272, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (423, 273, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (424, 274, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (425, 275, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (426, 276, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (427, 276, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (428, 277, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (429, 278, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (430, 278, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (431, 279, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (432, 279, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (433, 279, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (434, 279, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (435, 279, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (436, 279, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (437, 279, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (438, 280, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (439, 280, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (440, 280, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (441, 280, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (442, 280, 18, '96592653', 'SENSEVERIA RHYNO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (443, 280, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (444, 280, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (445, 280, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (446, 280, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (447, 280, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (448, 280, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (449, 280, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (450, 280, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (451, 280, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (452, 281, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (453, 281, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (454, 282, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (455, 282, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (456, 283, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (457, 284, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (458, 284, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4800.0000', '', '1200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (459, 284, 264, '63489717', 'African Violet', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (460, 284, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (461, 284, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (462, 284, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (463, 284, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (464, 285, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (465, 285, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (466, 286, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (467, 286, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (468, 287, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (523, 318, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (470, 289, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (471, 290, 126, '50528427', 'LAZZY NOZZEL', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (472, 291, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (473, 292, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (474, 292, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (475, 292, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (476, 293, 259, '96893813', 'Philo neon Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (477, 293, 77, '66007347', 'BIG DOLL RESIGN PLANTER ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (478, 294, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (479, 294, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (480, 294, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (481, 294, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (482, 295, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (483, 296, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (484, 297, 237, '51964534', 'Neem Khoil', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (485, 298, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (486, 299, 52, '75558838', 'VERIEGATED EPIPRENIUM', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (487, 299, 189, '95207952', 'Philo 69686', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (488, 300, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (489, 300, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (490, 301, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', '18000.0000', '', '2000.0000', NULL, 2, 'Pcs', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (491, 302, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (492, 303, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (493, 303, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (494, 303, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (495, 304, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (496, 305, 45, '47418622', 'CRYPTHENTHUS', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (497, 306, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (498, 307, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (499, 308, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (500, 309, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (501, 310, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (502, 311, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (503, 312, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (504, 312, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (505, 313, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (506, 314, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (507, 314, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (508, 315, 277, '80818544', 'Concreate pot S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (509, 315, 266, '44158245', 'Hawarhtia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (510, 316, 266, '44158245', 'Hawarhtia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (511, 316, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (512, 316, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (513, 316, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (514, 316, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (515, 316, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (516, 316, 20, '16748388', 'SENSEVERIA FRANCISII', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (517, 316, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (518, 316, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (519, 317, 20, '16748388', 'SENSEVERIA FRANCISII', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (520, 317, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (521, 317, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (522, 317, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (524, 318, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (525, 318, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (526, 318, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (527, 319, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (528, 319, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (529, 320, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (530, 321, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (531, 322, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (532, 323, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (533, 323, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (534, 324, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (535, 325, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (536, 325, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (537, 326, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (538, 327, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (539, 328, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (540, 329, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (541, 329, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (542, 329, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (543, 329, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (544, 329, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (545, 330, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (546, 331, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (547, 331, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (548, 331, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (549, 332, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (550, 333, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (551, 333, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (552, 334, 84, '27666711', 'RESIN PLANTER M2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (553, 335, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (554, 336, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (555, 336, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (556, 337, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (557, 338, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (558, 339, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (559, 340, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (560, 341, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (561, 341, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (562, 342, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (563, 343, 277, '80818544', 'Concreate pot S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (564, 343, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (565, 344, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (566, 345, 60, '23801668', 'IONNATHA VANHYNIGII', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (567, 345, 72, '68672346', 'IONNATHA ON WOOD', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (568, 345, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (569, 345, 64, '51770830', 'BULBOSA ORCHIOD', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (570, 345, 241, '78219718', 'Tulumonia small ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (571, 345, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (572, 345, 45, '47418622', 'CRYPTHENTHUS', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (573, 346, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '120.0000', NULL, 2, 'Pcs', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (574, 346, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (575, 347, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (576, 348, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (577, 349, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (578, 349, 179, '25713355', 'Mounted Spp Den', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (579, 350, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (580, 351, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (581, 352, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (582, 353, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (583, 353, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (584, 354, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '250.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (585, 354, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (586, 354, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (587, 354, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (588, 354, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (589, 354, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (590, 354, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (591, 354, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '450.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (592, 354, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (593, 355, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (594, 356, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (595, 356, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (596, 357, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (597, 358, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (598, 359, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (599, 359, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (600, 359, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (601, 360, 307, '28473863', 'Euphorbia verg', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (602, 361, 278, '45978696', 'Concreat pot M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (603, 362, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (604, 363, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (605, 363, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (606, 363, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (607, 364, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (608, 365, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '80.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (609, 365, 303, '50990480', 'Manjula Hanging', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (610, 365, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '400.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (611, 366, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (612, 367, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (613, 367, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (614, 367, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (615, 368, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (616, 368, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (617, 368, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (618, 369, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (619, 370, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '350.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (620, 371, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (621, 372, 58, '02921723', 'FUNKIANA ON WOOD', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (622, 372, 58, '02921723', 'FUNKIANA ON WOOD', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (623, 372, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (624, 373, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (625, 373, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (626, 373, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (627, 373, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (628, 373, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (629, 373, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (630, 374, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (631, 374, 277, '80818544', 'Concreate pot S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (632, 375, 44, '91825750', 'PHILODENDRON BRASIL BIG POT', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (633, 376, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (634, 377, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (635, 377, 237, '51964534', 'Neem Khoil', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (636, 378, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (637, 379, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (638, 379, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (639, 380, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (640, 381, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (641, 382, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (642, 383, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (643, 384, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (644, 385, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (645, 386, 98, '20607197', 'HARD CUTTER ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (646, 387, 309, '85368633', 'Philo neon Big Pole', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (647, 387, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (648, 388, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (649, 389, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (650, 389, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (651, 389, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (652, 389, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (653, 390, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (654, 391, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (655, 391, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (656, 391, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (657, 391, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (658, 392, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (659, 393, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (660, 394, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (661, 395, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (662, 396, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (663, 396, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (664, 397, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (665, 397, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (666, 398, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (667, 399, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (668, 399, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (669, 399, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (670, 399, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (671, 399, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (672, 399, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (673, 400, 316, '51031679', 'Philo. pedatum', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (674, 400, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (675, 401, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (676, 401, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (677, 402, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', '480.0000', '', '40.0000', NULL, 2, 'Pcs', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (678, 402, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (679, 402, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (680, 403, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (681, 404, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (682, 404, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (683, 404, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (684, 405, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (685, 405, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (686, 406, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (687, 406, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (688, 406, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (689, 407, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (690, 407, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (691, 408, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (692, 408, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (693, 409, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (694, 409, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (695, 409, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (696, 410, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (697, 411, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (698, 412, 331, '34947943', 'Pink Splash Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (699, 413, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (700, 413, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (701, 414, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (702, 415, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (703, 415, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (704, 416, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (705, 417, 196, '46584489', 'Lipistic', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (706, 417, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (707, 418, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (708, 419, 216, '49524419', 'RG Mug', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (709, 420, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (710, 421, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (711, 422, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (712, 422, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (713, 422, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (714, 422, 103, '38704330', 'TOOLS SET GIFT BOX', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (715, 423, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (716, 424, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (717, 425, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (718, 425, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (719, 426, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (720, 426, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (721, 427, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (722, 427, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (723, 427, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (724, 427, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (725, 427, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (726, 427, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (727, 427, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (728, 428, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (729, 429, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (730, 430, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (731, 430, 310, '19536640', 'Big esquleta', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (732, 431, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (733, 431, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (734, 431, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (735, 431, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (736, 431, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (737, 431, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (738, 431, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (739, 431, 257, '67002273', 'Dymond Tob', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (740, 431, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (741, 431, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '450.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (742, 432, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (743, 433, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (744, 434, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (745, 434, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (746, 434, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (747, 434, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (748, 434, 286, '26365495', 'DPGR', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (749, 434, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (750, 434, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (751, 434, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (752, 435, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (753, 435, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (754, 435, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (755, 435, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (756, 436, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (757, 437, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (758, 438, 196, '46584489', 'Lipistic', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (759, 438, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (760, 438, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (761, 438, 303, '50990480', 'Manjula Hanging', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (762, 438, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (763, 438, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (764, 438, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (765, 439, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (766, 439, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (767, 440, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (768, 440, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (769, 441, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (770, 442, 216, '49524419', 'RG Mug', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (771, 443, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (772, 444, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (773, 445, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (774, 446, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (775, 447, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (776, 447, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (777, 447, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (778, 447, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (779, 448, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (780, 449, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (781, 450, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (782, 450, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (783, 450, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (784, 450, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (785, 450, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (786, 451, 273, '43570472', 'Raphidophora Hay', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (787, 451, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (788, 451, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (789, 451, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (790, 451, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (791, 451, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (792, 451, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (793, 451, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (794, 452, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (795, 453, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (796, 453, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (797, 453, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (798, 454, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (799, 455, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (800, 456, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (801, 456, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (802, 457, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (803, 457, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (804, 457, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (805, 458, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (806, 459, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (807, 460, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (808, 461, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (809, 462, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (810, 463, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (811, 463, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (812, 463, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (813, 463, 307, '28473863', 'Euphorbia verg', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (814, 463, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (815, 464, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (816, 464, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (817, 464, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (818, 464, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (819, 464, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (820, 464, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (821, 464, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (822, 464, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (823, 465, 333, '09018704', 'Calathia Mosaic', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (824, 465, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (825, 466, 184, '44306670', 'Burlemax Verigatted ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (826, 466, 325, '25522346', 'Pink princess', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (827, 467, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (828, 467, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (829, 467, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (830, 468, 184, '44306670', 'Burlemax Verigatted ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (831, 469, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (832, 470, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (833, 470, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (834, 470, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (835, 470, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (836, 470, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (837, 470, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (838, 470, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (839, 470, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (840, 471, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (841, 471, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (842, 472, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (843, 473, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (847, 475, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (846, 474, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (848, 476, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (849, 477, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (850, 478, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (851, 479, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (852, 480, 165, '48621422', 'Anthurium', 'standard', 0, '1550.0000', '1550.0000', '1.0000', 2, '0.0000', NULL, '', '450', '450.0000', '1550.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (853, 480, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (854, 480, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (855, 480, 257, '67002273', 'Dymond Tob', 'standard', 0, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '50', '50.0000', '200.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (856, 481, 318, '40799266', 'SYNGONIUM Crismas Holiday', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (857, 481, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (858, 481, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (859, 481, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (860, 481, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (861, 481, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '50.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (862, 481, 336, '48444140', 'fern Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (863, 482, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (864, 483, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (865, 484, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (866, 484, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (867, 485, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (868, 485, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (869, 485, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (870, 486, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (871, 486, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (872, 487, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (873, 488, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (874, 489, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (889, 490, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (888, 490, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (887, 490, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (886, 490, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (885, 490, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (880, 491, 209, '51591750', '6 corner ceramic ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (881, 492, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (882, 493, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (883, 493, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (884, 493, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (890, 494, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (891, 494, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (892, 494, 96, '26699468', 'MIRACLE GRO PRUNING SHEARS', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (893, 494, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (894, 494, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (895, 495, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (896, 496, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (897, 497, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (898, 498, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (899, 498, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (900, 499, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (901, 499, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (902, 499, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (903, 499, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (904, 499, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (905, 499, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (906, 499, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (907, 500, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (908, 500, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (909, 501, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '120.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (910, 501, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (911, 501, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (912, 502, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (913, 502, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (914, 503, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (915, 503, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (916, 504, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (917, 505, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (918, 506, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (919, 507, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (920, 508, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (921, 508, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (922, 509, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (923, 509, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (924, 510, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (925, 511, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (926, 511, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (927, 512, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (928, 512, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (929, 513, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (930, 513, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (931, 513, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (932, 514, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (933, 514, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (934, 515, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (935, 515, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (936, 515, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (937, 515, 311, '02531031', 'Monostera Deliciosa', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (938, 516, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (939, 517, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (940, 518, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (941, 519, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (942, 519, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (943, 519, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (944, 519, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (945, 520, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (946, 520, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (947, 521, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (948, 521, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (949, 521, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (950, 521, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (951, 521, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (952, 522, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (953, 522, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (954, 522, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (955, 523, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '15900.0000', '', '2650.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (956, 524, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (957, 525, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (958, 525, 339, '26050934', 'Syngonium Albo Verg', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (959, 525, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (960, 525, 243, '19090261', 'Verigetted Phelonopsis ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (961, 525, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (962, 525, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (963, 525, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (964, 526, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (965, 526, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (966, 527, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (967, 527, 196, '46584489', 'Lipistic', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (968, 527, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (969, 528, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (970, 529, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (971, 530, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (972, 530, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (973, 531, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (974, 532, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '40.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (975, 532, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (976, 533, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (977, 534, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (978, 535, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (979, 535, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (980, 536, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (981, 536, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (982, 537, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (983, 538, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (984, 539, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (985, 540, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (986, 540, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (987, 541, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (988, 541, 298, '54093978', 'Rattan Stand ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (989, 542, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (990, 543, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (991, 543, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (992, 543, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (993, 543, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (994, 544, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (995, 545, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (996, 546, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (997, 547, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (998, 548, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '100.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (999, 549, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1000, 549, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1001, 549, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1002, 550, 303, '50990480', 'Manjula Hanging', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1003, 551, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '30.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1004, 551, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1005, 551, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1006, 551, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1007, 551, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1008, 551, 331, '34947943', 'Pink Splash Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1009, 551, 177, '08229328', 'Pink Splash ', 'standard', 0, '1100.0000', '1100.0000', '1.0000', 2, '0.0000', NULL, '', '400', '400.0000', '1100.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1010, 551, 173, '63588432', 'Ring Of Fire ', 'standard', 0, '5200.0000', '5200.0000', '1.0000', 2, '0.0000', NULL, '', '800', '800.0000', '5200.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1011, 552, 316, '51031679', 'Philo. pedatum', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1012, 552, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1013, 552, 30, '93418363', 'PHILODENDRON GREEN SAW', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1014, 552, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1015, 552, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1016, 552, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '350.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1017, 553, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1018, 553, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1019, 554, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1020, 554, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1021, 554, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1022, 554, 309, '85368633', 'Philo neon Big Pole', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1023, 555, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1024, 556, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1025, 556, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1026, 557, 304, '69305033', 'Begonia', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1027, 557, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1028, 557, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1029, 557, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1030, 557, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1031, 558, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1032, 559, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1033, 559, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1034, 560, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1035, 560, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1036, 561, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1037, 561, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1038, 562, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1039, 563, 294, '61731312', 'Uv Firenze Wall Planter', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1040, 564, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1041, 564, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1042, 564, 142, '44857076', 'SPAGHNUM MOSS 12L', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1043, 564, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1044, 565, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1045, 565, 316, '51031679', 'Philo. pedatum', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1046, 565, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1047, 565, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1048, 565, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1049, 565, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1050, 565, 172, '75049629', 'AmDrium Zippelianum', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1051, 566, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1052, 567, 142, '44857076', 'SPAGHNUM MOSS 12L', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1053, 567, 336, '48444140', 'fern Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1054, 567, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1055, 568, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1056, 568, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1057, 568, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1058, 568, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1059, 569, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1060, 570, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1061, 570, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1062, 571, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1063, 572, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1064, 573, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1065, 574, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1066, 575, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1067, 576, 57, '32032116', 'AIR PLANT FLEXOUSA ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1068, 576, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1069, 577, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1070, 578, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1071, 578, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1072, 579, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1073, 579, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1074, 580, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1075, 581, 184, '44306670', 'Burlemax Verigatted ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1076, 581, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1077, 581, 322, '56110482', 'Philo. Splendid', 'standard', NULL, '6000.0000', '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1078, 581, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1079, 581, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '30.0000', '', '30.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1080, 582, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1081, 582, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1082, 582, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1083, 582, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1084, 582, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1085, 582, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1086, 583, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1087, 583, 321, '64685178', 'Philo. parisio Verde', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1088, 584, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1089, 584, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1090, 585, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1091, 586, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1092, 586, 31, '81231523', 'PHILODENDRON BRANDIATUM', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1093, 586, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '30.0000', '', '30.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1094, 586, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1095, 586, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1096, 586, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1097, 587, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1098, 588, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1099, 588, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1100, 589, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1101, 589, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1102, 590, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1103, 591, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4800.0000', '', '1600.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1104, 591, 81, '95295192', 'SUNSHINE POT', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1105, 591, 30, '93418363', 'PHILODENDRON GREEN SAW', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1106, 591, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1107, 592, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1108, 592, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1109, 592, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1110, 592, 30, '93418363', 'PHILODENDRON GREEN SAW', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1111, 592, 81, '95295192', 'SUNSHINE POT', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1112, 592, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1113, 592, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1114, 593, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1115, 594, 294, '61731312', 'Uv Firenze Wall Planter', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1116, 595, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1117, 595, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1118, 596, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1119, 596, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1120, 596, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1121, 597, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1122, 597, 13, '00034709', 'Painted Love Hoya', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1123, 598, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1124, 599, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1125, 600, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1126, 600, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1127, 600, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1128, 601, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1129, 602, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1130, 603, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1131, 603, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1132, 603, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1133, 604, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1134, 605, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1135, 605, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1136, 605, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1137, 606, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1138, 607, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1139, 608, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1140, 608, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1141, 609, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1142, 609, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1143, 609, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1144, 609, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1145, 609, 247, '06119241', 'monostera esq', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1146, 609, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1147, 609, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1148, 609, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1149, 609, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1150, 609, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1151, 610, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1152, 610, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '360.0000', '', '120.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1153, 611, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1154, 611, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1155, 612, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1156, 613, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1157, 613, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1158, 613, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1159, 613, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1160, 614, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1161, 614, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1162, 615, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1163, 616, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1164, 617, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1165, 618, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1166, 619, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1167, 619, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1168, 619, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1169, 619, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1170, 620, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1171, 620, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1172, 620, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1173, 621, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1174, 622, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1175, 622, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1176, 622, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1177, 623, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1178, 624, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1179, 625, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1180, 625, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1181, 625, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1182, 626, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1183, 626, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1184, 626, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1185, 627, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1186, 627, 18, '96592653', 'SENSEVERIA RHYNO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1187, 627, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1188, 627, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1189, 627, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1190, 627, 264, '63489717', 'African Violet', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1191, 628, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1192, 628, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1193, 629, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1194, 629, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1195, 629, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1196, 630, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1197, 630, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1198, 630, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1199, 630, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1200, 631, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1201, 631, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1202, 632, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1203, 633, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1204, 633, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1205, 633, 343, '37152007', 'Snail Killer', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1206, 634, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1207, 634, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1208, 635, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1209, 636, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1210, 636, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1211, 636, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1212, 637, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1213, 637, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1214, 637, 183, '17151150', 'Senseveria pagoda', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1215, 637, 278, '45978696', 'Concreat pot M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1216, 638, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2600.0000', '', '650.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1217, 638, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1218, 639, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1219, 639, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1220, 639, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1221, 639, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1222, 639, 57, '32032116', 'AIR PLANT FLEXOUSA ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1223, 639, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1224, 639, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1225, 640, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1226, 641, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1227, 642, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1228, 643, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1229, 644, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1230, 645, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1231, 645, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1232, 646, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1233, 646, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1234, 646, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1235, 647, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1236, 647, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1237, 648, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1238, 648, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1239, 648, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1240, 648, 81, '95295192', 'SUNSHINE POT', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1241, 648, 81, '95295192', 'SUNSHINE POT', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1242, 648, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1243, 648, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1244, 648, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1245, 648, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1246, 648, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1247, 649, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1248, 649, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1249, 649, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1250, 650, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1251, 651, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1252, 652, 146, 'demo', 'Demo', 'standard', NULL, '0.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '0.0000', '', '0.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1253, 653, 146, 'demo', 'Demo', 'standard', NULL, '0.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '0.0000', '', '0.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1254, 654, 146, 'demo', 'Demo', 'standard', NULL, '0.0000', '0.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '0.0000', '', '0.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1255, 655, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1256, 656, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1257, 657, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1258, 658, 294, '61731312', 'Uv Firenze Wall Planter', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1259, 658, 323, '52372789', 'Philo. Nangaritense', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1260, 658, 326, '28746933', 'Raphidoohora Cryptantha', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1261, 659, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1262, 659, 30, '93418363', 'PHILODENDRON GREEN SAW', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1263, 659, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1264, 660, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1265, 660, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1266, 660, 309, '85368633', 'Philo neon Big Pole', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1267, 660, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1268, 660, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1269, 660, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1270, 660, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1271, 661, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1272, 661, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1273, 661, 304, '69305033', 'Begonia', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1274, 661, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1275, 661, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1276, 661, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1277, 661, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1278, 662, 345, '84980693', 'Senseveria Metalica', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1279, 663, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1280, 664, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1281, 665, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1282, 665, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1283, 666, 350, '76094827', 'Lipistic Big yellow ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1284, 666, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1285, 667, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1286, 668, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1287, 669, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1288, 669, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1289, 670, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1290, 671, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1291, 671, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1292, 671, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '50.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1293, 671, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1294, 672, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '25.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6250.0000', '', '250.0000', NULL, 2, 'Pcs', '25.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1295, 673, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1296, 674, 50, '88680893', 'DUBIA', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1297, 675, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1298, 676, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1299, 677, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1300, 678, 265, '91997687', 'RESIN PLANTER BIRD HOUSE', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1301, 678, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1302, 679, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1303, 680, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1304, 680, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1305, 681, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1306, 682, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1307, 683, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1308, 683, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1309, 683, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1310, 684, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1311, 684, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1312, 685, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1313, 686, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '450.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1314, 687, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1315, 688, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1316, 688, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1317, 689, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1318, 690, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1319, 690, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1320, 690, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1321, 690, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1322, 691, 98, '20607197', 'HARD CUTTER ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1323, 691, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1324, 691, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1325, 692, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1326, 692, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1327, 692, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1328, 692, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1329, 693, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1330, 694, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1331, 694, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1332, 694, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1333, 694, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1334, 695, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1335, 696, 246, '64970785', 'Syngonium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1336, 697, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1337, 698, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1338, 699, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1339, 699, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1340, 699, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '320.0000', '', '160.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1341, 699, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1342, 699, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1343, 699, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1344, 699, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '1200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1345, 700, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1346, 700, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1347, 701, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1348, 701, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1349, 702, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1350, 703, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1351, 704, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1352, 704, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1353, 705, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1354, 706, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1355, 707, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1356, 707, 335, '81200669', 'Alocasia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1357, 707, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1358, 707, 311, '02531031', 'Monostera Deliciosa', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1359, 707, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1360, 707, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1361, 708, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1362, 708, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '30.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1363, 709, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1364, 709, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1365, 710, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1366, 710, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1367, 710, 64, '51770830', 'BULBOSA ORCHIOD', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1368, 710, 181, '50278507', 'lava brast', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1369, 710, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1370, 710, 243, '19090261', 'Verigetted Phelonopsis ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1371, 710, 135, '38349643', 'ORCHID FOCUS GROW', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1372, 711, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1373, 712, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1374, 713, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1375, 714, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1376, 714, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1377, 714, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1378, 714, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1379, 714, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1380, 715, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1381, 716, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1382, 717, 261, '92200878', 'Fern S', 'standard', NULL, '600.0000', '600.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '600.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1383, 717, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1384, 718, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1385, 719, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1386, 719, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1387, 720, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1388, 721, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1389, 721, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1390, 721, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1391, 721, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1392, 721, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1393, 722, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1394, 723, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1395, 723, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1396, 723, 183, '17151150', 'Senseveria pagoda', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1397, 723, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1398, 723, 266, '44158245', 'Hawarhtia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1399, 724, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1400, 724, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1401, 724, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1402, 724, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1403, 724, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1404, 725, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1405, 726, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1406, 727, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1407, 728, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1408, 728, 255, '91803098', 'Hoya 2.5', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1409, 728, 328, '62000880', 'Epipremnum variegated Big', 'standard', NULL, '7500.0000', '7500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '7500.0000', '', '7500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1410, 728, 31, '81231523', 'PHILODENDRON BRANDIATUM', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1411, 728, 172, '75049629', 'AmDrium Zippelianum', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1412, 728, 335, '81200669', 'Alocasia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1413, 728, 181, '50278507', 'lava brast', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1414, 728, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1415, 728, 344, '85524239', 'Adenium Arabicum ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1416, 728, 335, '81200669', 'Alocasia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1417, 728, 243, '19090261', 'Verigetted Phelonopsis ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1418, 728, 51, '95981019', 'SHANGRILA', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1419, 728, 30, '93418363', 'PHILODENDRON GREEN SAW', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1420, 728, 81, '95295192', 'SUNSHINE POT', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1421, 728, 275, '32621776', 'Orchid Flowering Booster', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1422, 729, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1423, 729, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1424, 729, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1425, 729, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1426, 729, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1427, 730, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1428, 731, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1429, 732, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1430, 732, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1431, 732, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1432, 732, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1433, 733, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1434, 734, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1435, 735, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1436, 736, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1437, 736, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1438, 737, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1439, 737, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1440, 738, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1441, 739, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1442, 739, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1443, 740, 142, '44857076', 'SPAGHNUM MOSS 12L', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1444, 740, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1445, 741, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1446, 741, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1447, 741, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1448, 741, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1449, 742, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1450, 742, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1451, 743, 142, '44857076', 'SPAGHNUM MOSS 12L', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1452, 744, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1453, 744, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1454, 744, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1455, 744, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1456, 744, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1457, 744, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1458, 744, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1459, 744, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1460, 744, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1461, 745, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4800.0000', '', '400.0000', NULL, 2, 'Pcs', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1462, 745, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1463, 745, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1464, 745, 278, '45978696', 'Concreat pot M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1465, 745, 209, '51591750', '6 corner ceramic ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1466, 745, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1467, 745, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1468, 745, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1469, 746, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1470, 746, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1471, 747, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1472, 748, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1473, 749, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1474, 749, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1475, 749, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1476, 750, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1477, 750, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1478, 751, 245, '44167983', 'philo.Melanocrysum', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1479, 751, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1480, 752, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1481, 752, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1482, 753, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1483, 753, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1484, 753, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1485, 754, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1486, 754, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1487, 755, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1488, 756, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1489, 757, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1490, 757, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1491, 758, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1492, 758, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1493, 758, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1494, 758, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1495, 759, 277, '80818544', 'Concreate pot S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1496, 760, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1497, 761, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1498, 762, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '350.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1499, 763, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1500, 764, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1501, 765, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1502, 766, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1503, 766, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1504, 767, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1505, 768, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1506, 769, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1507, 769, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1508, 770, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1509, 771, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1510, 772, 72, '68672346', 'IONNATHA ON WOOD', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1511, 772, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1512, 772, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1513, 772, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1514, 772, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1515, 772, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1516, 772, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1517, 773, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1518, 774, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1519, 774, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1520, 774, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1521, 774, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1522, 775, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1523, 775, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1524, 775, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1525, 775, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1526, 775, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1527, 776, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1528, 777, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1529, 778, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1530, 778, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1531, 779, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1532, 780, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1533, 780, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1534, 781, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1535, 781, 133, '58176268', 'ORCHID FOCUS BLOOM 300 ML', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1536, 781, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1537, 782, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1538, 783, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1539, 784, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1540, 784, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1541, 785, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1542, 785, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1543, 786, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1544, 786, 72, '68672346', 'IONNATHA ON WOOD', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1545, 787, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1546, 787, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1547, 788, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1548, 789, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1549, 790, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1550, 790, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1551, 791, 350, '76094827', 'Lipistic Big yellow ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1552, 792, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1553, 792, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1554, 792, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1555, 793, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1556, 794, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1557, 794, 32, '53236471', 'PHILODENDRON CHERRY RED', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1558, 794, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1559, 794, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1560, 794, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1561, 794, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1562, 794, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1563, 795, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1564, 795, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1565, 796, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1566, 797, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1567, 797, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1568, 798, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1569, 798, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1570, 798, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1571, 798, 333, '09018704', 'Calathia Mosaic', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1572, 798, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1573, 798, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1574, 798, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1575, 799, 316, '51031679', 'Philo. pedatum', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1576, 800, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1577, 801, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1578, 802, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1579, 803, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1580, 804, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1581, 805, 32, '53236471', 'PHILODENDRON CHERRY RED', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1582, 805, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1583, 806, 94, '86499263', 'SELF WATERING TRANSPARENT ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1584, 807, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1585, 808, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1586, 809, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1587, 809, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1588, 810, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1589, 810, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1590, 810, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1591, 811, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1592, 811, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1593, 812, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '400.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1594, 813, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1595, 813, 137, '68749706', 'HOUSE PLANT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1596, 813, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1597, 814, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1598, 815, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1599, 815, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1600, 816, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1601, 817, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1602, 818, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1603, 819, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1604, 819, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1605, 819, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1606, 819, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1607, 820, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1608, 821, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1609, 822, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1610, 822, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1611, 823, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1612, 823, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1613, 824, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1614, 824, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1615, 825, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1616, 826, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1617, 827, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1618, 828, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1619, 829, 286, '26365495', 'DPGR', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1620, 829, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1621, 830, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1622, 831, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1623, 832, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1624, 832, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1625, 832, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1626, 832, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1627, 832, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1628, 832, 22, '01402428', 'BROMELIAD THAI', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1629, 832, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1630, 833, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1631, 834, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1632, 834, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1633, 835, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1634, 835, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1635, 836, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1636, 837, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1637, 837, 48, '57487006', 'FICUS GRAFTED BONSAI', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1638, 838, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '50.0000', NULL, 3, 'KG', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1639, 839, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1640, 840, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1641, 841, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1642, 841, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1643, 841, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1644, 841, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1645, 841, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1646, 841, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1647, 842, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1648, 842, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1649, 842, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1650, 843, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1705, 873, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1652, 845, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1653, 846, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1654, 846, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1655, 847, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1656, 847, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1657, 848, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1658, 849, 308, '14337396', 'Philodendron b', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1659, 850, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1660, 851, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1661, 852, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1662, 853, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1663, 854, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1664, 854, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1665, 854, 211, '19735813', 'creamic color bowl ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1666, 854, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1667, 854, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1668, 854, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1669, 854, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1670, 855, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1671, 856, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1672, 856, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1673, 856, 94, '86499263', 'SELF WATERING TRANSPARENT ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1674, 856, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1675, 856, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1676, 857, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1677, 857, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1678, 858, 97, '84986835', 'SHELLERY CARBON PRUNER ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1679, 859, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1680, 860, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1681, 860, 286, '26365495', 'DPGR', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1682, 861, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1683, 861, 286, '26365495', 'DPGR', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1684, 862, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1685, 862, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1686, 863, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1687, 863, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1688, 863, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1689, 863, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1690, 864, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1691, 865, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1692, 866, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1693, 867, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1694, 868, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1695, 868, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1696, 868, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1697, 868, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1698, 868, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1699, 868, 237, '51964534', 'Neem Khoil', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1700, 869, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1701, 869, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1702, 870, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1703, 871, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1704, 872, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1706, 874, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1707, 875, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1708, 876, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1709, 876, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1710, 877, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1711, 878, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1712, 879, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1713, 880, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1714, 880, 30, '93418363', 'PHILODENDRON GREEN SAW', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1715, 880, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1716, 880, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1717, 881, 40, '58132834', 'ZZ ZENZI', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1718, 881, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1719, 881, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1720, 881, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1721, 881, 18, '96592653', 'SENSEVERIA RHYNO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1722, 881, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1723, 881, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1724, 881, 183, '17151150', 'Senseveria pagoda', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1725, 881, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1726, 882, 279, '33099580', 'Plant Clip', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1727, 882, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1738, 883, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1736, 883, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1737, 883, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1731, 884, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1732, 885, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1733, 885, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1734, 886, 325, '25522346', 'Pink princess', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1735, 886, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5300.0000', '', '2650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1739, 887, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1740, 888, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1741, 888, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1742, 889, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1743, 889, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1744, 890, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1745, 891, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1746, 892, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1747, 893, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1748, 894, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1749, 895, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1750, 895, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1751, 896, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1752, 897, 94, '86499263', 'SELF WATERING TRANSPARENT ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1753, 897, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1754, 897, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1755, 898, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1756, 899, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1757, 900, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '400.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1758, 900, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1759, 900, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1760, 900, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1761, 901, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1762, 901, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1763, 902, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1764, 903, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1765, 903, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1766, 904, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1767, 904, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1768, 905, 255, '91803098', 'Hoya 2.5', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1769, 906, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1770, 907, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1771, 907, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1772, 908, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1773, 909, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1774, 910, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1775, 911, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1776, 912, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1777, 913, 345, '84980693', 'Senseveria Metalica', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1778, 914, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1779, 914, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1780, 915, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1781, 916, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1782, 916, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1783, 917, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1784, 917, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1785, 918, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1786, 918, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1787, 919, 323, '52372789', 'Philo. Nangaritense', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1788, 920, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1789, 920, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1790, 920, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1791, 921, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1792, 922, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1793, 923, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1794, 923, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1795, 924, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1796, 925, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1797, 926, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1798, 926, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1799, 926, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1800, 927, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1801, 927, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1802, 928, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1803, 928, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1804, 929, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1805, 930, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1806, 930, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1807, 931, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1808, 931, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1809, 931, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1810, 931, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1811, 932, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1812, 933, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1813, 933, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1814, 933, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1815, 934, 353, '67911538', 'Crops Care', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1816, 934, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1817, 934, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1818, 934, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1819, 934, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1820, 934, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1821, 935, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1822, 936, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5300.0000', '', '2650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1823, 936, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1824, 937, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1825, 938, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '120.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1826, 939, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1827, 939, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1828, 940, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1829, 940, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1830, 941, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1831, 941, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1832, 941, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1833, 942, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1834, 943, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1835, 944, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1836, 944, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1837, 944, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1838, 944, 89, '82658699', 'RESIN PLANTER DA', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1839, 944, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1840, 945, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1841, 945, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1842, 946, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1843, 947, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1844, 947, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1845, 948, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1846, 948, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1847, 949, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1848, 950, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1849, 951, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1850, 952, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1851, 952, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1852, 952, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1853, 953, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1854, 954, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1855, 955, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1856, 955, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1857, 955, 372, '59471278', 'Enobi Big Pot ', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1858, 956, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1859, 957, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1860, 958, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1861, 958, 357, '40772614', 'Cattelya Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1862, 958, 335, '81200669', 'Alocasia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1863, 958, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1864, 958, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1865, 959, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1866, 959, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1867, 960, 247, '06119241', 'monostera esq', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1868, 960, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1869, 960, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1870, 960, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1871, 960, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1872, 960, 309, '85368633', 'Philo neon Big Pole', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1873, 960, 344, '85524239', 'Adenium Arabicum ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1874, 961, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1875, 962, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1876, 962, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1877, 962, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1878, 962, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1879, 963, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1880, 963, 363, '90323088', 'Calathia orbifolia ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1881, 963, 366, '76182407', 'peoporima argyreia', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1882, 963, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1883, 964, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1884, 964, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1885, 964, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1886, 964, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1887, 965, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1888, 965, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1900, 972, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1899, 971, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1891, 967, 207, '31471473', 'senseveria whalfin', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1892, 968, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1893, 969, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1894, 969, 353, '67911538', 'Crops Care', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1895, 970, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1896, 970, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1897, 970, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1898, 970, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1901, 973, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1902, 973, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1903, 974, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1904, 975, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1905, 976, 345, '84980693', 'Senseveria Metalica', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1906, 977, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1907, 978, 168, '07964908', 'Zade Shartin', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1908, 978, 371, '67933855', 'Pitcher plant ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1909, 978, 173, '63588432', 'Ring Of Fire ', 'standard', 0, '5500.0000', '5500.0000', '1.0000', 2, '0.0000', NULL, '', '500', '500.0000', '5500.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1910, 978, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1911, 978, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1912, 979, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1913, 979, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1914, 980, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1915, 981, 321, '64685178', 'Philo. parisio Verde', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1916, 981, 364, '67122033', 'Sciundupsis Argerious ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1917, 981, 245, '44167983', 'philo.Melanocrysum', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1918, 981, 335, '81200669', 'Alocasia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1919, 981, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1920, 981, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '120.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1921, 981, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1922, 982, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1923, 983, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1924, 984, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1925, 985, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1926, 985, 299, '53672838', 'Resin D2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1927, 985, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1928, 985, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1929, 985, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1930, 986, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1931, 986, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1932, 986, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1933, 986, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1934, 986, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1935, 986, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1936, 986, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1937, 986, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1938, 986, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1939, 986, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1940, 986, 352, '55296642', 'Color stone 250g', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1941, 987, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1942, 987, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1943, 987, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1944, 988, 364, '67122033', 'Sciundupsis Argerious ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1945, 988, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1946, 988, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1947, 988, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1948, 988, 44, '91825750', 'PHILODENDRON BRASIL BIG POT', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1949, 988, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1950, 988, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1951, 988, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1952, 988, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1953, 988, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '250.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1954, 988, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1955, 988, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1956, 988, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1957, 988, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1958, 988, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1959, 989, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1960, 990, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1961, 991, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1962, 991, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1963, 992, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1964, 993, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '320.0000', '', '160.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1965, 993, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '80.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1966, 994, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1967, 994, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1968, 994, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1969, 995, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1970, 996, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1971, 997, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1972, 998, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1973, 998, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1974, 998, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1975, 998, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1976, 998, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1977, 998, 318, '40799266', 'SYNGONIUM Crismas Holiday', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1978, 999, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1979, 1000, 28, '62083562', 'PHILODENDRON LUPINUM', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1980, 1000, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1981, 1001, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1982, 1002, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1983, 1002, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1984, 1003, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1985, 1003, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1986, 1003, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1987, 1004, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1988, 1005, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1989, 1006, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '400.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1990, 1007, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1991, 1008, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1992, 1009, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1993, 1010, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1994, 1010, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1995, 1011, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1996, 1011, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1997, 1012, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1998, 1013, 353, '67911538', 'Crops Care', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (1999, 1014, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2000, 1015, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2001, 1015, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2002, 1015, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2003, 1016, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2004, 1017, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2005, 1017, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2006, 1018, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2007, 1019, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2008, 1019, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2009, 1020, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2010, 1020, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2011, 1020, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2012, 1020, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2013, 1020, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2014, 1020, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2015, 1021, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2016, 1022, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2017, 1022, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2018, 1023, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2019, 1024, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2020, 1025, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2021, 1025, 250, '15651501', 'moonlight', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2022, 1025, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2023, 1025, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2024, 1025, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2025, 1025, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2026, 1025, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2027, 1025, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2028, 1025, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2029, 1025, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2030, 1025, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2031, 1025, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2032, 1025, 345, '84980693', 'Senseveria Metalica', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2033, 1025, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2034, 1026, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2035, 1027, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2036, 1027, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2037, 1027, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2038, 1028, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2039, 1029, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2040, 1030, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2041, 1030, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2042, 1031, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2043, 1032, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2044, 1032, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2045, 1032, 246, '64970785', 'Syngonium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2046, 1032, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2047, 1032, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2048, 1033, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2049, 1033, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2050, 1034, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2051, 1034, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2052, 1034, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2053, 1035, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2054, 1035, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2055, 1036, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2056, 1036, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2057, 1036, 286, '26365495', 'DPGR', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2070, 1045, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2069, 1045, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2068, 1044, 87, '5200549', 'RESIN PLANTER E1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2061, 1038, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2062, 1039, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2063, 1040, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2064, 1041, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2065, 1042, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2066, 1042, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2067, 1043, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2071, 1046, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2072, 1046, 361, '29921673', 'Philo Gloriasum', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2073, 1047, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2074, 1047, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2075, 1048, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2076, 1048, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2077, 1049, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2078, 1050, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2079, 1051, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2080, 1052, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2081, 1053, 357, '40772614', 'Cattelya Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2082, 1053, 372, '59471278', 'Enobi Big Pot ', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2083, 1053, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2084, 1053, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2085, 1054, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2086, 1054, 142, '44857076', 'SPAGHNUM MOSS 12L', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2087, 1055, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '30.0000', '', '30.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2088, 1056, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2089, 1057, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2090, 1057, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2091, 1058, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2092, 1058, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2093, 1058, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2094, 1058, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2095, 1059, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2096, 1060, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2097, 1061, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2098, 1061, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2099, 1062, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2100, 1063, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2101, 1063, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2102, 1064, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2103, 1065, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2104, 1065, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '750.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2105, 1066, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2106, 1067, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2107, 1068, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2108, 1068, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2109, 1069, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2110, 1070, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2111, 1071, 247, '06119241', 'monostera esq', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2112, 1071, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2113, 1071, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2114, 1072, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2115, 1072, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2116, 1072, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2117, 1072, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2118, 1072, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2119, 1072, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4800.0000', '', '1600.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2120, 1072, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2121, 1072, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2122, 1072, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2123, 1072, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2124, 1073, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2125, 1073, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2126, 1073, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2127, 1074, 117, '13936928', 'HUMIDIFIER DEER', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2128, 1075, 208, '93276343', 'plastic Terrarium Jar', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2129, 1076, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2130, 1076, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2131, 1076, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2132, 1077, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2133, 1077, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2134, 1077, 92, '87688869', 'ANIMAL HAND CRAFT PLANTER', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2135, 1077, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2136, 1077, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2137, 1078, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2138, 1078, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2139, 1078, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2140, 1078, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2141, 1079, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2142, 1079, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2143, 1079, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2144, 1079, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2158, 1081, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2157, 1081, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '250.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2156, 1081, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2155, 1081, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2152, 1081, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2153, 1081, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2154, 1081, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2159, 1081, 54, '14605298', 'PHILODENDRON S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2160, 1082, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2161, 1082, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2162, 1083, 265, '91997687', 'RESIN PLANTER BIRD HOUSE', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2163, 1084, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2164, 1085, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2165, 1086, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2166, 1087, 218, '39824435', 'Jute Pole Big ', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2167, 1088, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2168, 1088, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2169, 1088, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2170, 1089, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2171, 1090, 39, '24917109', 'ZZ BIG POT', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2172, 1091, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2173, 1091, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2174, 1092, 366, '76182407', 'peoporima argyreia', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2175, 1092, 356, '29617821', 'peoporima verg Thai ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2176, 1092, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2177, 1092, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2178, 1093, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2179, 1094, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2180, 1095, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2181, 1096, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2182, 1097, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2183, 1097, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2184, 1097, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2185, 1097, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2186, 1097, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2187, 1097, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2188, 1097, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2189, 1097, 354, '49485824', 'Euphorbia Francoisi', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2190, 1097, 356, '29617821', 'peoporima verg Thai ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2191, 1097, 366, '76182407', 'peoporima argyreia', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2192, 1097, 20, '16748388', 'SENSEVERIA FRANCISII', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2193, 1097, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2194, 1098, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2195, 1098, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2196, 1099, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2197, 1099, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2198, 1099, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2199, 1099, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2200, 1099, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2201, 1099, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2202, 1099, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2203, 1099, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2204, 1099, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2205, 1100, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2206, 1100, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2207, 1100, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2208, 1101, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2209, 1102, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2210, 1103, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2211, 1104, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2212, 1105, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2213, 1106, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2214, 1107, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2215, 1107, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2216, 1107, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2217, 1108, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2218, 1109, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2219, 1110, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2220, 1110, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2221, 1111, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2222, 1112, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2223, 1113, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2224, 1114, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2225, 1115, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2226, 1116, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2227, 1116, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2228, 1116, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2229, 1117, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2230, 1118, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2231, 1118, 286, '26365495', 'DPGR', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2232, 1118, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2233, 1119, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2234, 1119, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2235, 1120, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2236, 1121, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2237, 1122, 219, '72884759', 'jute pole small', 'standard', NULL, '30.0000', '30.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', '210.0000', '', '30.0000', NULL, 2, 'Pcs', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2238, 1123, 363, '90323088', 'Calathia orbifolia ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2239, 1123, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2240, 1124, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '400.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2241, 1124, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2242, 1125, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2243, 1125, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2244, 1126, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2245, 1126, 363, '90323088', 'Calathia orbifolia ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2246, 1126, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2247, 1127, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2248, 1128, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2249, 1128, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2250, 1128, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2251, 1129, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2252, 1130, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2253, 1130, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2254, 1131, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2255, 1131, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2256, 1132, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2257, 1133, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2258, 1134, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2259, 1135, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2260, 1136, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2261, 1137, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2400.0000', '', '400.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2262, 1138, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2263, 1139, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2264, 1139, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2265, 1139, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2266, 1139, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2267, 1140, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2268, 1140, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2269, 1140, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2270, 1141, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2271, 1142, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2272, 1142, 381, '41008445', 'Essential Oil', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2273, 1143, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '100.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2274, 1143, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2275, 1143, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '50.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2276, 1143, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2277, 1143, 366, '76182407', 'peoporima argyreia', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2278, 1144, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2279, 1144, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2280, 1144, 345, '84980693', 'Senseveria Metalica', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2281, 1144, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2282, 1144, 358, '99246609', 'Solid Gold Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2283, 1145, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2284, 1146, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2285, 1147, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2286, 1148, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2287, 1148, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2288, 1148, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2289, 1149, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2290, 1149, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2291, 1149, 364, '67122033', 'Sciundupsis Argerious ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2292, 1149, 275, '32621776', 'Orchid Flowering Booster', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2293, 1149, 254, '31700219', 'Hoya 1.5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2294, 1149, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2295, 1149, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2296, 1150, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2297, 1151, 77, '66007347', 'BIG DOLL RESIGN PLANTER ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2298, 1151, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2299, 1151, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2300, 1152, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2301, 1153, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2302, 1153, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2303, 1153, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2304, 1153, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2305, 1154, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2306, 1154, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2307, 1155, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2308, 1155, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2309, 1156, 354, '49485824', 'Euphorbia Francoisi', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2310, 1156, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2311, 1157, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2312, 1157, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2313, 1157, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2314, 1158, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2315, 1158, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2316, 1158, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2317, 1159, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2318, 1160, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2319, 1161, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2320, 1162, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2321, 1163, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2322, 1163, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2323, 1163, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2324, 1164, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2325, 1165, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2326, 1165, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2327, 1166, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2328, 1167, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2329, 1167, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2330, 1168, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2331, 1168, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2332, 1168, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2333, 1168, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2334, 1168, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2335, 1169, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2336, 1170, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2337, 1171, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2338, 1171, 340, '65696053', 'NJoy Pothos', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2339, 1171, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2356, 1181, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2355, 1180, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2354, 1179, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2353, 1179, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2352, 1178, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2351, 1178, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2350, 1177, 20, '16748388', 'SENSEVERIA FRANCISII', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2349, 1177, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2357, 1182, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2358, 1182, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2359, 1183, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2360, 1183, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2361, 1184, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '480.0000', '', '120.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2362, 1184, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2363, 1184, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2364, 1185, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2365, 1186, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2366, 1187, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2367, 1187, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2368, 1187, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2369, 1188, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2370, 1188, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2371, 1188, 318, '40799266', 'SYNGONIUM Crismas Holiday', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2372, 1189, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2373, 1190, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2374, 1190, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2375, 1190, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2376, 1190, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2377, 1191, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2378, 1192, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2379, 1193, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '90.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2380, 1194, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2381, 1195, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2382, 1195, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2383, 1195, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2384, 1195, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2385, 1196, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2386, 1196, 356, '29617821', 'peoporima verg Thai ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2387, 1196, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2388, 1196, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2389, 1196, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2390, 1196, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2391, 1197, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2392, 1198, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2393, 1198, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2394, 1198, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2395, 1199, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2396, 1199, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2397, 1200, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2398, 1201, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2399, 1201, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2400, 1202, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2401, 1202, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2402, 1202, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2403, 1203, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2404, 1204, 13, '00034709', 'Painted Love Hoya', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2405, 1205, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2406, 1206, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2407, 1207, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2408, 1207, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2409, 1207, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2410, 1207, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2411, 1207, 354, '49485824', 'Euphorbia Francoisi', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2412, 1208, 210, '85752820', 'Ceramic White Big', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2413, 1209, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2414, 1209, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2415, 1210, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2416, 1211, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2417, 1212, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2418, 1212, 196, '46584489', 'Lipistic', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2419, 1212, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2420, 1213, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2421, 1214, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2422, 1215, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2423, 1215, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2424, 1216, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2425, 1217, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2426, 1217, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2427, 1217, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2428, 1218, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2429, 1218, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2430, 1219, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2431, 1220, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2432, 1221, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2433, 1222, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2440, 1224, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2441, 1224, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2442, 1224, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2443, 1225, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2439, 1224, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '450.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2444, 1226, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2445, 1227, 318, '40799266', 'SYNGONIUM Crismas Holiday', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2446, 1227, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2447, 1228, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2448, 1228, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2449, 1229, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2450, 1229, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2451, 1229, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2452, 1229, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2453, 1229, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2454, 1229, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2455, 1229, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2456, 1229, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2457, 1230, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2458, 1230, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2459, 1231, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2460, 1231, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2461, 1232, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2462, 1232, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2463, 1232, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2464, 1232, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2465, 1232, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2466, 1232, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2467, 1232, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2468, 1233, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2469, 1233, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2470, 1233, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2471, 1234, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2472, 1234, 275, '32621776', 'Orchid Flowering Booster', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2473, 1234, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2474, 1235, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2475, 1236, 117, '13936928', 'HUMIDIFIER DEER', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2476, 1236, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2477, 1236, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2478, 1236, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2479, 1237, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2480, 1238, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2481, 1239, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2482, 1240, 384, '91229260', 'BROMELIAD THAI S', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2483, 1241, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2484, 1242, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2485, 1242, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2486, 1242, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2487, 1243, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2488, 1244, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2489, 1245, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2490, 1246, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2491, 1247, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2492, 1248, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2493, 1249, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2494, 1250, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2495, 1251, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2496, 1251, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2497, 1251, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2498, 1251, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2499, 1252, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2500, 1253, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2501, 1254, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2502, 1254, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2503, 1254, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2504, 1255, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2505, 1255, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2506, 1256, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2507, 1256, 31, '81231523', 'PHILODENDRON BRANDIATUM', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2508, 1256, 399, '61053416', 'Silver Zebra ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2509, 1256, 358, '99246609', 'Solid Gold Big', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2510, 1256, 401, '38332626', 'Lupinum Big ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2511, 1256, 400, '77552458', 'Cebu Blue Big ', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2512, 1257, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2513, 1257, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2514, 1257, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2515, 1257, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2516, 1258, 398, '95341318', 'Senseveria Cleopetra ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2517, 1259, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2518, 1259, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2519, 1259, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2520, 1259, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2521, 1259, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2522, 1259, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2523, 1259, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2524, 1259, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2525, 1259, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2526, 1259, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2527, 1259, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2528, 1260, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2529, 1261, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2530, 1261, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2531, 1261, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2532, 1261, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2533, 1261, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2534, 1262, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '100.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2535, 1263, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2536, 1263, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2537, 1263, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2538, 1263, 404, '37694427', 'cryptenthus big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2539, 1263, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2540, 1263, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2541, 1263, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2542, 1263, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2543, 1263, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2544, 1263, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '30.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '50.0000', NULL, 3, 'KG', '30.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2545, 1264, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2546, 1264, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2547, 1264, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2548, 1264, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2549, 1264, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2550, 1264, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2551, 1264, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2552, 1264, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2553, 1265, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2554, 1266, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2555, 1267, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2556, 1267, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2557, 1268, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2558, 1269, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2559, 1270, 237, '51964534', 'Neem Khoil', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2560, 1271, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2561, 1271, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2562, 1271, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2563, 1272, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2564, 1272, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2565, 1273, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2566, 1273, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2567, 1274, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2568, 1275, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2569, 1276, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2570, 1276, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2571, 1277, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2572, 1277, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2573, 1277, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2574, 1278, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2575, 1278, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2576, 1278, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2577, 1278, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2578, 1278, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2579, 1278, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2580, 1279, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2581, 1280, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2582, 1281, 357, '40772614', 'Cattelya Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2583, 1281, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2584, 1282, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2585, 1282, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2586, 1283, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2587, 1284, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2588, 1285, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2589, 1286, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2590, 1286, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2591, 1286, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2592, 1286, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2593, 1286, 381, '41008445', 'Essential Oil', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2594, 1287, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2595, 1287, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2596, 1288, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2597, 1289, 310, '19536640', 'Big esquleta', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2598, 1289, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2599, 1289, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2600, 1289, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2601, 1289, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2602, 1290, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2603, 1291, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2604, 1291, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2605, 1292, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2606, 1293, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2607, 1293, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2608, 1294, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2609, 1295, 137, '68749706', 'HOUSE PLANT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2610, 1295, 404, '37694427', 'cryptenthus big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2611, 1295, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2612, 1295, 402, '87099053', 'Million herat shape ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2613, 1296, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2614, 1297, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2615, 1297, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2616, 1297, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2617, 1298, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2618, 1299, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2619, 1299, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2620, 1299, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2621, 1300, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2622, 1300, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2623, 1301, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2624, 1301, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2625, 1302, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2626, 1302, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2627, 1302, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2628, 1302, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2629, 1302, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2630, 1302, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2631, 1303, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2632, 1303, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2633, 1303, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2634, 1304, 22, '01402428', 'BROMELIAD THAI', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2635, 1304, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2636, 1305, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2637, 1305, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2638, 1306, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2639, 1307, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2640, 1308, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2641, 1308, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2642, 1308, 133, '58176268', 'ORCHID FOCUS BLOOM 300 ML', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2643, 1309, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2644, 1309, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2645, 1310, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2646, 1311, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2647, 1312, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2648, 1313, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2649, 1313, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2650, 1313, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2651, 1313, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2652, 1314, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2653, 1314, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2654, 1315, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2655, 1315, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2656, 1315, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2657, 1316, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2658, 1316, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2659, 1316, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2660, 1316, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2661, 1316, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2662, 1316, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2663, 1317, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2664, 1318, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2665, 1319, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2666, 1319, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2667, 1320, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2668, 1320, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2669, 1321, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2670, 1322, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2671, 1322, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2672, 1322, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2673, 1322, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2674, 1322, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2675, 1322, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2676, 1323, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2677, 1323, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2678, 1323, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2679, 1324, 22, '01402428', 'BROMELIAD THAI', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2680, 1325, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2681, 1326, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2682, 1327, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2683, 1328, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2684, 1328, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2685, 1329, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2686, 1329, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2687, 1329, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2688, 1329, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2689, 1329, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2690, 1330, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2691, 1331, 402, '87099053', 'Million herat shape ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2692, 1331, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2693, 1331, 175, '61824284', 'Phelenopsis', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2694, 1331, 22, '01402428', 'BROMELIAD THAI', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2695, 1332, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2696, 1332, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2697, 1332, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2698, 1332, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2699, 1333, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2700, 1334, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2701, 1335, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2702, 1336, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2703, 1337, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2704, 1337, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2705, 1338, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2706, 1339, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2707, 1339, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2708, 1339, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2709, 1340, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2710, 1340, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2711, 1341, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2712, 1342, 13, '00034709', 'Painted Love Hoya', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2713, 1343, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2714, 1344, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2715, 1345, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2716, 1346, 20, '16748388', 'SENSEVERIA FRANCISII', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2717, 1346, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2718, 1347, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2719, 1347, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2720, 1348, 253, '55299742', 'Hoya 2k', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2721, 1348, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2722, 1348, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2723, 1348, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2724, 1349, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2725, 1349, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2726, 1350, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2727, 1351, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2728, 1352, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2729, 1352, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2730, 1352, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2731, 1353, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2732, 1353, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2733, 1354, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2734, 1355, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2735, 1355, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2736, 1355, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2737, 1355, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2738, 1356, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2739, 1356, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2740, 1357, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2741, 1358, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2742, 1359, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2743, 1359, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2744, 1359, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2745, 1359, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2746, 1360, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2747, 1361, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2748, 1361, 175, '61824284', 'Phelenopsis', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2749, 1362, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2750, 1362, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2751, 1363, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2752, 1364, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2753, 1364, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2754, 1365, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2755, 1365, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2756, 1365, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2757, 1365, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2758, 1365, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2759, 1365, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2760, 1365, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2761, 1365, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2762, 1365, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2763, 1365, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2764, 1366, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2765, 1366, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2766, 1366, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2767, 1366, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2768, 1367, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2769, 1367, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2770, 1368, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2771, 1368, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2772, 1369, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2773, 1369, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2774, 1370, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2775, 1371, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2776, 1371, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2777, 1372, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2778, 1373, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2779, 1373, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2780, 1373, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2781, 1374, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2782, 1375, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2783, 1376, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2784, 1376, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2785, 1377, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2786, 1377, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2787, 1378, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2788, 1379, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2789, 1379, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2790, 1380, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2791, 1381, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2792, 1381, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2793, 1382, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2794, 1382, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2795, 1383, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2796, 1384, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2797, 1384, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2798, 1384, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2799, 1384, 126, '50528427', 'LAZZY NOZZEL', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2800, 1384, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2801, 1384, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2802, 1385, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2803, 1386, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2804, 1387, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2805, 1388, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2806, 1388, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2807, 1389, 220, '85347259', 'vermi compost', 'standard', NULL, '50.0000', '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '50.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2808, 1389, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2809, 1390, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2810, 1390, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2811, 1390, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2812, 1391, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2813, 1392, 90, '87334901', 'RESIN PPANTER N4', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2814, 1392, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2815, 1392, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2816, 1392, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2817, 1393, 365, '59080001', 'Den parisi', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2818, 1393, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2819, 1394, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2820, 1394, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2821, 1395, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2822, 1396, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2823, 1397, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2824, 1398, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2825, 1399, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2826, 1400, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2827, 1400, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2828, 1401, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2829, 1401, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2830, 1401, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2831, 1402, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2832, 1402, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2833, 1403, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2834, 1404, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2835, 1405, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2836, 1406, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2837, 1407, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2838, 1407, 94, '86499263', 'SELF WATERING TRANSPARENT ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2839, 1407, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2840, 1407, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2841, 1407, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2842, 1408, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2843, 1408, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2844, 1408, 365, '59080001', 'Den parisi', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2845, 1408, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2846, 1408, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2847, 1408, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2848, 1409, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2849, 1410, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2850, 1410, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2851, 1411, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2852, 1411, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2853, 1412, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2854, 1413, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2855, 1413, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2856, 1414, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2857, 1415, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2858, 1415, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2859, 1416, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2860, 1417, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2861, 1418, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2862, 1419, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2863, 1420, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2864, 1420, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2865, 1420, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2866, 1421, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2867, 1421, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2868, 1421, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2869, 1422, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2870, 1423, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '400.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2871, 1424, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2872, 1425, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2873, 1426, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '60.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2874, 1426, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', 'standard', NULL, '1150.0000', '1150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2300.0000', '', '1150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2875, 1426, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2876, 1426, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2877, 1426, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2878, 1426, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2879, 1426, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2880, 1426, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2881, 1426, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2882, 1426, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2883, 1427, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2884, 1428, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2885, 1429, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2886, 1429, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2887, 1430, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2888, 1430, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2889, 1430, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2890, 1431, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2891, 1432, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2892, 1433, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2893, 1433, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2894, 1434, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2895, 1435, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2896, 1435, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2897, 1436, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2898, 1437, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2899, 1438, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2900, 1439, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2901, 1440, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2902, 1440, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2903, 1441, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2904, 1442, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2905, 1443, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2906, 1443, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2907, 1443, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2908, 1444, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2909, 1444, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2910, 1445, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '120.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2911, 1445, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2912, 1445, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2913, 1445, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2914, 1445, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2915, 1445, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2916, 1445, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2917, 1446, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2918, 1446, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2919, 1446, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2920, 1446, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2921, 1446, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2922, 1446, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2923, 1447, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2924, 1447, 356, '29617821', 'peoporima verg Thai ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2925, 1447, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2926, 1447, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2927, 1447, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2928, 1448, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2929, 1449, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2930, 1449, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2931, 1449, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', '440.0000', '', '40.0000', NULL, 2, 'Pcs', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2932, 1450, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2933, 1450, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2934, 1451, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2935, 1452, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2936, 1452, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2937, 1453, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2938, 1454, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2939, 1455, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2940, 1456, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2941, 1457, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2942, 1458, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2943, 1458, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2944, 1458, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2945, 1459, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2946, 1459, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2947, 1460, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2948, 1460, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2949, 1460, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2950, 1460, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2951, 1461, 118, '70757607', 'HUMIDIFIER SMALL', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2952, 1462, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2953, 1463, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2954, 1463, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2955, 1463, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2956, 1464, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2957, 1464, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2958, 1464, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2959, 1465, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2960, 1465, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2961, 1466, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2962, 1467, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2963, 1467, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2964, 1468, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2965, 1469, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2966, 1469, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2967, 1470, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2968, 1471, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2969, 1471, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2970, 1472, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2971, 1472, 365, '59080001', 'Den parisi', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2972, 1472, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2973, 1473, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2974, 1473, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2975, 1474, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2976, 1474, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2977, 1474, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2978, 1475, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2979, 1475, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2980, 1475, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2981, 1476, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2982, 1477, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2983, 1477, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2984, 1478, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2985, 1478, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2986, 1479, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2987, 1480, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2988, 1480, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2989, 1480, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2650.0000', '', '2650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2990, 1480, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2991, 1481, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2992, 1481, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2993, 1481, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2994, 1481, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2995, 1481, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2996, 1481, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2997, 1481, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2998, 1482, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (2999, 1482, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3000, 1483, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3001, 1483, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3002, 1484, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3003, 1485, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3004, 1486, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3005, 1486, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3006, 1487, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3007, 1488, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3008, 1488, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3009, 1488, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3010, 1489, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3011, 1489, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3012, 1490, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3013, 1490, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3014, 1491, 192, '54673266', 'Luck Bamboo Big stick', 'standard', NULL, '350.0000', '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1750.0000', '', '350.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3015, 1492, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3016, 1492, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3017, 1493, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3018, 1494, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3019, 1495, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3020, 1496, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3021, 1497, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3022, 1498, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3023, 1499, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2700.0000', '', '450.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3024, 1500, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3025, 1500, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3026, 1501, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3027, 1501, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3028, 1502, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3029, 1502, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3030, 1503, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3031, 1503, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1100.0000', '', '550.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3032, 1504, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3033, 1505, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3034, 1506, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3035, 1506, 404, '37694427', 'cryptenthus big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3036, 1506, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3037, 1506, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3038, 1507, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3039, 1507, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3040, 1507, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3041, 1507, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3042, 1508, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3043, 1509, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3044, 1510, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3045, 1511, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3046, 1511, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3047, 1511, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3048, 1512, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3049, 1513, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3050, 1514, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '200.0000', NULL, 2, 'Pcs', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3051, 1514, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3052, 1514, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3053, 1514, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3054, 1514, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3055, 1514, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3056, 1514, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3057, 1515, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3058, 1516, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3059, 1516, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3060, 1516, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3061, 1517, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3062, 1517, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3063, 1517, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3064, 1517, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3065, 1517, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3066, 1517, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3067, 1517, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3068, 1517, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3069, 1517, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3070, 1517, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3071, 1518, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3072, 1519, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3073, 1520, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3074, 1520, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3075, 1521, 184, '44306670', 'Burlemax Verigatted ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3076, 1522, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3077, 1522, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3078, 1522, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3079, 1523, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3080, 1523, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3081, 1524, 213, '34176921', 'Air plant Hanging Stand', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3082, 1524, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3083, 1524, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3084, 1525, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3085, 1526, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3086, 1526, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3087, 1527, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3088, 1528, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3089, 1528, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3090, 1529, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3091, 1530, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3092, 1531, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3093, 1531, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3094, 1531, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3095, 1531, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3096, 1532, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3097, 1533, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3098, 1534, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3099, 1534, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3100, 1535, 348, '94516686', 'Mican ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3101, 1535, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3102, 1535, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3103, 1536, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3104, 1536, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3105, 1537, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3106, 1537, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3107, 1538, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3108, 1539, 384, '91229260', 'BROMELIAD THAI S', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3109, 1539, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3110, 1539, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3111, 1539, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3112, 1540, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3113, 1541, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3114, 1541, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3115, 1541, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3116, 1542, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3117, 1543, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3118, 1543, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3119, 1544, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3120, 1545, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3121, 1546, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3122, 1546, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3123, 1547, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3124, 1548, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3125, 1549, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3126, 1549, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3127, 1549, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3128, 1550, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3129, 1551, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3130, 1552, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3131, 1553, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3132, 1553, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3133, 1553, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3134, 1554, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3135, 1554, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3136, 1554, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3137, 1555, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3138, 1555, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3139, 1555, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3140, 1555, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3141, 1555, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3142, 1556, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3143, 1557, 103, '38704330', 'TOOLS SET GIFT BOX', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3144, 1557, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3145, 1558, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '120.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3146, 1558, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3147, 1558, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3148, 1559, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3149, 1560, 117, '13936928', 'HUMIDIFIER DEER', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3150, 1560, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3151, 1561, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3152, 1562, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3153, 1563, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3154, 1563, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3155, 1564, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3156, 1564, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3157, 1565, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3158, 1566, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3159, 1566, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3160, 1567, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3161, 1568, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3162, 1569, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3163, 1569, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3164, 1570, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3165, 1571, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3166, 1571, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '120.0000', '120.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '120.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3167, 1571, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3168, 1572, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3169, 1573, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3170, 1573, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3171, 1574, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3172, 1574, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3173, 1574, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3174, 1574, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3175, 1574, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3176, 1575, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3177, 1576, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3178, 1577, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3179, 1577, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3180, 1578, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3181, 1579, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3182, 1579, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3183, 1580, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3184, 1580, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3185, 1581, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3186, 1581, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3187, 1581, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3188, 1582, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3189, 1583, 91, '61326340', 'RESIN BIG PLANTER ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3190, 1583, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3191, 1583, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3192, 1583, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3193, 1583, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3194, 1583, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3195, 1584, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3196, 1585, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3197, 1586, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3198, 1587, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3199, 1588, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3200, 1588, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3201, 1589, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3202, 1589, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3203, 1589, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3204, 1590, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3205, 1591, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3206, 1591, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3207, 1592, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3208, 1593, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3209, 1593, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '260.0000', '', '130.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3210, 1594, 90, '87334901', 'RESIN PPANTER N4', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3211, 1595, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3212, 1595, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3213, 1595, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3214, 1596, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3215, 1597, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3216, 1597, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3217, 1598, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3218, 1598, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3219, 1598, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3220, 1598, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3221, 1598, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3281, 1623, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3282, 1623, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3271, 1616, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3272, 1616, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3273, 1617, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3274, 1617, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3275, 1617, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3276, 1618, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3279, 1621, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3280, 1622, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3232, 1601, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3233, 1602, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3234, 1603, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3235, 1603, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3236, 1603, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3237, 1604, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3238, 1605, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3315, 1639, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3286, 1623, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3283, 1623, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3284, 1623, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3285, 1623, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3245, 1607, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3246, 1607, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3247, 1607, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3248, 1607, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3249, 1607, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3250, 1607, 126, '50528427', 'LAZZY NOZZEL', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3316, 1640, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3313, 1638, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3314, 1639, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3288, 1623, 303, '50990480', 'Manjula Hanging', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3289, 1623, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3257, 1609, 326, '28746933', 'Raphidoohora Cryptantha', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3258, 1609, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3259, 1609, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3260, 1610, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3261, 1610, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3262, 1610, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3263, 1611, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3264, 1612, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3265, 1613, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3266, 1614, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3267, 1614, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3268, 1614, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3269, 1614, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3270, 1615, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3309, 1634, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3310, 1635, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3311, 1636, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3312, 1637, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3297, 1626, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3298, 1627, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3299, 1628, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3300, 1628, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3301, 1628, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3302, 1628, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3303, 1629, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3304, 1629, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3317, 1640, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3318, 1640, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3319, 1641, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3320, 1641, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3321, 1642, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3322, 1643, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3323, 1644, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3324, 1644, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3325, 1644, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3326, 1644, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3327, 1644, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3328, 1645, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3329, 1646, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3330, 1647, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3331, 1648, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3332, 1648, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3333, 1649, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3334, 1649, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3335, 1649, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3336, 1650, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3337, 1651, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3338, 1651, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3339, 1651, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3340, 1652, 17, '72182335', 'SENSEVERIA COLOR CAP', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3341, 1652, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3342, 1652, 165, '48621422', 'Anthurium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3343, 1652, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3344, 1652, 50, '88680893', 'DUBIA', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3345, 1652, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3346, 1652, 53, '64694164', 'PHILODENDRON PAINTED LADY', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3347, 1653, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3348, 1654, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3349, 1654, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3350, 1655, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3351, 1656, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3352, 1657, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3353, 1658, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3354, 1658, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3355, 1659, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3356, 1659, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3357, 1660, 334, '94199597', 'Calathia ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3358, 1660, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3359, 1661, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3360, 1661, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3361, 1662, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3362, 1662, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3363, 1662, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3364, 1663, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3365, 1664, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3366, 1665, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3367, 1665, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3368, 1665, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3369, 1666, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3370, 1666, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3371, 1666, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3372, 1666, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3373, 1666, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3374, 1666, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3375, 1666, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3376, 1667, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3377, 1668, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3378, 1669, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3379, 1670, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3380, 1671, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3381, 1672, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3382, 1672, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3383, 1673, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3384, 1673, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3385, 1674, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3386, 1675, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3387, 1676, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3388, 1676, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3389, 1677, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3390, 1677, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3391, 1677, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3392, 1677, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3393, 1677, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3394, 1677, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3395, 1678, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3396, 1679, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3397, 1680, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3398, 1681, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3399, 1681, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3400, 1681, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3401, 1681, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3402, 1681, 337, '92857184', 'Pilea norfolk', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3403, 1681, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3404, 1681, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3405, 1681, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3406, 1681, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3407, 1681, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3408, 1681, 366, '76182407', 'peoporima argyreia', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3409, 1681, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3410, 1681, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3411, 1681, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3412, 1681, 404, '37694427', 'cryptenthus big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3413, 1681, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3414, 1681, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3415, 1681, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3416, 1681, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3417, 1681, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3418, 1681, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3419, 1681, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3420, 1681, 20, '16748388', 'SENSEVERIA FRANCISII', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3421, 1681, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3422, 1681, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3423, 1681, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3424, 1681, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3425, 1681, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3426, 1682, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3427, 1683, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3428, 1684, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3429, 1684, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3430, 1685, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3431, 1685, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3432, 1685, 44, '91825750', 'PHILODENDRON BRASIL BIG POT', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3433, 1686, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3434, 1686, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3435, 1686, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3436, 1687, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3437, 1688, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3438, 1688, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3439, 1689, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3440, 1690, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3441, 1690, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3442, 1691, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3443, 1691, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3444, 1692, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3445, 1693, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3446, 1693, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3447, 1694, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3448, 1694, 323, '52372789', 'Philo. Nangaritense', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3449, 1694, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3450, 1694, 240, '75492184', 'Jungle Bogie', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3451, 1694, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3455, 1696, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3454, 1696, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3456, 1697, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3457, 1698, 223, '91005899', 'Air Plant Myst', 'standard', NULL, '1750.0000', '1750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1750.0000', '', '1750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3458, 1699, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3459, 1700, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3460, 1701, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3461, 1702, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3462, 1703, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3463, 1704, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3464, 1705, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3465, 1706, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3466, 1706, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3467, 1706, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3468, 1706, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3469, 1706, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3470, 1707, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3471, 1708, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3472, 1708, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3473, 1709, 314, '85167717', 'Aglonema 3', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3474, 1709, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3475, 1710, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3476, 1711, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3477, 1711, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3478, 1711, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3479, 1711, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3480, 1711, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3481, 1711, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3482, 1711, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3483, 1711, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3484, 1711, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3485, 1711, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3486, 1711, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3487, 1711, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3488, 1711, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3489, 1711, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3490, 1711, 22, '01402428', 'BROMELIAD THAI', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3491, 1711, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3492, 1711, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3493, 1711, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3494, 1711, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3495, 1711, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3496, 1711, 209, '51591750', '6 corner ceramic ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3497, 1711, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3498, 1712, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3499, 1712, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3500, 1713, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3501, 1713, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3613, 1752, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3612, 1752, 407, '23661246', 'Thai NPK 21-21-21', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3611, 1752, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3505, 1715, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3506, 1715, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3507, 1715, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3508, 1715, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3509, 1715, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3510, 1716, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3511, 1716, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3512, 1716, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3513, 1716, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3514, 1716, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3515, 1716, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3615, 1754, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3614, 1753, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3518, 1718, 32, '53236471', 'PHILODENDRON CHERRY RED', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3519, 1718, 291, '31566492', 'Stylish Stripe Planter s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3520, 1718, 359, '88375660', 'Philo.Gueldi ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3521, 1719, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', 'standard', NULL, '1150.0000', '1150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1150.0000', '', '1150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3522, 1720, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3523, 1721, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3524, 1722, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3525, 1722, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3526, 1722, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3527, 1723, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3528, 1724, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3529, 1724, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3530, 1725, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3531, 1725, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3532, 1725, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3533, 1725, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3534, 1726, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3535, 1726, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3536, 1726, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3537, 1726, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3538, 1726, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3539, 1726, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '600.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3540, 1726, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3541, 1726, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3542, 1727, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3543, 1728, 424, '77188704', 'Ceramic Wood Style', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3544, 1728, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3545, 1728, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3546, 1728, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3547, 1728, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3548, 1729, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3549, 1730, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3550, 1731, 414, '41279592', 'Seed Thai ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3551, 1731, 33, '03006363', 'EPIPREMNUM AMPLISSIMUM SILVER', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3552, 1731, 36, '41780961', 'SYNGONIUM RED ARROW', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3553, 1732, 414, '41279592', 'Seed Thai ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3554, 1733, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '320.0000', '', '40.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3555, 1733, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3556, 1733, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3557, 1733, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3558, 1733, 414, '41279592', 'Seed Thai ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3559, 1734, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3560, 1734, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3561, 1734, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3562, 1734, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3563, 1734, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3564, 1734, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3565, 1735, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '350.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3566, 1735, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3567, 1735, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3568, 1735, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3569, 1735, 128, '58964119', 'PH METER ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3570, 1736, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3571, 1736, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3572, 1737, 189, '95207952', 'Philo 69686', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3573, 1737, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3574, 1737, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3575, 1738, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3576, 1738, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3577, 1738, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3578, 1738, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3579, 1739, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3580, 1739, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3581, 1740, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3582, 1741, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3583, 1741, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3584, 1741, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3585, 1741, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3586, 1741, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3587, 1741, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3588, 1741, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3589, 1741, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3590, 1741, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3591, 1741, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3592, 1741, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3593, 1742, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3594, 1743, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3595, 1744, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3596, 1744, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3597, 1744, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3598, 1744, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3599, 1745, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3600, 1746, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3601, 1746, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3602, 1747, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3603, 1748, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3604, 1748, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3605, 1748, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3606, 1749, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3607, 1749, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3608, 1750, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3609, 1750, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3610, 1751, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3616, 1754, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3617, 1755, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3618, 1756, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3619, 1756, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3620, 1756, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3621, 1756, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3622, 1757, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3623, 1757, 21, '26738846', 'SPANISH MOSS SET', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3624, 1758, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3625, 1759, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3626, 1759, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3627, 1760, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3628, 1760, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3629, 1761, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3630, 1762, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3631, 1763, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3632, 1763, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3633, 1764, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3634, 1764, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3635, 1765, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3636, 1765, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3637, 1765, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3638, 1766, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3639, 1766, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3640, 1767, 144, '70118098', 'NPK 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3641, 1768, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3642, 1768, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3643, 1769, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3644, 1770, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3645, 1770, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3646, 1771, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3647, 1771, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3648, 1772, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3649, 1773, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3650, 1773, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3651, 1774, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3652, 1775, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3653, 1775, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3654, 1776, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3655, 1777, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3656, 1778, 131, '57685758', 'FERTILISER BOX', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3657, 1779, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3658, 1780, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3659, 1781, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3660, 1782, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '350.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3661, 1783, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3662, 1784, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3663, 1785, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3664, 1785, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3665, 1786, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3666, 1786, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3667, 1787, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3668, 1788, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3669, 1788, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3670, 1789, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3671, 1789, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3672, 1790, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3673, 1790, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3674, 1791, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3675, 1792, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3676, 1793, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3677, 1794, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3678, 1794, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3679, 1795, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3680, 1795, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3681, 1796, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3682, 1797, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3683, 1797, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3684, 1798, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5300.0000', '', '2650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3685, 1799, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3686, 1800, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3687, 1800, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3688, 1800, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3689, 1800, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3690, 1800, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3691, 1800, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3692, 1801, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3693, 1802, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '50.0000', NULL, 2, 'Pcs', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3694, 1802, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '150.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3695, 1802, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3696, 1802, 213, '34176921', 'Air plant Hanging Stand', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3697, 1802, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3698, 1802, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3699, 1802, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3700, 1802, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3701, 1802, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3702, 1802, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3703, 1803, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3704, 1803, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3705, 1803, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3706, 1804, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3707, 1805, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3708, 1806, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3709, 1807, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3710, 1807, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3711, 1807, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3712, 1807, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3713, 1808, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3714, 1809, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3715, 1809, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3716, 1809, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3717, 1810, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3718, 1810, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3719, 1810, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3720, 1811, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3721, 1811, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3722, 1811, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3723, 1812, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3724, 1813, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3725, 1813, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3726, 1813, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3727, 1813, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3728, 1813, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3729, 1813, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3730, 1813, 126, '50528427', 'LAZZY NOZZEL', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3731, 1814, 332, '53235235', 'Calathia Golden Mosaic', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3732, 1814, 404, '37694427', 'cryptenthus big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3733, 1814, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3734, 1815, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3735, 1816, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3736, 1816, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3737, 1816, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3738, 1817, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3739, 1817, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3740, 1817, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3741, 1818, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3742, 1818, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3743, 1819, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3744, 1820, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3745, 1821, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3746, 1822, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3747, 1822, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3748, 1822, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3749, 1822, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3750, 1823, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3751, 1824, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3752, 1825, 405, '69849054', 'Plastic Stand tob', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3753, 1825, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3754, 1825, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3755, 1825, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3756, 1826, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3757, 1826, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3758, 1827, 84, '27666711', 'RESIN PLANTER M2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3759, 1827, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3760, 1828, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3761, 1828, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3762, 1828, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3763, 1828, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3764, 1828, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3765, 1828, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3766, 1828, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3767, 1828, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3768, 1829, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '17600.0000', '', '2200.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3769, 1829, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3770, 1829, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3771, 1829, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3772, 1829, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3773, 1830, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3774, 1830, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3775, 1830, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3776, 1830, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3777, 1830, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3778, 1831, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3779, 1832, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3780, 1832, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3781, 1832, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3782, 1833, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3783, 1833, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3784, 1834, 129, '42608953', 'STEEL BELCHA', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3785, 1834, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3786, 1834, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3787, 1834, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3788, 1835, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3789, 1836, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4400.0000', '', '2200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3790, 1837, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3791, 1837, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3792, 1837, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3793, 1838, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3794, 1839, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3795, 1839, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3796, 1839, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3797, 1840, 71, '53980043', 'Ionantha Ball', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3798, 1841, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3799, 1841, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3800, 1842, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3801, 1843, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3802, 1843, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3803, 1843, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3804, 1844, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3805, 1845, 452, '41218792', 'peoprima Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3806, 1845, 428, '53896849', 'Aglonema 6', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3807, 1846, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3808, 1847, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3809, 1847, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3810, 1848, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3811, 1848, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3812, 1849, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3813, 1850, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3814, 1851, 438, '00947711', 'Philodendron mayoi', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3815, 1851, 444, '91635945', 'Adensoni Indo. ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3816, 1851, 447, '72901803', 'Philo Tortum Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3817, 1852, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3818, 1852, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3819, 1853, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3820, 1854, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3821, 1855, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3822, 1855, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3823, 1855, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3824, 1856, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3825, 1856, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3826, 1856, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3827, 1857, 273, '43570472', 'Raphidophora Hay', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3828, 1857, 174, '76806853', 'philo.Atabaponese', 'standard', NULL, '3500.0000', '3500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3500.0000', '', '3500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3829, 1857, 250, '15651501', 'moonlight', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3830, 1857, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3831, 1858, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3832, 1858, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3833, 1858, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3834, 1858, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3835, 1858, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3836, 1858, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3837, 1858, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3838, 1858, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3839, 1858, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3840, 1858, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3841, 1858, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3842, 1858, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3843, 1858, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3844, 1859, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3845, 1859, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3846, 1860, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3847, 1861, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3848, 1861, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3849, 1862, 91, '61326340', 'RESIN BIG PLANTER ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3850, 1862, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3851, 1862, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3852, 1862, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3853, 1862, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3854, 1862, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3855, 1863, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3856, 1863, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3857, 1863, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3858, 1863, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3859, 1863, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3860, 1863, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3861, 1863, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3862, 1864, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3863, 1864, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '100.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3864, 1864, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3865, 1864, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3866, 1864, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3867, 1864, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3868, 1865, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3869, 1865, 433, '16510893', 'Philodendron Rungsum', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3870, 1865, 442, '17138235', 'Philo. Thai Sunrise ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3871, 1866, 359, '88375660', 'Philo.Gueldi ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3872, 1867, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3873, 1868, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3874, 1869, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3875, 1869, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3876, 1869, 452, '41218792', 'peoprima Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3877, 1869, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3878, 1869, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3879, 1869, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3880, 1869, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3881, 1869, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3882, 1869, 86, '08010277', 'RESIN PLANTER K2', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3883, 1869, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3884, 1869, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3885, 1870, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3886, 1870, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3887, 1871, 464, '81915881', 'Gymno Calacium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3888, 1871, 463, '20093942', 'Astrophytum Asteris', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3889, 1872, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3890, 1872, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3891, 1872, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3892, 1872, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3893, 1873, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3894, 1874, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3895, 1874, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3896, 1875, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3897, 1875, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3898, 1876, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3899, 1876, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3900, 1877, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3901, 1877, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3902, 1877, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3903, 1877, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3904, 1877, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3905, 1877, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3906, 1878, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3907, 1879, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3908, 1879, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3909, 1880, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3910, 1880, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3911, 1880, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3912, 1881, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3913, 1881, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3914, 1882, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3915, 1883, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3916, 1883, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3917, 1884, 434, '57995031', 'Fern With Coco Shell', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3918, 1884, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3200.0000', '', '1600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3919, 1884, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '16.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3200.0000', '', '200.0000', NULL, 2, 'Pcs', '16.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3920, 1885, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3921, 1886, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3922, 1886, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3923, 1886, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3924, 1887, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3925, 1887, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3926, 1888, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3927, 1889, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3928, 1889, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3929, 1889, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3930, 1889, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3931, 1890, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3932, 1890, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3933, 1890, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3934, 1891, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3935, 1892, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3936, 1893, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3937, 1894, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3938, 1894, 463, '20093942', 'Astrophytum Asteris', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3939, 1895, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3940, 1895, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3941, 1896, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3942, 1897, 372, '59471278', 'Enobi Big Pot ', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3943, 1897, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3944, 1898, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3945, 1899, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3946, 1899, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3947, 1899, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3948, 1899, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3949, 1899, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3950, 1899, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3951, 1900, 243, '19090261', 'Verigetted Phelonopsis ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3952, 1901, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3953, 1901, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3954, 1901, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3955, 1901, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3956, 1901, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3957, 1902, 444, '91635945', 'Adensoni Indo. ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3958, 1903, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3959, 1904, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3960, 1904, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3961, 1905, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3962, 1905, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3963, 1906, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3964, 1906, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3965, 1906, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3966, 1906, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3967, 1906, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3968, 1906, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3969, 1906, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3970, 1907, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3971, 1907, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3972, 1908, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3973, 1909, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3974, 1910, 327, '85091215', 'Raphidoohora cealatocaulis', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3975, 1910, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3976, 1910, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3977, 1910, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1100.0000', '', '550.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3978, 1910, 254, '31700219', 'Hoya 1.5', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3979, 1910, 439, '83290543', 'Raphidophora Hay Big ', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3980, 1910, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3981, 1910, 135, '38349643', 'ORCHID FOCUS GROW', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3982, 1911, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3983, 1911, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3984, 1912, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3985, 1913, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3986, 1913, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3987, 1914, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3988, 1915, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3989, 1915, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3990, 1915, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3991, 1915, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3992, 1915, 398, '95341318', 'Senseveria Cleopetra ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3993, 1915, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3994, 1915, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3995, 1916, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3996, 1917, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3997, 1918, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3998, 1919, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (3999, 1919, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4000, 1919, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4001, 1920, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4002, 1921, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4003, 1921, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4004, 1922, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4005, 1923, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4006, 1924, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4007, 1925, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4008, 1925, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4009, 1926, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4010, 1927, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4011, 1928, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2550.0000', '', '850.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4012, 1929, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4013, 1930, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4014, 1931, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4015, 1931, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4016, 1931, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4017, 1932, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '600.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4018, 1932, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4019, 1932, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4020, 1932, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4021, 1932, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4022, 1932, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4023, 1933, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4042, 1935, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4043, 1935, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4034, 1935, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4035, 1935, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4036, 1935, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4037, 1935, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4038, 1935, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4039, 1935, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4040, 1935, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4041, 1935, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4044, 1936, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4045, 1936, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4046, 1937, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4047, 1938, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4048, 1939, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4049, 1939, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4050, 1940, 171, '66305946', 'Fitunia', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4051, 1940, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4052, 1941, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4053, 1941, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4054, 1941, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4055, 1942, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4056, 1942, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4057, 1943, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4058, 1943, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4059, 1944, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4060, 1945, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4061, 1945, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4062, 1945, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4063, 1946, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4064, 1947, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4065, 1948, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4066, 1949, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4067, 1949, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4068, 1950, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4069, 1950, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4070, 1950, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4071, 1951, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4072, 1952, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4073, 1952, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4074, 1952, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4075, 1953, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4076, 1954, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4077, 1954, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4078, 1954, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4079, 1954, 452, '41218792', 'peoprima Red', 'standard', NULL, '500.0000', '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4080, 1954, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4081, 1954, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4082, 1954, 428, '53896849', 'Aglonema 6', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4083, 1954, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4084, 1954, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '1500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4085, 1955, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4086, 1956, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4087, 1956, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4088, 1957, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4089, 1957, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4090, 1958, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4091, 1959, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4092, 1960, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4093, 1960, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4094, 1961, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4095, 1962, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4096, 1963, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4097, 1963, 434, '57995031', 'Fern With Coco Shell', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4098, 1963, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4099, 1964, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4100, 1965, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4101, 1966, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4102, 1967, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4103, 1968, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4104, 1968, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4105, 1969, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4106, 1969, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4107, 1969, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4108, 1969, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4109, 1969, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4110, 1970, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4111, 1970, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4112, 1970, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4113, 1970, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4114, 1970, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4115, 1971, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4116, 1972, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4117, 1972, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4118, 1972, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4119, 1973, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4120, 1974, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4121, 1975, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4122, 1976, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4123, 1977, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4124, 1978, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4125, 1978, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4126, 1979, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4127, 1980, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4128, 1981, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4129, 1982, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4130, 1982, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4131, 1983, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4132, 1984, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4133, 1984, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4134, 1984, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4135, 1985, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4136, 1985, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4137, 1986, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4138, 1987, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4139, 1987, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4140, 1987, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4141, 1987, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4142, 1988, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4143, 1988, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4144, 1988, 452, '41218792', 'peoprima Red', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4145, 1988, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4146, 1989, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4147, 1989, 436, '54948921', 'Philodendron Silver Sword', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4148, 1990, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6600.0000', '', '2200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4149, 1991, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4150, 1991, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4151, 1991, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4152, 1992, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4153, 1993, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4154, 1993, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4155, 1993, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4156, 1993, 264, '63489717', 'African Violet', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4157, 1994, 95, '91943746', 'GROOT ', 'standard', NULL, '650.0000', '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4158, 1994, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4159, 1995, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4160, 1995, 71, '53980043', 'Ionantha Ball', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4161, 1995, 434, '57995031', 'Fern With Coco Shell', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4162, 1995, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4163, 1995, 449, '27598414', 'Shangrila Big ', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4164, 1995, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4165, 1995, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4166, 1995, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4167, 1995, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4168, 1996, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4169, 1996, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4170, 1997, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4171, 1998, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4172, 1999, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4173, 2000, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4174, 2001, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4175, 2002, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4176, 2002, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4177, 2002, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4178, 2003, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4179, 2004, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4180, 2005, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4181, 2005, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4182, 2006, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4400.0000', '', '2200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4183, 2006, 326, '28746933', 'Raphidoohora Cryptantha', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4184, 2006, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4185, 2006, 173, '63588432', 'Ring Of Fire ', 'standard', NULL, '6000.0000', '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4186, 2006, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4187, 2006, 428, '53896849', 'Aglonema 6', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4188, 2006, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4189, 2006, 448, '93803138', 'Syngonium Tricolor', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4190, 2006, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4191, 2006, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4192, 2006, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4193, 2006, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4194, 2006, 228, '03917430', 'WIlko 1 L Fertiliser', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4195, 2006, 232, '15417255', 'Fungicide 50gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4196, 2006, 437, '29380615', 'Parisio verde Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4197, 2007, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4198, 2007, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4199, 2007, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4200, 2007, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4201, 2007, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4202, 2007, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4203, 2007, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4204, 2007, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4205, 2007, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4206, 2007, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4207, 2007, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4208, 2008, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4209, 2008, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4210, 2008, 463, '20093942', 'Astrophytum Asteris', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4211, 2009, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4212, 2010, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4213, 2010, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4214, 2010, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4215, 2011, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4216, 2011, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4217, 2012, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4218, 2013, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4219, 2014, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '200.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4220, 2014, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4221, 2014, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4222, 2015, 135, '38349643', 'ORCHID FOCUS GROW', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4223, 2016, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '8000.0000', '', '2000.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4224, 2017, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4225, 2018, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4226, 2018, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4227, 2019, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4228, 2019, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4229, 2020, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4230, 2020, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4231, 2021, 131, '57685758', 'FERTILISER BOX', 'standard', NULL, '100.0000', '100.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '100.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4232, 2022, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4233, 2022, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4234, 2022, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '40.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4235, 2022, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4241, 2024, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4240, 2024, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4239, 2024, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4242, 2024, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4243, 2025, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4244, 2025, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4245, 2025, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4246, 2025, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4247, 2025, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '40.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4248, 2025, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4249, 2026, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4250, 2026, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4251, 2027, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4252, 2028, 223, '91005899', 'Air Plant Myst', 'standard', NULL, '1750.0000', '1750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1750.0000', '', '1750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4253, 2028, 408, '03054245', 'Alpha Omega Bloom', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4254, 2028, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4255, 2028, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4256, 2028, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4257, 2029, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4258, 2029, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4259, 2029, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4260, 2030, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4261, 2030, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4262, 2030, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '50.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4263, 2030, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4264, 2030, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4265, 2030, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4266, 2030, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4267, 2030, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4268, 2030, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4269, 2031, 374, '27646289', 'Hydonphytum Formicarium', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4270, 2032, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4271, 2033, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4272, 2034, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4273, 2034, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4274, 2034, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4275, 2035, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4276, 2036, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4277, 2036, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4278, 2037, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4279, 2038, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4280, 2038, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4281, 2039, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4282, 2040, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4283, 2041, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4284, 2041, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4285, 2041, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4286, 2041, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4287, 2042, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4288, 2043, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4289, 2043, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4290, 2043, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4291, 2043, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4292, 2043, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4293, 2043, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4294, 2043, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4295, 2044, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4296, 2045, 415, '38974763', 'Book 280', 'standard', NULL, '280.0000', '280.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '280.0000', '', '280.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4297, 2046, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4298, 2047, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4299, 2048, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4300, 2049, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4301, 2049, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4302, 2049, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4303, 2050, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4304, 2051, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4305, 2051, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4306, 2052, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4307, 2052, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4308, 2053, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4309, 2053, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4310, 2054, 448, '93803138', 'Syngonium Tricolor', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4311, 2054, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4312, 2054, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4313, 2054, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4314, 2055, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4315, 2055, 325, '25522346', 'Pink princess', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4316, 2056, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4317, 2057, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4318, 2058, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4319, 2059, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4320, 2060, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '2500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4321, 2061, 71, '53980043', 'Ionantha Ball', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4322, 2062, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4323, 2063, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4324, 2063, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4325, 2063, 436, '54948921', 'Philodendron Silver Sword', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4326, 2063, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4327, 2063, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4328, 2064, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4329, 2064, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4330, 2065, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4331, 2066, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4332, 2067, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4333, 2068, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4334, 2069, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4335, 2070, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4336, 2071, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4337, 2071, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4338, 2072, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4339, 2072, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4340, 2073, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4341, 2073, 87, '5200549', 'RESIN PLANTER E1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4342, 2073, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4343, 2073, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4344, 2073, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4345, 2073, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4346, 2074, 464, '81915881', 'Gymno Calacium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4347, 2074, 463, '20093942', 'Astrophytum Asteris', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4348, 2074, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4349, 2074, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4350, 2075, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4351, 2075, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4352, 2075, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4353, 2076, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4354, 2076, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4355, 2077, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4356, 2077, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4357, 2078, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4358, 2079, 290, '12624647', 'Artistic Round planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4359, 2080, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4360, 2080, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4361, 2080, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4362, 2081, 118, '70757607', 'HUMIDIFIER SMALL', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4363, 2081, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4364, 2082, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4365, 2082, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4366, 2082, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4367, 2083, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4368, 2084, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4369, 2084, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4370, 2085, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4371, 2086, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4372, 2087, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4373, 2088, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4374, 2089, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4375, 2090, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4376, 2090, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4377, 2091, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4378, 2091, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4379, 2092, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4380, 2092, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4381, 2093, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4382, 2094, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4383, 2094, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4384, 2095, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4385, 2096, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4386, 2097, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '350.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4387, 2097, 81, '95295192', 'SUNSHINE POT', 'standard', NULL, '120.0000', '120.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '360.0000', '', '120.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4388, 2097, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4389, 2097, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4390, 2097, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4391, 2097, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4392, 2097, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4393, 2098, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4394, 2099, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4395, 2099, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4396, 2099, 213, '34176921', 'Air plant Hanging Stand', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4397, 2100, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4398, 2101, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4399, 2101, 434, '57995031', 'Fern With Coco Shell', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4400, 2102, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4401, 2102, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4402, 2102, 83, '79775908', 'RESIN PLANTER C1', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4403, 2102, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4404, 2103, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4405, 2104, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4406, 2105, 464, '81915881', 'Gymno Calacium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4407, 2105, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4408, 2106, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '12.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '150.0000', NULL, 2, 'Pcs', '12.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4409, 2107, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4410, 2108, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4411, 2109, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4412, 2110, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4413, 2110, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4414, 2110, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4415, 2111, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4416, 2112, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4417, 2112, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4418, 2113, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4419, 2113, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4420, 2114, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4421, 2114, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4422, 2115, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4423, 2116, 229, '93138172', 'Peat Moss', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4424, 2116, 233, '03531371', 'Akadama Soil', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4425, 2117, 441, '42572053', 'Senseveria Gold Flame ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4426, 2118, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4427, 2118, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4428, 2119, 19, '44836242', 'SENSEVERIA SILVER BLUE', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4429, 2119, 90, '87334901', 'RESIN PPANTER N4', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4430, 2120, 135, '38349643', 'ORCHID FOCUS GROW', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4431, 2120, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4432, 2121, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4433, 2121, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4434, 2121, 406, '55901923', 'Thai NPK 10-52-17', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4435, 2121, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4436, 2122, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4437, 2122, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4438, 2122, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4439, 2123, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4440, 2124, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4441, 2124, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4442, 2125, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4443, 2125, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4444, 2125, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4445, 2126, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4446, 2127, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4447, 2128, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4448, 2128, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4449, 2128, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4450, 2129, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4451, 2129, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4452, 2130, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', 'standard', NULL, '1150.0000', '1150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2300.0000', '', '1150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4453, 2130, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '60.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4454, 2131, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4455, 2131, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4456, 2131, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4457, 2131, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4458, 2131, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4459, 2131, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4460, 2131, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4461, 2131, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4462, 2132, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4463, 2132, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4464, 2132, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4465, 2133, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4466, 2133, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4467, 2134, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4468, 2135, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4469, 2135, 186, '21212277', 'philo Cream Splash ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4470, 2136, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4471, 2136, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4472, 2136, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4473, 2137, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4474, 2138, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4475, 2138, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4476, 2138, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4477, 2139, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4478, 2139, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4479, 2139, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4480, 2140, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '150.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4481, 2140, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4482, 2140, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4483, 2140, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4484, 2140, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4485, 2140, 434, '57995031', 'Fern With Coco Shell', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4486, 2140, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4487, 2141, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4488, 2141, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4489, 2141, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4490, 2141, 408, '03054245', 'Alpha Omega Bloom', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4491, 2141, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4492, 2142, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4493, 2142, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4494, 2143, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4495, 2144, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4496, 2144, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4497, 2145, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4498, 2146, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4499, 2147, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4500, 2148, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4501, 2148, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4502, 2149, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4503, 2150, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4504, 2150, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '260.0000', '', '130.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4505, 2150, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '80.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4506, 2150, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4507, 2151, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4508, 2151, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4509, 2152, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4510, 2153, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4511, 2153, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4512, 2154, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4513, 2154, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4514, 2155, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4515, 2156, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4516, 2156, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4517, 2157, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4518, 2158, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4519, 2158, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4520, 2158, 454, '95429654', 'peporima verg small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4521, 2159, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4522, 2160, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4523, 2160, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4524, 2160, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4525, 2161, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4526, 2162, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4527, 2163, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4528, 2163, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4529, 2164, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4530, 2164, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4531, 2165, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4532, 2166, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4533, 2166, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4534, 2167, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4535, 2167, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4536, 2167, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4537, 2167, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '60.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4538, 2168, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4539, 2169, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4540, 2170, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4541, 2170, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4542, 2170, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4543, 2170, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4544, 2170, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4545, 2171, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4546, 2172, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '250.0000', NULL, 2, 'Pcs', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4547, 2173, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4548, 2174, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4549, 2174, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4550, 2174, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4551, 2174, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4552, 2174, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4553, 2175, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4554, 2176, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4555, 2177, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4556, 2178, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '150.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4557, 2179, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4558, 2180, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4559, 2180, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4560, 2180, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4561, 2181, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4562, 2181, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4563, 2182, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4564, 2182, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4565, 2183, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4566, 2184, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4567, 2185, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4568, 2186, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4569, 2187, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4570, 2188, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4571, 2189, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4572, 2189, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4573, 2190, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4574, 2191, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4575, 2192, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4576, 2192, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '260.0000', '', '130.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4577, 2193, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4578, 2194, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4579, 2195, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4580, 2195, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4581, 2196, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4582, 2197, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4583, 2197, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4584, 2198, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4585, 2198, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4586, 2198, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4587, 2199, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4588, 2200, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4589, 2201, 7, '11', 'Miracal Gro Osmocote 1KG', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4590, 2202, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4591, 2203, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4592, 2203, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4593, 2203, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4594, 2204, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4595, 2205, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4596, 2206, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4597, 2207, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4598, 2208, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4599, 2209, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4600, 2209, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4601, 2210, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4602, 2210, 33, '03006363', 'EPIPREMNUM AMPLISSIMUM SILVER', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4603, 2211, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4604, 2212, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4605, 2213, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4606, 2214, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4607, 2215, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4608, 2216, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4609, 2216, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4610, 2216, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4611, 2217, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4612, 2217, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4613, 2217, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4614, 2217, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4615, 2217, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4616, 2217, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4617, 2217, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4618, 2217, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4619, 2218, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4620, 2218, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4621, 2219, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4622, 2219, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4623, 2220, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4624, 2220, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4625, 2221, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4626, 2221, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4627, 2222, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4628, 2223, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4629, 2224, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4630, 2225, 175, '61824284', 'Phelenopsis', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4631, 2225, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4632, 2225, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4633, 2225, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4634, 2225, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4635, 2226, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4636, 2226, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4637, 2226, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4638, 2226, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4639, 2227, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4640, 2227, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4641, 2227, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4642, 2227, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4643, 2227, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4644, 2228, 467, '53203502', 'Monostera deliciosa big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4645, 2228, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4646, 2229, 175, '61824284', 'Phelenopsis', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4647, 2229, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4648, 2230, 467, '53203502', 'Monostera deliciosa big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4649, 2230, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4650, 2230, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4651, 2230, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4652, 2230, 33, '03006363', 'EPIPREMNUM AMPLISSIMUM SILVER', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4653, 2230, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4654, 2230, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4655, 2230, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4656, 2231, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4657, 2232, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4658, 2232, 94, '86499263', 'SELF WATERING TRANSPARENT ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4659, 2232, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4660, 2233, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '450.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4661, 2233, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4662, 2234, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4663, 2235, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4664, 2236, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4665, 2236, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4666, 2236, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4667, 2236, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4668, 2236, 274, '37141257', 'Double part Color Tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4669, 2237, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4670, 2238, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4671, 2238, 44, '91825750', 'PHILODENDRON BRASIL BIG POT', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4672, 2239, 343, '37152007', 'Snail Killer', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4673, 2239, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4674, 2239, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4675, 2239, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4676, 2240, 470, '62507647', 'Global Green', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4677, 2241, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4678, 2241, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4679, 2241, 65, '95393801', 'DICHIDIA NECKLESS VERIGETTED', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4680, 2242, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4681, 2242, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4682, 2242, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4683, 2242, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4684, 2243, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4685, 2244, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4686, 2244, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4687, 2244, 175, '61824284', 'Phelenopsis', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4688, 2244, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4689, 2245, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6600.0000', '', '2200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4690, 2245, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1350.0000', '', '450.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4691, 2246, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4692, 2246, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4693, 2246, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4694, 2246, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4695, 2246, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4696, 2247, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4697, 2247, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4698, 2247, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4699, 2248, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4700, 2249, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4701, 2250, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4702, 2250, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4703, 2251, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4704, 2251, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4705, 2252, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4706, 2252, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4707, 2253, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4708, 2253, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4709, 2253, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4710, 2254, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4711, 2254, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4712, 2255, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4713, 2256, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4714, 2257, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4715, 2257, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4716, 2257, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4717, 2258, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4718, 2258, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4719, 2258, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4720, 2258, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4721, 2259, 322, '56110482', 'Philo. Splendid', 'standard', NULL, '6000.0000', '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4722, 2259, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4723, 2260, 463, '20093942', 'Astrophytum Asteris', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4724, 2261, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4725, 2261, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4400.0000', '', '2200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4726, 2261, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4727, 2262, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4728, 2263, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4729, 2263, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4730, 2263, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4731, 2264, 71, '53980043', 'Ionantha Ball', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4732, 2265, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4733, 2266, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4734, 2267, 464, '81915881', 'Gymno Calacium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4735, 2268, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4736, 2268, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4737, 2268, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4738, 2268, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4739, 2269, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4740, 2269, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4741, 2269, 209, '51591750', '6 corner ceramic ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4742, 2269, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4743, 2269, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4744, 2269, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4745, 2270, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4747, 2272, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4748, 2273, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4749, 2273, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4750, 2273, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4751, 2274, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4752, 2274, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4753, 2274, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4754, 2274, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4755, 2274, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4756, 2274, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4757, 2274, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4758, 2274, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4759, 2274, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4760, 2275, 392, '14849048', 'Green Pod Big', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4761, 2275, 264, '63489717', 'African Violet', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4762, 2275, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4763, 2275, 468, '27225059', 'Splendid Big ', 'standard', NULL, '6000.0000', '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4764, 2275, 310, '19536640', 'Monostera Esquleta ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4765, 2275, 438, '00947711', 'Philodendron mayoi', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4766, 2276, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4767, 2276, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4768, 2277, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4769, 2277, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4770, 2278, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4771, 2279, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4772, 2280, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4773, 2280, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4774, 2280, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4775, 2280, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4776, 2281, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4777, 2281, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4778, 2281, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4779, 2281, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4780, 2281, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4781, 2281, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4782, 2281, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4783, 2282, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4784, 2283, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4785, 2283, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4786, 2284, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4787, 2285, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4788, 2286, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4789, 2287, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4790, 2288, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4791, 2289, 264, '63489717', 'African Violet', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4792, 2289, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4793, 2290, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4794, 2290, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4795, 2291, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4796, 2292, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4797, 2293, 467, '53203502', 'Monostera deliciosa big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4798, 2294, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4799, 2295, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4800, 2295, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4801, 2296, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4802, 2297, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4803, 2298, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4804, 2298, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4805, 2298, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4806, 2299, 279, '33099580', 'Plant Clip', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4807, 2300, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4808, 2300, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4809, 2301, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4810, 2301, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4811, 2301, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4812, 2302, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4813, 2302, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4814, 2302, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4815, 2302, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4816, 2303, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4817, 2304, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4818, 2305, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4819, 2306, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4820, 2307, 436, '54948921', 'Philodendron Silver Sword', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4821, 2308, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4822, 2308, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4823, 2308, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4824, 2309, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '380.0000', '', '190.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4825, 2309, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '260.0000', '', '130.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4826, 2309, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4827, 2309, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4828, 2309, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4829, 2310, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4830, 2311, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4831, 2312, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4832, 2313, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4833, 2313, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4834, 2313, 408, '03054245', 'Alpha Omega Bloom', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4835, 2314, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4836, 2315, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4837, 2316, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4838, 2316, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4839, 2317, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4840, 2318, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4841, 2318, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4842, 2319, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '200.0000', NULL, 2, 'Pcs', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4843, 2319, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4844, 2319, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4845, 2319, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '50.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4846, 2319, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4400.0000', '', '2200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4847, 2320, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4848, 2320, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4849, 2320, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4850, 2320, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4851, 2321, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4852, 2322, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4853, 2323, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4854, 2324, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4855, 2324, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4856, 2324, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4857, 2324, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4858, 2325, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4859, 2325, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4860, 2326, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4862, 2328, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4863, 2329, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4864, 2329, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4865, 2329, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4866, 2329, 428, '53896849', 'Aglonema 6', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4867, 2329, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4868, 2329, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4869, 2330, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4870, 2330, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4871, 2331, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4872, 2332, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4873, 2333, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4874, 2333, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4875, 2334, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4876, 2334, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4877, 2334, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4878, 2334, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4879, 2335, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4880, 2336, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '200.0000', NULL, 2, 'Pcs', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4881, 2336, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4882, 2337, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4883, 2337, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4884, 2337, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4885, 2338, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4886, 2338, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4887, 2339, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4888, 2339, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4889, 2339, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4890, 2340, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4891, 2340, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4892, 2341, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4893, 2341, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4894, 2342, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4895, 2342, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4896, 2343, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4897, 2344, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4898, 2345, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4899, 2346, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4900, 2346, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2650.0000', '', '2650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4901, 2347, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4902, 2347, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4903, 2347, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4904, 2347, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4905, 2348, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4906, 2349, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4907, 2350, 473, '21904700', 'Silver Shatin Small ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4908, 2351, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4909, 2351, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4910, 2351, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4911, 2351, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4912, 2351, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4913, 2351, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4914, 2352, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4915, 2353, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4916, 2353, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4917, 2353, 370, '38281816', 'Philo Warchezew', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4918, 2353, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4919, 2354, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4920, 2355, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4921, 2355, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4922, 2356, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4923, 2357, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4924, 2357, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1350.0000', '', '450.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4925, 2358, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4926, 2358, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4927, 2359, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4928, 2359, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4929, 2359, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4930, 2359, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4931, 2359, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4932, 2359, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4933, 2359, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4934, 2359, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4935, 2360, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4936, 2360, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4937, 2360, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4938, 2360, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4939, 2361, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4940, 2362, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4941, 2362, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4942, 2362, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4943, 2363, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4944, 2363, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4945, 2364, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4946, 2364, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4947, 2365, 473, '21904700', 'Silver Shatin Small ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4948, 2365, 474, '45643281', 'Brasil Small ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4949, 2366, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4950, 2367, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4951, 2367, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4952, 2367, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4953, 2368, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4954, 2369, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4955, 2370, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4956, 2370, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4957, 2371, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4958, 2372, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4959, 2373, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4960, 2373, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4961, 2373, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4962, 2373, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4963, 2373, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4964, 2373, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4965, 2374, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4966, 2374, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4967, 2375, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4968, 2375, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4969, 2375, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4970, 2375, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4971, 2376, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4972, 2377, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4973, 2377, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4974, 2377, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4975, 2377, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4976, 2377, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4977, 2377, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4978, 2377, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4979, 2377, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4980, 2377, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4981, 2377, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4982, 2378, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4983, 2379, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4984, 2379, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4985, 2379, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4986, 2380, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4987, 2381, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4988, 2381, 484, '06524120', 'Niyon Pothos S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4989, 2381, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4990, 2381, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4991, 2382, 465, '86512066', 'Astrophytum Asteris Big', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4992, 2382, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4993, 2383, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4994, 2383, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4995, 2383, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4996, 2384, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4997, 2385, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4998, 2386, 98, '20607197', 'HARD CUTTER ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (4999, 2387, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5000, 2388, 475, '50561074', 'Silver lady Small', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5001, 2388, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5002, 2388, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5003, 2388, 238, '07455606', 'Seedling tools 4 pcs', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5004, 2389, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5005, 2389, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5006, 2389, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5007, 2389, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5008, 2389, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5009, 2389, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5010, 2390, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5011, 2391, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5012, 2391, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5013, 2391, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5014, 2391, 43, '28210704', 'PEPORIMA VERIEGATED', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5015, 2391, 465, '86512066', 'Astrophytum Asteris Big', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5016, 2391, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5017, 2391, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5018, 2391, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5019, 2391, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5020, 2392, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5021, 2392, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5022, 2393, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5030, 2396, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5028, 2396, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5029, 2396, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5026, 2395, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5027, 2395, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5031, 2397, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5032, 2398, 98, '20607197', 'HARD CUTTER ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5033, 2398, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5034, 2398, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5035, 2398, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5036, 2398, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5037, 2398, 392, '14849048', 'Green Pod Big', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5038, 2399, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5039, 2400, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5040, 2400, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5041, 2401, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5042, 2402, 83, '79775908', 'RESIN PLANTER C1', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5043, 2402, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5044, 2403, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5045, 2404, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5046, 2404, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5047, 2404, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5048, 2405, 392, '14849048', 'Green Pod Big', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5049, 2406, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5050, 2407, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5051, 2407, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5052, 2407, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5053, 2408, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5054, 2408, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5055, 2408, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5056, 2409, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5057, 2409, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5058, 2410, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5059, 2410, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5060, 2411, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5061, 2412, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5062, 2412, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5063, 2413, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5064, 2413, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '60.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5065, 2413, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5066, 2414, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5067, 2414, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5068, 2415, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5069, 2415, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5070, 2416, 184, '44306670', 'Burlemax Verigatted ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5071, 2417, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5072, 2417, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5073, 2417, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5074, 2417, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5075, 2417, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5076, 2417, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5077, 2418, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5078, 2418, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5079, 2418, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5080, 2418, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5081, 2418, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5082, 2419, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5083, 2419, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5084, 2420, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5085, 2420, 135, '38349643', 'ORCHID FOCUS GROW', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5086, 2420, 310, '19536640', 'Monostera Esquleta ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5087, 2420, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5088, 2420, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5089, 2421, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5090, 2421, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5091, 2421, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5092, 2422, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '7950.0000', '', '2650.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5093, 2422, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5094, 2422, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5095, 2422, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5096, 2422, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5097, 2422, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5098, 2422, 466, '17763342', 'Philodendron Dragon Lime ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5099, 2422, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5100, 2422, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5101, 2422, 467, '53203502', 'Monostera deliciosa big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5102, 2422, 446, '29217468', 'Scindupsus Platinum ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5103, 2422, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '300.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5104, 2422, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5105, 2422, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5106, 2422, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5107, 2422, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5108, 2422, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5109, 2422, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5110, 2422, 453, '93505738', 'small Trailing peoporima ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5111, 2422, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5112, 2422, 469, '23037669', 'Philo. Fat boy', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5113, 2423, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2800.0000', '', '200.0000', NULL, 2, 'Pcs', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5114, 2424, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5115, 2425, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5116, 2426, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5117, 2427, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5118, 2427, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5119, 2427, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5120, 2428, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5121, 2428, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5122, 2429, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5123, 2430, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5124, 2431, 469, '23037669', 'Philo. Fat boy', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5125, 2431, 433, '16510893', 'Philodendron Rungsum', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5126, 2431, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5127, 2431, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5128, 2432, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5129, 2432, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5130, 2432, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5131, 2433, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5132, 2433, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5133, 2433, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5134, 2434, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5135, 2434, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5136, 2434, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5137, 2434, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5138, 2435, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5139, 2436, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5140, 2436, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5141, 2437, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5142, 2438, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5143, 2439, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5144, 2439, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5145, 2440, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5146, 2441, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5147, 2442, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5148, 2443, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5149, 2443, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5150, 2443, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5151, 2443, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5152, 2444, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5153, 2445, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5154, 2446, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5155, 2447, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2800.0000', '', '200.0000', NULL, 2, 'Pcs', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5156, 2447, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5157, 2447, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5158, 2448, 239, '97108426', 'Euphorbia lectia ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5159, 2448, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5160, 2448, 34, '94599052', 'CEBU BLUE', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5161, 2448, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5162, 2448, 376, '44852135', 'Color stone 1kg', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5163, 2448, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5164, 2448, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5165, 2448, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5166, 2448, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5167, 2449, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5168, 2449, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5169, 2450, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5170, 2450, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5171, 2450, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5172, 2451, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5173, 2451, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5174, 2452, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5175, 2452, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5176, 2452, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5177, 2452, 436, '54948921', 'Philodendron Silver Sword', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5178, 2452, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2700.0000', '', '450.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5179, 2452, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5180, 2452, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5181, 2452, 323, '52372789', 'Philo. Nangaritense', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5182, 2452, 173, '63588432', 'Ring Of Fire ', 'standard', NULL, '6000.0000', '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5183, 2452, 188, '92625394', 'Florida Ghost Mint ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5184, 2452, 254, '31700219', 'Hoya 1.5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5185, 2453, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5186, 2453, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5187, 2453, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5188, 2453, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5189, 2453, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5190, 2453, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5191, 2453, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5192, 2453, 246, '64970785', 'Syngonium', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5193, 2454, 300, '27748537', 'Osmokot 13.13.13', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5194, 2454, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5195, 2454, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5196, 2455, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5197, 2456, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5198, 2456, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5199, 2456, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5200, 2457, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5201, 2458, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5202, 2459, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5203, 2459, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5204, 2460, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5205, 2460, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5206, 2461, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5207, 2461, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5208, 2461, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5209, 2461, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5210, 2462, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5211, 2463, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5212, 2463, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5213, 2463, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5214, 2464, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5215, 2464, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5216, 2464, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5217, 2465, 25, '84339014', 'MINI DENDROBIUM', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5218, 2465, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5219, 2465, 491, '88790984', 'Senseverai Local Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5220, 2465, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5221, 2466, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5222, 2466, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5223, 2466, 495, '91094211', 'Devil Back Bone', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5224, 2466, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5225, 2466, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5226, 2467, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5227, 2468, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5228, 2468, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5229, 2468, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5230, 2469, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5231, 2470, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '150.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5232, 2471, 211, '19735813', 'creamic color bowl ', 'standard', NULL, '350.0000', '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1750.0000', '', '350.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5233, 2471, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5234, 2471, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5235, 2471, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5236, 2471, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5237, 2471, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5238, 2472, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5239, 2472, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5240, 2472, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5241, 2472, 264, '63489717', 'African Violet', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5242, 2472, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5243, 2473, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5244, 2473, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5245, 2473, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5246, 2473, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5247, 2473, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5248, 2473, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5249, 2473, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5250, 2473, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5251, 2473, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5252, 2474, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5253, 2474, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5254, 2474, 86, '08010277', 'RESIN PLANTER K2', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5255, 2474, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5256, 2474, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5257, 2474, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5258, 2475, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5259, 2475, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5260, 2476, 495, '91094211', 'Devil Back Bone', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5261, 2477, 166, '36023208', 'Fern ', 'standard', NULL, '1600.0000', '1600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1600.0000', '', '1600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5262, 2478, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5263, 2478, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5264, 2479, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5265, 2480, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5266, 2480, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5267, 2481, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5268, 2481, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5269, 2481, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5270, 2481, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5271, 2481, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5272, 2482, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5273, 2482, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5274, 2483, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5275, 2483, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5276, 2484, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5277, 2484, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5278, 2484, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5279, 2485, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5280, 2486, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5281, 2487, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5282, 2487, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5283, 2488, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5284, 2488, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5285, 2488, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5286, 2489, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5287, 2490, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5288, 2490, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5289, 2491, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5290, 2491, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5291, 2492, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5292, 2492, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5293, 2493, 434, '57995031', 'Fern With Coco Shell', 'standard', NULL, '1500.0000', '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5294, 2493, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5295, 2493, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5296, 2494, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5297, 2494, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5298, 2494, 491, '88790984', 'Senseverai Local Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5299, 2495, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5300, 2495, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5301, 2495, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5302, 2496, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5303, 2496, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5304, 2497, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5305, 2498, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '1500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5306, 2498, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '7500.0000', '', '2500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5307, 2498, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5308, 2498, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5309, 2499, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5310, 2500, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5311, 2501, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5312, 2501, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5313, 2501, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5314, 2502, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5315, 2502, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5316, 2503, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5317, 2504, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5318, 2504, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5319, 2505, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5320, 2506, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5321, 2507, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5322, 2507, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5323, 2508, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5324, 2508, 33, '03006363', 'EPIPREMNUM AMPLISSIMUM SILVER', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5325, 2509, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5326, 2509, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5327, 2510, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5328, 2511, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5329, 2511, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5330, 2511, 473, '21904700', 'Silver Shatin Small ', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5331, 2511, 474, '45643281', 'Brasil Small ', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5332, 2511, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5333, 2511, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5334, 2511, 483, '08247109', 'Manjula S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5335, 2511, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5336, 2511, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5337, 2512, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5338, 2512, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5339, 2513, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5340, 2514, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5341, 2514, 491, '88790984', 'Senseverai Local Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5342, 2514, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5343, 2515, 188, '92625394', 'Florida Ghost Mint ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5344, 2516, 495, '91094211', 'Devil Back Bone', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5345, 2517, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5346, 2518, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5347, 2519, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5348, 2520, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5349, 2521, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5350, 2522, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5351, 2523, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5352, 2524, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4400.0000', '', '2200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5353, 2524, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5354, 2524, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5355, 2524, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5356, 2525, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5357, 2525, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5358, 2526, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5359, 2526, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5360, 2527, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5361, 2527, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5362, 2528, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5363, 2529, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5364, 2529, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5365, 2529, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5300.0000', '', '2650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5366, 2530, 221, '95442491', 'Scissor', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5367, 2531, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5368, 2531, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5369, 2531, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5370, 2532, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5371, 2532, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5372, 2533, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5373, 2533, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5374, 2533, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5375, 2534, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5376, 2535, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5377, 2536, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5378, 2537, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5379, 2537, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5380, 2538, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5381, 2538, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5382, 2538, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5383, 2539, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '12000.0000', '', '3000.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5384, 2540, 481, '21888825', 'SPAGHNUM MOSS newzealand', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5385, 2540, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5386, 2541, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5387, 2541, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5388, 2542, 38, '3107739', 'ZZ SMALL', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5389, 2542, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5390, 2542, 491, '88790984', 'Senseverai Local Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5391, 2542, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5392, 2543, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5393, 2543, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5394, 2543, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5395, 2544, 491, '88790984', 'Senseverai Local Big', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5396, 2545, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '2000.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5397, 2545, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5398, 2545, 491, '88790984', 'Senseverai Local Big', 'standard', NULL, '750.0000', '750.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '750.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5399, 2545, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5400, 2546, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5401, 2547, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5402, 2548, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5403, 2549, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5404, 2549, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5405, 2549, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5406, 2550, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5407, 2550, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5408, 2551, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5409, 2552, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5410, 2553, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5411, 2554, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5412, 2554, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5413, 2555, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5414, 2555, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5415, 2556, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5416, 2556, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5417, 2557, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5418, 2557, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5419, 2557, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5420, 2557, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5421, 2557, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5422, 2558, 32, '53236471', 'PHILODENDRON CHERRY RED', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5423, 2558, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5424, 2558, 461, '67667255', 'Senseverai Hahnii Small', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5425, 2558, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5426, 2558, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5427, 2558, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5428, 2558, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5429, 2559, 489, '10019321', 'Flower vase M', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5430, 2559, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5431, 2559, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5432, 2559, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5433, 2560, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5434, 2561, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5435, 2562, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '10.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '50.0000', NULL, 2, 'Pcs', '10.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5436, 2562, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5437, 2562, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5438, 2562, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5439, 2562, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5440, 2562, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5441, 2562, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5442, 2562, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5443, 2562, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5444, 2562, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5445, 2562, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5446, 2562, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5447, 2563, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5448, 2563, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5449, 2563, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5450, 2564, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5451, 2564, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5452, 2564, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5453, 2565, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5454, 2565, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5455, 2566, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5456, 2567, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5457, 2567, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5458, 2568, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5459, 2569, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5460, 2570, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5461, 2570, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5462, 2570, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5463, 2570, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5464, 2570, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5465, 2570, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5466, 2570, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5467, 2570, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5468, 2570, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5469, 2570, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5470, 2570, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5471, 2571, 134, '71760053', 'MIRACLE GRO NPK 1200GM', 'standard', NULL, '2800.0000', '2800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2800.0000', '', '2800.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5472, 2571, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5473, 2572, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5474, 2573, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5475, 2574, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5476, 2574, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5477, 2575, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5478, 2575, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5479, 2575, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5480, 2576, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5481, 2577, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5482, 2578, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5483, 2579, 213, '34176921', 'Air plant Hanging Stand', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5484, 2579, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5485, 2580, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5486, 2580, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5487, 2581, 211, '19735813', 'creamic color bowl ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5488, 2582, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5489, 2582, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5490, 2583, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5491, 2584, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5492, 2584, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5493, 2585, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5494, 2586, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5495, 2587, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5496, 2588, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5497, 2588, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5498, 2589, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5499, 2590, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5500, 2591, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5501, 2591, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5502, 2591, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5503, 2591, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5504, 2591, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5505, 2591, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5506, 2591, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5507, 2591, 347, '45927746', 'glass vase ', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5508, 2592, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5509, 2592, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5510, 2593, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5511, 2594, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5512, 2595, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5513, 2595, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5514, 2595, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5515, 2595, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5516, 2596, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5517, 2597, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5518, 2597, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5519, 2598, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5520, 2598, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5521, 2598, 131, '57685758', 'FERTILISER BOX', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5522, 2598, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5523, 2598, 236, '30356263', 'Plant Tag hanging ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5524, 2599, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5525, 2599, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5526, 2600, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5527, 2601, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5528, 2601, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5529, 2602, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5530, 2602, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5531, 2602, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5532, 2602, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5533, 2602, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5534, 2602, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5535, 2602, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5536, 2603, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5537, 2603, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5538, 2603, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5539, 2603, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5540, 2603, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5541, 2604, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5542, 2604, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5543, 2604, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5544, 2605, 443, '27418502', 'Variegated ZZ', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5545, 2605, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5546, 2605, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5547, 2605, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5548, 2605, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5549, 2605, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5550, 2605, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5551, 2605, 211, '19735813', 'creamic color bowl ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5552, 2605, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5553, 2606, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5554, 2606, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5555, 2607, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5556, 2607, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5557, 2607, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5558, 2608, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5559, 2608, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5560, 2608, 496, '27165880', 'Caktus Zimno S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5561, 2609, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5562, 2609, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5563, 2609, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5564, 2609, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5565, 2609, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5566, 2609, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5567, 2610, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5568, 2610, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5569, 2610, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5570, 2610, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5571, 2610, 16, '65687548', 'SENSEVERIA BONCEL', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5572, 2610, 207, '31471473', 'senseveria whalfin', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5573, 2611, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5574, 2611, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5575, 2611, 497, '82833386', 'Caktus Zimno M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5576, 2611, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5577, 2611, 352, '55296642', 'Color stone 500g', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5578, 2611, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5579, 2611, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5580, 2611, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5581, 2611, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5582, 2611, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5583, 2612, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5584, 2613, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5585, 2613, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5586, 2613, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5588, 2615, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5589, 2616, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5590, 2616, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '100.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5591, 2616, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '50.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5592, 2616, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5593, 2616, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5594, 2616, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5595, 2616, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5596, 2617, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5597, 2618, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5598, 2618, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5599, 2618, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5600, 2618, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5601, 2619, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5602, 2620, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5603, 2621, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5604, 2622, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5605, 2623, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5606, 2624, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5607, 2624, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5608, 2624, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5609, 2625, 254, '31700219', 'Hoya 1.5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5610, 2625, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5611, 2625, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5612, 2626, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5613, 2627, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5614, 2628, 181, '50278507', 'lava brast', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5615, 2629, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5616, 2630, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5617, 2630, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5618, 2631, 238, '07455606', 'Seedling tools 4 pcs', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5619, 2632, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5620, 2632, 181, '50278507', 'lava brast', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5621, 2632, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5622, 2633, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5623, 2633, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5624, 2634, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5625, 2635, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5626, 2635, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5627, 2636, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5628, 2637, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5629, 2637, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5630, 2637, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5631, 2637, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5632, 2637, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5633, 2638, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '450.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5634, 2639, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5635, 2639, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5636, 2640, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5637, 2640, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5638, 2641, 86, '08010277', 'RESIN PLANTER K2', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5639, 2642, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5640, 2643, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5641, 2643, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5642, 2644, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5643, 2645, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '500.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5644, 2645, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5645, 2645, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5646, 2646, 439, '83290543', 'Raphidophora Hay Big ', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5647, 2646, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5648, 2646, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5649, 2646, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5650, 2646, 449, '27598414', 'Shangrila Big ', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5651, 2646, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5652, 2646, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5653, 2646, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5654, 2646, 256, '06157895', 'Hoya 3', 'standard', NULL, '3000.0000', '3000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '3000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5655, 2646, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5656, 2646, 490, '96878912', 'Niyon Pothos Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5657, 2647, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5658, 2647, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5659, 2647, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5660, 2648, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5661, 2648, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5662, 2648, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5663, 2649, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5664, 2650, 311, '02531031', 'Monostera Deliciosa', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5665, 2650, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5666, 2651, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5667, 2652, 496, '27165880', 'Caktus Zimno S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5668, 2652, 86, '08010277', 'RESIN PLANTER K2', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5669, 2653, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5670, 2654, 489, '10019321', 'Flower vase M', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5671, 2655, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5672, 2655, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5673, 2656, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5674, 2656, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5675, 2657, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5676, 2658, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5677, 2658, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5678, 2658, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5679, 2658, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5680, 2658, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5681, 2659, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5682, 2659, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1700.0000', '', '850.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5683, 2659, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5684, 2659, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5685, 2659, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5686, 2660, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5687, 2661, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5688, 2661, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5689, 2661, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5690, 2661, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5691, 2662, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5692, 2663, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5693, 2663, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5694, 2664, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5695, 2664, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5696, 2665, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5697, 2666, 384, '91229260', 'BROMELIAD THAI S', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5698, 2666, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5699, 2666, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5700, 2667, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5701, 2668, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5702, 2669, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5703, 2669, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5704, 2669, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5705, 2669, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5706, 2669, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5707, 2669, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5708, 2669, 505, '98909806', 'Toy 750', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5709, 2669, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5710, 2669, 90, '87334901', 'RESIN PPANTER N4', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5711, 2669, 317, '49073858', 'Snow Queen ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5712, 2669, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5713, 2669, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5714, 2670, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5715, 2670, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5716, 2670, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5717, 2670, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5718, 2671, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '300.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5719, 2671, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5720, 2672, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5721, 2672, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5722, 2672, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5723, 2673, 498, '04415101', 'Lucky Bamboo Verigated Sprial big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5724, 2674, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5725, 2675, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5726, 2675, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5727, 2675, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5728, 2676, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5729, 2677, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5730, 2677, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5731, 2677, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5732, 2678, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5733, 2679, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5734, 2679, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5735, 2680, 381, '41008445', 'Essential Oil', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5736, 2681, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5737, 2682, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5738, 2682, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5739, 2682, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5740, 2683, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5741, 2684, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5742, 2685, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5743, 2686, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5744, 2687, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5745, 2688, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5746, 2689, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5747, 2690, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5748, 2690, 14, '27506698', 'DICHIDIA MELON', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5749, 2690, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5750, 2691, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5751, 2692, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5752, 2693, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5753, 2694, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5754, 2695, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5755, 2696, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5756, 2696, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5757, 2697, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5758, 2697, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5759, 2697, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5760, 2698, 338, '56488698', 'Moon Cactus Red', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5761, 2698, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5762, 2699, 324, '93521508', 'Philo. Billietiae', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5763, 2699, 292, '19851098', 'Stylish Stripe Planter b', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5765, 2701, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5766, 2702, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5767, 2703, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5768, 2703, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5769, 2703, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '750.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5770, 2703, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5771, 2703, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5772, 2703, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5773, 2703, 153, '63407332', 'RATTAN HANGING POT', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5774, 2703, 447, '72901803', 'Philo Tortum Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5775, 2703, 188, '92625394', 'Florida Ghost Mint ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5776, 2703, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5777, 2703, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5778, 2703, 322, '56110482', 'Philo. Splendid', 'standard', NULL, '6000.0000', '6000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '6000.0000', '', '6000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5779, 2703, 440, '91750949', 'Senseveria Boncel Big ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5780, 2703, 432, '92521439', 'Raphidoohora Hayii verg. ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5781, 2703, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5782, 2703, 325, '25522346', 'Pink princess', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5783, 2703, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5784, 2703, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5785, 2703, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '100.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5786, 2703, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5787, 2703, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5788, 2703, 316, '51031679', 'Philo. pedatum', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5789, 2704, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5790, 2704, 310, '19536640', 'Monostera Esquleta ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5791, 2704, 438, '00947711', 'Philodendron mayoi', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5792, 2705, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5793, 2706, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5794, 2707, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5795, 2707, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5796, 2707, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5797, 2708, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5798, 2708, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5799, 2708, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5800, 2708, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5801, 2708, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5802, 2708, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5803, 2708, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5804, 2709, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5805, 2710, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5806, 2711, 446, '29217468', 'Scindupsus Platinum ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5807, 2711, 470, '62507647', 'Global Green', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5808, 2712, 188, '92625394', 'Florida Ghost Mint ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5809, 2713, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5810, 2714, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5811, 2714, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5812, 2714, 423, '57636814', 'Hanging Bird Thai', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5813, 2715, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5814, 2715, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5815, 2715, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5816, 2715, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5817, 2716, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5818, 2717, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5819, 2718, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5820, 2719, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5821, 2720, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5822, 2720, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5823, 2721, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5824, 2722, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5825, 2722, 484, '06524120', 'Niyon Pothos S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5826, 2722, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5827, 2722, 483, '08247109', 'Manjula S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5828, 2722, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5829, 2722, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '350.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5830, 2723, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5831, 2723, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5832, 2723, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5833, 2723, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5834, 2724, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5835, 2724, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5836, 2725, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5837, 2726, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5838, 2726, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5839, 2727, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5840, 2727, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5841, 2727, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5842, 2727, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5843, 2728, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5844, 2728, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5845, 2729, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5846, 2730, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5847, 2731, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5848, 2732, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5849, 2732, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5850, 2733, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5851, 2734, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5852, 2735, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5853, 2736, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5854, 2737, 278, '45978696', 'Concreat pot M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5855, 2738, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5856, 2738, 132, '51287048', 'SMALL BELCHA ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5857, 2738, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5858, 2738, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5859, 2739, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5860, 2740, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5861, 2741, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5862, 2742, 446, '29217468', 'Scindupsus Platinum ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5863, 2742, 520, '48984898', 'Milk Confeti', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5864, 2742, 448, '93803138', 'Syngonium Tricolor', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5865, 2742, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5866, 2743, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5867, 2743, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5868, 2744, 143, '89351267', 'OSMOCOTE 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5869, 2744, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5870, 2745, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5871, 2745, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3600.0000', '', '900.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5872, 2745, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3150.0000', '', '350.0000', NULL, 2, 'Pcs', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5873, 2745, 480, '38637086', 'Senseveria Beauty Queen ', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5874, 2745, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5875, 2746, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5876, 2746, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5877, 2747, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5878, 2748, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5879, 2749, 519, '57249590', 'Ruber Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5880, 2749, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5881, 2749, 534, '57525691', 'Lucky Bamboo Spiral', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5882, 2750, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5883, 2750, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5884, 2751, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5885, 2752, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5886, 2753, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5887, 2753, 522, '68056588', 'Green Pot 4inchi', 'standard', NULL, '70.0000', '70.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '280.0000', '', '70.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5888, 2753, 132, '51287048', 'SMALL BELCHA ', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5889, 2753, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5890, 2754, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5891, 2754, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5892, 2754, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5893, 2754, 526, '08521390', 'Thai Wood Item 04', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5894, 2755, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '60.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5895, 2756, 533, '18728118', 'Deshi Local Mix', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5896, 2757, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5897, 2757, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5898, 2757, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5899, 2757, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5900, 2757, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5901, 2758, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5902, 2759, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5903, 2760, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5904, 2761, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5916, 2764, 533, '18728118', 'Deshi Local Mix', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5913, 2764, 313, '22361323', 'Aglonema 2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5914, 2764, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5915, 2764, 489, '10019321', 'Flower vase M', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5911, 2763, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5912, 2763, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5917, 2764, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5918, 2765, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5919, 2766, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5920, 2767, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5921, 2767, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5922, 2768, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5923, 2769, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5924, 2769, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5925, 2769, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5945, 2777, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '11.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4400.0000', '', '400.0000', NULL, 2, 'Pcs', '11.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5938, 2776, 534, '57525691', 'Lucky Bamboo Spiral', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5939, 2776, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5940, 2777, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5941, 2777, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '360.0000', '', '60.0000', NULL, 3, 'KG', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5942, 2777, 534, '57525691', 'Lucky Bamboo Spiral', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5943, 2777, 66, '77547002', 'DICHIDIA BUBLE ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5944, 2777, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5934, 2772, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5935, 2773, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5936, 2774, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5937, 2775, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5946, 2778, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5947, 2778, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5948, 2779, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5949, 2780, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5950, 2781, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5951, 2782, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5952, 2783, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '60.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5953, 2784, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5954, 2785, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5955, 2786, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5956, 2787, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5957, 2788, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5958, 2789, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5959, 2790, 534, '57525691', 'Lucky Bamboo Spiral', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5960, 2791, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5961, 2791, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5962, 2792, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5963, 2793, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5964, 2794, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5965, 2795, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5966, 2796, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5967, 2796, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5968, 2797, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5969, 2798, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5970, 2799, 487, '26757569', 'Flower vase S', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5971, 2800, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5972, 2800, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5973, 2801, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5974, 2802, 466, '17763342', 'Philodendron Dragon Lime ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5975, 2802, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5976, 2803, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5977, 2804, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5978, 2804, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5979, 2805, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5980, 2806, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5981, 2807, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5982, 2807, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5983, 2808, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5984, 2808, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5985, 2809, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5986, 2809, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5987, 2810, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5988, 2811, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5989, 2811, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5990, 2812, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5991, 2812, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5992, 2812, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5993, 2812, 522, '68056588', 'Green Pot 4inchi', 'standard', NULL, '70.0000', '70.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '210.0000', '', '70.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5994, 2812, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5995, 2812, 537, '20811261', 'Osmokot Box 5pcs', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5996, 2812, 496, '27165880', 'Caktus Zimno S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5997, 2813, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5998, 2814, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (5999, 2814, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6000, 2815, 487, '26757569', 'Flower vase S', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6001, 2816, 526, '08521390', 'Thai Wood Item 04', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6002, 2817, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6003, 2818, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6004, 2819, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6005, 2820, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6006, 2821, 306, '03398645', 'Ruber', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6007, 2821, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6008, 2821, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6009, 2821, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6010, 2822, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6011, 2823, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6012, 2824, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '250.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6013, 2825, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6014, 2825, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6015, 2825, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6016, 2826, 104, '44690436', 'TERRARIUM TOOLS 8 PCS ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6017, 2826, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6018, 2826, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6019, 2827, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6020, 2828, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6021, 2829, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6022, 2829, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6023, 2829, 484, '06524120', 'Niyon Pothos S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6024, 2830, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6025, 2830, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6026, 2830, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6027, 2830, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '60.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6028, 2830, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6029, 2830, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '300.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6030, 2830, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6031, 2830, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6032, 2830, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6033, 2830, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6034, 2830, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6035, 2830, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6036, 2831, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6037, 2832, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6038, 2832, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6039, 2832, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6040, 2832, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6041, 2833, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6042, 2834, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6043, 2834, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6044, 2834, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 3, 'KG', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6045, 2835, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6046, 2836, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6047, 2836, 288, '22783870', 'Artistic long Planter B', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6048, 2836, 207, '31471473', 'senseveria whalfin', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6049, 2837, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6050, 2837, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6051, 2838, 521, '67089630', 'Garden Pod L', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6052, 2838, 392, '14849048', 'Garden Pod M', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6053, 2838, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6054, 2838, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6055, 2839, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6056, 2839, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6057, 2840, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6058, 2841, 130, '97226489', 'GARDEN APROAN', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6059, 2841, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6060, 2841, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6061, 2841, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6062, 2842, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6063, 2843, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6064, 2844, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6065, 2845, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6066, 2846, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6067, 2847, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6068, 2847, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6069, 2848, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6070, 2848, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6071, 2848, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6072, 2848, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6073, 2848, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6074, 2849, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6075, 2849, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6076, 2850, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6077, 2850, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6078, 2850, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6079, 2850, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6080, 2851, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6081, 2851, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6082, 2852, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '40.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6083, 2852, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '50.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6084, 2852, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '100.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6085, 2852, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6086, 2853, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6087, 2854, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6088, 2854, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6089, 2854, 341, '02686278', 'Monostera Adinsoni', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6090, 2854, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6091, 2854, 447, '72901803', 'Philo Tortum Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6092, 2854, 324, '93521508', 'Philo. Billietiae', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6093, 2854, 536, '96619146', 'Burlemax', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6094, 2854, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6095, 2854, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '850.0000', '850.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1700.0000', '', '850.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6096, 2854, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6097, 2854, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6098, 2854, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6099, 2854, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6100, 2855, 325, '25522346', 'Pink princess', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6101, 2855, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6102, 2856, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6103, 2856, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6104, 2857, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6105, 2857, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6106, 2858, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2650.0000', '', '2650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6107, 2859, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6108, 2859, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6109, 2859, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6110, 2860, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6111, 2861, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6112, 2861, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6113, 2861, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6114, 2862, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6115, 2862, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6116, 2863, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6117, 2864, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6118, 2865, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6119, 2866, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6120, 2867, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6121, 2867, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6122, 2867, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6123, 2868, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6124, 2868, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6125, 2869, 519, '57249590', 'Ruber Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6126, 2869, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6127, 2869, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6128, 2870, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6129, 2871, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6130, 2871, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6131, 2872, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6132, 2872, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '320.0000', '', '160.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6133, 2872, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6134, 2872, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '80.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6135, 2872, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6136, 2872, 272, '85526942', 'Granular Npk 8-24-24', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6137, 2872, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '60.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6138, 2873, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6139, 2874, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6140, 2874, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6141, 2875, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6142, 2876, 35, '81983767', 'MONOSTERA PERU', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6143, 2876, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6144, 2877, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6145, 2878, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6146, 2879, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6147, 2880, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6148, 2881, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6149, 2882, 487, '26757569', 'Flower vase S', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6150, 2883, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6154, 2886, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6153, 2885, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6155, 2886, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6156, 2886, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6157, 2886, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6158, 2886, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6159, 2886, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '60.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6160, 2887, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6161, 2888, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6162, 2889, 534, '57525691', 'Lucky Bamboo Spiral', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6163, 2890, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6164, 2890, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6165, 2891, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6166, 2892, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6167, 2892, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6168, 2893, 537, '20811261', 'Osmokot Box 5pcs', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6169, 2894, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6170, 2895, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6171, 2896, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6172, 2897, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6173, 2898, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6174, 2899, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6175, 2900, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6176, 2901, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6177, 2901, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6178, 2902, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6179, 2902, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6180, 2903, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6181, 2904, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6182, 2905, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6183, 2906, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6184, 2907, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6185, 2907, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6186, 2907, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6187, 2907, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6188, 2907, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6189, 2907, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6190, 2908, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6191, 2909, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6192, 2910, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6193, 2910, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '60.0000', NULL, 3, 'KG', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6194, 2911, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6195, 2912, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6196, 2913, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6197, 2914, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6198, 2914, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6199, 2914, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6200, 2915, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6201, 2916, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6202, 2916, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6203, 2917, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6204, 2918, 312, '65313386', 'Aglonema 1', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6205, 2919, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6206, 2919, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6207, 2920, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6208, 2921, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6209, 2922, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6210, 2923, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6211, 2923, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6212, 2924, 238, '07455606', 'Seedling tools 4 pcs', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6213, 2925, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6214, 2926, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6215, 2926, 381, '41008445', 'Essential Oil', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6216, 2926, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6217, 2927, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6218, 2928, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6219, 2928, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6220, 2929, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6221, 2930, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6222, 2930, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6223, 2930, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6224, 2930, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6225, 2930, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6226, 2931, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6227, 2931, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6228, 2932, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6229, 2932, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6230, 2933, 211, '19735813', 'creamic color bowl ', 'standard', NULL, '350.0000', '350.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '350.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6231, 2934, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6232, 2934, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6233, 2935, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6234, 2936, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6235, 2936, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6236, 2936, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6237, 2937, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6238, 2937, 446, '29217468', 'Scindupsus Platinum ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6239, 2937, 432, '92521439', 'Raphidoohora Hayii verg. ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6240, 2938, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6241, 2939, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6242, 2940, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '750.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6243, 2940, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6244, 2940, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6245, 2941, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6246, 2942, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6247, 2943, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6248, 2944, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6249, 2945, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6250, 2946, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6251, 2947, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6252, 2947, 475, '50561074', 'Silver lady Small', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6253, 2947, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6254, 2948, 355, '89030971', 'philo Brazil s', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6255, 2948, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6256, 2949, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6257, 2950, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6258, 2951, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6259, 2952, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6260, 2953, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6261, 2954, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6262, 2955, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6263, 2956, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6264, 2956, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6265, 2957, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6266, 2957, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6267, 2957, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6268, 2958, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6269, 2958, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6270, 2959, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6271, 2959, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6272, 2959, 392, '14849048', 'Garden Pod M', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6273, 2960, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6274, 2961, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6275, 2962, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6276, 2963, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6277, 2964, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6278, 2965, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6279, 2965, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6280, 2965, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6281, 2966, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6282, 2966, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6283, 2966, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6284, 2966, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6285, 2967, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6286, 2968, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6287, 2969, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6288, 2969, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6289, 2969, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6290, 2969, 172, '75049629', 'AmDrium Zippelianum', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6291, 2969, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6292, 2970, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6293, 2971, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6294, 2972, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6295, 2973, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6296, 2973, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6297, 2974, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6298, 2975, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6299, 2976, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6300, 2976, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6301, 2977, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6302, 2978, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6303, 2978, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6304, 2978, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6305, 2978, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6306, 2979, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6307, 2980, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6308, 2980, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6309, 2980, 497, '82833386', 'Caktus Zimno M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6310, 2981, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6311, 2981, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6312, 2982, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6313, 2982, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6314, 2983, 561, '76839694', 'Onchidium ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6315, 2983, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6316, 2984, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6317, 2984, 567, '13455777', 'Funkiana Clump ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6318, 2984, 526, '08521390', 'Thai Wood Item 04', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6319, 2984, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6320, 2984, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6321, 2984, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6322, 2984, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6323, 2984, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6324, 2984, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6325, 2984, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6326, 2985, 566, '69521248', 'philodendron alternans', 'standard', NULL, '7500.0000', '7500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '7500.0000', '', '7500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6329, 2987, 533, '18728118', 'Deshi Local Mix', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6330, 2988, 375, '75823196', 'Humidifier & Aroma Dufuser Big', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6331, 2989, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6332, 2989, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6333, 2990, 407, '23661246', 'Thai NPK 21-21-21', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6334, 2990, 406, '55901923', 'Thai NPK 10-52-17', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6335, 2990, 343, '37152007', 'Snail Killer', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6336, 2990, 408, '03054245', 'Alpha Omega Bloom', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6337, 2990, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6338, 2990, 236, '30356263', 'Plant Tag hanging ', 'standard', NULL, '200.0000', '200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '200.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6339, 2990, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6340, 2991, 561, '76839694', 'Onchidium ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6341, 2991, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6342, 2991, 120, '69110056', 'PLANT TAG MISSILE', 'standard', NULL, '7.0000', '7.0000', '100.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '7.0000', NULL, 2, 'Pcs', '100.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6343, 2991, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6344, 2992, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6345, 2993, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6346, 2993, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6347, 2993, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6348, 2993, 533, '18728118', 'Deshi Local Mix', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6349, 2993, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6350, 2993, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6351, 2993, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6352, 2993, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6353, 2993, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6354, 2993, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6355, 2993, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6356, 2993, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6357, 2994, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6358, 2995, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6359, 2995, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6360, 2995, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6361, 2995, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6362, 2995, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6363, 2995, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6364, 2995, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6365, 2995, 521, '67089630', 'Garden Pod L', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6366, 2995, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6367, 2995, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6368, 2995, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6369, 2995, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6370, 2995, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6371, 2996, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6372, 2997, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6373, 2997, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6374, 2997, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6375, 2997, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6376, 2997, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6377, 2997, 392, '14849048', 'Garden Pod M', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6378, 2997, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6379, 2997, 381, '41008445', 'Essential Oil', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6380, 2997, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6381, 2997, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6382, 2997, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6383, 2998, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6384, 2998, 494, '41549189', 'Aglonema 8', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6385, 2999, 487, '26757569', 'Flower vase S', 'standard', NULL, '550.0000', '550.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '550.0000', '', '550.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6386, 3000, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6387, 3000, 567, '13455777', 'Funkiana Clump ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6388, 3000, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6389, 3000, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6390, 3000, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6391, 3000, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6392, 3000, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6393, 3000, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6394, 3000, 560, '72460639', 'Cylogena ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6395, 3000, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6396, 3000, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6397, 3000, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6398, 3000, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6399, 3000, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6400, 3001, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6401, 3001, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '80.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6402, 3001, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6403, 3001, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6404, 3001, 505, '98909806', 'Toy 750', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6405, 3001, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6406, 3001, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6407, 3002, 305, '42248228', 'Black zz', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6408, 3002, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6409, 3002, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6410, 3002, 560, '72460639', 'Cylogena ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6411, 3002, 489, '10019321', 'Flower vase M', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6412, 3002, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6413, 3002, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6414, 3002, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6415, 3002, 388, '87398804', 'Zen Pot Tall Metalica M', 'standard', NULL, '850.0000', '850.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '850.0000', '', '850.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6416, 3002, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6417, 3002, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6418, 3002, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6419, 3002, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6420, 3002, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6421, 3003, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6422, 3003, 428, '53896849', 'Aglonema 6', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6423, 3003, 70, '98281106', 'VANDA ORCHID ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6424, 3003, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6425, 3004, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6426, 3004, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6427, 3005, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6428, 3005, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6429, 3005, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6430, 3006, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6431, 3006, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6432, 3006, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6433, 3006, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6434, 3006, 497, '82833386', 'Caktus Zimno M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6435, 3006, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6436, 3006, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6437, 3006, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6438, 3007, 115, '83904738', 'TIE RIBON', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6439, 3007, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6440, 3007, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6441, 3007, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6442, 3007, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6443, 3007, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6444, 3007, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6445, 3007, 381, '41008445', 'Essential Oil', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6446, 3007, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6447, 3007, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6448, 3007, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6449, 3007, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6450, 3007, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6451, 3008, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6452, 3008, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6453, 3008, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6454, 3008, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6455, 3008, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6456, 3008, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6457, 3008, 483, '08247109', 'Manjula S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6458, 3009, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6459, 3010, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6460, 3010, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6461, 3010, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6462, 3010, 403, '10498681', 'Air plant Ball ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6463, 3011, 521, '67089630', 'Garden Pod L', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6464, 3011, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6465, 3011, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6466, 3011, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6467, 3012, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6468, 3012, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6469, 3012, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6470, 3013, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '500.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6471, 3013, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6472, 3013, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6473, 3013, 475, '50561074', 'Silver lady Small', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6474, 3013, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6475, 3013, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6476, 3014, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6477, 3014, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6478, 3014, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6479, 3014, 495, '91094211', 'Devil Back Bone', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6480, 3015, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6481, 3015, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6482, 3015, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6483, 3015, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6484, 3015, 211, '19735813', 'creamic color bowl ', 'standard', NULL, '350.0000', '350.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '350.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6485, 3015, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6486, 3015, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6487, 3015, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6488, 3015, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6489, 3016, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '300.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6490, 3016, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6491, 3016, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6492, 3016, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1750.0000', '', '350.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6493, 3016, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6494, 3016, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6495, 3016, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6496, 3016, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6497, 3016, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6498, 3016, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '100.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6499, 3016, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6500, 3016, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6501, 3017, 22, '01402428', 'BROMELIAD THAI', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6502, 3017, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6503, 3017, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6504, 3017, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6505, 3017, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6506, 3017, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6507, 3017, 559, '35988906', 'Philo melanocrysum Big', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6508, 3018, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6509, 3018, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6510, 3018, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6511, 3018, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6512, 3018, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6513, 3018, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6514, 3018, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6515, 3018, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '1250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6516, 3019, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6517, 3019, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6518, 3020, 557, '73192175', 'Scindupsis Silver Cloud', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6519, 3021, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6520, 3021, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6521, 3021, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6522, 3021, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6523, 3021, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6524, 3021, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6525, 3021, 199, '91200856', 'Lucky Bamboo 3 step', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6526, 3021, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1300.0000', '', '650.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6527, 3021, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6528, 3021, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6529, 3021, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6530, 3021, 380, '75829195', 'Siko 100ml', 'standard', NULL, '190.0000', '190.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '190.0000', '', '190.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6531, 3022, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6532, 3022, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6533, 3023, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6534, 3023, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6535, 3023, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6536, 3024, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6537, 3024, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6538, 3024, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6539, 3024, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6540, 3024, 315, '27100647', 'Aglonema 4', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6541, 3024, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6542, 3024, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6543, 3024, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6544, 3024, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6545, 3024, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6546, 3024, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6547, 3024, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6548, 3025, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6549, 3025, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6550, 3026, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6551, 3026, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6552, 3026, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6553, 3026, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6554, 3026, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6555, 3026, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6556, 3026, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6557, 3026, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6558, 3026, 216, '49524419', 'RG Mug', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6559, 3026, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6560, 3026, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6561, 3026, 521, '67089630', 'Garden Pod L', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6562, 3026, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6563, 3026, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6564, 3026, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6593, 3029, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6592, 3029, 499, '56022994', 'Lucky Bamboo Verigated S', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6591, 3029, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6590, 3028, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6589, 3028, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '360.0000', '', '60.0000', NULL, 3, 'KG', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6588, 3028, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6587, 3028, 572, '83271839', 'Key Ring', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6586, 3028, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6585, 3028, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6584, 3028, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6583, 3028, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6582, 3028, 36, '41780961', 'SYNGONIUM RED ARROW', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6581, 3028, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6580, 3028, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6594, 3029, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6595, 3029, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6596, 3030, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '300.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6597, 3031, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6598, 3031, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6599, 3032, 96, '26699468', 'MIRACLE GRO PRUNING SHEARS', 'standard', NULL, '1250.0000', '1250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '1250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6600, 3032, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6601, 3032, 114, '36957565', 'GRAFTING TAP', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6602, 3032, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6603, 3032, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6604, 3033, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6605, 3034, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6606, 3035, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6607, 3036, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6608, 3037, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6609, 3037, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6610, 3037, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6611, 3038, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6612, 3039, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', 'standard', NULL, '1150.0000', '1150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2300.0000', '', '1150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6613, 3039, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6614, 3040, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6615, 3041, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6616, 3041, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6617, 3042, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6618, 3042, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6619, 3042, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6620, 3042, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6621, 3042, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6622, 3043, 121, '83740228', 'IRON BELCHA', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6623, 3043, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '320.0000', '', '160.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6624, 3043, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6625, 3043, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6626, 3043, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6627, 3044, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6628, 3044, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6629, 3045, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6630, 3046, 198, '44272783', 'Philodendron Red Emarland', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6631, 3046, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6632, 3046, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6633, 3047, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6634, 3048, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6635, 3049, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6636, 3050, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6637, 3051, 36, '41780961', 'SYNGONIUM RED ARROW', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6638, 3051, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6639, 3051, 105, '51600376', 'GLOVES WITH CLAWS', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6640, 3051, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6641, 3052, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6642, 3052, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6643, 3053, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6644, 3053, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6645, 3054, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6646, 3055, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6647, 3055, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6648, 3056, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6649, 3056, 212, '20024744', 'Ceramic Bowl Small', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6650, 3056, 206, '03630608', 'Senseveria Drwaf Thai', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6651, 3057, 484, '06524120', 'Niyon Pothos S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6652, 3057, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6653, 3057, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6654, 3057, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6655, 3058, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6656, 3059, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6657, 3060, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6658, 3061, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6659, 3062, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6660, 3062, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6661, 3062, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6662, 3062, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6664, 3064, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6665, 3065, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6666, 3066, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6667, 3067, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6668, 3068, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6669, 3068, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6670, 3069, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6671, 3069, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6672, 3070, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6673, 3070, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6674, 3071, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6675, 3072, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6676, 3073, 170, '52762464', 'Tetraspharma', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6677, 3073, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6678, 3074, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '300.0000', NULL, 2, 'Pcs', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6679, 3075, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6680, 3076, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6681, 3077, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6682, 3078, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6683, 3079, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6684, 3079, 295, '45464062', 'Uv Firenze Wide Planter', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6685, 3080, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6686, 3081, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6687, 3082, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6688, 3082, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6689, 3082, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6690, 3082, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6691, 3083, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6692, 3083, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6693, 3084, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6694, 3085, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6695, 3085, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6696, 3085, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6697, 3085, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6698, 3085, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6699, 3085, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6700, 3085, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6701, 3086, 524, '74056003', 'Thai Wood Item 02', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6702, 3086, 528, '57790873', 'Thai Wood Item 06', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6703, 3086, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6704, 3086, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6705, 3086, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6706, 3086, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6707, 3087, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6708, 3088, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6709, 3089, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6710, 3089, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6711, 3090, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6712, 3090, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6713, 3091, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6714, 3092, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6715, 3093, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6716, 3093, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6717, 3094, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6718, 3095, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6719, 3096, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6720, 3097, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6721, 3097, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6722, 3097, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6723, 3097, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6724, 3097, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6725, 3097, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6726, 3097, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6727, 3098, 473, '21904700', 'Silver Shatin Small ', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6728, 3098, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6729, 3098, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6730, 3098, 55, '00297348', 'BIG PHILODENDRON', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6731, 3099, 49, '21457857', 'PHILODENDRON BIRKIN', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6732, 3100, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6733, 3101, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6734, 3101, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6735, 3102, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6736, 3103, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6737, 3104, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6738, 3105, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6739, 3106, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6740, 3106, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6741, 3107, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6742, 3107, 97, '84986835', 'SHELLERY CARBON PRUNER ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6743, 3108, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6744, 3109, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6745, 3109, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '200.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6746, 3109, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6747, 3109, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6748, 3109, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6749, 3109, 475, '50561074', 'Silver lady Small', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6750, 3109, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6751, 3109, 522, '68056588', 'Green Pot 4inchi', 'standard', NULL, '70.0000', '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '70.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6752, 3110, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6753, 3111, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6754, 3111, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6755, 3112, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6756, 3112, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6757, 3113, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6758, 3113, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6759, 3113, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6760, 3114, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6761, 3114, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6762, 3114, 572, '83271839', 'Key Ring', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6763, 3114, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6764, 3115, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6765, 3115, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6766, 3116, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6767, 3117, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6768, 3118, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6769, 3119, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6770, 3120, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6771, 3120, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6772, 3121, 354, '49485824', 'Euphorbia Francoisi', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6773, 3121, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6774, 3121, 522, '68056588', 'Green Pot 4inchi', 'standard', NULL, '70.0000', '70.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '70.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6775, 3121, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6776, 3121, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6777, 3121, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6778, 3121, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6779, 3121, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6780, 3122, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6781, 3123, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6782, 3123, 500, '45642814', 'Lucky Bambo 5 step big', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6783, 3124, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6784, 3124, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6785, 3125, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6786, 3126, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6787, 3126, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6788, 3127, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6789, 3127, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6790, 3128, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6791, 3129, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6792, 3129, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6793, 3129, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6794, 3130, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6795, 3131, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6796, 3132, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6797, 3133, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6798, 3134, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6799, 3134, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6800, 3135, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6801, 3136, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6802, 3136, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6803, 3137, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6804, 3137, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6805, 3137, 429, '90163075', 'Aglonema 7', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6806, 3137, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6807, 3138, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6808, 3138, 396, '40732224', 'Peru S', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6809, 3138, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6810, 3139, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6811, 3139, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6812, 3139, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6813, 3139, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6814, 3140, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6815, 3140, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6816, 3141, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6817, 3141, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6818, 3142, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6819, 3143, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6820, 3144, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6821, 3145, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6822, 3146, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6823, 3147, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6824, 3147, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6825, 3148, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6826, 3149, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '9.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2250.0000', '', '250.0000', NULL, 2, 'Pcs', '9.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6827, 3150, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6828, 3151, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6829, 3151, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6830, 3152, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6831, 3152, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6832, 3153, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6833, 3154, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6834, 3155, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6835, 3155, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '260.0000', '', '130.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6836, 3155, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6837, 3155, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6838, 3155, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6839, 3155, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6840, 3156, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6841, 3157, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6842, 3158, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6843, 3159, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6844, 3160, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6845, 3160, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6846, 3160, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6847, 3161, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6848, 3162, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6849, 3163, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6850, 3164, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6851, 3165, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6852, 3165, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6853, 3166, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6854, 3167, 85, '67443382', 'RESIN PLNATER G3', 'standard', NULL, '700.0000', '700.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '700.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6855, 3167, 73, '78968160', 'SENSEVERIA DRWAF', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6856, 3167, 426, '14071835', 'Butter Fly', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6857, 3168, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6858, 3168, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6859, 3168, 148, '06330036', 'GLASS TUBE WITH STAND 1', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6860, 3169, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6861, 3170, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6862, 3171, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6863, 3171, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6864, 3171, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6865, 3171, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6866, 3171, 103, '38704330', 'TOOLS SET GIFT BOX', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6867, 3172, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6868, 3173, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6869, 3174, 67, '26136413', 'CATTLEYA ORCHID', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6870, 3174, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '7500.0000', '', '1500.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6871, 3174, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6872, 3174, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6873, 3174, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '150.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6874, 3175, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6875, 3175, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '200.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6876, 3175, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6877, 3175, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6878, 3176, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6879, 3176, 586, '93522899', 'thai fern ', 'standard', NULL, '1800.0000', '1800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '1800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6880, 3176, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6881, 3176, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6882, 3176, 207, '31471473', 'senseveria whalfin', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6883, 3176, 555, '40256610', 'Aglonema 10', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6884, 3177, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6885, 3178, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6886, 3178, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6887, 3179, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6888, 3180, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6889, 3181, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6890, 3182, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6891, 3183, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6892, 3183, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1250.0000', '', '250.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6893, 3183, 582, '80071736', 'Flower Vase XL  ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6894, 3184, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6895, 3184, 51, '95981019', 'SHANGRILA', 'standard', NULL, '1000.0000', '1000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '1000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6896, 3185, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6897, 3186, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6898, 3187, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6899, 3187, 592, '48954838', 'Tulumonia L', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6900, 3187, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6901, 3187, 280, '87761269', 'Naitro 100ml', 'standard', NULL, '160.0000', '160.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '160.0000', '', '160.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6902, 3187, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '100.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6903, 3187, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6904, 3187, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6905, 3187, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6906, 3187, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6907, 3187, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6908, 3187, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6909, 3187, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6910, 3187, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6911, 3187, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '40.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6912, 3187, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6913, 3188, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6914, 3188, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6915, 3188, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6916, 3189, 262, '02739001', 'Peporima Verg. Big', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6917, 3190, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6918, 3191, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6919, 3192, 51, '95981019', 'SHANGRILA', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6920, 3193, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6921, 3194, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6922, 3195, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6923, 3195, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6924, 3196, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6925, 3197, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6926, 3198, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6927, 3198, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6928, 3198, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6929, 3199, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6930, 3200, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6931, 3201, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6932, 3201, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6933, 3201, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6934, 3201, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6935, 3202, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6936, 3202, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6937, 3203, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6938, 3204, 294, '61731312', 'Uv Firenze Wall Planter', 'standard', NULL, '600.0000', '600.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '600.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6939, 3204, 254, '31700219', 'Hoya 1.5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6940, 3204, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6941, 3204, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6942, 3204, 33, '03006363', 'EPIPREMNUM AMPLISSIMUM SILVER', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6943, 3204, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6944, 3205, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6945, 3205, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6946, 3206, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6947, 3207, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6948, 3208, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6949, 3208, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6950, 3208, 427, '28587289', 'Aglonema 5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6951, 3208, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6952, 3208, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6953, 3208, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6954, 3209, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6955, 3210, 11, '77245440', 'Lucky Bamboo Spiral Step', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6956, 3211, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6957, 3212, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6958, 3212, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6959, 3213, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6960, 3213, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6961, 3214, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6962, 3215, 278, '45978696', 'Concreat pot M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6963, 3215, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6964, 3215, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6965, 3216, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6966, 3217, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6967, 3218, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6968, 3218, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6969, 3219, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6970, 3220, 548, '10997337', 'Philo Majestic', 'standard', NULL, '4000.0000', '4000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '4000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6971, 3221, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6972, 3222, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6973, 3222, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6974, 3223, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6975, 3223, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6976, 3223, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6977, 3223, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6978, 3223, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6979, 3223, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6980, 3223, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6981, 3224, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6982, 3224, 144, '70118098', 'NPK 250GM', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6983, 3224, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6984, 3224, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6985, 3224, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6986, 3224, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6987, 3224, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4000.0000', '', '2000.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6988, 3224, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6989, 3224, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6990, 3224, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6991, 3224, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6992, 3224, 42, '14233360', 'PEPORIMA GREEN ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6993, 3224, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6994, 3224, 238, '07455606', 'Seedling tools 4 pcs', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6995, 3224, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6996, 3224, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6997, 3224, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6998, 3224, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (6999, 3224, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7000, 3224, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7001, 3224, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7002, 3225, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7003, 3225, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7004, 3225, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7005, 3226, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7006, 3226, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7007, 3226, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', 'standard', NULL, '1150.0000', '1150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1150.0000', '', '1150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7008, 3226, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7009, 3226, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7010, 3226, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7011, 3226, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7012, 3226, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7013, 3226, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7014, 3226, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7015, 3226, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7016, 3227, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '7.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '50.0000', NULL, 2, 'Pcs', '7.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7017, 3227, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7018, 3227, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7019, 3227, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7020, 3228, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7021, 3228, 99, '22510797', 'RED NOSE CUTTER ', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7022, 3229, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7023, 3230, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7024, 3231, 539, '26410617', 'Heart Leaf verigatted ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7025, 3231, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7026, 3232, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7027, 3232, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7028, 3232, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7029, 3232, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7030, 3233, 556, '60644367', 'Epi Marbel', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7031, 3233, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7032, 3233, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7033, 3234, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7034, 3234, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7035, 3235, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1700.0000', '', '850.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7036, 3236, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7037, 3237, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7038, 3237, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7039, 3238, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7040, 3238, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7041, 3238, 589, '12397457', 'agave crysted', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7042, 3238, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7043, 3239, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7044, 3240, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7045, 3240, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7046, 3240, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7047, 3240, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7048, 3241, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7049, 3241, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7050, 3241, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7051, 3241, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7052, 3241, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7053, 3241, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7054, 3242, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7055, 3242, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7056, 3242, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7057, 3242, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7058, 3242, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7059, 3243, 136, '00863032', 'CACTUS & SUCCULENT FOCUS', 'standard', NULL, '1650.0000', '1650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1650.0000', '', '1650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7060, 3243, 233, '03531371', 'Akadama Soil', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7061, 3243, 233, '03531371', 'Akadama Soil', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7062, 3243, 300, '27748537', 'Osmokot 13.13.13', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7063, 3243, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7064, 3243, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '400.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7065, 3243, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7066, 3244, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7067, 3245, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7068, 3246, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7069, 3246, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7070, 3246, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7071, 3246, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7072, 3246, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7073, 3247, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7074, 3247, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7075, 3248, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7076, 3249, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7077, 3250, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7078, 3251, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7079, 3252, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7080, 3252, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7081, 3253, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7082, 3253, 379, '56291360', 'Siko 50ml', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7083, 3254, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7084, 3254, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7085, 3254, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '50.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7086, 3255, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7087, 3255, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7088, 3255, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7089, 3256, 491, '88790984', 'Senseveria Local Big', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7090, 3257, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7091, 3258, 88, '29238547', 'RESIN PLANTER K7', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7092, 3258, 530, '50894057', 'Thai Ketly', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7093, 3258, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7094, 3258, 503, '04718707', 'Toy 300', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7095, 3258, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '14.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2100.0000', '', '150.0000', NULL, 2, 'Pcs', '14.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7096, 3258, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7097, 3258, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7098, 3258, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7099, 3258, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7100, 3258, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7101, 3258, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7102, 3258, 522, '68056588', 'Green Pot 4inchi', 'standard', NULL, '70.0000', '70.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '280.0000', '', '70.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7103, 3258, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7104, 3258, 214, '27889670', 'Mini Air Plant Stand', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7105, 3258, 156, '98245533', 'IRIS WALL WHITE GLOSS POT 6\\\'', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7106, 3258, 216, '49524419', 'RG Mug', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7107, 3258, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7108, 3258, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7109, 3258, 147, '34275643', 'GLASS WITH CERAMIC DOLL ', 'standard', NULL, '1050.0000', '1050.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1050.0000', '', '1050.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7110, 3258, 149, '01269763', 'GLASS TUBE WITH STAND 2', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7111, 3258, 83, '79775908', 'RESIN PLANTER C1', 'standard', NULL, '1350.0000', '1350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1350.0000', '', '1350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7112, 3258, 130, '97226489', 'GARDEN APROAN', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7113, 3258, 343, '37152007', 'Snail Killer', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7114, 3258, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7115, 3258, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7116, 3259, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7117, 3260, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7118, 3261, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7119, 3261, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7120, 3261, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7121, 3261, 572, '83271839', 'Key Ring', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7122, 3262, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7123, 3262, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7124, 3263, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7125, 3263, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7126, 3263, 589, '12397457', 'agave crysted', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7127, 3263, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7128, 3263, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7129, 3263, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7130, 3263, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7131, 3264, 86, '08010277', 'RESIN PLANTER K2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7132, 3265, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7133, 3266, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '1500.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7134, 3266, 592, '48954838', 'Tulumonia L', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7135, 3266, 57, '32032116', 'AIR PLANT Bulbosa', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7136, 3266, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7137, 3267, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7138, 3268, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7139, 3268, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7140, 3268, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7141, 3269, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7142, 3269, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7143, 3270, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7145, 3272, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7146, 3273, 287, '05315444', 'Artistic long Planter s', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7147, 3274, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7148, 3274, 124, '67000649', 'ANTIQUE LOOK UV POT BIG', 'standard', NULL, '1150.0000', '1150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1150.0000', '', '1150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7149, 3274, 80, '63589701', 'WHITE PRINTED TOB', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7150, 3274, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7151, 3274, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7152, 3274, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7153, 3275, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7154, 3276, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '900.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7155, 3276, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7156, 3276, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7157, 3276, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7158, 3276, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7159, 3276, 408, '03054245', 'Alpha Omega Bloom', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7160, 3276, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7161, 3276, 510, '61040889', 'Thai npk 20.20.20 1kg', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7162, 3276, 513, '37918833', 'Wood Bark ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7163, 3276, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7164, 3277, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7165, 3278, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7166, 3279, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7167, 3279, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7168, 3279, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7169, 3280, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7170, 3281, 285, '40986136', 'Saaf 100gm', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7171, 3282, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7172, 3283, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7173, 3284, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7174, 3284, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7175, 3285, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7176, 3286, 109, '28303880', 'GROW LIGHT PANEL', 'standard', NULL, '2650.0000', '2650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2650.0000', '', '2650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7177, 3287, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7178, 3287, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7179, 3287, 230, '20161787', 'Cpatain Fungicide ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7180, 3287, 351, '57860529', '2 Litter Sprayer with Vulb', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7181, 3288, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7182, 3288, 165, '48621422', 'Anthurium', 'standard', NULL, '2200.0000', '2200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2200.0000', '', '2200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7183, 3288, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7184, 3288, 445, '81800808', 'Moonlight dark', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7185, 3288, 93, '18394554', 'THAI JHURI', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7186, 3288, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7187, 3289, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7188, 3290, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7189, 3291, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7190, 3292, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7191, 3292, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7192, 3293, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7193, 3293, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '50.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7194, 3294, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7195, 3295, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7196, 3295, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7197, 3295, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7198, 3295, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7199, 3295, 86, '08010277', 'RESIN PLANTER K2', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7200, 3295, 89, '82658699', 'RESIN PLANTER DA', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7201, 3295, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7202, 3296, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7203, 3296, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7204, 3297, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7205, 3297, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7206, 3298, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7207, 3298, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '180.0000', '', '90.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7208, 3298, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7209, 3298, 283, '44882476', 'Indrofil M-45', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7210, 3298, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7211, 3298, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7212, 3299, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7213, 3300, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7214, 3300, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7215, 3301, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '6.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '250.0000', NULL, 2, 'Pcs', '6.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7216, 3301, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7217, 3302, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7218, 3303, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7219, 3304, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7220, 3305, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7221, 3306, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7222, 3306, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7223, 3306, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7224, 3306, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7225, 3306, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '40.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7226, 3307, 159, '02891148', 'FLOWERING TABLET FERTILISER', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7227, 3307, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7228, 3308, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7229, 3309, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7230, 3309, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7231, 3309, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7232, 3310, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7233, 3310, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7234, 3310, 431, '98630352', 'Hoya Sunrise ', 'standard', NULL, '700.0000', '700.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1400.0000', '', '700.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7235, 3310, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7236, 3311, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7237, 3312, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7238, 3312, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7239, 3313, 455, '18818074', 'Coco Pole L', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7240, 3314, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7241, 3315, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7242, 3316, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '8.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3600.0000', '', '450.0000', NULL, 2, 'Pcs', '8.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7243, 3317, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7244, 3317, 348, '94516686', 'Philo. Mican ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7245, 3317, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '450.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7246, 3317, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7250, 3321, 584, '41421487', 'syngonium pink lava ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7248, 3319, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7251, 3322, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7252, 3323, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7253, 3323, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7254, 3323, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7255, 3324, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7256, 3325, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7257, 3326, 409, '31197682', 'Alpha Omega House plant', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7258, 3326, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7259, 3326, 297, '13535342', 'Glossy Self Watering Planter', 'standard', NULL, '250.0000', '250.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '250.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7260, 3327, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7261, 3328, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7262, 3328, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7263, 3328, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7264, 3329, 160, '10237543', 'B-1 ROOT GROWER', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7265, 3329, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7266, 3330, 393, '62446910', 'Zen Hanging pod', 'standard', NULL, '450.0000', '450.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '450.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7267, 3330, 47, '51995656', 'MILLION HEART VERIEGATED ', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7268, 3330, 539, '26410617', 'Heart Leaf verigatted ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7269, 3330, 557, '73192175', 'Scindupsis Silver Cloud', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7270, 3330, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7271, 3330, 63, '43775956', 'DICHIDIA VERIGATED LEAF', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7272, 3330, 391, '89877743', 'Zen Metalica L', 'standard', NULL, '650.0000', '650.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '650.0000', '', '650.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7273, 3330, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7274, 3331, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7275, 3331, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7276, 3331, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7277, 3331, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7278, 3331, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7279, 3331, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7280, 3332, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7281, 3332, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7282, 3332, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7283, 3332, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7284, 3332, 168, '07964908', 'Silver Shartin', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7285, 3332, 390, '66988109', 'Zen Metalica M', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7286, 3332, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7287, 3332, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7288, 3332, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '150.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7289, 3332, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7290, 3332, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7291, 3332, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '200.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7292, 3332, 411, '36633513', 'vermi compost 5kg', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7293, 3332, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7294, 3332, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7295, 3333, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7296, 3334, 103, '38704330', 'TOOLS SET GIFT BOX', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7297, 3334, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7298, 3334, 538, '04170236', 'Seedling tools 8 pcs', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7299, 3334, 127, '14631786', 'PH METER DIGITAL', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7300, 3334, 102, '82430231', 'MINI TOOLS SET ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7301, 3334, 521, '67089630', 'Garden Pod L', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7302, 3334, 392, '14849048', 'Garden Pod M', 'standard', NULL, '250.0000', '250.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '250.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7303, 3334, 522, '68056588', 'Green Pot 4inchi', 'standard', NULL, '70.0000', '70.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '140.0000', '', '70.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7304, 3334, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '300.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7305, 3334, 228, '03917430', 'WIlko 1 L Fertiliser', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7306, 3335, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7307, 3335, 6, '08', 'Zen Pot Tall M', 'standard', NULL, '600.0000', '600.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1800.0000', '', '600.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7308, 3335, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '100.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7309, 3335, 457, '88884807', 'Coco Pole S', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7310, 3335, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7311, 3335, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '250.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7312, 3335, 387, '88192874', 'Zen Pot Metalica Big', 'standard', NULL, '850.0000', '850.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1700.0000', '', '850.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7313, 3336, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '400.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7333, 3338, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7324, 3338, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7325, 3338, 564, '94984162', 'Phillo Maxicana  ', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7326, 3338, 254, '31700219', 'Hoya 1.5', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7327, 3338, 163, '60285514', 'Transparent Mesh Pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7328, 3338, 226, '21257351', 'Thai Root Hormon', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7329, 3338, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7330, 3338, 342, '42643313', 'Osmokot 500gm 14.14.14', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7331, 3338, 141, '86990658', 'PERLITE 2L', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7332, 3338, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7334, 3339, 164, '79323775', 'Hupergia ', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7335, 3339, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7336, 3339, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7337, 3339, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7338, 3339, 572, '83271839', 'Key Ring', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7339, 3340, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7340, 3340, 113, '02483091', '8 WAY SPRAYER HEAD', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7341, 3340, 497, '82833386', 'Caktus Zimno M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7342, 3340, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7343, 3340, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7344, 3340, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7345, 3341, 207, '31471473', 'senseveria whalfin', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7346, 3341, 293, '99356481', 'Marbel planter', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7347, 3342, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '300.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7348, 3342, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7349, 3342, 281, '96402267', 'Emetuf 50ml', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7350, 3342, 378, '75708593', 'Emetuf 25ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7351, 3342, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7352, 3342, 282, '61225679', 'Mancer 100gm', 'standard', NULL, '170.0000', '170.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '170.0000', '', '170.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7353, 3343, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '130.0000', '', '130.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7354, 3343, 456, '07689641', 'Coco Pole M', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7355, 3343, 217, '82630821', 'Mini Sprayer', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7356, 3344, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7357, 3344, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7358, 3345, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7359, 3345, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7360, 3345, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7361, 3345, 116, '76327589', 'HUMIDIFIER WOOD STYLE ', 'standard', NULL, '2500.0000', '2500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2500.0000', '', '2500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7362, 3345, 119, '28814945', 'FRAGNENT OIL', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7363, 3345, 145, '43356395', 'NPK 100GM', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7364, 3345, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7365, 3345, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7366, 3345, 497, '82833386', 'Caktus Zimno M', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7367, 3345, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7368, 3346, 3, '02', 'Zen Pot Wide S', 'standard', NULL, '300.0000', '300.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '300.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7369, 3346, 485, '15964763', 'Ceramic Glass S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7370, 3346, 15, '15389577', 'SENSEVERIA MIKADO', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7371, 3346, 194, '16535351', 'Aglonema Color', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7372, 3346, 242, '87951158', 'Aglonema Green ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7373, 3346, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7374, 3346, 397, '85158991', 'Scindupsis Silver lady ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7375, 3346, 154, '66903672', 'IRIS UV PLANTER 7\\\"', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7376, 3347, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7377, 3348, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1500.0000', '', '1500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7378, 3348, 179, '25713355', 'Mounted Spp Den', 'standard', NULL, '1000.0000', '1000.0000', '5.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '1000.0000', NULL, 2, 'Pcs', '5.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7379, 3348, 413, '22733418', 'TOY S', 'standard', NULL, '150.0000', '150.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '450.0000', '', '150.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7380, 3348, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7381, 3349, 200, '04148228', '1 Litter Sprayer', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7384, 3352, 12, '51267664', 'Lucky Bamboo Big', 'standard', NULL, '2000.0000', '2000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '2000.0000', '', '2000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7383, 3351, 238, '07455606', 'Seedling tools 4 pcs', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7385, 3352, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7386, 3352, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7387, 3352, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7388, 3352, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7389, 3353, 515, '86200111', 'Aglonema 9', 'standard', NULL, '5000.0000', '5000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '5000.0000', '', '5000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7390, 3353, 583, '12712286', 'aglonema 11', 'standard', NULL, '4500.0000', '4500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '4500.0000', '', '4500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7396, 3356, 271, '47649014', 'SEED (40)', 'standard', NULL, '40.0000', '40.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '40.0000', '', '40.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7395, 3356, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7393, 3355, 319, '00716849', 'MoonLight S', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7394, 3355, 296, '90188448', 'UV Flower pot ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7397, 3356, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7398, 3356, 412, '65156688', 'TOY M', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7399, 3356, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7400, 3357, 276, '04135216', 'Ceramic Color Bowl L ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7401, 3358, 458, '95295008', 'Bird House', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7402, 3358, 252, '33614746', 'philo. Neon', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7403, 3358, 459, '83233710', 'Toy', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7404, 3358, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7405, 3359, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7406, 3360, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7407, 3361, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7408, 3362, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '200.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7409, 3362, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '50.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7410, 3363, 162, '23510383', 'Hybrid Dendrobium orchid ', 'standard', NULL, '900.0000', '900.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '900.0000', '', '900.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7411, 3363, 482, '79803566', 'Osmokot 100gm  13.13.13', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7412, 3363, 590, '45607651', 'orchid Mixed', 'standard', NULL, '1500.0000', '1500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7413, 3364, 310, '19536640', 'Monostera Esquleta ', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7414, 3364, 389, '60021183', 'Zen Metalica S', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7415, 3364, 475, '50561074', 'Silver lady Small', 'standard', NULL, '1000.0000', '1000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '1000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7416, 3365, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7417, 3365, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7418, 3366, 107, '20002901', ' 2L SPRAYER ORANGE', 'standard', NULL, '400.0000', '400.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '400.0000', '', '400.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7419, 3367, 8, '14', '3pcs Garden Tools Set M ', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7420, 3368, 100, '61786707', 'PRUNING SHEARS RED ', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7421, 3369, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7422, 3369, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7423, 3369, 103, '38704330', 'TOOLS SET GIFT BOX', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7424, 3369, 195, '72984009', 'Lucky Bamboo Small', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7425, 3370, 46, '32396546', 'AGOLONEMA WHITE', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7426, 3370, 386, '68549735', 'Stylish Stripe Planter color M', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7427, 3371, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7428, 3372, 193, '17426260', 'Luck Bambo Spiral Stick', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7429, 3373, 74, '12241939', 'ZEN TOB BIG ', 'standard', NULL, '750.0000', '750.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '750.0000', '', '750.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7430, 3374, 377, '74069968', 'Naitro 50ml', 'standard', NULL, '90.0000', '90.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '90.0000', '', '90.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7431, 3375, 231, '25710966', 'Root Powder Small ', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7432, 3376, 506, '51521519', 'Toy 250', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7433, 3376, 507, '88770464', 'Toy 500', 'standard', NULL, '500.0000', '500.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '500.0000', '', '500.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7434, 3376, 425, '69132898', 'Toy Mini 4pcs', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7435, 3377, 362, '37678201', 'Lucky Bamboo Golden Ring ', 'standard', NULL, '1200.0000', '1200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1200.0000', '', '1200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7436, 3377, 385, '49994111', 'Stylish Stripe Planter color s', 'standard', NULL, '300.0000', '300.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '300.0000', '', '300.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7437, 3378, 157, '88534889', 'MESH POT 6CM', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7438, 3378, 260, '86423471', 'Mini 4 pcs tub', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7439, 3379, 394, '18806425', 'Mini Hanging Pod', 'standard', NULL, '150.0000', '150.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '150.0000', '', '150.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7440, 3380, 383, '40896840', 'Green Tonic PGR', 'standard', NULL, '130.0000', '130.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '260.0000', '', '130.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7441, 3380, 284, '33347731', 'Flora 50ml', 'standard', NULL, '80.0000', '80.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '80.0000', '', '80.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7442, 3381, 106, '06940400', 'CLEANING GLOVES', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7443, 3382, 557, '73192175', 'Scindupsis Silver Cloud', 'standard', NULL, '3000.0000', '3000.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '3000.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7444, 3383, 294, '61731312', 'Uv Firenze Wall Planter', 'standard', NULL, '600.0000', '600.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '600.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7445, 3383, 5, '06', 'Zen Pot M ', 'standard', NULL, '350.0000', '350.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '700.0000', '', '350.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7446, 3383, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '240.0000', '', '60.0000', NULL, 3, 'KG', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7447, 3384, 593, '95149162', 'Mican S', 'standard', NULL, '200.0000', '200.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '200.0000', '', '200.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7448, 3385, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7449, 3386, 354, '49485824', 'Euphorbia Francoisi', 'standard', NULL, '800.0000', '800.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '800.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7450, 3386, 289, '30018566', 'Electroplated Round Planter', 'standard', NULL, '250.0000', '250.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '250.0000', '', '250.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7451, 3386, 9, '33282664', 'Moon Cactus ', 'standard', NULL, '500.0000', '500.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '1000.0000', '', '500.0000', NULL, 2, 'Pcs', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7452, 3387, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '2.0000', 2, '0.0000', NULL, '', '0', '0.0000', '120.0000', '', '60.0000', NULL, 3, 'KG', '2.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7453, 3388, 179, '25713355', 'Mounted Spp Den', 'standard', NULL, '1000.0000', '1000.0000', '3.0000', 2, '0.0000', NULL, '', '0', '0.0000', '3000.0000', '', '1000.0000', NULL, 2, 'Pcs', '3.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7454, 3388, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7455, 3389, 268, '83437543', 'SEED (200)', 'standard', NULL, '200.0000', '200.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '800.0000', '', '200.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7456, 3389, 269, '86051367', 'SEED (150)', 'standard', NULL, '150.0000', '150.0000', '4.0000', 2, '0.0000', NULL, '', '0', '0.0000', '600.0000', '', '150.0000', NULL, 2, 'Pcs', '4.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7457, 3390, 410, '86049659', 'SEED (50)', 'standard', NULL, '50.0000', '50.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '50.0000', '', '50.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7458, 3391, 108, '76776881', 'GROW LIGHT 10 W', 'standard', NULL, '350.0000', '350.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '350.0000', '', '350.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7459, 3392, 270, '61319065', 'SEED (100)', 'standard', NULL, '100.0000', '100.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '100.0000', '', '100.0000', NULL, 2, 'Pcs', '1.0000', '', NULL, NULL, NULL, NULL);
INSERT INTO `sma_sale_items` (`id`, `sale_id`, `product_id`, `product_code`, `product_name`, `product_type`, `option_id`, `net_unit_price`, `unit_price`, `quantity`, `warehouse_id`, `item_tax`, `tax_rate_id`, `tax`, `discount`, `item_discount`, `subtotal`, `serial_no`, `real_unit_price`, `sale_item_id`, `product_unit_id`, `product_unit_code`, `unit_quantity`, `comment`, `gst`, `cgst`, `sgst`, `igst`) VALUES (7460, 3392, 220, '85347259', 'vermi compost', 'standard', NULL, '60.0000', '60.0000', '1.0000', 2, '0.0000', NULL, '', '0', '0.0000', '60.0000', '', '60.0000', NULL, 3, 'KG', '1.0000', '', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sales
#

DROP TABLE IF EXISTS `sma_sales`;

CREATE TABLE `sma_sales` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) NOT NULL,
  `biller_id` int(11) NOT NULL,
  `biller` varchar(55) NOT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `staff_note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `product_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `total_discount` decimal(25,4) DEFAULT 0.0000,
  `order_discount` decimal(25,4) DEFAULT 0.0000,
  `product_tax` decimal(25,4) DEFAULT 0.0000,
  `order_tax_id` int(11) DEFAULT NULL,
  `order_tax` decimal(25,4) DEFAULT 0.0000,
  `total_tax` decimal(25,4) DEFAULT 0.0000,
  `shipping` decimal(25,4) DEFAULT 0.0000,
  `grand_total` decimal(25,4) NOT NULL,
  `sale_status` varchar(20) DEFAULT NULL,
  `payment_status` varchar(20) DEFAULT NULL,
  `payment_term` tinyint(4) DEFAULT NULL,
  `due_date` date DEFAULT NULL,
  `created_by` int(11) DEFAULT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `total_items` smallint(6) DEFAULT NULL,
  `pos` tinyint(1) NOT NULL DEFAULT 0,
  `paid` decimal(25,4) DEFAULT 0.0000,
  `return_id` int(11) DEFAULT NULL,
  `surcharge` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `attachment` varchar(55) DEFAULT NULL,
  `return_sale_ref` varchar(55) DEFAULT NULL,
  `sale_id` int(11) DEFAULT NULL,
  `return_sale_total` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `rounding` decimal(10,4) DEFAULT NULL,
  `suspend_note` varchar(255) DEFAULT NULL,
  `api` tinyint(1) DEFAULT 0,
  `shop` tinyint(1) DEFAULT 0,
  `address_id` int(11) DEFAULT NULL,
  `reserve_id` int(11) DEFAULT NULL,
  `hash` varchar(255) DEFAULT NULL,
  `manual_payment` varchar(55) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  `payment_method` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3393 DEFAULT CHARSET=utf8;

INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (146, '2022-03-20 08:10:36', 'SALE/POS2022/03/0146', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73bc3582010c0128624557556852d80beaf5950b11872564be570385e5c9a9f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (147, '2022-03-20 08:18:33', 'SALE/POS2022/03/0147', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20a754dc7c44b70508b244f7220c6bc348e7ccd503b132893e91b761898c0a5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (148, '2022-03-20 09:57:42', 'SALE/POS2022/03/0148', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbf493ca46538d0ebbea20be112fdd671ee844a5a4c45eb30fcbe2cab65d761d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (149, '2022-03-20 09:57:58', 'SALE/POS2022/03/0149', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c5300ce2401fd6156e52395cd8046d36c764d1e525af02975252e18798b794d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (150, '2022-03-21 02:13:15', 'SALE/POS2022/03/0150', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c93938ff5865e4a607d50d70dfba6dd1d7b2c84b33fee540fb8287256763ce5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (151, '2022-03-21 06:04:30', 'SALE/POS2022/03/0151', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e58c2a8689497dbb93a89ef54e1952d565412fd4016ae7cba800e57023bd5a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (152, '2022-03-21 06:55:56', 'SALE/POS2022/03/0152', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7abc5a7dc7fc15ca6066596d79255e895feecf51f251417deb971cbe52e12fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (153, '2022-03-21 07:32:54', 'SALE/POS2022/03/0153', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '219bba0d37e76c534c73ab75767903c08acc81a2c7f0b9b4988bf6e328eb5486', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (154, '2022-03-21 07:35:49', 'SALE/POS2022/03/0154', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba76723b102f8c442f12d3c105e875ea2c549d6daddcfce71f8e4192d2f7a9fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (155, '2022-03-21 07:38:18', 'SALE/POS2022/03/0155', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '847a81e1fd65f7fbd846171ceb50eae062598daaccef8d51f9b6f5d0445bcd2b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (156, '2022-03-21 08:57:38', 'SALE/POS2022/03/0156', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '392e80939026e47ecba66927563706d746d2934ef25a5bcdab0194dff02be8c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (157, '2022-03-21 08:58:53', 'SALE/POS2022/03/0157', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d6e1fc5b070fa69876f66d32da896d9d9408118632a5ac29f3a81f2fad3351d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (158, '2022-03-21 09:01:54', 'SALE/POS2022/03/0158', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01550c7e33b1b907bc5076e3215991bfbb34dd3199c660fd69e7d61c0acb2d0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (159, '2022-03-21 09:02:43', 'SALE/POS2022/03/0159', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42517126c5b8c762ac112d362c82cdca0c6b4951f96d70c6872ebcb9767ca7c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (160, '2022-03-22 00:10:23', 'SALE/POS2022/03/0160', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1f7430b4e76ed3b82ed8f824e0cd9f2bf2d80319d2bea5edc445335ff8e954e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (161, '2022-03-22 02:48:26', 'SALE/POS2022/03/0161', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '443a71616cd4e2a7f5a2352012f2a28fc0db9a782915b9765ee13b3c0d7ca4c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (162, '2022-03-22 02:51:15', 'SALE/POS2022/03/0162', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af02741fea66bedc6caddfc90c842db4b767cb4c650558f5f7ce2c62263c97bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (163, '2022-03-22 07:07:20', 'SALE/POS2022/03/0163', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b717a1a918c635da6b0a7526f132838fab421eb72c4c3819b9c3e9a2aaadd5d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (164, '2022-03-22 08:54:07', 'SALE/POS2022/03/0164', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7211415b45649f8f25a58e7366889b4d250aab688a19fe4c3f89dbadf5fdfd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (165, '2022-03-22 09:08:02', 'SALE/POS2022/03/0165', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6c7939a90506c4379cadac4b8644454b603756867f4013bca217707bc85ab1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (166, '2022-03-22 09:32:28', 'SALE/POS2022/03/0166', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7f6ffdaf699d27711faaff46737bf7b41402fcd9d5a295aa14b295352c73845', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (167, '2022-03-22 09:47:01', 'SALE/POS2022/03/0167', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf19a276ce3e5011c3a7b8e0bf8a66ba3b3dc3056a1d17bdf124558f7bfb000e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (168, '2022-03-23 00:08:00', 'SALE/POS2022/03/0168', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6db01701757088133eed543b6dfb64e8aec475129c8e27301daffc0bd3d5f551', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (169, '2022-03-23 02:00:50', 'SALE/POS2022/03/0169', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bee95813bb921390264efccbfd8875d6ca400ba6c154561ab1ea73f64d94907', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (170, '2022-03-23 02:44:15', 'SALE/POS2022/03/0170', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6913a6058ff571495c2d118b98523a09e2e15020237a750bd825b30627d78eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (145, '2022-03-20 08:01:54', 'SALE/POS2022/03/0145', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae333e5c655b06ff11656c93180409fa274b52335e124a97d0334c3c1db046ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (144, '2022-03-20 07:27:35', 'SALE/POS2022/03/0144', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30a7b4db7b5787b46e3cfc34e26d7903dd2d6ee7cababa1f8b74b5ca706fc03f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (142, '2022-03-20 06:32:02', 'SALE/POS2022/03/0142', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1b42f019e71df6164f62188434e7759166a26bb09f7294606d5cd4e85585ceb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (143, '2022-03-20 06:57:36', 'SALE/POS2022/03/0143', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eee9c0d40a3627ed5f75e125d4bca3f68357bd751b169687a6f388c4bb6954f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (141, '2022-03-20 04:55:05', 'SALE/POS2022/03/0141', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd03bcddd35d740a846358ecadef1f5726c908611ed7792ad7e3b5cc922553861', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (140, '2022-03-20 04:43:38', 'SALE/POS2022/03/0140', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82fb1edb94801897554811ea5c1f270dd31558c7976c88a9cb76303a39f8f811', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (139, '2022-03-20 03:01:07', 'SALE/POS2022/03/0139', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b82549a2a58678ba39fcdd2e68fa68c515b33513ff2e7e1d294eb4db8343278b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (138, '2022-03-20 02:54:51', 'SALE/POS2022/03/0138', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a620ea2fc54984592297ff675f7206a2f5a03f194d8ee3a9d102a4ef26ca553e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (100, '2022-03-17 02:38:29', 'SALE/POS2022/03/0100', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da6e404f26f4c286393cf527b6b80e598453b1c9665c62991a89189377040bcc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (101, '2022-03-17 03:28:20', 'SALE/POS2022/03/0101', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4750.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12cc519a48f31ead983bf00305f165fccfef841dd2d411a5cdd2f55106e587ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (102, '2022-03-17 03:35:17', 'SALE/POS2022/03/0102', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '552f8c4297f22713690974f972ccf7b17580d49dd7a73d8083b7f8a9f834138f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (137, '2022-03-20 01:31:12', 'SALE/POS2022/03/0137', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ef87ef39974ff8058265730878d6bd7baa4d045d93c12288cdc0a9d35e939ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (125, '2022-03-19 02:59:37', 'SALE/POS2022/03/0125', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6f2f08b3346dc20794d5421e4813e31c6674db0f65d4edb4331d99dc05e1ab0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (105, '2022-03-18 04:42:31', 'SALE/POS2022/03/0105', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63fe6805af2e9c6fc25939d6c834c0b9a353ff1c916cc4c8e81951d7e7c66bfc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (136, '2022-03-20 01:29:17', 'SALE/POS2022/03/0136', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee29598a6aa9966cd1ddb79cfcf83c9605f536a402fabe4e04b10bac33bdb4cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (127, '2022-03-19 04:15:52', 'SALE/POS2022/03/0127', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45c137349581b53cc8f9a8b5684d6e39203e23c5b26fdbef2f55431dac600f05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (108, '2022-03-18 05:05:07', 'SALE/POS2022/03/0108', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00127ea84d4c7673a7b3cc47a57eafafe6fbc2867219f88d6b86bcd413979acc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (109, '2022-03-18 05:11:01', 'SALE/POS2022/03/0109', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '638c0fe901e216afa3bbb3410033ced6f20187b8ffa65639222a6cfd62924442', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (110, '2022-03-18 05:13:34', 'SALE/POS2022/03/0110', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e84e6ee645af0a9609800261beaaa94442319bcfe0e40efdc366f3501419649', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (111, '2022-03-18 05:16:39', 'SALE/POS2022/03/0111', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c06714d16a624f57aa5f5c11caedbe94693f363126811cb1fc15463a5ad4fa05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (112, '2022-03-18 05:20:42', 'SALE/POS2022/03/0112', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8359def6624a70458c1c4801865e0542f57ec26120db7b89a2d2314d0b6dfba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (126, '2022-03-19 03:23:20', 'SALE/POS2022/03/0126', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5adc667b04213b26a06c100e1ee6e61c08afd7ba88f9b10c7ab68786b7f6fac6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (114, '2022-03-18 06:19:33', 'SALE/POS2022/03/0114', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf2530da974c8569df336a8015e4d8e0210fbfc8573c8e3b5726382e8a1fdf41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (115, '2022-03-18 07:09:36', 'SALE/POS2022/03/0115', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b530b7e6b467a4f5fae157194f7ec10192ccde2054fa53338cc207de52d1e26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (116, '2022-03-18 07:13:11', 'SALE/POS2022/03/0116', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6b55007869a7dce9a6e0ea5f946211f4e0afeb9f144b5f6ba75ae005bc09a41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (117, '2022-03-18 07:43:12', 'SALE/POS2022/03/0117', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4430e5d8c135aee2d44a6adbf1095fa3ba69ac8be7e12244267d9a31bf859636', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (118, '2022-03-18 08:10:49', 'SALE/POS2022/03/0118', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ecaee3ff849d3a87013db85cd586a6ff65c6ac8bdd530c13e8919f1cef517f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (119, '2022-03-18 08:17:55', 'SALE/POS2022/03/0119', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b386d9aa049bde2889a56c2f0ee898847227c345cf669788790e8e495cf7c61', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (120, '2022-03-18 08:23:05', 'SALE/POS2022/03/0120', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f0fe5daefd9070acb31160717480364d7f806a2716195f43fb6cffff266c3f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (121, '2022-03-18 08:47:02', 'SALE/POS2022/03/0121', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '382bb4929f943ecd38507eaace496d18546dce7371d27695c3db2fd5cbf14b21', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (122, '2022-03-18 09:01:31', 'SALE/POS2022/03/0122', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba58f998f284560c37dff365d54ff74a6da04c356b17dec93a6478f82531f04a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (123, '2022-03-18 09:55:31', 'SALE/POS2022/03/0123', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '230', '230.0000', '230.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4420.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '4420.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f56df6cfb3d35186bc893fe57519ed2308f57a78cabadfb4878937cfec08a8c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (124, '2022-03-18 10:29:46', 'SALE/POS2022/03/0124', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef69c64dc23e75f46bc109c208f4f38234393e3d789fa61b7cf0a731695b3afa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (128, '2022-03-19 04:16:41', 'SALE/POS2022/03/0128', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6652e37829bfdca7db8e0220178f7982e0d1bdcd457b8c35af50cdac989f3ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (129, '2022-03-19 05:29:30', 'SALE/POS2022/03/0129', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4689912f81fac273db41fde407dcb592e5615437ded824d8bf72bd3f95a1ad0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (130, '2022-03-19 05:46:39', 'SALE/POS2022/03/0130', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '17200.0000', '0.0000', '700', '700.0000', '700.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '16500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba7d4d59d11fac84cf089069795e3a18360dff9a73d286af830ff90d1bd27a74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (131, '2022-03-19 06:41:56', 'SALE/POS2022/03/0131', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4876881f4126557147fd220e4bef8f044537a1b2916987b3317f1647a0f7130', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (132, '2022-03-19 08:14:07', 'SALE/POS2022/03/0132', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcc855c7012da528cb154cf61b0378a76aff28d59aa050bef9d2b0b6f94af4d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (133, '2022-03-19 09:41:27', 'SALE/POS2022/03/0133', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e50adefa1eacaa0f3723bfcf609a27514645b636d6994da0a116d6fc129b0552', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (134, '2022-03-19 10:05:10', 'SALE/POS2022/03/0134', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e53cb207895942c868bd07966f301b23009e2da85923e8e1a11349513099fdf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (135, '2022-03-19 10:06:04', 'SALE/POS2022/03/0135', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f42ddc3c764f041bdad7c642f478769cc8a13e66fce00f7b14d668e999d482c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (171, '2022-03-23 04:15:48', 'SALE/POS2022/03/0171', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a53b839ba6b8a5f3fab34ad48dece347efeeb682d45d2023db5855b8ddff4581', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (172, '2022-03-23 04:16:51', 'SALE/POS2022/03/0172', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38ea770beba19cddcebf0b9abf03fcc6ce162c9d1b5e17a822846f366fc7ae28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (173, '2022-03-23 05:31:18', 'SALE/POS2022/03/0173', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64fc9ad311d761249bc0c66adf6c79fab2a29f9147b6424279766623fed30c5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (174, '2022-03-23 06:41:14', 'SALE/POS2022/03/0174', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3e7675731c9944223e50eb8f20469f410d0c12740695b4445fd79f23da12a0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (175, '2022-03-23 06:48:10', 'SALE/POS2022/03/0175', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdf2fcc0f06d7fb4c1b725187a8f9dfea6382ee70b96b0b60f7ea6769f45ee11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (176, '2022-03-23 09:39:06', 'SALE/POS2022/03/0176', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '580.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '580.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bedf8f0e5eadc92a19ef18b30f7089398acfb98f22c46e71a31ed6bd7e0f0cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (177, '2022-03-23 09:59:57', 'SALE/POS2022/03/0177', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '638baa4b57afae24b952b422299a59d3a75c7f06910f63a62fc625ccd7fbe2cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (178, '2022-03-23 10:09:34', 'SALE/POS2022/03/0178', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1080.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1080.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1080.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd10add032a2021cc4d7341ba5809d7c2a7279dc6147551abbc37583a853d1bb9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (179, '2022-03-23 10:18:42', 'SALE/POS2022/03/0179', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a884f14abdb77c773c24a4bb6d3b605d08b58e54aa0a8e9e19ef75b6c6ad3c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (180, '2022-03-24 08:01:19', 'SALE/POS2022/03/0180', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '014e6807583d7eca09a3c740869a1fc3f83968bdbd3315ad7e2cba7b07d120b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (181, '2022-03-24 09:34:05', 'SALE/POS2022/03/0181', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8052ae13300e47b05f88111423def39ed4a560a07c2e27f36c35ee43a21424f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (182, '2022-03-24 09:46:15', 'SALE/POS2022/03/0182', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e74fe26f1d57d9db9357e33a27a0044360ca5980eac556533350b75013344fe0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (183, '2022-03-24 10:21:25', 'SALE/POS2022/03/0183', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ca1c5f5ebad6ea723314bedb128d92fdd26bda128a3c686276b49cca7a17d93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (184, '2022-03-25 01:14:30', 'SALE/POS2022/03/0184', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '445338ec748eec54b571ac56239ecd47ee40aa9d00befc5903ad936e50c5eab9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (185, '2022-03-25 02:42:37', 'SALE/POS2022/03/0185', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12ef9215b64fe5cb11ada31c8db6f41ee3e1d36856396fef99bef5b15bbc84af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (186, '2022-03-25 02:56:52', 'SALE/POS2022/03/0186', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79278f68d98b7295cc01e77753779b30b9b6a382562aac5ba1107a3c8f787d14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (187, '2022-03-25 03:23:53', 'SALE/POS2022/03/0187', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a05e128340b073bc5c43f39f64837194f95e141b1763c8a1da2c435723c0086', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (188, '2022-03-25 03:29:14', 'SALE/POS2022/03/0188', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '212c1c1a61442bc783e95093e0690b32c01c2571130d4df2b317f42347b1fff8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (189, '2022-03-25 04:28:32', 'SALE/POS2022/03/0189', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '181b2004a5c7c222df5c0763a003ce23013544052e58e907bc6322b362e75385', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (190, '2022-03-25 04:34:42', 'SALE/POS2022/03/0190', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdf43046b94bbfb94cd3d860c5665d4166487fea3dd176c558b0e8c2e13cea95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (191, '2022-03-25 05:20:49', 'SALE/POS2022/03/0191', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '562faf4429a5950849a94e4741b6d888bce847cf9da5a0979874f8e445d22ba0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (192, '2022-03-25 06:55:41', 'SALE/POS2022/03/0192', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '433165de26fa03fd623fffa60d2ce5e27034af5aadfdd1abab08badef6dbaeff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (193, '2022-03-25 07:27:05', 'SALE/POS2022/03/0193', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdcd9d63ca57da3a7a516081f86512ad0ed2accf6105fef4689ff3ba8fa9ccda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (194, '2022-03-25 07:28:08', 'SALE/POS2022/03/0194', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '199e3677b8a8b92e5d72c53ed4cc285f82bb2d59c140d05dc562f3cf6e0eec56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (195, '2022-03-25 07:58:25', 'SALE/POS2022/03/0195', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b09f411a15fb91fb171f811458b3e08829203dd0cdb786cb788e8c00c061e1a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (196, '2022-03-25 09:04:55', 'SALE/POS2022/03/0196', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5898a4e014489e71a70d858ea06af1d607ede12e926f3e19118732cf89dc4384', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (197, '2022-03-25 09:06:08', 'SALE/POS2022/03/0197', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '747d88a734f0d85d071b208f69c0a7faebaa448bff6c97c1af158328c2466d36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (198, '2022-03-26 04:28:36', 'SALE/POS2022/03/0198', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49f81396fbbcf91afc191cdfea30af6524e834a31c5d51fdf54924fbbdac7f13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (199, '2022-03-26 04:57:34', 'SALE/POS2022/03/0199', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7114830f325bdf35e341eb19683881ae2219be2366f929d3271f22c67356c1e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (200, '2022-03-26 05:23:05', 'SALE/POS2022/03/0200', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '530.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '530.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '530.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8aee39d674c134f900ce6925986d30fa1f9e63179282e3fef0cc4a41ea871b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (201, '2022-03-26 05:25:15', 'SALE/POS2022/03/0201', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5886b3e8e220cd4a99b2b311ef42bc830b6b607d2d34cf4cbcc77302b45de69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (202, '2022-03-26 05:27:14', 'SALE/POS2022/03/0202', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66a88500882087d08c49d3cf43da75142dc9c2005f1e697a0a8d712de5b6b149', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (203, '2022-03-26 06:42:38', 'SALE/POS2022/03/0203', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62d2ff160706bf91f0467f8ed03cb38258605e0e85f6f75e9886df3d034e98db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (204, '2022-03-26 06:43:35', 'SALE/POS2022/03/0204', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1f58e553403db070e451e471d4898a625131bac783ff65d3006787747907f59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (205, '2022-03-26 06:46:06', 'SALE/POS2022/03/0205', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cccf210004ac542672c6f7ef3d520e3d2a07e62169223d6e796d396c62f54b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (206, '2022-03-26 08:06:53', 'SALE/POS2022/03/0206', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4100.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '3950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2c043e31846468fcf7083db115337f3744e4a5724a7abdb128efb222fbcbc9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (207, '2022-03-26 08:31:59', 'SALE/POS2022/03/0207', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5686201fddde8fe70ac8180b32592ba413966d0305f31bc90b07b5c2d1e5998e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (208, '2022-03-26 08:39:12', 'SALE/POS2022/03/0208', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f83a9c27a9b2263122a28112caa0b8d48268760bf9cb3cacdd1c9b379ba035dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (209, '2022-03-26 08:43:09', 'SALE/POS2022/03/0209', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '684f9c14c65c71f9d14f7d314c434925f8f1d1434915e01b3f4e287f3db839d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (210, '2022-03-26 08:56:09', 'SALE/POS2022/03/0210', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b56652dd57b342b951d8818e537f6f0f7e2feb972404edb7a4de24ca705187e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (211, '2022-03-26 09:04:12', 'SALE/POS2022/03/0211', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76d6d5a8b706bf6d62193046bfb05ef85f99be6a70e54e92158c8e4b793d2300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (212, '2022-03-26 09:27:20', 'SALE/POS2022/03/0212', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be146141f73fb25d021a4a6bbad563363cdfe31370355a4a6f948dcceb1c04c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (213, '2022-03-26 10:12:34', 'SALE/POS2022/03/0213', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5cfd973456309d98894a7694c5df3733a73e03148b3dc4c68f93f8f46e86c77b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (214, '2022-03-26 10:14:19', 'SALE/POS2022/03/0214', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ddfc600cc06ba10cf02f4cbffd2ae4334d948827124da2f12e8dc5484217a2f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (215, '2022-03-26 10:58:41', 'SALE/POS2022/03/0215', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43846bc1f31a861bf755709acd0e501d4d245253e93557495167a5a86b738bd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (216, '2022-03-27 01:14:16', 'SALE/POS2022/03/0216', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdbd8d1597ac9c02740712c1b3957e321d1635e7b15349a5e9e14b78d59c49c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (217, '2022-03-27 02:13:36', 'SALE/POS2022/03/0217', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1766436d52979fdfa6b5d76ba5846c9efa46df7c8d06fc2eaf44f569e1e08715', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (218, '2022-03-27 04:45:57', 'SALE/POS2022/03/0218', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46583b89a77a471475c6f602201829eac42fd956e498b04328ec7f47dfa7b3c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (219, '2022-03-27 05:43:38', 'SALE/POS2022/03/0219', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '001cc00dba7edbefa99882cd1f58313d3a1573529740a47248b7ec15aee618f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (220, '2022-03-27 05:45:34', 'SALE/POS2022/03/0220', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b8c82ad81a34da155cd574f889bfefd21080e262a1abc19839ff6cf0908c746', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (221, '2022-03-27 05:51:39', 'SALE/POS2022/03/0221', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '0', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec37225dcd991bfe7d61ea034c7ab3a6e2436c60d8dff4138105c632f84a8bbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (222, '2022-03-27 06:10:41', 'SALE/POS2022/03/0222', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae9d4a0ba087de5616d91c169b4604bf7f9c600fbe15974d74df04353fefda1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (223, '2022-03-27 06:30:49', 'SALE/POS2022/03/0223', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64e818de5d436990bc3ce51b3a59c22e4c14b9ef042da152cc8317c596d071c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (224, '2022-03-27 06:49:38', 'SALE/POS2022/03/0224', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46c8bb234d623bd788d50f67793f41a61085e93155e3c017178b6e6d1ebc53f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (225, '2022-03-27 06:52:32', 'SALE/POS2022/03/0225', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96d597891923095479851551088671582bf129e7dca54b5fb96998f0f33f9182', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (226, '2022-03-27 06:58:15', 'SALE/POS2022/03/0226', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67e13ef646bbae15bae99974025d7a0475ca729607af98d466d3198adf694f8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (230, '2022-03-27 08:08:37', 'SALE/POS2022/03/0230', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5087d524edd105e58255e2f18890984ab31708377bc56e97bd3e1839fcf90f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (228, '2022-03-27 07:19:08', 'SALE/POS2022/03/0228', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83c02694bc494ebc3ebc660d4c22d0c925e6a4741250cf0a754c535ad63610ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (229, '2022-03-27 07:30:05', 'SALE/POS2022/03/0229', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9977e08c97c9e5c24f4fd1623d7f891fe09ca50913bc2b3026e5239c4b8549e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (231, '2022-03-27 08:10:23', 'SALE/POS2022/03/0231', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b34bbbdfd32fe992aa12412a3bd918375aa0b70dde4b4532b96b6e72c7122daa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (232, '2022-03-27 08:37:02', 'SALE/POS2022/03/0232', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bb0d40240c840feefe1d6c1aafd0cbcfd1f7d470da792a43d27ee9755f4fbe1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (233, '2022-03-27 09:49:27', 'SALE/POS2022/03/0233', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3be575c1a893eb8616554b00203841d9b1e3b05e78933513c243db61380b5e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (234, '2022-03-28 01:49:23', 'SALE/POS2022/03/0234', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22af9a43f522adf6fc3a49657a333783ccfb37f9e676a20c6369c0ecaf913018', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (235, '2022-03-28 02:04:33', 'SALE/POS2022/03/0235', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9708430ba26882a21d8f6654e68da55a26bc037cb17919b68c9c88a3007d8d57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (236, '2022-03-28 02:55:32', 'SALE/POS2022/03/0236', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27aad5177d82be65c51a919be5738369ae061354dd34caa774847cdd977aa849', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (237, '2022-03-28 05:52:25', 'SALE/POS2022/03/0237', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cac71df4a36431156920a80a651d2c6295336e851b775ac79ae492285a59c2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (238, '2022-03-28 06:06:02', 'SALE/POS2022/03/0238', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66dd0e1eeff58592a79e9f42fbc6e056dd11f524e18d101e3997c44cd147b659', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (239, '2022-03-28 07:24:51', 'SALE/POS2022/03/0239', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '684c5a181ba1f5175cce3e7199b03279d8d2f17c6f22d35c0d65635ec8f0cda9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (240, '2022-03-28 08:48:08', 'SALE/POS2022/03/0240', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d1be1bc7d353f6bc729a6742803116829a3096a28146c2142a2c6c15c9bc16b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (241, '2022-03-28 09:58:39', 'SALE/POS2022/03/0241', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06b6d5f7bc35e3028352224ecea9f245206373e9d39709d1858e1108e33587f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (242, '2022-03-28 09:59:15', 'SALE/POS2022/03/0242', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf1daaa455d7a35f97341b97a324751526e2da454c35d674795c2baf00b5897a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (243, '2022-03-29 04:21:47', 'SALE/POS2022/03/0243', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ceb1c5a9a7bb183e5457dbade7be21022e87737a0c1fbf450219c922a75107a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (244, '2022-03-29 04:30:00', 'SALE/POS2022/03/0244', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '&lt;p&gt;paid by card&lt;&sol;p&gt;', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, 6, '2022-03-29 04:48:26', 5, 1, '3050.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db160bf562e2783104888421545ef7ca37c1e1e3b385575ce627e565ac48675b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (245, '2022-03-29 04:32:31', 'SALE/POS2022/03/0245', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89bfb47f8a7c590426a8b69f59855363f240920bebbc45c92f3f21e4aeefe57b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (246, '2022-03-29 04:54:59', 'SALE/POS2022/03/0246', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7788f4acf726ed8c18bbfc160c785b942d20186d00ccd31dd2d6e05ec552a0fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (247, '2022-03-29 05:40:04', 'SALE/POS2022/03/0247', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93d70583dd00ae3fdb2b975e65c44b3b96adaab3d38a5b4366dfe2ee506708d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (248, '2022-03-29 05:52:23', 'SALE/POS2022/03/0248', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6acca8b47c420935c0a6ca279f206c413a8b5b82de6b05864acdab94a97a1f76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (249, '2022-03-29 07:29:10', 'SALE/POS2022/03/0249', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71aabd95afa5dd13b723d572edd4fe195f832385c3ed3ee39fea0683387572dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (250, '2022-03-29 08:04:14', 'SALE/POS2022/03/0250', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3550.0000', '0.0000', '0150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b68f98b49648f3dba58bf3c43d6bc09418ea76769e5e517b564b98929322414d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (251, '2022-03-29 08:08:51', 'SALE/POS2022/03/0251', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82c105e962c60dcf443f6dc413d0cb3824a2815ab714a2701b258ac75418c43d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (252, '2022-03-29 08:36:23', 'SALE/POS2022/03/0252', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ebfbce32052e3913ee361a06a1bb0f6c6d87e219d1f612613259f8c48c90e7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (253, '2022-03-29 08:50:01', 'SALE/POS2022/03/0253', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '628521bd4ba5a4272996e0f8ea68954e6faf6a3e5b56679fa25415b73ee71163', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (254, '2022-03-29 08:53:07', 'SALE/POS2022/03/0254', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e80a32380de5572b9807da4f4acbcbeb4cbc075f57aeb8c55cf48e571d39da6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (255, '2022-03-29 09:30:59', 'SALE/POS2022/03/0255', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d7782927f15803c4893ea7feaaf99c4fc21a71c3e1568fda375e5075b43970b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (256, '2022-03-29 09:36:41', 'SALE/POS2022/03/0256', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2e93c305ce87671a03d005ae4ecb7591a3d456275eeac81bd7244eded94a58d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (257, '2022-03-29 09:50:19', 'SALE/POS2022/03/0257', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ab52f2209e1f9826e8c7c6d41d20647c847dac77f1baa1ba5e9fdd08f953b69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (258, '2022-03-29 09:53:13', 'SALE/POS2022/03/0258', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b155460865edd7fd5643a0042870fac465195038587415b29958ce32850a03b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (259, '2022-03-30 01:11:29', 'SALE/POS2022/03/0259', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56d741a2604f5cc35f56523274dc46d07a31e27586b8a8772e2fd12da91a1f0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (260, '2022-03-30 02:49:38', 'SALE/POS2022/03/0260', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d0fbc4af818cb2b3eca10eb24581ca0b6b83f006052c1bc0ee409cbbf985527', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (261, '2022-03-30 03:12:38', 'SALE/POS2022/03/0261', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '622a3e02c88aaf68af3dc4a7128a0f51ee3c1ad91aaf3a58a44ea80452f6f01c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (262, '2022-03-30 05:41:35', 'SALE/POS2022/03/0262', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '827c5ad11a969ede741926e4a02154b751daa3d9d170a28301aed4d2927775c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (263, '2022-03-30 05:46:23', 'SALE/POS2022/03/0263', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11ada6da7d640872387917ab63238dd8d97a4f708a752b49d6e284ffac7b7dca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (264, '2022-03-30 07:13:57', 'SALE/POS2022/03/0264', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5331c50495eb991a233366af1d0794a7cbe419d6b7bd99aeb0c559323dfe3b3c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (265, '2022-03-30 07:19:52', 'SALE/POS2022/03/0265', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98de2e905aeee713bcd1549fa67856ff9030a913b49b516a6036b1dc7a5dbcdd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (266, '2022-03-30 07:44:47', 'SALE/POS2022/03/0266', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d7bec0bf2ca2ffed492ca673699bc27f4e03b41c4b102f3ec28f2768ff88099', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (267, '2022-03-30 07:58:32', 'SALE/POS2022/03/0267', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb7a0d91285eea122cc8781b66c90a586c653e37ecf55631c6600d60c22481a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (268, '2022-03-30 08:43:12', 'SALE/POS2022/03/0268', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '997a5cf4144e38adf24dcfe0fb2cc2fca324b5c648211410228fd6b04d7cdd85', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (269, '2022-03-30 08:57:40', 'SALE/POS2022/03/0269', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd73914e42a74ff72d7a12175f4d891880352851c3c753de952683fefa546b5bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (270, '2022-03-30 09:04:07', 'SALE/POS2022/03/0270', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '587064b6b7161c626023af79d887975269a292c2936a9e9755579f4e6e5a1afd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (271, '2022-03-30 09:36:15', 'SALE/POS2022/03/0271', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4214b2df96192752b69c4d2f23156259e942b22c8dbbc1130fcbc7e79541bc03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (272, '2022-03-30 09:43:40', 'SALE/POS2022/03/0272', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dfaf7a38768c44c7ae84e4639a28a683bf552e1d684f9b7874bbc17ddb3fd7fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (273, '2022-03-30 10:02:12', 'SALE/POS2022/03/0273', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '908bd136a23bd7793bdb81f1c5b9f4bde16fc3037bba9ea7093119cea922d31d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (274, '2022-03-31 01:29:50', 'SALE/POS2022/03/0274', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '327c659f2eec5e406383800465dba0041bc9d912b978268dc0aebb45fe64c053', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (275, '2022-03-31 09:19:04', 'SALE/POS2022/03/0275', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f614d775e97dd0222b503439942fc2ed45025bc9766c8c8f35454004d245160', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (276, '2022-03-31 09:53:09', 'SALE/POS2022/03/0276', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '300bc3434e9803ee046c729550a70a790e5cbfc92fbfd467e5b05612e7a638ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (277, '2022-04-01 00:42:22', 'SALE/POS2022/03/0277', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a481241ea0e375d8b6135fc7fcb6ad76df6bc681bd2850bb8a4a29a610735170', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (278, '2022-04-01 02:07:55', 'SALE/POS2022/03/0278', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e28cb205905c3e5580a4c23d73637d5d8f1360d9ce61c1299474ef5244b7c96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (279, '2022-04-01 05:16:48', 'SALE/POS2022/03/0279', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '12100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cf14d9448a129b822cdcb47c04656e43840913569fb77c9dc036e77bef72695', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (280, '2022-04-01 05:47:35', 'SALE/POS2022/03/0280', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '4800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c3b73e291528798b4e2770f2ec54d91decfec7fd673ad4553226fbd34455994', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (281, '2022-04-01 07:50:24', 'SALE/POS2022/03/0281', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecad0a901df68d151aabc8aef7e100b41ebead82fc30e8a02c4d8a47a2373ed0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (282, '2022-04-01 08:12:07', 'SALE/POS2022/03/0282', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60529955dec0904b80f33ac8d540ab8bcb9d05e754d88cae8d6fa0220ae2fe5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (283, '2022-04-01 08:12:48', 'SALE/POS2022/03/0283', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c503f0600ca8fff83665a46976f13898eb7bb8451290da46c80f54bb00bc61e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (284, '2022-04-01 08:39:01', 'SALE/POS2022/03/0284', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '11850.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '11450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31da5f4344711ac24b84c2927921c46ad529a1509b6afcf838cea36c6b8c721d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (285, '2022-04-01 08:58:46', 'SALE/POS2022/03/0285', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '1250', '1250.0000', '1250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '981e19c3ea7ece1e572c46d0e63a34bd9be67914281c23c72cc5e2eed43d5f5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (286, '2022-04-01 09:19:56', 'SALE/POS2022/03/0286', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adffdfbec74e1cbc805fb1c41d04ffa570eb6d9b15710be45f02eb9af2f4633c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (287, '2022-04-01 09:33:52', 'SALE/POS2022/03/0287', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bad0da24ae05ce12097a5ad8eb2886fde1aec8d576d61595d8cc4656e6cc205b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (318, '2022-04-02 11:04:16', 'SALE/POS2022/04/0318', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a685084c9c8df5202dae71cabfef9514b859d73c6fc822e14266b61f51defd3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (289, '2022-04-02 01:24:27', 'SALE/POS2022/04/0289', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c92b70810e949658d4e6bd71b5260c2a69751790b41ad4bfbc990ab5b3a1818', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (290, '2022-04-02 01:25:52', 'SALE/POS2022/04/0290', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '784fd24f38cb2a479b7d017085d45f6b050e0bbec4e12beb5fe36e8538a9ae75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (291, '2022-04-02 01:30:01', 'SALE/POS2022/04/0291', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25d7ba376e7e25b7fa097b10cf7a818ddaae572cb1fc570561e9e438bfa352c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (292, '2022-04-02 03:31:59', 'SALE/POS2022/04/0292', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b68e8e14bcb7f624e92d2c58467f83a2b4f4410a16907ad8e6df3e9b814f3a10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (293, '2022-04-02 03:47:52', 'SALE/POS2022/04/0293', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '115382586d5f1daeb49f74876ec1896c5ba3ee81b959a7fe6d175845a7ab77f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (294, '2022-04-02 04:38:52', 'SALE/POS2022/04/0294', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38523143ba985762a2865446d221a7cc119ef9f63f31d4eac06c3f48b9cf43a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (295, '2022-04-02 04:53:16', 'SALE/POS2022/04/0295', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7dacf1ab95d962cd77d6ed9276f7bd0114ba24d08950a9dddddd37931df392f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (296, '2022-04-02 05:08:05', 'SALE/POS2022/04/0296', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02f7fa8fe930414df6858691cdebedc4501ab510bb01a4d32b91794dfb9ae0f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (297, '2022-04-02 05:08:56', 'SALE/POS2022/04/0297', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f43c1ef36d864eb50ebbf45403b2ccd084738464679ef654b663190391aaa4ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (298, '2022-04-02 05:09:27', 'SALE/POS2022/04/0298', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07a16dc3a2bd6ff8255f9df9696c6d7aeb86b38a2e16345d9c30197b057800ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (299, '2022-04-02 05:12:03', 'SALE/POS2022/04/0299', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7aae0508d976e99a67c12e88002c6b45438ddef931f012679bf257ce414f9ce5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (300, '2022-04-02 05:27:31', 'SALE/POS2022/04/0300', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a782fed2afa0925169b27c22b778aa752f0981fa01f9e391dd8e7be1bd7ec6cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (301, '2022-04-02 05:30:03', 'SALE/POS2022/04/0301', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '18000.0000', '0.0000', '2700', '2700.0000', '2700.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '15300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '695e07a6ee747184e1d64e1fb8520c8eda2282e1e8f26abbd1b521ea7f711f22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (302, '2022-04-02 05:56:49', 'SALE/POS2022/04/0302', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '834b55614387e3ba96c36d809d6b1fc35455e7828f7ca3b57c4206b66c403ac6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (303, '2022-04-02 06:43:12', 'SALE/POS2022/04/0303', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '302c08d3b2b092009c6eb5522edbf2f16349149fd0dd74933602b4462d269350', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (304, '2022-04-02 07:21:44', 'SALE/POS2022/04/0304', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6fc94997275fddb95a9a83f8ddb74b988a487673a8a16ece69b53dbe6c4ac188', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (305, '2022-04-02 07:23:08', 'SALE/POS2022/04/0305', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f935ca5de46d34fe8c2c14d34b26b77601a94b255eeadcbec06f458999c7ac92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (306, '2022-04-02 07:59:53', 'SALE/POS2022/04/0306', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c05d53e663f52715845b586b8ece75d0d825add85d34c4e170d8cde486e559b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (307, '2022-04-02 08:40:01', 'SALE/POS2022/04/0307', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59ae0fe44f1cb84f0c714312d1800e2cce8c914489a4ca443743f94dc77ea56f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (308, '2022-04-02 08:59:28', 'SALE/POS2022/04/0308', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c5755dadf9b6b7890eac82d5bf8e171cb96b620337470ee2215ad8be562c4fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (309, '2022-04-02 09:05:32', 'SALE/POS2022/04/0309', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd812640d8801a2a0073a367bec7a0447414eb2724d7a66e99718c8ba71e0f46e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (310, '2022-04-02 09:11:11', 'SALE/POS2022/04/0310', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '385c825cbb151ed8874b2e5192d00cafbc92f8c21b71e00b4288267f569dc9ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (311, '2022-04-02 09:12:47', 'SALE/POS2022/04/0311', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7cd5960343b9efad3e884337ddc6f31e5e7eeb3726f4802fb97ac9c5686a51ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (312, '2022-04-02 09:15:50', 'SALE/POS2022/04/0312', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67ccc9519a6663c9b35cddfc43d1f8af85584091000ba8c2908b291107eeb0ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (313, '2022-04-02 09:32:45', 'SALE/POS2022/04/0313', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb235e6be558a69a5e92517685565cc032d5cb8ee8022c01f0c7d0f724168387', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (314, '2022-04-02 09:41:02', 'SALE/POS2022/04/0314', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '016b522a90638b410bbc9fe5efc59f6c1305edcbfa99d2f8eeda4b14aa24df49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (315, '2022-04-02 09:49:04', 'SALE/POS2022/04/0315', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00d4cbf144fa7c2521d5b41c23b7b85c4ed9dd91485542047fcfde886b76997d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (316, '2022-04-02 10:17:22', 'SALE/POS2022/04/0316', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3120.0000', '0.0000', '020', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f91df89c1382705d4e472005be4e34447ca015aa94732dcd394a6854d27fa89d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (317, '2022-04-02 10:23:20', 'SALE/POS2022/04/0317', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02d4fca0757b33811e0e496cff0d3870d8fd2ea3a60a14f589c7c928ff9c9d81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (319, '2022-04-03 01:50:59', 'SALE/POS2022/04/0319', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4fa4bb30b0dcc781b97d1f89f35af4859b53e5495e25b4c21905859627d3e73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (320, '2022-04-03 02:04:16', 'SALE/POS2022/04/0320', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7805a6e064caf934856ff7c814afc0c9353ba306f62ff8990ead1d3954a23ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (321, '2022-04-03 03:42:40', 'SALE/POS2022/04/0321', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f70a628080922bc893106639daf83ea850b45799e8decd5e6124416ac0dbfb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (322, '2022-04-03 04:12:01', 'SALE/POS2022/04/0322', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ed4816c2bbb21226ce1d3fa50d209e32d42bb477d4981927ef914d1ba5ac336', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (323, '2022-04-03 04:14:49', 'SALE/POS2022/04/0323', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87aaa47489229f4157f14131ae752a9cc1f0dfda5f6d7d2a2dbc5139fc48b2bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (324, '2022-04-03 04:19:18', 'SALE/POS2022/04/0324', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '0500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e33494a6c4c40700ddea341de2008626f4f024ae362e0a0cc1085366d5f936b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (325, '2022-04-03 04:46:53', 'SALE/POS2022/04/0325', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '663337459ced5af189e87cca3fa732385229456907299feca20339fb39fbceef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (326, '2022-04-03 05:08:35', 'SALE/POS2022/04/0326', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f5c68bed514d7297111edd2b578311ec36eecff727b667b80fb4f33b1dde497', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (327, '2022-04-03 05:16:09', 'SALE/POS2022/04/0327', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dfc964e7f0c3ca4cfc19d05d06051d3e07d14f209e59f5650917b69c163de984', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (328, '2022-04-03 05:44:01', 'SALE/POS2022/04/0328', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ac3e7a1e0ae20140da301b1dce5e50c45a7a0b78113837830d4774015dd273a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (329, '2022-04-03 06:10:19', 'SALE/POS2022/04/0329', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd047748f217adf7e5ec6abbb5348536f5ebd0f1d0b01d4f7c25b9be51aa06d77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (330, '2022-04-03 06:26:21', 'SALE/POS2022/04/0330', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8135106bff837ac3d504d1f177e1dc1255fda817984e5d6a50d7dc23d9172b96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (331, '2022-04-03 06:30:07', 'SALE/POS2022/04/0331', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca9b8b606405db2dea610d03030ff9ca0a5c46ca8f60fdcc5ec51da16b57d5b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (332, '2022-04-03 06:40:58', 'SALE/POS2022/04/0332', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16a85f34f0c92d36b0838fbaaf3da55094fddf77d6945a9781d240ce423c7f5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (333, '2022-04-03 07:20:26', 'SALE/POS2022/04/0333', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '360.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '360.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd17100a157f65184e78423f4bffc20536d86727f47cfd2f0159d377b8ec8fe13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (334, '2022-04-03 07:40:40', 'SALE/POS2022/04/0334', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59bf47e9a44ed55c940e3fabb2c38263171964a8e8a787162f301aace9033aac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (335, '2022-04-03 07:49:59', 'SALE/POS2022/04/0335', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f71a06ba64cfa9e2bab11ec8ea21e599d1a057d7825f8f9f4228c3b33829ca2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (336, '2022-04-03 07:51:26', 'SALE/POS2022/04/0336', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77b249e87c6041baeeca1b9d3e7b6d779b334bd152aef8af1014f4291e9ce4ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (337, '2022-04-03 07:53:36', 'SALE/POS2022/04/0337', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9621014dd527ac0c23748737f83552596ec9457b79277d75953ce46e14708e58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (338, '2022-04-03 08:13:54', 'SALE/POS2022/04/0338', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '690349821749eeaf60b6269f32622757d1005d9b0a9fc2f0a84df55a719318c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (339, '2022-04-03 08:43:23', 'SALE/POS2022/04/0339', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c49e3e18826c7fa868d44a5afbf224dfdfca9dedcb9558bfb0b70e699e14ae6f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (340, '2022-04-03 08:59:42', 'SALE/POS2022/04/0340', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad4135024d1b2fb7205a6ba2aa0452d1bb0d7427759239afec5e9571bc44a91a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (341, '2022-04-03 09:54:00', 'SALE/POS2022/04/0341', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c645db53ebc3cabd31daa98c65edba6736782339eaf422957d669a59e850f6b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (342, '2022-04-04 02:20:24', 'SALE/POS2022/04/0342', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '375f5b0c3a6e7d8eebd84582185d38dd1e8bb8ff8336d1ce5d8e9d9639548295', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (343, '2022-04-04 03:21:03', 'SALE/POS2022/04/0343', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7e69b75aa910b175bb9e087d27c94588b1910d272ab49e347e007e3f18f39f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (344, '2022-04-04 03:53:49', 'SALE/POS2022/04/0344', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c99b29190ca442c2f3c25f6053f4c66bbecd1cdf25e972f639e251e334b8038b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (345, '2022-04-04 05:09:26', 'SALE/POS2022/04/0345', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '5850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46f2277bd96da219d49b646207ac08451c7db4a5d79b2c41fe915f68cc826392', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (346, '2022-04-04 09:57:48', 'SALE/POS2022/04/0346', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b1f1e58c68af8e26a0edbf9f676c5aab93eea40383582dc9c8dafa98393f070', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (347, '2022-04-05 02:34:12', 'SALE/POS2022/04/0347', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34d623d935c182edfcedec2f8a1c208a7091f0b8994a100567753187a9b555d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (348, '2022-04-05 03:33:45', 'SALE/POS2022/04/0348', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '461c7a50e4d72db8d14f6be66130c80880672f4709ef78bd4ce8ceed4e3fbbb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (349, '2022-04-05 05:57:05', 'SALE/POS2022/04/0349', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a16119069af89c0dddeb9a0a1f73db5f2f7d385da6dac0e59e2862ba3dcf058', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (350, '2022-04-05 06:29:14', 'SALE/POS2022/04/0350', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e87e34bdb73a2b229c3863e37285feca46ae9276d16b164795a0d8c911dcf832', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (351, '2022-04-05 08:47:06', 'SALE/POS2022/04/0351', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6433add5c4ea7199f41ceb07c2bfedc2b22564529ee500c347082a00e8bc674d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (352, '2022-04-05 09:57:29', 'SALE/POS2022/04/0352', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ca3970cab1bd2c3cc67859588ded3d80afa13bb03e30ad96e96e78fc782f3bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (353, '2022-04-06 02:00:29', 'SALE/POS2022/04/0353', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed18d4436e85ab488f3557f39aa44e5b80173cbaa6388778af3c2309895922d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (354, '2022-04-06 04:54:57', 'SALE/POS2022/04/0354', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 30, 1, '7800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c181319aa455ad8c0de6612dc4bba85b36ca1ebfdc00902d9ccf406d6f95425', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (355, '2022-04-06 04:57:06', 'SALE/POS2022/04/0355', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aeee336d16c649c3b4f7bbdeb7d66c1397e2cd4445e00c2fb47928aecdd6d0ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (356, '2022-04-06 05:10:48', 'SALE/POS2022/04/0356', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2663ab83a33bb10386b0f0f967394ce9d1ec9c855e8d88e9f006d86495bbfabf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (357, '2022-04-06 08:30:36', 'SALE/POS2022/04/0357', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60922300602992315050182fe82e1351809c5db63afb56fd1cf476ea8cb43e2f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (358, '2022-04-06 08:57:50', 'SALE/POS2022/04/0358', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf138ffc0d34bd09730641d1073ccc5ae9b193ebb617a0128b482d70b18ea3c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (359, '2022-04-06 09:57:37', 'SALE/POS2022/04/0359', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dad1da8c5bc767e4f637be9a0f928178ac3511d13a6fb5908ec2d4b41ca71fa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (360, '2022-04-06 10:17:02', 'SALE/POS2022/04/0360', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7fbceb15be30d032f37b44ef7919f4c1ca8b8814b49ba6bd3fc2605952d9c44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (361, '2022-04-07 02:22:02', 'SALE/POS2022/04/0361', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56d496e25c0da8cbc34d3ddd1820058646260a0f08eec179a670a26a427c9d30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (362, '2022-04-07 06:34:16', 'SALE/POS2022/04/0362', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50e9eb2586b1c28d222a46eb860c58bf81a0409874ea1e535927628d6a07dec0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (363, '2022-04-07 07:10:16', 'SALE/POS2022/04/0363', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0cf06bb4f4e0427d5eb6d6925e8bb4d576bec945122c6fbfaa0ce1e33738012e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (364, '2022-04-07 09:03:36', 'SALE/POS2022/04/0364', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '397d7df7046fd27cfc78bdf7a87fd5de4b4955286cd2a00d1978e6b458c3ab9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (365, '2022-04-07 09:44:51', 'SALE/POS2022/04/0365', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2760.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2760.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2760.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b4e71b0a5d2a218337cdce84597a4319d69a5870f181c179879f65313dd37a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (366, '2022-04-07 09:51:09', 'SALE/POS2022/04/0366', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01912511f5a7895b1ff399cd0fd995e3ac4229694af6dd1c590ec825379948c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (367, '2022-04-08 01:03:21', 'SALE/POS2022/04/0367', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70bcd40c5b96181e12a5066389ec3531f4df0dfe62bb97ccba8cbb5ed732f47e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (368, '2022-04-08 02:44:16', 'SALE/POS2022/04/0368', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cb29efad7c26898a86b1f3a1804e195d888cd1430137a7b11cecd9f8a87a4b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (369, '2022-04-08 02:59:53', 'SALE/POS2022/04/0369', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32dc4dda377fb467cd901e2599923c1fca17b8f1be1793a08ebdd70bcc1e5d31', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (370, '2022-04-08 03:31:14', 'SALE/POS2022/04/0370', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8418776ecdfcbd4174e7e91eecca8ba32d26500d0a35b552860f8d8de26c51b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (371, '2022-04-08 03:53:51', 'SALE/POS2022/04/0371', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4059de73a5fe79a2a66b867f4a3913d0c1fa26cea7d80651b1edb99437a9083', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (372, '2022-04-08 05:35:14', 'SALE/POS2022/04/0372', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13e0bc8b5941c56699d72362e75629859d2366bfddf2370a5fbdbf2b96cc20bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (373, '2022-04-08 06:19:52', 'SALE/POS2022/04/0373', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa378151f40b963b294695f8b10d543bf6d51444adfe649e3b0f7952bdd382cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (374, '2022-04-08 09:08:10', 'SALE/POS2022/04/0374', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f07ca71488188e2a9c6f22abb780950048e04f8887e8378b5ad44b8937be43c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (375, '2022-04-09 01:26:30', 'SALE/POS2022/04/0375', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc963a9260a600abd26f417bd4e7d540d669988efb84e7972d8c8775245eae4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (376, '2022-04-09 02:46:38', 'SALE/POS2022/04/0376', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd742d7b39d37d66c0e9e0496bdd0f7d7a0245794951d0dfbfd291edbabf41e35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (377, '2022-04-09 02:49:15', 'SALE/POS2022/04/0377', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '093dad3425db39dccf87f9f23c74e4a3b30e6db7f43b3840b01c31f774f00def', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (378, '2022-04-09 02:55:49', 'SALE/POS2022/04/0378', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21bed2008d0e1d7d5004919ae0953838056cf6466678ed294df5281374cfdd6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (379, '2022-04-09 03:05:32', 'SALE/POS2022/04/0379', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2877adcc1884da0f729aa4f828cc4c21d5cb629b4ab7d3f25c66186c5cfc3a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (380, '2022-04-09 03:14:06', 'SALE/POS2022/04/0380', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3476f8dca0141c72ff307f02a68255348da3e874aa8018583e2f96c01ab61dea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (381, '2022-04-09 03:16:39', 'SALE/POS2022/04/0381', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3431cb040b7ad355ebe99ed4bbee91972b418db2ac419e06a9c5c2d8b3d6b13b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (382, '2022-04-09 04:50:18', 'SALE/POS2022/04/0382', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f512b46c456c95900b86bfd9c8a93503745c2b9092f275a9e3693ef80828f180', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (383, '2022-04-09 05:02:28', 'SALE/POS2022/04/0383', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f082720a9522508a468a69b877d2ecfd071f989a85fb97b189371d9494082a41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (384, '2022-04-09 05:35:50', 'SALE/POS2022/04/0384', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0277843b4d1fe5c28212f175e0671668f395187b9279b64b40a44d11dca1c032', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (385, '2022-04-09 05:48:46', 'SALE/POS2022/04/0385', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '790580de2a79a5e9fd4496f05f160cb2b608077ff3387c565e433840c8ce2015', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (386, '2022-04-09 06:10:40', 'SALE/POS2022/04/0386', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8843f00011bce34cb72b13ca07926b743859b08f238b011a885510abfff3b291', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (387, '2022-04-09 06:23:20', 'SALE/POS2022/04/0387', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e409f823f14951d92e62164b7a6cc275cfc348142fd73dda1725d8227c9e7fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (388, '2022-04-09 06:29:52', 'SALE/POS2022/04/0388', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ad3945175d264990cca7b848163dac19fca00094296f38092dca9cdfeb9a283', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (389, '2022-04-09 08:18:30', 'SALE/POS2022/04/0389', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '057f76a26e842d1b5a4a5c0bb3b0d549639e9ebe1b52533d3b19b29c4a3837d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (390, '2022-04-09 08:32:04', 'SALE/POS2022/04/0390', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3665a83ae3ec02c689297b5e0040973e98314882717be74c326141f749264b10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (391, '2022-04-09 08:36:52', 'SALE/POS2022/04/0391', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ea726ff02c4ed56eb6a20b9da91f09620bfbccce5718a9b9458414c78291bf1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (392, '2022-04-09 09:17:58', 'SALE/POS2022/04/0392', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9dcd78f85f9a5b189318d39774c7e0b0180aff2e3affcdc1d4dc462157dc79e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (393, '2022-04-09 09:31:26', 'SALE/POS2022/04/0393', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '218b3d5be60fe94a4e0a58b08e0d22354b86c78a7ebe710d4ebeb15994cde289', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (394, '2022-04-09 09:33:09', 'SALE/POS2022/04/0394', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5e3716a6716f5234f40f96dfe95af411ceb2ef6c82c854cf9fe362b61a35812', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (395, '2022-04-09 10:11:37', 'SALE/POS2022/04/0395', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22b4d8f463cecdf2d92ad11b28f9d33236be17960a87bcb9187a2daff5b09314', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (396, '2022-04-09 10:28:23', 'SALE/POS2022/04/0396', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '780eb30f45f197f674f1d2c251d41f1cdd950888402e75e68f2a4ae05e63209c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (397, '2022-04-09 10:54:39', 'SALE/POS2022/04/0397', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '538bb80d85dea4af4fa4a09889cc5f5f82c9d1a99deed134ea492585046557f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (398, '2022-04-09 10:59:52', 'SALE/POS2022/04/0398', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6da39014d334052b5ba1f56ad6b9a2e8c11cfe7f3d50c03ad641d7dcee34e61d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (399, '2022-04-09 11:15:03', 'SALE/POS2022/04/0399', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '190ad4152c04275b34538a897bb3b6a06871a4d61c8d8467f9eafcb14777586c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (400, '2022-04-09 11:30:48', 'SALE/POS2022/04/0400', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3d5e2a2a69f4a0268554e0963ef1199f8fbc699186361d2ef35cf05caa387bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (401, '2022-04-09 11:34:10', 'SALE/POS2022/04/0401', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6c179a6e0ee78051c63fcb0e6c6b0c4a4281e56e99b647f07edbaa00fc6cea8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (402, '2022-04-09 11:40:15', 'SALE/POS2022/04/0402', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f642fc62ee8efca382a8579a46cd217e94f64066ee924ba9af33f0f35fc6847', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (403, '2022-04-10 02:57:54', 'SALE/POS2022/04/0403', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b8c7d836457f81d4bab81284c37ac3d48bada67d816063d49827c90122f4b5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (404, '2022-04-10 02:58:42', 'SALE/POS2022/04/0404', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '365f498e2513ea58db4288a9eb705f8dde4b8ac9bd073cbcdf15aec38e36baf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (405, '2022-04-10 03:04:19', 'SALE/POS2022/04/0405', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c812459873b1d81e642625c32a0065c3fdc96c23624fed53e073cbd4e4fc79f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (406, '2022-04-10 03:09:25', 'SALE/POS2022/04/0406', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e085429fd6855e55380d3d958929592ea92090bc693af19d93aad84a3f7a003', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (407, '2022-04-10 03:22:26', 'SALE/POS2022/04/0407', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e32eb78b6cfe77c68b79a1daf5a6d2d1a084a8a53969383dbc20f2eaa42bfbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (408, '2022-04-10 03:30:12', 'SALE/POS2022/04/0408', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36dbee82986a0c4b90b7693c85999904be3044025d032d7cc74e508335779a9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (409, '2022-04-10 03:50:23', 'SALE/POS2022/04/0409', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c55c19068705421d9eae3aa817c6c66bc0e61ef05eee7d5d6ec86aee51e7132d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (410, '2022-04-10 04:18:59', 'SALE/POS2022/04/0410', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c4db0c2dbe2109f1cf46fe35817de63269fb9d8fce22fe41ab56ee414ccb6e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (411, '2022-04-10 04:21:52', 'SALE/POS2022/04/0411', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4012f41f84c1b27418019722bf6baecee0667b9d44b48902128166b2f3e0ff95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (412, '2022-04-10 04:28:52', 'SALE/POS2022/04/0412', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b12e90f40c38af044351bcd0c072ed7432b4d8fb406dda01426d3500939267bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (413, '2022-04-10 04:46:19', 'SALE/POS2022/04/0413', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb35706557fc8d207a5c899a20f1717eaf2865d0f6374b0dc2188a22d38ee43f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (414, '2022-04-10 04:47:53', 'SALE/POS2022/04/0414', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '995fc5d94ce0d3c17c8cbb202c9113140069df6601d34d87c28dd0071d90040e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (415, '2022-04-10 04:48:59', 'SALE/POS2022/04/0415', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8d06c1ec393771a04d4f30e13becc584fc8d5f8d943e0c40399aa54fc52167a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (416, '2022-04-10 04:54:54', 'SALE/POS2022/04/0416', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82232be3b6994f69dbb91c55e873514a01377bbb89a81c341a51561893141cfb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (417, '2022-04-10 05:00:00', 'SALE/POS2022/04/0417', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0b0390c3a8c54f8a77f8770f16a94a32988594b7a29887c10a3acf38f42681c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (418, '2022-04-10 05:39:38', 'SALE/POS2022/04/0418', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c670b645a08754d6f5fe61bef2aa0f01f80192a7109a25343a4d9fbc7e8f47ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (419, '2022-04-10 05:48:30', 'SALE/POS2022/04/0419', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1593d59304b5907f4367ec07fb61383e095c0ae93586faf2f801c4419dd783d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (420, '2022-04-10 06:15:20', 'SALE/POS2022/04/0420', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3db8bbcafd5218303f736c6497fcdcd788bf72cd5193d4b564c7a3403e875d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (421, '2022-04-10 06:22:47', 'SALE/POS2022/04/0421', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b205c29daff2c0a5b4a5cbd52608dc75ebb50d8f84517cf55969b9bf9cadd49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (422, '2022-04-10 07:09:26', 'SALE/POS2022/04/0422', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c86276cd95cf2a83d57850013bdffb866cbc0b173603572d66132b7263d80c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (423, '2022-04-10 09:33:51', 'SALE/POS2022/04/0423', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54a8087720f42550c8528f36a47ee8eb477561a74122f8526c7a5b3300b39dd6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (424, '2022-04-10 10:14:52', 'SALE/POS2022/04/0424', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c79b14f2dd0440546a6e274df1d59dc94c881475a8efd6bbaf441f293bba43f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (425, '2022-04-10 10:45:37', 'SALE/POS2022/04/0425', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7375a27f3d2bf3a2c2a79ad518f837f0ee340977c1722f2e39a03160d3fee3cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (426, '2022-04-10 10:54:50', 'SALE/POS2022/04/0426', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcd45a528173f8be740ada8df1e6903ae32bb6b582781727006d4fbd91b5af76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (427, '2022-04-10 11:43:34', 'SALE/POS2022/04/0427', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '6000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7601b8a6c8dccf07efb8cc58d117d986fb78362b30e0767944b84ede0491dcf6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (428, '2022-04-10 11:45:07', 'SALE/POS2022/04/0428', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a1f69666e935912b5bf62cb5a1a9fe82247052dc87dccb9903b44c814831231', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (429, '2022-04-11 00:17:23', 'SALE/POS2022/04/0429', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a555fe8587061aeb2fbc8b1682ae7e1402684a3153d8f37c09d478682821fe9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (430, '2022-04-11 01:54:49', 'SALE/POS2022/04/0430', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3fd7dc0ad2eaaa90a6b0f5d802f8048878373889bcf3237605d0a6c577b0692f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (431, '2022-04-11 02:50:03', 'SALE/POS2022/04/0431', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6550.0000', '0.0000', '350', '350.0000', '350.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '6200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df0dfeb0afb1ad373bee58c0ea43b5235decda6a677c8df33b8d82b5fc3fd430', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (432, '2022-04-11 03:52:09', 'SALE/POS2022/04/0432', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c835794170083bd5a21483609262add3ed1f280e15af6063b4609fcd77bb397', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (433, '2022-04-11 05:19:27', 'SALE/POS2022/04/0433', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1352bc3a91721c10a1955f9f569a8c1dce72a3fc3092b36865cdc9aa95406142', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (434, '2022-04-11 05:50:10', 'SALE/POS2022/04/0434', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '980.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '980.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '980.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10bd4cbe4eeaabb7024ca3d3443088c78646361f29500dbedc14cfc6e6c359cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (435, '2022-04-11 05:51:03', 'SALE/POS2022/04/0435', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65985399948c700b3e0767ed3c184810037a25505fff66b088fa8e13a28e07b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (436, '2022-04-11 06:08:32', 'SALE/POS2022/04/0436', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0bb9223a5aec3dc91afff4bdf17a931104bad7e71a90e7a69f23d7418e717d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (437, '2022-04-11 07:47:47', 'SALE/POS2022/04/0437', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f937aaf63a0dde1f568282f023b806734dd057db1bd6fa2266d0422da652babb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (438, '2022-04-11 10:44:40', 'SALE/POS2022/04/0438', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4450.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a072c12a6fad49a556fd16e95e4938f17886f819c48285b542c4c651c5054ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (439, '2022-04-11 10:45:33', 'SALE/POS2022/04/0439', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46e623dcdc577632cc93ef7138c558f8593625ce9f959001a34a5f8a59f32695', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (440, '2022-04-12 03:17:50', 'SALE/POS2022/04/0440', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '320.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '320.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be4685cbfc7d18b359c1723b53d0f5b34e9865c1331b39bba0f3e6ba95c3e24f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (441, '2022-04-12 03:23:22', 'SALE/POS2022/04/0441', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64e9d6cf7b2d03ebd87acf25530cdfae494bde4a54e72ffe04c7eb8554b0b8b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (442, '2022-04-12 03:31:45', 'SALE/POS2022/04/0442', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95f9a99df85ee8d9b3bd99b898288fd1f32d1417482e98d487faeee7e21a7a0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (443, '2022-04-12 03:53:22', 'SALE/POS2022/04/0443', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '0100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd79d070d5c073a6970e98bcbca93b9f4c9ef8839a6ad97e2260ee7d4c009199', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (444, '2022-04-12 04:11:12', 'SALE/POS2022/04/0444', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73ae2a2c00e7bf87fe85969a374d671525edc393ffd9f0451045c4f98b7b3a76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (445, '2022-04-12 05:06:29', 'SALE/POS2022/04/0445', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07ff98ce0aeb0c2c9b0d6f075bbbf1f561a93477ec02a71adfd7c02ae63e143b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (446, '2022-04-12 05:44:47', 'SALE/POS2022/04/0446', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23f237744d367353277e05a70f5ec292c8b72d35a3ca50542b3d01a87fea7513', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (447, '2022-04-12 05:54:10', 'SALE/POS2022/04/0447', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab6d703f13faafd79a0f7fb59581727d033d5b8b1bb878f00f1e271d88b49ed3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (448, '2022-04-12 05:59:52', 'SALE/POS2022/04/0448', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2efdb0f340c21d9cb4aefc532e8158e4c1bb2d13f1d339a98950c9408e32fe3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (449, '2022-04-12 06:08:07', 'SALE/POS2022/04/0449', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd96094e3e1fe1751e05134eef9a8fb7fca2153f03cee7a77e571464cb79dd34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (450, '2022-04-12 08:59:26', 'SALE/POS2022/04/0450', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '470142ac74663a9fbe2fc6085c0ab625fcdd0d1025d75a548866562470c76faa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (451, '2022-04-12 10:46:21', 'SALE/POS2022/04/0451', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8200.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '7800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2165dfdc232de118df30b368052f667a6472ea8f3a277359d9ec3b99412d82cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (452, '2022-04-12 10:50:41', 'SALE/POS2022/04/0452', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '787aa2b5fce3c1d1fd185155b43c50033de5de3d55340bb9c119691f6ea077ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (453, '2022-04-13 01:46:28', 'SALE/POS2022/04/0453', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7cb3fa1c5eca4f3d75ca6cde41659a628e545a2765ef00c573e0c29a65cdf4f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (454, '2022-04-13 04:37:04', 'SALE/POS2022/04/0454', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c634cdacee743abefa04ffacfeaa9e43c17de3e31169b38fa9a5713704cc890', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (455, '2022-04-13 04:58:40', 'SALE/POS2022/04/0455', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '565c469ffd8b096502b0f987c38ee6dc26a703e2cb32e7d1bb7b1bb85d6ba02a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (456, '2022-04-13 05:00:26', 'SALE/POS2022/04/0456', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6750.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '6550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d53929d5e6928d9158d14280d4b2783fe919a71b966be0905e0dd32635fb775', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (457, '2022-04-13 05:01:49', 'SALE/POS2022/04/0457', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5200.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '5000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70521f5dedea9522d042e4d6e526988f24ee33cdee68b3cc2c67fc9f3170571f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (458, '2022-04-13 08:19:39', 'SALE/POS2022/04/0458', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdf1a9c5064a16460588d11b26911e9b3a269366b09bc367ff68cb5f784937d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (459, '2022-04-13 08:23:03', 'SALE/POS2022/04/0459', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3533f3a61f124d165440bae05c1f43a588922d85157dc8d4b344ef7e366e51ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (460, '2022-04-13 08:45:16', 'SALE/POS2022/04/0460', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85c101cde9f86757f096d46587224b88b261ffb5362c30d02a9a03cc25c22fa2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (461, '2022-04-13 09:33:39', 'SALE/POS2022/04/0461', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86629775f85e1ab5b95bcf24bd5d0c6847d8ef24d2e6399173b40fcd6c3e8d63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (462, '2022-04-13 09:41:45', 'SALE/POS2022/04/0462', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0da70a95b640c076ee8cbd996c4d3c85457f3f44ba5ebb04da1e71a9e39ca2f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (463, '2022-04-13 10:00:32', 'SALE/POS2022/04/0463', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '4900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1637f368f31fe18baea1e08333566ba988891eb6781bd2f6a53112686c625c7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (464, '2022-04-13 10:27:28', 'SALE/POS2022/04/0464', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '5450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7bd3d2c31b0fc75f2f5331a5c00ea1c906791709f63ad7059eae8ef09244ded', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (465, '2022-04-14 00:55:47', 'SALE/POS2022/04/0465', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af1da1d5c7d59481bd120800247cefd605584d6c4403132abb3e1d8d3143ec29', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (466, '2022-04-14 02:33:46', 'SALE/POS2022/04/0466', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aed07b6c7bdd4bee57e8c8bd62232cee3c42f4735745fc116a20a0531c1c9ff4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (467, '2022-04-14 03:20:42', 'SALE/POS2022/04/0467', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0333a4d73ab0ca853a95270e721e0f6a2b6a6d21dcaddc5a1c56106c894739b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (468, '2022-04-14 03:38:40', 'SALE/POS2022/04/0468', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68ed65e8a04be9174002322a29aacb02b46b97db3b7edef8182fbb71df5d5a7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (469, '2022-04-14 06:12:08', 'SALE/POS2022/04/0469', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4f1b79e21257809fca41058ec48536b274bc0597f409b22095a1afa953175e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (470, '2022-04-14 09:33:40', 'SALE/POS2022/04/0470', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8600.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '8400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e55e8c65127a6d3be19249188ecc6b17ffd20377336bf52b6fcc1fe7a4552775', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (471, '2022-04-14 09:37:21', 'SALE/POS2022/04/0471', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '280.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9db70651a311a37893cf72c3ed59649f2fa3e4945c4990a5015f3b3a1d297a10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (472, '2022-04-14 09:41:38', 'SALE/POS2022/04/0472', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a1d92bec22a5c507fb11e0c3f64ae510d905a81f98168226da1b069d051e660', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (473, '2022-04-14 10:54:09', 'SALE/POS2022/04/0473', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8856dc5701a85f2219e571b9840210ecbf00efa62515737b8f193f8ae39de7ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (474, '2022-04-14 10:55:00', 'SALE/POS2022/04/0474', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, 6, '2022-04-14 11:05:38', 4, 1, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '184f92138b4100eae4483411359a5769e3b110fa506a7135a1e329cb99d3301f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (475, '2022-04-15 01:26:10', 'SALE/POS2022/04/0475', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4034569e6f68fb14d841003ac8fcc7de06d3f648d26a5998af9054cea7ce00ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (476, '2022-04-15 02:49:32', 'SALE/POS2022/04/0476', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcf7efdd07a8af43a20699d47ba052959396daccf4a46a410829b203c9c986aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (477, '2022-04-15 02:50:13', 'SALE/POS2022/04/0477', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fcb6b69fed1fd51d765018c86613e01f70def7ff8c1064975a95e666e91fa05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (478, '2022-04-15 02:52:15', 'SALE/POS2022/04/0478', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7cbf5195dfb91861fd48a9b699fc9745440d10ae8bb98b8ee878ac3576d21999', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (479, '2022-04-15 03:21:21', 'SALE/POS2022/04/0479', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f07fda186f6a483bf7d077d6deeb64a74ae58edc5de61d2c732d15f8138487de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (480, '2022-04-15 03:38:30', 'SALE/POS2022/04/0480', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4550.0000', '500.0000', '', '500.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3601694e7d9966c99e5a7e04f33b43dc9fa4af0d7fe5837e8b5b114ea828e475', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (481, '2022-04-15 03:46:29', 'SALE/POS2022/04/0481', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '2800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c09d38b9bad07c11f59e0fc1282ea1b07102f5b86faeecd447bedaf54c0d5192', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (482, '2022-04-15 04:14:56', 'SALE/POS2022/04/0482', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad16e1c4fbfc318652e643b455022cab7d6aa481718750ee23f4c488625c2a84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (483, '2022-04-15 04:21:52', 'SALE/POS2022/04/0483', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce6de598690b0a625b18f1fecf89eae36609b695a51fd4a42b455e6b1982e557', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (484, '2022-04-15 04:35:38', 'SALE/POS2022/04/0484', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3cfd3bad5d8adb14d1077c7f24681f97529eca71a5a0fe2afb6fbb9a77583d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (485, '2022-04-15 05:25:14', 'SALE/POS2022/04/0485', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd09802913cf39b002281927b1cca107d61abc2ed3d98c9aeb3766bc522327ad5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (486, '2022-04-15 05:43:25', 'SALE/POS2022/04/0486', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e39a6428627f94ad212c8c44cae9e742968ee01ba3708eefa4a9b5bda89f6e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (487, '2022-04-15 06:23:05', 'SALE/POS2022/04/0487', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7365388625e88c09b9389d1565656135aeadcf0fb8c7cad4842ff8af61da182', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (488, '2022-04-15 08:37:42', 'SALE/POS2022/04/0488', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec412c2559d6301b935b00b6bf2fc9d7529d17a207b6d5098b7b6c0dbc282e31', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (489, '2022-04-15 09:06:41', 'SALE/POS2022/04/0489', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcf4fcd405f57c1973bf0e09099e39472f59714d5de37299cf31bbfd808f0a86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (490, '2022-04-15 09:49:00', 'SALE/POS2022/04/0490', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '&lt;p&gt;pay on cash&lt;&sol;p&gt;', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, 6, '2022-04-15 11:02:12', 8, 1, '2400.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '256dfe0b9e51b877e75922d0590b2809c46e277decd762f52a51467ae98a4871', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (491, '2022-04-15 10:05:02', 'SALE/POS2022/04/0491', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e5fe339c08a27a9cd799d6e7cfbde89b2cb9c0a5b607cd1ef1b858c8ebd628a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (492, '2022-04-15 10:41:14', 'SALE/POS2022/04/0492', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1bbddc9c0a510f6fabd859c4dd1d6d7767bbc3363b4cac37aac4be83ec06759a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (493, '2022-04-15 10:56:30', 'SALE/POS2022/04/0493', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a9d4d60cadcb1d97e1ec0d14de037e187e6927b752661169e34cced5d954576', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (494, '2022-04-15 11:31:39', 'SALE/POS2022/04/0494', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1bb90abb75f7254fe5bd460dd42c2e630c94e189a421b3d26e193fc500003fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (495, '2022-04-16 00:43:33', 'SALE/POS2022/04/0495', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00e5dd59eb657503950e8317c24ab9ea9119edb71271799f2f3736ee91a7a168', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (496, '2022-04-16 01:01:04', 'SALE/POS2022/04/0496', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c67a89b4335d760cc9f9fb802deb407357e9cd2ed40c33c8c23845dec47134f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (497, '2022-04-16 01:28:47', 'SALE/POS2022/04/0497', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77cd667614c7901ab351d3598d7e0fe45e305dab68c31b4f432867598ce1ee22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (498, '2022-04-16 03:08:29', 'SALE/POS2022/04/0498', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d50d36f5085c11eaac82bd88032f5a04bbfbbc8ee49768f7cf1c42c7c1a8deb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (499, '2022-04-16 03:33:45', 'SALE/POS2022/04/0499', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84ad9724a2f4dadcacde0d02acced2f415740b5c0d8142392027c8ca575177fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (500, '2022-04-16 04:58:05', 'SALE/POS2022/04/0500', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f1501998803772e568d7b92963247f9b705b6a053606c102b8168669aeb8e5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (501, '2022-04-16 05:04:33', 'SALE/POS2022/04/0501', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e92df1d579cc8f0885c027b2fa84c3a2054a23cc05df7e352613ff83bffad35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (502, '2022-04-16 05:13:51', 'SALE/POS2022/04/0502', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '460.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '460.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ccda410af87f5c34e7b735fb9694e577812fe06d4c191cc8b05d5572929f138', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (503, '2022-04-16 05:18:53', 'SALE/POS2022/04/0503', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86e5dd07aa3d3c9f5a4a7c18edb40f2d2e27384ab01f5a4484f7decda5d8a9a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (504, '2022-04-16 05:24:57', 'SALE/POS2022/04/0504', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42dd13f639687d13637ba2fff8458c410c05634bc22ca8eaaf97f2351d709e89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (505, '2022-04-16 05:26:58', 'SALE/POS2022/04/0505', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87b2c8f0141dae6320f7df94f0dc785933c275dc0f4adae0e7bb32391d3bd14d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (506, '2022-04-16 05:56:05', 'SALE/POS2022/04/0506', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d1fb009b428fdcf344b5405dbd0020606c14322ea6c3389ce2a5f768e99cedc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (507, '2022-04-16 06:15:28', 'SALE/POS2022/04/0507', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0b489878cc97a3e0f79e142a9e46b413b4eb7f6f5c0d1ae387927195a24d3bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (508, '2022-04-16 06:24:58', 'SALE/POS2022/04/0508', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cd88812fb6857c23e41810cca44012685a1b759036d3275b5298a211edf5b51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (509, '2022-04-16 06:34:29', 'SALE/POS2022/04/0509', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3528c155b2fe894f0407701edaf578e16e12f511320c38cf78ba0ad6a8ff4142', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (510, '2022-04-16 07:56:31', 'SALE/POS2022/04/0510', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '302f5ae73cc4df0bcf607f201213235d1b0bec7ddd52944b2cb22b8ed703bf4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (511, '2022-04-16 10:08:13', 'SALE/POS2022/04/0511', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19f965560fb8bce9611ac72e4623b680fb94f5a3c1cec10ce870815716b2da79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (512, '2022-04-16 10:17:27', 'SALE/POS2022/04/0512', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00562ab86e4f65238d8603cbe8bd18cc795bff341a096a15fc474b428056769b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (513, '2022-04-16 10:52:53', 'SALE/POS2022/04/0513', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a239e8d7b64952eec287538622a2f2d651ac9a3131c9d8f06805728c11cf9b42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (514, '2022-04-16 11:06:07', 'SALE/POS2022/04/0514', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac918ec3450e3ad5b8038338f550c46924b6360ca321eff47a0972780a3171e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (515, '2022-04-16 12:01:21', 'SALE/POS2022/04/0515', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3990.0000', '0.0000', '40', '40.0000', '40.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '731a92e2a5b56fa03d6623e532b909bb6537be83249bab8f5c5201da37d20b36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (516, '2022-04-17 00:55:29', 'SALE/POS2022/04/0516', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb85a625c8e8e6afdc24fe3e907e9f17757dcf735b47bda73ce832b4e430c188', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (517, '2022-04-17 01:58:29', 'SALE/POS2022/04/0517', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4cb7b34765fa1f3334a00d8276d499ecc022cd5b6a1df4bf308e6bc9af3721ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (518, '2022-04-17 02:06:03', 'SALE/POS2022/04/0518', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1596d8a20d8260d5bb27c0a2b95cfc44deab63b3f4f31055bb3fe6bd82bee50a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (519, '2022-04-17 02:23:11', 'SALE/POS2022/04/0519', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f68f2b3de8ad94f47bcbefc4605b612b6dd4fa511d9343bd520accd732fb553', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (520, '2022-04-17 02:35:07', 'SALE/POS2022/04/0520', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac697e31e93795362061427f9ba22ea2bdd6a655bca1264963b19b288d7aeef7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (521, '2022-04-17 03:51:52', 'SALE/POS2022/04/0521', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '465e07a2c7dffb373432a657e60d5554c7fce36458bce2592871cb0bcf175316', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (522, '2022-04-17 04:11:36', 'SALE/POS2022/04/0522', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34e07bde0b9acc9417d55fe13450821c58c27bfc2de7d872e8885d64044ec26b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (523, '2022-04-17 04:27:16', 'SALE/POS2022/04/0523', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '15900.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '15500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '15500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29373bfdb56832c98cf2786d663cb8340da5b00a1b80a1d594364463b0402671', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (524, '2022-04-17 04:28:15', 'SALE/POS2022/04/0524', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '677c5af354596e788e74eb1f00b50a3c30fb65beb0ae1f9fdcc62e5fcfcca791', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (525, '2022-04-17 04:46:52', 'SALE/POS2022/04/0525', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8000.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '7500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67c5546a622e070e5d6f5b2eb9c7039c2058e65896220b66cc88df059989e13f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (526, '2022-04-17 05:11:16', 'SALE/POS2022/04/0526', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed532732f28bcc961e16aaee489d3b2a4b89dec405271f40ef21295e0efbc9b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (527, '2022-04-17 05:32:30', 'SALE/POS2022/04/0527', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0268a04e833bc42b279bd0a44845061eeda122dc60f12e841e3ef00d3dd47dab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (528, '2022-04-17 05:37:31', 'SALE/POS2022/04/0528', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '234291c5b56c12398eb5d20a3ad093674c83a6b3a98c230e7cbefbc64a5833ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (529, '2022-04-17 05:38:45', 'SALE/POS2022/04/0529', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff9dfe7a9cb5d9c8aac9fd51b68bee76fe328aff4ce4c8546f3db35ffd0a7a1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (530, '2022-04-17 05:56:53', 'SALE/POS2022/04/0530', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4b314de23c7c038104a383eae2ac9d8214b7b0caa3fe01bd79427204b93cc64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (531, '2022-04-17 06:27:15', 'SALE/POS2022/04/0531', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '0100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8f37dfc73895b5a252b5c5069fa2eed33c81f4c9d85e0dfc70a68db813c8ab9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (532, '2022-04-17 06:44:13', 'SALE/POS2022/04/0532', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '535f19bf5ada020b4e49418853df7c2ef4f773ec803c259c752e0e9cdc6a7297', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (533, '2022-04-17 06:53:02', 'SALE/POS2022/04/0533', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20e4bb835078b81697b39f008993c6c62ddb802fe63a857babef5fffa6393026', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (534, '2022-04-17 09:18:35', 'SALE/POS2022/04/0534', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '422be05fca4391b2d64f0666f714c8af84d2b7db1a9052ec80bb7cceada38e09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (535, '2022-04-17 09:35:06', 'SALE/POS2022/04/0535', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '443dd96972b7d767f40bb6b3c3774c7db62aa409d342e4fe80d17733b6a3e320', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (536, '2022-04-17 09:51:38', 'SALE/POS2022/04/0536', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87a28b68fd68c41e617888b05a7c620902416cba92a133000c827625f63df206', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (537, '2022-04-17 10:06:37', 'SALE/POS2022/04/0537', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '764aadacee20b86fd2ec2f611e40ca8c31dab1ec00b443f4478fd453da0f9c89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (538, '2022-04-17 10:08:29', 'SALE/POS2022/04/0538', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a176d93f91cec896f3c80fbc4d0f64c6d820682f934708f3f87336e3400331e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (539, '2022-04-17 10:21:31', 'SALE/POS2022/04/0539', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '898da5896ff62c523fe2404036808b582e02b891ba4e857aa205a02ea1835c60', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (540, '2022-04-17 11:24:13', 'SALE/POS2022/04/0540', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2eb98d31c7e2f578dbcf778d7ee9dd63772863659e2f7715bf56f904ce0835a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (541, '2022-04-17 12:05:44', 'SALE/POS2022/04/0541', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd065bf03cf248c3826c33bdcd31f9066b23f1bbb6f320718af286dadc4493b13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (542, '2022-04-18 02:18:37', 'SALE/POS2022/04/0542', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fe3008442a2bc016682e903cd37efd5c7049ec6d710d1268a621de040a2aecb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (543, '2022-04-18 03:43:13', 'SALE/POS2022/04/0543', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5600.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '5500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd147e38c00352a9196ada647c0081afdaaeeb6357534d19ba2d1dd2de16bb6b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (544, '2022-04-18 04:08:02', 'SALE/POS2022/04/0544', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47d9baacf7450b280f065dbc2b80850af45aad3767b1b410b5954b95f30bda12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (545, '2022-04-18 05:22:18', 'SALE/POS2022/04/0545', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14d592a48c6c6f3de0485ee0abe162c080aa346a28ecea5cf5d9c0fcad1a4889', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (546, '2022-04-18 05:38:00', 'SALE/POS2022/04/0546', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a87ed6605d9f0892c255a01843465c3cb94d52b8652ac33fb78a64223768350', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (547, '2022-04-18 06:57:22', 'SALE/POS2022/04/0547', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66c520ac26fb07c1bcd7870a1652fbd127b47ef86f4052dfb0a3d7b472b4a659', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (548, '2022-04-18 07:03:38', 'SALE/POS2022/04/0548', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73a8e8df9bbb6a3684182097c392000096f638fbee5f842b33c9111da09bca03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (549, '2022-04-18 07:50:54', 'SALE/POS2022/04/0549', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3517fd8b0661e9bd4b915ea70b10eb13012c2ee994c7d406bbdacac4a9ce17a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (550, '2022-04-18 08:40:30', 'SALE/POS2022/04/0550', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cd512a820001b768c60c1f737a219761baa486aa22bef7a6a2dc0433f971fc1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (551, '2022-04-18 09:34:30', 'SALE/POS2022/04/0551', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '10180.0000', '1200.0000', '', '1200.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '10180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b3dacad6fb2dd58e180362c98c1ac6e0c4f054b228977b429d94519d7f60fd7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (552, '2022-04-18 10:54:07', 'SALE/POS2022/04/0552', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7550.0000', '0.0000', '350', '350.0000', '350.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '7200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdc9f5cd7cfb96eec180fe768cc70c76873f2a3f142656d57c045c2984cc1917', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (553, '2022-04-18 11:15:35', 'SALE/POS2022/04/0553', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1051264fffdf9fba16db88d4e3f2fb655d93c5127424c57b322fb8c313aab65a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (554, '2022-04-18 11:33:43', 'SALE/POS2022/04/0554', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '4300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dbce41a7ace51a80ab9c20a4aa84fad04a1813ac3f7d365b1a8fc1245dcf4aa0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (555, '2022-04-18 11:40:28', 'SALE/POS2022/04/0555', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6936194fa4db46123263ceff455335a5f99a229834c3196a42ef8c71fa635cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (556, '2022-04-19 01:50:49', 'SALE/POS2022/04/0556', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1b72418853483ae3cf163d5c11374ce7afcd986172a7ba9de6cc404152a5f29', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (557, '2022-04-19 02:14:48', 'SALE/POS2022/04/0557', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b394d7e4b3d0ad0510b24f2fe639d8df5d7460914af0168e521b3263df4b047b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (558, '2022-04-19 02:30:29', 'SALE/POS2022/04/0558', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aaf0874765e714fd46f53012fd99248ebcdc443509c52402a73ebafeb5c8c77a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (559, '2022-04-19 03:32:29', 'SALE/POS2022/04/0559', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '2500', '2500.0000', '2500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3136909c7081b6cf9989fee155e645caaf30699f31503eaa55ad357eab09a9f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (560, '2022-04-19 05:07:20', 'SALE/POS2022/04/0560', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '655fe7f4fcb15dc95a35a740b13e7da425514230e18002b3d1023c8525408d62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (561, '2022-04-19 05:25:40', 'SALE/POS2022/04/0561', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52fad244d7a9a5b7793f05183234cc465a508732caf939326fee67d19ac37121', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (562, '2022-04-19 05:29:38', 'SALE/POS2022/04/0562', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1460ef610aea9b54756a1584a7d78770881ef0be5736d8c0173b21fd7f211af3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (563, '2022-04-19 05:43:56', 'SALE/POS2022/04/0563', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f8581f5c27013d67f86c580e94ff58636997d164dddfec71ef94cb3363de8c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (564, '2022-04-19 06:40:32', 'SALE/POS2022/04/0564', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b67ba0ee99e7849affa777762cfdc51edfc3f55ec1b404fc3d004234a93cd48a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (565, '2022-04-19 09:02:02', 'SALE/POS2022/04/0565', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6100.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '5800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a45e148c6fc985fbf32ea823c0f5492be0530319c970319e8594e6da0b6a71ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (566, '2022-04-19 09:05:33', 'SALE/POS2022/04/0566', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10b73015547a2b3f757295d9a3e387c2a172aa2338302c8ba90ab6f9dfc56c3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (567, '2022-04-19 09:14:28', 'SALE/POS2022/04/0567', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c999c5f5dbea15592c128cf32d994a727e96f33bf33b861c01a898a480302f1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (568, '2022-04-19 11:14:31', 'SALE/POS2022/04/0568', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '745e87446a9df365eb7fec1a21e0d0128803503c2a4be49dd162a724ec6c337d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (569, '2022-04-19 11:15:16', 'SALE/POS2022/04/0569', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '900337945edbf3653eaa539f3c389c7a7cf9c43f0c0d309cd1b120f8ee76f160', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (570, '2022-04-19 11:16:36', 'SALE/POS2022/04/0570', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ae3e2a894c8e61cab56941c0a2ba6c025f75bc06294e1e74387d15eedfc937b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (571, '2022-04-20 02:08:14', 'SALE/POS2022/04/0571', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0175a1e99f4322180e3f00638ee0b8f34343f5e6ed1ad3c94cb82c94fae7c4dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (572, '2022-04-20 02:31:11', 'SALE/POS2022/04/0572', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72851acdc69486b9d243f4f23f8de3bcf45437567d869d66852f5d5f297521f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (573, '2022-04-20 03:28:28', 'SALE/POS2022/04/0573', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '849e85733840eb2032129d340d93d84b4c2546d650f8eff91feb595c4b1aee29', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (574, '2022-04-20 04:29:37', 'SALE/POS2022/04/0574', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f03f135366716fe2f890c443b146f61235164f1e71943e6b553a98bd20bcfa5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (575, '2022-04-20 06:05:38', 'SALE/POS2022/04/0575', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6048c4d8250e69898e9152966505ac9bb40e5cf6186c9536e4bab68168d80269', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (576, '2022-04-20 08:18:23', 'SALE/POS2022/04/0576', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fec06585ee53bb65ebdc44a0ec692e5e0aabab9d8bddab473af9ea86329255a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (577, '2022-04-20 08:47:44', 'SALE/POS2022/04/0577', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f0b19be3a7e3adc9549768ebced715787510240f41c849b3713fce690f94a07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (578, '2022-04-20 10:15:22', 'SALE/POS2022/04/0578', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa048005b7d2f2026f1b3a3556550b3ae1bd0ad6358d0c77db875012975152fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (579, '2022-04-20 11:45:57', 'SALE/POS2022/04/0579', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '360.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '360.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68f72f4d87056b535a7c1b23fe56161029e03e6dd34d95f8dc48fe9f84f58ef4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (580, '2022-04-20 11:49:41', 'SALE/POS2022/04/0580', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '330d739271ac011d95fb2802616830f869975c9bc4c5cac8b4ae04cdf9f78226', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (581, '2022-04-21 01:37:17', 'SALE/POS2022/04/0581', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8880.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8880.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '8880.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0e15941c11dafd6389a8b79fbd564626fa62aed11f5c328468f958238ae8e05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (582, '2022-04-21 02:59:21', 'SALE/POS2022/04/0582', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '611dfb67465035a4c3b354bdfa7c2b528376be18e60724c751dc4910122128f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (583, '2022-04-21 04:00:41', 'SALE/POS2022/04/0583', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af5a0782099f648f145f92abd65dded5db0dfe842af8ac2a08a36e3e3517f4cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (584, '2022-04-21 05:34:22', 'SALE/POS2022/04/0584', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87224e02762454edb34ead37d9817ca43a51797e649cbebcabb501f1b5f97d81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (585, '2022-04-21 05:41:44', 'SALE/POS2022/04/0585', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0c524262acc7fbf812f7a17e7823c385445246804845368f3c1f7312f1bf886', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (586, '2022-04-21 06:26:01', 'SALE/POS2022/04/0586', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2930.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2930.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2930.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f2579b2c7fecfb7e7555ebbbe62c4d860c027557e3eab74e912a518de2459a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (587, '2022-04-21 06:33:15', 'SALE/POS2022/04/0587', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f0e5558cbef356b4a48e0668845f7ac251b599e2009041d0f3db866ed2d4c8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (588, '2022-04-21 06:58:29', 'SALE/POS2022/04/0588', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8b3efb2f9c351f9d92eadf119a284f4b24c8f2d7e9f20248099cc608fdfd74c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (589, '2022-04-21 08:14:25', 'SALE/POS2022/04/0589', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21ba9fec9048d8ad815967851ca3f33064fa4673467c281b5efe910cb351ef8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (590, '2022-04-21 11:08:20', 'SALE/POS2022/04/0590', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '911157edb41e953f124458f8e32f3b9109b2cdfd04ead5aa642c18db85c3ea39', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (591, '2022-04-21 11:24:15', 'SALE/POS2022/04/0591', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6820.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6820.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6820.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1e6c91bbc10db9fcf006af350fceea82bea56a35812dc0dc4d5582b29399295', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (592, '2022-04-21 11:28:27', 'SALE/POS2022/04/0592', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7270.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7270.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '7270.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '677da6fe2f333de6485edcf1dfec3e0b0baea234d7a6a761d5201def8534ebe7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (593, '2022-04-22 00:24:06', 'SALE/POS2022/04/0593', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc36922297fdd488ac8b6526ea66c5475aa041c0d0ee91f52be84eeccd529c25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (594, '2022-04-22 00:49:15', 'SALE/POS2022/04/0594', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '131f437504a352ecc6fe1cb98180bb03817a3213b32b7e44e81a9dd3b97dfc51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (595, '2022-04-22 02:36:14', 'SALE/POS2022/04/0595', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e84e5413c4284c867b5ce0be590acede2efad4d276687e10e27692880cd1c37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (596, '2022-04-22 03:39:57', 'SALE/POS2022/04/0596', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '820.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '820.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '820.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a50a41438a491eb0edb9394937fb343c0b5f4387ef4459abb4b0136ee76f2aca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (597, '2022-04-22 04:51:38', 'SALE/POS2022/04/0597', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c9487494aef9f0626410c13d355be9e95d2add994886a9015ffcb1e0a7f7e04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (598, '2022-04-22 05:34:53', 'SALE/POS2022/04/0598', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e9939b377029ea9cf15008d129388769d60619143ee3b77a3c906725c54bbf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (599, '2022-04-22 05:38:52', 'SALE/POS2022/04/0599', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbae08221c30384b4f4c6954003b0d3ab278beef5810dd012b5e9df98cc0ffdb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (600, '2022-04-22 05:39:41', 'SALE/POS2022/04/0600', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c764ee144c9d83017494bd03adcc5911da0740f4f16432f7b8cd016623d13ede', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (601, '2022-04-22 06:04:06', 'SALE/POS2022/04/0601', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98175388d9df06cc9b1ee5b7b3e6c99378018cabec01258b168fe7389e643391', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (602, '2022-04-22 10:18:52', 'SALE/POS2022/04/0602', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4dd860bd17d0542e2a80a8afe7c11e7f6a9d6fc320161bf57a925083819bd410', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (603, '2022-04-23 02:06:23', 'SALE/POS2022/04/0603', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70e18fbb22c7a00c95714e2cc9472fe1ba2f803640e944ceac09fa6276c950f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (604, '2022-04-23 02:42:09', 'SALE/POS2022/04/0604', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac9e3027d0a110ccf6253b0d9793a7fb778f01ca7536175ad327e58f55927ad4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (605, '2022-04-23 02:50:25', 'SALE/POS2022/04/0605', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6063e31f5e54015e5b563d6bd46fede2a3de0f70f7bf3753608a73de83de70e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (606, '2022-04-23 02:59:05', 'SALE/POS2022/04/0606', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f968a933a6e6921747fb84ccb9bd9e3c4f4d9374d2876bb59268950514398a7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (607, '2022-04-23 03:09:27', 'SALE/POS2022/04/0607', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e2b928767fafb350212fc360b5e10cda1329e1cd340ed4bfa78be56453d048c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (608, '2022-04-23 03:41:47', 'SALE/POS2022/04/0608', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '961cb4c5aa7390fad44baa8e3f03627a29eec2a3b37cb7a0fa3dfaa2f07cb8e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (609, '2022-04-23 04:45:00', 'SALE/POS2022/04/0609', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4790.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4790.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '4790.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ed9eafc1612e2e738ee83f33998cad96a878c6deb4b387f66fd599f59d02c50', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (610, '2022-04-23 05:07:03', 'SALE/POS2022/04/0610', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '710.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a719a377a2a17b507d5fb72cc8b806c215a9ddb07c3a4af2cfcf73a89f48c42e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (611, '2022-04-23 06:07:28', 'SALE/POS2022/04/0611', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c09034133b7c9a88f90879979ee186af272a70c5f4c365975e5fd0165bd1bf3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (612, '2022-04-23 06:10:47', 'SALE/POS2022/04/0612', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2203b2879c213393dfa3cd2be06893a75436a093ea894f810d6f663f712bc123', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (613, '2022-04-23 07:07:31', 'SALE/POS2022/04/0613', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52a962d534403a24595b643ede7452983bfdca3f7786745b6f7157a742fcd351', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (614, '2022-04-23 08:58:09', 'SALE/POS2022/04/0614', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14f48e98107626c8d1b066f1d796dd3e6cb3623d22db207cfa9ff65aa350e6ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (615, '2022-04-23 09:58:22', 'SALE/POS2022/04/0615', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '297da947973082abe0d955fed9885c5f97360e267c136a20e6049d46e2332828', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (616, '2022-04-23 10:15:15', 'SALE/POS2022/04/0616', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b767990c153a309f0971c01e45982bad6e36b49a620fa47d26125c98b9019889', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (617, '2022-04-23 11:37:41', 'SALE/POS2022/04/0617', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bbb965a1d264d3e4c4a5b468cf714de7d96dcbdc7aef4b69bc22c7d13bf36a5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (618, '2022-04-23 11:38:09', 'SALE/POS2022/04/0618', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9da2c6fd44cfd1529455924a883a6cf2d344596dc8b52c351dcf5baced4f2168', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (619, '2022-04-23 11:55:27', 'SALE/POS2022/04/0619', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a61b102d76181b893f91ba2af3186ef99de8d0b7dc8513b8c6cfbfbb608eba77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (620, '2022-04-23 11:58:43', 'SALE/POS2022/04/0620', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e75cd840fa61e9502bf0f5e850b932290cfe0b9691e85b0e07c7fcfea4e558b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (621, '2022-04-23 12:00:10', 'SALE/POS2022/04/0621', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b2d0af69c4731df0f7eb04db89ca958b3c6f0d357dfff53984fa619d8155a0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (622, '2022-04-23 12:27:23', 'SALE/POS2022/04/0622', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d7c0170b638abb7d39c12c5536e846d823a2301e3988a63b62736a8b07f5bb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (623, '2022-04-24 01:19:40', 'SALE/POS2022/04/0623', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7400a14b42eac61e3bfb3329df57a4278579379a5248452dc3325ab6550678c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (624, '2022-04-24 01:36:17', 'SALE/POS2022/04/0624', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62929a8c3e2cd1295f3837798809f9a7c1d31d565c0055815e7a3a713f24d199', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (625, '2022-04-24 03:36:32', 'SALE/POS2022/04/0625', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9889b264e6e45542a0d02739ced714e94a85a6f6132886a1f1caeb25d28fe61', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (626, '2022-04-24 03:42:29', 'SALE/POS2022/04/0626', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dea8068db096b895f5ac75ce9556e9eba6c0960b1ac280f3935eef8402f609a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (627, '2022-04-24 05:00:49', 'SALE/POS2022/04/0627', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79279bdd0b1c154a0d01f4fc5998e847334948eb2135f4b4fb229023c6daadbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (628, '2022-04-24 05:25:07', 'SALE/POS2022/04/0628', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5326220e413922215eec87977f0fc25e04846e3a80d3ceb17a4eaba0d172732b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (629, '2022-04-24 05:26:03', 'SALE/POS2022/04/0629', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb9fdea9164d95c09c0aefda46d6b5fb546b169f8bfbbd4930619ce1019df1b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (630, '2022-04-24 05:28:36', 'SALE/POS2022/04/0630', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '550f7c5b800ca482f6d110825ef5bd4213a30b691d2d4cf969435e9f6b85b6ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (631, '2022-04-24 05:43:09', 'SALE/POS2022/04/0631', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c813384b1827e9b1ca03718b193cbf45231c2e3e3e7256d324a6fff8fc45ff4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (632, '2022-04-24 06:03:34', 'SALE/POS2022/04/0632', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47d3669c832744868675637a8b6340a27dc9419014aec58a22cddc71dbd7f858', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (633, '2022-04-24 06:14:02', 'SALE/POS2022/04/0633', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ee17d81ffeb6adf4b2953867cb711065b5894c5b729df2dbd6408f09fa6349f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (634, '2022-04-24 06:43:07', 'SALE/POS2022/04/0634', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19fdff2968150a5177629de08a725fbd29576c1b6d2394e6d3f1a855530bd306', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (635, '2022-04-24 06:53:38', 'SALE/POS2022/04/0635', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4d0d415e4b6fc8f47b0aa0807e2571a693f78738f201f3f4a2abf1afeaeada2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (636, '2022-04-24 08:35:28', 'SALE/POS2022/04/0636', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '914959e83537c4baca4d92f986395f22bfd275011805e58cb80cd2f83bcaf557', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (637, '2022-04-24 09:32:33', 'SALE/POS2022/04/0637', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'deca19f67747def92f1b8a11e0993b87b1e61b7a936d501b9a93e0fccade3374', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (638, '2022-04-24 10:09:54', 'SALE/POS2022/04/0638', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '006e706637d8672155e9d240e5ea98be5d39ff7b5366596f6355c54d8527e1a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (639, '2022-04-24 11:31:15', 'SALE/POS2022/04/0639', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '350', '350.0000', '350.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '4300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74c65194d89e9337de7b94d4c1fedded5435d33808fd657332e0e10c4194231a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (640, '2022-04-24 11:56:53', 'SALE/POS2022/04/0640', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61ab774bfcdf70cdbee241fc930a973933a317a36e38f5e5f1aa0e134356ee8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (641, '2022-04-24 12:07:28', 'SALE/POS2022/04/0641', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e4d30b2161a828b8791509cf785056e8457bcd7a5a37d2d672c25e619149811', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (642, '2022-04-25 00:15:59', 'SALE/POS2022/04/0642', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4b7e24c6d1d480184d84aa0bff5e998b0bc07eab30bd65eb4f698e64bbb115a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (643, '2022-04-25 00:39:25', 'SALE/POS2022/04/0643', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b440abd2aaeae649003a89d369cd94c2f7be056ad658bbf44983e69795b4ac3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (644, '2022-04-25 01:12:00', 'SALE/POS2022/04/0644', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7da6129bb291f98352095144c79ae1056a892ab29df37c8975276b8c2e78cd0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (645, '2022-04-25 01:13:05', 'SALE/POS2022/04/0645', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1475454f1f4978e4fc4cf1c0ee8a26fef74de7dcf574f02a55d83cccbc9be2f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (646, '2022-04-25 01:21:09', 'SALE/POS2022/04/0646', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2580.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2580.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6d78c3e3d6270c0e1adb9578bf1cddf7107a03fcdf62590ff9d8689c9e8e3f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (647, '2022-04-25 03:56:04', 'SALE/POS2022/04/0647', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa2f5ad480aff45f37b5f79f5639780296bbb61cd77e0e7f9fbb5ed2ceb70611', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (648, '2022-04-25 04:55:09', 'SALE/POS2022/04/0648', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1590.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1590.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '1590.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50a6c6909919399be396f24bf30ee6664fc8186522d33845089d76fc7aa35959', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (649, '2022-04-25 05:27:13', 'SALE/POS2022/04/0649', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7721dabee40575bfb31fc816ac496760c6fd9b081d122036ed2f6e05233db64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (650, '2022-04-25 06:07:01', 'SALE/POS2022/04/0650', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '811073f4e7a84033b8def8ccdbfbc16be3da757dda8810e0e5ed06f1a6dedd7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (651, '2022-04-25 06:10:52', 'SALE/POS2022/04/0651', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78cf3515b09b5246b50602ca2163e8cb4d86a0d37116ec32f0beb7a434dd542f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (652, '2022-04-25 06:25:55', 'SALE/POS2022/04/0652', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1dc5c09fa911be3c635c04683f7e0363413509fe660811e976bcfa462dbd0ea9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (653, '2022-04-25 06:28:05', 'SALE/POS2022/04/0653', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd825b64f84e906320ff22dca8c31da175e85403ae0b096b317c43c5f04d1ae5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (654, '2022-04-25 06:31:00', 'SALE/POS2022/04/0654', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '0.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '159a995980c33aab9ae8cc960de17148df6c1ccce90243ad0e88ae54262da905', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (655, '2022-04-25 08:54:35', 'SALE/POS2022/04/0655', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75198e36952024c74e387d8b974c96de435f15772910a3dd2a259857f88c61b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (656, '2022-04-25 09:53:00', 'SALE/POS2022/04/0656', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '108f4e7371b656eb6a0a4258fe55ad49ea49c95fd02d2265034e3309877eeb39', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (657, '2022-04-25 10:07:54', 'SALE/POS2022/04/0657', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c54997e584c3bb9be59f7190307b484c789a1791aee22a6eca43b3f31e0ee1f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (658, '2022-04-25 10:50:10', 'SALE/POS2022/04/0658', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6100.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '5600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f6d63cb63bfd19c56e67ff1a9dced75d388199dda5b8c735a774ad00a4dd43a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (659, '2022-04-25 11:10:45', 'SALE/POS2022/04/0659', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb9d124a2307838419d4092de61384cc4f8defa759fcd7e9d63b9c378a5a2a2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (660, '2022-04-25 11:25:20', 'SALE/POS2022/04/0660', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e39306d073fd8044f9df7af7add0a80f89c59b32ae070e57e7ed2bed4219df7a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (661, '2022-04-25 11:38:58', 'SALE/POS2022/04/0661', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '3600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4846edcf0e8fc285dff6ed415f0ed1b7ced2904c8333fbe9708b34adf9652cea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (662, '2022-04-25 11:43:33', 'SALE/POS2022/04/0662', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c80c4e4aa6736c1dd72065552999861c288114512f5828c33364d3088b434fcf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (663, '2022-04-26 02:17:43', 'SALE/POS2022/04/0663', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55bef157ccc304417cf15bef5de7172a09a62524c1cec7b7f9b0d2e70f1f219e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (664, '2022-04-26 04:30:27', 'SALE/POS2022/04/0664', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbdc69d4820cc5550e96e37e357a3c3605fbf84695200c3cb27d5fe93d35562b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (665, '2022-04-26 05:39:50', 'SALE/POS2022/04/0665', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a99de44038eb1ea2f3c9131300ae3332030b34138df076b32a2ae05bb6b89429', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (666, '2022-04-26 05:42:27', 'SALE/POS2022/04/0666', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '417af98857db30d016c28d9112c4102ebebe587f6456491623639f8374fe517c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (667, '2022-04-26 06:44:09', 'SALE/POS2022/04/0667', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80217f59330dae77c4ffcb7805eb9b3c4acc117cbe7b145de338110779c3e0dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (668, '2022-04-26 08:49:12', 'SALE/POS2022/04/0668', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f55244e88573f444acb657e079954a6d2f8207677e410b1caa774305169e6533', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (669, '2022-04-26 09:33:02', 'SALE/POS2022/04/0669', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef31ee9e5f4362e7e20448c12c18b3f621d620115e11460133fb68685a156902', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (670, '2022-04-26 09:48:20', 'SALE/POS2022/04/0670', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9724e5395f0055079b67af160149026465b08c4a1cf68b1dcab137532bd816b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (671, '2022-04-26 10:10:22', 'SALE/POS2022/04/0671', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2350.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eeef9387c450c882b65c35ba36ce2aacff0c5e9c144464a45c0d5c3ec1f370cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (672, '2022-04-26 10:22:22', 'SALE/POS2022/04/0672', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6250.0000', '0.0000', '1250', '1250.0000', '1250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 25, 1, '5000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '002ab0613e6d7927449715d2a05ab7f6f09e8a5ecc6c8ec16877e0e35ba8072c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (673, '2022-04-26 11:29:22', 'SALE/POS2022/04/0673', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3a9419c0a39a6114a134e105251af578a4653e3fb1db5a517ffb8003b1449e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (674, '2022-04-26 11:32:19', 'SALE/POS2022/04/0674', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '115f7c0302f9a9739c5f3db914d3f27d7248d26d566582aacba5aa85b42c2076', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (675, '2022-04-26 11:47:30', 'SALE/POS2022/04/0675', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5cdb1ae501d3d97be6fe868651d75eab09dbc89667ff943d1d5b25db39e7db1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (676, '2022-04-26 11:50:06', 'SALE/POS2022/04/0676', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37d0c4aa12b72141b5442bcecc40cda21c6203504d07001ebe7f21023253adb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (677, '2022-04-27 01:26:31', 'SALE/POS2022/04/0677', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c216dc144bb5ad850247c764f3b8ac18e2b65399285901c937d49c71943cc77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (678, '2022-04-27 01:42:42', 'SALE/POS2022/04/0678', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c076c6ddda969419b5206b04fc2ac9e9c1e4b14fb68b364567906d8f26ee502', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (679, '2022-04-27 02:39:24', 'SALE/POS2022/04/0679', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f27e67a91fbe56a117aef7b24225c2e552ef5ef1583ef67378ac58ee1c6c43c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (680, '2022-04-27 03:22:01', 'SALE/POS2022/04/0680', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09098c4e9e58b4f50ff4c47d56d902509b67618d7f30e49a9d4205300118b542', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (681, '2022-04-27 03:55:32', 'SALE/POS2022/04/0681', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8d4c840f99ec2bd16b0ba36010fa7a689790c9cc9301b1e0a00cf04193d057b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (682, '2022-04-27 04:55:19', 'SALE/POS2022/04/0682', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bbdea090d2392c3489d25f8cb0e58d29da4dfa09027b248cecd6916ed9a4d8d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (683, '2022-04-27 05:58:35', 'SALE/POS2022/04/0683', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13132842988f10b48789129ca9d14290faad5d65ea08549cdfc4e6ef20e0b35e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (684, '2022-04-27 06:20:08', 'SALE/POS2022/04/0684', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41a003491f1eab85daf1bdcc536d227eea9d805e74338cf8f80764db9e9b360c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (685, '2022-04-27 08:45:41', 'SALE/POS2022/04/0685', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47d5d2c6f4008b6b40c7e8aff1b82903a0883e3771569b05fc4cee2950e16e4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (686, '2022-04-27 09:02:25', 'SALE/POS2022/04/0686', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '322a08746c39f72fc6bf212c4f6807cb81511d77e16f5228eadddf64b81b9ade', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (687, '2022-04-27 09:11:30', 'SALE/POS2022/04/0687', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ed9b455c848de7fb48a1379aa2b695e9708352b0062366811eab37a552020ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (688, '2022-04-27 10:32:22', 'SALE/POS2022/04/0688', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '6000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff413466db10fee47a81f9a453337bdd8fab4a511dd010a3573b12ed6602f4dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (689, '2022-04-27 10:56:13', 'SALE/POS2022/04/0689', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '653f5bfc8a4e6c4b333b7667aac8eba788a023ee227bf6b460f59c53b0a154be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (690, '2022-04-27 11:07:31', 'SALE/POS2022/04/0690', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ab4e114e84eb6506fee0fc2a7494f097a3f48c26a1b037f6254ff131a9bd625', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (691, '2022-04-27 11:19:11', 'SALE/POS2022/04/0691', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f5c1046a2729f518f7099627a3ce9c36e57b6d489b106f4892384a8d32c4bde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (692, '2022-04-27 12:02:29', 'SALE/POS2022/04/0692', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecfe700dfeea558ce5536b296cd811e74906b090b72b60e10a344f05c2912a0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (693, '2022-04-27 12:13:51', 'SALE/POS2022/04/0693', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5382a3c57b9b50d59dbda275007b5799c7f7cb2402ad27de3cdfe1b5df311e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (694, '2022-04-28 01:26:56', 'SALE/POS2022/04/0694', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71df0d3826c953a8c79a1f3cd0450ebc54d194e442b38e8de2d7ab00ffc13d5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (695, '2022-04-28 02:12:45', 'SALE/POS2022/04/0695', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ed373a0b534bb2ad30d4c5fd1ee1fac3ab5e75d01508dcf24927511995d3f96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (696, '2022-04-28 02:20:36', 'SALE/POS2022/04/0696', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8aab3d47da93a29a9c6d2397090e18c7438391fcb142038b0f519ad828d01a30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (697, '2022-04-28 03:52:35', 'SALE/POS2022/04/0697', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39280e935cbab65781c5bc5e450858aef93ad6864b65d927396a2a1ef2299384', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (698, '2022-04-28 04:12:12', 'SALE/POS2022/04/0698', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '208f12ca8417fc348e0f2bc2ec1d50b9d554198469ef9accb3210b914de2bb57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (699, '2022-04-28 05:02:08', 'SALE/POS2022/04/0699', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4760.0000', '0.0000', '240', '240.0000', '240.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4520.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '4520.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8560e51a07cf90977613c91df1ee2d45406f1b5310307caac64061f81cf728c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (700, '2022-04-28 05:11:16', 'SALE/POS2022/04/0700', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a9b3b27a7214e703dfb5702558d6f486b752a52ecfe282d964cd40d7a5a264a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (701, '2022-04-28 05:23:37', 'SALE/POS2022/04/0701', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea45da788b63cea097c607165cc65db76e696bd15741721a2b51ee0db6a237ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (702, '2022-04-28 08:37:57', 'SALE/POS2022/04/0702', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45b207a7ed915083f7f801c9b78362068e711c471612a7c6c964827881aaaa9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (703, '2022-04-28 08:49:32', 'SALE/POS2022/04/0703', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2709b465f157feb09d7db667a37656c8a0f46eab012169cc89900bc3719d23aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (704, '2022-04-28 09:44:28', 'SALE/POS2022/04/0704', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4972605908c5835c7bafe3fbdf74ee14e12421d4bcfaa01900d959eddac7e3d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (705, '2022-04-28 11:30:03', 'SALE/POS2022/04/0705', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9060d3859581639f445cbf3fb36522c7a4b541f9c056d5bce76045bfc4fdf4a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (706, '2022-04-28 11:46:33', 'SALE/POS2022/04/0706', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5785a9d260aa65b98cecf554d2e5449b118bd145d69a5c8edebcb968f58df814', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (707, '2022-04-29 04:00:39', 'SALE/POS2022/04/0707', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9586ba87b8687fb906f0bfea0250f3b4119136073556956d9a3e559190102135', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (708, '2022-04-29 04:24:30', 'SALE/POS2022/04/0708', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eadbb09cc3c06b2396df25dccaccab4d29f7a54e3be7fd602cc8d31bb946b4f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (709, '2022-04-29 04:33:19', 'SALE/POS2022/04/0709', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfc56b0d46cbbf4b9342fc2e934877b6b4869d0642587c9e7d6418dd85abf9b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (710, '2022-04-29 05:10:35', 'SALE/POS2022/04/0710', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8000.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '7600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0717b9a14a5fbdc651526cbf957a250993cac6acd7d6e29ddb20e810815c7365', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (711, '2022-04-29 05:12:02', 'SALE/POS2022/04/0711', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f18b326762046e1348e5c003565b966964ae75b679a3b99149a067cc81cbddf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (712, '2022-04-29 05:24:28', 'SALE/POS2022/04/0712', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cab85b1e3833eccd10b66c5e8c585b2d43492e914c3b72dd9b0b66e4a6a98419', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (713, '2022-04-29 05:27:19', 'SALE/POS2022/04/0713', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e4663e20e5e5ea1f49f30732c46e2609746969b179c0cbf3a50b3162fdb1103', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (714, '2022-04-29 05:59:52', 'SALE/POS2022/04/0714', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8daf197f5c6330306af68eb61183f075a5219c641ac6a078dbb70d93efe74e7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (715, '2022-04-29 06:06:59', 'SALE/POS2022/04/0715', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fafaa06583041ffc4b1719997414f4436475842b86f7187f274f10f9e6d000a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (716, '2022-04-29 06:32:51', 'SALE/POS2022/04/0716', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5daa9ffa7d3631d57723cc28de8fc9b13b02fa9d0607b628e7bf6a2cf48d15dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (717, '2022-04-29 06:37:44', 'SALE/POS2022/04/0717', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d81d5dfd3f228315a50488d47cdb3e29980432b033419378241b437df50dacc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (718, '2022-04-29 08:03:34', 'SALE/POS2022/04/0718', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'edbb1f95a4f77e03587513a08600ca9eea1a9bcdf85e79d106b13edd7d40d40d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (719, '2022-04-29 08:41:22', 'SALE/POS2022/04/0719', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b5217bb7d39ecc8803f2cf4d8efa4b9f65bf6d0f7458858a5d65b1944f7d332', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (720, '2022-04-29 09:49:36', 'SALE/POS2022/04/0720', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2c0fa628aa49c6ea2e7cd44607a5518ee6b340a2a5a05d214ee626ad04a8aa2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (721, '2022-04-29 10:42:08', 'SALE/POS2022/04/0721', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a642def3fbd8ef2b62d17c2ee0ed83621757b69c6a20a1b3ad06bfe8dfc6a201', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (722, '2022-04-29 10:51:02', 'SALE/POS2022/04/0722', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '510def066d5070243c4d5e35dcce26cf34ad0df316144947aeaa5a0afb148ece', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (723, '2022-04-29 12:49:13', 'SALE/POS2022/04/0723', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3051f74d83e1408071775311f3e640756f0918783a691bc208d826ac0fafe2f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (724, '2022-04-30 01:30:29', 'SALE/POS2022/04/0724', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '944a451321a994e0867d53aae253be30575feb85494b93c8c898c0f83bc2021c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (725, '2022-04-30 01:31:28', 'SALE/POS2022/04/0725', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98ff7b70b163b0d51eddde0da854f46945ce3af8593042a717d6e856cce96c02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (726, '2022-04-30 02:45:03', 'SALE/POS2022/04/0726', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0b71762507a378dc7da5f707f30eda2e37a5fb3b895ca56d37ad2f96dbb5a6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (727, '2022-04-30 03:40:11', 'SALE/POS2022/04/0727', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '034b180906b8e2c69aefda5fcb6a060f5bafab954d9a39503f5c969c43451798', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (728, '2022-04-30 05:11:29', 'SALE/POS2022/04/0728', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '27320.0000', '0.0000', '2320', '2320.0000', '2320.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '25000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '25000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b50cfde8cdd74a5da10ae6183bc19052e698e7e8b89149b956edcde694429feb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (729, '2022-04-30 05:18:16', 'SALE/POS2022/04/0729', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b09bf0a9ddd0a4033fa620d0f4cc227f2315d2c679255e606f03e5bfb89540b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (730, '2022-04-30 05:55:35', 'SALE/POS2022/04/0730', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f81502443e8c59d0396b3486307533d3925ba1f8839659832981d97a09a8f404', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (731, '2022-04-30 06:06:21', 'SALE/POS2022/04/0731', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be89b4bb3882c0803eb2304dc44fe77e4745295645d2f8940893193615c3003e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (732, '2022-04-30 06:31:36', 'SALE/POS2022/04/0732', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8377a25c967dba21c4feab29cef13d0d51464213476d9603321ccbd7addc0fb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (733, '2022-04-30 06:37:02', 'SALE/POS2022/04/0733', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7a1a8295d910fa6a968e1f07eef53309caf199a2f027becf4b7d4f3f1e7495f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (734, '2022-04-30 07:22:09', 'SALE/POS2022/04/0734', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ab6fb8c711032e2428499e067f6233ed4b41e972fcc69a9ac11d8148be219d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (735, '2022-04-30 08:51:13', 'SALE/POS2022/04/0735', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f776eb997564f49023d36961174db593213c442fddb3053b2673c23b2749f6f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (736, '2022-04-30 09:05:17', 'SALE/POS2022/04/0736', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43a7292157090e47899a85b6611e04f02a5f511f8380525adbed259e9e05d1d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (737, '2022-04-30 09:24:28', 'SALE/POS2022/04/0737', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eeb147d5caf2b498a6c1a48558eac4f9dfe4a96766a86b0d5e87b49f4df74c7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (738, '2022-04-30 09:37:49', 'SALE/POS2022/04/0738', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e7cb16c4fd716c9dd1ffd8e1cc9e00ea4907d67851cb98e72643bdc87632c32', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (739, '2022-04-30 09:43:05', 'SALE/POS2022/04/0739', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfcdeec7ac87ebd02eef3d5756440a2f3b4f8dce9a846b2ae0658eaf7e9a2ce6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (740, '2022-04-30 09:57:11', 'SALE/POS2022/04/0740', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '544786a8fda9bc14acff3ccdfaf0c106782e378c600d9bd1a6a5c183a4df0086', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (741, '2022-04-30 10:34:54', 'SALE/POS2022/04/0741', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b906547c73e0cd7e59fb1bb7664a0cc6fae98953925811a321708e5d8143174b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (742, '2022-04-30 10:36:46', 'SALE/POS2022/04/0742', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f02fd0832477452219e88da9a4eca71914bed90feb4861c145e16f93298c29ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (743, '2022-04-30 10:57:45', 'SALE/POS2022/04/0743', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3872344d588748aa4dc8375fbae4fb9acd1df32797fc3d8897002d5ff8dcd949', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (744, '2022-04-30 11:38:44', 'SALE/POS2022/04/0744', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f7e166c1c31b5236b5e6a805319c6aa0362657e25744d3af4b19cdc22f9528c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (745, '2022-04-30 11:51:51', 'SALE/POS2022/04/0745', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 21, 1, '8500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e97174daccc6efabf95f174c8cba1c0f615831d33c21e57670e20e7ba214b214', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (746, '2022-04-30 11:53:41', 'SALE/POS2022/04/0746', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1131db8cb6dbdb6030c7d6efb98a0f89f62c07de8522c6ef1bc8c655b4196a37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (747, '2022-04-30 12:08:59', 'SALE/POS2022/04/0747', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56a2c0d4a3c911587b0a1d15a39a3b5d0430b144d60ec59f96292d7258728784', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (748, '2022-04-30 12:38:14', 'SALE/POS2022/04/0748', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed67aafec5e86f159503579589edc75fe7523ca0a557e2a41f2e58707dd7a5e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (749, '2022-04-30 12:48:12', 'SALE/POS2022/04/0749', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a427aeb58ed302404e10772193d37a809d9cd4152f1caf724ef83453a140d171', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (750, '2022-04-30 13:38:16', 'SALE/POS2022/04/0750', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f68fba66bd55f7c0a1440c0e0b953f56b19ce71dddffa220a34e3abf3bb49ed4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (751, '2022-05-01 01:18:22', 'SALE/POS2022/04/0751', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4d7e895641773545586eb992eb70bc771c374c38f6b3e5032d5cbbcc7c387f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (752, '2022-05-01 01:20:40', 'SALE/POS2022/04/0752', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57dcc6c93a9830612ae3507e4b2f8b65adf327ef23fbd44db7176042ccdd8548', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (753, '2022-05-01 01:27:00', 'SALE/POS2022/04/0753', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53be72310af5f8aea87570a16f4a8979b867bc80434f6e094dfb4f6817ba1786', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (754, '2022-05-01 01:52:05', 'SALE/POS2022/04/0754', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fe75f209d936198dbf4ab7a6e9e592f108e8976de8b95cd9391f0abbd4fdc3a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (755, '2022-05-01 01:56:02', 'SALE/POS2022/04/0755', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '372b5acaafd6930e8cf5b68d56ebe4f69c5285e886bb9a5b93baad154c558b16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (756, '2022-05-01 02:29:54', 'SALE/POS2022/04/0756', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0c288089acb5d7b0266680ea6e5c4bbdf6f0591151a785ccf76be11e70decd1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (757, '2022-05-01 02:39:07', 'SALE/POS2022/04/0757', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '572ebfdcf8244ae16db480cdae9494b70f20ef6bbe2389db9281826aaaf78f66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (758, '2022-05-01 02:53:03', 'SALE/POS2022/04/0758', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '710.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '224ca3a6cccd18075faf575788b42c4985836460c6dbf53be18e915dfdbb684a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (759, '2022-05-01 03:04:27', 'SALE/POS2022/04/0759', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f71389ae7a6b8b2841d9fc986f45244f3852198b81a8ad97c8b08b803f6302e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (760, '2022-05-01 03:47:14', 'SALE/POS2022/04/0760', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2a8e732c6c0d7b50c8843335c5e1adfb78346ff3dfef184b4254559a9b00225', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (761, '2022-05-01 04:10:28', 'SALE/POS2022/04/0761', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfee70f830ba8d5db84f499905f9dc5aed41b8bbb67d9f0f993b64d3fe54b799', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (762, '2022-05-01 04:21:00', 'SALE/POS2022/04/0762', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bda5ece561c1bdb889dd4a218da39790a999839a91d5a4f090c69a7e89c74eac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (763, '2022-05-01 04:30:41', 'SALE/POS2022/04/0763', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b3ebc02416727f9e69c08a77751414884e36f45c753d7bb5011ff385cae87c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (764, '2022-05-01 04:59:41', 'SALE/POS2022/04/0764', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7dfb3782e13d20b13a66c371f149f0377920d12f33b18ec0f2a1c749989e3aee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (765, '2022-05-01 05:15:05', 'SALE/POS2022/04/0765', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a609d74141f9bc23e5e3a85201dc4ee3e51337538e619b3cef22455eb75ac4af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (766, '2022-05-01 05:37:09', 'SALE/POS2022/04/0766', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '601f093bb09aa0b8b617191a9aea6fab7e1371e25e84f8f1e4edf8beccc07c63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (767, '2022-05-01 05:45:09', 'SALE/POS2022/04/0767', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a13a0598e0476cb8b2590ae82b90e4bd6ff4079ee2a64ae8d667fb9f2c94e0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (768, '2022-05-01 05:47:20', 'SALE/POS2022/04/0768', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af3b7a0cdd94346a1ccd4e943efd53fc47b6c56ad1cdc1fca1836c6a60f665ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (769, '2022-05-01 05:56:32', 'SALE/POS2022/04/0769', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3735db65c2a92af9c7b049e9842f7234b1edaf011d8d50346b435ed313011c58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (770, '2022-05-01 06:25:57', 'SALE/POS2022/04/0770', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89d59735127345ec19bb9cb77ee27455fd6c21d96caa2958b666c99cdeef0418', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (771, '2022-05-01 06:57:22', 'SALE/POS2022/04/0771', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90b97908876823d6788b76fe1116db1de10e79bb65eee844c493bc2ceaaaab2f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (772, '2022-05-01 08:19:57', 'SALE/POS2022/04/0772', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '4050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ecf9f1736e553d7480f18a594e58ae6bbcc0121b3b1d42aed82b481a7bce940', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (773, '2022-05-01 08:26:26', 'SALE/POS2022/04/0773', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a41baf2fb9c6a208355d21115ab1e7bfb9129273d93ca5a8505c3d4268f6332', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (774, '2022-05-01 08:42:09', 'SALE/POS2022/04/0774', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4492cdad5fb7fecbb3c1a9f6c0084c318d591fa97646e22bc55b165d3e988000', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (775, '2022-05-01 09:22:43', 'SALE/POS2022/04/0775', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1483e51d715ae5804dd1800b4a580dfbd0ca378b936c0d0cb17794f3e4266b27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (776, '2022-05-01 09:25:22', 'SALE/POS2022/04/0776', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae3cb3e0e22f1a58117f8254c357788f30f8f6f35fada539eb178cc2c019676f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (777, '2022-05-01 09:27:17', 'SALE/POS2022/04/0777', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12d89b8f7fdceb8e11b0a070bcd3a8e235656a8f9a46ff84a2e42d684a618b77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (778, '2022-05-01 09:35:25', 'SALE/POS2022/04/0778', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3bda209f127ae47da2fd51ac681e505a50ebe13ef3d5c046197b94e7f736374b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (779, '2022-05-01 09:49:37', 'SALE/POS2022/04/0779', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df7bee824d82983699c8238dc7a629f7143c2e5293829c2fcf4f144faf754e56', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (780, '2022-05-01 10:21:32', 'SALE/POS2022/04/0780', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abcad7a61e1a3a58a411ca44c475e0ee675c30014c88acd5ddfcb0f367f1719b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (781, '2022-05-01 10:42:56', 'SALE/POS2022/04/0781', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71dfdb9176f261cceeeced1393887315477c4606dd8a854bd7e44d179f74fe31', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (782, '2022-05-01 11:03:23', 'SALE/POS2022/04/0782', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03a6e6794e897f36a2107567324a11441d162ba27c4b2638745adeb8f5389b61', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (783, '2022-05-01 11:17:42', 'SALE/POS2022/04/0783', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd23253f540b7c95f9373528ddcedefa8ce49beab1c6c59abe1d87bcc110c8898', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (784, '2022-05-01 12:18:50', 'SALE/POS2022/04/0784', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c679c6310102ccc8376830370f9e8323b358c5b1aaf0573868b1363f3432f5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (785, '2022-05-01 13:38:57', 'SALE/POS2022/05/0785', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '274fdcbd5c580bcbe86358ffa3d2bf3926f23d8a4ae778c1c75c5d372e044611', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (786, '2022-05-01 13:40:50', 'SALE/POS2022/05/0786', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d3f085efa3733f0600f6ebb4560dc17250e2b5b28ea214b5a7033a1019feef8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (787, '2022-05-01 23:35:23', 'SALE/POS2022/05/0787', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '053fc4d688c848e11152cb8de1a28c66edbe111e1b392d9b06d7325ce4b7b570', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (788, '2022-05-02 00:47:18', 'SALE/POS2022/05/0788', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcdbd4151dc76a4dc16e12370337e634820c7f0b7c5be9fa55535dff31156f11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (789, '2022-05-02 00:47:44', 'SALE/POS2022/05/0789', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6de7c3042b8910f1ab36591b3dcf16a659a4694a96921012e23792644e179775', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (790, '2022-05-02 01:30:49', 'SALE/POS2022/05/0790', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ca5b8c6d8d518b84f5ff993d0f7c427a692b98b6adc7e00cd161193fe271214', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (791, '2022-05-02 01:57:01', 'SALE/POS2022/05/0791', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdd684d2d4ba1f700a8469f0e5a54f2acb231476249da2c169cf3fee35b33857', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (792, '2022-05-02 03:00:14', 'SALE/POS2022/05/0792', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3269b9e8f14e0a1feea7caf25150daca9504669404e2bd04a2205530efaa6d0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (793, '2022-05-02 03:29:27', 'SALE/POS2022/05/0793', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97b90f925cb2f263950cd9fa9fe3c97c2269c7355300caecc8f6ce28ad77121d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (794, '2022-05-02 03:43:07', 'SALE/POS2022/05/0794', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '5510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09d3e07778f80ce872201be0f9e3529e0ff472bb3115cb1ddb151ae17b5e4cad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (795, '2022-05-02 04:00:39', 'SALE/POS2022/05/0795', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '819b3fe1eb525c630128797311e2ebe8fc753d1254cfd38191f7e12fb766f144', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (796, '2022-05-02 04:27:26', 'SALE/POS2022/05/0796', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26a15dd0cfd699b6c09bcd94d63cb21f12a853e58454f3ecde84423fa123031a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (797, '2022-05-02 04:43:55', 'SALE/POS2022/05/0797', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10b463e902dcad4f3d95cd04a163e2ddfbd6ebfce0d34f27529c1237c3991df8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (798, '2022-05-02 04:55:18', 'SALE/POS2022/05/0798', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6fd7b27ac40c789fedbd8a8bba07dc40fe68620f307fe100f65ea333977ad4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (799, '2022-05-02 05:01:01', 'SALE/POS2022/05/0799', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c0429033e1c62164bbedc22e5369b399fcec5b0eed72f1f53abb62f2f8973f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (800, '2022-05-02 05:02:41', 'SALE/POS2022/05/0800', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '344284c6cafdb36bb87251d5e767a58cf9542e00080a5e0fc72ba8a710f18a51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (801, '2022-05-02 05:18:30', 'SALE/POS2022/05/0801', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f6ec3cdf4cd7a6272bdc250c1961d6efd73567e1f65acbfdac793de200edfc5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (802, '2022-05-02 05:29:58', 'SALE/POS2022/05/0802', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10af0d867b77c49f93d2896800c8a603fdef5a2d88f40a227f07f14a508f818a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (803, '2022-05-02 05:45:06', 'SALE/POS2022/05/0803', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d0341c93c604894ba80fcef6c4f8dd7e5c8415a1d3c52fc3910dcee15c1739e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (804, '2022-05-02 06:37:06', 'SALE/POS2022/05/0804', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '061a14c6f3c057d61dfd825b8644a4115d6dc04e1d3ec21570c862ab357d9f14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (805, '2022-05-02 06:45:45', 'SALE/POS2022/05/0805', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf20b801a49839823d7d353f630af7ea9c49afb19223aa01f4dab6b8e1a1a5a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (806, '2022-05-02 07:01:53', 'SALE/POS2022/05/0806', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25b18fad1560cba75d377a200c6c9935d04c6b8b3ab54584a16fa9224981ff1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (807, '2022-05-02 08:30:40', 'SALE/POS2022/05/0807', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a69ee2e5307539aac4cf2b7d150eab36c9ab2a5de53c377c5d580e3a5c3a3bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (808, '2022-05-02 09:06:21', 'SALE/POS2022/05/0808', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c014735537740a2d334d26e72220c5bbc5f12d96b8ab2e2bb4ca0994f936b91f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (809, '2022-05-02 09:19:35', 'SALE/POS2022/05/0809', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eaecb20fd090278bfc8e7ba4681668a81b6bf166603bf3847cadb820ba73c64d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (810, '2022-05-02 09:27:45', 'SALE/POS2022/05/0810', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '960.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '960.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '960.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b55ee9fca6669fdb64cf50bb0eeb4213fdfd703d108e132152bf4ff64a49ee7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (811, '2022-05-02 10:05:07', 'SALE/POS2022/05/0811', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0375f743d49b13277c0fc4c818803e8d8440c01a3ac9e4ccfb90ff41e2264ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (812, '2022-05-02 10:10:59', 'SALE/POS2022/05/0812', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50cbfad819ea89ce7a6c986c9bb5ced53c8d5f7d61c5d6d4f0551905a71bafbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (813, '2022-05-02 10:36:17', 'SALE/POS2022/05/0813', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4150.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '032f8b1e1ecf6394559f8b27afeb4e77240c0f8cec142210b21678040f53a505', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (814, '2022-05-02 10:43:41', 'SALE/POS2022/05/0814', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d4f89e204a179e09fec727aaefd74654aedea12c0342647878ce95024488220', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (815, '2022-05-02 11:57:31', 'SALE/POS2022/05/0815', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2de3b61b64ccba1ee0ee9c81f77cd556fbaab7354fafb47c72d763048475c208', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (816, '2022-05-02 12:39:48', 'SALE/POS2022/05/0816', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c0819a817c197e7dd0900c975c04b3e63d6c9edbdf073f8be034f3085fe29bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (817, '2022-05-02 23:42:15', 'SALE/POS2022/05/0817', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75ae3c9975d7e85c7e8a82288741d6f2586ad5b2efd9b93a89353bf130409e8b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (818, '2022-05-03 00:40:19', 'SALE/POS2022/05/0818', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b264a0755478e84337eeac3784ead4272127c9ea1432c3f21b6e635639e9146', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (819, '2022-05-03 01:03:48', 'SALE/POS2022/05/0819', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd649e44f6dda41f2e63c59e837264a2580f203e85ef176d085c2784787375a27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (820, '2022-05-03 01:04:57', 'SALE/POS2022/05/0820', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d9d22e0ee9084786c55dfc97b652574ffa462a5a24b1cb445e57e4ff54b73b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (821, '2022-05-03 01:20:13', 'SALE/POS2022/05/0821', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1f0fbc2f77526b505d10b1375cdf7ecbd2ab255662478fc1d26bc5ba1da9a66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (822, '2022-05-03 01:50:13', 'SALE/POS2022/05/0822', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd160211c1b5e243d8f8f41cbe284bdda5e26fbf4b400131463b2960540a01806', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (823, '2022-05-03 03:00:18', 'SALE/POS2022/05/0823', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f9fa33f67951cad326cb90ac86bf061d069567912e38b34ceb55769d2df57fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (824, '2022-05-03 03:11:06', 'SALE/POS2022/05/0824', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b3d5753c00f82238ca0c53f6cbde887212ebd1c62c2bde9d5a4c6318117adba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (825, '2022-05-03 03:44:53', 'SALE/POS2022/05/0825', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b550fbbf77ed2e0420595509b280a7810c1cdd630baeeb6634c457c8c29aebae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (826, '2022-05-03 03:58:52', 'SALE/POS2022/05/0826', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbc102ccf48cceb39e98ce7f2a671073302715052599cebded02a332f6c8c52a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (827, '2022-05-03 04:06:42', 'SALE/POS2022/05/0827', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad14f44a477182dbdda130a53100a1c6c29a265b83ece28fc24b423bfa13378b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (828, '2022-05-03 04:29:32', 'SALE/POS2022/05/0828', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcafeaec5003a484da842af41cfed5d3c6b89ac61e3576b0732fa1c499266223', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (829, '2022-05-03 04:33:09', 'SALE/POS2022/05/0829', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd6f5daef2b000f881b5ecce1abd2eb7ce19a66a34b90c431959cca84facddb3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (830, '2022-05-03 04:34:11', 'SALE/POS2022/05/0830', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2cb43730e6fdb2ab7444dbb6a71d4589785d244edab32a05d0abc5e42db2194f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (831, '2022-05-03 05:31:50', 'SALE/POS2022/05/0831', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c110614591a7f4bdedcb3bb41e30ae759e1d3f97683a8d64b24ab90f093f3efe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (832, '2022-05-03 05:48:44', 'SALE/POS2022/05/0832', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0878d85f7df19aa88898d7c2364a4eb69278510e586bdfe604ca0fa850ef5577', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (833, '2022-05-03 05:58:18', 'SALE/POS2022/05/0833', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd92798612bee5e8b9af32963c97edaefee797b528cd8dea2ca03661e73d906b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (834, '2022-05-03 06:00:10', 'SALE/POS2022/05/0834', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '532bc8097d867b67b92b19d666a6deefc2434e582952b0fd8c9fb086b05ff26a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (835, '2022-05-03 06:01:45', 'SALE/POS2022/05/0835', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14f49898ab6dbf74062ca07218c57130e2430f886426efa08c49b2d59b539193', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (836, '2022-05-03 06:16:37', 'SALE/POS2022/05/0836', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9000337fa43f8bfdab2da83845b326d441e6114a20bbf718d6ecd3ddd54242f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (837, '2022-05-03 07:56:35', 'SALE/POS2022/05/0837', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1ba6a6660f5e6a0965d1a406afe9c83f1f41b2636e69f5411befb52ab466763', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (838, '2022-05-03 09:19:00', 'SALE/POS2022/05/0838', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b14d8150be9ec8b06fb7df6ab3897b59f0c3061a378c6d96c8431773fa59d01f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (839, '2022-05-03 09:21:38', 'SALE/POS2022/05/0839', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86ce82b4199949e42d7eb0336f3adb51ab12af61eec357d838fb21eeb438621b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (840, '2022-05-03 09:42:53', 'SALE/POS2022/05/0840', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8825a1e6dac6939997877e1da654c307bf0b782957742bffa6eff9196066b1d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (841, '2022-05-03 09:56:05', 'SALE/POS2022/05/0841', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '919c1d9029e8d0486f4257ea70d9a41e3984af43f058c982ef9ab797ee62e7fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (842, '2022-05-03 10:16:06', 'SALE/POS2022/05/0842', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '280.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '490fd9ce652dd937f610fa9405dff1b88caecafd998daea19aca55c3a55405c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (843, '2022-05-03 10:25:08', 'SALE/POS2022/05/0843', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd84cb93808c16f414054a4c614da77a8dd952220a7b42885a1f7cda568c57a38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (873, '2022-05-08 00:56:54', 'SALE/POS2022/05/0873', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c3a999052400d33248c3468392545dffc9129271304b1e323b4977b723ae407', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (845, '2022-05-03 11:24:55', 'SALE/POS2022/05/0845', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce8a513ec447401eb969c5a7bde1d9435260fd10d3661ed88113c5d047b95c96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (846, '2022-05-03 11:32:04', 'SALE/POS2022/05/0846', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1238450033f2c31b1f8e6ee7cb696fd857aee3ee02b33d3388e631ebdad6be3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (847, '2022-05-03 11:46:13', 'SALE/POS2022/05/0847', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9ffef2b8dc4492406733ed9bc590e373c01b60ca5fc3b20535e94ad6ae2387d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (848, '2022-05-03 11:49:49', 'SALE/POS2022/05/0848', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '285462fa029f8253b9667dd8e6e3546a2ea01c1b70a92a2d79b8a375b77a42bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (849, '2022-05-03 12:14:33', 'SALE/POS2022/05/0849', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae61796d6647c4efc6002c24e6ab9ba8b2dfad6517ff9cd5368d95692daa409b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (850, '2022-05-03 12:17:19', 'SALE/POS2022/05/0850', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf69e48d5669844b07601ee80013ba4ac1d7b14aa5a20632c262c558e49d8aff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (851, '2022-05-03 12:58:04', 'SALE/POS2022/05/0851', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c80757f38213e3c1c88ca87ffb32f5342d9dc0e51266ee56445c027a0b9d4b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (852, '2022-05-03 13:28:07', 'SALE/POS2022/05/0852', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0078c0860b2177a2f6d964ce4b174166655bc4877da853e523807ada137fbf6f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (853, '2022-05-07 00:45:23', 'SALE/POS2022/05/0853', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0be6b79e015bd1333f625ab4a8ea6a28fe1b5d00aca802d62727a134b14980aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (854, '2022-05-07 04:54:46', 'SALE/POS2022/05/0854', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '5250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8141fa586fa2d6da4dd27f1d68ae24e0e4c0b3c42a98db8c4f14f8069de6d339', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (855, '2022-05-07 04:56:55', 'SALE/POS2022/05/0855', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42ae9ac71bb49a406e0b0947c9a85eec3279908295566397627d34eff954fbd6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (856, '2022-05-07 05:42:43', 'SALE/POS2022/05/0856', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24e2b4fd8f677893515e46d1d73238976c7c7178fc2a53295b193c469331b1da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (857, '2022-05-07 06:07:26', 'SALE/POS2022/05/0857', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee43ea1180959c99f2c1b4c18b3071f9fdf615e2828b8ffc2fbea4c3ab44b5f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (858, '2022-05-07 06:22:44', 'SALE/POS2022/05/0858', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94c66cdde4ba75ab01ccc323d40352f53852ea4c41606181db3ba5345092bfa5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (859, '2022-05-07 06:27:43', 'SALE/POS2022/05/0859', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67eab8cfe0b5b2cf0bbccb09be1339262c3766c01e06f42682d64c47f421edf0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (860, '2022-05-07 07:00:57', 'SALE/POS2022/05/0860', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8d192e3da4edd1250d34651ad6cb75d6b1df41c4fb48fdb0c5eea35c588e153', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (861, '2022-05-07 07:16:33', 'SALE/POS2022/05/0861', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f488906a89707c749e2b756883b3c16179536420ae0544315c2a3ddb6921643f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (862, '2022-05-07 07:17:50', 'SALE/POS2022/05/0862', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e04fd9d3e9abdcb55662b9ce75598019efa659e8ee1cad12ed5ecf598e2e1881', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (863, '2022-05-07 07:59:44', 'SALE/POS2022/05/0863', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58b6502f40f0d0b7db4d4c6b83d63d04ffe0005f87db9c92bb618bb772048d86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (864, '2022-05-07 08:07:46', 'SALE/POS2022/05/0864', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6495103970ece3f070fe06e0f1e2b95662b6bb9f569e097d6a348f09a66b26e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (865, '2022-05-07 08:10:10', 'SALE/POS2022/05/0865', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd784a1b1fd872841691b939f7a6cc33dfbb39ff6bc216cc6a6bb86e2501124e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (866, '2022-05-07 08:42:38', 'SALE/POS2022/05/0866', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '817d708f02ae657fb7835834568f70540c864700dd5301ee739a6ac5e0382e6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (867, '2022-05-07 08:45:39', 'SALE/POS2022/05/0867', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '093bdc85084f2a09ab838e68d04e83d5826a91e349ae495bdfd7f5480f15b466', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (868, '2022-05-07 08:58:48', 'SALE/POS2022/05/0868', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd0a3719e2293ee8af5cad72d9d86e464f38f6e9e0707f53bf7aa840e3ea6e13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (869, '2022-05-07 09:08:50', 'SALE/POS2022/05/0869', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '58ccf9beb3d9893eec200662d5ddcf2a21ea4d8ff79d15b61a880bf33c68cefa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (870, '2022-05-07 09:26:29', 'SALE/POS2022/05/0870', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ef5c3e59a5a256c4617ca04f1a4947a9dfe95b6b62f590fe2bb2c0b0042b40d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (871, '2022-05-07 09:54:52', 'SALE/POS2022/05/0871', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfc5bf67bf1520631dee0985150922855d926a35c3af0a381f77391ca4563161', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (872, '2022-05-07 09:55:41', 'SALE/POS2022/05/0872', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e368bd7045e3ed38388a24002a427008d48518c16bae4d8e09dcd12c3992ef7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (874, '2022-05-08 01:54:42', 'SALE/POS2022/05/0874', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9174a8f7044acf76c96f16f49c566359115c1443d43e8782ec112836f20f51ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (875, '2022-05-08 02:19:30', 'SALE/POS2022/05/0875', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b4fcd2ae5c11738a12a7d7c074d3e20646e2a2eef373a707fe782df0aecab5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (876, '2022-05-08 02:43:20', 'SALE/POS2022/05/0876', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '177789441a4320b293e1d151b245255577d7b2239ad4e7d9a9104bfb63645afd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (877, '2022-05-08 04:53:43', 'SALE/POS2022/05/0877', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09d12daabfdcc684574a2d6a8591b79e0a8370d9a2db7ce715396af70807a7c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (878, '2022-05-08 05:17:52', 'SALE/POS2022/05/0878', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c70207ca295e87868e8ec2ef3fb3ebe374fe24a64ccd142f492e7bea51106b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (879, '2022-05-08 06:48:46', 'SALE/POS2022/05/0879', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcca99cba8d2b977ba0207faaf022ba6b707c2ea8149d92744dcea48c7530bb9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (880, '2022-05-08 06:55:27', 'SALE/POS2022/05/0880', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '5400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1973dc3b51675c79ac5429140edbc0123c695b887e3aff694e3d1677264b283', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (881, '2022-05-08 07:04:41', 'SALE/POS2022/05/0881', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '5850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba4f9624d63bdb07586184a4a0ce607dab7a6c371f8dc30a3dd5ff704b18d096', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (882, '2022-05-08 07:47:49', 'SALE/POS2022/05/0882', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00b6ec55b24023db63853e019b681268f93498174fcae1ef0a7cc7dcd47c2def', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (883, '2022-05-08 08:05:00', 'SALE/POS2022/05/0883', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '&lt;p&gt;payment in card&lt;&sol;p&gt;', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, 6, '2022-05-08 09:20:49', 3, 1, '800.0000', NULL, '0.0000', '0', NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f572ba09b6017ce8132400acdaa3c4e396f68d06996c410f8387746de259558f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (884, '2022-05-08 08:08:55', 'SALE/POS2022/05/0884', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '900c081685db52324e667519524085b1d134b67003573ef780bca427f56c52fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (885, '2022-05-08 08:37:20', 'SALE/POS2022/05/0885', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a532c175f8a032d9f7e7b7a0550bbf6a71a65f2e8aeb8c06598c6e1f9e6bfe87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (886, '2022-05-08 08:56:56', 'SALE/POS2022/05/0886', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '8300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b40fe34e311562e87d16d400705998781387b630df5058a856d3e1acd9eaff3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (887, '2022-05-08 09:32:51', 'SALE/POS2022/05/0887', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37e26e7b2f2118256fbf963788688444cda6487c730a366f6557ab6bd69948ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (888, '2022-05-09 02:01:29', 'SALE/POS2022/05/0888', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7fae5a4a53fda42edc4e7d9c80301d0b3681a67dd2e7096134f70599f3567e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (889, '2022-05-09 02:02:30', 'SALE/POS2022/05/0889', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57307d5c78510db97e09620173c4d7ce7fe09d1ef394868f9352b15f694afc31', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (890, '2022-05-09 02:07:46', 'SALE/POS2022/05/0890', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72be272ccdaae796777dc0717ec8d3ad171359da0fe25e51c96f605d579a7818', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (891, '2022-05-09 02:31:52', 'SALE/POS2022/05/0891', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1e64a7fde52365760c35638f7a2ac31c8ef18ee24104032fe281fe848f2a0ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (892, '2022-05-09 02:48:59', 'SALE/POS2022/05/0892', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ce613cb55f09cd25f2194c5599fa2ef7d8936f59bca32bed631ed4d18019647', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (893, '2022-05-09 05:38:20', 'SALE/POS2022/05/0893', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '947845fafd8d2120f14cb62193c16accb22c9786387725f2e6de243b8ddd0fc2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (894, '2022-05-09 05:41:52', 'SALE/POS2022/05/0894', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d9f66469b5c37ab7e7bb4984c66edb0ccbfc9b5ffe7b64034e98424834668b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (895, '2022-05-09 06:43:58', 'SALE/POS2022/05/0895', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5cae4c6f884eca6295eaf1b1c767c380f897ba563cfd90d19537af402c9949a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (896, '2022-05-09 07:45:18', 'SALE/POS2022/05/0896', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55ad7795eea3b186ba3fec5802ef4eb4073f890a800be764f683c9217d8efdca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (897, '2022-05-09 09:12:53', 'SALE/POS2022/05/0897', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e34b12951da33e0221fb67d02000223edd32902651485e35f4ac86255144e92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (898, '2022-05-09 09:21:23', 'SALE/POS2022/05/0898', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da58ee623444866979c6813d3b91aac774bd62ee764c48de37d57f0e9f19e1c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (899, '2022-05-10 03:22:27', 'SALE/POS2022/05/0899', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74727467edbf2892eec24abe09351ef788394572dd34994e5528d1222daba631', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (900, '2022-05-10 04:39:07', 'SALE/POS2022/05/0900', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff8f7ce07e7dca5bb29a579c28d508861174c458325f8b6bdfb49396ad712f86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (901, '2022-05-10 04:39:57', 'SALE/POS2022/05/0901', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f590bf758e9dfdcbd35aa5e39b6bf3eb2e1a62b7acbec9034f0b265de660966a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (902, '2022-05-10 05:56:40', 'SALE/POS2022/05/0902', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88395995745d312ba3031a270cce6ecb9744f341718d215853bd53496fc39f5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (903, '2022-05-10 06:08:03', 'SALE/POS2022/05/0903', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '268d4d37557383d5fee8b6e7e592e199aee7fcf0c5b0618b26746242a6bfb869', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (904, '2022-05-10 06:34:17', 'SALE/POS2022/05/0904', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8137d5cd61089f5e9a1f05642de1895e25e345c1d27ffb634dff2e9444d07ccd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (905, '2022-05-10 07:11:39', 'SALE/POS2022/05/0905', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55e817b0b98166a9f223cf4da39456a0a71d9cd84f6da86b240e146af14e1b1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (906, '2022-05-10 07:14:42', 'SALE/POS2022/05/0906', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8f27f63427572773fee8ee2b6d9a0787b5fe7153670f6c0d5e20a4889b2f2a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (907, '2022-05-10 07:21:38', 'SALE/POS2022/05/0907', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f192c96440e87574caecc54e532ebd5b86739a86d94836d6fd35b58f44b4e0b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (908, '2022-05-10 08:20:29', 'SALE/POS2022/05/0908', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0401ee9f5cfa3fa7ab09ac95500051ed92e01415c131d2583f2bfc80bd793866', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (909, '2022-05-10 08:34:43', 'SALE/POS2022/05/0909', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6e1d0a3ac661363746bd90879a30d28993c1a9a010aeb16e577ebda3e53b849', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (910, '2022-05-10 09:11:55', 'SALE/POS2022/05/0910', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e943da83b590bc62ee524c27e8a7c9b98b6aff04da82e2cbb3219810d1eb421', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (911, '2022-05-10 09:45:39', 'SALE/POS2022/05/0911', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab502e87794efd9adb6abd98a470cde3f9cc26e968fcc9b9c506d86114c30cb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (912, '2022-05-11 01:49:31', 'SALE/POS2022/05/0912', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bede5297d619f98c359eb12153d67a9d4620deb0538f0e3c04c304654e9ccfa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (913, '2022-05-11 01:53:30', 'SALE/POS2022/05/0913', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c46ddf377f97d48f5c0983d4b126f767d1c326d5be85ac05e744fe9fbb577f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (914, '2022-05-11 02:41:04', 'SALE/POS2022/05/0914', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53cd6c721b1f3923644d14b00b5d3243464f9d06ba90cec1ff1423e2451d4e88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (915, '2022-05-11 02:42:37', 'SALE/POS2022/05/0915', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '853aa6216b20bb63eebcdbd8ac6b7edb39eb28a3525f6e000bf0acace151e34f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (916, '2022-05-11 03:36:33', 'SALE/POS2022/05/0916', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3d582b6faec24440e13e2d5275c76363fa79b57db8e6be153a44ac84f718fcd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (917, '2022-05-11 05:07:48', 'SALE/POS2022/05/0917', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b909b37cf0387c3d6bfc3ea96d724066054bda7f2b246c804f1df4e015a8db53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (918, '2022-05-11 05:13:45', 'SALE/POS2022/05/0918', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84d8222a24baa3fce21964925347c9e3bd4b89b75eca541df6245e5d344f2997', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (919, '2022-05-11 05:33:01', 'SALE/POS2022/05/0919', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d9ec2f5e4dc924f2cb1424bc5e577b53f4e5aec4be5e53bbcce156230de66b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (920, '2022-05-11 07:58:02', 'SALE/POS2022/05/0920', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f15947515d381c9bb7eba3cc33be628e09aa2e1dd2914618227129f804c0859b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (921, '2022-05-11 09:37:24', 'SALE/POS2022/05/0921', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97a7f8ff9a8006b84154a6eaba21748d9df62570efadbb59e84890979d1d8a3c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (922, '2022-05-11 09:59:54', 'SALE/POS2022/05/0922', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d241f89b44d0c8f4ddb73816029eb726cafbe1a004df71b604b8819082b2561', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (923, '2022-05-12 02:33:17', 'SALE/POS2022/05/0923', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '827439ad1c872ec18f42a207ad8a8549349b29f87b2ace40b18d75505e726ee9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (924, '2022-05-12 02:35:03', 'SALE/POS2022/05/0924', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '695ed7216410c7d6f15df99d44030446cba3f2c5fe6549b14622b9e6a60e08e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (925, '2022-05-12 08:18:45', 'SALE/POS2022/05/0925', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b32fd4e6010b9463929674f47aa5febd1bdaf6d58979c654a3847308331df18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (926, '2022-05-13 03:18:17', 'SALE/POS2022/05/0926', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7eec69c742eb57d00e9c1aab94cacf32eef215b61a7da2418ecc9515e663c33e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (927, '2022-05-13 03:59:43', 'SALE/POS2022/05/0927', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0358de56f503230c15df1456a67cd148b47e90e992886a435cbda0a9d4a1858', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (928, '2022-05-13 04:29:50', 'SALE/POS2022/05/0928', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '931761dd6042fede10c5319c70b5753404013963b20c88b06bd312261780d39e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (929, '2022-05-13 07:58:49', 'SALE/POS2022/05/0929', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b6737299b3537bc1d5e5bb44284d6277f19656b42f575c3c2ddde9ff081dabc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (930, '2022-05-13 08:24:36', 'SALE/POS2022/05/0930', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb779df90b0a47a8ab9cb5f7b4ade7bc1592a69280be8f8008767f45973638ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (931, '2022-05-13 09:07:22', 'SALE/POS2022/05/0931', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1969e6604a81c7638f593a67d6e9d1bd0e0cc5c8c66aa794b47b89846f732d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (932, '2022-05-13 09:22:35', 'SALE/POS2022/05/0932', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16dc4aff40ce4d5b46494d05a7ff6f928b5aa830edb82816d2b7cef7760dc08d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (933, '2022-05-13 10:27:00', 'SALE/POS2022/05/0933', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7624bb99feefc9a54af236a03962b9f34c6567deed64fe82062b515ec796b333', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (934, '2022-05-14 03:16:10', 'SALE/POS2022/05/0934', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2060.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2060.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2060.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac8823a6ba10c72d2bf3d14174c32ec115b2e988a53fc081bbdb52cae36a882d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (935, '2022-05-14 04:02:45', 'SALE/POS2022/05/0935', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'deaf9c90338dd2c46adb7b03c83a4dd0628e73470fe98ce7cced32604b9afe86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (936, '2022-05-14 05:32:39', 'SALE/POS2022/05/0936', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '5500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b101018334d09f7dd29ea76adf50561c91244f492c72bca619b94ffe6d3c5f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (937, '2022-05-14 05:49:07', 'SALE/POS2022/05/0937', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '585f9780662e34145ab5e43deb07fec1cf5b00289da79337bc4497ea4b54e45f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (938, '2022-05-14 06:40:03', 'SALE/POS2022/05/0938', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96ebb74005bceba82b3f1f0a122b0bef8e440411657deb2ee63e09864713f01c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (939, '2022-05-14 07:56:02', 'SALE/POS2022/05/0939', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7349d9f5c11fdd3d0a64f433c34a01d63b21a0f68d8d48ea3fd93563fad1b551', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (940, '2022-05-14 08:56:44', 'SALE/POS2022/05/0940', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0397499289bdd0b98cee25f9fdd50d88a6497a41a788cb67056ca952fd1f931', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (941, '2022-05-14 09:36:41', 'SALE/POS2022/05/0941', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e402d72f52b6e59bafdd692adb4c91ce87364c29ec33eab739d98be872eb9070', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (942, '2022-05-14 09:39:19', 'SALE/POS2022/05/0942', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac21fa3f17dfb82c74a78ce3fa5c82df12688387dce216d8b2fc2972c5e16197', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (943, '2022-05-14 09:44:40', 'SALE/POS2022/05/0943', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '696dca4c0541484f9e845d6099e70cd412a2618ba755bc492b7104c394f26673', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (944, '2022-05-14 10:09:51', 'SALE/POS2022/05/0944', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9561967520c01c894da63ee80747d9f47e56d967a011becf9144bbe93405acd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (945, '2022-05-14 10:16:21', 'SALE/POS2022/05/0945', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b8e04c3387b5c9ccc594ccfedb6fd388850629fb1cedc417a724b9a9a10fba4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (946, '2022-05-14 10:37:35', 'SALE/POS2022/05/0946', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '042b37a66188a7fe52e28c6046be98944722c31a224f5259bce88bdc32e65aea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (947, '2022-05-15 01:28:44', 'SALE/POS2022/05/0947', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8435e1a8923dc5f124e520562c0409c33292b6688b245470461898b20df6bd41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (948, '2022-05-15 02:35:41', 'SALE/POS2022/05/0948', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c639619fabb6aa89786662c7974410df14781e884ae5888404b92ae59323e8d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (949, '2022-05-15 04:02:25', 'SALE/POS2022/05/0949', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '100%', '80.0000', '80.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4286ef26e182d99b68b178871e9038741a1b94102e7ceea70842c88f6edd89da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (950, '2022-05-15 04:26:41', 'SALE/POS2022/05/0950', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec3e9bdcfa21d7be8c7af84dc09c17024275f6f5f59aac7e84ba00f8ea960d4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (951, '2022-05-15 05:24:03', 'SALE/POS2022/05/0951', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e77519e0e18e43b820aae1983c433f0bceeda2eb89831b868d48c86ee021cca0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (952, '2022-05-15 06:07:05', 'SALE/POS2022/05/0952', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd308cfd1a6ce28ee0f327d5047bf10ad637abe5b9621f1b2ba518dc65b583bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (953, '2022-05-15 07:01:50', 'SALE/POS2022/05/0953', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f45efabbe63175513628047710083c8d56d9131dd86792e6f8be4467386008b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (954, '2022-05-15 07:06:25', 'SALE/POS2022/05/0954', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '858e1aecc22b6161f973968bc3fe4fb5cc77b6d08d4ad9df71818bac151a3b9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (955, '2022-05-15 07:07:55', 'SALE/POS2022/05/0955', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cba92d3a7eae17fb00e4e161885e7b8eb471d0e73810ad3a21c7b137a5bfa2da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (956, '2022-05-15 07:13:48', 'SALE/POS2022/05/0956', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ff22a77b4e042240a434f58988ea664b133a43a9df1f27b2dd8e12f247a74cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (957, '2022-05-15 07:34:21', 'SALE/POS2022/05/0957', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d902f507ade9b211185e5168e7a99e95fc730ea40503c3086d7353cbd822846', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (958, '2022-05-15 09:19:00', 'SALE/POS2022/05/0958', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '5400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c01d41d023821dd716c4de43d07047cba48a35f36223da25ca2c5fe258d475b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (959, '2022-05-15 09:20:54', 'SALE/POS2022/05/0959', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd78424f501965a11d53dc9706cd2a3d99e954187a40548bf60060bc932215ad1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (960, '2022-05-15 10:25:59', 'SALE/POS2022/05/0960', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d7e9587e4dba9a4c1b73b885efe12f5b9f15fb4bf6a11ee8a2d301a72fd678d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (961, '2022-05-15 10:28:55', 'SALE/POS2022/05/0961', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44d549a8814d329300da39ae8a8d0877388b4776eabf1d226d77f47f69d911c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (962, '2022-05-15 10:30:53', 'SALE/POS2022/05/0962', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a387433667509fb9f7a509128342eff01aa60f1d9a1e9b54ac458e05d6e402a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (963, '2022-05-16 03:43:48', 'SALE/POS2022/05/0963', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '6400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e6b6db00185d02522297ab69d183d2c5839b74b75ccffa35add82ef55e38733', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (964, '2022-05-16 03:47:00', 'SALE/POS2022/05/0964', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3c9d98a29c2eb2394195911f577019bba7d7c737758975b1ff24e07d915027f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (965, '2022-05-16 03:48:11', 'SALE/POS2022/05/0965', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '480.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '480.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '480.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa4d2ed8e5879e6b1048fd17d7629bd6915e25cf26b1179ac817316cf70d8f75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (971, '2022-05-16 07:05:15', 'SALE/POS2022/05/0971', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03948eefacd10f8df87b0e14e08d6ee4bdb2c6b1627018290e48212fbc8cb18b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (967, '2022-05-16 04:16:48', 'SALE/POS2022/05/0967', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20cefe9ea4d85dd0df993d8fb6b1a91334ecd27d1ec4c20d19a249c9a5a12fbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (968, '2022-05-16 04:20:50', 'SALE/POS2022/05/0968', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9d7ae9e513ab47e3be383f05f5c5d9b43d4a4d907b82a41aea1cc5b56535d7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (969, '2022-05-16 04:21:24', 'SALE/POS2022/05/0969', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe5588e3c2f23abb42989feb313346b4e1a7e91ff9571978f83bf84c43382ac4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (970, '2022-05-16 04:37:17', 'SALE/POS2022/05/0970', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1910.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1910.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1910.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5679a11c7ef438dca985bbd9fc847d44cf3578937d427a77a6314951ffea6ca0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (972, '2022-05-16 07:31:59', 'SALE/POS2022/05/0972', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3c44e0356ea7ee841e38039d84b22b9854e7916c52769f4bafa2e0bc68f94bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (973, '2022-05-16 08:23:19', 'SALE/POS2022/05/0973', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b29e0be816201701d036c25b4ea4edb7c565a2ae7b7adef3d9bec63c3891a7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (974, '2022-05-16 09:31:45', 'SALE/POS2022/05/0974', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7992a9f5d25b9fca111c461b0516b2cadcb608edb62e6700bbe85737e1287d9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (975, '2022-05-16 09:39:41', 'SALE/POS2022/05/0975', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8513d82b12a8e3f7a06ac460768bffad9a28ce99ed263fd42ac4446623daf351', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (976, '2022-05-16 09:43:51', 'SALE/POS2022/05/0976', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59d5dca5075c1d285acc66206ac77f05877453e5e6484be46bd0c51a57f312e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (977, '2022-05-16 09:50:51', 'SALE/POS2022/05/0977', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a140df752499c4872ffbef25df8b1fced75def8a4a767a3850c458319baedd9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (978, '2022-05-16 10:31:07', 'SALE/POS2022/05/0978', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8550.0000', '500.0000', '50', '550.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '8500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4aec013fd1112e965cdf52187c0130d73f32bf80b5402a87882f560af5a4eea4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (979, '2022-05-16 10:40:44', 'SALE/POS2022/05/0979', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0836c07483847e4b13fd831ade232d488e4a5f55d0ff77a4ecd623c56ebc7686', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (980, '2022-05-16 10:42:45', 'SALE/POS2022/05/0980', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '240976f752325e4846f60c2123982c3fadcfefff599f855eb05a357f3f9d1082', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (981, '2022-05-17 01:26:45', 'SALE/POS2022/05/0981', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '8140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25d8de76853aa03e677771d80472e80850513ea472a02d5b8331ca9026ccbe1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (982, '2022-05-17 01:32:01', 'SALE/POS2022/05/0982', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '812c3d32fa0a05a6449037f4e66965f18b3c372a237e3fbc427abea44f63bf7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (983, '2022-05-17 04:10:10', 'SALE/POS2022/05/0983', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b13d693e582b546abd30cac3eb9ce50531624cfbb3c0c6e30ac76b2b4137c786', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (984, '2022-05-17 05:29:43', 'SALE/POS2022/05/0984', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0eac67e9255acc6e9e0bb70ffe3d6a6cf5b96d9320d5742b54ba5c3321b69d89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (985, '2022-05-17 07:19:49', 'SALE/POS2022/05/0985', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcda567d54fa67149dfa9a8b72c7325611bdc634b063ca5fefa4ff16a000b62e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (986, '2022-05-17 07:31:57', 'SALE/POS2022/05/0986', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '6150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b2be5cf0ea901ed7f97dd8e20f4a70cf807e52782fe7445bbe34a8722e140c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (987, '2022-05-17 08:33:27', 'SALE/POS2022/05/0987', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dad2b3e091ce0ed4ff302ebba3a528f756550ae92c7a3a42dcc4622cd4ddabc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (988, '2022-05-17 09:27:48', 'SALE/POS2022/05/0988', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '12410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5848de57bdfde12ed9f3bb272bb91a1f2a282a98c3dcfc8aa4f488c57bee427', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (989, '2022-05-17 09:58:49', 'SALE/POS2022/05/0989', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c8c428f7dfdc03c3ab23dee16737135f63034bf34c5ca22f3d3cd91be461ad2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (990, '2022-05-17 10:02:01', 'SALE/POS2022/05/0990', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7134451baecd8e2cd0b05c316f28412078096b86c9ad2c407d973703ccd9c2e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (991, '2022-05-17 10:08:43', 'SALE/POS2022/05/0991', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fde6b170ddb8b00e4ebea818304df140e128e270737f6e93e5448683ed7b2210', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (992, '2022-05-17 10:13:48', 'SALE/POS2022/05/0992', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '389c49f76bcf211b1fe61bf3c73d22a6ad6ba57ee366b68ad2ca66e1ebcb3c78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (993, '2022-05-18 00:58:21', 'SALE/POS2022/05/0993', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '480.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '480.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '480.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf439c34a9903219fc8b5f6360c54a59a203e3c2f13a6b47a86271ab7f485554', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (994, '2022-05-18 03:52:34', 'SALE/POS2022/05/0994', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9efcc0d4038ccf8c72f5b48369b499b6a9559fbe694f72fc4f54615f3ddee43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (995, '2022-05-18 05:21:38', 'SALE/POS2022/05/0995', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12045197021fe9856c7a3a3a4a9ad2c63da4e86377af2034bd36fc27d740dac0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (996, '2022-05-18 05:50:26', 'SALE/POS2022/05/0996', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b3bbdd7bf849c7a5135453cb5a17c880a2a0d0ce74102b056c2ed25e365b727', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (997, '2022-05-18 05:50:47', 'SALE/POS2022/05/0997', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67299ccbca4f3807e19af5f968ea6b6555d4a5daaeb84ead34478774c09769d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (998, '2022-05-18 06:25:45', 'SALE/POS2022/05/0998', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '5050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e75d9a2e2aaf3dec1b14ad43cd1327deff910371273b3679f00be9691f605371', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (999, '2022-05-18 08:11:19', 'SALE/POS2022/05/0999', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '278f08ee8115bebcb5f1e695de99442e7eece8879c4db1ceb515e3786753af0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1000, '2022-05-18 10:19:58', 'SALE/POS2022/05/1000', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4ea2da56bdf4a5f9e4b760ca04b3e95e393b55a54dde652a1ebf243838d2dc3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1001, '2022-05-19 01:51:25', 'SALE/POS2022/05/1001', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd498cbf5dbd22c74a0ecef96549edceaed3a77f97aa592c9e8092a10cb590bda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1002, '2022-05-19 08:00:22', 'SALE/POS2022/05/1002', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf0ead2ff774cd18b01fe90e3bbf789a66bc2a063eb47c269fabf209a00bf810', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1003, '2022-05-20 00:14:44', 'SALE/POS2022/05/1003', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5e716cd6c9ee887f72b656038bce54bec15872c766d189ff7c43845046d08a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1004, '2022-05-20 01:59:27', 'SALE/POS2022/05/1004', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a6c4ae43d14bcc6e615b1d7dfe7c2561783d8ec2e8a6f85a32c89a827844dea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1005, '2022-05-20 02:00:45', 'SALE/POS2022/05/1005', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7891ff888fc366e003ec774c1607f07294c1a9702fc0824ce819d3ab30a9cb4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1006, '2022-05-20 02:11:20', 'SALE/POS2022/05/1006', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bf0d6eeb87f60a71256dc0f25111af700332df6afbb3d50adcc5b80ef552cec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1007, '2022-05-20 04:44:46', 'SALE/POS2022/05/1007', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1532b5f607feb30c7d5663ad2ecdda360870432ee46d95f96dd8aa0dba7d388e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1008, '2022-05-20 04:55:34', 'SALE/POS2022/05/1008', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f39c2c21b856574edfd54161021b4fae6355c5522eff0a8747e54b6fd466a1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1009, '2022-05-20 05:42:44', 'SALE/POS2022/05/1009', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd20d3358665b3efb6a64a2edbda8399f5a2f5125323b71d190136eecf6b4c88b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1010, '2022-05-20 06:54:53', 'SALE/POS2022/05/1010', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '280.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b0ac68df2b43bb72b84e25a655473bbaf6d84a900039007854ba05ade1e95f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1011, '2022-05-20 08:43:53', 'SALE/POS2022/05/1011', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f52f0dd112a2b3d56e0801d9773eaa667e0df1d039dfaae8c3b9797139d4edf3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1012, '2022-05-20 09:17:53', 'SALE/POS2022/05/1012', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae877f4503ec9c35588f92c8814db2a0f5edee9a8693205836180687798e3b76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1013, '2022-05-21 02:13:36', 'SALE/POS2022/05/1013', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8760b6c8a219c8c86194d2e842376e773e81b6493833ae4d937f7aeed0ba559', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1014, '2022-05-21 02:31:42', 'SALE/POS2022/05/1014', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6c1b6687afef396234904cb1d121d8f23d5d9bfc29a5ab92ccfc334d680b90c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1015, '2022-05-21 05:19:43', 'SALE/POS2022/05/1015', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '811bb995e412b6353ee5f96f81a8448f55994b0e7758f9c1d428b58233113a06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1016, '2022-05-21 05:20:23', 'SALE/POS2022/05/1016', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd58a8fb4ebc49bfcb0d83e238c938f7dc7e4441ea4cfd547f3d78df410fa0e43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1017, '2022-05-21 06:28:57', 'SALE/POS2022/05/1017', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbf832e9db9c8267656bb899282bc5468936b4af896ed184a2074e857602a60f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1018, '2022-05-21 06:30:57', 'SALE/POS2022/05/1018', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8561e455a457e19d61e7ad8cf5890bb168dcca66f9a8a717b542f079e5f85cc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1019, '2022-05-21 06:53:11', 'SALE/POS2022/05/1019', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b5c6f34887ed95a3141779bde2e80f6f493472e851d418df10755f70d2bb906', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1020, '2022-05-21 07:17:12', 'SALE/POS2022/05/1020', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '6000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e36b2c961ad4aaa4e09c0c8f2e5539b38381186b27e8be5a0df8db8eca1d611b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1021, '2022-05-21 07:19:24', 'SALE/POS2022/05/1021', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2defc8f8415c38a95675deba59b174add77e10d7c41f0974feda4797622e8177', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1022, '2022-05-21 07:22:18', 'SALE/POS2022/05/1022', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73809d155922abd16343bfed6bc7a9c12626a4b5b5c4b202f0cf1b6b20e6220e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1023, '2022-05-21 08:04:09', 'SALE/POS2022/05/1023', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26a41d06760e89fba1372160844956195e62002b91dd04c393ea0c637e9bb392', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1024, '2022-05-21 08:42:06', 'SALE/POS2022/05/1024', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a6c32374c08718653b68776fdef495179cc30e105f18eb67737d7c1e5942a66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1025, '2022-05-21 09:01:55', 'SALE/POS2022/05/1025', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '11500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '11500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c923b00c4c5346d8984760278376d97703daa30aa510a9afeaa2fffca4e8888f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1026, '2022-05-21 09:18:19', 'SALE/POS2022/05/1026', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03134c0765cf08c064956095b4fc4d2e6994e0c2963dc6ffce4f7c290f212e98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1027, '2022-05-21 09:36:55', 'SALE/POS2022/05/1027', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c4dd1e19f22878a885d96af79f6de15f322c52367764b2732a486176be45af0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1028, '2022-05-21 10:30:13', 'SALE/POS2022/05/1028', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be443b705adf094275cee352574bbf996b53d560fb5a32a12f1992f85e9ee8dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1029, '2022-05-21 10:48:13', 'SALE/POS2022/05/1029', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe06d5f320450b7e9b34f63d352fc83760c4d607a717fb6fbcacc8060faa5e43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1030, '2022-05-21 10:50:43', 'SALE/POS2022/05/1030', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '035b56f592edb85da4e5decafe61c07cbca554eef101469766dadf2d6ec5dc1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1031, '2022-05-21 11:25:21', 'SALE/POS2022/05/1031', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc12eb694d0972e3a60ced9f02b59c7b459f0a43ec30f78dfdba4aeef9180cbe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1032, '2022-05-22 01:10:38', 'SALE/POS2022/05/1032', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdc33b5e6505c5bdc409dbd6a512a4db080786d95fe78f820c4e532927ea8e5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1033, '2022-05-22 02:54:28', 'SALE/POS2022/05/1033', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '675aa518142d2126aeef93311950eb950130a5df476ad5e5dbeb235eb0233369', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1034, '2022-05-22 03:10:58', 'SALE/POS2022/05/1034', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6dfc970b25a65ef3d0520d55db63e1354f12d345d9f9905d6972609d655263c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1035, '2022-05-22 05:58:47', 'SALE/POS2022/05/1035', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57067f62a7a759c2a28e0c40114d07ec9111d7eddf9acbcf4d2c54b03b6d0584', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1036, '2022-05-22 06:48:10', 'SALE/POS2022/05/1036', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '270.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '270.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '270.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77c4bbc11ff18714cbab70e30bc57a827e740912b1471f3ee314a50c75d9a4ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1044, '2022-05-22 10:45:11', 'SALE/POS2022/05/1044', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcd2caafa2b54258b44e08541221f43eea9e4ef170aeecde125be6ca3c6b9e26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1038, '2022-05-22 07:35:28', 'SALE/POS2022/05/1038', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a5a4744f25a426e3fc95e2d727a3baf77ae8351e5d9d07107f4b0383f6a3914', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1039, '2022-05-22 07:57:49', 'SALE/POS2022/05/1039', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d91c8c1220cd57c4b0f5649d655d1eba8e5bf56f3bd5088c47ba08af6445c40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1040, '2022-05-22 08:09:22', 'SALE/POS2022/05/1040', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ec0ec7b9962da0e57b7583585d7aee8651513858f7fc08bfccffd9ea6527a42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1041, '2022-05-22 08:15:56', 'SALE/POS2022/05/1041', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11d34e1ca52cf4670d67e7a041a847bdbb2e08b082023f346d66265c37232e34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1042, '2022-05-22 08:20:36', 'SALE/POS2022/05/1042', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '462ea8289624a8c30b2f651d6e3534faa7165791388f615e73ffacdfc9535892', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1043, '2022-05-22 10:19:37', 'SALE/POS2022/05/1043', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9e721f687f825d67dfb4722c5f8f3e4fec8f2d15df83e1fdd24fe243d6af6df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1045, '2022-05-23 00:09:10', 'SALE/POS2022/05/1045', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df6c7ddd54b04a3fe7d96e23bf0a6f2318115e6e2dbd258daf2955ed9cc49bb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1046, '2022-05-23 02:06:07', 'SALE/POS2022/05/1046', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6642d5dc63322a91bb9cb2abb569e32daa608850c5887a2e3c84abd109c3e861', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1047, '2022-05-23 05:31:59', 'SALE/POS2022/05/1047', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e2c49fcaa5afcc6e602ceb0b911ab9456e707f1375c636dece2adf808587910', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1048, '2022-05-23 05:50:20', 'SALE/POS2022/05/1048', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f30496a8f15759e76334a2b090d42c4056be358bdd7dcca38e0ee860044186c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1049, '2022-05-23 07:06:55', 'SALE/POS2022/05/1049', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecbd5f99d2f423f223900ab2985cd9ab08362e32af32f7c6c06ae829609a9c11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1050, '2022-05-23 07:18:07', 'SALE/POS2022/05/1050', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a72fe1766003bf22a0b6966573ef08febf099182c7aedd282bf03d8be9442a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1051, '2022-05-23 07:33:14', 'SALE/POS2022/05/1051', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f392df96a0081eccbc6277eb4e5d413864703adb9b9441008be010adfca482cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1052, '2022-05-23 08:41:07', 'SALE/POS2022/05/1052', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80833ef6415ae847ccb9624b99e82494ce4210f9b525662a7958aa9ab82c294e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1053, '2022-05-23 09:34:11', 'SALE/POS2022/05/1053', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5250.0000', '0.0000', '250', '250.0000', '250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '5000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aabbe74eecbd4d96c8314ae6fe623bbc16dd2c229ce1f95d4c1306a35853d2cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1054, '2022-05-23 09:56:40', 'SALE/POS2022/05/1054', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1bb6bb8b49092720de962ba8ec8b1e045786c06abdd278be21f94acfeccaab11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1055, '2022-05-24 01:20:42', 'SALE/POS2022/05/1055', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '30.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '30.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '30.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e05ce7a7256ae0d8547de1e84c137ae8a8dbad327770e0459bd97bc83b1dd03c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1056, '2022-05-24 02:02:44', 'SALE/POS2022/05/1056', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99c56237e7de1d564d53c721003c17f22e76e245270925269a60ce26b5092336', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1057, '2022-05-24 02:52:57', 'SALE/POS2022/05/1057', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f701d0c32a304adad5e1af14fb0efc432edb56208ec129275f06e3078fc51348', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1058, '2022-05-24 06:13:10', 'SALE/POS2022/05/1058', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5e92e27a67252d996f2fae040db0d0b179849bc8821fac28f1b631d93369bbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1059, '2022-05-24 07:36:39', 'SALE/POS2022/05/1059', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b5a8971690e9078222cd5d298c86f852e23123214cbd56db167ca844d1fbe9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1060, '2022-05-24 07:45:27', 'SALE/POS2022/05/1060', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7a9fbf8c3d9637fe99d77efd433146a59fe0accc71e8f69f6a435f7a4dd5576', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1061, '2022-05-24 08:14:38', 'SALE/POS2022/05/1061', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7171bf6d9351eeb39f1719a0414a0b764747fc6f62f84d311023b6c91ffe7714', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1062, '2022-05-24 08:53:21', 'SALE/POS2022/05/1062', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2124210460a0ee0aa6c16fc1b65d224313d981bae5c0379b534e41e0f49a9e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1063, '2022-05-24 10:15:08', 'SALE/POS2022/05/1063', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70c9c9f5db0cbba2a57a141bcb2f71ace59650be620101718f82b0d8bfccf77a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1064, '2022-05-25 00:48:52', 'SALE/POS2022/05/1064', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f733ede7853d07d2d3f3bd1a5411215f8cdb913900b75f0d59451dd9e412d5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1065, '2022-05-25 01:52:51', 'SALE/POS2022/05/1065', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3350.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7bfefcd3331a904b01199992a374f4cc74da5f7e767eaf4adbb05fc726269289', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1066, '2022-05-25 05:50:06', 'SALE/POS2022/05/1066', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e13360dedeff7602a8c6d1d26b160c102f627b5ca57edb2d15dcb00fb9b579eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1067, '2022-05-25 07:08:11', 'SALE/POS2022/05/1067', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e15b290bef44dd0cffb1b3353ef12f3838c9a312f79d72d98dbc76e797174c9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1068, '2022-05-25 07:14:25', 'SALE/POS2022/05/1068', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1599123ab1fa0b6a8b952f904c188022e3c68791fa7fdcf0a41ee504295aa122', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1069, '2022-05-25 08:15:36', 'SALE/POS2022/05/1069', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cc650269ba81910a5906acc26442ae91e8752ed8780f5086a807d8e64567293', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1070, '2022-05-25 08:16:44', 'SALE/POS2022/05/1070', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc6f6a03f60a254536bd41956a5a635db2b2e59fca0511af1955143f81262879', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1071, '2022-05-25 08:55:20', 'SALE/POS2022/05/1071', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '989115dbbc0fa4cf1cd3aefc9df42205c50add47782237552efb5897eae9e424', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1072, '2022-05-25 09:12:50', 'SALE/POS2022/05/1072', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '18250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '18250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc584f1e9d309eca7cd9d044de709149e664c28dda81e4eaccd198dd9b69ba78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1073, '2022-05-25 09:32:08', 'SALE/POS2022/05/1073', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c49514728b587046ff81eb6ca69819c6de7a23fdd5074809724a93f3a6cad8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1074, '2022-05-25 09:34:20', 'SALE/POS2022/05/1074', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3148fc6474f862b4058c930ad2a5b5514c23e78818b6f9dca56a865524e8cd26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1075, '2022-05-25 09:55:40', 'SALE/POS2022/05/1075', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b97a47e0728faf2d1d2d47e2489c43aa20929cc7beaadc1aa7d14508e2bf9377', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1076, '2022-05-25 10:44:10', 'SALE/POS2022/05/1076', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af64aa083a6cdd748e038b5e7083ffb1ec4346651af67df98e6928ceee95ce9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1077, '2022-05-26 06:29:26', 'SALE/POS2022/05/1077', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a651952fe2d54da2e665e21d1033631f2a9725958d81986d294e1340fc4a873b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1078, '2022-05-26 08:01:42', 'SALE/POS2022/05/1078', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29af476ba06e74e0a1cc9495313ffe54b65d83d437c102bfee707d4108b52fce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1079, '2022-05-26 09:21:23', 'SALE/POS2022/05/1079', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3600.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb974ce1c4b918a08d61e6611f8155bf216ce314a9219b6f3581c955b2473658', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1081, '2022-05-27 02:08:02', 'SALE/POS2022/05/1081', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '7000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '249697e99cf90e228022e6406c8d5bfe612cbaa441b37726d4e0013749bb4c1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1082, '2022-05-27 02:09:57', 'SALE/POS2022/05/1082', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac30c21ba6b6fee99dc5fd1ac6ac70db988d2f76d3e41c89aa90125515ac49b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1083, '2022-05-27 02:11:37', 'SALE/POS2022/05/1083', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad9e82b71ee004df4375ec6bd8124bae05531a7af4683f016918a8b3736d06d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1084, '2022-05-27 02:42:25', 'SALE/POS2022/05/1084', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51c3952403301865261f37882fe82bd6d4a8ee4d86461e524fa62d96a37e6852', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1085, '2022-05-27 02:44:52', 'SALE/POS2022/05/1085', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5d0d64c07576cececdc369d2284be3416f6158bb1ef02ec212e254d881f39cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1086, '2022-05-27 04:28:15', 'SALE/POS2022/05/1086', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cea7dcfcb29a9228075163151f92794cf9cab17b6ce9b18238032a1cb3150f2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1087, '2022-05-27 04:58:40', 'SALE/POS2022/05/1087', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb0e12e0845b838280a194a715788c254a8d3f8f6cbde98240b3608e561e4e4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1088, '2022-05-27 05:22:22', 'SALE/POS2022/05/1088', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6e6c5506d00edba1b8fd3cec85ccbe3855383ce44f0f56e06078851ce333378', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1089, '2022-05-27 06:09:33', 'SALE/POS2022/05/1089', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '751a52656b2d75146b6e54846ab5251f98ab7bb7f2af01f7ed37fabe76696c91', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1090, '2022-05-27 06:38:15', 'SALE/POS2022/05/1090', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8af7c62dc7bfadd9c2aa8ec524da3b7422a93937d330f49986eb71223e864a02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1091, '2022-05-27 06:50:50', 'SALE/POS2022/05/1091', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fe73b2afba888f44a24e2212ef8b7561b06e50f54ea7f46f2976b6beb034509', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1092, '2022-05-27 07:04:20', 'SALE/POS2022/05/1092', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd99ec650f9be0f29b1bf659c1dffc6e6ee0e24d57c05a8b1ea4a1bf8d4a59d4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1093, '2022-05-27 07:08:55', 'SALE/POS2022/05/1093', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a34dfea8b52546b6dd072dccab10a2d428300ecb997d89d3fe49a48cc5c10f5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1094, '2022-05-27 07:59:30', 'SALE/POS2022/05/1094', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '420eb9bb18daef344f335f055be9064926474bed9d9c6eb5cecfddd33ab1ba5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1095, '2022-05-27 08:56:20', 'SALE/POS2022/05/1095', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fda1968c53fe631b863b5d7df3b10556ec82d8906a1c344a07726f5320cb76e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1096, '2022-05-27 10:12:32', 'SALE/POS2022/05/1096', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57dd2f0f407bf71fe984e8fffc249d2a2739aabd7ac22ac3dfa1a9f1ee2861e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1097, '2022-05-28 02:10:27', 'SALE/POS2022/05/1097', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7820.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7820.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '7820.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a284e059afbd4e87d37a3812e2244c6d3d20af36c300be41887ce606f69d5413', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1098, '2022-05-28 04:07:07', 'SALE/POS2022/05/1098', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '241caaff5aaca42800e84144523e08fa21996c4db6122d273e513fb57b15d551', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1099, '2022-05-28 04:48:49', 'SALE/POS2022/05/1099', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '5950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82f83a39e252987f64303eb93baba1a563e881f0a4d720b08950e6336bef7a0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1100, '2022-05-28 05:43:31', 'SALE/POS2022/05/1100', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02c0a33ec01496f05a10482b1ec60f986d7db939eee40182bf6fbd739a56e6bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1101, '2022-05-28 06:09:46', 'SALE/POS2022/05/1101', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2427e05fd1a8917c1e7567ba85e60fb0da6dba6a1f5c6abf96dee55ff7a42ef7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1102, '2022-05-28 07:02:27', 'SALE/POS2022/05/1102', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3831b592bd680904e699ce2254e11c872c0660553a93029e4c94ec07fe6f192', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1103, '2022-05-28 08:00:32', 'SALE/POS2022/05/1103', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8384b140021f8ea6dd2798c16a09edd40319740b724d897727cc095a9f2959ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1104, '2022-05-28 08:38:09', 'SALE/POS2022/05/1104', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19319f726ffcfa23a9a4b0e93e9e4f80c4ebcb0cdb9d90efb0deae6767025d37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1105, '2022-05-28 08:48:00', 'SALE/POS2022/05/1105', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1bcb5e42b9263f1ff9af631c6028c1025823884b2f6e1fd36e25a5752ec54d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1106, '2022-05-28 08:57:40', 'SALE/POS2022/05/1106', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d1502ee313b7d39bda8baa520e5779ae8fcaeeb8926411e85c4ef27a8b3fde3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1107, '2022-05-28 09:16:42', 'SALE/POS2022/05/1107', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ea6e13cf28561604b9bbd24175e0895d7babb810c51e002ef4ad00c242aec8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1108, '2022-05-28 09:28:58', 'SALE/POS2022/05/1108', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c1c8d7c5a9808f312618eb2111d6945cbc5222560bbc3d95a92a5567ffa6e1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1109, '2022-05-28 09:33:34', 'SALE/POS2022/05/1109', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88b3be06cc6b8a06dc1bacb0fb84afc5855ca789a033099a6361103ba4a58e15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1110, '2022-05-28 09:44:38', 'SALE/POS2022/05/1110', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c458abb2cf9c975f9be3afb2ce71dc667a7f76a66433c41b11fb14eac1f85d95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1111, '2022-05-28 10:46:24', 'SALE/POS2022/05/1111', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24c4d01bb151b1e4d024b7853fd6be6004e483e101c0e451311523a24c3e74fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1112, '2022-05-28 11:20:02', 'SALE/POS2022/05/1112', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '928dd65ad1ab493b9228d4d64224af7904bd8e6e959d1beabe22ae5656614e87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1113, '2022-05-28 11:24:27', 'SALE/POS2022/05/1113', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ec43a60cc66fb1bbab00f436d9881147a9816a4184b3559b25d3c544d542fb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1114, '2022-05-28 23:59:46', 'SALE/POS2022/05/1114', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10e879d930d761fae38f41fd97988b5e8c29dc4a6bd2b34c2930865bb7ee7305', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1115, '2022-05-29 01:55:52', 'SALE/POS2022/05/1115', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4120264046eb555c187213fd74288a63522b3a0df630afbacf5d290f931d7548', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1116, '2022-05-29 06:40:04', 'SALE/POS2022/05/1116', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f85757eb2ffd2a4e2dd4517c7b7797960edb9f9d4963f0edcbc1011db435e86c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1117, '2022-05-29 06:51:37', 'SALE/POS2022/05/1117', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24bfbaac14befdb53db71201797dbd1d9a2eec886069efef69d1cc2f6fe7e53c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1118, '2022-05-29 06:54:47', 'SALE/POS2022/05/1118', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a92e0bfeea6df8ceb6ba5997e149a28e514819d933895b9172a748024a1284d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1119, '2022-05-29 06:55:38', 'SALE/POS2022/05/1119', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70269d3318687847063344c5e4d00ca665a622b22ecdac8003872728681494ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1120, '2022-05-29 07:28:29', 'SALE/POS2022/05/1120', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36a66b381848f2227bdaba9bb60c30c6cf4e97168fb770668fb96d418bbe8556', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1121, '2022-05-29 07:45:30', 'SALE/POS2022/05/1121', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b844440a0edab36032b9920bb2b4a29d08342d354cf81082184ac240a804afb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1122, '2022-05-29 07:51:16', 'SALE/POS2022/05/1122', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '444678596b34f182186c4df31470e36a87b854d67f4e7053570656dc8ac6c39c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1123, '2022-05-29 08:39:08', 'SALE/POS2022/05/1123', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0839efffbbfb9bc4dce85c85719c75284cd719a5bd870c7e66d77c5bc269e112', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1124, '2022-05-29 09:03:20', 'SALE/POS2022/05/1124', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc83412ded92ebe0cf63138606302314d63037f97172d24d4166aa35c4183252', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1125, '2022-05-29 09:17:48', 'SALE/POS2022/05/1125', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '882169b2a4fa5538ca6ac9cc7d1b276fa3452fc5313908856ccf20cf3ea0ce8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1126, '2022-05-29 09:43:37', 'SALE/POS2022/05/1126', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '812583fe600a4c58ceecfc660f5946737be2713b591be183298a65acd4cfa6ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1127, '2022-05-29 09:46:38', 'SALE/POS2022/05/1127', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f663a08f7fdfcfe866de6d650d63762993624fea8ce82ec3f4d32df938aa490', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1128, '2022-05-29 10:11:35', 'SALE/POS2022/05/1128', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0be055dd6bc6d41eb1e8e9f33e1d1be39310b2bce09ef375fda824116d3e269', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1129, '2022-05-30 01:51:22', 'SALE/POS2022/05/1129', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '052c194dd439098cc0baed2d862db5fa9bd6d06d568b1c4bad364e50477c3c35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1130, '2022-05-30 02:00:53', 'SALE/POS2022/05/1130', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f1793f9b424ae4ff1636e6cf2b0d33030fcb412f881ee35ad3c49698877dd71', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1131, '2022-05-30 02:12:50', 'SALE/POS2022/05/1131', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '919399722fd41ad506f6583065be54138213d23b8ca360b9073954471d99f530', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1132, '2022-05-30 04:01:15', 'SALE/POS2022/05/1132', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '180ee75b3163acb7dd004f16dd4c7ccf79cacdd4c77792a4e5e5132cf2ac76b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1133, '2022-05-30 05:10:53', 'SALE/POS2022/05/1133', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8305d35c78d6efaf031270fc192663f49e06e1af331680fec14c1d4b380e10ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1134, '2022-05-30 05:14:02', 'SALE/POS2022/05/1134', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd705ef8419d2bb844c598a849826c68abf48293fd05dd5f982852eec8dddb4ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1135, '2022-05-30 05:47:25', 'SALE/POS2022/05/1135', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8122ca64dd5b9f870da5c00c94e464323c2ad476c6c1a63750dc54e0206220d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1136, '2022-05-30 06:28:49', 'SALE/POS2022/05/1136', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db5735331e4a8a88f968144f32a356ef552066018d69fd97473be5f83b272b53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1137, '2022-05-30 07:16:34', 'SALE/POS2022/05/1137', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbe3a3042407e418a67373e0f755371e53f3874a2e6d6f8d2e38f62cccae55af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1138, '2022-05-30 09:19:41', 'SALE/POS2022/05/1138', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad707882a347e3d155f9c99244948fdb8383c99c3e8ea8a4ac65b0c38dd8d8d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1139, '2022-05-30 09:39:02', 'SALE/POS2022/05/1139', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '6750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e5ab598f489f23cd58a872e32b1e5aab320e3a7d0fd1ee61e654b1e1663ba01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1140, '2022-05-31 01:12:51', 'SALE/POS2022/05/1140', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d1a9e517d117a0649d53bbb5b8809557ff988af6751bccfa2cce5316f7f84fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1141, '2022-05-31 02:32:51', 'SALE/POS2022/05/1141', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a20fe47266b3d224047139ccdf78cf4d615f4c90fe4e920572b3b14eeea7aeb2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1142, '2022-05-31 03:37:36', 'SALE/POS2022/05/1142', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91ec9026e563c357360d2267cbe0f0fda4c2809870b2cf0859c39bdb8a743bea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1143, '2022-05-31 08:17:43', 'SALE/POS2022/05/1143', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c85b63154baba29f95d634db57c735d9243954ad4cbe0fd3ce0eb3abf3d3a7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1144, '2022-05-31 08:33:16', 'SALE/POS2022/05/1144', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bb0835470ca24b95794e66341d0bea4af37c4355e7ce409f599008abadeca5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1145, '2022-06-01 03:03:28', 'SALE/POS2022/05/1145', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19ce52fde686c36989195c46f9575bd9fda45dbbb59795ecfdf5d82c0b1bb60b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1146, '2022-06-01 03:04:48', 'SALE/POS2022/05/1146', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0081e7351a43e95823169a02adc78876f380a6f95b43040f50852629bc0e2ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1147, '2022-06-01 03:08:42', 'SALE/POS2022/05/1147', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec0267b630c9496d6880523f2ed90104233c5ef63be10715bc490c9e4d4dd109', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1148, '2022-06-01 03:10:08', 'SALE/POS2022/05/1148', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ce878eb6b472eb7d6d61403368a2fa5fcdf5dbb2a9cc72e61907237b77d76e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1149, '2022-06-01 03:21:52', 'SALE/POS2022/05/1149', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8600.0000', '0.0000', '430', '430.0000', '430.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '8170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aeda1d73ff0f40c9cb05b1a0383613f33ca2e18c9392b44e5fc2a804bbea1c14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1150, '2022-06-01 03:58:02', 'SALE/POS2022/05/1150', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '941715c007bf691ba5c001e5546a922d3eba32e6891cc3b2918558021da48994', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1151, '2022-06-01 04:00:09', 'SALE/POS2022/05/1151', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd3ebba05dcb848ebebcfe73a3d0196c3fa74854e4dff0b0ef4c6c3eab25192d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1152, '2022-06-01 04:45:45', 'SALE/POS2022/05/1152', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b19570428cc9f801917d4df0227c27708c1f3e71cdffe8a95d2f8ef4fb1999a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1153, '2022-06-01 04:50:19', 'SALE/POS2022/05/1153', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2db9c65c182bb441dacc4164a44184a47f684d3c5ffb1228456d46473933e586', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1154, '2022-06-01 05:06:16', 'SALE/POS2022/05/1154', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd69c016937b6d7ea4dc13d7e48bf7c20b9c3c23c46152c9350c1c2731d283ca9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1155, '2022-06-01 06:31:43', 'SALE/POS2022/05/1155', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23f8519ecb35189ac98d08ad15de1515a5a492aaa1a7c2a330b5a0b42bf18be0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1156, '2022-06-01 07:56:39', 'SALE/POS2022/05/1156', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7731345f7086c5565248f8baa9a7eba74a651b30112008296c21c6198ce9b435', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1157, '2022-06-01 08:29:47', 'SALE/POS2022/05/1157', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21ca63e5b8da0dd795438ec17820a27584a4594f13479b6f194df4ab7de03e7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1158, '2022-06-01 09:04:55', 'SALE/POS2022/05/1158', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6498da6fe608399be95c74e270ffdf4b67278e25fb65f2f59607c26f8725753', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1159, '2022-06-01 09:21:28', 'SALE/POS2022/05/1159', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adb308896255ea4f931a087ec79aa1769cc335f4ce0a41e048814a4aff35cdf0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1160, '2022-06-01 09:35:28', 'SALE/POS2022/05/1160', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5897d4ff690c31efd3bc9a24aa3a66fb4df48d2e6d824b5ff03bc5790f06f4ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1161, '2022-06-01 09:58:41', 'SALE/POS2022/05/1161', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1b893965bef566f6f5f0153c33d5f86a5b7b720d1ef2c4fe9c511efedcd3f7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1162, '2022-06-01 10:11:19', 'SALE/POS2022/05/1162', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6c75d05e95da37a051fb45dd8f74c2106cf5fe90d115a9e497b6ad766392750', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1163, '2022-06-02 05:07:57', 'SALE/POS2022/06/1163', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a6736c992bf1018b5aee4b656eb22912578cc669750aa7009569f9de5217a831', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1164, '2022-06-02 05:37:25', 'SALE/POS2022/06/1164', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfb72683f29eed8a7862e79974e5443389a2d72aa7e0ed23f4b3124b94c09f22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1165, '2022-06-02 06:13:06', 'SALE/POS2022/06/1165', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '841e744047f4eb4a88b5ddbd8eaae01b61e88584d473276992af1ccb79d9114f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1166, '2022-06-03 01:45:55', 'SALE/POS2022/06/1166', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '170bbbadb216e8d785c6b2a52e85d51842513fecf83c268e4309777cd1fbb78f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1167, '2022-06-03 04:11:37', 'SALE/POS2022/06/1167', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '590.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '590.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '590.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3715aaec1af367694c2cf63107b5f323a4967568089037cb9412dca2d6925272', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1168, '2022-06-03 07:39:15', 'SALE/POS2022/06/1168', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6d06defad7805ebe2558e50d3bace295a37cf2570563e80a8059a60700df827', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1169, '2022-06-03 08:04:32', 'SALE/POS2022/06/1169', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd18c4369d3c9f19980d57104902fdee9043e5d97634a837e3e26ebd8217c9f81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1170, '2022-06-03 08:58:02', 'SALE/POS2022/06/1170', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0eb01b56e9916071e0c6f256cdb4057b05081eb3893a09367035514886b0294f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1171, '2022-06-03 09:49:35', 'SALE/POS2022/06/1171', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c664560574aa7617c448ae1d358ec010e8538f97904894b3bf1d6ae0bbd89ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1181, '2022-06-04 09:56:22', 'SALE/POS2022/06/1181', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b3a848b2915b93a98e3a4d0a92033101acfad3a0f51f0cb60f424794198988f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1180, '2022-06-04 09:55:17', 'SALE/POS2022/06/1180', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '280e2560ba24987e9cea3549c05534a4f3e426ea7891ffcbbfd606c2571ba9fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1179, '2022-06-04 09:54:36', 'SALE/POS2022/06/1179', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '480.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '480.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '480.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48aa15e6d8b97fe2400d322839e2eebbd7da16093e6b2423b446a10609f95c53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1178, '2022-06-04 09:53:19', 'SALE/POS2022/06/1178', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3700bfb362df3597768ba26358287cf4c850b9e8cf616066c217fb898279d9ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1177, '2022-06-04 09:51:05', 'SALE/POS2022/06/1177', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '459166cd1bec033ade55ca1015faa764344ee4232fb5ab961a5f9b4cbeedd58d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1182, '2022-06-04 09:57:16', 'SALE/POS2022/06/1182', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '680.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '680.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '680.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46dc86bf533e4e8157fd9fbdf3b752a757ad99fada2f138c0fb3ad0ffab1683f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1183, '2022-06-04 09:58:38', 'SALE/POS2022/06/1183', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88741e0195876bfc7d48641c3cb8657a8f7374a34eff2d24f512122b1b135653', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1184, '2022-06-04 09:59:51', 'SALE/POS2022/06/1184', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72cb21e48377519db91a2f29599d4a35766331baac5a5683a095fb34b39b4a5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1185, '2022-06-04 10:00:46', 'SALE/POS2022/06/1185', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad99b67b8efd0d5897b1d2fbaad1a590b664d5bbd861f9db5921bdf1f7c2eaa6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1186, '2022-06-04 10:01:43', 'SALE/POS2022/06/1186', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95e84508293c432b445b0fafe0a6867cc517b3cb9c10e5d8e5dc9cbfc7c73c55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1187, '2022-06-04 10:02:51', 'SALE/POS2022/06/1187', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd135a20c71d1b9dd33fdc312e1c2d55f832820ece91b968ccc92120b70b8ce4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1188, '2022-06-04 10:05:03', 'SALE/POS2022/06/1188', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4434a3a76b109fc579801d4c5561f0149f217c68c7458abb197c911a4bc3bf4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1189, '2022-06-04 10:05:31', 'SALE/POS2022/06/1189', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd74837b4d3767e326650428c4360d807db38a32ed7a92f87a923165401f0c03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1190, '2022-06-04 10:07:35', 'SALE/POS2022/06/1190', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8b6a21de4be414580bec740fa25a1d6175761c609ca02a5947f7f6088cef939', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1191, '2022-06-04 10:08:08', 'SALE/POS2022/06/1191', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6063fba6a08c061930cc7c465877def4f2f9ccab6af007737d23245948eabfd3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1192, '2022-06-04 10:08:36', 'SALE/POS2022/06/1192', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b77e934fec224add8ce4a206ee062b08f9967c9f4df77434281f45a37a4d0ebc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1193, '2022-06-04 10:09:11', 'SALE/POS2022/06/1193', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf909916fc68f2567d2a23e581ae53271525b5a0f458c5765d034f5272f41f80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1194, '2022-06-04 10:10:02', 'SALE/POS2022/06/1194', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91c524d61ddb9336a84f37d1c923ee46a3032550971ced19ad4b313c701e6742', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1195, '2022-06-04 10:11:32', 'SALE/POS2022/06/1195', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26455f15aa5f0a8f1471b96dc392bc20427fcf13275d59df4acd39d382b7dbfb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1196, '2022-06-04 10:18:20', 'SALE/POS2022/06/1196', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89692c6ff50a1e3ff7724193323ad9e37708ab15660ff458731aa8ddd1ce1e93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1197, '2022-06-04 10:18:47', 'SALE/POS2022/06/1197', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d2156f9271b5754b0d5a18b422b11077fad59a9f06dd4efd2d7dba0e9fa0300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1198, '2022-06-04 10:21:08', 'SALE/POS2022/06/1198', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51f55bce871566b8b8d06198d0f834b62eb12feff368d1b4882d4ecbc7fb7646', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1199, '2022-06-04 10:53:03', 'SALE/POS2022/06/1199', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ce6dae2f956fac3d53fc16e6ce52c114ca20734c94c480aa7803694677639b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1200, '2022-06-04 10:56:52', 'SALE/POS2022/06/1200', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5bfc755a68cca4249bf5fb65cddd93fc7d887a253640cc562eb9778545ff3a04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1201, '2022-06-04 10:58:45', 'SALE/POS2022/06/1201', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e1dcc77ce5e281d7798a74bf3966234c7c9fd795b728d75c7852650ba9a1084', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1202, '2022-06-05 03:02:35', 'SALE/POS2022/06/1202', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4ed29aaa51a562a27c49c007d86f3e5533e94b6dea6e61274915858ade2e5e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1203, '2022-06-05 03:55:23', 'SALE/POS2022/06/1203', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fe9b001585383e770dc6ade086efb55db6cdd8fdbe9830b9809f044550b24ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1204, '2022-06-05 04:13:23', 'SALE/POS2022/06/1204', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40042910c7df1b12c214142cfd81183e2c3a04902fbdac9f667c22ccb0ee80e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1205, '2022-06-05 04:29:48', 'SALE/POS2022/06/1205', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20d2fce29fc6904c143cc536bbe672308b4196b9919099e9e225f46a573b7cb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1206, '2022-06-05 07:51:15', 'SALE/POS2022/06/1206', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3bd98a53d52234347729be865252425f4ace2baca6459e65b64c46af45c748db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1207, '2022-06-05 08:03:58', 'SALE/POS2022/06/1207', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a4d9730788ae2782e3ed803fa6aca12fb819c86bb8b5d090569833943503683', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1208, '2022-06-05 08:35:40', 'SALE/POS2022/06/1208', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e11432b6814e48535014065c8e498fa84026463ae5534b48a45fc6398d093092', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1209, '2022-06-05 08:47:56', 'SALE/POS2022/06/1209', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18bbab8513975d51095d9b81c9da975e08c1decf6b0a1390b8e9dc3375a6b835', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1210, '2022-06-05 09:05:13', 'SALE/POS2022/06/1210', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b71dda33be9f6dc86250ecbd8f600e427ce3e13620574c0e2eb23862d5955d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1211, '2022-06-05 10:15:45', 'SALE/POS2022/06/1211', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '825b5086fa933f9ec86479477975fc8086d0180d35f30a272cd3d38447046182', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1212, '2022-06-05 10:42:28', 'SALE/POS2022/06/1212', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '564fc94fbdbd6e0f675175c9d03dd649324d59ca732550f18069a610e22d75b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1213, '2022-06-06 00:50:02', 'SALE/POS2022/06/1213', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27a9c0deb2305cabb37193280aca96aa2738f16286895c40e304b90b2734a52d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1214, '2022-06-06 04:01:27', 'SALE/POS2022/06/1214', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2789dba001b314b63784347a68930ba53265b2e4905f36b58ab32b54cbe6340c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1215, '2022-06-06 05:21:49', 'SALE/POS2022/06/1215', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5877c3c44359e203703d14b95bb8e1df8461381d9b46ad163518eacb5b9e6489', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1216, '2022-06-06 05:52:15', 'SALE/POS2022/06/1216', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdbb0ac018ce8599d888aa2d7015ba3807dc43e12b010f0cbb85f8b0ef0bef81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1217, '2022-06-06 06:00:51', 'SALE/POS2022/06/1217', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a874b840d874f226d06f253e8b49e42dc6ebb5430a0442fe4b76023eb419c988', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1218, '2022-06-06 07:16:32', 'SALE/POS2022/06/1218', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ce733b17962f402d76f1faf49ad4608b3f04519395023b0f687a714ef8f1bbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1219, '2022-06-06 07:50:08', 'SALE/POS2022/06/1219', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41f34a34b1f55d00a2ee01c6a14710209272852837acdec7b09aa27c2055275d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1220, '2022-06-06 08:21:20', 'SALE/POS2022/06/1220', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d6a6692e98bead7565ec459e849bb4d940153076ae1848589b220334b63ce47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1221, '2022-06-06 09:20:54', 'SALE/POS2022/06/1221', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a065f07e400f724a5c977cfde5c4cdc53c824627eac0db6b174f9c9596c106e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1222, '2022-06-06 09:32:53', 'SALE/POS2022/06/1222', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcb3cbd32895949184df1d5d763ba8960c23937587c3cd9ba4d8d4b62917946a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1224, '2022-06-07 02:04:36', 'SALE/POS2022/06/1224', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfa2c008e7529dcd456926515cda4d8a6000f3aa642f6b1ef7386bf7d060961f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1225, '2022-06-07 03:17:02', 'SALE/POS2022/06/1225', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01d3132deceaa19bcbcf1e403bbcc55772f52bcf37b9e086c112c79e5c15f4a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1226, '2022-06-07 06:31:57', 'SALE/POS2022/06/1226', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '998ebf2466458a61ef3b351f222ffcb87201ca5b5e884544e6e4676286b76687', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1227, '2022-06-07 07:17:46', 'SALE/POS2022/06/1227', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c42bf4d5de52142d5aa797326a123ea0c2e129ad5f17c3ee0f20e398b6dcc423', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1228, '2022-06-08 01:51:20', 'SALE/POS2022/06/1228', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15070ad7244cd1f0b71354923effb5e8d47264b94f07d0840fa7d992cd6a2dde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1229, '2022-06-08 02:59:09', 'SALE/POS2022/06/1229', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '7750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a717ffe1c929601d8bf6d8b6549aecc9ba3d5be433bf7d103840db7dce57d57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1230, '2022-06-08 04:10:16', 'SALE/POS2022/06/1230', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11e61707fcf0172ac36fd166619ddc8beaf79f67106d85258f32716d0073ab22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1231, '2022-06-08 04:15:27', 'SALE/POS2022/06/1231', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f940ea84b004fd23e0a5df49007e1ffeaf869043443135dd2b2d3acba5d2329', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1232, '2022-06-08 06:28:04', 'SALE/POS2022/06/1232', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1880.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1880.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1880.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '941b6815bf86a431c2191f7f79d398c7b038494540cae8aea9f9c48dcf597d76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1233, '2022-06-08 06:44:35', 'SALE/POS2022/06/1233', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c00839c2c6898ef6a755a17963d504e0c5a7cc19262d9b0d2127283186e33835', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1234, '2022-06-08 08:21:24', 'SALE/POS2022/06/1234', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ff85668d139dda0273cf3cfa6ab043145a35b154b3d9811c7fbe6f897985c8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1235, '2022-06-08 08:42:54', 'SALE/POS2022/06/1235', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5689f048151f926ac85708e61e06e7da4ac8ca570d584db1159ee10c446adf2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1236, '2022-06-08 08:52:15', 'SALE/POS2022/06/1236', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94bc0d17162ff398e7e60327b8dc55099e0a9445ad2a54a412bf434cfdf76313', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1237, '2022-06-08 08:58:58', 'SALE/POS2022/06/1237', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83b7c03cec76cf65c0b9857834ee560476284150636d80ddb2259e27a060795f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1238, '2022-06-08 09:14:02', 'SALE/POS2022/06/1238', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3fe993f62062c3393ad8237bf12955c92f8e4fc574d8b019d090d71d3e03b4d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1239, '2022-06-08 09:14:19', 'SALE/POS2022/06/1239', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '18286a8f91cc899f8361cb617d2da28f2ca6107ae84e7960db2c4e451587c507', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1240, '2022-06-08 09:49:34', 'SALE/POS2022/06/1240', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1a88ad0b18c15a10265744ee74ab947fef3842a929130e356e66727e6772251', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1241, '2022-06-08 09:54:25', 'SALE/POS2022/06/1241', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e35002bae4e3544ab12706f049e88492ebab26d60177eb70aa009c54c72d1c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1242, '2022-06-09 04:43:44', 'SALE/POS2022/06/1242', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e2e8984df2e1053ffd05793d2fb819268f318b043bfd15bd971181858c6613d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1243, '2022-06-09 06:16:46', 'SALE/POS2022/06/1243', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3786bc9320c31600c6b459636c92bf0113277f9223aaa9e4399701aa38493651', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1244, '2022-06-09 06:25:42', 'SALE/POS2022/06/1244', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bee4865b9fb524c076ecbc53b2aee39c6a4742b3e5df682941e704c39aa35738', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1245, '2022-06-09 07:12:25', 'SALE/POS2022/06/1245', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be8a57020aaed68b285acdeb0705ab64c8438caa71ee1575e71f071d557c555d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1246, '2022-06-09 08:46:41', 'SALE/POS2022/06/1246', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a927fc110f4c2a49dcd3072e69e550ba91b05e1a852cab1d47eeef7d3487b8a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1247, '2022-06-09 08:50:41', 'SALE/POS2022/06/1247', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b0eec9dc4910fd87a56b3d3c7ddb35690295d71fa4f10cb5fbe467bbb53cbbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1248, '2022-06-09 09:26:16', 'SALE/POS2022/06/1248', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63b3073f1ce2d92f9c7322fb6d2bbb388c15224a01f675021278c8bd165aa156', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1249, '2022-06-09 09:26:36', 'SALE/POS2022/06/1249', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b8ad005c7a60122a8f5df23a71781599b2fcb972e877e4e6e52ed50f5771fc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1250, '2022-06-10 01:57:41', 'SALE/POS2022/06/1250', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a455a7da42e9eaf9c374c22f83309128786d2f99c61c380aef3776f11e95a16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1251, '2022-06-10 03:02:20', 'SALE/POS2022/06/1251', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed707ab682759b2b15f5ac542d97a8196c9b922f61f32fee1990aece0623d15d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1252, '2022-06-10 04:42:48', 'SALE/POS2022/06/1252', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '979dfbcf6bf10d350429689763e8664fe6cc0961ac4b79bc76c34ec57c989498', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1253, '2022-06-10 05:24:32', 'SALE/POS2022/06/1253', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd73dea688db483b4f4bb17731ac8d5d58a6a7d679d06dd00aac100a34f5c477', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1254, '2022-06-10 09:18:31', 'SALE/POS2022/06/1254', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6edb1a5ca46a2b9020008912e80a727869e4d089b61f89900c00b814e4cd920', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1255, '2022-06-10 10:04:21', 'SALE/POS2022/06/1255', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e0e01a0553fa27ad2ecb534c84e5be9855430efd20e0d836710b6457d64da68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1256, '2022-06-10 10:15:54', 'SALE/POS2022/06/1256', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '16500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '16500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '16500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e90d7de681444bfa3066c79c39eb4babfd3cd9e80953e1db9c8f775f881d07f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1257, '2022-06-10 10:26:53', 'SALE/POS2022/06/1257', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44213baa06c593b96b948043704dddfab2578b5bfe3a05918e60e351e88c8652', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1258, '2022-06-10 10:32:47', 'SALE/POS2022/06/1258', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6984165ecddffc2a2dc22ade382e9b61bc0281d120d1429696a608cabf76027', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1259, '2022-06-11 00:20:42', 'SALE/POS2022/06/1259', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3670.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3670.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '3670.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43e157b946ba0de578e37a1ea1df6076de063b10541fe0cddc069ca99c645295', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1260, '2022-06-11 00:39:37', 'SALE/POS2022/06/1260', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4773c3e14a60805b71e25c989ed576b3153b37822393117b7f31513b446c28cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1261, '2022-06-11 02:24:48', 'SALE/POS2022/06/1261', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '03ea5b00c6df322ca5951f113cfd57e69828b28dd0d33e91cf2128eda42d91e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1262, '2022-06-11 02:49:13', 'SALE/POS2022/06/1262', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d12cfd2bd4f6e4e23c80de59ff07b11808415d99a3d81a8e4c5253b2a79652b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1263, '2022-06-11 03:30:58', 'SALE/POS2022/06/1263', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '11850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 42, 1, '11850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef82b93582c96254ab92a17c2bd859e81f40bd5d74f7ff9760df2a6329732bdd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1264, '2022-06-11 04:20:47', 'SALE/POS2022/06/1264', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4690.0000', '0.0000', '350', '350.0000', '350.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '4340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc3f2bea35462d0b303b16eb8f4ff2ba411185468d5c04176f61914c928fd833', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1265, '2022-06-11 04:44:01', 'SALE/POS2022/06/1265', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6aa32fbc804ae621ad881ad87fa7a90e48e87c11cac311e72a183516ffdc1966', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1266, '2022-06-11 05:08:01', 'SALE/POS2022/06/1266', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e0d7cd6ff60e77d523de8c7896d40172bdbaa4c97142c8f62d9d28b9d12b82b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1267, '2022-06-11 06:12:23', 'SALE/POS2022/06/1267', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdda330f4a446b7f9c134f708083cb6ea3d0744dccc64a385ea32fbe00ebaa1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1268, '2022-06-11 06:40:53', 'SALE/POS2022/06/1268', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc8a49756f65e32b8761db556fa3d2b9ce0045876d6746af71bfff3372cac504', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1269, '2022-06-11 06:41:27', 'SALE/POS2022/06/1269', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22ea903cf0abc11b4d2e6f477daa3ec04fdf6b74a497e19471615a62ee09600b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1270, '2022-06-11 06:44:52', 'SALE/POS2022/06/1270', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd39e525e61317292bac87690dc7cae606c7b3af5889a6bba816c8a52a6dc2fda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1271, '2022-06-11 06:48:42', 'SALE/POS2022/06/1271', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71186987fbfbbf961fc96ccb2105e7423e9789155c9a7ff59d7d8e57e6f1312c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1272, '2022-06-11 08:27:40', 'SALE/POS2022/06/1272', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6b10733f864b911245c74cddd87bc755379301f2284c0e8cdac7d4a8d988307', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1273, '2022-06-11 08:58:25', 'SALE/POS2022/06/1273', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a60cec22602472f64220ba1f23b7e614b4874e0e9c3bdf8acf5a21dce76e6c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1274, '2022-06-11 09:00:36', 'SALE/POS2022/06/1274', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '261e41e9d7b7efc3a60364fb2b77c1faf57c077f8556e2a3514fc05b88e7f42d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1275, '2022-06-11 09:42:26', 'SALE/POS2022/06/1275', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ca541090542b30f86c5162e2a98b0b079dda9cae714f461ca1a84c7d3c59d5f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1276, '2022-06-11 09:43:13', 'SALE/POS2022/06/1276', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be9f0db4ca47cfbc5afbd8477e924d92b37cda136eb1c59c45b5bfe2ba8424d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1277, '2022-06-11 09:46:32', 'SALE/POS2022/06/1277', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0859d2642902ed3686e698fb3f89f29f7107d1a27db7f73b2e4abd348aea29e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1278, '2022-06-11 10:20:59', 'SALE/POS2022/06/1278', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15d8cdccd45e15f3f6863812af2c15d5516467e78335c5ec1f3951f2d4b05139', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1279, '2022-06-11 11:20:09', 'SALE/POS2022/06/1279', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0250450f81df69700319ae800f0002c60ea731539f90b1ea87268e967586174e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1280, '2022-06-12 00:51:47', 'SALE/POS2022/06/1280', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d259e503df3dca0a4366d31837045d65c5bd93d46f33bdbe3351f1978679e86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1281, '2022-06-12 02:18:17', 'SALE/POS2022/06/1281', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3618366863e1f5ca408195e10721b2c85d0a4e6a9dc0fe0102f81cc177cb43b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1282, '2022-06-12 03:06:31', 'SALE/POS2022/06/1282', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a5bdebb887ebcb88dd005f94855641572dea44d81bf8d92e81b0e8138914afd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1283, '2022-06-12 05:03:33', 'SALE/POS2022/06/1283', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b00f51ca5d1be2f15c819700626f2e836ac43e715f0426d509e89b70db54e1e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1284, '2022-06-12 05:40:21', 'SALE/POS2022/06/1284', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '731ca01c6a3ff3d6b583134a29c68d07bc82979c49dba09dbbb93123d9fc5b1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1285, '2022-06-12 05:48:26', 'SALE/POS2022/06/1285', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9e492116e5d498136c7e534f77332cebd0f3d868ce6333f658ce72343a80520', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1286, '2022-06-12 06:46:34', 'SALE/POS2022/06/1286', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a1debc2dcba6cc028e1224520403e30c5e20764beda629fdde33d8b13f4504c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1287, '2022-06-12 06:49:20', 'SALE/POS2022/06/1287', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '025b7bbf7c8d658a2bb549d1a2a16ff41e6cd96797743226b2a4cdf073743146', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1288, '2022-06-12 07:55:52', 'SALE/POS2022/06/1288', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f35257b83f819af5d9efbb4d8a27be3b8aed5cd34218696f6e003d29419f6e63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1289, '2022-06-12 08:02:10', 'SALE/POS2022/06/1289', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63279ba155cd2ec323e4de46138af93f218681a50e9061deb903d44ce87edfad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1290, '2022-06-12 08:58:05', 'SALE/POS2022/06/1290', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b4407b3845cf73bd79a7a499458bd304c1b6771b5c2bdce9d9201759a7e9f92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1291, '2022-06-12 09:07:36', 'SALE/POS2022/06/1291', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eeea3b6d2140df1a2d70834a3c451d95322994c37637ce734947527f8c3f9e7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1292, '2022-06-12 09:15:59', 'SALE/POS2022/06/1292', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b7f6aeb2a1f6eac23c28363fb2c39afb4a6ec85162c8f13ad72a6fbabbb754b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1293, '2022-06-12 09:46:31', 'SALE/POS2022/06/1293', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a73a07e44dc45bdf7a10f8a091a8a84153f2d9cf6ea2d2eb0807f5bc6133200a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1294, '2022-06-12 09:57:14', 'SALE/POS2022/06/1294', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99593bfb26cc637084bd0d0ffdb0b84410d84c7b83c9f0fa885fa896f4cf18c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1295, '2022-06-12 10:24:28', 'SALE/POS2022/06/1295', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b50b9ea09988735c02b1975ed02c13b14d1e2b2e193e7bd73b8db1f765b185a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1296, '2022-06-12 10:47:39', 'SALE/POS2022/06/1296', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '093dae73bb80f739217c1fb532b2db40126ca48c969c8ba62b82ce6282750f86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1297, '2022-06-12 10:54:48', 'SALE/POS2022/06/1297', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12c1c69c4d852a939778845ab1c855002a4bc9cf884b4b2c21fe17e4eaca092d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1298, '2022-06-13 00:34:03', 'SALE/POS2022/06/1298', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42dc63235caaac475e323c19be366c8437a1cbd5a91e4a4e1e98169c010c8180', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1299, '2022-06-13 02:46:38', 'SALE/POS2022/06/1299', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '249622c0eca59362e814962b263e318d4da924630f42da45cca90e46a8cb35d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1300, '2022-06-13 04:04:28', 'SALE/POS2022/06/1300', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28a3db6a229a819f25f98ae880ccfdc74a8ee962fa19e62f08432fbbe71b3f34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1301, '2022-06-13 04:17:19', 'SALE/POS2022/06/1301', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5aa83c0d12dfa479741d0b4950aed738941fd5c3b3113fed155daafcffbd89ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1302, '2022-06-13 04:41:21', 'SALE/POS2022/06/1302', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c79f88afe248b58ae67850733ae6d4f89b02f9d83ff7eaef54f0a02ba996cf2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1303, '2022-06-13 04:52:13', 'SALE/POS2022/06/1303', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d1a93f5586b81c747080e88f248df64ca78f5ce1502ab8ee7835ea5b4449d1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1304, '2022-06-13 06:07:46', 'SALE/POS2022/06/1304', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd10f7aac159cd4ab5ee400426841930086786dfb8ea647dd5430970b893a0b79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1305, '2022-06-13 08:15:08', 'SALE/POS2022/06/1305', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a58c5f0cb66a66e869f3cda78bf0c938ddd79eff784382e6ead25c9c5bc4613a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1306, '2022-06-13 09:13:11', 'SALE/POS2022/06/1306', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35e262681bc0ab228236ad367e917a11dafff83ee337782ad079677140b62b1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1307, '2022-06-13 09:59:39', 'SALE/POS2022/06/1307', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0623faa4408bb4a49d97abd82a46353df63bf8a651719fe54ab7da94eeb38b8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1308, '2022-06-13 10:09:39', 'SALE/POS2022/06/1308', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32336f2033502d6893097b29fd68683869d9a796565fd3a2a5fedefb1359efe6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1309, '2022-06-14 01:08:05', 'SALE/POS2022/06/1309', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cfb563174d27d88db14e72cc32fc5387dc64fe6e6616aed331661382ead4d3b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1310, '2022-06-14 01:38:12', 'SALE/POS2022/06/1310', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ca57b7679dbe5d8abc77c887640864bc818d0e735a5019bddfd4102b217dfe2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1311, '2022-06-14 06:18:10', 'SALE/POS2022/06/1311', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc4e9dd3b6ca6391a6636bc0659c30239d4cbce75dfc843c80683d06414241a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1312, '2022-06-14 08:18:22', 'SALE/POS2022/06/1312', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eae62213f08fc4625b3630091cc574b6a8edec1df7c182f42ec53914955fa2d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1313, '2022-06-14 08:41:08', 'SALE/POS2022/06/1313', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '322087e2dcb7eab4f5c7cc5d917b92d2e5baf16c60ea120667e743fc21844d25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1314, '2022-06-14 08:57:47', 'SALE/POS2022/06/1314', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aba433be366c8c2ea82652d886bbb826e4915dd13036dd86dae035d79b4f29fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1315, '2022-06-14 09:19:17', 'SALE/POS2022/06/1315', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef3161b6cd148ef88ca083fb582f6ce097e8ef02cfe0ffc15afd42004ffc5f3f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1316, '2022-06-15 02:24:12', 'SALE/POS2022/06/1316', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc2fdc67aa009f63c1c70cc8465fa833f3f74c1818b735b493371b00dcff8f50', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1317, '2022-06-15 07:37:29', 'SALE/POS2022/06/1317', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e240442bc5bc4d3c54062f85bcc3b5c139b6591281ffc983115cc6b5258db247', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1318, '2022-06-15 08:11:00', 'SALE/POS2022/06/1318', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0fabd9fd10572e09ebdb91eb0168b2c6a5cf26555b7aff8eac52c09c42ce0b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1319, '2022-06-15 09:30:19', 'SALE/POS2022/06/1319', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5df5852303fe52eebd06c601fbf9c8296550e6e8ca8c5dcc4b6cd6fa2c1cfb4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1320, '2022-06-16 02:36:18', 'SALE/POS2022/06/1320', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f0c65d1b91d16a4a843b9a1eb522b657071cb9737f6eb70f79d6307b105bc9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1321, '2022-06-16 04:07:55', 'SALE/POS2022/06/1321', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77511907240c92d65e65f85120bac530abaed0b51bda8f927d3fa98c9ffafd4d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1322, '2022-06-17 03:24:27', 'SALE/POS2022/06/1322', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '1290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5ac513c89a5b017bd0ee5ccd4ba3c860fdd4ca54f2a6d3dbe30e97070237c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1323, '2022-06-17 05:30:45', 'SALE/POS2022/06/1323', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a34aacbe4b83de62a9ba4ca105a38c6961e61b34a60dc41b30fc3ae32ef4c93c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1324, '2022-06-17 06:00:45', 'SALE/POS2022/06/1324', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83bea62134e153c588b9a5c1cd38d499ea888249609a00e12c2e020215c5e223', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1325, '2022-06-17 07:53:55', 'SALE/POS2022/06/1325', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'defa091cde3ac3a29b09369684a1410f75ae7f65f7bd703dd8a6159927a66312', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1326, '2022-06-17 09:14:58', 'SALE/POS2022/06/1326', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a5ea01b7d6213afc98fcb7c8998ea2d68e19bc62bd95c70c51cd9ce9ee039c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1327, '2022-06-18 00:00:31', 'SALE/POS2022/06/1327', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bc390f954f0d5cf1f9b3f5533c6b1edc5d16a5e1e4c2794de226737e00329b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1328, '2022-06-18 01:14:28', 'SALE/POS2022/06/1328', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b0af0c8a111921365b2ea9ff6ea4be6f216628489c8827a861f253be965d3892', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1329, '2022-06-18 01:31:42', 'SALE/POS2022/06/1329', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28810c6b03d3c0841a3fd87b0f224b42667e62895cb165ce6e5bb8a2498ec84c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1330, '2022-06-18 01:49:24', 'SALE/POS2022/06/1330', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25bd12800cfebed8351c70f03735ec364f895c63920211e92ca78ba8c4ed9e73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1331, '2022-06-18 03:11:11', 'SALE/POS2022/06/1331', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '6000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b065d96a65c3f58eb7872844d2adee9b35d92dcfb789f90ce648069d405f0290', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1332, '2022-06-18 03:36:39', 'SALE/POS2022/06/1332', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ca8c82a40e99e2a31aaf2ea5b06b05b197dabf39ddfebd89f0cd63c0a474cbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1333, '2022-06-18 03:39:45', 'SALE/POS2022/06/1333', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27c8c8cf21e2bf9803f96cec2e152b9427fbcd91d5d0a31b7cdedcd88cd7925a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1334, '2022-06-18 06:18:08', 'SALE/POS2022/06/1334', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f3daf122e44b400a2cf21bcbe4797a1849b66b7f14fa7fed546a641d6c68385', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1335, '2022-06-18 06:38:13', 'SALE/POS2022/06/1335', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a626bb913e6045ce7b0f8b54b70f14586581b647de025495675c3aabe588047', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1336, '2022-06-18 07:16:45', 'SALE/POS2022/06/1336', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9bf5d939ea50f301b8d659c908b41218d75f237945f47414d867f83ed08dbec1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1337, '2022-06-18 07:39:29', 'SALE/POS2022/06/1337', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc38d5bcafbb96502ebed0fa8f45cd8b5bed4e6d6299afa620db0dee012c4abb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1338, '2022-06-18 07:42:29', 'SALE/POS2022/06/1338', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e6b45f90e72842f31afd4b63f1fe3ca1ece30171b7d5ba83903365eb8c30df9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1339, '2022-06-18 08:12:14', 'SALE/POS2022/06/1339', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e71a3ab60d7d4339957cbe1556580eee656307d0ca28deaa1e072e0b52bf2c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1340, '2022-06-18 08:50:52', 'SALE/POS2022/06/1340', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60676b09c93597b993a8f2882f70652280408f4c122da36c0c239dde2c17405a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1341, '2022-06-18 09:12:40', 'SALE/POS2022/06/1341', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '627b1ca7b86468fd4614e270de40944fa77d2e820a65bbca3c3843ec0ef4dc08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1342, '2022-06-19 00:30:46', 'SALE/POS2022/06/1342', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fc2cf38cf1379f65746e28f6a75ad9f36c505a54425f9c0f1858cec8c0216b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1343, '2022-06-19 01:33:08', 'SALE/POS2022/06/1343', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd59499e3f81c24bb3a1c8267716ccfa36fb9f162e42320f1196cf48ab5c4c458', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1344, '2022-06-19 01:59:14', 'SALE/POS2022/06/1344', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85ad63a30a60da928fa3f74420270af45ddc2d55496464d273f6d61b3b4aeaf2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1345, '2022-06-19 04:12:01', 'SALE/POS2022/06/1345', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ff955d8a6a0dea6ec231dab651df3afd3c466cc19d4665f42b0efa2946546e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1346, '2022-06-19 07:38:33', 'SALE/POS2022/06/1346', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '870.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '870.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '870.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b545e3f19278273a132f352f55749622cc7652aa3a5e599b5db2e54bcc5d825c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1347, '2022-06-19 07:42:35', 'SALE/POS2022/06/1347', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7eecbc2f1b8cbbeeb138e74986537bc006ea9d0218fa7b176ccfa0c3cef2ca55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1348, '2022-06-19 07:56:52', 'SALE/POS2022/06/1348', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd05a496da8cd92408424a10a33c2b847773a3432537ebfadd20e98b9b8b12230', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1349, '2022-06-19 08:12:52', 'SALE/POS2022/06/1349', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37f0b0d2b7dae61f1cfd701f0cdc4cbd52d152e891af10f84207aa9ab3a97ed5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1350, '2022-06-19 08:49:56', 'SALE/POS2022/06/1350', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'adfaaa3105ad21ba3c9ffc7a0062aed4f29ca3611144f496bee28a1e86ce9468', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1351, '2022-06-19 08:55:12', 'SALE/POS2022/06/1351', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff14b48283423a872dbbdeb3b87664e4997aff0e9fa1cb7d50034a29c9a0acaf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1352, '2022-06-19 09:10:22', 'SALE/POS2022/06/1352', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '395050d190713118de3aebeddb8e90e93fde2806f1b1577eb9890038f1df6d8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1353, '2022-06-19 09:22:07', 'SALE/POS2022/06/1353', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed2781b7dd58bdf11662dcbe486f78eb3ab25d8c16cc96f1bead35636f9fd027', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1354, '2022-06-19 09:23:21', 'SALE/POS2022/06/1354', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a34cf164c2d2635537a9b7b6bddba3daff5b6aca6fe0352809aaf025627e744', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1355, '2022-06-19 09:33:40', 'SALE/POS2022/06/1355', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34bbe0f96e0e3c095fd63f00ec7cdbab0a7033f09d9c5b8e51246489b73c4173', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1356, '2022-06-19 10:13:47', 'SALE/POS2022/06/1356', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd52a77da16fd9b449c8f7729d1fcdbaf1051c628993064ded1b77fc9207da750', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1357, '2022-06-19 10:22:54', 'SALE/POS2022/06/1357', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5dc10e9db2ec2d8bdab524f803dff7b56db054714598de4d556aee9bd64b1beb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1358, '2022-06-19 10:24:59', 'SALE/POS2022/06/1358', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c8944a53569a0b53fb31639fdd72104e42ec571104fddfcaef20b409595a7eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1359, '2022-06-19 10:31:18', 'SALE/POS2022/06/1359', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8fc1b9afa218e3ab007a91cc443dc8b653d7388e30ca4385b969e7eb0d03a64a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1360, '2022-06-20 01:54:39', 'SALE/POS2022/06/1360', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a66d5610065741f8439989ba7fb046b9da189a4c70833cdb683dd84b62f1d9c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1361, '2022-06-20 05:23:36', 'SALE/POS2022/06/1361', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '197e69e0f007cd6d957630a0585662c7a28650caa5d2ecc87fb4755a0f04e75e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1362, '2022-06-20 05:34:51', 'SALE/POS2022/06/1362', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4a7a0857a5eb65b358191b7aba17f412b5f5603c0546671d71daff0e4b4faa2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1363, '2022-06-20 06:57:30', 'SALE/POS2022/06/1363', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc75b2ac2c6dc496f1157fc1d316bc57546f1ecca99ed798329cbecbe7d132d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1364, '2022-06-20 08:45:33', 'SALE/POS2022/06/1364', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdd6efdcfc2eb2552bf471e8cb490fdee355df66f54f42d8ed7bf8eebc97a29b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1365, '2022-06-20 10:10:20', 'SALE/POS2022/06/1365', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f6f695cb3daaa5bdc9e9d6fa3a525fea42cdbb7b9fd96e5590a218656c24085', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1366, '2022-06-21 01:59:45', 'SALE/POS2022/06/1366', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5506495f2752e58275a8cb2e4a2fb725c8097337f8a512c122ee31d3fe5fa8c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1367, '2022-06-21 02:25:58', 'SALE/POS2022/06/1367', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2f99bd3ada2a83da01a801be99acdc20e9f6314003edfef240496e2d7eb6fb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1368, '2022-06-21 02:49:57', 'SALE/POS2022/06/1368', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69c89b1dac1e8287844bb3cb9ec86b0106a890f288c8425fb6fe3584143a97b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1369, '2022-06-21 08:22:38', 'SALE/POS2022/06/1369', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '690fc35f83717f3f4325f7e4d43400310a0f75791c5bbb8b915da0083a41f4fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1370, '2022-06-21 08:35:31', 'SALE/POS2022/06/1370', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd174a1ea19b9c16f7380264769faa1ea060e125e10e8afd408620d1aaac31cb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1371, '2022-06-21 08:53:13', 'SALE/POS2022/06/1371', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08c14b7160300944c425baf0c720acdff924026f6f9aa8add013a808b0d8dff5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1372, '2022-06-21 09:19:06', 'SALE/POS2022/06/1372', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b49773f4eac0a6b542fafd60cf541437aac92e400337fa6f17bf10299d62d0ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1373, '2022-06-22 02:34:46', 'SALE/POS2022/06/1373', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ee85391bf725274d20b5b791be48e713583c223f1b8d4281560aa85ac680814', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1374, '2022-06-22 02:52:37', 'SALE/POS2022/06/1374', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c20d6b0b06d0b9e6e2b040d3d7f7229f0bccff46fd313fc12dd6253485a88642', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1375, '2022-06-22 03:34:29', 'SALE/POS2022/06/1375', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75c4f6c3b1fe28e36047f1462d380faaa6f4af4649583b7abc11a4d2d7e8f05d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1376, '2022-06-22 04:20:02', 'SALE/POS2022/06/1376', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9722e0b82b608c5e27d5deb6dc2c6adc7fd7b8f8724d6ecf7f4a6f46cf4d71e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1377, '2022-06-23 03:28:39', 'SALE/POS2022/06/1377', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '480eb2966254c98cf9e55ff523719cb03853c17be240886624063ca97f941220', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1378, '2022-06-24 00:52:48', 'SALE/POS2022/06/1378', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e599bb87b7c97314a86f2a212b215c3dbf988f921e6e1a07732ab1e842b583ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1379, '2022-06-24 01:38:26', 'SALE/POS2022/06/1379', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79f9f0487fe314a3912b7df5a5c3e3c41a3c781a15f97765c8c47c13003d5014', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1380, '2022-06-24 01:50:01', 'SALE/POS2022/06/1380', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5faf179ac61cf79f9e02d704d345265e69d9fdd7a2ebfc3aa7d955a4f87b8d1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1381, '2022-06-24 03:06:58', 'SALE/POS2022/06/1381', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85f29c26cfd4c9f55efd3d01720b448515a0728219a8cf99f14bbea286b75b4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1382, '2022-06-24 07:00:40', 'SALE/POS2022/06/1382', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4e1b2154d48ba0c1274127ffc530460a1b2f2af30bf76ca72881e31dc95e9bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1383, '2022-06-24 07:33:46', 'SALE/POS2022/06/1383', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bbf8c2ffc06c57c0f93b3806493924a508a9a7fd631ff70ea2db5ce32ace5076', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1384, '2022-06-24 10:20:33', 'SALE/POS2022/06/1384', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '4050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e34ebd300967f99daa4c0f196bb1956fdcf7ad1305fed0535a7e4cd77bf678a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1385, '2022-06-25 04:06:51', 'SALE/POS2022/06/1385', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c32f5ae5e1e07fd68089de0794d425f3e7d8f4995fea046c9b55676b8b7e0fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1386, '2022-06-25 05:04:40', 'SALE/POS2022/06/1386', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ccf31403feb55e9c8c75df65060c168fec290296942dfc92c592937a84865c6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1387, '2022-06-25 05:34:59', 'SALE/POS2022/06/1387', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2cc1cc2bf6521bb51a4cf4842943a6d3c94f42ac030da7d61f6ecb23d393b72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1388, '2022-06-25 05:39:26', 'SALE/POS2022/06/1388', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd50280e645ccfca05437b627adf18ff658677a0370089125bf5de9119b726efe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1389, '2022-06-25 05:44:16', 'SALE/POS2022/06/1389', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05747d794d9c2f5daac54b5cf02b75a3f519743b73af599895935282d579acf2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1390, '2022-06-25 06:34:27', 'SALE/POS2022/06/1390', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '430.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '430.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '430.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '177e1e055dce13c7433829ba6feb8555a696cf3b9f9dff9137f50f369ef34859', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1391, '2022-06-25 07:26:30', 'SALE/POS2022/06/1391', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '373fc734eec4a84a6a66bb40c679a7e68a313a9b95d3a292ac7c39c20ddfea8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1392, '2022-06-25 07:45:32', 'SALE/POS2022/06/1392', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd78b0bfbbff67d7503d1eb704bd324204d7287847c305a1eedbe7099ec5559f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1393, '2022-06-25 08:52:35', 'SALE/POS2022/06/1393', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '274fed186d894611d4f8c10f5299dc17ff2182a0736fff38db51e44218ff2cb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1394, '2022-06-25 08:59:50', 'SALE/POS2022/06/1394', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3bd7c3ae5aaa5e1a1aac383aad679fbd98dbfef543649c88433f6f64f5db2ab2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1395, '2022-06-25 09:19:24', 'SALE/POS2022/06/1395', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ea2a028688b2c71a5917475c8de86258d493c85097d577d3a58de584a53f796', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1396, '2022-06-25 09:21:38', 'SALE/POS2022/06/1396', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '328460e4b349f2433da65001d82eb2e6c543917c38e89c3ecb5fd9c43e1f5538', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1397, '2022-06-25 09:43:03', 'SALE/POS2022/06/1397', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd3f199a7f4c05aa77ceb96d894b05aa1421655be528cc29f9b31541bd295606', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1398, '2022-06-25 09:49:56', 'SALE/POS2022/06/1398', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37d717f777acfbd9e0a91478df22cc0027a1b1dda98ce768231b4b161dca6180', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1399, '2022-06-25 09:55:41', 'SALE/POS2022/06/1399', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a17e1aa7f57b6ad32b34dd7f375789f218c153cc85b21aef443217856d0a2aac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1400, '2022-06-25 10:12:03', 'SALE/POS2022/06/1400', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b28a0b0f972f28dbcc4e7c7435cc4bfd48f176b77d0d890de54ca864677e45b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1401, '2022-06-25 10:18:02', 'SALE/POS2022/06/1401', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e76960d78ff6d1b55e8bb709957e5c9e0c9265f41d2a5c9c0faa69ee0f18ad4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1402, '2022-06-25 10:20:33', 'SALE/POS2022/06/1402', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e4f762f116f76527208f2a007a4d66d6e8f63022668ebbdca15b71fb8cf90932', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1403, '2022-06-25 10:28:44', 'SALE/POS2022/06/1403', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd284196dfb7f6c7ff6ac043761bbe8f7cf9d4be4143498db0b46ab04272f8b63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1404, '2022-06-25 10:51:21', 'SALE/POS2022/06/1404', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67b3fefaf3ae7778266021e9cc132bc72276f299ec648a3693cc1a7a5652bd13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1405, '2022-06-26 05:31:59', 'SALE/POS2022/06/1405', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62b2fc4be312ba568765ef81ba9bedf454fb1f1613edea28507b3c8329218a67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1406, '2022-06-26 05:43:17', 'SALE/POS2022/06/1406', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0f61a738b069b3399dec3f5466913617d69c2132bf9752c6f9ff68d40d00658', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1407, '2022-06-26 06:32:02', 'SALE/POS2022/06/1407', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd64c1bc0f0ba99af9087c9789a67b43a61e40ba1b1fe4d4f932d01916f86e088', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1408, '2022-06-26 06:50:18', 'SALE/POS2022/06/1408', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '5050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a90ca4ff4e12dbd5079d7c093f1a6973b3b0aa7590c6139e1c91ea08be192e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1409, '2022-06-26 06:56:11', 'SALE/POS2022/06/1409', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3ed8b50c6ea0ef5dedc15ed42f6048dcf35d11ae87ddbf0f994dacaf274a4a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1410, '2022-06-26 07:15:46', 'SALE/POS2022/06/1410', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ccdadc02f38d2eb3a255f313900a01c7dd923d1b41b1cc349a63102f3394c008', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1411, '2022-06-26 08:04:27', 'SALE/POS2022/06/1411', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac93702ddbae305ea960290598007f53b1aae50cc6b1059c9272b13f756ee475', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1412, '2022-06-26 08:05:29', 'SALE/POS2022/06/1412', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2603fa0d023ff793a05d239c3225d55ea0997808cd5d7d4e345a333a068cd72d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1413, '2022-06-26 08:10:19', 'SALE/POS2022/06/1413', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14dc6ba505a9a322de03d28e5e79a48f1736852cbedf50453c430e6964f4a59d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1414, '2022-06-26 08:35:29', 'SALE/POS2022/06/1414', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4aee107fd7718e1c7d98a605c0f58a66183b165f560d9a1cadb1102795908c5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1415, '2022-06-26 08:47:12', 'SALE/POS2022/06/1415', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54db1ed9c391c912e140bc18fa4e0520822a728b6ab435a6647384aa1d867b46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1416, '2022-06-26 08:54:13', 'SALE/POS2022/06/1416', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b17d41572ae93799bbe4c8adc3906e4ca80dcd5bfa29efe6191c24d03230f92e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1417, '2022-06-27 00:48:40', 'SALE/POS2022/06/1417', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05db8ef3dfed83abc9420c383313b9a10ce2dcb522de0d18a992e1a15734958b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1418, '2022-06-27 01:03:16', 'SALE/POS2022/06/1418', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '375fd8132c8f7ab7c01ecfec6ee6f1b4a5ed96819b2d4fa80dc1f9daa729ea63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1419, '2022-06-27 02:33:35', 'SALE/POS2022/06/1419', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '773e7a2b10fd92530011bd930ca137e3ae488efe5f66ec37b4b2a2897f88bf6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1420, '2022-06-27 03:54:20', 'SALE/POS2022/06/1420', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d69544921c441b587e6a76bd6e94e02d806ef071a5f575d74402352af8fbd9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1421, '2022-06-27 04:01:26', 'SALE/POS2022/06/1421', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa41ae55ef2feda72162f1813c85914f5e1d9269898d5c696cede194348c52ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1422, '2022-06-27 05:35:10', 'SALE/POS2022/06/1422', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87924afd6d274fa259042d2e44bb49981e6912ef0949ec1e3b7ccaf489854dd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1423, '2022-06-27 05:38:58', 'SALE/POS2022/06/1423', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'defce12cfb7285e15929f79ca7c90ae31524cc7f89ab63d083a029dc650ef2e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1424, '2022-06-27 07:07:52', 'SALE/POS2022/06/1424', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a1fb4b7c4d0c0647a4a7d4cc58e8411d360bbf80289c605646047d8512eef0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1425, '2022-06-27 07:27:47', 'SALE/POS2022/06/1425', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25bef9c1a8ad113fd5ccd8725866b14ab87a8faf2dd36a918c16c4fd3bb5710e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1426, '2022-06-27 09:35:13', 'SALE/POS2022/06/1426', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4150.0000', '0.0000', '240', '240.0000', '240.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3910.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '3910.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f457a36a0b26d621fcf2b38f69d66aacb0fa226d6e1bb2fbdac732f51616992d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1427, '2022-06-28 03:10:55', 'SALE/POS2022/06/1427', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a15c7f38d28bd88a93017b2dfe019fcb3aa4bdb1a242b3452941ad0c9db74156', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1428, '2022-06-28 03:47:43', 'SALE/POS2022/06/1428', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd14f21902399b9d58dd581129c339957956b537167ed091531bf5eec09248fee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1429, '2022-06-28 04:10:04', 'SALE/POS2022/06/1429', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '320.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '320.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3035b97aeaec7a92176cab5c64731a5fe63a6e7220ced69bed701c765845a9b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1430, '2022-06-28 06:53:04', 'SALE/POS2022/06/1430', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9417fdfd5f307b0927502fdd86510a05d29790fc8a1e7dc707139732eb15bc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1431, '2022-06-28 07:23:15', 'SALE/POS2022/06/1431', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab7bf29077a63c45695033cad7449fcc9fe2a83e64a41171b9962447afb91789', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1432, '2022-06-28 09:12:04', 'SALE/POS2022/06/1432', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94b1e052cb2048a2857dbe813e32f08cba22d56689c8ba80f036259200cc9073', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1433, '2022-06-28 09:16:33', 'SALE/POS2022/06/1433', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '092cbe1b5e39c78a5db2bc062d491fd7026a914c077bc3748ba9adfa1374f141', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1434, '2022-06-28 23:15:57', 'SALE/POS2022/06/1434', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12623d299061cf02f2940c76e0a4e6edafccb1562bca785245d5f80e5a1953e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1435, '2022-06-29 00:16:57', 'SALE/POS2022/06/1435', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a59f3ec981de3a6967dd2e5a13d8bb9242abee2b7d0bd531561c625df284f08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1436, '2022-06-29 00:23:16', 'SALE/POS2022/06/1436', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8059901cc2e93f30314c937a4a7155ebc142dc0600dfad95ced67ab4939156fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1437, '2022-06-29 06:12:18', 'SALE/POS2022/06/1437', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42ec4d3844c486738ce728c58dc4ae1bf26eadd10195590b477b0d239a865e58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1438, '2022-06-29 06:55:07', 'SALE/POS2022/06/1438', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a973d2e3a43896085e4ececb3a81c71bb88be66d92a8e021a7ee57dd4968bd77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1439, '2022-06-29 07:32:32', 'SALE/POS2022/06/1439', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d485433e06e3c6212d5b62b6648219e496e2c37ea6ed38815a455c7beb38c67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1440, '2022-06-29 07:35:52', 'SALE/POS2022/06/1440', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd941b7afd3077a6c63ebd88a30a74d07164154a0ab46438fa2132ffec1993ff8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1441, '2022-06-29 07:39:54', 'SALE/POS2022/06/1441', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1be6a0c3bbb2f5e11dec2b46368dcbf9685d38ed8d76be83e093b81bfe01978f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1442, '2022-06-29 08:07:59', 'SALE/POS2022/06/1442', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6502467738f70e4f1f9f0b1af03c031c6c6d332350903590c65f62ffebbb9f30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1443, '2022-06-29 09:50:08', 'SALE/POS2022/06/1443', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee5d2db2d12d45224cbf5bd29fc2c717ea040d55475af7961225a7bf19f31288', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1444, '2022-06-29 09:50:43', 'SALE/POS2022/06/1444', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d8b592de09867a391214b78b4a4e42e0989021f913ad686c8121289320f4707', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1445, '2022-06-29 10:03:47', 'SALE/POS2022/06/1445', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '5290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c2dae385fabe5a289ba23372d9f1ee721744fe99280baf86d1c48655b9d7d35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1446, '2022-06-30 01:20:15', 'SALE/POS2022/06/1446', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'abce1168f57fd786cbe82195ca38723761bada6982b305dba710b35c7bff9017', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1447, '2022-06-30 04:13:15', 'SALE/POS2022/06/1447', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '748dc9ed5a7fa543d8ec6ccd9f51bea2ae4901ae055ee70959aa167650ec1663', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1448, '2022-06-30 07:10:48', 'SALE/POS2022/06/1448', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5395f476d3efb9b1a65398cef5ac0b86f9d0b400a0c43e891e03677fb1e19d23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1449, '2022-06-30 23:22:29', 'SALE/POS2022/06/1449', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '990.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '990.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '990.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34093e572e61053c101e173b24c67e1b5cfd6fbf26eee6dd1dfdcc8799e2f680', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1450, '2022-07-01 02:14:13', 'SALE/POS2022/06/1450', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7a4079ef201dcb8af6bae93beb1db56fa50ae9bcb68e6699326dacd757ce0d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1451, '2022-07-01 02:44:02', 'SALE/POS2022/06/1451', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3bc9fc76d3deebc5cee4e4eaf4ba249f860bd23bd9ca1c1e478c0205a91db843', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1452, '2022-07-01 03:26:44', 'SALE/POS2022/06/1452', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '410529f23811d62fa5c913b5054239fbe9dfbde14bfb75f3a41a10c78ef70b66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1453, '2022-07-01 03:32:12', 'SALE/POS2022/06/1453', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa003408db0bfbc01d1e9994dfd6ea45ff5b313587b68bc21af6eee8c2eb0f8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1454, '2022-07-01 04:32:01', 'SALE/POS2022/06/1454', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a71b362ebc7186dd475603c14c30b838c01bb9042675f51b10fae8bb4dc44283', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1455, '2022-07-01 04:35:34', 'SALE/POS2022/06/1455', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f355f803353cfbdd3274266072a3bacc228fcd8062b2c78cb40b84826256581c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1456, '2022-07-01 05:13:50', 'SALE/POS2022/06/1456', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ae98739040df2ff65250a93fbbf98737f087d3659e3e1d287aec32eb1646aea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1457, '2022-07-01 08:54:53', 'SALE/POS2022/06/1457', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '424f6a7b78c1f243db42ec5a0d9bc0ba2508565f1893aa13aad9abc91e965777', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1458, '2022-07-01 09:45:42', 'SALE/POS2022/06/1458', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '770.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '770.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '770.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d66f7b2267101f0b8493385b72938eebaf40115637cc202a348d62daf52ffda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1459, '2022-07-01 10:11:35', 'SALE/POS2022/06/1459', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c994b1cd2632e31b5e1e25b2cd7581be9b15069b119544492101077ebe911f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1460, '2022-07-02 01:58:23', 'SALE/POS2022/07/1460', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcb15268407d153cbb1c79774177fbe674deed9e27b4e86a23d1c250030aa7b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1461, '2022-07-02 03:21:35', 'SALE/POS2022/07/1461', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33b120b6e10241f5b23bf246a9c99962bb9b991752790bf8f57dead9497a31d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1462, '2022-07-02 03:40:31', 'SALE/POS2022/07/1462', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a4df10a656e59f7de5b3ccd8a068a33e784d5b2f78f4ecc2909c7169e947eb1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1463, '2022-07-02 07:10:48', 'SALE/POS2022/07/1463', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c3be9b76e2aac5a34449b77399194cc55badc984afcf0cda6ba29273b20baff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1464, '2022-07-02 07:13:52', 'SALE/POS2022/07/1464', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd117b415d9b66e77944b4d8ab0898b9fc0b2bab102da864b01ab28b7555269fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1465, '2022-07-02 07:19:13', 'SALE/POS2022/07/1465', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b01ff0ce35e682c5d75be8aa3e9ccd90c50e276da92eab897e2476c1138b1713', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1466, '2022-07-02 07:23:35', 'SALE/POS2022/07/1466', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54a5a8f63b33e2dae288e6839eccd5b286dc1bef1bd5e7fd7d18bdfaf6ab9c09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1467, '2022-07-02 07:43:27', 'SALE/POS2022/07/1467', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80ef94f0b418c67a45e75d13f1dd80a3712f626d37832f1ebb925e793fb12703', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1468, '2022-07-02 08:11:24', 'SALE/POS2022/07/1468', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b52c188abb75a3a7c84dd0ce94997503a0785bafc6e419a0f52029c14006634', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1469, '2022-07-02 08:28:44', 'SALE/POS2022/07/1469', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02926a16663a54169b283e7322f92176b691ab6c8575080ff4effb8b5faeee66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1470, '2022-07-02 09:25:06', 'SALE/POS2022/07/1470', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1d41684cb9102009419ef645131ec2958300da37695f3b3cd2f25cc522da271', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1471, '2022-07-02 09:59:11', 'SALE/POS2022/07/1471', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'acaa48b51bdd7aef242fc1c95ddc964724a8e53ea74515edb4b1d4245f805194', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1472, '2022-07-02 10:50:00', 'SALE/POS2022/07/1472', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c65ce09b37178b9a6e8211bb2903cddc4a7b113bed5d5675d551dfaf0aa3dbfc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1473, '2022-07-02 10:52:09', 'SALE/POS2022/07/1473', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8b9f1c25e679f22b4cd89f38bc8ea6fc6ac30c90a7be0bfc4aa56f66e2066e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1474, '2022-07-02 10:54:33', 'SALE/POS2022/07/1474', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '580.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '580.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '062368ec999b6876d035b5c2f8e497013d542f61902b42a27581b73245e17477', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1475, '2022-07-03 03:40:19', 'SALE/POS2022/07/1475', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8137888ea0d18f12c534980ec76ef4ee7b92c42d6b72f66b8ecad82ee418ae8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1476, '2022-07-03 04:01:10', 'SALE/POS2022/07/1476', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '499fc01f75f84f1c86dd7e8583b73b81a03cc95aa36a52eea573f5801192cfae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1477, '2022-07-03 05:52:29', 'SALE/POS2022/07/1477', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9128bbc3e7d31b7628a4dd364b6cc5b9e77bb11268b2dd31c94463e4179dc77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1478, '2022-07-03 06:07:10', 'SALE/POS2022/07/1478', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5eb5ba0f58f5404e9007293a997937d1d25db31e9a5efa1d2e29249a3be64d79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1479, '2022-07-03 06:55:45', 'SALE/POS2022/07/1479', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd41582fe9bbbe305ed80c493a3aae2ca6c0a1da8ffefcf284122c8cf05edba6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1480, '2022-07-03 07:53:47', 'SALE/POS2022/07/1480', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1aa101c37d145a4d0cf23ac2533164b01ee7b9cf4ff02fc47cb861ed57913d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1481, '2022-07-03 08:27:50', 'SALE/POS2022/07/1481', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ecd9b22693557d031b54969fae041a92b93773ae297c0525a7efd05cab01cde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1482, '2022-07-03 09:28:35', 'SALE/POS2022/07/1482', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a444c8ca663d261b7f85fa4ceb41c5133a33b4972be20603f462cc41abb6394c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1483, '2022-07-03 09:49:47', 'SALE/POS2022/07/1483', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '534046bb4a27da2bb74f1cb22817c7ad8def555362d67e7e14ec5f2850e9b691', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1484, '2022-07-03 09:52:29', 'SALE/POS2022/07/1484', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd4657413558d3b3a39d07eb7a573f163664a27c4383c6faa8a8384e25c64550', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1485, '2022-07-03 11:01:44', 'SALE/POS2022/07/1485', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '613d71bd5911fe044d96359d8a0daf3ea3a20ab92303200b2686e357df32b7e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1486, '2022-07-03 11:08:30', 'SALE/POS2022/07/1486', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d3c064a12e54c1844f732100796b4ec4925945517b9785f17cc7943a2b1f1ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1487, '2022-07-04 01:16:41', 'SALE/POS2022/07/1487', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02488845c5e85bdfdc1325dd3393514c223628536ea0f26d63315c5ded1f66ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1488, '2022-07-04 06:11:30', 'SALE/POS2022/07/1488', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a95e0cc1f52c166fd7c78a038d3e741c4a8c992d6e313713352fb642427ee5b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1489, '2022-07-04 07:06:32', 'SALE/POS2022/07/1489', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee4be74d210ca97ee16710ee5aba8968b3fac452c93e16adfc528ed2f20658f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1490, '2022-07-04 07:36:22', 'SALE/POS2022/07/1490', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4acac21ac8ed24d402132d5ed428bcafb0d4dd7a5b3cb43830dc5ba8e54bf55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1491, '2022-07-04 08:55:36', 'SALE/POS2022/07/1491', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c043e13d4a9479c7a86f04290c8013b1981fa869e4a7b663294b686cf470e33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1492, '2022-07-04 08:57:50', 'SALE/POS2022/07/1492', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60fc8938915c5ee2e99cc9532171bd83d9b05b6b981fcea13eb00f851085cd26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1493, '2022-07-04 10:36:49', 'SALE/POS2022/07/1493', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8c77f63835bed4feee1128b7e1ac7cc12cbcd190cfab48218282d85fee73851', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1494, '2022-07-05 01:22:21', 'SALE/POS2022/07/1494', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '742722ca921d59bb1b29099cc4177f079b19a36cd404490cb3a82a43858cb162', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1495, '2022-07-05 01:56:08', 'SALE/POS2022/07/1495', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e361f04f78b71e694378c78dc1055a0bada7ec8111b35971acf8a7d2d8a07e91', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1496, '2022-07-05 08:30:14', 'SALE/POS2022/07/1496', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7922d12b8348766ae42557d216cc3829a06dd1f5af12cb9c5fab1d5a529ea94c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1497, '2022-07-05 08:30:39', 'SALE/POS2022/07/1497', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d4451ffb9ae19e89d55bdaed8c5e0c06c9b6d07391245f0c57a29c680651525', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1498, '2022-07-05 08:30:59', 'SALE/POS2022/07/1498', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dfaab519d56ab996f0957106054eda9a8af2101af7c376befc0e8b7bfc23a861', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1499, '2022-07-05 08:31:39', 'SALE/POS2022/07/1499', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b95087c0cfbe65877c9d82bb7b14fdc74ab0a619233eacbe0a9c0cbdbe7b1f7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1500, '2022-07-05 08:54:52', 'SALE/POS2022/07/1500', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56da663f784d540471f71c9ed0afd76914b5fbfa0d6dff1150ae23fd73f172f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1501, '2022-07-06 01:22:16', 'SALE/POS2022/07/1501', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecb751ceb7cb628d1d20efcea5ca5faca39dc392e1af924a2c669a78d4941790', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1502, '2022-07-06 05:38:49', 'SALE/POS2022/07/1502', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab3629b6ea2f5b2fc5a950780e32b9930b1bf3e4f334289ff6e65d5659fdfbb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1503, '2022-07-06 06:11:29', 'SALE/POS2022/07/1503', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c59488ea29440f5d94905553193b44f6855eae429bd8fababb8d5d6ef31a2a82', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1504, '2022-07-06 09:13:29', 'SALE/POS2022/07/1504', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9be32139b5cce3bf1540c4aae7e839c262e275724d65c85d36b04067a5f02cd3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1505, '2022-07-06 09:37:19', 'SALE/POS2022/07/1505', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fdf0859df84cd89b0b655f849ed32f0fdeb887c90c027de0620dcd8552faaab6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1506, '2022-07-06 10:55:52', 'SALE/POS2022/07/1506', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8265e354343a012021d0499804949269bc01431df140c373dfe57bc908c04eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1507, '2022-07-06 11:01:40', 'SALE/POS2022/07/1507', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ac68003ca7cdf1accabb97278d6e995ad1f1d1441b81e1a1afb7a8f6cf14c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1508, '2022-07-07 02:12:08', 'SALE/POS2022/07/1508', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '585b51f6adb49d1f7c4c3e4ac9a0d6c72c7b9539eff732e120b6c8cff9fa557c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1509, '2022-07-07 02:20:54', 'SALE/POS2022/07/1509', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fd56102e065827f29cda9ab3e1efdb4fe29fd5a9d367d55dc97a7fb5909d833', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1510, '2022-07-07 05:14:19', 'SALE/POS2022/07/1510', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b56bafdb5326e382f2b358f79d773d1a9bf951f535e2ecf56f97fdc5bd0b4a1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1511, '2022-07-07 05:15:58', 'SALE/POS2022/07/1511', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da355eaa1f9554000561274f7dd0c652d039197efb2d8d1343e2e00666650cf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1512, '2022-07-07 05:33:34', 'SALE/POS2022/07/1512', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa066afd895fc7b4c315cc23e47fe82c7c272fefbe040a5ab235edc14c9a25b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1513, '2022-07-07 07:39:14', 'SALE/POS2022/07/1513', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '421f01cf6c62c0a1eb3a8a63fe24ce36c2b2a98723430e9eafe303b6a359fc83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1514, '2022-07-07 09:51:24', 'SALE/POS2022/07/1514', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '8300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '347eb3306a30ff3f96fc17f8e629f7c0010fc8453e3ba8395038b6359fca383c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1515, '2022-07-07 23:17:05', 'SALE/POS2022/07/1515', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91ae1d650b21862a665de96eb86bb05b9311852572f089eaf65b5fc97c719d1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1516, '2022-07-08 00:20:19', 'SALE/POS2022/07/1516', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fea0c6b16705092193d023cf03129e11d8ed1659dcc5dda25361111f2f818770', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1517, '2022-07-08 02:16:39', 'SALE/POS2022/07/1517', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78e58f21d180378da9c8394f2b646971e991d44b124d7986e47b1ada240e11ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1518, '2022-07-08 03:06:56', 'SALE/POS2022/07/1518', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86963a6da9f48ea1c3d34d0927678b6d03efe74548b91d36f2fe7b79252c6df9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1519, '2022-07-08 03:14:32', 'SALE/POS2022/07/1519', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '876b4ff1986109555a05fc1fbbdde426524c14767cadf3d4bc112c7dca6f3298', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1520, '2022-07-08 05:19:47', 'SALE/POS2022/07/1520', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f79314cf37850f91652231caf0c4421e06781482b3c52ae56dfbced92b4e287', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1521, '2022-07-08 07:22:51', 'SALE/POS2022/07/1521', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '188431d4c5dc813f2966a59cb4c70d190011f7ff9019843505c96732b58dcf3f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1522, '2022-07-08 10:09:00', 'SALE/POS2022/07/1522', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '151a5479a778da2a3855e765be2ee1dd8e3d4f6247fbf8b9b3b4600b6651fb47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1523, '2022-07-08 10:10:31', 'SALE/POS2022/07/1523', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26d18a4bb1800ec8f9bcc2eee8e3bd21771b2164e4daae51a77279c20920dd68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1524, '2022-07-09 00:27:33', 'SALE/POS2022/07/1524', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '620.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '620.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '620.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2be12188a9791ba564b058c7e56c265733e89383f047a26ca07d26b67f19a581', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1525, '2022-07-09 02:59:10', 'SALE/POS2022/07/1525', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2314e8e83fe64e409398eba415558b81771f06a3d52f9b182958223afde4b976', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1526, '2022-07-09 03:44:05', 'SALE/POS2022/07/1526', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57cf608fba964d7547419794e90b148e483cf0714275074e8108658edac0182f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1527, '2022-07-09 04:56:32', 'SALE/POS2022/07/1527', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dbd89a944e0b3cab09fc45551c849175a1d6b07d2026c75aadf7f5d95198d22d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1528, '2022-07-09 05:04:08', 'SALE/POS2022/07/1528', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6ec4bb1d68e913fa8f292b6730d94fedbb46465359cb2c298cb815940ad159f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1529, '2022-07-09 06:59:58', 'SALE/POS2022/07/1529', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c3994d326374927cfe0b8e9393d23fa039360911a5887a9cf17dda23e8dc387', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1530, '2022-07-09 08:52:56', 'SALE/POS2022/07/1530', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdedd7e4261b01ccc52d49edea91a974427cc7d9802a3991d03541ef5f81e213', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1531, '2022-07-09 09:04:52', 'SALE/POS2022/07/1531', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5cfd11ab2e47f04a13c5114f1dcc0b363970f4d64d1e7dd1c0dbe18850559f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1532, '2022-07-09 09:05:30', 'SALE/POS2022/07/1532', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c73efb83ec7c4309041ef079acf10f9d8b50ed8efcea26cf87d6b1f77333298', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1533, '2022-07-09 09:09:33', 'SALE/POS2022/07/1533', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd1bd1f8a5cd27deeadda939eab9a1fc710f1532e4a4c5c12ad01619d98c8957', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1534, '2022-07-09 09:29:58', 'SALE/POS2022/07/1534', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92783d8876d1c9cae1b2498510a66d4d68131bd7c5de862aea5665dcf84e312b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1535, '2022-07-09 09:33:06', 'SALE/POS2022/07/1535', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1cc10b4365bc4732b2f0ab909edcf7c560c43aa30697152be082ad8457ba9880', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1536, '2022-07-09 09:44:11', 'SALE/POS2022/07/1536', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90ec1870d1f85bd5b23648571769b943c9ee72b87ab2dd5c8bda4ecb8cfe797d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1537, '2022-07-09 09:53:44', 'SALE/POS2022/07/1537', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32e59823c571536eda6c3cdae2888bf822559a64a81428cbfcd54e903a0f2f4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1538, '2022-07-09 10:48:52', 'SALE/POS2022/07/1538', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49cb274abfb2188e52041ed6ea0291a833d9aac27dc0af6747546ef2c2530fe5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1539, '2022-07-09 11:33:28', 'SALE/POS2022/07/1539', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '584f200f0af603149f92894ef6cf5d4d6e1136a7f079533764336b0110721143', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1540, '2022-07-10 02:12:08', 'SALE/POS2022/07/1540', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5322a013e4f8cf349760debbb89d37eb1bef643025a3dbc68ea5bf1ee382e1a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1541, '2022-07-10 03:12:39', 'SALE/POS2022/07/1541', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '353ffa246a43f7bc643292579723f276fad79b1ced004eaf238b3c3239bf0501', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1542, '2022-07-10 03:35:43', 'SALE/POS2022/07/1542', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cbb49908b44ea62b2b44b1db95a4d0159a427094ad0b189c4d974ca66e4f87e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1543, '2022-07-10 04:19:35', 'SALE/POS2022/07/1543', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb2f5e55056b6e57d82fcd8bc9ab4255480bd1ea7b0880700c28c86af759711a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1544, '2022-07-10 04:35:12', 'SALE/POS2022/07/1544', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84be46a1476c52887f14cfc4736ed4ba5e46af632714bb526dc860ef4572903a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1545, '2022-07-10 04:56:55', 'SALE/POS2022/07/1545', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3eb022805df167915131b9858033610c34771b721e9663d6c5c280708693f1b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1546, '2022-07-10 05:22:22', 'SALE/POS2022/07/1546', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59c8ff50366161b63ed165f4270d34997d2f938cbce701bb37f01f67285742d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1547, '2022-07-10 05:47:53', 'SALE/POS2022/07/1547', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd06e1d4cd1f75c1b5819350a57c1d9d874e949a7ec660c70eea54272d0cbee53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1548, '2022-07-10 06:36:11', 'SALE/POS2022/07/1548', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78162134f16108bf84fd376008942f2bfce20d087f8812a0b88b2b9938d7c482', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1549, '2022-07-10 06:44:33', 'SALE/POS2022/07/1549', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '490.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '490.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '490.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43d0ad6da2ac8a85c20b9cff2881a00b68aecd889d5ed1c9f4c010127d726ce2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1550, '2022-07-10 07:17:41', 'SALE/POS2022/07/1550', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a366e7d22afae5ed272bcc438786786b976cc6b7bc62e33099f7f7ca3d2ff641', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1551, '2022-07-10 07:29:33', 'SALE/POS2022/07/1551', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ae7cb2c4a713b9f17be9fceec42f8ac5998b2b29011376ced8097d7dd24cbbe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1552, '2022-07-10 07:38:44', 'SALE/POS2022/07/1552', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1653dc0c67394a146615f0b99a13481bcd39ebfcf0d7b95478623e2f9f24cbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1553, '2022-07-10 07:43:52', 'SALE/POS2022/07/1553', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b4867168c550a26ac96d35c2b09411bf232bbd09743128cf4f654d689b7014d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1554, '2022-07-10 08:24:13', 'SALE/POS2022/07/1554', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1320.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1320.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '931b2f8ec56be8b22a880111999daeb4cf75e968c44c6952fe8b86fd09a9ef36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1555, '2022-07-10 09:12:41', 'SALE/POS2022/07/1555', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca70d7136f626f847775fa9de090bab018b438008e886a920c8e32f1f804c492', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1556, '2022-07-10 09:13:06', 'SALE/POS2022/07/1556', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9893983b737622ec29589c75f2948599263278b0e531c5e4db411887cdb4cf73', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1557, '2022-07-10 09:40:32', 'SALE/POS2022/07/1557', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c0a5e21745fbe3dedfa63741bc09e241587f5d3ee06774af15071b77870500c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1558, '2022-07-15 00:43:49', 'SALE/POS2022/07/1558', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '540.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '540.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '540.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed3972c07ba9d2b744204673767a0cbb19e965535cd8f8d1afacc929dff1a45c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1559, '2022-07-15 01:25:27', 'SALE/POS2022/07/1559', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29e39ce2f9081f94da735db3cc6778b6263a2482cf736a8261877af5e1bcf489', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1560, '2022-07-15 03:31:18', 'SALE/POS2022/07/1560', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a81c41d38e7422003a453fb8b29fa55dbcf1d6aa0801895db299ce814f7158cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1561, '2022-07-15 05:07:58', 'SALE/POS2022/07/1561', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2c4a0a81a011ffa1e916ac1dc3d2ce4506e130e9842e5270611d8dd5accf161', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1562, '2022-07-15 06:04:21', 'SALE/POS2022/07/1562', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5cd0b720380ade22a8d23f193b53756e6ca04b9b37dd8e7c534968ce2a272a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1563, '2022-07-15 06:41:08', 'SALE/POS2022/07/1563', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a320747f2703b6460375bcef3a9e204e2cead0ec22c9993d46c04a448ec2957', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1564, '2022-07-15 06:50:44', 'SALE/POS2022/07/1564', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '810.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '810.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7204f4b8f346c2db97aba93882a3eea1346e4db137ff074aeadfac6309069b44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1565, '2022-07-15 08:16:46', 'SALE/POS2022/07/1565', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6daf0198863e7158043455d8e9a543642435ccd9bc3a5ba1a32d002d3342cc9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1566, '2022-07-16 01:24:10', 'SALE/POS2022/07/1566', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bed8be369234c2e9daae7da6460b74faa1949a0a7c497b025a18bc33288ed9eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1567, '2022-07-16 01:34:35', 'SALE/POS2022/07/1567', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f8897d049dbd4e7ecf6d6b64387099dfcc8e1e49ff20586714ab4adce7671bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1568, '2022-07-16 02:45:51', 'SALE/POS2022/07/1568', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4b650c29570110590b9a8f979d2d81845be7ad4cc45fe8ee60e12c86bc31f46', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1569, '2022-07-16 03:54:41', 'SALE/POS2022/07/1569', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c51e47df57eec8fc3664283d1ed77b9e15608932fb01118494ae3a8bac245461', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1570, '2022-07-16 05:58:51', 'SALE/POS2022/07/1570', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0ff43c31406b14d123da48805983c5dde3e84e7dcfa321e49b3fd754129cbe5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1571, '2022-07-16 06:21:23', 'SALE/POS2022/07/1571', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64c875f43cf21a087c84e7e415dacadc5a71af1f694fc0407ba60c59a7985368', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1572, '2022-07-16 06:33:51', 'SALE/POS2022/07/1572', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23afe8f2b539b7a28c109658aa589ce465877218dc687ae6c8d6771128fff51b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1573, '2022-07-16 07:21:17', 'SALE/POS2022/07/1573', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45f2a2993ac7dadc7c7cda6af5c2b52af49bb35b23f5910fff082f5f6a161c05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1574, '2022-07-16 07:36:08', 'SALE/POS2022/07/1574', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f09c99fb0e1f7768bd6c95fb5b00256bcaf76986050b166af5a9d8b7edd5db2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1575, '2022-07-16 07:41:37', 'SALE/POS2022/07/1575', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca452dc55f5414474683e070070daac0fc1e520e4fad42156ee7564403641e51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1576, '2022-07-16 07:54:39', 'SALE/POS2022/07/1576', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4044307796ef059d8f29728948873cc4d2c04a177a2329fa78b6eec7ffebf99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1577, '2022-07-16 08:14:34', 'SALE/POS2022/07/1577', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35276dff4933a5aae0b8f9154db132185d55bdb589143ccdafa8024fe4af718d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1578, '2022-07-16 08:32:44', 'SALE/POS2022/07/1578', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fac033e8a5d1aaf942fa3fbccf8b80ff88e911d01cdf4227676e94a77c74b88c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1579, '2022-07-16 08:44:05', 'SALE/POS2022/07/1579', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '312daa057b8a23196039f8f0d75ff553dfed31cd4290719dc38e58250aaafae3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1580, '2022-07-16 08:47:20', 'SALE/POS2022/07/1580', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54060e4ddc28a65fc29ccc699ba825b6c870a47aafbeda9f22dd4e22cbb3deae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1581, '2022-07-16 08:48:02', 'SALE/POS2022/07/1581', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0122bef2e7b234409981d7eb665723e7255123777a36498e6c26e2331f533c6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1582, '2022-07-16 08:55:31', 'SALE/POS2022/07/1582', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eac33013cc14c29c1f9439478c1a106e7106e901b59d87ee0aeb7397fa1aec4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1583, '2022-07-16 09:08:58', 'SALE/POS2022/07/1583', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b299ab0a2e031e0011292d47ee54cada157a7d90c2ffaa15aa66e1d5a90c7804', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1584, '2022-07-16 09:16:07', 'SALE/POS2022/07/1584', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '619a1884f366e9b5ba7523bc373fde2217add43400722d335c2ddf1b7c9db00e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1585, '2022-07-16 09:21:40', 'SALE/POS2022/07/1585', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f7bec402c8cd9ca9bc481f51b829c457f09c40e8edb5c9922ca0b37c65b9363', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1586, '2022-07-16 09:22:19', 'SALE/POS2022/07/1586', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65a94086d72c05563c6f3d29aaf914251ce1c1eb06a3bc4f57c35f6c95b78e1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1587, '2022-07-16 09:23:19', 'SALE/POS2022/07/1587', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d32f2e276db885d49484ae3f2b0cebf12b228f7a73de665eccbf00cb932a92b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1588, '2022-07-16 10:00:58', 'SALE/POS2022/07/1588', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc84f519260de964d6bb92dc57951e9a466d5431f4232012542bbf7eb2b93bf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1589, '2022-07-16 10:17:58', 'SALE/POS2022/07/1589', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33d2d686607acbb19be0ab1db8d50ae1ef3b28eb5201d553257b2f329d0de4b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1590, '2022-07-16 10:38:12', 'SALE/POS2022/07/1590', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97197f0272180482317083eda37e53ccacca0b71c13dd72692696e231517069c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1591, '2022-07-16 10:49:18', 'SALE/POS2022/07/1591', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fef0ab3f4bbff29c5934cd4d49c9c748faddf87148dd2fa4414cb9a460744b06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1592, '2022-07-17 00:27:29', 'SALE/POS2022/07/1592', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1623cd0fcf9f8c5787bbc44aa47b37b1c6ee33e1d6ee28c977d4153c8bda13b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1593, '2022-07-17 00:52:24', 'SALE/POS2022/07/1593', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a828ff1f6180c6d3b82e94b8271303819b59a72138033a8f2c2aea9c393134f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1594, '2022-07-17 03:25:09', 'SALE/POS2022/07/1594', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3f727f8d9859986c07d71b64b675b2508abff4bb6fae6cb01c09a6c7d412811', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1595, '2022-07-17 05:10:56', 'SALE/POS2022/07/1595', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '652059bfd9cec70688eec9d74f83803b7d9526af4867ed1cf77e9fdb19593da2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1596, '2022-07-17 06:51:41', 'SALE/POS2022/07/1596', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc98ad301eceaaa3f83a659451f3ec98205d06002a98777e0471cb5097abdd44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1597, '2022-07-17 07:22:37', 'SALE/POS2022/07/1597', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fad23fca30150d134590ead9d1bf2f19b6c9f3e6b39143d6a292f5335b62dbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1598, '2022-07-17 08:36:53', 'SALE/POS2022/07/1598', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69cab3e4e1c77cfc4c02f64ef8d8838604722f7a0a7731bb0075ee86a2a57cfe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1616, '2022-07-19 08:41:01', 'SALE/POS2022/07/1616', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c7ec96a861b2e67dcf2750ab76fbad6d6357b40f222a92f7edc49ce4f87fc2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1617, '2022-07-19 08:45:16', 'SALE/POS2022/07/1617', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c15dfc552a140a7aa8cab47049c60eafaf9a9cf85346036341437b843fa6237', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1601, '2022-07-17 08:40:25', 'SALE/POS2022/07/1601', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e7fe1efef223a6a022a66bbda8cfa14f563cf9b0abf472a8119f7b0a350926e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1602, '2022-07-17 09:30:04', 'SALE/POS2022/07/1602', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eed5754eec6349b383db56168d7f1db88f734c4c117a2a4a116ad84f380331bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1603, '2022-07-18 03:19:33', 'SALE/POS2022/07/1603', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '610.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '610.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '610.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5347e965cc8d161d6750faea36bea99b6eec3de5d95c89f7401c234f9d510f52', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1604, '2022-07-18 04:15:04', 'SALE/POS2022/07/1604', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '087932b925e07b8fd2a1c1bc4a8ad27dd9d06a0e3c3916b364bd9e279fad9394', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1605, '2022-07-18 05:07:09', 'SALE/POS2022/07/1605', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9393ebd855f8aad2d8279460b85fbfcf9cdcc32423c995f45394b2f98c0cb85d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1618, '2022-07-19 08:57:10', 'SALE/POS2022/07/1618', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46f58f353be9a943414c2b5d5d35a35103ef781c049a72962083eb80f5483488', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1607, '2022-07-18 05:51:29', 'SALE/POS2022/07/1606', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '810.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '810.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13ebbe8d2256e2ef83fdb920ba0b0506fe59b8d3e555c0825a9891eddb541713', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1609, '2022-07-18 06:19:21', 'SALE/POS2022/07/1609', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b130b2aa392a6e9e3f3c9f390a59e2e7e28102432f16db7178973ee8525cdf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1610, '2022-07-18 06:21:36', 'SALE/POS2022/07/1610', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e177c13b2937d7801e9774d165bab3575ca9bb03ffeb7f368eedf5665b816b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1611, '2022-07-18 06:25:01', 'SALE/POS2022/07/1611', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4253dc1a31105a80100b7f82588ac022d3f71331f038ff1418bb85bc06358fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1612, '2022-07-18 06:25:54', 'SALE/POS2022/07/1612', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '821dab2a20cc4541a2b443035d17c2866686ffdc989d98f866e20d68c9e2a164', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1613, '2022-07-18 07:08:01', 'SALE/POS2022/07/1613', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6fc493d1f4255702a1a1f0927a72adf0bf6ad0f2431adba7f19e9cda64ed1c55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1614, '2022-07-18 08:15:02', 'SALE/POS2022/07/1614', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8760d14c563d36299d890a87744102796b8b2ae7f53006873f42317b9b11c92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1615, '2022-07-18 09:54:41', 'SALE/POS2022/07/1615', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e015be0b1ff66143e8a3cd40243c62e71cd4ca4e62bf5df1382f80af12c73067', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1621, '2022-07-19 09:36:42', 'SALE/POS2022/07/1621', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd86f4b46a3d4423d9c44f16f1161bb52793d8532dbe74f1fb7b7517762a072ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1622, '2022-07-20 04:18:39', 'SALE/POS2022/07/1622', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31aa89bb3c49fc475b528a2d71b4872dd8a0b540cedcc7257681c73ea3e0214e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1623, '2022-07-20 05:36:58', 'SALE/POS2022/07/1623', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3920.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3920.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3920.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f948561159ba0d143077f9ac14cf0da0dd8af8f86bab2d0a31f89c510817caf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1634, '2022-07-20 08:04:37', 'SALE/POS2022/07/1633', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e38d828a04693873c1a2c4e49434efcb187cd5bb58b21e55d9489ace4c25e40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1635, '2022-07-21 03:09:51', 'SALE/POS2022/07/1634', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd371a54169216ffc48faff7e0e2acb5746a68b8d86c1d034a2ef516cb2160fc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1626, '2022-07-20 05:50:39', 'SALE/POS2022/07/1625', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c9e993539a5ffe8b00d88ceb62e9c5afb0aabea06056b00f2720c7f0182ec92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1627, '2022-07-20 05:57:15', 'SALE/POS2022/07/1626', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04d1f44937fea098e57e0f96b9e5406984575f527e4d8e69f4dc6d735fde4890', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1628, '2022-07-20 06:04:05', 'SALE/POS2022/07/1627', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4722fc4da3366c78603cd5588e5337a50456a659016fd5a176e64b29ad9da9f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1629, '2022-07-20 07:05:00', 'SALE/POS2022/07/1628', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0acbed6abe4090013f95e8a582165e351b53b7edd4644dab5333857d1a3f1af2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1636, '2022-07-22 00:56:36', 'SALE/POS2022/07/1635', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0035e7044e141e9a4583c3c75349fb695614bedf80c171d6b85be583007b6107', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1637, '2022-07-22 05:16:31', 'SALE/POS2022/07/1636', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdf704cf5286c9dc27f4c7b69681936cbbb6d81f8deb549e7a1ff727a8c0359c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1638, '2022-07-22 05:55:47', 'SALE/POS2022/07/1637', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af5679e926e32685848400388632c3c68e4a901e3ccfc793286af4bfd39d19a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1639, '2022-07-22 06:28:08', 'SALE/POS2022/07/1638', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24d983cff5829c395a7bee279585a2a67a318a677001a4d29a7e63a3a9fe84dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1640, '2022-07-22 06:31:03', 'SALE/POS2022/07/1639', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '370.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '370.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '370.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f57d36e194226b833344fea792ff401e844ccede710d9a52c38c028cadf70c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1641, '2022-07-22 06:44:04', 'SALE/POS2022/07/1640', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '590.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '590.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '590.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3828e647eab07248cfc9d5d542de6dfd4dd4c8d13a1f26e38ef0d12893f1a79e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1642, '2022-07-22 06:56:27', 'SALE/POS2022/07/1641', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2303cbcf49b6b35d1fe88c52589afdbb084b8c4aadec538b235c199f82497d98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1643, '2022-07-22 08:19:55', 'SALE/POS2022/07/1642', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c276390ebcb9c02b5894d06cfa10dba3e2659be7320ae12006a6ec97aa1f0b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1644, '2022-07-23 03:08:59', 'SALE/POS2022/07/1643', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5310.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '5300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bdbf023f28125782d850fbfa6ea28774fd8e933b2cb954d32ebddb80b83e2561', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1645, '2022-07-23 03:10:18', 'SALE/POS2022/07/1644', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd1c97ed25848cb6166c107d86615ad62b72d0e834dc1b09ccd5ebcd740d9a3f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1646, '2022-07-23 03:11:00', 'SALE/POS2022/07/1645', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45560ed0277a33e9c0623a4231fd41cf9ce802e2111c214768727572fa6f47b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1647, '2022-07-23 04:17:23', 'SALE/POS2022/07/1646', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '003f544950a05418a7b400d23208c42ac9b805f44cc918066ec42a0a4d444c1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1648, '2022-07-23 05:14:56', 'SALE/POS2022/07/1647', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d29333b90acaf2d3352e0241c0e04a1c06885219e275de80c154eb2fc6250b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1649, '2022-07-23 05:40:52', 'SALE/POS2022/07/1648', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b6202868727f59b686049d5999047a958f6e3ddc0bcbc7fe31e6d47a1115dd3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1650, '2022-07-23 05:41:32', 'SALE/POS2022/07/1649', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '88aba9b02277d8cf9f036a8c386f7542b0c58bd5939ea448ab39498084b945e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1651, '2022-07-23 05:55:45', 'SALE/POS2022/07/1650', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '910.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '910.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '910.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '678cfcda94cf43b5599d0505a32f9497e0fb5865ceec1dbf87571e76fe755276', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1652, '2022-07-23 06:46:30', 'SALE/POS2022/07/1651', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '12550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1411d000ca4a5f818a419b49ed1b0100b9e1a4a24ff21e333d48523d3e25bc54', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1653, '2022-07-23 09:44:08', 'SALE/POS2022/07/1652', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'faa2c2f81e094cbfb013c744cef13f7840310d1e3e3078acdaa2b71c8524ddf6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1654, '2022-07-23 09:45:00', 'SALE/POS2022/07/1653', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c36433c9a100b9ed1006da131aa51f3e2fbdd77fc5b4f3c5e4e1b3a0ec66097', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1655, '2022-07-23 09:45:25', 'SALE/POS2022/07/1654', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53b3ca1c23b0a6edbd7cc8c4229e45d9ea060f8b43b70b53f29ad206dadd7b20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1656, '2022-07-23 09:45:45', 'SALE/POS2022/07/1655', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '915b61cf85400348ff4c93c7e1e718383a7c49abb6e5319affe30599f4ae166b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1657, '2022-07-23 09:46:14', 'SALE/POS2022/07/1656', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c917cd24d9721a56880632684eef0c96217dbfcda20cf6d12c55aa970e3a7c79', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1658, '2022-07-23 09:46:42', 'SALE/POS2022/07/1657', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '069d5cead5eaadc5996a2af1b2bd3b3525a7526f3b3c4997994362a6786bd6df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1659, '2022-07-23 09:57:45', 'SALE/POS2022/07/1658', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77d8a6975862da1251e166712255432714018b1bd439f199074ee48340585145', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1660, '2022-07-23 09:59:34', 'SALE/POS2022/07/1659', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '628061ae451c72e52836cc5699fe67c4f750c9719e3252b52a1d4d67f8875e3d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1661, '2022-07-23 10:00:56', 'SALE/POS2022/07/1660', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44f04c0bdb446b24b6343dbf2f0279d011d36d308087275fc21fbd6c898e0fca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1662, '2022-07-23 10:02:21', 'SALE/POS2022/07/1661', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '620.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '620.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '620.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '534014e2941f301e1a54dd12feb4bc54753d2e3590dbb202115699ee50d42527', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1663, '2022-07-23 10:13:06', 'SALE/POS2022/07/1662', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cea39bae6d0807b4d896f24c97330938764e1daa18b5d716f86fdf991a78da7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1664, '2022-07-23 10:19:06', 'SALE/POS2022/07/1663', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0dcf57cd454c6281fca8795352b32aa8b8fe6f498a3551422793dc7ba732e542', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1665, '2022-07-23 10:20:45', 'SALE/POS2022/07/1664', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '419ff86349e35f6c660dffde757658c77dadb5d2af843516c2ac6ec9f7cb47c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1666, '2022-07-24 01:42:30', 'SALE/POS2022/07/1665', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6ef3ad1a5701d6bbeabd39667748d0af08210b768043c2e905216293e042ee0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1667, '2022-07-24 01:58:38', 'SALE/POS2022/07/1666', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9314f013c61f7b191278c2365b5db47b61db6b1382a37fd21e6f4d8d2b9bf99e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1668, '2022-07-24 02:06:22', 'SALE/POS2022/07/1667', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e22346a85c7ff35fe0c51b31d60293ef762d6ab24e1b6671eead0a5ebdc5eb81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1669, '2022-07-24 02:06:48', 'SALE/POS2022/07/1668', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f53358259465e88f98eb96e53e2ee5076f0724a92b871e792a7391f858dbac7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1670, '2022-07-24 02:07:12', 'SALE/POS2022/07/1669', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d6897a3c377b761adaced8c211cb648f7b8b6692e942cbf4e5d8c25b0689c01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1671, '2022-07-24 02:07:33', 'SALE/POS2022/07/1670', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46451c79a0a04b748c9a2980d87eaec59b9efa1865d8fe189aac61539105f691', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1672, '2022-07-24 02:08:06', 'SALE/POS2022/07/1671', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e39f80f5b6d68babe702755fdc8276939917fda5a5f05c123a49b36dafec669e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1673, '2022-07-24 03:19:38', 'SALE/POS2022/07/1672', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e868edd9270e0270082472712fbf39ae53c6a345d7d84e37a2cff25540577a17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1674, '2022-07-24 03:30:56', 'SALE/POS2022/07/1673', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd7e1f3db28f55a893ced3fd2fd58b625cd5657dd023a1cbb5586ca8ba11ff4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1675, '2022-07-24 04:00:11', 'SALE/POS2022/07/1674', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8665b302f63032e3f5467c0c7960cb6c1151d1c968b60f95df8be5f0006346ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1676, '2022-07-24 04:29:33', 'SALE/POS2022/07/1675', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '509695e82bfe8931ea03c6d9ded3b6da45cd5317022a97a12c851c420a9c6005', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1677, '2022-07-24 04:58:27', 'SALE/POS2022/07/1676', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3fe3d17005db87b75401f080c10271dd541f22c3345439b6a4a2a32dd5890b26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1678, '2022-07-24 05:53:53', 'SALE/POS2022/07/1677', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f8abf04bdc4b616c722e572e908b17aef0e7d07331038e58189f6dac578909f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1679, '2022-07-24 06:45:07', 'SALE/POS2022/07/1678', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9398b2f5259d3bafb38f8a332754bc11dc86b0458f0cce052b16941d1008956e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1680, '2022-07-24 08:07:59', 'SALE/POS2022/07/1679', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0258f69ca036e284ffbcf033fa5d03e932ca65255cef0b9b91fa63a318f87d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1681, '2022-07-24 08:21:19', 'SALE/POS2022/07/1680', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '18050.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 34, 1, '18000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b403644e58ba0126e537b0dbb0821df19f31d77c4bd36fd901afa85b78385b8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1682, '2022-07-24 09:46:12', 'SALE/POS2022/07/1681', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4d15bf1025241f5d9397c739dd9f1096fd94db00e1a55169829a438ebbe94f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1683, '2022-07-24 09:46:33', 'SALE/POS2022/07/1682', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15d2a1245e0f3f2c0c8c7fca8709026bc346384fdecce66946562fcc658a7cf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1684, '2022-07-24 09:53:44', 'SALE/POS2022/07/1683', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48393909f8b2d98ee572050672e1b7a40ff68939b7f75d2b11ad51e83ed40003', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1685, '2022-07-24 09:56:26', 'SALE/POS2022/07/1684', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1280.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81372bc2ab5c3eb51a487306d2a3c907244dda4b6d0330032bb03279bb218bde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1686, '2022-07-24 10:33:47', 'SALE/POS2022/07/1685', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2ae345cbacb997f6a539503ea8c8a6bd1b8f461375f9804cf2ab209d7985e07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1687, '2022-07-25 01:45:17', 'SALE/POS2022/07/1686', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e28f78b409b8a5e0f60d2e5d3f606a22b6d43a289405a19f2d27624d446bf43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1688, '2022-07-25 02:25:46', 'SALE/POS2022/07/1687', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '604fc4f87583166761188609ddb90b844e7df797ecbb324c5e934d69206f0b1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1689, '2022-07-25 08:28:24', 'SALE/POS2022/07/1688', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ac5ca2168a2048d5828e2c7c7a5b2878825bde14571ec2daf9ccef7ee8c9a9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1690, '2022-07-25 09:04:31', 'SALE/POS2022/07/1689', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f6d7c1c7085283b22b6b2e8a12b34f4476913e09c89346c1821f86e2f0503f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1691, '2022-07-25 09:18:37', 'SALE/POS2022/07/1690', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c2cc0eff53a204439dd081e8fb8ac4ecdc6e1bd0525a350664fbb2399dcea36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1692, '2022-07-25 09:21:25', 'SALE/POS2022/07/1691', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81aa8266d114002699d7704e1a224313d94743a797dc243f0a9b9e507335b7c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1693, '2022-07-25 09:30:33', 'SALE/POS2022/07/1692', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '34b412b8182c60188d404f817d56650f2ca5385593ec47d97c613f13ee14362f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1694, '2022-07-25 09:48:23', 'SALE/POS2022/07/1693', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '7600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '68f493fa4dc1e54326c12fc411ba29d4f59e74746681e252934ab954c4ce10bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1696, '2022-07-26 01:54:37', 'SALE/POS2022/07/1695', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f962d01a245be93be070e4e21c5879c125ff0b5e85ecb679e2caae1adcf20709', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1697, '2022-07-26 01:54:56', 'SALE/POS2022/07/1696', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50fcf53ac880678c164764f3e49a3916c7b6138f8bbba0eab764bea489decc9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1698, '2022-07-26 01:55:49', 'SALE/POS2022/07/1697', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f42a6e88a09ea7217b81aec9a65e4ebf8021d0f9459173f26a8d0e150f4a1565', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1699, '2022-07-26 03:54:41', 'SALE/POS2022/07/1698', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4562624635287e6b0df7c997c85c1f0f7b04870e937be5681af8ace92521314', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1700, '2022-07-26 04:28:47', 'SALE/POS2022/07/1699', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66114c0dd35d8e9e458b19271a70c10f69d0d7846808e7c8cfe8629920850440', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1701, '2022-07-27 02:23:15', 'SALE/POS2022/07/1700', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7bf5487f847161a2f5c0faaf141c3a4faa56aa9d8822c1463c51c6edbcd555ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1702, '2022-07-27 02:24:35', 'SALE/POS2022/07/1701', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bb6bbfd7a6c28520879b7db826c091101c844ba2d423b0d9a070cc22e568d1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1703, '2022-07-27 04:09:21', 'SALE/POS2022/07/1702', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c2fd8bc9cf93882707697f87d72425f02e769f117970e1bf4e89c55770c17f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1704, '2022-07-27 05:00:52', 'SALE/POS2022/07/1703', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8dc30992cc5013684f4dc9e39ac3e0f812a239eed6ceb18eee294d8bb35d61a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1705, '2022-07-27 05:29:01', 'SALE/POS2022/07/1704', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f8034b1a491008ae205050cea32c2515a0dcccef65c88206a5396cad912588d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1706, '2022-07-27 06:42:09', 'SALE/POS2022/07/1705', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b43b14c27b1d8f5dba1bac97be47fa01ce4dfdfb7bd7399fee9465f2f39f933', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1707, '2022-07-27 09:04:44', 'SALE/POS2022/07/1706', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a195363983adc6d51d72d7b188e2b925f983bd24d5da2ab64e081fb69bbaefbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1708, '2022-07-27 09:12:58', 'SALE/POS2022/07/1707', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e698b546c9aaa19a0945026e210708aaca0bbc788e37f01070cabe620d28c33e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1709, '2022-08-01 00:35:17', 'SALE/POS2022/07/1708', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63506421246fbacea8acddb5b02218909b3cfc398586c1b66093d9b60243cf84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1710, '2022-08-01 00:36:53', 'SALE/POS2022/07/1709', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7a21ebd95db44bda0d66de4071c66250e9b2dfb560f6a44334ea6d72dc7b86a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1711, '2022-08-01 00:57:20', 'SALE/POS2022/07/1710', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '12230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e10c2564a0f3d273138cf31460d64aa02e7618e1bff56bcba6ca2ec74682fbdc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1712, '2022-08-01 00:58:09', 'SALE/POS2022/07/1711', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c81a5202be79ea32fde667a005682b5b7ff1c461adfe83fe46f589e8a72917e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1713, '2022-08-01 01:00:59', 'SALE/POS2022/07/1712', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '319428dc4d290a9aa7e3725f063fed30275a7bbbc4d2fab4474436ae012b5afa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1752, '2022-08-01 10:02:02', 'SALE/POS2022/07/1751', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b1e900db148aadc2b1efe761461dd9bfe93c9d03249fe513b309f3451dffd48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1715, '2022-08-01 01:03:23', 'SALE/POS2022/07/1714', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2fb3c8c29309db075f1ac8c6abf299ead7ca7beeafb60ce8012db6fad92c964a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1716, '2022-08-01 01:28:50', 'SALE/POS2022/07/1715', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '930.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '930.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '930.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0628ed2e031a12bf69bdf8e8b3ba00abd9be65347b8237ad7542c3ffb206e06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1753, '2022-08-02 02:58:46', 'SALE/POS2022/08/1752', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a2b123c207adeeba5dfc40f4490709132ffacb55b56e04300e05956a3059bdf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1718, '2022-08-01 01:33:37', 'SALE/POS2022/07/1717', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6db74fa9555b8342ad7e5bcae87adef6fe7056386b2954df06ea77dcfad64989', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1719, '2022-08-01 01:34:10', 'SALE/POS2022/07/1718', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4dddcaa74eac1918308e55d3a8365d461f574e2d3ff2e0e869dac1bdbeda1039', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1720, '2022-08-01 01:34:58', 'SALE/POS2022/07/1719', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf56fccd8fba0a3de17e1f81ad968a12a4b1913e1d710b345926a3f9915ae2c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1721, '2022-08-01 01:35:16', 'SALE/POS2022/07/1720', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '025e4bc4f257016e5321eb10cf73c5ea93f664d5ea8044a828073b7d895cd1b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1722, '2022-08-01 01:35:58', 'SALE/POS2022/07/1721', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd175b0bbfec7861e77045cd4c4fa6840b19e12adb745bd65b9340ef0da6e040', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1723, '2022-08-01 01:36:29', 'SALE/POS2022/07/1722', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aafdd49dde58f983a430687dfd17a8cef553d1928c778c683d23a6391f8441e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1724, '2022-08-01 01:37:17', 'SALE/POS2022/07/1723', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e3f08ffbe2b8a64adb6c0df2e7876e605b2618ccce92d7f86e74b7f4bcb9a4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1725, '2022-08-01 01:40:51', 'SALE/POS2022/07/1724', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a6dfca0a6d821410be9e098392b16668baee29dd3022f22e31a4df4087b360e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1726, '2022-08-01 01:51:12', 'SALE/POS2022/07/1725', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3220.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '3220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f848bfb4b6291210b9d872dd9c0a7d20f6ccc1e088e95cbbdad7e970d28f0aff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1727, '2022-08-01 01:52:44', 'SALE/POS2022/07/1726', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43ead36e1c5d6e7cd92c68c2757f65fc7ea6db5b1225210253cb75388e565f55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1728, '2022-08-01 01:54:21', 'SALE/POS2022/07/1727', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ac8949445144621fc52738e17f242f7e3a1bae2536b0d0e247cb5d0c4f8bab5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1729, '2022-08-01 01:54:47', 'SALE/POS2022/07/1728', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6f98c15c4b406b5eb1600786c18469e3fb3b3ded9645a40dd05cbd8fc947012f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1730, '2022-08-01 01:55:09', 'SALE/POS2022/07/1729', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed090d321fc28bc3d3d579c0cf65a4c94ec7aec11b81703cedb3d58b942200c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1731, '2022-08-01 02:04:58', 'SALE/POS2022/07/1730', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd62c8881d90deae30a75320b8d7070656667d4c7b1ed9b247bdb6c8da059e250', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1732, '2022-08-01 02:06:02', 'SALE/POS2022/07/1731', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75c4a0b76e9005470b7d8b54de47b93c3083d15eee59d0bc71e3334c862b50b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1733, '2022-08-01 02:07:24', 'SALE/POS2022/07/1732', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '1470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d966805822a79c514b951d97b654f6ef612c004c79cc59d6f3ffe04ac994159', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1734, '2022-08-01 02:10:08', 'SALE/POS2022/07/1733', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '4200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1aa138a02581551b26ba155d65b08e7df5b9d2442e82fa6e9b30d567f5342bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1735, '2022-08-01 02:16:39', 'SALE/POS2022/07/1734', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5850872eeab06152b8cd82449ee737475fe822249a217769994dca139fb066a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1736, '2022-08-01 02:18:16', 'SALE/POS2022/07/1735', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b87df9bee93386ad078c3e958d566b2cd585ac5360c3b14e1ccab3abb75a6539', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1737, '2022-08-01 02:20:34', 'SALE/POS2022/07/1736', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1941b6a0008edc4d22f0d8ed74bb653fcc88a02db6c3583f84727024692d987d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1738, '2022-08-01 02:22:04', 'SALE/POS2022/07/1737', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1570.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1570.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '1570.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67ad3dc7d6b120f35c14f01fecc4eba468b78e00c86bf666f7693ba88421410d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1739, '2022-08-01 02:22:38', 'SALE/POS2022/07/1738', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a88ab1c857c0857ee1c6477f0a34791c384c40f2fa4a88b8d6879ceae501bece', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1740, '2022-08-01 02:22:58', 'SALE/POS2022/07/1739', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15ce0b3db076c09032b9b80ff8790d2f650f7d3a7349d70ecb88045364172fee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1741, '2022-08-01 02:27:45', 'SALE/POS2022/07/1740', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3810.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3810.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '3810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd12570ee041e805db7a42cae61181303e55f08b75a1862e2a2a2381c27c3f68c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1742, '2022-08-01 02:29:00', 'SALE/POS2022/07/1741', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eeac45863fe93bd2d811de4461d97b0926072c2c9369d90911749159a7d10d1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1743, '2022-08-01 02:59:47', 'SALE/POS2022/07/1742', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24c659db5580f25114069bb82c75e5062beecee5114c666579be0ad0845cc29a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1744, '2022-08-01 03:35:16', 'SALE/POS2022/07/1743', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1090.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1090.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1090.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78e991ddd7174a147a0ae7479be1738b3ac03d6b1afd91e15e76cf89c8c88b4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1745, '2022-08-01 03:46:11', 'SALE/POS2022/07/1744', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e2c8e99368eefc6714c33f4e549d5f2fdaa953cfd896f3688bf8784af64fb87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1746, '2022-08-01 05:04:51', 'SALE/POS2022/07/1745', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32fc0cee79f50c5ebb8f4cc8f4aec92b3a2f002bb312facb959f3e434121f535', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1747, '2022-08-01 06:44:02', 'SALE/POS2022/07/1746', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb77379ac6ea0c7780bad552648c6c85ee2a1b347c8d34d198acaf8ae07171e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1748, '2022-08-01 08:18:57', 'SALE/POS2022/07/1747', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1510.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b06c4831b4cec54da58e39c6b5e3b64f3763155ca0613c467f65dcbfdca05b3a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1749, '2022-08-01 08:31:23', 'SALE/POS2022/07/1748', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '163bdd6875d55a76c64dcfa638809ea6e8dfe13b991843318a0119cf7d2663cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1750, '2022-08-01 08:48:48', 'SALE/POS2022/07/1749', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42753f5611a65ddffe2dee8edf687255227dd2cea76b022f45d5b2f939149042', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1751, '2022-08-01 08:54:23', 'SALE/POS2022/07/1750', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '867cb4670ce9d9769ae5c75ef0349786223aad988e1870eaf5ef44b54f5474d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1754, '2022-08-02 02:59:24', 'SALE/POS2022/08/1753', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '900aa13de3cb61d0b1e919f9cb870d088881b6cebd58c93d12d39f5735ab7b99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1755, '2022-08-02 05:02:59', 'SALE/POS2022/08/1754', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55f27824dfc7e199fe69253550c92a1dda8959b20df5bb7eb42a447e57a27fbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1756, '2022-08-02 05:36:33', 'SALE/POS2022/08/1755', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a69a1b3eaf87dced438dd2cca0a5779b4ab388157709d7d63d758db96a376135', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1757, '2022-08-02 05:43:40', 'SALE/POS2022/08/1756', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f008084bdf5e35066f5628c47135ac5359b8687b151fd9ef2df39ef388e78e6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1758, '2022-08-02 07:32:29', 'SALE/POS2022/08/1757', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f297dc38c805dd5cd8d4fb257fa5b174344b25467a8a01456c9cb6adb617e0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1759, '2022-08-02 07:56:42', 'SALE/POS2022/08/1758', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecc20538a0a0c589bc5be3ff5c4e4438c8801d44d2fba6410792c4d73cc098d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1760, '2022-08-02 07:58:15', 'SALE/POS2022/08/1759', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '656c7829f80b7b49edbf024eaf3e77f1316bdf2c257a94ea7453b85e55c13f03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1761, '2022-08-02 08:48:39', 'SALE/POS2022/08/1760', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11ab9fa1f9eab615dc095490b35eca8a5d6ee48862387a1da2e270d7b1efbf02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1762, '2022-08-02 09:32:34', 'SALE/POS2022/08/1761', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40ce308adfea144652a924fb168c3529c4522b3dace9d14f9c268fafcf620b4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1763, '2022-08-02 09:33:46', 'SALE/POS2022/08/1762', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48ec1ff3dbcc6efdde81cf0e0c672a8209f5f0e60e18b50a1afc0f68b644a21b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1764, '2022-08-03 00:02:07', 'SALE/POS2022/08/1763', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2370.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2370.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2370.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f168f6b18d11e41a7b3e669264f3ac349bdd3decc8375b39355eeb39e2784080', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1765, '2022-08-03 00:54:17', 'SALE/POS2022/08/1764', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '527d96b13abb4a4179819d62cca84f27b73980f11ab01cf60fea242eee361738', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1766, '2022-08-03 07:01:46', 'SALE/POS2022/08/1765', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e327444cee99a3292aa91309afcb7b9b42be6505abca1d262d62ba3226d9fe5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1767, '2022-08-03 07:29:48', 'SALE/POS2022/08/1766', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65d8b46b1013276672879d2fc8e16fdcd3dcc0fb31e6a637c639382efba2aff4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1768, '2022-08-03 09:02:06', 'SALE/POS2022/08/1767', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '416489dc7989f8f009559f3519c51aba2f35b8b2a7fa511f715a497c9ff8d68c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1769, '2022-08-03 09:04:00', 'SALE/POS2022/08/1768', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd571131b830e93d015b0e9a58a17cdeedbe679d6e6f40c352aae4f82b43d4398', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1770, '2022-08-03 09:35:36', 'SALE/POS2022/08/1769', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '0100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e25fce8f0fe5511910ea816b5843fe1cb18692fde5140026028870941a7aece7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1771, '2022-08-04 08:09:37', 'SALE/POS2022/08/1770', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '983f318da9697e6132dafe32c474fafb0de8f4fbd50ca3d2d5e37666f9537153', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1772, '2022-08-05 01:45:55', 'SALE/POS2022/08/1771', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a4ee28e6a40b7817c2b1a7de3c574705ba24d66dd30d42685395675a8151eaa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1773, '2022-08-05 03:17:51', 'SALE/POS2022/08/1772', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05674b275486858ff419d881309b791f64f053c1a9cea2f2f4c17064dcb22dce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1774, '2022-08-05 05:11:55', 'SALE/POS2022/08/1773', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82928d8a3daa0d2ebd06d7a9bdcb2a4d876714454a3725fc054e6f82e055c2e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1775, '2022-08-05 05:14:02', 'SALE/POS2022/08/1774', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ad080a4c8cebc365f5a845f06c29c503b0eb38fac7ba951c7ef6ee354e394b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1776, '2022-08-05 05:50:17', 'SALE/POS2022/08/1775', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09206a18e51e0a57d28b9b2771d153b5e3b766b72c4041c31a022baa09be7c0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1777, '2022-08-05 07:19:36', 'SALE/POS2022/08/1776', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f60e235fa5d4656cdcebf37d938ad95a92e9139b5a71e9b01d08ed649f87be1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1778, '2022-08-05 08:37:29', 'SALE/POS2022/08/1777', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49f6aeb4f491e3a88bdf3e61957cd2ff955cd2c14300ee1b544cd4e58ce97fa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1779, '2022-08-05 09:09:43', 'SALE/POS2022/08/1778', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99b433701f1f9c0b14445b41ad2b98835ba3296bf3986e43b2dc2fd0c8361f48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1780, '2022-08-05 09:29:39', 'SALE/POS2022/08/1779', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77fc7021694bfea7fab9c74c0e7c95831e49b4cf5ce1e7a6050796efe0bfffc1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1781, '2022-08-05 09:56:13', 'SALE/POS2022/08/1780', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14ef2978c2277b7ac4fc371bfff5195a3984486a05edc78c32a51ea413bf0289', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1782, '2022-08-05 23:54:13', 'SALE/POS2022/08/1781', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '069188b4f86687bb3722cfc9c7b42676b2a41534da3fb618623effac492e58e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1783, '2022-08-06 02:34:47', 'SALE/POS2022/08/1782', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e9f732e32d7f8a06f4b71ff964358028aacb37f7e83433924429aa5831864b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1784, '2022-08-06 02:56:55', 'SALE/POS2022/08/1783', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '600f502a3bc88db6cb87985c0afc3420f879903570bcd65b912c09cecf3a5f37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1785, '2022-08-06 04:27:38', 'SALE/POS2022/08/1784', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2fc4178c3464daf52d991e2424c2df33be8e26d1e4d2057258da365361a30127', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1786, '2022-08-06 05:10:19', 'SALE/POS2022/08/1785', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5217274ef0b277904738abe1b853b3272605aa6199a0d39bd3a14fe218e07dbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1787, '2022-08-06 07:10:08', 'SALE/POS2022/08/1786', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b45aaebbbe1c105ab38393ba737ab1f2d80e5be1404937b0cbc6651c89d52ac5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1788, '2022-08-06 07:12:04', 'SALE/POS2022/08/1787', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c906c1bce7e9c61a21d1b37c4c74d1e89487e3f7f6f0e775d61a23b669716978', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1789, '2022-08-06 07:32:53', 'SALE/POS2022/08/1788', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e764bb7b5f7ee243ea7ad55f3f47184e7952a2c4e5ea6c01f64523de13e5657', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1790, '2022-08-06 08:25:53', 'SALE/POS2022/08/1789', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f76cca1800ed598661a19bedf47545be243ad1c63dbb2578acd340f3867403f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1791, '2022-08-06 08:29:30', 'SALE/POS2022/08/1790', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '113f031e8ce915a7b6f5c6de4ca669436ccc69db9c8ec417facac560be839578', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1792, '2022-08-06 08:52:28', 'SALE/POS2022/08/1791', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '059d1b8d9299c8346d6e6fb337f1a82290f3904c3099ac0c4536133ad3d63f82', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1793, '2022-08-06 09:04:41', 'SALE/POS2022/08/1792', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd1f4b27dbbaecf3661cfd5d79d8211a9e1f4a1bfddf677b282e92badab5846d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1794, '2022-08-06 09:10:16', 'SALE/POS2022/08/1793', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31992f373c20464f24016463d1c8883687a69cb41d30229573f3f39df2e1819c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1795, '2022-08-06 09:45:44', 'SALE/POS2022/08/1794', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31556caaf1d6f5b3ae328745ab8f9cb9fb61d831526ca5336c0ffd53e7ca5759', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1796, '2022-08-06 10:06:57', 'SALE/POS2022/08/1795', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c49896354dd040c80cd238baea445f5c66922a195ff012760e9d5fdf7ac9441', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1797, '2022-08-06 23:39:55', 'SALE/POS2022/08/1796', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '1000', '1000.0000', '1000.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd55e602b4cd35bddbdb2db9a4771dfce710d031c663084d819424662d04ad42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1798, '2022-08-07 00:38:07', 'SALE/POS2022/08/1797', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5300.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f20bc89f242fff89ec4a3413f1c5963183ac8f985399e4079f5b8ebbd4301b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1799, '2022-08-07 02:45:29', 'SALE/POS2022/08/1798', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d2be188674db4a086c96c70f608e97586f955e78ae70b48bb0ee5fa3abb6ef9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1800, '2022-08-07 04:49:26', 'SALE/POS2022/08/1799', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb19d0d13b3787c96236953769970c8f5554323780fe5b50c1a8ee5ee4210609', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1801, '2022-08-07 05:20:44', 'SALE/POS2022/08/1800', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fceb00cc5602a819e964e834de1dc623bcf0f947bb93a841998674fadefbdf17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1802, '2022-08-07 06:33:46', 'SALE/POS2022/08/1801', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6400.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 33, 1, '6300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7400603b8788583acdd672a1d98d480b88148f92f97307e72e89042812f8f17d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1803, '2022-08-07 06:55:57', 'SALE/POS2022/08/1802', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd12c4fa607a4f6086eff350672ec6ac4cbe5d7660b56885e48ae5ebb2d7c14f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1804, '2022-08-07 07:08:59', 'SALE/POS2022/08/1803', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80c2f9e017dc004cb4ff7ad939131f8662c8e7b1bb9e2954398334c8a8245227', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1805, '2022-08-07 07:30:54', 'SALE/POS2022/08/1804', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e6dbbb2fe8a09b2ecb590fa20c57048e9dc2c57ff3122cd9f2a0c6249131e74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1806, '2022-08-07 07:36:47', 'SALE/POS2022/08/1805', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3cc384f253338e825c3f9b093d2d75b856c8a9d8c80a72a119a17bbc3473671', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1807, '2022-08-07 08:40:40', 'SALE/POS2022/08/1806', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '848f53abb300bbe5c1e5b9eec7811eb325bf843c83afcfceeb8bd26939fd1fd2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1808, '2022-08-07 08:48:49', 'SALE/POS2022/08/1807', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '184050581229b5cce3413ee1984d7b6a3b29d4d3c818eabcaad8ae0220a8cce7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1809, '2022-08-07 08:52:30', 'SALE/POS2022/08/1808', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8248f75cea8cad9eb21da26204e2d60246e109effbdac5f1f1b8588318a21f32', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1810, '2022-08-07 09:42:17', 'SALE/POS2022/08/1809', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d4f9f4a188f4fa54a61fd66fcb2b6225f21dfe8b025b0994e7a34d67b2fdd8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1811, '2022-08-08 01:13:59', 'SALE/POS2022/08/1810', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74afceff8385f4c6fe74c6c627ecb5c7c12be6a789d20616b8d7fb720a4b4b89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1812, '2022-08-08 02:09:10', 'SALE/POS2022/08/1811', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53082e3e5eb0df3ab73307bdd352dc9d83ddd1abf20c1bc3b42bfddf84138294', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1813, '2022-08-08 03:59:59', 'SALE/POS2022/08/1812', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '4850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da77489fef92e9deb0ebb04c79c13277ca66217ce72e77d8142a78a742716953', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1814, '2022-08-08 04:39:56', 'SALE/POS2022/08/1813', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcdc464ee5b1eefca2e2a0353cc10f5343587d365b7f2a3435c9f40489bd4196', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1815, '2022-08-08 04:46:14', 'SALE/POS2022/08/1814', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d3df25ff5bb5b4b8e0f64b17ea34d7c68993fe3f5664a91fce63a9c097e0ea7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1816, '2022-08-08 06:06:36', 'SALE/POS2022/08/1815', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4bf5bf1c7f67333407cc2bf64206a53ed03d3838d9b18fa03252bff27d59b1ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1817, '2022-08-08 07:26:59', 'SALE/POS2022/08/1816', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08b8017d2f66d369c3a35f858ad6f12cba35a91941cc3de377168765681d8fa7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1818, '2022-08-08 07:27:31', 'SALE/POS2022/08/1817', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1faf85862c089385c886b2d84a6ba9d100ffb5796965a07f7f2bc4c4095a944', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1819, '2022-08-08 08:04:12', 'SALE/POS2022/08/1818', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bc4be26a6f00ab19e26dd00fabf33b62865d63d95aa2d3e137796e964b8cfbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1820, '2022-08-08 09:26:26', 'SALE/POS2022/08/1819', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10cbc73e99f2b6a7d2d3bc1563a83ffd954ec53e2db66c50281d83516b170065', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1821, '2022-08-09 03:26:39', 'SALE/POS2022/08/1820', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b407070cac03c750d8f60ea158450e59f434c7b16d64dd8b5659fedff7b2471', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1822, '2022-08-09 04:16:34', 'SALE/POS2022/08/1821', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '430.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '430.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '430.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bee7e55756dfee5e44eb18ddacd8555ddc699c30d7a34d372786f778781765b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1823, '2022-08-09 04:57:34', 'SALE/POS2022/08/1822', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdcf6460a184751026d23c482a7d0a25d4d63d9da7dc5ed2cba5785fb81f557c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1824, '2022-08-09 05:03:57', 'SALE/POS2022/08/1823', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a30eccb748c2bb1bbb48b416eb1dd6d6e6bf99398568ea9889dad5dc2c45f48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1825, '2022-08-09 05:21:30', 'SALE/POS2022/08/1824', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8895f36d7667a4c0b5027cb18c73acb2df3ca9c7458b324f597ce0c9d3ef6ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1826, '2022-08-09 05:50:05', 'SALE/POS2022/08/1825', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1bcd7523970e535332d4dd04f4b24f1adcacb563f27fbaf0e44db90255662d44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1827, '2022-08-09 06:36:06', 'SALE/POS2022/08/1826', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d30579b724699fe45c76ab753174c357840e404eb3b2bcef1f7152f4c5e2c71', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1828, '2022-08-09 06:46:11', 'SALE/POS2022/08/1827', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8aa63d2f7cd6d3f845654611b75e9144752a2c6be8ff21ee95b8025e5357f787', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1829, '2022-08-09 07:16:24', 'SALE/POS2022/08/1828', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '18190.0000', '0.0000', '0300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '17890.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '17890.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1afe909671ef4c72ef6b7c75c26b463108a47c64a0d19da370117008eeaf31dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1830, '2022-08-09 07:44:07', 'SALE/POS2022/08/1829', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5b6f154ff37a725bfdbad052522a32f2a393a75a31669d10e88547c009fa114', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1831, '2022-08-09 07:56:32', 'SALE/POS2022/08/1830', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c08c9b84657d0117b9817b739f448d5606d10be583623241042af2e9f32e0e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1832, '2022-08-09 09:27:07', 'SALE/POS2022/08/1831', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1770.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1770.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1770.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3db3a563aeebfa3b0beb2d3d1bfcbaac1f9e22f09f61efccf44764313b40fc1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1833, '2022-08-09 23:39:32', 'SALE/POS2022/08/1832', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81d8ef90dd393dbef0f9bafab79df963aa2030bbc645443fa140a84de2dfea1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1834, '2022-08-10 00:33:44', 'SALE/POS2022/08/1833', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7fe649cc1585d90504b2cc214a42dc94b31736103f234e648e2e43e20901f43f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1835, '2022-08-10 01:17:58', 'SALE/POS2022/08/1834', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ef3d7df53f1930987cd336f9371870feb09e81177942f8ff63307ff011b964f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1836, '2022-08-10 01:38:56', 'SALE/POS2022/08/1835', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7834b4778b49c254292638fafc3494f1fa2ddbc17894e7d942fd323836c083e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1837, '2022-08-10 05:18:41', 'SALE/POS2022/08/1836', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30b3c5a2592e6ead808714457fe2511ed9ef89af64b7d75a63a59457dfaf70eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1838, '2022-08-10 05:57:22', 'SALE/POS2022/08/1837', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6ab4a54fa0324b45e50a4e5b5615146ee5cf4909e936ffca1e7a30fa5f125a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1839, '2022-08-10 06:01:18', 'SALE/POS2022/08/1838', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b17181d11f6bcf3c9ab3dc6ce65a5d9783539ade40f226398c28ed6dbd54c4a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1840, '2022-08-10 06:29:02', 'SALE/POS2022/08/1839', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3999202d46f8327c4df68e36d7b125b1ae5b901157debd93c24527d559bc08e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1841, '2022-08-10 06:41:25', 'SALE/POS2022/08/1840', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dead03b5ea0635aaec6e251ab09a2ee2ab27d8c4aaf042ee50535f67b4caab88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1842, '2022-08-10 07:01:31', 'SALE/POS2022/08/1841', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6cd18d02abfd9d2ae2893498f32cd07873795aefb0403090713c2391018ee52', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1843, '2022-08-10 07:16:14', 'SALE/POS2022/08/1842', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50f699fe59b562cc1d91b096d4139d9cf9917b61a44735702caa8e470566fcd9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1844, '2022-08-10 07:17:09', 'SALE/POS2022/08/1843', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94e3cb7bc498bea72ce5deffc6c566d65fa14f796994e2609ef94f27a13e4866', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1845, '2022-08-10 07:32:12', 'SALE/POS2022/08/1844', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca42dbab96ab9b12111351d90fb2e8d090ce527a81adec6cfcae34b824c5154d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1846, '2022-08-10 08:05:45', 'SALE/POS2022/08/1845', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69f5ef4fc9e7c906b3c88bda9651bcb1433ae719a9fba0ce5032c36870fdee90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1847, '2022-08-10 08:23:11', 'SALE/POS2022/08/1846', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f03b66acf28152add9ed14a3a3b758d6409dbbaf93b3601156aa429be319320', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1848, '2022-08-10 08:24:16', 'SALE/POS2022/08/1847', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eaeb8707a87ae437da2f7669b74d5e9a59d744499ad48e2bcb86d3c598f6452f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1849, '2022-08-10 08:34:15', 'SALE/POS2022/08/1848', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9810893131f9aefbb89c4d30ee9b0d8f0126ece315bc63830ec47c1e48a910df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1850, '2022-08-10 08:50:26', 'SALE/POS2022/08/1849', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f208600290665121765cb4d27a4d5602b313e6a20ab227b6b808be61f9ec0fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1851, '2022-08-10 09:01:37', 'SALE/POS2022/08/1850', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '8000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c9c57e5240bfa414c95b40c43652c50c00b0053df41ee4b9829e908a565c80c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1852, '2022-08-10 09:07:56', 'SALE/POS2022/08/1851', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09551bac195b1a6eabea6ec965f7e088ac5889f1975090a103b77c7d2b51e030', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1853, '2022-08-10 09:18:19', 'SALE/POS2022/08/1852', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e2955ea86827224cf2b28fe12c027fad72cf45377e7416186ff7a256477b403', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1854, '2022-08-10 09:22:04', 'SALE/POS2022/08/1853', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43514f8aa399496a07080bb0d3571d1f2029c6e9b762c6d49e13b8213a32d5f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1855, '2022-08-10 09:41:46', 'SALE/POS2022/08/1854', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae05bef03fe3df4678c3683a330b4228b1947954507fc5e20abe064c94026465', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1856, '2022-08-10 09:43:27', 'SALE/POS2022/08/1855', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '610.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '610.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '610.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cdc3e731c06fd3fffe3bc740e136fad951e16a324166900f1b2a5ea922023b43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1857, '2022-08-10 09:48:02', 'SALE/POS2022/08/1856', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '5400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d5dd0a99c5dd96985f590d615b5e90552e08cdec89deadf0959b280b6243531', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1858, '2022-08-11 01:09:55', 'SALE/POS2022/08/1857', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '9850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '897233bbad8ad9a9c8bc947fa797514add31f2028e583559da2af97971e10347', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1859, '2022-08-11 01:53:00', 'SALE/POS2022/08/1858', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e74b5d474a3ee953065b7672180916a4bd6b5080074a49629bd07c9d4e44508d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1860, '2022-08-11 02:06:56', 'SALE/POS2022/08/1859', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '30', '30.0000', '30.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c0d414f1635564f02c2e5c84edfcba3c196b646c9901874033266718117a6a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1861, '2022-08-11 08:40:30', 'SALE/POS2022/08/1860', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cd7775983b9b71267aeab45a9b2ef124fb39e29a08cdc32b578cdcd5e5f9dc6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1862, '2022-08-12 06:28:53', 'SALE/POS2022/08/1861', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '5550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '227b6b5bc220dcc1f35f1290872dba5a0b1d49e9ea60276bb504f18382b54a87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1863, '2022-08-12 06:46:16', 'SALE/POS2022/08/1862', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3710.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3710.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bf27e4273b57f69c8133abcffd3e19f305d89ccd4b80623901c526b0109c671', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1864, '2022-08-12 07:03:29', 'SALE/POS2022/08/1863', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '5150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55d994b502ca9b92c9cca33c4d871dd0255322b138c47908ece1e87e36d62f9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1865, '2022-08-12 07:46:48', 'SALE/POS2022/08/1864', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6590.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6090.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '6090.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78348d41d30ecaaf49b6e6ac9a34965257002cde93b8a9e8a34007b625dfabe7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1866, '2022-08-12 07:48:14', 'SALE/POS2022/08/1865', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c68176dbb087611f53429b3dfd57488629b825fed0d6e5fe846b75c06b73d07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1867, '2022-08-12 07:49:12', 'SALE/POS2022/08/1866', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16c47b688fa640135f3709c277f572d4b05d0cf006510752a09012660cae40f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1868, '2022-08-12 07:54:52', 'SALE/POS2022/08/1867', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f017906bbad7eb69eac18d08319b729958f328d19d1da9a9b809ec0171e2d963', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1869, '2022-08-12 08:05:05', 'SALE/POS2022/08/1868', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d114bc8c83ae61e0cb7331191a859172c048ad9c3f70da7d34d741c92863252', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1870, '2022-08-12 09:00:17', 'SALE/POS2022/08/1869', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd65f58dcb4b6a119b7d3f43906f328acff5170024f213880a4072726c8d139c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1871, '2022-08-12 09:33:52', 'SALE/POS2022/08/1870', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28b34398902d626582347a5481057bbbb33fa80825e898b5ec83d45ad600fb74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1872, '2022-08-13 02:40:32', 'SALE/POS2022/08/1871', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '610.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '610.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '610.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b7855f9708f37502a0a7f21988b6355da35273e8f8b558e1b6f26430f32a89f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1873, '2022-08-13 05:02:20', 'SALE/POS2022/08/1872', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec995372e1b2c28fc894e2da57099b270b57376d5340a50fca9ec73febf988a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1874, '2022-08-13 05:05:41', 'SALE/POS2022/08/1873', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4eb5e83fa3f2d6b2efa07a6aeb9a266ea6a44b2f1bc0db60a81a071d3a5cc2a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1875, '2022-08-13 06:32:26', 'SALE/POS2022/08/1874', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c65360e9f19f7bd62ae019c62d3bdc45df97106f2d529b5849474ca7edfd635', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1876, '2022-08-13 06:33:28', 'SALE/POS2022/08/1875', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4b8fcc4fd09866026cc68777d404e483bbd6656bc9cc439308de2d0760b44bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1877, '2022-08-13 07:00:07', 'SALE/POS2022/08/1876', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '820.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '820.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '820.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96585ded8ab5940d56361f789c6c83106da57b6f6785883c2f067f76752278f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1878, '2022-08-13 07:03:41', 'SALE/POS2022/08/1877', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c7567e734eaa99c79e67f89c958d629c78dd0bc78cdd33125445f2592bcaa25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1879, '2022-08-13 07:05:36', 'SALE/POS2022/08/1878', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '555135c44d0ee4dee36bbd918e27731c794db1515916d8837f0a59a478118fbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1880, '2022-08-13 07:18:59', 'SALE/POS2022/08/1879', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09b8659ba3b564ced7b5bf0c51ce2e7baac01fcaf32d62cc56d4eda2f9839862', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1881, '2022-08-13 07:50:29', 'SALE/POS2022/08/1880', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '1600', '1600.0000', '1600.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'due', 0, NULL, 2, NULL, NULL, 2, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8de6de7a39dc38c1bd1ee81258be39ebf64f9f177366101a8d953de812bbc36d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1882, '2022-08-13 08:08:52', 'SALE/POS2022/08/1881', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1988b987f6f9246e39f5c062296e9df4fdc8ee5bb584bbe31dea3a02eb20487', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1883, '2022-08-13 08:26:33', 'SALE/POS2022/08/1882', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc1b72ed1d3110a917a51446302148ecf1444e12000c34399a240977cc8e5da7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1884, '2022-08-13 08:34:23', 'SALE/POS2022/08/1883', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 20, 1, '9400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f4ceeb055dbf1f9bf297f259db218ab55b5dd0214b6c5f3ac7680e9d69c1ea8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1885, '2022-08-13 08:38:52', 'SALE/POS2022/08/1884', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '125345603e2e5958bc4f0c13b3130eaeffee9b419de3a4df0183c871f8fb1712', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1886, '2022-08-13 09:14:00', 'SALE/POS2022/08/1885', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa9d287592474002c5e6deec401cb74a80a7bcdaf26b1ae37cce4c19b6fd58c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1887, '2022-08-13 09:19:14', 'SALE/POS2022/08/1886', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e150a02d990b4e1041fb9b15c934821c609810b93639a2e39cd20f897aec7d95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1888, '2022-08-13 09:30:52', 'SALE/POS2022/08/1887', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24046216d76d3543e3eb010f4b0507f324d617a3767b71e254244203042ce306', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1889, '2022-08-13 09:40:01', 'SALE/POS2022/08/1888', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e5d59091b40060213519d102fcd148850e651c6585ca70218a78a855379d0a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1890, '2022-08-13 23:19:06', 'SALE/POS2022/08/1889', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '610.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '610.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '610.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b98cf0ff13e76e74550960dd54a4111f7ed268dc447e5014c0b5a4b69a10d631', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1891, '2022-08-14 01:08:57', 'SALE/POS2022/08/1890', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '896f193571be2f0cb9be94c7941f1422d8e8cace25bd2c6f27f91497dfd36996', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1892, '2022-08-14 01:09:17', 'SALE/POS2022/08/1891', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e9b8d54a5d4dbb687c3e0e01b68724f99154fd34d4232b429336af395c83a43', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1893, '2022-08-14 03:03:32', 'SALE/POS2022/08/1892', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e2d94d77669a95a159fdb28a0bc6a49d3765891119cdbd4d70b64f65ff5a274', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1894, '2022-08-14 03:24:50', 'SALE/POS2022/08/1893', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0485552931275abafc7ed5a2e012e2e3dcaadf592cc8ad4aaa95bd7f7687741', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1895, '2022-08-14 03:49:34', 'SALE/POS2022/08/1894', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e44de9b2b309cd1bdbe58340f0ad7ad3af2fe0bf648fb7dbdb627e066de7c4b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1896, '2022-08-14 04:06:17', 'SALE/POS2022/08/1895', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '369821666b57273ddc661b0dc6f8744a66da8a68a8baa5b9ce44b3d690d9986d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1897, '2022-08-14 04:10:11', 'SALE/POS2022/08/1896', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a054fe251db6747f54d9c14ac36d76e338f269e3074d1913429cc26f080d9ce1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1898, '2022-08-14 04:13:35', 'SALE/POS2022/08/1897', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a1fc3035471973c6d756802d216012a1eed9a450662e1f73ada7cbe89023653', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1899, '2022-08-14 04:34:05', 'SALE/POS2022/08/1898', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2006952131a2586a8c62142a10947276d827f1400153292d804d2d7b60780c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1900, '2022-08-14 04:37:31', 'SALE/POS2022/08/1899', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af697e4887ac66f95310497cc404eecf6ec038c2d376aab551d6680fc1370d7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1901, '2022-08-14 04:41:11', 'SALE/POS2022/08/1900', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '1120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4d3e467d0ea580bb9c5659514444453d99144403a3c13593ca9b57cbc9d135b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1902, '2022-08-14 05:35:01', 'SALE/POS2022/08/1901', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d8c988d3ea68997a238442f613492728dc24a8dbfc3a709302e17b09ea8a3d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1903, '2022-08-14 06:03:55', 'SALE/POS2022/08/1902', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70bf9dd529e3bb716f3d7282fcbe1904c71869df9260b3145ea85d33cc1575d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1904, '2022-08-14 06:43:52', 'SALE/POS2022/08/1903', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '098b8fb7ae2c8db69adfe4bb1d5927e8e76379105035e7be16aa4d89912d9d89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1905, '2022-08-14 07:01:30', 'SALE/POS2022/08/1904', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e03c8253e1bb50c43425498c0337e76fe3daf9af09ac856177df107ff4c55f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1906, '2022-08-14 08:13:58', 'SALE/POS2022/08/1905', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f583dd1c1d70bf52e6d7b854f7eaafaab06528d614e931167eae1fa70caf337e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1907, '2022-08-14 08:15:11', 'SALE/POS2022/08/1906', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '409a90a599164459d530118b0f4733002600aa0c28aa65f5b1214f496fd297d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1908, '2022-08-14 08:15:28', 'SALE/POS2022/08/1907', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e2c2fe87b057c910e24d4217191ce16e9e29906523d938e0cfe996ccaa7a318', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1909, '2022-08-14 08:15:59', 'SALE/POS2022/08/1908', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e2bfb0fba3d903c71b7710e52274bfefab921be81c7ccc3c0e8275721838499c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1910, '2022-08-14 09:30:08', 'SALE/POS2022/08/1909', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '25750.0000', '0.0000', '1600', '1600.0000', '1600.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '24150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '24150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21b44602f3f6e7dc7cb064f91acf9f3249ee482f80b0baf1e36ae37fb23e304d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1911, '2022-08-14 09:31:52', 'SALE/POS2022/08/1910', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb5513ea605aa9dd9e8f365b3bca3c944e723b3cfa4bf7175792115b876ce8d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1912, '2022-08-14 09:43:13', 'SALE/POS2022/08/1911', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f3af6d9f17f75ec575653ab19b8feec4edbe1817bd7a10f40953ef33a1da69a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1913, '2022-08-14 09:50:38', 'SALE/POS2022/08/1912', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '560.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '560.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '560.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c58c6d7dcb737f69341e62b8935000b5e2ee31ead7c6a78a4b497b10dbac4428', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1914, '2022-08-14 09:54:34', 'SALE/POS2022/08/1913', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6726a8429c42e33ef57f136d991239a28f7ec80fb1aaa0a0532bd4fba44ada6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1915, '2022-08-15 01:06:06', 'SALE/POS2022/08/1914', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c0807b5108ec7e3282d4e4e56aab083a5bf957779d4b5899bf1fcdded939123', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1916, '2022-08-15 01:59:36', 'SALE/POS2022/08/1915', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5811468bc1b4f1c2e91b460d858de44e24c5c7a75e7d90561bcfdae35d1dc9e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1917, '2022-08-15 02:28:40', 'SALE/POS2022/08/1916', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '407293bd4cb24f759f8975a1b21bcea74970514a77bd1fb863cfe1e19e10cd80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1918, '2022-08-15 05:11:52', 'SALE/POS2022/08/1917', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '751e7f1d05117d81d9b0fba8fc591b4746660c9968432236c2c72a406bf4b505', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1919, '2022-08-15 07:05:00', 'SALE/POS2022/08/1918', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '6650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f3aa2b133594c79950c51cff1bb94f2e6b4fc476c609db8a47331b48d90df98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1920, '2022-08-15 08:19:41', 'SALE/POS2022/08/1919', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c73fc4e39f02917cf644c70f9745262921630a4a31210e004266cc9851bc3a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1921, '2022-08-15 08:51:34', 'SALE/POS2022/08/1920', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2da4a819bcee0002e6583b8bcae150d7eee9f3652df0806e476ebe89eeb3c6b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1922, '2022-08-15 08:56:15', 'SALE/POS2022/08/1921', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ace2ff8be001ec475350c053276d07feab672e69c1368462604e3e2a89c7d63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1923, '2022-08-15 09:51:13', 'SALE/POS2022/08/1922', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bffd8520686b31e66d36f09dfb33db2ba38e886900a7d7c5b74af299389318f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1924, '2022-08-16 01:20:34', 'SALE/POS2022/08/1923', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fff75bfe19d5b20e14a311355bd37e3f284fa354f7b7abba5d15dc169c8269c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1925, '2022-08-16 03:04:33', 'SALE/POS2022/08/1924', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cefaa352fcdb80b1b543a91e58ce56e4718dbc0d6d1f4df43bfc2a4953540ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1926, '2022-08-16 03:32:23', 'SALE/POS2022/08/1925', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48ddc14b788e6fdbeab90333a94b593bfcafcf747ab09a6c60c5e9e5b5b18944', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1927, '2022-08-16 03:34:45', 'SALE/POS2022/08/1926', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1fd81045575cb140b2bcb32cb181deea7f8de58508e02df4a926161dcd1fc54', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1928, '2022-08-16 04:07:55', 'SALE/POS2022/08/1927', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23f2850fffb58793fafd8db3703e83b8e473f4acb01f68ba348b2daff20c573f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1929, '2022-08-16 05:25:12', 'SALE/POS2022/08/1928', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'beca2149718fa98fb5e9b02b2d10cafbc3d16ef9b4d81c027294d8f30c28d029', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1930, '2022-08-16 05:25:25', 'SALE/POS2022/08/1929', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50baa0d29adb8f83d7e28a8d3ad002be05d08afa76215a9560e9d0737fe627cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1931, '2022-08-16 05:31:27', 'SALE/POS2022/08/1930', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dea9ec3526eaebff18de00a5e2c0286333d16953797e7f40f0c30951b8207afd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1932, '2022-08-16 05:36:12', 'SALE/POS2022/08/1931', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3270.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3270.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '3270.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b0e797bbeefcc6bb867a57aaecbecec11335f5f2ef0213b1bad37d0b7a2dd07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1933, '2022-08-16 06:22:59', 'SALE/POS2022/08/1932', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80b81d74ddffc7d64f6428e663666f5877282508ba7a60298796b6a62b9aa345', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1935, '2022-08-16 07:45:19', 'SALE/POS2022/08/1934', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '5250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3293f70e57c0fc0f5e119768f96c18dcc4c4beff5f7ac7decd356e488f4238ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1936, '2022-08-16 08:18:59', 'SALE/POS2022/08/1935', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d4b303c4a18dcb824bf7bf30dfd8de628715e70720e73bedf69225ba7c84703', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1937, '2022-08-16 08:27:32', 'SALE/POS2022/08/1936', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '193ee3d732921fb181cf666e03a0e20dcaf1cdeb2229dd2b6b653dd22cafc93a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1938, '2022-08-16 09:04:27', 'SALE/POS2022/08/1937', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8585dd801c35a24537dba43f74c02f60a63bb4623105b35a6584af1be048e96e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1939, '2022-08-16 09:23:29', 'SALE/POS2022/08/1938', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93dc6dea376a053e551804f6c953f30716a0beb201fece0f1e24ff4b4cf1788a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1940, '2022-08-16 09:52:09', 'SALE/POS2022/08/1939', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dbf35cf3ba182098ae913010bd724fb83bc87d084a772b869a766327669d41fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1941, '2022-08-17 02:06:47', 'SALE/POS2022/08/1940', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '5000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e0055350c722348ebe740b39c12b13b867bcdb85bfb989ad182c8f9ac49c0e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1942, '2022-08-17 06:23:31', 'SALE/POS2022/08/1941', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '768bedb2c9189af2eb4079e84a320578abed03ef2c0f31b536a52b1d90434ca3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1943, '2022-08-17 08:27:28', 'SALE/POS2022/08/1942', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8fec96149e54f091bc4f0a3c4802b78eb11ecf48e4f60a872c241c8c3458eec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1944, '2022-08-18 01:19:40', 'SALE/POS2022/08/1943', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76c6435b5f1c5b48bf07ee6573751d834877e67008b0b02848ea181bfd0b5a68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1945, '2022-08-18 01:46:47', 'SALE/POS2022/08/1944', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '710.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a2909c25f1462b1bdffae7d49022a155984734bdfee15f398af5076272b3ffb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1946, '2022-08-18 01:48:47', 'SALE/POS2022/08/1945', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1940fbcf79b5dac3f9add37b93c91c81ac4d29e1b8bce6581f92f5dddcec3f81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1947, '2022-08-18 04:43:23', 'SALE/POS2022/08/1946', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7f97bb5b050f1bd6f81d99c376953ec648dedcff7fa185bdb1b9d600d39b479', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1948, '2022-08-18 04:52:18', 'SALE/POS2022/08/1947', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd13eed3b34d1b8524e16485e2257d50eb310f22451b03d8cab59f1b3fae88cc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1949, '2022-08-18 07:49:04', 'SALE/POS2022/08/1948', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea93750dc9d2427f22309d7f012ac887a62b3f24c953ff284da943926d451906', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1950, '2022-08-18 09:24:37', 'SALE/POS2022/08/1949', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '530.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '530.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '530.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd22b618e1d9c83cd52d4930713e1dab9e319ba894a7ad37ea5703e4a44ddeeeb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1951, '2022-08-18 23:54:26', 'SALE/POS2022/08/1950', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b420eaed96e4f1bc9cac4375b5733bf8f468733820af559e51acc36db94459a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1952, '2022-08-19 00:49:31', 'SALE/POS2022/08/1951', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '456a97068ca343d84ef23e576cf30cf26ddad8496c858307ce4ec621ca00a867', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1953, '2022-08-19 01:47:36', 'SALE/POS2022/08/1952', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82a4f827d2ce135d99b3fa1ad9a862dc847a8da482178169be1832f3656c4e65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1954, '2022-08-19 02:42:59', 'SALE/POS2022/08/1953', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '18050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '18050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '18050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e59d8a462513ad5554cb83c21c8e385fdf87adaa940bb58caf167ee2c81601ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1955, '2022-08-19 02:45:43', 'SALE/POS2022/08/1954', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9c9772bc7a4eb8c13e49e051dc900e67880b6f0a2a5bcb29b3f9878db13dc64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1956, '2022-08-19 02:46:24', 'SALE/POS2022/08/1955', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '532be494b64826c9ee4a610976938f05f9f68851dac2eaf52ecd2070fe8ba849', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1957, '2022-08-19 03:42:46', 'SALE/POS2022/08/1956', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26477b5201dbc4b78aa55dc07a34f497139606b66660d8da2fa8a7bd13f8d8f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1958, '2022-08-19 04:18:04', 'SALE/POS2022/08/1957', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e88ceb252815cff8e9f4ae18c164bbbcd736f33125ca0de450e36498762259ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1959, '2022-08-19 05:02:31', 'SALE/POS2022/08/1958', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6bd259c369cf56db85f6e3d29282291da6e1420a58b3a5746986a50985859b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1960, '2022-08-19 07:13:34', 'SALE/POS2022/08/1959', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d38768cc630102c58692a24efd9f636a4121d6c8371b1b7edfdc0e93361751c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1961, '2022-08-19 07:35:34', 'SALE/POS2022/08/1960', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b753524a3246ca3584373514624a8ac2c4c421e3dd9b12c564dc4808e3dcd009', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1962, '2022-08-19 07:39:04', 'SALE/POS2022/08/1961', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '935a71ec6e08454658192da351b847878fe0bbede883ff41f340083b03a11fe5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1963, '2022-08-19 08:11:25', 'SALE/POS2022/08/1962', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed4485ca8324e4a1946117d6dd649a653300ba9a2eff9cc87b8f93f4e60fd521', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1964, '2022-08-19 08:12:12', 'SALE/POS2022/08/1963', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '501cda8d54b6b579c95f953c950606e037484e2bdcd9078842d9152d13d51ac9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1965, '2022-08-19 08:13:42', 'SALE/POS2022/08/1964', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b7adc7b8a149728c36b7e3425c8b225f418332099d40ff4a4f3bb5f999b1e0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1966, '2022-08-19 08:22:56', 'SALE/POS2022/08/1965', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff27dba850db6a351cb6f7d536260f8366ad1021ce407218ac065c4775231238', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1967, '2022-08-19 08:47:12', 'SALE/POS2022/08/1966', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9087a33f0defcf6fa3b577121bf05537b893666b04f6671d558004c8dba0653', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1968, '2022-08-19 09:09:40', 'SALE/POS2022/08/1967', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '818060929cf721a32a9e9d7e742c9e4935755ab176e9ecdb2a8e70d0f16663b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1969, '2022-08-20 02:36:05', 'SALE/POS2022/08/1968', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a3e628f8b1bd77edcff82a505fee14636b02d6e5c840af1061d441bbf6a4c14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1970, '2022-08-20 04:30:02', 'SALE/POS2022/08/1969', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6f8b50d634a6e4ddb154b1c28dd7863de881fbd67b7e0c88dbb86ccfa880b57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1971, '2022-08-20 05:12:37', 'SALE/POS2022/08/1970', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93d53b0d2237bacf8c61f97d23168e515ee4749a6dcbc21b8958783cc9b47211', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1972, '2022-08-20 05:39:39', 'SALE/POS2022/08/1971', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26bef14e782d28914c6f997e6a42e81f92c298b11986d1c2bf56c2ef802dda8e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1973, '2022-08-20 05:43:07', 'SALE/POS2022/08/1972', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b5ed29d32b66ce17200c1ee98e49e30dde76af353af70f4033697e8d234aab4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1974, '2022-08-20 06:28:15', 'SALE/POS2022/08/1973', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83303441084cdde2f7c96f9247b1cc9b546d5aef04e9b47316340b986bbdcd42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1975, '2022-08-20 06:55:06', 'SALE/POS2022/08/1974', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f667ff6217f4b33ae96e7b31958c2d3367176af204c545302f42243abd0cde0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1976, '2022-08-20 07:14:09', 'SALE/POS2022/08/1975', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22246e5a156ec7de07fea97efcf3fb367b396a7293e2d453f90e60514b5b8abc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1977, '2022-08-20 07:35:22', 'SALE/POS2022/08/1976', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e34d214e5856a9ba91c3203ebcc4d1a0e6d16c68c3b3488b2e775d79893dd304', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1978, '2022-08-20 08:19:37', 'SALE/POS2022/08/1977', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '667475ef1c44b99886260c2f16c30edd696ddfd8bf2bac1b1612cc5256977191', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1979, '2022-08-20 08:27:33', 'SALE/POS2022/08/1978', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c6a71648a50e93991c51c8471707e55eaf96e8c4c74a441b37a69a2f7012553', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1980, '2022-08-20 08:30:42', 'SALE/POS2022/08/1979', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27bbf5c23c71604f0879b9eb282545cf5b1e99edbbfcda1f0af3edbf12956f9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1981, '2022-08-20 08:36:12', 'SALE/POS2022/08/1980', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f78b00d8bfce5cca48a69759d2fdabad8ea3e3c7bf26202a08c14910d31233f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1982, '2022-08-20 08:43:37', 'SALE/POS2022/08/1981', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e33f81ea6df428a6ee6a2fe6deed6a48f4318840bcb6ad9403f2d4d2a857973', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1983, '2022-08-20 09:03:13', 'SALE/POS2022/08/1982', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ccb9eed6d5a15486b3e9487ce31bcd80d08b31ee38a04cc7ad39df0aa6ec17d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1984, '2022-08-20 09:06:40', 'SALE/POS2022/08/1983', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81076d1ad8ca15761a8bd2a908f643f091aa4c8af391b7d8c24faf9f2dfc0c47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1985, '2022-08-20 09:23:58', 'SALE/POS2022/08/1984', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '618432021cf01afa866a0995e84fd7a6e449168e42ca4fe588b65419900c1fa0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1986, '2022-08-20 09:29:39', 'SALE/POS2022/08/1985', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc2145527b76ef1ef10af935b29ca8f465f0188773b233d630cce76977a816ed', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1987, '2022-08-20 09:52:25', 'SALE/POS2022/08/1986', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59a97efc82a4c19cbcbcafdcbd7299697e34be492c3ef367c0d218a0b8b86f1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1988, '2022-08-21 01:26:16', 'SALE/POS2022/08/1987', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00701e4bc27bc2a5c0919ec127e0276cb47108cfc538082dadf14897217ec0a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1989, '2022-08-21 03:34:35', 'SALE/POS2022/08/1988', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '325e26fd926a3accf0dd03badfede705c57108622a54f7f744830f1687ce3a1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1990, '2022-08-21 05:24:01', 'SALE/POS2022/08/1989', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '6600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67c27705b4536a40ede44ae4d563bd487b4147020edd6645eb89c70b8d81c705', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1991, '2022-08-21 05:50:32', 'SALE/POS2022/08/1990', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51c0fedd6a545991f0e0acef1a7691e439dffad96a6bb2c40422331f8d3200e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1992, '2022-08-21 06:03:48', 'SALE/POS2022/08/1991', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a44db9e540688ff60fbbddec3c6a49b41d76e60e4caa84cdc7a0234ca704a7fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1993, '2022-08-21 06:24:30', 'SALE/POS2022/08/1992', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90917c8e4397b7912ca7b21d05331fc20250762e302f0d7ea0d9616456016fb9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1994, '2022-08-21 06:33:29', 'SALE/POS2022/08/1993', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '312d1a40d69920c6fa91e18f0d1e5af26d4787b949042b403565c6a060514a1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1995, '2022-08-21 07:14:00', 'SALE/POS2022/08/1994', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '11800.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '11600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ccafe0fdf0c41f129c69220c9ac8dbb2a8a77ea2ce8cb65170a58c78c7ef8c13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1996, '2022-08-21 07:15:05', 'SALE/POS2022/08/1995', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '420.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '420.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '420.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '265ef4ea0ae3d095d813774fe3b76e93f179ac7f6f0b9a15241b44bab6a411f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1997, '2022-08-21 08:33:27', 'SALE/POS2022/08/1996', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd78eeb3fd6ae5ba254822f1f3e257daa3a84d73de0d23e8c6bff89830a81abda', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1998, '2022-08-21 08:57:25', 'SALE/POS2022/08/1997', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4ab4f12d75c929a30b1490898ff755d51dcdb7b53799e9595972bbfe73565c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (1999, '2022-08-22 01:42:34', 'SALE/POS2022/08/1998', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd0d6d46607c666bb6b09e5d75d1421bddf77c7392776df07fc9a4f74b2a7087', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2000, '2022-08-22 02:09:17', 'SALE/POS2022/08/1999', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'faa3da42f63373969637f885ad0a707a2df8afae1059d601e5173b3a5a29c931', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2001, '2022-08-22 04:13:56', 'SALE/POS2022/08/2000', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21c3dd82f4afbfb3632127f52403f3c1a8a658bea89e43cbdd2916ebeb2a0017', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2002, '2022-08-22 05:46:29', 'SALE/POS2022/08/2001', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7fc59c5aa4259d19f1c4de81f846de1a875feeba2e555a044151d9603e644b53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2003, '2022-08-22 06:25:11', 'SALE/POS2022/08/2002', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'afc8b5f2cd9f81ecb60381c10e601287cf6fd2fda665bb5c2a3774ea46e68136', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2004, '2022-08-22 07:07:01', 'SALE/POS2022/08/2003', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99c31c49d0612b22ab1a2710ebeb918e3dbe879580c8eff3d64d15c4c4ec558d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2005, '2022-08-22 08:56:47', 'SALE/POS2022/08/2004', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e78e5b66913db0922951d9319b15c519a2800cf3b602ff720c51c2dc8b41949', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2006, '2022-08-23 00:45:43', 'SALE/POS2022/08/2005', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '33100.0000', '0.0000', '1180', '1180.0000', '1180.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31920.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '31920.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da42aff9852b726bb627a0b0f22895361829dfb813f56c6588574f2681655953', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2007, '2022-08-23 02:01:05', 'SALE/POS2022/08/2006', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2910.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2910.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '2910.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd3f1816c947b2d20ed512cd929f27fc9581df80f4797238f90fa35cb3a22985', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2008, '2022-08-23 06:03:23', 'SALE/POS2022/08/2007', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b98441f3837eb10fb7d91c34fe81a057b303bc48b3ed536684a5169fb5b4f01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2009, '2022-08-23 06:25:50', 'SALE/POS2022/08/2008', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7dd21212ba95f6cdfacad0f59fce66949e3886ea3658df17f4adce07b9e59369', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2010, '2022-08-23 08:51:46', 'SALE/POS2022/08/2009', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1ee2b826db304db4b7a1e0a916aa38534b01a4c087969ddde303fcdc1ec7c4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2011, '2022-08-23 09:15:26', 'SALE/POS2022/08/2010', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9b8662ad705cee120045257ef33d74636a12d53cfeed7dab2305e5ff1a9ec10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2012, '2022-08-24 00:22:50', 'SALE/POS2022/08/2011', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf2cd0d53af93016bdf8d947c07d541b6fa35e258a95f985094565b43bcb474f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2013, '2022-08-24 00:49:40', 'SALE/POS2022/08/2012', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff49564b91e00179949e6653fb25c31a5fe21ed6e71e7290f70a319337ee5f89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2014, '2022-08-24 02:25:31', 'SALE/POS2022/08/2013', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb985dfbd34dfaf02a25b219522055489821b2a63ea48f7ab76aafa62ef0bea1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2015, '2022-08-24 03:30:22', 'SALE/POS2022/08/2014', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bae67c3c32260b18aeaa184eeb3c1955a10d442fc8d3c9750a9b8ac04afe418b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2016, '2022-08-24 04:39:43', 'SALE/POS2022/08/2015', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '8000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c9a1b441e9e074a762541590c69f8e7b2de21802ca75b11eb5fb9d5aab22b16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2017, '2022-08-24 04:40:59', 'SALE/POS2022/08/2016', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e41bd599c5bb1eff58ed05456a0de09986c4eeb746fe9665e1491bfa7099447', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2018, '2022-08-24 04:55:39', 'SALE/POS2022/08/2017', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3609e556d6436e4c2edb0ea115bdb9bc04dfd64234fedcf9853fbf75801a5c78', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2019, '2022-08-24 05:08:00', 'SALE/POS2022/08/2018', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1707423bce0a7492f3294cc2c15a9a5e713cd2da597f7153b7797b078b3c514', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2020, '2022-08-24 06:33:15', 'SALE/POS2022/08/2019', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd99c552cfe2f84e6bb4f53d940c4862f7b680decc4c8c75967a3cfa8079f26e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2021, '2022-08-24 09:01:35', 'SALE/POS2022/08/2020', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf2c3a9cab80dfc25563b4ffe33ddf925be967c6d5bcf7caf644c9d733881b48', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2022, '2022-08-24 09:41:19', 'SALE/POS2022/08/2021', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2410f164f571b1ea7cf086cf523090d9bfd7ea6ffc9017332623d06a582c6985', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2024, '2022-08-25 06:49:11', 'SALE/POS2022/08/2023', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ac1da6f44d126eff2edfccff19023c8da6deeb6f2acb4571fbb0dfd8bca8199', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2025, '2022-08-25 07:03:06', 'SALE/POS2022/08/2024', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c00b042e9c50e445860b32e34140939f459ee6551e6d6caa3b34f2ade066fb07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2026, '2022-08-25 08:18:43', 'SALE/POS2022/08/2025', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e15b521c2f5fb2698dddc2f23a6c4f41dc7c6fff106546b2afc12b4551f941cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2027, '2022-08-25 08:58:11', 'SALE/POS2022/08/2026', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6e41a21223c4f1b2aebd38743be809d2df3a61714842da90c878fdfb4abaf95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2028, '2022-08-26 03:07:21', 'SALE/POS2022/08/2027', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f8e3966cef2f5b79fbb9ae7676648edd53bb80c121127afefb22c314e9002bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2029, '2022-08-26 03:41:56', 'SALE/POS2022/08/2028', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '760.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '760.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '760.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81fe752aff7088af8cdf1e7e39a3da4e8a5916152ddbb095d03734649feb61ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2030, '2022-08-26 06:25:39', 'SALE/POS2022/08/2029', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '5150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca5333e7345421d7a8ed233404de6c057b20f5c2b9bcb1cf9867ac378e2fcbe9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2031, '2022-08-26 06:28:28', 'SALE/POS2022/08/2030', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f4e249249981479fb880392f0addc5cba74066ab2288985a21cceb2870dd2f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2032, '2022-08-26 08:50:31', 'SALE/POS2022/08/2031', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ecb1fb58f6df8fb28ea80cebdf87c82f8d8d034e42c240a6b652f0806ad2f02', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2033, '2022-08-26 09:24:05', 'SALE/POS2022/08/2032', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d7daf9e7c225429a93342cc6913cc8b3807311c5ead9f046e755fe18dce0c4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2034, '2022-08-26 23:50:31', 'SALE/POS2022/08/2033', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1e00747a5e904430b31f9b9f92daa810d973213a4f23e1a82cd5d8ccf9caf62', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2035, '2022-08-27 01:56:19', 'SALE/POS2022/08/2034', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ba7548162b667ad92e5b55976b7d09d2ea98ac6238c61fd669f849adbaa9f57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2036, '2022-08-27 02:28:30', 'SALE/POS2022/08/2035', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '39fa7491a8bce6edb382e3bf3e654303b306722da61ded45ca011a6abdbece13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2037, '2022-08-27 03:18:46', 'SALE/POS2022/08/2036', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4fdff17c0c7d021f9214c628b9ca6214aac9721db56b27b65ba1e4634561bca8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2038, '2022-08-27 03:41:52', 'SALE/POS2022/08/2037', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bebf0394f3c5e283cbf1d3f67ec5c6daad4f39e836a2b210f5f70069a8f55092', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2039, '2022-08-27 05:39:27', 'SALE/POS2022/08/2038', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4140b71bd5622ab6a351ab5d08e742313f85db5eb2016200f710f33142a7e772', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2040, '2022-08-27 06:10:42', 'SALE/POS2022/08/2039', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4d13a33d9e7c4dd2ae762524ad3d17b2d2bfec5502a7cb31675bbd763f5dc49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2041, '2022-08-27 06:50:14', 'SALE/POS2022/08/2040', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b3f2e28e601f628ec86ca006b37dbb893ab7db9777bbbddc4ce3b07c7aec6ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2042, '2022-08-27 07:02:01', 'SALE/POS2022/08/2041', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df2d570ae2d8c7e30fac3259fabcf5493c4f8058eaadadaf030f6745f7cc1f06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2043, '2022-08-27 07:32:52', 'SALE/POS2022/08/2042', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'daabf6679599d421c87b301d59fde2be9a887f965e097a71ce24c86c575e953f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2044, '2022-08-27 09:02:59', 'SALE/POS2022/08/2043', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '926a17594027ed68dd86df20030c5e7b96686a8d589e66cd4dae52cd09446ba2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2045, '2022-08-27 09:46:43', 'SALE/POS2022/08/2044', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '280.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da1095a638a141d1e8c7ebb5a417e8f0c73a52e7b3964e468f85c8d32051d7f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2046, '2022-08-27 09:47:10', 'SALE/POS2022/08/2045', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b60235f6f53181916d404126b96ce8ee6e48e6b21a332006e1c53f25689304d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2047, '2022-08-27 09:56:54', 'SALE/POS2022/08/2046', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b66794fd6fc9808296f9f8c96922041d8ea97c7e7a2455010a0c71b816a45cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2048, '2022-08-27 10:18:57', 'SALE/POS2022/08/2047', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2415de844636709b56b2b7b4f37557e25cbebfdc754f673f60901354dedc1a07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2049, '2022-08-28 01:19:29', 'SALE/POS2022/08/2048', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16f07c35d818acd7b2a05c973f0283e8e9378252acca750fd4711c8b5de2d25b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2050, '2022-08-28 01:20:04', 'SALE/POS2022/08/2049', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e799e878c2ea77261379e89a24648b7019b8f3a0347258d91541da3a3a909afb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2051, '2022-08-28 02:00:52', 'SALE/POS2022/08/2050', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1280a515bc88f245e03748b78867400ee17315c6e17f2c3200a6b9822b6ee11a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2052, '2022-08-28 03:13:43', 'SALE/POS2022/08/2051', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bf4db4cb2bf4f77e3d2041e65dce8e75f6225240734ca63bc90536befec994c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2053, '2022-08-28 04:37:46', 'SALE/POS2022/08/2052', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9b2d3ea0282e5b3b4b57ef44c0f88fa47a59f6121fb6c66d248106b78a492dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2054, '2022-08-28 08:37:33', 'SALE/POS2022/08/2053', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2062e5d075f1308c8d4016abb6bfc1a2bfb9aa1e375e5be631850459984a2602', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2055, '2022-08-28 08:39:00', 'SALE/POS2022/08/2054', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac9017fbcba56b2375c921a0c81be2d4459d6edbcd2238708b1c17dbbb7f3e47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2056, '2022-08-28 08:51:21', 'SALE/POS2022/08/2055', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9594d104ed95cb9339c608ae9fc747e8b0e14913d79366f2957800f2e76a700e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2057, '2022-08-28 08:53:55', 'SALE/POS2022/08/2056', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '417335521f6539097047f9ab5b0b09f71636f7070c4a3a35e77f6f41bc8ac9e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2058, '2022-08-28 09:08:02', 'SALE/POS2022/08/2057', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07b520c0e321d13040007c5210ec29f95699fb3819cdb93a71f1a9ecf16417c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2059, '2022-08-28 09:15:20', 'SALE/POS2022/08/2058', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78bb6326fe0392d4bcbff524f2baa6f127934a9a9beab83a712c5e18d4e9987d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2060, '2022-08-29 01:14:39', 'SALE/POS2022/08/2059', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '5000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c50ca94b6a3f4261186fc6a635465a7b59bcbcd5b3a74174d95ff6182d73505a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2061, '2022-08-29 04:04:12', 'SALE/POS2022/08/2060', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8afd500ca7e0b3dbe1d604c388c492c23f0ebb66dadea068abe6c850e4f47558', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2062, '2022-08-29 04:36:50', 'SALE/POS2022/08/2061', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e28e7aeda41ad6f324a301fe8e26c87ca8b07b75429b260691ea51772f8a512a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2063, '2022-08-29 05:13:03', 'SALE/POS2022/08/2062', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '8250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba8cf10b108ee14e05311170ab52f85a6c168e6aff0d32ea80a4fc0cf9dbe7f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2064, '2022-08-29 06:23:14', 'SALE/POS2022/08/2063', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6c611fb97c85429fe304c2be5f0f9b22635a877cb6bdb584853cfae579cb248', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2065, '2022-08-30 00:24:53', 'SALE/POS2022/08/2064', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9be7409881a9a221797f47dfe41158c375660a425f3eb2f44a7402fe1a909e22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2066, '2022-08-30 00:30:40', 'SALE/POS2022/08/2065', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1e8911ba9e27a6d140c878d9daf93a37a7259e0cae23b0129373f14aaa16e7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2067, '2022-08-30 01:10:22', 'SALE/POS2022/08/2066', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e0f77fed555700c2223b0e3d3ee9a1adb5856a8d9e9ff49a09c4458d3c7a778', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2068, '2022-08-30 02:13:55', 'SALE/POS2022/08/2067', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '473866010a97b44f822acabe11dbf356248361a545e48064c72fbbc6204dd8af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2069, '2022-08-30 02:27:15', 'SALE/POS2022/08/2068', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c25c4e671cbb513cf20aed1e72fc5e4bdbcbcb6efa8a2d4f69e71b961939549d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2070, '2022-08-30 05:02:22', 'SALE/POS2022/08/2069', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96a43cd234a39c282be2e04a2ad90ba674eecfe39935223b8233ca097592982e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2071, '2022-08-30 08:37:35', 'SALE/POS2022/08/2070', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00cf9f34ab63d3a7b829c5439c74972bd3a229431d48ab4789c922c5d6e6d321', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2072, '2022-08-30 09:04:07', 'SALE/POS2022/08/2071', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f3444aa7ec3e38408000ed76130cc12ed37713d1b78cb914a014dbf31db72ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2073, '2022-08-31 03:02:20', 'SALE/POS2022/08/2072', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7393ed9dcf49338dc994a93dd3eb7bae284daa1aa27863389649f33a85f7ba17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2074, '2022-08-31 04:12:40', 'SALE/POS2022/08/2073', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b101988cf65eaa431e033adf94e8b8b7ebf11bc652518c01c3d79c1ed4de9b5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2075, '2022-08-31 04:19:45', 'SALE/POS2022/08/2074', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ea730f4511fa41f1c1a42b2183e86be6d946cef26feafa65a0b593ba22496340', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2076, '2022-08-31 05:28:06', 'SALE/POS2022/08/2075', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ecf77488d4bd98b69a2383fdd8461b1db9ba3ad1dffac517fe2f0e91ca32bb3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2077, '2022-08-31 07:25:36', 'SALE/POS2022/08/2076', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '166b07cd1ff245f511694353d3a81670e7e8fab330a6958b6679ed9cdb538ce6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2078, '2022-08-31 08:50:24', 'SALE/POS2022/08/2077', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e7e7559c14316c713e2700bbd8d0d273e366315fa43fc4ea4fc6287be86dedd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2079, '2022-08-31 09:26:53', 'SALE/POS2022/08/2078', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec155ac487b88c2a9de4a8b6d104c70399f075a1c49236e0e6747962c2bdfe50', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2080, '2022-09-01 00:15:55', 'SALE/POS2022/08/2079', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '640.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '640.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '640.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1057033bc836944acde119e4fce228eaf10ffa5dc6fc6276b818dd18451bbf66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2081, '2022-09-01 07:55:55', 'SALE/POS2022/08/2080', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eca633de6a249b43ef0e98305bec26ae5f2de69e3704ed3af48afacfd32fd759', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2082, '2022-09-01 07:56:49', 'SALE/POS2022/08/2081', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ab1c2aa6b05fcccb31542137fbb9e5da74473ee4fdc3a46cbec37201922c96f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2083, '2022-09-02 01:04:15', 'SALE/POS2022/09/2082', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82f402d68b03fe4abeef11a9a66bedf18acd4632dec7b99ed70e03d047e76b9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2084, '2022-09-02 02:32:56', 'SALE/POS2022/09/2083', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cef26da08203ac8db946c836bc220aae6ed3ee7e56593831fd0105c35bd73c6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2085, '2022-09-02 03:47:04', 'SALE/POS2022/09/2084', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75f0911d73882f7ec19422c3c3c2063271fd777e450e524095cc27fc3238af52', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2086, '2022-09-02 06:26:30', 'SALE/POS2022/09/2085', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0fe463a494248e8627788e61bf7ff1010cadc2a746ae630983c73ef990d2ec84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2087, '2022-09-02 06:43:20', 'SALE/POS2022/09/2086', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '728cd78f4d11648b63c8d232ece19be0aea8273c4dffea731b64928b58c95d97', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2088, '2022-09-02 08:23:34', 'SALE/POS2022/09/2087', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93867fcffd65bfbf247dbeb3a89159e302700a902131edc984626ec0d42b8636', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2089, '2022-09-02 09:07:11', 'SALE/POS2022/09/2088', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35bd0c3d58f19a951171d7ed74ee8ba75ca3c448ed439f61d2c30923224bc6ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2090, '2022-09-03 02:31:28', 'SALE/POS2022/09/2089', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '616465afc2447721bc4d744c0838113d82f3a3723d3e393d6584f5c90278b5c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2091, '2022-09-03 05:14:38', 'SALE/POS2022/09/2090', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2ef64565426357270fe585849acb3d8087ded3045f1d9dd8a0f30f7e6af634b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2092, '2022-09-03 05:20:47', 'SALE/POS2022/09/2091', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ec491bc0f8fff3331d960a6f28d7a9ed971c6dc97dafbf62b3571dfe54daa9a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2093, '2022-09-03 05:37:36', 'SALE/POS2022/09/2092', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83de5a9f1106c5dab035cf73eea4d812510269f2637aab37e4f08b1f799f7607', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2094, '2022-09-03 10:26:14', 'SALE/POS2022/09/2093', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6fccb582a6f1779a8644063b6a0737681199ba6f1f8474514729c234f077509', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2095, '2022-09-03 10:26:35', 'SALE/POS2022/09/2094', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d767c0190a986ecf25944679d18f95e7601252d98c8845948cba8d25efcb868', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2096, '2022-09-03 10:27:01', 'SALE/POS2022/09/2095', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95f66072da116d277ae8f5b2f9b8374fda7cc6e03653526384527e7fa1a49ce1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2097, '2022-09-03 10:30:05', 'SALE/POS2022/09/2096', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5710.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5510.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '5510.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '960cc07ba13b5e5b746a6404990b88f38ba8c0d7fea36d9a75cb121045d8fa2d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2098, '2022-09-04 00:35:17', 'SALE/POS2022/09/2097', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcc14ba38331cef7d7f13de0b814cf80b86d97ae3de511b4725a93d7be883e1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2099, '2022-09-04 06:29:34', 'SALE/POS2022/09/2098', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ce257229aaf2a2229d5d177e41c0b714ff8d482e37858ae56f3b95b883c3137', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2100, '2022-09-04 06:46:03', 'SALE/POS2022/09/2099', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91417bd51a9096e5bf7db841f04e4cc4d5c0258e3563b91aa60061cac4eb9984', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2101, '2022-09-04 07:08:57', 'SALE/POS2022/09/2100', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7482546521c4f19a8e0709e4d6dc53bae7d01d728c3fc7bdf4ec5418b41f8e31', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2102, '2022-09-04 07:46:54', 'SALE/POS2022/09/2101', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26b638b3f4f4bfd21e7af3415a495ae0a240cd745b8fa6414a34d946b2dd3490', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2103, '2022-09-04 07:51:51', 'SALE/POS2022/09/2102', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '139443c84380c8468b53d56ab0fc68b734dd83189f00f3409a62a5bb12bf1cb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2104, '2022-09-04 09:16:32', 'SALE/POS2022/09/2103', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5381892828030b26ccb28e8bbfea27ec7dd6222a88817fe50273714cd4eaa701', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2105, '2022-09-04 09:58:37', 'SALE/POS2022/09/2104', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e163c1abdc6279ceb308ab686bd123d924e305f3ae884aa952ed65a7fde4f4c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2106, '2022-09-05 02:09:49', 'SALE/POS2022/09/2105', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd4abd44431bcce9b702f8633a9b20abb5c826bdc9a205e465e87e0d94fb162a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2107, '2022-09-05 05:45:40', 'SALE/POS2022/09/2106', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '920d7e3153aa2a24bd94ce6d98275cfd0066824bceac141d6a860eca83940a1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2108, '2022-09-05 05:55:19', 'SALE/POS2022/09/2107', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cedb6a8253fd7e3e309b2abb56d3274ad3a8ab917cf4f4b37a47419346da180a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2109, '2022-09-05 06:21:00', 'SALE/POS2022/09/2108', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b8e10914f9505a1e52752617c8153abc3c9c38905b189b875c28ba8150cd9e8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2110, '2022-09-05 06:46:32', 'SALE/POS2022/09/2109', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36c953eb4d4a738cb64b779a8d2fe917e9ba4a1fe2eed22e76b85c9555085a6d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2111, '2022-09-05 07:10:20', 'SALE/POS2022/09/2110', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3eb9d1495a333fbb0e52c6504d305979fc27161b25fb96d6eaa910c0349f708a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2112, '2022-09-05 08:43:57', 'SALE/POS2022/09/2111', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21618534abfbe2e78b2ff7b5e213c2487c7aaf271d2f3e41199acb83c26aa0f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2113, '2022-09-06 00:14:03', 'SALE/POS2022/09/2112', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a87a0ede53516086fb7df1a25622c6a33a73def789f47c93c5b5662453efe010', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2114, '2022-09-06 01:35:31', 'SALE/POS2022/09/2113', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43a410aa83acb9db44f7571a3889e2bec7c395975e248ad2693dbe913b842d7b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2115, '2022-09-06 01:37:49', 'SALE/POS2022/09/2114', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc422a71cbed4190e67893f8998a6369855a90e318b33657f96c2340d5ccda64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2116, '2022-09-06 04:50:40', 'SALE/POS2022/09/2115', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe90c50b52703ebfd6a542fa000ca1244b92d90e20d83cb9741f4722402467ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2117, '2022-09-06 06:12:48', 'SALE/POS2022/09/2116', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5edd74398eb25b35433b053dbd0b2efab941128b7322b8fd76f25e00c65103d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2118, '2022-09-06 06:48:45', 'SALE/POS2022/09/2117', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9aa173f794b0d8f79c193af6bcc01c447eb7dd9c24636975c1380bd41ac7792d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2119, '2022-09-06 09:37:44', 'SALE/POS2022/09/2118', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0f5940857c9e202891d0fef1c4572cc2931ed7d2421d8223422f141d1062542', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2120, '2022-09-07 01:55:08', 'SALE/POS2022/09/2119', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c5942f683c95e81bd8b245a334bee12d113525558e671c5fc3439d1c9d9b2f6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2121, '2022-09-07 04:35:31', 'SALE/POS2022/09/2120', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eca146a0f96e62deec170dfee3503e41ad3e17651e9164d45a1de16a90ecf1b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2122, '2022-09-07 05:33:35', 'SALE/POS2022/09/2121', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '633209eede902f92d14ec60f31b5425d0eb59e1ad6ae95c9893cf39500dde9ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2123, '2022-09-07 06:47:33', 'SALE/POS2022/09/2122', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19d63cc3b2db3accfe9b6c5ae078049bd275403756b7b7a876b45496c12b0dca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2124, '2022-09-07 07:56:27', 'SALE/POS2022/09/2123', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ffd1d2a7f13fd8f84be11d1d66491a404d2af3f62ea2bc2930ba1275334dc12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2125, '2022-09-07 08:20:58', 'SALE/POS2022/09/2124', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a11f1cfb81d6e347c90f6413103ef3144a3724f6f6f9c19ea3ec4e0f63eb8aca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2126, '2022-09-07 08:23:50', 'SALE/POS2022/09/2125', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99aab2d735d73722290e51b8597570ec571de1e6bd8f959a0cfe23bbb44b9442', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2127, '2022-09-08 01:25:12', 'SALE/POS2022/09/2126', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b30aa99d400f6d7d12a405e11fea58106d3219c308605a1d0233261d2dfddab2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2128, '2022-09-08 07:05:01', 'SALE/POS2022/09/2127', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '687d9ed0e76626603dc4674b5c0124050cf1a2eb3669e91b3a0e1aec90168182', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2129, '2022-09-08 07:05:52', 'SALE/POS2022/09/2128', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd9bff1f46e3c151f80d9c6da28b6f4bf0e0e87058e86bbfb5e1cc1666bb1a547', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2130, '2022-09-09 00:21:06', 'SALE/POS2022/09/2129', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5def881f13f0096033edb2d452254d2f78a6b7615190c8f8d585da5f11b992eb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2131, '2022-09-09 07:32:12', 'SALE/POS2022/09/2130', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4580.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4580.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '4580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3f66ee91dbfe494611618390aa5bf9413f13e8de489a9155f4aa22e32a83960', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2132, '2022-09-09 07:43:45', 'SALE/POS2022/09/2131', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00064b3f85c1de21f9c8f09c85c25902e2315f1cefc8432a44db32bd9ad729f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2133, '2022-09-09 08:04:15', 'SALE/POS2022/09/2132', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59df4efb37755c181e6c913ab93e4cfaded152a9d5a2c861705da76765baa22e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2134, '2022-09-09 09:01:22', 'SALE/POS2022/09/2133', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c93ec9febc9b0a3aa0cefa10574de6caf0c49af5fc8f7a26ad9aa066470384f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2135, '2022-09-09 09:37:55', 'SALE/POS2022/09/2134', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a373172641d7dda28e2590d1841fe4464175c736c2ba605234f49424fb7250da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2136, '2022-09-09 09:53:59', 'SALE/POS2022/09/2135', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7642b4814a05dd9b0d398b0bda2494177b3bff65bc9a5f1b4c61132da95aa2b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2137, '2022-09-10 01:05:08', 'SALE/POS2022/09/2136', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4153bf38d5e10a9099c841e1abc58ddaf07da079d1588dd9e997c1782159ed98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2138, '2022-09-10 02:25:30', 'SALE/POS2022/09/2137', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a49a39933373708273d5afde2a7e3bbbad81fc4ada39b9d355caaedbb6fca94', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2139, '2022-09-10 02:56:53', 'SALE/POS2022/09/2138', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '16fcb0b52ca4659e54464cb3b831a64b98d1198156897ddb6235c042e02d89d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2140, '2022-09-10 03:37:06', 'SALE/POS2022/09/2139', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '5550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd3a6fa8e3be249e9fc0272fd1bedfb259a76246024f14c56ef708cbe1c53cfa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2141, '2022-09-10 04:23:28', 'SALE/POS2022/09/2140', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b4e90f401a57ce387287c62f21b709a61ed85bd7132bd9cfae49ff1313d36af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2142, '2022-09-10 04:27:00', 'SALE/POS2022/09/2141', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76c3c46ae27be0a234fd271eaaffcfc98e204526b3c2a8c5856c74b4f82a445d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2143, '2022-09-10 05:43:28', 'SALE/POS2022/09/2142', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '0', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '547b13fef00781d9504465b11ceb5ca7e0aefc088fc1f355111fd561d5484488', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2144, '2022-09-10 06:34:39', 'SALE/POS2022/09/2143', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '320.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '320.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '243d567e29d0fbd6e290e6e7c7d49b972245458e630a19b83e135537241f54c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2145, '2022-09-10 07:25:20', 'SALE/POS2022/09/2144', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38778d372f1c8f5c8b49dddeaf146854bea223113746654ae79d88e85c650832', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2146, '2022-09-10 07:25:52', 'SALE/POS2022/09/2145', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40e060b9be0b95593da02d7a2eb369c8937575f0751027c11cee122da4520aa0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2147, '2022-09-10 07:36:32', 'SALE/POS2022/09/2146', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4de4fcfc05d2192a373db09b2aad484a8493ae0ace1a91f921f32fffcd495ce0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2148, '2022-09-10 08:14:11', 'SALE/POS2022/09/2147', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93ce0c70723c739fb302b8f81be472ebfe4bd41a688c6cf54418cfaa4262126a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2149, '2022-09-10 09:13:34', 'SALE/POS2022/09/2148', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd649998e88b1d95b8f6d4fd1c8f56cd77c8bdb50b281510494af607729c4335d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2150, '2022-09-10 09:23:27', 'SALE/POS2022/09/2149', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f712efb89246421415925bc2e2e2aa2256b3c805069cebe75d8fc0c691a6f227', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2151, '2022-09-10 10:05:18', 'SALE/POS2022/09/2150', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc5217208315916877543b309fd22196332641337889cbac77cf18e0856cd315', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2152, '2022-09-11 01:50:40', 'SALE/POS2022/09/2151', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5df2842c662d82ef4c2e910351728c3734ae8da88edf4546ad6c2ebf9070deb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2153, '2022-09-11 02:43:41', 'SALE/POS2022/09/2152', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '568beda958420954d0db82f616c59e850cf789b3e651dd536ced519d4268e978', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2154, '2022-09-11 03:15:07', 'SALE/POS2022/09/2153', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d8dcecb7a2a45fc61d2e22039ccb6cf40bcb0c8ac2e69db0b4c070547db4450', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2155, '2022-09-11 03:59:50', 'SALE/POS2022/09/2154', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4dbbc6ffbdb9c6a0a3bd11808bc2568041c460f358dfa52b210355fd9a1d8ca3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2156, '2022-09-11 04:09:23', 'SALE/POS2022/09/2155', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd2d18f13b9739628b82529d5c447223672254ae7c57438e56eb7801ca4e951e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2157, '2022-09-11 05:27:12', 'SALE/POS2022/09/2156', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2af05c72d6c531f80f81385a18f7a8581c853b83b6d748b0a68af0ce9f19c0fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2158, '2022-09-11 05:49:48', 'SALE/POS2022/09/2157', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27a21e637309f41e822350c50ed9114cd8b46ef9c7992fa2c0efcef0ba8563ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2159, '2022-09-11 06:02:52', 'SALE/POS2022/09/2158', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0f53c7bafb1a7eed552aa4c8549289fa22038eabc4b2133120317ce75022736', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2160, '2022-09-11 07:06:00', 'SALE/POS2022/09/2159', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06e5f8cd609c469f817c049630964b61bdbaff4e1290a9d0f421e2b02a8002ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2161, '2022-09-11 07:14:19', 'SALE/POS2022/09/2160', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '258e65f9a6fe4c1d1edd9c4fbdfff7ab0bb461fbbe32460dbeed19d48e38dec8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2162, '2022-09-11 07:54:39', 'SALE/POS2022/09/2161', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10c7a9442a7afc53e104f9061fa4e2c12058d0a426d81f4c771cdb7a3885eb5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2163, '2022-09-11 08:02:57', 'SALE/POS2022/09/2162', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '506cda7cd9dc30eed1eb5b5423a145dcf266a41581c0e7820031f0320791ad44', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2164, '2022-09-11 08:14:36', 'SALE/POS2022/09/2163', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '430.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '430.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '430.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9536daa917d513829cdf9afcb1d5880cbed288626aeedc80fc6f4c97f80efa9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2165, '2022-09-11 08:19:05', 'SALE/POS2022/09/2164', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7206a62f687395545f8ef398ad47a7a8d45292d2a2528db0f96d40c38457c05f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2166, '2022-09-11 09:03:23', 'SALE/POS2022/09/2165', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f40117912f5acde7d9ddeb0516b15995b154038d80afdb5e2b8bbe29bd39cdbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2167, '2022-09-11 09:44:40', 'SALE/POS2022/09/2166', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '1440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bcc8cd17e703aeb4341c2a9d9188e046ab4ebc89d27ddd2be94513426620b9cb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2168, '2022-09-11 09:59:14', 'SALE/POS2022/09/2167', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '67906aaabd8dd0ead019f0ba8c8794c1f4a18301bd762caf1ef1547863aab94e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2169, '2022-09-12 02:49:29', 'SALE/POS2022/09/2168', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '960a66bb68bd570a105842c5cae66ed0e9830ffae3d0d34fa21fa7bab40078b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2170, '2022-09-12 04:38:13', 'SALE/POS2022/09/2169', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf561641eee439f87ca0de0e571ecdddef3cccab25a22de8386d6da8b978ff82', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2171, '2022-09-12 06:49:02', 'SALE/POS2022/09/2170', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb7decead0fa015b4895f597cfc5c04a9747587438ad1ae64254b899cc46280d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2172, '2022-09-12 06:51:10', 'SALE/POS2022/09/2171', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b13345e5d05292523c852fb5d403a9c3225bce9cdfc68019136510e0a9db100d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2173, '2022-09-12 06:54:06', 'SALE/POS2022/09/2172', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '691de22d3a8c2abb20d5044a3b815f5dc97aae473b0338a3d880e25748afb65f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2174, '2022-09-12 08:16:48', 'SALE/POS2022/09/2173', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '676194d5374c87d0cf694911b9a537ff25757f9897193d26507e83ffca709064', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2175, '2022-09-12 08:34:31', 'SALE/POS2022/09/2174', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30f5f7ed81bd612f4afe83d96c655053a3c1ddc7c2b2e25bd171c99c430533a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2176, '2022-09-12 08:41:00', 'SALE/POS2022/09/2175', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6db42ae5d46e7bc75277d804c3276e3a30dfafa5065a8f8625234b1a3f48733c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2177, '2022-09-12 09:13:00', 'SALE/POS2022/09/2176', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0701b4a7150f7211a7585a20f3ce3632e4e1bcb66ca1d59ca8d52f86be26299c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2178, '2022-09-12 09:40:00', 'SALE/POS2022/09/2177', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef37ab9a43be819fed2535d5ee76ea65295f991e2a88fbcfdb4289a6c6d4c1f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2179, '2022-09-13 00:51:04', 'SALE/POS2022/09/2178', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d7bc34e3ffa493fd146bdf915789ec7cc31108c6ff75ac3c2c226dfe59a7ab9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2180, '2022-09-13 02:32:29', 'SALE/POS2022/09/2179', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4e379799442303b989d0bb0b239e4a435a7d4e4d46bb7ff6f938f71d8852b53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2181, '2022-09-13 03:28:01', 'SALE/POS2022/09/2180', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '719d0452bedc43eca2886ed31f8f780a0fc99aaeb842e45f7538a3488f2ab85b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2182, '2022-09-13 04:30:38', 'SALE/POS2022/09/2181', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61107a606c0b8a8a30b37f220bd56285b57faceffabe4b67f350c69ddee87f20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2183, '2022-09-13 04:43:01', 'SALE/POS2022/09/2182', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e691e74c0633d02a5e89f1a3cc3dca3d03e88f0ce38a90d2e49eff12e9952ec3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2184, '2022-09-13 05:09:14', 'SALE/POS2022/09/2183', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c81bcd5f111ba581baf6a988883f51a72740b3e2e3baca408d56b7b683dd365a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2185, '2022-09-13 05:18:18', 'SALE/POS2022/09/2184', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7726fdd80e745186dacb742fe5a0df241942bc979f3bfe5d64947422f838ce4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2186, '2022-09-13 05:54:22', 'SALE/POS2022/09/2185', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '475a065391ef433aab138bb030d637d97213e7b84af82abd6e176ec4d484cd84', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2187, '2022-09-13 05:55:36', 'SALE/POS2022/09/2186', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e96eb212f2cea3ce8344ae22bb25551af850cc59d5cd253ac0c765c2b29ab1bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2188, '2022-09-13 06:09:20', 'SALE/POS2022/09/2187', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ded8d784ba554edbb0738fe60d1997a82376f2069c537e866fd5e646d5f94831', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2189, '2022-09-13 06:50:06', 'SALE/POS2022/09/2188', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1efbd4556b5cf854d9d9240c08d075197e1d5466c8723814a88d1477e89ba3f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2190, '2022-09-13 07:46:45', 'SALE/POS2022/09/2189', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48cbe3ce8bed49d61d7cc9e42d9748763b31cd45d9adf067095ef2f3b16cf614', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2191, '2022-09-13 08:18:34', 'SALE/POS2022/09/2190', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d078e447bfb65999c2cb904e1664d9ee119d5c5d1052c6f847d0eb6aa82d314', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2192, '2022-09-14 01:30:47', 'SALE/POS2022/09/2191', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7a04f2a6cb26d004ee6f59bd580c38e3e90deb29aa5fc6b46b5c3ca45ecf1be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2193, '2022-09-14 05:03:16', 'SALE/POS2022/09/2192', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a42bff73c15bb448d4dbfdcd3e1bb0bf297bc57d50311c14303677517c9aec8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2194, '2022-09-14 06:09:57', 'SALE/POS2022/09/2193', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99e7ed2864920445b1ffe77980bfdf9c176d2a18cfc3f9f88521180d1e24a086', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2195, '2022-09-14 06:23:56', 'SALE/POS2022/09/2194', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b5680af920d47253e1d30c6467873f43e7de369f00497e6ea87489c2dd1a2fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2196, '2022-09-14 07:06:26', 'SALE/POS2022/09/2195', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd65eb5c2e7d8f6326c0a2f31729d93141443eedcd961c66bf1c6ebba012b25c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2197, '2022-09-14 07:21:44', 'SALE/POS2022/09/2196', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '646a794cb5bc3c75773b1cd15a33aa782ec4ccbd64bbcea3e83c62b693d453f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2198, '2022-09-14 08:12:58', 'SALE/POS2022/09/2197', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '320.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '320.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd95a08d7d3c717447de019197e19574ba15f947f596b33171d8601dd76aa79ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2199, '2022-09-14 08:14:42', 'SALE/POS2022/09/2198', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c1dfc0a6981046695df134be808d29e7713524cd1a61a56051092290b1a1d77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2200, '2022-09-14 08:36:19', 'SALE/POS2022/09/2199', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4e85807c9a041cfa3769c1fdd5fba93e840c2bef9c235ed17fbf841145b8170', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2201, '2022-09-15 01:01:24', 'SALE/POS2022/09/2200', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e08ca49a8209d8c72eb9966f63d4732b4e6cac354daf647d55ead61ec618cd91', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2202, '2022-09-15 01:48:06', 'SALE/POS2022/09/2201', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40a316bc6b1e983015e57f17e2dd7d8e5ea8d70389997eebbdf785e8acaf051e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2203, '2022-09-16 04:03:28', 'SALE/POS2022/09/2202', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '690.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '690.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '690.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59ed8004b6538312772774a24fa9925616973037908e177e28cb5aee1fac90d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2204, '2022-09-16 04:26:42', 'SALE/POS2022/09/2203', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ef76f12fc62c5e55b70fbf496c3bfca494b3b37272787cc5e37de811fa0537c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2205, '2022-09-16 04:29:40', 'SALE/POS2022/09/2204', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2557d19fdba0e7ebcfb8b0b44066016d7d526689d17a29d304becb0ca2dbeb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2206, '2022-09-16 05:58:42', 'SALE/POS2022/09/2205', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b71668429bad3d642b2cb56942f092bbf67c0a96c8be0b712e2122a20e563498', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2207, '2022-09-16 07:56:31', 'SALE/POS2022/09/2206', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08b1229f99bae8e1824ceee6895c421093b5cdfdaf5ddefbae449650952800a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2208, '2022-09-16 08:06:53', 'SALE/POS2022/09/2207', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99b651d3022acdbf89231a58070e962dff00bd40575e16786eb7bf482a405581', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2209, '2022-09-16 08:57:11', 'SALE/POS2022/09/2208', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21d30318058a6429f6f60fece2931b9c76c394333427b0adba87dbfebe7d1cb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2210, '2022-09-16 09:25:58', 'SALE/POS2022/09/2209', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8cc1efe98e34654edf66bdaed3b72e4a3939fb148e9cbb0d46f5237010722b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2211, '2022-09-17 01:41:46', 'SALE/POS2022/09/2210', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee8704e0e3bbf451e263a4e8666e53c312d01c7a9702f8ce2876cc088794b227', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2212, '2022-09-17 01:57:31', 'SALE/POS2022/09/2211', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6de5dff285beafc603f6595a951d24adf0e7ed343849e8aba9bea9aedb769066', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2213, '2022-09-17 02:04:57', 'SALE/POS2022/09/2212', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1800fb039f7c8d1ec5e9e1d36998b9e497ac5710b5e58497df0d932549ff8937', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2214, '2022-09-17 02:26:36', 'SALE/POS2022/09/2213', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '287b424bb3ed81c6e9934414be9488168bd6ef31079546e1fb3f2867604e0b01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2215, '2022-09-17 05:14:44', 'SALE/POS2022/09/2214', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e92597127345d10facd5704ac8a77dd4ea909f4c736809aba7aa9bc4a2070a2a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2216, '2022-09-17 05:42:40', 'SALE/POS2022/09/2215', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5910c9aa248ee88a224002a6963d5c378d830c60e18854e46ace70d128917da8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2217, '2022-09-17 06:34:17', 'SALE/POS2022/09/2216', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '3300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '757f3b52673614887712e896561ff66ed540b7609dd8c49b51b8dedd4c48f384', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2218, '2022-09-17 10:01:56', 'SALE/POS2022/09/2217', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '701425d6373373f8954dc7de19e3df53a639a4ba322da837480a138ba677f2db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2219, '2022-09-17 10:02:49', 'SALE/POS2022/09/2218', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7304035d79f03f241c061f8d0b7db09827e9b4ddc76f23c2ec0e1e6d2bcebef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2220, '2022-09-17 10:04:19', 'SALE/POS2022/09/2219', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eff678283d7087d3c60d3a018fece1c07813d4b1c72efc60426b9ce468bc4338', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2221, '2022-09-17 10:06:04', 'SALE/POS2022/09/2220', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb82720a8fd52a652d0dc2969784c82ca11849617bd27e4c630709d7e55a8c24', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2222, '2022-09-18 05:18:18', 'SALE/POS2022/09/2221', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6e61d06218e38438a61f32d854e1609e3f3ffebad0070430ebcea407dc5b326', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2223, '2022-09-18 05:27:33', 'SALE/POS2022/09/2222', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a9d81bbb0354b25e145a9a988004b26152fcb55fdb3d4a4cf05dc4c10963f0c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2224, '2022-09-18 07:55:22', 'SALE/POS2022/09/2223', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '162c805a46fafae57a487345184f086c36394f0fe55114ba159dfab7ee8142d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2225, '2022-09-18 07:57:31', 'SALE/POS2022/09/2224', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '837f5b0dd213b22dab28daf87ca59429a080aa9da8540b2bec4b707d986af47e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2226, '2022-09-18 08:09:37', 'SALE/POS2022/09/2225', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd2d9a548712aca114af38c17985f30c75f0f744e01f6c0c38cb7ba0f1ce802f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2227, '2022-09-18 09:23:45', 'SALE/POS2022/09/2226', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '3600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '379c145b628ad41d47adeb2e8fa56e6a1c92cbf3944fd53620f586a835214bf9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2228, '2022-09-18 09:24:43', 'SALE/POS2022/09/2227', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5114e594396947439c67a7eb37c36f05c69bf8f29c8321351e57f24643ba5e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2229, '2022-09-18 09:25:17', 'SALE/POS2022/09/2228', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21a683485d176526fbb30148fc78ddbabe8cadd3e9c1da3b8502634854b4f683', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2230, '2022-09-18 09:29:12', 'SALE/POS2022/09/2229', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '7450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7545c2c319f0368be2474d9a5d1250013132826377bfade3ea763c83697551d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2231, '2022-09-18 09:42:27', 'SALE/POS2022/09/2230', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14682d4b3d4fe2249f806cd9d67dbb3ce6e877933925348d16e273705da55b5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2232, '2022-09-19 05:28:30', 'SALE/POS2022/09/2231', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9291e4b62dedcfc39716308b7fe7723b669538ce7f602a953bd0036bd1b48474', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2233, '2022-09-19 05:42:45', 'SALE/POS2022/09/2232', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd40f1f6b1acdfe2222d6cc96798683c959815c6e0511991179dfcd55f2ec3d15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2234, '2022-09-19 05:49:40', 'SALE/POS2022/09/2233', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9367479a4207665f215677d09087559cca7e4bd000e522e701d9610270de5f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2235, '2022-09-19 06:26:19', 'SALE/POS2022/09/2234', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2491ac3fe825e574c166fbda150622f7b1dd61854ae8e0c382258c94df29ffe9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2236, '2022-09-19 07:04:06', 'SALE/POS2022/09/2235', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca62e32b512a402c1cd1e128c3f1408c61a418f35cb3da8a579be2a503e84efe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2237, '2022-09-19 07:48:19', 'SALE/POS2022/09/2236', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92f3eb32b74717e80a6c26a20669940b4cf98bffe89ad5db873f642d74d17ed8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2238, '2022-09-19 08:41:44', 'SALE/POS2022/09/2237', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0114bbe252336b9ebf35ef69be8a1d8ba864491249c5778f0c46110e20616686', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2239, '2022-09-19 08:56:04', 'SALE/POS2022/09/2238', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f106bf1c6019093597213d26ab8aaa3922a4556b6a52c43393a6fe08b73fbaec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2240, '2022-09-19 09:12:52', 'SALE/POS2022/09/2239', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d9987267451a1ca52d51a32eda9b3c81f88c30b98c292141987f1d692c72fe0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2241, '2022-09-20 00:08:16', 'SALE/POS2022/09/2240', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '07fa7d5675f951b8a28bb6fd691993ddb457a1bb97164df2409ede078970ff22', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2242, '2022-09-20 02:27:22', 'SALE/POS2022/09/2241', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1520.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1520.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1520.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd15a14710e00d2aaaefaeb3dd2b7848f260f51669eb19fad19c1660bb3948d1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2243, '2022-09-20 04:06:50', 'SALE/POS2022/09/2242', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8dd786683bc81b2c32301f70edb3f4ffb74e9f8486e33242cd8ce2303fa00cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2244, '2022-09-20 05:48:17', 'SALE/POS2022/09/2243', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7788b60b89c3e92d57d2a53f7b605ce06fa3f32209c039f3f254cf25c70d6216', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2245, '2022-09-20 06:05:03', 'SALE/POS2022/09/2244', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '7950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7fd1a653af72302ea4d128ff2337566ed0d7f4a8a298b237f2532302a891482', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2246, '2022-09-20 06:55:37', 'SALE/POS2022/09/2245', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a48a85c222e960850484166121c1a1fc266f1758e9737099ec6ede45aab0c299', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2247, '2022-09-20 07:00:13', 'SALE/POS2022/09/2246', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6af8c477b655074cbfd89eedd908fdaab5bd05f169681cff79e4b6c39493b358', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2248, '2022-09-20 07:20:40', 'SALE/POS2022/09/2247', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f1a1a001eeacf8aeaf8c8fc2599c817ee28bc0a4478b6948eda55e0af610f80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2249, '2022-09-20 09:20:15', 'SALE/POS2022/09/2248', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48d6113ccfd409b1feb641c92a0296dd0ac046f6ae11d7be727ff0efda3cccd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2250, '2022-09-21 05:09:37', 'SALE/POS2022/09/2249', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9790dae0867b06570b2c16f77f23b3a9242f6ee813b28cde4bf1bb79077cc7ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2251, '2022-09-21 06:23:15', 'SALE/POS2022/09/2250', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5b449473a12a0e3a0432694471b50560c054f6a2cc9778685a8f184467cd0ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2252, '2022-09-21 08:14:23', 'SALE/POS2022/09/2251', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25753c6e96056ab9edbad9a7f6b83a13a75c6541bf5a28b05f5267e1f2024d51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2253, '2022-09-22 02:59:38', 'SALE/POS2022/09/2252', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2eafc2db728fa62178066b9328740aca46ea29b490c11cbe96f9cc204a3cc8c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2254, '2022-09-22 07:28:42', 'SALE/POS2022/09/2253', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2dcd8f625160c711f40fbc772d14a927f261b85041a0b05c27842bee7035ca9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2255, '2022-09-22 08:16:52', 'SALE/POS2022/09/2254', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7e8767ca1930a5bcfa292f5be38637e1b626a0fd3f8a5d386c1c1f0404b9488', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2256, '2022-09-22 08:49:58', 'SALE/POS2022/09/2255', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e14586b8b03abd92229ff321acf187cd962b418882c85ce3d216df4bf5bce15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2257, '2022-09-23 00:37:04', 'SALE/POS2022/09/2256', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '570.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '570.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '570.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '609bd58544d7b53a9806be146fcca69c49ce824ed183d1b48630951896039f19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2258, '2022-09-23 00:58:51', 'SALE/POS2022/09/2257', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee2de3c3cef3913f57545df3b93c73c301267003ceff48a59a97664511ec8de8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2259, '2022-09-23 02:15:22', 'SALE/POS2022/09/2258', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6350.0000', '0.0000', '2850', '2850.0000', '2850.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98566b1c5c48d18c8d8fb0432ed3006e6cbbbf00f566c2f28f4d77476f9110bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2260, '2022-09-23 05:12:25', 'SALE/POS2022/09/2259', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d06c32c9c57e7a096e88de2ef6d11908bd366a300e34cc81bb1c3ea04a89d63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2261, '2022-09-24 00:30:50', 'SALE/POS2022/09/2260', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '6800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd43387a77e7343ab7f77e02e134e3b7a2b75fc1cb04f34cd40fcb40c9324305', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2262, '2022-09-24 01:36:35', 'SALE/POS2022/09/2261', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6ec2f249a9b5b1b270f9ba3a500a0a0377ca17c8ac6ac36d90ce02dcb3b1d9b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2263, '2022-09-24 03:26:54', 'SALE/POS2022/09/2262', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71634cf453af3c3dfb2588b5c1166ba5923c5001f00df116814010da258ed95d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2264, '2022-09-24 03:39:49', 'SALE/POS2022/09/2263', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '178c4d762cb11199739b302b208bad95d807b19bc1f8a202c7e7028278871fc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2265, '2022-09-24 05:08:01', 'SALE/POS2022/09/2264', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '035eb9d23def5edc0ddfcc279adcc9c2e9ed92ee95126ce345378f9665d4a77f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2266, '2022-09-24 05:52:51', 'SALE/POS2022/09/2265', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '817eed0261add661c9f506592ee149004cb1434fff86c785a5b870ccf016db6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2267, '2022-09-24 06:22:05', 'SALE/POS2022/09/2266', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef47875ff95afc5059906f6d943e15ab76c423f95fb0e9b44bcea916a1a02744', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2268, '2022-09-24 08:00:12', 'SALE/POS2022/09/2267', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c22834675365b4e6b4cb935a444373e417f6f0354f6d06edcc0e546ec3fc672c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2269, '2022-09-25 00:57:33', 'SALE/POS2022/09/2268', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3884d1f8d8f880865379a5b0ef8501bca7b4c3847c990cf630c7081b54d090d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2270, '2022-09-25 01:45:26', 'SALE/POS2022/09/2269', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1e3a56b43a41bd6b8f4850e957b99a6944a0db0e69721bea93558af3613a2f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2272, '2022-09-25 06:37:38', 'SALE/POS2022/09/2271', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee30bd52aac34b061a7bb35380bc9553fabd1dd1b6ab53dd207440ea534c160d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2273, '2022-09-25 06:46:02', 'SALE/POS2022/09/2272', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61f0e0c1c1d5e0d8602a86d987d362330a19b3b08f3cd35da9561707b4de1d1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2274, '2022-09-25 08:21:06', 'SALE/POS2022/09/2273', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '6150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '938350aea4ebd04cc2ac5ded0a587b315a08e2278732106ea27c1faaf7abe9fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2275, '2022-09-25 08:30:59', 'SALE/POS2022/09/2274', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '13600.0000', '0.0000', '600', '600.0000', '600.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '13000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db0a8c0480153080884140825c35f4550ed74a6a2161a869c637b5663bd15d4a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2276, '2022-09-25 08:47:38', 'SALE/POS2022/09/2275', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d2fcd9fc8bf8d4cc8b025a354ea2834bb0ca5ff7cb9a31d28c8743fe184511b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2277, '2022-09-25 09:08:58', 'SALE/POS2022/09/2276', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aecde45e1d2815c0ea524a0a2604da13ee744b700ab936c35ee7176573d6a794', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2278, '2022-09-26 03:39:34', 'SALE/POS2022/09/2277', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0af8fe9bbe8fcb75d82a91fed26bd3cd5297cc579f51079ccd68c6110128240', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2279, '2022-09-26 03:40:01', 'SALE/POS2022/09/2278', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7bdf313b1279b463442b867013596c512276add94e0bddf2b78ae8269bd556c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2280, '2022-09-26 05:09:01', 'SALE/POS2022/09/2279', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7692f508b6931da46057d70d811cda57131c5d8b9359914aea82d8200998f17c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2281, '2022-09-26 05:50:52', 'SALE/POS2022/09/2280', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be7f04ad8ae8badd12e4e8fc2982945581d08f496872ac3c9aa6bdb82f2b7625', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2282, '2022-09-26 06:38:08', 'SALE/POS2022/09/2281', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01b2376c97d0f1624c45b2f7035d94c023c8b71ac178424179a7bc466947b11d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2283, '2022-09-26 09:02:32', 'SALE/POS2022/09/2282', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0238d696cbd040221d542a3ff0b5f93487779cd343a897aa099d7cf532922caf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2284, '2022-09-27 00:06:18', 'SALE/POS2022/09/2283', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4c03987fe5c8d7118a18a3a09892b36c3f64c5d2f2f4ebbac2b3703cdf74a6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2285, '2022-09-27 00:12:09', 'SALE/POS2022/09/2284', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3dec45a6f7f51a0e94a1e877337a077fe9cc15bef0038ddcc629ade3a70be5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2286, '2022-09-27 01:43:20', 'SALE/POS2022/09/2285', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83098b6dd6cde841bc62cfcd225e0795fad034d89ed46aaec6723629318fc0a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2287, '2022-09-27 01:45:33', 'SALE/POS2022/09/2286', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80752bed66f7189374c4698774a1481a21c91f989908bf4ffbe17080b3446eb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2288, '2022-09-27 01:46:37', 'SALE/POS2022/09/2287', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56ef529ed9627d7beb4c5096e35b59144663c6023e2024745bfb8067c9b4e201', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2289, '2022-09-27 01:53:58', 'SALE/POS2022/09/2288', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f64004df6ad65fad1db57f950e0e3cb93b7755c3e858172843b92854def679dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2290, '2022-09-27 01:57:34', 'SALE/POS2022/09/2289', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '723d4b515dbd4e7dd2a7b6adbd94989585e0a4256a82620ec8480d72508b64f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2291, '2022-09-27 04:56:47', 'SALE/POS2022/09/2290', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab70a0968f8c0e71d486e33b0f15187d559b3f69c132f4e84d35e9cf2aa7ff74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2292, '2022-09-27 05:25:52', 'SALE/POS2022/09/2291', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '427e6ddbb62bef2e10674c31c733db597edacc20f0a2beb4f1acf526ae1f3546', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2293, '2022-09-27 08:19:04', 'SALE/POS2022/09/2292', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac8d33c69b64e3c8c8dc17ce3ebbdb83d3d96878c1e46f1bf80bf15a2f4e85dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2294, '2022-09-27 09:15:24', 'SALE/POS2022/09/2293', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ba25ba740d33028bedc5a1fb023d4c064dd2907d7fc79b07fb513809d6c2675', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2295, '2022-09-28 01:16:38', 'SALE/POS2022/09/2294', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5aaff33bc7ffa0ad145f98fde8b420a4067360425c4e9f9a230abc348dbf00d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2296, '2022-09-28 01:33:00', 'SALE/POS2022/09/2295', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '20', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d4c11dde0da849ee01d91b686a34ab98f7b203c87ff7ad33a49ad0d24538d04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2297, '2022-09-28 01:52:11', 'SALE/POS2022/09/2296', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '451e2d5d8f3209b46be6460869f8b8889090ad441a56ea90aa9f31b17178f9af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2298, '2022-09-28 05:28:26', 'SALE/POS2022/09/2297', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '972cf8682162698b7086213183d7212ed447f784a84d9b1375d73b4c24ffb4ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2299, '2022-09-28 07:20:30', 'SALE/POS2022/09/2298', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8188da1948b875c484b13e94f12ff9ab86d08c2e43a301687bee0c063745a116', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2300, '2022-09-28 08:26:53', 'SALE/POS2022/09/2299', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e21fa167531297860737c9f9c6acfe3fb99389577a5e455cad428f47577086e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2301, '2022-09-28 08:29:02', 'SALE/POS2022/09/2300', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '420.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '420.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '420.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b4dbd6fa042a19d47563c8ad5477150241b44915d72878d3e67e1c4deb9b2b59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2302, '2022-09-28 08:53:47', 'SALE/POS2022/09/2301', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1060.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1060.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1060.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1860a2f3030491b3411250f320a59f5a482a0f5882db66b0f0f6ef4fedb11d0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2303, '2022-09-29 05:15:43', 'SALE/POS2022/09/2302', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f58cd2f1b4b3df7b320682b3c8820e5fcbecda7f538c83bcd774d024c0ab2a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2304, '2022-09-29 06:25:00', 'SALE/POS2022/09/2303', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9420438bdf74fd9624c17fa753450ebe39b4f5444b87c07166de05a8c87a886', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2305, '2022-09-29 07:34:34', 'SALE/POS2022/09/2304', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '774ee5664ea31aaee9f84aaa9afb8358362394e9cc4a1608d7da4b4381c79f00', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2306, '2022-09-30 03:01:57', 'SALE/POS2022/09/2305', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '198dca4cee9617d072fab430ded867f16fc1b9e97337a31b129b88ad4d78196f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2307, '2022-09-30 03:03:03', 'SALE/POS2022/09/2306', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69430442a82f2df6db3002df5fd10c8f5bb2ce20e436dc50fd808203ba6f326a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2308, '2022-09-30 03:18:31', 'SALE/POS2022/09/2307', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7037b1cc6b522ea7e3da67d7f8e5472905ce8847a124c1cee37946082d970e35', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2309, '2022-09-30 05:51:32', 'SALE/POS2022/09/2308', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3e8023e51a2fe6bd3f0bf546f1c63522cd1cb27351fad1d990ecc2c0b12071e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2310, '2022-09-30 05:55:45', 'SALE/POS2022/09/2309', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d4a2163e679b82694cdac603bb8b89817bb50fe586c3afc0836b93450d39654', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2311, '2022-09-30 05:59:34', 'SALE/POS2022/09/2310', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '484d9709662f39ce200b9d3f1cc80e3355192e55c76224253495ba849ac7dfee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2312, '2022-09-30 06:59:46', 'SALE/POS2022/09/2311', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db9b1907d73cf7bf16afcace8f80441b7bd18d6f3647df7ba99be28d3f9112ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2313, '2022-09-30 07:13:54', 'SALE/POS2022/09/2312', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8078710b5f4bf5dde5ccf9385f1257ca49471622a16004e76c70b87ec58e8c66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2314, '2022-09-30 08:29:14', 'SALE/POS2022/09/2313', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71ce1cfae176f2a27922b370e518c8c835f0d8c7353644d310eb1a6356e033c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2315, '2022-10-01 00:28:42', 'SALE/POS2022/09/2314', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f34e2b5746e2858a41b0396c362c4f5e77b685367f6ff218422e2c6d51f87ca5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2316, '2022-10-01 00:29:13', 'SALE/POS2022/09/2315', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53b10f2be47abe9613e6cf716f0be6781a9b5432d7e6be20f57aa488a9bc618c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2317, '2022-10-01 01:18:54', 'SALE/POS2022/09/2316', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04557307910dfcb852bad9187b2a9ebca7366f866cd088689e0c3bad7f002d37', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2318, '2022-10-01 04:54:27', 'SALE/POS2022/09/2317', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3fea1fec05e2a20e8d9d11fd76fcf4435e5cae69918cd4511b96dd1fec5666b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2319, '2022-10-01 07:31:34', 'SALE/POS2022/09/2318', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '6450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cc0363b65cf1accb64750cb6f9c6b136e1359cbdfee4002b00372b60c6f3ee6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2320, '2022-10-01 07:33:13', 'SALE/POS2022/09/2319', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff6bf666fa05e1276ca65f9c56e0d46290855996a9efb01c9e6d9a5591f4a90f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2321, '2022-10-01 09:54:45', 'SALE/POS2022/09/2320', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70c4ea108fd4fe085b5ea5eed3cb19ba0ed408c032bfb927c0000821dd067988', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2322, '2022-10-01 09:55:06', 'SALE/POS2022/09/2321', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6dba6e2ee5fe603b5ffd946e062e25a4876d4c34b989bfc085f56964d00a1a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2323, '2022-10-01 09:55:34', 'SALE/POS2022/09/2322', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4678542eb2feadd07e31dd367c90dc1688721e9ee89fb5e39d4e7c4d2cde8e6f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2324, '2022-10-01 09:57:15', 'SALE/POS2022/09/2323', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '990.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '990.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '990.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '983944ee57801caf3d2e687976274d56af8d0ea19d1712efa8ba9f2bc927c158', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2325, '2022-10-01 09:57:47', 'SALE/POS2022/09/2324', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a031c516ec3b5bd17de876d4e539edf7ed00e287c1a57004e4f26c6526c71898', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2326, '2022-10-01 09:58:14', 'SALE/POS2022/09/2325', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd93a640dad92c185b3977a4bab2d489ffc65e8169848cbfc082af2da7fdc78aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2328, '2022-10-02 01:40:23', 'SALE/POS2022/10/2327', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3108883222025e4d89f5827358be4f0c28454f1341690f8585124c4973e4c964', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2329, '2022-10-02 03:09:04', 'SALE/POS2022/10/2328', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5460.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5460.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '5460.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7342abe977b12f284b9af2285be8720d16d137a39c2307900c39a7eb4e0ef726', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2330, '2022-10-02 04:55:07', 'SALE/POS2022/10/2329', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97c810b9c09d07823baf2688255d1878ec9294fae27f1a7bda44fd0be335f086', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2331, '2022-10-02 05:00:56', 'SALE/POS2022/10/2330', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '20', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '984b5c6df28fb86bce2b91d9a502e94f62b6523f376064688d3b575f58f7430d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2332, '2022-10-02 06:33:14', 'SALE/POS2022/10/2331', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '248324479b9e8b473b1ab0b7713fe45815a7b46da4bdd63f84218de16fe12e64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2333, '2022-10-02 06:39:25', 'SALE/POS2022/10/2332', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '320.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '320.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '320.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec7b750aea7964bbdef0f2e366fed84a4634f851a881e6919b452c52fdb10edb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2334, '2022-10-02 09:17:04', 'SALE/POS2022/10/2333', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd591cd6105a1c4737e7cbd1dda9065e9fd032d7e71c90fb7978ea19beaf39d98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2335, '2022-10-02 09:25:16', 'SALE/POS2022/10/2334', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbb53b5f0dcac9561c6de2b2f249480af10bba22642e476559b2acc81b992c7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2336, '2022-10-03 04:44:17', 'SALE/POS2022/10/2335', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06a3c0e449f31eecf95dfb1a6886ee888b905240a26eee96ac241589258870bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2337, '2022-10-03 06:58:28', 'SALE/POS2022/10/2336', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc6fc43c2098f369c88af5b3682192cd475369b854a842ed253bd609fb790361', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2338, '2022-10-03 08:22:44', 'SALE/POS2022/10/2337', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e31c704663c0145ba10b15be99b44171661b0c758a348fb465eecfe8902958b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2339, '2022-10-03 08:35:37', 'SALE/POS2022/10/2338', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82281be81465837cb47eb62cba63b321cf5ba90ecd0c006a1e8127000cf0da38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2340, '2022-10-04 01:14:38', 'SALE/POS2022/10/2339', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '865184b945f9e33f26ea45c6dd187fe3a7a6cc805d748271695de31a2ed2dd61', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2341, '2022-10-04 04:53:45', 'SALE/POS2022/10/2340', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e42e398bfe0398bf9c4e5f4939ed7890cf2b8d0fc1f6074f1636d658fcdc491a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2342, '2022-10-04 06:55:33', 'SALE/POS2022/10/2341', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba4808cd3f28e2ab87bba66eb135b0c8b22d35d09bafe57028dd0562fe429b0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2343, '2022-10-04 07:36:37', 'SALE/POS2022/10/2342', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc7ef4c5e54c8b8fd1b5e7df2ccf68036264fac5325b3ade809892ed3b8d16d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2344, '2022-10-05 01:46:16', 'SALE/POS2022/10/2343', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcc284d5b773cf87d49e2251fa94d32cb23d4da2227dbf300e92747a7702211a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2345, '2022-10-05 02:35:25', 'SALE/POS2022/10/2344', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d85f860033883a30cffd6972783b861ab118b71e783c95d7012ef9de9ac1646', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2346, '2022-10-06 00:17:03', 'SALE/POS2022/10/2345', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd3305653a23febd5a989d64d0a8a3841d05a1aade27e9229767dc40755b7ee1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2347, '2022-10-06 00:23:25', 'SALE/POS2022/10/2346', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f67f741292471f3b7912b08133c2bb6ded8e3f8a9e0251ec1ee15bf0b85a39de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2348, '2022-10-06 00:24:00', 'SALE/POS2022/10/2347', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62a87f7d3ec99ccbe0d7a95657a57eb8b69849d4cb9ea942f74e2951c210d5f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2349, '2022-10-06 00:24:46', 'SALE/POS2022/10/2348', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b7d514074ca614198b54860a49ed607d5f69f4320630a829b10935ddce6c5ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2350, '2022-10-06 01:16:14', 'SALE/POS2022/10/2349', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fbfc7863f3d8ba3ad7fedff7be31d829974fbf1718c68d5f026d754dcf48573b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2351, '2022-10-06 04:25:20', 'SALE/POS2022/10/2350', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1510.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4b935623e88e31a9781374e2f3b7310987b1aa1f9e30aa66ae89065b6932af6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2352, '2022-10-06 23:33:14', 'SALE/POS2022/10/2351', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9d89531dbafe92d07e15ab095bc0b9a55949fa5c6f617078803762ae9c0e02c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2353, '2022-10-07 03:02:16', 'SALE/POS2022/10/2352', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f9a6ec65408c9c94da0ca60f89f875a619a86c6e74aefc77769fa79b61d8f3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2354, '2022-10-07 05:10:33', 'SALE/POS2022/10/2353', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8fba4f22431da48dfaa03ff5a081c736922479a575637e34b5c4bb76b7d66e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2355, '2022-10-07 06:51:14', 'SALE/POS2022/10/2354', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38b2ce5de134fddb3e6595b9bd1a53e872754d7708e544fb04a8834b9c898bb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2356, '2022-10-07 07:34:17', 'SALE/POS2022/10/2355', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3cf71d7a9ded9b13b7a26364fd9a62322f105769e6843c9b430bb9756a029df0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2357, '2022-10-07 08:06:26', 'SALE/POS2022/10/2356', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '248e0d0935a7091e6f7d8a39ffe48a1051ff85c4f6cf442c787ee3f6972fcb8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2358, '2022-10-07 08:10:36', 'SALE/POS2022/10/2357', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '773f75814eb3d950eca89274aeb9103610a9704de8b2ddb646890e5736bd5635', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2359, '2022-10-07 08:32:32', 'SALE/POS2022/10/2358', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '4050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0795c0d140538f04a9e77a0b32698644f988d8a01ee51dc2ce9fc3d13bc5a54f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2360, '2022-10-07 09:04:47', 'SALE/POS2022/10/2359', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec6b90919c5343d2b7bab6b3f5700b56b9a2ac5357e95a459f41d1e57cee88f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2361, '2022-10-07 09:10:16', 'SALE/POS2022/10/2360', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c806f338de79546a05f9d08a6d0978b1c7f4f388afff5e4a17ca597b312dd837', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2362, '2022-10-07 09:48:30', 'SALE/POS2022/10/2361', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a87e53f29742bcd1a8f4511aff85672193c5250f968b04000c298069af05612', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2363, '2022-10-07 10:12:15', 'SALE/POS2022/10/2362', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba156784eb0a17208654efe2f827daad08b54fc430ed8ca9839d272600cc6937', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2364, '2022-10-08 03:15:23', 'SALE/POS2022/10/2363', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a52eaf9165c46b3285ca8dd7d07dd240aff349d01cc68d4e569cd0fb9908a91', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2365, '2022-10-08 04:44:01', 'SALE/POS2022/10/2364', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc1c1dcfa3eb23ef46ca7652411f74b0a665bf8a268781d1080838469e6a75ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2366, '2022-10-08 05:04:59', 'SALE/POS2022/10/2365', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b12485c7a14a07e5ba637b866a2dd7bbbcef7bf4dd1fcb866da7fca24fb3748', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2367, '2022-10-08 06:41:56', 'SALE/POS2022/10/2366', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '490.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '490.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '490.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '065fe68a2e4fcb5c453a38d28cd31f73ec82cfb29ff83ec4eac4199310bc3efc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2368, '2022-10-08 07:03:42', 'SALE/POS2022/10/2367', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '693f843d2d3e24d9c8895452d074f7bce4343ab616f21899a2dfc553eeb1d82d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2369, '2022-10-08 07:33:36', 'SALE/POS2022/10/2368', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20f214ef5d047458fc164b889b74c254326c63d026148bef45ad30dde6b31afc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2370, '2022-10-08 07:41:18', 'SALE/POS2022/10/2369', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f598d5f12c55355d050e06c7955058b98a61bf2f31a648da43c7c1ea8e9eda69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2371, '2022-10-08 08:14:57', 'SALE/POS2022/10/2370', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6d649dd8e27126627d2484915c47a413b01a0d64fa0d86f2954f184dab980ce6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2372, '2022-10-08 09:30:14', 'SALE/POS2022/10/2371', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f17d87b423cf21a0358ed2c0a52e20b565a82d680a9d8e99785edca51651497f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2373, '2022-10-08 09:37:36', 'SALE/POS2022/10/2372', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26cabf75e1bd9abb1bfa13731c1275fceefabebf3a0eac6afdd7be6381f46bb2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2374, '2022-10-08 09:39:44', 'SALE/POS2022/10/2373', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ae4004c32227b5fc32769000c04f085ae7c4986d93cf3e7d2ad40e4dfd9ee91', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2375, '2022-10-08 09:46:27', 'SALE/POS2022/10/2374', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '530.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '530.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '530.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a60bfdf81b52af36bf56c6dad44eee82bbfbb1fb9510b23b083cc79ffc2e301', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2376, '2022-10-08 10:11:41', 'SALE/POS2022/10/2375', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3fcb381cbf80aa16c26be7496b6defec22d520bd7e9686e8e8b49d90d5ae7aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2377, '2022-10-09 04:13:08', 'SALE/POS2022/10/2376', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43f3a60e002487e6ca7753d8cf32239ed215ac746ed219fa4416b21bd90d1545', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2378, '2022-10-09 07:08:18', 'SALE/POS2022/10/2377', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8c1a020a87bdaa8d6f3c67d4176cae68c7f4b5c5a5d36ee7df48e76fd1f7d205', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2379, '2022-10-09 07:10:10', 'SALE/POS2022/10/2378', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9bb721b01d2ebed2a0af140f5abe863e5d5d04083c45f7d4d0d6c7f93201d68e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2380, '2022-10-09 07:10:39', 'SALE/POS2022/10/2379', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ab6e231ce42957c22bee0dad8a4c8116f2bc0e38a3dafe89af3240eecf9c0ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2381, '2022-10-09 08:08:59', 'SALE/POS2022/10/2380', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '810.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '810.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d7f73ff6be8573861dc8a637ed09ce50260eea2cf9b92f4243a9b0401bdf7de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2382, '2022-10-09 08:12:13', 'SALE/POS2022/10/2381', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b1fe901d77df6b04ffdc4cb1c807cc203e4c77de169a2cc9152c49861f3f479', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2383, '2022-10-09 08:15:25', 'SALE/POS2022/10/2382', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '580ae32ffeb4b3f2a3bc746ba7e29fe46ac01e5a0a0e51e4b1ef019e9ce02800', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2384, '2022-10-09 08:16:40', 'SALE/POS2022/10/2383', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28c04ba40b3e735ddeed91a2c440c339d4085e7a4f735ef985408a49f065b75d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2385, '2022-10-09 09:14:36', 'SALE/POS2022/10/2384', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3f410371a2d8955dde5b281ddc387223ff04813a1c75270627c2907d1cf3871', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2386, '2022-10-10 02:01:22', 'SALE/POS2022/10/2385', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a0f50124563eebe45160822ca46c0c842ce9ea8c02f4fa0a5ff249890088aeb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2387, '2022-10-10 02:12:16', 'SALE/POS2022/10/2386', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a597f987e60ec88d1af156fa1ac1b81c7064eb3080e5c982a77f493a5b805914', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2388, '2022-10-10 02:48:05', 'SALE/POS2022/10/2387', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc443112f3afb37fdade2408c854ea731666735cac78254a039df8aee6d2d113', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2389, '2022-10-10 04:01:28', 'SALE/POS2022/10/2388', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1480.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1480.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1480.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '355397153d025f4985c1091108286c5d36a745f7f3969047de074f25d8b01bd2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2390, '2022-10-10 04:29:04', 'SALE/POS2022/10/2389', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78148e3d9dc38fbfc4533dfa197653d408d050bf88a14116278e2390fa10fc13', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2391, '2022-10-10 05:52:49', 'SALE/POS2022/10/2390', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4230.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '4230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '197d1d57496d4961494879a1ad18772667ea4d9c17fb1d57ffa26fd7d873400b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2392, '2022-10-10 06:56:34', 'SALE/POS2022/10/2391', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4edf305443374371610423e668e0da6ccfdc176a29624299d313a875776d76df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2393, '2022-10-10 07:10:18', 'SALE/POS2022/10/2392', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96c8dbc2e54da6dc5bc02c5dfd0cad29fb42c8c0820b786998c347a85976a01f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2396, '2022-10-10 09:29:38', 'SALE/POS2022/10/2395', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '710.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f6424997a26d8e9d709d0d6b1f0f1f0c9cd7b38d410820eecdccd65da5ad81b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2395, '2022-10-10 08:04:34', 'SALE/POS2022/10/2394', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '418b8e571197e01a850489dceaadbe2b35559c60bb7157669a0126528e4df446', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2397, '2022-10-11 06:00:19', 'SALE/POS2022/10/2396', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '275b3cacfc219d3a8e763fb64833d92e6b01b48cf34e4794d2714161262da61d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2398, '2022-10-11 08:00:47', 'SALE/POS2022/10/2397', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00ea3a1dda25e785e8d8538df4f42593e226f76773a3c5ed9b0889da4f1d4006', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2399, '2022-10-11 09:22:40', 'SALE/POS2022/10/2398', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa8e520e9a03dd8d61e98be88e3d8e5701cb34c9fe92f927e2cc2b071484fe26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2400, '2022-10-11 09:23:18', 'SALE/POS2022/10/2399', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a39b5a2739e7047e276c33326f535a23959a2889ac1e71949e936f20c8d16ca4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2401, '2022-10-11 09:23:53', 'SALE/POS2022/10/2400', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40a796d5157c167cc393325eda31e88b96b7c20ad09d258eb1ccbe7eb2017eea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2402, '2022-10-12 06:09:56', 'SALE/POS2022/10/2401', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '36f0eede757b7c104af211581aa88ee799f3febfe66d19b53f435b712b3d4bad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2403, '2022-10-12 06:51:40', 'SALE/POS2022/10/2402', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd492b3fceebf791f33463db434ad982278781110454859d44899cf3b593649d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2404, '2022-10-12 07:51:58', 'SALE/POS2022/10/2403', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78ce7811edac45ef20a749203083228ecd2985c9bc943bebc740c0bda018f66c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2405, '2022-10-12 07:59:52', 'SALE/POS2022/10/2404', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b4314fcaab67101d4712a67cc52bf5471e87818ad76a9e3a4e7a210ba993ef5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2406, '2022-10-12 08:59:22', 'SALE/POS2022/10/2405', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '30', '30.0000', '30.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '220.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '220.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '04dc7554f57cb9febc2f86f3f0dacddfbeee4490d2cdb33751850e1c95c4c344', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2407, '2022-10-12 09:41:41', 'SALE/POS2022/10/2406', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78773637c03b611dc681478e5b79173f5d716d1c6b8a876f0d390bdfa1416035', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2408, '2022-10-12 09:53:26', 'SALE/POS2022/10/2407', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20fac50c538f7fd3ab0201e7cee2e7ddd64d6fe5230d60c27c978c20fbbb3757', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2409, '2022-10-12 23:49:53', 'SALE/POS2022/10/2408', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61b6e5e40f792c856479274d404ada12ee15871097191ad93ab7e501d36a199c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2410, '2022-10-12 23:50:20', 'SALE/POS2022/10/2409', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31fce12004e3ba2fa209653943a67d2f6cbf4d46f2fe58c2936a6a082c71f8ee', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2411, '2022-10-12 23:55:47', 'SALE/POS2022/10/2410', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95f243151526af94f1cbe11fc92e83264d82030af36e4e945411df0448060692', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2412, '2022-10-13 03:05:32', 'SALE/POS2022/10/2411', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '790.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '790.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '790.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '202e81f72123160290282ae25283cde8fb70113494702eb5050721d163bf7670', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2413, '2022-10-13 03:07:38', 'SALE/POS2022/10/2412', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2740.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2740.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2740.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '102571914d7e5ef45ffca69bf70076dfcd18b2caa41f913020daced1f2983b9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2414, '2022-10-14 00:10:07', 'SALE/POS2022/10/2413', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eba05fea304a52da817d8c4febc3e2cecc9f4a6fc9210ba2a83e1fec4e1bf8c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2415, '2022-10-14 00:24:05', 'SALE/POS2022/10/2414', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '439adceb967d271b1d7da1ad46f935ac56baecf7603b32327c2306cff51a1133', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2416, '2022-10-14 02:40:43', 'SALE/POS2022/10/2415', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55e4ee1750ae51d431490750383234ea174eb79aefdd4b73e77889be5c9fdf1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2417, '2022-10-14 04:06:31', 'SALE/POS2022/10/2416', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2b34d0771290207b85a738750ccde11816f9f8bad973acfa90e007abbfb6e26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2418, '2022-10-14 04:12:27', 'SALE/POS2022/10/2417', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fd70c5ce72fe11e81b184572a92940965045f98ed182063affe7ba063c56713', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2419, '2022-10-14 04:35:01', 'SALE/POS2022/10/2418', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ec4da0eab6a0038ef3d6747c854c3b4f3be578ece7012e00070a3ce5619d2c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2420, '2022-10-14 05:45:43', 'SALE/POS2022/10/2419', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '7950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c28fc65b5d3d71c932649a788d2eba5a988fa50aed867c6250be678d25e60d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2421, '2022-10-14 05:58:13', 'SALE/POS2022/10/2420', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed36f6dfd6349f35ac82d339581524f533a24b9573cfb2d0cd6acb4be1190b07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2422, '2022-10-14 07:29:09', 'SALE/POS2022/10/2421', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '31700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '31700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 33, 1, '31700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '967289e92530aa28a02a4d26bc27360ce785f581a9faff557464d6fc0946c468', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2423, '2022-10-14 07:49:59', 'SALE/POS2022/10/2422', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '2800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee9443e0ace546917b9d9c79452aba8bc6c950d2281693009657e0b9e9e90728', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2424, '2022-10-14 07:50:34', 'SALE/POS2022/10/2423', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc6fa0c31f6b9174d6990c79fa314a5c9a86d96874ceeae7aa12e1dfd9eaec16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2425, '2022-10-14 08:03:40', 'SALE/POS2022/10/2424', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ae5e23d7d7e99f1e9b26619fbeeb16501873d4591d639c70b203b3078554f4d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2426, '2022-10-14 08:57:44', 'SALE/POS2022/10/2425', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d2ec55fe1d9a26f2a884c2d6b43fe6faa8a38d617105cbb19955fba8d5e48b0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2427, '2022-10-14 09:29:41', 'SALE/POS2022/10/2426', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d98867304d251218f1efe5febbbcb4fac52003f63b2869a7fe42e85c56cdb05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2428, '2022-10-15 00:11:46', 'SALE/POS2022/10/2427', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '973773ed709a86a081fd29c633b76130706e9b34f175202a31afa46199676ade', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2429, '2022-10-15 01:00:09', 'SALE/POS2022/10/2428', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0408171aa8525d32ed9d417296897071939f369df13111de6f830b4f5695336', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2430, '2022-10-15 04:08:37', 'SALE/POS2022/10/2429', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '950eb3cbd302cbdce81d7d33c804f3c166e8be63773b7ae953348f1c40cb3ac2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2431, '2022-10-15 04:17:56', 'SALE/POS2022/10/2430', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '11800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '11800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e76995e09d49c4033e243fe056b951c8572b42b208e8ec1904ae9ccc2549fc4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2432, '2022-10-15 05:40:55', 'SALE/POS2022/10/2431', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57a082cc40f11e29eeb21da6b7607de5b265b9c07a87ea101a4c3f46353eb36f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2433, '2022-10-15 08:16:13', 'SALE/POS2022/10/2432', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '974c16944ee5096c8cb30cd4a035e3139630e19a265d07aac4672d986ee4620f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2434, '2022-10-15 08:36:27', 'SALE/POS2022/10/2433', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '490.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '490.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '490.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37ad5c6f28f79cf6110dda30a90aede6e26e6fc7600ae18b7a00052643ab3506', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2435, '2022-10-15 08:57:42', 'SALE/POS2022/10/2434', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e7ba1ec2d8fd418f31ce8ffcf44631c5cf53bc7c59d0ccafafd261aae3e13ce4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2436, '2022-10-15 10:05:47', 'SALE/POS2022/10/2435', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0082dcbf37a6eb39f8c5d50d88ab482006fb08995eff566c219739d1eea810c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2437, '2022-10-16 00:00:31', 'SALE/POS2022/10/2436', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1115e51a6ae219b910d302d0c781b2cb653a8f7be80c2e6f1dac118affb7cb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2438, '2022-10-16 01:40:59', 'SALE/POS2022/10/2437', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11baa23330cafd2735b23f12e275d3a835a05d61fbacf1e1e38e78e0b044f036', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2439, '2022-10-16 01:43:03', 'SALE/POS2022/10/2438', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2ecfdf7d4143711fb84c93fb210cb3706eb962e72b9703ce1290a09b42e0a806', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2440, '2022-10-16 01:46:24', 'SALE/POS2022/10/2439', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63c62180571c16981416cd8e8a9b356b7d463137478c8866071aa04bf84695b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2441, '2022-10-16 03:34:27', 'SALE/POS2022/10/2440', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da591d9fc359ca89cc5dd76e100153da541b3715a8b53ba459df0a5381105a05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2442, '2022-10-16 03:59:38', 'SALE/POS2022/10/2441', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe7a5a9437df66de153a518c38a28a2e1edf3ab769c6515bad482805b35fa1e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2443, '2022-10-16 07:46:32', 'SALE/POS2022/10/2442', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '844d7362639bf90868a982c7f1b0edc0da261e7a0d94398d95729ee8aabf20a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2444, '2022-10-16 08:24:55', 'SALE/POS2022/10/2443', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bce4a03531294da00cd7157ff20c7498ee686f3cc24c9116d9553983ce0637cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2445, '2022-10-16 08:27:28', 'SALE/POS2022/10/2444', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8f3e4d88af4aee759665dcc628bfc1b60f4d04c7ba65d987dc1e6ace767ca64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2446, '2022-10-16 09:03:19', 'SALE/POS2022/10/2445', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd7f7af633aa351dcd71e6ac1c41b7ffc17fc00c6062bd0fc3a307ec6ef9e96b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2447, '2022-10-17 01:33:53', 'SALE/POS2022/10/2446', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2930.0000', '0.0000', '140', '140.0000', '140.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2790.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '2790.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d2491d35f9f8c37c6853a4110fcb496f3b445554105ddd6ac8d81409c83e0bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2448, '2022-10-17 01:49:39', 'SALE/POS2022/10/2447', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12350.0000', '0.0000', '2350', '2350.0000', '2350.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '10000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3191ec5f62cdf0491058b3b49e14263c998e8e2469c33b2481e7a2dccf410398', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2449, '2022-10-17 01:59:02', 'SALE/POS2022/10/2448', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd639b74747dc6ca73fe4440a24ed630825b54cc7ba34155f681219cc2e938d6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2450, '2022-10-17 02:19:37', 'SALE/POS2022/10/2449', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84f5c2c1cf515cd3f3ac8a5d07c5dc1175bb99de8975e6a109e3e3165b3f2395', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2451, '2022-10-17 04:05:37', 'SALE/POS2022/10/2450', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6295b7aff46200f81ac8af0ee5918837b8345723caec38a17bf74ba443bcfcf0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2452, '2022-10-17 06:58:47', 'SALE/POS2022/10/2451', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '21950.0000', '0.0000', '0950', '950.0000', '950.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '21000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '21000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd06d89ea1b594483072ab631762dc24bcc485da0006a12657efb671f5a76280c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2453, '2022-10-17 07:08:09', 'SALE/POS2022/10/2452', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7d8ed88baf9a8bf45855835007172ffbcfc1d21c3610d53ddb1d61c98081914', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2454, '2022-10-17 07:10:54', 'SALE/POS2022/10/2453', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '857c647f4430c22c6bcc44f836e60f59917a7138787ffdcafeae8003ac77a7d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2455, '2022-10-17 07:21:44', 'SALE/POS2022/10/2454', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66239efd699359b6ae9ec98c9983bc44d92e55e8eb43c74f6ecedaee9077bd87', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2456, '2022-10-17 08:02:48', 'SALE/POS2022/10/2455', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '034ecbc9ec3482f788223db55d10b08dd08c9f2f4991901fb600c90ce5dfa870', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2457, '2022-10-17 09:31:30', 'SALE/POS2022/10/2456', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ba4887896f652cdea88703276e451773a525dff5a0958608387d320f778318c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2458, '2022-10-18 03:10:58', 'SALE/POS2022/10/2457', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b592d6c1889be4faed68b19d7664733bfc9093af1d28f4fc8c4da81a606c907', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2459, '2022-10-18 08:32:37', 'SALE/POS2022/10/2458', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b7f4fb7d6d40bd907c480e578c67d9cc29fcfa7f00cc16d4663ce5cbbd8daf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2460, '2022-10-18 09:03:10', 'SALE/POS2022/10/2459', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '457d24534a6b87a06dbfadc1b8da25ba28f133e423617bb5ca3a23b51324e74f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2461, '2022-10-19 00:26:26', 'SALE/POS2022/10/2460', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '4500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c16ee24a745f1c43675dbf61b8345c6357253a04903fa1afec2aa92355ab120', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2462, '2022-10-19 04:42:50', 'SALE/POS2022/10/2461', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '73b015f9f83cde78654224cbdf825758d27cc56cf7f93c170104ae09ef3fb3e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2463, '2022-10-19 04:59:56', 'SALE/POS2022/10/2462', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1020.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1020.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1020.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56ba85f1842c8aef1d0651aa50f857e73b52bfac6fdd95d380b7c53cd44fea4e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2464, '2022-10-19 05:03:00', 'SALE/POS2022/10/2463', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78fe760e1cc78d361615d56416884770ea4268e42df1fec176ff2f44e4efaab0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2465, '2022-10-19 06:50:26', 'SALE/POS2022/10/2464', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1fafe6f4a868f0133aff01843ea487f9a30fd017e51bbe03d865d3ce92183dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2466, '2022-10-19 06:53:33', 'SALE/POS2022/10/2465', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21c48e0961ea268b4f0fb074a5e0943f116410e943c54b21d3520f745d39daf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2467, '2022-10-19 07:58:06', 'SALE/POS2022/10/2466', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8afcca2fc8298cfa3eb9d3f2e9211c127165aa80e547515afe80c1b814294b86', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2468, '2022-10-19 09:05:50', 'SALE/POS2022/10/2467', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '316d140405d4bbd36046a171c95819736a751f7caae0bb32f6286bd174e101e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2469, '2022-10-19 09:17:38', 'SALE/POS2022/10/2468', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a782e0df90eecec459576b6f58107d8ec421f03516eac607c85f4b971d54c83', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2470, '2022-10-20 01:59:25', 'SALE/POS2022/10/2469', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a383d8c1fa366725a02d71ff03baca79cab417aa4eeb00a858343aff077cff6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2471, '2022-10-20 02:06:02', 'SALE/POS2022/10/2470', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7150.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '7100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52236939b6facfc6cbe00560a8ec4f18cb485e2e42ebe76668a006a4b8a0bd88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2472, '2022-10-20 02:08:15', 'SALE/POS2022/10/2471', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4be456a79e1ed57ebfc6d2185c737be1668ef1e9555f08cc8ba8abfc8b63568f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2473, '2022-10-20 06:29:17', 'SALE/POS2022/10/2472', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3480.0000', '0.0000', '30', '30.0000', '30.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '367a036e02cd70409406d4447145790b9a79deacb1793ca5a7b232818a248631', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2474, '2022-10-20 07:59:26', 'SALE/POS2022/10/2473', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '20', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be4aff034af7b5a4d5e0e55763957864eaf2627c759a968758ce450d96011619', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2475, '2022-10-20 08:01:19', 'SALE/POS2022/10/2474', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aac6b3ef6aa4f88b099c711835c7f7ba126c92c7fbd8e9d036df7ebf5431f25e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2476, '2022-10-21 02:14:44', 'SALE/POS2022/10/2475', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a2b2a4bd40e4b3f6927bbebfc932b41288ae31f3e91ca5b186142d12b9e8ea1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2477, '2022-10-21 03:49:39', 'SALE/POS2022/10/2476', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2869dfd1fbe5b709b731491bb38785e63a7a0bb27e638ca730ccdf9efa2dc599', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2478, '2022-10-21 05:31:48', 'SALE/POS2022/10/2477', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59270d5982b6cfa0f687f4049ae0b89270a0e597da8e820564ca0b32048b3f03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2479, '2022-10-21 08:31:41', 'SALE/POS2022/10/2478', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35a0690041d371979b5d5859bfa1eed1392f4f5e4641829e691e785395128aea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2480, '2022-10-21 08:49:28', 'SALE/POS2022/10/2479', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e15de06d020e74a73e5a1c3c0f72e438f630f480c652f221fddcac7460bb3f8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2481, '2022-10-21 09:11:01', 'SALE/POS2022/10/2480', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f2b0c6385a204e0d65a34dbdb0c0c14f7ccaa2276bfad3b759d4951c02f8cd80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2482, '2022-10-21 09:15:40', 'SALE/POS2022/10/2481', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b7e89ae07401153296a57b40f04633e71f995f847c5db44ec00c6e940445f292', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2483, '2022-10-22 01:14:04', 'SALE/POS2022/10/2482', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1040.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1040.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1040.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cf8385ffee0101c4893087bc0dbe589a53e021876f34da3ec03fcf349e44aead', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2484, '2022-10-22 05:23:04', 'SALE/POS2022/10/2483', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '710.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '710.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '710.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c809329002a7400ff0d7bea35b7194ddb8ed59642fbe0233d323cf00edc8680', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2485, '2022-10-22 06:46:01', 'SALE/POS2022/10/2484', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3f151ae313626ee522c2128aeff95c7ef96fff50ff3d7967bfb3939412854d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2486, '2022-10-22 07:34:52', 'SALE/POS2022/10/2485', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2615f7b684ee5c4139b8ae5f3e6e0fd9169672e1bd5b8d1787a97f41941c203d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2487, '2022-10-22 07:59:00', 'SALE/POS2022/10/2486', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '796bc589774e84f935af490496eba2f9a9241c8876c066f10d166a824e6938c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2488, '2022-10-22 08:19:35', 'SALE/POS2022/10/2487', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5dd184bf5a8e7660d04374497b2289d49b415c782878d796a79ae7f72907efa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2489, '2022-10-22 08:32:46', 'SALE/POS2022/10/2488', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e203dfba24446b557893454cfad179ca0bae7879d45a07b015a67287343dca34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2490, '2022-10-22 09:27:59', 'SALE/POS2022/10/2489', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae2a744df89fc2e95ab291ef4f24fcdd0fc1dea273ff00dca9d41cf855163b90', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2491, '2022-10-22 09:42:06', 'SALE/POS2022/10/2490', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '697c1a900be2b6fc390c73d0129683e51467ae0b2c773b66a7f4b0d79ec14509', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2492, '2022-10-22 09:55:12', 'SALE/POS2022/10/2491', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06ae1d168edb40538aed83642102fce8fe9713d61139fc8c836a9ce9c17fc43c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2493, '2022-10-22 09:56:51', 'SALE/POS2022/10/2492', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '5550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bf0bd036646c9e2f55bb5ebe6fcff950f00871bc3c186a01b41ac2c890d619f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2494, '2022-10-22 10:17:17', 'SALE/POS2022/10/2493', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '940.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '940.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '940.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '517e054c9835fad1a3176fed9ccc198b01dd0df9c85f9bf8a4527ce5e77ea395', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2495, '2022-10-22 23:55:50', 'SALE/POS2022/10/2494', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b15bf91e7f3cda049443c5d2b1df2989dec36e46c4b695fe3f2313cdc1459c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2496, '2022-10-23 00:45:20', 'SALE/POS2022/10/2495', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81e69d8bba069071a180a81cc2d28b39c9551ec1325dba7b2d5df2bb9ac120ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2497, '2022-10-23 02:54:43', 'SALE/POS2022/10/2496', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ca73e2545d50f46034d6712408573496dd322a08df097dc10e2fb9b3f822536', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2498, '2022-10-23 03:46:08', 'SALE/POS2022/10/2497', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '13690.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13690.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '13690.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ddfe8d6c16c61ba4e46ae0bbff9c4c0984dc7eccb4782d4c1f6e880eee276f20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2499, '2022-10-23 03:49:51', 'SALE/POS2022/10/2498', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '47b008928acb029e363a9bc01988f2cdbbe349cc6e2ace8ba3e2d84d288a4587', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2500, '2022-10-23 06:31:53', 'SALE/POS2022/10/2499', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1391c1da59ef1ef9488ff009e21a01aa5eaa6a69daea0f6e14af8be23040b0f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2501, '2022-10-23 07:45:03', 'SALE/POS2022/10/2500', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '760.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '760.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '760.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c58653186c89abbcc2a70e04c0e2740ef366278750d0376192db769e92bb20c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2502, '2022-10-23 08:07:38', 'SALE/POS2022/10/2501', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '560.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '560.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '560.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da7f7730620b54d0e6f9dcab65c74bd79d8c8eee587865e9fc05f6fe60591c33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2503, '2022-10-23 08:18:29', 'SALE/POS2022/10/2502', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97fd068b052ec3e25f40074540a3dfd98783b14c2fb2a89e7fd8bf7f1a9fc67b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2504, '2022-10-23 08:19:24', 'SALE/POS2022/10/2503', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '726f9181d7be174680aee3dfa083ebd6f5bbe340b1a6af3e22a681aeacb39c41', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2505, '2022-10-23 08:30:07', 'SALE/POS2022/10/2504', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ee60d884a0e503a70f8db3e3dd06456e3d52f1e6b30d1a0526914608a84f077', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2506, '2022-10-23 09:24:27', 'SALE/POS2022/10/2505', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01a8beba0ca269a6fcdbbb1e68d5ff87bbdaf8142086fe79d9d98e78013e17a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2507, '2022-10-23 09:35:45', 'SALE/POS2022/10/2506', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b360b5bced4937315b151df9bb3ab8bba1f4868404d80699e6d71b6431e0155', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2508, '2022-10-23 09:44:22', 'SALE/POS2022/10/2507', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d95db38798ad361cdeaf70e0dcf4424fa22672c2fe1191a205546f31ce620d8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2509, '2022-10-23 09:49:13', 'SALE/POS2022/10/2508', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b515793469a2eb7096ed5605d5f45b3168c8c4f75f34871604f620a646f0d7b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2510, '2022-10-24 01:44:03', 'SALE/POS2022/10/2509', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93d563ff6ecef97614d382e256cd2f29a03650536611ef8dd86b8dc5c1db41f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2511, '2022-10-24 06:31:41', 'SALE/POS2022/10/2510', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3460.0000', '0.0000', '60', '60.0000', '60.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '3400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dffca1ee7d071cf069e2ecea6989c857d021f6bd2d6babef8a36f9ef51861c09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2512, '2022-10-24 07:03:27', 'SALE/POS2022/10/2511', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a820afebf1ba59230c0404507eda3e44449e06bf41e4cae576145344b882011', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2513, '2022-10-24 07:12:06', 'SALE/POS2022/10/2512', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '778b029b5e0d2cc21aae72b50698b334d4c3c3fdd62702c80391ab437fe4c142', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2514, '2022-10-24 08:44:58', 'SALE/POS2022/10/2513', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa9ace6036f9103b35cddc9121f07da9ea50c65919f0a2f3aaadf8553b1fd955', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2515, '2022-10-24 09:17:34', 'SALE/POS2022/10/2514', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e4bc85773eaa0b6d3452c452000f555dcbacb22c980deb102f516ea7af558e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2516, '2022-10-25 04:57:07', 'SALE/POS2022/10/2515', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ccd59cc524b2e53b55e803e344d37594cba80d5bca3f17625120530447f788c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2517, '2022-10-25 05:58:28', 'SALE/POS2022/10/2516', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a0a3e62a8f5eae5cb92c9ad311151b02f5d445ad01ec1c522b31f096220fa36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2518, '2022-10-25 05:58:46', 'SALE/POS2022/10/2517', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '682e740018d54cea87b4d36a72bb0bf2044435cab80a0ae821923e454a03ba09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2519, '2022-10-25 05:59:09', 'SALE/POS2022/10/2518', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6c27271426b28ca420ef36f62c7ab153edf1e38f1c746a6c56c42314a5569c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2520, '2022-10-25 08:52:19', 'SALE/POS2022/10/2519', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e9dbbc9a5e35ba873740746c605dda3e4e34e26e5c3494cd164fd149dabfbffe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2521, '2022-10-25 08:55:06', 'SALE/POS2022/10/2520', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7c244d6c23f14851c2934f4ac5e1bec94b716cff8f9cbf7d4783a20b58f73ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2522, '2022-10-25 08:57:37', 'SALE/POS2022/10/2521', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '954f5b66d124826c46bf60f12694a076299f786c45ee04e495de2b729da4d14b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2523, '2022-10-26 01:45:28', 'SALE/POS2022/10/2522', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b53d8ff14c9bfbb4de67ca6d88c077ae09eaa138d1da44e49f0e604113adeca5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2524, '2022-10-26 02:26:22', 'SALE/POS2022/10/2523', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '5650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f1d275fe33dcd5a5e23e1ab891cad02f996697581d36008ec7aba71e009325f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2525, '2022-10-26 02:43:51', 'SALE/POS2022/10/2524', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02add082c9dc138b2fa5a81497fad99dbc044431da5edd0c1877259cb4b5f259', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2526, '2022-10-26 03:27:28', 'SALE/POS2022/10/2525', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '811c2e9ffd31b3344912c240026b6e574feb260bdbcfa1cc01416dc80a816656', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2527, '2022-10-26 03:48:44', 'SALE/POS2022/10/2526', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15e2392da4db8786fbcae3ede43fbf74ceaf194d00a74164623236e0c7388412', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2528, '2022-10-26 05:15:23', 'SALE/POS2022/10/2527', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d6dca3beee031d0bf530f33a50d9561c9cab87a7e624169a211455de4907dd1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2529, '2022-10-26 05:34:14', 'SALE/POS2022/10/2528', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5390.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5390.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '5390.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '50bd002d61264c7b8851663db2072eac1960e1dfc629cdb422b5580f0fb2fc17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2530, '2022-10-26 06:16:43', 'SALE/POS2022/10/2529', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37a5070406436a0f8f619c82462393687b41bc618bf90324238946c770a92823', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2531, '2022-10-26 06:31:24', 'SALE/POS2022/10/2530', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '117a30ce734f7e7789af98db32258494afb8dd719b935e106bed803ec492e814', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2532, '2022-10-26 07:01:48', 'SALE/POS2022/10/2531', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5afc01621d1230dfb9d5418140b7d8cf94e9bb4ff11b263900ba7205a8b27b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2533, '2022-10-26 07:02:55', 'SALE/POS2022/10/2532', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c204b9cab622801a380265ff507392f7839de6e9adcf8ec619f99efbc1621af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2534, '2022-10-27 08:11:07', 'SALE/POS2022/10/2533', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66baebe536a7257f925123e4d09f7145f8fe98d8775dcfc1e1d203af6987bc80', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2535, '2022-10-27 08:11:23', 'SALE/POS2022/10/2534', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '40.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '40.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '40.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce67154cd02f371829cb4738c356b88c9eb280a4e16473885fd2d227649336fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2536, '2022-10-27 08:11:45', 'SALE/POS2022/10/2535', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29a9397ad837e2f51ff871f11a5699efdf8ac0bffddfcb3f54840f62a868e5ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2537, '2022-10-28 04:23:15', 'SALE/POS2022/10/2536', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bec143d17558737954b09458312dd8ede28299a3dad9c1d399b211063c15897', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2538, '2022-10-28 04:32:07', 'SALE/POS2022/10/2537', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '580.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '580.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57e4bbdfb5d091e3743066d81e021f47c3c61a171218bb972de72cb4cbdbaae7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2539, '2022-10-28 07:08:48', 'SALE/POS2022/10/2538', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12000.0000', '0.0000', '1000', '1000.0000', '1000.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '11000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '11000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca94b8246e52b19626e1ea01478eb679a7578124a48d2ee16739360b776c86a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2540, '2022-10-28 07:58:40', 'SALE/POS2022/10/2539', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5b1e800bae1fc925f7816b4bd3bcf0d41372cc3db021736653e8f55f938f364d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2541, '2022-10-28 08:08:35', 'SALE/POS2022/10/2540', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b85de1ad58d7701786f408b9cf73354a16073cf89bb5e4ecfbcd51c1812c4e0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2542, '2022-10-28 08:23:35', 'SALE/POS2022/10/2541', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1960.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1960.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1960.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1dc913d6d9cb3f8fba9e8425bf3315b85b27f86593fcf0de2eafa0c48a04ec08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2543, '2022-10-28 09:38:55', 'SALE/POS2022/10/2542', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '560.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da6ab87fbb35b9ffcbb1aa6d261aa5fd0b7591a8db14d3ca1cef6214a8d1019f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2544, '2022-10-28 09:47:24', 'SALE/POS2022/10/2543', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43043c5b25b1fc5c2571446c497da930bc6e7c578a72f468fc8ef3172c6f076b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2545, '2022-10-29 00:48:01', 'SALE/POS2022/10/2544', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '10250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '10250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8dc831405a58ad3402e4a4e3f16735cc70a373291a8b2ce82da1b412b2b2a3c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2546, '2022-10-29 00:57:06', 'SALE/POS2022/10/2545', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ba18598da49492ac37019bb786201650af629ec293c2ba96ad904e63793fa2ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2547, '2022-10-29 01:30:52', 'SALE/POS2022/10/2546', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '603e3e8cf1718501919fd30473e3d0cd1ebf8edb589f558acef549238f0e4700', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2548, '2022-10-29 03:16:58', 'SALE/POS2022/10/2547', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d89df94a5b2fb79ac763e62caff6f8c253d0ef8ed056add2732f378e023c056', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2549, '2022-10-29 07:25:10', 'SALE/POS2022/10/2548', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebb2793303eff5ff771f144ace63b8a3e9b49b1d0d5176c821ba701aabea0e6a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2550, '2022-10-29 07:40:38', 'SALE/POS2022/10/2549', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e3ef182511f5ff59cff4f0154b5a2f501f556fcda4b56d45224b04beca4439b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2551, '2022-10-29 08:00:38', 'SALE/POS2022/10/2550', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c03a3301e40dcc00538c0e91427e87d21dd43585067ca06ad856d4584d3954c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2552, '2022-10-29 08:11:17', 'SALE/POS2022/10/2551', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ecd0307ee9bb366f7ef1ac29e23a2fa68c6e11ef0e4d9e7bcc78a067f261c76', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2553, '2022-10-29 08:19:11', 'SALE/POS2022/10/2552', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '517fcb07806e9712b0c8264452a5978ca692753a7d7e232dfcfe38062c6e5012', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2554, '2022-10-29 08:28:33', 'SALE/POS2022/10/2553', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df32374d0fc9f1f8abe57b6d009adb251002da962595b80bd50a90ae4d0c9894', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2555, '2022-10-29 09:05:47', 'SALE/POS2022/10/2554', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4996245768a9a955214144d2a604550d336a7ba7d9104af2f2718cdf3a361b1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2556, '2022-10-29 09:22:33', 'SALE/POS2022/10/2555', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3595c3ce3f38569166b5729aa0453495df2793763e8ce79715e5500ecc1778f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2557, '2022-10-29 09:29:17', 'SALE/POS2022/10/2556', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1370.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1370.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1370.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7eb7ec46cb17e40c6c426314aea7fd61e702ad94ffb6b54d7a335e00d3be46e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2558, '2022-10-29 09:51:45', 'SALE/POS2022/10/2557', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5ca24f9dd2db6480d5f0650643f5c05b897e15a7cc3e9950149707458c42fd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2559, '2022-10-29 09:56:35', 'SALE/POS2022/10/2558', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b84e80fda2b89a961227be4867565cdeb72dd74864bae99153365e6f43f64e30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2560, '2022-10-30 00:47:30', 'SALE/POS2022/10/2559', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9462198fa95bbc1e4fddab369663a292c9c382bf76b84592f920648ffd57ea10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2561, '2022-10-30 01:35:04', 'SALE/POS2022/10/2560', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '713f5c608c02d3a18f12fed2544f409fd5b53c412e362ce86993664e73cc230d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2562, '2022-10-30 03:07:51', 'SALE/POS2022/10/2561', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5630.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5630.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '5630.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65fdee1342ec24c6057ff944a7f5388508101002adbbf6cae4b501b1337a73c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2563, '2022-10-30 05:30:50', 'SALE/POS2022/10/2562', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '089b684a8622d4aaeeafbfe7a71e105e988bab7d778048289f58b5693d8bbd68', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2564, '2022-10-30 05:51:57', 'SALE/POS2022/10/2563', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fca16e3c22487097a5f84b9f2cc80c1721a1817a126173d9b20b1764c67ed108', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2565, '2022-10-30 06:11:56', 'SALE/POS2022/10/2564', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '501d024af6fbc783f88d7cf83f9ea369005c783813171ed19eea3ccb17139fef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2566, '2022-10-30 06:29:31', 'SALE/POS2022/10/2565', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2af04ff356759ccacd5fbad50f8135ada418571cde9e4b08b5f8d58851b525dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2567, '2022-10-30 06:55:13', 'SALE/POS2022/10/2566', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e79c92d28bf6e7b243035680a440d6268de2866e600a1ba3c6966a525ba6cb2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2568, '2022-10-30 07:00:52', 'SALE/POS2022/10/2567', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4154955a654ef10c35f68ba00edbeb89bc2cf51e627554212162bb076eb7e95', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2569, '2022-10-30 08:40:27', 'SALE/POS2022/10/2568', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f85ad54318344f9826016375e628543acae46e0989240380e9042ff5f9f04d3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2570, '2022-10-31 04:29:52', 'SALE/POS2022/10/2569', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4960.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4960.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 16, 1, '4960.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7edb4429c7fab7701d96db09fbec7cab329af981bfa338d9bade978a69df93e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2571, '2022-11-01 01:53:51', 'SALE/POS2022/10/2570', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d8d18134e79f11c5f98a6465b107843ad73c4e864b8424b2ef3620213c0faca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2572, '2022-11-01 08:09:36', 'SALE/POS2022/10/2571', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '727e90fc9b212c5c270e4e8de1f792647b6303141c1e46e2ae99ea20ed02e735', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2573, '2022-11-01 08:10:24', 'SALE/POS2022/10/2572', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6ab1e6e719ba563d45c9fd9fb12321ed6d747b008eb3ea467f5512668a0e111', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2574, '2022-11-01 08:11:16', 'SALE/POS2022/10/2573', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5578dd5f827ae19785e8481a8666d4070117ffa9e3cba364b78c1009bbd4642', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2575, '2022-11-01 08:12:19', 'SALE/POS2022/10/2574', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df60e55a72b089c6e62178ef17cf432af858ba4f4d7251a9a7552b0676e452cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2576, '2022-11-01 08:13:00', 'SALE/POS2022/10/2575', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d17d2069fceb83279ae81cc48fac80f2c0c022ac284c8122f01ca454cf4ddeb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2577, '2022-11-01 09:03:45', 'SALE/POS2022/10/2576', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c05e5555918ab48ba0bb5e9ded79558ec23d758d07cd4596dc1fce70e8858cc9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2578, '2022-11-01 09:07:52', 'SALE/POS2022/10/2577', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '19e2c5a9c77aaa32b2e032a193a1a4e04cf0a65bafbedd0d3a844f3186122a1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2579, '2022-11-02 00:26:37', 'SALE/POS2022/11/2578', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca877782bddeab14a76d6d0f36e56d74402f9015a2d380e3fd2bf7f4719ef5d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2580, '2022-11-02 01:43:00', 'SALE/POS2022/11/2579', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '682d1ac23b56772e23f2bffee417531a607166b57ec8ba24042a85624656d067', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2581, '2022-11-02 07:33:14', 'SALE/POS2022/11/2580', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb7ca16072f709e8ce3179767cc8d8a02eceda31e7a11300eeca9476ef39d6f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2582, '2022-11-02 07:34:23', 'SALE/POS2022/11/2581', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a66d282ea4ca9385417680000c680124baf4235c3fbcfd43adfe685d03b5fb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2583, '2022-11-02 08:35:02', 'SALE/POS2022/11/2582', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8f21817065b1cfb30a2a5942e32fee33b00b4fa5bfaa149bc24e4e49acce0a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2584, '2022-11-02 09:16:08', 'SALE/POS2022/11/2583', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c6f33c4460d8160211668b0a2ca88a95aaebfd692b25cddb1d37abc135222da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2585, '2022-11-03 02:24:57', 'SALE/POS2022/11/2584', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '97080d962c75a87004811e024431d6fb5620b3b753b6b9deb4c2ab828e0f963d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2586, '2022-11-03 03:03:35', 'SALE/POS2022/11/2585', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52b900e311f69224c44abe399f643db93b0d6773e2a2fcea78092391a31ce379', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2587, '2022-11-03 06:26:16', 'SALE/POS2022/11/2586', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e88c3b4bb88cae2347fdd2d02509c28e561461b902b3f8c473f7adc0cb1416c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2588, '2022-11-03 06:26:58', 'SALE/POS2022/11/2587', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'def2d04cca9f8b9d95bee286985af04e12d3653ee86293bbcb66ebd41f208ae2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2589, '2022-11-04 01:32:21', 'SALE/POS2022/11/2588', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76ab49de03f219f94233618e16407d7e38730780ad481db52d38367ae084c357', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2590, '2022-11-04 02:29:45', 'SALE/POS2022/11/2589', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e5784d0287050351a18220aee3b23ab0d73eca395c62a2960492cca66a93b0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2591, '2022-11-04 06:03:57', 'SALE/POS2022/11/2590', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '3950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '486373bd22d6d0b9fb529ac16915ab443b74d3046d0d47721656e4977e87e210', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2592, '2022-11-04 06:07:45', 'SALE/POS2022/11/2591', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5392c7b351763d34966288d2b8e10bd2c8acada9b73a7761c1267c2624c52611', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2593, '2022-11-04 09:23:27', 'SALE/POS2022/11/2592', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0aa835f0c9ebd282df12c0ad0cf896d9f748943bd4969005eb7f019844c75a1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2594, '2022-11-05 00:39:08', 'SALE/POS2022/11/2593', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76f37f46005618f5db409561946ac557e8c3ece8212e14b804639bb831c55ab7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2595, '2022-11-05 02:14:47', 'SALE/POS2022/11/2594', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd2a4f0472279a45d78821c696a009fb35f7e9764efd105221d7c2e1f6ed4a23', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2596, '2022-11-05 05:44:33', 'SALE/POS2022/11/2595', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '283d00b13ddfbf2b0afefa6605962d917afa3952e4c8e38f85258995ff2cf20d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2597, '2022-11-05 06:27:47', 'SALE/POS2022/11/2596', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '79903ca5e9c4d080fca769c63b1474c456a2f0da52dd0724188092421f1b8548', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2598, '2022-11-05 07:01:54', 'SALE/POS2022/11/2597', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1070.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1070.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1070.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4706d5af6b9bf293e7e3a05f3b47656a6e00bbd2279b8b86fc36a391390787f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2599, '2022-11-05 07:46:24', 'SALE/POS2022/11/2598', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64aa6a6c4c1709d08e3401fb43ca5e7723c87a7ffeac5a51e163d61fb80f9bb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2600, '2022-11-05 08:52:39', 'SALE/POS2022/11/2599', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f889d79359efba30bf085c1744dd364bfc05d9aeab061bca1f9cbe2e2c01836', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2601, '2022-11-05 09:43:12', 'SALE/POS2022/11/2600', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f3b960c05e6dfc7105540d4bc2e2130ee539accc2bb79044b60fd105d511941', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2602, '2022-11-05 23:25:52', 'SALE/POS2022/11/2601', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f24a2c29d2b42fd62fa3ae45591bc1aa981bd26a68036ca30d2f435f8d644e89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2603, '2022-11-06 03:43:25', 'SALE/POS2022/11/2602', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1560.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1560.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1560.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af3f409d4f9fb1497bae636599a2383b5841db34db0e7d8890d8affe38d5cff7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2604, '2022-11-06 05:40:41', 'SALE/POS2022/11/2603', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df995e18a2ee4ace4aa114c8e7647fa65805fc2b0264a09133f6d4f550338cf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2605, '2022-11-06 07:23:25', 'SALE/POS2022/11/2604', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8610.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8610.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '8610.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a4a8bf34bb24d59b91b75ae618b821e1d8aa55809d9c28ca0ed28290d7df2dc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2606, '2022-11-06 07:26:58', 'SALE/POS2022/11/2605', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebda7427204b89ea56976d895060160db482ca4f1e64eae993c22bcfd434b629', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2607, '2022-11-06 07:27:38', 'SALE/POS2022/11/2606', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '410.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '410.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '410.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '906fb999bd271de66132d56b7c1ba563876d2f8d74cd4e30e29f9092e919d457', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2608, '2022-11-06 08:15:47', 'SALE/POS2022/11/2607', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db0f9f934e9ce322e578654be93c6bd143ca51b89ce0bcecf01639586c1f67c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2609, '2022-11-06 09:17:45', 'SALE/POS2022/11/2608', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7ca273474cf03185bd0a2b05b0eefc9ac374942ab183e20a3489ad8bd4ff20f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2610, '2022-11-06 09:33:43', 'SALE/POS2022/11/2609', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9030e5af939bd3d8adebc8cc7c08c871e66e363c828bedeaefa3ba32e754f48b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2611, '2022-11-07 04:07:21', 'SALE/POS2022/11/2610', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '5550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd80c02eb72e66a4c9faa09846b5d7728f5432a56d4a07d19cc8c45f81db42c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2612, '2022-11-07 04:47:22', 'SALE/POS2022/11/2611', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61772ac05f8b6b356b8d66d9b3a7ccdc8121c0df1db3dde5eef526192c7ffa59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2613, '2022-11-07 04:54:56', 'SALE/POS2022/11/2612', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0cca332d8c41c7a0d2d5d938bfbad319672500abb99f52302e07a4cdcbd4a692', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2615, '2022-11-07 06:11:34', 'SALE/POS2022/11/2614', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce9de02b21c9a9a282bae9979c1867a25a442a319e5fcd01a6d311f828012582', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2616, '2022-11-07 09:28:36', 'SALE/POS2022/11/2615', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 21, 1, '4650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d738f0466b998c6796d03b89df3c99ef9b43f3f7be8c304d462beee7e15ef04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2617, '2022-11-07 09:37:50', 'SALE/POS2022/11/2616', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bb5172eccf7e05332aa4c26d357dee3de8def2a00decc81754e92e2b429a741', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2618, '2022-11-07 10:06:12', 'SALE/POS2022/11/2617', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9bdbd8b393d98771d9f4bd97484752f98612558b2130e97d208f86381f849f5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2619, '2022-11-08 02:22:51', 'SALE/POS2022/11/2618', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f02b4ff0ccafe6fc3394f434884c45f94a0b8e2ddf720182a7e31dd1920f501', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2620, '2022-11-08 04:14:51', 'SALE/POS2022/11/2619', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2389e4a83432817a0a0bdf3936178280c44fad4ab72b544d1ff7e11c349e05df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2621, '2022-11-08 04:20:00', 'SALE/POS2022/11/2620', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22f20151e3647bf7c97027838c7a486d0e4971c00138f0ab41c52ce597c845e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2622, '2022-11-08 06:28:09', 'SALE/POS2022/11/2621', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80502897c3a8217b17c50cd3a5eb600c3adef9c8a64f15ac59124e8869a545e1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2623, '2022-11-08 06:49:32', 'SALE/POS2022/11/2622', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9c25e4b452ee1fb328d3cef355de6e0445d05f25b5645ee119ba8c23eb58f6ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2624, '2022-11-08 07:26:15', 'SALE/POS2022/11/2623', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b181099bff34d093b824463e294783ef9c095e1ef27507f69671fa64c171661f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2625, '2022-11-08 10:26:09', 'SALE/POS2022/11/2624', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0a028a7807a483290ad1543532645c5070946218e0761571b2d2a0609861943', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2626, '2022-11-09 02:44:20', 'SALE/POS2022/11/2625', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '96b326daf29263a4a59fc4a72c202e30322a37db9614e2b6279c650dff627cf2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2627, '2022-11-09 04:42:21', 'SALE/POS2022/11/2626', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '034c06fe214911fd7fe2c9f360a915b7e25af63d56f615dbe601731da3b4958b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2628, '2022-11-09 07:12:52', 'SALE/POS2022/11/2627', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e239dc0d3a4b75fcc345426db0409dbe97b6b720fb2bad87521e482b0be6798', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2629, '2022-11-09 07:58:35', 'SALE/POS2022/11/2628', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b69eb9d5208b2e2c3ccbab9a6bbde8c93f930ec19b15c1f54af6a645ccbbab5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2630, '2022-11-09 08:28:28', 'SALE/POS2022/11/2629', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '597d64d575457886ae6cd345e2e99d4789d3f54019d41a7e16c6d3e6b5eb3562', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2631, '2022-11-09 09:01:50', 'SALE/POS2022/11/2630', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '666348999e8bf04cbf4163edefd9fa9f9b4c8f778a795adfbc777a5520dbfeb5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2632, '2022-11-09 10:11:02', 'SALE/POS2022/11/2631', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b5d9a798d6c00489868fd14d24dff3daff63e847afffebff051d0e83c5e67ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2633, '2022-11-09 10:33:43', 'SALE/POS2022/11/2632', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '560.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '560.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '560.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '937d301558cae899542b4e38c0883a23abd067386289de952e5de54733bcb343', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2634, '2022-11-10 06:06:07', 'SALE/POS2022/11/2633', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8f71fbca008a14ed076252c6930e96f70c86f3e3bd21ed9d13d12e6e8bf3f4b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2635, '2022-11-10 07:49:33', 'SALE/POS2022/11/2634', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '480.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '480.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '480.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5a9b7c451100be3380de704f4695e312907bffd45fdc88c8cb3ba936a5509f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2636, '2022-11-10 08:21:06', 'SALE/POS2022/11/2635', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09c1e3904a613c855cd5c408b38fc3a267bb96617877f3a97ee9bc75f293abf7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2637, '2022-11-11 02:03:19', 'SALE/POS2022/11/2636', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1490.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1490.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1490.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5a00471f03f0e08378e5a66e68138ff8400728f70909b433b0f57c7bc3fe3b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2638, '2022-11-11 03:45:15', 'SALE/POS2022/11/2637', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1723c38ef8cfebe215d51a02df33dd98f14859a42ad2b257c550b275a14dc96a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2639, '2022-11-11 04:41:11', 'SALE/POS2022/11/2638', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99ee64af69a8c61a494244adfdc0233f002f5735cc0ef4e53fdd569f3dd2164f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2640, '2022-11-11 06:36:46', 'SALE/POS2022/11/2639', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e34b8f0b8260188d00256efed987c8cf4e62f3ad1e4b2ec7fa8abe6090b5f19', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2641, '2022-11-11 07:19:43', 'SALE/POS2022/11/2640', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b81438aaded5352136df7a8a3f98898d7d29f43b93051b62d1cb5f62dc91900d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2642, '2022-11-11 07:57:22', 'SALE/POS2022/11/2641', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1185f9d92076aa67ee88564c0c326a3d0a9a0691a9ff822d63b07d4fc2ff49e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2643, '2022-11-11 09:17:28', 'SALE/POS2022/11/2642', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15c516031a1a0420bf1455f4b955f0613666b5fc319bc72257a188b802681102', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2644, '2022-11-11 10:26:00', 'SALE/POS2022/11/2643', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '212857982631b6650845c4df08f4d77d17dfdc7a90e9a2bd6d0a38f0594b25d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2645, '2022-11-12 02:47:43', 'SALE/POS2022/11/2644', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2560.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25d181e7ad0af362a3b06ca296ac35c54143b18a29b504f5850b3834c7b517ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2646, '2022-11-12 05:54:30', 'SALE/POS2022/11/2645', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '21550.0000', '0.0000', '2050', '2050.0000', '2050.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '19500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '19500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b1b79178b728b456c1410c71be28c5cab6d0d5fa2d3c05df996ce87e91747f65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2647, '2022-11-12 06:52:04', 'SALE/POS2022/11/2646', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6cc7ad96c956c763c3e1dd29cfda81abaf1197cfd8fba2066b3cf2287788a07d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2648, '2022-11-12 06:53:54', 'SALE/POS2022/11/2647', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15a609516deb88a61d626f7657bca2effb0931a37f21eb0eda95277a4f89a10c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2649, '2022-11-12 08:47:11', 'SALE/POS2022/11/2648', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05ead12a458683d05882a7b4d29be8ed14bc6884a1a35d3cae56645d37b9e0f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2650, '2022-11-12 08:49:42', 'SALE/POS2022/11/2649', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ffbbe56f0766e64789e0b36c31d64b31215398266d5c7b09717ea34fafb9df2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2651, '2022-11-12 09:03:01', 'SALE/POS2022/11/2650', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '119594f51e3bda3e64d91bd31752bbbe9d2f36c0cb9da535894ef217ab1c227d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2652, '2022-11-12 09:11:35', 'SALE/POS2022/11/2651', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28b116c4cd8cee4ee5f83f5738febd4d2c93508492a12fb1c2dd4b2423ff5eb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2653, '2022-11-12 10:05:27', 'SALE/POS2022/11/2652', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2973e709c9789193f0ebc01b09912dc32d9eecbdff8933e7f6b499ffaf703ee6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2654, '2022-11-12 10:20:09', 'SALE/POS2022/11/2653', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0a9e98d17a4f737b4b9e8787482a7750457d74abdaca84b6745dbb73030813c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2655, '2022-11-12 10:38:49', 'SALE/POS2022/11/2654', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '187b893c3b63b8cd992afec6db2f6f130aed8ac2e5edf8455dcb1d03ec6c6e9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2656, '2022-11-12 10:43:03', 'SALE/POS2022/11/2655', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b24690cff3f020ad024017ba34a625a83d46872ef035a57dc2a6537575400fd0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2657, '2022-11-12 10:53:37', 'SALE/POS2022/11/2656', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02c875b80a33b4b13dc9188b00ebd97972b4b765a43d4c6ed455c0429bc5393a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2658, '2022-11-12 11:20:13', 'SALE/POS2022/11/2657', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fc92870ce23cbaf6d3410db30697fabd7f97fbf7518a5825643a32931db255d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2659, '2022-11-13 02:48:57', 'SALE/POS2022/11/2658', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8738348ad7a2a662edbb5562f1407c63c4059fc42c58f529b6ab0f21e547778', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2660, '2022-11-13 03:16:21', 'SALE/POS2022/11/2659', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd3dbd2e36a3cbe5a0dbf9359d690679123ab1b27dfb9944320de60885259ecc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2661, '2022-11-13 05:50:20', 'SALE/POS2022/11/2660', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f0c7266a9e15f81404a260f057703cc5d0f17f715ae5bf0c0b3ee465022a6d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2662, '2022-11-13 05:52:11', 'SALE/POS2022/11/2661', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c390f73ec26636bbc2a07779a40ffc49e56905d4c262bb5489ee1488c5e9a55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2663, '2022-11-13 06:46:16', 'SALE/POS2022/11/2662', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '72e30b05e360f5c8fae2ff349b1ef19f5ad4531ed39d218e59ebdd7c49020954', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2664, '2022-11-13 07:25:32', 'SALE/POS2022/11/2663', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3941f2a55dc76dd4160165efed79f7fd0039295af4933f02dfdba7e565695e5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2665, '2022-11-13 07:45:08', 'SALE/POS2022/11/2664', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '20ec95b2041c0d9bad56e1f059115a7f030c48d4936dd3ddd8661458cc100b81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2666, '2022-11-13 09:14:17', 'SALE/POS2022/11/2665', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcd3c4028f8df701ec95e21035623323dbc96799629e919eb55f79a1171ac2a6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2667, '2022-11-13 10:12:43', 'SALE/POS2022/11/2666', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f19863644d188a7352012d96bb5066380ae8ca1406ad445c229237adb1b86cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2668, '2022-11-13 10:37:10', 'SALE/POS2022/11/2667', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9bd953c492b43a9079e93b423bcc749287c24c0a7f4794734c344beb15eecf01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2669, '2022-11-13 11:04:11', 'SALE/POS2022/11/2668', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '5150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e71f833f1a50356b055c40a7dc391a56b7b033d446bf31686cefafaae2de5f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2670, '2022-11-14 03:21:53', 'SALE/POS2022/11/2669', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '514b36cb7985159f2178661daa21bbc61863c3a0648902c6d4dd9b3955caf4ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2671, '2022-11-14 04:26:59', 'SALE/POS2022/11/2670', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a3c79076475cceccb7290ce134eced43014347f0b86da4894afb3dbfb0bd3c0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2672, '2022-11-14 05:08:56', 'SALE/POS2022/11/2671', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '310.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '839eb58c5a66a5aeff1a20bc14489aa71f0ecc46a042680f7b0ab28051402a64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2673, '2022-11-14 05:10:48', 'SALE/POS2022/11/2672', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '2000', '2000.0000', '2000.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '0.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '0.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0b2f7ff7cf0b157217c2c2ebb04aabd47db9cbf40f6aadd5fed662bcfb13c277', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2674, '2022-11-14 05:58:43', 'SALE/POS2022/11/2673', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '736d595c5f7999cce1f30f8390ed696ae40ad5e5f8b625230c22646b5d9b0ac4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2675, '2022-11-14 07:09:51', 'SALE/POS2022/11/2674', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '130', '130.0000', '130.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec14bf90d50b98f2ba1bd6dbe0f18c707612a99f996dc864f1977e494420ab5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2676, '2022-11-14 08:28:59', 'SALE/POS2022/11/2675', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3d52cdd24950d3588455371fe294ac7ccbbc8e75a69fe8fb0809b7d48c93bb8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2677, '2022-11-14 10:29:01', 'SALE/POS2022/11/2676', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6400.0000', '0.0000', '500', '500.0000', '500.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '5900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69a080fa433faf6cc6ac93afed70d2098de9ea7bee8e5fd88162c3cb6874bbbb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2678, '2022-11-15 05:17:07', 'SALE/POS2022/11/2677', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '488290e9d22c59c10854db45430b9cb79aa334ca3c9f9dcc3a44211688fb97b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2679, '2022-11-15 08:07:37', 'SALE/POS2022/11/2678', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eac58b3ce482cbf0f42ba18ea53303de52b5a79023630638eed04abf1b829319', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2680, '2022-11-15 09:36:39', 'SALE/POS2022/11/2679', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f2f5116402e180608a1c88d212b79548411e5fcef536f06ba2fcd4c9dd9a839', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2681, '2022-11-15 09:38:32', 'SALE/POS2022/11/2680', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d78924c86499e1ab99e34ad1d4b3572fb80b3d7efe2a46ee7c8f446c7aabe45', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2682, '2022-11-16 03:24:38', 'SALE/POS2022/11/2681', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93a2f8ec2238deb6477a631b43d8048230d23b430d66e2f0667eb9419b439cbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2683, '2022-11-16 03:58:15', 'SALE/POS2022/11/2682', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dd3898db982e3869a4a03a233d29dedb2eefc518cd470872eac2a364b1e6dd9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2684, '2022-11-16 04:20:19', 'SALE/POS2022/11/2683', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a72aa92ff20818da10fb6c06fb178ebdcf918ca91a2c6c3e28347957cdc7eddb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2685, '2022-11-16 05:46:43', 'SALE/POS2022/11/2684', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f4bde620af831c1c71dac22bd16f535fdf9601823f9f4a03b29fe39b3e0de054', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2686, '2022-11-16 06:20:06', 'SALE/POS2022/11/2685', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a83f60b95603849920a9479571eff2a29857ded82b60fccb17005fa48d877d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2687, '2022-11-16 07:35:11', 'SALE/POS2022/11/2686', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd40a738e770dc2aa9e223435657aa732b6b751f9a629c65aa8ccb1bb5a1639c1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2688, '2022-11-16 09:02:54', 'SALE/POS2022/11/2687', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0992702e289ccc02ed8854d452afd5f6e0ed04ff271c2826493b57687a133a77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2689, '2022-11-16 10:14:42', 'SALE/POS2022/11/2688', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '211d2a00bf67fce53ac46b1d8037a0cf14fda759124ad0ebbbdb3e8e18916f9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2690, '2022-11-17 06:25:57', 'SALE/POS2022/11/2689', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '7000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcfa964b940689e4800acc97fd1f027623125e7ac123831a54b2d8b4712dba93', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2691, '2022-11-17 06:26:55', 'SALE/POS2022/11/2690', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c052f6c12cbdd4f6b70a3f3ad68e23f054cdd9977c97d834fe0a5066ccf61adb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2692, '2022-11-17 06:28:13', 'SALE/POS2022/11/2691', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f59b9d4c2d592389a6b6acb638ea0da19055975a7dddf8ee6a0fdcad11acad0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2693, '2022-11-17 06:29:41', 'SALE/POS2022/11/2692', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b816016ea03061817258bd9df8fca2a59472c4fdfefb909a7a47aaaa46d99c74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2694, '2022-11-17 09:50:59', 'SALE/POS2022/11/2693', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21626951d17709e2d0fc80f94006f81b2f20a4e2138447498bf0f9c51a07081b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2695, '2022-11-18 01:33:54', 'SALE/POS2022/11/2694', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01b9142fa4fcec7400a3dff0c0d18898506b00aa8f83324ced90347ac0b39b5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2696, '2022-11-18 01:56:51', 'SALE/POS2022/11/2695', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e668d76f7476baaf0d9ab1f67875bf2cce17b4247971ee1336779a72739fdfd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2697, '2022-11-18 02:11:42', 'SALE/POS2022/11/2696', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '860dbcfa46095c23f971d12bc570afa83a06e52e8865f84a7296bcf3ae94740d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2698, '2022-11-18 03:43:56', 'SALE/POS2022/11/2697', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b6f5512adf581a60ac965658995dc34a82f15e3b51b79b2e7ff2f9c8dbfdc7d6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2699, '2022-11-18 04:01:02', 'SALE/POS2022/11/2698', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3450.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27a57f8d664ed67a95b0613689e561ceaea2450b02e33e67a3bd3754ec216e5c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2701, '2022-11-18 06:23:03', 'SALE/POS2022/11/2700', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c181600be977231722bb3b384205357866404930e9574ecefefef36dea07b5d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2702, '2022-11-18 06:23:30', 'SALE/POS2022/11/2701', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e649b4aaa8fd50907f6e73da77a78dd2f49a412ccb9057f21771aed090ff18b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2703, '2022-11-18 06:48:46', 'SALE/POS2022/11/2702', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '30550.0000', '0.0000', '1550', '1550.0000', '1550.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '29000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 32, 1, '29000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f1895182f354ade3472f6b448adf1fd4dad9e8b2878caec25446d067cfadb922', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2704, '2022-11-18 08:43:52', 'SALE/POS2022/11/2703', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7500.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '7100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '537ea4fa551369386d53cfcd1a5fc62d05bb83b8e58ac6b68e5a5cdb7054e851', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2705, '2022-11-18 08:49:48', 'SALE/POS2022/11/2704', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '848eab850c98248db1bb20b1cfdb763ffd654cf5631f1c7627565ab978a430af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2706, '2022-11-18 10:17:06', 'SALE/POS2022/11/2705', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d22ff3f6adcab4be9582880531a92ad9a66970f70b4f48a75ccebb4bd78c5fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2707, '2022-11-18 10:50:31', 'SALE/POS2022/11/2706', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e964de3dcaceaab46370634d35278dbf06c75e33c1206af4921e46cbc4d6f8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2708, '2022-11-18 11:00:27', 'SALE/POS2022/11/2707', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '3450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a007fdbb88fc037bcb8056892ffe4788a6f4dbf9ca85aa2589a7ad5e1ad7996f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2709, '2022-11-18 11:01:19', 'SALE/POS2022/11/2708', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb68ee5548f9bc895be1d956431669c0a3e258c019d4d4df7e288991b806eb67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2710, '2022-11-19 11:08:10', 'SALE/POS2022/11/2709', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '78f15ce2037431ef782ccc93af3f350e2292245187b233d56f07b5389cbff095', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2711, '2022-11-19 11:09:29', 'SALE/POS2022/11/2710', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '4500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f365b275664086a522450b8b03bd9bf31791f6d0c93a151fabb35f3676d2b977', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2712, '2022-11-19 11:15:06', 'SALE/POS2022/11/2711', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b77541bfa1bf9d0eae379ff61d8a2613a5e18d201e5dc62771e734b9fdc46ed6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2713, '2022-11-19 11:16:00', 'SALE/POS2022/11/2712', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '09c0b993cdcd0a4bcb5d2f4f7793563b8f9c4ec1660d8c715e42b1c1eea75955', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2714, '2022-11-19 11:18:35', 'SALE/POS2022/11/2713', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '767596a9da9881c864acf5cdc20daeb727bfd2c05a30720fd2f2cd83edd8a3fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2715, '2022-11-19 11:22:49', 'SALE/POS2022/11/2714', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae3743a367baef4c5a5e553b0f04250406691aab895a33c993eab29966ed93fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2716, '2022-11-20 03:27:33', 'SALE/POS2022/11/2715', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd7f3c08bf77c9eb0749b282874ba3ec4058635aeafc248c407192bb439e6a073', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2717, '2022-11-20 03:28:18', 'SALE/POS2022/11/2716', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fd6f28b548e1d664b00b1907dcfbf25018554b0b133af58a282bce0534796d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2718, '2022-11-20 03:28:51', 'SALE/POS2022/11/2717', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7be7e6806ce43ce4e81be69cdceedc47b6fad27b3fa793670967ed3724953079', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2719, '2022-11-20 03:32:21', 'SALE/POS2022/11/2718', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb26a90c33f734ab01b6f759f6f68dd0f69dddfd5422d76523a3c4fc836f36ac', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2720, '2022-11-20 08:00:35', 'SALE/POS2022/11/2719', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44a348e2edd86b1f0c276f68b821014e01598e8edbc910801351f5e61f341d33', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2721, '2022-11-20 08:53:40', 'SALE/POS2022/11/2720', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8857914650a2b5fcd043b6bf6e7d12a93771265fff3489d67cfe896c756848b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2722, '2022-11-20 09:22:07', 'SALE/POS2022/11/2721', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '63065ede41f99aa95c74e3cb47eec9c6a8750a4616cd281477ea87fb2da8a8e5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2723, '2022-11-20 09:27:02', 'SALE/POS2022/11/2722', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6a0137cab7751d88d8519c068407f8e9999d211ad831d636bbf8ff2dfdc1ac1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2724, '2022-11-20 09:30:56', 'SALE/POS2022/11/2723', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '608f5f70a5d477e0368736d62ee3270831726d4839400483d69ac43d14ce8761', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2725, '2022-11-20 09:44:37', 'SALE/POS2022/11/2724', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '156491525681944adc2a5a751901e5680ec45c6e67dbe57cff20748a9f266d1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2726, '2022-11-20 10:23:59', 'SALE/POS2022/11/2725', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '240.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '240.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '240.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d2ca7e4d83cd03f56a845b23ca7c2aed02b99e6e727709f1674e6b1c24dd522', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2727, '2022-11-21 03:50:21', 'SALE/POS2022/11/2726', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a033dec853ba6bebd99a221222c10050f471422f4b5a75162b03f3189e0b0022', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2728, '2022-11-21 04:18:32', 'SALE/POS2022/11/2727', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af10f7aaf18c0de836bf3e84e990c83aa080bef173886602613b2eaa79c6925e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2729, '2022-11-21 05:37:00', 'SALE/POS2022/11/2728', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83212d3837dbc717ecf4f0365e519c25801695dd58fb315b603979f7703dd16b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2730, '2022-11-21 05:39:59', 'SALE/POS2022/11/2729', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5eebbd5ff0f0f78e0a0b1af45478b1ea2f9e11637901d034a03afc5e2567f14', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2731, '2022-11-21 07:18:11', 'SALE/POS2022/11/2730', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82c1e01b583361d31783098d39a77448d260d01d28a83989fb5b96789d719e16', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2732, '2022-11-21 08:07:06', 'SALE/POS2022/11/2731', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '130.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '130.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '130.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a0ba6360a09d9d2e21f662e5d1f883b041655341230fbff56edfe1464a7436de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2733, '2022-11-21 08:52:36', 'SALE/POS2022/11/2732', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a86b335794b843eefd45a497d39af8e860df4c76c6a6748f1bded44c2bda6f0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2734, '2022-11-21 10:12:33', 'SALE/POS2022/11/2733', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a4a3a9b4bdf5572248a305ab50ddf8a5cc8cf6b862fe25e224fa163397df8db', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2735, '2022-11-22 01:16:51', 'SALE/POS2022/11/2734', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8b4d2ca4c634d2c758ba70c581ee22c142cec0f5d7999551ad84d954180c003c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2736, '2022-11-22 06:56:41', 'SALE/POS2022/11/2735', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28d553e64232154f3f73190d1c5144e0935451309121890aa119a6861b5eb3af', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2737, '2022-11-22 07:38:08', 'SALE/POS2022/11/2736', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8ce605591f37c3e0b5cdaf921184bd839dfb0dd6b2238f3fe5596462b41d2f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2738, '2022-11-22 09:11:12', 'SALE/POS2022/11/2737', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '357d905863c63ccf71f3e05ed4dbfec15b45df38da1ce97d5b0c4d8d694b1449', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2739, '2022-11-22 09:11:33', 'SALE/POS2022/11/2738', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '26d46fac580f878853faec9f86f2195e554079cbd809c0eeca643c690983e143', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2740, '2022-11-22 09:46:50', 'SALE/POS2022/11/2739', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c25ae89ba63d59fb518c0c82063cc46691b12baf928c2602d7e4c8a2f9eb74b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2741, '2022-11-22 09:48:44', 'SALE/POS2022/11/2740', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '69db8cb5e04dcee8d9b8df2f7e9b5f95ec4d11ae8b4fdc09b9c921d909fd5df3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2742, '2022-11-23 02:22:24', 'SALE/POS2022/11/2741', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '5650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a21e1a12bc569877e1982deef6f4688a3ac7050ff30b7d63dba11ebcc93f20e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2743, '2022-11-23 02:51:29', 'SALE/POS2022/11/2742', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1120.0000', '0.0000', '20', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ebe651afa38bc7559dcfc734f2627473eb5eb373d2d6df0975472526ceef6fc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2744, '2022-11-23 04:13:04', 'SALE/POS2022/11/2743', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64ea67641dfadca4f52dc7a81878ff0c8a78146fc2650817487df0b64d60cf2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2745, '2022-11-23 05:09:39', 'SALE/POS2022/11/2744', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '14250.0000', '0.0000', '1300', '1300.0000', '1300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 20, 1, '12950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52b7eb0b3df88be7549c699b341b69efe836aa1f3dca88c4000b34e214bc4e3d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2746, '2022-11-23 08:16:48', 'SALE/POS2022/11/2745', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '632ec61be4be9c6af7447a940195d39a1b6c96bac150be94962b3bb300f90c3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2747, '2022-11-23 09:03:50', 'SALE/POS2022/11/2746', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbbfca6c9258bbdd8d7b50b216e86f0208bad1c660fd3f95f9521e5b3d3f7408', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2748, '2022-11-23 09:05:39', 'SALE/POS2022/11/2747', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ad80c2a335b1f1e723674e8d48398e8a599d2bb5c5d5dfb2c988b172e6fd804', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2749, '2022-11-23 10:39:25', 'SALE/POS2022/11/2748', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c235d48169c7b2279c39c828ee86b90063ebf7c8c6248aae15de7d9ec5455877', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2750, '2022-11-23 10:40:33', 'SALE/POS2022/11/2749', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fec89ec28a9e7a66208b18b5d322fbc78a74089fbac2c38a01ac9a24973be2cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2751, '2022-11-24 03:02:27', 'SALE/POS2022/11/2750', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d2698c4411085d47af924e6f063f0f36e59d245efd4249472e245cbf3fbbc26', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2752, '2022-11-24 08:17:02', 'SALE/POS2022/11/2751', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1612038fd5f262631b39c14ccce7b7bdf4e00db9a18c27a1cac74617089a54fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2753, '2022-11-25 00:39:26', 'SALE/POS2022/11/2752', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '830.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '830.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '830.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e130419eebd806db0edfe455992a5ddb3e30065e3c45d015f16f2597bc5aa501', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2754, '2022-11-25 04:50:37', 'SALE/POS2022/11/2753', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '5700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8af149068e047b89fa341413d010c121acfce3a2b8c483cbf2b6b4c36fc43596', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2755, '2022-11-25 08:01:08', 'SALE/POS2022/11/2754', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54ab3d9f5aec1f56fa35ecef80de49f962028ab78b677129a333923a66017cbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2756, '2022-11-26 02:08:56', 'SALE/POS2022/11/2755', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '33b92faf63b12760196dd2e59c09c8910d6fbd0cbf607a52483e2d8868b093dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2757, '2022-11-26 06:23:20', 'SALE/POS2022/11/2756', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4500.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aeec89554165b620c6f3b3f559a0473cf3a54e0f677d6d0c75993ddf8d320c01', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2758, '2022-11-26 06:38:06', 'SALE/POS2022/11/2757', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ec4ba07cdab4af4d523daade909af0e2c28dbc54592ef00b87113b93b77fe24e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2759, '2022-11-26 06:40:12', 'SALE/POS2022/11/2758', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a23066269d1b6d12c4aac63b99108ab5b098b3a61c495a6608a1d25716323392', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2760, '2022-11-26 06:49:22', 'SALE/POS2022/11/2759', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc56d2eebeb50f45a9e5e9fa93d92686eae5e1cdd5d4c6e162f51b460ad6909f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2761, '2022-11-26 08:00:43', 'SALE/POS2022/11/2760', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f3254621840c55899057e0be048e9e4bd1fb5326b5f557c46ed6f02f6d814e1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2763, '2022-11-26 09:47:57', 'SALE/POS2022/11/2762', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '670.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '670.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '670.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '30cf69e9879b36e2828c6267602131c7ee57b5110c03d20ae0ec469e0ccc8d59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2764, '2022-11-26 09:49:30', 'SALE/POS2022/11/2763', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1910.0000', '0.0000', '010', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '717a550427696ea9812c534b44ffedcfb4bbcd9c4fa52ee86abaae49a26f96e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2765, '2022-11-26 10:02:51', 'SALE/POS2022/11/2764', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '0', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13b3c8192c23686a87817bf1e5918b16ddac024f7f2a31e4064881cf6c2421fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2766, '2022-11-26 10:22:12', 'SALE/POS2022/11/2765', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '94625f8d231a890b54ff082a3315adbecd8c96ccf1f7b3791e01b6328ead4320', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2767, '2022-11-26 11:20:56', 'SALE/POS2022/11/2766', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f02d9a1635b8013988935baee17df6116eadc157a71a047e22e840134fc615f0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2768, '2022-11-27 02:53:55', 'SALE/POS2022/11/2767', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '120ce62e0d2b2745db4bf54d15297c9185c62da2567be8852e2a15d22063d4f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2769, '2022-11-27 03:01:40', 'SALE/POS2022/11/2768', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56957d2b6f8ea391bda7d48135dd40c5db02c654fbcc41df55850cca027dd514', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2776, '2022-11-27 08:03:18', 'SALE/POS2022/11/2775', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1310.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5055fa12c969f8efe3a7a5d2ada3ed7d3baf92b8c838a6a0ccf865d08342ba8c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2777, '2022-11-27 08:07:12', 'SALE/POS2022/11/2776', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9410.0000', '0.0000', '0510', '510.0000', '510.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '8900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3beb600c26d695ec9d63ce20225bb1e861a5c9db2be3a481e232e68578c18d66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2772, '2022-11-27 05:43:35', 'SALE/POS2022/11/2771', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1bcae54235ba0b657f947048c6a77cdab930a52ba481d541ca4cb20257bca028', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2773, '2022-11-27 06:07:38', 'SALE/POS2022/11/2772', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '838a80d83d0a407558caeeea216f17b03d17026e822fde7295a1335776fbb6e0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2774, '2022-11-27 06:25:00', 'SALE/POS2022/11/2773', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b614cc8c8e86fc3b2117bb7f73de2bcf741ad69aad0d17a319638b6200b8bc9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2775, '2022-11-27 07:12:50', 'SALE/POS2022/11/2774', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e410a23f6f4349a9f57f5dacafed5ebf66680ee8c4c88a3836a8f2bccf94860', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2778, '2022-11-27 10:02:51', 'SALE/POS2022/11/2777', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b45df98925d28b94b98fd5639903fce80b31e265dc89a0ed11fbb901d823584d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2779, '2022-11-27 10:08:32', 'SALE/POS2022/11/2778', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54575446254ec494eda84edc7e9cf930d254033870f77a81c72c527426ecc231', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2780, '2022-11-27 10:31:14', 'SALE/POS2022/11/2779', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a82f08f249a921d32bc7e35f48330f7e606cfba1489264cbd0cf956d0cf48c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2781, '2022-11-28 03:16:58', 'SALE/POS2022/11/2780', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4bc4285e90b0ec43ac491c8bb63cc34098d39d758301bde50fceda2f3c14518', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2782, '2022-11-28 04:59:38', 'SALE/POS2022/11/2781', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd974bd850e0febf20a64abd9814589e1efa20a463a15862bf012333ca291da69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2783, '2022-11-28 09:01:30', 'SALE/POS2022/11/2782', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59c28cd80d09cff85431478097ae2e3becc143ab302e6f0b5c450f71914fa9b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2784, '2022-11-28 09:02:13', 'SALE/POS2022/11/2783', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2894ec499138a9ce700a484938424edb62a2f452d301df1cc0b9ccb7586c8fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2785, '2022-11-29 04:15:47', 'SALE/POS2022/11/2784', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42a0dd8c2a6a85ec916bc477319a1b78f649a5e201500079914a7d0075122ea0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2786, '2022-11-29 09:34:21', 'SALE/POS2022/11/2785', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a051c6108857409f6948910be8d7b459c6c74bba6e50a3da81a1e5f243678ae2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2787, '2022-11-29 09:35:06', 'SALE/POS2022/11/2786', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '913140b51535443f4cc54c511de429012482ef680a8f641c858d77c43e8238f4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2788, '2022-11-29 09:35:33', 'SALE/POS2022/11/2787', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86da3e6e8ddc1cb0c8ee54e23505a22810778a8059e2f00d1001b0f296fd67dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2789, '2022-11-30 01:43:53', 'SALE/POS2022/11/2788', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ffb6961906061499a5e57b060a94927830f1d9874d0b2156c2948070c0a08668', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2790, '2022-11-30 02:46:59', 'SALE/POS2022/11/2789', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a9f2add5ba53a2e6594a78d2770641ebd81e0f45529796a3a2b44f237a51920', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2791, '2022-11-30 08:20:44', 'SALE/POS2022/11/2790', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '290.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '290.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '290.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0ec67a59a6d80ed2e5a4e383e466c9263487b8c205602fd248d2afb3b346db7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2792, '2022-11-30 10:28:12', 'SALE/POS2022/11/2791', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3526f605136f489bde591e45916e35318dfc6b6a7da7f4dad0328b048356201b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2793, '2022-11-30 10:31:27', 'SALE/POS2022/11/2792', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '739b2835e222d35effbc3043d9c3d7eae2df42a6c0930bb2a48a6bbf09fd9fad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2794, '2022-11-30 10:31:47', 'SALE/POS2022/11/2793', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '86df58ff2fcd54af003009751f3c3ed3306fd5ceaeab13dba274fe9f4e39f37d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2795, '2022-11-30 10:32:15', 'SALE/POS2022/11/2794', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92ee551ccf685216f47335ebdc1d8570b2aaf68d1cebe1a369df91b882e076c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2796, '2022-11-30 10:32:46', 'SALE/POS2022/11/2795', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '310fe3a3255a1cccae46fce811af9ca8c4f121663d9b50fefee11465a3962c07', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2797, '2022-11-30 10:33:32', 'SALE/POS2022/11/2796', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5dc3d1374029361b0c313006638b0d36c03c9b5fd80139bdb6901c33c3e1f5b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2798, '2022-11-30 10:34:12', 'SALE/POS2022/11/2797', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '40e0b91896af15673eaf2c2813a171cccf70debc830b68e768e41c69f88f9f0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2799, '2022-12-01 00:49:11', 'SALE/POS2022/11/2798', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1d1f87894db5249dd50e217bd1ea918e6cf2af9b2a9fd765ab4456157ed24152', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2800, '2022-12-01 01:43:49', 'SALE/POS2022/11/2799', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11e1c0b21909ebd0b97d1dae71c5b9bb52b0c25b4c87746913f994eecbb2aaf4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2801, '2022-12-01 06:49:01', 'SALE/POS2022/11/2800', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a620930298ccb346ac0f3373f1d150253832cc592bbbe833fdc4e6ea1c1fd941', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2802, '2022-12-02 05:47:01', 'SALE/POS2022/12/2801', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3850.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71ff1108a9a5ee038f7a9cf27382b62caafd917db0eebc032adcd14c0cc18cba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2803, '2022-12-02 09:04:38', 'SALE/POS2022/12/2802', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad77e1bdbca578980d516abb21d8c8aca8cb8346729f97e51ee33aa920a3cc64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2804, '2022-12-02 10:47:33', 'SALE/POS2022/12/2803', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9cc7efeac487efdf60bd1b33369c2f3dffcf7200b5e51c1b29f89e09e9c5c4dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2805, '2022-12-03 02:28:58', 'SALE/POS2022/12/2804', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd549bc7b8faf89a435ae4cfc30dce196e4c7171072039135b41eacedef465ada', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2806, '2022-12-03 05:09:31', 'SALE/POS2022/12/2805', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f43fb7900e33e44b3b6a23f71069f0dff0b6a9969b580d1f644bde864d918025', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2807, '2022-12-03 07:00:17', 'SALE/POS2022/12/2806', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c4b533615bb53f03f4b9e636537c0a2f2d98c51d1c8b9e773329b358f364761a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2808, '2022-12-03 07:48:28', 'SALE/POS2022/12/2807', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c50b9ead6cb6bdd14c80a5d89d4bab64aafbf1e8e4b457c4b2c9b106b650cfc4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2809, '2022-12-03 08:00:33', 'SALE/POS2022/12/2808', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dbb359ef901266cea99079c66c610c259bf1373b71cf69f1fdd373dab4f314b3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2810, '2022-12-03 08:47:08', 'SALE/POS2022/12/2809', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5d6a4896b72ec7dd75b21dc308d67cef92bc63947626b563702ffaff91d7b9f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2811, '2022-12-03 09:19:03', 'SALE/POS2022/12/2810', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb6dbc3c3c05c955c98febc0ade27725decbcbed25698f8af8dbaa75fb55c123', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2812, '2022-12-03 09:42:08', 'SALE/POS2022/12/2811', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2810.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '2800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd1e4ad3bff6ff38aa3cd050b7c760a476aa3b32bc19c5eee4a0c6fe4ca5ffb25', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2813, '2022-12-03 09:55:06', 'SALE/POS2022/12/2812', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fa8e83a4057b6ecb63fe16e6acc2a902781f92c7dbe8e83055ed4b0ae32e7218', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2814, '2022-12-03 10:16:06', 'SALE/POS2022/12/2813', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e08b744ccde2fa6a4a1337460575fe39e503138cd38c486460cd87b6a5c2a1a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2815, '2022-12-03 10:20:18', 'SALE/POS2022/12/2814', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6f93c4e72421229b26f657baa1826855460d131944e6a3bf222114045c87836', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2816, '2022-12-03 10:22:44', 'SALE/POS2022/12/2815', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a1de0af804e294593de1b9d67100bea5e8b6faeedffa87f1f8e7916a511eec1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2817, '2022-12-03 10:32:18', 'SALE/POS2022/12/2816', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ff3bda1da5fc6793f4c7f34d88891ee80e1eab4f9afb1444215c3d51e0d4ffe8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2818, '2022-12-03 11:26:40', 'SALE/POS2022/12/2817', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '02ced75f861de42356c2c361f3db9881b83addc3ec1acdf366765ecc74997364', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2819, '2022-12-04 07:28:26', 'SALE/POS2022/12/2818', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc46571df6f39c7e52a94947837695ad611c7c16b13bfbf8d356385b3aa4a14d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2820, '2022-12-04 08:15:14', 'SALE/POS2022/12/2819', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11220f2a534b8eeec5a5ec2814fcb72a95991a08c6ec0e25edf95474cc1aa8bf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2821, '2022-12-04 08:19:14', 'SALE/POS2022/12/2820', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1860.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1860.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1860.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32b72068550ec145910e25d3e4a2c12952abc0ac2e7856677fd962f15c1ade30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2822, '2022-12-04 08:56:11', 'SALE/POS2022/12/2821', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32ce3d93448686754c5eb2a2b2a6b0cd4601fe8442f05189e0cff1f24034eae9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2823, '2022-12-04 09:27:13', 'SALE/POS2022/12/2822', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48550cfb5f1a8545a48883d8f819be61e584745b5f30fcfccd6d99450831e9a0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2824, '2022-12-04 09:34:54', 'SALE/POS2022/12/2823', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '241fec92d39c3de0f1e327269a489ab33b66ea7640169f5e4797880d96a14ba8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2825, '2022-12-04 09:50:15', 'SALE/POS2022/12/2824', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd4d016e942671c434cdb96a2965c044cedf1355180f4ae34d493e2d44bac7537', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2826, '2022-12-04 09:57:01', 'SALE/POS2022/12/2825', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '530.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '530.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '530.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '856a519f629eb45051bc48d1e442e61bd79840dc99e8ab362be4d37de5d32c74', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2827, '2022-12-04 10:00:12', 'SALE/POS2022/12/2826', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b3ada538d304d80cb6d9848601cda4ba427bf9fe95c5026f3427f7f325972111', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2828, '2022-12-04 10:16:11', 'SALE/POS2022/12/2827', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c6c3e7080a53fc862e5cdd40ad2b4370258c7b4e8fdecbd9dd1b9fac794831d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2829, '2022-12-04 11:10:36', 'SALE/POS2022/12/2828', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5c38eea05041fd3331c259cfa676106eb49ca8a1ba09a503fb79fb8683d69594', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2830, '2022-12-06 00:52:26', 'SALE/POS2022/12/2829', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '7330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0cd091cd75772c25fe940db4ba18e8a2d1d6336061c48077c8243180037649ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2831, '2022-12-06 04:05:18', 'SALE/POS2022/12/2830', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd1d9759e850f9e3e739ce3bceba3b2a7253a24f0ae3cf683ff288804d5201e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2832, '2022-12-07 02:00:55', 'SALE/POS2022/12/2831', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1070.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1070.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1070.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9fcd3652e22c7c737c7249b57f1d5dca97b18b1698d3fdfeb2a712363576002d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2833, '2022-12-07 02:20:26', 'SALE/POS2022/12/2832', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '76a71e23f3f22cea5ebf5dd908330d25951e2ca72f7651bd04171b7533e25751', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2834, '2022-12-07 04:32:54', 'SALE/POS2022/12/2833', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b9b8da658d42dedaf83fb935c7991ed99395c477e2ff33613c7800c6559f3967', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2835, '2022-12-07 05:56:33', 'SALE/POS2022/12/2834', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '575a9ae5b28b768ca76ea0ebed59ce6eac85b42501e524ee1290cc5b0f62807e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2836, '2022-12-07 06:22:51', 'SALE/POS2022/12/2835', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cd9f4b6804b71a24b169921c241baaddb275bccc9dd1aaa178856e9891c09415', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2837, '2022-12-07 06:58:37', 'SALE/POS2022/12/2836', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dcea8569a8d233f677c6904515c6d3fda5ad0e313c310a43df4da44c927dd719', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2838, '2022-12-07 07:28:26', 'SALE/POS2022/12/2837', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4cc89dbd79a1508db2fc20a61562caf2bae63984eccb961a181cacabe7397945', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2839, '2022-12-07 09:23:07', 'SALE/POS2022/12/2838', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0f82728d7b9d179a7d2046ffab65f33b57e8ae9e88738907e34ab58fde54147', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2840, '2022-12-07 09:33:06', 'SALE/POS2022/12/2839', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d039dadf3d002c01cc50a58416409b84a7793b48cb01b704126c7eec127ac5f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2841, '2022-12-08 06:11:51', 'SALE/POS2022/12/2840', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '642ff9bd487c505936d796021ae58e781b83cdaddb9b7560df82a794410d7e1f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2842, '2022-12-08 08:42:49', 'SALE/POS2022/12/2841', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '103647497cbced1303e9ce472bf9b181115f139e99f18a17ea9f601fcd2fa01e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2843, '2022-12-09 02:49:45', 'SALE/POS2022/12/2842', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5b35cfffeee35beff58bf13e379810ede1a2a006e46f10aceacdc5cec6ebc2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2844, '2022-12-09 04:38:29', 'SALE/POS2022/12/2843', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '750f06af8a14ae30ec21a96cf281c77486d2cea22c6561f0c640ae41079a6121', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2845, '2022-12-09 05:28:53', 'SALE/POS2022/12/2844', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85a709522a174da48960951e89ce18bdf725d7077d77767845e190db94e6e617', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2846, '2022-12-09 07:17:05', 'SALE/POS2022/12/2845', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28a6ca2254ba7bf3bba41275655120176bde849d17557e07516f8663e5e6a841', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2847, '2022-12-09 08:48:15', 'SALE/POS2022/12/2846', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '560.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '560.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '560.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '620d4f05e1514a5c51e0769ae234b8be9c8de817b40e97b2656ec162d647e4e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2848, '2022-12-09 09:49:26', 'SALE/POS2022/12/2847', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '71ffbed4ef0eb00a264441c95028f500f228134bc2576a1301b69c3fb044c5f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2849, '2022-12-09 10:42:02', 'SALE/POS2022/12/2848', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3b9ae05a0692beb5275a32af8e4a114ffd4471a40c75b88412f94c1504b2d6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2850, '2022-12-10 02:58:14', 'SALE/POS2022/12/2849', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2370.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2370.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2370.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c6a1f83eead3c636d201a1b03c2d1069c952f5045a7d406f5e31de3986f1403', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2851, '2022-12-10 02:59:54', 'SALE/POS2022/12/2850', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08cb6b8d81d0751019b49554e23efa48313fb46128eb6c5f7525870c4534f304', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2852, '2022-12-10 04:34:22', 'SALE/POS2022/12/2851', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '1110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b122e9446e171f380b6df58977badd92c9e262c784af437685064497a78b6e98', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2853, '2022-12-10 05:25:00', 'SALE/POS2022/12/2852', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef6918eebb8202c121e1736861ce28cf4f73acf3a93eca512e051e17fa537618', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2854, '2022-12-10 08:15:21', 'SALE/POS2022/12/2853', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '13870.0000', '0.0000', '600', '600.0000', '600.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13270.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 20, 1, '13270.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5fe8521c86dc8f39f3ef15fec33b29d927e2bbb37287fd603e18c63bf5be8f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2855, '2022-12-10 08:16:08', 'SALE/POS2022/12/2854', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c914e8b975d6f2da8a826b30ae7004b0cf8b790fb452b111cbc5d90f3ed6ad5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2856, '2022-12-10 08:21:32', 'SALE/POS2022/12/2855', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '420.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '420.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '420.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77d30e382bded2a3e82290fbeefd885932a647dc5fdd38dc600af9f633f396dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2857, '2022-12-10 08:31:06', 'SALE/POS2022/12/2856', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1977c5ab7eb670cd35b66582525221b4401237055566d54896f104fcb05b6f9c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2858, '2022-12-10 08:48:52', 'SALE/POS2022/12/2857', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '87d4fc362dd22e7970ce4daaac5936f11158948892a6224b25006167ff5e569e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2859, '2022-12-10 09:00:19', 'SALE/POS2022/12/2858', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '810.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '467de9a37e1fd8a5f35cf63a2e2e42586cea9f6ede7b3b11f75560344e157142', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2860, '2022-12-10 09:12:22', 'SALE/POS2022/12/2859', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3d4c2d4b444e6405db433556d74fe8129b0e34e4cd5165a5a262eb26e3ee8ff7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2861, '2022-12-10 09:57:03', 'SALE/POS2022/12/2860', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '054ff0f2dc658726d3319467b1f406d403157768887606b26acb7085f024a0a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2862, '2022-12-10 09:58:03', 'SALE/POS2022/12/2861', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b16802f3fddda07e14c16aaba4809011b23367446891532f444b1221875f8721', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2863, '2022-12-10 10:33:31', 'SALE/POS2022/12/2862', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8388520abb4a419590edeb26904b705f195b57e8c056444adfd80a7db69b2bb7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2864, '2022-12-10 10:49:53', 'SALE/POS2022/12/2863', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '104124e6cb1b718095c22cb5eeaf2eb2e6a81fa753a0c4c92e346856b844771c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2865, '2022-12-11 08:43:00', 'SALE/POS2022/12/2864', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'afa6cbce31a4397abd56dddbf6069c5bc489b219da62af1b857cddcf5ce533a4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2866, '2022-12-11 08:49:16', 'SALE/POS2022/12/2865', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3465945e085cc83d85d468532ffddff1e5c02a6c1a0d635bfbbcb62abf4a91c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2867, '2022-12-11 09:42:53', 'SALE/POS2022/12/2866', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '330.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8cd4661ad2f7f0d4880c02dd9ec5a51b47887b64f8d4f13394a954b61f73a44d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2868, '2022-12-12 03:49:56', 'SALE/POS2022/12/2867', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53bb23ad3577435e96891d45fb915f93410c6ad3d6e9f1ef59ce32c5c04947e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2869, '2022-12-12 06:36:52', 'SALE/POS2022/12/2868', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2620.0000', '0.0000', '20', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ee2387f3ef21ee5a460ade35d4185f2590ad2271e2d2d3ecd8fc892ed052cca2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2870, '2022-12-12 06:39:05', 'SALE/POS2022/12/2869', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '767b85a42b0fd03ad8d3b7f78b62d9bda5fadc602db08e58a2ad82e08945d15b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2871, '2022-12-12 07:09:09', 'SALE/POS2022/12/2870', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '184109d5562d09855bc1344002dc306151cc8719993114f5748883bd6731d7b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2872, '2022-12-12 07:41:54', 'SALE/POS2022/12/2871', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3430.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3430.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '3430.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2f9c2210fa11cf88d2be723dd29650f717839135b978ce2b49bf3329056e8e0d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2873, '2022-12-12 08:03:12', 'SALE/POS2022/12/2872', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd80c07a924b8801ad5324e3dd2b048e728c694b863d72fc4a06147f884e328f7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2874, '2022-12-12 08:31:43', 'SALE/POS2022/12/2873', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45d9e47509ccb49526099ce7e9989b5dbb02982e57ad52e0b186107d90333178', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2875, '2022-12-12 08:49:52', 'SALE/POS2022/12/2874', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '64c8df9c3ae7628d0e6eab1c09bd2d5b25e0562a6629d968271236024d8b58ff', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2876, '2022-12-12 09:10:46', 'SALE/POS2022/12/2875', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6788068061a7f79260d4d76df366078a870f1928f0c8e61d3efdabaf855c2dc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2877, '2022-12-12 09:35:06', 'SALE/POS2022/12/2876', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '38bd0b7d15ce3b35f5ab46fb82c9c9887bc5431047b2145c0044fe75dc35b360', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2878, '2022-12-12 09:51:36', 'SALE/POS2022/12/2877', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '745efdff5c3c44daf56236fe72120fa3108e4d0438c1f71e62d894478f799552', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2879, '2022-12-12 10:53:10', 'SALE/POS2022/12/2878', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12b9c98642dade22a08a052f7ae4fbc5f8fe8fb94d45a0a7653c781ff4a059c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2880, '2022-12-13 04:12:53', 'SALE/POS2022/12/2879', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8386c478fa7ec6aabf1d6d803044b29151f2fc4c8acc24553dcc390905c3e72', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2881, '2022-12-13 04:13:29', 'SALE/POS2022/12/2880', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ef80b6ab70e81253909c5638e334dbbaa11112b14b0f8868b2944d4287e1084a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2882, '2022-12-14 00:56:04', 'SALE/POS2022/12/2881', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e6cf42ec28ba7936d6286b610db1530f61dd86ec639f17e24835a8686e8ba2df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2883, '2022-12-14 00:56:33', 'SALE/POS2022/12/2882', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5f73bb0a86c99e8ff8df0d54befeae85b061520893f138658490ce902ddb39fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2885, '2022-12-14 03:13:59', 'SALE/POS2022/12/2884', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f783be0bcfe1251df582f39efcae7bc31d314fede6872a76791a1cc19136f145', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2886, '2022-12-14 06:04:18', 'SALE/POS2022/12/2885', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '770.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '770.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '770.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8a4f876ddcf95eb58ee3786858a904596f3eecb70308efff3f76bf96aea1329', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2887, '2022-12-14 07:18:18', 'SALE/POS2022/12/2886', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e53a4307bb48489a65f773aaabf6963af1f1b72ec45bfc4446c7db5f56e3b2f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2888, '2022-12-14 08:01:14', 'SALE/POS2022/12/2887', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dbd6d1e07a4f49e3000a84406f5fd345ce4cc7b6fe4e3fc0d186cfb9a5f9e0f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2889, '2022-12-15 06:29:06', 'SALE/POS2022/12/2888', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e8423fd0dc79144b15f4e598b6345e13e426cf1a40ce5ecb8eaa6730908599d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2890, '2022-12-15 07:02:53', 'SALE/POS2022/12/2889', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1ab76d707a626aabb69131d14011d5539aec7d82b9f2717f141edffbe933cc39', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2891, '2022-12-15 07:04:32', 'SALE/POS2022/12/2890', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b62ec66542560997a152d5c01b4deabb68fe9c64b734fa579323767a8d0b73f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2892, '2022-12-15 07:05:39', 'SALE/POS2022/12/2891', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7bc5bc960bae5c581d30c81819356c8839fee9c2ee6d3be4382a957e51e5589d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2893, '2022-12-15 07:06:37', 'SALE/POS2022/12/2892', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de84a089fc8e92244390ee30e4bdc6b89ce41eb66bdc25829cf91b2e56a53ca7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2894, '2022-12-16 01:41:57', 'SALE/POS2022/12/2893', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62b0a097bb53db017cc653aa9672025afac44ece175da72237f8f7d987909216', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2895, '2022-12-16 04:18:35', 'SALE/POS2022/12/2894', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c83adc958bd5727722774c3388f09067d0383152650d397e99c4133d1ddacfaf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2896, '2022-12-16 05:43:29', 'SALE/POS2022/12/2895', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '601f222ed4bfefdc8e092d0a8411e9dc9f6f5055ab74dbd1aadfcb6dff74e977', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2897, '2022-12-16 06:05:24', 'SALE/POS2022/12/2896', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4ddd6b5b4524ceb594be13f80098990dec9a9c2627be831aec5a19260b9ea15e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2898, '2022-12-16 06:54:39', 'SALE/POS2022/12/2897', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb668ace5a08678d52037dd6893dd8069eb3ad530a0d8b7633b42ee6dd713c6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2899, '2022-12-16 06:55:34', 'SALE/POS2022/12/2898', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '787110065fba8614a79516fb7fe739e5a19e5fc707bd10ee0bc1a88f92b1b61c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2900, '2022-12-16 08:34:38', 'SALE/POS2022/12/2899', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15b00ac195a1fd445bd3751efe2493703aa3d1eabe9cb645b33c872579eb3ad3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2901, '2022-12-16 09:25:04', 'SALE/POS2022/12/2900', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06155f95b9cbd8a9b4537d88d647250286972e988cc0840d59d6d539385366f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2902, '2022-12-17 03:22:36', 'SALE/POS2022/12/2901', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6d4daa42a50b848f9c8df4c098aa9fd45704ed04a0228158863b1e873dc1d30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2903, '2022-12-17 03:31:39', 'SALE/POS2022/12/2902', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '99bca5f123007b1535b4045f1eb46b88c7bbe92845447d3c175dbffd576f13b9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2904, '2022-12-17 04:19:51', 'SALE/POS2022/12/2903', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01ab3c22ccbaa4fad93670f3f084482b7ce358de4fa145464831a9de48e0fe0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2905, '2022-12-17 07:26:26', 'SALE/POS2022/12/2904', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23b0e3c63d52b103d0650373e0597ab163efe8f53fa3c72f9d9d3f89dcb46ed9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2906, '2022-12-17 08:10:16', 'SALE/POS2022/12/2905', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '040145fbb2c1450081cfa4496efc3b521c6e4478d31e497b7de38c2c57bec194', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2907, '2022-12-17 08:41:49', 'SALE/POS2022/12/2906', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '838c94b6afca3368ec08fc2bc9dd6ee61b31d9c6216ddf3240be0ddd54973e7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2908, '2022-12-17 09:29:56', 'SALE/POS2022/12/2907', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3cb51431ff1e3a1f37a184c121baf80bcb86791b4774d623e6ed48764c31648e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2909, '2022-12-17 09:33:26', 'SALE/POS2022/12/2908', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce32ce3c49f8607f43cb4005740f66d1cc050b5714a43288943a6884aa1c5f55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2910, '2022-12-17 09:47:38', 'SALE/POS2022/12/2909', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a46ef38cb32722c2eb4795d2f549a7efd844ce0231884d4a896992ad712eb72f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2911, '2022-12-17 10:44:40', 'SALE/POS2022/12/2910', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c8bfbfaaff55fea14aa58143ed56fab898d1947130d7b20d91e35dfd5cb487c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2912, '2022-12-18 01:36:08', 'SALE/POS2022/12/2911', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8359c3078561994b1697ba26c06012ecea3c61648015407b17ed7a50f280bd6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2913, '2022-12-18 02:52:25', 'SALE/POS2022/12/2912', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74ac32970dd213e15b3b97f8233214b2ea9fc06c80543e58a46c0833f0bb6d57', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2914, '2022-12-18 06:11:49', 'SALE/POS2022/12/2913', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3be40a46f7fbc4a814179df26698f1910c4de7732a5cacfb2694ba332c671186', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2915, '2022-12-18 06:41:46', 'SALE/POS2022/12/2914', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7871212a4ddbd158f1e70ca7df803f8780ded51fb0884aa486bec91711a8c7d2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2916, '2022-12-18 07:21:14', 'SALE/POS2022/12/2915', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb1cc30432282ba5ae2b0b825a7e64198df3c56cc47c159fba85839dbf7d2a49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2917, '2022-12-18 07:39:19', 'SALE/POS2022/12/2916', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0a10a48c4d85722a50bd879e06adee11cd52adedadc40a5632828e90c8fc681', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2918, '2022-12-18 08:12:49', 'SALE/POS2022/12/2917', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '08c62be871a573aaf9a71b82bc57c4383258ecf23146876841cab31d2b893b0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2919, '2022-12-18 08:16:37', 'SALE/POS2022/12/2918', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '420.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '420.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '420.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb7858b0d5b04914ce0f209d2d63801a1ec6efdef89b828587e2ede6571039ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2920, '2022-12-18 09:30:34', 'SALE/POS2022/12/2919', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5690965fcc8f595d82c5c2700a046e5234b280e8bb8f07e96e40e443f8a820a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2921, '2022-12-18 10:24:34', 'SALE/POS2022/12/2920', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '44ff849d436dc7f6129aeac9bebae461dd1cc0023d4d62325427fdfd035d1073', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2922, '2022-12-19 01:35:43', 'SALE/POS2022/12/2921', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3b46be6ae11f3c6b463b60e4ea42c4d11f28f182b331423021e110de1075e84c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2923, '2022-12-19 01:43:37', 'SALE/POS2022/12/2922', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ffba401ad1ee2a5d2b6d4246c10feea48df9bb89e2e480e6501ad4220a668ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2924, '2022-12-19 05:29:38', 'SALE/POS2022/12/2923', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f131c4cbd2f15640a0508fcdafe8bc04888ebf2bf2c7ea4860a067ee60c7013e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2925, '2022-12-19 05:30:43', 'SALE/POS2022/12/2924', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f9007731cbbe8e1b49bee3533fef7eb89f5e81fe39cb06cc1bc1b58db3a77b42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2926, '2022-12-19 07:09:43', 'SALE/POS2022/12/2925', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '4250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ffda30c94ba367274edfaba8705689778f00fe5026b78a54a4fcb01a3dc2f91c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2927, '2022-12-19 09:43:27', 'SALE/POS2022/12/2926', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2b7d265ede98c2c18bd7edc61684bb2947e7c659cd649b1c45c9dd86036494ef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2928, '2022-12-20 05:01:15', 'SALE/POS2022/12/2927', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '190.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '190.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '190.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e10ec0b2f0b9aee3172bcd277927768dbfc5a7c5bd656f7baf2fbcfa71435725', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2929, '2022-12-20 05:04:04', 'SALE/POS2022/12/2928', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '875047066c7746912622bf71e6f4c9d0136c788ffb15b1b0d2b518c310c719ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2930, '2022-12-20 08:23:48', 'SALE/POS2022/12/2929', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c9b719fbf96a35495c7357f4c56b903806714888b5e7d719d2f9f5488ab17a0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2931, '2022-12-20 09:13:16', 'SALE/POS2022/12/2930', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '040519f54b765bc9f9ef7d2c14e403dd552800a2731d76875fac0e34e4001368', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2932, '2022-12-21 02:37:08', 'SALE/POS2022/12/2931', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92d6be8d9c763e46b23636d33898fed19f22229a40ed3004e12be2f75b83a22b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2933, '2022-12-21 02:38:49', 'SALE/POS2022/12/2932', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac96054869b75f516a6e62e2628b91f8d213905db48c75600594335172b68d1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2934, '2022-12-21 04:59:07', 'SALE/POS2022/12/2933', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56baf313034bb6c599a2634b8206bee277600a64040e8b41ffef43a4d50f45b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2935, '2022-12-21 08:05:06', 'SALE/POS2022/12/2934', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '10d25de85e3c85e5b8ce1ac194b35f6e67d00ab21dec2aaf56f01009229dc5a2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2936, '2022-12-21 08:13:41', 'SALE/POS2022/12/2935', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '559f27f19110605f62dec1002fd78fa630d41f2b43e60802d409bd9e3569a7d0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2937, '2022-12-21 08:14:43', 'SALE/POS2022/12/2936', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '59a0c64a98ad592ac83632868b7d8de4923ad32ad72ee85de4757f61023388ae', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2938, '2022-12-21 08:16:01', 'SALE/POS2022/12/2937', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fe34a3530f29db65259611f09101e1e2e33b3fc91ac9b060da8b1f7201f36644', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2939, '2022-12-21 09:32:30', 'SALE/POS2022/12/2938', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fcfaea88a9152525e64cc57e7154bd7c4d0c399e8bdf273a6c1266887c94e02d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2940, '2022-12-21 09:38:57', 'SALE/POS2022/12/2939', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '142eb6edf946708edead053a7435d55dcb2fdeab19705e8d01ca349284fbf08d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2941, '2022-12-21 09:51:04', 'SALE/POS2022/12/2940', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0154d8cdaeb6d5a34f5f2b5dd59636956c021c5f830a846cd15ebcfbb7ff17cd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2942, '2022-12-21 10:20:58', 'SALE/POS2022/12/2941', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df9dd11d86c09188e49ef7aa25389b3ff28777bf9a4282bfc57cfb8b90f231fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2943, '2022-12-21 10:27:58', 'SALE/POS2022/12/2942', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7fe065f7c0222c2fc7f65c7ad98bab54ee0d68e6dcf4cfc02ab1737da60b7e28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2944, '2022-12-22 04:31:43', 'SALE/POS2022/12/2943', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '80cbdfef831947c488cb82bd5499fce6110715e8a2a35b0a527224e224c22a32', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2945, '2022-12-23 01:52:29', 'SALE/POS2022/12/2944', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9e1cd8bba996b2774738ec95917838c95af8b3860ec2de8f9795221e13f7fa60', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2946, '2022-12-23 02:09:40', 'SALE/POS2022/12/2945', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '855a427cd32123bf95cb8ab2737c25900514458012f8d2839ed7ade7f113715e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2947, '2022-12-23 07:41:09', 'SALE/POS2022/12/2946', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2150.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ec61c97b7e319fc35bcf921be3ec391173d5802a331676918bfe8f5bbb4fc7f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2948, '2022-12-23 09:19:51', 'SALE/POS2022/12/2947', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27ce20c1f7bd6de0c27546546a7436fb5a3d2c2a66f837f97a8452ef30435517', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2949, '2022-12-23 09:58:56', 'SALE/POS2022/12/2948', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4a891a9ed922e4ce328eb050ac72df445c8f0c5650e51855039b1992e8c30080', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2950, '2022-12-23 10:11:10', 'SALE/POS2022/12/2949', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61d0590b34f00ea060de6eca6e558fa7ce84276b528fa9e2dda9b4a37cc6e7e7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2951, '2022-12-24 04:20:17', 'SALE/POS2022/12/2950', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0c4bfd606b1a079610d30d7cc306c55e47ba7ff2bbee2bdd59c6023225efe240', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2952, '2022-12-24 04:57:19', 'SALE/POS2022/12/2951', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e809a589bfc3d85f24ae88e145e71d1a08d4e18aa35e9f737bfbad511c31843', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2953, '2022-12-24 06:31:26', 'SALE/POS2022/12/2952', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '601685de100489cc381c9c5f7382f0d0eb85fcb57ce14bfb8898fba3a90a9636', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2954, '2022-12-24 06:45:26', 'SALE/POS2022/12/2953', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '06b99b74dfe4d615242dd1e888afc6005f3ed7400527bf110343f957eb5ea9e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2955, '2022-12-24 08:14:30', 'SALE/POS2022/12/2954', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb53e27d823c83714a923f32baf115ca0868868b7d70717e690c09ffe981cc92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2956, '2022-12-24 09:22:45', 'SALE/POS2022/12/2955', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1540.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1540.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1540.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2c5b3fc1338549ae4cb0b3ee55c1ec05b988bd7e69bcefaa24353be4d02a954a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2957, '2022-12-24 10:08:07', 'SALE/POS2022/12/2956', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1360.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1360.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd89a00288d095b3aa7c8191f39d81e6ffa838b85642fec0f2eb799d9d73be347', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2958, '2022-12-24 10:22:05', 'SALE/POS2022/12/2957', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eaa62c0bc7436bd66675a2ee5780b8c52673c7028680160d1b766b9dc4ca4a60', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2959, '2022-12-24 10:32:20', 'SALE/POS2022/12/2958', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '720.0000', '0.0000', '20', '20.0000', '20.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4981c8c886ef0c0870d4750c51956277153ea6533e8d4ff850b16f99ed37f9b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2960, '2022-12-24 10:44:41', 'SALE/POS2022/12/2959', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '962e3b1b1fabedb79e67afb04bf0c851bb65eff218cf734b05f6083801453b47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2961, '2022-12-24 10:50:08', 'SALE/POS2022/12/2960', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd935b8606dee6b6691efb5c4d9ae0653a34c6b047d2a6f8715f9c84e7a98fe03', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2962, '2022-12-24 10:51:11', 'SALE/POS2022/12/2961', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cea061822f25da4c464c1b19b21bdd90fda7fe3aec46a18b880e726d70a6d4fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2963, '2022-12-25 02:06:24', 'SALE/POS2022/12/2962', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5fdbaf0592bc424595c05a4d2805392f65395e63f428b9e0215a4165b0506c65', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2964, '2022-12-25 06:03:59', 'SALE/POS2022/12/2963', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1fa6292486ff814acc6c132d628e0f5500910c45e8d6cbc91a65045cc6b88b6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2965, '2022-12-25 07:00:54', 'SALE/POS2022/12/2964', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e969388aa208581b3f06f86c18ee1ef71e03308238185eaebb3c960c863c848', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2966, '2022-12-25 07:06:54', 'SALE/POS2022/12/2965', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '510.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7443e7c05ac0aece4fc4f0c3b52d8c907dd92d0c417c40cee9590e35a0b8aaad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2967, '2022-12-25 07:12:13', 'SALE/POS2022/12/2966', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35877c5493cd858b40dc3b78ed8f247cf1383a8115f4ce2f72b67101478eca20', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2968, '2022-12-25 08:14:51', 'SALE/POS2022/12/2967', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '42161774951c879e872de6cc278a3d7a4c1fbae1d68e7fd539b229395aa55dd9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2969, '2022-12-25 08:54:32', 'SALE/POS2022/12/2968', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b700fe14aaa99b08a2a5ce1eaa89cea6e0ab1a18f841fb8e4e7d613b5be28ff8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2970, '2022-12-25 09:01:42', 'SALE/POS2022/12/2969', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '275c382f30be7dc8bc2842fd6cf3f03ef74388d7e805fca80871452dcd727cbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2971, '2022-12-25 09:13:03', 'SALE/POS2022/12/2970', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '719a699b5cb32fc4ecf9c59cc81e55cbca292cb5a70bad2e6b556daa2a744999', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2972, '2022-12-25 09:50:15', 'SALE/POS2022/12/2971', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f76d4bd2df48c3ba1915ef1d753c5024a10b5c16a3da5bdb20bf414d4831740', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2973, '2022-12-25 10:03:14', 'SALE/POS2022/12/2972', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '460.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '460.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b15a0c249c4725c5a7682308ded5792e7a752f8c76d2da2f2e95adc3f8d7e622', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2974, '2022-12-25 10:41:32', 'SALE/POS2022/12/2973', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'afaa1fca471d5c289e425aee1c7add9bcd5af8061f06ad983b65bd968adda1f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2975, '2022-12-25 10:59:48', 'SALE/POS2022/12/2974', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55d4bdf97e8bedee870e51c510154a5a21c169ab37c45f32577ddda4ae293bf1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2976, '2022-12-26 03:03:33', 'SALE/POS2022/12/2975', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '23d8441d4d9dd76eb630196f1dfa922d35e5efeb97afaefeacdf666b8b444199', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2977, '2022-12-26 05:08:28', 'SALE/POS2022/12/2976', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c7e00dc1c791db2a8751da86e6c208326613b7ef4a19f9a4b796b78d588ba5d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2978, '2022-12-26 05:57:48', 'SALE/POS2022/12/2977', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc30452ade92e1edc80d523da6a2456a74c4178da70e217978f6e02b93542d3e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2979, '2022-12-26 06:33:06', 'SALE/POS2022/12/2978', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1fe4ba7005c475fb0e41e81bedac1775e94285a6e53d3b7a1ae4631263ac92ca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2980, '2022-12-26 07:50:15', 'SALE/POS2022/12/2979', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ad458e4bbb85630e9964754de1746e1c11a30e32bb70337e8d392fb855a5a707', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2981, '2022-12-26 08:19:01', 'SALE/POS2022/12/2980', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48f4bfd58f2a2144784791fd15aa0dfcda0a0c802024954c066b654778c7b421', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2982, '2022-12-26 08:32:40', 'SALE/POS2022/12/2981', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85f5e648c4f03d3317dc2739bf8b28bb720e623ca389618db4d9c0041e79ad6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2983, '2022-12-26 10:59:29', 'SALE/POS2022/12/2982', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f0af487fec5a038880c82cd942f93e17783e41664191b33285539806ac20b29', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2984, '2023-01-22 06:59:10', 'SALE/POS2023/01/2983', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '4440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d5fefc9a68950387fb9788085ffdce0dbbe7b2193edc54a566743e535d9e1a7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2985, '2023-01-22 07:01:30', 'SALE/POS2023/01/2984', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '7500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7335d4c4af16279e0d64ebb73c34cdf1900815e8571988c962ef5e5c4fc7248e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2987, '2023-01-22 07:09:42', 'SALE/POS2023/01/2986', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12f45b3271b29e0ad61232f9a52dfcd0a184755b14764fc90566cabe52f2e42c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2988, '2023-01-22 07:10:22', 'SALE/POS2023/01/2987', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '84d45942fd38fb662b6389a3ce6e1392126e23e2f57da85c81612e5eedfa4dc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2989, '2023-01-22 07:22:36', 'SALE/POS2023/01/2988', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '90eb128695196ce6bb9bca34f17b602a561ed2eb64eab973487018cebacf22f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2990, '2023-01-22 07:27:37', 'SALE/POS2023/01/2989', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '6600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '075d82d70e773050ccdcaa248bab99a204c3a463bfdb206123b31c9990842300', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2991, '2023-01-22 07:33:36', 'SALE/POS2023/01/2990', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 104, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'daab073f462a58ae30e671f43beacc872f5cbf5aa75c4a34f0360746fbb009c9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2992, '2023-01-22 07:43:20', 'SALE/POS2023/01/2991', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '41399ee3cd08b3864bb6f3cfb19fdb6cb2ee8540fd331a39e5155d29c6511ffe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2993, '2023-01-22 07:50:20', 'SALE/POS2023/01/2992', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5090.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5090.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '5090.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14652d13d0ec09364622b84fb4052432cda22d89cfc299907488e11e2faee62a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2994, '2023-01-22 07:56:10', 'SALE/POS2023/01/2993', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '56acfede24f3acd236b5a05b082b4c02956602a07ef41a0753541dffa8fad45d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2995, '2023-01-22 08:05:29', 'SALE/POS2023/01/2994', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '4160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a49201070e2e2679b1f7e3c01f37fca53538a8b4e8e77b6fa895743c7eb9d2e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2996, '2023-01-22 08:06:01', 'SALE/POS2023/01/2995', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f6ebcdaf55aa15e1513884f52ccf55e46acfc29082b8d34ca43d621258e6eef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2997, '2023-01-22 08:49:17', 'SALE/POS2023/01/2996', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '120', '120.0000', '120.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4280.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '4280.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ae3080fa2f1296372074b3d3a6d258768c24b80d721d372f9f2e0e686569d20b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2998, '2023-01-22 08:51:10', 'SALE/POS2023/01/2997', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '3600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4f4a7d6559014b17467c13e64112504bb816327fc4ba77a6d25cf3fb59d6379c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (2999, '2023-01-22 08:51:37', 'SALE/POS2023/01/2998', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dee93c6047e9734f9c8d0268ff066a6b8f8b487878fa0d250df47b9dc47b2d7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3000, '2023-01-22 10:07:16', 'SALE/POS2023/01/2999', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '10200.0000', '0.0000', '250', '250.0000', '250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '9950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61f23a8763d0b51c0da460e1619340ddb823ef6a743effa3c34df1b6742f556b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3001, '2023-01-22 10:15:08', 'SALE/POS2023/01/3000', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '2380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '66ed1f0fe94a032628f1bd37bb22e6be9b100b33d8cad4221599cf699e886f53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3002, '2023-01-22 10:21:53', 'SALE/POS2023/01/3001', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8910.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8860.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '8860.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '366e538749477a8edce728e54c3946e3e349cd929cd6814420e5e623bed4b8dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3003, '2023-01-22 10:34:58', 'SALE/POS2023/01/3002', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7150.0000', '0.0000', '350', '350.0000', '350.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '6800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ccd8448be906c75a2b489fb9e5b7a578cee1d452f3d8ccf2006736ae4dafba3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3004, '2023-01-23 02:15:04', 'SALE/POS2023/01/3003', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '140.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '140.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '140.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b125aca02f31df0558dd512b66e6a6e6924ab15147803ba102e2d94bc02bfe2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3005, '2023-01-23 02:17:56', 'SALE/POS2023/01/3004', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5720fba5e49581ab549d5517519035eb0ca91fc20735313cb168f98f551e4f54', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3006, '2023-01-23 02:23:40', 'SALE/POS2023/01/3005', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2680.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2680.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 12, 1, '2680.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a81c215d8f0eae27e21e1a084cb9a090e6700826a128b1de6c78d5f9218bb742', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3007, '2023-01-23 02:30:02', 'SALE/POS2023/01/3006', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7620.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7620.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 21, 1, '7620.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b88f8b88f1fda04367120cdacd5d041067b40110f8a08d9137896e46455d7657', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3008, '2023-01-23 02:41:33', 'SALE/POS2023/01/3007', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '2850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd77547c2eacde22f805eb883e2e6021b250e7b37278c230bff1a34b8c4b54fa9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3009, '2023-01-23 02:43:42', 'SALE/POS2023/01/3008', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '250', '250.0000', '250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '125f99554aeca5c28f7fdb912a59b04312662f75e8f2d354db71db1bcceb0fbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3010, '2023-01-23 02:44:53', 'SALE/POS2023/01/3009', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'be153c097e0a64180f4fce88b28781aa3093c67e572b41c496b3e138d97608ce', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3011, '2023-01-23 02:47:31', 'SALE/POS2023/01/3010', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '520.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '520.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '520.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b56f9011c229a786d90883b9918b637b46f9ac8cb62c240fc8f74e16f1647711', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3012, '2023-01-23 02:52:58', 'SALE/POS2023/01/3011', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '522326cb38635cbfb5dd158f0ae7cf7c397ba46d765e0bd5883944ef667bd0fd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3013, '2023-01-23 03:00:11', 'SALE/POS2023/01/3012', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '5200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '01b3ab7b0298fccf21ab6e68aadf59b75f0ea499f8c4b3ea980355b6df09cbfa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3014, '2023-01-23 03:02:06', 'SALE/POS2023/01/3013', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '4600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '762ddfb36e76877ed2dfe679a5a7b2cfc72761948ffb7511f9924b900cc638d9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3015, '2023-01-23 03:09:54', 'SALE/POS2023/01/3014', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4410.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '4310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4acd1f21fc7e56dfe9ce3ff54c5f9241218618715262213175659963d37479be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3016, '2023-01-23 03:22:02', 'SALE/POS2023/01/3015', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7210.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 30, 1, '7160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c753dab7e2989d007971088a520bfc0dfdcb52b83551bd06e0e7b7ecc2aa927', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3017, '2023-01-23 03:58:42', 'SALE/POS2023/01/3016', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '10070.0000', '0.0000', '70', '70.0000', '70.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '10000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5264d7712ffb4eab0ffc57e1630bba189326eff9b543e2d1ee9d526274747ea', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3018, '2023-01-23 04:11:09', 'SALE/POS2023/01/3017', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7850.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '7800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c27fe04e2b2390c31fd748d42af1c27dfd19951e7d04f29a7fae39d16893fcb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3019, '2023-01-23 04:13:36', 'SALE/POS2023/01/3018', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f7f4cdf9f4d3b0f838c48e34fc55e462bec8feb1793df8574bbc1bdc265b5efe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3020, '2023-01-23 04:22:38', 'SALE/POS2023/01/3019', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f98a5066c11a6fabe2ce450274a9b228a9e7dbfd223193a681bbb48a2a62bbe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3021, '2023-01-23 04:26:41', 'SALE/POS2023/01/3020', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '4840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d9b16bf9981b3dc60942ef670a4ab24fe24418e20d85ee290b58105dfd85971', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3022, '2023-01-23 04:30:07', 'SALE/POS2023/01/3021', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c955dd6c4fd39b2f2acd847dd1bb2167aee1613db74b9926bb8cc196de955702', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3023, '2023-01-23 04:33:14', 'SALE/POS2023/01/3022', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '470.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '470.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '470.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c5b4fe6c4c546a2d6b4554b261a8de300e54daecd00e137026b2301c4e5ff92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3024, '2023-01-23 04:49:54', 'SALE/POS2023/01/3023', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5270.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5270.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '5270.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '654e6ce1d979642cf7ef4c3175f50ebbb725cd774a738e150817e03a7f297022', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3025, '2023-01-23 04:52:34', 'SALE/POS2023/01/3024', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c653e8f64c17999cf26bd84822f4387a75046746d332ea422e7cc6db1d06323d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3026, '2023-01-23 04:56:36', 'SALE/POS2023/01/3025', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4990.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4990.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 17, 1, '4990.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa29110eb38047f14137fd81fc0f0b4a3d0bd88b50aae21726bf5d62c2f24425', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3028, '2023-01-23 05:09:03', 'SALE/POS2023/01/3027', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4080.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4030.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '4030.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d36b94a825f36a3a8316fb98d71efcdf81f1ce87156f8dccec72bd4b0e26e28', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3029, '2023-01-23 05:12:37', 'SALE/POS2023/01/3028', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '89bce04f9738fdb079041ba1afa021950b41b02aff900e1636f0282ec6393131', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3030, '2023-01-23 05:13:11', 'SALE/POS2023/01/3029', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c520fd2052860f361d10b33cc165b672779f08e73d535b8a6bfa0a6727f0539e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3031, '2023-01-23 05:14:08', 'SALE/POS2023/01/3030', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f942f2f0305c1d9666576f4180ba959041adc238f9ab154b43c369b72e8dbd5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3032, '2023-01-23 05:23:54', 'SALE/POS2023/01/3031', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ac3bda8103f9100d88e208fb6288ed8d3a6b4e6efea2b412d9b3299ad626eef', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3033, '2023-01-23 05:57:09', 'SALE/POS2023/01/3032', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8aef1d8e22688a350ba2240723d7d3bbf55b667366ad8c19ccb96eec3233e69', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3034, '2023-01-23 07:58:06', 'SALE/POS2023/01/3033', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7a92be46835b8b74fa5c72303595c5e3f800f04df57787e755c1877f858afe36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3035, '2023-01-23 09:54:07', 'SALE/POS2023/01/3034', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a16c424ee9cdf986a9db1cf1e0c84cbadd69102632ed22c6b58dbc6896ea1d36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3036, '2023-01-24 03:44:37', 'SALE/POS2023/01/3035', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de788cf6b41fb24da1f6a9d55931f75f200b1ebc435947fc270b8e888648983e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3037, '2023-01-24 06:12:15', 'SALE/POS2023/01/3036', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a27590d7d35bd8373feda00d48c7cf788c96a663bc40717469de750ddcb2bbf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3038, '2023-01-24 06:12:51', 'SALE/POS2023/01/3037', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3ac116562e87494df84b6fd75cd10d1f7e747e27b6b9615c7df8a710d5c57a1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3039, '2023-01-24 07:41:34', 'SALE/POS2023/01/3038', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd62eccfc353d07001cc4c6f9eba94abb1ab73d8d2c59f59f9de6e361a303702b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3040, '2023-01-24 07:57:15', 'SALE/POS2023/01/3039', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '177e67e86ddf1d8d95c687285f3d7fc513e9aab3df81e58456afd93977746409', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3041, '2023-01-25 02:30:27', 'SALE/POS2023/01/3040', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d153591f35f3ec29e3e88a9ef0e2a48355c54c136da6e10f14167e5ceaa345a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3042, '2023-01-25 02:32:06', 'SALE/POS2023/01/3041', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2450.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '49df8cdc600cc0dbb0eb9c610f82250a2fed1601c98179881f8a4dd2b2399a06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3043, '2023-01-25 02:33:27', 'SALE/POS2023/01/3042', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b2015369f0401a9f01abc5e2ab23d79594324f61b6d950be3537ebcfd4794dc5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3044, '2023-01-25 05:38:11', 'SALE/POS2023/01/3043', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c6616247a4605e78a37067a56e3a40b7470fdbb30aa230755ec49ba53e42261', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3045, '2023-01-25 08:14:16', 'SALE/POS2023/01/3044', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5e54d39edd75c3094b3e6aae7538cd504ebc2d645d3b99b2471e5bdb2121bd3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3046, '2023-01-26 09:25:06', 'SALE/POS2023/01/3045', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cef0889025f671975bf61bb356ee54ba129fbe3ebaeb05ca1494b2b9ec834831', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3047, '2023-01-26 09:26:01', 'SALE/POS2023/01/3046', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e632a80c380e96412e7d99ed7d8d6014355e72408034de0bca54bbe04280e55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3048, '2023-01-27 02:47:09', 'SALE/POS2023/01/3047', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37d90ac81fba73fa509463d8a78fbf7f466b6a3a046f93f184cda56be8177dca', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3049, '2023-01-27 03:22:49', 'SALE/POS2023/01/3048', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '15a9ed9c9953904b90777668519f845d8044a78762c69dadc1c401e1e6d57304', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3050, '2023-01-27 03:26:33', 'SALE/POS2023/01/3049', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'df17b4b9eb06a4655e0345c311714a72b6c8ed39d15b3d6e8c07a0c364fcd53c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3051, '2023-01-27 03:53:15', 'SALE/POS2023/01/3050', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '613a517a55dc946fe51d2937b548144ddacfd3292b543e1f7390e36621916c1e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3052, '2023-01-27 07:51:03', 'SALE/POS2023/01/3051', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6696c7c259c6e2ac5d2ecfc7d58acafaea480e06348b4964dd21f4f937468744', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3053, '2023-01-27 10:13:33', 'SALE/POS2023/01/3052', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac2fd11cfa78368e05bdcd332cc88752831d4bf7c8c942e3b02b8abcb65d6e27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3054, '2023-01-28 04:21:18', 'SALE/POS2023/01/3053', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e0b912ebf1183acfb64a6559fb4502e38bf76e2cbffd5d3bd53296f83e21755', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3055, '2023-01-28 06:40:01', 'SALE/POS2023/01/3054', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9d5030824fb8a3a7e835db0731875bfcfd90fd55d6435bbfd265e677f289139a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3056, '2023-01-28 06:59:48', 'SALE/POS2023/01/3055', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '70d8c67a91d57c84713e191d4086f47f5f453e464da4aa974c4cf6b4e6362718', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3057, '2023-01-28 07:10:18', 'SALE/POS2023/01/3056', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b847b98a268f6c5e9d8ec8f3be87e4ef3bdd83b03526c367190e290d6d18b106', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3058, '2023-01-28 07:13:31', 'SALE/POS2023/01/3057', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1b24915773704d4a3492d683c6c4b9cb8237c2807783e07338a8e91838bcd193', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3059, '2023-01-28 08:31:25', 'SALE/POS2023/01/3058', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8653f4d3774cbedca5c97b5d616e19d7c78b8312adbe3d5bd8cbe99072431f54', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3060, '2023-01-28 09:43:41', 'SALE/POS2023/01/3059', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd2938e23b85cedf5bd39c32593e44ea1fc96578b9360220ace5667e23d48d78a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3061, '2023-01-28 11:04:52', 'SALE/POS2023/01/3060', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21f06b9c03d93b9f492feb66d648863bd2c1c45295c5852b5d9822be2e467137', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3062, '2023-01-29 02:13:16', 'SALE/POS2023/01/3061', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6bbd2f0dee4f7053e505d7575ae5939370724ab60221a5f21ea603a0097c64e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3064, '2023-01-29 06:06:28', 'SALE/POS2023/01/3063', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8bb4367bf955dc022ba17e70a968117d4d40ac1bc1d8e3a4d298ea10f3049460', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3065, '2023-01-29 06:23:40', 'SALE/POS2023/01/3064', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ed24e57e841ca5ed6fb20d05e26fd56e8b0f3e3aaa5d551fa254b4d0222d055c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3066, '2023-01-29 06:56:58', 'SALE/POS2023/01/3065', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0ac9f1598233a2e398068d0fbfc8b30a43e83c20a3a85ee62e19a3fa99cfb31d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3067, '2023-01-29 07:03:05', 'SALE/POS2023/01/3066', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e90f29006e4a62ec296a8b92077861435c1e0413f42e174bf410f45b9dee121a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3068, '2023-01-29 07:55:20', 'SALE/POS2023/01/3067', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'af2bd45398d6caed388a5689b7e4725b8e7882721943ffe76a38ef1f344f65aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3069, '2023-01-29 09:07:29', 'SALE/POS2023/01/3068', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5d1db2c0ef3bf478116963b3b7477378d35c9ca97533d682e69657b2d287ed8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3070, '2023-01-29 09:49:10', 'SALE/POS2023/01/3069', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '74494fce352c324adc3ae208cda10cbd0220b1a2b87d5907539b0dd858cd047c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3071, '2023-01-29 10:04:33', 'SALE/POS2023/01/3070', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1af63236ad7c9625ef074ce9b2f8f843edde13c84647a584e40bba00de69ff81', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3072, '2023-01-30 01:11:46', 'SALE/POS2023/01/3071', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dab2ac21e4b4ec0995919f5b6f8ca82b3f952e5ed3fa49d007f2f5aa4794a760', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3073, '2023-01-30 04:23:53', 'SALE/POS2023/01/3072', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '55c8a3e99893a75307f30c17d83b481efcab9ce9eab4795497d28003aea1619e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3074, '2023-01-30 06:02:26', 'SALE/POS2023/01/3073', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '0100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e1fb888e33a098f14ac388b44ca91068f311a7fa647a6fb971b6b02c535c8f55', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3075, '2023-01-30 08:45:01', 'SALE/POS2023/01/3074', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7893fe87aa4237140daa114a88e41d657201ffb1e0d8576bf73fae3fc29c4f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3076, '2023-01-31 05:40:53', 'SALE/POS2023/01/3075', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c7582d8edcfe5df9f8d999c7583291d0e8580befaaca9e0fc0edd612394bd538', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3077, '2023-01-31 07:42:36', 'SALE/POS2023/01/3076', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca9875a6dcf179bdc34de024e46f716e58100898647ac5adf15da87591608384', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3078, '2023-02-01 02:45:14', 'SALE/POS2023/01/3077', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '782c078531abf68325ff0a6cf4f13c0d03848d24a519db08be06f14f984d2d58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3079, '2023-02-01 06:26:04', 'SALE/POS2023/01/3078', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '952b71e8d147a2ef1a894f4335d9245d6548bc683a662de53e7954c1d0c84cb0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3080, '2023-02-01 07:05:21', 'SALE/POS2023/01/3079', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '861ae0560339c57498990f2f7cb09f48ed2b889abd5379385d420f3d419207fa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3081, '2023-02-01 09:20:44', 'SALE/POS2023/01/3080', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '54cdc9e413f0a230a54a96b3c369bc7a6cc4b9b61b46b49922dd7d68d87cc53d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3082, '2023-02-03 01:21:56', 'SALE/POS2023/02/3081', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b722e8bae830f313fee6a1a94c4724c88e3765d3018cfda416a7cf05d92b381b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3083, '2023-02-03 07:20:28', 'SALE/POS2023/02/3082', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3e6b9ae0ac28a1a7c77919448fd18ce1e906225344eac59f4f90d2ebba1e4090', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3084, '2023-02-03 08:44:16', 'SALE/POS2023/02/3083', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27f97f703d6d2aa93ff9af7b346e713625706f7411ff3474382c82084dd6dc05', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3085, '2023-02-04 02:27:07', 'SALE/POS2023/02/3084', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '622c3ed290f16f3a55fab4c89f68609758453e56c0c4acbf53d3b7ce84b51c12', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3086, '2023-02-04 03:02:20', 'SALE/POS2023/02/3085', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1670.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1670.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1670.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8be909ee212aa07e11f9aa5fa129396ec85f1d85dda192312ba8807b2a11ce88', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3087, '2023-02-04 03:04:56', 'SALE/POS2023/02/3086', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c7063bfffbf7a4a63b7b6754eb4be7f739a0c9b8ed6df230ee0a2a8b2b7ae2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3088, '2023-02-04 03:46:34', 'SALE/POS2023/02/3087', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '13f8a2035ce8534a44ac84824ffa9b7d600dc5334efbd1f74f1a2294221b31c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3089, '2023-02-04 08:37:48', 'SALE/POS2023/02/3088', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b50b7e2043a00fbe2e308a60bd45c01156521188d93c5addf9f29f799074e7d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3090, '2023-02-04 08:50:43', 'SALE/POS2023/02/3089', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '593462b12d3d2082b94e7bf9fc35ddd7e7c7e170fd204c8aa1653e534f4a042a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3091, '2023-02-04 09:54:16', 'SALE/POS2023/02/3090', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '95280e2ca59cef772853bee086ef006276d66494e3708c6b9b9103b69a80dfc8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3092, '2023-02-04 10:02:16', 'SALE/POS2023/02/3091', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1f3094f477f32af0bb7fa6659c157c5975442efdfe6be8367601ac79b60965a5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3093, '2023-02-04 10:52:22', 'SALE/POS2023/02/3092', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '21da36b332259d9f165bc44a86a488762e03137f33c1b0e6ffddb5bb6270d928', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3094, '2023-02-05 02:22:09', 'SALE/POS2023/02/3093', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aecd6a06e27ffa061b1f4f1e3d29ef194760bc31bd3c0b84409735ffc4470b96', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3095, '2023-02-05 02:33:16', 'SALE/POS2023/02/3094', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ecbb7879ef8207a35080274081835bb7ab834a1638bbdc943ae9056e538c08f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3096, '2023-02-05 02:51:02', 'SALE/POS2023/02/3095', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '24ea40b8601ab51712959457b58d765d63d2bc84627ccb55adc623ea13c99639', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3097, '2023-02-05 03:29:02', 'SALE/POS2023/02/3096', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4650.0000', '0.0000', '0250', '250.0000', '250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '4400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9f61b9038c69b5a57fc0b73ec2e18fe89b349da92616a79ef388db06f10d5691', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3098, '2023-02-05 04:12:07', 'SALE/POS2023/02/3097', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5a39b84bf76eaad216483f0221b7fcee7d4ef853b8c3e13d6614a762f40109c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3099, '2023-02-05 04:16:06', 'SALE/POS2023/02/3098', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '864785446a23f97fb2dd092469d897854f531faf812472a6b1f8bb4a266b403e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3100, '2023-02-05 04:40:30', 'SALE/POS2023/02/3099', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d751a2fed4f84a157b94d396612c9cb602214eb137947fce8dbb579beb4cf15', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3101, '2023-02-05 09:58:43', 'SALE/POS2023/02/3100', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd8f2f1eb321986b943b11cc257148b475551755ec09118cdac478df7a7d4aacd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3102, '2023-02-05 10:02:11', 'SALE/POS2023/02/3101', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1237a825d569e9813289d8a45064b21d3a9f0c6b8c8387fb86bf7e25db0e8ba5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3103, '2023-02-05 10:15:29', 'SALE/POS2023/02/3102', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c2f7a9e2c504552dacc2b2dc578d2449807d560925b690ce43ea40b4694e96b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3104, '2023-02-05 10:23:10', 'SALE/POS2023/02/3103', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '610bca4e7644534abe975c60f0dc363e54eb426cfbbb4a3dce8bab062237f51b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3105, '2023-02-05 10:30:19', 'SALE/POS2023/02/3104', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9dacb2266ecf72c81423b52115ff0550ff29267d83c06846bc5ffcc79402e387', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3106, '2023-02-05 10:47:00', 'SALE/POS2023/02/3105', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0308e9bc58c7a642e329e6a4ed977538b33c353041da243b722b5dbe940e98c2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3107, '2023-02-06 01:24:03', 'SALE/POS2023/02/3106', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6c5e7b1cc2cb7fdfaa3efaf33222ab7eb06b1c7a74bf1db467d75452f88e866', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3108, '2023-02-06 01:24:58', 'SALE/POS2023/02/3107', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f647e7cdd35f54caacc4826d1c731393abb5bdd36a378bd8112923608faa25a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3109, '2023-02-06 03:56:06', 'SALE/POS2023/02/3108', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4900.0000', '0.0000', '0100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 21, 1, '4800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '77755db1634f177a6184839d6b3072a2e2ea88110cfb0421921fe6dc52f10e5a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3110, '2023-02-06 03:56:46', 'SALE/POS2023/02/3109', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '438b2357519d6ee0f84123cb0fa4c2fefed957aae10460bc21384c3a77a84f67', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3111, '2023-02-06 04:38:37', 'SALE/POS2023/02/3110', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '660.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '660.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '660.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c1858ec63148b2c5a8dd8cb9ad6f8c838cc4e1933400034cbfc0faa380b211b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3112, '2023-02-06 09:24:54', 'SALE/POS2023/02/3111', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '460.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '460.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3a0760167484cf3da0580ca75032daf831ee0e14ba7a2bd2f3ed3c90ba0425c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3113, '2023-02-06 09:30:25', 'SALE/POS2023/02/3112', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1e65bccd2d5c704aa931eefe3cd3c8189d2c22541805dc34cc23fcf6dca6bded', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3114, '2023-02-07 04:56:29', 'SALE/POS2023/02/3113', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'feed4be4c7c5dde83a29162ffb6f3095f50410539ea606d126392f65c93afc4f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3115, '2023-02-07 07:52:22', 'SALE/POS2023/02/3114', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52f769e61606bb13caf90ce3e62040e96e72407981f34c51acda62eaedc84d40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3116, '2023-02-07 09:14:18', 'SALE/POS2023/02/3115', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '00aa3c0ffda7b7963009f9124f1781125272bd4b02aef367ef2e1c649892d83c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3117, '2023-02-07 09:15:07', 'SALE/POS2023/02/3116', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '43bcdd5b08ec3a96be9ad54189569c28beb1ac88fabfd61ca2b875e677b8bb32', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3118, '2023-02-08 02:59:14', 'SALE/POS2023/02/3117', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '14c44bf1c7bd73f5e904281a0666edb77f81d967c1a41aa52c3b02788be01d8f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3119, '2023-02-08 04:01:18', 'SALE/POS2023/02/3118', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7625524ca94befeba12a43a48f318ad188895e363a772206a6d6b4854fcf94c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3120, '2023-02-08 08:53:07', 'SALE/POS2023/02/3119', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd927f9b660279202f0d1ac1c64d47c28e940036cdac1f456147597016d2cd23f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3121, '2023-02-09 08:13:02', 'SALE/POS2023/02/3120', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2760.0000', '0.0000', '0110', '110.0000', '110.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a9715551c24dc4752c50ac413070e51a3cf78c7ba3d7d87392f0c9914b4b25e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3122, '2023-02-09 08:19:40', 'SALE/POS2023/02/3121', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd816833c363ef11b21be37f5203f45cbd3b258d6533f4c4f96dde4b903206576', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3123, '2023-02-10 05:52:44', 'SALE/POS2023/02/3122', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0bc1fa7d1895a0eff396efd4f07b0fddf9fe027882cd7c20d62cafe394a48493', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3124, '2023-02-10 06:18:49', 'SALE/POS2023/02/3123', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dc49113c2e98695d2c50b912a661c5323da5e08f34442a70b0c6076bd790e708', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3125, '2023-02-10 07:25:27', 'SALE/POS2023/02/3124', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4270235631d2f33becef445a6552c8a5014bd03827438bf60cf87673b8ea88ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3126, '2023-02-10 09:08:36', 'SALE/POS2023/02/3125', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '542e36744f8194817bc2126089b8c13d78ee6e5e03f3979fe9fea6ef54edf4e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3127, '2023-02-10 10:42:07', 'SALE/POS2023/02/3126', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '380.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '380.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '380.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8afbcf6aa7e566bd6b2311851901070552464f9e3722097a12600b4985fe1fde', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3128, '2023-02-11 02:06:52', 'SALE/POS2023/02/3127', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '175586032be893bbfbb92ea1b51904ece5f1cd3d44bff7afc684fc6a7fee032a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3129, '2023-02-11 04:48:14', 'SALE/POS2023/02/3128', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7f99f8e6fcd1ba7c4f66acb28a83ade784333f85f621f22313ac090d3bb85e63', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3130, '2023-02-11 05:50:18', 'SALE/POS2023/02/3129', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f156693e1acebb286e83aa4cce0b78c9519f0bc84884e731ccdb54a7cc007fd5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3131, '2023-02-11 06:00:34', 'SALE/POS2023/02/3130', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5e0036b2ce67da6b05de3b45b92b8680c73f58d71178c9f108c5b05bbbb98a2e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3132, '2023-02-11 06:26:49', 'SALE/POS2023/02/3131', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'beb88dfe4e6732e1d751f733f80fb5794c97a310774288c3b12461d6cf5a8973', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3133, '2023-02-11 06:27:27', 'SALE/POS2023/02/3132', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd23c9c65f3f0d2720f81e81f40b2b110d2431835c1f1f24aae3443c896e2fd92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3134, '2023-02-11 07:10:05', 'SALE/POS2023/02/3133', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '100e93c5d318dff5223d4fa915c90d24906f8b463d88cb6338540d5e04cce4b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3135, '2023-02-11 09:08:30', 'SALE/POS2023/02/3134', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7bfc3b119d8414369969de7b2f778b8d3c3081de7485e16132839901b2837555', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3136, '2023-02-11 10:09:59', 'SALE/POS2023/02/3135', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '805e13f1073984d36dab4139492c58ae65ebb0cb8feedd4fae1ee3a93787dd51', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3137, '2023-02-11 10:29:45', 'SALE/POS2023/02/3136', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b17b46a129f06ba5b760cc711eff8a0973b3cf3a2e0cf2957f75de9c680e711e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3138, '2023-02-11 10:36:11', 'SALE/POS2023/02/3137', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '970.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '970.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '970.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'edac355357fba7e4a917ba4cc5f1e89cf4c0943fc0cd67b5d38c0ad35deb93d7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3139, '2023-02-11 10:51:49', 'SALE/POS2023/02/3138', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e26cf0c7a93209532ef1752b6594b0f50e2ad03423c9f166bc1597ba96484ec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3140, '2023-02-12 05:06:51', 'SALE/POS2023/02/3139', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e97621613161c3352465e5a60118d06d05e46a37d5fb7e2cac924d9ebe999e77', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3141, '2023-02-12 05:28:43', 'SALE/POS2023/02/3140', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d86043f4d35bfaac059385c0402d9fb01f6dbbbe6abf9da8194bb5295522fd7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3142, '2023-02-12 05:45:27', 'SALE/POS2023/02/3141', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfedbbc639d87024402cc70815f28159c58fbb82e0724383090243458c1c42b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3143, '2023-02-12 08:15:19', 'SALE/POS2023/02/3142', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c3a968089ffd93523934112303a170bbaa739e8d9c217c70583dd89348f6ae38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3144, '2023-02-12 08:24:26', 'SALE/POS2023/02/3143', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dee5e7dde80168031fbc9158f53f7a69f2a37fdb1f17ba6416bf689e9740c675', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3145, '2023-02-12 08:27:49', 'SALE/POS2023/02/3144', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c5fac6f75132b90209ecd9bf8932e2c14eef6a96c2a0dcc649194720c751644', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3146, '2023-02-12 09:28:35', 'SALE/POS2023/02/3145', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5507a3137ba60b46e85743911776873a83f52fa7deca30fbbe859c29c9d7a667', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3147, '2023-02-12 09:30:38', 'SALE/POS2023/02/3146', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1adbb53f272306db063c753d4080ecbe18b7b938ebf4af3edf73913ac10828f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3148, '2023-02-12 09:41:36', 'SALE/POS2023/02/3147', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52e1a4c12d3697bb1ca16297d25fc102d2d34958b586d3de74aeec8c6bcf1d47', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3149, '2023-02-12 10:36:22', 'SALE/POS2023/02/3148', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2250.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4cb31e8176d7fe859bb17526a3d1f59afb90bda800e18c470e2267fe2d661f71', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3150, '2023-02-12 10:56:55', 'SALE/POS2023/02/3149', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '0', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3991f75424010e8e9a74634d9f945868f16cd31c497728275aec2ced25f0fb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3151, '2023-02-13 01:12:57', 'SALE/POS2023/02/3150', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bd3f352fb51488b6e7a254f936e1cf988140b35df97d64fd0b21f491a904d7a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3152, '2023-02-13 05:31:25', 'SALE/POS2023/02/3151', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '080e1805282962091ab8b33ac158e74aaf0b17792083b2b77649e8af908e9d27', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3153, '2023-02-13 07:48:28', 'SALE/POS2023/02/3152', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0623c5f7345c58ac87019439bcd0f1374b5047cdb5116c50d704ccef6ba6f388', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3154, '2023-02-13 09:35:19', 'SALE/POS2023/02/3153', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d1248a410c3a3c663ebd2b1cf59ca620af3940d697dd7f0e5ca46edb1f2a369', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3155, '2023-02-14 02:09:19', 'SALE/POS2023/02/3154', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '12ab4a9ec484a0b6e19d7a32a0eecb870fbc3c64c20238add8bf0713e7509233', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3156, '2023-02-14 02:37:28', 'SALE/POS2023/02/3155', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '964a8e461617ffd309852b2f1bec046bede4347f708185494db98eea6e5bf009', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3157, '2023-02-14 03:11:48', 'SALE/POS2023/02/3156', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7eba7f331b635f4b8768b374da781abe8f6143dbed514cb6a534b1e17be620fe', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3158, '2023-02-14 05:52:14', 'SALE/POS2023/02/3157', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29ef887949e94c843ac41c1396e94c35903ab2335c26d08117681c009f22a598', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3159, '2023-02-14 07:57:40', 'SALE/POS2023/02/3158', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5ecf54edb55d0affd79ce66cf3172c5e5184f2b2396628d27fa81243c8877dbc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3160, '2023-02-14 08:24:37', 'SALE/POS2023/02/3159', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '860.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '860.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '860.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1500535d1c134da5e37166f9720779b75e4bfe29b6c59c91000626c55db044c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3161, '2023-02-14 08:50:18', 'SALE/POS2023/02/3160', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd0ab273cc27ed826394923d3b53f637ff6b4453241ab9bf203db9b30187033a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3162, '2023-02-14 09:43:19', 'SALE/POS2023/02/3161', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6ce734c6f15a27c7254b7cbb8550e68bf833807e123ee9ad5b27a9933b0d6625', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3163, '2023-02-15 05:04:51', 'SALE/POS2023/02/3162', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c93d550b77cfdb9c4926db239ff9eb882a0d45f6eafbee33579a96134494d853', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3164, '2023-02-15 07:16:38', 'SALE/POS2023/02/3163', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a5a6514995ae1889a5351f965514eebc511bb0d2faec38a8326817bbbb1e61f8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3165, '2023-02-15 08:30:22', 'SALE/POS2023/02/3164', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '760db2d806db367839fddd2b730e48263ee2c0b8ef514972364a218cb585e4bc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3166, '2023-02-15 09:23:08', 'SALE/POS2023/02/3165', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8ad3cf344e1d3b3a5989010ec6020e45e157994205921910ba2b5bb28e304c6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3167, '2023-02-15 10:06:53', 'SALE/POS2023/02/3166', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '600b7132fec832d348351c6e056591ceec148dea52002578e3776393dd334686', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3168, '2023-02-16 01:10:03', 'SALE/POS2023/02/3167', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '3050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c42af340932c873007daf0735a941c77e26e3a6f039c06481f8d447a66eab7d1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3169, '2023-02-16 08:03:47', 'SALE/POS2023/02/3168', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4d09f4984778a309d237c3174ef580d1ea45aaa8b07ce4de0b39af8a016bb3e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3170, '2023-02-16 08:21:40', 'SALE/POS2023/02/3169', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f66fe49df5e46a3705de8c128a03f76f6e289b26b6d4980c12245824e586a799', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3171, '2023-02-16 09:49:09', 'SALE/POS2023/02/3170', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2240.0000', '0.0000', '0140', '140.0000', '140.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5c5aa024c6196da5a336b35efb125351e72fafe6b9c15fe1c33d8d8ac2fa5cc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3172, '2023-02-17 05:48:37', 'SALE/POS2023/02/3171', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cde730dce1dd66aaad74c60db49b24729be6a36786da59641edfbc52fbd7db59', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3173, '2023-02-17 11:18:20', 'SALE/POS2023/02/3172', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6abc2af4e0ad96c0288f9cfe80faadda14160a2f94d5d3371ef425541a040d0c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3174, '2023-02-18 07:08:24', 'SALE/POS2023/02/3173', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '12300.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '12000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 15, 1, '12000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb93e5b229a352391dfa530849e09337d26a26ef01b20a894f32ba9039d082bd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3175, '2023-02-18 07:12:40', 'SALE/POS2023/02/3174', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8f3d1349b496cee7aaa253ef72dc1a4f7c7446156d6a58b7e8b8e30b08001ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3176, '2023-02-18 07:15:26', 'SALE/POS2023/02/3175', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '10000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '10000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b384e5b17f049749d755bb024a95c746e9f9df53628ced6fc0901432af05fda8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3177, '2023-02-18 07:24:54', 'SALE/POS2023/02/3176', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5beb30ed5bb62fd6dc5d0d951d8bc506f9b4489e12e5e73674bf3d92678be66f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3178, '2023-02-18 07:37:06', 'SALE/POS2023/02/3177', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '520.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '520.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '520.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3c5e9360c7ea581f82790c9b4d22103bcdddc92babf35aa0580e48f7e63268c5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3179, '2023-02-18 08:14:23', 'SALE/POS2023/02/3178', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '309563630a8f27ea66c3eb994e767f4478492be8e97f43873e2baf4874a5c3ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3180, '2023-02-18 08:29:28', 'SALE/POS2023/02/3179', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '80.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '80.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '80.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e96cb7ff5014a1b0c1c279d69c38c868cbc97a2b702e8216e314a442d112b33b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3181, '2023-02-18 08:58:49', 'SALE/POS2023/02/3180', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6865128381ffda91a8f29db03d229971b374d8065a5a7b33163ea469f1117f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3182, '2023-02-18 09:37:45', 'SALE/POS2023/02/3181', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1eccddc2dce23ae183358348d70704706dd78898cddc685a0d590d9297b532f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3183, '2023-02-18 10:34:11', 'SALE/POS2023/02/3182', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '4750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '93baa6e2a83280baf4af5975b7e50c182bb3b4f2ff7faf5c91c633dea759db09', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3184, '2023-02-18 10:40:14', 'SALE/POS2023/02/3183', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '578b2f72217d763b4c6c82e30b42b6b8850bf8ec460ddb0dd35076aeaf3fdfec', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3185, '2023-02-18 11:13:54', 'SALE/POS2023/02/3184', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e20f70057b993f04fa240c1810ef78f26b16fc79b6797908f7f2c680a97b27dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3186, '2023-02-19 02:12:50', 'SALE/POS2023/02/3185', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '61173ecc44d76acf9a832a114bb8189ccd40bda9325b021acb03336c564aefd2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3187, '2023-02-19 05:27:30', 'SALE/POS2023/02/3186', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7130.0000', '0.0000', '130', '130.0000', '130.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 22, 1, '7000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b5e0e26b0511e7453a1f9443248f22375ad3fa67eb4d3337773b5ee793499d11', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3188, '2023-02-19 07:09:05', 'SALE/POS2023/02/3187', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '950.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '950.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '950.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '358bc09719b45aaf053a263492d7819ad4196c64b67e20d53eaa7b412afdea7e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3189, '2023-02-19 08:42:54', 'SALE/POS2023/02/3188', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2a3254f440171704f774edabb44a14fa2064d594c2241e9a7c038b8050b9c720', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3190, '2023-02-19 10:09:57', 'SALE/POS2023/02/3189', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fb632dd32c59bea100cc1cc4e14512cc788e829355576e99de07e72653fca377', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3191, '2023-02-20 06:14:33', 'SALE/POS2023/02/3190', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de497673f1122a8af077862de79aba6eb917ee4561521dce887ed92915dca05e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3192, '2023-02-20 07:15:24', 'SALE/POS2023/02/3191', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8f453e2001045b5ba2f46bf999d7f852bb30f617c20bd5282e9d6de514f73631', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3193, '2023-02-20 09:11:54', 'SALE/POS2023/02/3192', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '57e8a32d9c1b1041cfb868def96cc067c8c7bc9b288d4dbf6e71649f6b8f91a1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3194, '2023-02-20 09:12:20', 'SALE/POS2023/02/3193', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'de063dbbc99e6238b9bbbce4029a16a64033ea19ada844552da46734221ed464', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3195, '2023-02-20 09:13:52', 'SALE/POS2023/02/3194', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '51a8783af9011adf0d82186e1881783938411994e5da1be9945313a7cc498c6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3196, '2023-02-20 10:15:20', 'SALE/POS2023/02/3195', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '27e4358e5f7ef4e42e5f5e5119a6b31f5ace93a64038327e1ce2aeb3ebe29da0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3197, '2023-02-21 04:04:07', 'SALE/POS2023/02/3196', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92ecf94c4b329d5537e54e062caf7423e57444825ef15d24891740e2240c5ef1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3198, '2023-02-21 04:36:18', 'SALE/POS2023/02/3197', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '460.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '460.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '460.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1c2b2d8b0027f28b4abc390c480babba5f3a05fb357cd58164e9eb744b17ac99', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3199, '2023-02-21 05:54:39', 'SALE/POS2023/02/3198', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7c4e89caad681e9cb8601d14b6557c31fe1f2f2b3703d9996d8e6d87d5b27301', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3200, '2023-02-21 09:43:55', 'SALE/POS2023/02/3199', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e5f6bc587f7e50a77be0c607c1f6e5c8b2ab1563c9a059980b46c474f156cbe6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3201, '2023-02-21 10:07:06', 'SALE/POS2023/02/3200', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60c5d90919874cb8a208bc4dcf43deaee6ba846dc5d19ff6658eb4c7724fe7dd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3202, '2023-02-21 10:26:05', 'SALE/POS2023/02/3201', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '652f028ba30069f42d13eb6f5df782ffffe42b5e302e9f37283c31325f9790ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3203, '2023-02-21 10:49:38', 'SALE/POS2023/02/3202', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bfaff09adf38ed7da7c0a6b9ee6dfa4a583d0adbda20e1d5626d1cd49078c264', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3204, '2023-02-22 02:14:36', 'SALE/POS2023/02/3203', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5460.0000', '0.0000', '360', '360.0000', '360.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '5100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bc97bbeae2e583ca22ae36064093ef1d116eee145f075247a82afcecbf92c95b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3205, '2023-02-22 02:18:50', 'SALE/POS2023/02/3204', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '260.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '260.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '260.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b367c9152e89dbb95477484f8c37b6e5394ee0a6f33a3e060079a81f06889676', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3206, '2023-02-22 03:50:07', 'SALE/POS2023/02/3205', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b748c77687c73c477d28f391083b730b350aef23002b406a1ccee6dc38eef1c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3207, '2023-02-22 03:50:23', 'SALE/POS2023/02/3206', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c5b404672ba3ded774938c53005092d1033d1acd4aeed069a3e83cf10c359de9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3208, '2023-02-22 04:04:14', 'SALE/POS2023/02/3207', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5010.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5010.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '5010.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85c48250a3bd590419b4563eb57f0e6d83b516b02c17c60dfab034ff4a245ae3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3209, '2023-02-22 06:08:56', 'SALE/POS2023/02/3208', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd14686f44e2fa091f85dd404f1df99a5ec8a9743db09aff01cb7abc056f04de9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3210, '2023-02-22 07:04:45', 'SALE/POS2023/02/3209', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0e30812652f996ba0f718fedbd171fac51de8097c473f35ba67beddd313081fb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3211, '2023-02-22 08:05:18', 'SALE/POS2023/02/3210', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c8c8d1f33ba35850f12324cd06b4cb4cfe43e8b8650ed973a9d19dce6d63ee10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3212, '2023-02-22 08:55:41', 'SALE/POS2023/02/3211', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b4000a772102797c7933dbd3ad68e3d21e516d76aa1158da90e5bcaad983d66', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3213, '2023-02-22 10:24:27', 'SALE/POS2023/02/3212', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0d45dfc4419c90b2da11c9ef32aa9f0f6ef8b69e8ab1b384767fcf967180ada', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3214, '2023-02-22 10:25:22', 'SALE/POS2023/02/3213', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb475e970105d7f6c6b1dae1af28340051aa5b3d9499e7c939a742f468a9c062', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3215, '2023-02-22 10:26:30', 'SALE/POS2023/02/3214', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a82ef462b3c8e7cde061fc00b6cf3e97b83755a05aba0dc98e88d09d7ad2b17', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3216, '2023-02-22 10:27:19', 'SALE/POS2023/02/3215', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '37d284e28ee3bd6281dbbd6e67690b7719d23cf427dd283eb90b52a8c0c208c6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3217, '2023-02-22 10:27:54', 'SALE/POS2023/02/3216', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '35082e9e6460a0c30d21d67eb45e020a1ab8349966869ddf0710a32fa4d87387', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3218, '2023-02-22 10:59:19', 'SALE/POS2023/02/3217', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ce319888ff752220b87fd908055b398100a0c2e5d083837b9c6bd12a8b610d89', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3219, '2023-02-22 11:04:11', 'SALE/POS2023/02/3218', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c197d275b0055c6cdc43a610b7d8bec4be3616cb6b66eb4c90d5848a5486fa36', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3220, '2023-02-23 05:37:49', 'SALE/POS2023/02/3219', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4000.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '3800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81feead7158e20af709bc732e73d8e937612ef89e94eb19f17c489f2285a674d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3221, '2023-02-24 01:58:34', 'SALE/POS2023/02/3220', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f957546f443cfdeae44894dfab5599b1de66933314757dedb37be48a999d0bdc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3222, '2023-02-24 02:58:29', 'SALE/POS2023/02/3221', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '180.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '180.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '180.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91a4e40d717f33d7cfbdc823ad936a84ce796d00b45e40ddf29b9f8a2873c548', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3223, '2023-02-27 01:22:46', 'SALE/POS2023/02/3222', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '2100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82865e71f884ed6deba08c95cb85daea0b4bc8e0d0832b2509494c9f3044234d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3224, '2023-02-27 01:39:26', 'SALE/POS2023/02/3223', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9890.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9890.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 23, 1, '9890.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9a3ad0e77752cc2d943fb617e9eb6a482269c7f5682da8e3853b944d8a8ecaf0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3225, '2023-02-27 01:43:06', 'SALE/POS2023/02/3224', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db587a8a7e1d6787d51874c1fdc01508aa7ba21addc385352d13e6c358f0e2ad', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3226, '2023-02-27 02:12:15', 'SALE/POS2023/02/3225', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6650.0000', '0.0000', '80', '80.0000', '80.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6570.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 19, 1, '6570.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1efa486e2b0dc61f52a1c010255a2733a3a3cef8f8502c17c5ee5610881fbfc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3227, '2023-02-27 02:21:22', 'SALE/POS2023/02/3226', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '780.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '780.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '780.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '069fad46a335cbe73f28bf2f6f26f8276cfbb92095daccfc3387acbdfdaf0024', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3228, '2023-02-27 02:24:47', 'SALE/POS2023/02/3227', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7779d79455ebafe7e2d6ea2918d4e0566215e6619ba24632c308bc3366ee8e92', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3229, '2023-02-27 02:41:31', 'SALE/POS2023/02/3228', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '32ed2658248b428b58d416839f7b5a97617d64008959a4231405e2615563d0c3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3230, '2023-02-27 03:24:58', 'SALE/POS2023/02/3229', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '170.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '170.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '170.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8298a41c99eb5dbe43bef13d4b3c1bcac343654735a2d8cebed1bf97293159ba', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3231, '2023-02-27 04:16:58', 'SALE/POS2023/02/3230', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '2600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '25fa2b835b1c228f9c10c92ad5a327a434868b18b32178fa48b89670a1647fe6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3232, '2023-02-27 06:17:46', 'SALE/POS2023/02/3231', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1281f2663b342a01298925ecab783c1f8264179f47a752d66b910a3c8e22eb6f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3233, '2023-02-27 08:34:22', 'SALE/POS2023/02/3232', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5750.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '5700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '409378d795d89b42ba4af1a26d7d3d55f6887a2787fe1bc54e6a5610e96a9b34', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3234, '2023-02-28 01:07:39', 'SALE/POS2023/02/3233', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '110.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '110.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '110.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b411bcd5e4ac23834ea7b4ca952dd6d1171b1c60d0caf32820f0f7c1e90a24aa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3235, '2023-02-28 05:52:06', 'SALE/POS2023/02/3234', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd867466a8a8d19f0136329b6449209446da5ef5a64506377233157531709d50f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3236, '2023-02-28 09:03:38', 'SALE/POS2023/02/3235', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e077b892ae66003bb4860eade01c09a3f9c1b9332087edb4ea6fce72744cc934', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3237, '2023-03-01 02:06:17', 'SALE/POS2023/02/3236', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f23fca032803db958d224ecd42de8a1839b51c659ca93edde39d4978f1bb66d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3238, '2023-03-01 02:08:16', 'SALE/POS2023/02/3237', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1700.0000', '0.0000', '0100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '454c6b7fe250f9b77f99d080951a85364cd43ee9470cba39d4bfba2b5e05d82e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3239, '2023-03-01 02:09:35', 'SALE/POS2023/02/3238', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7813e39a3c1e2f354299618a018a8e782c068a497b96afcb922cf0a82c742927', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3240, '2023-03-01 02:26:30', 'SALE/POS2023/02/3239', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '050', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '943263d40b0f91aa7c34267cfa05e6bed22e0f6de0f39db6378b061020749707', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3241, '2023-03-01 06:28:00', 'SALE/POS2023/02/3240', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '6400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '6400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '6400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f6d316ca479a08af2efdfe9c9bfe945067dfc3132c5ec45750377e7b2f80d1d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3242, '2023-03-01 07:12:20', 'SALE/POS2023/02/3241', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fd5cdebfd0edbff864dd7ff442596bd86562e78a57c2c03c221d0955f5ec6790', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3243, '2023-03-01 08:41:17', 'SALE/POS2023/02/3242', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '9550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cb3d0c18d0bbfe17e35e4f48e6ed773bde19adadb6f4ee07b8d28f266ff4d243', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3244, '2023-03-01 09:44:16', 'SALE/POS2023/02/3243', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f67cf605946c2051c3f95a8ee281ad48376db017951dfe5e38d98c67e7f54c58', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3245, '2023-03-01 10:11:14', 'SALE/POS2023/02/3244', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9477c50bed93a4bff59dab5bf35a5a7e6bfe8c8b154c4ef41002af23720c82d3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3246, '2023-03-01 10:26:37', 'SALE/POS2023/02/3245', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1020.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1020.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1020.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f0c859e15c2fe5d23272219d840476a6bfa817307bd01fcb01fe68803f7a6997', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3247, '2023-03-02 02:59:40', 'SALE/POS2023/03/3246', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '360.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '360.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '360.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ab8415f97466ed6bbd389a451d1cca1b7e0b9389bcffc57876472c256e72b613', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3248, '2023-03-03 01:42:54', 'SALE/POS2023/03/3247', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aa69d36d322d74640ae77af4e06b164686d81f2cfdeba17f429aa98de76fb53f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3249, '2023-03-03 01:53:01', 'SALE/POS2023/03/3248', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65d47544dc50427f31271b2fd03b53cd0f0fda412a5853a49491c9d18df75841', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3250, '2023-03-03 02:21:25', 'SALE/POS2023/03/3249', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '315e95d801c0d525a01c30a8319b49637585655c82a68a47477750439d477e42', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3251, '2023-03-03 02:21:38', 'SALE/POS2023/03/3250', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '52f9e661552135b930c740876da6c5724251dcd60ed96cfffd44d1cf73b85fe0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3252, '2023-03-03 06:31:02', 'SALE/POS2023/03/3251', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8935e0e2abd85178b98eac6fdd56cc354a375c2c1957ac08a9a8426c3dc291b8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3253, '2023-03-03 06:57:23', 'SALE/POS2023/03/3252', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b8a8dc319a21cfc51d0025f5123a59a2450aa3699df0513580b756303be1d1b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3254, '2023-03-04 01:52:17', 'SALE/POS2023/03/3253', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '490.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '490.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '490.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '056a110a6c25195a1cb7674c62907906a843a46b15ee9d439329bd1aafbdf204', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3255, '2023-03-04 03:03:38', 'SALE/POS2023/03/3254', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '310.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '310.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '310.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb60274d1e2d0c4e6644ca2829c7133ec2573cd22dccbd6dd26f3b4bd48612c8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3256, '2023-03-04 04:22:37', 'SALE/POS2023/03/3255', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '22412262219afe0edb347fc4efe569d0ceb65142cfafb24e94cbe2c8f080cca7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3257, '2023-03-04 06:19:03', 'SALE/POS2023/03/3256', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '685c823bb1c2ffd9ead7a5e605eb019c10d07e254c81afce28da000dc27b81f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3258, '2023-03-04 07:51:18', 'SALE/POS2023/03/3257', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '13930.0000', '0.0000', '700', '700.0000', '700.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '13230.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 51, 1, '13230.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a3db325d918ebb66c20f661edbd0080fc9de100417abeaa1780867832300640a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3259, '2023-03-04 08:24:22', 'SALE/POS2023/03/3258', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5205cf7ecdbd25640df136170a80c41961d469228930b15d26be102a8e648e3b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3260, '2023-03-04 09:24:58', 'SALE/POS2023/03/3259', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '692468f536194ef8c972a9aa07947d380cc142ab7d6527200e7cc3b19aa2c421', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3261, '2023-03-04 09:32:48', 'SALE/POS2023/03/3260', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '810.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '810.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '810.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2880fe8d8e6099c33da6f7fb920279b7727d8e5c8993cc85f7d12ea6db152d50', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3262, '2023-03-04 10:07:33', 'SALE/POS2023/03/3261', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '455bf7625b053d12c71ab4d8ef5dbed855a8d9ee9c94363a6632b21591b088a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3263, '2023-03-04 10:26:28', 'SALE/POS2023/03/3262', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4150.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eb37d9e7f480b01b38974f8f3ef406e9279c0672cbc8ff8e7702ce2609a7a31f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3264, '2023-03-04 10:59:55', 'SALE/POS2023/03/3263', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '29968c424c336906d78319a80c4be15afa9e8aa4cdcf06920a6767123ae88daf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3265, '2023-03-05 05:02:21', 'SALE/POS2023/03/3264', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9be2fb3e77f8b5452c69022f243e697a967819f48b053a4e6bb3837b7b34e7b1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3266, '2023-03-05 05:05:32', 'SALE/POS2023/03/3265', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '9000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'fc3299d8eb17184d7d93c634aebf538d3855f590b3faef201052b8b02d9e8c2a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3267, '2023-03-05 06:34:38', 'SALE/POS2023/03/3266', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '53d87c5b1cdc49af7d53dd3d240639d0b96e7893eecc682adf8e9c99be4f2c94', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3268, '2023-03-05 08:35:18', 'SALE/POS2023/03/3267', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8a1619653a021868f06f999925355118a83ca172d3969e93ab8fd8c0598152f1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3269, '2023-03-05 09:40:45', 'SALE/POS2023/03/3268', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ed104337cb544f1c93e9736a4b947327b3da2870e124208a6997d1427c636f2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3270, '2023-03-05 09:55:20', 'SALE/POS2023/03/3269', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '515b3410a5d0b3581da73fb15799c3dfa3769927d6db4c5318502269dccb1cf1', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3272, '2023-03-06 03:39:42', 'SALE/POS2023/03/3271', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ca9d78a5b19ce1d139327b3903f560ad5741b9475a975bba92355893ed1dadbd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3273, '2023-03-06 04:41:26', 'SALE/POS2023/03/3272', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '83b8b13d5346a73c443e3719cc5e1a32df882607b4c926c2bc97b17be3929c2b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3274, '2023-03-06 05:40:21', 'SALE/POS2023/03/3273', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4750.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '4600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '75827181384bc48d6b4e8baf5c287e1d62b4069286de922d62a277aee736ec75', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3275, '2023-03-06 06:29:37', 'SALE/POS2023/03/3274', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '731481aeba9bfb0b8d81553b2e9be95ba98d8a1afeb55131d77f9c8bfc15ecfa', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3276, '2023-03-06 07:34:11', 'SALE/POS2023/03/3275', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '11300.0000', '0.0000', '800', '800.0000', '800.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '10500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 13, 1, '10500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aff33c3c4aa646bd3d454def7a4bac3b52c0966f8a8f02924293deed65951fb6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3277, '2023-03-07 00:55:18', 'SALE/POS2023/03/3276', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '614ca301409f48dac59cfc01ee629a10d26e1c6262c04c9d9214f952d3aac91b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3278, '2023-03-07 07:40:13', 'SALE/POS2023/03/3277', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28ad66e8f629875c6899d05cabed1c45695f1c79f2e0b5999399cf77278804d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3279, '2023-03-07 08:17:55', 'SALE/POS2023/03/3278', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '98a08c0d4aa5189a7634e1eb7aefac1cfd35338dd5470318a5d6ed770a4516a9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3280, '2023-03-07 08:21:51', 'SALE/POS2023/03/3279', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e610379dea9e185a6ef054c915a00c308a144b30782d937dcd4fa066152af694', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3281, '2023-03-07 08:26:13', 'SALE/POS2023/03/3280', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '62bd78afb3857f234f43816de21309f558a64c955ee8e59b4df9dd497f0ec479', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3282, '2023-03-07 08:40:22', 'SALE/POS2023/03/3281', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '11c00dcb6f4ea25392ef4454d5b67c5ffd788ab0f8a1279ae7489444a3d3e492', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3283, '2023-03-08 02:20:52', 'SALE/POS2023/03/3282', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c58036951c67d13b414a1d1e7907a5c026490b7c742b0c619d38482ebc03a49e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3284, '2023-03-08 02:41:53', 'SALE/POS2023/03/3283', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8c530bf6c04d5c3e8b4f201895b86acd56ce4ad8460d34422473adb0e6b0edd', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3285, '2023-03-08 05:01:32', 'SALE/POS2023/03/3284', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '45fbc55d4183c62bcd232e99d454e0c8069d25650aefce22f46dee894372fd40', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3286, '2023-03-08 06:53:25', 'SALE/POS2023/03/3285', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2650.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2650.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2650.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4e422ed3931c19aae216a1d17b7458d76e0beb68cf2638c0eb2266a22496f6d5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3287, '2023-03-08 08:25:08', 'SALE/POS2023/03/3286', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a7bef289c2e5ef5e0e8ec31f0d5b10e684ed8863c64756defa39298e0b86022a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3288, '2023-03-08 10:40:03', 'SALE/POS2023/03/3287', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5640.0000', '0.0000', '550', '550.0000', '550.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5090.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '5090.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46992485579d215d3d89b43bbf16e3f0df85fc3dcdea06ed04900b694cf0e250', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3289, '2023-03-09 01:54:26', 'SALE/POS2023/03/3288', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4b090ab78cde78fd3e0d5f7ae5cf9f288d9743269dea3f368e4608ae35fddb04', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3290, '2023-03-09 06:50:58', 'SALE/POS2023/03/3289', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bd4ce847af395007c4c98692dc21adc6277945b65b9a0c96c833cc81670e88c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3291, '2023-03-09 09:33:53', 'SALE/POS2023/03/3290', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6c27c5511f9a5d4289eb379be7e2f18f7d1e05a692432b597f9f5176426706b2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3292, '2023-03-10 02:17:34', 'SALE/POS2023/03/3291', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c681b1ef8073ef38b5bf4db8885ce71f780535a1a6048fa81d9df0f360b9c7e4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3293, '2023-03-10 07:10:10', 'SALE/POS2023/03/3292', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a548c99c0d0df86dadbbf8175de1a0942cd75dc90e3677aa8fa00da39bdffadf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3294, '2023-03-10 08:17:04', 'SALE/POS2023/03/3293', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f5ca249302c8e0ddb99589356c97068bf78accfeb802b7013cb17a6718380e10', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3295, '2023-03-11 02:05:19', 'SALE/POS2023/03/3294', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1800.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a38dfb2a3178698fa627f43cc9df3193ddfeb8880636f9be87e557018ace93de', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3296, '2023-03-11 02:50:46', 'SALE/POS2023/03/3295', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '210.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '210.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '210.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '741df4a3783ef70a431e696db0c86fe949f8389abf652a4490adb3fd66a1357d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3297, '2023-03-11 03:17:10', 'SALE/POS2023/03/3296', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0d023292ad0d3016c54ec01a5e911a6a9eee01ce94ecb0c7f237bef7489d49df', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3298, '2023-03-11 07:21:20', 'SALE/POS2023/03/3297', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '980.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '980.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '980.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a2407f0781ed7e5d3c954f82c058450ba477b3744ee4fbbd9f3e64f9312c7541', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3299, '2023-03-11 07:46:07', 'SALE/POS2023/03/3298', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dfa0994793b19d8ec1b571137ed00b18e233506ccc6e7daea2de3ab5efc8035d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3300, '2023-03-11 08:30:31', 'SALE/POS2023/03/3299', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '440.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '440.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '440.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'bb11fd6d88e658ee77c843005e8f0bb0a2f62b606dc1f6e4d62b171966f86b1d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3301, '2023-03-11 08:43:51', 'SALE/POS2023/03/3300', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '2400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '131f19ffcd0376ba3c0aa91c30335c487758e462949c020830a740effbf3ea1b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3302, '2023-03-11 09:19:21', 'SALE/POS2023/03/3301', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '337ee796855c5cea04edc3ff5759564cc4d970becc7a726dfe3baa90385dc3b4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3303, '2023-03-11 09:50:46', 'SALE/POS2023/03/3302', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f631db785c1d394a72aba4222b9c5612157e42354f8be46452d36f4b8771feb9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3304, '2023-03-11 09:58:19', 'SALE/POS2023/03/3303', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '743506ee32bc366920ace88d1fe1224b69acea5647a3189b27e9ad0d111fb92a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3305, '2023-03-11 10:25:49', 'SALE/POS2023/03/3304', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '85b6b42517285d4b68956c884de1725940ca4c86976ddf95b085be4b571f6c6c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3306, '2023-03-12 01:25:24', 'SALE/POS2023/03/3305', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '550.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '550.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '550.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8815af8a76281a568ce80653edd235b751b0360a80378189b41f5b2c943641a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3307, '2023-03-12 03:11:17', 'SALE/POS2023/03/3306', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7b70457b7452570c963da0debb108ada22d44fc2b3e0c275804568e3e13a5b0f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3308, '2023-03-12 07:04:18', 'SALE/POS2023/03/3307', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7d4c446c027a48f85f62320aba25448dc9077206a31a054b5707193558e903fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3309, '2023-03-12 08:01:08', 'SALE/POS2023/03/3308', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '824303bd507cd5cc782583e343915dd8e23a2f6255496b12dd5ad70d84d0c819', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3310, '2023-03-12 09:13:02', 'SALE/POS2023/03/3309', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd003f6ab6eda2033567ab77f91faa13d73405c4750fc143b663e95e473d2f9a3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3311, '2023-03-12 09:46:25', 'SALE/POS2023/03/3310', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d9b01824c9207ea2e841ab59a3a22a5ee29d2a9f2441c7661d95575e2024b38', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3312, '2023-03-12 09:54:09', 'SALE/POS2023/03/3311', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a8f96e3154e3e06a3408ff1924a4714054ab565e712161865db072c390fae26b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3313, '2023-03-13 02:09:10', 'SALE/POS2023/03/3312', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '4c9bc5502a5d07745360225058423cc0463be04791ad91c41281e059173aa10c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3314, '2023-03-13 03:27:39', 'SALE/POS2023/03/3313', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c73767c6208969c29406db73f6f26f1ca1736687b64a00300c0bd18d9d47a741', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3315, '2023-03-13 08:59:51', 'SALE/POS2023/03/3314', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd5d4fc853f6f059c509b222cc6b333f86d91471c004a02c1923c2240975a1c08', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3316, '2023-03-14 01:32:07', 'SALE/POS2023/03/3315', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3600.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '3500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8145a5726b9d86c83498e6a35f53e5e883ba0857696579237e3ed90250b8c11d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3317, '2023-03-14 03:12:19', 'SALE/POS2023/03/3316', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9dc4729ba8803dad165c70598301a33c4eb38b8c5ab5d8951361567806b590e9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3321, '2023-03-14 06:09:14', 'SALE/POS2023/03/3320', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1000.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aae5b5a75277248e55373ad094581e9361ae62b780892d907b6033a21234bf0b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3319, '2023-03-14 04:26:11', 'SALE/POS2023/03/3318', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '900.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '900.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '900.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '81b28d1414b95e5fd28193010c3aa5b4a1366842bc9bf41cdafb082b0007932f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3322, '2023-03-14 06:35:33', 'SALE/POS2023/03/3321', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31fb7ba40cccfd84f9e83a53377d4a88bb72ab4373ee62adb865545752750f0a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3323, '2023-03-14 06:42:05', 'SALE/POS2023/03/3322', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'db0a5d7abe82f3b4a4caea7f666cb1e7db2b47f00f692d6f5d54937f206a964b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3324, '2023-03-14 07:10:13', 'SALE/POS2023/03/3323', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8782e158300d3cfba0778988ed0cdb0fb0506ed5d25471e2ab2f849b6a9078c7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3325, '2023-03-15 02:51:55', 'SALE/POS2023/03/3324', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0aa303a21bf76f653e2eb997e89c4e11b1f7f7df5b0367755109f04b225d9692', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3326, '2023-03-15 04:29:37', 'SALE/POS2023/03/3325', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2750.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8e332885cfebc9186ead9c19fca0f3a39044246132fe010a967ebfcba0899613', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3327, '2023-03-15 05:20:10', 'SALE/POS2023/03/3326', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a22d805a516e3c5b4215fda2fa59b92d32cd2e7c9e70a2a0cbdcc36b0fdf2d18', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3328, '2023-03-15 06:16:47', 'SALE/POS2023/03/3327', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '1350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5d458df41ab26952fbb25d0c58fb8abff971e876892a8cd8200279718d1f16f9', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3329, '2023-03-15 09:28:23', 'SALE/POS2023/03/3328', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '05be3e62a4cdbe3d8c7d8ac57e7048c5b25fd1a29b02ac4657fd84860f3b2d06', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3330, '2023-03-24 01:33:30', 'SALE/POS2023/03/3329', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9100.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '9000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '9000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cbf293737430cd8a4659d0d7bc66b7cfb062c22ec4017a2df098c2366c347925', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3331, '2023-03-24 01:40:26', 'SALE/POS2023/03/3330', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1590.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1580.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1580.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31a6518dffbb47cfc9394f956404ed70e38317b88bf95119af5e829096297b8d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3332, '2023-03-24 01:49:58', 'SALE/POS2023/03/3331', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4850.0000', '0.0000', '100', '100.0000', '100.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 18, 1, '4750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2876c48cd06484de55899b938cc22fca102d694e3471301fa31734b2aacd6a49', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3333, '2023-03-24 01:51:48', 'SALE/POS2023/03/3332', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b30a3b3279f0ce0ece7747b4f6ab6686a4f0bfa2b99b4a3b565045ff9b2e74f5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3334, '2023-03-24 01:59:22', 'SALE/POS2023/03/3333', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '8740.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8740.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '8740.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '31dbb9179bd396bcaa591ecb9f89db7b113d416b23dc61a3d75f195dad423d0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3335, '2023-03-24 02:02:27', 'SALE/POS2023/03/3334', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7500.0000', '0.0000', '250', '250.0000', '250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '7250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '047548eb2ae4b20323f674bb827100b3c1dbb6f42e4bb4b589c7e248173b5837', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3336, '2023-03-24 02:02:54', 'SALE/POS2023/03/3335', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'eaf982558c7d89d0271f6192cba50db7987a964c3d2f468f9dc496f42e190463', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3338, '2023-03-24 09:04:15', 'SALE/POS2023/03/3337', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5600.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5600.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '5600.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '92b4f1b785087cca26322d02812b772643efc07f6ba334974af0ea46a4cc0592', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3339, '2023-03-24 09:22:46', 'SALE/POS2023/03/3338', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3450.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3450.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '3450.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '503d29fae96e7ca0c71093d6a9102f14a3d48d7a813897d8c703a10b9d5a3836', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3340, '2023-03-24 09:24:16', 'SALE/POS2023/03/3339', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2050.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '2050.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2bba00e8896076fc2359451ea6eefa5295c42edcac73c5927b111bc0490c668d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3341, '2023-03-24 09:26:37', 'SALE/POS2023/03/3340', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '685a9d138960c5ffcdcf5074a2aebc482c0e5f31d7c48cf107c4d44e31369e64', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3342, '2023-03-24 09:29:19', 'SALE/POS2023/03/3341', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1840.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1840.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 9, 1, '1840.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6fa9bb9f482cce79421246370e183ee296c22de7c7111f5cf1bcedf4c6c7cbc0', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3343, '2023-03-24 09:32:24', 'SALE/POS2023/03/3342', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '280.0000', '0.0000', '10', '10.0000', '10.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '270.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '270.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'aae4693acda403fcec67acf5678faf072b4f3e5a0d9143a539346a56156141ab', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3344, '2023-03-24 09:33:34', 'SALE/POS2023/03/3343', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'ac977edd653b0aeb28d90b78dc2502ad76bae46c98c19e0d10a6cf60885d41e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3345, '2023-03-24 09:45:45', 'SALE/POS2023/03/3344', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '5970.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '5970.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 14, 1, '5970.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '65c071d3b2b88bee10250e1d0c67001a1346e273e1c4415cf69047b7cbd1e5d4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3346, '2023-03-24 09:47:40', 'SALE/POS2023/03/3345', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7050.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 11, 1, '7000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3555d6503eaf47aa1653a0dcfcfc3a50032879406e2ecf650ec31b984d18ed53', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3347, '2023-03-24 09:48:51', 'SALE/POS2023/03/3346', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b552416a32cd4d84ba359ff12d9dbbb77aaeab80fc3a81830663033a5df84710', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3348, '2023-03-24 09:53:56', 'SALE/POS2023/03/3347', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '7150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '7150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 10, 1, '7150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '281f95a52fe0c81c3e5fe233757d21c8a43d3e37c3223dca3126c12f2f071994', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3349, '2023-03-24 09:55:36', 'SALE/POS2023/03/3348', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8d56bce70d8f2a81ab4996a3fb82f215c06e19d08e4b420d07c51dd3e3c72264', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3352, '2023-03-24 10:01:07', 'SALE/POS2023/03/3351', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '400', '400.0000', '400.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '3800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e3264cecac4070fdb3ffe6686440f32ea730ed6cffbe9d386ea4691106bb24a8', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3351, '2023-03-24 09:58:14', 'SALE/POS2023/03/3350', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b16df21cb7bee654ddd4329ea3067ca05a6db2199e6dac1156a128ce20c5925', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3353, '2023-03-24 10:04:23', 'SALE/POS2023/03/3352', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '9500.0000', '0.0000', '650', '650.0000', '650.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '8850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '8850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '0f7bfb8823898aec68bdfd30c0ad821950ac9f14d72702b660671562f0d4d633', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3356, '2023-03-25 10:01:34', 'SALE/POS2023/03/3355', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '610.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '610.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 6, 1, '610.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e0ddc4fdb3ff04a35d802ac782f73397d8e06563fc6f5487c83abe82b159e5fc', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3355, '2023-03-25 08:13:52', 'SALE/POS2023/03/3354', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '1000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48dcd3b693bb0eedcba9cffd112e3c6faa1425dae4ad736fae45d09bcac296be', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3357, '2023-03-26 02:22:12', 'SALE/POS2023/03/3356', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '46996ef3fa13fb8ba0d4f3ddda7c331346363bb2e601415ef544f6577d785df4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3358, '2023-03-26 04:18:24', 'SALE/POS2023/03/3357', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 5, 1, '1150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ab11be7def9c60e705994e5db5dd1f83a193e985280ce1cd3ecc40a7e9a48bb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3359, '2023-03-26 05:53:41', 'SALE/POS2023/03/3358', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '60.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '60.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '60.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9ac60de4155103286b6fa465feebbabfca5bf15bf8ab99cd1ef457cb6bd72a30', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3360, '2023-03-26 10:01:52', 'SALE/POS2023/03/3359', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7892d91236187271ccc9680d36bd632ef32c3132fb241d163ff38867e435ad85', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3361, '2023-03-26 10:26:59', 'SALE/POS2023/03/3360', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '82a2f4fa29da7adab68e3056ab4f744dda5fb6c901ba335d9051313b05b03fa4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3362, '2023-03-27 00:36:46', 'SALE/POS2023/03/3361', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '683a7f9d713f52e72043ee4ac27620186fe7d7eaeba37c6ee47bb5b79825375d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3363, '2023-03-27 01:04:41', 'SALE/POS2023/03/3362', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4200.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '4000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'd6d51e2a911206334fbcd19c9a76c495967b9ee13cbb86373417d458e70c3ac3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3364, '2023-03-27 02:22:14', 'SALE/POS2023/03/3363', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '4400.0000', '0.0000', '150', '150.0000', '150.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '4250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '4250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '9b5e3f517cf7541b75864dbead5591270fc42711844b26373c2fc9e41f5876da', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3365, '2023-03-27 02:42:29', 'SALE/POS2023/03/3364', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '28c6d4840d9a25e81b919b27df0b7d60d1311bd081d51a6648ac339e08fc04b7', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3366, '2023-03-27 03:40:12', 'SALE/POS2023/03/3365', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '400.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '400.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '400.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'f536136538d4167dbe0faeaadab65bb72abbc975260ee61a3f1556acf63bbedb', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3367, '2023-03-27 03:51:35', 'SALE/POS2023/03/3366', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '300.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '300.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '300.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3342d5b1baa237ec5a6c81ad23f142abc128a06b1dcf93f3c407b8ef278f5500', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3368, '2023-03-27 04:43:33', 'SALE/POS2023/03/3367', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'e328ad93f01d2ae97a63599a04beb58cfa611c5b65c6363ca1e9f400e48cc06a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3369, '2023-03-27 05:28:43', 'SALE/POS2023/03/3368', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3300.0000', '0.0000', '200', '200.0000', '200.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '60c6a4451973acfce9892407a8a44e0107e7123358801a8c86ab974a72e05aa6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3370, '2023-03-27 06:12:00', 'SALE/POS2023/03/3369', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '50', '50.0000', '50.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cecfde2e32f6af9d060614f5ff74f1257aa9a32b9378f0dd6fd6a72c0a90b0b5', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3371, '2023-03-27 06:15:10', 'SALE/POS2023/03/3370', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '566234b2aaef12214840ed14e3e40e053f5ed087162f392e2b6eef3a6709141f', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3372, '2023-03-27 06:22:45', 'SALE/POS2023/03/3371', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '8dded75928b8c5d2acc8c7b3dfdd7d1affa52c158b3c055d51e18a46ff81a1cf', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3373, '2023-03-27 07:57:24', 'SALE/POS2023/03/3372', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '750.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '750.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '750.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c914b29a9f0c8abc62fe60b9e68b56a37cd2dea2e216acfe23e5d8f0dd0aaa9d', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3374, '2023-03-28 01:27:06', 'SALE/POS2023/03/3373', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '90.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '90.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '90.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '1a07aeda98e421d8be0b116c0304b2fad7ac18b6504063ee0f60f14c96b7c11b', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3375, '2023-03-28 01:39:04', 'SALE/POS2023/03/3374', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6b8376d8dcb071acffa2608af5ac268f22dad89cc13fe28b591186e775be984a', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3376, '2023-03-28 04:14:09', 'SALE/POS2023/03/3375', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '850.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '850.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '850.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'b614a96ea5d65d0eeea1e753e67e302810c16a01f62095c8b61c624510a38d9e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3377, '2023-03-28 04:14:51', 'SALE/POS2023/03/3376', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1500.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1500.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '1500.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '91690d4ed073fed6481362ac1b9fb1531ac58739f0ed2cc3aa1cac624b1e45e6', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3378, '2023-03-28 04:30:45', 'SALE/POS2023/03/3377', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '100.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '100.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '100.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '6e9c4f93828e534a9c69d1a8e8860b1c9a308897658511bfe0e8f9a406d4d777', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3379, '2023-03-28 05:30:55', 'SALE/POS2023/03/3378', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '150.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '150.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '150.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c0d89a9bb8db229b905f8365c87df593a6f1cc671b23084d9b52d4ec205a0d6e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3380, '2023-03-28 06:34:44', 'SALE/POS2023/03/3379', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '340.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '340.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 3, 1, '340.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'a23de7c1a9641db7dfdbe0019cb7721263ac38701fe1e2ff1a75abdf57f486f3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3381, '2023-03-29 02:35:09', 'SALE/POS2023/03/3380', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '250.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '250.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '250.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '5dcd51c4c0f803e0540e271f0f47c2d3e8a55f52e74af2662e144f1f07dde72e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3382, '2023-03-29 03:46:37', 'SALE/POS2023/03/3381', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3000.0000', '0.0000', '300', '300.0000', '300.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '2700.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '2700.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7e4ce19bbdca807ae9cf9ca88e0cb0448b235e6fee11e2a15fd61f05d3a6ec0e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3383, '2023-03-29 04:24:33', 'SALE/POS2023/03/3382', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1540.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1540.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 7, 1, '1540.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '3f01eb8247fa4fccc547bdb08d43eb0222ad6e53ffd3fe5102642f8df4008168', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3384, '2023-03-29 05:40:54', 'SALE/POS2023/03/3383', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '200.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '200.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '200.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '779d03ca38e289389701fbfd4a60a678661d64393cc3683093999ea8f7d301e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3385, '2023-03-29 10:16:32', 'SALE/POS2023/03/3384', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '800.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'dea9a7dbb05b3ce9fededde29e2ffa5691f798bf4cbef63aacb3aef5a46305e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3386, '2023-03-29 10:40:41', 'SALE/POS2023/03/3385', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '2050.0000', '0.0000', '250', '250.0000', '250.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1800.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '1800.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'da3285c116b84313b40a60d1c69dbfe6233f05ae2e86d75d7bfdd6473b08db5e', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3387, '2023-03-30 02:30:22', 'SALE/POS2023/03/3386', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '120.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '120.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '120.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '48bb5aa308e22c20ea5c06fc786bd84bbac774405da2de7274ce35afe07911e2', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3388, '2023-03-30 05:00:38', 'SALE/POS2023/03/3387', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '3060.0000', '0.0000', '60', '60.0000', '60.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '3000.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 4, 1, '3000.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2e3be8b1489d5925c3055c2fbb165b88d07b2551cdf62e7ed8eb3a60a13031c4', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3389, '2023-03-30 05:16:55', 'SALE/POS2023/03/3388', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '1400.0000', '0.0000', '70', '70.0000', '70.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '1330.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 8, 1, '1330.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'c51e294ad39a8ded7888e2968a2e05b7da82156d338157ec29cb1eeffb8452e3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3390, '2023-03-30 09:39:28', 'SALE/POS2023/03/3389', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '50.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '50.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '50.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '7ccc324daa3c23151ba8c2f213e0fa80b211724be030975d7a54fa3ecbbb0fc3', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3391, '2023-03-31 02:25:11', 'SALE/POS2023/03/3390', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '350.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '350.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 1, 1, '350.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, '2d23620cc8ebf82ae8a0590a6884c8427b058e91aaf7f5da68e0ef376c60333c', NULL, NULL, NULL, NULL, NULL);
INSERT INTO `sma_sales` (`id`, `date`, `reference_no`, `customer_id`, `customer`, `biller_id`, `biller`, `warehouse_id`, `note`, `staff_note`, `total`, `product_discount`, `order_discount_id`, `total_discount`, `order_discount`, `product_tax`, `order_tax_id`, `order_tax`, `total_tax`, `shipping`, `grand_total`, `sale_status`, `payment_status`, `payment_term`, `due_date`, `created_by`, `updated_by`, `updated_at`, `total_items`, `pos`, `paid`, `return_id`, `surcharge`, `attachment`, `return_sale_ref`, `sale_id`, `return_sale_total`, `rounding`, `suspend_note`, `api`, `shop`, `address_id`, `reserve_id`, `hash`, `manual_payment`, `cgst`, `sgst`, `igst`, `payment_method`) VALUES (3392, '2023-03-31 05:14:49', 'SALE/POS2023/03/3391', 1, 'Walk-in Customer', 6, 'RecallGreen JFP', 2, '', '', '160.0000', '0.0000', '', '0.0000', '0.0000', '0.0000', 1, '0.0000', '0.0000', '0.0000', '160.0000', 'completed', 'paid', 0, NULL, 2, NULL, NULL, 2, 1, '160.0000', NULL, '0.0000', NULL, NULL, NULL, '0.0000', '0.0000', NULL, 0, 0, NULL, NULL, 'cff513150447b821f60e11d8f5e6571f0715f2c0a13791eec64b9709d8d0f768', NULL, NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_sessions
#

DROP TABLE IF EXISTS `sma_sessions`;

CREATE TABLE `sma_sessions` (
  `id` varchar(40) NOT NULL,
  `ip_address` varchar(45) NOT NULL,
  `timestamp` int(10) unsigned NOT NULL DEFAULT 0,
  `data` blob NOT NULL,
  PRIMARY KEY (`id`),
  KEY `ci_sessions_timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba44fbdb8d47aae2bf915ef84c1368257610c937', '37.111.218.23', 1658490390, '__ci_last_regenerate|i:1658490156;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658490390;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a96fe8118348569851ae0a07c3f4b1071584be', '37.111.218.23', 1658490156, '__ci_last_regenerate|i:1658490156;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658487798;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e990f1e6c04436cd30c6ef4efa0c595a2ab1986f', '37.111.218.23', 1658487792, '__ci_last_regenerate|i:1658487792;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658487369;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373f1921106978d223a4f4df0773e6ff5c925114', '37.111.218.23', 1658487242, '__ci_last_regenerate|i:1658487242;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658486549;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734b9bb20f1a8b8d5ed121c249584a7f4d5110d6', '37.111.218.23', 1658486448, '__ci_last_regenerate|i:1658486448;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658486434;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6f3edb65635f75c4f1e2b541caff047adeee1d', '116.204.230.21', 1658481517, '__ci_last_regenerate|i:1658481477;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658381357\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c22a8b520bfcea0cdf1a7efd1e2fdf68266dfa0', '37.111.218.23', 1658484896, '__ci_last_regenerate|i:1658484896;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658484892;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f1be02a2f36371ac5c8b40a64ab55677b174362', '37.111.218.23', 1658481397, '__ci_last_regenerate|i:1658481397;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658477616;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ca27a88749a6f2ad8cac425aa2be616fac285e', '116.204.230.21', 1658481477, '__ci_last_regenerate|i:1658481477;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658381357\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c159f6e680239b8f59220572a8d4dd14983d1746', '37.111.218.23', 1658476846, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54edb048883fd3ecf1d022b4bb157da68d196ae0', '37.111.218.23', 1658477339, '__ci_last_regenerate|i:1658477339;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658467809\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658477307;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('286eda1a6b494f7241afb55aa8931cf24fab0ede', '37.111.218.23', 1658476846, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3151b3907a2b27476679942419e9b2e6e996803b', '37.111.218.23', 1658476846, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65bc6031b0ebb5a17a64b941aaa069a3e9568339', '37.111.218.23', 1658476846, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28725a7f133114bd95f146fedcba8830b7f2792d', '205.210.31.6', 1658462622, '__ci_last_regenerate|i:1658462622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81e13ad4983e90255ed52c8b70bdccda564034e', '198.235.24.20', 1658466846, '__ci_last_regenerate|i:1658466845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560a2ddc5bcd01e8d8c443749fb2e91b8ac122bd', '198.235.24.20', 1658466846, '__ci_last_regenerate|i:1658466845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad897691636087481feeea9037b25868fa8d50a8', '37.111.218.23', 1658467902, '__ci_last_regenerate|i:1658467789;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658398562\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658467894;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d1e2ea71b3f5801dead354f3fa253c7ff8930c', '37.111.218.23', 1658476846, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38c1bf3783c1c9c30cc2c54491cd7d6e237639e', '211.37.147.188', 1658442648, '__ci_last_regenerate|i:1658442648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9cc09e72c94feec056f771ba04e2317a1414bd', '211.37.147.188', 1658442649, '__ci_last_regenerate|i:1658442649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252dd4ee1a55e2b55b61c7aaff19dd5c0252dd23', '211.37.147.188', 1658442650, '__ci_last_regenerate|i:1658442650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4612ba0d9511f99a652b74e893206d296ddfdd28', '205.210.31.158', 1658443784, '__ci_last_regenerate|i:1658443784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('915d5d29192faac726a17e96ac27d121954f7f18', '198.235.24.9', 1658452949, '__ci_last_regenerate|i:1658452949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c99a40552eebca4b2e69577579dbaff016fda3', '62.109.5.125', 1658438843, '__ci_last_regenerate|i:1658438843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b416946342b6d77f4906cd3c962a869c50909c', '62.109.5.125', 1658438844, '__ci_last_regenerate|i:1658438844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3785b55f45c46b531fa177f7fc96fed7d0864f57', '62.109.5.125', 1658438844, '__ci_last_regenerate|i:1658438844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b3cb4c10f48858cd117036397c0b875553ad75', '211.37.147.188', 1658442648, '__ci_last_regenerate|i:1658442648;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10418b0ba62ae4e43834ea18781ac2608d09201a', '62.109.5.125', 1658438843, '__ci_last_regenerate|i:1658438843;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bb8a399ab78eec7aee471ab1e72e65f2256b7d', '45.120.39.142', 1658414266, '__ci_last_regenerate|i:1658414217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658414266;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13b1e1209c3225324f3d9ed5087e6ad45d27b27', '45.120.39.142', 1658413628, '__ci_last_regenerate|i:1658413628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658413628;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c57e297bec2db7a5c8041de49eab1c1193bf3278', '45.120.39.142', 1658414217, '__ci_last_regenerate|i:1658414217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658414201;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebfb7ba8eced3d57dacdff407a465898e4cf529', '45.120.39.142', 1658409595, '__ci_last_regenerate|i:1658409595;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658409575;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d00b20f36c25f57940e0a688e7eb72ab7df702', '45.120.39.142', 1658408694, '__ci_last_regenerate|i:1658408694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658404904;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f5135e09b0276fc64fb1d161743a544e6a94b7', '45.120.39.142', 1658404904, '__ci_last_regenerate|i:1658404904;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658404587;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b1adbe533beccd38683585b9907799e0ea556d', '45.120.39.142', 1658403844, '__ci_last_regenerate|i:1658403844;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658403493;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c19e1587df84c419b28696175a96e95fc1db74cc', '45.120.39.142', 1658404569, '__ci_last_regenerate|i:1658404569;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658403886;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323c906deadfbfd2a781afb60c006ae36cbe78e2', '45.120.39.142', 1658297452, '__ci_last_regenerate|i:1658297451;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658220525\";last_ip|s:13:\"37.111.218.86\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658297020;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8491f9032dd38fa6382b67b4408dff6899196a3', '37.111.218.52', 1658297452, '__ci_last_regenerate|i:1658297451;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658220525\";last_ip|s:13:\"37.111.218.86\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658297020;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a111d5447a5c54bc7be6419a76d042dbe826ea27', '116.204.230.19', 1658301066, '__ci_last_regenerate|i:1658301066;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdedd3ac842d521d67eba670c67e56a95c1f41e8', '116.204.230.19', 1658296279, '__ci_last_regenerate|i:1658296279;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075a3634513ccc48d18349eb69a062fd60448ccb', '116.204.230.19', 1658295968, '__ci_last_regenerate|i:1658295968;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e8594b65c34ef1de7342d21494b287485d1bda0', '116.204.230.19', 1658294305, '__ci_last_regenerate|i:1658294305;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebfcd25f72d8525d6bfbc850b1dc3c9df581b9d', '45.120.39.142', 1658296796, '__ci_last_regenerate|i:1658296796;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658220525\";last_ip|s:13:\"37.111.218.86\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c35249c56afe69bd6fb3f9fad36aec8352f60e', '45.120.39.142', 1658292966, '__ci_last_regenerate|i:1658292966;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af136740cacd6911951e3456de1f11b26857598', '45.120.39.142', 1658292974, '__ci_last_regenerate|i:1658292974;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b057203b2caed401b0e0d6128a52404486c3d7', '45.120.39.142', 1658292974, '__ci_last_regenerate|i:1658292974;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4833bf3b1243e5d9489e1321746bbf9980e4dc', '45.120.39.142', 1658293282, '__ci_last_regenerate|i:1658293282;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658220525\";last_ip|s:13:\"37.111.218.86\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831e05396dba6b6394bb1f43bb3b9e6d94c237f8', '45.120.39.142', 1658290757, '__ci_last_regenerate|i:1658290757;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029915026bd43e1c70bd977c9bf4c85d4a99e811', '116.204.230.19', 1658293773, '__ci_last_regenerate|i:1658293773;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f840faf4e5c89afc15a88fc685d4445adaea4fc0', '116.204.230.19', 1658310999, '__ci_last_regenerate|i:1658310991;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c16c29a6af11e9cca0c824988797546491d55ce', '205.210.31.159', 1658297534, '__ci_last_regenerate|i:1658297533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa50a5e79645f4d60301cc09ddb596298347f5b', '45.120.39.142', 1658290757, '__ci_last_regenerate|i:1658290757;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4082f7365411966bbea30ceaadf89acd5e78a676', '45.120.39.142', 1658290757, '__ci_last_regenerate|i:1658290757;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d17b9d720aef044d0f8b21d0e2633bdd7c4265b', '45.120.39.142', 1658304680, '__ci_last_regenerate|i:1658304680;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658292982\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658304594;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0073abfb3e7bcff445c97c6aa531982203eeab05', '116.204.230.19', 1658302038, '__ci_last_regenerate|i:1658302038;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a6f8b4e7fc1c732324a43c27002afd983deeb6', '45.120.39.142', 1658304703, '__ci_last_regenerate|i:1658304680;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658292982\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658304703;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8725a21b4ee1b6a8946527fb946e89305c30150d', '198.235.24.24', 1658310581, '__ci_last_regenerate|i:1658310581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408fb6f6838a0e172bdd9272252f19c935777bd4', '198.235.24.24', 1658310581, '__ci_last_regenerate|i:1658310581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b1a721cb13606ab5c73f266709e56c10aaf852', '116.204.230.19', 1658310991, '__ci_last_regenerate|i:1658310991;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658233032\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658292646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd983750ea8be4e9dae4cf5a2cf02bfdb59955c', '198.235.24.136', 1658314988, '__ci_last_regenerate|i:1658314988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50718ac852815399a1a7aef92a7f18e4c94a870', '116.204.230.19', 1658320805, '__ci_last_regenerate|i:1658320805;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c75f4d0e38a419d6a2d15f4f80e805c033c298f', '116.204.230.19', 1658321131, '__ci_last_regenerate|i:1658321131;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058f682ce05f13255593c2052a5f91ef1a220e8b', '116.204.230.19', 1658321499, '__ci_last_regenerate|i:1658321499;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edbf5967d1e894b2b9d52ae24e45ef6bfe6b6ca', '116.204.230.19', 1658321848, '__ci_last_regenerate|i:1658321848;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc37cfe5b1fe18fe9180aeb7246154fb00f7903f', '116.204.230.19', 1658323403, '__ci_last_regenerate|i:1658323403;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6c49bb17fb912f464f09f8fb633efd9d2914aa', '45.120.39.142', 1658323958, '__ci_last_regenerate|i:1658323958;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658304322\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658323958;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad14d5a7586dc301db671bfb96bd55988ee3ea2d', '116.204.230.19', 1658323810, '__ci_last_regenerate|i:1658323810;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed97833c1e049ba05fd3071db4bac5cc9185da6', '116.204.230.19', 1658324969, '__ci_last_regenerate|i:1658324969;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02a1e5b4c43fa5c7b8de57b79cde8e79fe5f2c5', '45.120.39.142', 1658323987, '__ci_last_regenerate|i:1658323958;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658304322\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658323958;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc8f88d51a8542e59c204b222d79bcb3f58c024', '116.204.230.19', 1658324268, '__ci_last_regenerate|i:1658324268;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4b44501014d939d506a676acdb98fdd4f0da6e', '116.204.230.19', 1658325346, '__ci_last_regenerate|i:1658325346;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17bdf66a3c30f217d67ee801185251cc0c09edc', '116.204.230.19', 1658325814, '__ci_last_regenerate|i:1658325814;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('795372a8363dae81a8104050885b290768d17381', '116.204.230.19', 1658327090, '__ci_last_regenerate|i:1658327090;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0b6f913d34ffbe1a37a807aaa844c49cc49473', '116.204.230.19', 1658327098, '__ci_last_regenerate|i:1658327090;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658292615\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9bec26f29ff3757208e5aaaa3954b8971444aef', '198.235.24.9', 1658365522, '__ci_last_regenerate|i:1658365522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee1c3bc2591e62b0daa812f6cf9bcc425dbd6c1', '167.94.138.46', 1658376559, '__ci_last_regenerate|i:1658376559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b192ccda15c7842c78380c5d9bfa25d93c5e5c', '45.120.39.142', 1658380420, '__ci_last_regenerate|i:1658380420;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658322317\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9003588c43cd1f6e2b1af03d642107c8e02b899', '45.120.39.142', 1658381591, '__ci_last_regenerate|i:1658381591;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658322317\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658380602;register_id|s:3:\"130\";cash_in_hand|s:9:\"1960.0000\";register_open_time|s:19:\"2022-07-19 20:52:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0226e7a3225c41a63ab0cbcfceda3b836dc3330e', '116.204.230.19', 1658381855, '__ci_last_regenerate|i:1658381855;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658318523\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"iXzcnu8A6VKmydNO5rpT\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5d68d12c6e25771fedcd3e0bd9771467d332664', '45.120.39.142', 1658382996, '__ci_last_regenerate|i:1658382996;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658322317\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658382990;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff833c645066c52afc12e33b489d779e00fb9293', '116.204.230.19', 1658382288, '__ci_last_regenerate|i:1658382288;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658318523\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"iXzcnu8A6VKmydNO5rpT\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215452f98b6102091f69c280745798ac4fd5f6e0', '116.204.230.19', 1658383954, '__ci_last_regenerate|i:1658383954;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658318523\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"iXzcnu8A6VKmydNO5rpT\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('225b7fe22c81e3d0f3c40802ca212f86b78f988f', '45.120.39.142', 1658387411, '__ci_last_regenerate|i:1658387343;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658322317\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658387407;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191f9d7b426884a55519579ade310aed7a676a1f', '116.204.230.19', 1658386279, '__ci_last_regenerate|i:1658386241;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658318523\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"iXzcnu8A6VKmydNO5rpT\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8e28bad6bd5d6fbc8ab5c001d3e35887e2a725d', '116.204.230.19', 1658386243, '__ci_last_regenerate|i:1658386241;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658318523\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"iXzcnu8A6VKmydNO5rpT\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1090004f52e9d2ea9dc8e69b6a7b4454b4a6ec2e', '45.120.39.142', 1658400920, '__ci_last_regenerate|i:1658400920;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658398592;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('322f082f4c30daa2aa9faf71cdb5d398bc0101ab', '37.111.219.208', 1658402867, '__ci_last_regenerate|i:1658402867;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658401071;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b51b758ba04c4ae45c228a186608490ea301084', '37.111.219.208', 1658403454, '__ci_last_regenerate|i:1658403454;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658380163\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658403064;register_id|s:3:\"131\";cash_in_hand|s:9:\"1970.0000\";register_open_time|s:19:\"2022-07-21 11:35:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b53097ef05269c44b16df5c5ba95ec16aec7b7', '116.204.230.21', 1658498326, '__ci_last_regenerate|i:1658498326;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658477044\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658495054;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213b839a33f3c2d298aa980677939e8e28a5861f', '37.111.218.23', 1658500718, '__ci_last_regenerate|i:1658500718;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea8dc7a20a6305b66704f9cc51ea673a566bda8c', '116.204.230.21', 1658498326, '__ci_last_regenerate|i:1658498326;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658477044\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658495054;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7cbb97c3328feae3f496c3bcb02c59c46fed15', '45.120.39.142', 1658501048, '__ci_last_regenerate|i:1658501048;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658501026;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54a29d70061edf6862a69bda8844e7c083c7fb4', '37.111.218.212', 1658501974, '__ci_last_regenerate|i:1658501974;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658501969;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03c97427d96b6acff987db3a14bed5198e3eb76', '37.111.218.212', 1658501618, '__ci_last_regenerate|i:1658501618;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658501618;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd9e22161ffea11654642254ef6cb5fe8bdfcaa', '37.111.218.212', 1658502786, '__ci_last_regenerate|i:1658502786;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658502779;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bde733ae5875276003b77824d6c98a02b2e95d6', '37.111.218.212', 1658503146, '__ci_last_regenerate|i:1658503146;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658503105;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d192dae0f137a530022b4eb5a4c39882bcc113', '37.111.218.212', 1658503609, '__ci_last_regenerate|i:1658503609;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658503266;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a5eb085e21be56a9ed6079d6565ca37001f1a0', '37.111.218.212', 1658503756, '__ci_last_regenerate|i:1658503609;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658476951\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658503756;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce749ff713a510ae3b542e4cdba19ea5ef684e10', '1.116.44.97', 1658529308, '__ci_last_regenerate|i:1658529308;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d6124d5068d6d1db8ca986a7ae47fb9ea23850', '1.116.44.97', 1658529309, '__ci_last_regenerate|i:1658529309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2d34ea0c798cb2680d4e587e1559876a329f70', '1.116.44.97', 1658529309, '__ci_last_regenerate|i:1658529309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fbe23986a0b2b884ddc9032857b642c31326575', '1.116.44.97', 1658529310, '__ci_last_regenerate|i:1658529310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfac4b39a0c1a24e80db15ec6eb3ce3b56c33f9f', '119.164.102.112', 1658530594, '__ci_last_regenerate|i:1658530592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f071019d1bbd3fbd61dbb734d62c6415f55b8b', '37.111.217.32', 1658551895, '__ci_last_regenerate|i:1658551895;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658551877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be6d9d414af7390ed6a9ea32791ad5b240739f9', '37.111.217.32', 1658553467, '__ci_last_regenerate|i:1658553467;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658551897;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cc2d9d1f4da1ce0005c88f790f352f68dc2302', '37.111.217.32', 1658556073, '__ci_last_regenerate|i:1658556073;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658553473;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b4071ad47fc44b4051282d4e4c91bedab3a74b', '37.111.217.32', 1658557229, '__ci_last_regenerate|i:1658557229;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658556948;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f54a2dd8bfebf9d109da2539751e567d55de34f', '37.111.217.32', 1658558307, '__ci_last_regenerate|i:1658558307;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658557229;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f823182684606cc62d5c567a0b34e85b267d330a', '37.111.217.32', 1658558779, '__ci_last_regenerate|i:1658558779;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658558554;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc1bca94d52a1719c3bae5753c2f9c8b1dd30c0', '37.111.217.32', 1658559359, '__ci_last_regenerate|i:1658559359;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658558787;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b0db09a8148e9e2791323a6558d78e8cec3279', '37.111.217.32', 1658559909, '__ci_last_regenerate|i:1658559909;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658559901;register_id|s:3:\"132\";cash_in_hand|s:9:\"1360.0000\";register_open_time|s:19:\"2022-07-21 20:37:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('287571519e740452c948cbb8c71016108ba08274', '37.111.217.32', 1658560213, '__ci_last_regenerate|i:1658560213;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658560118;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cca2a88fe23ee2c0144e04678b6ae13b9ed3bbd', '37.111.217.32', 1658564309, '__ci_last_regenerate|i:1658564309;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658561621;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79b876917d23e38366d1a75f49cdc3daef9c940', '116.204.230.29', 1658560816, '__ci_last_regenerate|i:1658560816;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658494839\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658560257;user_csrf|s:20:\"ie9InR8ar7SUFA3cBWuJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e80f731c46234a4c2790b8b35d4893b0602459b3', '116.204.230.29', 1658560844, '__ci_last_regenerate|i:1658560816;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658494839\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658560257;user_csrf|s:20:\"ie9InR8ar7SUFA3cBWuJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5975d5a7a37a87cc5e469d9d75d240725892a86b', '37.111.217.32', 1658565056, '__ci_last_regenerate|i:1658565056;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658565050;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3fa9079c630ad1ce1685f37d4f72d92af8a1f23', '37.111.217.32', 1658565807, '__ci_last_regenerate|i:1658565807;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658565056;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59d24aa6ba5b6d46580c886e978c0245a59e5a2', '37.111.217.32', 1658566811, '__ci_last_regenerate|i:1658566811;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658566576;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df618a9f59d6d4a21a5dbada2e126b99ecb56ab', '37.111.217.32', 1658568540, '__ci_last_regenerate|i:1658568540;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658566811;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c4434c83987760cb77814e8326ea1941bd905f', '37.111.217.32', 1658570307, '__ci_last_regenerate|i:1658570307;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658570081;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a84cb5ce6016ab679c26dce14af2322dc5bb9de', '37.111.217.32', 1658570648, '__ci_last_regenerate|i:1658570648;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658570529;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39f2a08b29f9a791acb101158d2f14452bdc3c6', '37.111.217.32', 1658573185, '__ci_last_regenerate|i:1658573185;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658570916;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8037bad4a47f41cb5d3e12a8ef573d3c2d28d2c3', '37.111.217.32', 1658573633, '__ci_last_regenerate|i:1658573633;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658573581;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96dcccba9808ea815c00bb9da1a689a0e84fac03', '37.111.217.32', 1658576208, '__ci_last_regenerate|i:1658576208;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658573633;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46bb7a6074ea9edb1a6cd079c58563374ee9ae0', '37.111.217.32', 1658576707, '__ci_last_regenerate|i:1658576707;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658576702;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0fadc66af4a6d5798d0031726d967e873951b69', '37.111.217.32', 1658581679, '__ci_last_regenerate|i:1658581679;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658581667;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4fc57dfd152c3ce6bcd499b87c16fccc7ec6a4', '116.204.230.21', 1658579367, '__ci_last_regenerate|i:1658579367;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658560250\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72675f8b6ef378ba88774021b55b36c425ff6fc8', '116.204.230.21', 1658579767, '__ci_last_regenerate|i:1658579767;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658560250\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658579370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d8437e7477b8ac2cc844b82433cb035de24ee3', '116.204.230.21', 1658579770, '__ci_last_regenerate|i:1658579767;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658560250\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658579770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6599ae85c361416faa446bc69ae2151625fedd7', '37.111.217.32', 1658581995, '__ci_last_regenerate|i:1658581995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658581861;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045b5a7f4067f1dec8c684d13e9c504ca07f315d', '37.111.217.32', 1658582479, '__ci_last_regenerate|i:1658582479;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658582410;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58a01ed2d73dcf633ac5daa3142153c8559e9c6', '37.111.217.32', 1658583454, '__ci_last_regenerate|i:1658583454;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658583297;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46af737960ba91db1fa4b8ffea35a06a48bc99a', '37.111.217.32', 1658585045, '__ci_last_regenerate|i:1658585045;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658583917;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1003b648b52adec608fae34f21b0f255aa8ffda3', '35.206.253.134', 1658584122, '__ci_last_regenerate|i:1658584122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d5dc368e047ec5e65bfc8b80ee6c0ee157666b', '35.206.253.134', 1658584123, '__ci_last_regenerate|i:1658584123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac30243d1a6ee39c15be070f5459016a7b3937d', '35.206.253.134', 1658584123, '__ci_last_regenerate|i:1658584123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b902999fcf7b9af0f84536371d6df7cf8678321b', '37.111.217.32', 1658587572, '__ci_last_regenerate|i:1658587572;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658587524;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b787056c8fc00f880f7e02c17bea161945a4d412', '37.111.217.32', 1658588004, '__ci_last_regenerate|i:1658588004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658587630;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb052f3182283fb1d4486a94eeed47eed210a59', '37.111.217.32', 1658588501, '__ci_last_regenerate|i:1658588501;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658588187;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb7f6ec4a9dff1c301f9abb07414bb236c0ac1c2', '37.111.217.32', 1658590427, '__ci_last_regenerate|i:1658590427;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658590357;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5e35ab0d8d7e362dee70d725fb99d523f77d3c', '37.111.217.32', 1658590428, '__ci_last_regenerate|i:1658590427;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658498338\";last_ip|s:13:\"37.111.218.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658590428;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7178a1c58e9e5184f9e0ca9a41b21f5cbffe24', '116.204.230.22', 1658629409, '__ci_last_regenerate|i:1658629409;requested_page|s:15:\"admin/purchases\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1657990661\";last_ip|s:14:\"116.204.230.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc03e71d7c0611bfdf3da66a57ade7a4eb24908f', '65.154.226.170', 1658627805, '__ci_last_regenerate|i:1658627805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8442345ea8d698766b350b69ee7b69ca551cadc4', '65.154.226.170', 1658627806, '__ci_last_regenerate|i:1658627805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c35f4d13641dc22c908fa9d7d2b15578c421073', '116.204.230.22', 1658629409, '__ci_last_regenerate|i:1658629409;requested_page|s:15:\"admin/purchases\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1657990661\";last_ip|s:14:\"116.204.230.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0767bd1a92cc5dac684280d0a663acc2834fac37', '37.111.218.22', 1658639104, '__ci_last_regenerate|i:1658639104;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff0d90ef4caaa29eef6b6d29cf19b96f73ab2f3', '37.111.218.22', 1658640329, '__ci_last_regenerate|i:1658640329;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658639165;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c7174d95b306e97b9b5b235674310432bc90ea', '37.111.218.22', 1658642010, '__ci_last_regenerate|i:1658642010;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658641981;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51dd980a46f61f4768629cd21ad2292c5270775d', '37.111.218.22', 1658644186, '__ci_last_regenerate|i:1658644186;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658643023;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0a0df622dd0dba972b059554a64531358dc85d', '37.111.218.22', 1658644490, '__ci_last_regenerate|i:1658644490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658644477;register_id|s:3:\"133\";cash_in_hand|s:9:\"1990.0000\";register_open_time|s:19:\"2022-07-23 13:05:22\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c50340c5913f341ec57186a2a1f57dba51ff25e', '37.111.218.22', 1658645096, '__ci_last_regenerate|i:1658645096;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658644490;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48db25e7b94e1188c4e47356de877cd7e0cf7396', '37.111.218.22', 1658646345, '__ci_last_regenerate|i:1658646345;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658645118;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45762143b3850d0567af007b774597d362427420', '116.204.230.21', 1658646119, '__ci_last_regenerate|i:1658646119;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658578951\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658646005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162315e9afd72f05219cfc9263e268b2ec9202d3', '116.204.230.21', 1658646654, '__ci_last_regenerate|i:1658646654;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658578951\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658646167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f364bab0625baf9381d67cf740aa5f859ac643', '37.111.218.22', 1658647459, '__ci_last_regenerate|i:1658647459;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658646345;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cba9a9c86789c879de284626754b88378a124ea', '116.204.230.21', 1658649958, '__ci_last_regenerate|i:1658649958;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658578951\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658646821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533b5a6aa0cb3adb27709af2d2c6e779ecab1af8', '37.111.218.22', 1658649039, '__ci_last_regenerate|i:1658649039;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658648936;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c855812d6f35f29325ff6136f42c0e9e7e79bc', '37.111.218.22', 1658649988, '__ci_last_regenerate|i:1658649988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658649050;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6702c97d9ae8479f1d8de35217dc0fe4e9c4c786', '116.204.230.21', 1658650297, '__ci_last_regenerate|i:1658650297;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658578951\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658646821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('206f53bdd64a3dce507f0f408389c404aa9f9bca', '37.111.218.22', 1658650513, '__ci_last_regenerate|i:1658650513;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658649988;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38e853b49615d2d4635a3d6895242dd349a4739', '116.204.230.21', 1658651024, '__ci_last_regenerate|i:1658651024;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658578951\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658646821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7c9e0883f6ca95fdfdd6884a4c7fd476dd2052', '37.111.218.22', 1658650869, '__ci_last_regenerate|i:1658650869;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658650535;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0f63bf2bb54766a22ccbf440579fffe83f11632', '37.111.218.22', 1658655405, '__ci_last_regenerate|i:1658655405;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658650869;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a028629b094d6aad9c778859f4dd41c465c50a5', '116.204.230.21', 1658651073, '__ci_last_regenerate|i:1658651024;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658578951\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658651029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b97763e19b9f9af8f2a8a2e43d2a912e25e2ca', '37.111.218.22', 1658656943, '__ci_last_regenerate|i:1658656943;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658650869;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285650616b5c8a110a5cf6aeb1d11b0eeffc7286', '37.111.218.22', 1658657438, '__ci_last_regenerate|i:1658657438;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658657017;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2c5e49615df665cf58c15957403d54093d5264', '37.111.218.22', 1658664424, '__ci_last_regenerate|i:1658664424;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658657017;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80cfdf18cd56cadf03d347aeb3b301eff0c7535', '37.111.218.22', 1658668097, '__ci_last_regenerate|i:1658668097;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658668093;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f9081d8fccd2faf9704f80a31382ae94b59d26', '116.204.230.19', 1658672174, '__ci_last_regenerate|i:1658672174;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658645672\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b78a1b8a7a399ee6a77c20e8dab9fb99356da24', '37.111.218.22', 1658668445, '__ci_last_regenerate|i:1658668445;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658668114;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86be1767847ce9a580bc46401a93d8160137d50f', '37.111.218.22', 1658669304, '__ci_last_regenerate|i:1658669304;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658669291;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c38d30b96fd3693adef16bd31ba684cb40253bd', '37.111.218.22', 1658670104, '__ci_last_regenerate|i:1658670104;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658669305;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7699fbe7f840f0e53db1adad88592d6b14f81e0b', '37.111.218.22', 1658671471, '__ci_last_regenerate|i:1658671471;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658671466;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fabf99b9007e71f7a4110bc0766bc52ef0a0c70e', '37.111.218.22', 1658672276, '__ci_last_regenerate|i:1658672276;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658671471;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95211dbb68570ff614eadf7e2ac5f43ce47a0011', '116.204.230.19', 1658672488, '__ci_last_regenerate|i:1658672488;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658645672\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6238a3c9437f8ab3175f495595f2c9dc1e3b4ad', '37.111.218.22', 1658673033, '__ci_last_regenerate|i:1658673033;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658672739;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a8772bb16542c30b52ff51f65aae95b567724d', '116.204.230.19', 1658673191, '__ci_last_regenerate|i:1658673191;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658645672\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658672488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ce862b5aaadaaa18f164c1a3513d797e039d5e', '116.204.230.19', 1658672815, '__ci_last_regenerate|i:1658672815;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658645672\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658672488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77bea0a2d97358d6e127d756328d5cc48fafe51', '37.111.218.22', 1658674103, '__ci_last_regenerate|i:1658674103;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658674034;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ee63e88900a3f7c2f725f277ab8d84db3a3d2f', '116.204.230.19', 1658673243, '__ci_last_regenerate|i:1658673191;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658645672\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658673201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b0cfc5d000ab5e4472cdec93094365a81e6b4ca', '37.111.218.22', 1658674140, '__ci_last_regenerate|i:1658674103;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658549935\";last_ip|s:13:\"37.111.217.32\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658674137;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dce6356b580d7a067bdcb5b4d8f5e92c99d6f0c', '37.111.219.44', 1658727069, '__ci_last_regenerate|i:1658727069;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658723576;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5618cc5c370ecbbb52dc4a550480afc4253986', '37.111.219.44', 1658727489, '__ci_last_regenerate|i:1658727489;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658727201;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ab17d87c9542b3cfc55ee694d453946491e6deb', '37.111.219.44', 1658729454, '__ci_last_regenerate|i:1658729454;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658729426;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ae8b7a1d65f93f52c663facaf3683c2f23d708', '116.204.230.26', 1658729671, '__ci_last_regenerate|i:1658729397;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658665580\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658729435;user_csrf|s:20:\"yU8uCfo5stjP7pXk2bJK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd93073084af7fa818a3de15d20c8637e6491a4', '37.111.219.44', 1658730241, '__ci_last_regenerate|i:1658730241;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658729632;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36d5000ce9646b1efe5e75fcbc826735c0f20c4', '37.111.219.44', 1658730851, '__ci_last_regenerate|i:1658730851;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658730621;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37425e4f4940ce9f3713d5f1fdff9d9c5af0a07', '37.111.219.44', 1658731163, '__ci_last_regenerate|i:1658731163;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658731143;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8328c510c37ff4f400172d46699482ec286f776e', '37.111.219.44', 1658731989, '__ci_last_regenerate|i:1658731989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658731980;register_id|s:3:\"134\";cash_in_hand|s:9:\"3200.0000\";register_open_time|s:19:\"2022-07-24 12:34:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0130ab0bcd93ecdde85c942dcbba198060fbd8', '37.111.219.44', 1658732824, '__ci_last_regenerate|i:1658732824;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658732162;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92dffafb6f0dbdaec57baad9da2a80dece7e0fb0', '37.111.219.44', 1658733333, '__ci_last_regenerate|i:1658733333;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658732824;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0ab58c88248ef59d9041511ec845d90d94fcb3', '37.111.219.44', 1658734282, '__ci_last_regenerate|i:1658734282;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658734201;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f1adcb96cfc5ae5ff55c516d92f4f1a375e88c8', '37.111.219.44', 1658739265, '__ci_last_regenerate|i:1658739265;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658735791;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca765ccbdcaed19b17e1137a928a4da2cc2c9385', '45.120.39.142', 1658741327, '__ci_last_regenerate|i:1658741327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658741319;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07bc1edfdb20838f88eec0a519921be568ff3b26', '45.120.39.142', 1658746135, '__ci_last_regenerate|i:1658746135;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658741327;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b969b36edcd8519991d625be25da3b266143e6', '37.111.219.44', 1658746810, '__ci_last_regenerate|i:1658746810;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658746580;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d882b10bf568355d7646adb2be1d7129c788d4f', '37.111.219.44', 1658747172, '__ci_last_regenerate|i:1658747172;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658747070;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000cc1f9bf580bf52001e468e794cb35ab92a630', '37.111.219.44', 1658752561, '__ci_last_regenerate|i:1658752561;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658747421;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d007e88e2bfac70d61c4d385366bb78a9c434fa0', '45.120.39.142', 1658753051, '__ci_last_regenerate|i:1658753051;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658752568;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446acd3643d281a9f2b28eb88620302f4f495115', '45.120.39.142', 1658753988, '__ci_last_regenerate|i:1658753988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658752568;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b6ab7c5a6e093df8d9d21eedbaa96e86f0b806', '45.120.39.142', 1658754224, '__ci_last_regenerate|i:1658753988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658637863\";last_ip|s:13:\"37.111.218.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658754224;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eed7e45dbfdc8e88d9f8fc8c88b598aa5cdaf80', '116.204.230.18', 1658757756, '__ci_last_regenerate|i:1658757738;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1658623887\";last_ip|s:14:\"116.204.230.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e347667a4d796b1e5c88e5513768e18453e520ab', '205.185.122.184', 1658764688, '__ci_last_regenerate|i:1658764688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d2cb16e4fe6c83a0c8a816ba646887b1f14be7', '209.141.36.231', 1658764690, '__ci_last_regenerate|i:1658764690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016618a67d8b740a95bbe1925a4827751a2a71fd', '209.141.36.231', 1658764692, '__ci_last_regenerate|i:1658764692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea6ed1245a5a126cea2ba0581624f16840b0e99', '209.141.36.112', 1658765658, '__ci_last_regenerate|i:1658765658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a916fc03d684bde3c0ea06a4b4fddf6bd37b6521', '209.141.36.112', 1658765659, '__ci_last_regenerate|i:1658765659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e404778f95a5aff80e2a52aa81c7326336368eee', '209.141.36.112', 1658765660, '__ci_last_regenerate|i:1658765660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c3b0155079c3a45593d2ada1156388c04af8ce', '167.248.133.45', 1658784050, '__ci_last_regenerate|i:1658784050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f58ae2ab01473eec65a2532c817b4d425818d4', '167.248.133.45', 1658784050, '__ci_last_regenerate|i:1658784050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0f881971f2d4664fa9e6b933b928ea0abc9a8f', '167.248.133.45', 1658784050, '__ci_last_regenerate|i:1658784050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0fd74bbb886696fc63c1b687ff10d278099425', '167.248.133.45', 1658784050, '__ci_last_regenerate|i:1658784050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3492fccf7ebe1e22ce644391fe0363b043413058', '167.248.133.45', 1658784051, '__ci_last_regenerate|i:1658784051;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8eb6b5a138639cc8abe4fd098cf0f589ca5f2d1', '167.248.133.45', 1658784051, '__ci_last_regenerate|i:1658784051;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('633239152813d1a78c2b335b377018fc5dd476ec', '45.120.39.142', 1658812151, '__ci_last_regenerate|i:1658812151;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658812141;register_id|s:3:\"135\";cash_in_hand|s:9:\"2790.0000\";register_open_time|s:19:\"2022-07-25 12:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd6987eeb140cf59d60cde5482a65608138500d', '45.120.39.142', 1658812636, '__ci_last_regenerate|i:1658812636;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658812179;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9778bee132182c38a29188f2f2d035b5e1775026', '45.120.39.142', 1658818043, '__ci_last_regenerate|i:1658818043;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658812179;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4cc1826b1b5eda5e4abe317e10ca5075c6900c2', '116.204.230.18', 1658812974, '__ci_last_regenerate|i:1658812974;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da121481d640352f69ffe5bc00c486aa919da67', '116.204.230.18', 1658816295, '__ci_last_regenerate|i:1658816295;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15440f88067e6e3ecc0f100784ad31879d24395e', '116.204.230.18', 1658816637, '__ci_last_regenerate|i:1658816637;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20bb01d5159ce23f4a77a2ae0d378e40d1cecad4', '116.204.230.18', 1658816987, '__ci_last_regenerate|i:1658816987;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77d33a0b0bf1a549edd4bf9b2ca8b9f5efecb33', '116.204.230.18', 1658817519, '__ci_last_regenerate|i:1658817519;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"inKkNPFHB2WZw7DzXyt9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5312f2b3b3ba761e1e95fd417da086e89b6c5d6a', '116.204.230.18', 1658817831, '__ci_last_regenerate|i:1658817831;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"inKkNPFHB2WZw7DzXyt9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458a26afc405c7fe1613d99c1f60214cee92f835', '116.204.230.18', 1658820103, '__ci_last_regenerate|i:1658820103;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"inKkNPFHB2WZw7DzXyt9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1649ee6a6ee9995614eccd8977cc6725acf2b5', '45.120.39.142', 1658820195, '__ci_last_regenerate|i:1658820195;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658820127;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11cc03f5d3509c2d7ba1a1a5e0ffd4cc7a4fbfe5', '116.204.230.18', 1658825159, '__ci_last_regenerate|i:1658825159;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"inKkNPFHB2WZw7DzXyt9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0afee87bd95a08b8088c53c8e2e1697c823ab306', '45.120.39.142', 1658825287, '__ci_last_regenerate|i:1658825287;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658825279;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e878cebfbb58188c41fec6e6ac6ee80c37f53865', '116.204.230.18', 1658825868, '__ci_last_regenerate|i:1658825868;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"inKkNPFHB2WZw7DzXyt9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e43c848b87b009d6c41921b2e90db79da673cd', '45.120.39.142', 1658826515, '__ci_last_regenerate|i:1658826515;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658825279;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d16929dbedee8a1457fbc27efdc241b8d21751', '116.204.230.18', 1658825924, '__ci_last_regenerate|i:1658825868;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658729402\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"inKkNPFHB2WZw7DzXyt9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99dee25cdc041f86acf4b68239e5f4a032a2b24', '45.120.39.142', 1658829642, '__ci_last_regenerate|i:1658829642;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658826675;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef180bdc85fb9b4ee1307391ef6e33033cb88c7', '45.120.39.142', 1658831327, '__ci_last_regenerate|i:1658831327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658829653;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fbf1998bf5df1947377448fc968cc02e1685c31', '45.120.39.142', 1658831750, '__ci_last_regenerate|i:1658831750;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658831341;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b192918cbb6e50e7abc70a34a98e8b77807ecc40', '45.120.39.142', 1658832349, '__ci_last_regenerate|i:1658832349;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658831868;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3012aa00229254ef2ae26da88f079cfc6c16b38', '45.120.39.142', 1658835729, '__ci_last_regenerate|i:1658835729;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658835674;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6969475e89b976acade51a7d2a7226861bd58d', '45.120.39.142', 1658837750, '__ci_last_regenerate|i:1658837750;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658835729;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16255ee5616851be7e11fa965c24d2007fdbc9fc', '45.120.39.142', 1658841059, '__ci_last_regenerate|i:1658841059;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658841028;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f05db054d8361263654f42edbac1b40a69634e', '37.111.194.239', 1658839462, '__ci_last_regenerate|i:1658839437;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1658757745\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e013f409c839c3830e49cef46f95d860d47e0a', '124.64.23.136', 1658839483, '__ci_last_regenerate|i:1658839480;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b0b363f320b18c7669c669807245b50d1abbbd', '124.64.23.136', 1658839489, '__ci_last_regenerate|i:1658839480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f645d70d0e501004729118381ed49eb499cbb1fe', '45.120.39.142', 1658840731, '__ci_last_regenerate|i:1658840731;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658837756;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d5501a1a44ee3dec1065b82f972aec9513711df', '45.120.39.142', 1658841587, '__ci_last_regenerate|i:1658841587;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658841064;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405fd0dac5d39a2c591f6aa081d12ed05aa0d69d', '45.120.39.142', 1658843733, '__ci_last_regenerate|i:1658843733;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658841605;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bcd65b12ea491b6d8de9a54f58318574f403669', '45.120.39.142', 1658844284, '__ci_last_regenerate|i:1658844284;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658844272;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea04d9173334ab92ac59f8ea389b27923bbf60bf', '45.120.39.142', 1658844654, '__ci_last_regenerate|i:1658844654;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658844284;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a736e9a9fcb9c8614c5adee9deb2fbaa2bb505d', '45.120.39.142', 1658847043, '__ci_last_regenerate|i:1658847043;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658844939;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c7b074c4afe2a86835187f13010d3160366df6', '45.120.39.142', 1658847413, '__ci_last_regenerate|i:1658847355;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658847413;register_id|s:3:\"137\";cash_in_hand|s:9:\"1200.0000\";register_open_time|s:19:\"2022-07-26 20:56:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de94be59a1f8db97b832193607f9db1fd760e00d', '116.204.230.22', 1658848754, '__ci_last_regenerate|i:1658848753;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1383815280c865659e1fa3ff1ce6e0af232e7417', '45.120.39.142', 1658847355, '__ci_last_regenerate|i:1658847355;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658723447\";last_ip|s:13:\"37.111.219.44\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1658847355;register_id|s:3:\"136\";cash_in_hand|s:9:\"2180.0000\";register_open_time|s:19:\"2022-07-26 11:09:34\";error|s:82:\"Register is not open, Please enter the cash in hand amount and click open register\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c508d18884b592774e4c13849b6ef7fe19ea7100', '65.154.226.171', 1658869553, '__ci_last_regenerate|i:1658869553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd593ee8a9a468cf7a4a48add0f7c00fabc09b0', '65.154.226.171', 1658869555, '__ci_last_regenerate|i:1658869555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686d352228877ec7ce924553ac569ee0045c6e60', '65.154.226.171', 1658869555, '__ci_last_regenerate|i:1658869555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e098402addc25c7e4844602ccfb944a444717758', '65.154.226.171', 1658869556, '__ci_last_regenerate|i:1658869556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1520d745ef29d0dd2024c2329379ab801a6c8b2a', '148.251.15.53', 1658881013, '__ci_last_regenerate|i:1658881013;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038cc9854d174d921e7f18e5e5f233eb57807f44', '148.251.15.53', 1658881014, '__ci_last_regenerate|i:1658881014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f147db1bd8fa6903915802b71d4beed22ff4ab9', '148.251.15.53', 1658881016, '__ci_last_regenerate|i:1658881016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74795e032dae1f8353c03a4eca3dc9d8b1ce483', '148.251.15.53', 1658881016, '__ci_last_regenerate|i:1658881016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a442943f8e1a8085856a8ec185dfd415b4f9712', '185.175.45.32', 1659221314, '__ci_last_regenerate|i:1659221314;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd43d4f39cadcea08b70810e8fd6c1ef8982ed51', '185.175.45.32', 1659221314, '__ci_last_regenerate|i:1659221314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbdf3cf60aff77612a40d6fdcd7f9158cd0ea7a', '185.175.45.32', 1659221315, '__ci_last_regenerate|i:1659221315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68840c54c75ef41c23aa404da1281b055b03540', '185.175.45.32', 1659221315, '__ci_last_regenerate|i:1659221315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f3cd4c8bac4bf9b9b3490ed90d6652f47f7d6e', '116.204.230.21', 1659237343, '__ci_last_regenerate|i:1659237343;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1658839452\";last_ip|s:14:\"37.111.194.239\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0580261e241cb4f27500199c807caaadcd219c', '116.204.230.21', 1659237402, '__ci_last_regenerate|i:1659237343;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1658839452\";last_ip|s:14:\"37.111.194.239\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659237343;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e669323e38e9548feba8446b3c8e1e71f12911a', '116.204.230.21', 1659237425, '__ci_last_regenerate|i:1659237416;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659231257\";last_ip|s:14:\"116.204.230.21\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fb9036a99030a864abf6ca819554ba4db837d3', '116.204.230.21', 1659237506, '__ci_last_regenerate|i:1659237506;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c7b36434e45ed2eba93b47adfdd0eaf2c3097b', '116.204.230.21', 1659237506, '__ci_last_regenerate|i:1659237506;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d226dd9c38c46b2e6c2f17e38cba8630cfd22135', '116.204.230.21', 1659237507, '__ci_last_regenerate|i:1659237506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c003a6ffbefbf738eec1100bca551a838564090f', '37.111.217.177', 1659245254, '__ci_last_regenerate|i:1659245254;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659244974;register_id|s:3:\"137\";cash_in_hand|s:9:\"1200.0000\";register_open_time|s:19:\"2022-07-26 20:56:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd300bb3b88a3555ab309e7a3b1f172f3a31a3ce', '167.94.138.46', 1659244803, '__ci_last_regenerate|i:1659244803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97b4cfc54effcac506730227840801f1795a21d', '167.94.138.46', 1659244803, '__ci_last_regenerate|i:1659244803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1928d3c53b86195eef762fddf58b0b1deedfe81b', '167.94.138.46', 1659244803, '__ci_last_regenerate|i:1659244803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa9e469a581cccf3e58f87efe9cdb7ad66faaa4', '167.94.138.46', 1659244803, '__ci_last_regenerate|i:1659244803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('365b8bdd0bc35807d06a40cc36e1c020b8392056', '167.94.138.46', 1659244803, '__ci_last_regenerate|i:1659244803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4dd47a62864da96e41900da2b960dace2dab50', '167.94.138.46', 1659244804, '__ci_last_regenerate|i:1659244804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db6b598195de26fe8e787c0ae7c37c7e5e7a5a3', '37.111.217.177', 1659245614, '__ci_last_regenerate|i:1659245614;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659245254;register_id|s:3:\"137\";cash_in_hand|s:9:\"1200.0000\";register_open_time|s:19:\"2022-07-26 20:56:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9bfbed027ce52604f066e820d5e1d399abbe5d', '37.111.217.177', 1659247040, '__ci_last_regenerate|i:1659247040;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659246726;register_id|s:3:\"138\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-07-31 11:37:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72218ec9fec5118894866196b1ee100358546b3c', '116.204.230.27', 1659247983, '__ci_last_regenerate|i:1659247983;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658812671\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf551a6f73b381b4ab2a236da411465d0e946db', '37.111.217.177', 1659247403, '__ci_last_regenerate|i:1659247403;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659247388;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5700c689eaafb079627205fdded781c80b750c', '37.111.217.177', 1659248551, '__ci_last_regenerate|i:1659248551;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659247523;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29eb94ba2d4c1063448003533a8e48ddfdefdd99', '116.204.230.27', 1659248366, '__ci_last_regenerate|i:1659248366;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658812671\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ynDw8H26KhWbePALzgON\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98d92649f8c85a68c6b3dab75eff9ac53e1e6db', '116.204.230.27', 1659248707, '__ci_last_regenerate|i:1659248707;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658812671\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"ynDw8H26KhWbePALzgON\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01031b66940d42428261711b8432d61799ab8563', '37.111.217.177', 1659248878, '__ci_last_regenerate|i:1659248878;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659248551;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3efab7ac17f4ad8a717c75bb96263450169e7f', '116.204.230.27', 1659248972, '__ci_last_regenerate|i:1659248707;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1658812671\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"Hlu4T0O6Qi1jhdL7JD2V\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d6f8d83c20c25b0a55a0b07d44945edb3be565', '37.111.217.177', 1659249217, '__ci_last_regenerate|i:1659249217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659249200;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa586504eb001ad079b037cc8fc4a68da9394d26', '37.111.217.177', 1659249651, '__ci_last_regenerate|i:1659249651;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659249602;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f637bf9e871968ca861c22a8c772ce8561f6b03', '37.111.217.177', 1659250093, '__ci_last_regenerate|i:1659250093;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659249660;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e126221293a41ac5a8bdf8204980db8a6b72a704', '37.111.217.177', 1659250461, '__ci_last_regenerate|i:1659250461;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659250447;register_id|s:3:\"139\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-07-31 11:59:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b63ccd48f0545f680216cda9d4e95225ed983b', '37.111.217.177', 1659251098, '__ci_last_regenerate|i:1659251098;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659251077;register_id|s:3:\"140\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-07-31 12:56:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dacfdde76d1a4a4cf431caa5b2e4108b819c7663', '37.111.217.177', 1659251408, '__ci_last_regenerate|i:1659251408;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659251383;register_id|s:3:\"140\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-07-31 12:56:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5766562b355d9ba6d77020eea6a03f5843a30116', '37.111.217.177', 1659251732, '__ci_last_regenerate|i:1659251732;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659251674;register_id|s:3:\"140\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-07-31 12:56:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d96133861bafae8fed80b24dde6fbe9f9533c27', '37.111.217.177', 1659252034, '__ci_last_regenerate|i:1659252034;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659252015;register_id|s:3:\"140\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-07-31 12:56:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62fa4b11c7444c914132348311ed79fb789a55c7', '37.111.217.177', 1659252465, '__ci_last_regenerate|i:1659252465;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659252457;register_id|s:3:\"140\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-07-31 12:56:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6221bf531dd1e2351593b4d9c582900dc53e2c88', '37.111.217.177', 1659254387, '__ci_last_regenerate|i:1659254387;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659254380;register_id|s:3:\"141\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 13:30:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba869b3b897d2e1c93a86234248a5b6d0ac9165', '37.111.217.177', 1659255862, '__ci_last_regenerate|i:1659255862;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659255858;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97bbd5ee3603518adf59fbd1defdb9f0ddf9046', '37.111.217.177', 1659256401, '__ci_last_regenerate|i:1659256401;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659255901;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de8607bd760bc9bbd274fec342f34f25ab85957', '37.111.217.177', 1659257142, '__ci_last_regenerate|i:1659257142;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659256532;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83829dc3a153ab1aed393b09815a4e71fa549391', '37.111.217.177', 1659259527, '__ci_last_regenerate|i:1659259527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659257230;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fde2caf7d94501b68b562de357a6cf320fa591b', '37.111.217.177', 1659261840, '__ci_last_regenerate|i:1659261840;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659259614;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29361dbec3f8b616688c9420d5530279bbc13818', '37.111.217.177', 1659263182, '__ci_last_regenerate|i:1659263182;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659262068;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3e828d98699c08d8ac9b6ded7b61a53765c3442', '37.111.212.68', 1659263060, '__ci_last_regenerate|i:1659263060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b2e1007de362d922a5acd646a708f758a9d042', '37.111.217.177', 1659263867, '__ci_last_regenerate|i:1659263867;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659262068;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9598f9497b137876a7f811b18860f80d83c55296', '37.111.217.177', 1659264724, '__ci_last_regenerate|i:1659264724;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659263919;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09dd26e5aa73790bc4edfc5fdd0c7b3aa5fbe719', '37.111.217.177', 1659266570, '__ci_last_regenerate|i:1659266570;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659264874;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b52fe3f452f958771821ecbe71acb6b7b5c6ea', '116.204.230.27', 1659266430, '__ci_last_regenerate|i:1659266189;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659246828\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965695cb04029d225c89a2d897bf71515f1cdd01', '37.111.217.177', 1659266872, '__ci_last_regenerate|i:1659266872;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659266863;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea259514f8885019a95537b73d631f889782de87', '37.111.217.177', 1659267808, '__ci_last_regenerate|i:1659267808;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659267071;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb5b90cce42b0c006c9589b7b0edb818ea5c07d4', '37.111.217.177', 1659268840, '__ci_last_regenerate|i:1659268840;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659267846;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59e8122656afeaada11367687169c7d2725c066', '37.111.217.177', 1659269274, '__ci_last_regenerate|i:1659269274;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659269035;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e760f27b2a02a50251932d9ead6fd2a01cc457', '37.111.217.177', 1659269795, '__ci_last_regenerate|i:1659269795;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659269527;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98183d262f3146813e3373fb61b89bb8ce7803a9', '37.111.217.177', 1659270529, '__ci_last_regenerate|i:1659270529;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659269809;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb1e8b4d6ad73fb0ed568156d8107724c71fc00', '37.111.217.177', 1659271013, '__ci_last_regenerate|i:1659271013;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659270529;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8d4bf3f682260bf09395be31a1be85140499399', '37.111.217.177', 1659273537, '__ci_last_regenerate|i:1659273537;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659273489;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ddddf1b2e62e316666d423ce7b9c07585da0d2', '37.111.217.177', 1659274191, '__ci_last_regenerate|i:1659274191;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659273537;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0abcdd3755f971b504b7db2dd446080e44335caa', '37.111.217.177', 1659274970, '__ci_last_regenerate|i:1659274970;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659274679;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a9a63ace11460163b12c4e9e4a6a99d2f999a2', '37.111.217.177', 1659275288, '__ci_last_regenerate|i:1659275288;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659275000;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10950ff93c76e8130b8cab3c12b94265b7e62f1', '37.111.217.177', 1659275663, '__ci_last_regenerate|i:1659275663;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659275658;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc7e0329a624047f46b8b83f29bde777d870c41', '116.204.230.18', 1659275858, '__ci_last_regenerate|i:1659275858;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659266192\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659275558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02a05f166db8923a733c052243094b87118fe91', '37.111.217.177', 1659276118, '__ci_last_regenerate|i:1659276118;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659275673;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85db1858904035be4a48e41ce1243e40f8389aae', '116.204.230.19', 1659275827, '__ci_last_regenerate|i:1659275681;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659237424\";last_ip|s:14:\"116.204.230.21\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e78ac7e061209f6ce595105ff9190d894b3c5d', '8.31.2.47', 1659275731, '__ci_last_regenerate|i:1659275731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56834454bc6684478ef059fb9409408add1263b', '209.141.41.193', 1659275733, '__ci_last_regenerate|i:1659275733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c31e0e03fd46cb5503a60ce3d5d6f982c8261fa', '209.141.41.193', 1659275734, '__ci_last_regenerate|i:1659275734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e373d858e0973e9a756412c3c36948c8ba88f5f', '116.204.230.18', 1659276166, '__ci_last_regenerate|i:1659276166;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659266192\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659276009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('465fc0ce3a797cb165f39f65fad6d8d19e5730b4', '37.111.217.177', 1659276439, '__ci_last_regenerate|i:1659276439;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659276352;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b94a460006dd775ac100707a42c9f4886f7722f', '116.204.230.18', 1659276537, '__ci_last_regenerate|i:1659276537;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659266192\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659276530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c83832e079cedf3e04938d2de0eebebb6c4e4a2', '37.111.217.177', 1659277331, '__ci_last_regenerate|i:1659277331;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659277022;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5a3d1fd0d57921ae0f382321772749f9098346', '116.204.230.18', 1659276846, '__ci_last_regenerate|i:1659276846;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659266192\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659276530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0557e1040e012d3fdd9019fc03417ab0c0a1fbab', '116.204.230.18', 1659277202, '__ci_last_regenerate|i:1659277202;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659266192\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659277062;user_csrf|s:20:\"hDbAzNrR8SLgXOQ2lefF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('270bc06a6b7441ccceb1dccb296a6e69b09e398e', '116.204.230.18', 1659277227, '__ci_last_regenerate|i:1659277202;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659266192\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659277062;user_csrf|s:20:\"hDbAzNrR8SLgXOQ2lefF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('134ef655a80ad21c3366451c94c18177c336ae69', '37.111.217.177', 1659277916, '__ci_last_regenerate|i:1659277916;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659277352;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b793c9811b3771e53da72b260b7e697e9aa95ec', '37.111.217.177', 1659279540, '__ci_last_regenerate|i:1659279540;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659277916;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94709a9de99efa9609726424c469d7b96b9b8da8', '37.111.217.177', 1659279912, '__ci_last_regenerate|i:1659279912;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659279820;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2f66753d3ae5dccc8222b8dfcc661a758959c9', '37.111.217.177', 1659280327, '__ci_last_regenerate|i:1659280327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659279988;register_id|s:3:\"142\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2022-07-31 14:00:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc200c7b53ef7ed12d7a79d80fb428f74561776', '37.111.217.177', 1659280442, '__ci_last_regenerate|i:1659280327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1658810230\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659280442;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14af55c9bd586d729d26805595e8a1d8c5f16b5c', '37.111.219.111', 1659332200, '__ci_last_regenerate|i:1659332200;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659332177;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a88a2ca6aa60e4483a744d44bdb2c7c2a2344ba', '37.111.219.111', 1659335484, '__ci_last_regenerate|i:1659335484;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659332317;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40579eb5accaee39fc720c90948d8b069097b1c5', '116.204.230.19', 1659334611, '__ci_last_regenerate|i:1659334611;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659275688\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7afaeb846ff946d4985154d87b10ae773a2362d1', '116.204.230.19', 1659334611, '__ci_last_regenerate|i:1659334611;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659275688\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad974103b3901c496a39f4c62b4f5edaaf5afe02', '37.111.219.111', 1659340703, '__ci_last_regenerate|i:1659340703;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659337270;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e51d5552d1d7ed6f46703f196d283a0bff4350b', '37.111.207.35', 1659337818, '__ci_last_regenerate|i:1659337817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea606c621b0cff1b57290642565cbe784b4b302', '116.204.230.26', 1659338570, '__ci_last_regenerate|i:1659338349;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659275544\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"I9bdvf1kRTXAs0t2qLKp\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c48e427ebd9ea1beb7123863fac595cbd798c860', '37.111.219.111', 1659348163, '__ci_last_regenerate|i:1659348163;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659341055;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285aa7b8f30dc19336c9b29ba623ea2801a8ebf0', '37.111.219.111', 1659350193, '__ci_last_regenerate|i:1659350193;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659350178;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe740e4112313c9fee316c7c4189556d9d59ed1', '37.111.219.111', 1659350620, '__ci_last_regenerate|i:1659350620;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659350510;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c0e3473ea450fb847c0f2aa5819ce471b53b8ec', '37.111.219.111', 1659352091, '__ci_last_regenerate|i:1659352091;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659350807;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878e08f712b70fbd2f80c8f2dcb3222b2c97defd', '37.111.219.111', 1659356029, '__ci_last_regenerate|i:1659356029;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659353545;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8aa05f5b4b41524a7f82c8a3b2375effefac26e', '116.204.230.28', 1659353208, '__ci_last_regenerate|i:1659353190;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659333328\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d301ebd91166b9427e4f401974d7b98d3ab01ec2', '37.111.219.111', 1659356494, '__ci_last_regenerate|i:1659356494;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659353545;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b0644dbe15cf367246ec5c1e3b25b8309209ce', '37.111.219.111', 1659357149, '__ci_last_regenerate|i:1659357149;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659357144;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0830710331a3be79e33d346ad3debd954552b7', '37.111.219.111', 1659358262, '__ci_last_regenerate|i:1659358262;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659357149;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c49d8d6d293e2e4f384736277f8c2b0a532863', '37.111.219.111', 1659358602, '__ci_last_regenerate|i:1659358602;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659358584;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13407a80513847875c28ce6eb90ed232990295c', '37.111.219.111', 1659360771, '__ci_last_regenerate|i:1659360771;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659358992;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc7d00484a6c4618c05e47e2405cd2fc6687d1b', '37.111.219.111', 1659361653, '__ci_last_regenerate|i:1659361653;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659360771;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e133feb9ac7a25591f238255d897845cf8f5fb3e', '37.111.219.111', 1659362231, '__ci_last_regenerate|i:1659362231;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659361719;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45cb37382674400a0960537cd7d9f652de8064f8', '37.111.219.111', 1659364335, '__ci_last_regenerate|i:1659364335;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659362235;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f943d9547c88c98b7be10868246223ed61fa86c', '37.111.219.111', 1659364831, '__ci_last_regenerate|i:1659364831;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659364824;register_id|s:3:\"143\";cash_in_hand|s:8:\"890.0000\";register_open_time|s:19:\"2022-07-31 21:12:42\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb3a2015ea89e9dd9c64b7db8b1187b3b648f67', '37.111.219.111', 1659364862, '__ci_last_regenerate|i:1659364831;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659244550\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659364862;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3d435f45a546513159a262dcbed185b462db40', '142.93.67.97', 1659368684, '__ci_last_regenerate|i:1659368684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef5487cb6c8ad02929098c6e27eb36ec36bb3975', '157.0.140.186', 1659382759, '__ci_last_regenerate|i:1659382759;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9db339a652f0030acaec4ea2337d69b9b17312', '157.0.140.186', 1659382761, '__ci_last_regenerate|i:1659382761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92764541d1394ac3b73fdeef2ea1b4cf3848fe53', '157.0.140.186', 1659382761, '__ci_last_regenerate|i:1659382761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de74b2f72f02ced362bb764938a04b73753fe78', '157.0.140.186', 1659382762, '__ci_last_regenerate|i:1659382762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ab86ab7743abe66ee85bd9a4b8aa35b7837ffd', '198.235.24.35', 1659396754, '__ci_last_regenerate|i:1659396754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f9247a7086b5d6ab0fd2313ae6840e52d28ff8', '198.235.24.35', 1659396756, '__ci_last_regenerate|i:1659396756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30eb47c3cf0c8535430726afae94bb9fb781552e', '198.235.24.35', 1659396757, '__ci_last_regenerate|i:1659396757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798c849573882818d732674ffc0a30a78f093dd3', '205.210.31.146', 1659400819, '__ci_last_regenerate|i:1659400819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84449a6cbc45fc57ab3ed8ffb953134738e2dbf', '205.210.31.146', 1659400820, '__ci_last_regenerate|i:1659400820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e621c5b55c7d5fce3f35217ae57e8b4d6187d0e', '205.210.31.146', 1659400821, '__ci_last_regenerate|i:1659400821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38533cf92eee48b0ac52140f282064f3588e3970', '198.235.24.158', 1659413074, '__ci_last_regenerate|i:1659413074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('544901188d2a2f6f5a32020d79a254964b85cf5c', '37.111.216.161', 1659416527, '__ci_last_regenerate|i:1659416527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659328513\";last_ip|s:14:\"37.111.219.111\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659416430;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b89374457d4a5b87462adf87b28142beece406', '37.111.216.161', 1659419605, '__ci_last_regenerate|i:1659419605;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659328513\";last_ip|s:14:\"37.111.219.111\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659419598;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e13e93880eda0aa83c73ad97d3002f09ca5f2f', '37.111.216.161', 1659419909, '__ci_last_regenerate|i:1659419909;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659328513\";last_ip|s:14:\"37.111.219.111\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659419807;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f9a02a45ae868706ed4a1cbc632101325c3449', '37.111.216.161', 1659420756, '__ci_last_regenerate|i:1659420756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659328513\";last_ip|s:14:\"37.111.219.111\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659419912;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b35a77731c45ef5dfa154f270605f27b73ff369', '37.111.216.161', 1659420762, '__ci_last_regenerate|i:1659420756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659328513\";last_ip|s:14:\"37.111.219.111\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659420762;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b800e56ed4c7ae67a43911d9241a1839ae8f66b', '116.204.230.21', 1659422472, '__ci_last_regenerate|i:1659422445;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659353199\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659422464;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd0a7320c4a1248c86533216a24f9025c41367a', '58.240.97.50', 1659424260, '__ci_last_regenerate|i:1659424260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56427d8af907571dc31a46371dd99b8b7170586', '37.111.216.161', 1659440988, '__ci_last_regenerate|i:1659440988;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c32464927579aeb555295d045c540db92ec9a3', '116.204.230.18', 1659440422, '__ci_last_regenerate|i:1659440418;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659338354\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd03b724ccab7d15377d927aa8096287633abfee', '37.111.216.161', 1659441706, '__ci_last_regenerate|i:1659441706;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659441680;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52667a997213ad7d4445faa56191272869f797d2', '37.111.202.211', 1659441504, '__ci_last_regenerate|i:1659441484;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659422454\";last_ip|s:14:\"116.204.230.21\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d435d7ec2cc444a855b480b0f84b734ed8eab4', '37.111.216.161', 1659443388, '__ci_last_regenerate|i:1659443388;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659443382;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3aff4854ded4357a2bf50bce0d87599c726b2b', '37.111.216.161', 1659448926, '__ci_last_regenerate|i:1659448926;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659448918;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd2532c3ba106aad77753ea1cfebaf8bb21e047e', '128.199.205.115', 1659448767, '__ci_last_regenerate|i:1659448767;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d56338c797b1526371cad34f3869a80ed853b00', '128.199.205.115', 1659448768, '__ci_last_regenerate|i:1659448768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddbb9e1f67596e60573a0f57f705341b754991fb', '128.199.205.115', 1659448770, '__ci_last_regenerate|i:1659448770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76821b024bc8c762c7ae3a7f6633a1089ffeb00f', '128.199.205.115', 1659448770, '__ci_last_regenerate|i:1659448770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e092ef300dac5b986c552795c55c9b43edf356e', '37.111.216.161', 1659450936, '__ci_last_regenerate|i:1659450936;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659450914;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09970dae9605e2fdd4122298c34614e12c9ca354', '37.111.216.161', 1659451764, '__ci_last_regenerate|i:1659451764;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659451758;register_id|s:3:\"144\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-08-01 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ad06fb80dcfbf39a58a278a03994b382fcd4d6', '37.111.216.161', 1659451786, '__ci_last_regenerate|i:1659451764;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659416098\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";last_activity|i:1659451786;register_id|s:3:\"145\";cash_in_hand|s:8:\"230.0000\";register_open_time|s:19:\"2022-08-02 20:49:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87bbc24f2b3c5cecb282afa273a04bb78db090d', '116.204.230.21', 1659453762, '__ci_last_regenerate|i:1659453762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e540d8ca2aa9ddf0227e796a28ceac97c61df87', '116.204.230.21', 1659453791, '__ci_last_regenerate|i:1659453762;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659441491\";last_ip|s:14:\"37.111.202.211\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8efca632dd919c8903097af78eb11a9cd1705ef2', '103.114.23.73', 1659472354, '__ci_last_regenerate|i:1659472354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7078ee68800c77a92ab2fbce6bb7adbaa5355b', '173.252.107.14', 1659472191, '__ci_last_regenerate|i:1659472191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3857848f13e0fa5cfbfe726ee92eff331563a3eb', '195.74.76.198', 1659472289, '__ci_last_regenerate|i:1659472289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee8e48a475ebb8f5002fbc79dee9a3c136c13e7', '195.74.76.198', 1659472290, '__ci_last_regenerate|i:1659472290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a915f6854c769a599c7f09cd86d7027b063e6e', '195.74.76.198', 1659472290, '__ci_last_regenerate|i:1659472290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('875a0a444d163bd315499861cbec5d3dbe37eaf4', '195.74.76.198', 1659472295, '__ci_last_regenerate|i:1659472295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f617ac148092203848a0eeed6c4da30ebaab31d', '195.74.76.198', 1659472295, '__ci_last_regenerate|i:1659472295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ce80f00f7440f484687d786bbe0d25c82fcc1e', '195.74.76.198', 1659472295, '__ci_last_regenerate|i:1659472295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3751a637e60441176130b3495fd920530fe1335', '65.154.226.169', 1659472299, '__ci_last_regenerate|i:1659472299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6aa830b2c1c3f151ceff75bc9b2bde4b3e878a', '65.154.226.169', 1659472300, '__ci_last_regenerate|i:1659472300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420ca4e7a9abbdae9b6c6b335c3d59a4766024b6', '64.124.51.154', 1659472336, '__ci_last_regenerate|i:1659472336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd1dd6e690b468e3d4abcf120324830a0ac321a', '64.124.51.154', 1659472336, '__ci_last_regenerate|i:1659472336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1188b9ea275031285f3a1a43d1c186724e4482c', '64.124.51.154', 1659472336, '__ci_last_regenerate|i:1659472336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ba4128032a65d54261b58007f5939a811b3128', '64.124.51.154', 1659472336, '__ci_last_regenerate|i:1659472336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb75cdbc10def881254c1e20725e712633685ca8', '64.124.51.154', 1659472336, '__ci_last_regenerate|i:1659472336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db098bf88958597e2f8adcfdb6800279cd92a990', '64.124.51.154', 1659472337, '__ci_last_regenerate|i:1659472337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79cb5135d9b97ea8b467be724e164b35f1a2da69', '103.114.23.73', 1659472353, '__ci_last_regenerate|i:1659472353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a5f1d974e3c8576ad1e0181c195c38d76db97e', '103.114.23.73', 1659472354, '__ci_last_regenerate|i:1659472354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2352bbf5e64578568e79391dfbf6c8dc7e68ce87', '103.21.42.196', 1659472356, '__ci_last_regenerate|i:1659472356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5fe9eca7bcf0a0c4423471b500a1500b429c45b', '103.21.42.196', 1659472363, '__ci_last_regenerate|i:1659472360;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91fa0dc6af0b90af77eda3e073304ce23209dc82', '3.121.162.134', 1659475583, '__ci_last_regenerate|i:1659475583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f3c87de7b548399b03c8e967dcb1cd8541d027', '3.121.162.134', 1659475583, '__ci_last_regenerate|i:1659475583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3733c5ad9ddf0684f70cf598e1474cce74ee0d0b', '205.185.223.3', 1659475583, '__ci_last_regenerate|i:1659475583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6beab3dd991320b7064d46f9b1aaeed611a1e82a', '205.185.223.3', 1659475584, '__ci_last_regenerate|i:1659475584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0d82f2a0fa277adba9128486833e8c58b7c9c3', '81.174.131.125', 1659475584, '__ci_last_regenerate|i:1659475584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ee64d66a2d19ff8ad577b8757d23c303299500', '81.174.131.125', 1659475584, '__ci_last_regenerate|i:1659475584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db960309cba13c9e6ef1ffe330a114bb749d0c36', '109.201.130.14', 1659475587, '__ci_last_regenerate|i:1659475587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00179a6b89a3dbd73fd1788e75b9ee200857f06', '109.201.130.14', 1659475588, '__ci_last_regenerate|i:1659475588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a32c076b06494c512dec173214910a5ba912a3', '202.43.6.5', 1659475588, '__ci_last_regenerate|i:1659475588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b68c065c4a6886b9aca4aaecfbe24f6f988e94', '81.174.131.125', 1659475589, '__ci_last_regenerate|i:1659475589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eee67297073e73b7cf1c19d30203f2426c7f7c5', '202.43.6.5', 1659475589, '__ci_last_regenerate|i:1659475589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30aece4c7687ecbffe8cfb436451b22ac6fe2999', '205.185.223.3', 1659475589, '__ci_last_regenerate|i:1659475589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f25ee96d7e9d8ab7e1ab13e532af126857e482', '192.200.158.221', 1659475620, '__ci_last_regenerate|i:1659475620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bda7746546448ce4e5c02f6cb194f1c67ae44782', '192.200.158.221', 1659475620, '__ci_last_regenerate|i:1659475620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f548dc72e3a2df284cee2070f3912716aebbc0', '185.108.106.203', 1659475621, '__ci_last_regenerate|i:1659475621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23861dac19ca42e0b71f4daa5009958f639c2bdd', '185.108.106.203', 1659475621, '__ci_last_regenerate|i:1659475621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ec9aa226eef136194cead11bf1961f83a120fef', '81.174.131.125', 1659475622, '__ci_last_regenerate|i:1659475622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4781b1063e3b8a3bd08f7c26e3bedfc29abe1433', '20.79.223.156', 1659475622, '__ci_last_regenerate|i:1659475622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d2feba4eaa4518c85526f30cfbb4f5354efc97', '20.79.223.156', 1659475622, '__ci_last_regenerate|i:1659475622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63251b7d38a1a38542cd1ef1ccbcb34881576e0c', '81.174.131.125', 1659475622, '__ci_last_regenerate|i:1659475622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c75678a7ad24b4498c8a76deea2ff6363ec191', '202.43.6.5', 1659475738, '__ci_last_regenerate|i:1659475624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6dea1afcb901432c0cf90167f28c09601e69e00', '20.79.223.156', 1659475624, '__ci_last_regenerate|i:1659475624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d23416fbd8ee4a7c00db00a4cb846b877f8306b', '202.43.6.5', 1659475626, '__ci_last_regenerate|i:1659475626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64778162e406a1ed274958a57f4ad6ec71e59c36', '202.43.6.5', 1659475629, '__ci_last_regenerate|i:1659475629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d531f41188388497a65ed551119e1eeccd1e13ab', '185.147.212.18', 1659475654, '__ci_last_regenerate|i:1659475654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79daed1ddeb1e0b2dc9fca99f57666824b700496', '212.102.35.139', 1659475654, '__ci_last_regenerate|i:1659475654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150c0b7a1cfa75a578daf9f7d28ea72ee2190e35', '81.174.131.125', 1659475654, '__ci_last_regenerate|i:1659475654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ec402d1815b6fbc7e3f1cd26cfb374ca6401136', '205.185.222.20', 1659475654, '__ci_last_regenerate|i:1659475654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd71a888e5d4ce8dd40ff5af3f7b1084268ce5a', '5.62.61.179', 1659476028, '__ci_last_regenerate|i:1659475832;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1207e5fbda380c94ed38d92add5702aef77a58cb', '164.90.241.135', 1659476249, '__ci_last_regenerate|i:1659476047;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748df83ef993ad95e0f6ad8472602f6cf625645d', '157.230.195.44', 1659476465, '__ci_last_regenerate|i:1659476268;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2e5ffabf40b02eb6336b5c8922bfefab820aad', '69.4.89.106', 1659478403, '__ci_last_regenerate|i:1659478403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a975abc69d428b04399695f540384fbc9c1c5d1e', '69.4.89.106', 1659478403, '__ci_last_regenerate|i:1659478403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca779add5035b44b5fd9ca6936398f69aefc48f', '69.4.89.106', 1659478403, '__ci_last_regenerate|i:1659478403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4860154a53390617337d037ca95eb076cc285db', '69.4.89.106', 1659478403, '__ci_last_regenerate|i:1659478403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa173e1118eef534b242d159e2aa24cb1c57f004', '205.210.31.24', 1659480876, '__ci_last_regenerate|i:1659480876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f492c8255034ac3afecaaf2b0ff08970590e81', '34.240.101.235', 1659483170, '__ci_last_regenerate|i:1659483170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9cda2815ae2647e51c9fcb05059d84618c3922c', '34.240.101.235', 1659483172, '__ci_last_regenerate|i:1659483171;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaaea7e95e4a4866050d135aaef58f3071686a11', '93.119.227.19', 1659488204, '__ci_last_regenerate|i:1659488204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3403251afe557d13adfb35488f7107ad9ee39752', '93.119.227.19', 1659488204, '__ci_last_regenerate|i:1659488204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2923d405b31a472cb687ebdc20efc3bb95f69583', '93.119.227.19', 1659488206, '__ci_last_regenerate|i:1659488206;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bb6855527b3ddf511e000d246025b506db48e0', '93.119.227.19', 1659488206, '__ci_last_regenerate|i:1659488206;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d1dfb62c4202f7f36dca69da4798c21b68f94b', '34.172.53.188', 1659488274, '__ci_last_regenerate|i:1659488274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e46c54f1b61915c330cbdc11b79ebe48085504', '34.172.53.188', 1659488274, '__ci_last_regenerate|i:1659488274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1212ddb5edac0882222cdaae4431c174feb3b8', '34.172.53.188', 1659488274, '__ci_last_regenerate|i:1659488274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e79adeb15eda12c448ee2c86e3667a83e4b44a', '34.172.53.188', 1659488276, '__ci_last_regenerate|i:1659488276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74f2715036fdbeb9c5dfe1d3a856cc8275bd346', '34.172.53.188', 1659488516, '__ci_last_regenerate|i:1659488516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964147ad8dd4682f09bcb3a218360358bf2998cb', '34.172.53.188', 1659488517, '__ci_last_regenerate|i:1659488516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ae1cf947f072945acfce7ee81645e024c14c37', '34.172.53.188', 1659488517, '__ci_last_regenerate|i:1659488517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e00b765add6b3eefe7ce2de62258e9e37e03eb', '34.172.53.188', 1659488517, '__ci_last_regenerate|i:1659488517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d46a4fd6643311f7bc046b6909b99869eaac8f', '34.172.53.188', 1659488518, '__ci_last_regenerate|i:1659488518;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3c759b106acf286255f6ed7414d9e290adb70a', '34.172.53.188', 1659488518, '__ci_last_regenerate|i:1659488518;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30991d97957b1dd70d21284ff4ee1823c1316bd8', '89.104.111.227', 1659498258, '__ci_last_regenerate|i:1659498258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7c57242ee946f9c829c9fb8b29efac13034c90', '176.53.218.111', 1659498259, '__ci_last_regenerate|i:1659498259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f2ecf1d259095d0c8a23f9075dab68bd4b41d4b', '176.53.222.46', 1659498259, '__ci_last_regenerate|i:1659498259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e492fce2a67c61bd8760c647f132f714197d43', '176.113.43.162', 1659499607, '__ci_last_regenerate|i:1659499607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d80f3a01f21a8063160189e0251a9ae3c65219', '176.53.221.17', 1659499608, '__ci_last_regenerate|i:1659499608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e245959379cdd992440e52dde5d864403599c90', '89.104.100.156', 1659499608, '__ci_last_regenerate|i:1659499608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ec77ae5b9fb9d145335257a265f913a01dae59', '37.111.219.223', 1659504873, '__ci_last_regenerate|i:1659504873;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659435094\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659504829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4a23e2952914604a441fa659c374cf387c54df', '37.111.219.223', 1659510536, '__ci_last_regenerate|i:1659510536;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659435094\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659504890;register_id|s:3:\"145\";cash_in_hand|s:8:\"230.0000\";register_open_time|s:19:\"2022-08-02 20:49:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51069c4c73a609834e0116081e4be06c6bdbe23d', '116.204.230.22', 1659511284, '__ci_last_regenerate|i:1659511284;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659440421\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d840720f5e5860d6f55eee229c779b81df1d2f', '37.111.219.223', 1659510544, '__ci_last_regenerate|i:1659510536;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659435094\";last_ip|s:14:\"37.111.216.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659510544;register_id|s:3:\"145\";cash_in_hand|s:8:\"230.0000\";register_open_time|s:19:\"2022-08-02 20:49:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2e2d7018cd6febda8ae43f50aeb1770fde1692', '116.204.230.22', 1659511284, '__ci_last_regenerate|i:1659511284;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659440421\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f2d2878a3f6761f3ecbdecc009f3d7424c3014', '212.102.57.11', 1659512175, '__ci_last_regenerate|i:1659512175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82c7983d9af0c6092783314203b88115abe35ad', '212.102.57.11', 1659512175, '__ci_last_regenerate|i:1659512175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079969e9e334bed2e24e6345bd8c69debd3afd8e', '84.17.46.210', 1659512175, '__ci_last_regenerate|i:1659512175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84afd78f1f90688fad49093455c4a82d2ece5095', '84.17.46.210', 1659512175, '__ci_last_regenerate|i:1659512175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6481c1c7a4913bdff28ee90541875bd6b68c0f43', '81.174.131.125', 1659512176, '__ci_last_regenerate|i:1659512176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c30b28636554e150d0da5d6e9cdac0e68117ad1', '81.174.131.125', 1659512176, '__ci_last_regenerate|i:1659512176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb31985c2629e97dbd8181e6cffda4a60dbd6df', '185.94.192.82', 1659512180, '__ci_last_regenerate|i:1659512180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4908d644d9b39f692b7bce1974920c4a298ae4c2', '104.129.56.135', 1659512180, '__ci_last_regenerate|i:1659512180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05365c7f007812ff3ef43d9e631cb0bd4f59faff', '212.102.57.11', 1659512181, '__ci_last_regenerate|i:1659512181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5db416ff698bd6c43d0fa05f6084020d02b8cea', '185.94.192.82', 1659512182, '__ci_last_regenerate|i:1659512182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0804f1d4e4c44fb6d472c0f584cf35ff98e3845', '104.129.56.135', 1659512185, '__ci_last_regenerate|i:1659512185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d98066d218af2f448e50a43743f933a7e01a305', '81.174.131.125', 1659512247, '__ci_last_regenerate|i:1659512247;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9a0e9276f30004ac62ff60317382582953c9f6', '84.17.46.210', 1659512247, '__ci_last_regenerate|i:1659512247;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be547b7830dead58e73d1b5cc6f57fe94779288f', '81.174.131.125', 1659512248, '__ci_last_regenerate|i:1659512248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c357d80a067b6bad300929467c802a81503234', '185.94.192.82', 1659512980, '__ci_last_regenerate|i:1659512743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0100dfa5cf020101564cd73b97a1c483c11e88', '212.102.57.11', 1659512248, '__ci_last_regenerate|i:1659512248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003fb765fbb3bcf432b2bd4f63ba7f3adb618520', '104.129.56.5', 1659512248, '__ci_last_regenerate|i:1659512248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a13e189afb9ce7c7ea0d9c027006d1d398d739', '212.102.57.11', 1659512248, '__ci_last_regenerate|i:1659512248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f00e0329d7c805b6d8117655580df62a0b61488', '185.94.192.82', 1659512248, '__ci_last_regenerate|i:1659512248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e771704dbff86a0343cdeea8bf18893ec43d91c', '104.129.56.5', 1659512250, '__ci_last_regenerate|i:1659512250;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1460fe557eb263963b0a5a5ac289b59c36ea40', '84.17.46.210', 1659512250, '__ci_last_regenerate|i:1659512250;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('173cca48b1ea0a3c68ed35bcaa7a7ae0f6d4c666', '212.102.57.11', 1659512250, '__ci_last_regenerate|i:1659512250;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd22187ca8237365e28f7844ea8e104163209485', '185.94.192.82', 1659512250, '__ci_last_regenerate|i:1659512250;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07202262c6f1355d12a534adb220f0086736e86d', '164.90.255.66', 1659512353, '__ci_last_regenerate|i:1659512353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b48f922b6b08ad15fafe85141b42821172fc78', '81.174.131.125', 1659512354, '__ci_last_regenerate|i:1659512354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57dc30e990ab9caf17dfee850ef1dbc13ed0eeb2', '185.94.192.82', 1659512354, '__ci_last_regenerate|i:1659512354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7909f93539227f81a468e4964ab55f7eb2911423', '216.131.114.7', 1659512355, '__ci_last_regenerate|i:1659512355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52368ad1d0c59235fa45ec82a460c29d46f68fee', '197.242.156.56', 1659512743, '__ci_last_regenerate|i:1659512743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c95f9fcc5a53aa373e5b9d4e9ab518cd0c7e93', '216.131.114.6', 1659513356, '__ci_last_regenerate|i:1659513313;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d830beb8b5229d4524b1dc3f61b76ab1246e2d39', '51.255.62.6', 1659513387, '__ci_last_regenerate|i:1659513387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de2161555dc65a50a0c28da17476f442da77196', '51.255.62.2', 1659513387, '__ci_last_regenerate|i:1659513387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16fe999b7d1781eda824d0775c1fecf93e55031d', '51.255.62.1', 1659513389, '__ci_last_regenerate|i:1659513389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82f56e31e837c9db26e7c7f11c6ae06c936c4f4', '51.255.62.15', 1659513389, '__ci_last_regenerate|i:1659513389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab1310194a239634be0565425e483f8753c52cf', '161.35.246.138', 1659513776, '__ci_last_regenerate|i:1659513544;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66661e2ef19fc51d54d057f2ec14cdffbde5511', '68.183.245.101', 1659514031, '__ci_last_regenerate|i:1659513793;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3776f9b9e705a5b8ec4094c4c026c5af69d73393', '188.165.87.104', 1659516595, '__ci_last_regenerate|i:1659516595;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17703add81cb76143b78e17f68482253eedad434', '51.254.49.100', 1659517408, '__ci_last_regenerate|i:1659517408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fef0684d141864fbb79755206b10a6aae9d4d54', '51.254.49.98', 1659517408, '__ci_last_regenerate|i:1659517408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8a406499f70487ca94a53b6fa653e152228642', '188.165.87.109', 1659520195, '__ci_last_regenerate|i:1659520195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff16f8dafae802f279bdcc08545e9578d760a7c8', '37.111.219.223', 1659525312, '__ci_last_regenerate|i:1659525312;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659501634\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('680d94a412958dda5b690646e1acc0227277f59d', '37.111.219.223', 1659532121, '__ci_last_regenerate|i:1659532121;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659501634\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659525312;register_id|s:3:\"145\";cash_in_hand|s:8:\"230.0000\";register_open_time|s:19:\"2022-08-02 20:49:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1104a6107963342a0ce144e774253d73c2fb78', '64.225.23.61', 1659526618, '__ci_last_regenerate|i:1659526618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd7a84fcc21e73488bab39826b4d82abe21e200', '64.225.23.61', 1659526625, '__ci_last_regenerate|i:1659526625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c98c92520f40fa53a6a2aad180d41184cb13794f', '64.225.23.61', 1659526630, '__ci_last_regenerate|i:1659526630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f975b98588d5fec29acaddd06f3075fce153d2c3', '37.111.219.223', 1659532849, '__ci_last_regenerate|i:1659532849;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659501634\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659532177;register_id|s:3:\"145\";cash_in_hand|s:8:\"230.0000\";register_open_time|s:19:\"2022-08-02 20:49:41\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c0004312c3781a5a324ec578fb5a0f1c2b56579', '37.111.219.223', 1659532984, '__ci_last_regenerate|i:1659532849;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659501634\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659532983;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6468a788c5dc40ce67984d9dbb96a81b2d05a625', '89.104.111.45', 1659553488, '__ci_last_regenerate|i:1659553488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b20f3877c7a8415e5f0f69073dcf73abf7ccce', '176.53.216.217', 1659553489, '__ci_last_regenerate|i:1659553489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cd9ac03d41312f66a4a46ec0b1aad64b608b98', '45.90.61.173', 1659553490, '__ci_last_regenerate|i:1659553490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b84cfbb9c4076e60d75852283047a05b3a51c95', '167.99.117.197', 1659559991, '__ci_last_regenerate|i:1659559991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bda2ff0ead48ab1c963cb08c4fc03074e8a163', '45.90.61.9', 1659560045, '__ci_last_regenerate|i:1659560045;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3572d960b1e4b66f2564c02e851bb6d22e6860', '45.90.62.76', 1659560045, '__ci_last_regenerate|i:1659560045;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997d12e113e7313ed427e6efcdbe071cfe3f13f5', '176.53.221.236', 1659560046, '__ci_last_regenerate|i:1659560046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7046b791df3c73997a66b3e9037122b021376eda', '176.53.216.233', 1659586296, '__ci_last_regenerate|i:1659586296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a57ddadc431df2137ea47a8ea71bbf53b2a723aa', '176.113.42.246', 1659586297, '__ci_last_regenerate|i:1659586297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89540437ab5177c36961141dd874e2b2da29e922', '176.53.219.184', 1659586298, '__ci_last_regenerate|i:1659586298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f69d3ff332a7c3021ef36609d6a6341e397d425', '176.53.220.101', 1659587818, '__ci_last_regenerate|i:1659587818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e368ae8323a14cc2841127d8571c1ae1a3a38b5', '176.53.219.45', 1659587819, '__ci_last_regenerate|i:1659587819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1c974acb160897ef793bae7980b15255d3a7e0', '89.104.101.32', 1659587819, '__ci_last_regenerate|i:1659587819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0ef2c19de76f2b9571e69795c3898b877d3b65', '37.111.219.232', 1659588832, '__ci_last_regenerate|i:1659588832;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659588356;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5bc90ac6fec6a86c5c3deafc0ff0e1d0d81001', '37.111.219.232', 1659589171, '__ci_last_regenerate|i:1659589171;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659588901;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9978d5456a7ec8680b26643fef1749b896fd28', '37.111.219.232', 1659595555, '__ci_last_regenerate|i:1659595555;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659595541;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8638da025a2a11ba54a1846bce70dc098b40239d', '37.111.219.232', 1659600969, '__ci_last_regenerate|i:1659600969;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659595556;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9c0e3fd277bb155ee9b8d27469bbd3f5855b94', '37.111.219.232', 1659607818, '__ci_last_regenerate|i:1659607818;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659601074;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5fbc5e0148b06f2a61b1f7e4d1555a807b4d055', '37.111.219.232', 1659610217, '__ci_last_regenerate|i:1659610217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659610210;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ddc533f73e29516d5c3d799f8b9f327d4b82e2f', '37.111.219.232', 1659615576, '__ci_last_regenerate|i:1659615576;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659615567;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c7b6de6dd786a534bbb70eaff42b0438073cc5', '37.111.219.232', 1659618543, '__ci_last_regenerate|i:1659618543;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659615577;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb7a629041fa5870e1956be27269c701ae41b23', '37.111.219.232', 1659620249, '__ci_last_regenerate|i:1659620249;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659620243;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129ad3ab7f36b35243c72a90e0200a11cf748dae', '37.111.219.232', 1659622183, '__ci_last_regenerate|i:1659622183;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659622180;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf5b52313f3a84ac3d55889daa58c98187459fa', '37.111.219.232', 1659622923, '__ci_last_regenerate|i:1659622923;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659622183;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73da4c73fa9e8861e918fcbe394f589d4600d7c9', '37.111.219.232', 1659623379, '__ci_last_regenerate|i:1659623379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659623373;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3427e927715db1b47158ce2cb5474b221aa46d5', '37.111.219.232', 1659624973, '__ci_last_regenerate|i:1659624973;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659624786;register_id|s:3:\"146\";cash_in_hand|s:8:\"205.0000\";register_open_time|s:19:\"2022-08-03 19:23:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6af525adfd9dcd3350dcb87c28b6b2c5c50458', '37.111.219.232', 1659625265, '__ci_last_regenerate|i:1659624973;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659522330\";last_ip|s:14:\"37.111.219.223\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659625265;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65327c5108e878d92c704499d9b17e06c49a6295', '44.208.99.167', 1659646806, '__ci_last_regenerate|i:1659646806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b2c980c629c143b1886406b742cb95f7119e07', '44.208.99.167', 1659646810, '__ci_last_regenerate|i:1659646810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab38ae2644c262073244387d1b60f99f9e57d46c', '44.208.99.167', 1659646811, '__ci_last_regenerate|i:1659646811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08117ed2ffd017763432e12dffacbd63f7fb930f', '44.208.99.167', 1659646877, '__ci_last_regenerate|i:1659646877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee19040473694881c42751af659c1f3a1391497', '44.208.99.167', 1659646877, '__ci_last_regenerate|i:1659646877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a778facebf625e6daea3ccba216205ebe98baa32', '198.235.24.140', 1659650214, '__ci_last_regenerate|i:1659650214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953da515d2bded75fc77830584f5f68155dc7576', '34.146.111.82', 1659651279, '__ci_last_regenerate|i:1659651279;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe5afa231e1adb8e289ecf0453731477d522342', '34.146.111.82', 1659651281, '__ci_last_regenerate|i:1659651281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd62b7e3146ac8f162b4f71515ff5c530f58a3e0', '34.146.111.82', 1659651282, '__ci_last_regenerate|i:1659651282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907742a6a8585eaa575187a2c09f978638c18124', '34.146.111.82', 1659651282, '__ci_last_regenerate|i:1659651282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b43868c73882ccf3d193f3e44db3bcf12a24af', '198.235.24.137', 1659653247, '__ci_last_regenerate|i:1659653247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e1a396671c7a3d1edcab182efa3eb7019e8d25', '37.111.218.78', 1659675223, '__ci_last_regenerate|i:1659675223;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659674023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d863af5031009fffa7310c8a5f4802fc78ba0d74', '37.111.218.78', 1659675993, '__ci_last_regenerate|i:1659675993;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659675975;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";error|s:126:\"Access Denied! You don\'t have right to access the requested page. If you think, it\'s by mistake, please contact administrator.\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363c13c32c8f1be5ad2702a9a9fe375a3066dfe2', '37.111.218.78', 1659676818, '__ci_last_regenerate|i:1659676818;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659676010;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29cf002b298ed0cb060d2266bcf13ec3c97aee9', '37.111.218.78', 1659677411, '__ci_last_regenerate|i:1659677411;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659676823;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be6523b972227fbeaa36b8056f027d24d5af9f91', '37.111.218.78', 1659678072, '__ci_last_regenerate|i:1659678072;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659676823;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da48ea17d9766e53ff7d49491eb8495507842770', '37.111.218.78', 1659682880, '__ci_last_regenerate|i:1659682880;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659678072;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d3124e1acc8b05180d6b4896fc094bbf283825', '198.235.24.32', 1659682482, '__ci_last_regenerate|i:1659682482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fe57df8fabc14b48a3074dfaf47768a96a5cf3', '37.111.218.78', 1659684887, '__ci_last_regenerate|i:1659684887;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659684883;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e7584969a9850ef915cd96a09ff08beb4aa5e2', '37.111.218.78', 1659685729, '__ci_last_regenerate|i:1659685729;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659685080;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32db1d23537da47646b064b1c39978f64094831e', '37.111.218.78', 1659686215, '__ci_last_regenerate|i:1659686215;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659685774;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2076dcd6713a55aafd22edc69f2dac907b3f46', '37.111.218.78', 1659691510, '__ci_last_regenerate|i:1659691510;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659686216;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73be8573cf43e17790bc6bc6b0ae631885905c58', '37.111.218.78', 1659691920, '__ci_last_regenerate|i:1659691920;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659691658;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b5f58b8e3c0a70e38db23e9b87e88e39d7d0a3', '37.111.218.78', 1659694219, '__ci_last_regenerate|i:1659694219;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659694210;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0644f221779205d9bc34b54fcb1b1af632bbff22', '37.111.218.78', 1659701389, '__ci_last_regenerate|i:1659701389;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659694219;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7746b19af9ed4e5bec2ed8d9982b36c6d8d78844', '37.111.218.78', 1659702773, '__ci_last_regenerate|i:1659702773;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659702765;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed896513e3cf48734039c3d6906558080d99246', '37.111.218.78', 1659704706, '__ci_last_regenerate|i:1659704706;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659704680;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166c5b2ba48925983ed786bfc0119e1106999ee7', '37.111.218.78', 1659705931, '__ci_last_regenerate|i:1659705931;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659704680;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69b1dca46d9761adab8890ca1bd8065dbb266a6', '37.111.218.78', 1659707408, '__ci_last_regenerate|i:1659707408;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659706170;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7a2febbd76d489780d84b3f3c86003d0c77943', '37.111.218.78', 1659707795, '__ci_last_regenerate|i:1659707795;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659707548;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69aed26613b6ef46892a4cc97356172507069c73', '37.111.218.78', 1659708281, '__ci_last_regenerate|i:1659708281;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659708164;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed627c17eeb8ac0c9c066075d4fdce95be676848', '37.111.218.78', 1659708616, '__ci_last_regenerate|i:1659708616;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659708593;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147fec5785cf0e513224d7a12cebd3d1fd36a43b', '37.111.218.78', 1659710689, '__ci_last_regenerate|i:1659710689;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659708616;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79becdb9c888a796232458df1b926515c0309b0', '37.111.218.78', 1659711036, '__ci_last_regenerate|i:1659711036;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659710962;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d3e061ee6e1d1b5865f36056e94c79838f6105', '37.111.218.78', 1659711554, '__ci_last_regenerate|i:1659711554;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659711468;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8a731dab207960088e135725c46d383f57ccff', '37.111.218.78', 1659712017, '__ci_last_regenerate|i:1659712017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659712013;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd723f1e93e60ac7c3caac0f3d4154a255bf755f', '37.111.218.78', 1659712068, '__ci_last_regenerate|i:1659712017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659588288\";last_ip|s:14:\"37.111.219.232\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659712068;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeee8045561072fbf882ea4d3c682338da8fd613', '198.235.24.6', 1659719365, '__ci_last_regenerate|i:1659719365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df52213c3724b8b83efcd1c9cc4b2840c258c825', '116.204.230.18', 1659754773, '__ci_last_regenerate|i:1659754587;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659453762\";last_ip|s:14:\"116.204.230.21\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('617a2f168a35b3670c49be06c4d6ee9641b5b3e1', '37.111.217.69', 1659760795, '__ci_last_regenerate|i:1659760795;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659673896\";last_ip|s:13:\"37.111.218.78\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659760694;register_id|s:3:\"147\";cash_in_hand|s:9:\"4320.0000\";register_open_time|s:19:\"2022-08-04 21:01:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d70bb2284832003da2339c31ade433462ede7b', '37.111.217.69', 1659764287, '__ci_last_regenerate|i:1659764287;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659673896\";last_ip|s:13:\"37.111.218.78\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659764215;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf71209f5ebe29bec371c764b557b63ea45bc09e', '37.111.217.69', 1659764302, '__ci_last_regenerate|i:1659764287;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659673896\";last_ip|s:13:\"37.111.218.78\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659764302;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afeef2a98ae754ccade0ce9944a7d48b79ee86e', '37.111.217.69', 1659771860, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('725805a3ee18816086e62ead5c7b3b76850b1acb', '37.111.217.69', 1659772270, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659772270;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659771948;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d107b98b73222b5f66f81d374d597eb6ec09c9', '37.111.217.69', 1659779366, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659779366;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659779220;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328c7218572c3a46c39a9c3e0ac65be532f02399', '37.111.217.69', 1659781244, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659781244;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659781230;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('864fbbf9e880138c4722cbd79f99892c28d3ecbe', '116.204.230.22', 1659787126, '__ci_last_regenerate|i:1659787126;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659754597\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6db2995747f6628c260ba3570f9dc0f71247e6', '37.111.217.69', 1659785055, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659785055;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659781244;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21c02de6e3a5dc59db3ed9d420892e08e67051c', '37.111.217.69', 1659785626, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659785626;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659785550;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9caa9c3d85fa5d9c64da7e3bad68db49277a70', '37.111.217.69', 1659786925, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659786925;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659785626;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6263f89b020b58014c514e11c309b65298a7997', '198.235.24.133', 1659786144, '__ci_last_regenerate|i:1659786144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1816a61e7aa54c27f681b2e7347a850a34b246f', '37.111.217.69', 1659787739, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659787739;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659787734;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b7e71dd2037f5055c3808811ceb4dbe77fab9dc', '116.204.230.22', 1659787126, '__ci_last_regenerate|i:1659787126;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659754597\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fde80913c389a28b5c7e42bdca0d96cce0ee8f9', '37.111.217.69', 1659789054, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659789054;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659789050;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bdf80728e4420e7257ff2852678553823d418ff', '37.111.217.69', 1659789396, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659789396;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659789389;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4553fed7ac9cd66b634f47ddc0b4f97e020a1ab4', '37.111.217.69', 1659793240, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659793240;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659793208;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7c2d8a3a0b4a4ff9f2f9657f679276fa22b9f2', '116.204.230.19', 1659789939, '__ci_last_regenerate|i:1659789939;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659510429\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72001e2c58eb5b920170a5d7988d1e25f60cc1d6', '116.204.230.19', 1659790263, '__ci_last_regenerate|i:1659790263;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659510429\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aebc2a72905dcf2920a75e748c7e3309c99bb649', '116.204.230.19', 1659790694, '__ci_last_regenerate|i:1659790694;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659510429\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8604c1d309b544dfebb5be4b16f2e85d41662415', '116.204.230.19', 1659791179, '__ci_last_regenerate|i:1659791179;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659510429\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cc522c3ecd555bdb27bad608be9f4d38165be5', '116.204.230.19', 1659791179, '__ci_last_regenerate|i:1659791179;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659510429\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1665e5cfb0b8553ae1a538b77849f4b361a59ab4', '37.111.217.69', 1659793698, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659793698;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659793241;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f38ffcd1d55f2fdeb4cb06999c9fc1dfc03577cb', '37.111.217.69', 1659795768, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659795768;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659793950;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a543b0e117a29e00a1ffe7ce35b2ce77b934a18', '198.235.24.30', 1659794972, '__ci_last_regenerate|i:1659794972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4b116fc9f5e10935331bf7958a2b90cc007c65', '198.235.24.30', 1659794975, '__ci_last_regenerate|i:1659794975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032dc681221a32f5f19a8915ab64a08ad27fe179', '198.235.24.30', 1659794975, '__ci_last_regenerate|i:1659794975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6882eef3529cc6a56f219bc1da3918cdc5283c', '37.111.217.69', 1659796937, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659796937;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659796920;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e016aa449449bfef7454b47a4b5c393bafe7c32', '37.111.217.69', 1659797623, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659797623;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659797618;register_id|s:3:\"148\";cash_in_hand|s:10:\"10060.0000\";register_open_time|s:19:\"2022-08-06 10:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822c4cae3fae03f6a4c010ae9476da1080703c7f', '37.111.217.69', 1659797646, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1659797623;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659760129\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659797646;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d83f30e8b6e741db5427865a4899ffe56c6791e', '5.189.128.189', 1659803304, '__ci_last_regenerate|i:1659803304;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f3a588de21d1df040d1d6c0b2b036d2605befb', '5.189.128.189', 1659803305, '__ci_last_regenerate|i:1659803305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147fa25f9dfb7cca471b9edddfb25254512d0d4f', '5.189.128.189', 1659803305, '__ci_last_regenerate|i:1659803305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('636abb400a44067e7d08a380859708652a444ced', '5.189.128.189', 1659803305, '__ci_last_regenerate|i:1659803305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fff0b8fd97a14f087a7b5068af482584d2b3544', '116.204.230.29', 1659835140, '__ci_last_regenerate|i:1659835111;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659780452\";last_ip|s:14:\"116.204.230.22\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee155f77a16f01e085b228bfe0162e3b2c0127cf', '116.204.230.29', 1659844248, '__ci_last_regenerate|i:1659844248;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659835121\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f0f001db5fbcfcbbdecaf51171998000053f0b', '116.204.230.29', 1659844553, '__ci_last_regenerate|i:1659844553;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659835121\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c6fef8a9444f10e893a07c4f76b36d47a15703', '116.204.230.29', 1659844870, '__ci_last_regenerate|i:1659844870;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659835121\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1953f91db4578e22e6f2cd2a17c06a730262c4ef', '167.94.138.119', 1659844829, '__ci_last_regenerate|i:1659844829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f47d1f12c097418a02c0e3b6ba5257fd662faa', '167.94.138.119', 1659844829, '__ci_last_regenerate|i:1659844829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eace743df3ea774fdac064c874d866fe595e3b37', '167.94.138.119', 1659844829, '__ci_last_regenerate|i:1659844829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7885f2d1e82bde78abf3a6b5defd36a939cdb2f0', '167.94.138.119', 1659844829, '__ci_last_regenerate|i:1659844829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5721c272965a9e756f59d960fbfd503fd98037af', '167.94.138.119', 1659844829, '__ci_last_regenerate|i:1659844829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be43ffe7942f257c0ec42c4c2ccb98efe8ddae1', '167.94.138.119', 1659844829, '__ci_last_regenerate|i:1659844829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b837a0143d084fb7e8727d820fc97f58878b0c5', '116.204.230.29', 1659845214, '__ci_last_regenerate|i:1659845214;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659835121\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d7c1fea885b4c6efc50f5377de60c9c0cf8122', '116.204.230.29', 1659845592, '__ci_last_regenerate|i:1659845592;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659835121\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874fe5390bfcd973e4579c7cb9e41232e50ec7d0', '116.204.230.29', 1659845860, '__ci_last_regenerate|i:1659845592;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659835121\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee39b693897c16db55ad7d931b305c64784b63a', '37.111.217.58', 1659850275, '__ci_last_regenerate|i:1659850275;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14955fc69571a68e8dd5043cc0b0f3a3512934eb', '37.111.217.58', 1659852839, '__ci_last_regenerate|i:1659852839;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659852833;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644cfba0acf64bf022cc3adfbfdb3aba78a76a1c', '37.111.217.58', 1659853504, '__ci_last_regenerate|i:1659853504;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659853481;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9c7515e07e4f3ad8bd4041f82edcde44b34ba3', '37.111.217.58', 1659853911, '__ci_last_regenerate|i:1659853911;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659853902;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ee56e9fba93eb2286b72e3da03ba6b1ac96e1b', '37.111.217.58', 1659856150, '__ci_last_regenerate|i:1659856150;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659856143;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef23f9213508e78743291de078378a8e1f7d8b0d', '37.111.217.58', 1659862799, '__ci_last_regenerate|i:1659862799;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659861432;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('278240d9b2355bf50bad671221707213f069aafb', '116.204.230.21', 1659857689, '__ci_last_regenerate|i:1659857689;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20e7ddf0cbe6e7b9cf4defe964e7dcb5b711105', '116.204.230.21', 1659857030, '__ci_last_regenerate|i:1659857030;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50008671ebe53e40b9328cede2d967a9a09a5a3', '116.204.230.21', 1659858433, '__ci_last_regenerate|i:1659858433;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b49605315f6747cc6bd518e59427c81c66f68c', '116.204.230.21', 1659858773, '__ci_last_regenerate|i:1659858773;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ec3471ef0f3b7f163dd9b705ca5416f8e8dd75', '116.204.230.21', 1659862766, '__ci_last_regenerate|i:1659862766;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d8b6c0bd5045f370969613e2ebc5a0d03589bd', '116.204.230.18', 1659863120, '__ci_last_regenerate|i:1659863120;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2584e3f578cba9a6307096a5a1f2cf7fb04ebf62', '37.111.217.58', 1659864025, '__ci_last_regenerate|i:1659864025;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659862964;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ecc3fe02ec470c13fbd0a340a4ebe7a4374974d', '37.111.210.239', 1659864727, '__ci_last_regenerate|i:1659864727;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0215f4fc0773c7259d3cbc9a4e8f43055fa0ab5d', '37.111.217.58', 1659865196, '__ci_last_regenerate|i:1659865196;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659865191;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0729377a6fb5a43e5ea16f0bb59e3e035d83419e', '37.111.210.239', 1659865320, '__ci_last_regenerate|i:1659865320;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04216f4fe02419a41208fdf7928e98b8c5fd7c79', '37.111.217.58', 1659865543, '__ci_last_regenerate|i:1659865543;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659865330;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e3c2701665d518e57011b78e3dd5790ab27cf2', '116.204.230.18', 1659869934, '__ci_last_regenerate|i:1659869934;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dbde86c5058ea30641562e60c75fd19010cb6cd', '37.111.217.58', 1659867565, '__ci_last_regenerate|i:1659867565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659865585;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c8bbc2ed700eb54dff74609324fe8e28c1efc3', '37.111.217.58', 1659870396, '__ci_last_regenerate|i:1659870396;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659870392;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef36ee7912009e8392db05c12ddb9f3b341f5c73', '116.204.230.22', 1659870259, '__ci_last_regenerate|i:1659870259;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ae7691d179cc2d1ab68bd60452d4a35dac6719', '116.204.230.22', 1659870618, '__ci_last_regenerate|i:1659870618;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fb8488c631c1e33e38930865dca02e841db67e', '37.111.217.58', 1659872496, '__ci_last_regenerate|i:1659872496;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659870397;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bed15100dfbc0f385161d9e8585bc196986b9277', '116.204.230.22', 1659870982, '__ci_last_regenerate|i:1659870982;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6306748f34843076ab05c6382ada4cdab9f7ce3f', '116.204.230.22', 1659872583, '__ci_last_regenerate|i:1659872583;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddb962bbbeaf6a6955cdf22774cbc4f46c276b00', '37.111.217.58', 1659875219, '__ci_last_regenerate|i:1659875219;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659875200;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc90e7a231a1a8fc9af72609950b0474039745d2', '116.204.230.22', 1659873061, '__ci_last_regenerate|i:1659873061;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d014a8c7fe2969d8cc3f6f3da9ddc48c95ed8c5d', '116.204.230.22', 1659873719, '__ci_last_regenerate|i:1659873719;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ecbb4d29fa8b462d15af5f31ff8fac11660ce3f', '116.204.230.22', 1659874831, '__ci_last_regenerate|i:1659874831;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1038e8840ec2640e56d5d1a6bca2181bfcbc16d7', '116.204.230.22', 1659876916, '__ci_last_regenerate|i:1659876916;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb9b7d4a42f1a85d0b87e7df721801366c985406', '37.111.217.58', 1659877452, '__ci_last_regenerate|i:1659877452;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659877437;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04cb4d2ef165d0ad0375d77608764e4bcefc1b89', '116.204.230.22', 1659876917, '__ci_last_regenerate|i:1659876916;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659789075\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57524d63d47ba36d9d9e56cd959c7de8fdbd1356', '37.111.217.58', 1659882014, '__ci_last_regenerate|i:1659882014;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659877452;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87db0c0772d3505cabbc110b1d3cb732bb223f2a', '37.111.217.58', 1659882386, '__ci_last_regenerate|i:1659882386;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659882373;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478b1101b2eef46fb989da3710af1b83b26e5a08', '37.111.217.58', 1659882932, '__ci_last_regenerate|i:1659882932;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659882848;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1094e25c45e70b3e92aca595b89c539e1fd264', '37.111.217.58', 1659883742, '__ci_last_regenerate|i:1659883742;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659883736;register_id|s:3:\"149\";cash_in_hand|s:8:\"250.0000\";register_open_time|s:19:\"2022-08-06 20:54:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842e1a76932f6ca4797af43a9e3baad4b878aee9', '37.111.217.58', 1659883779, '__ci_last_regenerate|i:1659883742;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659771902\";last_ip|s:13:\"37.111.217.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659883779;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42592b7c8465a562be047b6bbb4a191afc0169f1', '205.210.31.134', 1659890290, '__ci_last_regenerate|i:1659890290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58eed1efd3a1aeff0c7456975ca035f9d4c6d3e', '205.210.31.134', 1659890292, '__ci_last_regenerate|i:1659890292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d270f253f4efebc6343a3f31541fdfb9c80a528e', '205.210.31.134', 1659890294, '__ci_last_regenerate|i:1659890294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ccccfb6f8235eecf6644053e8e2fc1ed305c53', '205.210.31.135', 1659919932, '__ci_last_regenerate|i:1659919932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1826a850969e0585d77b17e0504653ccb8d4112', '205.210.31.135', 1659919934, '__ci_last_regenerate|i:1659919934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd63341e921c9eae068e30847f99635ab4fc09a', '205.210.31.135', 1659919934, '__ci_last_regenerate|i:1659919934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ebbac92f0ed48de13c95a037115c3b899c554a', '198.235.24.14', 1659925220, '__ci_last_regenerate|i:1659925220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77252f9c26d18491e17c62dab0d595f7383e352e', '198.235.24.14', 1659925222, '__ci_last_regenerate|i:1659925222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345dd855fab20e30131cdb3ee467a3e8f7f9d930', '198.235.24.14', 1659925223, '__ci_last_regenerate|i:1659925223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b666cfed34f04a5076a347e21663155c19d6cc68', '116.204.230.29', 1659927740, '__ci_last_regenerate|i:1659927740;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659843936\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ugaNS2QfqXmkApj7KUnR\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5cf3f7084c8e71d308fdae421f889a6dc664e6', '116.204.230.29', 1659927799, '__ci_last_regenerate|i:1659927740;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659843936\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ugaNS2QfqXmkApj7KUnR\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8674699d4052b4b575181cd6a4620c5d063e812', '37.111.217.157', 1659931877, '__ci_last_regenerate|i:1659931865;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659849873\";last_ip|s:13:\"37.111.217.58\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659931877;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42160f5bcb9d060303c5fbea7b69c7e2595f331', '116.204.230.22', 1659933929, '__ci_last_regenerate|i:1659933929;requested_page|s:15:\"admin/purchases\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659856205\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb56aa97b9bb675d31eda8cad43daff2e00ec5c7', '116.204.230.22', 1659934077, '__ci_last_regenerate|i:1659933929;requested_page|s:15:\"admin/purchases\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659856205\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"1Wx3oVQnLi5fhScw0lE9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b5ef8537a41e9a697022879de2d95435a619169', '37.111.217.157', 1659947177, '__ci_last_regenerate|i:1659947177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3ffab9df554eeab45779c75ee6289193cd5f5b', '116.204.230.24', 1659944326, '__ci_last_regenerate|i:1659944326;requested_page|s:29:\"admin/products/add_adjustment\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659932741\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3efa58ffeacb9ff224c11f4fad5f0be8d366aebd', '116.204.230.24', 1659947978, '__ci_last_regenerate|i:1659947978;requested_page|s:29:\"admin/products/add_adjustment\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659932741\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"ZvG2KdJ8iFaX6UxwAsb1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c64035df92667647e80f14bdfc6d77ff402df1e', '37.111.217.157', 1659947557, '__ci_last_regenerate|i:1659947557;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659947199;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85dd97da7168c655ec37dcf1a16ddd98f0d60b51', '37.111.217.157', 1659950141, '__ci_last_regenerate|i:1659950141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659947557;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b43c5fe1fe1d944db9047cfcd0bda6df7fc91ee6', '116.204.230.24', 1659947978, '__ci_last_regenerate|i:1659947978;requested_page|s:29:\"admin/products/add_adjustment\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659932741\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"ZvG2KdJ8iFaX6UxwAsb1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35abf46368295e8b22cf6e4edab58d3d4f9dac3b', '37.111.217.157', 1659950677, '__ci_last_regenerate|i:1659950677;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659950194;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a006967feeb4694a8845f655fbd862be231dd3', '37.111.217.157', 1659951445, '__ci_last_regenerate|i:1659951445;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659950924;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbedbe538754e0bb43f309e11eb34b4c52b56cc8', '37.111.217.157', 1659952526, '__ci_last_regenerate|i:1659952526;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659950924;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c848b7cccea2ed25cf1a6fc29624f7163cf4235e', '37.111.217.157', 1659952909, '__ci_last_regenerate|i:1659952909;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659952654;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57004cd6906621cba871e523372e3140e3ea92c5', '37.111.217.157', 1659953840, '__ci_last_regenerate|i:1659953840;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659953038;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008d25f45a951a0e3ca17703ba13ad40c996a347', '37.111.217.157', 1659955805, '__ci_last_regenerate|i:1659955805;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659955792;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02b9aa2e429a6b4e5b07935e09f0a08aee5f986', '37.111.215.169', 1659955243, '__ci_last_regenerate|i:1659955211;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659926719\";last_ip|s:14:\"116.204.230.29\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659955230;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5395ef93940741ed4ff38f66e67141ab47c098b7', '37.111.217.157', 1659957163, '__ci_last_regenerate|i:1659957163;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659955805;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b407db6cd4104b656b0fd579cb018c00f94bcbe7', '37.111.217.157', 1659958566, '__ci_last_regenerate|i:1659958566;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659958554;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44846313ff4ac900618b2a389f5ee345292afd7', '37.111.217.157', 1659959171, '__ci_last_regenerate|i:1659959171;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659959045;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc381aed49b24baa3b1feadb675deb551318aa3', '37.111.217.157', 1659960138, '__ci_last_regenerate|i:1659960138;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659959171;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eddefb451947e5f8ce9debf9226562ba5c4f33f', '37.111.217.157', 1659960984, '__ci_last_regenerate|i:1659960984;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659960721;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41997b9e9dad4acb24db204d31e8f3405380f73d', '37.111.217.157', 1659961524, '__ci_last_regenerate|i:1659961524;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659961256;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa5f05eb079bbf73261ebaf496ab9161c8f63ae3', '37.111.217.157', 1659962118, '__ci_last_regenerate|i:1659962118;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659961528;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d607012b84efb20a025b6780d6871f1fccb0b47b', '37.111.217.157', 1659962647, '__ci_last_regenerate|i:1659962647;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659962643;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1bebd3044d550355f47aa66f6f3c38f9f11b81f', '37.111.217.157', 1659963361, '__ci_last_regenerate|i:1659963361;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659962678;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8bc6fa013005a28227c3a19ac48d9bd86d875b', '37.111.217.157', 1659964413, '__ci_last_regenerate|i:1659964413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659963392;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd55a1bedfdedc795b6b678b0b3d40db44538e4', '37.111.217.157', 1659968827, '__ci_last_regenerate|i:1659968827;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659968637;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893354f8965ad43036fe1cc96294f015ee8993f5', '37.111.196.26', 1659965574, '__ci_last_regenerate|i:1659965558;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659955220\";last_ip|s:14:\"37.111.215.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73039b25921a84bc14f94776e2f05367a5bba60a', '37.111.217.157', 1659970257, '__ci_last_regenerate|i:1659970257;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659968828;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e2eef7c3c5d8dfc045c32ec4acef5ab933e8950', '37.111.217.157', 1659970609, '__ci_last_regenerate|i:1659970609;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659970606;register_id|s:3:\"150\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-08-07 20:49:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b47587bae993105e51eeaf6f779f2041b000967', '37.111.217.157', 1659970631, '__ci_last_regenerate|i:1659970609;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659931870\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1659970631;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f58a1d7af45823f9806b9ad50725986b6ab3e4', '35.193.197.89', 1659976572, '__ci_last_regenerate|i:1659976572;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e32893c77d99f255e55a9dbafa7734c06c9954', '35.193.197.89', 1659976573, '__ci_last_regenerate|i:1659976572;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba161b185aa2b2b9bb6a360b559d020440652c10', '35.193.197.89', 1659976573, '__ci_last_regenerate|i:1659976573;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba15cfb64d421285bde0657327508e07ae6da32', '35.193.197.89', 1659976573, '__ci_last_regenerate|i:1659976573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ed80f101b5c25a6ab304d00292996f3fb5047e', '205.210.31.129', 1660005250, '__ci_last_regenerate|i:1660005250;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd32c4522fef7fd8afd9d83bc9d3e53a3e48b95e', '116.204.230.25', 1660009722, '__ci_last_regenerate|i:1660009655;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1659965566\";last_ip|s:13:\"37.111.196.26\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6768dc3bfd57e5bd156993541a7769999d8f447', '37.111.219.178', 1660017768, '__ci_last_regenerate|i:1660017768;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660017736;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9845cbd91d5737be58097972dcfa3ca2fa5db9', '37.111.219.178', 1660019360, '__ci_last_regenerate|i:1660019360;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660018086;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b298ca3fb42f46f59b3b8b230d898ad78f31861', '37.111.219.178', 1660019972, '__ci_last_regenerate|i:1660019972;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660019969;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6266b737cf5e168256d4133d9de127e926ef3dd', '37.111.219.178', 1660023224, '__ci_last_regenerate|i:1660023224;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660023066;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37676affd5005c89ed00380476854817975a3577', '116.204.230.22', 1660023529, '__ci_last_regenerate|i:1660023529;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4dc14c27271682e793c37084cdfbabca8200515', '116.204.230.22', 1660023094, '__ci_last_regenerate|i:1660023094;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db343072fcac23d6c0513ed97272e87d116e203f', '37.111.219.178', 1660024027, '__ci_last_regenerate|i:1660024027;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660023292;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9292c2ce9f300d302e182564130d65d53424bb4f', '116.204.230.22', 1660024120, '__ci_last_regenerate|i:1660024120;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed917d53d4833b70c6f8134432f929437302d13', '198.235.24.149', 1660023947, '__ci_last_regenerate|i:1660023947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1bb05bcdc5183d8e6f1a9e68bb93821b38726bf', '198.235.24.149', 1660023947, '__ci_last_regenerate|i:1660023947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b0c443956c06003e88c53d17a7c5d15f5cdfcb', '198.235.24.149', 1660023948, '__ci_last_regenerate|i:1660023948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307eae638d50cb32b5482693a4558efcfad43bdc', '37.111.219.178', 1660024761, '__ci_last_regenerate|i:1660024761;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660024152;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f1e97f7604a74fb92c5351f3aa5ff0c73f59b13', '116.204.230.22', 1660024504, '__ci_last_regenerate|i:1660024504;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab407fb02c6a2276663df3120040264d60d96911', '116.204.230.22', 1660025574, '__ci_last_regenerate|i:1660025574;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb9fd1960f8b79225c9d8d1262845a495c5262c', '37.111.219.178', 1660025878, '__ci_last_regenerate|i:1660025878;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660025809;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1c1d06ae75de3c721b2802b20a45dc1acb52b0', '116.204.230.22', 1660025916, '__ci_last_regenerate|i:1660025916;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a51ac67f24d6743905587768048db29921c6ff4', '37.111.219.178', 1660027136, '__ci_last_regenerate|i:1660027136;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660027108;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb21c174988ce8e8ac52ffb749534f45c4b34a4', '116.204.230.22', 1660027168, '__ci_last_regenerate|i:1660027168;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a31f8b1c17fc78371fe7758c1367a834a89f80', '37.111.219.178', 1660028584, '__ci_last_regenerate|i:1660028584;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660027137;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6628aa4ea8cbecdce62fd96991f495bd07252d7d', '116.204.230.22', 1660027644, '__ci_last_regenerate|i:1660027644;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c554fe14cda4631e96b42c55000da51a4daddf55', '198.235.24.141', 1660027541, '__ci_last_regenerate|i:1660027541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54a2011d4a5c30f1a10618933b8bb9fb4e5c3f8', '198.235.24.141', 1660027542, '__ci_last_regenerate|i:1660027542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210aee024f2e7975593597e22bcc9f29d4f1500f', '198.235.24.141', 1660027542, '__ci_last_regenerate|i:1660027542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f2e5e86327759ea44261c3f3eb8278cbf5419f', '116.204.230.22', 1660028115, '__ci_last_regenerate|i:1660028115;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca059c9253725e6e28b613b11c18460914f40a3', '116.204.230.22', 1660028416, '__ci_last_regenerate|i:1660028416;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c42d5ef88414337af3a041f794d7ea31c448527', '116.204.230.22', 1660028720, '__ci_last_regenerate|i:1660028720;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976b03a662760a18fc1f1840c894a106c5819134', '37.111.219.178', 1660029057, '__ci_last_regenerate|i:1660029057;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660028666;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688dcbfe0d3349cbfbc9b4c1899d00a3707c7221', '116.204.230.22', 1660029112, '__ci_last_regenerate|i:1660029112;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80868199e3280ad010e16c208f814c4670ce5c8d', '37.111.219.178', 1660034100, '__ci_last_regenerate|i:1660034100;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660034096;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05d17bc0cafb8473a146426c244f83f7799f6e1', '116.204.230.22', 1660029421, '__ci_last_regenerate|i:1660029421;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd10412233c3efc6041f26045bd9fe6f3e59a48', '116.204.230.22', 1660031416, '__ci_last_regenerate|i:1660031416;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ff0ee6741f316e93f4206cf6976fcde65c5a4d', '116.204.230.22', 1660031807, '__ci_last_regenerate|i:1660031807;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa49bae7bb27e153b56597ad278931b2caad5d4', '116.204.230.22', 1660037610, '__ci_last_regenerate|i:1660037610;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328fd4ddee3cc7ba2cbbfbcff9e5354a45a2e250', '37.111.219.178', 1660036764, '__ci_last_regenerate|i:1660036764;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660034264;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1afaf93a9732f95f3c74cc2181fb1946285a3a', '37.111.219.178', 1660039689, '__ci_last_regenerate|i:1660039689;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660036768;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67754e7cec2c264964307271206e02cc7a196a34', '116.204.230.22', 1660043094, '__ci_last_regenerate|i:1660043094;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"VMrR8dmT6JDYh3j0aAIO\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece6bf5d33a99819fbae666ac76c63b1ed88d9d2', '37.111.219.178', 1660040031, '__ci_last_regenerate|i:1660040031;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660039689;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4248d72b8247beada1f1d631ac0547a84132cccb', '37.111.219.178', 1660042467, '__ci_last_regenerate|i:1660042467;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660040327;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61ab3cb5c2427483cd9f6306963643292647dff', '37.111.219.178', 1660042878, '__ci_last_regenerate|i:1660042878;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660042858;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3826162103176e36d048e01b070a8431f9e05fb7', '37.111.219.178', 1660044542, '__ci_last_regenerate|i:1660044542;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660044532;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb896cdbfe85655a0f1dd1b084d17e6cdbbc386c', '116.204.230.22', 1660043582, '__ci_last_regenerate|i:1660043582;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"93UC4egJ7djKTuRmhM6F\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243f0620dddea1b84e732df511d68f86c0240694', '116.204.230.22', 1660044766, '__ci_last_regenerate|i:1660044766;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"93UC4egJ7djKTuRmhM6F\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6784c0703dad802878fce9aa696726fe270b7794', '37.111.219.178', 1660045285, '__ci_last_regenerate|i:1660045285;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660044943;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2755a1b121d0cc21cb21b68f164c5d9cd7f45bd', '116.204.230.22', 1660047803, '__ci_last_regenerate|i:1660047803;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"93UC4egJ7djKTuRmhM6F\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15696df98fc62609ad6dccba34d0b44610f24ee', '37.111.219.178', 1660046480, '__ci_last_regenerate|i:1660046480;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660045286;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a2e7c6a110b6e1f2ab96da7afd16ef3361afbf', '205.210.31.136', 1660045293, '__ci_last_regenerate|i:1660045293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e643ddbae80915dc9f56c38c5f09f0c8ae6b4d03', '37.111.219.178', 1660047213, '__ci_last_regenerate|i:1660047213;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660046492;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b374fa593a97ee2906dc7f60df8fdba27f541711', '205.210.31.158', 1660047126, '__ci_last_regenerate|i:1660047126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f13774e8c70bc07b457feddfcea563fd7e9b5b', '37.111.219.178', 1660047857, '__ci_last_regenerate|i:1660047857;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660047853;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bdf105b5ddf6e2db31b9c8261cfb338edd54d79', '116.204.230.22', 1660049348, '__ci_last_regenerate|i:1660049348;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"bjyh82D6xWrRNc1iETP7\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc43e721425620e120c39642aae8716ad4e1859', '37.111.219.178', 1660048532, '__ci_last_regenerate|i:1660048532;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660048524;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309dbe7acf88efd4238fab71ae2cb754a70109d4', '37.111.219.178', 1660048218, '__ci_last_regenerate|i:1660048218;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660047953;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95da4bb4505d9cd5121d66d470a544dcc4d0014c', '37.111.219.178', 1660050345, '__ci_last_regenerate|i:1660050345;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660050036;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b0135fa70842b74f47062de8b559cdadc7a338', '116.204.230.22', 1660049361, '__ci_last_regenerate|i:1660049348;requested_page|s:29:\"admin/products/print_barcodes\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1659942804\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"bjyh82D6xWrRNc1iETP7\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e638f45bcd9e09f95229730aa13fd9d9bdfaf1', '37.111.219.178', 1660051294, '__ci_last_regenerate|i:1660051294;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660050345;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e1fec3811a1265991901ce3abdfe3eeb2e317b', '37.111.219.178', 1660051683, '__ci_last_regenerate|i:1660051683;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660051636;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1721c330c4d201118e9af265774fc66364a031', '37.111.219.178', 1660052055, '__ci_last_regenerate|i:1660052055;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660052050;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e73301c47a3bb72d8230b639981c80c51673df', '37.111.219.178', 1660053026, '__ci_last_regenerate|i:1660053026;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660052884;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e895a5c7d7bafc8eedb2af6ed57d086c6c0545e1', '37.111.219.178', 1660053456, '__ci_last_regenerate|i:1660053456;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660053026;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fe4950fc55da7a59f2babac221eabb78f0a777', '37.111.219.178', 1660053896, '__ci_last_regenerate|i:1660053896;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660053698;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1de9fbd7316d53b96e207ece7426fc54854734d', '37.111.219.178', 1660054678, '__ci_last_regenerate|i:1660054678;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660054076;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af022fe1f1bb71a9b97557964d951d1d0cd1510', '37.111.219.178', 1660055634, '__ci_last_regenerate|i:1660055634;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660054924;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b703fcdbac1eee0c689a772afe6584efe3600420', '37.111.219.178', 1660056106, '__ci_last_regenerate|i:1660056106;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660056093;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7ad0528a4f64aafa4dcf082e94299d8256f2d7', '37.111.219.178', 1660056482, '__ci_last_regenerate|i:1660056482;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660056442;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acecbeda9a28b836f9afa8900989eb42403f8d5d', '37.111.219.178', 1660056878, '__ci_last_regenerate|i:1660056878;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660056583;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67ea0f4380fe5563a037aeefaa64e5f4b3e2585', '37.111.219.178', 1660057219, '__ci_last_regenerate|i:1660057219;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660056583;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ffe1d04f0d0441d50e5513efa8420e74c95a0e8', '37.111.219.178', 1660057699, '__ci_last_regenerate|i:1660057699;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660057221;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64cdafec10f7951c51bee83f3c2b1a5a0384197d', '37.111.219.178', 1660058607, '__ci_last_regenerate|i:1660058607;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660057771;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6322eebdf696c0132f3e55af3443694099784e', '37.111.219.178', 1660058611, '__ci_last_regenerate|i:1660058607;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1659942642\";last_ip|s:14:\"37.111.217.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660058611;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538481db978c39f4ac347691ffd8707b5acfa79a', '119.30.38.76', 1660062090, '__ci_last_regenerate|i:1660062008;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660009659\";last_ip|s:14:\"116.204.230.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36668bfeb0a7f4ec1e156f14852cb18bf623a168', '116.204.230.25', 1660103505, '__ci_last_regenerate|i:1660103505;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660062015\";last_ip|s:12:\"119.30.38.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5e66108b128a660dd9130ba3e5fcf3d69a823a', '116.204.230.25', 1660103512, '__ci_last_regenerate|i:1660103505;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660062015\";last_ip|s:12:\"119.30.38.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a17e48e4689277d97c1c6f9afeed7cc39eb99c', '37.111.218.57', 1660109040, '__ci_last_regenerate|i:1660109040;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660108998;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd253a97445fddd6f4e2b4231cf0aff30a62366', '37.111.218.57', 1660109991, '__ci_last_regenerate|i:1660109991;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660109978;register_id|s:3:\"151\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-08-08 20:57:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48221dbfb198bb0b3bc5d344f9deac8fad4b5522', '37.111.218.57', 1660111795, '__ci_last_regenerate|i:1660111795;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660111581;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cbe8a34958d7ead9ff4ff314c3d740d460e6f16', '37.111.218.57', 1660112981, '__ci_last_regenerate|i:1660112981;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660111961;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('152fc045849de096c3f8097ec8560996abe0ded4', '116.204.230.26', 1660112210, 'error|s:81:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>admin\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4502e1c4e68ece60a1cc4e8651cec91529835adf', '37.111.218.57', 1660114334, '__ci_last_regenerate|i:1660114334;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660111961;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2209f8e3544292a18a5b29cc0d12fb985272d56a', '37.111.218.57', 1660114681, '__ci_last_regenerate|i:1660114681;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660114501;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a08e1baff1f65a22f4a45e0c6308c68fab010b', '37.111.218.57', 1660115216, '__ci_last_regenerate|i:1660115216;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660115175;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87833b72909cd4b8b9d5e335e7590e00ffa2286b', '37.111.218.57', 1660119942, '__ci_last_regenerate|i:1660119942;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660115503;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3553ce55e8b8f623ef58c8be64e0ff192356dc', '116.204.230.26', 1660116485, 'error|s:110:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>http://pos.otask.us/admin/products\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28798e64e3543ff3befccf108b8084f52c01238', '37.111.218.57', 1660119946, '__ci_last_regenerate|i:1660119942;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660017311\";last_ip|s:14:\"37.111.219.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660119946;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb7b42fe2954fb52e43f9cfb10a6c17d77e5b4f', '198.235.24.34', 1660127556, '__ci_last_regenerate|i:1660127556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dac1ca270dda65c5cd05e94e507a0ed849aa29e', '205.210.31.35', 1660128324, '__ci_last_regenerate|i:1660128324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b3d397b2744cf5b2ddf8d3a23f5a20ac4eb0fc', '37.111.218.57', 1660130393, '__ci_last_regenerate|i:1660130346;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660108731\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660130393;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da4486e8878a8d836c64ebdc2112e17fda106b8', '37.111.218.57', 1660139490, '__ci_last_regenerate|i:1660139490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660130353\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660139481;register_id|s:3:\"152\";cash_in_hand|s:9:\"1560.0000\";register_open_time|s:19:\"2022-08-10 11:40:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f475cb3f220b87794dc3414692082da7dbef05e5', '37.111.218.57', 1660139539, '__ci_last_regenerate|i:1660139490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660130353\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660139539;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe78e463459495da3d0fab9513f912331a6aa45e', '116.204.230.25', 1660149637, '__ci_last_regenerate|i:1660149620;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660097579\";last_ip|s:14:\"116.204.230.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('123eabd834dbe739445a9e9618bcd694eca16b9e', '205.210.31.35', 1660165797, '__ci_last_regenerate|i:1660165797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415fd847d6c06552d0aa5fdc175e4137659af721', '198.235.24.22', 1660165891, '__ci_last_regenerate|i:1660165891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('790e2614b22b472be50637a83abee1afc4c686af', '143.198.13.45', 1660168243, '__ci_last_regenerate|i:1660168243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8f8734c29f93bcc5c7f8295bad8a17cf5f83d3', '167.71.98.57', 1660169312, '__ci_last_regenerate|i:1660169312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b000fbc16e9eac58f98eb7ad00e70981a8afe883', '167.71.190.200', 1660174557, '__ci_last_regenerate|i:1660174557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a3645c4516ecd78b69d50f3c51967c1f48582d', '64.225.62.102', 1660176562, '__ci_last_regenerate|i:1660176562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4bb2674544ed8c38727f475c56eab547b67ae9', '198.235.24.21', 1660178822, '__ci_last_regenerate|i:1660178822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eea2fa5e2ad65bd362bee15303b73c40933af794', '167.248.133.118', 1660189814, '__ci_last_regenerate|i:1660189814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a87a4b3c8e07013a9a4212fc0a79136c946e057', '167.248.133.118', 1660189815, '__ci_last_regenerate|i:1660189815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0609f63d31b282c67e30992d8bcd0113ce3660d', '167.248.133.118', 1660189815, '__ci_last_regenerate|i:1660189815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c28e7ab018f1bbef5d206cb55ffd2776d96d255e', '167.248.133.118', 1660189816, '__ci_last_regenerate|i:1660189816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd632f0c67aeedc01f1109ad483511b5d6a91e3', '167.248.133.118', 1660189816, '__ci_last_regenerate|i:1660189816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5b149f94029085f64534c60c82b4581a447216', '167.248.133.118', 1660189816, '__ci_last_regenerate|i:1660189816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a18f584f54d91881e5f5edde1e7422a637a119d', '198.235.24.21', 1660189821, '__ci_last_regenerate|i:1660189821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd8aae2b6c25ee6cc4dd17c78e6e9b83daebf01', '37.111.217.73', 1660194578, '__ci_last_regenerate|i:1660194578;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660138761\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660194573;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f3443e19fddcb29777e11df0cef26a6307903e', '116.204.230.29', 1660192988, '__ci_last_regenerate|i:1660192777;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660021518\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05e81373aad3ffe2fdf4bbb57ebfdef525dc292', '37.111.217.73', 1660196119, '__ci_last_regenerate|i:1660196119;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660138761\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660194695;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1534e128736ee589008bc1b5ee449d9db113a10a', '37.111.217.73', 1660199172, '__ci_last_regenerate|i:1660196119;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660138761\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660196192;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e58380c9ce52c67e638ff9cc35c150c2145de75', '116.204.230.19', 1660200492, '__ci_last_regenerate|i:1660200462;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660149626\";last_ip|s:14:\"116.204.230.25\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af40aae893adc4f34bf346120dcd50d8fbbaff33', '116.204.230.19', 1660203050, '__ci_last_regenerate|i:1660202870;requested_page|s:23:\"admin/reports/purchases\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660192782\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"t2lr46LKcyOFiuxQwmXg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb25c99693919024d3f71e40d05f2fa173c21b66', '37.111.217.73', 1660210048, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb70846d720e849e941b036e58e4a1c3af506d8', '37.111.217.73', 1660213452, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660213452;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5497da9a1bf5ab1c23d994cd044e78c4104bca7a', '37.111.217.73', 1660217333, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660217333;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660216992;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c28f63a86d720ffcb4a7e1a3accc34de66a642', '37.111.217.73', 1660217949, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660217949;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660217523;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1290e95ed936fe7f8e29b7f42b5cb87f2f2172', '37.111.217.73', 1660218376, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660218376;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660218252;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de510ced404b83926d61add7234766b6abc1f81', '37.111.217.73', 1660219409, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660219409;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660219329;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e63a6ed13eeb625bfd7fb60338ba3639fab4ff6', '37.111.217.73', 1660219814, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660219814;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660219688;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f3452c106a32763266781f2544bc908bbcc3b9', '37.111.217.73', 1660220273, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660220273;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660219830;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0ee1e1e060eaadbfea3bbe721ff4b317c61467', '37.111.217.73', 1660220596, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660220596;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660220564;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be04c02183fa320175628e9477e0fa6ebf99cc24', '37.111.217.73', 1660221527, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660221527;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660220775;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2d608ef0808662b991b697db28eee218f9ce2a', '37.111.217.73', 1660222008, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660222008;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660221689;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a7f812c61192f3a91d2a0b6f082ec4e1202778', '37.111.217.73', 1660222411, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660222411;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660222152;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('331319fc28a2410e394f99cbc501fd3873ec85a4', '37.111.217.73', 1660223105, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660223105;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660222919;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458350ae4beb3bc0c6231a45e4077ac4cb4d2c11', '37.111.217.73', 1660226347, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660226347;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660224394;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93275a68d43b54730d5b9e951fd83691d3132dba', '37.111.217.73', 1660226706, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660226706;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660226417;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13785cc13971ae1ce285c8614a7d8aa9740faf6', '37.111.217.73', 1660227735, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660227735;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660226706;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e6704cf3a77f1993c54aca5ae2aaaf15c677c1', '116.204.230.28', 1660227712, '__ci_last_regenerate|i:1660227678;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660200477\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551fbb173fb6f37a216b28b10a1eadabb9e7355c', '37.111.217.73', 1660228074, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660228074;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660227866;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d823f93edb6de5b23d1d74ef4410ee00a93fec', '37.111.217.73', 1660228432, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660228432;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660228156;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22672db0e4edaca57ecda812d2dc63147fd1d486', '37.111.217.73', 1660229284, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660229284;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660228432;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728118342462c91bf4d5bd433c67b8a8a7182ddf', '37.111.217.73', 1660229699, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660229699;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660229696;register_id|s:3:\"153\";cash_in_hand|s:10:\"12380.0000\";register_open_time|s:19:\"2022-08-10 19:52:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6685876c822d67853c653cce98ba37f42c7e3f', '37.111.217.73', 1660229717, 'requested_page|s:25:\"admin/sales/suggestions/1\";__ci_last_regenerate|i:1660229699;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660192331\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660229717;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87570da8671f40bbfa8573e47ee7d70ee0442ca', '205.210.31.24', 1660253443, '__ci_last_regenerate|i:1660253442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe40b051c13e34d3c3d36cb6c89a29b42d9c17b', '159.203.31.171', 1660255982, '__ci_last_regenerate|i:1660255982;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa17fe8b912c730d3e020f35cf17de8660f43b0', '159.203.31.171', 1660255983, '__ci_last_regenerate|i:1660255983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03a17ce33445bb893e656de13eb4a27b6a3c991', '159.203.31.171', 1660255983, '__ci_last_regenerate|i:1660255983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c922cfd7df2db386c5dae637031b3fa0172a53', '159.203.31.171', 1660255984, '__ci_last_regenerate|i:1660255984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b46dd4fb4c78703d43d721336b514c106287a09b', '205.210.31.9', 1660262146, '__ci_last_regenerate|i:1660262146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa6bc2ee9040a41ef2020f67cae9ca80ff1f113', '198.235.24.35', 1660264858, '__ci_last_regenerate|i:1660264858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a080e369d7ab89821436ab0f0ab1cb2c5633b66d', '205.210.31.12', 1660274609, '__ci_last_regenerate|i:1660274609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145d23fa863f6dc43e9e903838e2049188e72e37', '37.111.218.49', 1660279401, '__ci_last_regenerate|i:1660279401;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660278863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413305fb34bfaf8237f1839f1692ec8437b08a7d', '37.111.218.49', 1660284329, '__ci_last_regenerate|i:1660284329;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660279401;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70793c9b65a030c47007ba9414a08fb9187439aa', '37.111.218.49', 1660285251, '__ci_last_regenerate|i:1660285251;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660279401;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad5b377eab24e625154e1cfbbb120897464a93d', '37.111.218.49', 1660286077, '__ci_last_regenerate|i:1660286077;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660286039;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c926b4b323a8a9a63efa9375cdfbf1d1d647fd36', '37.111.218.49', 1660289960, '__ci_last_regenerate|i:1660289960;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660288225;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad4edd747b1613b4470eedf30d2cab15f0c1cd9', '37.111.218.49', 1660292415, '__ci_last_regenerate|i:1660292415;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660290079;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde27b8cbe9c4f3438c118b1dc4107e7ec0080da', '116.204.230.18', 1660290194, '__ci_last_regenerate|i:1660290113;requested_page|s:29:\"admin/products/add_adjustment\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660202874\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b166f9407496e0a91e67e7538dce12e025ef835', '116.204.230.28', 1660290951, '__ci_last_regenerate|i:1660290936;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660227686\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466dea4ff943523af922276a4106606805ad6bcd', '37.111.218.49', 1660295796, '__ci_last_regenerate|i:1660295796;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660290079;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1d0a1646b61f98d3766d0ab3d7cdf51e3af882', '37.111.218.49', 1660298405, '__ci_last_regenerate|i:1660298405;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660296250;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442e5bc38a9e4d3382c61d5ed07d8f1e682a449f', '37.111.218.49', 1660298718, '__ci_last_regenerate|i:1660298718;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660298556;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a23a24e0f6627f05ea2028a53dd24df577ccd57', '37.111.218.49', 1660299264, '__ci_last_regenerate|i:1660299264;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660299156;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7c7490dd66630c3eeb9ba882e5ad35fc8920b7', '37.111.218.49', 1660301895, '__ci_last_regenerate|i:1660301895;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660300385;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47978151e84ac86385dcb75d7323dac5e2a7892', '37.111.218.49', 1660303946, '__ci_last_regenerate|i:1660303946;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660303380;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4470a2df37ab99647dbd05bf04e929bb1fe46f', '37.111.218.49', 1660305607, '__ci_last_regenerate|i:1660305607;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660305580;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d30b6b3293037d3e846474d9599b571b4f0dbf6', '37.111.218.49', 1660305936, '__ci_last_regenerate|i:1660305936;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660305918;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8cb2027d55e4faa73ae13d953426a25cb0c153', '37.111.218.49', 1660306411, '__ci_last_regenerate|i:1660306411;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660306174;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d09700c6f98f4b544f623138ee59928eb1a6027', '37.111.218.49', 1660306739, '__ci_last_regenerate|i:1660306739;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660306715;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0884781e7ba8d0850f79cb11e487c43a5f5b964', '37.111.218.49', 1660308297, '__ci_last_regenerate|i:1660308297;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660306740;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c26ec7c7f032ca4db463a39f7da8b9e99498e0', '116.204.230.18', 1660307773, '__ci_last_regenerate|i:1660307773;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660290117\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660307600;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e4a45e7f10b2285b4dedd06acde9bc820f7594', '116.204.230.18', 1660308361, '__ci_last_regenerate|i:1660308361;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660290117\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660307600;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1834ca401a66acfe6d3c4655f5aff64cf857b0de', '37.111.218.49', 1660308629, '__ci_last_regenerate|i:1660308629;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660308593;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67cb74267f859cdf3f39a9e88aeb2633b23ff5f', '116.204.230.18', 1660311831, '__ci_last_regenerate|i:1660311831;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660290117\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660307600;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2ddccf69be90fd8aa7adf68bf404f188a6366a', '37.111.218.49', 1660309732, '__ci_last_regenerate|i:1660309732;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660309719;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0e086c8e48c0cc853ca943851788289aae81ca', '37.111.218.49', 1660310226, '__ci_last_regenerate|i:1660310226;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660309732;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a336e0d471e4966f2003391d4110d4af12bc0d76', '37.111.218.49', 1660310793, '__ci_last_regenerate|i:1660310793;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660310763;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a83237a036d16f973e9998fdd618dec685b1a89', '37.111.218.49', 1660311263, '__ci_last_regenerate|i:1660311263;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660311069;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2af6c58d30822ae92e53aa9d704840f1a2e47b', '37.111.218.49', 1660311628, '__ci_last_regenerate|i:1660311628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660311533;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96e16781ecbfd5af768e9d8e7bc6ae3cc212dadb', '37.111.218.49', 1660311948, '__ci_last_regenerate|i:1660311948;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660311746;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ac52162819688c89fc8651011c63abf0e0160a', '116.204.230.18', 1660311852, '__ci_last_regenerate|i:1660311831;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660290117\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660307600;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de91fc39621a6769b70982637ff7f981852185d', '37.111.218.49', 1660312747, '__ci_last_regenerate|i:1660312747;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660312042;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a1d34d70489138efcf8432c47b9602832b9af8', '37.111.218.49', 1660313077, '__ci_last_regenerate|i:1660313077;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660312042;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc08055797bfd9a1a4a98086fab95756a130b19', '37.111.195.198', 1660317345, '__ci_last_regenerate|i:1660317345;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660290941\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4111abd7a0438e9747994097c565798cb912af26', '37.111.218.49', 1660313640, '__ci_last_regenerate|i:1660313640;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660313497;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88234987f7ca5f66aa2ed51645aa06119d51edb7', '37.111.218.49', 1660313954, '__ci_last_regenerate|i:1660313954;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660313830;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dfa37776ea47699fa5cd78fbb95e93f3af9cabf', '37.111.218.49', 1660314521, '__ci_last_regenerate|i:1660314521;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660314142;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc14db4d1a30a88306b0ea876b3c98f35b2b487', '37.111.218.49', 1660315201, '__ci_last_regenerate|i:1660315201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660315099;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d202bb424e948453717b340596a4d1dfd59c9b91', '37.111.218.49', 1660315524, '__ci_last_regenerate|i:1660315524;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660315489;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ec418294412c1c267700da890f86d8d8a716465', '37.111.218.49', 1660317551, '__ci_last_regenerate|i:1660317551;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660315528;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3209908c5a7fe8bcce41aead12fe922446764e7', '116.204.230.28', 1660317417, '__ci_last_regenerate|i:1660317345;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660290941\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660317345;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1dccbaeeb2b2337a6c40659de5fc0ba58137ed8', '37.111.218.49', 1660317559, '__ci_last_regenerate|i:1660317551;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660210324\";last_ip|s:13:\"37.111.217.73\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660317559;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ac72931d8ec99f1f8e0b5c02e74ec80ef34238', '37.46.128.180', 1660330744, '__ci_last_regenerate|i:1660330744;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f2919915aeac5b130773ada303eb008a84c876', '37.46.128.180', 1660330744, '__ci_last_regenerate|i:1660330744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a378cfbf4bc8a29ee3ca43ac1cc83b1e4340e6a', '37.46.128.180', 1660330744, '__ci_last_regenerate|i:1660330744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b026052afe28d72443c1d1181be98a388fa3e3a', '37.46.128.180', 1660330745, '__ci_last_regenerate|i:1660330745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ea2415a18b82e9dba3cdae5482d758583efc98', '119.30.35.157', 1660357208, '__ci_last_regenerate|i:1660357208;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f19fdf2361ffee8220012566726c922e826734', '119.30.35.157', 1660357357, '__ci_last_regenerate|i:1660357208;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660312877\";last_ip|s:14:\"37.111.195.198\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660357261;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319dd66def90c94925937488fbf1d8e2f24a2c1b', '37.111.219.157', 1660363546, '__ci_last_regenerate|i:1660363546;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660363527;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf1acda2f27076fd653794501316a7fad8f4b00', '37.111.219.157', 1660364293, '__ci_last_regenerate|i:1660364293;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660363768;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a6f0b7cb7fa13573fdab6437d1a703ca1476316', '37.111.219.157', 1660366868, '__ci_last_regenerate|i:1660366868;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660364384;register_id|s:3:\"154\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2022-08-11 20:55:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ddb2979f0a8da9c00fa4a239560d9edd945e4e', '116.204.230.18', 1660367898, '__ci_last_regenerate|i:1660366443;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660307441\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660367898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99090c4eb1bb1d84e9435c9454b4c12350468159', '37.111.219.157', 1660368647, '__ci_last_regenerate|i:1660368647;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660366947;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2978b6464345740f4b0ef4de5567f4b53828d922', '37.111.219.157', 1660370143, '__ci_last_regenerate|i:1660370143;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660368647;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc39f97d6c7be848eb2773a040e77524d268a12c', '37.111.219.157', 1660370937, '__ci_last_regenerate|i:1660370937;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660370149;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52b9e8d6f1ae794e889221903bf7f05cdde28a31', '37.111.219.157', 1660374472, '__ci_last_regenerate|i:1660374472;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660370976;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7196ae21b68d70213fcaa77cf4f939f7db6326e', '37.111.219.157', 1660376960, '__ci_last_regenerate|i:1660376960;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660370976;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42bd605a986e551b46bb6cfba00372dd68a46b9', '37.111.219.157', 1660377812, '__ci_last_regenerate|i:1660377812;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660377797;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1013bffd68bca65cab9736ee1997d1ee26292b25', '116.204.230.18', 1660377653, '__ci_last_regenerate|i:1660377639;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660366450\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f17f6d76214261c8ba30af8d46deb5626659b8', '37.111.219.157', 1660379019, '__ci_last_regenerate|i:1660379019;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660377813;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90032bde0c2688e4338025dd1e11b83e00d256a0', '116.204.230.28', 1660378970, '__ci_last_regenerate|i:1660378955;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660357208\";last_ip|s:13:\"119.30.35.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86634496de05dba93f7abd07d51c45b0c2b29eaf', '37.111.219.157', 1660379613, '__ci_last_regenerate|i:1660379613;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660379090;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5cee13d565ad2072f4f7d3e7fc4e00bb4681235', '37.111.219.157', 1660380574, '__ci_last_regenerate|i:1660380574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660380520;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9414d8bc1e38749a30bd322ea67f563d4dcfd34', '37.111.219.157', 1660381577, '__ci_last_regenerate|i:1660381577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660381464;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400db628925cfcd5d5d111dedfd0fdecc6c61036', '37.111.219.157', 1660382004, '__ci_last_regenerate|i:1660382004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660381811;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a32d5b43706d913a46ec94c9d177165fd8922f', '37.111.219.157', 1660382367, '__ci_last_regenerate|i:1660382367;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660382015;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f2caa1d1354b6429412c3a42fbdbf786048f06', '37.111.219.157', 1660383245, '__ci_last_regenerate|i:1660383245;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660382629;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b10ccdcff58f6b50f14c67b672fb0b59ae9b79', '37.111.219.157', 1660383564, '__ci_last_regenerate|i:1660383564;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660383542;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3df2e0bed1cfcd723268afb05e0d90a2b685be', '37.111.219.157', 1660386901, '__ci_last_regenerate|i:1660386901;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660386817;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341a406eb7e4e32b2a1fd6fbabd79a6862ecc948', '37.111.219.157', 1660387469, '__ci_last_regenerate|i:1660387469;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660386902;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f53ff7b25aa9078ca595a77ba56f26c699f200', '37.111.219.157', 1660388620, '__ci_last_regenerate|i:1660388620;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660387479;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201b3e54107479e6777c18229412d417fbc509b3', '37.111.219.157', 1660389076, '__ci_last_regenerate|i:1660389076;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660388694;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f62e0471b72bb8b73051cb0ef6706472bb4de772', '37.111.219.157', 1660391032, '__ci_last_regenerate|i:1660391032;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660391027;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38b6d49368198b11fc035899fb3a579e364f9ca', '119.30.35.157', 1660393001, '__ci_last_regenerate|i:1660393001;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660378962\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7f6f34958a7d9bddcab8096fd571f93a046fed', '37.111.219.157', 1660392090, '__ci_last_regenerate|i:1660392090;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660392063;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3311d410c8b1c2aaa0383f50f1f424abc1e4b745', '116.204.230.18', 1660391530, '__ci_last_regenerate|i:1660391514;requested_page|s:29:\"admin/reports/quantity_alerts\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660377645\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3921e0e78e5521f691e7bb08ddadb4fd3ede9619', '37.111.219.157', 1660394661, '__ci_last_regenerate|i:1660394661;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660392091;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158afbd3a0a39b0a81ec47e33359def4f8d2ac21', '119.30.35.157', 1660393003, '__ci_last_regenerate|i:1660393001;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660378962\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edc1cc7c8e0c69712e4c22050628a05ddcc22b5', '37.111.219.157', 1660396438, '__ci_last_regenerate|i:1660396438;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660395444;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f890add07b8062b0ad28e9eae7be6515a7d60b2b', '37.111.219.157', 1660397073, '__ci_last_regenerate|i:1660397073;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660396566;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e17799036be759ea6a87568bdb841002588250', '37.111.219.157', 1660401008, '__ci_last_regenerate|i:1660401008;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660399882;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb1ac4a30a8051c083deb83962301708303cdae', '116.204.230.18', 1660399678, '__ci_last_regenerate|i:1660399678;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660391517\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d229a40643a81959d90b3ad1672b4ede2281aa01', '116.204.230.18', 1660400424, '__ci_last_regenerate|i:1660400424;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660391517\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b20996ac9a0d074e018524b51f3a489cf30879', '116.204.230.18', 1660400877, '__ci_last_regenerate|i:1660400877;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660391517\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b07bad2a841cf3e821bb8e4795fbc8a427cd6af0', '116.204.230.18', 1660400942, '__ci_last_regenerate|i:1660400877;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660391517\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b998dce43fd89e5c37f60b6c77640d37c2d00350', '37.111.219.157', 1660401793, '__ci_last_regenerate|i:1660401793;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660401776;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f400ef34e8092a2a36e58456dd5fa1b09c0376', '37.111.219.157', 1660402238, '__ci_last_regenerate|i:1660402238;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660402109;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b753a9dd88a312f364af429cea037e430123d9c3', '37.111.219.157', 1660402632, '__ci_last_regenerate|i:1660402632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660402489;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22601667a022d0557bc1f2f5a151bb560e984316', '37.111.219.157', 1660402635, '__ci_last_regenerate|i:1660402632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660278855\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660402635;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eab2165b248e89e84aef0a7c14f002ed4f1af68', '119.30.35.157', 1660403076, '__ci_last_regenerate|i:1660403067;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660390110\";last_ip|s:13:\"119.30.35.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2df858f24cdef7b95123df167c65db74461959', '116.204.230.28', 1660405994, '__ci_last_regenerate|i:1660405899;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660403075\";last_ip|s:13:\"119.30.35.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab920bb7cfc2e5b035a13eff96ec3c7c8cdbd0f', '198.235.24.159', 1660418320, '__ci_last_regenerate|i:1660418320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f822f534cb1d56e6e9084ec8cbd71f356a4d7f16', '198.235.24.159', 1660418322, '__ci_last_regenerate|i:1660418322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aef337c83a49ed986e18486170135c0214468ee9', '198.235.24.159', 1660418322, '__ci_last_regenerate|i:1660418322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abd13a0ae2a61742478e655ace482b31041c963', '37.111.215.229', 1660446169, '__ci_last_regenerate|i:1660446168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188c1066a7fbda7a363c1b35c67e525dd27e239d', '37.111.218.76', 1660453363, '__ci_last_regenerate|i:1660453363;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660453279;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('270165ced56cf33057817866c71e2e4d17f2ee25', '37.111.218.76', 1660453952, '__ci_last_regenerate|i:1660453952;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660453940;register_id|s:3:\"155\";cash_in_hand|s:9:\"1310.0000\";register_open_time|s:19:\"2022-08-13 11:02:26\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4f50f0dcc500de7638c9ea188a59e93b9c7bb1', '37.111.218.76', 1660457166, '__ci_last_regenerate|i:1660457166;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660456738;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04fca88284236ea0afa096b51892d81e3c8e8f73', '116.204.230.18', 1660455507, '__ci_last_regenerate|i:1660455507;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660399337\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZVezBEsOdlXq19gChMjf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d49c031030835302f11de9da040fce670438b52', '116.204.230.18', 1660455823, '__ci_last_regenerate|i:1660455823;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660399337\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZVezBEsOdlXq19gChMjf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafdb0652dfe5e8f1bb8bb44d814dad467ae8ab2', '116.204.230.18', 1660458135, '__ci_last_regenerate|i:1660458135;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660399337\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZVezBEsOdlXq19gChMjf\";last_activity|i:1660455879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c4809c1701a03ccce8b24c5dc2d3110751e04e', '37.111.218.76', 1660458931, '__ci_last_regenerate|i:1660458931;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660457166;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ddac7812b5cb9a44973c3d228d50e9ba69952c', '116.204.230.18', 1660459602, '__ci_last_regenerate|i:1660459602;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660399337\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZVezBEsOdlXq19gChMjf\";last_activity|i:1660455879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd2965650bcadb71b4d0b7ec62688ec86a17202', '150.95.113.161', 1660458584, '__ci_last_regenerate|i:1660458584;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca46e76007c0a96cda0a8fdf471227407ce17ed', '150.95.113.161', 1660458587, '__ci_last_regenerate|i:1660458587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85a918316f8a09ae0d0ff76fed91c9a91818b60', '150.95.113.161', 1660458588, '__ci_last_regenerate|i:1660458588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447ab55c906df9a2bb8ecac4bdb257e6d8544027', '150.95.113.161', 1660458588, '__ci_last_regenerate|i:1660458588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca7c097b64c3364382d8fd28818ea2f4e9dadd6d', '37.111.218.76', 1660460376, '__ci_last_regenerate|i:1660460376;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660460371;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e886d14dc4d36d77e3f6746cb1d0a146cccd5fd', '116.204.230.18', 1660459626, '__ci_last_regenerate|i:1660459602;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660399337\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZVezBEsOdlXq19gChMjf\";last_activity|i:1660455879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce96b038d2f092cfceaeb9c9851120be1f08946c', '37.111.218.76', 1660461979, '__ci_last_regenerate|i:1660461979;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660460377;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bac56882c0459caa120451605bca22795e1c3f6', '37.111.218.76', 1660467290, '__ci_last_regenerate|i:1660467290;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660467155;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae67a958bb7cba79b6f21cd16225a771d03a22b', '116.204.230.28', 1660464884, '__ci_last_regenerate|i:1660464864;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660405902\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a57d997c66af1e41c47e23cc38cb567925d4927a', '37.111.218.76', 1660471876, '__ci_last_regenerate|i:1660471876;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660467155;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53975d03e28382e44d5c6ba735140407305053fd', '37.111.218.76', 1660475783, '__ci_last_regenerate|i:1660475783;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660471912;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c996faa4bb1e84bd85dda8b4759105d89575d35', '37.111.218.76', 1660478700, '__ci_last_regenerate|i:1660478700;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660478537;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2337f5f80688daec8522e613bd7344e23bbc7426', '116.204.230.28', 1660480707, '__ci_last_regenerate|i:1660480707;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660464872\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b2cfca109d4abe43dad1229d203b559807bab0', '37.111.218.76', 1660483181, '__ci_last_regenerate|i:1660483181;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660483177;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78afaf677a8b806f0a1671f04b9fb91150d2ebdf', '116.204.230.28', 1660480715, '__ci_last_regenerate|i:1660480707;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660464872\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89fb647ad8e78a1ff00e2540dae6cead4818b912', '116.204.230.28', 1660487165, '__ci_last_regenerate|i:1660487165;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660476549\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a919b1a541dd40df0e20df04c1fb478dbb346df2', '37.111.218.76', 1660484872, '__ci_last_regenerate|i:1660484872;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660483181;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9639ccd08740335c5a16c51a0b2fc54d28d0d7', '37.111.218.76', 1660485354, '__ci_last_regenerate|i:1660485354;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660485095;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f436a262d0af5080c38100d2cb04991015ddad1', '116.204.230.18', 1660485321, '__ci_last_regenerate|i:1660485321;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660454954\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032615a1338aec9472d4f2fd9a95e2868eb0783e', '116.204.230.18', 1660486498, '__ci_last_regenerate|i:1660486498;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660454954\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c80a9ff4f71d12d33b53cb9cb7b40fa9c69deb', '37.111.218.76', 1660488610, '__ci_last_regenerate|i:1660488610;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660485375;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e955f913330f13178a709a9d637892f535e28f', '116.204.230.18', 1660486499, '__ci_last_regenerate|i:1660486498;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660454954\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af36cf78b94d373d36fed4a6fe5b60f85c1a1a2', '119.30.32.216', 1660487189, '__ci_last_regenerate|i:1660487165;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660476549\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da0fbdbe8af79971256f064d6bb054aa607f739', '37.111.218.76', 1660489164, '__ci_last_regenerate|i:1660489164;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660489030;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda2b299c13efa8f8d09fb25fd5af45a92dbb29e', '37.111.218.76', 1660489522, '__ci_last_regenerate|i:1660489522;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660489508;register_id|s:3:\"156\";cash_in_hand|s:9:\"1760.0000\";register_open_time|s:19:\"2022-08-14 11:12:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e31a53eb1f4ce6348d38f97dae1b9400db8bfd2', '37.111.218.76', 1660489550, '__ci_last_regenerate|i:1660489522;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660363134\";last_ip|s:14:\"37.111.219.157\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660489550;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0601a6c162155861dd95bccb7aff0f49a3ce3d', '198.235.24.9', 1660490736, '__ci_last_regenerate|i:1660490736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88096698b144868e96636ddfcb6a6dd88a32f72', '198.235.24.9', 1660490738, '__ci_last_regenerate|i:1660490738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880bf4f3fe26d7ab9c50a76b0ac9085f129ec088', '198.235.24.9', 1660490739, '__ci_last_regenerate|i:1660490739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72dbb227255ee4c02e00c16d80a8ecc0fb1f209e', '116.204.230.28', 1660539292, '__ci_last_regenerate|i:1660539292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096887c9b538bff8e4221bb06a1f22fcf58b8346', '37.111.219.40', 1660540831, '__ci_last_regenerate|i:1660540831;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660540154;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e92ce0b5aa1b7da6f2d407ece20518cb38a4a0', '37.111.219.40', 1660543039, '__ci_last_regenerate|i:1660543039;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660540154;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ecec2a142ddc1d2af0c7ace301841c04e7ecd71', '37.111.219.40', 1660544434, '__ci_last_regenerate|i:1660544434;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660544425;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('870907adaa8e3a68ab424b23cae55e6c70e5dd8f', '37.111.219.40', 1660550631, '__ci_last_regenerate|i:1660550631;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660544441;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8191deb58b768761e48db477a06e79cc8062f45', '37.111.219.40', 1660552318, '__ci_last_regenerate|i:1660552318;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660550673;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881a2553552d94092263f2b76882cd1697f8fdf7', '37.111.219.40', 1660553757, '__ci_last_regenerate|i:1660553757;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660553458;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c104ce1604dc1ccecc2a660663736f2e2090f9', '37.111.219.40', 1660554475, '__ci_last_regenerate|i:1660554475;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660554319;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b94fde64be2535d1aa734f9a59536cc246232da', '37.111.219.40', 1660556913, '__ci_last_regenerate|i:1660556913;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660554476;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7138ec7da213713181a0796d0048709c2248252', '37.111.219.40', 1660559112, '__ci_last_regenerate|i:1660559112;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660559040;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197f1a63b4141657af2a9e31a5eda57366e4effa', '37.111.219.40', 1660559487, '__ci_last_regenerate|i:1660559487;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660559320;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661fd90c56443e0ad1a6bcd0e081125383380215', '37.111.219.40', 1660559808, '__ci_last_regenerate|i:1660559808;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660559772;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bec59031d85dcf34440a134299c01667d12db6e', '37.111.219.40', 1660562579, '__ci_last_regenerate|i:1660562579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660562560;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef12632f1e153b854a06d80db459a71c1e35da8a', '37.111.219.40', 1660566138, '__ci_last_regenerate|i:1660566138;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660562582;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a024e2b7e1e52ae5a20a58836fad4c9396a777b', '116.204.230.18', 1660563952, '__ci_last_regenerate|i:1660563952;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660484980\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c288ec6b2a4ad228d82c95dd34845566aadfeb9f', '116.204.230.18', 1660564272, '__ci_last_regenerate|i:1660564272;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660484980\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4080ecf7e8f9135c238b129c7a0cc7444be0dca9', '116.204.230.18', 1660567203, '__ci_last_regenerate|i:1660567203;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660484980\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"2k9DZ7viJe14ptRqrFy0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b34a2d447d02f56ba062d59feaf29f4a886931e', '37.111.219.40', 1660566662, '__ci_last_regenerate|i:1660566662;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660566375;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72664540861405d2b7320eaf5d8c1949336a48eb', '37.111.219.40', 1660567057, '__ci_last_regenerate|i:1660567057;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660566678;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd89d0a0d327f2619978651e14e3bc3c450e302', '37.111.219.40', 1660567378, '__ci_last_regenerate|i:1660567378;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660567318;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4fcf952af7ed97b7fa3b1a4d894c41e63662ef', '116.204.230.18', 1660567211, '__ci_last_regenerate|i:1660567203;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660484980\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"2k9DZ7viJe14ptRqrFy0\";last_activity|i:1660567211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b18d97d35c00a5c842168741b40da51db7f2f05', '37.111.219.40', 1660568790, '__ci_last_regenerate|i:1660568790;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660567519;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2437fb37d63695625c6eb0c608de3adb8b3235e9', '116.204.230.18', 1660567907, '__ci_last_regenerate|i:1660567820;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660482211\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49cefba29aa965a844613346c1310feda2d7f0bf', '37.111.219.40', 1660569539, '__ci_last_regenerate|i:1660569539;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660569496;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166ba26bf9c51efd76066d0328fd58a15d68bec8', '37.111.219.40', 1660569988, '__ci_last_regenerate|i:1660569988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660569702;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d781f3433b47edb91cc7a5d0c04ebf9f5faa5774', '37.111.219.40', 1660572190, '__ci_last_regenerate|i:1660572190;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660570188;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5136d7546d2afc8a5416bb7d46316b3d2f388de', '37.111.219.40', 1660573409, '__ci_last_regenerate|i:1660573409;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660573349;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ab36f8643d94f7510f0c70eee13e916e6e10cd', '37.111.219.40', 1660573991, '__ci_last_regenerate|i:1660573991;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660573409;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5574dcff09cb9bc3c478ed1f6fb377b35429d35', '37.111.219.40', 1660575129, '__ci_last_regenerate|i:1660575129;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660575109;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3757a5ac66e29a1ba8c7afed249e510714df695d', '37.111.219.40', 1660575512, '__ci_last_regenerate|i:1660575512;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660575134;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03107bb88e2f6eedd4b1103edad6d73fec312a1b', '37.111.219.40', 1660575873, '__ci_last_regenerate|i:1660575873;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660575865;register_id|s:3:\"157\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-14 21:05:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b95ba23334c978836be0ff250118c5ceeaff16c', '205.210.31.2', 1660575688, '__ci_last_regenerate|i:1660575688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f99f5c0092d444527e258e3f90d4b1addb852e', '205.210.31.2', 1660575691, '__ci_last_regenerate|i:1660575691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d11057357c1eb39de0337c5b2640a46f89d9240', '205.210.31.2', 1660575692, '__ci_last_regenerate|i:1660575692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6bba4707fdbbd77acd88fd73bb422c8cf4524a', '37.111.219.40', 1660575893, '__ci_last_regenerate|i:1660575873;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660452988\";last_ip|s:13:\"37.111.218.76\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660575893;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc18279d8ddd21f9875e83def5155e9ecc5b0aa', '205.210.31.28', 1660576425, '__ci_last_regenerate|i:1660576425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14c0e6aba55207646ff9f65864074e8875c99fe', '205.210.31.28', 1660576427, '__ci_last_regenerate|i:1660576427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1423f18617035d39967cc686ad9caa980d27cf59', '205.210.31.28', 1660576427, '__ci_last_regenerate|i:1660576427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64d3de33872d2f727284285d775649ee10779ef', '198.235.24.156', 1660583502, '__ci_last_regenerate|i:1660583502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed907aef43bf709ef4eb65ba9a10ce970add6e8', '198.235.24.156', 1660583504, '__ci_last_regenerate|i:1660583504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5b38ea27e93263984c26b984c2b3f939335940c', '198.235.24.156', 1660583504, '__ci_last_regenerate|i:1660583504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a83259dbd67c7f906bba83da19124ea1389c7bd8', '205.210.31.14', 1660586470, '__ci_last_regenerate|i:1660586470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae686eb62025aac39450708e3710db0111356ac3', '205.210.31.14', 1660586471, '__ci_last_regenerate|i:1660586471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c446fddf012292027d57915f7b343078fa563872', '205.210.31.14', 1660586472, '__ci_last_regenerate|i:1660586472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8c3d1715a4aae0785eb677ae0c3b44c348a419', '205.210.31.143', 1660588998, '__ci_last_regenerate|i:1660588998;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fef55e4053a8a881d335cd85283d60cf66ccc50', '205.210.31.143', 1660589000, '__ci_last_regenerate|i:1660589000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a40568ee84b687e5d60ae45cb1334b18384909', '205.210.31.143', 1660589001, '__ci_last_regenerate|i:1660589001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e090eee7d1bb66dd06d403b23e63b65c60bfde', '205.210.31.135', 1660608234, '__ci_last_regenerate|i:1660608234;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dcc0edccb688a3aeefb681fc9f4545ae4fa284', '162.142.125.222', 1660617458, '__ci_last_regenerate|i:1660617458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e05fb9e9afb7583fdbb70345ed2205b0221c15', '162.142.125.222', 1660617458, '__ci_last_regenerate|i:1660617458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6142070c7d772dc121489bf3e9d1c8ceec94f9c9', '162.142.125.222', 1660617458, '__ci_last_regenerate|i:1660617458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30ca2bb7746477a5d5ada1d03068efcc93e9587', '162.142.125.222', 1660617458, '__ci_last_regenerate|i:1660617458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a7842fa6d7d9decee72c8eb1b5a3b3f2bf155de', '162.142.125.222', 1660617458, '__ci_last_regenerate|i:1660617458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfacd3b434fb261a437aedcec5a3f022784f1424', '162.142.125.222', 1660617458, '__ci_last_regenerate|i:1660617458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1260c96c34e7ab57a1a5e5e88068b144ed0986a5', '205.210.31.3', 1660621381, '__ci_last_regenerate|i:1660621381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ec8c352b28571ea405257345b9addf5fc1999b8', '37.111.219.68', 1660632249, '__ci_last_regenerate|i:1660632249;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660539995\";last_ip|s:13:\"37.111.219.40\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660632236;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5694a29abcc04da77ec937bdbbc74acefbb5c8', '116.204.230.18', 1660625540, '__ci_last_regenerate|i:1660625540;requested_page|s:15:\"admin/pos/sales\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660563293\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b3405f6ad362be17a2aff2537d8c80533e3515', '116.204.230.18', 1660626463, '__ci_last_regenerate|i:1660626463;requested_page|s:15:\"admin/pos/sales\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660563293\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9fcb4f9ccbb01bf7edaae0374007c69ddfbcc6', '116.204.230.18', 1660626463, '__ci_last_regenerate|i:1660626463;requested_page|s:15:\"admin/pos/sales\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660563293\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6462914eea8a0f84f040b8b0ca4180cd6d602334', '37.111.219.68', 1660633527, '__ci_last_regenerate|i:1660633527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660539995\";last_ip|s:13:\"37.111.219.40\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660632349;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d4d136cebd8ea4c5969b00c4935f2badf602b8', '37.111.219.68', 1660633607, '__ci_last_regenerate|i:1660633527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660539995\";last_ip|s:13:\"37.111.219.40\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660633607;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e66fa2235e7621a812d1533dc4e15d4d48f21a4', '37.111.219.68', 1660645377, '__ci_last_regenerate|i:1660645377;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660643847;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb32a942bd89293d9835146a565ace04a3337483', '37.111.219.68', 1660648411, '__ci_last_regenerate|i:1660648411;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660645377;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a663b4c507370c4948c24f004d4a58bfcdd5fe0', '37.111.219.68', 1660648960, '__ci_last_regenerate|i:1660648960;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660648415;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5611a23116855c063dcf130b8a4e264f50de43a1', '37.111.219.68', 1660650526, '__ci_last_regenerate|i:1660650526;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660649012;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1abbe66769bbf238d5a76e66b990c92646e4988', '37.111.214.26', 1660650257, '__ci_last_regenerate|i:1660650232;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660567826\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6bb2d4f4b9cf1a58f873bd1c95a397573264033', '116.204.230.18', 1660654463, '__ci_last_regenerate|i:1660654463;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660625241\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e0a83304883e063063b2becd34d1bc83ef9acd', '37.111.219.68', 1660651929, '__ci_last_regenerate|i:1660651929;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660650526;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('225f0f3782b21e212be64caaf01bc6d395f407c8', '37.111.219.68', 1660656448, '__ci_last_regenerate|i:1660656448;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660656425;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8389d0542ee3507d8ade11b38fd51082ff4251bb', '116.204.230.18', 1660654463, '__ci_last_regenerate|i:1660654463;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660625241\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcdef41ef3b235b6cc7de1d341bdb8dc6971eae', '37.111.219.68', 1660657039, '__ci_last_regenerate|i:1660657039;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660657011;register_id|s:3:\"158\";cash_in_hand|s:9:\"2940.0000\";register_open_time|s:19:\"2022-08-15 21:04:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9247aded77995a97d0bd4458665584655d3925e1', '37.111.219.68', 1660657660, '__ci_last_regenerate|i:1660657660;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660657071;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbd7441ee2057edf8a51bb7c1d2af1c6946001a', '37.111.219.68', 1660657983, '__ci_last_regenerate|i:1660657983;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660657071;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d928144186845bf7ca45721186975d6d2537207', '37.111.219.68', 1660659310, '__ci_last_regenerate|i:1660659310;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660657071;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b45f5ea63fd684355ea8d9bbf6777f36eead91e1', '37.111.219.68', 1660659316, '__ci_last_regenerate|i:1660659310;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660623023\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660659316;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d766d1ef2d0ab8d9065cd66d101ae1e9780c3183', '205.210.31.24', 1660669896, '__ci_last_regenerate|i:1660669896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd39379d0f0b66d1ae819fbf7e7cc54cf240caf', '205.210.31.24', 1660669898, '__ci_last_regenerate|i:1660669898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2179643de394f350657ed20ef5c29222bd1dc32', '205.210.31.24', 1660669898, '__ci_last_regenerate|i:1660669898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5bc928f0eb4b9e719ade84d1769a8fab02d6a1', '116.204.230.23', 1660705008, '__ci_last_regenerate|i:1660704897;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660650243\";last_ip|s:13:\"37.111.214.26\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26436a6dce0d513915472f179c990597dc685d92', '37.111.218.202', 1660717180, '__ci_last_regenerate|i:1660717180;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660717175;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc43ceb8eac298f62c340f4dab601e8e14a72b56', '116.204.230.18', 1660715387, '__ci_last_regenerate|i:1660715382;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660650326\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c6d2ae45faefe029406783646d5dd9344465a1', '37.111.218.202', 1660717751, '__ci_last_regenerate|i:1660717751;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660717191;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf824115566eb4cb0dbe504a45cb97631a7bc937', '37.111.218.202', 1660718807, '__ci_last_regenerate|i:1660718807;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660718534;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e32012e5b2e33492397071c524e2f3b0ddd2f5', '37.111.218.202', 1660724266, '__ci_last_regenerate|i:1660724266;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660718928;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76c382b4b8d8e6ead3e9020e4cd7419da9ebced', '37.111.210.167', 1660722183, '__ci_last_regenerate|i:1660722151;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660704904\";last_ip|s:14:\"116.204.230.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef2780e6d73e19160fa109892c7f60f4a36cbccc', '37.111.218.202', 1660729403, '__ci_last_regenerate|i:1660729403;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660729360;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50bc3ad554eb9b5f1eaf966421b8e99fa12b955', '37.111.218.202', 1660729917, '__ci_last_regenerate|i:1660729917;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660729403;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fd3df3cf74fa5bed785aded5d7a5194c46461a', '37.111.218.202', 1660734676, '__ci_last_regenerate|i:1660734676;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660733865;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a553d351ab77552875619d44b70b9e7dff58ba76', '37.111.218.202', 1660740509, '__ci_last_regenerate|i:1660740509;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660734692;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c13ebe51208b7d882a5f734c8a4b9cf9c07fb57', '116.204.230.26', 1660735178, '__ci_last_regenerate|i:1660735178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4aaa43cd3ad9ec1c3b792f91f67a505740d74d2', '37.111.218.202', 1660746131, '__ci_last_regenerate|i:1660746131;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660740927;register_id|s:3:\"159\";cash_in_hand|s:9:\"4155.0000\";register_open_time|s:19:\"2022-08-16 19:37:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158454969080ed62521f38eb232f815275082dc5', '37.111.218.202', 1660746310, '__ci_last_regenerate|i:1660746131;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660643841\";last_ip|s:13:\"37.111.219.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660746292;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31559524ba915742dd6c0504728a1954becebeca', '198.235.24.129', 1660761603, '__ci_last_regenerate|i:1660761603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60bf27e39e9516b4defbbb803be578ef943f1207', '37.111.217.35', 1660801771, '__ci_last_regenerate|i:1660801771;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660801576;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2528c33f742199c5829cc25c381ba22ae2e3c312', '37.111.217.35', 1660802796, '__ci_last_regenerate|i:1660802796;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660801829;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b578f54aac95daa008dca3921d7b3a0afcddb0', '37.111.217.35', 1660805256, '__ci_last_regenerate|i:1660805256;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660805252;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5f6f473d450304105cc2ec25c295a4db7907f9', '37.111.217.35', 1660807622, '__ci_last_regenerate|i:1660807622;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660805256;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2c007214506fc8e75093dbdcbb1fe54e4d621d', '37.111.217.35', 1660807953, '__ci_last_regenerate|i:1660807953;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660807881;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2703c19de56e1c6db5c6c749f38820fcfb18ca3b', '37.111.217.35', 1660808579, '__ci_last_regenerate|i:1660808579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660808537;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f8f7eba2955bf827d9705c181ab89fc18e7690', '37.111.217.35', 1660812102, '__ci_last_regenerate|i:1660812102;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660808789;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f43322a32e5998d2f1924a12a9295aab45c0d0', '37.111.217.35', 1660814284, '__ci_last_regenerate|i:1660814284;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660814280;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d492d32c8bdd571c8dc03fb08b1532e95d1da77', '37.111.217.35', 1660815880, '__ci_last_regenerate|i:1660815880;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660814285;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92b24a010a0c79992d16289369fae9b5bd044d3e', '37.111.217.35', 1660816317, '__ci_last_regenerate|i:1660816317;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660816135;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ae4fa6551a9aa347206898c32c1be69c7ce223', '37.111.217.35', 1660816902, '__ci_last_regenerate|i:1660816902;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660816419;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4ab54e39105269a26ea1771585ab69311bf5f4', '37.111.217.35', 1660816977, '__ci_last_regenerate|i:1660816902;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660709602\";last_ip|s:14:\"37.111.218.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660816976;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5faf8f7eaa31581e4f32a924ae6128691d08e4', '116.204.230.18', 1660822409, '__ci_last_regenerate|i:1660822409;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660715386\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660822389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a4574f155f833d8b7a834f0b5f33ef14148b67', '116.204.230.18', 1660822835, '__ci_last_regenerate|i:1660822409;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660715386\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1660822835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1abc9219f71b77e50c67cdd128b5b1d68a503d', '37.111.217.35', 1660824680, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114a12a508df637fa4e8b2744172a17b40fa9d80', '37.111.217.35', 1660826101, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660826101;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660824814;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f340ef4053b842be79477faf2e26e6b1ac7b78', '37.111.217.35', 1660827199, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660827199;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660826345;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28163819a283779b8eb53ef9ac86b927bb24b23d', '37.111.217.35', 1660828285, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660828285;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660828019;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edacbeab0e414cfb9b1fd32d441d2eb775d2017', '37.111.217.35', 1660828976, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660828976;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660828972;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08d5f93cd7d965c5efa499555dced02ffaa5e57', '37.111.217.35', 1660829638, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660829638;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660828976;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f53721b8d97ca4ec388a6d357e7958dfa7981e8', '37.111.217.35', 1660830432, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660830432;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660830427;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f12d33a98743747bb55e2e832492e1dfcd3b037', '37.111.217.35', 1660831745, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660831745;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660830432;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6229cc1e2ab26737383bf782d1b8073c7804c8', '37.111.217.35', 1660833830, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660833830;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660831781;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ae6cc895c88f6bd8205fef25df3d600c57e3eb', '37.111.217.35', 1660835313, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660835313;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660835307;register_id|s:3:\"160\";cash_in_hand|s:9:\"6425.0000\";register_open_time|s:19:\"2022-08-17 20:23:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6b4ac12a86bcae71757311f4439cbe507288a3', '37.111.217.35', 1660835337, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1660835313;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660798223\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660835337;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20729ea844dd3fa5b3a1c4c5b20c46ee4c86b9fd', '167.248.133.45', 1660871748, '__ci_last_regenerate|i:1660871748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe514835908a4e1c62fcfbee7baf650829b1dca', '167.248.133.45', 1660871748, '__ci_last_regenerate|i:1660871748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110737821f7d393629092f5bf3369dfd6a8bad65', '167.248.133.45', 1660871749, '__ci_last_regenerate|i:1660871749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a7df45694f6d09e9b76536b453e724e4379453', '167.248.133.45', 1660871749, '__ci_last_regenerate|i:1660871749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9489638cb94b4e7a9ffc71e511d9dcd1886493c7', '167.248.133.45', 1660871749, '__ci_last_regenerate|i:1660871749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c20bc3f173522f874b8891e9b1da5fe0eb85afb', '167.248.133.45', 1660871749, '__ci_last_regenerate|i:1660871749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf6638dc30a1d268729d12cb3f39c22024687bd4', '37.111.219.88', 1660883689, '__ci_last_regenerate|i:1660883689;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e27978db1b47c0b4a34256d3a89a9568455c44', '37.111.219.88', 1660888524, '__ci_last_regenerate|i:1660888524;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660883836;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d81a6da6b2c7ab77615780d257fbd7df3fcfc7f', '116.204.230.18', 1660887463, '__ci_last_regenerate|i:1660887463;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660822104\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"UhmMl3TkQqFrWR1fecDJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f726c6a1aa9122e89ce167ac141c48893afb061', '116.204.230.18', 1660887463, '__ci_last_regenerate|i:1660887463;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660822104\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"UhmMl3TkQqFrWR1fecDJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9ed9ac4d17eff08c0cea5e9ce70e038da3f644', '37.111.219.88', 1660894565, '__ci_last_regenerate|i:1660894565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660894553;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb21f4bb99ed887f78910f9bda91ee520c335879', '116.204.230.18', 1660889526, '__ci_last_regenerate|i:1660889473;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660722158\";last_ip|s:14:\"37.111.210.167\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942eb61cbd2c6b6b40ff01d9ecef39f277e785a8', '37.111.219.88', 1660896030, '__ci_last_regenerate|i:1660896030;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660894773;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8bdf9f4e8f07c360a2dead311188114069591f6', '37.111.219.88', 1660901402, '__ci_last_regenerate|i:1660901402;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660901239;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db49d9edf0e5ac78fb47cf74977b7c2da197dfbc', '37.111.219.88', 1660902672, '__ci_last_regenerate|i:1660902672;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660901403;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da26a2cd7c8d406997c466e4a23b26ba632bc6fe', '37.111.219.88', 1660903957, '__ci_last_regenerate|i:1660903957;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660903945;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e52e0e4b4be600680094713693abd2b95298e60', '37.111.219.88', 1660904356, '__ci_last_regenerate|i:1660904356;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660903957;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987b9791ab4005233cc1421734eed0ad2e60345e', '37.111.219.88', 1660905579, '__ci_last_regenerate|i:1660905579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660905537;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f6c50b85dd669313067663388b2674dc62c965', '116.204.230.18', 1660909077, '__ci_last_regenerate|i:1660909077;requested_page|s:25:\"admin/reports/profit_loss\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660886654\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('139f5577274249dc4f85d1f7ad7c1bee34719049', '37.111.219.88', 1660906279, '__ci_last_regenerate|i:1660906279;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660905795;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59e014baf3867e1587104812f2869b8d1f3c8d9', '37.111.219.88', 1660908495, '__ci_last_regenerate|i:1660908495;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660908480;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8531591b2324a93abf9877e3bf9cad9031b1e40d', '37.111.219.88', 1660910088, '__ci_last_regenerate|i:1660910088;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660908495;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c14455d96a6ae297c3bed6ac0e5557396eb4fa30', '116.204.230.18', 1660909077, '__ci_last_regenerate|i:1660909077;requested_page|s:25:\"admin/reports/profit_loss\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660886654\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1daa5e8eae2d251d5c3e8eb082aa2a62c5afce82', '37.111.219.88', 1660911155, '__ci_last_regenerate|i:1660911155;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660910106;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c3e0d2aeb542e62d849ecc340be87b5bf00f2a', '37.111.219.88', 1660912030, '__ci_last_regenerate|i:1660912030;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660911328;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77da56858256a1c4333d34e37ea627e747965d7', '37.111.219.88', 1660912485, '__ci_last_regenerate|i:1660912485;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660912049;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe98c2a8ec5dd88b031c1fb2cfea7f012e66544', '37.111.219.88', 1660915177, '__ci_last_regenerate|i:1660915177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660915159;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd07e192274749fb7cd0faf5ecc0b67061df28cc', '37.111.219.88', 1660915636, '__ci_last_regenerate|i:1660915636;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660915177;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('673d27be6319bc5d161b2123143524745959ebe3', '37.111.219.88', 1660916172, '__ci_last_regenerate|i:1660916172;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660916167;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe1e30955d5483fc2fb74fb0b60669856e99ae7', '37.111.219.88', 1660916475, '__ci_last_regenerate|i:1660916475;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660916173;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d449dae1b29d0f07108afcc93a40c89f6caf5fd1', '37.111.219.88', 1660917752, '__ci_last_regenerate|i:1660917752;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660916617;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9737a09bfe0243c40785fe54ca93326e9f4b85c', '37.111.219.88', 1660918853, '__ci_last_regenerate|i:1660918853;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660918001;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd61cee7f2cbce89fa333dc870c671dd178dc0f', '37.111.219.88', 1660919379, '__ci_last_regenerate|i:1660919379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660919371;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f85bc1c0feb307c74c7a3bd343b7d1e45f63e6d', '37.111.219.88', 1660920745, '__ci_last_regenerate|i:1660920745;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660920646;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d82467f0761636a9f27d7ca204844cfcb9fb310', '37.111.219.88', 1660921724, '__ci_last_regenerate|i:1660921724;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660920746;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e9b7b59761f19ac187fa7d977a27cf446ec18b', '37.111.219.88', 1660922026, '__ci_last_regenerate|i:1660922026;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660922020;register_id|s:3:\"161\";cash_in_hand|s:9:\"2730.0000\";register_open_time|s:19:\"2022-08-18 21:08:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1418ffa3ee03191f7575cce545b53c8c825fb70f', '37.111.219.88', 1660922062, '__ci_last_regenerate|i:1660922026;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660824771\";last_ip|s:13:\"37.111.217.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660922062;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6717c3934560dfd80472b567ce5bb3ad0937faa1', '3.8.162.199', 1660938873, '__ci_last_regenerate|i:1660938873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ff9ddbf33f5d143edb0d858e0582a0c965213f', '3.8.162.199', 1660938888, '__ci_last_regenerate|i:1660938888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29bcf612bbf68ea9b37bbb121c39e6c1dbd74b95', '3.8.162.199', 1660938910, '__ci_last_regenerate|i:1660938910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25adee422a8239feb1e3e0ebd48965a93b738d7c', '3.8.162.199', 1660938917, '__ci_last_regenerate|i:1660938917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274a77781f6c67809f87d17a85581b2d8bb7a22f', '3.8.162.199', 1660938926, '__ci_last_regenerate|i:1660938922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b2ecc73fa3b2eb089d9f1c5767be6332ed19cf', '3.8.162.199', 1660938931, '__ci_last_regenerate|i:1660938931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643e7a7b684dd1172888b935593c609426708207', '3.8.162.199', 1660938938, '__ci_last_regenerate|i:1660938936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c615df27a62f4d9669ad25e15b9f7f4b387f266c', '3.8.162.199', 1660938943, '__ci_last_regenerate|i:1660938943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37aa8bfe84d79fbef26f24ed1f8b2f13d90b8f8e', '3.8.162.199', 1660938953, '__ci_last_regenerate|i:1660938949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47b7d6615c76900e2aab71950a0e6952893d5a0', '3.8.162.199', 1660938958, '__ci_last_regenerate|i:1660938958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3787b6f1fdb340d41f1b4adb9d836643d083fb6e', '3.8.162.199', 1660938970, '__ci_last_regenerate|i:1660938964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cedbe3c189394b6ffd04f20f317d9510067e4fbc', '3.8.162.199', 1660938977, '__ci_last_regenerate|i:1660938977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6560c62419e82004ffae76b1b02384df8f0faa20', '3.8.162.199', 1660938984, '__ci_last_regenerate|i:1660938984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a096d0fad463737a271d35564125845294909780', '3.8.162.199', 1660938991, '__ci_last_regenerate|i:1660938991;error|s:115:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>http://pos.recallgreen.com.ibilling.xyz\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110454fa6a6ee3380de7cb012dede0aa872e0ebd', '3.8.162.199', 1660939000, '__ci_last_regenerate|i:1660939000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35327d856a00e10e61e6c2bc8e0cd7fc694ef96', '3.8.162.199', 1660939012, '__ci_last_regenerate|i:1660939012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1816e5230f76d56262e75d65c75ff9173aa2f52b', '37.111.217.127', 1660969498, '__ci_last_regenerate|i:1660969498;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660969012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa821c4152ff09a58f4d29d6cc81a3c16ed5cda', '116.204.230.18', 1660969491, '__ci_last_regenerate|i:1660969336;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660889477\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d10c567d6ac1ee0bbf083de72575aefb811b8e', '37.111.217.127', 1660970601, '__ci_last_regenerate|i:1660970601;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660969012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df02c3b8e6e8ce02319a495709cfa79d603412fe', '37.111.217.127', 1660976776, '__ci_last_regenerate|i:1660976776;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660976726;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9d5ce9041a3692f891ff50a023c325f41399eb', '116.204.230.18', 1660971831, '__ci_last_regenerate|i:1660971831;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660905283\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86eca603c3fdc8a2573b7864feacd0dd7d7d9c6e', '116.204.230.18', 1660971831, '__ci_last_regenerate|i:1660971831;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660905283\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dcce8eec167a7f0ce461b09bcce00eb3ce000bc', '93.115.13.160', 1660975225, '__ci_last_regenerate|i:1660975222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a654e41e3e0a3ef6dc01e1866de087376e4706d', '93.115.13.160', 1660975226, '__ci_last_regenerate|i:1660975226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26d73b77463a9aaf7902a275c0553b6b16aa8a9', '74.85.214.87', 1660975258, '__ci_last_regenerate|i:1660975258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fe9f9f3fdb7237e987568a9e5455afc0e199f5', '74.85.214.87', 1660975259, '__ci_last_regenerate|i:1660975259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f36029af3930d17e7b2454a735f3d2ce946384', '37.111.217.127', 1660981007, '__ci_last_regenerate|i:1660981007;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660977705;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6081aeba2b028767c127a935d27acbc851e755ab', '116.204.230.18', 1660977019, '__ci_last_regenerate|i:1660977016;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bcce4eafb9c5293eb4e053056ef136583b8d866', '37.111.217.127', 1660984194, '__ci_last_regenerate|i:1660984194;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660977705;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbed2a9f225c5cb0b2319ab5b81e8759dc908e6b', '116.204.230.18', 1660982384, '__ci_last_regenerate|i:1660982384;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660971027\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b087f1709a7d8f3e77e65b1779a6cc8f0447363b', '116.204.230.18', 1660982685, '__ci_last_regenerate|i:1660982685;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660971027\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a209e30b1f92b8c46bd977aa1da18f604517330', '116.204.230.18', 1660983124, '__ci_last_regenerate|i:1660983124;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660971027\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541a83930fc9793fc071982976740ea0ff9765b9', '116.204.230.18', 1660983375, '__ci_last_regenerate|i:1660983124;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660971027\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd9df88d8de5d1e99bebb910e6ecfd2797cc257a', '37.111.217.127', 1660985487, '__ci_last_regenerate|i:1660985487;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660984476;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af42a8a8963473d9e4de828640bb5419b2c0b2ee', '37.111.217.127', 1660989887, '__ci_last_regenerate|i:1660989887;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660985548;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab6775b12047af43afed1b8b0bf26c661647562', '37.111.217.127', 1660990994, '__ci_last_regenerate|i:1660990994;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660990112;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b0e7ffc64daa7220199f22dbf41b45147352f1', '37.111.217.127', 1660992632, '__ci_last_regenerate|i:1660992632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660992398;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfebe6787d3c345725a74d2fff3f0e8bcb4f995b', '116.204.230.18', 1660993666, 'requested_page|s:34:\"admin/products/view_adjustment/268\";__ci_last_regenerate|i:1660993666;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660981286\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36ac6f3cfc946e62070b2a4acd0bf90c8642271', '37.111.217.127', 1660993428, '__ci_last_regenerate|i:1660993428;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660993423;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f9cfd984dc2483a12508b2dcbcf517711d3f40', '37.111.217.127', 1660994670, '__ci_last_regenerate|i:1660994670;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660993764;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('979b14276fc2c5951d4bc9bafe01e63f0645078b', '116.204.230.18', 1660993757, 'requested_page|s:34:\"admin/products/view_adjustment/268\";__ci_last_regenerate|i:1660993666;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660981286\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"VAh3qW8s1r5YFbSXdfio\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249eed07ec346780e3bb1fd28be761a6c50bceca', '37.111.217.127', 1660995135, '__ci_last_regenerate|i:1660995135;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660994700;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f54d21b5ba0064a0e49b38b784466d133f05bd', '37.111.217.127', 1660995590, '__ci_last_regenerate|i:1660995590;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660995579;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcbab4a31166c15694c51cb269b8dfd9bbe0029f', '37.111.217.127', 1660996641, '__ci_last_regenerate|i:1660996641;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660995579;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d1ddb082071fba50b1ad8550d99d30217ce238', '37.111.217.127', 1660997503, '__ci_last_regenerate|i:1660997503;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660997404;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1e1499ad75708f48112b06506c6db67081a418', '37.111.217.127', 1660998999, '__ci_last_regenerate|i:1660998999;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660998995;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2675c1cd66bcc5e1202148128719c14e97acffe0', '37.111.217.127', 1660999613, '__ci_last_regenerate|i:1660999613;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660999003;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f18cabe7c11f50e1d5334045dafe37100a65e429', '37.111.217.127', 1661001210, '__ci_last_regenerate|i:1661001210;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1660999003;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852b9e71f62c2238d4cdb38708c66109185af8ad', '37.111.217.127', 1661002407, '__ci_last_regenerate|i:1661002407;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661002404;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c71708bef500d8b59aae44eddf373a7b62bb002', '37.111.207.56', 1661001884, '__ci_last_regenerate|i:1661001853;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1660969386\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d68e2c9be9d6b28f05d19047550ade9689eff1', '37.111.217.127', 1661002732, '__ci_last_regenerate|i:1661002732;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661002625;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51379ef536457f21ca34ca4158d40950a9a07254', '37.111.217.127', 1661003845, '__ci_last_regenerate|i:1661003845;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661003836;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c40766825e783ef0d0fe76681dee7be70ed544f', '37.111.217.127', 1661004164, '__ci_last_regenerate|i:1661004164;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661003846;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7a2544feb003da7ef388587feaf9fa655cdc07', '37.111.217.127', 1661006577, '__ci_last_regenerate|i:1661006577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661006566;register_id|s:3:\"162\";cash_in_hand|s:8:\"970.0000\";register_open_time|s:19:\"2022-08-19 21:13:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f7413d9cdb8d0d6b7bba199f501ee1d8c2be13', '37.111.217.127', 1661006616, '__ci_last_regenerate|i:1661006577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660883151\";last_ip|s:13:\"37.111.219.88\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661006616;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0cfdde01ff8a622d7dfeb297ba62f2cbdf22398', '51.81.186.251', 1661015405, '__ci_last_regenerate|i:1661015387;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1661001862\";last_ip|s:13:\"37.111.207.56\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86abb1ff626939536d7b0b497310e2d7f203999a', '198.235.24.182', 1661018786, '__ci_last_regenerate|i:1661018786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c567bff0a94ae9f6dfa06b83301879321d86f6', '198.235.24.182', 1661018788, '__ci_last_regenerate|i:1661018788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8580da0f45a7ae0396f9820b2c4f71461b00df', '198.235.24.182', 1661018789, '__ci_last_regenerate|i:1661018789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483bdd5aa062a526f84736b3e8e478e72eef3218', '167.94.138.61', 1661054271, '__ci_last_regenerate|i:1661054271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015e0f9ad5c86bd7ca7224a1786a796c56cd3710', '167.94.138.61', 1661054271, '__ci_last_regenerate|i:1661054271;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22881039dd5a05b12980d37c8ffa9aa7b26dc0a9', '167.94.138.61', 1661054271, '__ci_last_regenerate|i:1661054271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce80bd9be216cb57d377b662680bdaca017b810', '167.94.138.61', 1661054271, '__ci_last_regenerate|i:1661054271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec7ea84a85cec5e418452e8b77a7bff57d761ae6', '167.94.138.61', 1661054271, '__ci_last_regenerate|i:1661054271;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9fddb8ed4cbd9f2964f54a618deb0b884ed622e', '167.94.138.61', 1661054272, '__ci_last_regenerate|i:1661054272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3f8aa58b532e90aafe063bef389407305ceda0', '167.248.133.62', 1661054306, '__ci_last_regenerate|i:1661054306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6e6c04e2d3a6ac443bf35f250089d6aeabec9f', '167.248.133.62', 1661054306, '__ci_last_regenerate|i:1661054306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4587825513deabf7621db8208681b9e97084429b', '167.248.133.62', 1661054306, '__ci_last_regenerate|i:1661054306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec86bc7486c1bcb8791b1be0b4ec721b0932341e', '167.248.133.62', 1661054306, '__ci_last_regenerate|i:1661054306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1374a5256587ac4732866fdc80a8528db6ec982', '167.248.133.62', 1661054306, '__ci_last_regenerate|i:1661054306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6925c3f97b1cd1860ae0e688b93cbc3569767439', '167.248.133.62', 1661054306, '__ci_last_regenerate|i:1661054306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d6035b5a42d738ad7c75a96d2b1ca6497d60b9', '116.204.230.18', 1661060961, '__ci_last_regenerate|i:1661060961;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660991904\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2abe16830e32b95a4a927d24f0d2377407f0c068', '37.111.217.161', 1661062187, '__ci_last_regenerate|i:1661062187;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3acfb9bb41769438df91ad3f1d615c9e77a38b4', '116.204.230.18', 1661061506, '__ci_last_regenerate|i:1661061506;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660991904\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd7bbf0888469b6826c28af088fad1006d95a8e', '116.204.230.18', 1661065032, '__ci_last_regenerate|i:1661065032;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660991904\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d8ba7dd2fb70b4fb1117628e5f9596c97b0cde2', '37.111.217.161', 1661064154, '__ci_last_regenerate|i:1661064154;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661063012;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff8a0c55bbb30b663dc288f1975caef6f995eb5', '37.111.217.161', 1661065757, '__ci_last_regenerate|i:1661065757;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661065752;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f27ea40f4f31c3e08084eebac3f4d6aaf48bf8', '116.204.230.18', 1661066280, '__ci_last_regenerate|i:1661066280;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660991904\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6k8lfuYSAH9LrdbyqNxJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bed8e292a291283f5d56c2e5e96e029b30e46a6e', '37.111.217.161', 1661068872, '__ci_last_regenerate|i:1661068872;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661065757;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7659d5a6612ddb37ef2f2ea0f4795f7017b414', '116.204.230.18', 1661068516, '__ci_last_regenerate|i:1661068516;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660991904\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6k8lfuYSAH9LrdbyqNxJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ad89c4b3c3f0cad021bab9a86c31cca8276655', '116.204.230.18', 1661068516, '__ci_last_regenerate|i:1661068516;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1660991904\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6k8lfuYSAH9LrdbyqNxJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41438cebdcee65b0fcfb981526926b37e5d8edaa', '37.111.217.161', 1661073212, '__ci_last_regenerate|i:1661073212;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661068999;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78017d44817939b0ff11f8c1ba6736c8783267aa', '37.111.217.161', 1661073741, '__ci_last_regenerate|i:1661073741;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661073237;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d85ccff3af419a8db99a034b6504ada71d01d64', '37.111.217.161', 1661078748, '__ci_last_regenerate|i:1661078748;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661073750;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3341c95dce39745c597f16956132e81f947e46d0', '37.111.217.161', 1661081068, '__ci_last_regenerate|i:1661081068;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661078965;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1919f324d4238b9328ccb3dc6f798e5463155ca', '37.111.217.161', 1661083608, '__ci_last_regenerate|i:1661083608;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661081111;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ca5545b1f986fdd8afbab291ca179598baa6c4', '37.111.217.161', 1661084045, '__ci_last_regenerate|i:1661084045;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661083621;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371351c7a1f62784e075218d3e35bdc94142603e', '116.204.230.23', 1661083752, '__ci_last_regenerate|i:1661083730;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1661015395\";last_ip|s:13:\"51.81.186.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8a623440bd645c7633783a00f3bd958a85c7c1d', '37.111.217.161', 1661088999, '__ci_last_regenerate|i:1661088999;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661084049;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce5c7bd39cb66ad2d35b4ce581a4e8ca889a270', '116.204.230.24', 1661084476, '__ci_last_regenerate|i:1661084403;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661057617\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"qLGKyiJRnBQWDsT70P56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c61537a4154e38faafeb7be8269d75f7ee2eff', '37.111.217.161', 1661090207, '__ci_last_regenerate|i:1661090207;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661090203;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5d1fa28db48a2c752ce79c33e42ab2b8611002', '37.111.217.161', 1661091870, '__ci_last_regenerate|i:1661091870;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661090208;register_id|s:3:\"163\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2022-08-20 20:43:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3549dee0b10c622fa00c4aef6781164791325d98', '37.111.217.161', 1661092127, '__ci_last_regenerate|i:1661091870;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1660969003\";last_ip|s:14:\"37.111.217.127\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661092127;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb9b52ae6dac055996ab639d13ebe0f403916b2', '193.56.29.130', 1661141765, '__ci_last_regenerate|i:1661141765;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a77c046fd3e161b54b1cc826e0e1fa108fca260', '193.56.29.130', 1661141771, '__ci_last_regenerate|i:1661141771;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485d93f6d221d6452502587a381697bbb0c5f485', '193.56.29.130', 1661141779, '__ci_last_regenerate|i:1661141779;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb175ced2ff43f578e369cf70ce2fa364fc62a4', '37.111.217.20', 1661146432, '__ci_last_regenerate|i:1661146432;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661143143;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d21ed03631ec75953423c916d7294d7a6438c77', '37.111.217.20', 1661147143, '__ci_last_regenerate|i:1661147143;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661147007;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cb7a336fea1be2f1ed6d83e95059d8ef1cb454', '116.204.230.24', 1661146886, '__ci_last_regenerate|i:1661146824;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1661083738\";last_ip|s:14:\"116.204.230.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f58add649ec30a21416628587ec7a3b4eac5d4eb', '37.111.217.20', 1661147508, '__ci_last_regenerate|i:1661147508;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661147144;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";error|N;remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296fb2929ae2939a433fcda04adaec11073858e0', '37.111.217.20', 1661151574, '__ci_last_regenerate|i:1661151574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661151391;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";error|N;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a9836dc62b26362bf680c53e51841c157534c1', '37.111.217.20', 1661152004, '__ci_last_regenerate|i:1661152004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661151667;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";error|N;message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50e1ea62f7ad7facce60d4dbcf625c7d279109b', '37.111.217.20', 1661153958, '__ci_last_regenerate|i:1661153958;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661152007;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";error|N;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c394a7ee9281dbd77279ed240c22e59b76621ecc', '116.204.230.26', 1661154782, '__ci_last_regenerate|i:1661153269;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661084417\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3e2eead050cfe6953820f76ea1bc34b1ee97ef', '37.111.217.20', 1661154046, '__ci_last_regenerate|i:1661153958;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661060481\";last_ip|s:14:\"37.111.217.161\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661154046;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8132c23a3b3c94d06975c2340aa132c4a2906cd1', '37.111.217.20', 1661162904, '__ci_last_regenerate|i:1661162904;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9449aadf78483592138c0febd5283436f22c92b', '37.111.211.253', 1661162446, '__ci_last_regenerate|i:1661162410;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1661146830\";last_ip|s:14:\"116.204.230.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4362d758d610fe96afb315e107b60c5eb48e1427', '37.111.217.20', 1661164308, '__ci_last_regenerate|i:1661164308;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661163100;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd77712ad24d01145abb9adfcc1fcf89d1a555cf', '37.111.217.20', 1661166203, '__ci_last_regenerate|i:1661166203;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661166017;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac22a0257affe7294ee9687ec39d6bb44a215ff', '37.111.217.20', 1661167523, '__ci_last_regenerate|i:1661167523;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661166204;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f2d7abd1f149b34bcf2fc9fc06fc7b2c3987d5', '37.111.217.20', 1661168256, '__ci_last_regenerate|i:1661168256;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661167555;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ec01a5e8355ede4dda9f4f4eca76096d6e7a3f', '37.111.217.20', 1661168951, '__ci_last_regenerate|i:1661168951;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661168270;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65da7ce85f2c548694207d2fa8ef0c5ae9a0d2f', '37.111.217.20', 1661176306, '__ci_last_regenerate|i:1661176306;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661176227;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e1adc4aa0b9ead648d42b877d16435147334d75', '116.204.230.26', 1661174004, '__ci_last_regenerate|i:1661174004;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661153287\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53d7241be4182f4916065b762d886c696b31458', '116.204.230.26', 1661174215, '__ci_last_regenerate|i:1661174004;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661153287\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7223b01b75dfa645af91868356d91f66f7ae52f9', '37.111.217.20', 1661176734, '__ci_last_regenerate|i:1661176734;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661176468;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa4cc40b94c70061fb3819b8386bebe4848a802f', '37.111.217.20', 1661177726, '__ci_last_regenerate|i:1661177726;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661177701;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a90ed418d0db16c3a81aed8e7483a62acee4cee', '37.111.217.20', 1661178766, '__ci_last_regenerate|i:1661178766;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661177733;register_id|s:3:\"164\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-08-21 20:28:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('905eedb5ef08f0ec245c8f1f3e3ef9f2316d529e', '37.111.217.20', 1661178871, '__ci_last_regenerate|i:1661178766;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661143096\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661178870;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea0cf8c9494568e0c1283a174aa12035c362e81', '193.107.158.16', 1661207744, '__ci_last_regenerate|i:1661207744;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c87522f05d1cb16650814ba697602f9f1c1004', '193.107.158.16', 1661207744, '__ci_last_regenerate|i:1661207744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('989f7a676cc1dc197225aba9586a77ae8684bca0', '193.107.158.16', 1661207744, '__ci_last_regenerate|i:1661207744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24230669623fcccd7d45788ba729f5436b85b903', '193.107.158.16', 1661207744, '__ci_last_regenerate|i:1661207744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d673df9fb81d7f5b09c10ec8146393e4a81e4de', '162.142.125.211', 1661225118, '__ci_last_regenerate|i:1661225118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481750d826a21b9230c8d76fe94c78b393ccee61', '162.142.125.211', 1661225119, '__ci_last_regenerate|i:1661225119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a06481924f4d8ebfac303d88fa5b5b4e07db42', '162.142.125.211', 1661225119, '__ci_last_regenerate|i:1661225119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af502ea8843f1f76f19960b50db40e77e02c19ee', '162.142.125.211', 1661225119, '__ci_last_regenerate|i:1661225119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201cc22c700099fc27e0008a1ee38d6c95dab766', '162.142.125.211', 1661225119, '__ci_last_regenerate|i:1661225119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa55f0003862fc35aee9597550498a91b3a76a9', '162.142.125.211', 1661225119, '__ci_last_regenerate|i:1661225119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e485a49fa8ba73eab35de26a36a9292350e906fa', '37.111.218.92', 1661232170, '__ci_last_regenerate|i:1661232170;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661232160;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0554248961ded5d848211ca6e81ee92cf486da', '37.111.218.92', 1661233780, '__ci_last_regenerate|i:1661233780;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661233764;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c15d52246ea94a9707991245624ac0b0e1204f', '116.204.230.26', 1661232967, '__ci_last_regenerate|i:1661232967;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661173583\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"prghKGWas7N9AMdyteFu\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62207e6c89a250faf2511df64d310a45e6f3455f', '116.204.230.26', 1661236232, '__ci_last_regenerate|i:1661236232;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661173583\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"prghKGWas7N9AMdyteFu\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7477af576e449c712892f476fcc115ddf765b84a', '37.111.218.92', 1661234461, '__ci_last_regenerate|i:1661234461;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661233780;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274dba4ca04eb1bcb2cb14ac4e0e1c9bba1afd3f', '37.111.218.92', 1661235413, '__ci_last_regenerate|i:1661235413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661234461;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1013381820bfce6594e548b81d35a1963bdadb28', '37.111.218.92', 1661239340, '__ci_last_regenerate|i:1661239340;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661235494;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d007c4c11e162b8d65483812d60f0ac506cdb1c', '116.204.230.26', 1661236232, '__ci_last_regenerate|i:1661236232;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661173583\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"prghKGWas7N9AMdyteFu\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f9699f2ca9363da9de41694acb25be6fe3d006', '37.111.218.92', 1661241359, '__ci_last_regenerate|i:1661241359;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661239532;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce274d5178bbfc4b48d966510cf9922ad3ccb868', '37.111.218.92', 1661243384, '__ci_last_regenerate|i:1661243384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661241381;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8526e366f51800f1ce8b86f87611b3ba8474de', '37.111.218.92', 1661247539, '__ci_last_regenerate|i:1661247539;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661243422;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2742dd3c4c9ff9418a097629297c43896de03b2b', '37.111.218.92', 1661248500, '__ci_last_regenerate|i:1661248500;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661247672;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f989f7451c8387a77007c1db97369fdc575cbd', '37.111.218.92', 1661249263, '__ci_last_regenerate|i:1661249263;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661248539;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a385225e29bf38327fffb1c564a3e68e828e072', '37.111.218.92', 1661251360, '__ci_last_regenerate|i:1661251360;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661249281;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0099f58e34cd5ce8d491260e6b19ad95375f5b9a', '37.111.218.92', 1661253925, '__ci_last_regenerate|i:1661253925;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661251360;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0278a6b712a0bc0f2a2af3a814b42203cd3bc9', '37.111.218.92', 1661254395, '__ci_last_regenerate|i:1661254395;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661254378;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eca600162cd5d08f187aa28951fff1b850622e9', '37.111.218.92', 1661259037, '__ci_last_regenerate|i:1661259037;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661259017;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9401478a69166d8ea789aedb8c35ed15c803d672', '37.111.218.92', 1661263295, '__ci_last_regenerate|i:1661263295;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661263085;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c118a4f85861da362afa78c67eced9aa204fe1', '37.111.218.92', 1661265445, '__ci_last_regenerate|i:1661265445;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661263295;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71579bb89b7d49017c8cb8347e6ba34277c664c', '37.111.218.92', 1661265776, '__ci_last_regenerate|i:1661265776;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661265679;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea843fa976e9b3f00538ed6a0d457ba808919723', '37.111.218.92', 1661266253, '__ci_last_regenerate|i:1661266253;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661266245;register_id|s:3:\"165\";cash_in_hand|s:9:\"2430.0000\";register_open_time|s:19:\"2022-08-22 20:34:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac9c79b33fc28b2f0b1e9aaf4c9adde07e120bbb', '37.111.218.92', 1661266273, '__ci_last_regenerate|i:1661266253;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661162372\";last_ip|s:13:\"37.111.217.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661266272;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00bc72654869221a68a42c7468677cd3f48f15a1', '65.154.226.171', 1661285518, '__ci_last_regenerate|i:1661285518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d44a026241bcd8d8e549fc1742ff2e5be842be', '65.154.226.171', 1661285520, '__ci_last_regenerate|i:1661285519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e57c66b8c1fedaf27776504514ea3b96b3d346b', '65.154.226.166', 1661286885, '__ci_last_regenerate|i:1661286885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('220cdbe4c857764e17ec9217302e5c750838e582', '65.154.226.166', 1661286886, '__ci_last_regenerate|i:1661286885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9712aae56295de9b9bd9ffb43bb6f42ee0821f4c', '37.111.217.121', 1661321308, '__ci_last_regenerate|i:1661321308;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661318455;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80de446962a90d9a0a65441ac48354d3bb95d88', '37.111.217.121', 1661325326, '__ci_last_regenerate|i:1661325326;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661321316;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09cc27dc56d94a19773c0d4be2c844ec5e99d4a', '37.111.217.121', 1661328316, '__ci_last_regenerate|i:1661328316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661325331;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c4a9882f6a2310b71f1093b7a67d12916cb71b', '37.111.217.121', 1661329809, '__ci_last_regenerate|i:1661329809;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661328319;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6015a114d303a5fc39f9f2a6ad9ec2d5fb980758', '37.111.217.121', 1661336345, '__ci_last_regenerate|i:1661336345;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661335601;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a17f6e1f81240fd5dc669b89d03393c9b941fd', '37.111.217.121', 1661341395, '__ci_last_regenerate|i:1661341395;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661336637;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302b6197b9eb55c8ca3c21f1b5b6457deb34dbde', '116.204.230.26', 1661340435, '__ci_last_regenerate|i:1661340435;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661232600\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1661340424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b4162b380e5d5dd32d489981fdcaa767cfec1c', '116.204.230.26', 1661342375, '__ci_last_regenerate|i:1661342375;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661232600\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1661340424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6cb3b8ad918af3ca71815989bbaa89579873b3', '37.111.217.121', 1661341751, '__ci_last_regenerate|i:1661341751;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661341641;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f978517dd7d83e6cddb6f4d9653c48e618ff5e', '37.111.217.121', 1661342244, '__ci_last_regenerate|i:1661342244;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661341751;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f00e6e337f707c9e0b686491b68bf1050cfaf8', '37.111.217.121', 1661342586, '__ci_last_regenerate|i:1661342586;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661342577;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169a6b6b1f8f1636d450bcd3128c5274ff5a1c03', '116.204.230.26', 1661342375, '__ci_last_regenerate|i:1661342375;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661232600\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1661340424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db6a22f3b8f9c5f01b3ff09bc21398634839f61', '37.111.217.121', 1661347065, '__ci_last_regenerate|i:1661347065;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661342586;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b23674a3729904bc6842c5933c696eb51e9298', '51.158.109.3', 1661344577, '__ci_last_regenerate|i:1661344577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d509d9c974bb62b5933e31f7574b2e19ce90c2', '37.111.217.121', 1661348624, '__ci_last_regenerate|i:1661348624;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661347124;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14e22cc0bc7cb3f1bacbeb37aaa32621350866e', '37.111.217.121', 1661349471, '__ci_last_regenerate|i:1661349471;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661348624;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96880a246fd39f363d9455d28067c50c7ddcd70', '37.111.217.121', 1661350101, '__ci_last_regenerate|i:1661349471;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661228625\";last_ip|s:13:\"37.111.218.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661350101;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66292de81707ece35bdb346b1f7b2ce3cc641747', '37.111.219.139', 1661404358, '__ci_last_regenerate|i:1661404358;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661318429\";last_ip|s:14:\"37.111.217.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661403481;register_id|s:3:\"166\";cash_in_hand|s:9:\"2710.0000\";register_open_time|s:19:\"2022-08-23 20:51:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89751713b7baccdb9718a4d8bf47cea44f3b3121', '37.111.219.139', 1661404414, '__ci_last_regenerate|i:1661404358;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661318429\";last_ip|s:14:\"37.111.217.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661404413;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1fbf83158911b76696d08007c1206d0a98287c7', '37.111.219.139', 1661413673, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e387fa0bde7e39caba4ff6d4951e8bcab31dd00c', '37.111.219.139', 1661414645, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1661414645;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661403226\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661413797;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc5a7d6abfadd0b76c34d9aef7f21a65ac8c884', '37.111.219.139', 1661416798, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1661416798;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661403226\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661414853;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219407435d5b441959e4861b34f60da092f53a11', '37.111.219.139', 1661416961, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1661416798;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661403226\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661416961;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc8ca1d1ebe9354000ed8f11e2c51f342fecf3e', '37.111.219.139', 1661426739, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1661426739;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661413704\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661426563;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f45a197b33a52bcaad297de522340576f03e7ea', '37.111.219.139', 1661427864, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1661427864;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661413704\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661426908;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef5c95d9141119e3e9f79347aaa75076f927236', '37.111.219.139', 1661435431, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1661435431;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661413704\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661435351;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f1e7ccadc29942dee7c7c690b472a32fbdca82', '37.111.219.139', 1661437198, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1661437198;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661413704\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661437189;register_id|s:3:\"167\";cash_in_hand|s:9:\"4580.0000\";register_open_time|s:19:\"2022-08-25 11:13:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a3b0479e6af5c253aa0ff8f8e2185127f21e59', '37.111.219.139', 1661437459, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1661437198;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661413704\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661437459;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba1704190c715366a1a65c90f807ba658a0c62c1', '37.111.219.92', 1661490806, '__ci_last_regenerate|i:1661490806;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661489432;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3b351b554a9fe3705c0d3d4c1304065b144b73', '37.111.219.92', 1661496979, '__ci_last_regenerate|i:1661496979;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661496971;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ffb77db383ae03a9062f46a01f490707c77c975', '37.111.219.92', 1661498878, '__ci_last_regenerate|i:1661498878;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661496981;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc468dcc36b4cff988184a00598fe1277575158', '37.111.219.92', 1661501902, '__ci_last_regenerate|i:1661501902;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661498910;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3130bd6a7ab5fc11edd27a2e8bd4dbced2cbdfe6', '37.111.219.92', 1661503312, '__ci_last_regenerate|i:1661503312;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661503275;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b52826bf1d8421382cd38a46bf1709f53475959', '37.111.219.92', 1661507188, '__ci_last_regenerate|i:1661507188;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661503320;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa30847ec4db9c17fc51f9888c182bd17428b9f3', '37.111.219.92', 1661510367, '__ci_last_regenerate|i:1661510367;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661510362;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f1cb9b50bc67818dbc68908e8c6044d1639ecf', '37.111.219.92', 1661511341, '__ci_last_regenerate|i:1661511341;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661511311;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930a76a200dbcd6480f2baa4ff363775e7d9015c', '37.111.219.92', 1661511774, '__ci_last_regenerate|i:1661511774;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661511355;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060efac23cf0d133f4ea8c589330f17aeef3e722', '37.111.217.47', 1661512242, '__ci_last_regenerate|i:1661512242;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661512238;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5142f81c41aa7e9b1a50fb898037da6c3fac31fc', '37.111.217.47', 1661514614, '__ci_last_regenerate|i:1661514614;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661514605;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b29d7f44577c51f32a40d66840196835c1da52', '37.111.217.47', 1661514193, '__ci_last_regenerate|i:1661514193;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661514193;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922ff1e49cafd0fd4c8815fb9147200b68915596', '37.111.217.47', 1661515311, '__ci_last_regenerate|i:1661515311;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661514614;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b02fc1ebc36f8c78acc7d4c63e72beefd9a6ef', '37.111.217.47', 1661516944, '__ci_last_regenerate|i:1661516944;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661515322;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b21f35276b1948dfc37c621e94ddc23572d9e5', '37.111.217.47', 1661517261, '__ci_last_regenerate|i:1661517261;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661517190;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7909896fd5ea6d5519aa2541591df89ea12296cf', '37.111.217.47', 1661522579, '__ci_last_regenerate|i:1661522579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661522565;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a83f8d1c880d796bb3a673303f849d6f8248848', '37.111.217.47', 1661525101, '__ci_last_regenerate|i:1661525101;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661522579;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90cdb786c162bde0848501ec02adc96c41f44fac', '37.111.217.47', 1661525814, '__ci_last_regenerate|i:1661525814;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661525810;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7210378b88f9617c414384670b45e3d309ac597', '37.111.217.47', 1661526201, '__ci_last_regenerate|i:1661526201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661525814;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a625e3632693ee31f16dd957f648ba587c3a7cc', '37.111.217.47', 1661527137, '__ci_last_regenerate|i:1661527137;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661527133;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca83649dec26d73c318fb412057705531b5dcd4', '37.111.217.47', 1661527493, '__ci_last_regenerate|i:1661527493;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661527487;register_id|s:3:\"168\";cash_in_hand|s:10:\"11510.0000\";register_open_time|s:19:\"2022-08-25 20:20:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4eaaea768e9fd0d124824a384e77634b51e5177', '37.111.217.47', 1661527511, '__ci_last_regenerate|i:1661527493;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661424838\";last_ip|s:14:\"37.111.219.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661527511;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca35003a477f124e6b4635064f3b0f6588e5a131', '37.111.217.68', 1661579349, '__ci_last_regenerate|i:1661579349;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661578455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e6da4ce5386bcd36e312d4f52956bba98aa3efa', '37.111.217.68', 1661581020, '__ci_last_regenerate|i:1661581020;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661578455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dfe7e31d2f7f55ebf3383053881076f31fdf49', '37.111.217.68', 1661582359, '__ci_last_regenerate|i:1661582359;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661581268;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24d2bc4c8f7822fb588fb9e36f8285899ed6a439', '37.111.217.68', 1661583652, '__ci_last_regenerate|i:1661583652;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661583188;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799e7e80ca9d754e75b329f885ac2e22dec8f4c7', '37.111.217.68', 1661588023, '__ci_last_regenerate|i:1661588023;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661588018;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5845d1b3c529647d99d443576eac8d03f75055b7', '37.111.217.68', 1661593013, '__ci_last_regenerate|i:1661593013;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661588061;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2799051e860128ceeb22bbb0a33a3abe0a9aa820', '37.111.217.68', 1661594640, '__ci_last_regenerate|i:1661594640;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661593066;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8e0accc3b0f29ce3b1ce1e1e777f08802caee4', '37.111.217.68', 1661597823, '__ci_last_regenerate|i:1661597823;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661597814;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb518f6209e07d7478e314d85bcead7ad3b152d', '37.111.217.68', 1661600152, '__ci_last_regenerate|i:1661600152;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661597814;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d12921776778490893f0d159300056eace38cd', '37.111.217.68', 1661601123, '__ci_last_regenerate|i:1661601123;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661600350;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d685dd3c6090d3c1cc9cbf5449535157fc7df0f6', '37.111.217.68', 1661607386, '__ci_last_regenerate|i:1661607386;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661600350;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182d77aa9729e616f425085ee205a9ee558f1fae', '37.111.217.68', 1661607791, '__ci_last_regenerate|i:1661607791;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661607544;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fcd2433a5be67761f8598d67f52be10d8c70da', '37.111.217.68', 1661608263, '__ci_last_regenerate|i:1661608263;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661607893;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69fac53a6a5a0bcb27bac72fc020a4d14fc60217', '37.111.217.68', 1661608768, '__ci_last_regenerate|i:1661608768;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661608677;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f771fc9d72cd5c04ed0ed8579c371a879cffa106', '37.111.217.68', 1661609097, '__ci_last_regenerate|i:1661609097;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661609077;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97d5e183349851fccbe70d390d4db3fbc38f902', '37.111.217.68', 1661609720, '__ci_last_regenerate|i:1661609720;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661609716;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11b88092a90f8b2e1ca428284c1511a46404425', '37.111.217.68', 1661611524, '__ci_last_regenerate|i:1661611524;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661609721;register_id|s:3:\"169\";cash_in_hand|s:8:\"240.0000\";register_open_time|s:19:\"2022-08-26 21:25:06\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445314cf5ba75ffdc869f762a4bc8cee31dc1ec8', '37.111.217.68', 1661611583, '__ci_last_regenerate|i:1661611524;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661489160\";last_ip|s:13:\"37.111.219.92\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661611582;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ce29c46452678b970555f23750edeb39fdaf18', '162.142.125.222', 1661631103, '__ci_last_regenerate|i:1661631103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03aa0eabb10a0b3939f1f8f6ae4c2bcb9b9fff70', '162.142.125.222', 1661631103, '__ci_last_regenerate|i:1661631103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2ac68548bdd379ba43ceb7e5793b97910a4896', '162.142.125.222', 1661631103, '__ci_last_regenerate|i:1661631103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8786e6e32114529499ce9c67747182dd6851292', '162.142.125.222', 1661631104, '__ci_last_regenerate|i:1661631104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b10a30a0c3eeeb81f834b3c8247648307a5d2c86', '162.142.125.222', 1661631105, '__ci_last_regenerate|i:1661631105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9183ba0dd313b86e7d1a0c90c41eb883b018748', '162.142.125.222', 1661631105, '__ci_last_regenerate|i:1661631105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740023a1f02f65aaa629a646a9707e8c4f7f2373', '167.248.133.120', 1661631309, '__ci_last_regenerate|i:1661631309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86489466ba4b6d6ac6464494dbfdbb6ada29d59a', '167.248.133.120', 1661631310, '__ci_last_regenerate|i:1661631310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484215452fdbcf96679e3ce752f5305dca0ad2e0', '167.248.133.120', 1661631311, '__ci_last_regenerate|i:1661631311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f571ceee0a680d36ed177b83ec510d5ddad342b', '167.248.133.120', 1661631311, '__ci_last_regenerate|i:1661631311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03094a1f4eded012edddf4aa7ff00679342ec4e1', '167.248.133.120', 1661631313, '__ci_last_regenerate|i:1661631313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df74e84bced3418e22383d361b2511bb462c486b', '167.248.133.120', 1661631317, '__ci_last_regenerate|i:1661631317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13cf98b27f5b940d08733fc5db97099cc5090636', '37.111.218.173', 1661665196, '__ci_last_regenerate|i:1661665196;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661661982;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce97436348c647dbcfb224b803a03efc5531e6c3', '37.111.218.173', 1661665758, '__ci_last_regenerate|i:1661665758;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661665203;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c57a9671a51dadd34d1ee4075c1f85e66113440', '37.111.218.173', 1661667241, '__ci_last_regenerate|i:1661667241;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661665774;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8d7f49633abad27a39631b7ce12393009e9e11', '37.111.218.173', 1661670777, '__ci_last_regenerate|i:1661670777;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661667437;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b69ba67fe277c6b2f1c0f19579c482f3e9fd9a7', '37.111.218.173', 1661672826, '__ci_last_regenerate|i:1661672826;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661667437;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67197a023c8b90019a404aa96d29b83c43f742a7', '37.111.218.173', 1661675398, '__ci_last_regenerate|i:1661675398;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661672837;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd72eb88684e91b1181580b557abfa1d61341938', '37.111.218.173', 1661677452, '__ci_last_regenerate|i:1661677452;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661677072;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ff2818f984d818704dfb87d9db7520ddda5ecf', '37.111.218.173', 1661679410, '__ci_last_regenerate|i:1661679410;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661679394;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('becc57747b24670f20792b75a9a543928842618d', '37.111.218.173', 1661681583, '__ci_last_regenerate|i:1661681583;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661680921;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf84c9867dc4fa285c19d239e719c8d1b15f90ee', '37.111.218.173', 1661685794, '__ci_last_regenerate|i:1661685794;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661685474;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79d5902c6ca4ab0a8ca764477b577b46e70a91c', '37.111.218.173', 1661691436, '__ci_last_regenerate|i:1661691436;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661685795;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82ad79d4d056efcd9031607decd312aec00dec2', '37.111.218.173', 1661693316, '__ci_last_regenerate|i:1661693316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661693071;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b901cc63f745bb83ceee31a4162aef241aa3e42c', '37.111.218.173', 1661697193, '__ci_last_regenerate|i:1661697193;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661694027;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a04716b9c00c4821d20417f4d13847d87e9a01d1', '37.111.218.173', 1661697634, '__ci_last_regenerate|i:1661697634;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661697628;register_id|s:3:\"170\";cash_in_hand|s:9:\"2800.0000\";register_open_time|s:19:\"2022-08-27 20:46:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58c3d038e1a48d38268f49c6992588a959e9343', '37.111.218.173', 1661697656, '__ci_last_regenerate|i:1661697634;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661578365\";last_ip|s:13:\"37.111.217.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661697655;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569a670edeaba8eea9c5e82290c669913629b0ec', '37.111.218.171', 1661750627, '__ci_last_regenerate|i:1661750627;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661749073;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ffcbd8b4cd63b6e1e316f78e6e30eb1c48a6d0', '37.111.218.171', 1661751026, '__ci_last_regenerate|i:1661751026;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661750693;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a23029519f0e2a60368c250058ff8179dc192d', '37.111.218.171', 1661753422, '__ci_last_regenerate|i:1661753422;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661753371;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08df08a3ede5a679be3ea3550dafcd118ac4907a', '37.111.218.171', 1661757235, '__ci_last_regenerate|i:1661757235;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661757226;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc757cc720748d2709792bed15320947d2f2070', '37.111.218.171', 1661758035, '__ci_last_regenerate|i:1661758035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661757928;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956269efc4454fc81e095879026d37210c43a55c', '37.111.218.171', 1661760392, '__ci_last_regenerate|i:1661760392;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661758046;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba69dfd65951eaa585493d2bc73a311b3e6382cb', '37.111.218.171', 1661767325, '__ci_last_regenerate|i:1661767325;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661758046;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858800bfbac4f15bbfa8990def1d3048619af13d', '37.111.218.171', 1661772591, '__ci_last_regenerate|i:1661772591;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661767342;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d738039780e2e9861e6a931d8cd5caf068ae8c', '37.111.218.171', 1661776042, '__ci_last_regenerate|i:1661776042;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661776035;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47180d0ee2d5502e64a13a69e489456fe2bf683', '37.111.218.171', 1661776925, '__ci_last_regenerate|i:1661776925;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661776092;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596bf1c411b908266e38b30802c7e180be2b37ff', '37.111.218.171', 1661780232, '__ci_last_regenerate|i:1661780232;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661776092;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eab2370396a8395d10407204c8fee3cc607ef73', '37.111.218.171', 1661781847, '__ci_last_regenerate|i:1661781847;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661781833;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d51967820bf34e42f2a7d45cab1259d3815da9', '37.111.218.171', 1661782446, '__ci_last_regenerate|i:1661782446;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661781848;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13a2f9d0f0e96878727c31d6c1abe2872b4a0fe', '37.111.218.171', 1661783399, '__ci_last_regenerate|i:1661783399;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661783388;register_id|s:3:\"171\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-08-28 20:40:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a706a8d1bdf205ab2e371c41d8225c11e1d009', '37.111.218.171', 1661783421, '__ci_last_regenerate|i:1661783399;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661661889\";last_ip|s:14:\"37.111.218.173\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661783421;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e588e2d87b184c12297d21ae3ab9881e4bc68306', '37.111.217.237', 1661846540, '__ci_last_regenerate|i:1661846540;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661846398;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490a4fd827bfdee43d620c0845eaaf5f2316bbcb', '37.111.217.237', 1661847372, '__ci_last_regenerate|i:1661847372;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661846540;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c30d7bf50b78fc3d42c31d6c751269e039927b', '37.111.217.237', 1661850617, '__ci_last_regenerate|i:1661850617;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661847390;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32749a9399d9b7446dcba1e3dbcac69ebd2222cc', '37.111.217.237', 1661851049, '__ci_last_regenerate|i:1661851049;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661850760;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c3bd80483a558267c16afee8c81fab5715d48c', '37.111.217.237', 1661852282, '__ci_last_regenerate|i:1661852282;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661851213;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099f6559af998506ed398dbd4ccda29813dde1e6', '37.111.217.237', 1661855286, '__ci_last_regenerate|i:1661855286;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661852448;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b71bf8d5191ed849931ce1f7f9f8fdc2cccc26c', '37.111.217.237', 1661855722, '__ci_last_regenerate|i:1661855722;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661855713;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4adaae8564fcb3367824bda046b828c679cf696c', '37.111.217.237', 1661857762, '__ci_last_regenerate|i:1661857762;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661855726;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad91fff595010337c67a1e14c2f0b56aa0de0e1f', '116.204.230.23', 1661857660, '__ci_last_regenerate|i:1661857660;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661339923\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"MjdTv9poqfHCbUuhgxzN\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291ee7e2b3bb5c2761959a2d6e7784a952fb9553', '116.204.230.23', 1661857969, '__ci_last_regenerate|i:1661857969;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661339923\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"MjdTv9poqfHCbUuhgxzN\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48fc978bae51fdb2965da89983738b0ebacf257', '37.111.217.237', 1661858768, '__ci_last_regenerate|i:1661858768;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661857765;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4e86a35c8a2a4c603e7413a85d4b2aacf6ce8f5', '116.204.230.23', 1661858609, '__ci_last_regenerate|i:1661858609;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661339923\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"6ZDA1RgsoiIcSKHJ48uw\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27aebf8b2b3fbee91454be5e24836b43404cdffc', '116.204.230.23', 1661858713, '__ci_last_regenerate|i:1661858609;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661339923\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"6ZDA1RgsoiIcSKHJ48uw\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56358fc4d15d96fb2d4c974ad6476a18d224ad4', '37.111.217.237', 1661862303, '__ci_last_regenerate|i:1661862303;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661858768;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9414c7007a899f2cba14f2c86c4cc7a6deda933', '37.111.217.237', 1661863418, '__ci_last_regenerate|i:1661863418;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661863410;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3557331525814210b286acdc8824825f28c18f', '37.111.217.237', 1661864052, '__ci_last_regenerate|i:1661864052;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661863547;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d194ff1c451fc97d4231ecd8a779d5a0ae830a9', '37.111.217.237', 1661865099, '__ci_last_regenerate|i:1661865099;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661863547;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12bd5850a914a3c6bb53335eff212d256438479f', '37.111.217.237', 1661865899, '__ci_last_regenerate|i:1661865899;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661865099;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2ecd23df1c40fdcc3f1646ffc98979db63febf', '37.111.217.233', 1661866292, '__ci_last_regenerate|i:1661866292;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661866177;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d81e487edcb1883e72b6b4bacd7260b9ff1984', '37.111.217.233', 1661866693, '__ci_last_regenerate|i:1661866693;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661866292;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca40594c2fcf894160b2f4c146b19e137f88820', '37.111.217.233', 1661867034, '__ci_last_regenerate|i:1661867034;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661866906;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9826d5c73891ae1c007e77830b586f5be45bd0', '37.111.218.87', 1661867338, '__ci_last_regenerate|i:1661867338;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661867281;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1dfbdfb5d4ca9213f9646e8a916ad0575561e6a', '45.120.39.142', 1661867946, '__ci_last_regenerate|i:1661867946;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661867448;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a39ad0a8cba0afbb231ff6b28c9a9f0d321b647', '45.120.39.142', 1661869112, '__ci_last_regenerate|i:1661869112;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661868592;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe6fb89ecdcc7ba6decc71585b91cf9361e539d', '45.120.39.142', 1661869599, '__ci_last_regenerate|i:1661869599;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661869118;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6817893de07d569a31df0b8383758d5b4d7e6e1', '45.120.39.142', 1661870257, '__ci_last_regenerate|i:1661870257;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661870252;register_id|s:3:\"172\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-08-29 20:30:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2815cbc211b38b8cb23223484147bad9cb5c0b', '45.120.39.142', 1661870275, '__ci_last_regenerate|i:1661870257;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661749044\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661870275;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9175329ccafc0088ed7ea079c2bcb57c82ffb31f', '205.210.31.184', 1661892529, '__ci_last_regenerate|i:1661892529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3db1cc2d260051d663cef7220da9823ebd09702b', '116.204.230.18', 1661920940, '__ci_last_regenerate|i:1661920848;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661857356\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca18d7161302f07f6b977a131fc147c03a835ff', '45.120.39.142', 1661922955, '__ci_last_regenerate|i:1661922955;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661841560\";last_ip|s:14:\"37.111.217.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661922914;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61464c8c644015c9eeee5a8a61864de243b17224', '45.120.39.142', 1661926993, '__ci_last_regenerate|i:1661926993;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661841560\";last_ip|s:14:\"37.111.217.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661926990;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f81d15b7785019542e5aad39372b041b6ff8178', '37.111.219.54', 1661930639, '__ci_last_regenerate|i:1661930639;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661841560\";last_ip|s:14:\"37.111.217.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661926990;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dcdd5e861a81b8eaeb7a111d3a431849c5da785', '37.111.219.54', 1661933280, '__ci_last_regenerate|i:1661933280;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661841560\";last_ip|s:14:\"37.111.217.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661930644;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86645ef10237eb762d29e62a9ddbcae8140aee0d', '37.111.219.54', 1661933306, '__ci_last_regenerate|i:1661933280;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661841560\";last_ip|s:14:\"37.111.217.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661933306;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d46c7134e5a3b4e8978d568f83dd02cd00d90a', '37.111.219.54', 1661950555, '__ci_last_regenerate|i:1661950555;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661921489\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661950547;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f5934a97e6d1213891556815edce0ecc3c779e6', '37.111.219.54', 1661953255, '__ci_last_regenerate|i:1661953255;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661921489\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661950610;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c46efe60add11ba02caf586d2e6964093fab388', '37.111.219.54', 1661953558, '__ci_last_regenerate|i:1661953558;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661921489\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661953535;register_id|s:3:\"173\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2022-08-30 20:37:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a9aa7319a959803bc6aff14fc03fd437f7edd2', '37.111.219.54', 1661953562, '__ci_last_regenerate|i:1661953558;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661921489\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1661953562;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9df575edd367d77fca9bbb62acd815fa976331', '116.204.230.30', 1661955477, '__ci_last_regenerate|i:1661955299;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661920852\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1661955477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd071ba1234f9dbae8021b246ce95288715196e', '45.55.56.169', 1661968989, '__ci_last_regenerate|i:1661968989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1de626be6da5db945e580bd63acb44c37c44fe2', '151.80.20.26', 1661987497, '__ci_last_regenerate|i:1661987497;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b516c4dddf8bb5c448d87cb5cd892f25d4dc97', '151.80.20.26', 1661987498, '__ci_last_regenerate|i:1661987498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f7e29e47df0d2a6213d9732be7b462b63ffd72', '151.80.20.26', 1661987498, '__ci_last_regenerate|i:1661987498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e3be6c89fef717dabf21bfe5b8338cd157e876', '151.80.20.26', 1661987498, '__ci_last_regenerate|i:1661987498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5023c7161d8f70331edef032097955d8c51097', '45.120.39.142', 1662008883, '__ci_last_regenerate|i:1662008883;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77440e92bb4c53ad4cc926b09e7893e855f2d455', '45.120.39.142', 1662012223, '__ci_last_regenerate|i:1662012223;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662009103;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447f88927fac58db60339c25bbb428b50c39b854', '37.111.219.16', 1662012701, '__ci_last_regenerate|i:1662012701;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662012256;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ad8b069e7367e558c9dacfaf359515a35d0a85', '37.111.219.16', 1662015109, '__ci_last_regenerate|i:1662015109;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662012726;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dac693bf9b2204a020200b6d4fa40a411a7d11', '37.111.219.16', 1662017453, '__ci_last_regenerate|i:1662017453;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662012726;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b061c86a88eabdeab710f5adde533342248df5b', '37.111.219.16', 1662018003, '__ci_last_regenerate|i:1662018003;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662017994;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92efe7d4982ccd1156f92aad4efc50e78a48f01c', '37.111.219.16', 1662022010, '__ci_last_regenerate|i:1662022010;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662017994;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89389fce1ae4aea5701a755057edd57fade8070c', '37.111.219.16', 1662023710, '__ci_last_regenerate|i:1662023710;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662022025;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f898f8da3a453fe23ad904e0a660144d885e7cdb', '37.111.219.16', 1662023736, '__ci_last_regenerate|i:1662023710;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1661943011\";last_ip|s:13:\"37.111.219.54\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662023736;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70cbd25aeb47bfe41ddbf17fc381601cc6f1f943', '37.111.219.16', 1662032540, '__ci_last_regenerate|i:1662032540;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662031749;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc6b449caf59db3a022bbf30a2cb3efa2e643971', '37.111.219.16', 1662038594, '__ci_last_regenerate|i:1662038594;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662032622;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd564dc32419412664536201600cc5e2a963e53', '116.204.230.30', 1662040417, '__ci_last_regenerate|i:1662040417;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661955308\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1662033566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a53a440603251a59222b4ba1f0a8c9441a1cb7', '37.111.219.16', 1662041231, '__ci_last_regenerate|i:1662041231;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662041227;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6201678e6f92a06cd167aa679f09f660ea8c5a30', '116.204.230.30', 1662040427, '__ci_last_regenerate|i:1662040417;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1661955308\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1662040427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3153ea66740aa61869c855bd257b3d5077fe35b6', '37.111.219.16', 1662041869, '__ci_last_regenerate|i:1662041869;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662041697;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb5d939c6593b5ce93b7cdf60024b533d70419f5', '37.111.219.16', 1662042694, '__ci_last_regenerate|i:1662042694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662041887;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('decc1a42558987033c0820c66c337ef0810211be', '37.111.219.16', 1662043754, '__ci_last_regenerate|i:1662043754;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662042698;register_id|s:3:\"174\";cash_in_hand|s:9:\"3170.0000\";register_open_time|s:19:\"2022-08-31 19:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ffc90297fdcf81ad78231627bf8a144201ae9b2', '37.111.219.16', 1662043801, '__ci_last_regenerate|i:1662043754;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662008431\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662043801;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2305251123bb86f12dcd0fa8a26593651d92c203', '152.32.211.172', 1662057399, '__ci_last_regenerate|i:1662057399;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82e3233a227eea370b501d6e0dd7792b459e6f9b', '152.32.211.172', 1662057404, '__ci_last_regenerate|i:1662057404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12ec38b6d33ef9d9b1bf0fda8da2cd30532d993', '152.32.211.172', 1662057404, '__ci_last_regenerate|i:1662057404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07d30176fdd103f6ba6631841a7623a76668500', '152.32.211.172', 1662057405, '__ci_last_regenerate|i:1662057405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7da46e7b20ac438bcfb72463771b030ea84af3', '45.120.39.142', 1662095574, '__ci_last_regenerate|i:1662095574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662031505\";last_ip|s:13:\"37.111.219.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662095560;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d90074e02b291059ab310e12265ba807022063', '45.120.39.142', 1662095838, '__ci_last_regenerate|i:1662095574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662031505\";last_ip|s:13:\"37.111.219.16\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662095838;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0520a5888fc2be4b12491710e22b82e59aed225c', '116.204.230.30', 1662100297, '__ci_last_regenerate|i:1662100297;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662033385\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f40b3de80126715d3681a089be8db9bb06486f', '116.204.230.30', 1662106292, '__ci_last_regenerate|i:1662106292;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662033385\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77ed3ef6b21ec6d66efeffce41cd12c9cf1ab83', '37.111.217.28', 1662108222, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662108222;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662103888;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf6fded2542dc984da814d017345cb52b2c57a8', '116.204.230.30', 1662106304, '__ci_last_regenerate|i:1662106292;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662033385\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('059955af125b7263637c743f0836bddb7f6ae796', '37.111.217.28', 1662110592, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662110592;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662108229;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965b224dc095275c9438f57825fab9c2e7da9779', '37.111.217.28', 1662113587, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662113587;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662108229;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62baa0ef9b49286915235436119431600efdc568', '37.111.217.28', 1662114026, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662114026;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662113678;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a65ae9657e06bd9c7120135856c5e0589b91651', '37.111.217.28', 1662114575, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662114575;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662114047;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e147b993de6b4e55fcbd6984888bc5d436af936', '37.111.217.28', 1662115056, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662115056;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662115041;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ad142843d76fe4c113b87a4ada5ffb11086491', '37.111.217.28', 1662115642, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662115642;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662115056;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7f51880d617b4e58d08a5c0df579f15d4b54b0', '37.111.217.28', 1662115669, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1662115642;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662095155\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662115642;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2518cff41ab0d0ce3acaf662eefab254d3f62c', '45.120.39.142', 1662132605, '__ci_last_regenerate|i:1662132605;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662103830\";last_ip|s:13:\"37.111.217.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662132561;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032acc42bf9682745367e72af2a56d2797fc134f', '45.120.39.142', 1662132990, '__ci_last_regenerate|i:1662132990;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662103830\";last_ip|s:13:\"37.111.217.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662132984;register_id|s:3:\"175\";cash_in_hand|s:9:\"4930.0000\";register_open_time|s:19:\"2022-09-01 20:49:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f067673c578ac6bdbe8f427a6527a824743023e0', '45.120.39.142', 1662133010, '__ci_last_regenerate|i:1662132990;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662103830\";last_ip|s:13:\"37.111.217.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662133010;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2667b55363ac81b3fcb89e1173eb7b1fcb29cef', '193.56.29.218', 1662168488, '__ci_last_regenerate|i:1662168488;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2246361f349aeaebff8c4dd39fdf471c12d0d0eb', '193.56.29.218', 1662168494, '__ci_last_regenerate|i:1662168494;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564bf606ea8cadecea6ab28e4b9d118dcf80385c', '193.56.29.218', 1662168504, '__ci_last_regenerate|i:1662168504;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68f69ae95fe1203437992ca5f7588d83ee257dd', '45.120.39.142', 1662180556, '__ci_last_regenerate|i:1662180556;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662132245\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c6f26ee118c11a99b96e0b93bddf5bde8a7ca7', '45.120.39.142', 1662183317, '__ci_last_regenerate|i:1662183317;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662132245\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662183311;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af0505ab11d3ce0cfdb7cc1586ba652ab45b336', '116.204.230.30', 1662182143, '__ci_last_regenerate|i:1662182143;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662095985\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"d9tWewZMDfmJhgIysrjL\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef8daca16273122db69ef67a0a6a7aa374bafb2', '116.204.230.30', 1662186681, '__ci_last_regenerate|i:1662186681;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662095985\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"d9tWewZMDfmJhgIysrjL\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db7ca50b20696c1f4a647c06a536a516fbfd6774', '45.120.39.142', 1662183934, '__ci_last_regenerate|i:1662183934;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662132245\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662183317;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8704495fee8deb70c2cd5d707afb8a9bc05e8c54', '45.120.39.142', 1662189616, '__ci_last_regenerate|i:1662183934;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662132245\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662189616;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6cd852c407f751fdd076d2af6b318e1ec7b1e62', '116.204.230.30', 1662186733, '__ci_last_regenerate|i:1662186681;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662095985\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"9s7quUTFGaBHKLh4dft1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec28632cf757716b5d70e8e50f3fc025543e108', '5.182.26.11', 1662194956, '__ci_last_regenerate|i:1662194956;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('babebb95b6e31d8a69e05175ee005d8b302c31cf', '5.182.26.11', 1662194957, '__ci_last_regenerate|i:1662194957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169d88879a73ed2bd15f6cd9b4f8b77d3aa204c1', '5.182.26.11', 1662194959, '__ci_last_regenerate|i:1662194959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aeb0e2ef44c25194ed85516b3baeb75fc2591a4', '5.182.26.11', 1662194962, '__ci_last_regenerate|i:1662194962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303bb58f61c89eb8f164b948c5b661417f39c387', '45.120.39.142', 1662204465, '__ci_last_regenerate|i:1662204465;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('704cfa05ebeccf8d5497e8bf10487677abe24cb5', '45.120.39.142', 1662204974, '__ci_last_regenerate|i:1662204974;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662204575;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb7135692512e0c8e9a20eb6876ef0b0475ea4e8', '45.120.39.142', 1662205563, '__ci_last_regenerate|i:1662205563;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662205540;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('227ca4aaa5f33dcc71c0d4aa8f1568101de162b7', '45.120.39.142', 1662206937, '__ci_last_regenerate|i:1662206937;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662206887;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20914b3efdd5f2fa8b981ddd9d338c66ec06e8e', '45.120.39.142', 1662207429, '__ci_last_regenerate|i:1662207429;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662206941;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21f4d4db121a6aa3fddb149c3c68e297f01b843', '45.120.39.142', 1662208129, '__ci_last_regenerate|i:1662208129;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662207641;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db9f9161083e29bc5d9a3fd4d373fcdcf833254e', '45.120.39.142', 1662208995, '__ci_last_regenerate|i:1662208995;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662208129;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb0c644b516c87d393b9e432543f5f470c50eb0', '45.120.39.142', 1662209453, '__ci_last_regenerate|i:1662209453;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662209214;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c63a3b4e1c82c18af551a5870abf63d335b098', '45.120.39.142', 1662212686, '__ci_last_regenerate|i:1662212686;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662212356;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748199f15f215f75c2ddd52a20ad09a65a9e8f78', '116.204.230.30', 1662211552, '__ci_last_regenerate|i:1662211305;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662181754\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478a24aba03369b5e90b20baa73248a244c8cc09', '45.120.39.142', 1662214592, '__ci_last_regenerate|i:1662214592;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662214570;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae017a8f45402537cadddd16d18bce059a33d4e', '45.120.39.142', 1662217117, '__ci_last_regenerate|i:1662217117;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662217089;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157dde88e483404f8901d8206211514b417d4675', '45.120.39.142', 1662217503, '__ci_last_regenerate|i:1662217503;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662217117;register_id|s:3:\"176\";cash_in_hand|s:9:\"2240.0000\";register_open_time|s:19:\"2022-09-02 21:36:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4517399fa3e0a0b9a3d45eb3994e53b2b29e3d2a', '45.120.39.142', 1662217746, '__ci_last_regenerate|i:1662217503;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662178442\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662217746;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beea49727100041bf6e824998809bbb2b06ce069', '45.120.39.142', 1662267509, '__ci_last_regenerate|i:1662267490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662197345\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662267509;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9dc72de7a5c77d379225f3d8383c304198596c', '116.204.230.30', 1662269830, '__ci_last_regenerate|i:1662269830;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662211309\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3733e7e5da149d7666d988d096f69737765202ea', '116.204.230.30', 1662276579, '__ci_last_regenerate|i:1662276579;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662211309\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b2d7e6a0eb19c9e8fe9c43b6c26d3245b9c9f5', '45.120.39.142', 1662275194, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fdb7ce81e003b805b65ca1273d2cec96606f337', '45.120.39.142', 1662275390, 'requested_page|s:5:\"admin\";__ci_last_regenerate|i:1662275207;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662267498\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1662275390;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6219d751944e4840567b2e21df62fef9e67a74', '116.204.230.30', 1662276654, '__ci_last_regenerate|i:1662276579;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662211309\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6355090cd6c6f09827935c117321200caf0ed930', '116.204.230.30', 1662283957, '__ci_last_regenerate|i:1662283953;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662269456\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5436255b8c148edaf0ed7d4e1217c1bbbb4a2fb5', '45.120.39.142', 1662288340, '__ci_last_regenerate|i:1662288340;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662288328;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f264b10f63d679e7d538ba0c8f6bf5836f54a14', '45.120.39.142', 1662288919, '__ci_last_regenerate|i:1662288919;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662288891;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2927e7766da3a73eb9477de7ed4c0bc67021421c', '45.120.39.142', 1662290438, '__ci_last_regenerate|i:1662290438;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662288987;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a819d32ee0221f2aac6c7d82739a5ce46d77a80e', '116.204.230.19', 1662290087, '__ci_last_regenerate|i:1662290024;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1661162422\";last_ip|s:14:\"37.111.211.253\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff22b877c38bfadae3ff4502ad8775e97d92ab18', '45.120.39.142', 1662291992, '__ci_last_regenerate|i:1662291992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662291871;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be7985dad29f841a324f94608477a21f14c8ff4', '45.120.39.142', 1662293118, '__ci_last_regenerate|i:1662293118;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662292253;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e54537ad7ef84a83f7287439bf38e0026226e304', '45.120.39.142', 1662293420, '__ci_last_regenerate|i:1662293420;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662293131;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0a91d29d5165654fcd8395f6c2a4543d6b38d0', '45.120.39.142', 1662298240, '__ci_last_regenerate|i:1662298240;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662293422;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9303c8f4fe73cfd51a951488fa61742c99a1197d', '45.120.39.142', 1662299037, '__ci_last_regenerate|i:1662299037;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662299025;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a61a5503163beafeb2183f6839ebce0d8e25e3c2', '45.120.39.142', 1662301659, '__ci_last_regenerate|i:1662301659;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662301646;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d048b5db1255302d589c17b94b0d4839666b0c49', '45.120.39.142', 1662302913, '__ci_last_regenerate|i:1662302913;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662302909;register_id|s:3:\"177\";cash_in_hand|s:9:\"1320.0000\";register_open_time|s:19:\"2022-09-03 21:09:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbfc93c162a0a0b5049625acaf0db03c0f0a566', '45.120.39.142', 1662303007, '__ci_last_regenerate|i:1662302913;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662275217\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662303007;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c7b44e0a6abd4daa2d666050d2e38d679052bf', '142.93.64.229', 1662320717, '__ci_last_regenerate|i:1662320717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36048a64afc38a779b36b9f5dc9e4b6070ec2ff', '142.93.64.229', 1662320722, '__ci_last_regenerate|i:1662320722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce8bcf9f506939867b6a600dfab2ad2a6e8cc793', '142.93.64.229', 1662320726, '__ci_last_regenerate|i:1662320726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2c1d79ed454db632465cbb6bbd04923cd0b20d', '198.235.24.55', 1662322606, '__ci_last_regenerate|i:1662322606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734fa7d63a8e73745440fdb733af54c31c40559a', '205.210.31.57', 1662323717, '__ci_last_regenerate|i:1662323717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c63398fb1d99531039c1c0bb0a5c7593b50eaaa', '162.142.125.10', 1662325942, '__ci_last_regenerate|i:1662325942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c71042f5c0133246f24566e791638d997f1cc7f', '162.142.125.10', 1662325942, '__ci_last_regenerate|i:1662325942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4266dbbb15540fcbf549926b5650763cbedc3adf', '162.142.125.10', 1662325943, '__ci_last_regenerate|i:1662325943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6158e225cb90da81cdb756aef94cae09134e7c8', '162.142.125.10', 1662325943, '__ci_last_regenerate|i:1662325943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35ad0b56022a4c3cfb14b35520d64a96788b63d', '162.142.125.10', 1662325944, '__ci_last_regenerate|i:1662325944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('790f7ac4c1ca0bee7e91dde4bf8b14cbe89f5293', '162.142.125.10', 1662325944, '__ci_last_regenerate|i:1662325944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b730214c8df8824e2fc4756937162a7cf652dfa', '159.65.168.94', 1662343949, '__ci_last_regenerate|i:1662343949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fd1ef406da2f55ea3f29e21734465d24bbd126', '45.120.39.142', 1662353821, '__ci_last_regenerate|i:1662353821;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff17ebc1a882af24f9993b00ca735be7ac707b7', '45.120.39.142', 1662354791, '__ci_last_regenerate|i:1662354791;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662287772\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0374622c810773130f88d7fdc868691df924b4f', '45.120.39.142', 1662359731, '__ci_last_regenerate|i:1662359731;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662287772\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662359689;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb82fa0f95353e73f0af1d625c746f06c82c8682', '45.120.39.142', 1662359878, '__ci_last_regenerate|i:1662359731;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662287772\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662359878;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89a465e4699a5fe0a5ea5a487f6fc32130943a5', '45.120.39.142', 1662371367, '__ci_last_regenerate|i:1662371367;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662353839\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662368441;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ed5cebba63c1ea51ffb37f6faf432adf12cc16', '45.120.39.142', 1662376064, '__ci_last_regenerate|i:1662376064;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662353839\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662373260;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d75abbe85d8c19c8849f8b0d0a78babe95154c', '45.120.39.142', 1662376368, '__ci_last_regenerate|i:1662376368;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662353839\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662376257;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f54fda62d71da1a478ccbce9f428ba0b216199', '45.120.39.142', 1662379156, '__ci_last_regenerate|i:1662379156;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662353839\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662378525;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce5fbb0421331a3efae86357e06812367fdc70a', '45.120.39.142', 1662378462, '__ci_last_regenerate|i:1662378462;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662353839\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662378462;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57627d144bc078052b2d576ae7993e7ff50ffe39', '45.120.39.142', 1662379260, '__ci_last_regenerate|i:1662379156;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662353839\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662379260;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95022f3e676798caf266ac56762b7a5c578ba0c4', '45.120.39.142', 1662388664, '__ci_last_regenerate|i:1662388664;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662368379\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662388659;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3132a5332276ecf9cccfdf9c0d52f590970481e5', '45.120.39.142', 1662388828, '__ci_last_regenerate|i:1662388664;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662368379\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662388826;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a7dc8f4f6194ee93e576cb9d1384cb29edc2b4', '167.94.138.118', 1662411961, '__ci_last_regenerate|i:1662411961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630fff109605cd3c436c90d2cf4d90edcec179f3', '167.94.138.118', 1662411961, '__ci_last_regenerate|i:1662411961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f9f57c3bd4bac62ce8705f9d5befed163edf1c2', '167.94.138.118', 1662411963, '__ci_last_regenerate|i:1662411963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fff9dca949d35e886932fdcb4630eafba4106f2f', '167.94.138.118', 1662411963, '__ci_last_regenerate|i:1662411963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e78c2554d3b1634580b8f9c796ede572cdcbf5', '167.94.138.118', 1662411964, '__ci_last_regenerate|i:1662411964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ecc024c5bdfb13f60a206f98e3be40990b693f', '167.94.138.118', 1662411964, '__ci_last_regenerate|i:1662411964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9909bc117a55a6d7f0dd2fd871739c7d872d593a', '45.120.39.142', 1662440951, '__ci_last_regenerate|i:1662440951;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662440924;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ef4b8e72dc70b3f06d4bb041d64ede456bb494', '45.120.39.142', 1662441541, '__ci_last_regenerate|i:1662441541;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662441271;register_id|s:3:\"178\";cash_in_hand|s:8:\"590.0000\";register_open_time|s:19:\"2022-09-04 20:48:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('331ad4df5b7315de3a02a6fc4e2ea7d7a57fde27', '45.120.39.142', 1662443073, '__ci_last_regenerate|i:1662443073;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662441621;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94dccbf9718c3b54253ca701671712f941d62530', '45.120.39.142', 1662447307, '__ci_last_regenerate|i:1662447307;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662447302;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d41e7948efe464606b8c1693fbbbaa18ec92cf', '45.120.39.142', 1662450141, '__ci_last_regenerate|i:1662450141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662447308;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862a16cc75914f7ee4d045e66fa3f66edb7bd467', '37.111.218.183', 1662451071, '__ci_last_regenerate|i:1662451071;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662451067;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2040ca6cd77a71cac8c3cb2cad4d1fd5b04ac11', '37.111.218.183', 1662456212, '__ci_last_regenerate|i:1662456212;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662451074;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d961bd41ce9c9b032b0ff67ac678109c467c41a', '116.204.230.30', 1662455022, '__ci_last_regenerate|i:1662454917;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662283957\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"MDRExocn3SyrwbG2VHpI\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc59a7daa43b2aa60a33462c35251448644d3f23', '37.111.218.183', 1662456931, '__ci_last_regenerate|i:1662456931;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662456280;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ded0df7b114a8579133b538f9ebeb65e600ac60', '37.111.218.183', 1662460171, '__ci_last_regenerate|i:1662460171;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662456932;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25f1072572f75f426a03546990b8bc53fdc31a1', '37.111.218.183', 1662462206, '__ci_last_regenerate|i:1662462206;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662462134;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4696736673cec02ab44bc8f3c25f80d20196b4fe', '37.111.218.183', 1662464842, '__ci_last_regenerate|i:1662464842;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662462134;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc48a94d20136fefe222a1ef1e6bc5e88f3140b', '37.111.218.183', 1662465246, '__ci_last_regenerate|i:1662465246;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662464918;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192cd05fea8d99256a0c5a9cae9c4a445881d95f', '37.111.218.183', 1662468352, '__ci_last_regenerate|i:1662468352;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662465250;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d64b1c5816fffdf59591c5360ae9d78698c2ad4b', '116.204.230.30', 1662467395, '__ci_last_regenerate|i:1662467388;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662454921\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266a564e9e858f01c4a448c647679270d89bcf5b', '37.111.218.183', 1662468987, '__ci_last_regenerate|i:1662468987;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662468943;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12234e6708494aa0dd464be0e2841cc0702f836f', '37.111.218.183', 1662469804, '__ci_last_regenerate|i:1662469804;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662468988;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fe3976eae435d11821a21888e45ed564af5a2b', '37.111.218.183', 1662470458, '__ci_last_regenerate|i:1662470458;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662469989;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804ad449b5fb59af361b93dd0546088137a5f021', '37.111.218.183', 1662470948, '__ci_last_regenerate|i:1662470948;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662470630;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76f015251ff81ce715dc9a51d255d196662d162', '37.111.218.183', 1662474992, '__ci_last_regenerate|i:1662474992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662474982;register_id|s:3:\"179\";cash_in_hand|s:9:\"1590.0000\";register_open_time|s:19:\"2022-09-06 11:20:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b349f2f891aff8eba6cefdc58267ff69e217b424', '37.111.218.183', 1662475020, '__ci_last_regenerate|i:1662474992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662387087\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662475020;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a154154717234fb763db6c15af4eced833e2845c', '198.235.24.44', 1662477788, '__ci_last_regenerate|i:1662477788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d579995b650722c735850be59b47414f20c675', '45.120.39.142', 1662531912, '__ci_last_regenerate|i:1662531912;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662531891;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56dd015d8f3e04423f7a517ca64248d361b4e6aa', '45.120.39.142', 1662535565, '__ci_last_regenerate|i:1662535565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662531912;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afef351c736a1fe2cbab98add9ad69b4a87099b4', '116.204.230.30', 1662534878, '__ci_last_regenerate|i:1662534872;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662467394\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662fb974c19af0b5a9818a50848a31d92ade500d', '45.120.39.142', 1662539502, '__ci_last_regenerate|i:1662539502;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662535565;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15370366d8835eadff9076172408f4c1ed096123', '45.120.39.142', 1662546756, '__ci_last_regenerate|i:1662546756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662541152;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d73add773d058ed3967311669cc38388056102', '45.120.39.142', 1662552301, '__ci_last_regenerate|i:1662552301;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662551824;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea6a359e05639e599318b77818eb15d67748250', '45.120.39.142', 1662554492, '__ci_last_regenerate|i:1662554492;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662552363;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc26efcb0c995c0594b8528cef0ec76809f2248', '45.120.39.142', 1662557989, '__ci_last_regenerate|i:1662557989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662554524;register_id|s:3:\"180\";cash_in_hand|s:8:\"760.0000\";register_open_time|s:19:\"2022-09-06 20:36:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beac8cb1789044bfa00683aad5a0c3955b5f1397', '45.120.39.142', 1662558148, '__ci_last_regenerate|i:1662557989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662440530\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662558147;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a4f01be60b4a8cd7e6030ac83e915f3b00bbb0', '194.35.120.82', 1662571893, '__ci_last_regenerate|i:1662571893;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054289dfbed75be6fe2e0df759d2c47ed201249c', '194.35.120.82', 1662571893, '__ci_last_regenerate|i:1662571893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150df62797bd4d4d5637da6ad8a64ab5cb29ecd6', '194.35.120.82', 1662571893, '__ci_last_regenerate|i:1662571893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7aa24159fa48d548df384638596fdb6f50dffe', '194.35.120.82', 1662571893, '__ci_last_regenerate|i:1662571893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291238f598eb600f9923ee760dd3d1b984aa448e', '45.120.39.142', 1662614174, '__ci_last_regenerate|i:1662614174;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662525455\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662612780;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c089ae30bd28a7de2ab45c8c5e69affabfe03c', '45.120.39.142', 1662617455, '__ci_last_regenerate|i:1662617455;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662525455\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662614757;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2bc315c2f543a654c904813fb8169ce555d0fe8', '37.111.217.180', 1662617538, '__ci_last_regenerate|i:1662617455;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662525455\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662617537;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa84c03d0e37334f942807d09d518ce1608f6b9f', '116.204.230.23', 1662620174, '__ci_last_regenerate|i:1662620158;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662534878\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac98410a5fe6746f6d8d1772a9145fdf6a45195', '37.111.217.180', 1662635516, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662635516;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662634851;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46bf4648f0dda79be48017a247829a1e4ccacef3', '37.111.217.180', 1662634815, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a500e51528cf26c05a2d181fddb2bbf495fb1742', '37.111.217.180', 1662640332, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662640332;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662639285;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf56c3f95a07da79b64bd7e6e6be596e468f6b5', '37.111.217.180', 1662640892, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662640892;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662640333;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f240c9c0b53ab7d48f0f90d06cda902513c97e4a', '37.111.217.180', 1662642215, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662642215;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662641025;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0621cf5aa6e62d69de378d65d0520323c3b62977', '37.111.217.180', 1662642923, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662642923;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662642256;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df791e954f55cc3697b4fa827f75731ae5b93817', '37.111.217.180', 1662645682, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662645682;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662645678;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1ee303dba69c00764289c86f84306a1a471ceb', '37.111.217.180', 1662646101, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662646101;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662645683;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250b88eee706e18436d82ae718ffb57a4f592573', '37.111.217.180', 1662647875, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662647875;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662647871;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98349e4d3ff9ceb32072460ce1315c083b19cc65', '37.111.217.180', 1662648839, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662648839;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662648832;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f747361fb180d0b780cebedcf2894671f20514f', '37.111.217.180', 1662649278, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662649278;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662649271;register_id|s:3:\"181\";cash_in_hand|s:9:\"2130.0000\";register_open_time|s:19:\"2022-09-07 19:42:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502edd89d5bcf6a0ad08bf3ca40f7fe0a08dc72d', '37.111.217.180', 1662649296, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1662649278;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662612762\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662649296;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b503485426d5b425a72393d0c6b343bc20d015ad', '52.144.59.143', 1662677655, '__ci_last_regenerate|i:1662677655;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5647fbaddcc6bf30072272820b117124a97756', '52.144.59.143', 1662677655, '__ci_last_regenerate|i:1662677655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4c5de191de03fc69c3a7a14f3cea97c6a8d975', '52.144.59.143', 1662677656, '__ci_last_regenerate|i:1662677656;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd85756d8090fffbba506aa132a0f80a887e106', '52.144.59.143', 1662677656, '__ci_last_regenerate|i:1662677656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2023b82f2915ade04a3d8c280868e61ed47cfcb5', '45.120.39.142', 1662700867, '__ci_last_regenerate|i:1662700867;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662699747;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4c5116c886592db6da6696410bdc7439c76c58', '116.204.230.23', 1662701007, '__ci_last_regenerate|i:1662701007;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZENgCI7SPB6TuehkGVxp\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90511df4d8c648d74c84f7cb31fd73dd3df2b4e5', '45.120.39.142', 1662702001, '__ci_last_regenerate|i:1662702001;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662701952;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad915164f9eee159db8c1f639d4f687e1486139', '116.204.230.23', 1662701691, '__ci_last_regenerate|i:1662701691;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZENgCI7SPB6TuehkGVxp\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4876c10f945cd78286eb55856fb6d84f3608c1', '116.204.230.23', 1662702304, '__ci_last_regenerate|i:1662702304;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZENgCI7SPB6TuehkGVxp\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ce4057726a481e909eb6a49223acd3986614f7', '45.120.39.142', 1662703475, '__ci_last_regenerate|i:1662703475;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662702079;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc60185ce11e03e4e3fb23be06bac5302526ca69', '116.204.230.23', 1662702611, '__ci_last_regenerate|i:1662702611;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ZENgCI7SPB6TuehkGVxp\";last_activity|i:1662702383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b7e47a19f0a4acb208b77a51f403c831eddc0c', '116.204.230.23', 1662703273, '__ci_last_regenerate|i:1662703273;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"oQUVlWPSCigkZtfTEMsO\";last_activity|i:1662702383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c6d906e1996f20e563854d868fdf94f22661a2', '116.204.230.23', 1662710136, '__ci_last_regenerate|i:1662710136;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"oQUVlWPSCigkZtfTEMsO\";last_activity|i:1662702383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad677f41dd5d301cb4c3608ffa9b202a41df602c', '45.120.39.142', 1662707416, '__ci_last_regenerate|i:1662707416;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662703508;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d1a43f25bbf6795ecad8bf8aca707de69c12d2', '45.120.39.142', 1662708259, '__ci_last_regenerate|i:1662708259;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662707424;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05730ecf7450ba6e2d4612457be364dc78818958', '45.120.39.142', 1662709381, '__ci_last_regenerate|i:1662709381;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662708330;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27e629a4d9551eba9876a8251a26fe9293e0f13', '45.120.39.142', 1662710213, '__ci_last_regenerate|i:1662710213;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662710039;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668352a2f502531a902519ff2d3902d52de3b5de', '116.204.230.23', 1662710136, '__ci_last_regenerate|i:1662710136;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662620162\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"oQUVlWPSCigkZtfTEMsO\";last_activity|i:1662702383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b927198f1e0cb1be976075ad66ae0ae072e4c2ce', '45.120.39.142', 1662712260, '__ci_last_regenerate|i:1662712260;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662712182;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acab7e180d1db0ec96a221037f644fbb24c0859a', '45.120.39.142', 1662712626, '__ci_last_regenerate|i:1662712626;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662712522;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb98041cdce0226c7c5142b3508341b596e62bc', '45.120.39.142', 1662712984, '__ci_last_regenerate|i:1662712984;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662712626;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3a81033e07686e13e3cf6f6d0e969e9267d57c', '45.120.39.142', 1662713377, '__ci_last_regenerate|i:1662713377;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662712988;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c3d151ddd2966d6bbf1c900ae172c51a05799e', '45.120.39.142', 1662715620, '__ci_last_regenerate|i:1662715620;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662715582;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c965230da0d921b3f7b8927a4d3a57754f7dec93', '45.120.39.142', 1662715291, '__ci_last_regenerate|i:1662715291;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662715291;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12df001ba82122bbd0013fb5f954f5062e66390a', '45.120.39.142', 1662717294, '__ci_last_regenerate|i:1662717294;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662717210;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6630bb458a312c884049c5669dcf572617ce0a2f', '45.120.39.142', 1662720208, '__ci_last_regenerate|i:1662720208;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662720179;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996274b58543e2a97eaf5b5b930af6665fca6db0', '45.120.39.142', 1662723213, '__ci_last_regenerate|i:1662723213;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662721750;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34789efc2e4de417fe31e27d8734807fe2d5725', '45.120.39.142', 1662726262, '__ci_last_regenerate|i:1662726262;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662725664;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc48c1e892199e34b37819e64f5007be7c305a8', '45.120.39.142', 1662726919, '__ci_last_regenerate|i:1662726919;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662726406;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e853e91c2e915972e2b55bec0fdcd91f4ed2a9', '45.120.39.142', 1662727450, '__ci_last_regenerate|i:1662727450;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662726992;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd409b9e57a3c5895f520dd37fb153bab1857465', '45.120.39.142', 1662729251, '__ci_last_regenerate|i:1662729251;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662729248;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271bd533e1e99a7ff526de1f6eef0d66bfc53541', '37.111.218.182', 1662730475, '__ci_last_regenerate|i:1662730475;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662729295;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6767b4706cd8e570596b4c06eea0e6bb72df975c', '37.111.218.182', 1662732730, '__ci_last_regenerate|i:1662732730;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662731194;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b53a5fd8a2fa6ab66512d9de97329138f91344c', '37.111.218.182', 1662733187, '__ci_last_regenerate|i:1662733187;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662732815;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab84926b8072eff3192b3af108f52716098a001f', '37.111.218.182', 1662734669, '__ci_last_regenerate|i:1662734669;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662733409;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9bf9e7cba002cd82a4b8226e8602eb5d729c75', '37.111.218.182', 1662735918, '__ci_last_regenerate|i:1662735918;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662735851;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5aadf8f9653ba3e6c28e1f6d4ba8cfe5c45aa7a', '37.111.218.182', 1662737017, '__ci_last_regenerate|i:1662737017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662737010;register_id|s:3:\"182\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-09-08 21:01:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8017c61f766d4fc2ab832b313740c507700d5f47', '37.111.218.182', 1662737043, '__ci_last_regenerate|i:1662737017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662634846\";last_ip|s:14:\"37.111.217.180\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662737043;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb1fd05472ebfda0661e4c188c37545b25b23e4', '205.210.31.170', 1662743564, '__ci_last_regenerate|i:1662743564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0dfeaabf374d1ff665ddac147e0899a1148a709', '198.235.24.167', 1662747502, '__ci_last_regenerate|i:1662747502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d1cff87ecec24c3750df9e3c5a4847c0471d39', '198.235.24.167', 1662747505, '__ci_last_regenerate|i:1662747505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6d09a26c875b96e884ab3ac36c0db05cd8182a', '198.235.24.167', 1662747506, '__ci_last_regenerate|i:1662747506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('349f8eaa9121989c2de5a73174869a8d44346edd', '77.246.183.77', 1662770077, '__ci_last_regenerate|i:1662770077;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be4dd2498de58a04c50dad3720cd3166ea4db93f', '77.246.183.77', 1662770078, '__ci_last_regenerate|i:1662770078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f135709ed12be40fe979c4807956628887648fc9', '77.246.183.77', 1662770078, '__ci_last_regenerate|i:1662770078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28a33eaa5982026449baf385f9c52c4bb403aa9', '77.246.183.77', 1662770080, '__ci_last_regenerate|i:1662770080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37e32d2f51aa2ce32dee8c1b390a17eed46bc10', '45.120.39.142', 1662786940, '__ci_last_regenerate|i:1662786940;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662783687;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbcabb083bbc10151844244df993f2f727d4ffb5', '45.120.39.142', 1662787733, '__ci_last_regenerate|i:1662787733;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662787726;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4a051bc772e343de8e69f901707c10343e5618', '45.120.39.142', 1662792640, '__ci_last_regenerate|i:1662792640;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662792635;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524f74aead7bc1410aff082d55236be5f7bd9549', '159.203.105.21', 1662789465, '__ci_last_regenerate|i:1662789465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b8ff0d6aa51bf2a22e101d0464bd74b84d101e', '165.227.221.177', 1662791170, '__ci_last_regenerate|i:1662791170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecba4a111735d4410bf679172d90afc60535e73d', '45.120.39.142', 1662795780, '__ci_last_regenerate|i:1662795780;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662792641;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab7e026f8243838be258511a4eda0b2ea443860', '134.209.34.62', 1662792846, '__ci_last_regenerate|i:1662792846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c3bf0d4d1fb2c57c3c00c6922eded5d69e3cbe', '116.204.230.23', 1662795157, '__ci_last_regenerate|i:1662795081;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662700680\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"BC5uTtvD3RhJ9zmioxLa\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('402dffe26f09768fc227b4e68fcf907ad3748abd', '45.120.39.142', 1662797602, '__ci_last_regenerate|i:1662797602;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662795831;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db27a1d5ebde1634015b6c247fc29d43507bb5af', '45.120.39.142', 1662799060, '__ci_last_regenerate|i:1662799060;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662797715;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69b8eb804d8e78b5692d5e96013af66aacbdea0', '45.120.39.142', 1662800390, '__ci_last_regenerate|i:1662800390;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662800387;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ebed351ba3760a3286c21804c2e5db721b414d1', '45.120.39.142', 1662800963, '__ci_last_regenerate|i:1662800963;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662800439;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5996bde69800e896d67d989ecab27bc296b84e', '45.120.39.142', 1662804592, '__ci_last_regenerate|i:1662804592;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662800966;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b40ca7790f44e3d49c5d76c49bdd897e182868', '167.71.166.77', 1662801375, '__ci_last_regenerate|i:1662801375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e984f4735605c470c646363c981cfc14b6871fae', '45.120.39.142', 1662805632, '__ci_last_regenerate|i:1662805632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662805628;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce2d8403c41372ebe4bfc545a7d0de8cf96c1d7', '45.120.39.142', 1662806875, '__ci_last_regenerate|i:1662806875;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662805642;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72571626bd083aac83d11a54951de65dd921bbd8', '45.120.39.142', 1662807775, '__ci_last_regenerate|i:1662807772;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662807768;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac4f31f35a57070f1146ca6c315931bea67a8c6', '45.120.39.142', 1662811560, '__ci_last_regenerate|i:1662811560;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662811555;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373356debc7aac0346f325f01021cf20b88d9a9f', '205.210.31.49', 1662809611, '__ci_last_regenerate|i:1662809611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ede88b03bd04a04269a178a5acdef890c8fbf0', '45.120.39.142', 1662811992, '__ci_last_regenerate|i:1662811992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662811888;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b33d33799c7868d0bf4a33ad77ee9fb42f4b00', '45.120.39.142', 1662814455, '__ci_last_regenerate|i:1662814455;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662812060;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c609439e2e8208875b4fd1281434787b2fdade', '45.120.39.142', 1662814894, '__ci_last_regenerate|i:1662814894;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662814886;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f39255f9bb464dc2270342e8e2b3d621bf79df', '45.120.39.142', 1662815676, '__ci_last_regenerate|i:1662815676;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662815607;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b805761c27892d9043a02df7f08ced00fbd57c6d', '45.120.39.142', 1662816043, '__ci_last_regenerate|i:1662816043;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662815946;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf309b004a284091d4156dc4f0e9c985fa897ecd', '45.120.39.142', 1662816389, '__ci_last_regenerate|i:1662816389;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662816373;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb114d7cf4394ffc2d9098866c27e3791ecacc1', '37.111.218.146', 1662818603, '__ci_last_regenerate|i:1662818603;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662818198;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4dad6c6fb5bfbcb95189f1b44410414a18afbf', '37.111.218.146', 1662820936, '__ci_last_regenerate|i:1662820936;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662818603;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e282ce093b6d4a10b3843a4291c6cdc5a93ec5c4', '37.111.218.146', 1662821468, '__ci_last_regenerate|i:1662821468;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662821080;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30914131e25a28a848993ed107525c7a40b38ed', '37.111.218.146', 1662821887, '__ci_last_regenerate|i:1662821887;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662821878;register_id|s:3:\"183\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-09-09 21:23:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07783b743077870d3dc6ae018ebb624a44ff44ad', '37.111.218.146', 1662821989, '__ci_last_regenerate|i:1662821887;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662699700\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662821989;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03748fc3a596bed33c0feecf007560fc15be4ba6', '45.120.39.142', 1662873221, '__ci_last_regenerate|i:1662873221;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662872482;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba190d7da205675e3fcb29a6ca57b8b478da5ba4', '45.120.39.142', 1662876565, '__ci_last_regenerate|i:1662876565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662876560;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622a6fee4ade840fb1123176ac48d58fb153b156', '116.204.230.23', 1662875453, '__ci_last_regenerate|i:1662875415;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662795086\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"7TqYG3cypEsQ4jzo9iH0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b39d2eb905649b7013e72e17dbe6b1460f5192', '45.120.39.142', 1662882525, '__ci_last_regenerate|i:1662882525;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662876560;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a061a6554e3b8675e901be9a9b4d35f9cabea4ff', '45.120.39.142', 1662888932, '__ci_last_regenerate|i:1662888932;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662882569;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88b4b8cb17b4ad29b0f1e0f2bf81b66f55bafce', '45.120.39.142', 1662890716, '__ci_last_regenerate|i:1662890716;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662889108;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c94bbc6c398db5787189d3ae04fbbaeaf0df1d', '45.120.39.142', 1662891066, '__ci_last_regenerate|i:1662891066;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662890728;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0987fca16c9da6289b893c3b2f954f4701f06b5', '45.120.39.142', 1662893977, '__ci_last_regenerate|i:1662893977;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662893627;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a2e32b7740c3c390f0f5dc7495026289b48874', '45.120.39.142', 1662895188, '__ci_last_regenerate|i:1662895188;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662895169;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a942698cbeffeb895749aed2c03d8785120bebf6', '45.120.39.142', 1662896714, '__ci_last_regenerate|i:1662896714;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662895169;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb3a84fa467220b22197a2ee5bcc83425ad6205', '116.204.230.23', 1662895663, '__ci_last_regenerate|i:1662895656;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662875419\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef8e443582ef5cfca88a349239a8f876180832e', '45.120.39.142', 1662897070, '__ci_last_regenerate|i:1662897070;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662896970;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af86a9485a599e10261a7d5a0304b908db9e43b9', '45.120.39.142', 1662902208, '__ci_last_regenerate|i:1662902208;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662902171;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425f4281f7d99462aeaf8c15a1973108e421aab5', '45.120.39.142', 1662902709, '__ci_last_regenerate|i:1662902709;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662902373;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83b38e54c5bf18e6418fbe34418fc202ba96cb0', '45.120.39.142', 1662903026, '__ci_last_regenerate|i:1662903026;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662902718;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67cbddb08779aa059531624bb07ab26572780c40', '45.120.39.142', 1662903412, '__ci_last_regenerate|i:1662903412;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662903394;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbfacce282fda46905be8259184b625e9f9ecff', '45.120.39.142', 1662904333, '__ci_last_regenerate|i:1662904333;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662903664;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('516da8808616fe008cc26a12e0718b49e4b22ffe', '45.120.39.142', 1662905490, '__ci_last_regenerate|i:1662905490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662903664;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21c97e5dbf85ba75e8f8b7c60da7ce20b62ac9a', '45.120.39.142', 1662907200, '__ci_last_regenerate|i:1662907200;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662907188;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e81a7ef40430cb0def670d91d3a3cf9afda4101', '45.120.39.142', 1662907549, '__ci_last_regenerate|i:1662907549;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662907541;register_id|s:3:\"184\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2022-09-10 20:58:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0616d38c1a8cbf02eaf91f23aebce775c819678e', '45.120.39.142', 1662907569, '__ci_last_regenerate|i:1662907549;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662783673\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662907569;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d3e11e74ef12c0e2c91f723d78a81e5ef737fd0', '45.120.39.142', 1662965204, '__ci_last_regenerate|i:1662965204;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662961865;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06c09e00861b7522c884808a8a3e9057fe20a00', '116.204.230.21', 1662963589, '__ci_last_regenerate|i:1662963589;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd63ebba47a468f79e5d824d5dc13bdd320886a', '116.204.230.21', 1662963894, '__ci_last_regenerate|i:1662963894;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"C5TSt8KWYyZzgc2rwhof\";remove_pols|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36236912e2a2c546a85edbbbf6f31da05ed6cfe9', '116.204.230.21', 1662964375, '__ci_last_regenerate|i:1662964375;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"C5TSt8KWYyZzgc2rwhof\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f43c4b1417c3d5f46b6c6451c2726693d84123', '116.204.230.21', 1662964772, '__ci_last_regenerate|i:1662964772;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"C5TSt8KWYyZzgc2rwhof\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff7fa3c19306754f3bb2a946f5d756723af63ce2', '116.204.230.21', 1662965278, '__ci_last_regenerate|i:1662965278;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"C5TSt8KWYyZzgc2rwhof\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705725e77106e3f599c95d61270f83a28ded6cbb', '45.120.39.142', 1662966091, '__ci_last_regenerate|i:1662966091;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662965204;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7908d6fb4eb17c1877afa97913c7cb2c87856602', '116.204.230.21', 1662965699, '__ci_last_regenerate|i:1662965699;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"C5TSt8KWYyZzgc2rwhof\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe6f2cb564ea7d5cfd9f5ff0f2d3bd8e332ca27', '116.204.230.21', 1662966357, '__ci_last_regenerate|i:1662965699;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662895659\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"C5TSt8KWYyZzgc2rwhof\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5210eaf2493645d6dc027d6097693a992f23eb', '45.120.39.142', 1662967846, '__ci_last_regenerate|i:1662967846;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662965204;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d77e8f0e96ba1ff88af4c5e9e53abc17de3899c', '45.120.39.142', 1662968264, '__ci_last_regenerate|i:1662968264;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662967971;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95c5b8793bf777b3dabb9dd54e6a1edbcfe30ce', '45.120.39.142', 1662971782, '__ci_last_regenerate|i:1662971782;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662971505;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5db2f47a87dccdfe3c395e4894006cb267cadf6', '45.120.39.142', 1662971251, '__ci_last_regenerate|i:1662971251;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662971251;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea6f12b69c31053adc41016ac262517239736fe', '45.120.39.142', 1662972386, '__ci_last_regenerate|i:1662972386;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662972231;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e77b892f6bccab65d603688adb3a07ef1254c17', '45.120.39.142', 1662975038, '__ci_last_regenerate|i:1662975038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662975027;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e7121af985449fc1fc2aff11e1c0f8157f96df', '45.120.39.142', 1662975751, '__ci_last_regenerate|i:1662975751;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662975038;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac758e9dc620008a7683d8137f7c79910a1c870', '45.120.39.142', 1662977126, '__ci_last_regenerate|i:1662977126;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662975781;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6b1803dba1c2069a54c48d8142457279e3d131', '45.120.39.142', 1662977731, '__ci_last_regenerate|i:1662977731;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662977355;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50410a447a34057d23b9828893d439cfe18e4153', '45.120.39.142', 1662980017, '__ci_last_regenerate|i:1662980017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662977898;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a07892539f6fd782d2e0122d72dd6be5e2770a', '45.120.39.142', 1662980535, '__ci_last_regenerate|i:1662980535;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662980139;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b99aebe54db22f4e44306386387d3c00ece98bb', '45.120.39.142', 1662980909, '__ci_last_regenerate|i:1662980909;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662980813;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae2de3c89a661a91c2ab192c428d071de4462b1', '45.120.39.142', 1662981630, '__ci_last_regenerate|i:1662981630;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662980971;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f75d4bd79d84cc5656828fd14af5b39886233af', '45.120.39.142', 1662983406, '__ci_last_regenerate|i:1662983406;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662983394;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb78a84d02720f53ee8b55c54009e18e3039950', '45.120.39.142', 1662986805, '__ci_last_regenerate|i:1662986805;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662986795;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41bdc07f8bc814754122d222fd77efc35a68d66f', '45.120.39.142', 1662987728, '__ci_last_regenerate|i:1662987728;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662986810;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde8f19a4a77eddf9c8a689899cc8cffeb8a5959', '45.120.39.142', 1662988714, '__ci_last_regenerate|i:1662988714;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662988677;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b78c83ec356d5f01612b052f5123ce35165be47d', '45.120.39.142', 1662989309, '__ci_last_regenerate|i:1662989309;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662989303;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ab4b5f9a85a06c16450078012f3ae51e484431', '45.120.39.142', 1662992584, '__ci_last_regenerate|i:1662992584;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662989303;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12e5c227c6a9934d76a7ac387160b00010b8852', '45.120.39.142', 1662993380, '__ci_last_regenerate|i:1662993380;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662993373;register_id|s:3:\"185\";cash_in_hand|s:8:\"380.0000\";register_open_time|s:19:\"2022-09-11 20:46:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c672a4e78094ca4e706099837566ef51feae53e', '37.111.219.117', 1662993402, '__ci_last_regenerate|i:1662993380;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662872346\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1662993402;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beda9a3a5a5559375d4bfb206e96485bcd669f9e', '165.232.183.66', 1663016985, '__ci_last_regenerate|i:1663016985;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4519a92737ce3132a4c35e8f80af5c98f156caac', '165.232.183.66', 1663016985, '__ci_last_regenerate|i:1663016985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620478f396143f572a75e2129b589aa8ef922be8', '165.232.183.66', 1663016986, '__ci_last_regenerate|i:1663016986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7b90cbf43f41405e90552cf933c3564d8bd5cb', '165.232.183.66', 1663016986, '__ci_last_regenerate|i:1663016986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d5ea4c2e24f9f62b6aebdb237400c6c77cde1a', '198.235.24.184', 1663029530, '__ci_last_regenerate|i:1663029530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6495ccc2588f5b18124b23a974cbab8ea2cebedb', '198.235.24.184', 1663029530, '__ci_last_regenerate|i:1663029530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03a64111ce8540b3259401174ab603eb9588ba9', '198.235.24.184', 1663029531, '__ci_last_regenerate|i:1663029531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688bfcbef1489e85ee3d60a9bb79d68c5090bcf1', '45.120.39.142', 1663050981, '__ci_last_regenerate|i:1663050981;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663050647;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f18ff04c643710e78fb6bbed0fc284470aed71', '116.204.230.21', 1663050605, '__ci_last_regenerate|i:1663050472;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1662963093\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"3kVlmb8XRLTh2Mx6UAcN\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f67898477c220e8b0a48ed96fbc5fe6e884123', '45.120.39.142', 1663055500, '__ci_last_regenerate|i:1663055500;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663050981;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4715db76e48583653e2382ffa4b051a87ab74b8', '45.120.39.142', 1663057675, '__ci_last_regenerate|i:1663057675;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663050981;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d92c53806ef1be6d56d9a681cadf835439936b', '45.120.39.142', 1663059688, '__ci_last_regenerate|i:1663059688;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663057680;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd3e56f2b58046b4c4f48da28aa9fd793b0f171', '195.211.77.140', 1663058764, '__ci_last_regenerate|i:1663058764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c6e6329a31cc1b84c4cff3bdc718ee6c4e729f', '195.211.77.140', 1663058764, '__ci_last_regenerate|i:1663058764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fdfe944fedd5162eb016d4d3ee86cc5cd78623', '195.211.77.140', 1663058765, '__ci_last_regenerate|i:1663058765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebffc995d0c295a6afd5cf6fde59f7559589da9a', '51.81.167.146', 1663058789, '__ci_last_regenerate|i:1663058789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d284c54d85ac4e088d20aad1ff4ec5ab5b345fe', '51.81.167.146', 1663058790, '__ci_last_regenerate|i:1663058790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f10304607627416d94670a7acd42ba0460a2c00', '51.81.167.146', 1663058790, '__ci_last_regenerate|i:1663058790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f25d06150834dd399c749a5f0544f0e07b5bb24', '79.104.53.14', 1663059212, '__ci_last_regenerate|i:1663059212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4cd91cb2255a8acdeeea703c14b4efbb36e4b6e', '79.104.53.14', 1663059216, '__ci_last_regenerate|i:1663059216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4283fc1b14910e745434180df2a6438719385256', '45.120.39.142', 1663063383, '__ci_last_regenerate|i:1663063383;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663059930;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51168864f121e3c6535e4bf117b04a37e617a433', '45.120.39.142', 1663067362, '__ci_last_regenerate|i:1663067362;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663063397;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06112b7b2e07828ff4733e110b5a74c27f6a453f', '45.120.39.142', 1663068207, '__ci_last_regenerate|i:1663068207;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663067397;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a2d69d2107efe3bdee72755d529b8e953c14934', '45.120.39.142', 1663070772, '__ci_last_regenerate|i:1663070772;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663068236;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ff9534b4e8938d6863bbbc6775110ae8ca194c', '45.120.39.142', 1663071704, '__ci_last_regenerate|i:1663071704;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663071685;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7294e9cee527cdaf02e9276e9bd164d86d1df920', '45.120.39.142', 1663074778, '__ci_last_regenerate|i:1663074778;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663074711;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7120c111c68c7040f95574ee685a182ac1e43410', '45.120.39.142', 1663076179, '__ci_last_regenerate|i:1663076179;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663076176;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc34a6b9ff8429aa9db2c9b0698b84c2b90503e', '45.120.39.142', 1663079457, '__ci_last_regenerate|i:1663079457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663079450;register_id|s:3:\"186\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-09-12 20:36:39\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fe430f3c42915adff2637ab168f52b50f47486', '45.120.39.142', 1663079478, '__ci_last_regenerate|i:1663079457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1662961815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663079477;register_id|s:3:\"187\";cash_in_hand|s:9:\"2250.0000\";register_open_time|s:19:\"2022-09-13 20:31:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d685e632e02ab533c7642c089de5e9b8543a7bfe', '176.53.219.196', 1663095562, '__ci_last_regenerate|i:1663095562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa19c5e5172b873adeeb6714abf016a352ca0db', '176.53.221.214', 1663095563, '__ci_last_regenerate|i:1663095563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf0dec569305595989f7217e2634f7efc06f7c7', '176.113.43.89', 1663095563, '__ci_last_regenerate|i:1663095563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd8f13cb11259d72d3410e60cd71b1aafecb2e3', '45.90.62.44', 1663101818, '__ci_last_regenerate|i:1663101818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892166898a62c8d68620b0927b77f537e5c47a9c', '176.53.217.56', 1663101819, '__ci_last_regenerate|i:1663101819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f49f818c24bc45b2b44c43c494e9da7a029cd3', '176.53.219.196', 1663101820, '__ci_last_regenerate|i:1663101820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc308eb161aba59d11d77858384df436dc6c4ee6', '45.120.39.142', 1663133046, '__ci_last_regenerate|i:1663133046;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663050438\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663132615;register_id|s:3:\"187\";cash_in_hand|s:9:\"2250.0000\";register_open_time|s:19:\"2022-09-13 20:31:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782cecbf1458c065c44669947a4402c4bf72273b', '45.120.39.142', 1663135209, '__ci_last_regenerate|i:1663135209;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663050438\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663132615;register_id|s:3:\"187\";cash_in_hand|s:9:\"2250.0000\";register_open_time|s:19:\"2022-09-13 20:31:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6e303c489e2b49cd024479515677711cb92687', '45.120.39.142', 1663138038, '__ci_last_regenerate|i:1663138038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663050438\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663135285;register_id|s:3:\"187\";cash_in_hand|s:9:\"2250.0000\";register_open_time|s:19:\"2022-09-13 20:31:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfb9a95b0015ad0e7482c5fa4fcc99aa2bf78de', '45.120.39.142', 1663138384, '__ci_last_regenerate|i:1663138384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663050438\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663138086;register_id|s:3:\"187\";cash_in_hand|s:9:\"2250.0000\";register_open_time|s:19:\"2022-09-13 20:31:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d44be57299e6630a5938c9a544ce90d255ac46f', '45.120.39.142', 1663138630, '__ci_last_regenerate|i:1663138384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663050438\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663138630;register_id|s:3:\"187\";cash_in_hand|s:9:\"2250.0000\";register_open_time|s:19:\"2022-09-13 20:31:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba4c9bf56b58b2cc83d6d00bfa9a4796d1ee913', '45.120.39.142', 1663162769, '__ci_last_regenerate|i:1663162496;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663132603\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663162769;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd676d6346670a7fe8e7a77f83f5c2a78860e82', '51.255.62.8', 1663168906, '__ci_last_regenerate|i:1663168906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c7aec313d57641a26465d12d219d69fd612aa1', '51.255.62.2', 1663168906, '__ci_last_regenerate|i:1663168906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f09c7cb87307f7322a462e792e72f50bb2e7ad', '51.255.62.15', 1663168907, '__ci_last_regenerate|i:1663168907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679935b95fbf8b59029d200b205257cc526b2d57', '51.255.62.13', 1663168907, '__ci_last_regenerate|i:1663168907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a546a16b02bc5b51d16335ea69e33b393b3b9424', '198.235.24.60', 1663171354, '__ci_last_regenerate|i:1663171354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dfde161576bf742c7f103bf462af4fb50b3da2', '188.165.87.98', 1663174249, '__ci_last_regenerate|i:1663174249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf6d412f3429a595fa9657704ffb833086258b1', '198.235.24.36', 1663176143, '__ci_last_regenerate|i:1663176143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8be607e5d4150e81507e3df1ddfc410ff76c810', '188.165.87.111', 1663177851, '__ci_last_regenerate|i:1663177851;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d021b52f44cd4c32585003ca5cfe653569dedf4', '51.254.49.98', 1663177965, '__ci_last_regenerate|i:1663177965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a16db46e3a6413eb8499a30875752ab99efccc', '51.254.49.107', 1663177966, '__ci_last_regenerate|i:1663177966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d619de977e4fb862b2a9b9acb1c0656d472666', '198.235.24.182', 1663178628, '__ci_last_regenerate|i:1663178628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('658dabbf6220330dabc2b12dcb7fab9180193898', '176.53.218.13', 1663184140, '__ci_last_regenerate|i:1663184140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277989bdd2ac5caecd3408a64237e85675a590da', '45.90.62.76', 1663184140, '__ci_last_regenerate|i:1663184140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbea411febff5cda5f724bb857889a641aa7efb0', '176.53.216.23', 1663184142, '__ci_last_regenerate|i:1663184142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e7c99355de043c417718c9476e5d8af0f66287', '198.235.24.35', 1663186830, '__ci_last_regenerate|i:1663186830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa75cde75b237874f9072eaf8f532f8ccc41a20b', '176.53.219.254', 1663190587, '__ci_last_regenerate|i:1663190587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b31083d53819859f532f053106834996bb5e1cc', '176.53.221.225', 1663190587, '__ci_last_regenerate|i:1663190587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3505145f567f0728f39baf48d79e939056dfeb8d', '176.53.218.75', 1663190588, '__ci_last_regenerate|i:1663190588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff8334a5068aedb9b706d876699ece46d7ecfd4f', '184.168.121.5', 1663195173, '__ci_last_regenerate|i:1663195173;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6f2d8491f86cdb569870eb955bde17382e5790', '184.168.121.5', 1663195175, '__ci_last_regenerate|i:1663195175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5bdcf23a06d5d49ff7ea605c3b014661ca0459', '184.168.121.5', 1663195177, '__ci_last_regenerate|i:1663195177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf758d94b1992da3f661f2f14b3f40f198d3ca4d', '184.168.121.5', 1663195184, '__ci_last_regenerate|i:1663195184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f17884d62b05aba6a287b3e8766ba3f3663b507', '198.235.24.36', 1663196375, '__ci_last_regenerate|i:1663196375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1626ecba22fc3f14513fbddedc191e03776fc6', '198.235.24.153', 1663204658, '__ci_last_regenerate|i:1663204658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c8ac844f61b9c74d3ae81908b3ff278b24e9f0', '45.120.39.142', 1663218187, '__ci_last_regenerate|i:1663217888;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663162502\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663218187;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668b58ed17462ec118f552a78d45b9c362a73db6', '45.120.39.142', 1663233981, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663233981;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663232608;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d128b1d2e27962bbddc0017c8f18f10598914b', '45.120.39.142', 1663232527, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f421c8dcf70f07876f155adecf45e9a954663d1', '45.120.39.142', 1663239522, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663239522;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663239519;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00645d68bad3118c3304a003597f7772464baf0e', '45.120.39.142', 1663243315, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663243315;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663239522;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e43b79fa0c4808da46c8567e2e585e5f8c8dea', '45.120.39.142', 1663246020, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663246020;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663243315;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f3599736ba59d64a3686b95bd3fbb1f10940b5', '37.111.218.111', 1663246591, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663246591;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663246556;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d497784dc233c1b8fe6494ae2f6654cfabd842', '37.111.218.111', 1663247193, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663247193;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663246591;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27534eac0ae5b1de5d3acd2e1223a058f12a73a5', '37.111.218.111', 1663248224, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663248224;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663247213;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c48383e583ea1eb66f877b1c2575751b5901f5c1', '37.111.218.111', 1663250231, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663250231;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663250227;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b36ebaae694fa86498d2648c92148e496c0b9fc', '45.120.39.142', 1663251958, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663251958;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663251919;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783cf525dbe040b596be34287ed8d127e59c7e14', '45.120.39.142', 1663253607, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663253607;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663253601;register_id|s:3:\"188\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-09-14 19:39:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b55635aa09e5b0bb840bfa85321b9d7fc1efd98', '45.120.39.142', 1663253716, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1663253607;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663217904\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663253716;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887037188a0a836d7b18dc5c5ba6a0c84d218bf2', '45.120.39.142', 1663303664, '__ci_last_regenerate|i:1663303664;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663302750;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f5ec1f8b2eac384fa2abbb135e2b83d3939cf92', '45.120.39.142', 1663304651, '__ci_last_regenerate|i:1663304651;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663302750;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d249efe93e7186b53f8749775f1f125ceb1dc0c9', '45.120.39.142', 1663311348, '__ci_last_regenerate|i:1663311348;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663310513;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e7b2c1db8984a9ac72f6b6b5e47761839b12ddb', '45.120.39.142', 1663310513, '__ci_last_regenerate|i:1663310506;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663310513;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0971e42adbc41c379b1db3fae5c0f05d007c5d19', '45.120.39.142', 1663311897, '__ci_last_regenerate|i:1663311897;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663311888;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8801b8dc0e90ed8d5aa84f381378676479d87c', '45.120.39.142', 1663313158, '__ci_last_regenerate|i:1663313158;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663311907;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433740ed03c941dfa27986b9eb44281fb4be0bc2', '45.120.39.142', 1663316160, '__ci_last_regenerate|i:1663316160;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663313379;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6271325105cfa0cd71b88d082f9ac240b02de60', '80.87.206.247', 1663314066, '__ci_last_regenerate|i:1663314066;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759eb1fab35b2c99566878f0ec3dfa67927932f6', '80.87.206.247', 1663314068, '__ci_last_regenerate|i:1663314068;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb70f834301efe874c497ae9191d2f2864c5881', '80.87.206.247', 1663314068, '__ci_last_regenerate|i:1663314068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca38f9b7d8a6d19bdf310206bc937d39c3173a2d', '80.87.206.247', 1663314069, '__ci_last_regenerate|i:1663314069;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386ab2c1c9a1d4e6fae5a4bb45efc4315542b59f', '80.87.206.247', 1663314071, '__ci_last_regenerate|i:1663314071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9774ad7c34d466115f36985365a3f4262fee2b8c', '80.87.206.247', 1663314071, '__ci_last_regenerate|i:1663314071;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd1b7e597e7b58cc137d41524be987e9a95c1b6', '80.87.206.247', 1663314071, '__ci_last_regenerate|i:1663314071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9047786029a2b29dbce2dd15822f9f37d747fb92', '80.87.206.247', 1663314074, '__ci_last_regenerate|i:1663314074;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1134f973e0f81598245fd3fa9644d0706359abee', '80.87.206.247', 1663314074, '__ci_last_regenerate|i:1663314074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82329fb6c96ae429e32cae45e775f29bd26b522', '80.87.206.247', 1663314074, '__ci_last_regenerate|i:1663314074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab04873257fe54edd7f54281acd79d1053945f9', '80.87.206.247', 1663314074, '__ci_last_regenerate|i:1663314074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14be3a827cfe6e317ee466f3b6deef001eec8a7', '80.87.206.247', 1663314948, '__ci_last_regenerate|i:1663314948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('608342a972b8fbcf53cb453c8cd4e60f43981800', '80.87.206.247', 1663314949, '__ci_last_regenerate|i:1663314949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5769111072a9df87520836f20675b59648b52496', '80.87.206.247', 1663314949, '__ci_last_regenerate|i:1663314949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e053b441843e64285b0f586ca447808b45d12f6', '80.87.206.247', 1663314949, '__ci_last_regenerate|i:1663314949;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202c8401a1846a7bbd05193a33332537c6a8e80f', '80.87.206.247', 1663314950, '__ci_last_regenerate|i:1663314950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91baead328dd88eeb041da7875d94159df80e65e', '80.87.206.247', 1663314950, '__ci_last_regenerate|i:1663314950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179e17fe0ff892cd9ce567b67285b47b5f5771e8', '80.87.206.247', 1663314952, '__ci_last_regenerate|i:1663314952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255f195194bd342065f541fb916d608a389e9c5e', '80.87.206.247', 1663314952, '__ci_last_regenerate|i:1663314952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e3b024b65c0e58580d8f7c8e996479e2e0323f', '80.87.206.247', 1663314953, '__ci_last_regenerate|i:1663314953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e74dc35afc11a10d4ab51d105b77ac1b55bbee6', '80.87.206.247', 1663314953, '__ci_last_regenerate|i:1663314953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098c3064dc69d5e1b951092cf66c3f45fd6d9c54', '80.87.206.247', 1663314953, '__ci_last_regenerate|i:1663314953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503bb3010bd95fdfb65b336023204afdcab3cb90', '45.120.39.142', 1663323284, '__ci_last_regenerate|i:1663323284;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663323269;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb413411ef3653641d7ef1b810a2ae27fce9643', '183.136.225.46', 1663320799, '__ci_last_regenerate|i:1663320799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d500e629ea043d816959e3615441a3b9f318deb', '183.136.225.46', 1663320805, '__ci_last_regenerate|i:1663320805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d332e5ef15a6925706dceacf7ea0c2d2d229c8', '45.120.39.142', 1663323606, '__ci_last_regenerate|i:1663323606;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663323552;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197c2c102e0cfaba7510cc985cb128ab83328f13', '45.120.39.142', 1663324960, '__ci_last_regenerate|i:1663324960;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663324955;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e453bce73db760601bc038ace84ea3ec46103487', '183.136.225.46', 1663324446, '__ci_last_regenerate|i:1663324446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f941bdc7b980ae40ec7513bc9267b7ffb6a8a5a4', '183.136.225.46', 1663324462, '__ci_last_regenerate|i:1663324462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05b5620b319bf392f39768607ba301ec572b5d6', '183.136.225.46', 1663324467, '__ci_last_regenerate|i:1663324467;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b674143e9a14ce4aada626b8da3b2913d4258fb3', '183.136.225.46', 1663324508, '__ci_last_regenerate|i:1663324508;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca21cb02913fa4659df94e0a0cb127be9552e85b', '45.120.39.142', 1663325644, '__ci_last_regenerate|i:1663325644;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663324961;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057df700657ae086913931783593a43fcf89aa72', '45.120.39.142', 1663328057, '__ci_last_regenerate|i:1663328057;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663328050;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f55b279be373d217d2502a7d358f37695a970a2', '45.120.39.142', 1663328217, '__ci_last_regenerate|i:1663328057;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663232561\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663328217;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c82212ec1ef761674016a23ebdf6880c2497cac', '116.204.230.19', 1663329571, '__ci_last_regenerate|i:1663329571;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00770e7b61872de2388d2d8bc8b5acf183fa9bb0', '116.204.230.19', 1663329947, '__ci_last_regenerate|i:1663329947;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b26decfbbf22ac26ce821f5358e14579aceab2', '116.204.230.19', 1663331311, '__ci_last_regenerate|i:1663331311;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e184ba95c11d5641bda26e566b0d86cd2f8f51', '116.204.230.19', 1663331009, '__ci_last_regenerate|i:1663331009;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604f070445856e10054ae7fc641fc4f0bff243e5', '116.204.230.19', 1663333154, '__ci_last_regenerate|i:1663333154;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1cb8efe7e708dc163ab69796317cee909b147a', '116.204.230.19', 1663333462, '__ci_last_regenerate|i:1663333462;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b72cfbae8875ed5ee83e40e812f72a6f7ca16d2d', '116.204.230.19', 1663333818, '__ci_last_regenerate|i:1663333818;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2fc207f047d0d04b975f0741b84e006f27ba677', '116.204.230.19', 1663334322, '__ci_last_regenerate|i:1663334322;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ee3996fcfa552f9ed119beb368378d53f00984', '116.204.230.19', 1663334740, '__ci_last_regenerate|i:1663334740;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0e07ffc6119c14501b896ea6c67e34fbdd90ad', '116.204.230.19', 1663335523, '__ci_last_regenerate|i:1663335523;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e58f761006c2aca657d6de5f6cda864c9ad8dc7', '116.204.230.19', 1663336300, '__ci_last_regenerate|i:1663336300;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd8ac67f6a3be9934b2bcf75bed58bd63f15916', '116.204.230.19', 1663336996, '__ci_last_regenerate|i:1663336996;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6adccaacffb71845f88a838a7c30cb1ad54eba', '116.204.230.19', 1663337620, '__ci_last_regenerate|i:1663337620;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f36cd2497d6a936082d7fe380125c2c9e782ca4', '116.204.230.19', 1663337676, '__ci_last_regenerate|i:1663337620;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663050475\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"LxIWBtSJs94KPMlOgcwG\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51c373216c1b0f08be2f72689eb63d14c03997f', '37.111.218.69', 1663340764, '__ci_last_regenerate|i:1663340764;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663302703\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663340729;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31519a667ffeca0f59ce1eb57e2af45f75ce65ea', '37.111.218.69', 1663340769, '__ci_last_regenerate|i:1663340764;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663302703\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663340768;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c9aa6f1198c42540244727bf4423fb655ed2f95', '45.120.39.142', 1663391618, '__ci_last_regenerate|i:1663391618;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663390128;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7750e4ba0e8160898048279bad9c79f968863e4e', '45.120.39.142', 1663391965, '__ci_last_regenerate|i:1663391965;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663391739;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b9ba81ad58c2194178a14f368f2bde3edcad65', '45.120.39.142', 1663392833, '__ci_last_regenerate|i:1663392833;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663392782;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671a1b44438d5613699c01cca9ef0f26d97e3739', '45.120.39.142', 1663393281, '__ci_last_regenerate|i:1663393281;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663392847;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a7970e5ff9bba63f469904d9cf87850702f5a9', '45.120.39.142', 1663393760, '__ci_last_regenerate|i:1663393760;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663392847;register_id|s:3:\"189\";cash_in_hand|s:9:\"2990.0000\";register_open_time|s:19:\"2022-09-15 20:53:40\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62086720c769655827e9ada672a9af53989e3df7', '45.120.39.142', 1663397228, '__ci_last_regenerate|i:1663397228;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663393795;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21381e842645aa30035a04d1a49dbc855bf4a0f', '45.120.39.142', 1663398812, '__ci_last_regenerate|i:1663398812;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663393795;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3eb1aba70706f5abc06d34e32dbaeecd7ea64e8', '116.204.230.27', 1663398818, '__ci_last_regenerate|i:1663398818;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d4932961f0dcac5a62e3a618356a551ac8188c', '45.120.39.142', 1663398812, '__ci_last_regenerate|i:1663398812;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663340435\";last_ip|s:13:\"37.111.218.69\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663393795;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2862bf73171b04e6eefcf0b34432b5222e7e3895', '116.204.230.27', 1663399178, '__ci_last_regenerate|i:1663399178;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2112b04556c3b3803f2967b54796cd0501bf3b2', '116.204.230.27', 1663404615, '__ci_last_regenerate|i:1663404615;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7524f229252c788127dee2d1431494bed27d998e', '116.204.230.27', 1663411286, '__ci_last_regenerate|i:1663411286;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485f3d2ee8bb8422b19c44ddf6321a22b2a5addc', '45.120.39.142', 1663409898, '__ci_last_regenerate|i:1663409898;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663409894;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e9e0ace46ed8c4b4f4f2768bb067a2aa1fbb36', '45.120.39.142', 1663410453, '__ci_last_regenerate|i:1663410453;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663410451;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5396e014767b7d9cb2d61366ae2a482121351544', '45.120.39.142', 1663416339, '__ci_last_regenerate|i:1663416339;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663410454;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae88713b7fba7816fba4964a9fb2aacca0b25730', '205.210.31.170', 1663411217, '__ci_last_regenerate|i:1663411217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8100c330ed71b5cce3deb25564d9c3b1622ce48c', '116.204.230.27', 1663411705, '__ci_last_regenerate|i:1663411705;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579d89de77bde38e1dfbebfa2d4d8b766d79582a', '116.204.230.27', 1663412587, '__ci_last_regenerate|i:1663412587;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c30713162f50678d75c22d92f399016726077b82', '116.204.230.27', 1663413280, '__ci_last_regenerate|i:1663413280;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865e9c9d6aa8116370a04c78bbc83897ed0ea7d7', '116.204.230.27', 1663413613, '__ci_last_regenerate|i:1663413613;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9020786af5cf87a51293accf99b1b6efe5effc', '116.204.230.27', 1663413977, '__ci_last_regenerate|i:1663413977;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9166491c5a5b4c9b9167933aa0ece249a137b239', '116.204.230.27', 1663414948, '__ci_last_regenerate|i:1663414948;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e24deb35c938c8457c275d57d8e4de8296d0c914', '116.204.230.27', 1663415915, '__ci_last_regenerate|i:1663415915;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"dov62I3m4RLMNXuhqbcU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad726f0e0975d254784bd4d80897ebe307f1937', '116.204.230.27', 1663417171, '__ci_last_regenerate|i:1663415915;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663329267\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"dov62I3m4RLMNXuhqbcU\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682dbc3c69d00e031e360842cb98f774c67ce093', '45.120.39.142', 1663419322, '__ci_last_regenerate|i:1663419322;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663419314;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d54ba271577ed2a89a62da2a0d778f32869a88b', '45.120.39.142', 1663420177, '__ci_last_regenerate|i:1663420177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663420159;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339badcc8876333c2f90c25987deff643579b570', '45.120.39.142', 1663424442, '__ci_last_regenerate|i:1663424442;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663422669;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db324317a9870c1a9124a1e324af3e0368fbaea', '43.129.212.158', 1663422909, '__ci_last_regenerate|i:1663422909;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b47b0c73be994240c7971007051abefdf944400', '43.129.212.158', 1663422909, '__ci_last_regenerate|i:1663422909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57d49059b39101cdb141958148f9d437d1c1c366', '43.129.212.158', 1663422910, '__ci_last_regenerate|i:1663422910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12861400b3b3aba51536f9549e8093bb53628838', '43.129.212.158', 1663422911, '__ci_last_regenerate|i:1663422911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ac1a84058ea304e86b9c9f3e838aeba2487e8f', '45.120.39.142', 1663424952, '__ci_last_regenerate|i:1663424952;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663424900;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d9b51a21dcbcc4c1a1d0f32beb3b155b8e5edb', '45.120.39.142', 1663425267, '__ci_last_regenerate|i:1663425267;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663425099;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32c47576590b88d4f8f1d97752b5337b037dd08', '116.204.230.27', 1663425037, '__ci_last_regenerate|i:1663424992;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1662290036\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12774fe0a20da703f313a7116634d7f4c39b8475', '45.120.39.142', 1663425747, '__ci_last_regenerate|i:1663425747;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663425727;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb4fad0f36ec9f9c2e4f4754e26189272fe55f9', '45.120.39.142', 1663426496, '__ci_last_regenerate|i:1663426496;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663426491;register_id|s:3:\"190\";cash_in_hand|s:10:\"11210.0000\";register_open_time|s:19:\"2022-09-17 11:49:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dadee43bbe23cab4008979a87442c5ce089e578', '45.120.39.142', 1663426530, '__ci_last_regenerate|i:1663426496;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663390111\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663426530;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d071a8bae6a92ab7e4068f54b8d60cbc116122a', '198.235.24.170', 1663470528, '__ci_last_regenerate|i:1663470528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c20bb86ccb1669bca9ba7705fad3c62755fd75', '198.235.24.170', 1663470530, '__ci_last_regenerate|i:1663470530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab50709f9dbee839e660dbbd713d557819752b1', '198.235.24.170', 1663470531, '__ci_last_regenerate|i:1663470531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb7157087c9f2d8d463687b862249844b7a4bfc', '45.120.39.142', 1663480693, '__ci_last_regenerate|i:1663480693;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663406212\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663475567;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3c2acbd80a5b57e4b2c284b8bbefdf42a94de4', '45.120.39.142', 1663482681, '__ci_last_regenerate|i:1663482681;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663406212\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663480699;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8bb7ec8b68c8de7ae26c2fd70d495ec6c8d2755', '45.120.39.142', 1663489132, '__ci_last_regenerate|i:1663489132;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663406212\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663480699;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50f7dc69df2d099258fb703e4a4dffa89d9408d', '45.120.39.142', 1663489146, '__ci_last_regenerate|i:1663489132;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663406212\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663489146;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c63e5ce1a9fab7685385c1dedbfc64ead8ae50', '45.120.39.142', 1663496910, '__ci_last_regenerate|i:1663496910;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663496830;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31575889b031877243d834a1bd75872f2d131b15', '45.120.39.142', 1663497765, '__ci_last_regenerate|i:1663497765;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663497660;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7853493da6f26dd9e790c9b91c908dd6dce917', '45.120.39.142', 1663498160, '__ci_last_regenerate|i:1663498160;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663497765;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f50747740bfb5906d4e4ee0c3d2d3a20b0d8150', '45.120.39.142', 1663499103, '__ci_last_regenerate|i:1663499103;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663498182;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a3d9614d5bdc1e3c39089b6493017137a6b7b6', '45.120.39.142', 1663500379, '__ci_last_regenerate|i:1663500379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663500375;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6c2ae676b75e92219ade9059ad0b2896aa00a5', '45.120.39.142', 1663501892, '__ci_last_regenerate|i:1663501892;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663500380;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b302c6189252fcbebd5ee0b1c5fddf4269f9f45', '45.120.39.142', 1663502222, '__ci_last_regenerate|i:1663502222;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663501912;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848133a45ba1e3b3d39206ece0b979f88ffa4c6e', '45.120.39.142', 1663502547, '__ci_last_regenerate|i:1663502547;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663501912;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c7613d9ff79725f022807a8172dbcca59d3e9e', '45.120.39.142', 1663505299, '__ci_last_regenerate|i:1663505299;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663505296;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c673d0a2b26953280d5805e74ee0b2b7eb9c603e', '45.120.39.142', 1663507997, '__ci_last_regenerate|i:1663507997;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663505299;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('698b73a55075dc172965270323d3b5e244ea0796', '45.120.39.142', 1663508504, '__ci_last_regenerate|i:1663508504;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663508445;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb13597751186771c2e8d6d6cc8fcf661c2b98b', '45.120.39.142', 1663509118, '__ci_last_regenerate|i:1663509118;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663508635;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1690415cb5b7de969e11e8034580fe0424f265b', '45.120.39.142', 1663510201, '__ci_last_regenerate|i:1663510201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663509365;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4afb08551f9783bb4f0e9904cc45849e39c5f2f3', '116.204.230.27', 1663509538, '__ci_last_regenerate|i:1663509538;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663398332\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d00850b4a397210fde7cf4b24c5c4ebfae0bc39', '116.204.230.27', 1663509548, '__ci_last_regenerate|i:1663509538;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663398332\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79bae20a93b156e4cf72155615badc007accf66', '45.120.39.142', 1663511724, '__ci_last_regenerate|i:1663511724;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663510372;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa913116e7901fbcb9f31b4d34995a5904ad134c', '45.120.39.142', 1663512577, '__ci_last_regenerate|i:1663512577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663512570;register_id|s:3:\"191\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2022-09-17 20:55:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a08e6e99255af54d769cbbd1ad773a4c5f95765', '45.120.39.142', 1663512982, '__ci_last_regenerate|i:1663512577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663475440\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663512982;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6fcb32624e0184cca9c06007eb0c040d63e004', '103.114.23.73', 1663531684, '__ci_last_regenerate|i:1663531684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('101ddccc38cb11b377d4dd8b251975ffd0387540', '167.248.133.117', 1663534152, '__ci_last_regenerate|i:1663534152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e624bf671c02f5b7a46df6a94025b1b374f1e9a', '167.248.133.117', 1663534153, '__ci_last_regenerate|i:1663534153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9caf7515387a00e724161ea56b0aed6eada423', '167.248.133.117', 1663534154, '__ci_last_regenerate|i:1663534154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79665df366c7080e17396b0cdc63d54e66ca420', '167.248.133.117', 1663534154, '__ci_last_regenerate|i:1663534154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481acecf950ce3ec7837b6ae33e0a6e83446c471', '167.248.133.117', 1663534155, '__ci_last_regenerate|i:1663534155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f8f63ff14d9e48f3f0a27836fa1ec5504c3a02', '167.248.133.117', 1663534155, '__ci_last_regenerate|i:1663534155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69802518fb7a2f1c3d0cf96f434f15736fd0d88', '103.27.238.234', 1663538571, '__ci_last_regenerate|i:1663538571;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57caf922f06c7a955a82a0fe13f111bb1f18ef55', '103.27.238.234', 1663538574, '__ci_last_regenerate|i:1663538574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876f5d182b71f4ade66a6ef02097e8aa120116b8', '103.27.238.234', 1663538574, '__ci_last_regenerate|i:1663538574;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039e6dcb16d50391425f1130317f47d8223bd383', '103.27.238.234', 1663538577, '__ci_last_regenerate|i:1663538577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc5bc1c519a10bdd8453be62c710edbf730e455', '198.235.24.147', 1663557072, '__ci_last_regenerate|i:1663557072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cccfffd2d7f761e24a8d9f92968af966aea9e9b', '198.235.24.147', 1663557073, '__ci_last_regenerate|i:1663557073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b26cd9724113cecfc42dea9dcaad4f3266ef8f', '198.235.24.147', 1663557073, '__ci_last_regenerate|i:1663557073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a56afd944c38815bdf84a7e71ebd2bc9c6e1fdc', '45.120.39.142', 1663565326, '__ci_last_regenerate|i:1663565326;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663564100;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b758928c0e270bd604bcf79883abd9c353d7fa11', '45.120.39.142', 1663572194, '__ci_last_regenerate|i:1663572194;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663564100;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6161f34af71d02535c596651c394a8976d6686b', '45.120.39.142', 1663576881, '__ci_last_regenerate|i:1663576881;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663572443;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cdfbb90bdabfc4b674220aa720275ec68e454ca', '45.120.39.142', 1663578410, '__ci_last_regenerate|i:1663578410;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663578407;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b84b7778cea883b5c4b5c3ae7fc3729c127916', '45.120.39.142', 1663583053, '__ci_last_regenerate|i:1663583053;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663578466;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c71b9dc5bd1279031ca47674fdbd2c5ca75c85', '45.120.39.142', 1663584497, '__ci_last_regenerate|i:1663584497;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663584476;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d238cd3b2d50f22c87b0770a58b5552fc8042c', '45.120.39.142', 1663585098, '__ci_last_regenerate|i:1663585098;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663584497;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3de94ee02c237bb3cf36bc222c33f3c7065744b', '45.120.39.142', 1663585503, '__ci_last_regenerate|i:1663585503;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663585120;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902299b588d7c01c74149ebc86fd6d89ffbcd901', '45.120.39.142', 1663586305, '__ci_last_regenerate|i:1663586305;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663585519;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f22c9b6df252b69cd6984fc9d0be0fcb022353', '45.120.39.142', 1663586791, '__ci_last_regenerate|i:1663586791;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663586411;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0378b23b0de260b341067acd838ef1d0371a274', '45.120.39.142', 1663588537, '__ci_last_regenerate|i:1663588537;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663588382;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2a90a9dd72f1ab9873f3a00a5dc705f830996d', '45.120.39.142', 1663588843, '__ci_last_regenerate|i:1663588843;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663588813;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3ef6f4b06184f8d09142dfd7e2bbcb982db6d1', '45.120.39.142', 1663590040, '__ci_last_regenerate|i:1663590040;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663590036;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63618beb9637a0af73730f5c08b1ef3047643170', '45.120.39.142', 1663593952, '__ci_last_regenerate|i:1663593952;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663593912;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db62ad69a27fd9d29bd5729949e1fe5cbb3577f', '45.120.39.142', 1663594723, '__ci_last_regenerate|i:1663594723;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663594586;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67eb0168c8021dea199f1298c743e406b100c690', '45.120.39.142', 1663595444, '__ci_last_regenerate|i:1663595444;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663594828;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28cdda19c8d20db210b3614024ba079fc80c2a3', '45.120.39.142', 1663597215, '__ci_last_regenerate|i:1663597215;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663597206;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbea7717cbfff31501200b31d3a404701716e69', '45.120.39.142', 1663598190, '__ci_last_regenerate|i:1663598190;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663597215;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bd73bfbebf6dac0253ab34cd5c52ef504fd517', '45.120.39.142', 1663598494, '__ci_last_regenerate|i:1663598494;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663598488;register_id|s:3:\"192\";cash_in_hand|s:9:\"2010.0000\";register_open_time|s:19:\"2022-09-18 20:51:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a58d6a489c803ba50e7ff7d901586c7aea86e50', '45.120.39.142', 1663598511, '__ci_last_regenerate|i:1663598494;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663496576\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663598510;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b7599d8fc28e691f67cc2b65ba593eb94cb46f', '183.136.225.46', 1663614013, '__ci_last_regenerate|i:1663614013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab1d33951e99142863d17d2c87a8c671b0abc1a', '183.136.225.46', 1663614055, '__ci_last_regenerate|i:1663614055;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8108829a04034bb9392ab8e076d755f5aea76bfe', '183.136.225.46', 1663614057, '__ci_last_regenerate|i:1663614057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017801ab874780f46e8f47143f860393636212d1', '183.136.225.46', 1663614073, '__ci_last_regenerate|i:1663614073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d4e568def4875450185197370cac21a0f325be', '183.136.225.46', 1663614090, '__ci_last_regenerate|i:1663614090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748b8aa2235e0876ef522526fa074ab2da157d9c', '183.136.225.46', 1663614097, '__ci_last_regenerate|i:1663614097;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550552b629dffae5f5c3e5b754cbad5f7b240341', '183.136.225.46', 1663614118, '__ci_last_regenerate|i:1663614118;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f93d38c5aad1dc8de73a18c9af3ed3a68cdf77c1', '220.250.11.161', 1663614175, '__ci_last_regenerate|i:1663614175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e7ab579f05a15000e144a5e8a2d85624e03b0e', '119.60.105.200', 1663614183, '__ci_last_regenerate|i:1663614182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99a41c92f81321b02f6f5c2437b8892b04e896c', '205.210.31.18', 1663617673, '__ci_last_regenerate|i:1663617673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fba99a731b5afadb08daf40bd5231d72522d8fe', '198.235.24.142', 1663618044, '__ci_last_regenerate|i:1663618044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eaa386e8b5f9b5dba93ce3fb3447c1541cf8579', '167.94.138.117', 1663636526, '__ci_last_regenerate|i:1663636526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2eb9710a9d4a5f9a2ad6c5f4b96f668c994cc5', '167.94.138.117', 1663636527, '__ci_last_regenerate|i:1663636527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43947a0b7a108572458ba272913fbc4d6ba85364', '167.94.138.117', 1663636528, '__ci_last_regenerate|i:1663636528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c1c8124736e06868ebe6310cc54720025eacd2a', '167.94.138.117', 1663636531, '__ci_last_regenerate|i:1663636530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e36cddb81e87502ea13f2567f4e9f3f21b3d019', '167.94.138.117', 1663636531, '__ci_last_regenerate|i:1663636531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416eb0bad4162136f89995b3fb8b60198802bb1c', '167.94.138.117', 1663636532, '__ci_last_regenerate|i:1663636532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82845b8537305f036792dd9b430fc49e96b5b838', '198.235.24.134', 1663645094, '__ci_last_regenerate|i:1663645094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6082cd8a07c85c9c1701aebdcb3d97bb93e8fb', '104.45.41.45', 1663648358, '__ci_last_regenerate|i:1663648358;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5fc9909f0a5bd535512e8f0d1865d444a8445da', '104.45.41.45', 1663648358, '__ci_last_regenerate|i:1663648358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ef723171c9b040603a497008623e36a57b3553', '104.45.41.45', 1663648359, '__ci_last_regenerate|i:1663648359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902e4c28aa0237e3d5e79b879b5ba3b742683535', '104.45.41.45', 1663648359, '__ci_last_regenerate|i:1663648359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89435ffaaa220957429161cc96e960bd1048600', '45.120.39.142', 1663655937, '__ci_last_regenerate|i:1663651448;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663563939\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663655937;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be05e7e52847a743e2b288b879b8d44e516fb11b', '45.120.39.142', 1663668281, '__ci_last_regenerate|i:1663668281;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413464472a36ac7bb2a374a9c52191d4c043b1e8', '45.120.39.142', 1663668595, '__ci_last_regenerate|i:1663668595;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663668581;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fb5942b3234a0f3e5a78e4277c4c1fb924ce67', '45.120.39.142', 1663672995, '__ci_last_regenerate|i:1663672995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663672963;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c464331bc2ec470da61a272caa0cba4bc1b7f1', '45.120.39.142', 1663675619, '__ci_last_regenerate|i:1663675619;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663673128;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('391bac352c025e8c30845d22ddcc7bd4fd2d0841', '45.120.39.142', 1663678073, '__ci_last_regenerate|i:1663678073;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663675629;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691426b9c0a0196026ac22e8f32ffa9135f4f09b', '45.120.39.142', 1663679595, '__ci_last_regenerate|i:1663679595;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663678094;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f81d0cf6e4d8e5345597c1ead030ce7d065dbd7', '45.120.39.142', 1663679902, '__ci_last_regenerate|i:1663679902;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663679663;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7848d66a00ae91908ec6c0eea77129050c60839', '45.120.39.142', 1663684669, '__ci_last_regenerate|i:1663684669;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663684664;register_id|s:3:\"193\";cash_in_hand|s:9:\"4050.0000\";register_open_time|s:19:\"2022-09-19 20:41:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('127310bb3d363774d75621dcba8de3df3e1427c5', '45.120.39.142', 1663684718, '__ci_last_regenerate|i:1663684669;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663651456\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663684717;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93aec00807172c524996deace5d0967228feb9fa', '205.210.31.53', 1663734949, '__ci_last_regenerate|i:1663734949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2947e7789f982bfa9cbc5e87cb47df0f2868f8db', '45.120.39.142', 1663739061, '__ci_last_regenerate|i:1663738799;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663666823\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663739058;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b9a79036a23d9df4ac0e9948c26b3d56f27018', '205.210.31.44', 1663744671, '__ci_last_regenerate|i:1663744671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e138596c2810e368eaf6d9952d75832e6491741f', '45.120.39.142', 1663747845, '__ci_last_regenerate|i:1663747845;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663739038\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663747189;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f10f76fd14e972213d455d0c037c2ace07bc025', '45.120.39.142', 1663747845, '__ci_last_regenerate|i:1663747845;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663739038\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663747189;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c808920353c0601d49bdf23a9d45d0bcd527af23', '198.235.24.10', 1663763094, '__ci_last_regenerate|i:1663763094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562bad28a573cc2e10f75b6a03d9340d4a13e264', '45.120.39.142', 1663766040, '__ci_last_regenerate|i:1663766040;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663747122\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663763322;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d133e491bcf7cd6c17d2010ea16561a298a6bd2', '45.120.39.142', 1663768175, '__ci_last_regenerate|i:1663768175;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663747122\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663766213;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4def61b55076b0722c04f5fcf26fb4007567b879', '45.120.39.142', 1663768696, '__ci_last_regenerate|i:1663768696;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663747122\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663768691;register_id|s:3:\"194\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2022-09-20 20:38:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d429b96f1f0428288a3fd6ddc918472f26071cf8', '45.120.39.142', 1663768720, '__ci_last_regenerate|i:1663768696;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663747122\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663768720;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0baf2feb5a59a8284638427aea5f080ef9139605', '193.56.29.218', 1663777636, '__ci_last_regenerate|i:1663777636;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d90a394cc9ef09e6769253573f0730cf88fc1d5e', '193.56.29.218', 1663777643, '__ci_last_regenerate|i:1663777643;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7371babc4bcaa3db584321fe518080bee85a04c4', '207.148.67.173', 1663807787, '__ci_last_regenerate|i:1663807787;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f11bc3360b4b3fc158ff4241a8a960a7e1cd5813', '207.148.67.173', 1663807789, '__ci_last_regenerate|i:1663807789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93c8436e5e617cfc5bc5eb6df67c3847d188942e', '207.148.67.173', 1663807791, '__ci_last_regenerate|i:1663807791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0741ef6a942c46b1eaaff87813820c0bca2d8248', '207.148.67.173', 1663807793, '__ci_last_regenerate|i:1663807793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5db968dc48f7b1df8b6da16e20f0995f7b9e1dc', '45.120.39.142', 1663824975, '__ci_last_regenerate|i:1663824975;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663763246\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663824688;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f351081b5c45c66fc7ec91a2da606660d6e4cb5', '45.120.39.142', 1663826331, '__ci_last_regenerate|i:1663826331;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663763246\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663826318;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c26612e55d6a6eea8c13faf5d9355dcd62d691c', '45.120.39.142', 1663830498, '__ci_last_regenerate|i:1663830498;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663763246\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663826331;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07395f289d6c14690ac915a84626bc022649b93d', '37.111.218.224', 1663830922, '__ci_last_regenerate|i:1663830922;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663763246\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663830843;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c4fdfbcc853c8e216e11e3cde9d8f3b77409ea', '45.120.39.142', 1663830934, '__ci_last_regenerate|i:1663830922;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663763246\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663830932;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aca17d7884b91296f970a605a8ab10acc6b8c5d8', '37.111.218.224', 1663845044, '__ci_last_regenerate|i:1663845044;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663841550;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f95434e54de4a8991836925b0683916df9d02d', '37.111.218.224', 1663848071, '__ci_last_regenerate|i:1663848071;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663845193;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d7811e3b9f444445ab30c87c1475a8f84a0a6b', '37.111.218.224', 1663849217, '__ci_last_regenerate|i:1663849217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663849152;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4621e3aeea821b2af09d1166cdeb13577ebf3f9', '37.111.218.224', 1663854592, '__ci_last_regenerate|i:1663854592;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663849348;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a94b67e6cd48bc853c6447b1cc38b48e9aadb8b', '37.111.218.224', 1663855154, '__ci_last_regenerate|i:1663855154;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663854593;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ecb51c523659c5a2ccce81392569c304ad40a47', '37.111.218.224', 1663858104, '__ci_last_regenerate|i:1663858104;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663855160;register_id|s:3:\"195\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2022-09-21 19:58:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed98be1956ca7b089337a2ece1bf270899325f1', '37.111.218.224', 1663858257, '__ci_last_regenerate|i:1663858104;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663824653\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663858257;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1860858d9ce5e90fe0eba906d221d146da29ebef', '37.111.216.214', 1663910703, '__ci_last_regenerate|i:1663910703;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11b73e4d0dbbb7f2bf8716b6c75d9bdcac203f1', '37.111.216.214', 1663911050, '__ci_last_regenerate|i:1663911050;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663910980;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7181ff7739cf92b8db1260c24eb3e7c7eac7e747', '37.111.216.214', 1663912006, '__ci_last_regenerate|i:1663912006;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663911080;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0e7a43a689b1961a85695bc07bff8ecf21d6a2', '37.111.216.214', 1663913482, '__ci_last_regenerate|i:1663913482;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663912149;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac404750f42e70ccbb02ad80d880ab2466f4533', '37.111.216.214', 1663914995, '__ci_last_regenerate|i:1663914995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663914983;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e920ce6f5689fc1e855ae2e64fbdcd1b5057565', '37.111.216.214', 1663919675, '__ci_last_regenerate|i:1663919675;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663914996;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c696075e0ef3f8bb53ab2e0e2ddf52243cc3a755', '37.111.216.214', 1663921614, '__ci_last_regenerate|i:1663921614;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663921594;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c10b2526c383ff7ee4589b72a665904a22f772', '37.111.216.214', 1663922341, '__ci_last_regenerate|i:1663922341;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663921618;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c233a70f52893ab5f81dd31f6756b9baa05585', '37.111.216.214', 1663927640, '__ci_last_regenerate|i:1663927640;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663923541;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc49a0b2d91661aac0af50d2f6b131dd248588f', '183.136.225.44', 1663924779, '__ci_last_regenerate|i:1663924779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af491a2f5de09cf1bdaea1bf9e9781c1eec8d393', '183.136.225.44', 1663924818, '__ci_last_regenerate|i:1663924818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fbfaaf1f86b198aa585f4b3e5365cdc3dcc888', '183.136.225.44', 1663924828, '__ci_last_regenerate|i:1663924828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c538ad601b1f464346d0b46e3f1e6252d36506', '183.136.225.44', 1663924831, '__ci_last_regenerate|i:1663924831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c635afe6d64df5233daebb7d8915c680d6ed841', '183.136.225.44', 1663924846, '__ci_last_regenerate|i:1663924846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0319e0628f3d2a19428825da0cd77369b4083701', '183.136.225.44', 1663924862, '__ci_last_regenerate|i:1663924862;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897e8363f19272dc065e8a1313decc823e91ce05', '183.136.225.44', 1663924882, '__ci_last_regenerate|i:1663924882;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9268be091b8f8c02df5c0e9cff20ebe454b70767', '183.136.225.44', 1663926107, '__ci_last_regenerate|i:1663926107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474c9ecc5b3be0178150eeb7d0d24504d3d71c0c', '183.136.225.44', 1663926119, '__ci_last_regenerate|i:1663926119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ddc176ff8ba5beb3856997b4170186be1be7d7', '183.136.225.44', 1663926131, '__ci_last_regenerate|i:1663926131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f81c18bd7962a4d6e231c3f3d98c9969a2a491', '183.136.225.44', 1663926177, '__ci_last_regenerate|i:1663926177;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c61052db9183fe57b5a52a7ccc7079c2730dc22', '183.136.225.44', 1663926244, '__ci_last_regenerate|i:1663926244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b17e4acf797993acb4c50832022715822ebbd6', '183.136.225.44', 1663926253, '__ci_last_regenerate|i:1663926253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79916553ab3ae80584b064ed324ad7077cbe2cf9', '183.136.225.44', 1663926264, '__ci_last_regenerate|i:1663926264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47cdf5986f6591da640638dcc438548fe9def5fd', '183.136.225.44', 1663926308, '__ci_last_regenerate|i:1663926308;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee73f8e89893cad7565e7d9877ddcb4088d9b88', '37.111.216.214', 1663928792, '__ci_last_regenerate|i:1663928792;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663927682;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5753c3064bb57994ba24e4041203f21be8e5fe1', '37.111.216.214', 1663930017, '__ci_last_regenerate|i:1663930017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663928797;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5001d8f49f4cdaad97d9e12b36fa6a4d85bde8', '37.111.216.214', 1663930329, '__ci_last_regenerate|i:1663930329;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663928797;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff9b4dc11b1e88dff7acb83ebd70a1d8e1a519c', '37.111.216.214', 1663932111, '__ci_last_regenerate|i:1663932111;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663930371;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09edeef44d1ff79c15ffaac4ffa0c89b9d772dcb', '37.111.216.214', 1663933045, '__ci_last_regenerate|i:1663933045;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663932126;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828f190de578fcc43bd634ded4377c31930ed7cc', '116.204.230.24', 1663933052, '__ci_last_regenerate|i:1663933052;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663509231\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477313d9cedc44e98244bbd96f8b6375de53dcf4', '37.111.216.214', 1663933478, '__ci_last_regenerate|i:1663933478;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663933045;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b0687d02632708f1b9dbd199619b59d84f688e', '116.204.230.24', 1663933356, '__ci_last_regenerate|i:1663933356;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663509231\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9224d7bc7983aa887a97f1b3609e1853cb774af8', '116.204.230.24', 1663935092, '__ci_last_regenerate|i:1663935092;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663509231\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e721f377c4e985cecf9e6bacf048de4e59f773c1', '37.111.216.214', 1663935168, '__ci_last_regenerate|i:1663935168;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663933045;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86644902871b47da13070413f8892c69eb5813a7', '116.204.230.24', 1663936430, '__ci_last_regenerate|i:1663936430;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663509231\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5537c642f189cfa6ca9d3203356cc2b7dfe962e9', '37.111.216.214', 1663938012, '__ci_last_regenerate|i:1663938012;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663938002;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b75445143288184b1ea137646d89028254480c4', '116.204.230.24', 1663936529, '__ci_last_regenerate|i:1663936430;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663509231\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eeb9f3bd4624a0495c2656db41b5bc7010dd518', '37.111.216.214', 1663941275, '__ci_last_regenerate|i:1663941275;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663938012;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e86292c5bcddf13f0ec93dbec4a5982b2c61435', '37.111.216.214', 1663945693, '__ci_last_regenerate|i:1663945693;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663941282;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d23b0da49c2bafcbef1c3b98c621f511060f77', '37.111.216.214', 1663946694, '__ci_last_regenerate|i:1663946694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663946685;register_id|s:3:\"196\";cash_in_hand|s:9:\"7040.0000\";register_open_time|s:19:\"2022-09-22 20:50:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6295d70b41a3c9ab3c95da044d06c6530df6d00', '198.235.24.48', 1663946690, '__ci_last_regenerate|i:1663946690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458696de10a626e5dc87b5236c1e61a2be095cde', '37.111.216.214', 1663946717, '__ci_last_regenerate|i:1663946694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663841521\";last_ip|s:14:\"37.111.218.224\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663946717;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf3d124098d30863842b4cef3ddba04093f2e30', '198.235.24.169', 1663976392, '__ci_last_regenerate|i:1663976392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41445866ad3b5cb7d35c1af507f1ae968460c4c', '205.210.31.170', 1663987638, '__ci_last_regenerate|i:1663987638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b661f01107c2efc61feeca61f238e909e610d86a', '103.166.182.177', 1663993788, '__ci_last_regenerate|i:1663993788;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995908f5655b1e34f53eda083e4b9db941a8f6d5', '103.166.182.177', 1663993791, '__ci_last_regenerate|i:1663993791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb936fc9b9f93d14918ddc79fdd508af6d4739eb', '103.166.182.177', 1663993794, '__ci_last_regenerate|i:1663993794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d73f337de22eab67613b6982e1a25a45156cfe', '103.166.182.177', 1663993794, '__ci_last_regenerate|i:1663993794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8110ee922bf621ba7745b5558ada0a2f00e92e73', '37.111.217.74', 1663998098, '__ci_last_regenerate|i:1663998098;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663909145\";last_ip|s:14:\"37.111.216.214\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663994495;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d7db80dbf670d10a08cc57bd9f70b74fd8cc35', '116.204.230.24', 1663996184, '__ci_last_regenerate|i:1663996184;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663932615\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ea3a76459db66ad56955bbba991ca4fee8a0ac', '116.204.230.24', 1664000845, '__ci_last_regenerate|i:1664000845;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663932615\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ln8NbhItySg0aTRusQfM\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dbc9ac428c20c153765c2523823c554b20e14ea', '37.111.217.74', 1663998833, '__ci_last_regenerate|i:1663998833;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663909145\";last_ip|s:14:\"37.111.216.214\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663998101;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed50d16c82006516fc5a01d10ce7bfe48e2e8e3', '37.111.217.74', 1663999152, '__ci_last_regenerate|i:1663999152;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663909145\";last_ip|s:14:\"37.111.216.214\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1663999058;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba06d7f996e017e93f10e901f7196cdede9c371b', '37.111.217.74', 1664001926, '__ci_last_regenerate|i:1664001926;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663909145\";last_ip|s:14:\"37.111.216.214\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664001922;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e52bd3435d5fea019c4a7fca3633200fdc1e13b', '116.204.230.24', 1664000845, '__ci_last_regenerate|i:1664000845;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663932615\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ln8NbhItySg0aTRusQfM\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aea3c252a2635bda92e0f81f8e1b96e5d1cb733', '37.111.217.74', 1664001927, '__ci_last_regenerate|i:1664001926;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663909145\";last_ip|s:14:\"37.111.216.214\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664001927;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5bf59735deff04b4e8fe71f5164501f5a9260c', '37.111.217.74', 1664016327, '__ci_last_regenerate|i:1664016327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664014117;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9992054f422bcb9593f5405f4e2758c9013cb3aa', '37.111.217.74', 1664019413, '__ci_last_regenerate|i:1664019413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664016354;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e65b56cda5d0d4c8125215cfb8fa785612924d', '116.204.230.24', 1664019745, '__ci_last_regenerate|i:1664019745;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663995622\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664019261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad7ac892fad55f11c63dde57d8b6a3ade3f6d4c', '37.111.217.74', 1664019962, '__ci_last_regenerate|i:1664019962;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664019909;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b29a7073996a318930b4b3f47d83f8a27db1343', '116.204.230.24', 1664019747, '__ci_last_regenerate|i:1664019745;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1663995622\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664019747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b2fb2d80ded54b6af74d61bad018b7d54c4d8f', '37.111.217.74', 1664022417, '__ci_last_regenerate|i:1664022417;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664019962;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06aff4cd45e5eab8d73fb5908c09117b0bd23a80', '37.111.217.74', 1664024042, '__ci_last_regenerate|i:1664024042;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664022417;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8310adf8885801855916cfe63b3734e072945e77', '37.111.217.74', 1664025008, '__ci_last_regenerate|i:1664025008;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664022417;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69bfd11a30d9c9a06345a978bf900b406632d39', '37.111.217.74', 1664025666, '__ci_last_regenerate|i:1664025666;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664025487;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a207c89217febdb8cb331f781bd38c2487c12da', '37.111.217.74', 1664026259, '__ci_last_regenerate|i:1664026259;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664026039;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e279272ff239ed7ff5ebfd03cf29e1ce4c04748c', '37.111.217.74', 1664026720, '__ci_last_regenerate|i:1664026720;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664026262;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b6e980116f2dda2eab0edfaed9a019d61a4c85', '37.111.217.74', 1664027258, '__ci_last_regenerate|i:1664027258;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664027252;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b2c87c1ece1fcbd7baf66e37ead72b528dadad8', '37.111.217.74', 1664028538, '__ci_last_regenerate|i:1664028538;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664028534;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5806c08bba9a1889d476ce9fb69f62ab50250651', '116.204.230.24', 1664028233, '__ci_last_regenerate|i:1664028232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebd9fb6612ac80813ba774890159effef4b148a', '37.111.217.74', 1664029371, '__ci_last_regenerate|i:1664029371;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664028538;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e00793fd65c097e1c34ad91c60ecc3884f00831', '37.111.217.74', 1664029838, '__ci_last_regenerate|i:1664029838;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664029429;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7a5787e2f62f932ef67f6b416c1886f82c5209', '37.111.217.74', 1664031033, '__ci_last_regenerate|i:1664031033;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664031024;register_id|s:3:\"197\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2022-09-23 21:25:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd8fccd5608dbf8bba9ed490d7b6e2682372dfb', '37.111.217.74', 1664031052, '__ci_last_regenerate|i:1664031033;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1663994433\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664031052;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707706a7b40352ee62606bc15ef6e1784ba91e31', '116.204.230.19', 1664031759, '__ci_last_regenerate|i:1664031698;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1663425001\";last_ip|s:14:\"116.204.230.27\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af96392aa9a6428d277b6d2df78391c4994f7e0', '205.210.31.148', 1664036696, '__ci_last_regenerate|i:1664036696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('019014319e09c05dbe9788351e22698a7267cbd2', '205.210.31.148', 1664036698, '__ci_last_regenerate|i:1664036698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3049c44132a4a5e4074e471982718bd3f92a0a7e', '205.210.31.148', 1664036698, '__ci_last_regenerate|i:1664036698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db0dee8e9f0cf6360e0fbe41da78d6ed2b6020c', '198.235.24.142', 1664062597, '__ci_last_regenerate|i:1664062597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea471dfe148d071ba6fd4e367fe849d26b81ab10', '198.235.24.140', 1664067794, '__ci_last_regenerate|i:1664067794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5e19c3595eb507f6ec903f6b4e348552bb23b8', '205.210.31.32', 1664071239, '__ci_last_regenerate|i:1664071239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37be767980e7a9d7fb7f1ee2dbf3c96b3b424f74', '37.111.216.202', 1664082910, '__ci_last_regenerate|i:1664082889;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664013993\";last_ip|s:13:\"37.111.217.74\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664082910;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e037725bcf5d21eac04851dc0501873df9349a4b', '198.235.24.50', 1664084099, '__ci_last_regenerate|i:1664084099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c6faf4db72fa32687758df7e77f4b54ace91fb', '198.235.24.50', 1664084101, '__ci_last_regenerate|i:1664084101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9a037c0d515c9181a309df27492fdac2acb03d', '198.235.24.50', 1664084102, '__ci_last_regenerate|i:1664084102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f190e6f8cf7b1683fc39e59c042c556fc2c4464', '116.204.230.24', 1664091741, '__ci_last_regenerate|i:1664091708;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664019236\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"CPkxK147WsqzhrJ0QyB6\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3ce30da6f09c8ec2ca4cbe3a8a5801dd1b9970', '37.111.216.202', 1664092696, '__ci_last_regenerate|i:1664092696;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664091909;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('761d090328c8ca82d6505c15d42393d97c618d0f', '37.111.216.202', 1664095162, '__ci_last_regenerate|i:1664095162;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664092696;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4afed0c1135668362673a50c333dd9d747833da9', '37.111.216.202', 1664100386, '__ci_last_regenerate|i:1664100386;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664095201;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e60711e892d4ca9285d4cd9746f924e9a366148', '37.111.216.202', 1664103052, '__ci_last_regenerate|i:1664103052;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664103035;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1096d04fde893154f6912004a60d9ac01e7154', '37.111.216.202', 1664105888, '__ci_last_regenerate|i:1664105888;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664105866;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34c5d3670aaa7c9ed9d159f503a216e22548cc1', '37.111.216.202', 1664106213, '__ci_last_regenerate|i:1664106213;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664106073;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e52f61dc82205253f0da48dabea6f8cdad59fa5', '37.111.216.202', 1664108349, '__ci_last_regenerate|i:1664108349;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664108195;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6d78bfeb0c62855145b2a28a3789df295bd652', '183.136.225.46', 1664108110, '__ci_last_regenerate|i:1664108110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fbaae9fde76e254e5f7a99169774c66c6b3170', '183.136.225.46', 1664108110, '__ci_last_regenerate|i:1664108110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bcd8ab0e0367ebafaf8d3c5a406228da15e5cc', '183.136.225.46', 1664108138, '__ci_last_regenerate|i:1664108138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c7b6c8ecf3e7cd6efcba8f75d07be506ba843d', '180.95.238.149', 1664108163, '__ci_last_regenerate|i:1664108163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57ae358360898d78bbb1ca6fdde183d90e299ba', '1.202.117.51', 1664108166, '__ci_last_regenerate|i:1664108166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18daafa1d71552f64862f5ba17f805d124311c9e', '183.136.225.46', 1664108180, '__ci_last_regenerate|i:1664108180;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b439fb8bbb2e296e0beae1356a9482ea88676f02', '183.136.225.46', 1664108331, '__ci_last_regenerate|i:1664108331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0e4c28fb2be7f41d73ed13a8a1ed409d1307d7', '37.111.216.202', 1664112278, '__ci_last_regenerate|i:1664112278;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664108195;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155a608308c381652f3fb24e2651e19f2a79ee20', '183.136.225.46', 1664108382, '__ci_last_regenerate|i:1664108382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac6648e656d0940a69f88e0a2c9510c8074458b', '183.136.225.46', 1664108424, '__ci_last_regenerate|i:1664108424;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495c6c9f351d1f57c90af2013e24e0fd0eb354cf', '37.111.216.202', 1664112668, '__ci_last_regenerate|i:1664112668;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664112567;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa5df9ea579d720013bd96205ad5959c848c519', '37.111.216.202', 1664114522, '__ci_last_regenerate|i:1664114522;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664112567;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e7325c154074d66458a228662517f6e578c731', '37.111.216.202', 1664114877, '__ci_last_regenerate|i:1664114877;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664114610;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e057121ef4370a606d527f21f1957380a8bbbc2c', '37.111.216.202', 1664116645, '__ci_last_regenerate|i:1664116645;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664114610;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876bef3ca5e749a03522b646c7e6c738a9912b3d', '116.204.230.25', 1664116278, '__ci_last_regenerate|i:1664116278;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664091711\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1831c3d4a5eb1693597c8fa976752b2c0bbf7a37', '116.204.230.25', 1664116305, '__ci_last_regenerate|i:1664116278;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664091711\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94a1e2d0c235de93c01990d1679d5635b7ee014', '37.111.216.202', 1664117128, '__ci_last_regenerate|i:1664117128;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664116650;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed377e80b6b61ae15e4a8f066302ba4958a8509f', '37.111.216.202', 1664117646, '__ci_last_regenerate|i:1664117646;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664117639;register_id|s:3:\"198\";cash_in_hand|s:8:\"960.0000\";register_open_time|s:19:\"2022-09-24 20:50:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c368b7a5aa32d3326eaff7597fbef828cd63cfe', '37.111.216.202', 1664117675, '__ci_last_regenerate|i:1664117646;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664082898\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664117675;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3489b56a5707f8de15387e25523c78710526e4e', '205.210.31.140', 1664132649, '__ci_last_regenerate|i:1664132649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6071564bb5bd4279da58bbdb6ff2e6a63d8af5', '205.210.31.140', 1664132651, '__ci_last_regenerate|i:1664132651;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d620a87f226df3df3b56386dfc6d2380c38cbbe', '205.210.31.140', 1664132652, '__ci_last_regenerate|i:1664132652;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5739b8122f14bf3e373f26aea83510a97027cdbf', '198.235.24.159', 1664137712, '__ci_last_regenerate|i:1664137712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490d9797f9db91e7b971b322435f281356c1c1b3', '198.235.24.159', 1664137713, '__ci_last_regenerate|i:1664137713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34bc51d2e0c25717c155ae0919a4897437b1304a', '198.235.24.159', 1664137714, '__ci_last_regenerate|i:1664137714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f07ff25fb0bc7b06ffc7ee6036452e8f3daacaa', '198.235.24.60', 1664142640, '__ci_last_regenerate|i:1664142640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50656568bdc7b508ec69a5f98708851f794f3154', '198.235.24.60', 1664142642, '__ci_last_regenerate|i:1664142642;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('617ac638ed1942c11dc9e5ed628b2635993370fc', '198.235.24.60', 1664142642, '__ci_last_regenerate|i:1664142642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6980d4b2237e56ee39642d947e0575622c2fb19b', '121.4.166.245', 1664160929, '__ci_last_regenerate|i:1664160929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e917430679cb9de74c3ee258e560a87757ce387d', '121.4.166.245', 1664160937, '__ci_last_regenerate|i:1664160937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451ef97c30e749b610733103c52e4a5a0c25d44e', '121.4.166.245', 1664160945, '__ci_last_regenerate|i:1664160945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63db301e3542b451cf16a560b8f0d011c8321e4b', '121.4.166.245', 1664160950, '__ci_last_regenerate|i:1664160950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819a3d07a7b3112977e5bdb28e9a33581a98c622', '121.4.166.245', 1664160969, '__ci_last_regenerate|i:1664160969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9604773a9f194c0bf62fd61c5a11fff74211d82a', '121.4.166.245', 1664161460, '__ci_last_regenerate|i:1664161460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d77eba4018ab0b7296fec8fbbb94647cfc3e411', '37.111.216.204', 1664168750, '__ci_last_regenerate|i:1664168750;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664168745;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d0252cb4eb92de0650001d07083591fcbdbd3e', '37.111.216.204', 1664169129, '__ci_last_regenerate|i:1664169129;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664169119;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b158bbcfca929d6deb8421923e9126a0f6c2f64', '37.111.216.204', 1664169550, '__ci_last_regenerate|i:1664169550;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664169130;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1f39a40467ced016c08fa93520681495b18013', '37.111.216.204', 1664172729, '__ci_last_regenerate|i:1664172729;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664172199;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07dbcdd776367dec0017a8ed0f9d12cb423e5e24', '37.111.216.204', 1664174560, '__ci_last_regenerate|i:1664174560;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664172199;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c9acefc38c12af168938cd4fc7b9cabac068f4', '37.111.216.204', 1664175238, '__ci_last_regenerate|i:1664175238;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664175179;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f4a354fa8c15ccdb887e6a22507f17ca14512a', '37.111.216.204', 1664175567, '__ci_last_regenerate|i:1664175567;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664175467;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714978941f0dcc184a637843895f724512c4e483', '37.111.216.204', 1664177248, '__ci_last_regenerate|i:1664177248;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664175621;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551d77acb4de95abb44f4d5a259f883ccf821b73', '37.111.216.204', 1664178378, '__ci_last_regenerate|i:1664178378;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664175621;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b634d5af568fc3425cbfff6670617dc577b78fe', '193.56.29.218', 1664178295, '__ci_last_regenerate|i:1664178294;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9edd62b42a5b09aed357ca70b5c2797b59ebb9d', '37.111.216.204', 1664183482, '__ci_last_regenerate|i:1664183482;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664175621;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7398242f23aa97d0558f56559cab0d08a2f2b643', '37.111.216.204', 1664185535, '__ci_last_regenerate|i:1664185535;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664184273;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a65c0cce7de8da582af6b2f0fab97066341eb77', '37.111.216.204', 1664186176, '__ci_last_regenerate|i:1664186176;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664184273;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8dc7a21b0fed570c0f93c2188ab0192d2b5465', '37.111.216.204', 1664187952, '__ci_last_regenerate|i:1664187952;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664187874;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3477f7899c288e57fc06f1a76f2245c33ac61e9a', '37.111.216.204', 1664191598, '__ci_last_regenerate|i:1664191598;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664187986;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3ff15b8a5f270f55ffde0735c1c166ca0234dc', '37.111.216.204', 1664192393, '__ci_last_regenerate|i:1664192393;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664192353;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('915f48b33cd3a99768a0853ba2f05008bac90810', '37.111.216.204', 1664198344, '__ci_last_regenerate|i:1664198344;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664198330;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1019ccde2ebbec037a943f40c9c23e268c203b2e', '37.111.216.204', 1664198834, '__ci_last_regenerate|i:1664198834;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664198642;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8fc028c947d31b8095c10b26396b9f22dd4550b', '37.111.216.204', 1664199150, '__ci_last_regenerate|i:1664199150;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664199066;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ecd544c0c935a9514c586ac3682c0beda78374', '37.111.216.204', 1664201724, '__ci_last_regenerate|i:1664201724;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664201714;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68173cb6b0f91bda698aa173835d5e70be0f9e9d', '37.111.216.204', 1664203095, '__ci_last_regenerate|i:1664203095;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664203087;register_id|s:3:\"199\";cash_in_hand|s:9:\"4860.0000\";register_open_time|s:19:\"2022-09-25 20:54:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce6d09f6d4172f2815be4f655310361c22dcf091', '37.111.216.204', 1664203116, '__ci_last_regenerate|i:1664203095;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664091894\";last_ip|s:14:\"37.111.216.202\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664203116;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1446a5f1d6dacb4fc4bc2e0650b67e454b7ca03', '205.210.31.143', 1664232066, '__ci_last_regenerate|i:1664232066;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da498d10e8a9e80742d0ef78ba97a1aa584a5133', '205.210.31.143', 1664232067, '__ci_last_regenerate|i:1664232067;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f5f3e47e58381bf8a38a3e943c529262b67d54b', '205.210.31.143', 1664232067, '__ci_last_regenerate|i:1664232067;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2bf41f74562b2db6ed3d130a6b9c918e8b4b37', '205.210.31.36', 1664244974, '__ci_last_regenerate|i:1664244974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cec76fff9113b5845e4f2539c28f177599b6f57', '45.120.39.142', 1664259112, '__ci_last_regenerate|i:1664259112;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664167365\";last_ip|s:14:\"37.111.216.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664254506;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('addd9f0fdef1a5297be03dc7defb20c8b928217e', '205.210.31.58', 1664256818, '__ci_last_regenerate|i:1664256818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f1c34376c08e2d625be4c68c08c15c7de8dca8', '45.120.39.142', 1664259522, '__ci_last_regenerate|i:1664259522;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664167365\";last_ip|s:14:\"37.111.216.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664259434;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91cc47f7cd0e9aad98b4f661b3f21a5e8d758e0', '45.120.39.142', 1664260262, '__ci_last_regenerate|i:1664260262;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664167365\";last_ip|s:14:\"37.111.216.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664259434;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15932926e3ab1ddad33c815607f806880fa76081', '45.120.39.142', 1664261531, '__ci_last_regenerate|i:1664261531;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664167365\";last_ip|s:14:\"37.111.216.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664261527;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917e0b54783530646cbfc5192ebc89a01bd06224', '45.120.39.142', 1664263361, '__ci_last_regenerate|i:1664263361;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664167365\";last_ip|s:14:\"37.111.216.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664261646;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2cf725e57b9a994e8aed92dd7d7ed5ca69409e8', '45.120.39.142', 1664263362, '__ci_last_regenerate|i:1664263361;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664167365\";last_ip|s:14:\"37.111.216.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664263361;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c87b3a16a5ccb821ea742b98166877ec004b74', '45.120.39.142', 1664274506, '__ci_last_regenerate|i:1664274506;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664274496;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d0e412ee3887da3a7e770367921a7d0d0f02d9', '45.120.39.142', 1664279433, '__ci_last_regenerate|i:1664279433;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664274525;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f781538eb51de9c524ed31fcf22609e069f78b', '198.235.24.21', 1664276835, '__ci_last_regenerate|i:1664276835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3258774aee98a0292fa133de21e3b635e2a54d3', '45.120.39.142', 1664281202, '__ci_last_regenerate|i:1664281202;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664274525;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c41719e3c5ff00e932846204e183bee3fca3ca', '45.120.39.142', 1664285192, '__ci_last_regenerate|i:1664285192;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664281231;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee92aac9270182a8838a764b0b31bc62078d348', '45.120.39.142', 1664286438, '__ci_last_regenerate|i:1664286438;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664285370;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774302950c91270dcc517455261ce18e520a8c61', '45.120.39.142', 1664286827, '__ci_last_regenerate|i:1664286827;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664286639;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27493c2aacb63b89eeff6fd588fc62bcd167c0b9', '45.120.39.142', 1664289590, '__ci_last_regenerate|i:1664289590;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664289583;register_id|s:3:\"200\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2022-09-26 20:38:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb2b83ea7da79872cfbb338a57fb883577a7693', '45.120.39.142', 1664289607, '__ci_last_regenerate|i:1664289590;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664254497\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664289607;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f019aab73b6fdc630155015adaab32a31afbd620', '116.204.230.18', 1664290031, '__ci_last_regenerate|i:1664289972;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1664031703\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa39b7d6021aa45dc91a4852ab4aec0ca6ce560', '167.248.133.60', 1664307682, '__ci_last_regenerate|i:1664307682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96f4024b4ee0af7fee39d83f0662c0cee035fec', '167.248.133.60', 1664307683, '__ci_last_regenerate|i:1664307683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7d2914125bef0c8387dffdb0c9a6b5ad9b7132', '167.248.133.60', 1664307683, '__ci_last_regenerate|i:1664307683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc228ae0c1f743903a4430e794c8a543eaecc74', '167.248.133.60', 1664307684, '__ci_last_regenerate|i:1664307684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed0b78543326764e9085f6b35811739df7645c3', '167.248.133.60', 1664307688, '__ci_last_regenerate|i:1664307688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21556d265297f0e6cf859963569d7dbbbaf2cdde', '167.248.133.60', 1664307689, '__ci_last_regenerate|i:1664307689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223e14838df1c84b0d0a5b7e2003a5d49af2fc9f', '45.120.39.142', 1664345479, '__ci_last_regenerate|i:1664345467;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664273616\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664345479;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e558255151eb336393d1572893f0fd7a9d862d', '116.204.230.21', 1664351182, '__ci_last_regenerate|i:1664351182;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664115233\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e11ebb8b513c1dcfda1fd939e5ae5e676389c9', '116.204.230.21', 1664351554, '__ci_last_regenerate|i:1664351554;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664115233\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7adb48eacff16422f9fd197953506205b06871c', '116.204.230.21', 1664351740, '__ci_last_regenerate|i:1664351554;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664115233\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b13a201b8303bebe23b6397f5f456141fa2974', '45.120.39.142', 1664356529, '__ci_last_regenerate|i:1664356529;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664345473\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664355864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5f0cb50b1f34b0eb6d47910bab0c777809cf88', '45.120.39.142', 1664358290, '__ci_last_regenerate|i:1664358290;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664345473\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664356529;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef32c7f6abfe13cf8d9a0dfd58a90364e3433351', '45.120.39.142', 1664360125, '__ci_last_regenerate|i:1664360125;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664345473\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664356529;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e33df2dffa224ba66eb2ede35d1cf88b350bc18', '45.120.39.142', 1664364272, '__ci_last_regenerate|i:1664364272;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664345473\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664360143;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0194caea3b81bc2090bab64ff6086dbd69b32af6', '45.120.39.142', 1664368455, '__ci_last_regenerate|i:1664368455;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664345473\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664364349;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587549bfc6a86175c7f33dd7a9f978699282a763', '116.204.230.21', 1664373265, '__ci_last_regenerate|i:1664373265;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664350304\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ef9b114d0b42a83c17f89c63602635ae3a282a', '45.120.39.142', 1664372597, '__ci_last_regenerate|i:1664368455;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664345473\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664372597;register_id|s:3:\"201\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2022-09-27 20:40:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2b4bcc188bca2c343f7153629b362f9e454bd8', '116.204.230.21', 1664373276, '__ci_last_regenerate|i:1664373265;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664350304\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664373265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaaffcf0d0f73eb21f0d9b52e1231b6d6e5f8318', '205.210.31.181', 1664374083, '__ci_last_regenerate|i:1664374083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411c4b231be65a8ed981bf31c602fd1bf31bfd2c', '162.142.125.211', 1664394747, '__ci_last_regenerate|i:1664394747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc3cd2cb58e249406b1aa3e3bc6a70130a98fc2', '162.142.125.211', 1664394747, '__ci_last_regenerate|i:1664394747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89356ec2ed3227bacdd0dd8887d503e1cdbbe432', '162.142.125.211', 1664394748, '__ci_last_regenerate|i:1664394748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85549e86439e2003b3e42485603010ce6975fed', '162.142.125.211', 1664394748, '__ci_last_regenerate|i:1664394748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc46378b8ebee2f31ad79af19d56595fe466899', '162.142.125.211', 1664394748, '__ci_last_regenerate|i:1664394748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9858da868dd5f1c6e12dbcd418aab667d7102a6b', '162.142.125.211', 1664394748, '__ci_last_regenerate|i:1664394748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1af8cc114b6b81d67db09f25fa41e89afbe8244', '72.9.158.112', 1664402760, '__ci_last_regenerate|i:1664402760;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1094d1809b9bab5e430feca9734afb85752a5b92', '72.9.158.112', 1664402760, '__ci_last_regenerate|i:1664402760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b682d4fb62977c7699cfb704526dc694694385d', '72.9.158.112', 1664402762, '__ci_last_regenerate|i:1664402762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2abd01ec1a6129de30871c6472b51370232bd024', '72.9.158.112', 1664402762, '__ci_last_regenerate|i:1664402762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29eca1d93d7e6d8e75788b93b75245a8e7e9cfb8', '45.120.39.142', 1664425849, '__ci_last_regenerate|i:1664425697;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664355829\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664425848;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6b28209284a0e5a20c5f40f95b172469e438cbf', '45.120.39.142', 1664438469, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a06ffc421307f952c0409d405e3e14e2c12b04e5', '45.120.39.142', 1664438469, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545cd4a1eb6081d5c274dd23b9291b6bd197c21c', '45.120.39.142', 1664438469, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('134ddb4adc44f858fb625ffdac6021d27b2a6254', '45.120.39.142', 1664439511, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1664439511;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664425708\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664439505;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500c1b32bb6fee5ceb352e2c7212484409676fcd', '45.120.39.142', 1664439517, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1664439511;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664425708\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664439516;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a0c70cd1c18489e498ef454422b7191207dfbd', '209.141.49.169', 1664446022, '__ci_last_regenerate|i:1664446022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd52e054b67b13b7f6d5e5bdd1d9140b5f7716d', '205.185.116.89', 1664446023, '__ci_last_regenerate|i:1664446023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22d3c91795ccf0c4597d845695479d76e22191a', '205.185.116.89', 1664446023, '__ci_last_regenerate|i:1664446023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9d1ba778aa5b75970f5320e69e1a6993d5ea26', '101.0.122.114', 1664447762, '__ci_last_regenerate|i:1664447762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d22bfe926f6cb9ebb7be1052f322d2364490408', '45.120.39.142', 1664448692, '__ci_last_regenerate|i:1664448692;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664448242;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cff4fcd300f52feb65311629a2183587f2ce95', '45.120.39.142', 1664449155, '__ci_last_regenerate|i:1664449155;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664448948;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401aab1f18114e0a1af2e9694937f365272c025e', '45.120.39.142', 1664452197, '__ci_last_regenerate|i:1664452197;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664452189;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcd0935e9b8dd41672af44cba3d7233fb04343f', '45.120.39.142', 1664452771, '__ci_last_regenerate|i:1664452771;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664452189;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bfb66c4bdb61f9394f09375c047a69d014fa8ad', '45.120.39.142', 1664453200, '__ci_last_regenerate|i:1664453200;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664452787;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5afb990bdeb1d9858f04bfdece840c27292cc88', '45.120.39.142', 1664453634, '__ci_last_regenerate|i:1664453634;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664453579;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8282c0dbc717758c0ff38d2deadaa921e603dc03', '45.120.39.142', 1664454069, '__ci_last_regenerate|i:1664454069;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664453636;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8916239496439126c0e1d19331b994066dd8c2d8', '45.120.39.142', 1664458154, '__ci_last_regenerate|i:1664458154;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664458148;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e614514004095ad4b0bc4eab25ee6c8286c967', '45.120.39.142', 1664461166, '__ci_last_regenerate|i:1664461166;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664458154;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ffafae190f5e68742ad2488f46bd6073221e2c', '209.141.55.120', 1664458485, '__ci_last_regenerate|i:1664458485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3408b17c3efa227c9e4e2401f3ba4e436cccbaa3', '209.141.55.120', 1664458486, '__ci_last_regenerate|i:1664458486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdab0451e6e76745f6f33c1e0373a342ef41339d', '209.141.55.120', 1664458486, '__ci_last_regenerate|i:1664458486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f182a40f176225708a87b20748f438995351e5', '45.120.39.142', 1664461206, '__ci_last_regenerate|i:1664461166;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664438492\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664461206;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9959e634e9c4317475949f480471afc32e31d71e', '134.209.105.240', 1664483203, '__ci_last_regenerate|i:1664483203;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee5e29f2ef377a978cc5ef442f36f01e4d546ee', '134.209.105.240', 1664483206, '__ci_last_regenerate|i:1664483206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9aab7a5e47d059e59e238cc6e9e83bd78d2c48', '134.209.105.240', 1664483209, '__ci_last_regenerate|i:1664483209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8351ce538d9768cf7f14843590e672fed63a2cd4', '134.209.105.240', 1664483209, '__ci_last_regenerate|i:1664483209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cead67c12e87720f3e2551c5bb4a179d5a2b959a', '45.120.39.142', 1664515674, '__ci_last_regenerate|i:1664515674;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664515493;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdc7e66c536a942694bfcf3231f76c9267c0349', '45.120.39.142', 1664515975, '__ci_last_regenerate|i:1664515975;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664515967;register_id|s:3:\"202\";cash_in_hand|s:9:\"1210.0000\";register_open_time|s:19:\"2022-09-29 10:29:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d61a8535aa4ed8d44bbfa04870e36633ccf0f47', '45.120.39.142', 1664518701, '__ci_last_regenerate|i:1664518701;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664515993;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad4ba1c01c66567596dcb75240fe229afd90a19', '116.204.230.23', 1664517319, '__ci_last_regenerate|i:1664517319;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664367510\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e6097b049d8bddaf5edd3b1b5965284d15eb2c', '116.204.230.23', 1664517652, '__ci_last_regenerate|i:1664517652;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664367510\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"4oMBq8sKvaGfV1yLWS37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f02f3a034ca9ed3e08647d205b35b6b92e0b59', '116.204.230.23', 1664517948, '__ci_last_regenerate|i:1664517652;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664367510\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"4oMBq8sKvaGfV1yLWS37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ba5e7e8414bc2cf7d1b12926f5d1e725f962fe', '45.120.39.142', 1664524964, '__ci_last_regenerate|i:1664524964;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664518735;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c74456a0e37805deea72cfc5b92918f559aeb7c', '45.120.39.142', 1664528747, '__ci_last_regenerate|i:1664528747;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664524964;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b5ca98229855f17896951a96a54d9eff72413c', '45.120.39.142', 1664531158, '__ci_last_regenerate|i:1664531158;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664531151;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1246040b7956cee26325eb23a49d86281f71dd5f', '209.141.35.128', 1664530496, '__ci_last_regenerate|i:1664530496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df979348e1bd6754cb9ba5a7660e3dbe78a89c3b', '209.141.35.128', 1664530496, '__ci_last_regenerate|i:1664530496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be821523289008697408507c86594e7d89a2023', '209.141.35.128', 1664530496, '__ci_last_regenerate|i:1664530496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac6190c55b8a17c1848020eb8251c1069de093e', '45.120.39.142', 1664531542, '__ci_last_regenerate|i:1664531542;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664531160;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f309998747155f7f8b9c9eaf354003c2cca71f6', '45.120.39.142', 1664534097, '__ci_last_regenerate|i:1664534097;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664531667;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881e1d5b237118a1d0d68dc799dccde9c286081a', '45.120.39.142', 1664540064, '__ci_last_regenerate|i:1664540064;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664538349;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31107a85e20599e842916b6196a144c7efd37309', '45.120.39.142', 1664541056, '__ci_last_regenerate|i:1664541056;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664540497;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77070426954d2673975d7d367414310c4c4c000', '45.120.39.142', 1664541235, '__ci_last_regenerate|i:1664541056;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664447927\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664541197;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4608e22cdb4613137f54f8dd91376877cc48a1', '116.204.230.23', 1664545850, '__ci_last_regenerate|i:1664545838;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664516968\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dde2700ad8b43627bc93a6c1d931dd3ee2d8e82', '45.120.39.142', 1664549894, '__ci_last_regenerate|i:1664549894;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664515305\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664549891;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b63612967697af429ae64b8111b4b521d576c3f', '45.120.39.142', 1664549980, '__ci_last_regenerate|i:1664549894;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664515305\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664549980;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('465f91be02aa2ef2cfd74f3888dac20b50106e66', '198.235.24.57', 1664560261, '__ci_last_regenerate|i:1664560261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e1977973138fd26440e34454594ccda7ba4e85', '64.225.5.91', 1664576091, '__ci_last_regenerate|i:1664576091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7aea1dcdc6681ee131e465da57961c2d9660125', '45.120.39.142', 1664602826, '__ci_last_regenerate|i:1664602826;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664602551;register_id|s:3:\"203\";cash_in_hand|s:8:\"540.0000\";register_open_time|s:19:\"2022-09-30 11:33:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d28d06c5dbcb08bd233792a8f21eea5b1d6c8a', '198.235.24.163', 1664602442, '__ci_last_regenerate|i:1664602442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0349dcb429a2339fb54c6e8b674cd1f0cda85722', '45.120.39.142', 1664603406, '__ci_last_regenerate|i:1664603406;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664602956;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ae52d5b90a3a442e83c40306d966f889f05dda', '45.120.39.142', 1664606374, '__ci_last_regenerate|i:1664606374;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664604103;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1e4d33b0038a72b53db748e72428a6c498ebda', '116.204.230.20', 1664606094, '__ci_last_regenerate|i:1664606094;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664545842\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664604473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68541a5891f327fe25ce5e053b3b3c99bbed8301', '198.235.24.131', 1664604147, '__ci_last_regenerate|i:1664604147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac8dc6dba0c08aafd99daea96d84015c2ecb857', '198.235.24.131', 1664604148, '__ci_last_regenerate|i:1664604148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68aab8e2c3a80b4c84c10c24a50772d9fadf69c4', '198.235.24.131', 1664604148, '__ci_last_regenerate|i:1664604148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0acb6d2f962d7733993f4942c97341fcef5d17c', '116.204.230.20', 1664606133, '__ci_last_regenerate|i:1664606094;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664545842\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1664604473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332fb498f94d36f2bd7efc4c4d02ccd6fdf8cc84', '45.120.39.142', 1664611744, '__ci_last_regenerate|i:1664611744;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664611737;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7e486992211e2b4aa0d651b2fa3bc7bb9a7585', '198.235.24.148', 1664608776, '__ci_last_regenerate|i:1664608776;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aec73aec6b5ed6976d7ad49bc55a6c8d4922031', '45.120.39.142', 1664617331, '__ci_last_regenerate|i:1664617331;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664611744;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feea500be0665bf28f282305cc02e3d1cacb363c', '198.235.24.152', 1664616563, '__ci_last_regenerate|i:1664616563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65eaa684a4488f163692aa3fe1021e323eee8f9d', '45.120.39.142', 1664618107, '__ci_last_regenerate|i:1664618107;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664618100;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64bb3b91cb244703d1ecbb2647b7ca47e679e2f', '45.120.39.142', 1664618416, '__ci_last_regenerate|i:1664618416;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664618393;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e26858ecc1ec511a5732361058f20a84651b42', '45.120.39.142', 1664618824, '__ci_last_regenerate|i:1664618824;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664618664;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cdf41eafdc0ee9d626a64e05587970151c543f6', '45.120.39.142', 1664623974, '__ci_last_regenerate|i:1664623974;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664618855;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0d16180bb529d83529e91b2d55e451cdbfafc8', '198.235.24.139', 1664620747, '__ci_last_regenerate|i:1664620747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53c254ec7823186206fa9e4d08500d6f8d7e27d', '198.235.24.139', 1664620747, '__ci_last_regenerate|i:1664620747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e563f03021a09ce6640bddb173bc6fb4378a8e', '198.235.24.139', 1664620747, '__ci_last_regenerate|i:1664620747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25799dc8711a7f8fb1d7bd47c15aa91f70fdef9f', '45.120.39.142', 1664624295, '__ci_last_regenerate|i:1664624295;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664623994;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ca4cce75b28df0d91da733357a8d18eb617816', '45.120.39.142', 1664625092, '__ci_last_regenerate|i:1664624295;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664549587\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664625092;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f44037fc8edea9f21e0a96e03bb75fc91258db', '45.120.39.142', 1664634316, '__ci_last_regenerate|i:1664634316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664602436\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664634310;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('989899feb2a3fbdbf90be0c969796eeacf1ca34e', '45.120.39.142', 1664635384, '__ci_last_regenerate|i:1664635384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664602436\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664634316;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69629e478193398acb2ffd320ef51e65d1f8c11', '45.120.39.142', 1664635908, '__ci_last_regenerate|i:1664635908;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664602436\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664635896;register_id|s:3:\"204\";cash_in_hand|s:9:\"6410.0000\";register_open_time|s:19:\"2022-10-01 11:42:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c8acf72ffa1f951ce527a11f3e5616e9cae7e6', '45.120.39.142', 1664635926, '__ci_last_regenerate|i:1664635908;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664602436\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664635925;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7076df4cafe2223eac241de14ab2a89d75148fff', '198.235.24.31', 1664639936, '__ci_last_regenerate|i:1664639936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e706ac5034e47c8f6ecbfce7437c08868fc3468', '205.210.31.163', 1664664593, '__ci_last_regenerate|i:1664664593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8b8a16acbc9f6ddfa714f8f89dee744832bc7c', '205.210.31.163', 1664664595, '__ci_last_regenerate|i:1664664595;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe50394b661fc55bf32187274915953ab773e697', '205.210.31.163', 1664664595, '__ci_last_regenerate|i:1664664595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d2675c0a7cff94f7dd216b75861b0dd3c0fcc3b', '205.210.31.27', 1664673120, '__ci_last_regenerate|i:1664673120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9649e66cceadcdf8c2e1433771b5daccc0cb942b', '205.210.31.27', 1664673120, '__ci_last_regenerate|i:1664673120;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cee9cfa6ff6c7b1e4b6331a323b6680b565ad40', '205.210.31.27', 1664673121, '__ci_last_regenerate|i:1664673121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf200850b9faa094db5895d51aef6c14803e34ec', '45.120.39.142', 1664694474, '__ci_last_regenerate|i:1664694474;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664633632\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664693099;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af7ee16738277a32bea282fafd13286b8ed21f4e', '45.120.39.142', 1664694476, '__ci_last_regenerate|i:1664694474;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664633632\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664694474;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbb6dfd91d0649f6eda6403ad92b55ab6024503', '205.210.31.178', 1664696242, '__ci_last_regenerate|i:1664696242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eabed4d9b8ec06f83379168aced8d80cb9a7414', '205.210.31.178', 1664696242, '__ci_last_regenerate|i:1664696242;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d622f1c075f7fd75ae2ea5ede56afc05c68547', '205.210.31.178', 1664696242, '__ci_last_regenerate|i:1664696242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37fc2a4a3c686eef23bf30423eac38bd66cc64cb', '116.204.230.23', 1664699347, '__ci_last_regenerate|i:1664699334;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664604120\";last_ip|s:14:\"116.204.230.20\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f32222bdf0ba00ccf098ddd644bd1cc99929d90', '45.120.39.142', 1664703777, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911d1ad405ba9232756611ca6ba73a1184cb3ee8', '45.120.39.142', 1664703777, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0375cf44436b5c2ef6242d5cccf409e2dcb7c2f', '45.120.39.142', 1664703857, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1664703810;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664689732\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664703857;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f50b1b43cd2717dfd0655c74bf6f9a05f3c8530', '198.235.24.169', 1664705942, '__ci_last_regenerate|i:1664705942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409272afee499a259bdd80ad9c27d095c0bbdee7', '198.235.24.169', 1664705943, '__ci_last_regenerate|i:1664705943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846a907b340c9ca9dc860d2762a89fb64a4268f2', '198.235.24.169', 1664705943, '__ci_last_regenerate|i:1664705943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dacd9ab78ef49ce86a619cf2056d036f45da5bd2', '45.120.39.142', 1664711908, '__ci_last_regenerate|i:1664711908;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664703817\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664711901;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8b3513b21a472eaa91109264d7f27836eac19b', '45.120.39.142', 1664716769, '__ci_last_regenerate|i:1664716769;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664703817\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664711908;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f3a3a61b879def6393a1ea7eded03787f71abe', '45.120.39.142', 1664717670, '__ci_last_regenerate|i:1664717670;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664703817\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664716965;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51c8f9187866f0e88807c759df21b569b5ed45c', '45.120.39.142', 1664720056, '__ci_last_regenerate|i:1664720056;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664703817\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664717760;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb3e1c4bb9bf2b6d9871fd1667757dd2f0b8faa', '116.204.230.23', 1664718121, '__ci_last_regenerate|i:1664717820;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664699339\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910a81a871fe91fc31b920156a2682fa99637588', '45.120.39.142', 1664720959, '__ci_last_regenerate|i:1664720959;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664703817\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664720950;register_id|s:3:\"205\";cash_in_hand|s:10:\"13000.0000\";register_open_time|s:19:\"2022-10-01 20:52:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2900f622a8dbe90486c6a8fe1dee01b33f8aa29', '45.120.39.142', 1664720977, '__ci_last_regenerate|i:1664720959;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664703817\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664720977;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a61fb5970f0337f42abddc72d7a35ace230cb068', '162.142.125.211', 1664729406, '__ci_last_regenerate|i:1664729406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2dc69af8fa5d2dec5fb10d205b62d11b219edd', '162.142.125.211', 1664729406, '__ci_last_regenerate|i:1664729406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d026d476f6e1c85de39f62f468f5ddd1cbc789c', '162.142.125.211', 1664729406, '__ci_last_regenerate|i:1664729406;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258c96b2a6fc4da639b8a05f43bde634d722d994', '162.142.125.211', 1664729406, '__ci_last_regenerate|i:1664729406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f0f29d57d6e33b28dab28dcde53bb30d6cf83c', '162.142.125.211', 1664729411, '__ci_last_regenerate|i:1664729411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b35309a3c47bed1e51e44fc05daad11756dd9e', '162.142.125.211', 1664729411, '__ci_last_regenerate|i:1664729411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c70113e3095c1fdcf9746649f9e1bd434458ca', '45.120.39.142', 1664772830, '__ci_last_regenerate|i:1664772830;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664771578;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f97a8f17fccf039bab8f02ba3b2aab22f22b34', '45.120.39.142', 1664773839, '__ci_last_regenerate|i:1664773839;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664773001;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae02b5e0e9c43be81ba671af3a52b01b2ef3aa0', '45.120.39.142', 1664777678, '__ci_last_regenerate|i:1664777678;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664777593;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1b28557ff89ee0437837c31c516462e49b46d3', '45.120.39.142', 1664778228, '__ci_last_regenerate|i:1664778228;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664777679;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b270943b2b8a498770cde5dcd1fe82e08c05633', '45.120.39.142', 1664783573, '__ci_last_regenerate|i:1664783573;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664778228;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d094b6b47877fc26d5092cefa38d58e1fa787d55', '45.120.39.142', 1664790825, '__ci_last_regenerate|i:1664790825;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664790820;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f099d6f76bfe39a02b2847731b00affdd828425e', '45.120.39.142', 1664792556, '__ci_last_regenerate|i:1664792556;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664790826;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d14d27b1aca149d757f3773b06a4c114ed2f7d', '45.120.39.142', 1664793694, '__ci_last_regenerate|i:1664793694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664792556;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985ebb760b507fb25496550781f13b1b6fcc5981', '45.120.39.142', 1664797716, '__ci_last_regenerate|i:1664797716;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664792556;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b40791dfa2468a8ad14beda6508c7e76a8d42ea', '45.120.39.142', 1664798133, '__ci_last_regenerate|i:1664798133;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664797774;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecfd536901f88163eb636b112f5fb605a011339f', '45.120.39.142', 1664800454, '__ci_last_regenerate|i:1664800454;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664798143;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b737fe9126a714ef466cccce206f8847eefbaef6', '45.120.39.142', 1664807122, '__ci_last_regenerate|i:1664807122;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664807114;register_id|s:3:\"206\";cash_in_hand|s:9:\"2290.0000\";register_open_time|s:19:\"2022-10-02 20:29:34\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1a17f2afe4cfbb0aabc4f9f5c3516323a51f44', '45.120.39.142', 1664807160, '__ci_last_regenerate|i:1664807122;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664711251\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664807160;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b9472e321d16a65ca9816db0a8d60e6f9eec4f', '116.204.230.23', 1664808710, '__ci_last_regenerate|i:1664808643;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664717826\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64984953f5f2d1239a3c7a76c1d13da610e4f4f', '45.120.39.142', 1664865957, '__ci_last_regenerate|i:1664865957;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664771518\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664858900;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25c83f13b232ffde22be04f671072c996d6137b', '45.120.39.142', 1664868898, '__ci_last_regenerate|i:1664868898;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664771518\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664865976;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d3b7d58cfea9c7e279bf09a712cc5c3de07b8d', '116.204.230.19', 1664868745, '__ci_last_regenerate|i:1664868745;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664808648\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664868280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091bc2ee16a9bc5db96787f29e3e1bd839735e4f', '116.204.230.19', 1664868985, '__ci_last_regenerate|i:1664868745;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664808648\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664868280;user_csrf|s:20:\"1emD8UGTXLgBr4pFkviK\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994a4aa8ba9f183cb189d6f9d14518496ead5d92', '45.120.39.142', 1664868925, '__ci_last_regenerate|i:1664868898;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664771518\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664868925;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('968724c5cd6489fb7d0d87400d2558e1e5061b39', '167.99.118.113', 1664900886, '__ci_last_regenerate|i:1664900886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c03a6c966670636df1c5233965b3fa0ca0cec94', '93.190.141.73', 1664902919, '__ci_last_regenerate|i:1664902919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcfa4ef3077d4a5ae5a083533aacd383e40bfa9f', '64.225.22.199', 1664914730, '__ci_last_regenerate|i:1664914730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d3e94fd199ebb4b59ac050348cd3b410d15a52', '64.225.22.199', 1664914735, '__ci_last_regenerate|i:1664914735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8846a2e840fbd399e0144fe63266b8e430598d9e', '64.225.22.199', 1664914738, '__ci_last_regenerate|i:1664914738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90952bed66ce4f09322cec14b302706d6f665ee9', '45.120.39.142', 1664946693, '__ci_last_regenerate|i:1664946693;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664858568\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2923960b8fa271341a196eee3ea00e7dd0efa828', '45.120.39.142', 1664947023, '__ci_last_regenerate|i:1664947023;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664858568\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664947007;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f740fc841c08c373bc326f3260ecb6a932fc0d1', '45.120.39.142', 1664947405, '__ci_last_regenerate|i:1664947405;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664858568\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664947316;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8901528bb86e3ef18851d6909a4b7054cde5e354', '45.120.39.142', 1664948470, '__ci_last_regenerate|i:1664948470;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664858568\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664948464;register_id|s:3:\"207\";cash_in_hand|s:9:\"1110.0000\";register_open_time|s:19:\"2022-10-03 20:25:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f676d146d09585d28613dc0407f899a172eda2', '45.120.39.142', 1664950574, '__ci_last_regenerate|i:1664950574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664858568\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664950541;register_id|s:3:\"208\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-10-05 11:42:34\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd69527f7e2eb34ee3fab9dc25ad0c8911bebce2', '45.120.39.142', 1664950578, '__ci_last_regenerate|i:1664950574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664858568\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664950578;register_id|s:3:\"208\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-10-05 11:42:34\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0009226a8f576014df3016b5549e83eb242edd', '116.204.230.22', 1664953598, '__ci_last_regenerate|i:1664953598;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664868010\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027245185e9d691a095d8da3da820412665d6162', '116.204.230.22', 1664953819, '__ci_last_regenerate|i:1664953598;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664868010\";last_ip|s:14:\"116.204.230.19\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d020fe7f6311348f5b2fd57538665e20ceac20', '45.120.39.142', 1664961659, '__ci_last_regenerate|i:1664961659;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664945884\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a89a55b246a61a21c640e8bdb5d72aecf37a71', '45.120.39.142', 1664961976, '__ci_last_regenerate|i:1664961976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664945884\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664961921;register_id|s:3:\"208\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-10-05 11:42:34\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6bf848c310fd5b1dca4de62ecb2d34c3451c53c', '45.120.39.142', 1664962070, '__ci_last_regenerate|i:1664961976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664945884\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664962058;register_id|s:3:\"208\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-10-05 11:42:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09030b53f652946b8f6dfa58e185ee35909d47ca', '116.204.230.22', 1664974483, '__ci_last_regenerate|i:1664974483;requested_page|s:14:\"admin/products\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b803ffbe7349f1dbddf2384e3135b5bc2821cdd6', '116.204.230.22', 1664974992, '__ci_last_regenerate|i:1664974483;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664953160\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e0c66e831602ee034f8846bb7e63bb192eccb6', '205.210.31.40', 1664976791, '__ci_last_regenerate|i:1664976791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecbfc8b1836060a14220070750f931ab97d8c5ea', '205.210.31.166', 1664978532, '__ci_last_regenerate|i:1664978532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760512bae2cc9dfae88f46a5ba91b08ba5903d59', '45.120.39.142', 1664979068, '__ci_last_regenerate|i:1664979068;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664960095\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664979062;register_id|s:3:\"208\";cash_in_hand|s:9:\"1250.0000\";register_open_time|s:19:\"2022-10-05 11:42:34\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7912d86455e3927375a446093ab43d2c89d26251', '45.120.39.142', 1664979177, '__ci_last_regenerate|i:1664979068;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664960095\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1664979177;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec24ab5de528abf2bdd17ad41c9f50d89cf7657e', '205.210.31.140', 1664982609, '__ci_last_regenerate|i:1664982609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b833761d601b2612fa270bf8c3b4a45790fae159', '45.120.39.142', 1665030794, '__ci_last_regenerate|i:1665030794;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664978737\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665030789;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f389a9860c27212f5caa6486c635d15c5a5df41f', '45.120.39.142', 1665030799, '__ci_last_regenerate|i:1665030794;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1664978737\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665030798;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2f5abd24c6c9da1a6c195418b2f02b8d2d41ea', '45.120.39.142', 1665041760, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665041760;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665030154\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665040822;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d49e4f4c6e12670449cf29411b2f1d3db8e9fa', '45.120.39.142', 1665042816, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665042816;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665030154\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665042742;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f278923bae910906a8bb3a3178d4b1c1debe04c', '45.120.39.142', 1665043199, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665043199;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665030154\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665042742;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660226fefbd186b7397c47bddb73a67c3407fb03', '45.120.39.142', 1665043337, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665043199;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665030154\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665043337;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68a84861bbe98c968e00e0f47ffd808ef2432807', '45.120.39.142', 1665057074, '__ci_last_regenerate|i:1665057074;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665057070;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4981a46f52fe7dabee9f51d96d8c5ed9c9cad6c6', '45.120.39.142', 1665057785, '__ci_last_regenerate|i:1665057785;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665057074;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef8db28a8243b124b8d1236ce48a82578c443c5', '45.120.39.142', 1665059657, '__ci_last_regenerate|i:1665059657;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665059643;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2eaf241e7e01686433ef63bc96e42c116e9aa9', '45.120.39.142', 1665061518, '__ci_last_regenerate|i:1665061518;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665059657;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a5b970743d3418fe46be749d85dc4da911a516', '45.120.39.142', 1665061836, '__ci_last_regenerate|i:1665061836;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665061818;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8da97034b701257850e4a0709acfd305c1c6d27', '45.120.39.142', 1665062322, '__ci_last_regenerate|i:1665062322;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665062207;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e54c2f3dd8b048136f3f605245afeeba36d71f', '45.120.39.142', 1665063152, '__ci_last_regenerate|i:1665063152;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665062901;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d6d3b36050ba73666149baacaa6c90edeb2012', '45.120.39.142', 1665063476, '__ci_last_regenerate|i:1665063476;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665063161;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e70800bc819718539ded4bed61a09cbf562baf', '45.120.39.142', 1665064115, '__ci_last_regenerate|i:1665064115;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665063161;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baab59a0528108c6c9f066cc111f6d79a17a271e', '45.120.39.142', 1665065087, '__ci_last_regenerate|i:1665065087;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665065018;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064df4156dca30f187144b4992afcb5226ceafdc', '116.204.230.22', 1665064952, '__ci_last_regenerate|i:1665064765;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1664974488\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ehZxR7tHTObr0w2JCpfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f37f9848d773963515b84d2050ffc146d25daaf', '45.120.39.142', 1665065399, '__ci_last_regenerate|i:1665065399;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665065181;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97783508240ac2afd2d0e08da0b91c68c838dde', '45.120.39.142', 1665066116, '__ci_last_regenerate|i:1665066116;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665066112;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca970dea9c304128e11eebc4f8949afb39684bd4', '45.120.39.142', 1665067630, '__ci_last_regenerate|i:1665067630;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665066112;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7aed6ce5b177f17dec81ea7c0951754ca0f9fb', '45.120.39.142', 1665069099, '__ci_last_regenerate|i:1665069099;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665067711;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0b1de640e12d0997c69b116730d2249cae13ef', '45.120.39.142', 1665069629, '__ci_last_regenerate|i:1665069629;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665069623;register_id|s:3:\"209\";cash_in_hand|s:9:\"1420.0000\";register_open_time|s:19:\"2022-10-05 20:11:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1cb1fd7dcd97d3123d102f90fca2d318c599334', '45.120.39.142', 1665069651, '__ci_last_regenerate|i:1665069629;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665040815\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665069651;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e03ab4dd50c79e564b2beda5e977e4a0e75a44', '2.57.122.23', 1665077850, '__ci_last_regenerate|i:1665077850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6abaa005da4f75b43f0c0032d1a762cee1fa4fc3', '2.57.122.23', 1665077850, '__ci_last_regenerate|i:1665077850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67f5d82c88554d696bb51ba02b12f1eed6bd8aa', '2.57.122.23', 1665077850, '__ci_last_regenerate|i:1665077850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dd32697ab7b6a3e69a6f3fb60cafe66ee2d44e9', '2.57.122.23', 1665077850, '__ci_last_regenerate|i:1665077850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48fff7f76f1b8f53ace510440ff063793424b732', '2.57.122.23', 1665077850, '__ci_last_regenerate|i:1665077850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc8c3a46811b416f618860a86d8ccec72fc9827', '2.57.122.23', 1665077851, '__ci_last_regenerate|i:1665077851;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5096b9e2c7fed2a5df20cc466472d69a1aa012', '93.190.141.73', 1665090155, '__ci_last_regenerate|i:1665090155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6af529f148316576cf8f92e7d865111c34c9f3e', '45.120.39.142', 1665120418, '__ci_last_regenerate|i:1665120418;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665051003\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665117518;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6efcda8d1724198419d6bd394e7af867a95edf', '45.120.39.142', 1665120425, '__ci_last_regenerate|i:1665120418;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665051003\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665120425;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43443818c4ac0977911daf5ca98051758e1cf10a', '45.120.39.142', 1665133740, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665133740;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665130545;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66034b43f7b424c5ae602f7d2c77a8f950b73af5', '45.120.39.142', 1665130353, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba1c2969a8d568519a3682b2b71c912e1c453e6', '45.120.39.142', 1665135716, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665135716;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665133780;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082bd53c94eddf063bdd85e97ce4e8c0bd200e59', '45.120.39.142', 1665137099, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665137099;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665137045;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25baa0b6d84f4ad2b21390021e0e13e82ab600e', '45.120.39.142', 1665142866, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665142866;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665137099;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367b79165e4ef4bc0d19bd1a9b7e889847d72b55', '45.120.39.142', 1665144222, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665144222;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665144219;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b545f915baa7d8cf3bd4f6437ab3087ee9f9c803', '45.120.39.142', 1665145194, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665145194;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665144222;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497eccc7d2f6cce8edd44d51fd58bd80f1b8323b', '45.120.39.142', 1665146016, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665146016;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665146010;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cecc484ecb2de0bebecfc579706675d931ffe3a', '45.120.39.142', 1665146445, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665146445;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665146016;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53063024f518431b8e2230cc686a6fa369e8be93', '45.120.39.142', 1665148480, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665148480;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665146480;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7197ae016b8c25f22f9d13b76bf3e03efa53a14', '45.120.39.142', 1665153014, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665153014;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665153001;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2430a22c7417a31528e06cca2fd4f5fbfac21b', '45.120.39.142', 1665153456, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665153456;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665153206;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab42bdeed14eee9c3e34a7a2b9a783c50ab49a7', '45.120.39.142', 1665153987, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665153987;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665153935;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcfd48c6e51e00fd0d46dab4c2017c1991259fcd', '45.120.39.142', 1665155300, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665155300;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665155291;register_id|s:3:\"210\";cash_in_hand|s:8:\"140.0000\";register_open_time|s:19:\"2022-10-06 21:20:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6845bc1555167e4c9bf0dac1cfd381c91bdf5d24', '45.120.39.142', 1665155514, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1665155300;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665117460\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665155506;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8306a17bd3fd759ca8bc0f549d1c9663fb5d8d8', '64.225.54.217', 1665205084, '__ci_last_regenerate|i:1665205084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eca5dce6e7082a7fe880a3a476bba93809ae32d', '45.120.39.142', 1665207309, '__ci_last_regenerate|i:1665207309;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665130412\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665206629;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd882bf63e4d878676f660f149891fe18fea12c1', '64.225.16.243', 1665206448, '__ci_last_regenerate|i:1665206448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb933427c21e3759a0fe003d6be5858c42d205a', '45.120.39.142', 1665211100, '__ci_last_regenerate|i:1665211100;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665130412\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665207336;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10da24c50fcddb8c710c69368dadff4294b92102', '159.89.44.244', 1665207357, '__ci_last_regenerate|i:1665207357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdfb58ff546c5b1904696be0800ea55844302929', '116.204.230.23', 1665210816, '__ci_last_regenerate|i:1665210816;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665064769\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"GPC2a3nhHdcJXZOoswTl\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81273a250902ad56c0f28547cab3fe84173069ed', '116.204.230.23', 1665211740, '__ci_last_regenerate|i:1665211740;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665064769\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"GPC2a3nhHdcJXZOoswTl\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4841cc6f81e476d457c70f263d5f71f56ef996', '45.120.39.142', 1665211100, '__ci_last_regenerate|i:1665211100;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665130412\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665207336;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f81a387f3efccf6a036fa31fed2323880c496ca9', '116.204.230.23', 1665211840, '__ci_last_regenerate|i:1665211740;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665064769\";last_ip|s:14:\"116.204.230.22\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"8h2PSuyDHv1k7iXxa0ZQ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f8f5fea319a9924e60fdad62b3f77e01c1213b', '64.225.58.182', 1665216151, '__ci_last_regenerate|i:1665216151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49375cadc2eccd4ef4dc906bcde66a7ac261830b', '45.120.39.142', 1665219452, '__ci_last_regenerate|i:1665219452;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665219431;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8a7fcc4e60420c9e5482b91e673a2c4d4b6787', '45.120.39.142', 1665220388, '__ci_last_regenerate|i:1665220388;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665220132;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586b6e58e31d9348dbaf86079259bc88c6f61571', '45.120.39.142', 1665223762, '__ci_last_regenerate|i:1665223762;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665220651;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a386cafc517c7c0d9d44b61591739296218afe15', '45.120.39.142', 1665225050, '__ci_last_regenerate|i:1665225050;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665223762;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ecc6637d69bc9c797ea2efe24fd11d74a0bd1b', '45.120.39.142', 1665230860, '__ci_last_regenerate|i:1665230860;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665225064;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('653d88c8b79b3221b61f0c9e838ab4546574086e', '45.120.39.142', 1665232772, '__ci_last_regenerate|i:1665232772;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665231047;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('066aa208ed2df0f3664e42ae46014cbb79da670d', '45.120.39.142', 1665233675, '__ci_last_regenerate|i:1665233675;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665231047;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c0cddd0925ae10e5404d39cd4abb3995e79645', '45.120.39.142', 1665234539, '__ci_last_regenerate|i:1665234539;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665234534;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf343e6a10c64b9c1a600702291a98fdab15d0a9', '45.120.39.142', 1665234925, '__ci_last_regenerate|i:1665234925;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665234920;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e509fe26cb54f02378f74e0358fde8e28ed1c7', '45.120.39.142', 1665236806, '__ci_last_regenerate|i:1665236806;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665236801;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c1d18fd1530a823f42f5dc46cd041124514a9b', '45.120.39.142', 1665237281, '__ci_last_regenerate|i:1665237281;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665237074;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11d4e01cf211231a052ea20637f76a5028c22c6', '45.120.39.142', 1665238475, '__ci_last_regenerate|i:1665238475;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665238470;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d43dcab4871936186270064bd8e275ec65e980', '45.120.39.142', 1665238812, '__ci_last_regenerate|i:1665238812;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665238727;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2589d1e2c18ca55678c5e7eddc7f4702eda6c034', '45.120.39.142', 1665240989, '__ci_last_regenerate|i:1665240989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665240983;register_id|s:3:\"211\";cash_in_hand|s:9:\"3900.0000\";register_open_time|s:19:\"2022-10-07 21:08:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88bbd16251b7f1b249f464b22e6628c653ea83a', '45.120.39.142', 1665241007, '__ci_last_regenerate|i:1665240989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665206417\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665241007;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d686d62c0899b953742d7d52846bb6e3d7536fd', '45.120.39.142', 1665298862, '__ci_last_regenerate|i:1665298862;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665295492;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f3703a153949009171a047618c88984a10d8a5', '37.111.218.142', 1665299302, '__ci_last_regenerate|i:1665299302;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665299033;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a38aab8bb30335f5e17cc9446ce518e84edfdd', '37.111.218.142', 1665300055, '__ci_last_regenerate|i:1665300055;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665299537;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('894ae22d9b37706e37fd4ed68587368399f7fda9', '37.111.218.142', 1665301663, '__ci_last_regenerate|i:1665301663;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665301553;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6f930d1699a48285a5257356dd23229ac78621', '37.111.218.142', 1665302354, '__ci_last_regenerate|i:1665302354;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665301685;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6d9ce59946f3fe48b1f4e64dd081ab8223252a', '37.111.218.142', 1665306088, '__ci_last_regenerate|i:1665306088;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665306032;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f6fc65fde5a362672fbe7fc7b64e68040e8f82', '37.111.218.142', 1665307693, '__ci_last_regenerate|i:1665307693;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665306089;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ac9fadcf2944bd6cab1fbb486ad4bff3a6d57f', '37.111.218.142', 1665312282, '__ci_last_regenerate|i:1665312282;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665312271;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb100f65ca8216e5e2f0dae23ae467f30ee21420', '37.111.218.142', 1665312769, '__ci_last_regenerate|i:1665312769;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665312674;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0220fde42501d65242d3f3feaae14246b1ca99', '37.111.218.142', 1665313125, '__ci_last_regenerate|i:1665313125;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665312845;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5decf9e50eecddf60d84d359aabc347c3ffb7e5b', '37.111.218.142', 1665316594, '__ci_last_regenerate|i:1665316594;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665316586;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e26f7559be7665c69fe7a6f184db5af25fc0a71', '37.111.218.142', 1665317418, '__ci_last_regenerate|i:1665317418;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665317254;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde21b44ce2d812f68b9db2bd2e7daa9876e4b96', '37.111.218.142', 1665319703, '__ci_last_regenerate|i:1665319703;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665317424;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da8c4322c66af75b1c63773aea5d793ada2da6d', '37.111.218.142', 1665320674, '__ci_last_regenerate|i:1665320674;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665320670;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9ca4049fe3cbbf0d98cf661793f97cfcc1c964', '37.111.218.142', 1665325576, '__ci_last_regenerate|i:1665325576;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665320674;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe0b61b3544c4ec3fddbe91ba1874aa45972758', '37.111.218.142', 1665326911, '__ci_last_regenerate|i:1665326911;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665325822;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7667e05b67ca385dd69252c02b3a9af6d529e9e', '116.204.230.26', 1665325873, '__ci_last_regenerate|i:1665325591;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665210303\";last_ip|s:14:\"116.204.230.23\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665325873;user_csrf|s:20:\"Nd7k6IwMZjGJTtDYquOy\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6892c24157dbdb452f1c0fd72276cba1b9d472ba', '37.111.218.142', 1665327741, '__ci_last_regenerate|i:1665327741;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665327717;register_id|s:3:\"212\";cash_in_hand|s:7:\"50.0000\";register_open_time|s:19:\"2022-10-08 20:56:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42fd66a564b32c22dc4e9fc15a8513b252610d5', '37.111.218.142', 1665327762, '__ci_last_regenerate|i:1665327741;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665219107\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665327761;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db89c28e47bac5aa50a96c3d70e4851c04c7c541', '37.111.217.179', 1665379218, '__ci_last_regenerate|i:1665379218;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665295484\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665378338;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22542cc2a7ef2b0c117d9d5348db164e53275dd', '37.111.217.179', 1665379521, '__ci_last_regenerate|i:1665379521;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665295484\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665379504;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c2082111c3c90f9920d153723618faa5f770d61', '37.111.217.179', 1665383264, '__ci_last_regenerate|i:1665383264;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665295484\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665379745;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b356e85d6a70b9a0dbae892a6ae48efa56921676', '37.111.217.179', 1665383784, '__ci_last_regenerate|i:1665383784;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665295484\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665379745;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c444223a4145f5e8720b0a30b2147176b8e521', '116.204.230.24', 1665384099, '__ci_last_regenerate|i:1665384099;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4cefbf38482485dcd0440318e6bacfdbb47db1', '37.111.217.179', 1665386396, '__ci_last_regenerate|i:1665383784;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665295484\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665383784;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9c3f9da32a0ef2f2db3d7e8eead404b6f7e334c', '116.204.230.24', 1665384405, '__ci_last_regenerate|i:1665384405;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e0be437ff859beedfdab0d6f4b9565ec03cfaa', '116.204.230.24', 1665385053, '__ci_last_regenerate|i:1665385053;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('698ee50fc17bb8d4ea42b225755bb5f118170aa2', '116.204.230.24', 1665385376, '__ci_last_regenerate|i:1665385376;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c97bd39ee7cf9b8a621059efc1c270eeb8fca8', '116.204.230.24', 1665387266, '__ci_last_regenerate|i:1665387266;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('849ba30ae2cd36667a2acfd5a6a0624e7aea3a80', '116.204.230.24', 1665387577, '__ci_last_regenerate|i:1665387577;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a328079f68cd99572e697a996bcabfbd5183ea3', '116.204.230.24', 1665388113, '__ci_last_regenerate|i:1665388113;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e3265f7d879453149c990632adcf28d1b32729', '116.204.230.24', 1665388522, '__ci_last_regenerate|i:1665388522;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72493851aa4ff84e7525d4bee5ffd1ab0a89106a', '116.204.230.24', 1665388828, '__ci_last_regenerate|i:1665388828;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9101573a646d43e77275ac95ba69082318158e8b', '116.204.230.24', 1665389437, '__ci_last_regenerate|i:1665389437;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d76b9754601e3593bbf1cdc543dee12d12635ed', '116.204.230.24', 1665389554, '__ci_last_regenerate|i:1665389437;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665325603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798e04feef15b6fdefefdfc665006498d57ec7fa', '37.111.217.179', 1665395142, '__ci_last_regenerate|i:1665395142;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665394439;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b61b53415186bbc734e63a38694a07233aa3d77', '37.111.217.179', 1665395754, '__ci_last_regenerate|i:1665395754;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665395193;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea96cb540c994bc6ad27e6d5be9c608a9f0323a', '37.111.217.179', 1665399598, '__ci_last_regenerate|i:1665399598;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665395754;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717515716d1f494baf676e84d3db1200b2047ea2', '37.111.217.179', 1665402654, '__ci_last_regenerate|i:1665402654;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665399619;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bbe45fbb0d583e69c9292bb015d99a52c13e00e', '37.111.217.179', 1665406240, '__ci_last_regenerate|i:1665406240;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665402654;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43cf37fc70cfb55be210e6517a5c0d3f2a5096f0', '37.111.217.179', 1665406847, '__ci_last_regenerate|i:1665406847;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665406463;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61050ada3491e6a2b64f93630475a67dbadd2357', '37.111.217.179', 1665407714, '__ci_last_regenerate|i:1665407714;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665406847;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10cb30345509cb51bbb2ae2611a158d570f4507', '37.111.217.179', 1665411702, '__ci_last_regenerate|i:1665411702;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665410741;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105aee64cf444cd8b0247e379f88e475921350e2', '37.111.217.179', 1665411931, '__ci_last_regenerate|i:1665411702;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665378296\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665411930;register_id|s:3:\"213\";cash_in_hand|s:9:\"9080.0000\";register_open_time|s:19:\"2022-10-09 21:02:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399da3fc1df003a56b6a74bbca63461338aba4ea', '139.196.152.3', 1665422851, '__ci_last_regenerate|i:1665422851;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('011dbd994c09e1c187adfce5a5cd4f7ace83da0d', '139.196.152.3', 1665422852, '__ci_last_regenerate|i:1665422852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a9d58b6e8bf3c2e44cdd51ee08dbbf9cb8c21e', '139.196.152.3', 1665422852, '__ci_last_regenerate|i:1665422852;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a264d0c2cbb962d9d5fc8791dd883b735440469e', '139.196.152.3', 1665422853, '__ci_last_regenerate|i:1665422853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0699996d44622be2c686d3aab4a75b2bde2e9934', '37.111.216.105', 1665464013, '__ci_last_regenerate|i:1665464013;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665394429\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665463993;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65d68cc125d9675e40f4467c2bb8a8f9bf64299', '37.111.216.105', 1665464103, '__ci_last_regenerate|i:1665464013;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665394429\";last_ip|s:14:\"37.111.217.179\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665464101;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644ecd086005e78a94722e6593bf1ff60fae0e96', '37.111.216.105', 1665475368, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665475368;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665463298\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe4d627c89760a1d974a43c3c1551da08bf9bf9', '37.111.216.105', 1665478621, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665478621;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665463298\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665475373;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfb587e9beaacabf15ff625521585b1257ee666', '37.111.216.105', 1665478623, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1665478621;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665463298\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665478621;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a241d75987fc79474cb78c129ca717f7e7869b19', '37.111.216.105', 1665487369, '__ci_last_regenerate|i:1665487369;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665486597;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('576919e265e00dd0026fc8803c7b0bb971cfacc7', '37.111.216.105', 1665488988, '__ci_last_regenerate|i:1665488988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665487397;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a889295249bfda8673cfea3881d36754dd9529c', '37.111.216.105', 1665490995, '__ci_last_regenerate|i:1665490995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665489101;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d93c114ab15fc00526d68d31ee9a7272bf074dd', '37.111.216.105', 1665492659, '__ci_last_regenerate|i:1665492659;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665490995;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f3356918b656605d629ed979497b26f65b0433', '37.111.216.105', 1665493192, '__ci_last_regenerate|i:1665493192;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665493184;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0290907e13cf00fcb1478f50bb60f3cbb9c601e6', '37.111.216.105', 1665496148, '__ci_last_regenerate|i:1665496148;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665493192;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7e3d67cd7b72299b19d92582007822c0e9b365', '116.204.230.20', 1665496269, '__ci_last_regenerate|i:1665496269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb1551474246edbbdfa6bac74288ba5bf57bc07', '37.111.216.105', 1665496762, '__ci_last_regenerate|i:1665496762;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665496740;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb2d5e1fc856ae2af21bda73fbcd7860df8d012', '116.204.230.20', 1665496336, '__ci_last_regenerate|i:1665496269;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665383787\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"OC0JZiuAQwKvVY52kcWF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5d61af8f6346024c5bbbc1569ea15d995c1099', '37.111.216.105', 1665498881, '__ci_last_regenerate|i:1665498881;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665496762;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037064c43330ee171ac26849bad79a43f0852b2c', '37.111.216.105', 1665499301, '__ci_last_regenerate|i:1665499301;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665498926;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74cb3ce1b83518c87bc1b123de987bc405cb69f', '37.111.216.105', 1665499920, '__ci_last_regenerate|i:1665499920;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665499302;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70cc2aebbaacda37a8ca42073f48e2841563bad4', '37.111.216.105', 1665500315, '__ci_last_regenerate|i:1665500315;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665500016;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11f904e25f4b122544ab6618bf809a47ea08d71', '37.111.216.105', 1665500719, '__ci_last_regenerate|i:1665500719;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665500546;register_id|s:3:\"214\";cash_in_hand|s:10:\"13970.0000\";register_open_time|s:19:\"2022-10-11 10:44:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7223b76a14d2087ff4031e2ea44526f6ea1b410', '37.111.216.105', 1665500749, '__ci_last_regenerate|i:1665500719;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665473209\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665500749;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acff218e3a4b2e84e77ed86d1451a4a2c369375f', '37.111.216.231', 1665550531, '__ci_last_regenerate|i:1665550531;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665550304;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33bcb97b4798e0898330766193f7f09e9a9c2329', '37.111.216.231', 1665551722, '__ci_last_regenerate|i:1665551722;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665550553;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4371d5aa585c69f363a81f1a4197364e728d27d2', '37.111.216.231', 1665555063, '__ci_last_regenerate|i:1665555063;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665551744;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fbd88be2705bb73b19e8aa8becadbcd7cbcaab3', '37.111.216.231', 1665560051, '__ci_last_regenerate|i:1665560051;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665555063;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29bf53ab3941178c34607aad7250fc5ad0a6597', '116.204.230.28', 1665558922, '__ci_last_regenerate|i:1665558922;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665496269\";last_ip|s:14:\"116.204.230.20\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047c9682336d7fa3b9de0871728ad98f810c95dd', '116.204.230.28', 1665560782, '__ci_last_regenerate|i:1665560782;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665496269\";last_ip|s:14:\"116.204.230.20\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3aaea0e54906108d788e7b89209650ca9fef7f8', '37.111.216.231', 1665561891, '__ci_last_regenerate|i:1665561891;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665560184;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2f967da0499f4d4d254d79e82eaa8fec6bf36e', '116.204.230.28', 1665560782, '__ci_last_regenerate|i:1665560782;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665496269\";last_ip|s:14:\"116.204.230.20\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d0ba57dd15a223dae10865712e4ce9accd5321', '37.111.216.231', 1665563009, '__ci_last_regenerate|i:1665563009;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665562058;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557f406abf133cf7971e269ef447f115803f2397', '37.111.216.231', 1665570157, '__ci_last_regenerate|i:1665570157;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665563022;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15a2e2a4501b1c8cc2b9c51425a13028d3832f3', '45.120.39.142', 1665570161, '__ci_last_regenerate|i:1665570157;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665486556\";last_ip|s:14:\"37.111.216.105\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665570161;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08299d9c11857d2c49b5b942f31f8607ec0f7ae', '45.120.39.142', 1665582111, '__ci_last_regenerate|i:1665582111;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665550154\";last_ip|s:14:\"37.111.216.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665580680;register_id|s:3:\"215\";cash_in_hand|s:8:\"130.0000\";register_open_time|s:19:\"2022-10-11 21:05:43\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04402e5b36754e28532922db0af03110b97fb8fd', '45.120.39.142', 1665583466, '__ci_last_regenerate|i:1665583466;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665550154\";last_ip|s:14:\"37.111.216.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665582282;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0ee2a857e783e75e6d700f18c8bc9333475c70', '45.120.39.142', 1665583496, '__ci_last_regenerate|i:1665583466;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665550154\";last_ip|s:14:\"37.111.216.231\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665583496;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cbe7b5164dfff50d95206b7030af2b455abbdd1', '95.217.147.17', 1665612961, '__ci_last_regenerate|i:1665612961;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f44949e77532091019250998991fc3e6555369a', '95.217.147.17', 1665612964, '__ci_last_regenerate|i:1665612964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f112b613f2e137bd9a3bb0f74c775223605c4d85', '95.217.147.17', 1665612966, '__ci_last_regenerate|i:1665612966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3e3def57309aeef0a938e5274ceb952b5341915', '95.217.147.17', 1665612969, '__ci_last_regenerate|i:1665612969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ddacab58f1887a098bd30cd13b196be381f618', '45.120.39.142', 1665637807, '__ci_last_regenerate|i:1665637807;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665580664\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665637801;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c737accdb071ef1577aaea7db4e63a99cbe05e9f', '45.120.39.142', 1665638645, '__ci_last_regenerate|i:1665638645;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665580664\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665638545;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd1d32cc53040d1702eaf405006cdc93a0e56df', '37.111.216.17', 1665638645, '__ci_last_regenerate|i:1665638645;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665580664\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665638645;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfcbbe0a8e6edc68b2c389343d7c946456f688a2', '45.120.39.142', 1665651317, '__ci_last_regenerate|i:1665651317;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665647864;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a88074ff0df601f61572ef26139a36db907550f', '45.120.39.142', 1665651634, '__ci_last_regenerate|i:1665651634;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665647864;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3068f4a7b36205093a1d3b03256d2e36f9196e', '45.120.39.142', 1665651991, '__ci_last_regenerate|i:1665651991;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665651919;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e80435bdc137b082a2a3947b6dd48450592ee5e', '45.120.39.142', 1665652347, '__ci_last_regenerate|i:1665652347;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665652200;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d53da371a2c401b9267eae694cdb17daa9324f0', '45.120.39.142', 1665653552, '__ci_last_regenerate|i:1665653552;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665652979;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f057d1240838e589cd42116ee7450c4468b45e4', '45.120.39.142', 1665657209, '__ci_last_regenerate|i:1665657209;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665653701;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94b529282a2adb8198479b4f04a0d6da21f50c0', '45.120.39.142', 1665657943, '__ci_last_regenerate|i:1665657943;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665657882;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2407a924f8d0cdc9f04de5178245dabf3d7d543b', '45.120.39.142', 1665658579, '__ci_last_regenerate|i:1665658579;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665657944;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f2218b860f4936c06262db61a4089aa40ca284', '45.120.39.142', 1665660262, '__ci_last_regenerate|i:1665660262;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665658710;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0640d1e7ef49c652285ff9b3fdc7d351dc498b81', '45.120.39.142', 1665660759, '__ci_last_regenerate|i:1665660759;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665660336;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a430148befa4595bfc14e2f1a5095e00cf302d2', '45.120.39.142', 1665663877, '__ci_last_regenerate|i:1665663877;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665663752;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38793a1b82883ed4e95e2dc199006a0741df1c3e', '116.204.230.28', 1665662309, '__ci_last_regenerate|i:1665662309;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665558527\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ljuEQbUFmyiAwhsn8JpD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720a9a221b12300240915e3f51c6fa04ee2fb79f', '116.204.230.28', 1665662657, '__ci_last_regenerate|i:1665662657;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665558527\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"ljuEQbUFmyiAwhsn8JpD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0e4044ea32ce5f466b817d6066e9755ebd13f9', '116.204.230.28', 1665669621, '__ci_last_regenerate|i:1665669621;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665558527\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"0PIK8C9wJcgNm2bxBShA\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75745a74d48488f15a40111447cfa248b6944f6e', '37.111.216.17', 1665664196, '__ci_last_regenerate|i:1665664196;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665664168;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f67e8fbf6cee6ad142dbca0cf1632e962b48329b', '37.111.216.17', 1665665369, '__ci_last_regenerate|i:1665665369;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665664224;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73098d2cc31cd698a78b6ce41b2f060529c6cc1c', '37.111.216.17', 1665666220, '__ci_last_regenerate|i:1665666220;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665666213;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346504afb41108529c06a968a51afb3072f195ee', '37.111.216.17', 1665669464, '__ci_last_regenerate|i:1665669464;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665669458;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7dd3283b0d08d0a8bc19c0ab1ef740ed61c400', '37.111.216.17', 1665671117, '__ci_last_regenerate|i:1665671117;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665669464;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1202a33883d4272f79c132f2720c3551ca9d85', '116.204.230.28', 1665669660, '__ci_last_regenerate|i:1665669621;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665558527\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"0PIK8C9wJcgNm2bxBShA\";last_activity|i:1665669660;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c196139de15014598436f3e16944efea4f5fe7', '37.111.216.17', 1665671449, '__ci_last_regenerate|i:1665671449;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665671382;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2bf143e57e4169e773edd3320bb1dbef8662f7', '37.111.216.17', 1665671832, '__ci_last_regenerate|i:1665671832;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665671449;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17ac05eb68a49207c97437b3ce8b8868542f210', '37.111.216.17', 1665672389, '__ci_last_regenerate|i:1665672389;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665672380;register_id|s:3:\"216\";cash_in_hand|s:9:\"4350.0000\";register_open_time|s:19:\"2022-10-12 19:44:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54351910cc3853a3412a101f59f46669b149e994', '37.111.216.17', 1665672423, '__ci_last_regenerate|i:1665672389;requested_page|s:15:\"admin/pos/sales\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665636718\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665672423;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f0f16ddf748ba3e390af1c2988b7bb75a6d6cb', '116.204.230.28', 1665722435, '__ci_last_regenerate|i:1665722435;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665662009\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665722144;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";user_csrf|s:20:\"zRFlfyX15EpTm7kt2cUD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2e2ebdbb8db04da70bd9278e868947b23975c2', '116.204.230.28', 1665723130, '__ci_last_regenerate|i:1665723130;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665662009\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665722144;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";user_csrf|s:20:\"zRFlfyX15EpTm7kt2cUD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125ebfc54736d3efb589c7f51a4048816b1d0406', '37.111.216.112', 1665724306, '__ci_last_regenerate|i:1665724306;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665724301;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9816168fe6cb17ab3292a5ebd1112a2ed7c5c480', '116.204.230.28', 1665724037, '__ci_last_regenerate|i:1665723130;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665662009\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665722144;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";user_csrf|s:20:\"zRFlfyX15EpTm7kt2cUD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a500683b02322963f741112b9cae51f0b91cfdaa', '37.111.216.112', 1665725674, '__ci_last_regenerate|i:1665725674;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665724307;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47fb4c303690e09844be994467b658a5199f9c2', '37.111.216.112', 1665727209, '__ci_last_regenerate|i:1665727209;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665727205;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691404d6ffd7bb2e4e775ec784b3eda724942907', '37.111.216.112', 1665735624, '__ci_last_regenerate|i:1665735624;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665730835;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b9a4503a43c738f02df7ff70380f348d3e9e77', '37.111.216.112', 1665738350, '__ci_last_regenerate|i:1665738350;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665735677;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1858bbf75e0f9a157a5d8eb51bfa52a644acbc', '116.204.230.23', 1665736491, '__ci_last_regenerate|i:1665736375;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1664289984\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665736402;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8233394e2fa47aa8542304697783f91bab1d51a7', '37.111.216.112', 1665739076, '__ci_last_regenerate|i:1665739076;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665738986;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1df68ed799714ae327f80b5e9aa1d2794311d20', '37.111.216.112', 1665742389, '__ci_last_regenerate|i:1665742389;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665739080;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01303c0d90d070acdff4d159d4dc26e5976bfc2d', '37.111.216.112', 1665744043, '__ci_last_regenerate|i:1665744043;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665742425;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('244032f610c79241515e7307ebda3b0a7c9d4a08', '37.111.216.112', 1665744525, '__ci_last_regenerate|i:1665744525;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665744073;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a7bd4eadd38b7e25e71558d9e1ceb8a72c7f43', '37.111.216.112', 1665746212, '__ci_last_regenerate|i:1665746212;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665744536;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8914b88c02eee05b6f9bf1a1e1473a3af4e68ef', '116.204.230.28', 1665745770, '__ci_last_regenerate|i:1665745769;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0301d393b18f21a73b030376fe305ec74a2569a', '37.111.216.112', 1665748885, '__ci_last_regenerate|i:1665748885;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665744536;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f909c11550489ff04f0e2ab1aac1ecb44ea51b', '37.111.216.112', 1665753373, '__ci_last_regenerate|i:1665753373;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665753276;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de304aaea47d6b908d55d8031fd007965646cf84', '37.111.216.112', 1665754514, '__ci_last_regenerate|i:1665754514;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665753639;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791892307468ea35df386021cfcd0bda1b1795dd', '37.111.216.112', 1665755832, '__ci_last_regenerate|i:1665755832;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665754659;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e9e90674550eddfec8d3a31ea0e309998e2c57', '37.111.216.112', 1665759620, '__ci_last_regenerate|i:1665759620;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665755862;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4abe6330c246bb067b4d23333d5f6346bce86d57', '116.204.230.23', 1665757531, '__ci_last_regenerate|i:1665757530;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50917d7db31ed0ed7292f5dde2b20ba2c38af9a', '37.111.216.112', 1665759947, '__ci_last_regenerate|i:1665759947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665759936;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cef1561efb6d1bb828a856b3138003aa01dbc4', '37.111.216.112', 1665761148, '__ci_last_regenerate|i:1665761148;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665761142;register_id|s:3:\"217\";cash_in_hand|s:8:\"450.0000\";register_open_time|s:19:\"2022-10-13 20:46:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f11324507a3ddc489c535c1f1bf39624332ee23', '37.111.216.112', 1665761178, '__ci_last_regenerate|i:1665761148;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665646670\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665761178;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70db1f7c7dc9634006f621c2e02a6ccee1a86a4c', '116.204.230.23', 1665804494, '__ci_last_regenerate|i:1665804248;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1665736385\";last_ip|s:14:\"116.204.230.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571d79ee35e5e41da0197193aa48f9c86d46e488', '37.111.216.169', 1665809991, '__ci_last_regenerate|i:1665809991;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f63aa47cd45c18a688d9ca9bc698fbc3474fa13', '65.154.226.109', 1665809468, '__ci_last_regenerate|i:1665809468;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7347fecc14b753c782c7718f29eb721eab6b1f0b', '37.111.216.169', 1665812159, '__ci_last_regenerate|i:1665812159;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665810031;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24763510dcb4ad1f995d337eff5a775ad89356c1', '116.204.230.28', 1665812027, '__ci_last_regenerate|i:1665812027;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40f2e3719fa9ab86fcf6f52ac5dfb8ae1d3800b', '37.111.215.230', 1665814901, '__ci_last_regenerate|i:1665814901;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d0a761b39ee642d437394495d4e424ea855d29', '37.111.216.169', 1665812623, '__ci_last_regenerate|i:1665812623;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665812159;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9f902f567ad3a8d9c6efac7801342517df214a', '37.111.216.169', 1665815993, '__ci_last_regenerate|i:1665815993;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665812632;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e900198d8739e432ac729d069b6c32d7b2157740', '116.204.230.22', 1665815495, '__ci_last_regenerate|i:1665815495;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d91a00ed01f24f9a341ffc54d332ad70db354a0', '116.204.230.22', 1665815966, '__ci_last_regenerate|i:1665815966;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d4e53838ef6af0185b3ebc933d5626a401e6d7', '116.204.230.22', 1665816659, '__ci_last_regenerate|i:1665816659;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a8da0c979b3b3721640d67ce1ebd54b9489533', '37.111.216.169', 1665816358, '__ci_last_regenerate|i:1665816358;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665816188;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b502c1475c7afc814b655c5b27d68996535b889c', '37.111.216.169', 1665821501, '__ci_last_regenerate|i:1665821501;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665816509;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c431c984ea2d54c970efc4aac02469a4c451ee', '116.204.230.22', 1665817165, '__ci_last_regenerate|i:1665817165;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d6894b33920f33dc1679fe0fd9acef280931ba3', '116.204.230.22', 1665822348, '__ci_last_regenerate|i:1665822348;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3b72033f15cf339ac71b6b7dc998d71f4fc6df', '37.111.216.169', 1665822823, '__ci_last_regenerate|i:1665822823;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665821506;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d92e8195ee189865335dd863b25fe4012f60c78', '65.154.226.109', 1665821512, '__ci_last_regenerate|i:1665821512;requested_page|s:13:\"admin/welcome\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfffc5de7eb67e76fc05bf536816bbca01cf6991', '65.154.226.109', 1665821519, '__ci_last_regenerate|i:1665821519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c97911fbfb6df4dd2a4dd181f7892fe68d2dcd', '116.204.230.22', 1665822790, '__ci_last_regenerate|i:1665822790;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142fb857549c1d542a2bfd3d614524604bc52e09', '116.204.230.22', 1665823587, '__ci_last_regenerate|i:1665823587;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e663ef509dac9f8a18115c6400143d71c0cc91', '37.111.216.169', 1665824318, '__ci_last_regenerate|i:1665824318;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665822867;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ae2139e9d39f59f374f2a25cf53bf7f89d174f', '116.204.230.22', 1665824126, '__ci_last_regenerate|i:1665824126;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ce6f5dcc697b55f6367a2837916e19764bdb85', '116.204.230.22', 1665824592, '__ci_last_regenerate|i:1665824592;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2122b1f481f8876aa133ecc0b9f77b8369d93f', '37.111.216.169', 1665828507, '__ci_last_regenerate|i:1665828507;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665824379;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7614843cd70f1f48c82196eae789c9cbe3c48abc', '116.204.230.22', 1665824901, '__ci_last_regenerate|i:1665824901;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2751a377de9407d579dafe79a0e1b3f398573a', '116.204.230.22', 1665829439, '__ci_last_regenerate|i:1665829439;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9103cfcf72aa8810d9e451eff7124df7f3eb92ed', '15.235.138.120', 1665825335, '__ci_last_regenerate|i:1665825335;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('625bfc5551567de596e3ae537ea3896cf652b51f', '15.235.138.120', 1665825337, '__ci_last_regenerate|i:1665825337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a312b2c5d2485664690653d23f271a9bf8599e10', '15.235.138.120', 1665825338, '__ci_last_regenerate|i:1665825338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f002abffd7654ead2b8102da6b60a32ce4310b1d', '15.235.138.120', 1665825341, '__ci_last_regenerate|i:1665825341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c43fe0cbb33d201682e605e3af66cb0db064cc', '64.235.231.20', 1665825355, '__ci_last_regenerate|i:1665825355;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64429d21330ac5aaba1bd663e5a9ac1497f1dcca', '64.235.231.20', 1665825358, '__ci_last_regenerate|i:1665825358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0edcb052570125010a7eb90515b81008e36aebb', '64.235.231.20', 1665825358, '__ci_last_regenerate|i:1665825358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad7b8b31da67e610fd04e12e12b96cfcc2762e5', '64.235.231.20', 1665825358, '__ci_last_regenerate|i:1665825358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae0bf4330b66d71f385e96ded6c2477293850bb', '37.111.216.169', 1665829938, '__ci_last_regenerate|i:1665829938;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665828507;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0254a249d121083d7005ac9ab540b8ad2d0caa', '116.204.230.29', 1665835343, '__ci_last_regenerate|i:1665835343;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"gQDsyhtKAar0jcY3MPFf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37176cbdfd7e9d96aca6a46c87d0636f82ae9b56', '37.111.216.169', 1665829939, '__ci_last_regenerate|i:1665829938;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665723105\";last_ip|s:14:\"37.111.216.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665829938;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be763a58a4d308bcc54c110eb028051ac239bfd3', '116.204.230.29', 1665835676, '__ci_last_regenerate|i:1665835676;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"gQDsyhtKAar0jcY3MPFf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38ec7dbe277064ab54fc5f395c5473296508bcb', '116.204.230.29', 1665835987, '__ci_last_regenerate|i:1665835987;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"gQDsyhtKAar0jcY3MPFf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c98d9792be3411649cea0872baad3071085ac5', '116.204.230.29', 1665836723, '__ci_last_regenerate|i:1665836723;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"Jus3eXlNpAREytTBnH24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc50c39eeefd593e47e2673ecbf96b0086a9b52', '116.204.230.29', 1665838240, '__ci_last_regenerate|i:1665838240;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"Jus3eXlNpAREytTBnH24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c26a26c5caf90eacc46aba99379270fff5a55c2', '37.111.216.169', 1665837442, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03b052907bedf4412b5746855ecba5b6c0931be', '37.111.216.169', 1665839919, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665839919;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665837992;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34605689233aa51323454b368c35c669ebea276', '116.204.230.29', 1665838549, '__ci_last_regenerate|i:1665838549;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"Jus3eXlNpAREytTBnH24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02ed6d8b8748dd5068f25d85e708c1367f813c0', '116.204.230.29', 1665844897, '__ci_last_regenerate|i:1665844897;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"Jus3eXlNpAREytTBnH24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1521a298e7ebf74b095103660365816d644bfd8', '37.111.216.169', 1665840295, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665840295;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665839926;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23220eec1cb378d81c7b8bde7fa81e11a035eed', '37.111.216.169', 1665840937, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665840937;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665840448;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd695caa4266dd94b25c3ff81a322a24fffd884', '37.111.216.169', 1665841896, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665841896;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665841257;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b65c8f6870233724add717e6680f4ba2c3abe6', '37.111.216.169', 1665841255, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665841255;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665841255;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b260a8c66d348b6f8898b24fef5104c1ca9da913', '37.111.216.169', 1665842599, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665842599;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665842516;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e915ea3320240c86df29556bc5783908bdb900cb', '37.111.216.169', 1665843048, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665843048;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665842605;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f17894d1af68f6caa789c32948418d8bc19f7e77', '37.111.216.169', 1665845831, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665845831;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665845822;register_id|s:3:\"218\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2022-10-14 21:26:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b687c673b0898afeb5be3b3de696704796f137', '116.204.230.29', 1665844981, '__ci_last_regenerate|i:1665844897;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665722117\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"Jus3eXlNpAREytTBnH24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0e3ba8d55709c3dd2ef761a8333d0b36904df0', '37.111.216.169', 1665845850, 'requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1665845831;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665809492\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665845849;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d255f2a873b0c336f50d46f80db9db0d482833', '65.154.226.169', 1665885855, '__ci_last_regenerate|i:1665885855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a227e11471547be272c533cbf00c7e35c0f90073', '65.154.226.169', 1665885859, '__ci_last_regenerate|i:1665885858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d5063910b9c99bd310bb98588aa13affabbbc5', '65.154.226.109', 1665885863, '__ci_last_regenerate|i:1665885863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8941b13cbd20660d7013f094e42adfc1010c260a', '65.154.226.109', 1665885866, '__ci_last_regenerate|i:1665885866;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c6c4feb2265aa9e1059bd52d3847ccf5d57bfe', '65.154.226.109', 1665885869, '__ci_last_regenerate|i:1665885869;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7557c726cb7aef5ef33bf8480c967277586172fe', '65.154.226.109', 1665885869, '__ci_last_regenerate|i:1665885869;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87d9ed10090092dcc35ec99982fbf01cf855a01', '65.154.226.109', 1665885870, '__ci_last_regenerate|i:1665885870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be144bee1f46849784dbf7a47bb3fabf2a93e49', '116.204.230.29', 1665897276, '__ci_last_regenerate|i:1665897276;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665811495\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d493d1583971881025fae10980f5341b7b1b94ba', '116.204.230.29', 1665897329, '__ci_last_regenerate|i:1665897276;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665811495\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b0b0089c5484ae60e5a8aaab084b81a0bcfb5c', '37.111.219.201', 1665900250, '__ci_last_regenerate|i:1665900250;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665899999;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4536a79c263ae062ed674a0aaef316b60871193', '37.111.219.201', 1665902033, '__ci_last_regenerate|i:1665902033;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665901962;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11a5e1a52005163364cf1389ba0dc91a5407c43', '37.111.219.201', 1665902979, '__ci_last_regenerate|i:1665902979;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665902763;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ccb3e4c2c868bfceb1722d5f3cb6ce5c164fd3f', '37.111.219.201', 1665903369, '__ci_last_regenerate|i:1665903369;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665902979;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ad77ac06f21eeb20f1896651913205ebc8b7c6', '37.111.219.201', 1665904723, '__ci_last_regenerate|i:1665904723;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665903631;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eedaa722e83cac122376e848c83562c8fdd94d52', '37.111.219.201', 1665911040, '__ci_last_regenerate|i:1665911040;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665904855;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('971651b754859af5267f70c25840f5477ff848e0', '37.111.219.201', 1665916904, '__ci_last_regenerate|i:1665916904;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665911138;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83674027c3fecab89cad6df02cce0c548f46a03f', '37.111.219.201', 1665916904, '__ci_last_regenerate|i:1665916904;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665837929\";last_ip|s:14:\"37.111.216.169\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665916904;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c844bed2f94583fed4ed7ef4a0d03e7f82745e', '37.111.219.201', 1665921527, '__ci_last_regenerate|i:1665921527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665921462;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1fdc958a252452dc6fd330ee92d8bb77fe78cc5', '37.111.219.201', 1665922088, '__ci_last_regenerate|i:1665922088;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665922038;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5404e190ac7d267fef9df848f3792e85d95a9b14', '37.111.219.201', 1665922874, '__ci_last_regenerate|i:1665922874;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665922261;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6c7f8b94cf487eed380fae9a607bed399fd69d', '37.111.219.201', 1665923427, '__ci_last_regenerate|i:1665923427;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665922905;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947d938726b060e014e13de50ffc44fb16eee6a6', '37.111.219.201', 1665923767, '__ci_last_regenerate|i:1665923767;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665923430;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e2c6c6bfae6c60b75e48f50c4d281c97433ff7', '37.111.219.201', 1665925274, '__ci_last_regenerate|i:1665925274;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665925014;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4dd5ddbaf4e6d006cf1baefa064c808988dc75', '37.111.219.201', 1665928745, '__ci_last_regenerate|i:1665928745;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665925369;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3fe6ca74222cdb822c8e84451615b26abb06ea', '37.111.219.201', 1665930389, '__ci_last_regenerate|i:1665930389;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665928745;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee0c0a4614f3273b3845ad75d235eb160ef35b7', '37.111.219.201', 1665930690, '__ci_last_regenerate|i:1665930690;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665930396;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507d45c5d8e1393b25decad73c20a3e257fef10f', '37.111.219.201', 1665931523, '__ci_last_regenerate|i:1665931523;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665931517;register_id|s:3:\"219\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-15 20:57:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea926dc2e4e76306ed13c16392644405acc2242', '37.111.219.201', 1665931559, '__ci_last_regenerate|i:1665931523;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665899759\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665931558;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58ce0738d577a34a37023023cda3f1f28653eb8', '116.204.230.29', 1665931702, '__ci_last_regenerate|i:1665931626;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665897003\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665931702;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1a3e48b2127c947abf9edd664f1e14f98e6434', '116.204.230.23', 1665969397, '__ci_last_regenerate|i:1665969323;requested_page|s:27:\"admin/reports/monthly_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1665804259\";last_ip|s:14:\"116.204.230.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2cd6c2964b97826d70436b9dc31890db4a3cf80', '37.111.217.65', 1665983424, '__ci_last_regenerate|i:1665983424;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665982548;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a3f46ef542418bc68d84c621e95824dda0d5ba', '116.204.230.29', 1665984152, '__ci_last_regenerate|i:1665984152;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665931629\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665983722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35956ca92c8cc0c09b6d210624008f847e0d552', '37.111.217.65', 1665989227, '__ci_last_regenerate|i:1665989227;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665983525;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fe63a09485adda24a4f56b123af3ffc99b83cb', '116.204.230.29', 1665984343, '__ci_last_regenerate|i:1665984152;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665931629\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1665984343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5986b866bcb31d7f461f2640d002529ad0e8ff04', '37.111.217.65', 1665994199, '__ci_last_regenerate|i:1665994199;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665989227;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c5de54bb0283b329320e797e53f0b7bb6b9cc3', '37.111.217.65', 1665996367, '__ci_last_regenerate|i:1665996367;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665994269;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35ec8f827ac563f98ef020cc43e52584a0d96b9', '37.111.217.65', 1665998327, '__ci_last_regenerate|i:1665998327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665994269;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958ef2fa932aec0d5a54f0ef7db26f6cca0cc9a9', '134.122.72.173', 1665996729, '__ci_last_regenerate|i:1665996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9063d73df4337062369a26cbffa6ce7ac72d6072', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961b56a2d630440ac22b17f5852894ba48d8d165', '195.211.77.140', 1665996729, '__ci_last_regenerate|i:1665996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9375447d90c26c690715a64b002f8dc9fdbeb404', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32a6b930bf6b589b9c0323756dbe0c3744c0df99', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b806b88b176896ad89e4ff4c9d2cd4b26290f88e', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e948fbf0894ef02eedad90ee6daef32eeaaeda', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca75475b89d04222db957baa868252191b05a21a', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('647438e66c5db4298f92b785a31219f36701f9ac', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42b66adecb954aa9910a1139ccd47a9f8db6f10', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('872341a310f9135fed67749b96d7f5e74f952919', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d7beae4b6e0f32a1477a35e18b22363cfb619a', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e59fd77dbcb5db14cb2a9214179fb11a83acfcd', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89256651526ec5159014b98e02cbe3c623ccedff', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ce8937f19d11fa7288d125efe8343d21aedc37', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ba276aa94390f0911bb535caca7f41074387cc', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b306d547dada37b2fcfa6a7a95a9cf13c733a2', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1f125f8bddc3e6c13a17301fffc37e85c574b6', '139.162.139.31', 1665996729, '__ci_last_regenerate|i:1665996729;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2910a887b2edfd3e73e813d7b1ed7aa26f96409e', '195.211.77.140', 1665996730, '__ci_last_regenerate|i:1665996730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a6532671fe8cbd7f65cda48d0064f871146a96', '65.154.226.109', 1665996731, '__ci_last_regenerate|i:1665996731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044d1752e440f1efbe5066fd77b77c43eddb8268', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff24a47292c94cf8ffdee4abf9bd1ecfe06188f9', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3692ab2dc7cbbd77fb69f393791ad42f2e6bc5af', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d427fa964ceee0671d89026ecf2852fb41e5c10', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51657a8620cd6ae99b6bb69b4bb42ee52b4a2ee0', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1322cc2d018479baeef4402a208b1711b4b1f7eb', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a3238deebd47ef4b00193036a008089f929a94', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503259a50c57680429cabdcce60a86020011ab0f', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d1bac5c36d1026312ad03767a4b309c8a22d9a', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1421f223e212423a1fbd3b1c4443a324c34813d', '134.122.72.173', 1665996731, '__ci_last_regenerate|i:1665996731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0fca37c3f8daa48bdf982ef8d683392eda447d3', '134.122.72.173', 1665996732, '__ci_last_regenerate|i:1665996732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5127326d88b7be02daeb61d476919ecc381f6ef2', '134.122.72.173', 1665996732, '__ci_last_regenerate|i:1665996732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ab97735ef24dcc6a1ad7b806fabf9d62f565c1f', '134.122.72.173', 1665996732, '__ci_last_regenerate|i:1665996732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2097430a26423a896f40da9906b11a704740593', '134.122.72.173', 1665996732, '__ci_last_regenerate|i:1665996732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a3b832269d1d1eb9d7f2e25f796cfed0f18bce', '134.122.72.173', 1665996732, '__ci_last_regenerate|i:1665996732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a88b45f39bb7db76364a58cead6b45cbbb0c48', '65.154.226.109', 1665996732, '__ci_last_regenerate|i:1665996732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac71cda6ce08992629c8832e7666d82c27ab400f', '116.203.211.224', 1665996748, '__ci_last_regenerate|i:1665996748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a3101595ce038f4a21329a1bcb8028ec02cc10', '116.203.211.224', 1665996748, '__ci_last_regenerate|i:1665996748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a17c47faa2ad65bf1831d21d88302f5291dca86', '65.108.186.9', 1665996748, '__ci_last_regenerate|i:1665996748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08e32d44ef3c12574fc8b8331578c01ffc5b58f', '86.119.25.98', 1665996750, '__ci_last_regenerate|i:1665996750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5a885679e12f95e6d8cd273ccce1377dfb3e00', '65.108.186.46', 1665996751, '__ci_last_regenerate|i:1665996751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a4c74ed43f787f4d428a144715b308041c9d82', '89.45.90.35', 1665996755, '__ci_last_regenerate|i:1665996755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e797bdd9ca33f0d622d05fd098d34fbdf55bb96b', '89.45.90.35', 1665996757, '__ci_last_regenerate|i:1665996757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b699bc6da21d836970098d1aa10e0b8a32661a0', '195.141.89.150', 1665996760, '__ci_last_regenerate|i:1665996760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4935fd14bfda8f4abd9727a596f987141d6b493e', '195.141.89.150', 1665996762, '__ci_last_regenerate|i:1665996762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b1ae2effca64004e16e5775426be1adc3fd31a', '195.141.89.149', 1665996763, '__ci_last_regenerate|i:1665996763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2e60dd8bd1b1a327337966d28086cea05091a7f', '195.141.89.149', 1665996763, '__ci_last_regenerate|i:1665996763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4d5e843f829b559d1210b5542b129f0e235dba', '216.131.114.7', 1665996914, '__ci_last_regenerate|i:1665996914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f614835ad33ee0cdd633dc0de47012aab32a9d', '216.131.114.7', 1665996915, '__ci_last_regenerate|i:1665996915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2582365899153e7e74d3c8890d53beea669e071c', '5.62.61.62', 1665996916, '__ci_last_regenerate|i:1665996916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc641ee497e19d3d1c69c8a4bb2d5f187ed7fd7f', '87.115.231.232', 1665996917, '__ci_last_regenerate|i:1665996917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e57ea490d5bc8c44ae602148558ae5685bf57cb', '92.40.205.84', 1665996917, '__ci_last_regenerate|i:1665996917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce774a8b6114373558acdb589ef6b8f8b5a5794', '5.62.61.62', 1665996919, '__ci_last_regenerate|i:1665996919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02734eff257d3371ec705c59a821f4ad42474e6d', '87.115.231.232', 1665996920, '__ci_last_regenerate|i:1665996920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf790ba9d7d6f59c483cb6ab4293df8288d42814', '92.40.205.84', 1665996920, '__ci_last_regenerate|i:1665996920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7369ba4061e48a3122f0f5894090a11cc73ebf10', '45.221.68.131', 1665996925, '__ci_last_regenerate|i:1665996925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77f47ee7d81904b0a3a2a53c3370bfaa238c439', '216.131.114.7', 1665996928, '__ci_last_regenerate|i:1665996928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6514eea26beec4d2be5f1cc6f613047e6eaf4707', '5.62.61.62', 1665996929, '__ci_last_regenerate|i:1665996929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08a699cfe1788f2249b6cfac47a02b03d0a240b', '87.115.231.232', 1665997036, '__ci_last_regenerate|i:1665997036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6347a610b770094ad1036f0dc9c45aa01eb022c4', '216.131.114.7', 1665997394, '__ci_last_regenerate|i:1665997394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a4f9296e83206f44629824d93ce8d02b55bcd0', '216.131.114.7', 1665997036, '__ci_last_regenerate|i:1665997036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78f4681704107ec0ef8d122046991ebb68b70041', '87.115.231.232', 1665997036, '__ci_last_regenerate|i:1665997036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e26119757258e1db9d1de880d65e599c03883f0', '5.62.61.62', 1665997037, '__ci_last_regenerate|i:1665997037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c02cb48ab70ad91fee8606f72a71576f259dd36', '92.40.205.84', 1665997038, '__ci_last_regenerate|i:1665997038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3601cbd20d2c1f99cd78f70d6fd15eca21f841c4', '92.40.205.84', 1665997038, '__ci_last_regenerate|i:1665997038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d1118c4089def65d994e08b6d29cbf5ac29e11', '5.62.61.62', 1665997039, '__ci_last_regenerate|i:1665997039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f224561fae877997910017f1f7545423d7938221', '45.221.68.131', 1665997050, '__ci_last_regenerate|i:1665997050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('426631ae377d6bb20ab2d1ab9df86593dea26ad6', '216.131.114.7', 1665997082, '__ci_last_regenerate|i:1665997082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46390a36fb6726d9113d7af22d2dfe4ed4bc5b5', '5.62.61.62', 1665997082, '__ci_last_regenerate|i:1665997082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232c14592f856675359913ff38bb20ac0d306cc7', '87.115.231.232', 1665997212, '__ci_last_regenerate|i:1665997212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9603c2af0d7d54983dfabaf50ae62316ab777cb', '185.242.7.134', 1665997212, '__ci_last_regenerate|i:1665997212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9a11c31c558076e8b3c373785df3ade15cba56', '20.79.223.156', 1665997212, '__ci_last_regenerate|i:1665997212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('837e914882d5ce737ea839d686b9576826bc0fbf', '185.242.7.134', 1665997394, '__ci_last_regenerate|i:1665997394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3338328e5f22e2c79166beab6d5c5b46ddf67605', '161.35.246.138', 1665997522, '__ci_last_regenerate|i:1665997481;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6e501ecdbee80727cfc829a9bde3ecbe88c327', '164.90.255.66', 1665997574, '__ci_last_regenerate|i:1665997529;error|s:37:\"<p>Login Failed, Please try again</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53267f9de3e367e17773133804096ed6637438af', '37.111.217.65', 1666001107, '__ci_last_regenerate|i:1666001107;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665998700;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c863213a6fd1b241f265da313d722eec0538e086', '37.111.217.65', 1665998662, '__ci_last_regenerate|i:1665998662;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1665998662;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fea42c25923a1dfe4a7ad112053a2602ad47ccf', '172.105.247.100', 1665999796, '__ci_last_regenerate|i:1665999796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5c258d88fcc46363ae7b6d6bc912ce4e3a4f69', '172.105.247.100', 1665999796, '__ci_last_regenerate|i:1665999796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5dd9cdd5ab46e63b878a7f134f0999f7d4f691', '172.105.247.100', 1665999797, '__ci_last_regenerate|i:1665999796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437b59530f0fa46a28624bdc6a1eaedd18dc1a9a', '172.105.247.100', 1665999797, '__ci_last_regenerate|i:1665999797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3123f2dd5a1b794d7e28c46197c46a250fb10b', '172.105.247.100', 1665999797, '__ci_last_regenerate|i:1665999797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c94fe40a38624372029c0d411fa31eef4846a69', '172.105.247.100', 1665999797, '__ci_last_regenerate|i:1665999797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1171cb6334030c3c6f15566ec87c6c3cebda5268', '172.105.247.100', 1665999798, '__ci_last_regenerate|i:1665999797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40affc7543ded95c12dc60a9e64fe28ec11b269', '172.105.247.100', 1665999798, '__ci_last_regenerate|i:1665999798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78f2598661c97c6b4638f3dee467dba7a3cd82d', '172.105.247.100', 1665999798, '__ci_last_regenerate|i:1665999798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3557611d9e707825007f69a8c32569091a5778b', '172.105.247.100', 1665999799, '__ci_last_regenerate|i:1665999799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf56c38a43d602c250f2f36ce83a9727de2215f6', '172.105.247.100', 1665999799, '__ci_last_regenerate|i:1665999799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fb3255ec804c383fb81db63af38ca7b1763135d', '172.105.247.100', 1665999799, '__ci_last_regenerate|i:1665999799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f380a9cfd9890bca616495e3a2699baa19ac25f8', '172.105.247.100', 1665999799, '__ci_last_regenerate|i:1665999799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d9bc6de0a2c7ff0fb877a75e15493bcb75b041c', '172.105.247.100', 1665999800, '__ci_last_regenerate|i:1665999800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40de32bd818a48f697f6df6baed2478bdb14a302', '172.105.247.100', 1665999800, '__ci_last_regenerate|i:1665999800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77fac372cf2a3ca95af71048e803b3491bad29b', '172.105.247.100', 1665999800, '__ci_last_regenerate|i:1665999800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23113c369d505d2fc41958cbd4bc9b037fbc8cfd', '18.204.233.163', 1666000881, '__ci_last_regenerate|i:1666000881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b45ef9f70b92b7633ac39f53cf8dff2a17657da9', '18.204.233.163', 1666000882, '__ci_last_regenerate|i:1666000882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427f6f7f18032246d473ba419ccc09c969c02bc4', '37.111.217.65', 1666013557, '__ci_last_regenerate|i:1666013557;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666013389;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9d2bb0b3a6cb4a2166f184202d53d627c8c5c4', '172.105.247.100', 1666002025, '__ci_last_regenerate|i:1666002025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ea799f7d17b0d4c52011717e7ea49b92ca009b', '172.105.247.100', 1666002025, '__ci_last_regenerate|i:1666002025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05659341f65a2a44f75667b4de3b5958d9302fe', '172.105.247.100', 1666002025, '__ci_last_regenerate|i:1666002025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07be9e972169eaf2a0579ef437748813f6dae104', '172.105.247.100', 1666002025, '__ci_last_regenerate|i:1666002025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cf72bb01986e8e37b138814ecb1e76aa99bd11', '172.105.247.100', 1666002026, '__ci_last_regenerate|i:1666002026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5ebed845e6f762f8f7adf2e19934cc2484b01f', '172.105.247.100', 1666002026, '__ci_last_regenerate|i:1666002026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c29eef29f75521dcb1ec91be8c15887db42fa4', '172.105.247.100', 1666002026, '__ci_last_regenerate|i:1666002026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959f150914b88044d077bc426a0851f157e26932', '172.105.247.100', 1666002027, '__ci_last_regenerate|i:1666002027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1aac69b2cd14a28c0a67dacf5a8bf64b71f46a', '172.105.247.100', 1666002027, '__ci_last_regenerate|i:1666002027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91ac76559fd81efc04e1c6c399d3c4269b16b35', '172.105.247.100', 1666002027, '__ci_last_regenerate|i:1666002027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69b7b43fba779dc3b613040406f1dccb8883ab3', '172.105.247.100', 1666002027, '__ci_last_regenerate|i:1666002027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15dbce6103cc1edd203a83c532e7b29b0a79df56', '172.105.247.100', 1666002027, '__ci_last_regenerate|i:1666002027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db66e68975f4d70fb9923a990e812f5afedf9415', '172.105.247.100', 1666002028, '__ci_last_regenerate|i:1666002028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('030993688cbc80217638d6f80e495a858c22b5b2', '172.105.247.100', 1666002028, '__ci_last_regenerate|i:1666002028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50cffc69769b33815fc9864f8488e1a18c9caa82', '172.105.247.100', 1666002028, '__ci_last_regenerate|i:1666002028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0169e6802af5a6419cd6e4231c8111f24b7010', '172.105.247.100', 1666002029, '__ci_last_regenerate|i:1666002028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fa9471d9f4a5a2f5ecd1068055945779d884e38', '18.204.233.163', 1666002387, '__ci_last_regenerate|i:1666002387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963526bbb438526954c0bfc89d2e9a879b860323', '18.204.233.163', 1666002387, '__ci_last_regenerate|i:1666002387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948ad1a1ad0258608c9e1632ce10f9b60328d8fc', '44.195.244.245', 1666003720, '__ci_last_regenerate|i:1666003720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f158ab6602d823a916736637dd9c4188e93119ff', '44.195.244.245', 1666003722, '__ci_last_regenerate|i:1666003722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98dfb33840f2ca210951b0c8dee72154f66d7531', '172.105.247.100', 1666004648, '__ci_last_regenerate|i:1666004648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607d0e04c26919e13ed40b03f794e57e87412cc1', '172.105.247.100', 1666004649, '__ci_last_regenerate|i:1666004649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623336dd5c61cb26dc9d5c5d5e4b3a2f1012e7a4', '172.105.247.100', 1666004649, '__ci_last_regenerate|i:1666004649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f784fb04ff1049bd68fb994532237b4a2c54d3', '172.105.247.100', 1666004649, '__ci_last_regenerate|i:1666004649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97fa4eef85cb18b408684b289ad78627635d2e84', '172.105.247.100', 1666004650, '__ci_last_regenerate|i:1666004650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5fe35df81386ef4237beaa4588538c11435d3d', '172.105.247.100', 1666004650, '__ci_last_regenerate|i:1666004650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36b7ea50d895d9d2bf3f2b8e80899a1c28fba3a', '172.105.247.100', 1666004650, '__ci_last_regenerate|i:1666004650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e44e516f46b73b9b7c8bf75e952c4281336c81', '172.105.247.100', 1666004651, '__ci_last_regenerate|i:1666004651;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42e7a574a7d6b71c7e86820092c95e04f857058b', '172.105.247.100', 1666004651, '__ci_last_regenerate|i:1666004651;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963b1a99cad3723f660959110d7284c1deab6e5f', '172.105.247.100', 1666004651, '__ci_last_regenerate|i:1666004651;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de919f6f4e136729206a75d3f39c7b2c1d15dcce', '172.105.247.100', 1666004651, '__ci_last_regenerate|i:1666004651;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59e9094d874505f3984f171d8636691bb4c0a8d', '172.105.247.100', 1666004651, '__ci_last_regenerate|i:1666004651;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef28610e41fd8edf8473728570ad7c58a2220310', '172.105.247.100', 1666004652, '__ci_last_regenerate|i:1666004652;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c74b841e18de0fbb5c5fc6ad3b2e9b186e31f0de', '172.105.247.100', 1666004652, '__ci_last_regenerate|i:1666004652;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbcd311557382db25cec59a99803c8f8721493d', '172.105.247.100', 1666004652, '__ci_last_regenerate|i:1666004652;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156d905194179fffa7f4d0b6218f8acc50b06b50', '172.105.247.100', 1666004652, '__ci_last_regenerate|i:1666004652;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073676efe90f80d19bbf777582f8cf3463acf843', '44.195.244.245', 1666004880, '__ci_last_regenerate|i:1666004880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07c9addcdbc873053ea62be444c15c9ed429535', '44.195.244.245', 1666004880, '__ci_last_regenerate|i:1666004880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537d04b1fcc865317834dcead978d8040dfa559e', '116.204.230.27', 1666005853, '__ci_last_regenerate|i:1666005853;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e57d4bd2837e7843889e362e3f1d31297b7e97c', '18.203.235.36', 1666006071, '__ci_last_regenerate|i:1666006071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2295811e268d2614fd9589f4efb6e8f385643f8d', '18.203.235.36', 1666006079, '__ci_last_regenerate|i:1666006075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7015c66fd8cdd5de7e5a15f12d9e6776f2d84bb', '44.195.244.245', 1666006127, '__ci_last_regenerate|i:1666006127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eaef367d24f782ff8647a674d9b8fb81940e022', '44.195.244.245', 1666006127, '__ci_last_regenerate|i:1666006127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b963c5b0c6c734b57806a2372c4306e6594e310', '18.204.233.163', 1666007012, '__ci_last_regenerate|i:1666007012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ffa56fff6feb6ea9a4f1a4b9d7e37f55b79072', '18.204.233.163', 1666007012, '__ci_last_regenerate|i:1666007012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b7e4c70098370a1e23f820cb10d43524fc8737', '34.254.53.125', 1666007547, '__ci_last_regenerate|i:1666007547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eeb331181d2fed0daa3669a8eb72eae3276de24', '34.254.53.125', 1666007548, '__ci_last_regenerate|i:1666007548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36df470c68b5dad9414e58692f16329b1fe2fdb0', '34.254.53.125', 1666007549, '__ci_last_regenerate|i:1666007549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1158c1366eb2334d293400b70514ce35db031a20', '34.254.53.125', 1666007565, '__ci_last_regenerate|i:1666007549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d697584ef98140123eea88fd63ca814bc4e210a6', '34.254.53.125', 1666007550, '__ci_last_regenerate|i:1666007550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdff68ac9121cea0b7202f2dc241cde844772917', '34.254.53.125', 1666007551, '__ci_last_regenerate|i:1666007551;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab05bf58f6fc5e2b74890ae2aa0a5581fc2f2422', '34.254.53.125', 1666007551, '__ci_last_regenerate|i:1666007551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6627cd6a1ae66bb519f10ffc2a94a93beb7c3fcc', '34.254.53.125', 1666007564, '__ci_last_regenerate|i:1666007564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d6afe3fc37b7f2315b45e5b3ea26051b700caf6', '34.254.53.125', 1666007564, '__ci_last_regenerate|i:1666007564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f734e2b3cae2aa6f63731a37e679ceb455a28506', '34.254.53.125', 1666007565, '__ci_last_regenerate|i:1666007565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaafceee7b5a0446584ebacda53ea084b4f73773', '34.254.53.125', 1666007567, '__ci_last_regenerate|i:1666007567;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecede2e02a3d9b5c6c653abe0c9055c290d5b64e', '34.254.53.125', 1666007568, '__ci_last_regenerate|i:1666007567;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2be1406cfc06f941eeb00265e8a4348ce3f0a6f', '34.254.53.125', 1666007568, '__ci_last_regenerate|i:1666007568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e1cd351cb76a4fc72c0fa0f27c132cda9fe0c4', '18.204.233.163', 1666009221, '__ci_last_regenerate|i:1666009221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc70ef7005102c41e03872e51df5a2656aee5de', '18.204.233.163', 1666009221, '__ci_last_regenerate|i:1666009221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93906c37854b711a43f10cbba2ef14a6e7affa8', '18.204.233.163', 1666010253, '__ci_last_regenerate|i:1666010253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc872f8469472b316191aa56030d13fd9bf15e65', '18.204.233.163', 1666010254, '__ci_last_regenerate|i:1666010254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0005161e22d9b49de40fbc7caf1bfcd60e51120', '44.195.244.245', 1666011693, '__ci_last_regenerate|i:1666011693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e14aaf04121f7d282ff0734efb078ff7ae67839', '44.195.244.245', 1666011693, '__ci_last_regenerate|i:1666011693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d95f22e2ac7d7beb278c889268bb290417792df', '172.105.247.100', 1666011817, '__ci_last_regenerate|i:1666011817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794a4cfd52809b9de58cf13bf42334c288f3326a', '172.105.247.100', 1666011818, '__ci_last_regenerate|i:1666011818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0ea8748098c214d17e211832f48ede9cf822ba', '172.105.247.100', 1666011818, '__ci_last_regenerate|i:1666011818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a53109da9655b782f1fb9e03888255075cc792', '172.105.247.100', 1666011819, '__ci_last_regenerate|i:1666011819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7fb3d37c9684113989b08f7cdd47a4943b5b97', '172.105.247.100', 1666011819, '__ci_last_regenerate|i:1666011819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c600f02b735470c952fa22a15824b4db1796dd7b', '172.105.247.100', 1666011819, '__ci_last_regenerate|i:1666011819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec0cd0a2bcfc8248c1ae35f86f2d1ffc7de52502', '172.105.247.100', 1666011819, '__ci_last_regenerate|i:1666011819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258d230fa7603d54db875afc6bf19a4c5e8f2cca', '172.105.247.100', 1666011820, '__ci_last_regenerate|i:1666011820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd328737ef77fff7c55f6f2fbcf8958881e4afaf', '172.105.247.100', 1666011820, '__ci_last_regenerate|i:1666011820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4bcded2078ce68466523200a3145901ea13a59', '172.105.247.100', 1666011820, '__ci_last_regenerate|i:1666011820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8102ee2b295fc2292786b1fd0e1d463ea3afcf7a', '172.105.247.100', 1666011820, '__ci_last_regenerate|i:1666011820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982cd831dcf1c160abe4e511850a77f27bb49376', '172.105.247.100', 1666011820, '__ci_last_regenerate|i:1666011820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657a992c00476828c975edadf3d8c43b01bcf354', '172.105.247.100', 1666011821, '__ci_last_regenerate|i:1666011821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db09a4b0aa010b2520e4cdc450b86a2b11a2ccdd', '172.105.247.100', 1666011821, '__ci_last_regenerate|i:1666011821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb418638dec82055bb6eb28928b587ccbb6f57a', '172.105.247.100', 1666011821, '__ci_last_regenerate|i:1666011821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67cdc3499e69e88fe493c4b4a94c5627fbea3d13', '172.105.247.100', 1666011821, '__ci_last_regenerate|i:1666011821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13804211bfbc775b7861235ed561f0b6013069e1', '44.195.244.245', 1666012890, '__ci_last_regenerate|i:1666012890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0629b2c6cc6688b02dfaca5606fc4125e2ece3a9', '44.195.244.245', 1666012890, '__ci_last_regenerate|i:1666012890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8313dfc9ca9cbee827c769524cfffd26de747df', '37.111.217.65', 1666015371, '__ci_last_regenerate|i:1666015371;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666013558;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5d7d8eeb91485371030bfd9a7ea6f68c506a2e', '44.195.244.245', 1666013987, '__ci_last_regenerate|i:1666013987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79431d6c1d35a74e8b294805f92143142417aa14', '44.195.244.245', 1666013987, '__ci_last_regenerate|i:1666013987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952b1ee6e2f6b9aebc2315f79fcc62bad09ab9f0', '44.195.244.245', 1666015236, '__ci_last_regenerate|i:1666015236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5635a723e36688cfd55530637f0ac64db610799', '44.195.244.245', 1666015236, '__ci_last_regenerate|i:1666015236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c4aefc68b263ca9845116c05f1c8cea02693e6', '37.111.217.65', 1666016378, '__ci_last_regenerate|i:1666016378;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666015391;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6242cdf408a9786795e0197cf7c50311594fd5a', '37.111.217.65', 1666016680, '__ci_last_regenerate|i:1666016680;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666016677;register_id|s:3:\"220\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-10-16 20:45:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8c3315151ff756cdb0db271c1382f5c6e6f081', '18.204.233.163', 1666016625, '__ci_last_regenerate|i:1666016625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364cc39b838e1ffb189f52c630bba479718cb0dd', '18.204.233.163', 1666016626, '__ci_last_regenerate|i:1666016626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445596dec90a0880c0cf82e81e3227041fb9d21d', '37.111.217.65', 1666016719, '__ci_last_regenerate|i:1666016680;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665918643\";last_ip|s:14:\"37.111.219.201\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666016719;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd3c7a88bad5af9b3661cf52fdaa69b823929d3', '116.204.230.27', 1666017474, '__ci_last_regenerate|i:1666017462;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1665983019\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daddfbeeed2cf8a48a1a20d85bc58402806294fa', '18.204.233.163', 1666018568, '__ci_last_regenerate|i:1666018568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3afaef611b6fc3770b9a0c8735fbd08d093166', '18.204.233.163', 1666018568, '__ci_last_regenerate|i:1666018568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024395667978868eea9119a4db459f85b9b7323f', '172.105.247.100', 1666019003, '__ci_last_regenerate|i:1666019003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf044c92e3cdab51d272922ecbd1547cc8e76b06', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30643954772284d1be8f39cf7d396d5d0e2daa97', '172.105.247.100', 1666019003, '__ci_last_regenerate|i:1666019003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42cf26ba72a2f133b6c9f03b9420af2e12f4ea8d', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67c0b0840d5daf1595b41cccf912f79cd77e765', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d911905a9881b2a391c498ebdaac4a6f3019b175', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e677bd54af1ab7ef89e7cee0dfbd28063a2cb3', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997b23eaca4bdcff6bea8b8e34fb3f9ee5192c84', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6cf31f3eac5f9ae26274b71309c9ef55bf2245', '172.105.247.100', 1666019004, '__ci_last_regenerate|i:1666019004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df7da4b8a70f00cfc87b71f5a3e262dca39b4bb', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3a14f8ee7922186157e8b9043b75554b7ccfba', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39695f4ac3330b170355ae375183d055b556e2b5', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7de76bb899c078631f317104c3637280803eea', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1dc7ea08bfa7bafd58ce2d191d7257f627e281', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a097989e334b248708061ae234ec7d2e9b2bdf', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d4e6de17688b24a83a7d5dd2d37ada70c89cf8', '172.105.247.100', 1666019005, '__ci_last_regenerate|i:1666019005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821a83be55394ab367a8e810cb510f0f267e5098', '44.195.244.245', 1666019713, '__ci_last_regenerate|i:1666019713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53bfa3c6bd613b24f6a6587b2d319074cb1022d', '44.195.244.245', 1666019715, '__ci_last_regenerate|i:1666019715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056cca1a16c4a806f85c9522168564083eb333e9', '18.204.233.163', 1666021114, '__ci_last_regenerate|i:1666021114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeaa1f896af0ee9b969acd9333caeaaa2b7e049b', '18.204.233.163', 1666021115, '__ci_last_regenerate|i:1666021115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa7fad505870cbf08e644fd7ca50ad9df1f4e433', '18.204.233.163', 1666022368, '__ci_last_regenerate|i:1666022368;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9119b2fe1f40f121adbd6b783f43f48d4bfaa090', '18.204.233.163', 1666022369, '__ci_last_regenerate|i:1666022368;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee402566f41aeceeaeaf2c271bc3f19d7978055', '18.204.233.163', 1666023690, '__ci_last_regenerate|i:1666023690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30b8512991ea8d9d2ddd6ca7e0e9273e32a32b8', '18.204.233.163', 1666023691, '__ci_last_regenerate|i:1666023691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f127fa9f1bbb975993c66bb572c8e261e3e528', '69.4.89.106', 1666024493, '__ci_last_regenerate|i:1666024493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88817f5ee2dea5fdabe381557069534e81a5dd45', '69.4.89.106', 1666024493, '__ci_last_regenerate|i:1666024493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2ae226a257cc5115169f0fe32c1fc35bd6af31', '69.4.89.106', 1666024493, '__ci_last_regenerate|i:1666024493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140c8f4ea66af45bd0a7c01d5fb54e1d7ea1eae3', '69.4.89.106', 1666024493, '__ci_last_regenerate|i:1666024493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c09f70b2e19000e0e199a603171fe7de658d40', '18.204.233.163', 1666025447, '__ci_last_regenerate|i:1666025447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497beba0ee79d6c8ca01d5b13c2c0d7013e0075e', '18.204.233.163', 1666025448, '__ci_last_regenerate|i:1666025448;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a20543d8dfd2d09fa0371079df98402cccf103', '172.105.247.100', 1666026240, '__ci_last_regenerate|i:1666026240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650e52a4e88d0f86b52afb0041e00df6d1fc48ab', '172.105.247.100', 1666026242, '__ci_last_regenerate|i:1666026242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b667cd4e30f8d291d33181577608f330fc12209', '172.105.247.100', 1666026243, '__ci_last_regenerate|i:1666026243;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e072537b84b93acb2fdcde3384e2d431f102a2fd', '172.105.247.100', 1666026243, '__ci_last_regenerate|i:1666026243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0aa88d1ee5f190b95a1dfdc8f33a9b34ab4b2a2', '172.105.247.100', 1666026243, '__ci_last_regenerate|i:1666026243;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da802812e7f667c64c5ae0b1db9d25454c365b2', '172.105.247.100', 1666026244, '__ci_last_regenerate|i:1666026244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b81f373e2f7ed3551cfbe6f55e3d5b62a1c7e61', '172.105.247.100', 1666026244, '__ci_last_regenerate|i:1666026244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5eec4ea4c35df46c78b62e3203a74b89dcc15e', '172.105.247.100', 1666026244, '__ci_last_regenerate|i:1666026244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb72a222e90b8d8b9b618a8174eaaf426677bd5a', '172.105.247.100', 1666026244, '__ci_last_regenerate|i:1666026244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78cea4c4fce3c456bd46e25e2e3ec9f210e14fd5', '172.105.247.100', 1666026245, '__ci_last_regenerate|i:1666026244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac77178e39db74e73471cea2f6b7a0dce0ba4b18', '172.105.247.100', 1666026245, '__ci_last_regenerate|i:1666026245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c636414813ee03474982e493c013a9e5d6df317', '172.105.247.100', 1666026245, '__ci_last_regenerate|i:1666026245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccb26115ba6a7a68f2956d72fa7c8e6911c7c49', '172.105.247.100', 1666026245, '__ci_last_regenerate|i:1666026245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eedf436959f73035028265ce728273ad022655a', '172.105.247.100', 1666026246, '__ci_last_regenerate|i:1666026245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6459f4d937f903b34feefac238d46d1dee3b0e63', '172.105.247.100', 1666026246, '__ci_last_regenerate|i:1666026246;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bac9562aefac5cab33c5c9e5dcf022b8282de71', '172.105.247.100', 1666026246, '__ci_last_regenerate|i:1666026246;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('335c9e033ea58cef126108c8363e42f8b2855f9f', '44.195.244.245', 1666026480, '__ci_last_regenerate|i:1666026480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fd1d1613caaa24b50a948b880a2ba698f27dbd', '172.105.247.100', 1666033424, '__ci_last_regenerate|i:1666033424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea14f04e1b7278b6ac134e735bf66242f32b46bb', '172.105.247.100', 1666033425, '__ci_last_regenerate|i:1666033425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fdd09b155ed3e6fcd4c4c359368e486fdebe20a', '172.105.247.100', 1666033425, '__ci_last_regenerate|i:1666033425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2712ead2ccbfa699dbf0654e6598f73db0f45451', '172.105.247.100', 1666033425, '__ci_last_regenerate|i:1666033425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ed1c1064ba0583d93feabd21279977397b00c2', '172.105.247.100', 1666033425, '__ci_last_regenerate|i:1666033425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d864482cef34ba246eb7441c14110dcbb13f28', '172.105.247.100', 1666033426, '__ci_last_regenerate|i:1666033426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6c5e34e2c3e82ee418fabdbf0908847476effe', '172.105.247.100', 1666033426, '__ci_last_regenerate|i:1666033426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db3638ab98488dd6cc9bc75cf50e96447a38da4', '172.105.247.100', 1666033426, '__ci_last_regenerate|i:1666033426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ded3be0c0a4a535fec1231e4266e8e350542d3ed', '172.105.247.100', 1666033427, '__ci_last_regenerate|i:1666033427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2667dea04a76b03ff306f00fd60d47ae0d1fdd', '172.105.247.100', 1666033427, '__ci_last_regenerate|i:1666033427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21cdf3f878ed785e0da9236892db2ee211bf7c45', '172.105.247.100', 1666033427, '__ci_last_regenerate|i:1666033427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee58da9cb9cb3fc64f1896ff7f66af4c6d2d859', '172.105.247.100', 1666033427, '__ci_last_regenerate|i:1666033427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13547ba998ecc721e4c5e0143311459bf654830', '172.105.247.100', 1666033428, '__ci_last_regenerate|i:1666033428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0088ca9b4f8daaf10a3c66477d0516a003c12a', '172.105.247.100', 1666033428, '__ci_last_regenerate|i:1666033428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb13dd8b690a47383be09cef2399dd93e611c7c2', '172.105.247.100', 1666033428, '__ci_last_regenerate|i:1666033428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639aa498d97f23a82abea2caf098cde730e81604', '172.105.247.100', 1666033428, '__ci_last_regenerate|i:1666033428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25eb3c95ef0a1d67a0a79b50022a27cb945e1dd7', '172.105.247.100', 1666040624, '__ci_last_regenerate|i:1666040624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d8246359cad3a8369d53c8a18fd8e982d6ce109', '172.105.247.100', 1666040625, '__ci_last_regenerate|i:1666040625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c2962531640c4be65dc5c46bdb1c5240a924fa', '172.105.247.100', 1666040625, '__ci_last_regenerate|i:1666040625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d295c107d638cdf0fc577de5c13dff72222e103', '172.105.247.100', 1666040625, '__ci_last_regenerate|i:1666040625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1a1cc79ba53c9ca5d30e9c41ec6248919bcf20', '172.105.247.100', 1666040626, '__ci_last_regenerate|i:1666040626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404ce605abc3e6209700f5aa1373f79afe71ff71', '172.105.247.100', 1666040626, '__ci_last_regenerate|i:1666040626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9e1a31dd0a9b92434d39cdcc235c404dc8df39', '172.105.247.100', 1666040626, '__ci_last_regenerate|i:1666040626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49b4db0dbb5be9fe2f226128de3ffdf86acc86b', '172.105.247.100', 1666040626, '__ci_last_regenerate|i:1666040626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650c0abac291c17b125f493f39620f6d4fc1d2d0', '172.105.247.100', 1666040627, '__ci_last_regenerate|i:1666040627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd7baf6dfde7a690be35539898f2e9cbee5ced4', '172.105.247.100', 1666040627, '__ci_last_regenerate|i:1666040627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28cea2541df686fbab64ce75d0e2d5db73d0f42b', '172.105.247.100', 1666040628, '__ci_last_regenerate|i:1666040628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b12d367b037dd62701811bc8a3d5b43f0b61acf', '172.105.247.100', 1666040628, '__ci_last_regenerate|i:1666040628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a8952cbc06e67f72a94a08f1bacf09139215c0', '172.105.247.100', 1666040628, '__ci_last_regenerate|i:1666040628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0965664b7cf8324cf1f7955b8cf4b3f5f0b3a87', '172.105.247.100', 1666040628, '__ci_last_regenerate|i:1666040628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312aeb7cfff1f9d410654f43758dc9f397837791', '172.105.247.100', 1666040629, '__ci_last_regenerate|i:1666040629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6182db3ecbfb9a8562a85d5ee31b52fd0c88ae74', '172.105.247.100', 1666040629, '__ci_last_regenerate|i:1666040629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e223dbb689e36d1316603d809f471a7c131dd25', '172.105.247.100', 1666047800, '__ci_last_regenerate|i:1666047800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68c5cb70fbfec69b3a436741aff627db7147704', '172.105.247.100', 1666047802, '__ci_last_regenerate|i:1666047802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a1fa5d02d1a4c7e6b005633cb40a54ec1a5db7', '172.105.247.100', 1666047803, '__ci_last_regenerate|i:1666047803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff2bcebd8edfebe850d1d082fda1c4df9e8a203', '172.105.247.100', 1666047803, '__ci_last_regenerate|i:1666047803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946d7756baea02f96d9c823cd604eb5e11c85fd5', '172.105.247.100', 1666047803, '__ci_last_regenerate|i:1666047803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39367fa4e3bfd515128827caeb76daf92d912b33', '172.105.247.100', 1666047803, '__ci_last_regenerate|i:1666047803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756d4b03cf767828e3fb71fde2185450d072bcf2', '172.105.247.100', 1666047803, '__ci_last_regenerate|i:1666047803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5df5ce3950be155d6eee5d3f3ef043cf10a138b', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264626f3d15a26bf2bbd9aaa38bfd5b5410683c9', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00aea31477a36fb58dab95dddab3c58705d3fd4f', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b6a12ac7d8ede1de71ab5400e226779ba475ef', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6380162934267b55a5d86e04534f0ead90f5186e', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df0879e050686183a4da186a5d9f4c6fae24d8d', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eec979af5bbe43e9b86a64231f82630eba4957b', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae033b70900c7efeb00b7e6cd4d7941ed725f81', '172.105.247.100', 1666047804, '__ci_last_regenerate|i:1666047804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a395a7bd3469cd3e3151ebfb6d300800a2108032', '172.105.247.100', 1666047805, '__ci_last_regenerate|i:1666047805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2622de7f261baea5441c339d5580e04703d4c8', '35.89.111.155', 1666050829, '__ci_last_regenerate|i:1666050829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c737960e348c5748ed25848711b3a8ef1d458c19', '35.89.111.155', 1666050829, '__ci_last_regenerate|i:1666050829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7519fc55178e1da5e9b3bdc05dfe3e0ec158e7e9', '34.136.249.27', 1666053936, '__ci_last_regenerate|i:1666053936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f38eb079e9f379b37fa58511fe92fcbb95f7e4', '34.136.249.27', 1666053937, '__ci_last_regenerate|i:1666053937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41232d6ec1f4675e21c571bc70a48955fabfb628', '34.136.249.27', 1666053937, '__ci_last_regenerate|i:1666053937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181f3ef91ab4275ffae1e13ebadd6a4492da5ab0', '34.136.249.27', 1666053937, '__ci_last_regenerate|i:1666053937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205d7ec531295210479870967390faf3f0c13ed9', '34.136.249.27', 1666053939, '__ci_last_regenerate|i:1666053939;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e45da0e80a048798280461648ba46fa3ff0c592', '34.136.249.27', 1666053939, '__ci_last_regenerate|i:1666053939;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f404bb13b49b810ff164290a9705c39ef67b731', '34.136.249.27', 1666054223, '__ci_last_regenerate|i:1666054223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d62fc8088fbe5f6a4882b27cc9227cff6bd6ed', '34.136.249.27', 1666054223, '__ci_last_regenerate|i:1666054223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d628f187e0b2e749c802d84c8cfe7dff5fb1c485', '34.136.249.27', 1666054223, '__ci_last_regenerate|i:1666054223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be9b873c6e26ecf1796bd8315e562c2a0224b1f', '34.136.249.27', 1666054223, '__ci_last_regenerate|i:1666054223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab4eddfe3931226a5eb9da6a6507ffa6651320e', '172.105.247.100', 1666055024, '__ci_last_regenerate|i:1666055024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbe5a900180d2f6a80479832c7454142a2a3f8f', '172.105.247.100', 1666055024, '__ci_last_regenerate|i:1666055024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff0e06a4b1d34b76d75307d60bd286ce21e6461', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06bd4c50ff5bf460d209cf5daa3ad8e433b1d1b5', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03fab0e1884001233aaf477448149b9c126fa6d6', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb585a930977c64c739a262d302acad362b4e0f9', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc3aaa33cdbdc1fdd80021e101b620e30f71c45', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7497b1e33bfa0073fc0ebc7dd506b2f61583bea4', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3833f9f71bf57300dc16ec0768554bb30b79bda8', '172.105.247.100', 1666055025, '__ci_last_regenerate|i:1666055025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f34d0740e1acfd16e7b513ffda0b066e3d534345', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4858a7d4860f1165a590635fe2e6d851b33a4709', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbdd6d007763207d5a9a995dac8bb74bd128746', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb45fd747f20aa4c7b72991ba9e5e1628ecda8c', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255707bb4aecf827595d8bf49d3eb322ce8c9492', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d303208330fb9d6c558a9f2b46eff7f5f73162', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5f66818b73302d57f7e0837a1731597069b5dd', '172.105.247.100', 1666055026, '__ci_last_regenerate|i:1666055026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f6890bf8bb52d6480b1195edaebd9ccf13a7fe0', '172.105.247.100', 1666062222, '__ci_last_regenerate|i:1666062222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b817eba7a471fbf705befd17f002c0bbae006622', '172.105.247.100', 1666062223, '__ci_last_regenerate|i:1666062222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e8622160020a7ac5ceccecdfb967b6f7cf8288', '172.105.247.100', 1666062223, '__ci_last_regenerate|i:1666062223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb4a8ad38c401195fc820c8aad770de3a860f62', '172.105.247.100', 1666062223, '__ci_last_regenerate|i:1666062223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad664af2c522e5af5193dec1a5c9ce5040f0a6e', '172.105.247.100', 1666062223, '__ci_last_regenerate|i:1666062223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d684fe3c57df1cf8e7a6b66df660382558559ad', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5211cff552d805ba964c5a609c63e79084790a68', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a4e37a7327f1a1e7c913f6c6fcfd1d244623da', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbca1daa9d8fdcdcfcc9d6a039ad5a15dfbc7f18', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f5f53030774aabe473efafd2d48f7e915e99692', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d149aea5b06d90ab97746ec3952b27a02dc782e2', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d6829a5c08e074ebf6396dccf7b4502963a309', '172.105.247.100', 1666062224, '__ci_last_regenerate|i:1666062224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c739f03592de9c0da67ee6d291c3128cfc650714', '172.105.247.100', 1666062225, '__ci_last_regenerate|i:1666062225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('026ad1ffe57976624012c570f11e7d8855143da5', '172.105.247.100', 1666062225, '__ci_last_regenerate|i:1666062225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b02916153557f5024d02ed682ff17dd4208932f', '172.105.247.100', 1666062225, '__ci_last_regenerate|i:1666062225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c7b35ed498a15572028074277983682db841ef', '172.105.247.100', 1666062226, '__ci_last_regenerate|i:1666062225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5febfd844cc8bcf358bc5d76d474098c25a0b0', '176.113.42.129', 1666068407, '__ci_last_regenerate|i:1666068407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7b914102335105d87db8502ce6d185bc369775', '176.53.220.163', 1666068408, '__ci_last_regenerate|i:1666068408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311da012d138a2c6931cfdaaf8af8544a6fdd4a6', '89.104.101.150', 1666068409, '__ci_last_regenerate|i:1666068409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521d8fb6b413f80501c9333be1ca372d49b81062', '172.105.247.100', 1666069401, '__ci_last_regenerate|i:1666069401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8a3f3f4ec7617779c2b449eb8ec8c4b4148d11', '172.105.247.100', 1666069401, '__ci_last_regenerate|i:1666069401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ce02c5f28241f74371ac2782d472cfacdebc9f', '172.105.247.100', 1666069402, '__ci_last_regenerate|i:1666069402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10557f8dfb8652f5a7290399bc51cc55130a58ea', '172.105.247.100', 1666069402, '__ci_last_regenerate|i:1666069402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd62a2471e7261cec4929a5da10dcb735db35d48', '172.105.247.100', 1666069402, '__ci_last_regenerate|i:1666069402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b867424e62d79a4e10a5199bb001ea48454ade', '172.105.247.100', 1666069403, '__ci_last_regenerate|i:1666069403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2069fafbe6141aa797e4e1f1ef3f9725fd70f97a', '172.105.247.100', 1666069403, '__ci_last_regenerate|i:1666069403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fafda30848fd0cdbbe1324abb8d483e6903631', '172.105.247.100', 1666069403, '__ci_last_regenerate|i:1666069403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4c1c51d437637d2e5644dda8f5a7fdf2aef988', '172.105.247.100', 1666069403, '__ci_last_regenerate|i:1666069403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed464ea1ed118625422924270f487b83dd6f446c', '172.105.247.100', 1666069404, '__ci_last_regenerate|i:1666069404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb488b5fdbc5d64e206640199deca3c992c8d094', '172.105.247.100', 1666069404, '__ci_last_regenerate|i:1666069404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe69a5d82d2b7a048c48f845e3d854fd5ec6d679', '172.105.247.100', 1666069405, '__ci_last_regenerate|i:1666069404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade3bc0849777fa233b6dde23003652313c45028', '172.105.247.100', 1666069405, '__ci_last_regenerate|i:1666069405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f709df51c0bfcc8f3bda1e0835fadf5391840e', '172.105.247.100', 1666069405, '__ci_last_regenerate|i:1666069405;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('988b93bae795c64d79d7b06de936e861f2234ed5', '172.105.247.100', 1666069405, '__ci_last_regenerate|i:1666069405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ecc7257e21763b918de2d7a7a31dcce63de75bb', '172.105.247.100', 1666069406, '__ci_last_regenerate|i:1666069406;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b1ec404b2f7dd3a75367a653759f90c19a54297', '37.111.216.163', 1666070240, '__ci_last_regenerate|i:1666070240;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665982540\";last_ip|s:13:\"37.111.217.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9bc9943d2551f1e109a2186e3e03d5b2430a8b1', '37.111.216.163', 1666070786, '__ci_last_regenerate|i:1666070786;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665982540\";last_ip|s:13:\"37.111.217.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1666070752;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea206212c99812946900383b2c41a035dd7af5a', '89.104.100.80', 1666070646, '__ci_last_regenerate|i:1666070646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a303b31af6028c738ea400aa958dec92c6fcb347', '89.104.111.43', 1666070648, '__ci_last_regenerate|i:1666070648;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339606045e49ba19ede46147faa4b09bbf7beffe', '89.104.100.80', 1666070650, '__ci_last_regenerate|i:1666070650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010a729f93a9f60f77e70b7b0ffe7dc5790b3ade', '45.90.62.77', 1666070652, '__ci_last_regenerate|i:1666070652;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5c31847b7176ef640ad1ae4918a8b7e104bdb8', '37.111.216.163', 1666072461, '__ci_last_regenerate|i:1666072461;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665982540\";last_ip|s:13:\"37.111.217.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1666070901;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230ef1d3bb50299c4890d71c4d49b8214c58d90c', '45.120.39.142', 1666072462, '__ci_last_regenerate|i:1666072461;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1665982540\";last_ip|s:13:\"37.111.217.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1666072461;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f28fcfd5564e0350b60d11f50adf94a90f259b7', '172.105.247.100', 1666076613, '__ci_last_regenerate|i:1666076613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d449bb0d624c2e3d773a624791e42b6933b7d465', '172.105.247.100', 1666076613, '__ci_last_regenerate|i:1666076613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a134673f53333d5abeaf3f12170bf960642ee8b1', '172.105.247.100', 1666076613, '__ci_last_regenerate|i:1666076613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20266828fa578e6ad1ddee4cfc3acc24bc36dbb9', '172.105.247.100', 1666076613, '__ci_last_regenerate|i:1666076613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c6042d1285bf347f0225794c0da546c76f1baa', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ec6dfb9f954254c50bb8176db967cb3a858e11', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d55674fa450fecf2304f40628ef6ba2a340b8d', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493da88cbe3999b007da3e6ddfbc36f36ba8f098', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d95908becd6df8dccd796d9711fdefe9faa4ea', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3adc2d079c0a50f2f8d64b0b4f7012937bcad15', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ce632e6855c296fc77923726dd9c0d7e52b03b', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('347fb964ae272e169646ed5d002a43cc31699c23', '172.105.247.100', 1666076614, '__ci_last_regenerate|i:1666076614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f2778aad804277054aea2a373398d01675725b', '172.105.247.100', 1666076615, '__ci_last_regenerate|i:1666076615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8f5fff1e8845d5866c6c4924cec9a07f701b3f', '172.105.247.100', 1666076615, '__ci_last_regenerate|i:1666076615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5acac43e40eedc568312868b1fcc8da618bdc3a', '172.105.247.100', 1666076615, '__ci_last_regenerate|i:1666076615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bcd1189a90b2be4e3d67062ae494f14dbdd1ac0', '172.105.247.100', 1666076616, '__ci_last_regenerate|i:1666076615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e51289698aa0515d2f504a83187d145b0b3d0f', '45.120.39.142', 1666086119, '__ci_last_regenerate|i:1666086119;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666085384;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47807e90db702187df2d6dfaebf9cf37279b1586', '51.255.62.2', 1666082755, '__ci_last_regenerate|i:1666082755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe6e7f0cc9fcea42d5df45b233e685e343f4493', '51.255.62.14', 1666082755, '__ci_last_regenerate|i:1666082755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c6f2d9d91c5a38332db91f281a81bdae3ee614', '51.255.62.8', 1666082758, '__ci_last_regenerate|i:1666082758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba1f521a6c5b3332fc110569355f1189b593340c', '51.255.62.13', 1666082758, '__ci_last_regenerate|i:1666082758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c85b618bd538bf1344f65660f5f4a0a4b00016', '172.105.247.100', 1666084617, '__ci_last_regenerate|i:1666084617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8385ced31d28061a104ed14097d8201c0fef3c37', '172.105.247.100', 1666084618, '__ci_last_regenerate|i:1666084618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03bf105195d90cb698250812a54bb4b262472b61', '172.105.247.100', 1666084618, '__ci_last_regenerate|i:1666084618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be048c2352d1415250443dd8a0ebbfb877ac67c', '172.105.247.100', 1666084618, '__ci_last_regenerate|i:1666084618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf4258dc01fb1232ca998688d80c81d8e1cbeac', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a641cfa7b389136a1eef7704bb5060d11d8f01', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca84afe702c90e715d6f5af1d63645cfc79be2ed', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d7c87a2b912372a5a2930f6d0c9c51d3af796c', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f51b4c4b94635f501b7a7d7e2a09bf4e246e54a', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cd4664b3a3a997847f70939d9100e1869f29585', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4258b0868fd872a35f5ee4cb6cc9173cf61a4ebd', '172.105.247.100', 1666084619, '__ci_last_regenerate|i:1666084619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef6aa3d2558161764988fc726852860cedc3726', '172.105.247.100', 1666084620, '__ci_last_regenerate|i:1666084619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1bed5218e7a21401887427ce9efb8a27ad852a', '172.105.247.100', 1666084620, '__ci_last_regenerate|i:1666084620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9969526e21aa1f2cc45fd98069eb7082cab969a', '172.105.247.100', 1666084620, '__ci_last_regenerate|i:1666084620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61cb16816e2cc730ed0e0df0198fca338e526487', '172.105.247.100', 1666084620, '__ci_last_regenerate|i:1666084620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16023b14d7bac96a480ab3f26b2681d55bff0ff', '172.105.247.100', 1666084620, '__ci_last_regenerate|i:1666084620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee998dde56045d99f1302d8e44bdcb78c25cd107', '45.120.39.142', 1666085265, '__ci_last_regenerate|i:1666085265;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666085265;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6ae4a8846f0ae77cbb6c461363029a7f00b989', '45.120.39.142', 1666087196, '__ci_last_regenerate|i:1666087196;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666087173;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b466ff4a22b1f7197d62f8eaf0c8cee6cf4d63', '51.254.49.97', 1666086909, '__ci_last_regenerate|i:1666086909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20fa319c3e3533fb2e95aab3622d57166dbfbba', '51.254.49.105', 1666086911, '__ci_last_regenerate|i:1666086911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a22393f6e195091f65a57b7094bed2da24b6dab0', '188.165.87.106', 1666087079, '__ci_last_regenerate|i:1666087079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75dc348682f13b23a13dc90e12201af4ce317bf', '45.120.39.142', 1666087575, '__ci_last_regenerate|i:1666087575;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666087381;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ded6b0c3eb784bbaf8b067ebd66506ec951440b7', '45.120.39.142', 1666090791, '__ci_last_regenerate|i:1666090791;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666087580;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebafa552056023a5f5adde1aac86743e28089cc8', '172.105.247.100', 1666088414, '__ci_last_regenerate|i:1666088414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34821fce0a0a87fad0381477864666bb46a37dfa', '172.105.247.100', 1666088414, '__ci_last_regenerate|i:1666088414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5c45b755e063235a9a9ddd724a3e2715733185', '172.105.247.100', 1666088415, '__ci_last_regenerate|i:1666088415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37fee09d87ebdc6d91cb84e43df8ee5f122cb7bb', '172.105.247.100', 1666088415, '__ci_last_regenerate|i:1666088415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53720429bfdf289603903888ae3c75a3cc55550a', '172.105.247.100', 1666088415, '__ci_last_regenerate|i:1666088415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38630ab65898d262fe29d81c4d4d434f1dedee32', '172.105.247.100', 1666088415, '__ci_last_regenerate|i:1666088415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa5f9d1a3eafafdca24c219240771f8f8192059', '172.105.247.100', 1666088416, '__ci_last_regenerate|i:1666088416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ce8bf0982b8b1e156c33817681a77a62ed0784', '172.105.247.100', 1666088416, '__ci_last_regenerate|i:1666088416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1a954805db878d276a2a5acbbcd5abdd9e2527', '172.105.247.100', 1666088416, '__ci_last_regenerate|i:1666088416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f0f46f92796a27d46bb0700ca2b7cb4b7ef455', '172.105.247.100', 1666088416, '__ci_last_regenerate|i:1666088416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb7a3c170bfa95cc085b3aa246a7c586e91342d', '172.105.247.100', 1666088416, '__ci_last_regenerate|i:1666088416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ab5986f51a24f83e754ad3ca39f03d14edda2a', '172.105.247.100', 1666088417, '__ci_last_regenerate|i:1666088417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a222eb854341c55a751b77e17e373188bac2e24', '172.105.247.100', 1666088417, '__ci_last_regenerate|i:1666088417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f415f63ebc9668607b13dc19c9344bd7662ca2c5', '172.105.247.100', 1666088417, '__ci_last_regenerate|i:1666088417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b7126c1a15611f6f187bb694bc9e78cb9301b2', '172.105.247.100', 1666088418, '__ci_last_regenerate|i:1666088418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7330ae6d8cf5e5024a60dcbebc9ff4fd0c34828', '172.105.247.100', 1666088418, '__ci_last_regenerate|i:1666088418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e1b4f3427c7c96a16e0ab2b7207ed20c9dba5b', '37.111.216.163', 1666093826, '__ci_last_regenerate|i:1666093826;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666093501;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcb353325a41d39d7889b924959214380cdb54bf', '172.105.247.100', 1666092608, '__ci_last_regenerate|i:1666092608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e7a90c5a675c283e6165cb08592de691cbe74b', '172.105.247.100', 1666092608, '__ci_last_regenerate|i:1666092608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dffbe11a7cea478316320c92c274d87ca08b673', '172.105.247.100', 1666092608, '__ci_last_regenerate|i:1666092608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5fd2a03c31a2d4cc8d19ebd077d49a46deacb04', '172.105.247.100', 1666092609, '__ci_last_regenerate|i:1666092608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7daa7cda3ce1b0fb2caf1c05b9325a4940ea0356', '172.105.247.100', 1666092609, '__ci_last_regenerate|i:1666092609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b71cd6715c5b1c8e38005b539894b98124f3b11', '172.105.247.100', 1666092609, '__ci_last_regenerate|i:1666092609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22f58dfe58b3e58be052e2b7890517558a4d159', '172.105.247.100', 1666092609, '__ci_last_regenerate|i:1666092609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c218109298470f69dff43c79e8ce28380ca172', '172.105.247.100', 1666092610, '__ci_last_regenerate|i:1666092610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f11c5bb0181518740c9e255ade1bd8f0d9e39765', '172.105.247.100', 1666092610, '__ci_last_regenerate|i:1666092610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69dd7017e1671f435d1c119c8b7f27a41557d4a3', '172.105.247.100', 1666092610, '__ci_last_regenerate|i:1666092610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a61c43416ae73d987d9129bad48f6383697442d', '172.105.247.100', 1666092610, '__ci_last_regenerate|i:1666092610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ef1773a3468318495bea10f7edcd78043d7275', '172.105.247.100', 1666092610, '__ci_last_regenerate|i:1666092610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fc2f3fdbc9c6fc652e3bdea61a9bcc79c34378', '172.105.247.100', 1666092611, '__ci_last_regenerate|i:1666092611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c44cabbc05d42f2c4200a70e260fe871fee548', '172.105.247.100', 1666092611, '__ci_last_regenerate|i:1666092611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef56f9bbd08d4318c768056085d9a0ab9dbb883', '172.105.247.100', 1666092611, '__ci_last_regenerate|i:1666092611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ec203b1615fa366e87505e2aa261352213c54e', '172.105.247.100', 1666092612, '__ci_last_regenerate|i:1666092611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d35daf697b6b89efb5dcf0ad09852b660845ff', '37.111.216.163', 1666094798, '__ci_last_regenerate|i:1666094798;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666094037;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e737b8b20bb93b154e807e64121342972620470', '37.111.216.163', 1666097339, '__ci_last_regenerate|i:1666097339;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666094812;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('365ebe7231f7196a7c1a2a2ea60125f715bff4e2', '172.105.247.100', 1666096807, '__ci_last_regenerate|i:1666096807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7961ec2566b2a7aa61709fd9c4053b456643d9a5', '172.105.247.100', 1666096808, '__ci_last_regenerate|i:1666096807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97dd5cc65d7fd8ecb9d0b38924f5f72102194763', '172.105.247.100', 1666096808, '__ci_last_regenerate|i:1666096808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1eab70092b540f3cd1720708022c414cee1c702', '172.105.247.100', 1666096808, '__ci_last_regenerate|i:1666096808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0d0e96b7825b54ab7c60c078eb5096b4a5aa9e', '172.105.247.100', 1666096808, '__ci_last_regenerate|i:1666096808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d30218ba32174bdc392eea7701a1639f6d2d66c', '172.105.247.100', 1666096808, '__ci_last_regenerate|i:1666096808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d2345035e39022558b97de19540d9dbb40ce49', '172.105.247.100', 1666096808, '__ci_last_regenerate|i:1666096808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3747cd39f1f9c3be814bcdc77b0f2d30c226dc', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e6b8fdf14d3ca26fad5f05dcf2ef35224d64da', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ef1017cdc0f20b1f790bc858f80d633aa650ca', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44b338be6ade803f325c4e31581c20e5b751d3b', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b566d9496909f0523baac63ef010ea44a9c8ff1', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977a56441e1b19101952c7436aeff04a71298bfe', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2daefd1da17c74ff8a4bd23941419fed3c53dc8f', '172.105.247.100', 1666096809, '__ci_last_regenerate|i:1666096809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541e60b1b4c6c153ebac9d6adad5892da8d8ccc1', '172.105.247.100', 1666096810, '__ci_last_regenerate|i:1666096810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c607a2d73af98bdc689d248dc3d51ec5aead3db', '172.105.247.100', 1666096810, '__ci_last_regenerate|i:1666096810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d45d2559f48ccdfa99b3dba87ae617c5e7cc01', '37.111.216.163', 1666097886, '__ci_last_regenerate|i:1666097886;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666097708;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e2015bdc96221de011f0fac401576593e0907d5', '37.111.216.163', 1666099109, '__ci_last_regenerate|i:1666099109;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666097887;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0183808a4578fc6b5de961d3089a20b704b2a880', '37.111.216.163', 1666101950, '__ci_last_regenerate|i:1666101950;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666101940;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ba91334c7d73698c6051854a966b7111ae19b4', '172.105.247.100', 1666101007, '__ci_last_regenerate|i:1666101007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae3e85718afb6d0f348fbfda8554aeb517de3e3', '172.105.247.100', 1666101008, '__ci_last_regenerate|i:1666101008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba459d95fd90b968dab084217fbb8fb3151777fe', '172.105.247.100', 1666101010, '__ci_last_regenerate|i:1666101010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30443c1336e90a6c0d31e4418bc83d5c419e808c', '172.105.247.100', 1666101010, '__ci_last_regenerate|i:1666101010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0ededfaae04cb35b3d4155fe388c2d9c0cc3ef', '172.105.247.100', 1666101010, '__ci_last_regenerate|i:1666101010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed4d8905ad5ab10f6e6d6612c653f61c15d2585', '172.105.247.100', 1666101010, '__ci_last_regenerate|i:1666101010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000d8331a431827b5aa984452898b141b030f9d2', '172.105.247.100', 1666101010, '__ci_last_regenerate|i:1666101010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a12db85b3b13162883ebb44603cfdda3a89e676', '172.105.247.100', 1666101010, '__ci_last_regenerate|i:1666101010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7581f38f64ff30c17bdbc40141fed53f0c722fd', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea60848db1a0acff005ccbaadd3d4c929da369ab', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5346135a3dbdad2441cae5e4ffc6788fdfa8a3da', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b7875414c036bbcaa784a30d00cbfcd88d4acc', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a583fc7f9bb57a4b017664f0834bfe44e77ec3', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e634f33dc635054c180c9fbbb54116141bc09e6', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b91b658c29cc5254186cbeb7cb6ed4f78bb9ae3', '172.105.247.100', 1666101011, '__ci_last_regenerate|i:1666101011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49917c89c57ad17d459a56a1c3e03a89f5174807', '172.105.247.100', 1666101012, '__ci_last_regenerate|i:1666101011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7efc92904ff1fe21f520cfcafb19cb2a866948b', '37.111.216.163', 1666102547, '__ci_last_regenerate|i:1666102547;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666101951;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc9f43daa2f2e6bc3873822e4228ad70639499f', '37.111.216.163', 1666103936, '__ci_last_regenerate|i:1666103936;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666103928;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ab719538b9296508dee69e3e780ed8b4bfa7e1', '37.111.216.163', 1666103431, '__ci_last_regenerate|i:1666103431;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666103431;register_id|s:3:\"221\";cash_in_hand|s:9:\"5860.0000\";register_open_time|s:19:\"2022-10-17 20:25:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700dd732db3a19ceda3cf2dc6f76c46908a32dd0', '37.111.216.163', 1666103962, '__ci_last_regenerate|i:1666103936;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666069758\";last_ip|s:14:\"37.111.216.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666103962;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4127fa3b5a8feeb3232ade5f0b0043c96bc24d02', '172.105.247.100', 1666105208, '__ci_last_regenerate|i:1666105208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2a67b08fd85b9817709eda384386af72078665', '172.105.247.100', 1666105208, '__ci_last_regenerate|i:1666105208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac15c5bb09a06fdea8a0cf2d4ca189d90dd420b', '172.105.247.100', 1666105209, '__ci_last_regenerate|i:1666105208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a6520bca915e68503992d6bc6703c4c0320c32', '172.105.247.100', 1666105209, '__ci_last_regenerate|i:1666105209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b258533674fded8da368f5dd65bb8f780fa654e7', '172.105.247.100', 1666105209, '__ci_last_regenerate|i:1666105209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b3165e5173cc3f2849ac1562de714318add783', '172.105.247.100', 1666105209, '__ci_last_regenerate|i:1666105209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321baf5162bb6c3d79bcc6ec93c9bb586ec7284e', '172.105.247.100', 1666105210, '__ci_last_regenerate|i:1666105210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec99ecba118c1fd9388d0fa52958502c418f6720', '172.105.247.100', 1666105210, '__ci_last_regenerate|i:1666105210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d1ff7c12b14c03aede255ee3c16d2898ab0ef4', '172.105.247.100', 1666105210, '__ci_last_regenerate|i:1666105210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('673b0acd93f5e341c45a9e054910074762273a62', '172.105.247.100', 1666105211, '__ci_last_regenerate|i:1666105211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05ee05859b33c4519a4155e3c4d565fbe3cb96b', '172.105.247.100', 1666105211, '__ci_last_regenerate|i:1666105211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfb6cf7aa0832038adc233fb2c119f7c08d5d3c', '172.105.247.100', 1666105212, '__ci_last_regenerate|i:1666105211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce139730a288193d43096b0236691181cd9cc3c1', '172.105.247.100', 1666105212, '__ci_last_regenerate|i:1666105212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7497b6c2ec3d09b000bbc1faae1cc95781a09f5a', '172.105.247.100', 1666105212, '__ci_last_regenerate|i:1666105212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64a541bc7934599486d538d7a6655810e7aa4c2d', '172.105.247.100', 1666105212, '__ci_last_regenerate|i:1666105212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c1f5195c2f97274776bd6dec54c795b46aadb7', '172.105.247.100', 1666105213, '__ci_last_regenerate|i:1666105213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1d529039e4af5e0882361421d9fe887c7e08c8', '198.235.24.166', 1666108675, '__ci_last_regenerate|i:1666108675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc8c7e7c703572f45e0e7b332cc80f1ff85ccf2', '172.105.247.100', 1666109409, '__ci_last_regenerate|i:1666109409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7a2f6a9711307270990c8c9eee6ced6d630ff0', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3154771d36ae4b0ce09cabce4bc58dd624e44acb', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc56e4935ffe67f9d3949c327b44204e00a5dfd', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b4cce9a9cdb9fa8d16147bf28ef37fa6bf83a5', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3f014ed170fd32ce3731ded616796bb76b0ef80', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd65e6ce8f2fd30ef89a7204b0825324e201355', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493b9e13537c774ef6f7f06fb2140a0d3714c693', '172.105.247.100', 1666109410, '__ci_last_regenerate|i:1666109410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6616d96c75a1bb4aa6d4f3840eb4757eee746a6f', '172.105.247.100', 1666109411, '__ci_last_regenerate|i:1666109411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9befe3cfbb0a28572b16eb594b949b9d7cd7b98a', '172.105.247.100', 1666109411, '__ci_last_regenerate|i:1666109411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35cce733b8ae8d8f56b39cc69226b6a598c6227', '172.105.247.100', 1666109411, '__ci_last_regenerate|i:1666109411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7015730532c60c5af9bf289f835de02b8647df4a', '172.105.247.100', 1666109411, '__ci_last_regenerate|i:1666109411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3903437a6e503c8e7a769c66937a4341aa716685', '172.105.247.100', 1666109411, '__ci_last_regenerate|i:1666109411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('695ce0a1aaac474e06a767a4b8f9c834cf857867', '172.105.247.100', 1666109411, '__ci_last_regenerate|i:1666109411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ea50aae727ddd50dc21056ce5652b4958a25e4', '172.105.247.100', 1666109412, '__ci_last_regenerate|i:1666109412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f349bfeb0d3f68121ce002527f8c4485552596b2', '172.105.247.100', 1666109412, '__ci_last_regenerate|i:1666109412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307d63c592846802f9ccafdd79cbb6234ad268a3', '172.105.247.100', 1666113609, '__ci_last_regenerate|i:1666113609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da85f6dc175994bc0b6c4fcd0c797a27af5f5135', '172.105.247.100', 1666113610, '__ci_last_regenerate|i:1666113610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc1647fefa92de7784ffd5ed041015093300600c', '172.105.247.100', 1666113612, '__ci_last_regenerate|i:1666113612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67279001dcbf4a42633827d43203836287598ea', '172.105.247.100', 1666113612, '__ci_last_regenerate|i:1666113612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3203efb90bc642ab00b02f458b6b30758936ea4c', '172.105.247.100', 1666113612, '__ci_last_regenerate|i:1666113612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93ea4babfd45659a3fdc19bd3c5a418e2242480', '172.105.247.100', 1666113612, '__ci_last_regenerate|i:1666113612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc73630cb8509a5c65218b11a0c2b5f37eecc463', '172.105.247.100', 1666113613, '__ci_last_regenerate|i:1666113613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae9dae11bbd73277396eddb22b43a2317baa7b8', '172.105.247.100', 1666113613, '__ci_last_regenerate|i:1666113613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc71928bbfa85c68f6d3d078ac07b2d7a777cd2b', '172.105.247.100', 1666113613, '__ci_last_regenerate|i:1666113613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01859cb5b5ce8479f0953812f48b8cce6657b382', '172.105.247.100', 1666113613, '__ci_last_regenerate|i:1666113613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2bb51ba17e86a34b02ee13930dfef776fae03e', '172.105.247.100', 1666113613, '__ci_last_regenerate|i:1666113613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e570a0583386dfcbe545165379864ac45eab8dd', '172.105.247.100', 1666113613, '__ci_last_regenerate|i:1666113613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2c134539632987a8aec65be4191a27ec0c9adb', '172.105.247.100', 1666113614, '__ci_last_regenerate|i:1666113614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e436c53b22270cbe638cdbaabbcf03adca4ed9', '172.105.247.100', 1666113614, '__ci_last_regenerate|i:1666113614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b982495f20c5449a6c4e6575b8c6006d332a496', '172.105.247.100', 1666113614, '__ci_last_regenerate|i:1666113614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce43e21518bc840e4da6f6898a593c64f730b79', '172.105.247.100', 1666113614, '__ci_last_regenerate|i:1666113614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90abab9b0e3a9d587015e3fe7f7ce177241e153', '172.105.247.100', 1666117808, '__ci_last_regenerate|i:1666117808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e05ecedb47af76acecbb025a38283928ba05243', '172.105.247.100', 1666117808, '__ci_last_regenerate|i:1666117808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ced0fed966ea4fa1934748be6233eb55f37329', '172.105.247.100', 1666117808, '__ci_last_regenerate|i:1666117808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82b4213087c88772ddffb12678d989d0ab5df72', '172.105.247.100', 1666117809, '__ci_last_regenerate|i:1666117809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3248b56406d5784a65f828fcb2c764b2922436e6', '172.105.247.100', 1666117809, '__ci_last_regenerate|i:1666117809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c241d844794a9425ad487796decbd54ee3ac0221', '172.105.247.100', 1666117809, '__ci_last_regenerate|i:1666117809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0981fb04b061f8ed19cd87bedc587828a7ec5a4', '172.105.247.100', 1666117810, '__ci_last_regenerate|i:1666117810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada1a4225004334723551dd092a8596d283f879d', '172.105.247.100', 1666117810, '__ci_last_regenerate|i:1666117810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebacbc561137a62eebb7756dedfa180db03a81c', '172.105.247.100', 1666117810, '__ci_last_regenerate|i:1666117810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d3c6f5b8f10ea3f9a5f441fccc5c0b2565d403', '172.105.247.100', 1666117810, '__ci_last_regenerate|i:1666117810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ebca3776d821048135cdb8d5f1e345499368836', '172.105.247.100', 1666117810, '__ci_last_regenerate|i:1666117810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8bcc0e230fd70638327b21fdceb8f8d61e5994d', '172.105.247.100', 1666117811, '__ci_last_regenerate|i:1666117811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd3f8507ff6556041c0c2bd242971dd74fe712f', '172.105.247.100', 1666117811, '__ci_last_regenerate|i:1666117811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832e0641c518ebe101c901d86907116280b8e4fe', '172.105.247.100', 1666117811, '__ci_last_regenerate|i:1666117811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d753ef4ec47d8439ad7dc31fd855ce6bf20c963b', '172.105.247.100', 1666117812, '__ci_last_regenerate|i:1666117812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89fb3b3de26cff149bc6ba4b537b809f91da6b27', '172.105.247.100', 1666117812, '__ci_last_regenerate|i:1666117812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30385f087ece300ceb03b5f93416631b910acb01', '172.105.247.100', 1666122007, '__ci_last_regenerate|i:1666122007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088a87b08fe61f09f163c68dfb0f6ce7c6efa9fd', '172.105.247.100', 1666122007, '__ci_last_regenerate|i:1666122007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e808468799a2eb4026944af858a0c55a2f8bd5e5', '172.105.247.100', 1666122007, '__ci_last_regenerate|i:1666122007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb5fb247e108a9a7e9ce4faa95ead358896fc0d', '172.105.247.100', 1666122007, '__ci_last_regenerate|i:1666122007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79cde022602726ab4ef3e88d06fa9b6a855747a3', '172.105.247.100', 1666122008, '__ci_last_regenerate|i:1666122008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c4608467bbbda8f9cb238a0caa7ac849e29195', '172.105.247.100', 1666122008, '__ci_last_regenerate|i:1666122008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1015c721edfe909d60a8c86a22dd336efcd3e2c0', '172.105.247.100', 1666122008, '__ci_last_regenerate|i:1666122008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f605687cfec74799341be9710d9c7b8c3e5c4d77', '172.105.247.100', 1666122009, '__ci_last_regenerate|i:1666122009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936ec0a8e26cdf6899ad42238108f676a47b6cd3', '172.105.247.100', 1666122009, '__ci_last_regenerate|i:1666122009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213e3ff3069819c7d336c8ed5bc01ec88b1a170a', '172.105.247.100', 1666122009, '__ci_last_regenerate|i:1666122009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6cd728eb3c2c2f188085d500284178fee517a39', '172.105.247.100', 1666122009, '__ci_last_regenerate|i:1666122009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16c0b803b08f15afbc4aefa673cd6d305c25f6c', '172.105.247.100', 1666122010, '__ci_last_regenerate|i:1666122010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6cee3032fa047bb0d18a849d3435934a5f2c7ea', '172.105.247.100', 1666122010, '__ci_last_regenerate|i:1666122010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febfa174b19ee1d6408193d1209fefd20e533364', '172.105.247.100', 1666122010, '__ci_last_regenerate|i:1666122010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d65f2d8dd1505a56d6ad0b57628974d2a4dacc66', '172.105.247.100', 1666122011, '__ci_last_regenerate|i:1666122011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75541e75bd5e2ace3d4587564863fdcbce8d75b7', '172.105.247.100', 1666122011, '__ci_last_regenerate|i:1666122011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a710ec2cf8cc7fae856fb2c941e86e299ab89baf', '172.105.247.100', 1666126207, '__ci_last_regenerate|i:1666126207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927a7f2408ab5a0da03776ef63b516f2e127e6e2', '172.105.247.100', 1666126207, '__ci_last_regenerate|i:1666126207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e61c3b0132c59b9fc5d3e8cfbbe0cd70e8b1e63', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6364d5af10fec74f93132618ae56922f416eac41', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd84698db25395c8bc9e407c21ea380b0a62715b', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f056db5c4c5768705f458b228b2e09c604463607', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc3839f272f66be1714e98fb75fe64c7a294f3a', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c86a9a86b3bd0d283c43f48f846af83336b161', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f434804386e41142bf13b40a323f86f1ae35c08', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8097ba70d4739447fced75853019f510fe42d3', '172.105.247.100', 1666126208, '__ci_last_regenerate|i:1666126208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8949e7b3880a53b1763812bb4b9992ac1af7e97d', '172.105.247.100', 1666126209, '__ci_last_regenerate|i:1666126209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdf0d99c865c9a7a242b2041ddcb7ed02ca70231', '172.105.247.100', 1666126209, '__ci_last_regenerate|i:1666126209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e79c8dd30dbdefcd379f759e0d1c17882fba63', '172.105.247.100', 1666126209, '__ci_last_regenerate|i:1666126209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4c6a2ad4a462ecf47ad244b6c9a3389683f709b', '172.105.247.100', 1666126209, '__ci_last_regenerate|i:1666126209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a905d57ee7d2cf73e1fa2c2d49f72f5530b02ae0', '172.105.247.100', 1666126209, '__ci_last_regenerate|i:1666126209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519ba87c9e9862952f6ca53439f1cb76433eadb7', '172.105.247.100', 1666126209, '__ci_last_regenerate|i:1666126209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ff45d5d6dac03802cb19fc8d3e38a6ab6b593f', '172.105.247.100', 1666130408, '__ci_last_regenerate|i:1666130408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f495fc2cad2283e42e301513712cdddaad77b132', '172.105.247.100', 1666130408, '__ci_last_regenerate|i:1666130408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22990439dce333a374867d4a8fe1479d04e8da5e', '172.105.247.100', 1666130408, '__ci_last_regenerate|i:1666130408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fde4e26385e3228f2992ea78659944150fe384b', '172.105.247.100', 1666130408, '__ci_last_regenerate|i:1666130408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b408f76e1d608e3c5f86a77f790ac7d9d40fc946', '172.105.247.100', 1666130409, '__ci_last_regenerate|i:1666130409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c34d0ff2a896297a7ec3b6c41537944753aa3e', '172.105.247.100', 1666130409, '__ci_last_regenerate|i:1666130409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b807f9e7f742b69f6f88fc4794f7371bef8429e4', '172.105.247.100', 1666130409, '__ci_last_regenerate|i:1666130409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc26ec0d80d3df6789a365b14c6a6a46ea2b0e0', '172.105.247.100', 1666130409, '__ci_last_regenerate|i:1666130409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ee02a672814a26f4d7966e33886522a92528cf', '172.105.247.100', 1666130409, '__ci_last_regenerate|i:1666130409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d138d215a6b826c770fc79772129c24afbc43ad', '172.105.247.100', 1666130409, '__ci_last_regenerate|i:1666130409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce2d5a60471b15e2dc2d68c4f6db7d2cb703824', '172.105.247.100', 1666130410, '__ci_last_regenerate|i:1666130409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27061e869a2229395313296dba3d6f6ef779b6a8', '172.105.247.100', 1666130410, '__ci_last_regenerate|i:1666130409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c0aedb1a8e3f4d5d35b78dc683daa63e479ca3', '172.105.247.100', 1666130410, '__ci_last_regenerate|i:1666130410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0663148c2228d12cd8d56e391bf729ac76f23138', '172.105.247.100', 1666130410, '__ci_last_regenerate|i:1666130410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73855d122d7ea8057f22def2154b42399c64c2c1', '172.105.247.100', 1666130410, '__ci_last_regenerate|i:1666130410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39575e818eec82dad7699f9d3d36dbfcc4231c9e', '172.105.247.100', 1666130410, '__ci_last_regenerate|i:1666130410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f884c35b261edd8f91e6632fa55efffe72572d27', '172.105.247.100', 1666134607, '__ci_last_regenerate|i:1666134607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e6f510ec503fbce1ca35c10f1c94f1713424ee', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879961732798c756ff4ef26842641f30a910964d', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe5ea1e252147effabd4420d7f925f28e6c9f3c', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722673562aebbc79fcc73873991db6e0a9744359', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34781629ebdad58b7aaef9473a3410898c440415', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4995c14fbab388a8f288f4e7d0e29c0a054b944', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe6a6a2b64fd051eaea0ef6eda117750bb282e5', '172.105.247.100', 1666134608, '__ci_last_regenerate|i:1666134608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e9d2ac6dc9e44c0adccf80fe201fc185f779b5', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3c881500870cbbaec261274839528915aa7eb6', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b0544be990d3be15210c60411656207e71a34d3', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72be87ee4c184a670e7273f8154ef33c2581d0f', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239a799349a25e739f689e145315a4fddb8156f1', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927b0da3989fb00b2d01c86bfce19aed6d506c03', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46d1c278a28f70f2dd204c63864d60ca587be0c', '172.105.247.100', 1666134609, '__ci_last_regenerate|i:1666134609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a3fc0c2b101cd07f4e7b34371399433e906d461', '172.105.247.100', 1666134610, '__ci_last_regenerate|i:1666134609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e5b1fe4992660cefba199537c647a606906160', '93.119.227.19', 1666135237, '__ci_last_regenerate|i:1666135237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2514c86a6bb5921c9b2d703ff9ab090a45ccc4de', '93.119.227.19', 1666135237, '__ci_last_regenerate|i:1666135237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a32864fed86430709168cf278ac95131367ead89', '93.119.227.19', 1666135238, '__ci_last_regenerate|i:1666135238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de91edce3e5d1a6d07f35710522fe1b93434335b', '93.119.227.19', 1666135238, '__ci_last_regenerate|i:1666135238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aeb5d7cad1c4dafbdc5249ae3ab0f4d198206f9', '172.105.247.100', 1666138807, '__ci_last_regenerate|i:1666138807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb14087180effa310d6cc8486283b4457c44d717', '172.105.247.100', 1666138809, '__ci_last_regenerate|i:1666138809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b1de901a039b257264baaae845d8888f07fca4', '172.105.247.100', 1666138810, '__ci_last_regenerate|i:1666138810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17745bd2b0ddfb9830b94d0c25a99a7cf1364082', '172.105.247.100', 1666138810, '__ci_last_regenerate|i:1666138810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e817c6c8f0ffa06bdbf106594b6d46e0665963e', '172.105.247.100', 1666138810, '__ci_last_regenerate|i:1666138810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056e083cccc1f759af903ba1038d1ba2b584f6b9', '172.105.247.100', 1666138810, '__ci_last_regenerate|i:1666138810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328b0c29728ab1c37452d13741f25642e5c6ff31', '172.105.247.100', 1666138811, '__ci_last_regenerate|i:1666138811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935d7b7ccd77e88601f8c5dee74c80ea0d6f4a62', '172.105.247.100', 1666138811, '__ci_last_regenerate|i:1666138811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b2fa83563213288e072e2f346f46e9d3347b29', '172.105.247.100', 1666138811, '__ci_last_regenerate|i:1666138811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ed4d62f46ede0ef4e3bf3583e9a6811330695f', '172.105.247.100', 1666138812, '__ci_last_regenerate|i:1666138812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d14453f9a3e201e00ecf83b6e01361aefb0b5703', '172.105.247.100', 1666138812, '__ci_last_regenerate|i:1666138812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2deb65efebc7b02099c4ecfdd3c7425cba2005', '172.105.247.100', 1666138812, '__ci_last_regenerate|i:1666138812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c065dab2da62501e3cff86e1b09cc22c7ab5968a', '172.105.247.100', 1666138813, '__ci_last_regenerate|i:1666138813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08703cd229aad6ab1505d5a917f3c99bab371d7', '172.105.247.100', 1666138813, '__ci_last_regenerate|i:1666138813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87775dbab1995b8833a101c0812f291d4f8a083b', '172.105.247.100', 1666138813, '__ci_last_regenerate|i:1666138813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a8758f85a11ce1f75e3d3da2737a1578cc7ca5', '172.105.247.100', 1666138813, '__ci_last_regenerate|i:1666138813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed8321a3e4a249b4d7e3669bb7d5585cae85c04', '124.158.12.83', 1666140566, '__ci_last_regenerate|i:1666140566;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd39a6defdc7a4af56bcfbd1f5e41d471b57b59', '124.158.12.83', 1666140567, '__ci_last_regenerate|i:1666140567;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cd4b57ac3e71d344773c43d7a3dfc778ec655b', '124.158.12.83', 1666140568, '__ci_last_regenerate|i:1666140568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeddb4a0d6026b858973b0267c6db23c59a0b8bd', '124.158.12.83', 1666140568, '__ci_last_regenerate|i:1666140568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec5f6655e371e4a9b705a36800115edd097bf82', '172.105.247.100', 1666143011, '__ci_last_regenerate|i:1666143011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4d82ee3c7745585d911845bf69b9feca60b4f5', '172.105.247.100', 1666143011, '__ci_last_regenerate|i:1666143011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc6bd375bb329dfbca9458bedf1a738d0a91df74', '172.105.247.100', 1666143011, '__ci_last_regenerate|i:1666143011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e9a95059eaf5072e88b91f06f2fb413893fbdf', '172.105.247.100', 1666143011, '__ci_last_regenerate|i:1666143011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea7941ff1b4ee778157e4ae138a0ee0f08d4e7b', '172.105.247.100', 1666143012, '__ci_last_regenerate|i:1666143012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdce69b02cf8a0605e4f2e2ce5f5aa64c206ef1b', '172.105.247.100', 1666143012, '__ci_last_regenerate|i:1666143012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63525373feda61ceecbf437ab0758759716ebeac', '172.105.247.100', 1666143012, '__ci_last_regenerate|i:1666143012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699ad3b79e756808c76f1fdec699ee1d04c808a0', '172.105.247.100', 1666143012, '__ci_last_regenerate|i:1666143012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94942d90a09b997f0e2a4d93cbce98205fee7569', '172.105.247.100', 1666143013, '__ci_last_regenerate|i:1666143013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc877d77e5c08a67c241f7a3f23ca0fa0ba4738', '172.105.247.100', 1666143013, '__ci_last_regenerate|i:1666143013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad70f8fa8a03a6069e76088ca82a3f7655a94962', '172.105.247.100', 1666143014, '__ci_last_regenerate|i:1666143014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a69dcadf594bcd4bbe6d67ed36fa70f55a375387', '172.105.247.100', 1666143014, '__ci_last_regenerate|i:1666143014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b0a22c24a0e7a610be9adf2cf8dd624ca475e1', '172.105.247.100', 1666143014, '__ci_last_regenerate|i:1666143014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976d06dbcf24f4a15e6ffdd091562fdb135def08', '172.105.247.100', 1666143014, '__ci_last_regenerate|i:1666143014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ce4988e8041f2d7b06bd2cc9c0a499240eaf42', '172.105.247.100', 1666143015, '__ci_last_regenerate|i:1666143015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0b443c0e8e01e3a9d7f46226910e10fd5731aef', '172.105.247.100', 1666143015, '__ci_last_regenerate|i:1666143015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69b06aff585a29a274ec94d9484971d25b763a3', '167.94.138.119', 1666146355, '__ci_last_regenerate|i:1666146355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54cd2cf8ddff6648096d71e4d22f26b667e78c39', '167.94.138.119', 1666146355, '__ci_last_regenerate|i:1666146355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb8908ecddfdd1de3f7080c6e13e39c8427c2fea', '167.94.138.119', 1666146356, '__ci_last_regenerate|i:1666146356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079b1fb631f41fd166f92a7e59768a1b193a6eb9', '167.94.138.119', 1666146356, '__ci_last_regenerate|i:1666146356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83844767df73166471da57a7ed91308faae9ee6e', '167.94.138.119', 1666146356, '__ci_last_regenerate|i:1666146356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab347f6ae3c12668e498d5dc323878291e0d92e', '167.94.138.119', 1666146356, '__ci_last_regenerate|i:1666146356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85be6553a7720788f1f2bea2d46ccb5e8aaa8d74', '172.105.247.100', 1666147209, '__ci_last_regenerate|i:1666147209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39897a36278be3f63e24162ece57849cb4c6ccb3', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7635796c8c0c34d66bdd3189265e44bee0be18fe', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51032c10cc629a9a639e97ebb8674d0e1b3cc1b5', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69b215d26b0341c12f58f7fe7935d65f82339ac', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('978192432f79091ad7a7c98620e223e4962b064a', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90417efa3c094d8d7f01c02f9552a64be274fce8', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69e94768f68a7bf30947139472a9b98afdee3d4', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd83b1ae67449c53a4a320fe296c5f44c073f9f6', '172.105.247.100', 1666147210, '__ci_last_regenerate|i:1666147210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afac5bb76b1a3dce14bc963995b7534c38e7e5b9', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a7f1ee43d4da633ebeed6a51807673544937a1', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cfe934ccba3dbe8741c31e935e53f0abec6944c', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfd081778225df1bc86277c4c36dd8ef4ed44b9', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ece79a065699aa0240cf794646ebbc0e8b06277', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a525d0309844e75050ff6f96c8d259d26e1d3c', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fffe28c061df80474a974c41c686bd8d82c16551', '172.105.247.100', 1666147211, '__ci_last_regenerate|i:1666147211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acacc82fe711541c0b1a596e05b2fc57292cdd11', '172.105.247.100', 1666151407, '__ci_last_regenerate|i:1666151407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96c76e7bfea711678f301884ad083442992ac5c', '172.105.247.100', 1666151407, '__ci_last_regenerate|i:1666151407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d6e6311b294cfe800728c0aae6de5bc71a7952', '172.105.247.100', 1666151407, '__ci_last_regenerate|i:1666151407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258aa6634ed355f207ffa22cc3e85b9fbdd73a5c', '172.105.247.100', 1666151407, '__ci_last_regenerate|i:1666151407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba86d5088f46f85323d6a6f872a234357f0b164', '172.105.247.100', 1666151408, '__ci_last_regenerate|i:1666151408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dcfea58d67e795229cf4d4f2ba1ab33ae7b9dbc', '172.105.247.100', 1666151408, '__ci_last_regenerate|i:1666151408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56e267e3018afe6956aa54f95cda6c870db77cb', '172.105.247.100', 1666151408, '__ci_last_regenerate|i:1666151408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2deac3d37cd6ea48ea706277657950ed3ee8edf', '172.105.247.100', 1666151408, '__ci_last_regenerate|i:1666151408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac41860f5ca2507f0e76dd27c61728486807c56', '172.105.247.100', 1666151408, '__ci_last_regenerate|i:1666151408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833c0ff35359eee117f47a4962e4a9ddf2e549a4', '172.105.247.100', 1666151408, '__ci_last_regenerate|i:1666151408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405e069151654fb4387d39071741b627d9365363', '172.105.247.100', 1666151409, '__ci_last_regenerate|i:1666151408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7828a1199056db9f6e7c9b1f9b681ab1e4b6c13', '172.105.247.100', 1666151409, '__ci_last_regenerate|i:1666151408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d31586f6b8e4b141fafc7347df1f0e579fda34ca', '172.105.247.100', 1666151409, '__ci_last_regenerate|i:1666151409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76944010459e0aec86414b3ff3b5b9f42ea806e7', '172.105.247.100', 1666151409, '__ci_last_regenerate|i:1666151409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f517593f34009bd74bc5ba919bafffdf0690d6', '172.105.247.100', 1666151409, '__ci_last_regenerate|i:1666151409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804a3b4226402cb3ae64f0bd8a764f9da7984ac5', '172.105.247.100', 1666151410, '__ci_last_regenerate|i:1666151410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de34e2321c214ef5171f9a9981c1932eaca54d01', '37.111.219.104', 1666153756, '__ci_last_regenerate|i:1666153756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666080045\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1ad1cf0a1fbca2cc91f97e5d122dd3254410e2', '45.120.39.142', 1666153841, '__ci_last_regenerate|i:1666153756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666080045\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666153840;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774d0a4e18e93b95607da313528501284c9265f9', '205.169.39.27', 1666154563, '__ci_last_regenerate|i:1666154563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b705a080efd8cc39439794bbcbcab23c17fbcdc', '172.105.247.100', 1666155608, '__ci_last_regenerate|i:1666155608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33992719c32ab0cf675ac03bb5b157ba841f8948', '172.105.247.100', 1666155608, '__ci_last_regenerate|i:1666155608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1517b2b9198fe51583abd6a97d72a3f4ad0fc508', '172.105.247.100', 1666155611, '__ci_last_regenerate|i:1666155611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10024eed08cc0242c888a8403a8d2ca5d0bd464', '172.105.247.100', 1666155611, '__ci_last_regenerate|i:1666155611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb80352e32bbfb84ccff91e588f1ff225cb1474', '172.105.247.100', 1666155611, '__ci_last_regenerate|i:1666155611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb694f16646e9a6cfd0dbf47f96fb56451211e1', '172.105.247.100', 1666155611, '__ci_last_regenerate|i:1666155611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4bd1b1c5bee6456379489bb483434a0d9611cba', '172.105.247.100', 1666155611, '__ci_last_regenerate|i:1666155611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de4a0a57eb7fabffd02ee7397934ff76ca8d1ab', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b31fd604f8a05ac9aacef378ee6cbfdb43a79d', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c29511149f2a79ace5682868165f34337269692', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2933287cb1b2de37679baf43cf2b4afef81475', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14bbd4e40f1adbd951089cb473a95624e00e7a7f', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a28df526989b186acd2a830c5c15967b3b29d2c0', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce6c55f07465361654bff7822014460dc0517ba', '172.105.247.100', 1666155613, '__ci_last_regenerate|i:1666155612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2635c47c3b7b208c72f56c9926ff904baed6441f', '172.105.247.100', 1666155612, '__ci_last_regenerate|i:1666155612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f837347b7e154ed579d062007bb16b20d0e373be', '172.105.247.100', 1666155613, '__ci_last_regenerate|i:1666155613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773b18b731a70353d97106ac33ce46c17beb2ec6', '176.53.220.140', 1666155942, '__ci_last_regenerate|i:1666155942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdfeef407014265f133711fa18d5d758f5ac82dc', '176.113.42.87', 1666155944, '__ci_last_regenerate|i:1666155944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('287371d249a753355d7d65adaf727f7c3900ae4b', '45.90.60.245', 1666155946, '__ci_last_regenerate|i:1666155946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b044c393d4a51fd42ec9bf2caea5c2d7dd64fde8', '172.105.247.100', 1666159807, '__ci_last_regenerate|i:1666159807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80bda922441afb0b6a04e066d483e981e530cff5', '172.105.247.100', 1666159808, '__ci_last_regenerate|i:1666159808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d1d6414242373f2fdf2302325776bba864371a6', '172.105.247.100', 1666159810, '__ci_last_regenerate|i:1666159810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6052be4a9eb3febb6a4be165f4b348b257f9a316', '172.105.247.100', 1666159810, '__ci_last_regenerate|i:1666159810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d753c460ff6c7589eb318baa6f6c96504c5cc8ba', '172.105.247.100', 1666159810, '__ci_last_regenerate|i:1666159810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b66ec3d5125d3544cf8d1cbe9ff192292e7cef', '172.105.247.100', 1666159810, '__ci_last_regenerate|i:1666159810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ff5287eeb3af93da0671121c081d52e7a7265c', '172.105.247.100', 1666159811, '__ci_last_regenerate|i:1666159811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88d00bbaa2a6a42aacce40f2123a53ed3056a3a6', '172.105.247.100', 1666159811, '__ci_last_regenerate|i:1666159811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596e126103d09517716ea7e9c6ae4c80e2e88cab', '172.105.247.100', 1666159811, '__ci_last_regenerate|i:1666159811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b97f6f6ee1a2ecd215f88a812ce1f12a6495bb4', '172.105.247.100', 1666159811, '__ci_last_regenerate|i:1666159811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a66d08d58ebb3dd59cf8e6ed49ef657d4f58115', '172.105.247.100', 1666159811, '__ci_last_regenerate|i:1666159811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8185cf512e314cb6a0e5d0630f25bf756b84bc2e', '172.105.247.100', 1666159811, '__ci_last_regenerate|i:1666159811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1739c682a1f50183ab0d2610d784fc90bc9d3167', '172.105.247.100', 1666159812, '__ci_last_regenerate|i:1666159812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5425001f9fdbadee60e78cfcf1ea98532cd53aed', '172.105.247.100', 1666159812, '__ci_last_regenerate|i:1666159812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409006efc1c9635f05e42a08b7e217627588550e', '172.105.247.100', 1666159812, '__ci_last_regenerate|i:1666159812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1b6491400ab67fb09814edf35102527f48aa24', '172.105.247.100', 1666159813, '__ci_last_regenerate|i:1666159812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af6d6cc5db4a99748f430ef4ff8bed397a35a13', '45.90.61.121', 1666162240, '__ci_last_regenerate|i:1666162240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5d462283d4e5ab435574b52ee477a061f5f954', '45.90.62.98', 1666162242, '__ci_last_regenerate|i:1666162242;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07641a66b5eb2eecaa68fca7a089b3b7e3d06e75', '89.104.111.166', 1666162243, '__ci_last_regenerate|i:1666162243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561ef8ab20dd2d3d2cc04a59cc28d1432fd61b6f', '37.111.219.104', 1666162549, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121638a4fc762df7271b5542ef7ee31fa818d44c', '37.111.219.104', 1666162549, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4f5a583f07de3c1587cb7b32baa312cdaef742', '37.111.219.104', 1666162550, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255b3bc0a22ec66c0d8dcc1910963401e6e61e7c', '37.111.219.104', 1666163162, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666163162;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666163106;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716e3f4e91d2edbdbfa5e578099c45ba9371f080', '45.120.39.142', 1666163616, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666163616;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666163455;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1161a4b09c97dba693d4bb2320846263a9fa7bb7', '45.120.39.142', 1666164493, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666164493;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666163455;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468396370f278b13cfe0fc6b2d6eeaebabe62894', '172.105.247.100', 1666164006, '__ci_last_regenerate|i:1666164006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e812550bae7c2a8fa1550b7b2676189a2d0afe3', '172.105.247.100', 1666164006, '__ci_last_regenerate|i:1666164006;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358d6935172dd6a552ff5cb505b474febf0a1acb', '172.105.247.100', 1666164007, '__ci_last_regenerate|i:1666164007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0cda7f96480068b74e9edc86b5e3e96093e2c9', '172.105.247.100', 1666164007, '__ci_last_regenerate|i:1666164007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dfcde6f512421a58a8b9b34c1ebf886fb4cd099', '172.105.247.100', 1666164007, '__ci_last_regenerate|i:1666164007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435eb7a38c1a0772535aa40228a84e3237307562', '172.105.247.100', 1666164007, '__ci_last_regenerate|i:1666164007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf1e868f96207c32e165eb63567bac69fca727f', '172.105.247.100', 1666164008, '__ci_last_regenerate|i:1666164008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833f5d82393cb5b109ddbc74b818032fadf0e287', '172.105.247.100', 1666164008, '__ci_last_regenerate|i:1666164008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b766b54e5ebaa6ccdf709986ad447f105e67f719', '172.105.247.100', 1666164009, '__ci_last_regenerate|i:1666164009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48eaceda4ebe2f9e7afdc345bce940f70d03353a', '172.105.247.100', 1666164009, '__ci_last_regenerate|i:1666164009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081d49838fcda3c66bf2626473637aceed9cf5df', '172.105.247.100', 1666164009, '__ci_last_regenerate|i:1666164009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2449940c58da46205f545829960dc424dbdd2239', '172.105.247.100', 1666164009, '__ci_last_regenerate|i:1666164009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf92e4d152e53af729ada77063b4e266f30c36e', '172.105.247.100', 1666164010, '__ci_last_regenerate|i:1666164010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fffa2553edb506ba1cbd4a0bac2420bf003562e4', '172.105.247.100', 1666164010, '__ci_last_regenerate|i:1666164010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e1f239b2bf0090683a0e36fa852dae3b85768c', '172.105.247.100', 1666164010, '__ci_last_regenerate|i:1666164010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4be2116c923883d05e029e2d7fefe6dce25f70d', '172.105.247.100', 1666164010, '__ci_last_regenerate|i:1666164010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ec284141a7930c95f1a866c8377b588e5d561c', '45.120.39.142', 1666165122, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666165122;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666164658;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acaa410604176e031d8c171618eeafb7ed90dde4', '45.120.39.142', 1666165932, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666165932;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666165127;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8172800428a5d30b491ae36d90eb45421a821af1', '45.120.39.142', 1666169627, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666169627;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666165943;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d5fc88aed05514dcef25f3e757020511e3e20e', '172.105.247.100', 1666168207, '__ci_last_regenerate|i:1666168207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d986528c0dfcb430969f09e3a5b6a6193d8c2e6', '172.105.247.100', 1666168207, '__ci_last_regenerate|i:1666168207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7890fe24a625688aa1b4725f8b4387f5c4dfdf8a', '172.105.247.100', 1666168208, '__ci_last_regenerate|i:1666168208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3848838f2b67a037cbdf5dae0fd57c14ee4fe4c3', '172.105.247.100', 1666168208, '__ci_last_regenerate|i:1666168208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ea153341835824aae490b122775405a92c5332', '172.105.247.100', 1666168208, '__ci_last_regenerate|i:1666168208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe96c01e62157b357022fc38e57daf3966be67a2', '172.105.247.100', 1666168208, '__ci_last_regenerate|i:1666168208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde2bb36df99ca513e8da456a950de57f6a1be1d', '172.105.247.100', 1666168208, '__ci_last_regenerate|i:1666168208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04099e7e76358570f139b0b61b55c4faab381745', '172.105.247.100', 1666168208, '__ci_last_regenerate|i:1666168208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0341629d63751c1d3d4c905f75cf81ff3522f66', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a87cf79b58b1b0b4684f632b2653d9e55c7f0db', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f69c35106cbc2e7d33cf207882c31045d834870', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482584bea099850299289bf7a2ce8930eaca8ec9', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b983805b35748caf31709d9a894bcd14fbc477a8', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be20e8e71d207c1c3f9a3235c78ec6458bec2af7', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c645463506c4c79ac71c1f726426854c76dc0b41', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98761d063c104e0c3af8a746b20881ed2d3dc0ea', '172.105.247.100', 1666168209, '__ci_last_regenerate|i:1666168209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad13eefaab0ebef4bd14da0cb8068201490d5fc', '45.120.39.142', 1666170404, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666170404;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666170395;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2d046fbed5f378e333bb609746cbbe5ead403f', '45.120.39.142', 1666171778, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666171778;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666171773;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b715f60502667f4a35e7d1770ad39411fd6139', '45.120.39.142', 1666175786, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666175786;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666172008;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";hidden1|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252291468308774fbcbe4395c72a24b50a7481a6', '172.105.247.100', 1666172406, '__ci_last_regenerate|i:1666172406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e41c1add2485abc9cf4c8b9d5c7988051421e0', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b829f1e2a46d992b584711c9768beec77d24d67c', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('929320a0594a0216123ea3c617971ce5b67eba39', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f195cc1213bf6a9ea3c6c1b0bc4dbe98e3e7a11', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0081e87e7b4a7945509b8fa86042067f742975f8', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315923363c29ec6be29e22e0d69e32d3e009815e', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c20dda37a6bedddf22f6a4398c6c7c3117113cb', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7969b6bffe7a2287aa7e9d716580c8598ba2cff8', '172.105.247.100', 1666172407, '__ci_last_regenerate|i:1666172407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d40e545363d961acb81f9a90535ef89e2df626b', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ace3743ebeb77359dcbb4eff0ecf13228cfca3', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a8d8308f9475ea0ef6ae80c7b546c3ff57caf7', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a9485df6abcd89a6798048ca03d2634b9da0ac', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38791f77af861ba53084e0e829d570df7346a555', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869ca06194ed59fd67ddb45e45b12def2e3a2b29', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44805f4b9549ee6ecd60198b6ef9996985dedcf7', '172.105.247.100', 1666172408, '__ci_last_regenerate|i:1666172408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('547cfb59307a5cbee9b633cf774d4344be70add2', '37.111.219.104', 1666178957, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666178957;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666178872;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";hidden1|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b516a1fe36820f7ab2345d4c801091e67c8b9d22', '172.105.247.100', 1666176607, '__ci_last_regenerate|i:1666176607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5455052ed62c6537d719620ee7535378753f37', '172.105.247.100', 1666176607, '__ci_last_regenerate|i:1666176607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf1de9e3b4b75b6d2e48ad2ffaaad17b80eaee7', '172.105.247.100', 1666176607, '__ci_last_regenerate|i:1666176607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d39dc071c67102c433eb14024e63367ea23d9e', '172.105.247.100', 1666176607, '__ci_last_regenerate|i:1666176607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d31d1c9257e6618d64e8e2cbfb4546903519e48', '172.105.247.100', 1666176608, '__ci_last_regenerate|i:1666176608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78bb8f16b44785368c7f1868e25bc09002306b8', '172.105.247.100', 1666176608, '__ci_last_regenerate|i:1666176608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7417f6ba91c339128c145994a149d7a96b97bbb8', '172.105.247.100', 1666176608, '__ci_last_regenerate|i:1666176608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dd833756a54afecba0ee7342edfead996278d1', '172.105.247.100', 1666176609, '__ci_last_regenerate|i:1666176608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6ce6f06917ed40c0348a93875c8993eac03f6c', '172.105.247.100', 1666176609, '__ci_last_regenerate|i:1666176609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777296588857aac893f06c4a0ec1ad6a4efa4c47', '172.105.247.100', 1666176609, '__ci_last_regenerate|i:1666176609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b474dfa58dc6801fe12295bfa1f7d0ee083ee48', '172.105.247.100', 1666176610, '__ci_last_regenerate|i:1666176610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fcef1debecf46b3c094bbc14f219fee103ace72', '172.105.247.100', 1666176610, '__ci_last_regenerate|i:1666176610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8a9d469bf55528f86ff8c1f88bdecb06399c20', '172.105.247.100', 1666176610, '__ci_last_regenerate|i:1666176610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eea8a1394df3be04e49001d775e325e13ef2ff3', '172.105.247.100', 1666176610, '__ci_last_regenerate|i:1666176610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9e38879ccf502d138f2f256b0b700b3d65808e', '172.105.247.100', 1666176611, '__ci_last_regenerate|i:1666176611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e798a0a9c69af0ef26bdd5e20120e27bba7cd8', '172.105.247.100', 1666176611, '__ci_last_regenerate|i:1666176611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8fedbcbb610e3d795751715cbeea7cee5f2f79', '37.111.219.104', 1666181223, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666181223;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666181217;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";hidden1|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97338c4bbca521140ae18942236a35fffa92ad52', '37.111.207.78', 1666180508, '__ci_last_regenerate|i:1666180403;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666017466\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25531611d393d382b5831b288bc946ea7332b5f1', '172.105.247.100', 1666180807, '__ci_last_regenerate|i:1666180807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ef2841d121fee4de6e2f046ce48009f1304042', '172.105.247.100', 1666180807, '__ci_last_regenerate|i:1666180807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451f541a291393bdd5917d11ffbfd2324848949f', '172.105.247.100', 1666180807, '__ci_last_regenerate|i:1666180807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9155c1bcf761d8873d2ff413216e8ef0c5bb75', '172.105.247.100', 1666180807, '__ci_last_regenerate|i:1666180807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e776080093cfcafedeaa1163307e8a766b76562', '172.105.247.100', 1666180807, '__ci_last_regenerate|i:1666180807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('780356f7b5f1810592bcdc1fe613210ba3b40d44', '172.105.247.100', 1666180807, '__ci_last_regenerate|i:1666180807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40b6091b6a5de8846d29a67d8c7959754184d78a', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2922a0793f956f66d744ccba72ef164f9d26d572', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83c97de920b7c72415f7caa49da25706c204c5e', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69238452e8e573f041c7af977c677a134cca6c9f', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2710a6c0ff339501265b3474baeee912b8a4a8f7', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd70841caa4c639821afaf9d3a0cb9dc632f92e', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db1316980356e12951c0110cf71be0b73744d98', '172.105.247.100', 1666180808, '__ci_last_regenerate|i:1666180808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd84d72b16fac96219f2c71971ebf0c6b9551407', '172.105.247.100', 1666180809, '__ci_last_regenerate|i:1666180809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6c979ff0b1a6fea708bed4aa7ab3e16ebe0a0e', '172.105.247.100', 1666180809, '__ci_last_regenerate|i:1666180809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0812c007c479ab3ea52f0b177f420d2d02fceb34', '172.105.247.100', 1666180809, '__ci_last_regenerate|i:1666180809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8258dc494bbe9bd34da75ce1460efd8f40cbd918', '37.111.219.104', 1666181531, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666181531;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666181263;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";hidden1|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efe01869f579adc8c3c32d9524b1867cad647c9', '37.111.219.104', 1666184366, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666184366;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666181531;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";hidden1|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c19b27548ce7953fc0896689986fdb91f7a9b138', '37.111.219.104', 1666187643, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666187643;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666187638;register_id|s:3:\"222\";cash_in_hand|s:9:\"1410.0000\";register_open_time|s:19:\"2022-10-18 20:39:16\";hidden1|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9d19eae69bdc3ec53874754777cb9e097c8ee5', '172.105.247.100', 1666185007, '__ci_last_regenerate|i:1666185007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6f0e18b7f1d14c015b9674d91f614949ac4815', '172.105.247.100', 1666185007, '__ci_last_regenerate|i:1666185007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ace5dd096d51cfaf2ec9783969127979abc407d', '172.105.247.100', 1666185007, '__ci_last_regenerate|i:1666185007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755ab6a3f63d4f99d8fab973f3a4d5562386acb3', '172.105.247.100', 1666185007, '__ci_last_regenerate|i:1666185007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901081c61d2eeb5ae54b1fb306f8cb43f501f50f', '172.105.247.100', 1666185007, '__ci_last_regenerate|i:1666185007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a891ca11c84539c5d3d921a72678b5629da6402e', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550418ecbc76d1f65c369621435278b70338fc3a', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e868da53f7787cb128e734d044941abd88b368', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f696e542316e4c9c4ac82532335a5be7f53762d', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36daa8fcfd5875886fcda6cc524928ba354f7063', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4cbdff42f6f64a585c4cd0396b240974917f88e', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b9b559796134b74be407c9e78a0b960c80d446', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822dd5d16b5ed61d91f4ba49dc9325a66fd54a80', '172.105.247.100', 1666185008, '__ci_last_regenerate|i:1666185008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b64d1a06a1f238dfa82fbc4429c2496fbf08436', '172.105.247.100', 1666185009, '__ci_last_regenerate|i:1666185009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4cf0728b8b034dd5daf35fc94b97d5bcfdbb51b', '172.105.247.100', 1666185009, '__ci_last_regenerate|i:1666185009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c75dac1db49e84188703a56a79b5052a76213ae', '172.105.247.100', 1666185009, '__ci_last_regenerate|i:1666185009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d76c03615e26a07ee80ce278e6933b105c61434', '37.111.219.104', 1666187745, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666187643;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666153074\";last_ip|s:14:\"37.111.219.104\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666187745;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";hidden1|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d16a7ded0f637d87ff8835009124365a49cc6e', '172.105.247.100', 1666189207, '__ci_last_regenerate|i:1666189207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862c717134be9a73ff4380e8abecd53ee4ad773e', '172.105.247.100', 1666189207, '__ci_last_regenerate|i:1666189207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193de306add2d6769a16bedee0c20c1bec2eeae2', '172.105.247.100', 1666189209, '__ci_last_regenerate|i:1666189209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda00759ea990d75e2da0fa2c80d5abccfb7f2bf', '172.105.247.100', 1666189209, '__ci_last_regenerate|i:1666189209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0479697fb3671591e753825678be172f913c8c4', '172.105.247.100', 1666189209, '__ci_last_regenerate|i:1666189209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e324f519f28870bb10b9cb1ebe8e4cf65539d900', '172.105.247.100', 1666189209, '__ci_last_regenerate|i:1666189209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f3b2bc2a43bdcf0e74a33baf6f77b5697e7547', '172.105.247.100', 1666189209, '__ci_last_regenerate|i:1666189209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8122b0f452a2a63a6dfa92ac563510e739cc7d22', '172.105.247.100', 1666189209, '__ci_last_regenerate|i:1666189209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4faa6445c7de1a550eedd16d3035251467bba26', '172.105.247.100', 1666189210, '__ci_last_regenerate|i:1666189210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39b462698e59385cb7e7bfd2ecf248f9cd975da', '172.105.247.100', 1666189210, '__ci_last_regenerate|i:1666189210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332d40730edf43e4aa12930ebc4b1e8ccd009ac0', '172.105.247.100', 1666189210, '__ci_last_regenerate|i:1666189210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25627dd243ecd71f56328212cc008d074aafcd2c', '172.105.247.100', 1666189210, '__ci_last_regenerate|i:1666189210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46709b30d717b2938e32fe5a1c59284d87d9a02', '172.105.247.100', 1666189210, '__ci_last_regenerate|i:1666189210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1e44167e1f8a5617fb51440caf95d1d15275a2', '172.105.247.100', 1666189210, '__ci_last_regenerate|i:1666189210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fac05eb859f53d862983c543efbd317833401f61', '172.105.247.100', 1666189211, '__ci_last_regenerate|i:1666189210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c903266dcf8d391adf8cdaa9951cc7f37044c5e', '172.105.247.100', 1666189211, '__ci_last_regenerate|i:1666189210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2493bb3f35c9dc48b78c02bdedae37b875cd75', '172.105.247.100', 1666193410, '__ci_last_regenerate|i:1666193410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f24fa20e3addccb591f8b13e754ccbbe53619ba', '172.105.247.100', 1666193411, '__ci_last_regenerate|i:1666193411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baeb41ca8c1cfa0abbdd5b8149e08b6f2f8bf7c9', '172.105.247.100', 1666193411, '__ci_last_regenerate|i:1666193411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607a7d6e757651e78ac6283e1bf278f9ca0a3cb7', '172.105.247.100', 1666193411, '__ci_last_regenerate|i:1666193411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('168251a7bcfa76861a5c5c05c7ddf9111407c5a9', '172.105.247.100', 1666193411, '__ci_last_regenerate|i:1666193411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3237434f0f47754a17777d122e76767b3a4241c4', '172.105.247.100', 1666193411, '__ci_last_regenerate|i:1666193411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2225640868d87539adc90009455d5e3d7ab57855', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5557e5811b8a3a64aa43246208dbeaa99fbe6f52', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9d157ae8c241ba8de4f26d25780a43c3f8aed5', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c8a8f3f52bfb5a35e89f89c2cc438a8c4a8ef2', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be37ad1e2445d0a674a9311f23fa133d99177804', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b059c26481ac6b87edd99050ca8611b53919659d', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33919bd396dcd784353ae3109c0dd236f05a643f', '172.105.247.100', 1666193412, '__ci_last_regenerate|i:1666193412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e31fef43104665d3a90904d42fbc302cb715e1', '172.105.247.100', 1666193413, '__ci_last_regenerate|i:1666193412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c737946fa8eae44b1648c4e379a8d3cc7d20d6fb', '172.105.247.100', 1666193413, '__ci_last_regenerate|i:1666193413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80be84357444a80cb2ebbc2d5c051706acab503', '172.105.247.100', 1666193413, '__ci_last_regenerate|i:1666193413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f956c77b09c1672e360710399106fbcb3d06e7', '172.105.247.100', 1666197608, '__ci_last_regenerate|i:1666197608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6e3748c7fa26755d41b16aea11aa3db0b5e5e0', '172.105.247.100', 1666197609, '__ci_last_regenerate|i:1666197609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f6a217d0f5607b94baa799600d9341617573c3', '172.105.247.100', 1666197609, '__ci_last_regenerate|i:1666197609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcbe68b6b3fab1601de63c91901c5fdfbb1b23c', '172.105.247.100', 1666197609, '__ci_last_regenerate|i:1666197609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02a2606002f69c44ce0729066afb634c84854ad', '172.105.247.100', 1666197610, '__ci_last_regenerate|i:1666197610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c342cbba62eda3343f0b8fe6508738c062cae99', '172.105.247.100', 1666197610, '__ci_last_regenerate|i:1666197610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e773b92776554adcde957db53303136eb902066b', '172.105.247.100', 1666197610, '__ci_last_regenerate|i:1666197610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c7e647f8a020fe705509fe90d2075542bd3a8b', '172.105.247.100', 1666197610, '__ci_last_regenerate|i:1666197610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ed55485a773791a381d2cad1fc79eba07cd349', '172.105.247.100', 1666197611, '__ci_last_regenerate|i:1666197611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2892c1a2ed4d8ed859928f884c7ae3c7817eafd7', '172.105.247.100', 1666197611, '__ci_last_regenerate|i:1666197611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('627800e4ddc97039540fd3c6cda65742d3049b6d', '172.105.247.100', 1666197612, '__ci_last_regenerate|i:1666197612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cc6492b86f952e79309896cd923d4a34af0cca2', '172.105.247.100', 1666197612, '__ci_last_regenerate|i:1666197612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb37d23ae91423f9dc534867f575b343decd711', '172.105.247.100', 1666197612, '__ci_last_regenerate|i:1666197612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26627aae1195f2595dbaae3baefce7905678c4d1', '172.105.247.100', 1666197612, '__ci_last_regenerate|i:1666197612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626c70491dbb0add6d003266c90fadfb3adbc508', '172.105.247.100', 1666197613, '__ci_last_regenerate|i:1666197613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a62384f2e7079c17ecd84791467a8ab458b0d7', '172.105.247.100', 1666197613, '__ci_last_regenerate|i:1666197613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('585030f1807a2399756612f9db60baabfab1d196', '172.105.247.100', 1666201807, '__ci_last_regenerate|i:1666201807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9492db6895d6a50c8259366ff01197abef843bbc', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a95b2f5891f53e507919ea41d251cc052991a6', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a9cf0ec4d274636d251a22bd91e460edc3759a', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8959934397aae7a827321a53efef3238fbdf0f', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d7085208a64a98f68d2778b3a37b8ee8b72622', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd98b37dc8c754855e575dac0377f7610bc3f7d8', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a1c375016f706e2f132f712424530a6ce51454', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492b34938b59bd5e9a6056b8a633bb6592790375', '172.105.247.100', 1666201810, '__ci_last_regenerate|i:1666201810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d16ee86aa779bc9348a7caaa514d67fbf012a77', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bef41024196da128bdd54f2f02d101ccf1c3f7b', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee8e1e96b56b2e2e03d8ee0939f2e24c186b7af', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d6b69af6cef45dbaafa2ce6afb74a45e30801f', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb141809aca4212fbd8c3ab9ae041c55d530f19', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0085a6f2d0bd83d86e438e0ae7d2ae951df1eb', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e59e66aaaaf2501c93381fdc378d8766aea2e7f', '172.105.247.100', 1666201811, '__ci_last_regenerate|i:1666201811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafe84f04bbe5e14799294eaaa39757266a03243', '95.217.147.18', 1666205211, '__ci_last_regenerate|i:1666205211;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e71bb9537a007214706a60f7534b5ac1957083aa', '95.217.147.18', 1666205211, '__ci_last_regenerate|i:1666205211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de56faa2449a65276a09ee0137cdef537abf5ed', '95.217.147.18', 1666205214, '__ci_last_regenerate|i:1666205214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc088740bcabda1ca1811256ecf37f8f9ab4ae8', '95.217.147.18', 1666205214, '__ci_last_regenerate|i:1666205214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a523a6c63ab8ba0b9149b41b101648207b60708', '172.105.247.100', 1666206009, '__ci_last_regenerate|i:1666206009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81cd0300aa5bef548bb6e0afaaa93413f9a627b', '172.105.247.100', 1666206009, '__ci_last_regenerate|i:1666206009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1243a08bed9535038291432785aeb2a0b81844de', '172.105.247.100', 1666206009, '__ci_last_regenerate|i:1666206009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03bd3ec677585dce52d3045899a3d51cd53c53ad', '172.105.247.100', 1666206010, '__ci_last_regenerate|i:1666206010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec05be273ee0ed1f00a6cc1c747d469adcc0d7b', '172.105.247.100', 1666206010, '__ci_last_regenerate|i:1666206010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4838caba6af859236075e4f87f11ca0036d610d2', '172.105.247.100', 1666206010, '__ci_last_regenerate|i:1666206010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea02ba1abcdde0c45a3bcf4c099403df0cf0dfcc', '172.105.247.100', 1666206010, '__ci_last_regenerate|i:1666206010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc4c94e87f2adb375aed590c190bb6410b29797', '172.105.247.100', 1666206010, '__ci_last_regenerate|i:1666206010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc6c3855de317cd2fda492919416f3649421a540', '172.105.247.100', 1666206010, '__ci_last_regenerate|i:1666206010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41ee3896d6d8371438e34c459e21532759b85ca', '172.105.247.100', 1666206011, '__ci_last_regenerate|i:1666206011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce219a3ed9227356a35c1c1b25c80f4add498beb', '172.105.247.100', 1666206011, '__ci_last_regenerate|i:1666206011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c017661c048a748c1cab9d54db5bf0bb9c531a', '172.105.247.100', 1666206011, '__ci_last_regenerate|i:1666206011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039404013901e3ce2d38d7e6d48366074dc0f0cd', '172.105.247.100', 1666206011, '__ci_last_regenerate|i:1666206011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825855737668091b1a5febf3db2044c1b89fad10', '172.105.247.100', 1666206011, '__ci_last_regenerate|i:1666206011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ed6884cba9b7dfb7f3c8da2b62c39bc9551778', '172.105.247.100', 1666206011, '__ci_last_regenerate|i:1666206011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa560e1d5b6d37402460f994945ad5dbb5baddd', '172.105.247.100', 1666206012, '__ci_last_regenerate|i:1666206012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9fc0d402404634bcaf9c6913b2fd7a507b69cac', '172.105.247.100', 1666210207, '__ci_last_regenerate|i:1666210207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c92623b9fa82949349a3c4946fb636eb1c37b2b', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e7ea13c2579b8df490f3ea2cceb71200eaaf36', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfde39ec5beb1f67a8b0fdbdd0b361edb7642a5', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de5eb2931fd9091cda0624dc9acd5f3aeceeae0', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6427634795cf534458492a00e0b9f4d3b912ef02', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd204eebcc2431cfebbe0eea29c33437c43b707', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8befd4e7fe19fde5f8dcd5f86faf5356db0e097d', '172.105.247.100', 1666210208, '__ci_last_regenerate|i:1666210208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acab84984bbd9b92f210d505b6088a74836d7b0d', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2120c0f24ae0a0267ad0fe58d1c5c6b40fdeb878', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20d748cbd814e1a8bf3472e5ba3742a28f184cd', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63324985a0798d08d4ce08c451cff25b057b8b4', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7d4d858718026420b84a16447dc8e97514fa77', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12287408458f95e55d0c28c4e131505dc520f391', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2b6cd36679e5545e4dd2897876612b9ac4a417', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7ef651aed6f1e8e78052d9d21c5a5bcbe467e9', '172.105.247.100', 1666210209, '__ci_last_regenerate|i:1666210209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ff6656d770e5bda4bf0663aab9fe267584b8fc', '167.94.138.61', 1666211893, '__ci_last_regenerate|i:1666211893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3607c93b8c74176053c6f504323da3bb2a060b', '167.94.138.61', 1666211893, '__ci_last_regenerate|i:1666211893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9b0a7436fb212e93ff67468047b209170a606c', '167.94.138.61', 1666211894, '__ci_last_regenerate|i:1666211894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c09c18d5f43bf94cb386c1468d3e8533a8f7dee', '167.94.138.61', 1666211895, '__ci_last_regenerate|i:1666211895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bdeda17f1a4622158ece206d55ef2f05d0939ef', '167.94.138.61', 1666211895, '__ci_last_regenerate|i:1666211895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3a2144e4157af383d34ecbcb80b4105f8fe8a4', '167.94.138.61', 1666211895, '__ci_last_regenerate|i:1666211895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d51a33149c4efd4c236f9f2932c58df01fb9e6', '172.105.247.100', 1666214408, '__ci_last_regenerate|i:1666214408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b5d9e7251e4fd0fa4b7cd4e9b83371c9dcb2a68', '172.105.247.100', 1666214408, '__ci_last_regenerate|i:1666214408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ee9a1c0053beeb6e276a697b003ca95b26e1a7', '172.105.247.100', 1666214408, '__ci_last_regenerate|i:1666214408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b288f438bfdac856665f406750b10835e2860a', '172.105.247.100', 1666214408, '__ci_last_regenerate|i:1666214408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25269e5a92ca7f09f03fd902b70d2b99efcb219', '172.105.247.100', 1666214408, '__ci_last_regenerate|i:1666214408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249835e4f08ff5a6d32ee3a7494d839860d7df1b', '172.105.247.100', 1666214409, '__ci_last_regenerate|i:1666214409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e102111d29d2ebd0617f522200d139acb0073597', '172.105.247.100', 1666214409, '__ci_last_regenerate|i:1666214409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d85484f257afea76af1a88ee448b9a61542980', '172.105.247.100', 1666214409, '__ci_last_regenerate|i:1666214409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb486596377846f392cd49b251af3f166a81330', '172.105.247.100', 1666214410, '__ci_last_regenerate|i:1666214409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9caf1bd1ca40bb5b41cde03296e452998120a5', '172.105.247.100', 1666214410, '__ci_last_regenerate|i:1666214410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0663a2ded1801151089a277644b91f6aa244592', '172.105.247.100', 1666214410, '__ci_last_regenerate|i:1666214410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fcf228a9c0001f3036211491e5b4377b1c98e98', '172.105.247.100', 1666214410, '__ci_last_regenerate|i:1666214410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bf79c56d9f4dd53eabbdc34386d5d89aaf718e', '172.105.247.100', 1666214411, '__ci_last_regenerate|i:1666214411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb80f7f384661ce5e79d31096d1e58df75b2aa21', '172.105.247.100', 1666214411, '__ci_last_regenerate|i:1666214411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b226ef458c5fccfdda54f8f0ff5c3958e7ee3a14', '172.105.247.100', 1666214411, '__ci_last_regenerate|i:1666214411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77fcf591665007d278d6f7a243b088fff10510e6', '172.105.247.100', 1666214412, '__ci_last_regenerate|i:1666214411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2fef77fbd8b93808666ea204839d9bcc9b51aa4', '172.105.247.100', 1666218607, '__ci_last_regenerate|i:1666218607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96eb224594f5b7aa6b71653c875d05003c89febc', '172.105.247.100', 1666218607, '__ci_last_regenerate|i:1666218607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a8962b41b84abd4513342871ea90a6681c3ef5', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4bdf8c53f16dc68ed554969c4b176578689a92', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205fba822d30f79760b883191f85409b9cb8a656', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a32957c3153ff99c05f9d657a31d55f45bc9b9c', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06510b3fb274ca5427f25d4776a8317e9c123334', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa9047a73f2c29fe6445c61f3597fd7328ee44d', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a84a3688a686892e26b477a67f96c308ab80239', '172.105.247.100', 1666218608, '__ci_last_regenerate|i:1666218608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c068f70994fa7ee47705822542043cda21c7509', '172.105.247.100', 1666218609, '__ci_last_regenerate|i:1666218609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10f8dd96ae81e6607564f179b291bfd036a1e84', '172.105.247.100', 1666218609, '__ci_last_regenerate|i:1666218609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316d50abf4e031e7880f83aa254ba4b7ab283634', '172.105.247.100', 1666218609, '__ci_last_regenerate|i:1666218609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ceec8fe63c21a5e80f3122218525fc61497a83', '172.105.247.100', 1666218609, '__ci_last_regenerate|i:1666218609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64d470f1779d09a3880583959d9aa388e388784', '172.105.247.100', 1666218609, '__ci_last_regenerate|i:1666218609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45a0ae156b80b453c1c87b32593ba15c9640913', '172.105.247.100', 1666218609, '__ci_last_regenerate|i:1666218609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e799dfcddff8734d01c29d76ca23eae3ff51a095', '172.105.247.100', 1666218610, '__ci_last_regenerate|i:1666218610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38a715a0f43cccc81f851a9209eab0d5c075da3', '172.105.247.100', 1666222807, '__ci_last_regenerate|i:1666222807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da21fa3d221070a76078f369030e78efca9991f2', '172.105.247.100', 1666222807, '__ci_last_regenerate|i:1666222807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1a3c6cf1517275c66ee484404ea86eca07903a', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015ac38916dc59f19c008b9f81dc9d8280556976', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc015b69f2d8888c82a310904f10c61284ae443f', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959598c09fa3daa35e43685f3ba81082f75fa4b1', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e5e76ba93fc10af5c3d32dee4a9b9a5d24ca1a', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad50de43fcc666450b352e9455107ea3d36f1f3', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700795f82b1e0660958bde71da3adc74f443e3fc', '172.105.247.100', 1666222808, '__ci_last_regenerate|i:1666222808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3fcd54964630ebbbb3801c3d1ab6adfb9ed9cd', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4b4e42278edd9d3ae2d003f5683ebb272a0c57', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3a691d5ec5dd53a55baf053ed0e4a08eaeaf0a', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d83b1420fd24228e31b2ea009bec3c43c23cd61', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22f793863de6c20456a3018d5282f01873018cc7', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d196d1a6a8f22a348cf9f64822d24175970646f', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191b16f8ca86cd976062c1dd3e4bf8731348939a', '172.105.247.100', 1666222809, '__ci_last_regenerate|i:1666222809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3e3a0fb32ed134abf7d2196992924dc7a40d0f', '172.105.247.100', 1666227008, '__ci_last_regenerate|i:1666227008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9393bcdf8c17af4eef498e0d14d0604f2931bbcb', '172.105.247.100', 1666227008, '__ci_last_regenerate|i:1666227008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f1db6d2d0cf1e3646d65323c848b67d6b3dcf3', '172.105.247.100', 1666227009, '__ci_last_regenerate|i:1666227009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4442cc1ca24f64c95b09730202988513fda6983a', '172.105.247.100', 1666227009, '__ci_last_regenerate|i:1666227009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32aee6477a6762b8bf4ad43235fd083ff0137e50', '172.105.247.100', 1666227009, '__ci_last_regenerate|i:1666227009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1527dd322cbd8c1fe6f52429ed44db6d94b778', '172.105.247.100', 1666227009, '__ci_last_regenerate|i:1666227009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a6ccffa675546ab61696a370aa5d2a280080442', '172.105.247.100', 1666227010, '__ci_last_regenerate|i:1666227010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92155a0c72f1c1a909896a71bb581490cdc6f2a', '172.105.247.100', 1666227010, '__ci_last_regenerate|i:1666227010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc143262cc44a6e9d26fe31c5f1994edb5440cbf', '172.105.247.100', 1666227010, '__ci_last_regenerate|i:1666227010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee24d8bb38d6f5c90dbc2d15c36930d84b7bf66', '172.105.247.100', 1666227011, '__ci_last_regenerate|i:1666227011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb671c72880734e89e9f129048cc8c277812a703', '172.105.247.100', 1666227011, '__ci_last_regenerate|i:1666227011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566142efc0ee33d83eba38573fba5c9033707ffc', '172.105.247.100', 1666227011, '__ci_last_regenerate|i:1666227011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5917260e145c4f4ccb93ffb8300e9fec8a62860', '172.105.247.100', 1666227011, '__ci_last_regenerate|i:1666227011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be86aee974da11310302caaf91f5433450eb1c3b', '172.105.247.100', 1666227012, '__ci_last_regenerate|i:1666227012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c1ae67d7807c63d676fb7b337e5ee7234bc451', '172.105.247.100', 1666227012, '__ci_last_regenerate|i:1666227012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c26190295e6ba5bf72064f6ee09090921649968a', '172.105.247.100', 1666227012, '__ci_last_regenerate|i:1666227012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de73b653cba157b3c6b185b641fed293e5b7b8b', '172.105.247.100', 1666231208, '__ci_last_regenerate|i:1666231208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67def2aaa2821c50afe441e878613c45130f4820', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48849ea6c06232caaf279d2bd451a8099a62fea5', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1921c3d0fb333e880a0655d21e46bd4ff412f405', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8112badc53d5170921fcf330ac32c7ea2943ea44', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66facc6d10c79d86ce18bb3d473f0c711ada3450', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9758c2be6cb0b1fec0e773cd8117673cf2dda8d0', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f0ea6cbce298e494bf4234c924615895b40cc9', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8f1c4ed0718eaca82f3ec6b9f1df3a19f08a8f', '172.105.247.100', 1666231209, '__ci_last_regenerate|i:1666231209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a57ff885238c9c3dbf6ca6f377e37cbf0693439', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741f8ee8779ba027de03201c99891aa7aae93b73', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e1a72210cb253beafd462f99abdf6d6141939df', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21487c6cc204d187b34d74f4038e91d9a1550bb3', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77dac29e30f4b4f91d183e3bdc36b23fbd65b44', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0220799a876392e80abf4a282acd7ed6e0677494', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d6beddf521c2c294bdd36a47a9a0b85625c3a4e', '172.105.247.100', 1666231210, '__ci_last_regenerate|i:1666231210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42f8b73b551c01e85dc97904007c324c143548f', '172.105.247.100', 1666235408, '__ci_last_regenerate|i:1666235408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13718b31dbcfc8a6e8f22742d8d1541bac26d0ff', '172.105.247.100', 1666235408, '__ci_last_regenerate|i:1666235408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da100c7e30f3be408cff341997d6215e91c1b56c', '172.105.247.100', 1666235408, '__ci_last_regenerate|i:1666235408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ba02a46e002076787e60f2628f309b803770b4', '172.105.247.100', 1666235408, '__ci_last_regenerate|i:1666235408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b93aa82991a7d6742cfceedc92e5b0f99ea221', '172.105.247.100', 1666235409, '__ci_last_regenerate|i:1666235409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a803be9bb2b5a926ea01343e800e62c32797fed', '172.105.247.100', 1666235409, '__ci_last_regenerate|i:1666235409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e270913d48fd5ad51cf8ea3597c17045ac5cbfb', '172.105.247.100', 1666235409, '__ci_last_regenerate|i:1666235409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f175343b7e688364193c12ee3b82bb62e500ab23', '172.105.247.100', 1666235410, '__ci_last_regenerate|i:1666235410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b15e39855796e632552f8a9255fa0326f0dfb4b', '172.105.247.100', 1666235410, '__ci_last_regenerate|i:1666235410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8db02f0fce068c582d23f6f4a67aebc1203bdff', '172.105.247.100', 1666235410, '__ci_last_regenerate|i:1666235410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1886a87e905fa1158e9163448844ad0c7b857055', '172.105.247.100', 1666235410, '__ci_last_regenerate|i:1666235410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ec44a60c75db66389790f7ec1ccacf4a8e10cb', '172.105.247.100', 1666235411, '__ci_last_regenerate|i:1666235411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba2f85fa47370e7228d18c9b9dbe8065df6fa4f', '172.105.247.100', 1666235411, '__ci_last_regenerate|i:1666235411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('968e2afbcec4253d4454a1e97baece6ec5ee5b4f', '172.105.247.100', 1666235411, '__ci_last_regenerate|i:1666235411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('153e9b83cb8f2228905baa7ad5beab4601091f81', '172.105.247.100', 1666235412, '__ci_last_regenerate|i:1666235412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145790259495e9fa37b759121cd03b7a72cc7a1f', '172.105.247.100', 1666235412, '__ci_last_regenerate|i:1666235412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef129d0ad3425e3da93bb31c4cdf6c747b0102d9', '172.105.247.100', 1666239606, '__ci_last_regenerate|i:1666239606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164e36c2c80330e3da3b8b5853af8338eddc6800', '172.105.247.100', 1666239606, '__ci_last_regenerate|i:1666239606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25355ebdb2f68215b07c13fc906a838b12d070a', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72b95e9b43333531a8bc1385635158cece10bdd', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f47c1a6c85fd1988ed9ed7ecdf314a044f21121', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f20b2f1cee1180164fe51c0b8a29ce9276a4793', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf65096c66b41db82ae732774547840446604e70', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0909d5d29042be5f03e77a2b3b5ef8c76415ac76', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1eff08afe87c223a07ea473354ea71ebd5a512b', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238c979f069775a2d62270cafb1ff653974d0043', '172.105.247.100', 1666239607, '__ci_last_regenerate|i:1666239607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5ea4b3f632ef805aae3c21c1b69334ed085feb', '172.105.247.100', 1666239608, '__ci_last_regenerate|i:1666239607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a140592644ea167f08d192aee6ada5cbb9bba71', '172.105.247.100', 1666239608, '__ci_last_regenerate|i:1666239607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08ddeabff648b8c57014215c85eaa896a03aaa9', '172.105.247.100', 1666239608, '__ci_last_regenerate|i:1666239608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9743d0c26c23af4850ad96f0cd52a893214785', '172.105.247.100', 1666239608, '__ci_last_regenerate|i:1666239608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908aa631b03087370ae5d795320d77eb2669b3b3', '172.105.247.100', 1666239608, '__ci_last_regenerate|i:1666239608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67882180060fb863a11e4ba828d65ccc6a2ebf8', '172.105.247.100', 1666239608, '__ci_last_regenerate|i:1666239608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87252c9dccbade4b55b2f314a8a6c6d2e1e8f1fd', '37.111.216.209', 1666240480, '__ci_last_regenerate|i:1666240197;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666162725\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666240479;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008bce551c7f9788de17e5e332d0886ce8df5c00', '172.105.247.100', 1666243808, '__ci_last_regenerate|i:1666243808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be60b498d1762edf9d1227fa3d16960d6b97a0b5', '172.105.247.100', 1666243808, '__ci_last_regenerate|i:1666243808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d67e9a9435102f3076c8f9fa3c2eba7db5b5123', '172.105.247.100', 1666243808, '__ci_last_regenerate|i:1666243808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed5177c1d435becec562828f32debafe25c8482', '172.105.247.100', 1666243809, '__ci_last_regenerate|i:1666243809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a27ed9ee9d5272ffe31358da5d4665fabd378b7', '172.105.247.100', 1666243809, '__ci_last_regenerate|i:1666243809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6462bb1596888ff1f11cdc7178bf796e2557a162', '172.105.247.100', 1666243809, '__ci_last_regenerate|i:1666243809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05f42a3d1c5627ba68f919a9a8ae85d119e2c70', '172.105.247.100', 1666243809, '__ci_last_regenerate|i:1666243809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73bf932bc47f3055009cc41fca537552468823f', '172.105.247.100', 1666243809, '__ci_last_regenerate|i:1666243809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ed9da4cf0489a008522744176ba67d70b52fa1', '172.105.247.100', 1666243810, '__ci_last_regenerate|i:1666243810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d62b01f0bed1a05f8b55b51d11be167805825f47', '172.105.247.100', 1666243810, '__ci_last_regenerate|i:1666243810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a536db169b1fd7c8993ce98de318294ce2cf63', '172.105.247.100', 1666243810, '__ci_last_regenerate|i:1666243810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea8da14006762fba5dd360f7130175ae90dda7d', '172.105.247.100', 1666243810, '__ci_last_regenerate|i:1666243810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98d2712f9b1f8ec0764b1063d6915a1f5fbc9c6', '172.105.247.100', 1666243810, '__ci_last_regenerate|i:1666243810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1666e7fc0b1c736a862024c328404b856ded81b3', '172.105.247.100', 1666243810, '__ci_last_regenerate|i:1666243810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ecd5d5fd4daa4470be40c56087ab9825eb3044c', '172.105.247.100', 1666243811, '__ci_last_regenerate|i:1666243811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b83383f04342bd740a1d850959f4fec1745fe7', '172.105.247.100', 1666243811, '__ci_last_regenerate|i:1666243811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b55657aacdf557809a196a4102855d2f610cdd', '172.105.247.100', 1666248005, '__ci_last_regenerate|i:1666248005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d17ace64b3c13d017f6dbc10b8d73dfa44bed3', '172.105.247.100', 1666248005, '__ci_last_regenerate|i:1666248005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e616cf4bf0d41440344387529fe9b91536bf68', '172.105.247.100', 1666248008, '__ci_last_regenerate|i:1666248008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1976e7a721149da5b3211459deb38510a175a4f4', '172.105.247.100', 1666248008, '__ci_last_regenerate|i:1666248008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30fb080f084e811026663efbf221b1f407959997', '172.105.247.100', 1666248008, '__ci_last_regenerate|i:1666248008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007f7263f89255161747cbcaf266acb31cd2956d', '172.105.247.100', 1666248008, '__ci_last_regenerate|i:1666248008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0658ac0f487b58a44d4024dcbea5094d4bde02e', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c417e658c8ae2c2a4ec7bcbf363c9e5fa233fdf', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a6297603fdbe58e59ad25d014d6a5a2101f4c43', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5870aa2b95f305bcf78301486f8412b1fd889fac', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c198ea1f724e8df46f34ca08434515d138023763', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de628cb606cff50ff7855ab14e48837e9782e71', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8ef7b07b6512dc928b8c0f1f19810f6e67dbf0', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c447aee09e154e73415901071e5ff2e097fbf187', '172.105.247.100', 1666248009, '__ci_last_regenerate|i:1666248009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c479f9ffe31224cf105a8b177d63ccc0d3dd49', '172.105.247.100', 1666248010, '__ci_last_regenerate|i:1666248010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7536bd344c576f88723c8c6ca8c743f2302b3e66', '172.105.247.100', 1666248010, '__ci_last_regenerate|i:1666248010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e108f3a75d1fb48d0a98ef01a6e7c30cb00bc59b', '37.111.216.209', 1666255750, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666255750;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666250084;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('defc1f989010b254459c6bd5bd44b3468a15b37d', '172.105.247.100', 1666252209, '__ci_last_regenerate|i:1666252209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f677fd8142f672c008e49be2cbcd3bbb3d269508', '172.105.247.100', 1666252210, '__ci_last_regenerate|i:1666252209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d73df759aa8075a35aa785042acc7f1a03b44c9a', '172.105.247.100', 1666252210, '__ci_last_regenerate|i:1666252210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12bb27e69bc5a018430b9ac73508f9a9017aa9e', '172.105.247.100', 1666252210, '__ci_last_regenerate|i:1666252210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed8d7c873dd8a5028a1e68a119552d0e2d28b23', '172.105.247.100', 1666252210, '__ci_last_regenerate|i:1666252210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97da541411f51ee77eb0e9ca06843f0153f4528', '172.105.247.100', 1666252211, '__ci_last_regenerate|i:1666252211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe64c3c1730421c74b5f764fbaf52f2b371089d', '172.105.247.100', 1666252211, '__ci_last_regenerate|i:1666252211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8099690262b4fb2053dfd942b04168c5272a3d', '172.105.247.100', 1666252211, '__ci_last_regenerate|i:1666252211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a589c40d3ca12178a0ca6e684baeab8215a39909', '172.105.247.100', 1666252211, '__ci_last_regenerate|i:1666252211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9464210412945930382e3cac272ba828a4c845f', '172.105.247.100', 1666252211, '__ci_last_regenerate|i:1666252211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65d107437ce83e794629d9c66414a27a478c0b4', '172.105.247.100', 1666252211, '__ci_last_regenerate|i:1666252211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7256e5c6b748769c94573887412cc061254497', '172.105.247.100', 1666252212, '__ci_last_regenerate|i:1666252212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8812871240b5c731f7c60107cc9cdc14f4a1443e', '172.105.247.100', 1666252212, '__ci_last_regenerate|i:1666252212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e664578d8ca1ad455324a6b6b8be308d75a78646', '172.105.247.100', 1666252212, '__ci_last_regenerate|i:1666252212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e435ee2244c608e15e3f0ff331e502883ccb6ebc', '172.105.247.100', 1666252212, '__ci_last_regenerate|i:1666252212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e910bd25bb878f4a77dcea186587e579f5f8a7a', '172.105.247.100', 1666252213, '__ci_last_regenerate|i:1666252213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482969ea739a79dcfd38cf5f639769ad1d6a3d15', '37.111.216.209', 1666257373, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666257373;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666255785;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4777a8194905c87d2e165b955f485113cee9be7', '172.105.247.100', 1666256409, '__ci_last_regenerate|i:1666256409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf113780971211ac131b24ca731bf55700f0529f', '172.105.247.100', 1666256409, '__ci_last_regenerate|i:1666256409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65988743a2c77301df924f6ad5593118ea772860', '172.105.247.100', 1666256409, '__ci_last_regenerate|i:1666256409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fd772276735a862403dfd5ee5d4cad16a9712f', '172.105.247.100', 1666256409, '__ci_last_regenerate|i:1666256409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af58fb6f6614092f531a2c94542f67b9832de83', '172.105.247.100', 1666256409, '__ci_last_regenerate|i:1666256409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005c64b4d7dfe36af33a2278ab644ebf9f721303', '172.105.247.100', 1666256409, '__ci_last_regenerate|i:1666256409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e3064ea8158e816b1feb1d5c603b4dd1111f589', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f25dacd40fff76bba7d2db2042ac8303334d54fd', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd90475e82978e4ca192ad78561e686fa89e9b93', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43cea140f917a6e9d9d104a733ff61ed1d28a397', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b60ea64d3ec49b4255556b4b833ed052ad31af76', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4fc9f683ac81d3b54b2425c984e994b428562df', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1276efd7d0bc4476705d7d38bf080067ba776990', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b856daa5817726b31617b7a93b4ebee409e01d42', '172.105.247.100', 1666256410, '__ci_last_regenerate|i:1666256410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6946b37ce1d1a132c796e678a4b2705a32acc88e', '172.105.247.100', 1666256411, '__ci_last_regenerate|i:1666256411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c3d84809a4e4cd950765751e9bc1caa97c9ace', '172.105.247.100', 1666256411, '__ci_last_regenerate|i:1666256411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a143422f6db8acc0ffa3ceceb4f9f26c7de464b', '37.111.216.209', 1666261853, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666261853;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666255785;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3b5e975ceea72600f0e8f181f29cc8b1740e9f', '172.105.247.100', 1666260607, '__ci_last_regenerate|i:1666260607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d458784c09c619c8c26f1d05ab95c8fbce510a', '172.105.247.100', 1666260607, '__ci_last_regenerate|i:1666260607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba115ac31034ea831df530457243f353dc85aebb', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15b7203d86e5eb5916d22ec75633ed5d7d061aa', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('867d8e5ba8eb8e328840f0e7e49943ea24642eb3', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d93221ec3c5c7d8330f62d721a0dd29d85b4e43', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a50b5aae9d082df77673fc78f52439d9ef806a', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb0143c13516666f650664b43cf06083619ecb8', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52090fecb11103ec8b19badc58c18ed71526c104', '172.105.247.100', 1666260608, '__ci_last_regenerate|i:1666260608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('780999566aed9f08371834fdb4e11507997a2d82', '172.105.247.100', 1666260609, '__ci_last_regenerate|i:1666260609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79b9b08685636a829c1ca4200cdff988a80037d', '172.105.247.100', 1666260609, '__ci_last_regenerate|i:1666260609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba55e44b790fb6697373c674fe9fd21cfeb5c6c0', '172.105.247.100', 1666260609, '__ci_last_regenerate|i:1666260609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a9d2c48c9c1c5191a2b468669e17eff729c43e', '172.105.247.100', 1666260609, '__ci_last_regenerate|i:1666260609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63a951f493ef084d1525e541378235f97aef7e08', '172.105.247.100', 1666260609, '__ci_last_regenerate|i:1666260609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33d4189d5f1ab4835ba0bdffd132ce2b2b0735b', '172.105.247.100', 1666260609, '__ci_last_regenerate|i:1666260609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395cf8468ade5348ad29b515e709845ee6bd57c9', '172.105.247.100', 1666260610, '__ci_last_regenerate|i:1666260609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6394e297a82e243c6e9a7536478783ddb79e1a72', '37.111.216.209', 1666265743, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666265743;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666261909;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ae8a1036d0da6fa3b2a58350d6c3c9cc65cbfa', '172.105.247.100', 1666264807, '__ci_last_regenerate|i:1666264807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3f2a8cfc84165e977a49b706e6dc9b9df1ace1', '172.105.247.100', 1666264807, '__ci_last_regenerate|i:1666264807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264e5069ea77577ba66a243512a1a0a295fe499d', '172.105.247.100', 1666264807, '__ci_last_regenerate|i:1666264807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64a9ea115b72b6dd116e18d7276f4cc1f83b2fd', '172.105.247.100', 1666264808, '__ci_last_regenerate|i:1666264808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef144b4ca70fc806f12f5ef90af194ba8bf47d1', '172.105.247.100', 1666264808, '__ci_last_regenerate|i:1666264808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0dd7d4221d606957f389a6bd589260524b36ed5', '172.105.247.100', 1666264808, '__ci_last_regenerate|i:1666264808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfc53a559cd9ec6990eb9ffc5b6ec921084da81', '172.105.247.100', 1666264809, '__ci_last_regenerate|i:1666264809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb4217b3cb258ebd2919d1332fd8faf7376d342', '172.105.247.100', 1666264809, '__ci_last_regenerate|i:1666264809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57769cffff5b9a25fec8029eb22289060b2525f5', '172.105.247.100', 1666264809, '__ci_last_regenerate|i:1666264809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7782d7cbfc1cd712887a568c6787d45a2d9fbf1', '172.105.247.100', 1666264809, '__ci_last_regenerate|i:1666264809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a705d5b5c8d846ee69cf29456d002ba5148e5b03', '172.105.247.100', 1666264809, '__ci_last_regenerate|i:1666264809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b50360a499b1d7fe901cb483e7f7d9d04820744', '172.105.247.100', 1666264810, '__ci_last_regenerate|i:1666264809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1da356b9c5e6a5010409fd48c49b2c6b6006594', '172.105.247.100', 1666264810, '__ci_last_regenerate|i:1666264810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722b8081990a65c887259bb110517f5994832d9f', '172.105.247.100', 1666264810, '__ci_last_regenerate|i:1666264810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d0b28a19038643f79582ee53485336c91f7ec4', '172.105.247.100', 1666264810, '__ci_last_regenerate|i:1666264810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7716d604c73d415d20c9061d8e525cd77dad82', '172.105.247.100', 1666264811, '__ci_last_regenerate|i:1666264811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afc6ddb8bd49602a06b513c7a06a3d2042135b9', '37.111.216.209', 1666268083, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666268083;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666265748;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf0f9d478e9d464bae6831357d862da7a2e872b', '116.204.230.25', 1666270570, '__ci_last_regenerate|i:1666270570;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc4e4b1b29d666ed96f842cb21d54bd56577a838', '37.111.216.209', 1666269676, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666269676;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666265748;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13909e67d1a165deecf47fdc11524af515727f68', '172.105.247.100', 1666269009, '__ci_last_regenerate|i:1666269009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bb1a17d97a721e62640e9edd6744f33ab653e1', '172.105.247.100', 1666269010, '__ci_last_regenerate|i:1666269010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bc65555b01c4ad302d5e6dea016f1dfcd6ac28', '172.105.247.100', 1666269011, '__ci_last_regenerate|i:1666269010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751f83c9ab7561f352e4f10915851a9207b9b452', '172.105.247.100', 1666269011, '__ci_last_regenerate|i:1666269011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd6068de364e620d6ee05ec752abea04036f6c0', '172.105.247.100', 1666269011, '__ci_last_regenerate|i:1666269011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8965c854b93acf0117e0b09189ba933c43df29', '172.105.247.100', 1666269011, '__ci_last_regenerate|i:1666269011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46cd03499da9c65d5b234ce52f3edb758436f24', '172.105.247.100', 1666269011, '__ci_last_regenerate|i:1666269011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec648977c9887ecce3b311dd066fc88e97250a5f', '172.105.247.100', 1666269011, '__ci_last_regenerate|i:1666269011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd745e33716d4d4156c8554fe3787a96b7618dc9', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4879f8f7b7f99c100aba790a8ae3c1377eaf5f84', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f25ccb2a33b9d9e9a9b7a3b1839126c8d68b98a7', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039f522dda948cdc6dfcbbfa6c040d291d56efc4', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55612087fca2e4877b4b83ff1e4d6ae6bf690325', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da468a6052d6908e79636653dc0c3797a2bbcc7', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a8a8c13f50e211bb92c2d98f249040f700e02d', '172.105.247.100', 1666269012, '__ci_last_regenerate|i:1666269012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c76651235c14f551a298ba385b55c07a6084ba7', '172.105.247.100', 1666269013, '__ci_last_regenerate|i:1666269013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c33dfe1bd52ee8bbda53fb733999664837a2d1', '37.111.216.209', 1666272701, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666272701;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666272697;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af9fd2e33c8771ce637cf162740f0a9164278a8', '116.204.230.25', 1666270871, '__ci_last_regenerate|i:1666270871;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e9cbad0a8fa480226b34856e025b3b975e07d1', '116.204.230.25', 1666271197, '__ci_last_regenerate|i:1666271197;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6758220904e99fc60aeaaf1a2b8dca3c714b9413', '116.204.230.25', 1666271524, '__ci_last_regenerate|i:1666271524;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6476d1d94de3995441d6a7b64ec8cf1b2f6fabd', '116.204.230.25', 1666272171, '__ci_last_regenerate|i:1666272171;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353ec608b0e0b016ebaa695c89a969fc09587e46', '116.204.230.25', 1666272581, '__ci_last_regenerate|i:1666272581;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13522534e2b6d694fb03914460f4b6c23a809973', '116.204.230.25', 1666273033, '__ci_last_regenerate|i:1666273033;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bf8e4e9d38a4b12685c4627897a64fe57be458', '37.111.216.209', 1666273105, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666273105;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666272950;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a31d4959c6cff8d8334b985aa22b728980ccc35', '116.204.230.25', 1666273510, '__ci_last_regenerate|i:1666273510;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"qfp9v1CVAaJtIlXrFQMg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b341e5e6d62a26cfbcda72d4e7029e080c6dacbf', '37.111.216.209', 1666273745, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666273745;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666272950;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4681f90ff6ba10f1d31e1ca12779ea4d75bc3e5', '172.105.247.100', 1666273207, '__ci_last_regenerate|i:1666273207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d14037d448384be172240b47bec52798ad827b9', '172.105.247.100', 1666273207, '__ci_last_regenerate|i:1666273207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afbe7b692da8d94902f8ca04780fe3ff30d57d80', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9259ad7d6098c2605f925007980500a5a61778cd', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13710bf277c3a80116ee7a82cb23292f2f9e7ae', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166183b6bfbd1f1a22fed6e6f47454219681b276', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edcaf75aeb3156b9ee059ab6439fb2e583992c8b', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf70f554989f15322c54ca867853c853ea0310ba', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdfd02cfaf8df6286edca72401064f603ae66ecb', '172.105.247.100', 1666273208, '__ci_last_regenerate|i:1666273208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0111d29621ca307d17be591f6df452f08316ae7f', '172.105.247.100', 1666273209, '__ci_last_regenerate|i:1666273209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339f4c8f3322bcb775a90ab832020b3964c21198', '172.105.247.100', 1666273209, '__ci_last_regenerate|i:1666273209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c916b3ed5681db54a499bd5bcf7dfd336698bb', '172.105.247.100', 1666273209, '__ci_last_regenerate|i:1666273209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f4b0388a83c041f821661db9e75aa3eb06f4c1', '172.105.247.100', 1666273209, '__ci_last_regenerate|i:1666273209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193d8a9007953068172866c725460fd0fe3d53c1', '172.105.247.100', 1666273209, '__ci_last_regenerate|i:1666273209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a763f51197db9d9e6fa7cecbae560f944867d7ad', '172.105.247.100', 1666273209, '__ci_last_regenerate|i:1666273209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8af86a6fbdd376fc5f0e1fe1298e7a8dd87f06f', '172.105.247.100', 1666273210, '__ci_last_regenerate|i:1666273210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f4868cde0b03227f0ac4a74cd547f72fece5c1', '116.204.230.25', 1666274330, '__ci_last_regenerate|i:1666274330;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"qfp9v1CVAaJtIlXrFQMg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cada41cf96d4dd8dddb11476c9decf657bb1208d', '37.111.216.209', 1666275061, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666275061;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666275012;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e77d0e1e25f751fc943e4db70cc6e7bf9a26dbd', '116.204.230.25', 1666274652, '__ci_last_regenerate|i:1666274652;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"qfp9v1CVAaJtIlXrFQMg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1206515d338da8cfbbe0ef7e141712415e76e3d3', '116.204.230.25', 1666275198, '__ci_last_regenerate|i:1666275198;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"qfp9v1CVAaJtIlXrFQMg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe7280be4388839278d623bafcfdeea2a15d120', '37.111.216.209', 1666275995, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666275995;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666275862;register_id|s:3:\"223\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-10-19 19:54:20\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef8a20b88feab7569ed13e0dd57cedb6c3219ad', '116.204.230.25', 1666276021, '__ci_last_regenerate|i:1666276021;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"qfp9v1CVAaJtIlXrFQMg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8309baa912ffea14234c2fa09babba204d6db4c0', '37.111.216.209', 1666276224, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666275995;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666240231\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666276224;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aab0861e4dd15a7104740e424493f621497f60', '116.204.230.25', 1666276022, '__ci_last_regenerate|i:1666276021;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666180408\";last_ip|s:13:\"37.111.207.78\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"qfp9v1CVAaJtIlXrFQMg\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736f258950c518a6170713771c324d166b170bdf', '172.105.247.100', 1666277408, '__ci_last_regenerate|i:1666277408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba82ebf2fd32ac152d33d4812715eeb635d66ee', '172.105.247.100', 1666277408, '__ci_last_regenerate|i:1666277408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0e429574165ce0cf0602da72e59df13ce64e96', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf22e9a0bd96c9099deb95097d68e138d1254d7', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbf3068d7d687ecd8433a5df05a42e952052559', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70ce5e4005bdab875bcbd31e7e9566db503e97d', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26432ddb0cbba8cf5ae1e0d2566aea17588fae8e', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9dcea598dd8a1b75f387c729ae336820e80fb7', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d9aeaa816d1f0fe95692a383c703aabf408208', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e99e845a6d6cd61c790238b2c9e42f4ec01424f', '172.105.247.100', 1666277409, '__ci_last_regenerate|i:1666277409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5fe4eb50960d897fb2cf475133eda20e159ea0', '172.105.247.100', 1666277410, '__ci_last_regenerate|i:1666277410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1b59fab1b6b7524dd709cbac15eead7fb8dab5', '172.105.247.100', 1666277410, '__ci_last_regenerate|i:1666277410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a19c372e827216c434bf8f0bdf3b4a3c4438f8e', '172.105.247.100', 1666277410, '__ci_last_regenerate|i:1666277410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f62c4073a86a68f5863d646afabc448527dc612', '172.105.247.100', 1666277410, '__ci_last_regenerate|i:1666277410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630873836c2efc67a645732703a93ab63ae91042', '172.105.247.100', 1666277410, '__ci_last_regenerate|i:1666277410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dfa450d7077cc82c0fad700c8eeaca56068191c', '172.105.247.100', 1666277410, '__ci_last_regenerate|i:1666277410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d8d6c0b559c60b2322527a43faf8fafd0bed8b5', '172.105.247.100', 1666281607, '__ci_last_regenerate|i:1666281607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c9a4da7c41d8e28c57e107b6351f5c2831e8838', '172.105.247.100', 1666281608, '__ci_last_regenerate|i:1666281607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa39b1f90d8572363285ae75c53c48eba23b03f8', '172.105.247.100', 1666281608, '__ci_last_regenerate|i:1666281608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02f4d655a1261cd3a2e1c16a2945eb597329b2a', '172.105.247.100', 1666281608, '__ci_last_regenerate|i:1666281608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa53b3bd25886a1e0291d9545268b70cd3fc2be4', '172.105.247.100', 1666281608, '__ci_last_regenerate|i:1666281608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('130d717e2cf51146a0abbde9db7d725ce66659b4', '172.105.247.100', 1666281609, '__ci_last_regenerate|i:1666281609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a6496b0600635741852804bb73af292cb7ef2f', '172.105.247.100', 1666281609, '__ci_last_regenerate|i:1666281609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487d5da533a3f128d01d34ebab6b3ac91aa65f0b', '172.105.247.100', 1666281609, '__ci_last_regenerate|i:1666281609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c81fa98db757f4fbfda6e65e4c4eb5425122ff5', '172.105.247.100', 1666281609, '__ci_last_regenerate|i:1666281609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a376666c750ec955f8de78a00f6a8f827412c5', '172.105.247.100', 1666281609, '__ci_last_regenerate|i:1666281609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bea3586413f581798529a76e99094f514095924', '172.105.247.100', 1666281609, '__ci_last_regenerate|i:1666281609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575f78c67c953e5bbb5dd73934dbba22ed692535', '172.105.247.100', 1666281610, '__ci_last_regenerate|i:1666281610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa5c4482d0c03e63aec2c8ee75ae637912ef183f', '172.105.247.100', 1666281610, '__ci_last_regenerate|i:1666281610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9255698bc98b12b1473aa8548d27d99b063e2b83', '172.105.247.100', 1666281610, '__ci_last_regenerate|i:1666281610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353864bb0e42fb86cf7c697374399c9da1dce29d', '172.105.247.100', 1666281611, '__ci_last_regenerate|i:1666281611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5337a2ba82db6c154e810958bcae45f5cdcdeb72', '172.105.247.100', 1666281611, '__ci_last_regenerate|i:1666281611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9faa5fdf343982096949ddbbb5518ad514b8d8', '172.105.247.100', 1666285808, '__ci_last_regenerate|i:1666285808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2fbe29a42dc3d18a05bf83d9d9615218ad8722', '172.105.247.100', 1666285808, '__ci_last_regenerate|i:1666285808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6694d23386b0f747be743cb02529f2b6a7ab5c', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c45b6411dacf19fc6aeadc48ac842dfecd455e', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a88744928c2fea4dd14950ea85ec25b1d7e3ed', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9efae637970e6ee07443eae398e4bd95fd293ab', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a25ea6925553446aeef775f519a48d2dca31030', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3a5c38525472ac055e6706f061a5ceb5561011', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35363cf2112bb9ca7f3c12403c17e9728c9b7f9f', '172.105.247.100', 1666285809, '__ci_last_regenerate|i:1666285809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793344aaf47133db6f79dee60929ef59a5bf349d', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e74ea8e0a5834227eecabbe89d0cbfe4800193', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c37193c9f406eee7ed4a55b6e2eedae94dc7c7', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01f5822502b8061dea38fc5788996719d5162dc', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('615b5293d478f66c3f0f6462b413612964c51c30', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84609fbb2edb4d7cd26d7212350982e5102bb972', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b88ca2622453a791d4131ab2d516ebfa95fd16d', '172.105.247.100', 1666285810, '__ci_last_regenerate|i:1666285810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c512131749c149d40d50e7921e08b8c26c2ece38', '172.105.247.100', 1666290011, '__ci_last_regenerate|i:1666290011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbee333b1e22916822e26880e06491e472e16a27', '172.105.247.100', 1666290011, '__ci_last_regenerate|i:1666290011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db66d8ec387591abc01f81114f50e447903ea33f', '172.105.247.100', 1666290012, '__ci_last_regenerate|i:1666290012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5782ee80362576da40b1bc161ef8c5fcb32ed5a3', '172.105.247.100', 1666290012, '__ci_last_regenerate|i:1666290012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a36c117404b1a862d3603c0d082ef1e4915daf', '172.105.247.100', 1666290012, '__ci_last_regenerate|i:1666290012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c38bbe8115d1e3103361444fb8d38d6473f9c5', '172.105.247.100', 1666290013, '__ci_last_regenerate|i:1666290013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d6c19e6b0d87a59c93bd34fe1edf7fb9fea3b3', '172.105.247.100', 1666290013, '__ci_last_regenerate|i:1666290013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee308c8fa1e0b6520cb1fbdfa6f768e733a80df', '172.105.247.100', 1666290013, '__ci_last_regenerate|i:1666290013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ce60d88af640c016129d31e3bda863c4be8820', '172.105.247.100', 1666290013, '__ci_last_regenerate|i:1666290013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc4034284a344e13cc87c9f71e31235bf3d6bf1', '172.105.247.100', 1666290014, '__ci_last_regenerate|i:1666290014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35e68c8f0ae28dc5f952d74e658d5f312f7bcaf', '172.105.247.100', 1666290014, '__ci_last_regenerate|i:1666290014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0aad90600e3278d3497df742cc120d9acdd0c1f', '172.105.247.100', 1666290014, '__ci_last_regenerate|i:1666290014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef328df4d5faa2fb83c3797b1be75d264caa255', '172.105.247.100', 1666290015, '__ci_last_regenerate|i:1666290015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0b4e42a755c03e9dd6a9b740eb1cca38214805', '172.105.247.100', 1666290015, '__ci_last_regenerate|i:1666290015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69956f1ce9cd29d656ed19ffdfae62d8c6d063bb', '172.105.247.100', 1666290015, '__ci_last_regenerate|i:1666290015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accd26bad4f136bf2ee28441671a2bb02f97da54', '172.105.247.100', 1666290016, '__ci_last_regenerate|i:1666290015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90cddd98c897e36ccca14129e1d67feb5c0692b', '172.105.247.100', 1666294208, '__ci_last_regenerate|i:1666294208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dabde453c11f709b35055d67252b4c7152eed10', '172.105.247.100', 1666294208, '__ci_last_regenerate|i:1666294208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f460fc867d6767441f55fcbf287fafd36966758', '172.105.247.100', 1666294209, '__ci_last_regenerate|i:1666294209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b985712dbac167e4cc50f76a39e1b9ff5e17c69', '172.105.247.100', 1666294209, '__ci_last_regenerate|i:1666294209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c753f206318733d9a9d9092e31155f0566da7ebf', '172.105.247.100', 1666294209, '__ci_last_regenerate|i:1666294209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cbb131df9b049e351a01e58189761b9ea887ff7', '172.105.247.100', 1666294209, '__ci_last_regenerate|i:1666294209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa11af14014ee2899bc292ffba55dba34838049', '172.105.247.100', 1666294210, '__ci_last_regenerate|i:1666294210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92a826008ab6b2c5bf2ff498bcaa880efe8f9a6', '172.105.247.100', 1666294210, '__ci_last_regenerate|i:1666294210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82367e60874ee82ebd1b0ec00a3ad24f03138b3d', '172.105.247.100', 1666294210, '__ci_last_regenerate|i:1666294210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fafec569eb4adfd27d2090f094febe3dc5f1c5', '172.105.247.100', 1666294211, '__ci_last_regenerate|i:1666294211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16b8491a6044799f6b5e5ff15ea8e485d0e20e3', '172.105.247.100', 1666294211, '__ci_last_regenerate|i:1666294211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f71f0cd39b1c63a868204e91e1c70d4773ddbc', '172.105.247.100', 1666294211, '__ci_last_regenerate|i:1666294211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29b75e6748cbad97ba0b1a5a0ff2f2e0665061b', '172.105.247.100', 1666294211, '__ci_last_regenerate|i:1666294211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9956bdd0229fd8eea44bb7042d1ba8e47a91db', '172.105.247.100', 1666294212, '__ci_last_regenerate|i:1666294212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8eed91572d700511fcb132e3a89c7e69d5179df', '172.105.247.100', 1666294212, '__ci_last_regenerate|i:1666294212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a01a787dc58b6906c0227ce9d25c0e1ae76d43', '172.105.247.100', 1666294212, '__ci_last_regenerate|i:1666294212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3303e7b9582b134f15a7c0d9cae65f81342993c9', '172.105.247.100', 1666298409, '__ci_last_regenerate|i:1666298409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fafb6e1c81e3ed18c39b6c92fecc0d9b08dfcbaf', '172.105.247.100', 1666298409, '__ci_last_regenerate|i:1666298409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50577e7a48706dac63a883753368d3a46d7c9182', '172.105.247.100', 1666298409, '__ci_last_regenerate|i:1666298409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd32fb8203df23853e1d170a941d7cd92cce080', '172.105.247.100', 1666298409, '__ci_last_regenerate|i:1666298409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a84013aafe8a5b22608fa47e5b42c8dde66cf4', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32e8a6d74f36496a90ebfac1b13ba08dfb63162', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0348064a80c948852bff9d61b2701a6fc29e256d', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2004c41c19e749d736fcd12ee1670ea12973389', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bab3c87e50cc2bfc6ca1dc85f011ae9c91f31bc', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31960368e7145c257ef56b853cfecd97e7bc22b', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d469e4f242d9d4d2ffabed3b3958fd6dbcc266', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840293eded6f4f166064175c3f2935e8a03c1e87', '172.105.247.100', 1666298410, '__ci_last_regenerate|i:1666298410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71c2cc65cd49d54af6fc08ce7a45c332a99c049', '172.105.247.100', 1666298411, '__ci_last_regenerate|i:1666298411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb9b3e5d4f9ac7b03c4c8b1ebbc8e833495a126', '172.105.247.100', 1666298411, '__ci_last_regenerate|i:1666298411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74561cb13b1b8690f6302a0a5e4fe4962c50ddd8', '172.105.247.100', 1666298411, '__ci_last_regenerate|i:1666298411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed6c5fbd754a95a4e7dd6a7ccfa9ee9758c90a0f', '172.105.247.100', 1666298411, '__ci_last_regenerate|i:1666298411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b6bb2d1ff5b7582b27bdbc1a06eade67434d9fa', '172.105.247.100', 1666302606, '__ci_last_regenerate|i:1666302606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1ae8656d9f9d77f3f111a0deaf17d9cad7b6303', '172.105.247.100', 1666302606, '__ci_last_regenerate|i:1666302606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3437088ea91a4d4ae905cc58d45e71427b93c08f', '172.105.247.100', 1666302607, '__ci_last_regenerate|i:1666302607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1218ac3eb82fdeaf90f0111479ff832daf52eb71', '172.105.247.100', 1666302607, '__ci_last_regenerate|i:1666302607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d7d100afd0e6b5846aa4b8e0965ff72a834dee', '172.105.247.100', 1666302607, '__ci_last_regenerate|i:1666302607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab008722541db42d999c9d269928d26556db1d51', '172.105.247.100', 1666302607, '__ci_last_regenerate|i:1666302607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('636ac31485fbf8ed051e9a664867402211c4f227', '172.105.247.100', 1666302608, '__ci_last_regenerate|i:1666302608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de03f7b2a5647442378a03649a72a503d6235956', '172.105.247.100', 1666302608, '__ci_last_regenerate|i:1666302608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250c1619004f226fdc67521cb6f93a1f9b0e871f', '172.105.247.100', 1666302608, '__ci_last_regenerate|i:1666302608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f7fbc78c56e383b346b9369f633ee545390628', '172.105.247.100', 1666302609, '__ci_last_regenerate|i:1666302608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fbd3777c638e49f2b4b1a87c70be6191c092ba', '172.105.247.100', 1666302609, '__ci_last_regenerate|i:1666302609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1537833b3695dd94ef2d112ee78af50223d82582', '172.105.247.100', 1666302609, '__ci_last_regenerate|i:1666302609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c112a3ca5e5dce123985924210b4378d905720e', '172.105.247.100', 1666302609, '__ci_last_regenerate|i:1666302609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fce69c71f0ca9a4a605ed90495ceb486495ce5a', '172.105.247.100', 1666302610, '__ci_last_regenerate|i:1666302609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2a0387e2dfb90019b78c41ef9df78995bccbb7', '172.105.247.100', 1666302610, '__ci_last_regenerate|i:1666302610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f2a4328e6d144859c143478cf94dc98b9b49e0', '172.105.247.100', 1666302610, '__ci_last_regenerate|i:1666302610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638f57a9f67cb79fa09daaa702f49afe248ceab1', '167.248.133.61', 1666303126, '__ci_last_regenerate|i:1666303126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509897e83d1c0e6c0158b63fbe850f088df2155c', '167.248.133.61', 1666303130, '__ci_last_regenerate|i:1666303130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10aab9b79c31cd8c0b38e456ddba2d2679fb8798', '167.248.133.61', 1666303130, '__ci_last_regenerate|i:1666303130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bff0b3cc386c4cb1a5cc2f71b3d890155e98d40', '167.248.133.61', 1666303131, '__ci_last_regenerate|i:1666303131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8f1499c938d88005d566261e5e1eb380866493', '167.248.133.61', 1666303131, '__ci_last_regenerate|i:1666303131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae21ecac20fe24bb3d6957e4b1383e11e44789af', '167.248.133.61', 1666303132, '__ci_last_regenerate|i:1666303132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f069cbca8913735fe1beeb1f6aeb1a1f3aec9f0', '172.105.247.100', 1666306810, '__ci_last_regenerate|i:1666306810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b77c987f1766f97662dcdcb68d8e8ede14ed74', '172.105.247.100', 1666306810, '__ci_last_regenerate|i:1666306810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb228e2c5cda1f077e68f655b17be324a2083a1d', '172.105.247.100', 1666306811, '__ci_last_regenerate|i:1666306811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a85e4fe5bfbb18b0192508ebc0ee3533690c4f7', '172.105.247.100', 1666306811, '__ci_last_regenerate|i:1666306811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219ef2a97e17a69cced1d94854269a6a88c488fd', '172.105.247.100', 1666306811, '__ci_last_regenerate|i:1666306811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b818c4dc59e62c26ac9deba5638b8b017f2ea18', '172.105.247.100', 1666306812, '__ci_last_regenerate|i:1666306812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c356b7f2c3742f86669bfba4af6e41f5669f62', '172.105.247.100', 1666306812, '__ci_last_regenerate|i:1666306812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad6bac1f89a129a663d44b97f3984d0735b8ee7d', '172.105.247.100', 1666306812, '__ci_last_regenerate|i:1666306812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce74de9355e03747e6eb6fba528dea058d7f2ec1', '172.105.247.100', 1666306813, '__ci_last_regenerate|i:1666306812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d38106ec16d901e0b38ede5c22347681b1f1f51', '172.105.247.100', 1666306813, '__ci_last_regenerate|i:1666306813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac32b056750b29dbc50ab94f5f56569061377f1b', '172.105.247.100', 1666306813, '__ci_last_regenerate|i:1666306813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a82f7fa4a45384c60e6cc03a51b00db4a72fc1', '172.105.247.100', 1666306814, '__ci_last_regenerate|i:1666306814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90d7253af8a1be101fbead2c0256ab97dc1057b', '172.105.247.100', 1666306814, '__ci_last_regenerate|i:1666306814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e358115a86d89708e52ecb6c673926e664ba9a66', '172.105.247.100', 1666306814, '__ci_last_regenerate|i:1666306814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b3ea02cc2a469e4757d1f6271d30db1e0e2493', '172.105.247.100', 1666306814, '__ci_last_regenerate|i:1666306814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d810d0d0a28da9d5019a9fa3024b60cd10dd69', '172.105.247.100', 1666306815, '__ci_last_regenerate|i:1666306815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777c0c1db56ff1ed0140e8884d290c6d0d355258', '172.105.247.100', 1666311007, '__ci_last_regenerate|i:1666311007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889409cb35b3a013e9e034b65739862a17d2fb7b', '172.105.247.100', 1666311007, '__ci_last_regenerate|i:1666311007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373233b99d67af3798ecb4ef530c05aab9ca0a0d', '172.105.247.100', 1666311007, '__ci_last_regenerate|i:1666311007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d511eb36435305e62613ce8ebe2c1c979934be4', '172.105.247.100', 1666311008, '__ci_last_regenerate|i:1666311008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d33200b6644cdbf34c22a499f3f06d05de44c4d', '172.105.247.100', 1666311008, '__ci_last_regenerate|i:1666311008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b8c3d2b113282d31c1755135a6c8e4e98089c5', '172.105.247.100', 1666311008, '__ci_last_regenerate|i:1666311008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e71fe57e8161242581bb5d92c5ad882ab4d6aaf', '172.105.247.100', 1666311008, '__ci_last_regenerate|i:1666311008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b54497644d992e6fe3415622dd7ddbe6df28a6', '172.105.247.100', 1666311009, '__ci_last_regenerate|i:1666311009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0e32602f2acf924efe7b9a15db7e59400b0a15', '172.105.247.100', 1666311009, '__ci_last_regenerate|i:1666311009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51cd307821737196d3d111db4342278d1eef4688', '172.105.247.100', 1666311010, '__ci_last_regenerate|i:1666311010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f4a61327e6658c486cf096660b115a546778580', '172.105.247.100', 1666311010, '__ci_last_regenerate|i:1666311010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6df7d5b123e7b467a76b019a0c53defb7ef2757', '172.105.247.100', 1666311010, '__ci_last_regenerate|i:1666311010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8313bc0442b2b6aa33ba9eeeff9272dc8aab05f6', '172.105.247.100', 1666311011, '__ci_last_regenerate|i:1666311010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c84df86eb827f627d4367a62399c74a8393559', '172.105.247.100', 1666311011, '__ci_last_regenerate|i:1666311011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e33aaf92877e4740f83d2e9864d3e58154fc24e', '172.105.247.100', 1666311011, '__ci_last_regenerate|i:1666311011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e27a485d435014e875c3b540d804f8d9d7b58cf', '172.105.247.100', 1666311011, '__ci_last_regenerate|i:1666311011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5340ad607be1ca5b5f964707012c57a2aac149', '172.105.247.100', 1666315206, '__ci_last_regenerate|i:1666315206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92b9a52d8b8bd5a2c1849a809da12560efa2fccd', '172.105.247.100', 1666315206, '__ci_last_regenerate|i:1666315206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca5faa1240fa1407be95ab92689cc2bfa8d1585', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b060fbe631318cb8e309c1d688b4ac6cb9ab4974', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935e9f31d2a80370799aa1451b46f2f920a1ff67', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12beca32f773191e6b26751d02917efbfa2e0e13', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb9365e52724522cfcb1595b5853200cb84bb67', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd58760103e8767b0b353c8736c123de280a666', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cada6f4fb899314b7c060b829db86762be1064e', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da3d335661884713fd2ce96fa83d8e8035845dc', '172.105.247.100', 1666315207, '__ci_last_regenerate|i:1666315207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5097a0e3794867619e1d793cce3e6ed608f92e', '172.105.247.100', 1666315208, '__ci_last_regenerate|i:1666315208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6cfb36c6f5d44911b04583f9091d5a70c82bcdd', '172.105.247.100', 1666315208, '__ci_last_regenerate|i:1666315208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c69a13d726af2ae9130f9f606b4a2b4deeade1', '172.105.247.100', 1666315208, '__ci_last_regenerate|i:1666315208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2a3fc406b2d5b82b8a42ebb52f595fa660399ec', '172.105.247.100', 1666315208, '__ci_last_regenerate|i:1666315208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13be6f90eedcd3ab69db1ff66d2a29332edf99ea', '172.105.247.100', 1666315208, '__ci_last_regenerate|i:1666315208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41e04b6b1832c7c5f2df1b699e7b21f169c6170e', '172.105.247.100', 1666315208, '__ci_last_regenerate|i:1666315208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4099fbe8a9f67f598e934de076e8dae5056168a0', '111.7.100.22', 1666318056, '__ci_last_regenerate|i:1666318056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00523f2a3e4eb20e452bffc69ed86f9138f717f8', '111.7.100.22', 1666318060, '__ci_last_regenerate|i:1666318060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07452ce319b038d4434dd51db1dd7348d8ee4e5', '111.7.100.22', 1666318063, '__ci_last_regenerate|i:1666318063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7255a28b649509d31abe9e12443d588c33f3f75f', '111.7.100.21', 1666318087, '__ci_last_regenerate|i:1666318087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5efbdc3541818d56af83a021b21188c7efafc6f', '198.235.24.37', 1666318798, '__ci_last_regenerate|i:1666318798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0557a58375f03581bb20f1bf53711ea6c2d7a47b', '172.105.247.100', 1666319406, '__ci_last_regenerate|i:1666319406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb245dc1261ac4aed93f538ab9e41c73eef2e33e', '172.105.247.100', 1666319408, '__ci_last_regenerate|i:1666319408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e5448ce8ada98e2f1a2dafdc6f1943a3b6b59e', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01bd9c1429b6af475d4ffc9f6f33004a282c8510', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f05259f37b881140143817526ff17717a74a698', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b3b17d97f90f2db77a51da7549e59b1bf478b4', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('931faa977e4478cf61c02e5ab76cb69914ea577d', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('745abd624c393d7ae791d75bc64652052c315577', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08e9bd745bc58015eb8bada3452e9fbb8169326', '172.105.247.100', 1666319409, '__ci_last_regenerate|i:1666319409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55043bc42daaab583c1399f3f272fa61ee4e7a26', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc8e11d3cedcb60475961e942ddb42aa428c640', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8402640ce05110492338bf4ef9e9a2cfe8719190', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d34112c954352b8d20e2e117b063a0fa1797ca7', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192fa414c2db7029e33e05728ebf5be34cc1471b', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936ccb9cf04373fc4e9614779e99078ae1c7a3fb', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1e4e405fae90612eadf77bd62dc73dba24e9c93', '172.105.247.100', 1666319410, '__ci_last_regenerate|i:1666319410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6cf896280761f8e2da34a113bb042d250de1a11', '172.105.247.100', 1666323607, '__ci_last_regenerate|i:1666323607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747fc0ec4401421e5ef0538d91b110d046912065', '172.105.247.100', 1666323609, '__ci_last_regenerate|i:1666323609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a41ebdd8b5fe0beeded0144809245baed788b14', '172.105.247.100', 1666323609, '__ci_last_regenerate|i:1666323609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22763e8098b6d555c418e4fa0ba65a07490a0c38', '172.105.247.100', 1666323609, '__ci_last_regenerate|i:1666323609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922066d40ac4a7adcc409c1f308d86190d7015dd', '172.105.247.100', 1666323609, '__ci_last_regenerate|i:1666323609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca0b9a3618910dc427d68ce770cd8c71cc82fca', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88cc43747b5d5103174664aec05f3393fa306351', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f059cfa52b6eac0d39137d03eff50814d180f2', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0725c823e7d29ec3281b7f210c23461ee20498aa', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('282a019e1c633a96e84a5b9aeae810356e704cee', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9f4d430e9b2e7a0ba81de104f06ec194a64938', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3d668dc6167474fa52c480660ca6810355fb00', '172.105.247.100', 1666323610, '__ci_last_regenerate|i:1666323610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c51693129db913482e61c22d9fefd871f0314cb', '172.105.247.100', 1666323611, '__ci_last_regenerate|i:1666323611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6039f25ab17157e6762156dc1f66af66ff6bee63', '172.105.247.100', 1666323611, '__ci_last_regenerate|i:1666323611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70e0e9761d05ffb8ce313b9cd8b212acfcd68d3', '172.105.247.100', 1666323611, '__ci_last_regenerate|i:1666323611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f930dcab63da596586c071462d77c95fcf7ae17a', '172.105.247.100', 1666323611, '__ci_last_regenerate|i:1666323611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df551f25406b92bdef7202efcd632066eef80159', '35.209.115.170', 1666325796, '__ci_last_regenerate|i:1666325796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f9333d7c0ddc2a7c2c4a994f88454948cb9658', '35.209.115.170', 1666325797, '__ci_last_regenerate|i:1666325797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee0007263c9b3d197df061e9e3291c9b3360777', '35.209.115.170', 1666325797, '__ci_last_regenerate|i:1666325797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f88bb6f7f75783b8b32827581e2fbb2eef7a745b', '37.111.219.204', 1666329620, '__ci_last_regenerate|i:1666329620;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666249932\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666327727;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2ccc3067a15597d41787e7a23321724f289133', '172.105.247.100', 1666327807, '__ci_last_regenerate|i:1666327807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c99bd71a71eb346d6e07973a3c0f30d8da2fa04', '172.105.247.100', 1666327807, '__ci_last_regenerate|i:1666327807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d036b9063ca0f16cf7da307d9981b4e71dc6ecf', '172.105.247.100', 1666327808, '__ci_last_regenerate|i:1666327808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd605f8b62768951aea02711a1ad99d60fea34bb', '172.105.247.100', 1666327808, '__ci_last_regenerate|i:1666327808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90a10557d99c2738384080f78bd5afde15dd6cc', '172.105.247.100', 1666327808, '__ci_last_regenerate|i:1666327808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a009acfa91ca3601b235d20759118c745efba6', '172.105.247.100', 1666327808, '__ci_last_regenerate|i:1666327808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4349fe747cc2043f2231dfe616f0a6f295d6c2', '172.105.247.100', 1666327808, '__ci_last_regenerate|i:1666327808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa0e9d650705752e1dd81400bf7f14ccb90ac5e', '172.105.247.100', 1666327808, '__ci_last_regenerate|i:1666327808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ee30d8d3146572f1c906585f41beab9a177151', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('071069fc0ce2d8e9d5e76e7460536cf31dbf6aba', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52cfad0b4353f553dcd5e04f34ba8a43572e284e', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('698eef286f1523d8ae8e44309b2c4c5723fb3240', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e75072d28939182d0feb2025260bffd55316b91', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60d2c5ec9ca51764867fba4b53163cd18e83f7d', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c4f6d74abf61114889af0cc044a1b87d2030a8', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020269b70ce4bf9b717a1c7d8c2a866d5688b4e6', '172.105.247.100', 1666327809, '__ci_last_regenerate|i:1666327809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d74c6f05b2f1fa1e59e32ee1b5a402857ffd38d', '116.204.230.25', 1666334860, '__ci_last_regenerate|i:1666334860;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666266554\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1642c9e4e6e1daef5b31e58d67717bb99d1254e1', '37.111.219.204', 1666332844, '__ci_last_regenerate|i:1666332844;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666249932\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666332811;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e3284e2253e76f9a1bfb495d1f19d6c68627b0', '205.210.31.40', 1666329937, '__ci_last_regenerate|i:1666329937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('875e5c0243cbe955414d3713e7abf5cee66d2b2e', '172.105.247.100', 1666332007, '__ci_last_regenerate|i:1666332007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('625999591be14fea0706294906b766d6c4f2510a', '172.105.247.100', 1666332008, '__ci_last_regenerate|i:1666332007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d393e0c1c234287f32f010cf803a7e629b3ce591', '172.105.247.100', 1666332008, '__ci_last_regenerate|i:1666332008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2474a3e390f360be4775de4760671a3aa3c814', '172.105.247.100', 1666332008, '__ci_last_regenerate|i:1666332008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e17648cad3961ed176d134ac99531bf425b8b70', '172.105.247.100', 1666332008, '__ci_last_regenerate|i:1666332008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdedf0ddcc61b3e61dcfeefabf46ad35e25369c6', '172.105.247.100', 1666332009, '__ci_last_regenerate|i:1666332009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab653bb3b5a1c0cd7327cb3c94775fd8b24ce2a2', '172.105.247.100', 1666332009, '__ci_last_regenerate|i:1666332009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c775665db1d916ec4b55c9fd3ba3f3ecfd7e8b', '172.105.247.100', 1666332009, '__ci_last_regenerate|i:1666332009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65286c7ef08561571afc6f811736050148e1449c', '172.105.247.100', 1666332010, '__ci_last_regenerate|i:1666332010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff1e98a78f427b939eafceabacd103c2f156023', '172.105.247.100', 1666332010, '__ci_last_regenerate|i:1666332010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451be56f6e7ed0df21c77333d4f41a6570ec6eb8', '172.105.247.100', 1666332010, '__ci_last_regenerate|i:1666332010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3c5c4e073b5515847095d9e139f50a9c848e50', '172.105.247.100', 1666332011, '__ci_last_regenerate|i:1666332010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7ea32b5b04fbea307f3eb47b511a9c8f457dbd', '172.105.247.100', 1666332011, '__ci_last_regenerate|i:1666332011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11379956a7a21dc3e5c163000fab284a3ead568', '172.105.247.100', 1666332011, '__ci_last_regenerate|i:1666332011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bef94d20030021343ea6935f65fb778306d5cd3', '172.105.247.100', 1666332011, '__ci_last_regenerate|i:1666332011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99de5f12c0a08ac6c7d9d63d38451b04d4f462e1', '172.105.247.100', 1666332012, '__ci_last_regenerate|i:1666332012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d54d7547de92378c055a72a54809f0d2b9b10c', '37.111.219.204', 1666333276, '__ci_last_regenerate|i:1666333276;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666249932\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666332844;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371010b820463a38208edc7aa26173fc8b2fdccd', '37.111.219.204', 1666333280, '__ci_last_regenerate|i:1666333276;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666249932\";last_ip|s:14:\"37.111.216.209\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666333276;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c6d939f1b61043df266ce6f7baa60aea202ca7', '65.154.226.109', 1666333467, '__ci_last_regenerate|i:1666333467;requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b615b0d701c7d19b143ef56742d14ae6645453', '116.204.230.25', 1666335435, '__ci_last_regenerate|i:1666335435;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666266554\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6IK4Te3SMdcu7NxYjbHD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7f44827811900c1d0a7542f98dafe7933a4033', '37.111.194.197', 1666337729, '__ci_last_regenerate|i:1666337729;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666266554\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6IK4Te3SMdcu7NxYjbHD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('567180a199fa081751d13e437702e5b093d5e9c6', '172.105.247.100', 1666336207, '__ci_last_regenerate|i:1666336207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108880954cea33e2a953c3a9752ee6035e905c6e', '172.105.247.100', 1666336207, '__ci_last_regenerate|i:1666336207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b097d33ed003fe7a4e7fc3e3ead14a81b86f5875', '172.105.247.100', 1666336207, '__ci_last_regenerate|i:1666336207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd2082399e7120cdcf1941a3896fe11286b7625e', '172.105.247.100', 1666336207, '__ci_last_regenerate|i:1666336207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c4760f70138b93d632ef98e6c521ebd87d42600', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc46c1077bd0cb2fb556cfee8381679e50154bfa', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d227e722948457bfc7a42b0bb225b6950eacb39e', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65cd2cd7200aa190aea58ea59f72b3e1559cec0', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e28eb113192c6c392c32063665fcf346af87ec0', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b751cde4fb354c3b7704fbda494fac32954e8537', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525e9979590f8d54306578062db32ae3e5221bfb', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9629f7a547a2c52d4cff516a64252d666a2226fa', '172.105.247.100', 1666336208, '__ci_last_regenerate|i:1666336208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1603919aff69a08346837b6f7860e7fcb4f938c2', '172.105.247.100', 1666336209, '__ci_last_regenerate|i:1666336209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d3beb43aa93fde58481b08101c7e89deab25011', '172.105.247.100', 1666336209, '__ci_last_regenerate|i:1666336209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12c0f538e8fb0c85aaad62272a023e3587c7aef', '172.105.247.100', 1666336209, '__ci_last_regenerate|i:1666336209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d5071ca0a1e7db0d15aeb0b8d28f64bc70ca77', '172.105.247.100', 1666336209, '__ci_last_regenerate|i:1666336209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48bfdfbecdee558044cce9ffd240374e90b6ec9', '65.154.226.109', 1666337607, '__ci_last_regenerate|i:1666337607;requested_page|s:27:\"admin/purchases/suggestions\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13400d4d49ffa56e6828ff92e639f8e7f9d09cf6', '116.204.230.25', 1666338457, '__ci_last_regenerate|i:1666338457;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666266554\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6IK4Te3SMdcu7NxYjbHD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4507da54e45554484946bb1902322d743257aa2a', '116.204.230.25', 1666338689, '__ci_last_regenerate|i:1666338457;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666266554\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"6IK4Te3SMdcu7NxYjbHD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526b15a2cd8b97a02bdec9192c1e31ddb716f6ba', '172.105.247.100', 1666340407, '__ci_last_regenerate|i:1666340407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a413f2b3258bcc7abeb5643c0d6d44c104a01cab', '172.105.247.100', 1666340408, '__ci_last_regenerate|i:1666340407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39db2dcd56dfd36b2311f825ff88e0ff3dcb4b5', '172.105.247.100', 1666340408, '__ci_last_regenerate|i:1666340408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb0bc8f8684c14ba8d6c45dc4d3c9c309b7d2ce', '172.105.247.100', 1666340408, '__ci_last_regenerate|i:1666340408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73a09d113ebe589e6824384abc66fd2a2df8fae', '172.105.247.100', 1666340408, '__ci_last_regenerate|i:1666340408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff5e6d803fb8d867bb94e433d93986a7117a4ab', '172.105.247.100', 1666340409, '__ci_last_regenerate|i:1666340408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77b7589e62458f911cd3b237844d11e01c7ee917', '172.105.247.100', 1666340409, '__ci_last_regenerate|i:1666340409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967c44c71ec03efdcd8dcc9661afa81a39916c48', '172.105.247.100', 1666340409, '__ci_last_regenerate|i:1666340409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177bc4842db26ff87173c4ee20ae0e10888fe4bd', '172.105.247.100', 1666340409, '__ci_last_regenerate|i:1666340409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22324ce5eaae2ad717b5591c817b29cf9bc224b1', '172.105.247.100', 1666340409, '__ci_last_regenerate|i:1666340409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d78496f5c4283fc575c31c8afb8fdec78b7b53', '172.105.247.100', 1666340409, '__ci_last_regenerate|i:1666340409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fbde8acb4bc780fea7b4ed0d5e85662548821a5', '172.105.247.100', 1666340410, '__ci_last_regenerate|i:1666340410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc89e66835b2c392207b0fe0b9c58b84e7037895', '172.105.247.100', 1666340410, '__ci_last_regenerate|i:1666340410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a6775f8f94fb92fd6e54a394e8477c86f28be7', '172.105.247.100', 1666340410, '__ci_last_regenerate|i:1666340410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f50d34bad2297680155a1edb77092ebe1b9f76b', '172.105.247.100', 1666340411, '__ci_last_regenerate|i:1666340411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0a476042bfa6b34169eb6d38e9124b31f603b8c', '172.105.247.100', 1666340411, '__ci_last_regenerate|i:1666340411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa87a6d080f72ce8359be67d39b9e6927d69210d', '37.111.219.204', 1666342774, '__ci_last_regenerate|i:1666342774;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de48b09800251c5350fe6dbffba8197a187cdcb', '37.111.219.204', 1666344201, '__ci_last_regenerate|i:1666344201;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666342818;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b632cb915260d588a8a59efc4dd9ab060e9c1b', '37.111.219.204', 1666344633, '__ci_last_regenerate|i:1666344633;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666344237;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946a47072bb14d8cae8011bfffabe8e804e4f216', '172.105.247.100', 1666344607, '__ci_last_regenerate|i:1666344607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f754586cb92075d69e4c10a3c083a6fb692169d4', '172.105.247.100', 1666344608, '__ci_last_regenerate|i:1666344607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d70c4890cc006879c193fd6c9600e5b4c29e5b', '172.105.247.100', 1666344608, '__ci_last_regenerate|i:1666344608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e1a09af9e6e3e9b9bd725f09b6ce66e7fe8d64e', '172.105.247.100', 1666344608, '__ci_last_regenerate|i:1666344608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd674920aa670ecf305a7656ae59f75654fb017', '172.105.247.100', 1666344608, '__ci_last_regenerate|i:1666344608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bce6fe4ff5231dd55de7f2507ff4cf213235ae1', '172.105.247.100', 1666344609, '__ci_last_regenerate|i:1666344609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770a11335bfcdc4fead56cf7cfff62ea08ff3eb8', '172.105.247.100', 1666344609, '__ci_last_regenerate|i:1666344609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c146e5f239c477aea82b14ca10bc05bc9892e13', '172.105.247.100', 1666344609, '__ci_last_regenerate|i:1666344609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5261458418ec2c41b621a88f20270d2ed6bfdd43', '172.105.247.100', 1666344610, '__ci_last_regenerate|i:1666344610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d8e25cc35c539fc0e04dc61836020b65b1a5e61', '172.105.247.100', 1666344610, '__ci_last_regenerate|i:1666344610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c94dee1c1cefb1eb35bf53937f2f1622d739fe', '172.105.247.100', 1666344610, '__ci_last_regenerate|i:1666344610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19e786635cb93b7db0905833ab9d811bfdb2542', '172.105.247.100', 1666344611, '__ci_last_regenerate|i:1666344611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f94934c6937660988074b41a2f9b873cb1f723', '172.105.247.100', 1666344611, '__ci_last_regenerate|i:1666344611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450521a006e191f49dd50d712ecd999c3c222cfd', '172.105.247.100', 1666344611, '__ci_last_regenerate|i:1666344611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9864576f8ed7b8d01e37b6a87dce1229184d6e52', '172.105.247.100', 1666344611, '__ci_last_regenerate|i:1666344611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('104f18afe62492f2aadef812c1d97711a52bae5d', '172.105.247.100', 1666344612, '__ci_last_regenerate|i:1666344612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01a35382dd697bdafa66e93298bb173323ff6d2', '37.111.219.204', 1666347784, '__ci_last_regenerate|i:1666347784;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666347776;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd79c1c2c7ce082837c1448af746aa10b14590d7', '37.111.219.204', 1666348104, '__ci_last_regenerate|i:1666348104;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666347785;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('204cf453a3ccc5e0f833c73a3b97dd8225e6209f', '37.111.219.204', 1666352747, '__ci_last_regenerate|i:1666352747;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666348142;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8b9693334a95e58b8397284cfce1d897926d82', '172.105.247.100', 1666348807, '__ci_last_regenerate|i:1666348807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7207e9902e58f3adb814eccc8960bae7bf41e3dc', '172.105.247.100', 1666348809, '__ci_last_regenerate|i:1666348809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0d64306170cd1c047bd7172f9854c3003ae1480', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d12595b91de1aef07e206502a35240271afdb3a', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7075fcc2d51d7cece52e0636531b777f908ee29b', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56eecb143f2074f89280cc0ed0bc75f0b8094ab2', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8731185c96ed285fdac75328a4b9eac4f609eb0', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984e46f53d828e3afb55c5cf1d1890d806c6ab70', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2745254c28eee9e473d51d0ff8d19e982b49caea', '172.105.247.100', 1666348810, '__ci_last_regenerate|i:1666348810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86df261dac3b2497ce87bcddb93173f845a6685f', '172.105.247.100', 1666348811, '__ci_last_regenerate|i:1666348811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3feb8fc61f29a2aff50952587d6e983464eccb64', '172.105.247.100', 1666348811, '__ci_last_regenerate|i:1666348811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48bc4b1650dd206a32dc68679f96c6e08e122b3b', '172.105.247.100', 1666348811, '__ci_last_regenerate|i:1666348811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c18a591da16da815ce2fc0b96be3d3ca4e8303', '172.105.247.100', 1666348811, '__ci_last_regenerate|i:1666348811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa4eafe6a76b7a2126a7dc10046f152ca6238954', '172.105.247.100', 1666348811, '__ci_last_regenerate|i:1666348811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c049bacfe40f396dc4795a9b3df69b411a24334', '172.105.247.100', 1666348811, '__ci_last_regenerate|i:1666348811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec84d9964d459ac37799ec9c09c1dac5b4333340', '172.105.247.100', 1666348812, '__ci_last_regenerate|i:1666348811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8207863f0c7a251a9aa768b6afd34abd3d1030c4', '116.204.230.25', 1666351643, '__ci_last_regenerate|i:1666351598;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666329187\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a3cf4ce0fb6e448ecbf28c72a280fcb7c65323', '37.111.219.204', 1666355677, '__ci_last_regenerate|i:1666355677;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666352783;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aaf0b93468c1ad2b0dd68346e856e006f4d6aa7', '172.105.247.100', 1666353007, '__ci_last_regenerate|i:1666353007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbc0a0ab50d9af62f4226437b3246050a4a92c1', '172.105.247.100', 1666353009, '__ci_last_regenerate|i:1666353009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6db92102fcb5614b6db28c86bc5835754d2fc42', '172.105.247.100', 1666353009, '__ci_last_regenerate|i:1666353009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4106ca23a09feb04fb7c2fdd4279bfab737c5967', '172.105.247.100', 1666353009, '__ci_last_regenerate|i:1666353009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253c31622f532becba9b8c89087f1074ca939557', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1f618a1a0991d08f2c7fa9050cc123d2c4aa85b', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ebdec94bdc837d0ef4072e7de2069eb6b2b9aa', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095f8b060810f39457ff2f206ca1682640890ee0', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf13aa51e3aa6051c1b2c55031c8272c8d9352d', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2155f235d22766a2e1a82a0654c4efe4f4eb219', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b711ba33d854b25c83887e62194ca422b1f2cb91', '172.105.247.100', 1666353010, '__ci_last_regenerate|i:1666353010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0ca2dbb077810b2c84b5b3ab8827782f2f11fd', '172.105.247.100', 1666353011, '__ci_last_regenerate|i:1666353011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b979ec5d5df9902ae70d04f584a2404763b024a5', '172.105.247.100', 1666353011, '__ci_last_regenerate|i:1666353011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56ed777c9adb05c00f1d40c87f737cecbb3d10b', '172.105.247.100', 1666353011, '__ci_last_regenerate|i:1666353011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ba9fecd2a6b05ddd85e2fc3ec2ebc907beff11', '172.105.247.100', 1666353011, '__ci_last_regenerate|i:1666353011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825f0aef4a063209b471a41dd41bcfa9dc09ab14', '172.105.247.100', 1666353011, '__ci_last_regenerate|i:1666353011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097d010969413b53890e4dbfa858a205a5def654', '37.111.219.204', 1666357104, '__ci_last_regenerate|i:1666357104;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666355696;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7649ba86ae71798732c7f067cf47d361e2f46e', '37.111.219.204', 1666358241, '__ci_last_regenerate|i:1666358241;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666357141;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd66ddc5d3c295432046fb31be629d446a04f16a', '172.105.247.100', 1666357209, '__ci_last_regenerate|i:1666357209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66e163cb8b5ac2607183691e6fcc8c4aa21400e', '172.105.247.100', 1666357209, '__ci_last_regenerate|i:1666357209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0848fcf0cc1588d70142cea47ab2e89d75046d8', '172.105.247.100', 1666357210, '__ci_last_regenerate|i:1666357210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac8b9cb4a1e3cec2ac38b6d88b819353b788cf6', '172.105.247.100', 1666357210, '__ci_last_regenerate|i:1666357210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8311a657a10fc4b6c84cba8676d08460359b5fd2', '172.105.247.100', 1666357210, '__ci_last_regenerate|i:1666357210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac654bdbf25b40b419d4da9d037db39ae081baef', '172.105.247.100', 1666357210, '__ci_last_regenerate|i:1666357210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab3c6f1ec604b42d525de029f494737b9484e5a', '172.105.247.100', 1666357211, '__ci_last_regenerate|i:1666357211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c1b2fd8e2cf8d05f47ed6265850b94261998be', '172.105.247.100', 1666357211, '__ci_last_regenerate|i:1666357211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d1016bd3d6ed851c459a1205a6a8304b0675c9', '172.105.247.100', 1666357211, '__ci_last_regenerate|i:1666357211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7199ecae30db68377a65172112bac34d3c44ac0', '172.105.247.100', 1666357211, '__ci_last_regenerate|i:1666357211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e257fb3885e889691e0be69bf65777464b36202', '172.105.247.100', 1666357211, '__ci_last_regenerate|i:1666357211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852d3907b072b42bdcc51f33b675c3a3cd241048', '172.105.247.100', 1666357212, '__ci_last_regenerate|i:1666357212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d896e0a9f14ab71209fc0aeda6f05092668000', '172.105.247.100', 1666357212, '__ci_last_regenerate|i:1666357212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c6fcb726100fda96ecfc0ef6e8fd3b2b6ffab1', '172.105.247.100', 1666357212, '__ci_last_regenerate|i:1666357212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254d22cc1d8cf3506a77fc5592bfe1901171436f', '172.105.247.100', 1666357213, '__ci_last_regenerate|i:1666357213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00435142a80e254ee5d1d5dc67a69493ae525526', '172.105.247.100', 1666357213, '__ci_last_regenerate|i:1666357213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b409ef5e8093315f23ca9f8fe416bc938e8a42', '37.111.219.204', 1666359121, '__ci_last_regenerate|i:1666359121;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666358376;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf97f5d9d353b170104368ff4e33f56326b64a7b', '37.111.219.204', 1666362479, '__ci_last_regenerate|i:1666362479;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666362471;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997b36cfabcbc55da16d9699336fc925bcd1992f', '172.105.247.100', 1666361409, '__ci_last_regenerate|i:1666361409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc629db636e5283dbd0e65f9e5be8c7fd45f1a69', '172.105.247.100', 1666361409, '__ci_last_regenerate|i:1666361409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e359eceb2629f2bad63d1435b62358ae54fea451', '172.105.247.100', 1666361410, '__ci_last_regenerate|i:1666361409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0fe41391b273d28a27c6cc8b2015bae889890b', '172.105.247.100', 1666361410, '__ci_last_regenerate|i:1666361410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765b6e60945e49416a5e43c15e91851a2f34713c', '172.105.247.100', 1666361410, '__ci_last_regenerate|i:1666361410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1a250eb032cd7b7ea5a251cefe484a7264bd06', '172.105.247.100', 1666361410, '__ci_last_regenerate|i:1666361410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b054aff54efd5a48d8fcb7ef2c10ca1a6ed409', '172.105.247.100', 1666361410, '__ci_last_regenerate|i:1666361410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b913abb69a67badcc062825eb3562797a01971', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba95c8061eec99bb590eb405394fc3000aa3e968', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5700f68452f174c64c49fdf26259fc7add33f0e7', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfbeffb134e56b2821bc7420e21e8ba8ba3e194', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddef38fed35c93e80d50e00079f9269036338f34', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73dd3727be8f91da1613d9187d7d51db714c736d', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017af79a92fd70a31456c6c3decf1af3f1d3ab70', '172.105.247.100', 1666361411, '__ci_last_regenerate|i:1666361411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f647854aa78bbd73bf13e8f9998c0fcbf25a1c90', '172.105.247.100', 1666361412, '__ci_last_regenerate|i:1666361412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c9b048c47ef28b6e86500454aeda27f79e2f77', '172.105.247.100', 1666361412, '__ci_last_regenerate|i:1666361412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596ec10135f77e7fd22c6b5dd494583ccb29a2e5', '37.111.219.204', 1666363326, '__ci_last_regenerate|i:1666363326;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666363312;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543942eccc1b7ef93c17452a413c2bf8c05c3304', '37.111.219.204', 1666364031, '__ci_last_regenerate|i:1666364031;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666363326;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56eaf0c2d07259b12707adf03332c6207e48c0c3', '37.111.219.204', 1666365437, '__ci_last_regenerate|i:1666365437;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666365363;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643a9804eb50a5a2d1b30d8018af45b7e84bfc71', '37.111.219.204', 1666366125, '__ci_last_regenerate|i:1666366125;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666366118;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5de0a6a4f2cd7f9a8f7a586fbf7b6f2060587c', '172.105.247.100', 1666365608, '__ci_last_regenerate|i:1666365608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759d8b7e76692b38087431fc32863b62f5bf22bb', '172.105.247.100', 1666365610, '__ci_last_regenerate|i:1666365610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('762ba56e25c4ad7a1077f014a07bf782d334d930', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba9a1313040e1356188e40d3c46e4d5531b5b34', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4376a7dcd1307420fb4f49cdc8b6a797b0964fb5', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf689b8ccf12c98f21845d1c76ca95993f6d615', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc5f461f6537465b8a2df601685854d039bfe4b', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5cf042bb2233ee558643a98400142f65ee3d17c', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d94adc91812de53dfb62108c4200bb89d25c2c01', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e9c8d78fecd7e3037bbb4467236c4d19563be8', '172.105.247.100', 1666365611, '__ci_last_regenerate|i:1666365611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d4dea851db555e187bbe046e4db67bc4b24f5d', '172.105.247.100', 1666365612, '__ci_last_regenerate|i:1666365611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e91cec043c0389b25a39382540b040a2f4c9c9a', '172.105.247.100', 1666365612, '__ci_last_regenerate|i:1666365612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c76d3c96bc4ddb442ed7489f882d20d90d8dbea', '172.105.247.100', 1666365612, '__ci_last_regenerate|i:1666365612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96581c13b3dffed0f802df8ba1e37e39fc354de5', '172.105.247.100', 1666365612, '__ci_last_regenerate|i:1666365612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0873ec507cb695f2f0df9eccdcd650c19adc1db4', '172.105.247.100', 1666365612, '__ci_last_regenerate|i:1666365612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9eaeb385ced0e09a19983f5d9b38b7fc9e2880', '172.105.247.100', 1666365612, '__ci_last_regenerate|i:1666365612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c40fe9f02621571a2f31a04944ab88276b3589', '37.111.219.204', 1666366429, '__ci_last_regenerate|i:1666366429;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666366130;register_id|s:3:\"224\";cash_in_hand|s:10:\"14260.0000\";register_open_time|s:19:\"2022-10-20 20:30:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e775848b2e7ce4722ee887100939eead58fe98', '37.111.219.204', 1666366447, '__ci_last_regenerate|i:1666366429;requested_page|s:14:\"admin/products\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666327639\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666366447;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0038b03f455e184508a17d4ebc2e2a101c0e963', '172.105.247.100', 1666369807, '__ci_last_regenerate|i:1666369807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfdc11c82a3e30dfe14de42de57bf61864d25237', '172.105.247.100', 1666369808, '__ci_last_regenerate|i:1666369808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea8cf9d39c9805220afa9309632a960c247e4f67', '172.105.247.100', 1666369808, '__ci_last_regenerate|i:1666369808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a968d620083a2b339b2d0e717c74b491a58203d8', '172.105.247.100', 1666369808, '__ci_last_regenerate|i:1666369808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b414cf60d2da882e2046ac8be16f357ec0bec1', '172.105.247.100', 1666369809, '__ci_last_regenerate|i:1666369809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8cb6067e5a9b45fcd342d9a73084f12df51b70', '172.105.247.100', 1666369809, '__ci_last_regenerate|i:1666369809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a13460d932a8791f86f82313c9578556d7849fc', '172.105.247.100', 1666369809, '__ci_last_regenerate|i:1666369809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcb8929fdbc29ff49d541494b36053c49c144fb0', '172.105.247.100', 1666369809, '__ci_last_regenerate|i:1666369809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e022fd225b07c79a10d29b1706e4726d7c05be', '172.105.247.100', 1666369810, '__ci_last_regenerate|i:1666369810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4764a1fd28c5ae02090ef65d5359d07049d593', '172.105.247.100', 1666369810, '__ci_last_regenerate|i:1666369810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5ceb5df3ea977a0020e1adbcaf0daab802f675', '172.105.247.100', 1666369811, '__ci_last_regenerate|i:1666369811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389ad42b5b392cdf28e4d6d725dfb8f04d20cfda', '172.105.247.100', 1666369811, '__ci_last_regenerate|i:1666369811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d603cc3e452bc99a79448ffa468635925f8fe34', '172.105.247.100', 1666369811, '__ci_last_regenerate|i:1666369811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f910609f836f0b143537f5795c4d41db5946bc1', '172.105.247.100', 1666369811, '__ci_last_regenerate|i:1666369811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccab0094640f39eb8e1e6427113e00fc0f87ec96', '172.105.247.100', 1666369812, '__ci_last_regenerate|i:1666369812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03f92e0f7cd2bc5677b14bd13802e630ba2a762', '172.105.247.100', 1666369812, '__ci_last_regenerate|i:1666369812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e127cbee68ab472123d27dc962213e51dac7d7', '172.105.247.100', 1666374007, '__ci_last_regenerate|i:1666374007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b01e3de9012437255bf009e49589990a8f88457', '172.105.247.100', 1666374007, '__ci_last_regenerate|i:1666374007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e9ba9c2339f9968f1df9a7ab1808739445eb41', '172.105.247.100', 1666374008, '__ci_last_regenerate|i:1666374008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b1c2a60c9c45d3acc957dc57e4abba96429a99', '172.105.247.100', 1666374008, '__ci_last_regenerate|i:1666374008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cea3364eef1bebb563cdfa1b5d3da7e51c81965', '172.105.247.100', 1666374008, '__ci_last_regenerate|i:1666374008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea317b4f81fa3460f95f60660545fcbb700c676', '172.105.247.100', 1666374008, '__ci_last_regenerate|i:1666374008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c338b10613946891133272112ec453adec3f3c58', '172.105.247.100', 1666374008, '__ci_last_regenerate|i:1666374008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce62e7e2c847409f246c8eea1c01a02c4b8f7d6', '172.105.247.100', 1666374008, '__ci_last_regenerate|i:1666374008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865ab6887a532e4beb9b6b9d50d8f96a97f9f4c1', '172.105.247.100', 1666374009, '__ci_last_regenerate|i:1666374009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e461a43c0bf6ace3d05cb3515e9b95b7fe6c9a1', '172.105.247.100', 1666374009, '__ci_last_regenerate|i:1666374009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ac8b985d2c8042d4c90162eba6d42fade99e6e', '172.105.247.100', 1666374009, '__ci_last_regenerate|i:1666374009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2180ffe34d6d3421256ff3eb44f4b343a37af07', '172.105.247.100', 1666374009, '__ci_last_regenerate|i:1666374009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f56276d935798a6b22ad05013cf8e4d7d79826b', '172.105.247.100', 1666374009, '__ci_last_regenerate|i:1666374009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394e2b0bb239f6fb92ec6256f079cdec6878dc35', '172.105.247.100', 1666374009, '__ci_last_regenerate|i:1666374009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97b6d270c44ec5a954098f4ea5871667a0ffee4', '172.105.247.100', 1666374010, '__ci_last_regenerate|i:1666374010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9285c5f2e795ab4db5d1df63895affbeb6195cc8', '172.105.247.100', 1666374010, '__ci_last_regenerate|i:1666374010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379bc617e2ade3a70c7aab7e8d981eaaa6f352ed', '172.105.247.100', 1666378209, '__ci_last_regenerate|i:1666378209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed8bc09b6ca6c208a84a2ce0a17fdf4d6cfa147', '172.105.247.100', 1666378209, '__ci_last_regenerate|i:1666378209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d0dd4210413e49e749c36e14a554d371df430f', '172.105.247.100', 1666378209, '__ci_last_regenerate|i:1666378209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e48c3282142ff5beecc32e60b1cb9a96b11911d', '172.105.247.100', 1666378209, '__ci_last_regenerate|i:1666378209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b6e4cfd0eef346440af57704e64c674fe74e660', '172.105.247.100', 1666378209, '__ci_last_regenerate|i:1666378209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa39be5039d8139f9d42a3443baba05c626cdddc', '172.105.247.100', 1666378209, '__ci_last_regenerate|i:1666378209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca0b779d1e7c381c661b0ea79ae9732602fc2ca', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac43152072b1e5f2ea1eb548b87bc29b5e8a11e6', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a61086a112271f5ac2a820ff105c3343654b4db', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8eeedab507d1012962e1875dbad647ca5e6aca', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ca03c6b67afbfaf36026a4a5d6dbe4a55c5b63', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1939aa0ec173c91689059a8fee20342c9d98146b', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eea766d70f95887c0f2c67beded681d53f2f40b', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622c426274c1845a180b7e74e4df68821c0d9a63', '172.105.247.100', 1666378210, '__ci_last_regenerate|i:1666378210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e720f1f88a4b0d0a6a1b77649b609f12b2ed12c5', '172.105.247.100', 1666378211, '__ci_last_regenerate|i:1666378211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab81876e91a9ba29843ac9c8aa9b50cec74d4a07', '172.105.247.100', 1666378211, '__ci_last_regenerate|i:1666378211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce3d9274fb8cb827af22ae8127d2e35e290166e', '172.105.247.100', 1666382409, '__ci_last_regenerate|i:1666382409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16aa1b0db28ef2db5f11d2e542484716c9ddaeb4', '172.105.247.100', 1666382409, '__ci_last_regenerate|i:1666382409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fa822bae30336f686ef6b052ef9e063d1a083b', '172.105.247.100', 1666382409, '__ci_last_regenerate|i:1666382409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d0369a39a6b7118ae30744f37d0b6ac523daa76', '172.105.247.100', 1666382409, '__ci_last_regenerate|i:1666382409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ecc998bc99095bef6709f88c042ada32062b88', '172.105.247.100', 1666382409, '__ci_last_regenerate|i:1666382409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4bcb3b5f0303f6450ba4fd71b7428d7aac40a3', '172.105.247.100', 1666382409, '__ci_last_regenerate|i:1666382409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091ce3864ebd8232ab6be5462da4417425aa27f6', '172.105.247.100', 1666382410, '__ci_last_regenerate|i:1666382410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac59653dc03a300ec22b2e0e6fc370d6ed4d8532', '172.105.247.100', 1666382410, '__ci_last_regenerate|i:1666382410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c35135f48e841156df13f464ada80fd98154e9a', '172.105.247.100', 1666382410, '__ci_last_regenerate|i:1666382410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6aed272ffaae2701081919800b1f701e931b962', '172.105.247.100', 1666382410, '__ci_last_regenerate|i:1666382410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41f80faf9c487bda3c53c84f203da44a14f097b', '172.105.247.100', 1666382410, '__ci_last_regenerate|i:1666382410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b239c47687c1c56273ecb317f776dcedb2055e8b', '172.105.247.100', 1666382410, '__ci_last_regenerate|i:1666382410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f95a526792dc1dbea7f1e6f134c45a34b404dbb', '172.105.247.100', 1666382411, '__ci_last_regenerate|i:1666382411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f222d17ff9a4174d198e19a995e8f906e46a3c77', '172.105.247.100', 1666382411, '__ci_last_regenerate|i:1666382411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b22f5f045f17a35003be1eabd9f51a3e4c9e931', '172.105.247.100', 1666382411, '__ci_last_regenerate|i:1666382411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66186c7586e83ad856267bd26b1d6925bd19a14', '172.105.247.100', 1666382411, '__ci_last_regenerate|i:1666382411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa7728703d2fdf83e4de2f9a2cadfae240a5d324', '172.105.247.100', 1666386607, '__ci_last_regenerate|i:1666386607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e3fcd0862dfc260b205457b1aaf1f86f1e59179', '172.105.247.100', 1666386609, '__ci_last_regenerate|i:1666386609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5afddda7f7424fec7233370a4a9c6cb88eac05a', '172.105.247.100', 1666386610, '__ci_last_regenerate|i:1666386610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a1bb7344f5129763931d9b2b079fd01d1342ad', '172.105.247.100', 1666386610, '__ci_last_regenerate|i:1666386610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1784b93eec2ca909d49cc8d73cf2be1d76a82abc', '172.105.247.100', 1666386610, '__ci_last_regenerate|i:1666386610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564b359805cfec8ec4f74ba9ef8cd22cd4b532b6', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47547cb9f43f2f5b7b7248a19b3cd7187673930d', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8c2c8208bcda6dfc90e8247d9296e06e1c01f2', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('894f6950f59da10baf793f5dc1f235d29a9ecce9', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c94696480ba4ee8ad2cf5653f714e54a3afaf8', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67d07bd3214a5931b65a722bead445ad4c31b0c', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15040c57c16e35334f00c71f4153a065984facff', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('127a47d6cc51a912f727bacbb71bc7ac4ac44b3c', '172.105.247.100', 1666386611, '__ci_last_regenerate|i:1666386611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c43eba99fd71b38c675abbc9b6822ff7044266f', '172.105.247.100', 1666386612, '__ci_last_regenerate|i:1666386612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a1e24855c3c1446ef740365a1aeb160f19c240', '172.105.247.100', 1666386612, '__ci_last_regenerate|i:1666386612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66272dbf49757cda7f82d18466cca52b469dd19', '172.105.247.100', 1666386612, '__ci_last_regenerate|i:1666386612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b00b169932a79bb65ce06b074cd08619ae5b4cd9', '172.105.247.100', 1666390809, '__ci_last_regenerate|i:1666390809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83aea1d4c53409489caabf6099cd9f45314a9ed8', '172.105.247.100', 1666390809, '__ci_last_regenerate|i:1666390809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e808497b6a52dce50b9fe19d21440423834a42e', '172.105.247.100', 1666390809, '__ci_last_regenerate|i:1666390809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41112b9bb90dcb15cc7749e60fc5e23f6c6361bb', '172.105.247.100', 1666390810, '__ci_last_regenerate|i:1666390810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb559304cfcb4527ca61c6e2da90057a72d3ea0', '172.105.247.100', 1666390810, '__ci_last_regenerate|i:1666390810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ec1c4f53f5ed2e5cdbc24a82303df15c90459d', '172.105.247.100', 1666390810, '__ci_last_regenerate|i:1666390810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0254de3ea125d02dc0bd768775225d05efebc263', '172.105.247.100', 1666390811, '__ci_last_regenerate|i:1666390810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da523cbef7b4c2cc696558515b7d7bd7c181e6e', '172.105.247.100', 1666390811, '__ci_last_regenerate|i:1666390811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b65e540000651e917a46705a3d4daace0ccbdd', '172.105.247.100', 1666390811, '__ci_last_regenerate|i:1666390811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a491aba41e803f9df487971e38563e94b3294f6c', '172.105.247.100', 1666390812, '__ci_last_regenerate|i:1666390812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87fb9582e8a32c5b5b4bf43a8daccbed5fada51c', '172.105.247.100', 1666390812, '__ci_last_regenerate|i:1666390812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25360d21bbbf002088b86777d9c19121e918056b', '172.105.247.100', 1666390812, '__ci_last_regenerate|i:1666390812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ed961d8db88abd5711f2391b6e75ac669128be', '172.105.247.100', 1666390813, '__ci_last_regenerate|i:1666390813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7cb66a37141c5be88cc7211e3caa4b52075dfd', '172.105.247.100', 1666390813, '__ci_last_regenerate|i:1666390813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b85a9e37f594e8168369dd5fe9031e0c51dcce5', '172.105.247.100', 1666390813, '__ci_last_regenerate|i:1666390813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9668ecc0e5248be83af58821a717dea83b07926', '172.105.247.100', 1666390814, '__ci_last_regenerate|i:1666390813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bec5b497a7bf0b418e164404d7742780ba17048', '124.158.12.149', 1666391688, '__ci_last_regenerate|i:1666391688;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55be3d0699881fdf9bc9232d2f2be99c7fe40bc1', '124.158.12.149', 1666391689, '__ci_last_regenerate|i:1666391689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae4bde143080c963b89bf6547fe17e72b3c0f80', '124.158.12.149', 1666391690, '__ci_last_regenerate|i:1666391690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc1c92b86de6a138e73b2560348662d7056f6a6', '124.158.12.149', 1666391691, '__ci_last_regenerate|i:1666391691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8de04db024ced47ad98e98723a8fa31333ec289', '172.105.247.100', 1666395008, '__ci_last_regenerate|i:1666395008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098e783b95e004a0b91aa1a56eda98810f6d49f6', '172.105.247.100', 1666395008, '__ci_last_regenerate|i:1666395008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81fe452e33c87edb2db46d320d80a3a2806b617', '172.105.247.100', 1666395009, '__ci_last_regenerate|i:1666395009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74aad13a2d9374aac63497e59e73d002f0289363', '172.105.247.100', 1666395009, '__ci_last_regenerate|i:1666395009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2047bce7dcc0c24133c5eb456e726f939a46984', '172.105.247.100', 1666395009, '__ci_last_regenerate|i:1666395009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b0bb823517e6f5aa0c710716fff46572dd87360', '172.105.247.100', 1666395009, '__ci_last_regenerate|i:1666395009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aea49518659296a94da8ff842eb448b2f7861bc1', '172.105.247.100', 1666395010, '__ci_last_regenerate|i:1666395010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b1600aa2083854777544f1f355c55beead0a5c', '172.105.247.100', 1666395010, '__ci_last_regenerate|i:1666395010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44eef1319b201475cc7ad73127622edc9fb3ea90', '172.105.247.100', 1666395010, '__ci_last_regenerate|i:1666395010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d2773b3511996ceee0698f53cfcd423babf39f', '172.105.247.100', 1666395011, '__ci_last_regenerate|i:1666395011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7148458cf722200bdc8748fb2e3267269f15c65c', '172.105.247.100', 1666395011, '__ci_last_regenerate|i:1666395011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342ea655eb85741a1ba12cb51762d0e45e52d833', '172.105.247.100', 1666395011, '__ci_last_regenerate|i:1666395011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56dbddb1ce9111d8bfb9247190290a3c59013097', '172.105.247.100', 1666395012, '__ci_last_regenerate|i:1666395012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d4fdc2d44c2bb973fd426facd18e87ccab9f882', '172.105.247.100', 1666395012, '__ci_last_regenerate|i:1666395012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15caf23fddb750a1aef4b10a8ce065708b9adbe7', '172.105.247.100', 1666395012, '__ci_last_regenerate|i:1666395012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddeffc1adbcab88bcc295ff688153156acbe536', '172.105.247.100', 1666395012, '__ci_last_regenerate|i:1666395012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e50cee4315a2d56130d60451ee00cd1ae483c07', '172.105.247.100', 1666399207, '__ci_last_regenerate|i:1666399207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759e75afae2db807e46cd4ebf1ad4d9f06d45140', '172.105.247.100', 1666399207, '__ci_last_regenerate|i:1666399207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c923c6ee80f3c1f127d5817ceef71e7a87a7c12', '172.105.247.100', 1666399208, '__ci_last_regenerate|i:1666399208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a797bfb333c72dc47a263270c57645afe5d17c', '172.105.247.100', 1666399208, '__ci_last_regenerate|i:1666399208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4b58602cbdee7d28d3a89695c6244c1d81e1bc', '172.105.247.100', 1666399208, '__ci_last_regenerate|i:1666399208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83766f4aed0d46e8431d6d059a79a60f2c1c5cf8', '172.105.247.100', 1666399208, '__ci_last_regenerate|i:1666399208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63fa96098f910cad8d14596c661ef2031763d7f', '172.105.247.100', 1666399208, '__ci_last_regenerate|i:1666399208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a94a0964ede7919667c625ce6b0efd50329ff00', '172.105.247.100', 1666399208, '__ci_last_regenerate|i:1666399208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7c20c2b4b35fcd04761b6c6041516c10cf8502', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4dc2573dda0d46735a6f1149c3bf1d8e7e8be6', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a53c502e8f49d554e641372f8b7fcbc1fc0b0f', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d77792662a5fb13e6cbf51cbdb185809ae1e2df', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ff49051fb86d876b447977c31eeaed6dc50ee4', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36460683b90e64d2c91addb3757004bc231663bc', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9da62571c2bbd4e00bb4a93db221ae41ea34693', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e59ff6ef1ffcc46152c6c70ec6e6ca14d58c43e', '172.105.247.100', 1666399209, '__ci_last_regenerate|i:1666399209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c86130ba82b627aff609b68591baaf06a886daa', '172.105.247.100', 1666403408, '__ci_last_regenerate|i:1666403408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0246aaac296e6db91a3889d76848ba44335b11eb', '172.105.247.100', 1666403410, '__ci_last_regenerate|i:1666403410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c8ac29f77aa9099dd75f30aaef9205ebb2abff', '172.105.247.100', 1666403411, '__ci_last_regenerate|i:1666403411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eafbc2b082a19b5d98468706661be6456170d6d', '172.105.247.100', 1666403411, '__ci_last_regenerate|i:1666403411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0df495ce686eb97fc54626b44aff794806131c', '172.105.247.100', 1666403411, '__ci_last_regenerate|i:1666403411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3371f675796ead7a3e0bdeb2080d777ed8336022', '172.105.247.100', 1666403411, '__ci_last_regenerate|i:1666403411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396dfdf6f0a235f0667e998356798bdc2b3438ac', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d157d6bc88b673e705b22e26ee70fc0066d6a91b', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24e618418b9345cae18ad31751c6f770ed8be6f8', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffef87048a921d7b8836ddf692211d25e7ada6bf', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86420e5d998bf3d85f558cab1093b2ccabfb654e', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919d93ad2f78c4f4127725c5267d01e8daa82685', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8a54f392328398abe3234618db40e1b3755070', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8760517c8f9ae22f57b75c32471039e5659f47a6', '172.105.247.100', 1666403412, '__ci_last_regenerate|i:1666403412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4929864f8b1185a3ee552abea9d653d8a500d65', '172.105.247.100', 1666403413, '__ci_last_regenerate|i:1666403413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162e09bb8943ca349ab05281028469503c7d8191', '172.105.247.100', 1666403413, '__ci_last_regenerate|i:1666403413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb7791ffd1081b7453ba711ff4833d433ea36ad', '172.105.247.100', 1666407608, '__ci_last_regenerate|i:1666407608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bef411c2a206d3ee546e162f706b5a737bea3bb', '172.105.247.100', 1666407608, '__ci_last_regenerate|i:1666407608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caae33fca34fe240d6a16370b2b7933170377b1c', '172.105.247.100', 1666407608, '__ci_last_regenerate|i:1666407608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fb31c6e9b14dbca98bc0b17d3e569e808f6c34', '172.105.247.100', 1666407609, '__ci_last_regenerate|i:1666407609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf8c8407bcb8853a0efe08b3b782b0681f39076', '172.105.247.100', 1666407609, '__ci_last_regenerate|i:1666407609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb7f637c83f981910dd83113a773cb89f26ebec', '172.105.247.100', 1666407609, '__ci_last_regenerate|i:1666407609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae55b1af42cb2b1fbd8bedf9a3e8332b0023bfcd', '172.105.247.100', 1666407609, '__ci_last_regenerate|i:1666407609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4937f85e75a11c1af80a8903b0eb0745b34e82cf', '172.105.247.100', 1666407610, '__ci_last_regenerate|i:1666407610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7760bd43376d06f41dd7d7614ec860bc1a4067d', '172.105.247.100', 1666407610, '__ci_last_regenerate|i:1666407610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e27c4320a500a266431d340b96913c428c8dc982', '172.105.247.100', 1666407610, '__ci_last_regenerate|i:1666407610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b7a57fc24a17c4318cce1775de18f5e8fe44cb', '172.105.247.100', 1666407610, '__ci_last_regenerate|i:1666407610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d815f087ea1b045db2f2120ea7b23314b8011bf', '172.105.247.100', 1666407611, '__ci_last_regenerate|i:1666407611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd559bcf9f3bc6a102418c6b0fca7197dcf321a', '172.105.247.100', 1666407611, '__ci_last_regenerate|i:1666407611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55c7d651e7dab88ab475d2c99bcd23b1b5c307d', '172.105.247.100', 1666407611, '__ci_last_regenerate|i:1666407611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29a3e1034dbe6a3d58f6575848958142c7c057a', '172.105.247.100', 1666407612, '__ci_last_regenerate|i:1666407612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316ea554246f807fd7810513b99d03d84c01fbfd', '172.105.247.100', 1666407612, '__ci_last_regenerate|i:1666407612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7cdf93d1f0260a6ad05ed809756f84dced0cd11', '172.105.247.100', 1666411807, '__ci_last_regenerate|i:1666411807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925e656673269cee41d57f9474c97a2c629bf4bb', '172.105.247.100', 1666411807, '__ci_last_regenerate|i:1666411807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1996cf2542d220897d5280ee0cc572353a0846', '172.105.247.100', 1666411807, '__ci_last_regenerate|i:1666411807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7bfa728b06eafc4a1717692f6054406154f01ca', '172.105.247.100', 1666411808, '__ci_last_regenerate|i:1666411807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adab1eced6898d275ff42519272f1555b506626f', '172.105.247.100', 1666411808, '__ci_last_regenerate|i:1666411808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f601ba4acc3b1b134ae80f73487c78147cc33eed', '172.105.247.100', 1666411808, '__ci_last_regenerate|i:1666411808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38839a547d59c573ad91a1e9815c11449bf4e5d', '172.105.247.100', 1666411808, '__ci_last_regenerate|i:1666411808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c1fbb8b8f39268665d79d981181db1f1b37f25', '172.105.247.100', 1666411809, '__ci_last_regenerate|i:1666411809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2d6b1393307f29044ae8154d577659d11c62ae', '172.105.247.100', 1666411809, '__ci_last_regenerate|i:1666411809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e2b425c3de5935f1cadf930ca32f1bdbe57df9', '172.105.247.100', 1666411809, '__ci_last_regenerate|i:1666411809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5789a924f20f5014d4535041f8f16721d4ac31aa', '172.105.247.100', 1666411809, '__ci_last_regenerate|i:1666411809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0764caadb6859f42497ef12b6cac051fb17f5a', '172.105.247.100', 1666411810, '__ci_last_regenerate|i:1666411809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f617debc1d2ca4a9d2296e24cdfe9e76d61a7327', '172.105.247.100', 1666411810, '__ci_last_regenerate|i:1666411810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ef0260c1ebff3a280ab7bba7a49e8f070b3ca7', '172.105.247.100', 1666411810, '__ci_last_regenerate|i:1666411810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee6809b1357f6909b3d96f8dc1c963b4334ccd6', '172.105.247.100', 1666411810, '__ci_last_regenerate|i:1666411810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d1cc4cf2f5d0e5b3302b9708fce3ea501f0578', '172.105.247.100', 1666411811, '__ci_last_regenerate|i:1666411811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e422c9abf0620dc1b114e34acdba185a656e50e', '37.111.216.19', 1666414195, '__ci_last_regenerate|i:1666414195;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666342146\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('217fe4ffd0bc674b57e3f74d3e4b0a20d5495c27', '37.111.216.19', 1666414550, '__ci_last_regenerate|i:1666414550;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666342146\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666414545;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f33988b4ebfb17cf5b25cd38a3c90f4c451d3f3a', '37.111.216.19', 1666417490, '__ci_last_regenerate|i:1666417490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666342146\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666414552;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfbc07a7cf39ae74168ea4e1f1d9a643e4c30307', '172.105.247.100', 1666416008, '__ci_last_regenerate|i:1666416008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1a58255a0759738d723102410ad413cf6c4f078', '172.105.247.100', 1666416008, '__ci_last_regenerate|i:1666416008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f284141fdf9d3e11c9d2e404e2f37febf8462f39', '172.105.247.100', 1666416009, '__ci_last_regenerate|i:1666416009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8663fc104c64fe56e3ef00aeb1594955d0a4b00d', '172.105.247.100', 1666416009, '__ci_last_regenerate|i:1666416009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d174b711ae1f482c10bf20a9ca8f016b26929f', '172.105.247.100', 1666416009, '__ci_last_regenerate|i:1666416009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2d6e0480da8959d8b691639606fc188a33303a', '172.105.247.100', 1666416009, '__ci_last_regenerate|i:1666416009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27376301db66e669a65109434e85bdbc39645bb2', '172.105.247.100', 1666416010, '__ci_last_regenerate|i:1666416010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d93ebc190d971eafadeb7a15d97f695de8d2fa', '172.105.247.100', 1666416010, '__ci_last_regenerate|i:1666416010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e677fcbffbb5cd8159974b57a4f530d347bc91c', '172.105.247.100', 1666416010, '__ci_last_regenerate|i:1666416010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c822d5283cc36f473269816c5266181006c59539', '172.105.247.100', 1666416010, '__ci_last_regenerate|i:1666416010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c66aa2950b188bf4d9772d9a84d99aeeda295a', '172.105.247.100', 1666416010, '__ci_last_regenerate|i:1666416010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d098cab6bed3f1fbad473e2d8e98eadc08cc11', '172.105.247.100', 1666416011, '__ci_last_regenerate|i:1666416011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb02bb17230949da228e5009c29275d46c8ae63', '172.105.247.100', 1666416011, '__ci_last_regenerate|i:1666416011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffad2bc31cb3e819735f535952b06ff6fb4666db', '172.105.247.100', 1666416011, '__ci_last_regenerate|i:1666416011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d64ccca461ab531d53887e4b43c848aa0a2cca4', '172.105.247.100', 1666416012, '__ci_last_regenerate|i:1666416012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7906920545a07cd5bbd4305cde41afe27dace08d', '172.105.247.100', 1666416012, '__ci_last_regenerate|i:1666416012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d69fce109d4beb0f0da2a405e83bd9020ec2004', '64.74.160.211', 1666417019, '__ci_last_regenerate|i:1666417019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11af3704d46a597f11ddb5522bf2709177271083', '64.74.160.211', 1666417019, '__ci_last_regenerate|i:1666417019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f7dc8d5a31b7e46da085e4abed61439f0a749c', '64.74.160.211', 1666417020, '__ci_last_regenerate|i:1666417020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd0b055a1f71a86bf69f3510a79b206ac17c482', '37.111.216.19', 1666417520, '__ci_last_regenerate|i:1666417490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666342146\";last_ip|s:14:\"37.111.219.204\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666417520;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597274440b96c187d6eb871b4baf522277d7e03a', '172.105.247.100', 1666420207, '__ci_last_regenerate|i:1666420207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4264224ab51778ab9224e62dfd715f2b333bcd85', '172.105.247.100', 1666420208, '__ci_last_regenerate|i:1666420208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e2ddceae0447f51af503a66b45437f4b40a9e9', '172.105.247.100', 1666420208, '__ci_last_regenerate|i:1666420208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4f7c9af4a9172693d64c92f43caf32d1292701', '172.105.247.100', 1666420208, '__ci_last_regenerate|i:1666420208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6509935e87958d3b4d9147c4320eada5e0dd078', '172.105.247.100', 1666420209, '__ci_last_regenerate|i:1666420209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c33dc6b7fef47eb88092f9be27edb1396c8c41b', '172.105.247.100', 1666420209, '__ci_last_regenerate|i:1666420209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92519b8f767662fbded26e12fb38b20e9263a0f3', '172.105.247.100', 1666420209, '__ci_last_regenerate|i:1666420209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710b9cd236b877a7f422c9a3a7dc7b36822669a2', '172.105.247.100', 1666420210, '__ci_last_regenerate|i:1666420209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9843d196cd6a8d271911932252d31bcab45378b9', '172.105.247.100', 1666420209, '__ci_last_regenerate|i:1666420209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed27acaf37816de09ef8f1c16f222eb239e3e00d', '172.105.247.100', 1666420210, '__ci_last_regenerate|i:1666420210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62dbdf936d66f0077d4309551b99451eea943a00', '172.105.247.100', 1666420210, '__ci_last_regenerate|i:1666420210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d228e5b33bd8614523784e1ca4e78d39f970ec48', '172.105.247.100', 1666420210, '__ci_last_regenerate|i:1666420210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b8cd9caccb4d8cccfdbffc5295070faf3483d16', '172.105.247.100', 1666420211, '__ci_last_regenerate|i:1666420211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec8c07f259c653cc1800eb5e34a7b368fb2aa37', '172.105.247.100', 1666420211, '__ci_last_regenerate|i:1666420211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489c4776ca959b2abc60366a061b69966d8e7eab', '172.105.247.100', 1666420211, '__ci_last_regenerate|i:1666420211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48756d7e138c476af55712e9e094df2ba2675c55', '172.105.247.100', 1666420211, '__ci_last_regenerate|i:1666420211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('387b06099906f655c212345f0f29d0901af56382', '172.105.247.100', 1666424407, '__ci_last_regenerate|i:1666424407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b7ffb0409ad42012ced7ffa6a754d9471ed931', '172.105.247.100', 1666424408, '__ci_last_regenerate|i:1666424407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a65a1d5176d72ba8afa49fc4b1cf4bfb731fb152', '172.105.247.100', 1666424408, '__ci_last_regenerate|i:1666424408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7c5ccd48281b829543f48f8d39df2b8a4aaba9', '172.105.247.100', 1666424408, '__ci_last_regenerate|i:1666424408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e86e9bb483e9de07247a4408a80a9bf6500fb8ef', '172.105.247.100', 1666424408, '__ci_last_regenerate|i:1666424408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a6f591fe6212501571eedbb88fbb2b0d221c0a', '172.105.247.100', 1666424409, '__ci_last_regenerate|i:1666424408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52323968637ca8d4b9a2732a8e7eee8d2d305c9', '172.105.247.100', 1666424409, '__ci_last_regenerate|i:1666424409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1abe51098c2d060b61a27ed18420aab26db6de48', '172.105.247.100', 1666424409, '__ci_last_regenerate|i:1666424409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea9ae6fd700be9477604d27f4c065859c6cf59f', '172.105.247.100', 1666424410, '__ci_last_regenerate|i:1666424410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d836da4f1bb10dbf60f74b5d8d56c7d10f4c99ad', '172.105.247.100', 1666424410, '__ci_last_regenerate|i:1666424410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef70778b3f2866f04a9db75b1726bdd81504d34', '172.105.247.100', 1666424410, '__ci_last_regenerate|i:1666424410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bbbd15be6e7e8a13a65b40d9cf56d011bd010bc', '172.105.247.100', 1666424410, '__ci_last_regenerate|i:1666424410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ff5828b17cc059a5b4ed5f2a5d245a65a57467', '172.105.247.100', 1666424411, '__ci_last_regenerate|i:1666424411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c81401d3f0c2de83ef8de62534a28bcd458146', '172.105.247.100', 1666424411, '__ci_last_regenerate|i:1666424411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9134f5a497ee5b4bb1e362baa81a61ca3ace6e41', '172.105.247.100', 1666424411, '__ci_last_regenerate|i:1666424411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('558219575cbe3b926ee6e64a6597770b9b54a23b', '172.105.247.100', 1666424412, '__ci_last_regenerate|i:1666424411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c47e50e913eda1b020eefba24d43f27d48c3b8', '37.111.216.19', 1666428368, '__ci_last_regenerate|i:1666428368;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666428287;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4c35a2e11780722b589d2f3842466d27c07edb', '37.111.216.19', 1666433536, '__ci_last_regenerate|i:1666433536;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666428592;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0715ae3381e4b2d5ad2169f1dff5db7f5f3340fa', '37.111.216.19', 1666425617, '__ci_last_regenerate|i:1666425617;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666425350;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ebabe9913925fa110b69bdc817a82d3ff297f6', '172.105.247.100', 1666428607, '__ci_last_regenerate|i:1666428607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6220775b10c0572391535a64fdf080d408a94e31', '172.105.247.100', 1666428607, '__ci_last_regenerate|i:1666428607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af7f42c3db5d6c3580197eea168d3479a5a44c6', '172.105.247.100', 1666428607, '__ci_last_regenerate|i:1666428607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ead1a914464c98e62fe1347cfb9e3327d268ad94', '172.105.247.100', 1666428607, '__ci_last_regenerate|i:1666428607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd05867a9117dd5caab0ba744305c208596e102', '172.105.247.100', 1666428607, '__ci_last_regenerate|i:1666428607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64a9dc80b013ddebbbcf5c4facba004107be677', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77685de92b04c129b942efe305350749c79f8b28', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff790908f248ab0123dbd8a758d58edbb1fccc4', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff117c61e98dc92661c9711b2ec1b01af4300ef', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568a072d41277eee083b9ce94b14c737f2060882', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2472dc6a4be0df2c631e37f0bb2df26559b0c2b', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fffbc5b8ad9d439271c399e1d8b3ed072d3fcc9', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfdc09c6dd2fe0212d73624a42970ab7c527af4d', '172.105.247.100', 1666428608, '__ci_last_regenerate|i:1666428608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb7fece652c74dec2f3d1682f6d228b962648cd', '172.105.247.100', 1666428609, '__ci_last_regenerate|i:1666428609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513705333ad67d59629e7e5dec2cce088a620fe4', '172.105.247.100', 1666428609, '__ci_last_regenerate|i:1666428609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2e561bbb813bd0cc927e581a4ab8db70b4afff', '172.105.247.100', 1666428609, '__ci_last_regenerate|i:1666428609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1a1ba74e9889f4c19928b4801839bb174c9f73', '65.154.226.109', 1666430433, '__ci_last_regenerate|i:1666430433;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523faa4c4ae6dff5dd5c7c439e2d16421ba5ad4d', '172.105.247.100', 1666432809, '__ci_last_regenerate|i:1666432809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29eba2c219bc1f5b2623191ee7940fbf4b94001', '172.105.247.100', 1666432809, '__ci_last_regenerate|i:1666432809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0ac9ee90eeb7034af462772db841ab276db77d', '172.105.247.100', 1666432810, '__ci_last_regenerate|i:1666432810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42541e039e754379df5a622bd3dfecb5438446f5', '172.105.247.100', 1666432810, '__ci_last_regenerate|i:1666432810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4141bbc5bd840f77266226c94ea7ef0efbb1b4', '172.105.247.100', 1666432810, '__ci_last_regenerate|i:1666432810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13f0934ee17be3ce0757ea1f7f7bee593d7da708', '172.105.247.100', 1666432811, '__ci_last_regenerate|i:1666432811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375eaefc46f6b09eb5469f630db873640998337f', '172.105.247.100', 1666432811, '__ci_last_regenerate|i:1666432811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3856b390488522ea1a0e02d989ee3838849fdc34', '172.105.247.100', 1666432811, '__ci_last_regenerate|i:1666432811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c1b647fdd331cd4d1347da685d28ee4785a441', '172.105.247.100', 1666432811, '__ci_last_regenerate|i:1666432811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9423d630927a2246d73110f4b8244638081d493', '172.105.247.100', 1666432811, '__ci_last_regenerate|i:1666432811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467a81b8eb6ec49af88bfd3da7fd70c65ec6c495', '172.105.247.100', 1666432811, '__ci_last_regenerate|i:1666432811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cfcd37d70ab9bf21a6f3ad706e906640338580', '172.105.247.100', 1666432812, '__ci_last_regenerate|i:1666432812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('867cc6af63892da93efd1afd0a593a19762aca26', '172.105.247.100', 1666432812, '__ci_last_regenerate|i:1666432812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd8f34853ea618bc56b8335106a9fbc2cd1eb8df', '172.105.247.100', 1666432812, '__ci_last_regenerate|i:1666432812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d623bbf3afc859c98c9a9c7a11b369a93fd584', '172.105.247.100', 1666432812, '__ci_last_regenerate|i:1666432812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c873dba643900d00085b88ec001e5da11d4a2fe2', '172.105.247.100', 1666432813, '__ci_last_regenerate|i:1666432813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648fd802798589e53d084f0f7b18a76c6cfac5d0', '37.111.216.19', 1666435901, '__ci_last_regenerate|i:1666435901;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666433540;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae08a6e0cc9c13227e57985c2942d773c2251d8f', '37.111.216.19', 1666436550, '__ci_last_regenerate|i:1666436550;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666436094;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b08fbe1ec00929aad629dc23f34c46abdf5023', '37.111.216.19', 1666438313, '__ci_last_regenerate|i:1666438313;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666438308;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c05145a445ac329c9c0f1f2f0adbbdd90cdf07e', '172.105.247.100', 1666437008, '__ci_last_regenerate|i:1666437008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b397d036e83965e8c796cd2065060f2ecf4e269f', '172.105.247.100', 1666437008, '__ci_last_regenerate|i:1666437008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7468c6e79a15681d786b09fe86ffe889a095cfb6', '172.105.247.100', 1666437008, '__ci_last_regenerate|i:1666437008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ddcacffd4d9265db78fb48d89c6b590d29db38d', '172.105.247.100', 1666437009, '__ci_last_regenerate|i:1666437008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe74106af24890edb4dad16dfabab0f9fee9311a', '172.105.247.100', 1666437009, '__ci_last_regenerate|i:1666437009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72b6fa453b236fc294085ea7cce009ad9e80049', '172.105.247.100', 1666437009, '__ci_last_regenerate|i:1666437009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caeff1f4c22691e01a97461ec0b7e638bccf975b', '172.105.247.100', 1666437009, '__ci_last_regenerate|i:1666437009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76204bd070b2e688332718ba84597260f21ab24f', '172.105.247.100', 1666437010, '__ci_last_regenerate|i:1666437010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e58022d73176c5d823bea22d5a4b92be7a49f9f', '172.105.247.100', 1666437010, '__ci_last_regenerate|i:1666437010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d476b05a674f4210524f67a2843b9cff8abb2328', '172.105.247.100', 1666437011, '__ci_last_regenerate|i:1666437010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34fd79e942786dd27d539547ec60cfe05d9a88cd', '172.105.247.100', 1666437011, '__ci_last_regenerate|i:1666437011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a9cb71f16c36b729a48b180f0ee34ad509bb03', '172.105.247.100', 1666437011, '__ci_last_regenerate|i:1666437011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('436c3d8c191f4da1e631333f30a1cf7120e8bca2', '172.105.247.100', 1666437011, '__ci_last_regenerate|i:1666437011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f68a5debc13b960232d02148adfef9d92b01ab', '172.105.247.100', 1666437012, '__ci_last_regenerate|i:1666437011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c768e2f1eb291d7db21f575c99541e6b7e7c88', '172.105.247.100', 1666437012, '__ci_last_regenerate|i:1666437012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973eeb52c1f2e318cdd22151e1020aabedb6fbae', '172.105.247.100', 1666437012, '__ci_last_regenerate|i:1666437012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca6c10793d6f9aa902571ba3209bfc72410cd2e', '37.111.216.19', 1666439867, '__ci_last_regenerate|i:1666439867;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666438314;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825bf9922a5d232d54d4cd8eda4f01e27b4f50c0', '37.111.216.19', 1666442703, '__ci_last_regenerate|i:1666442703;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666442627;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2923bc8629fc1088dcb75c027a0116e0eb5eba06', '172.105.247.100', 1666441209, '__ci_last_regenerate|i:1666441209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfb3debf4713e8f7ee89a6963c4e6b25e04f4c2', '172.105.247.100', 1666441210, '__ci_last_regenerate|i:1666441210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da94a59ab2cfe0eb49661825799ccc7e68fe87a0', '172.105.247.100', 1666441211, '__ci_last_regenerate|i:1666441211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1c6e9b150f268ad744acd9ebac32e2e2703ca1', '172.105.247.100', 1666441211, '__ci_last_regenerate|i:1666441211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bfeb3ebbf89ff045485fd409cb37dd5cf7574f6', '172.105.247.100', 1666441211, '__ci_last_regenerate|i:1666441211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5448949a2236568da284455cf96a5482d0db1bc', '172.105.247.100', 1666441212, '__ci_last_regenerate|i:1666441212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98ded0b05209405602c471d34995c936439f13a', '172.105.247.100', 1666441212, '__ci_last_regenerate|i:1666441212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f5457f32f64561eca07e4577f02a23c4e52e34', '172.105.247.100', 1666441212, '__ci_last_regenerate|i:1666441212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c22f96d04a60defe80a5639e81530fb96b40bf1', '172.105.247.100', 1666441212, '__ci_last_regenerate|i:1666441212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0d3b69244658b6d068a2fea254766ea3bde9bd', '172.105.247.100', 1666441212, '__ci_last_regenerate|i:1666441212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4504e6aab0bd586a126962b85b6bcca3cb2ae8a5', '172.105.247.100', 1666441212, '__ci_last_regenerate|i:1666441212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5241c4dc07d8d1352de733a9951719d6313a50f0', '172.105.247.100', 1666441213, '__ci_last_regenerate|i:1666441212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f15df06bdce51dd050b3b1677cc58f866bf34da', '172.105.247.100', 1666441213, '__ci_last_regenerate|i:1666441213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65dede63f1e28f7aff8b389a6e56e009ac7e3320', '172.105.247.100', 1666441213, '__ci_last_regenerate|i:1666441213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688425467da93c38d169a9625ed9e0c4efde8eea', '172.105.247.100', 1666441213, '__ci_last_regenerate|i:1666441213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1effa878a8328b23a5ad07ad49417a5fdaf87255', '172.105.247.100', 1666441213, '__ci_last_regenerate|i:1666441213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32eae5893ed470046743c3a40011a56f9311d8c', '37.111.216.19', 1666443909, '__ci_last_regenerate|i:1666443909;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666442703;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ada0d4e01c49ced2e60e6c091766ccc6cae5af8', '37.111.216.19', 1666444681, '__ci_last_regenerate|i:1666444681;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666444059;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c739d09ea1bf2881d151a3eb6adcf3add1e202', '37.111.216.19', 1666445390, '__ci_last_regenerate|i:1666445390;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666444765;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e986d0cacb3580210125b6d5e5748cd427577f8', '37.111.216.19', 1666447375, '__ci_last_regenerate|i:1666447375;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666446879;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a813bfb8d3391675beed72cd2626b786e238b387', '172.105.247.100', 1666445408, '__ci_last_regenerate|i:1666445408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('284d9631c08dfeeb4669c2da5e8fd4058942f904', '172.105.247.100', 1666445410, '__ci_last_regenerate|i:1666445410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3827337b86452b0ac9f2af456ba3bd7a2ab3bb99', '172.105.247.100', 1666445411, '__ci_last_regenerate|i:1666445411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9baef61d97077f7c67183133d11ba673c24892b7', '172.105.247.100', 1666445411, '__ci_last_regenerate|i:1666445411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cacf08538f6fcf5ee3ff60cbb9a01b090065f19a', '172.105.247.100', 1666445411, '__ci_last_regenerate|i:1666445411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f05189224aa95fe34a655efee96e1814fd63e56', '172.105.247.100', 1666445411, '__ci_last_regenerate|i:1666445411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('187761c9a59ff0ef87e343feba4754921e56ac80', '172.105.247.100', 1666445411, '__ci_last_regenerate|i:1666445411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06e215d53280968e6aa910af21ddda09fb8b8fd', '172.105.247.100', 1666445411, '__ci_last_regenerate|i:1666445411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e095993e6797d76f9c59b27e887f53d1feb1f56', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24b24a800e9c4f5916c7d38e5de05286983ef83', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04addbb5a85e54944467112981e04ea09224614a', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1960e1665d81d0462a8f7cf79d0bdc820765a17f', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80700ac30ff87af1edf0e53ea33f345feeeb7c49', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fb3f178c5eb9a27d9c0322988431c15a1593581', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9bef9c4945beb7944ff44e8e29d3fdedd640d7', '172.105.247.100', 1666445412, '__ci_last_regenerate|i:1666445412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533cd687213a78cfafa0890b257f35d2dbdfcbdb', '172.105.247.100', 1666445413, '__ci_last_regenerate|i:1666445412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99820fee329daf602463466e319ed76e84e68d1f', '37.111.216.19', 1666448667, '__ci_last_regenerate|i:1666448667;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666448575;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7978a8a62785dc32b2c1838fd90136f45661e3d', '37.111.216.19', 1666449302, '__ci_last_regenerate|i:1666449302;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666448668;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e719bb2af81f32ec212041e94d4b8b6ab48a2335', '37.111.216.19', 1666449763, '__ci_last_regenerate|i:1666449763;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666449345;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254a57ee1b6c1b531e083b78de2b34eb500ec794', '172.105.247.100', 1666449608, '__ci_last_regenerate|i:1666449608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c40d49c93a394844f0f4bf546e3464412b8ea4', '172.105.247.100', 1666449610, '__ci_last_regenerate|i:1666449610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e0212b1412b0f5767213557d7f03ee9d47be8e0', '172.105.247.100', 1666449610, '__ci_last_regenerate|i:1666449610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614285efed3d7bc319dae5a3181e96101ad84889', '172.105.247.100', 1666449610, '__ci_last_regenerate|i:1666449610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('116040165470ce36105690c0939f2d96d5787cc6', '172.105.247.100', 1666449611, '__ci_last_regenerate|i:1666449611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b461d12b82c1983d65f9cf40d03c0207bac5a73', '172.105.247.100', 1666449611, '__ci_last_regenerate|i:1666449611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c8d24ec3dcc6c699e879ee36898a70696923ce', '172.105.247.100', 1666449611, '__ci_last_regenerate|i:1666449611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('101d022b013514bf399dad38e108bdb70b9a4afb', '172.105.247.100', 1666449611, '__ci_last_regenerate|i:1666449611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2821371f249bf2fa1a2db05fc048f466ba4a0f26', '172.105.247.100', 1666449612, '__ci_last_regenerate|i:1666449612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d02062e590fce6c1130a8aa507b85ebf258e498', '172.105.247.100', 1666449612, '__ci_last_regenerate|i:1666449612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bff6c8c8151cf586f4211df22ddd2ba37e4536b', '172.105.247.100', 1666449612, '__ci_last_regenerate|i:1666449612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af411e6363081451eb2db8ad29af336939717cde', '172.105.247.100', 1666449613, '__ci_last_regenerate|i:1666449613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80adf8ee61abba099243480a40eab219dec6253b', '172.105.247.100', 1666449613, '__ci_last_regenerate|i:1666449613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f445790e7ae9cbc7f366a350c8a5fe785d3101db', '172.105.247.100', 1666449613, '__ci_last_regenerate|i:1666449613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ab9729a36aa45a47fade8d1b21b6e8295c843a', '172.105.247.100', 1666449613, '__ci_last_regenerate|i:1666449613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c130f5a44e9f5021858f3f8869d86257fe41db7', '172.105.247.100', 1666449614, '__ci_last_regenerate|i:1666449614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa64622710215b6323af25d9df1c48b4e2e5109', '37.111.216.19', 1666450069, '__ci_last_regenerate|i:1666450069;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666450056;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96367b23b5e2ced91c1ed0c9108958b46000989', '37.111.216.19', 1666450497, '__ci_last_regenerate|i:1666450497;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666450154;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f66c6ebec881e39c3628f8def69118e01891685', '37.111.216.19', 1666450889, '__ci_last_regenerate|i:1666450889;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666450501;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac47f2c1bc9cd59438769b5a512b0bf62ec1f150', '37.111.216.19', 1666451217, '__ci_last_regenerate|i:1666451217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666451208;register_id|s:3:\"225\";cash_in_hand|s:10:\"14350.0000\";register_open_time|s:19:\"2022-10-21 21:33:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e20c8cf758fd941387059ee44226c60ff29ab2', '37.111.216.19', 1666451242, '__ci_last_regenerate|i:1666451217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666414155\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666451242;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d85b65f42604e886679f1a716568c9e185863c', '172.105.247.100', 1666453808, '__ci_last_regenerate|i:1666453808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cc7a0b5c4dcb8dc6f853198b51046610e7543c', '172.105.247.100', 1666453808, '__ci_last_regenerate|i:1666453808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c06a9ba84245da3155ec486672c6cb80b299d07', '172.105.247.100', 1666453811, '__ci_last_regenerate|i:1666453811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c66704b3957ff390998046303f053c6a3b24fc', '172.105.247.100', 1666453811, '__ci_last_regenerate|i:1666453811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b397efde81b5014343368139eeec8c4536a48b', '172.105.247.100', 1666453811, '__ci_last_regenerate|i:1666453811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dae3408a87ac23a65600a002872055528ddd08e', '172.105.247.100', 1666453811, '__ci_last_regenerate|i:1666453811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ec37cd86eab18db83152f4fb4cbee54811ab06', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179f226356a2b04385eb1c8cee57d01e40ee2628', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22fdfac0445f4eb16e6fde117a19347fd7c9899', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be9f9db10f3a55147121ed235431f889dd748405', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb3db1f83938aaa4b4a8b62fbda69743ee42ae3', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f109c380e58d7afb394092366ab7bfc515c072dd', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2158c1cfab740f44b3e84e17fe0d5142d630d317', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09155af9e949cdc60304ae319c8423502b14ec7', '172.105.247.100', 1666453812, '__ci_last_regenerate|i:1666453812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0561af6bde78010cbd09fee7f93229fcf2a0781', '172.105.247.100', 1666453813, '__ci_last_regenerate|i:1666453813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973c8f4bff84cb2acac183e4bac6a374058b3c1e', '172.105.247.100', 1666453813, '__ci_last_regenerate|i:1666453813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea8cd053e449dea4393ed7f40e7b4e9ff9959d5', '172.105.247.100', 1666458011, '__ci_last_regenerate|i:1666458011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1526f5a0ba3b8a5f93c461c44ae102f1f3964014', '172.105.247.100', 1666458011, '__ci_last_regenerate|i:1666458011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ab1ee00f7bcb4a80a4b24c2f17cbd42a139869', '172.105.247.100', 1666458011, '__ci_last_regenerate|i:1666458011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6adff658105438db5a09cc40c82dbadf606959', '172.105.247.100', 1666458011, '__ci_last_regenerate|i:1666458011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d98cd660f812860f49ea3e69fb41564585c67be0', '172.105.247.100', 1666458011, '__ci_last_regenerate|i:1666458011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b53eb080f1b4aa2c63d851df3306af9ef6a2d31', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ca6f880cc0ff3efb2455a75fbb0bbb3092a0ea', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f2cccffb8f1871b5b82afae2e2831666358d1c', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a503a6f4b34356a34fd545db016a3c9efc6ceb7c', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d8a5e443bbeb05c6d1efcf293f5c60161d6b9f', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0031df0116467b50b074bb4cbbe579fd477bfc9d', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04abfe17e26364638870cae637bc02d3c85a59d', '172.105.247.100', 1666458012, '__ci_last_regenerate|i:1666458012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3109626773228b5f999bae32d51d7ecc1f0d740', '172.105.247.100', 1666458013, '__ci_last_regenerate|i:1666458013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e5445b7fa5b35fc7bae1b10fe257319d3c4cf3', '172.105.247.100', 1666458013, '__ci_last_regenerate|i:1666458013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8efd79815fdbdf84c4e5ea12e9c2dc567c0dc70', '172.105.247.100', 1666458013, '__ci_last_regenerate|i:1666458013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4541fddac988d1a21e4b0306a6f921afd3c75514', '172.105.247.100', 1666458013, '__ci_last_regenerate|i:1666458013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a0d6f693bbe8ddb264298dc0236e64f73927c9', '172.105.247.100', 1666462207, '__ci_last_regenerate|i:1666462207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354ac8cd4d688a654c154bcb109db56e8b3a703d', '172.105.247.100', 1666462207, '__ci_last_regenerate|i:1666462207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c5ad431a2e2e26707a15ca49edda52a7f17781', '172.105.247.100', 1666462207, '__ci_last_regenerate|i:1666462207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0880f934d02e9eafe543bb59deebdbc831f4310', '172.105.247.100', 1666462208, '__ci_last_regenerate|i:1666462208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb785f354e7bf476a23143c00bf9ce6a176197fd', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0278320c2258f7943d26fc0a11fb6e78315b5117', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7742cdc7d97e9b1de214eeb7841184404e0f0e', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f891a5aecd067f368fad4ecd71618f936796f5d2', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b808d71198646160845978e35aa22b38106b60b3', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74b09bd9520df24b882b73a8e89dcd3942a22da', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73212a971466523f66d9ecaa2f4a3092b43b72dc', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9a51a56c875fe4133750ea0911487be045092b', '172.105.247.100', 1666462214, '__ci_last_regenerate|i:1666462214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65f639c862f9fa80639557c55c5e366ed9f688c', '172.105.247.100', 1666462215, '__ci_last_regenerate|i:1666462215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e76ac6dba912761f89562527c8570adb09aec4f', '172.105.247.100', 1666462215, '__ci_last_regenerate|i:1666462215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59563f86de6a9f45b36855c967fb47f4e5a27535', '172.105.247.100', 1666462215, '__ci_last_regenerate|i:1666462215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ec8a81caa061d707ae8dd56ab979191bec740e', '172.105.247.100', 1666462216, '__ci_last_regenerate|i:1666462215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6813b7cbce14472e9bf20a752a92b5ba906355', '172.105.247.100', 1666466421, '__ci_last_regenerate|i:1666466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe47ba65113625ae30fbef341c70de246458e94b', '172.105.247.100', 1666466421, '__ci_last_regenerate|i:1666466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df9bce7bd8194d43779adeb8182cddcb77629cec', '172.105.247.100', 1666466421, '__ci_last_regenerate|i:1666466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c178482596de9930d93ef54cca9e7098e3f0d424', '172.105.247.100', 1666466421, '__ci_last_regenerate|i:1666466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7bb0b9b3a9a9f4ef023c9c5edd14a776c2c19f', '172.105.247.100', 1666466421, '__ci_last_regenerate|i:1666466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eddcc5b72b9154476d7ea20c3aab508e691eace', '172.105.247.100', 1666466421, '__ci_last_regenerate|i:1666466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e5b754a5153e8c97dddc8cf09d86850ec0bf49', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c9c027dad82f9d27b737b01c09a9561959d51ff', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3744f576eabf889692b050a8a8dbc23b4bb456a7', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2f4dfdb573619d790efc190822af5e5a947e7e', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd09a8d4a14a86b88da0068fe9be280c2c8d327c', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4739ef9f7d03477a7116bbdfd91d22436d340ffe', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d851bc022a01a937ab9090b4b040a007714f1c7b', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2dae1dc2a68db6dec2b896a8d34d72eb06887e6', '172.105.247.100', 1666466422, '__ci_last_regenerate|i:1666466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ff8ffba8216b3daa1b824374c6189aedc0317a', '172.105.247.100', 1666466423, '__ci_last_regenerate|i:1666466423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c084bed82625e105173d9e458f2e929cd278626', '172.105.247.100', 1666466423, '__ci_last_regenerate|i:1666466423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53767fe5c81744662ed161c810466f9f50a0f6ae', '172.105.247.100', 1666470621, '__ci_last_regenerate|i:1666470621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432bcc58b399f4b437b43e83cd96718156b32444', '172.105.247.100', 1666470624, '__ci_last_regenerate|i:1666470624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d759c2ec9f5d6deed1dcdea55ad60246a034893d', '172.105.247.100', 1666470624, '__ci_last_regenerate|i:1666470624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c6089bbcd82eac7826369822d522fd9d4cd15d', '172.105.247.100', 1666470624, '__ci_last_regenerate|i:1666470624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e165b7c4a3f27b1c35704fcbd9652a388d61881d', '172.105.247.100', 1666470624, '__ci_last_regenerate|i:1666470624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2658199e457bd9a5d2f30a80fda9dca5275e6e4', '172.105.247.100', 1666470624, '__ci_last_regenerate|i:1666470624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a001a301546df7a896b95265e43c264501f86584', '172.105.247.100', 1666470624, '__ci_last_regenerate|i:1666470624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a2f6fd658ef577190e467446327e62fa9ea849', '172.105.247.100', 1666470625, '__ci_last_regenerate|i:1666470625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d128c29a65c10386bd4f2024d647e380af003e2d', '172.105.247.100', 1666470625, '__ci_last_regenerate|i:1666470625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9316e97cb3975f57d76212b4290be83909c641d4', '172.105.247.100', 1666470625, '__ci_last_regenerate|i:1666470625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675dd9ee12ef404138c92ef887b6362b7b796508', '172.105.247.100', 1666470625, '__ci_last_regenerate|i:1666470625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dde467d2475a57aed88be73a17dd5a96cc67583', '172.105.247.100', 1666470625, '__ci_last_regenerate|i:1666470625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02490fa61d18c88366f2c44c547ff483baec4cb', '172.105.247.100', 1666470625, '__ci_last_regenerate|i:1666470625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af5d5922656d87ea6795d34ca4ec34c3976371dc', '172.105.247.100', 1666470626, '__ci_last_regenerate|i:1666470625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2825a4dcc12b02d115f466fa6a9f23e787ba368d', '172.105.247.100', 1666470626, '__ci_last_regenerate|i:1666470626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11b9c9f44f13d2ed07ed438794796557e2fb875', '172.105.247.100', 1666470626, '__ci_last_regenerate|i:1666470626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cce6d0c39bf3f8e12a6162e31f82fd19bf26e1c', '172.105.247.100', 1666474824, '__ci_last_regenerate|i:1666474824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e37312624a287a724e2d5b245805f150324a59', '172.105.247.100', 1666474824, '__ci_last_regenerate|i:1666474824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9eeb40e425cf6c9ae14a1eac33bed54894443ce', '172.105.247.100', 1666474824, '__ci_last_regenerate|i:1666474824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc752c69f3919a4f50a262a674902ea4bcd26aa', '172.105.247.100', 1666474824, '__ci_last_regenerate|i:1666474824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b3951930e47ea52c77ef8feb3872439776ed78', '172.105.247.100', 1666474824, '__ci_last_regenerate|i:1666474824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc297518485efa6351c846703d0bfca9efb7c74', '172.105.247.100', 1666474824, '__ci_last_regenerate|i:1666474824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f7166dda92fb2d631226227dd73fd56ded64c0', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec51a8e657d72e6633007413bddb248c526b90e4', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eabf0b4df05f6276918395d499f2645378f3e65', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dec7c0ab0bd63eb5b0866bb754913d6b5490859', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88a2a47c30a5cc05f6f7205e118fe85e3e15a966', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae64b44c09ad8c4bacb7b40f95b2645bb4910c4c', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441936c3874ed60d09bcfe2b6ae4e37ffb162b02', '172.105.247.100', 1666474825, '__ci_last_regenerate|i:1666474825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afada22ad4470cf106ab069172168bb2d8436b8a', '172.105.247.100', 1666474826, '__ci_last_regenerate|i:1666474826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0225efda4b5d379bfc797896fdf8bbcc21515962', '172.105.247.100', 1666474826, '__ci_last_regenerate|i:1666474826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d304da3056d7fa51c5731cf279b3aab687d08f6', '172.105.247.100', 1666474826, '__ci_last_regenerate|i:1666474826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dd5c569c2c7574e730036af8ce4d550528ed568', '45.59.126.15', 1666478262, '__ci_last_regenerate|i:1666478262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d4354456f6bc5744bd81e751f727b0996e26e2', '104.168.35.230', 1666478262, '__ci_last_regenerate|i:1666478262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32391fd745d97999590794bc4b4f5a2ceb060534', '158.51.127.232', 1666478262, '__ci_last_regenerate|i:1666478262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fcaeac60a1572836a912d6d404ec6f5983e04ec', '45.59.126.15', 1666478262, '__ci_last_regenerate|i:1666478262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea9179a03684a47624bf03807bbb9257072fbb40', '45.59.126.15', 1666478262, '__ci_last_regenerate|i:1666478262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726d19dd9d4a55f7dc57563b256234bc6c4e7e41', '158.51.127.232', 1666478262, '__ci_last_regenerate|i:1666478262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb087a17dcc95f344450014728174f21715cb74', '158.51.127.232', 1666478262, '__ci_last_regenerate|i:1666478262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2723e620c0d03477a2b75fa9f8ddc5da3ced03eb', '172.105.247.100', 1666479021, '__ci_last_regenerate|i:1666479021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52542c987d00bf817344d97c038c880ac4efc722', '172.105.247.100', 1666479022, '__ci_last_regenerate|i:1666479022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2603d74de5d4dddc4f535eda5c0313ebc15600', '172.105.247.100', 1666479022, '__ci_last_regenerate|i:1666479022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2840d6eb509ec2d401cc5181ce99088929aa5b', '172.105.247.100', 1666479022, '__ci_last_regenerate|i:1666479022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('971548af0db710c031832eb06383db4744ba7502', '172.105.247.100', 1666479023, '__ci_last_regenerate|i:1666479023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9686c84a4543b5fa69b1da0fa961eb4bf35fca3', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7afa6ad057553619a2f54b52f6830f105aa96a9b', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2adc355f915618ba74119063b203971d28dcdce9', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ba6cda8fbaf32d8c619c6b13dbc9d1ee066492', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('259f57ed661fa16beeb70030496fb58656bcc4f8', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d236e5d3df7acafdba0517b85d927537754d725', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc29536eaf7695a6dc4461b2ae70413a4647e3f', '172.105.247.100', 1666479024, '__ci_last_regenerate|i:1666479024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76133dc53516b3c75a30b5f80afa8174926f0653', '172.105.247.100', 1666479025, '__ci_last_regenerate|i:1666479025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b717f0dc56dd4daffbfecc54c436ff371bf7469a', '172.105.247.100', 1666479025, '__ci_last_regenerate|i:1666479025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34780111ed91d13ae4bbdd8d37416c0b6d4dfd0', '172.105.247.100', 1666479025, '__ci_last_regenerate|i:1666479025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7162fde59d008ac2dc6c62ccc01251fb02d7e26', '172.105.247.100', 1666479025, '__ci_last_regenerate|i:1666479025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0100e6dc939b54fdae6761ce0c4b20f0f3c1631', '205.210.31.158', 1666482497, '__ci_last_regenerate|i:1666482497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a9d3c81e6c505c177e60d836526ee2da81798d', '172.105.247.100', 1666483226, '__ci_last_regenerate|i:1666483226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee81809f42d678b5987fda57dc250f5579a434e', '172.105.247.100', 1666483227, '__ci_last_regenerate|i:1666483227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f618819133191e6e1e313bccef220574e3e265f', '172.105.247.100', 1666483228, '__ci_last_regenerate|i:1666483228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73245bc56f4d24de9f053bd44ec9e43a5d1841bc', '172.105.247.100', 1666483228, '__ci_last_regenerate|i:1666483228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554f448169a4eab35b53ed6199a7c0670794b3fd', '172.105.247.100', 1666483228, '__ci_last_regenerate|i:1666483228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529360061699254ee269cc5f71a3d05c3b57af1d', '172.105.247.100', 1666483228, '__ci_last_regenerate|i:1666483228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40aebb036b7effe797365cd38d09cc7540a6999', '172.105.247.100', 1666483229, '__ci_last_regenerate|i:1666483229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f277fa2af359facf91537daf5a8afc616e4835', '172.105.247.100', 1666483229, '__ci_last_regenerate|i:1666483229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80ed0115db679b6740968326d1eeab47853bea3', '172.105.247.100', 1666483229, '__ci_last_regenerate|i:1666483229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e4d13acd40cf8d6234825cd2128aa5a4715532', '172.105.247.100', 1666483229, '__ci_last_regenerate|i:1666483229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca433d42f9d0c57861880004a7a3c590d2214f08', '172.105.247.100', 1666483229, '__ci_last_regenerate|i:1666483229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7965bf7ca92428cd64403feab48b8631f83f62d6', '172.105.247.100', 1666483229, '__ci_last_regenerate|i:1666483229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be81c1e5fe22ad349ea7099c78f32488991e7b15', '172.105.247.100', 1666483230, '__ci_last_regenerate|i:1666483230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4177e1a64ddbe8136692ceb8fef470489927359', '172.105.247.100', 1666483230, '__ci_last_regenerate|i:1666483230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('704a53a06a235d95b0af5eab642ddefe8e4705f4', '172.105.247.100', 1666483230, '__ci_last_regenerate|i:1666483230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0e11f68b28436ac74efb8de52ba29521ef35da', '172.105.247.100', 1666483230, '__ci_last_regenerate|i:1666483230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc55ac98ea2e4d1cb1f45911b4f7a45abff39b03', '172.105.247.100', 1666487421, '__ci_last_regenerate|i:1666487421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10de78c9635b94968b401b99f3b25899add6e69b', '172.105.247.100', 1666487421, '__ci_last_regenerate|i:1666487421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f66caecb867bcb970ca671c3fb4dbbfde2ef3ad', '172.105.247.100', 1666487422, '__ci_last_regenerate|i:1666487422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c569392a09db8dbaf15746eee47d522d880bc77a', '172.105.247.100', 1666487422, '__ci_last_regenerate|i:1666487422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975a5d770d56009c9ec61c3fe2a7b40e66a22122', '172.105.247.100', 1666487423, '__ci_last_regenerate|i:1666487422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b3948c3af3aa3361237ee4f64cf44eb03d0aa7', '172.105.247.100', 1666487423, '__ci_last_regenerate|i:1666487423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873935ab9005a7121855e9e62b13536daccbbcde', '172.105.247.100', 1666487423, '__ci_last_regenerate|i:1666487423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ef83d1ef5d561e02e5f3b64df6164906a327df', '172.105.247.100', 1666487423, '__ci_last_regenerate|i:1666487423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d744dfcee034defd5edb81900f7907e61da89a', '172.105.247.100', 1666487423, '__ci_last_regenerate|i:1666487423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec59847ca56e6ef2a7c78c925bc0f3cc83fb6a1', '172.105.247.100', 1666487424, '__ci_last_regenerate|i:1666487424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdd09df3b6fe3318484fe7193d72b5f0fe37576', '172.105.247.100', 1666487424, '__ci_last_regenerate|i:1666487424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21342a3e4c326ca0a118e37788fdb8951dd1fd3', '172.105.247.100', 1666487424, '__ci_last_regenerate|i:1666487424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20cb104ad2e1e62885e4248cd9e6e613514d160a', '172.105.247.100', 1666487424, '__ci_last_regenerate|i:1666487424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f444064357e4ecaa58f6b7f2f532baaed055da', '172.105.247.100', 1666487424, '__ci_last_regenerate|i:1666487424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430a7d492a7a487df2642c101f81513f7685bd91', '172.105.247.100', 1666487425, '__ci_last_regenerate|i:1666487425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b79ed7ec35177c6636b16d50f039d899748e353', '172.105.247.100', 1666487425, '__ci_last_regenerate|i:1666487425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea8004e2ceca55b0553ac95ec6bbb19ea3d4e13b', '172.105.247.100', 1666491621, '__ci_last_regenerate|i:1666491621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be9ce73427050c11d61bdda6163454517ab38f5', '172.105.247.100', 1666491622, '__ci_last_regenerate|i:1666491622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65deb247cd2e999cd2c396dc1fa3c96ca3ef194d', '172.105.247.100', 1666491622, '__ci_last_regenerate|i:1666491622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8077ed3d9c56e06ea5b483a1ddf324577da5cd', '172.105.247.100', 1666491622, '__ci_last_regenerate|i:1666491622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a7cc1503ecc64a04dfc49b41dbcf72a7a91e71', '172.105.247.100', 1666491623, '__ci_last_regenerate|i:1666491623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d0aa63d961f4bf3e2df69e09a04daae7882f74', '172.105.247.100', 1666491623, '__ci_last_regenerate|i:1666491623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01465456cc50cda23fe5b12a9c66f09a9fe79bc6', '172.105.247.100', 1666491623, '__ci_last_regenerate|i:1666491623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df41c4a9898ca750d3fa3693c26dc83776dbeb76', '172.105.247.100', 1666491624, '__ci_last_regenerate|i:1666491623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdaccead00f158903bd45fe06decf646bce28b6', '172.105.247.100', 1666491624, '__ci_last_regenerate|i:1666491624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3005f7a0580273e239719acd1383d334b21b8bd1', '172.105.247.100', 1666491624, '__ci_last_regenerate|i:1666491624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc6a5685267abcf95581eee5fdd8fd8ef12bfc6d', '172.105.247.100', 1666491624, '__ci_last_regenerate|i:1666491624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf864c8119a7f299680cd6cf0b41ecf46f37ea9c', '172.105.247.100', 1666491625, '__ci_last_regenerate|i:1666491624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a269c4cf35397d6e4659618a4be1bbe9a35500', '172.105.247.100', 1666491625, '__ci_last_regenerate|i:1666491625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38aacdb0f56a58a2a6c4e866c887fbe8e7b1188e', '172.105.247.100', 1666491625, '__ci_last_regenerate|i:1666491625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e98678521bb3f6d763c9b7e4ccf09c44fa17b5', '172.105.247.100', 1666491625, '__ci_last_regenerate|i:1666491625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6503c03fb1ed02dc4d87aedc35d5a9e66cba25aa', '172.105.247.100', 1666491626, '__ci_last_regenerate|i:1666491626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13108053f2508b6cd0e8fd5d3244cf63507a3185', '172.105.247.100', 1666495823, '__ci_last_regenerate|i:1666495823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27be2c0e20e98068f2325efcfa1d497bdf3e50b7', '172.105.247.100', 1666495824, '__ci_last_regenerate|i:1666495824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('999f908f1216e8cc0c482894633f32ec669c839a', '172.105.247.100', 1666495824, '__ci_last_regenerate|i:1666495824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38680373b03329876af228edaf80a4398cd23f99', '172.105.247.100', 1666495824, '__ci_last_regenerate|i:1666495824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90512fa799334626bd5cb8776cc951207370ccb1', '172.105.247.100', 1666495824, '__ci_last_regenerate|i:1666495824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a112632cca5217fc2aea021d6b40e92703bfe6', '172.105.247.100', 1666495825, '__ci_last_regenerate|i:1666495825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d6eaed78f82bfcf0981f161ffc1ebe2e4bd797', '172.105.247.100', 1666495825, '__ci_last_regenerate|i:1666495825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6567fe301cc313d00a10a0822764759bbe5ab8', '172.105.247.100', 1666495825, '__ci_last_regenerate|i:1666495825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84fe86656b8a2f1a0036a90ab627c067f7dbfdeb', '172.105.247.100', 1666495826, '__ci_last_regenerate|i:1666495826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97cf72044e25c0b0df4ae145a1a108dd4dd7703', '172.105.247.100', 1666495826, '__ci_last_regenerate|i:1666495826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1e6b7dea5372fb228921cf830a9421007aab6a', '172.105.247.100', 1666495826, '__ci_last_regenerate|i:1666495826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5496bb18f496e6cbe86f25ae89cc32bed96be4e0', '172.105.247.100', 1666495827, '__ci_last_regenerate|i:1666495826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f201627c30198458e37c7ae9bb6093e05f33e4', '172.105.247.100', 1666495827, '__ci_last_regenerate|i:1666495827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83bcc83a9c26dad1f4455a4ece03b2c001c37039', '172.105.247.100', 1666495827, '__ci_last_regenerate|i:1666495827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1cbf8311ecfaad3e8ba9abd064697695df12a5', '172.105.247.100', 1666495827, '__ci_last_regenerate|i:1666495827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d87bc13d1917f8120143e74948aaea983d0de3', '172.105.247.100', 1666495828, '__ci_last_regenerate|i:1666495828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbcdf66231eb68d1e14fb7e88b1e426c1d58768', '35.198.25.12', 1666499002, '__ci_last_regenerate|i:1666499002;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee9c8b05d12485d8f8223f89233bb9c65a018d2', '35.198.25.12', 1666499002, '__ci_last_regenerate|i:1666499002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98c1e97479edcb18bc37d39011962e503122312', '35.198.25.12', 1666499002, '__ci_last_regenerate|i:1666499002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcfb5f215125a41cc80b9d9f4b9e72f3145bd7c', '35.198.25.12', 1666499003, '__ci_last_regenerate|i:1666499003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba9fca926eeb55737699e0111481a9d032883fb', '37.111.216.94', 1666500405, '__ci_last_regenerate|i:1666500405;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666500108;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad0bd1190b41e7fc0c971bb0979196c43efdd5d', '172.105.247.100', 1666500024, '__ci_last_regenerate|i:1666500024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c536ab8508e5104744a7db56830e89cdd5dc1f65', '172.105.247.100', 1666500024, '__ci_last_regenerate|i:1666500024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c817b758b1a7e34849893841f09b0173ab3ce181', '172.105.247.100', 1666500024, '__ci_last_regenerate|i:1666500024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f451ff4f4ef08f1dbde40a53a0b15cfdcc038cb1', '172.105.247.100', 1666500024, '__ci_last_regenerate|i:1666500024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63c1ce721d27ffb1f6d2bbd89c6769d22983fd6', '172.105.247.100', 1666500025, '__ci_last_regenerate|i:1666500025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffea8f5e9f3ff770ec6c485beda5a94b0771e4c3', '172.105.247.100', 1666500025, '__ci_last_regenerate|i:1666500025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3840be1902f0878c9ecece2b05ad8dbec9dc013d', '172.105.247.100', 1666500025, '__ci_last_regenerate|i:1666500025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ba4e9a4959b01b48744d0fc3f4897cfca5b1ae', '172.105.247.100', 1666500025, '__ci_last_regenerate|i:1666500025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff40e34e3304391bd5ee4afaef04d2b728955af8', '172.105.247.100', 1666500026, '__ci_last_regenerate|i:1666500026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb82239fff1e295cd73a7017f8ee9d10a0c3833', '172.105.247.100', 1666500026, '__ci_last_regenerate|i:1666500026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('294d6f69181aa6e85c889c1d2fcccd456a5642ed', '172.105.247.100', 1666500026, '__ci_last_regenerate|i:1666500026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f6ad5aeea2465f92f631e3741159e057c1998b', '172.105.247.100', 1666500027, '__ci_last_regenerate|i:1666500027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00c0a188b6291941a5ad88ce45969554a487e28', '172.105.247.100', 1666500027, '__ci_last_regenerate|i:1666500027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6728ba747e90ef17b754a85186fd5a895defad56', '172.105.247.100', 1666500027, '__ci_last_regenerate|i:1666500027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6822c2bb8079fc574d3081d5f244e07b14ba3876', '172.105.247.100', 1666500027, '__ci_last_regenerate|i:1666500027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e951066c7c78495ef42d59b424da881fcd1bef93', '172.105.247.100', 1666500028, '__ci_last_regenerate|i:1666500028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fb84f81ee0369981fa2ea97abeda42cffee099', '37.111.216.94', 1666501895, '__ci_last_regenerate|i:1666501895;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666500494;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b878e4f9a201cef6b16be1f0e43d91efb77711', '37.111.216.94', 1666505421, '__ci_last_regenerate|i:1666505421;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666501895;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd866dbf6c8e24fc7742d204dd8ae971d99bf01', '116.204.230.26', 1666503802, '__ci_last_regenerate|i:1666503802;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666351608\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"G0c6KqCesgxtZIpnw7a8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf5721c5d371724e9d15455e8ce6690fd960a7e', '116.204.230.26', 1666503802, '__ci_last_regenerate|i:1666503802;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666351608\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"G0c6KqCesgxtZIpnw7a8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda83be01145e56ec172197287ea70700290f28c', '172.105.247.100', 1666504221, '__ci_last_regenerate|i:1666504221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24e8abbd4ef5f41616b9b0045a2e0bf1e4d55e8e', '172.105.247.100', 1666504222, '__ci_last_regenerate|i:1666504222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('689ac3ba0b9fe78188042a672114745fb79176f7', '172.105.247.100', 1666504222, '__ci_last_regenerate|i:1666504222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0a23d25a24b4d0d1766cd43fbba136e859ec13', '172.105.247.100', 1666504222, '__ci_last_regenerate|i:1666504222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2223e7b9ceaba48376e8adaa351199bfaf51182f', '172.105.247.100', 1666504222, '__ci_last_regenerate|i:1666504222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d0afe130a76a341f2c4979e2ff55c0fa3ea7a2', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ab65117fb0a6f89fb5af4574d8a6e63c5f5718', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30e23db520545b7b79fcd68bc6013708f80feb0', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28341ead8421736e09ac3f5a831cb40fda788524', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ab6ef7fd175c7c5e8a5550809353987e697471', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3212131ce8d7059ff399e37d8371569a22378225', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19530bd4a4ab40a0da5f0628d296343abac913cc', '172.105.247.100', 1666504223, '__ci_last_regenerate|i:1666504223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210b73deb86ece3fa787d45b46bc45c60e9fb06f', '172.105.247.100', 1666504224, '__ci_last_regenerate|i:1666504224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe2b9aa32d3ef56a4c2dd9b7e3781b61aafa614', '172.105.247.100', 1666504224, '__ci_last_regenerate|i:1666504224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d6d663239bab6202524157979314ae4a1b9c41', '172.105.247.100', 1666504224, '__ci_last_regenerate|i:1666504224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67dfd6d08ce5073cd5f955b925fbcdcd7cfbea7', '172.105.247.100', 1666504224, '__ci_last_regenerate|i:1666504224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cae77c71f173f9db098bec73302ed21b65c4d75', '37.111.216.94', 1666507443, '__ci_last_regenerate|i:1666507443;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666507437;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7030240835ce045274860abde93195f57cda234b', '37.111.216.94', 1666510986, '__ci_last_regenerate|i:1666510986;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666507444;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb60318368045dbbfa1d62a24ab867f957f275b', '172.105.247.100', 1666508424, '__ci_last_regenerate|i:1666508424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3426d5a47c4cb1ac600136e04753811f20605c', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b6087c4bbbbcd75761265a11d6b053f610c6a8d', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d6af283b12a1bfb23f91147aee18cf5afdb418', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ebe848101c44548c85d97ebe0f8714d013c7dd', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65493a64e5f427523f5d55cc4e270dc8e3604804', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0504da259b690dd6b337555c510d20d43caee526', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06d09be54264254f8dcf6aec606c4ac354990931', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489531bfd49ae44a9abf73dead6383d322ced22b', '172.105.247.100', 1666508427, '__ci_last_regenerate|i:1666508427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a4f979a4b42f8cf966a19d107f27e0236e0c78', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('affc034a653fe54747944891e38714b7ed7eced9', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c959358a2bf6cf29f139a8e0fe2109dea4b16a9', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261edb26c2adc9340c0e5fde68aaca40da142630', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd2adebddc0d2195162b97806543579759cd339', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b643a5118db41c91137d250b3df69b46b8c0cba4', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d08334aef7fc5a8c3bfc64406c78b317968b503', '172.105.247.100', 1666508428, '__ci_last_regenerate|i:1666508428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2228babc52af87843cd9a6f495cbb4c8e2b4f13d', '37.111.216.94', 1666516090, '__ci_last_regenerate|i:1666516090;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666516081;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdafcf700823ac46ae0178cea4b9c9a1d431dc1d', '172.105.247.100', 1666512621, '__ci_last_regenerate|i:1666512621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df0f8c98b513ee6f33049d711db223513f4eb0f', '172.105.247.100', 1666512621, '__ci_last_regenerate|i:1666512621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1475fbffa3e8108ab0daa0733326dad13a9b4c39', '172.105.247.100', 1666512622, '__ci_last_regenerate|i:1666512622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b2425ea1aec442692a7249933a00ae2d74aded', '172.105.247.100', 1666512622, '__ci_last_regenerate|i:1666512622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759dd318247dd0d8415edd99e8da911e23ea6d54', '172.105.247.100', 1666512622, '__ci_last_regenerate|i:1666512622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3ee1e65c8b5bb38bcc57e6bb87dd57ae0aa67b', '172.105.247.100', 1666512622, '__ci_last_regenerate|i:1666512622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a444a73b48c8aa7c6d759bd32209a64995c7bde1', '172.105.247.100', 1666512622, '__ci_last_regenerate|i:1666512622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2f417e0345e507e5985df78ecc9b18979a8ce0', '172.105.247.100', 1666512622, '__ci_last_regenerate|i:1666512622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342327a762d1a8b65ce41f781342c8b1b27d8d62', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83854f5898506601808170490872dc846a3c215b', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca73bab8f2844e5abe604d3d334bacc6feafcc42', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0419febddb4703e2cc08a8d0ab3931ce2407e48', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888d94beb1212500967daf5d59224ca515b9b0f8', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb927f03519164020be19a5485bca84b8065b20', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b94804ff3ca401c7ef40c47cb774c2edb8ddfd', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b2ef3841119e515ad4ae5c47813973dc62383b', '172.105.247.100', 1666512623, '__ci_last_regenerate|i:1666512623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c6edf71617845e204978f6e5b08d9e3a7e271a', '37.111.216.94', 1666524701, '__ci_last_regenerate|i:1666524701;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666524648;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3e7af182274c4800f2312d170e2b50e0720cea', '172.105.247.100', 1666516820, '__ci_last_regenerate|i:1666516820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb54caa9963a7e150bf724918b17c10be10cd95', '172.105.247.100', 1666516821, '__ci_last_regenerate|i:1666516821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381a07a8dfdc131c02957d9b7bcff03ce142cb77', '172.105.247.100', 1666516821, '__ci_last_regenerate|i:1666516821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cad25a7997b86d310d46d08dfa48e4c5c22f2cc', '172.105.247.100', 1666516821, '__ci_last_regenerate|i:1666516821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6713149816c7d4e7b23ebe19b05f02c4e074c9ed', '172.105.247.100', 1666516822, '__ci_last_regenerate|i:1666516822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d063f5061e70a1a07c3c80b157a53641e57b3df5', '172.105.247.100', 1666516822, '__ci_last_regenerate|i:1666516822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005751eae53c3d9064f7dca017068f538b4f9379', '172.105.247.100', 1666516822, '__ci_last_regenerate|i:1666516822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c8ffa2855586e68e1d085916739380f945a340', '172.105.247.100', 1666516822, '__ci_last_regenerate|i:1666516822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644d7d3982372269a1637e33227c6309599ce4ef', '172.105.247.100', 1666516823, '__ci_last_regenerate|i:1666516823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d35d20e00a9439e790ac0e1d9a6911c707ed782', '172.105.247.100', 1666516823, '__ci_last_regenerate|i:1666516823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16fad53a60a8b43fa84fc7bb9ed37a3f32e43d4d', '172.105.247.100', 1666516823, '__ci_last_regenerate|i:1666516823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738830e5a43594b7e741b0d42e21557174b5fbb6', '172.105.247.100', 1666516823, '__ci_last_regenerate|i:1666516823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f56d515c0410a37dace9c7837cf535a6f0483d0e', '172.105.247.100', 1666516824, '__ci_last_regenerate|i:1666516824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c8b3416e00bd9629bf9457e9045cc6f61bd241', '172.105.247.100', 1666516824, '__ci_last_regenerate|i:1666516824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf1f64b562950c3fc9094eef09241e2e25ae567', '172.105.247.100', 1666516824, '__ci_last_regenerate|i:1666516824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38962e0c50194b0e4909b821eba0f353984f6b7', '172.105.247.100', 1666516824, '__ci_last_regenerate|i:1666516824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0404f8f0935776210321abd1abee9d9cdf9ba922', '172.105.247.100', 1666521022, '__ci_last_regenerate|i:1666521022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18cc540b76640261ba2b810d178a51601bc1f7a0', '172.105.247.100', 1666521022, '__ci_last_regenerate|i:1666521022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d54ba1acff8d86eec855d5c7f752aa7e5d0810', '172.105.247.100', 1666521022, '__ci_last_regenerate|i:1666521022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c5b16b0a2c6a379db9ac3b079c205f653711bb', '172.105.247.100', 1666521022, '__ci_last_regenerate|i:1666521022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae351337e2167cc2089dc4109a85504abf496ac', '172.105.247.100', 1666521023, '__ci_last_regenerate|i:1666521023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8a73bf0daa28fc9f97d51622840160c42c434c7', '172.105.247.100', 1666521023, '__ci_last_regenerate|i:1666521023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1615868d84a45bce3d46ee2af6df608d5862b16', '172.105.247.100', 1666521023, '__ci_last_regenerate|i:1666521023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c7c68bca7c841bc4442597d985d7125a958767', '172.105.247.100', 1666521023, '__ci_last_regenerate|i:1666521023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1881c884dca5e75b4a0b9348fa6af69beb46641f', '172.105.247.100', 1666521024, '__ci_last_regenerate|i:1666521024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2678c1aca947b757f6305c35a9f522c9832eff23', '172.105.247.100', 1666521024, '__ci_last_regenerate|i:1666521024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19db7995064f7d0116c94c4a1a45136584751553', '172.105.247.100', 1666521024, '__ci_last_regenerate|i:1666521024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94c1b25185fdd260636af66d00b302222affbdd', '172.105.247.100', 1666521025, '__ci_last_regenerate|i:1666521025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b446d90a27c63ec8485c39209057981ec61624d4', '172.105.247.100', 1666521025, '__ci_last_regenerate|i:1666521025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24dc509a084aa54a8955acb502af0b6d24d44877', '172.105.247.100', 1666521025, '__ci_last_regenerate|i:1666521025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f2d3312296a010c600f410b0c39161d9d369b8', '172.105.247.100', 1666521025, '__ci_last_regenerate|i:1666521025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad14c8243762504a1ff55b0501ae0230222a2083', '172.105.247.100', 1666521026, '__ci_last_regenerate|i:1666521026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3deb3789a90ea7f207a5075142cb1238565434cc', '37.111.216.94', 1666525147, '__ci_last_regenerate|i:1666525147;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666524701;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f7bc2cd34919e53127714d0ca63e55142e8509', '37.111.216.94', 1666526607, '__ci_last_regenerate|i:1666526607;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666526584;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('362a0c1d6bfaaeba4f822291d7d950effb72c7d2', '172.105.247.100', 1666525224, '__ci_last_regenerate|i:1666525224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e70d7b48f50914612039625285cf8b7a3f610e6', '172.105.247.100', 1666525224, '__ci_last_regenerate|i:1666525224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8700d573f938ad7cf448b51e536961e27bb26344', '172.105.247.100', 1666525224, '__ci_last_regenerate|i:1666525224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7963319250b72ee93b0dc540e9bb3d6193338a3f', '172.105.247.100', 1666525224, '__ci_last_regenerate|i:1666525224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24f1d8f36918068656d0d2e66d32801abad2417', '172.105.247.100', 1666525225, '__ci_last_regenerate|i:1666525225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5106ee1f93a02d96f08418127d8be10fe536ab', '172.105.247.100', 1666525225, '__ci_last_regenerate|i:1666525225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f97a744ba63d94a13dfca46d1e0e4f7078b7962', '172.105.247.100', 1666525225, '__ci_last_regenerate|i:1666525225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec5345051304caacf33d8bfe70484c90485e531', '172.105.247.100', 1666525225, '__ci_last_regenerate|i:1666525225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb0c986cee46e207823914965af598850e5c059', '172.105.247.100', 1666525226, '__ci_last_regenerate|i:1666525226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2b4819a09d0078d79a553759b45e8ce72322eb', '172.105.247.100', 1666525227, '__ci_last_regenerate|i:1666525227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85336beef71e0b4dd2388d3c4412e422f3d4d784', '172.105.247.100', 1666525227, '__ci_last_regenerate|i:1666525227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8690947357491e34c6c7183dd3b437f5d03f73f2', '172.105.247.100', 1666525227, '__ci_last_regenerate|i:1666525227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fb2234bad2cfe96f3724399c074e06b7754d6a', '172.105.247.100', 1666525227, '__ci_last_regenerate|i:1666525227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129914d9c272fe89d7f9b0f4b578a6d62b099247', '172.105.247.100', 1666525228, '__ci_last_regenerate|i:1666525228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3c24255552850f7b6c7d289663a0c8470e57af', '172.105.247.100', 1666525228, '__ci_last_regenerate|i:1666525228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91e806545374b6a47ee6d96d5dd8ace834c9f77', '172.105.247.100', 1666525228, '__ci_last_regenerate|i:1666525228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f00472688abb62c2af6309ce5e478003bb00aa81', '37.111.216.94', 1666526979, '__ci_last_regenerate|i:1666526979;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666526608;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c07c16f45ecdea1d2039749f5622b255ce449a', '37.111.216.94', 1666530302, '__ci_last_regenerate|i:1666530302;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666527127;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60e03a91a7dc5ed4a3a32969700541115a202cf', '172.105.247.100', 1666529423, '__ci_last_regenerate|i:1666529423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be29962675a97c8a73531da0a0e488df2f4a86ef', '172.105.247.100', 1666529424, '__ci_last_regenerate|i:1666529424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c25b871a67b85579cfb4b7ed7bb1a019821d38', '172.105.247.100', 1666529425, '__ci_last_regenerate|i:1666529425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e44432e17675f3e292c8fc8140cb37596cb2bb8a', '172.105.247.100', 1666529425, '__ci_last_regenerate|i:1666529425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f19482cb72bed77620f72ab67f441cf06b83ca', '172.105.247.100', 1666529425, '__ci_last_regenerate|i:1666529425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0b55522df1248e43b2dd6623823b92289cc275', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d947b43688b787c105bda49bd334eece8619525f', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af42c2fac11413b89d869fb230cc84f076ba63ac', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06e9b32d4fad593971dbc7c83d556609619a0fb', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3761c5e7f700880ff4bfbb0ee10ef3ad02edeb1e', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc08a012c7a3d63c4d8aca5df5facbf0032b421', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3f8600db2731d71ca6f4605b698510e645c642', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b584d6101aa5cab5561151dc67aa1b574c3d5abd', '172.105.247.100', 1666529426, '__ci_last_regenerate|i:1666529426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfde68dfd6bd5f0be9923f6f57268e00bf23681', '172.105.247.100', 1666529427, '__ci_last_regenerate|i:1666529427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca300fe43d5d798d51ea9bccbe814bbd873235e0', '172.105.247.100', 1666529427, '__ci_last_regenerate|i:1666529427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4422e82a70f02e82aa06100e93710a1d1332f172', '172.105.247.100', 1666529427, '__ci_last_regenerate|i:1666529427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dceeb5b24fabdb57992140bde5e520f13ffe5e2', '37.111.216.94', 1666532698, '__ci_last_regenerate|i:1666532698;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666532694;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adce5a855e94f4196048cb27889fed87a1c78caa', '37.111.216.94', 1666533341, '__ci_last_regenerate|i:1666533341;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666532698;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3208b73e3908fbadadbd0088479144a8faced7a', '37.111.216.94', 1666534654, '__ci_last_regenerate|i:1666534654;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666534641;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ab98319de252bcbc7803cca3d80bf204254e79', '205.210.31.181', 1666533508, '__ci_last_regenerate|i:1666533508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5d1cf1cedd6357b535cf51c75d91cf8874a561', '205.210.31.181', 1666533509, '__ci_last_regenerate|i:1666533509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1b228d6c56f2320bc54edf78b6cf72974fddf9', '205.210.31.181', 1666533510, '__ci_last_regenerate|i:1666533510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8d06d41eb4ee13797278a9874a99564dc2ec665', '172.105.247.100', 1666533622, '__ci_last_regenerate|i:1666533622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f04496eb08b06c6f1682387ac9921e97a9b48c93', '172.105.247.100', 1666533622, '__ci_last_regenerate|i:1666533622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b868cd3d7dc6742405fba903cab679268a4fe6', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c378776ce374ae3e07a7b1ab2d522092fb894e4f', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c34a156b2b3e0a7f0273043931edce1bb5e226', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6996326e372b437de4a2f83deebcf7e37e88add5', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18328f8adf05af068017362c1b18943b1786fa4', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac9ea9aa57663448e4e0652a8cbd8c5f3b3ade1', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9749eeed79bcda94cfc05caf34c6db23dad3c233', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a2105f7083184640c9a0951ce62810162499d2', '172.105.247.100', 1666533623, '__ci_last_regenerate|i:1666533623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f04124b4f1dbe1b394f183fe13f979344a0f03f', '172.105.247.100', 1666533624, '__ci_last_regenerate|i:1666533624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f280783e9327a3d3d3e8c2b1364745fef672590', '172.105.247.100', 1666533624, '__ci_last_regenerate|i:1666533624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d444eb576afe25c1f743030004d19e398e6724', '172.105.247.100', 1666533624, '__ci_last_regenerate|i:1666533624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11f280d426c07a1604bfce4089cbbc225a334f2', '172.105.247.100', 1666533624, '__ci_last_regenerate|i:1666533624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a8c07f5dd62f7491e26843c3a4c8002ad12254', '172.105.247.100', 1666533624, '__ci_last_regenerate|i:1666533624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48064abda7e30e5c8849a8dbe351f7ed16ef8503', '172.105.247.100', 1666533624, '__ci_last_regenerate|i:1666533624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c90d360614c5cb8d4996fcba8abb1cd1a04cdd', '37.111.216.94', 1666534973, '__ci_last_regenerate|i:1666534973;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666534918;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2edf199df81b6b4d17f5c503736fc88fe1c0c3', '37.111.216.94', 1666535410, '__ci_last_regenerate|i:1666535410;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666535403;register_id|s:3:\"226\";cash_in_hand|s:9:\"1030.0000\";register_open_time|s:19:\"2022-10-22 21:07:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20b865456fa5c3e8e8bf604f949e169be675b48', '37.111.216.94', 1666535437, '__ci_last_regenerate|i:1666535410;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666425118\";last_ip|s:13:\"37.111.216.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666535437;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc50e4048597f5d6e8139e79f3c1b6512fa89b4', '172.105.247.100', 1666537822, '__ci_last_regenerate|i:1666537822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b00f26ec1b49c7428d70bafc5e5e132b3870ba4f', '172.105.247.100', 1666537823, '__ci_last_regenerate|i:1666537822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4c53eb1fe2dd13cde8c6a382601600971849f5', '172.105.247.100', 1666537823, '__ci_last_regenerate|i:1666537823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a202d2f8d326a37a9766de242aa4f4ecbfecd71', '172.105.247.100', 1666537823, '__ci_last_regenerate|i:1666537823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a859c8d7358c0a13038d554326cb101e7f862b', '172.105.247.100', 1666537823, '__ci_last_regenerate|i:1666537823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e6e997c29ec2e3e4d473a6a64bc718fcbfa18b', '172.105.247.100', 1666537824, '__ci_last_regenerate|i:1666537824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e7aa78a702130090ad03f500f9d0443d9528f4', '172.105.247.100', 1666537824, '__ci_last_regenerate|i:1666537824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c9b677deac3c8bcb9a0b3d8d1e3571260f9c02', '172.105.247.100', 1666537824, '__ci_last_regenerate|i:1666537824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78fcb6aa99ca6cb59bd75b54c3d879c2b74d675', '172.105.247.100', 1666537825, '__ci_last_regenerate|i:1666537825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c95159185634cf508136bc10e3e6b8e05a8aa3', '172.105.247.100', 1666537825, '__ci_last_regenerate|i:1666537825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd5744748889beb6d62c9b784371344e41f5bea', '172.105.247.100', 1666537825, '__ci_last_regenerate|i:1666537825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba2e30279997a07883bd478d9b73093ea94c787', '172.105.247.100', 1666537826, '__ci_last_regenerate|i:1666537826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b290c593895517ab82cfb0711faab5dd79811287', '172.105.247.100', 1666537826, '__ci_last_regenerate|i:1666537826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bceaf8f5477b26cd2f81fbddeb455d06d655c2c9', '172.105.247.100', 1666537826, '__ci_last_regenerate|i:1666537826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf64cde3ac176bdf30ba4a874256f1cf0d07985f', '172.105.247.100', 1666537827, '__ci_last_regenerate|i:1666537827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df784b49cf1b4c2e96a04b9c7b65547fbb0381fc', '172.105.247.100', 1666537827, '__ci_last_regenerate|i:1666537827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e51c6bbe62c150e7227242381d92412ba5d7267', '172.105.247.100', 1666542024, '__ci_last_regenerate|i:1666542024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efad950f0beb2ed57e114501afc3d81d787b18a1', '172.105.247.100', 1666542024, '__ci_last_regenerate|i:1666542024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2beda1d97ff409da13cdc7428167fb8d4769912e', '172.105.247.100', 1666542024, '__ci_last_regenerate|i:1666542024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c81ba190a0bd82c315b6039256f3765247cd9bb', '172.105.247.100', 1666542024, '__ci_last_regenerate|i:1666542024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a3ec545e17f828e960179281f13a8adc7ab5e3', '172.105.247.100', 1666542024, '__ci_last_regenerate|i:1666542024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa16e17952e55fe76895fba3573b11e8050437da', '172.105.247.100', 1666542024, '__ci_last_regenerate|i:1666542024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7dd18d545e9ff270383e30b9ff137028f6bae1', '172.105.247.100', 1666542025, '__ci_last_regenerate|i:1666542025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213bd32b4a6aa43b2a53dbf09f4efecf39c325ba', '172.105.247.100', 1666542025, '__ci_last_regenerate|i:1666542025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94ff476dafbf5e8072f5cb20cf8490b22f2b0aa', '172.105.247.100', 1666542025, '__ci_last_regenerate|i:1666542025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5302815756e3524ffbe7b5455a0af7dc48c273', '172.105.247.100', 1666542025, '__ci_last_regenerate|i:1666542025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a99aaa3657b020335bbacc16e9c695e7cce7f6', '172.105.247.100', 1666542025, '__ci_last_regenerate|i:1666542025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78524118ef1226a01288ecaac8c29f71e9f0a862', '172.105.247.100', 1666542025, '__ci_last_regenerate|i:1666542025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e070353b8fb5ca309d4125e5a84adbd7bbd3556', '172.105.247.100', 1666542026, '__ci_last_regenerate|i:1666542026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d03782f4e731d6d30f25773467e8be26048d2f1', '172.105.247.100', 1666542026, '__ci_last_regenerate|i:1666542026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ada6d472b8de26f1606ec978e8c1c40470ff068', '172.105.247.100', 1666542026, '__ci_last_regenerate|i:1666542026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca206082436a62a8e1746c80c93e79c63b5f9eb', '172.105.247.100', 1666542026, '__ci_last_regenerate|i:1666542026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ebbba770eb9f3fd8a3740702cf487c31bc2159', '172.105.247.100', 1666546221, '__ci_last_regenerate|i:1666546221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87277a9fea450dbdcad831065458a3f8ee0fbb27', '172.105.247.100', 1666546221, '__ci_last_regenerate|i:1666546221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523a0214822ead7f09bde23fff771f3b5bcf53ec', '172.105.247.100', 1666546221, '__ci_last_regenerate|i:1666546221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d608333c45954bc320ed24477d253ffc26a1ae8d', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a0410f515c30d3c84ccfea3b46d15d053b3bfa6', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390057a58c3d794c44e72697a953a3ecd5e08e23', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c0d89ce43ce5b33746e43013e5976adbc71a9b', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bfb09891db050b82150d710a7ba2d0df11ba50e', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6678e7d9eda74c3b805e5da3b8c5a688c9e8bdca', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0df1e2547d30716407c2b821c31cb35292ffa76', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0289cc696b8ed9a056fa2d37526444bc6d776cd', '172.105.247.100', 1666546222, '__ci_last_regenerate|i:1666546222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da8c61842abb3ddb1a4c1207002c99a24dfb6e3', '172.105.247.100', 1666546223, '__ci_last_regenerate|i:1666546223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d523351c908fd751d238f92a87dec79c90e6ee', '172.105.247.100', 1666546223, '__ci_last_regenerate|i:1666546223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec01a9debf5f64fbedb4aee762567c67a7ba131a', '172.105.247.100', 1666546223, '__ci_last_regenerate|i:1666546223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9918a01a876b7840f0bec02d7d1a834962cc8a95', '172.105.247.100', 1666546223, '__ci_last_regenerate|i:1666546223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d549234668536afb8c881068e82029f9b872faaf', '172.105.247.100', 1666546224, '__ci_last_regenerate|i:1666546223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78bc22f2ec5ab0161e933e50482a924fd463f4e5', '172.105.247.100', 1666550422, '__ci_last_regenerate|i:1666550422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef98cb1a6fed28c72208efd16a551965d1f15cf9', '172.105.247.100', 1666550422, '__ci_last_regenerate|i:1666550422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486f420041531e8430f5892008fc3cb54c33a75b', '172.105.247.100', 1666550422, '__ci_last_regenerate|i:1666550422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec3ce69492510326ed2bd605a5a18090d465816', '172.105.247.100', 1666550422, '__ci_last_regenerate|i:1666550422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e386fd33bb750ac27279afd4b4d0aa56042f916e', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1678dbe35cb85de11bedfea6d3a8d9b7329f1b', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d92c6a3e6ca1691d3e035b7bb6cc2504a84a504', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43645ee9f202768a16aa9264f6141c3e66a65c02', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf0b551c0a26da778282e3ebaf48bee85e292ff', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a680f8dc73548b86eea9279d1092e6ab9eedfcd9', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856077209af83a995cef620678195e644877d3f2', '172.105.247.100', 1666550423, '__ci_last_regenerate|i:1666550423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eedfa89641d28bbbca27d7ce0a68729610bc3df9', '172.105.247.100', 1666550424, '__ci_last_regenerate|i:1666550423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38aa27131b49cc70807b9d2eaee7943fbc0da4fb', '172.105.247.100', 1666550424, '__ci_last_regenerate|i:1666550424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f254f7581a68f4609c4f0653d2b80aec182ada0', '172.105.247.100', 1666550424, '__ci_last_regenerate|i:1666550424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('117df496824481f8433884fb06492479f04b78ac', '172.105.247.100', 1666550424, '__ci_last_regenerate|i:1666550424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a554ad5e7a59097cfc6abab84e7f9796e7e875f', '172.105.247.100', 1666550424, '__ci_last_regenerate|i:1666550424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c747f55451ae4e167d727f1efbd0359bc559a2', '172.105.247.100', 1666554625, '__ci_last_regenerate|i:1666554625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd3ad9b36321efe549848cf56cf454c3083856f', '172.105.247.100', 1666554625, '__ci_last_regenerate|i:1666554625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9450a455c61cbf2ecb03ea087c000534c3d3712d', '172.105.247.100', 1666554625, '__ci_last_regenerate|i:1666554625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89017561503399a5a0854349af83808554fbc1b7', '172.105.247.100', 1666554625, '__ci_last_regenerate|i:1666554625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289b32095868915e8f2e858a86c845951e6d2259', '172.105.247.100', 1666554625, '__ci_last_regenerate|i:1666554625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012380bf5223bad069679a848e9e51cab22427b1', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147459debe84d7ae6fb1dba4c1cc4aab6a2a2434', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765011230385ed4720586f66fdc123d32d95541e', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fc5a74c1f41a1836101f16f09f2735d7429b5c9', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2510501ea76dc76c972d782e52c345e170878fc', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937faf389a5ef4fb6c7f6906b5c48a74c286d443', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('914eabb41212461626236ceeba7ef5260977e9af', '172.105.247.100', 1666554626, '__ci_last_regenerate|i:1666554626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90467cdbe0930c3434ab7598413ac5b91b27e212', '172.105.247.100', 1666554627, '__ci_last_regenerate|i:1666554627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b2605b946bd607ed6890bee1089b0004ac63f5', '172.105.247.100', 1666554627, '__ci_last_regenerate|i:1666554627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a176dcaf3d3428b682b8c9b5ce2ad8b3d7c48e07', '172.105.247.100', 1666554627, '__ci_last_regenerate|i:1666554627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a23a1d7107d914f947c9c05cf599c5490398c3', '172.105.247.100', 1666554627, '__ci_last_regenerate|i:1666554627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61bf883efede9e4cb6ad9e0719a157634e8d73ec', '172.105.247.100', 1666558820, '__ci_last_regenerate|i:1666558820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb37a034c9eb81fa18379b89d039b8fcb9bafae', '172.105.247.100', 1666558822, '__ci_last_regenerate|i:1666558822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8bd666e25660c9ede5a5019c71455d83613f88', '172.105.247.100', 1666558822, '__ci_last_regenerate|i:1666558822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eacee728e33c9cacbf69ffc8fb050af3569d7b73', '172.105.247.100', 1666558822, '__ci_last_regenerate|i:1666558822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2a108829c900c7d07bce92cb95063aafae052d8', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb2a3c1fdf792ed707f1d2f00bbb982070ebc56', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d68414c1ee2dec530efa7ffedf1f9576672992', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfde87c38d7fbd12595c5925211de7c1dd273f07', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e217b85bddb9a96e08f7bd914eaf4c733cdfdf', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f5ecf67f8f6a3235e9341946fa5caa4ad69f484', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31888030a936eec4bf0939569318b09ae77ed231', '172.105.247.100', 1666558823, '__ci_last_regenerate|i:1666558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc725bf41274a3b19d1f04b3add73af0d0662e1', '172.105.247.100', 1666558824, '__ci_last_regenerate|i:1666558824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12adbaaa717fdc4f629293fa07b8b064d0ba04ca', '172.105.247.100', 1666558824, '__ci_last_regenerate|i:1666558824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0af69febfbdc399c5276aeb1016d85183d4b393', '172.105.247.100', 1666558824, '__ci_last_regenerate|i:1666558824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b607fe5ac54d68a80c727de5e394081201e288e4', '172.105.247.100', 1666558825, '__ci_last_regenerate|i:1666558825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a0c0e2b12b76c7cee71d50cf629908ab52aba4', '172.105.247.100', 1666558825, '__ci_last_regenerate|i:1666558825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5780b08b05ea33b5c0bd4c155ef1f8d4ef96a3a1', '172.105.247.100', 1666563020, '__ci_last_regenerate|i:1666563020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1794fd04ecf887788992e46f155303c834e416', '172.105.247.100', 1666563020, '__ci_last_regenerate|i:1666563020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed24e601b32da3116a755808c28ba88c20e302ce', '172.105.247.100', 1666563020, '__ci_last_regenerate|i:1666563020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30cd5d83f35c53b77e85cadda50d9e703ce607b', '172.105.247.100', 1666563020, '__ci_last_regenerate|i:1666563020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde9b2e82b4a1bf21b689bea6164073637fcb6d2', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e6fee443a7be535a3c8325eaad5f5443bbb31f', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1917267b36fe1e0b8a314e5e874909916872f8', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77e920f125ef9581d58f1371cce5eaa6e36d432', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ee970fd3e111d81c45ad77b8de323a4922b97d', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dcbe865e5a17f8621d6f21f1354f4cdea8c2d17', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be79099d07fb9da4ad1f930edaccec949250cfa4', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62ba0151236cc53113b413e4acc411b1cc5ce37', '172.105.247.100', 1666563021, '__ci_last_regenerate|i:1666563021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2364703b89a9b866c045ba2c67000dd021246d2', '172.105.247.100', 1666563022, '__ci_last_regenerate|i:1666563022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d69225282bdae237fd898e52462cef5743457a', '172.105.247.100', 1666563022, '__ci_last_regenerate|i:1666563022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5036b17d97b6d804f8d65720e103aab2190fd36d', '172.105.247.100', 1666563022, '__ci_last_regenerate|i:1666563022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1106476d2522128115629270c09350b2a07d8cca', '172.105.247.100', 1666563022, '__ci_last_regenerate|i:1666563022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9238b390729137934d9438cde85b9e0e9bf763', '172.105.247.100', 1666567222, '__ci_last_regenerate|i:1666567222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce7587b404c7f66a656830907d83ee7e16e7d7a7', '172.105.247.100', 1666567222, '__ci_last_regenerate|i:1666567222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec972b7addc850238ad52412b9c7afbb9c457e6e', '172.105.247.100', 1666567224, '__ci_last_regenerate|i:1666567224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30f011840a3cb9dc0860526f3796db5a0751033', '172.105.247.100', 1666567224, '__ci_last_regenerate|i:1666567224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8102d5743d6ec2803410489897def7c0a8eb280e', '172.105.247.100', 1666567224, '__ci_last_regenerate|i:1666567224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a5775dcdaa375d7cd2bb3065cec3feccc8b7f7', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caae306e0a1e0ada9192f022c1d6abf175b850e3', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409238684b103dbccc8ac6535d0911344e18b694', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4792ecb49dd9359bca6d33c9111d5b7fbb56f6ef', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f1b048c48c6cd01cd9bf4e3d018d4e0a1e4bda8', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5908662c2f2ba2ca9907aca465444e729c2e7caa', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b363f87f7c1b4b47b502e95128b4d40fb945a6', '172.105.247.100', 1666567225, '__ci_last_regenerate|i:1666567225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c6bc650140cfd6179c5c8e8a7ad17512e1d740', '172.105.247.100', 1666567226, '__ci_last_regenerate|i:1666567225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4cc4a4d3594ce6e95703e1b08ccb386ce17e82d', '172.105.247.100', 1666567226, '__ci_last_regenerate|i:1666567226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f086a2c73941459b16f632c26ab56b3b6a8fb9f', '172.105.247.100', 1666567226, '__ci_last_regenerate|i:1666567226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62437afde7c8edf3e076ef73bc4e0656d53be957', '172.105.247.100', 1666567226, '__ci_last_regenerate|i:1666567226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12eb2aa5a0a1da918b0fe452bf9d78103a7c5346', '172.105.247.100', 1666571422, '__ci_last_regenerate|i:1666571422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c710f16e59b50a5b42d6ff1ce47c7bb60a8c128', '172.105.247.100', 1666571422, '__ci_last_regenerate|i:1666571422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113b4ab3880c3ec776334c2f6ff5178512386726', '172.105.247.100', 1666571423, '__ci_last_regenerate|i:1666571423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af70e1a628d4f4192350535d317ee1fa1ae9e00e', '172.105.247.100', 1666571423, '__ci_last_regenerate|i:1666571423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e95dd03ac14bed04a8bbfb1e72a2dfcc83de7be', '172.105.247.100', 1666571423, '__ci_last_regenerate|i:1666571423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01feb0360520e8473ff22068b69ea0f82ec10173', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9647d8267c09fe5b396558c6170d8018067e1c50', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ac54ec17c4d04c4784a41ec961abb66a5f91b3', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85e48b15024ddb1af9608a4ce543ef4fab05857', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6944b48cc2bcf47fa09bfdde5083cca12d610337', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ab99ef218aa4f147d4a7f7e748f658e5aa54ea', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6639664b6bc7abd7c9b3318c9621536296022320', '172.105.247.100', 1666571424, '__ci_last_regenerate|i:1666571424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911ca0a698d8a326ea3fdd1394c4c48d04de5e2a', '172.105.247.100', 1666571425, '__ci_last_regenerate|i:1666571424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2554b3ad48912762b3aa7790767ab94611662794', '172.105.247.100', 1666571425, '__ci_last_regenerate|i:1666571425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1aaac77f6a6fb330629800bd4faec5a398fb904', '172.105.247.100', 1666571425, '__ci_last_regenerate|i:1666571425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7461ec42c6058dd397247befa48f9fa216baeac9', '172.105.247.100', 1666571425, '__ci_last_regenerate|i:1666571425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa6b9bb62a822026c2aa93d0267a82122783c2a', '198.235.24.29', 1666574368, '__ci_last_regenerate|i:1666574368;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6104b0ba3237e223f45c9e0303af9ceffb88b7a1', '198.235.24.29', 1666574369, '__ci_last_regenerate|i:1666574369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce952d1421a46fead2bb5bdd5fab1885919f3667', '198.235.24.29', 1666574370, '__ci_last_regenerate|i:1666574370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab83d2e33dddaa9578c33a900df3e42e89cba8a2', '172.105.247.100', 1666575621, '__ci_last_regenerate|i:1666575621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73c5cd7388c4057d384cbaf5d7e36867a681f2c', '172.105.247.100', 1666575621, '__ci_last_regenerate|i:1666575621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f317c6ec961f218fffd947d349f2607e7b1dc435', '172.105.247.100', 1666575622, '__ci_last_regenerate|i:1666575622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f9d6d709ed42738b584a5ffaa665fc41ac87d9', '172.105.247.100', 1666575622, '__ci_last_regenerate|i:1666575622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3deda886da0d572be78d94cb0328d18e99ce8d6', '172.105.247.100', 1666575622, '__ci_last_regenerate|i:1666575622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf26d72793efaeb6556425d1a941b1e1f2f61d74', '172.105.247.100', 1666575622, '__ci_last_regenerate|i:1666575622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d73381f860df02331e54e07fb53f06d8fdfac4', '172.105.247.100', 1666575623, '__ci_last_regenerate|i:1666575623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c48a24054a2f9b8825570a9f631e0d1ade3a5e', '172.105.247.100', 1666575623, '__ci_last_regenerate|i:1666575623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0995f1624fce12bf5a225128f08128cf00063156', '172.105.247.100', 1666575624, '__ci_last_regenerate|i:1666575624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab089f76f2ab5aa65b85d4b2c63a97c14fe9613', '172.105.247.100', 1666575624, '__ci_last_regenerate|i:1666575624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1ae15a69dee7fc3ff95e17453aa56ed5411cf3', '172.105.247.100', 1666575624, '__ci_last_regenerate|i:1666575624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174c7eadbca7d388d9ec962d92e55f30fb44a7ed', '172.105.247.100', 1666575624, '__ci_last_regenerate|i:1666575624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d41724c004c148e5b0724a5bc8df6bcbddb4c5c3', '172.105.247.100', 1666575625, '__ci_last_regenerate|i:1666575625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517f7052958da6176ee26b73e0a6f2d977b4ac81', '172.105.247.100', 1666575625, '__ci_last_regenerate|i:1666575625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae3b22a8ac9f30220aa15fd2c2d9c042a23e0ed', '172.105.247.100', 1666575625, '__ci_last_regenerate|i:1666575625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8e7aa74102293a00fc428201791cb80649102a', '172.105.247.100', 1666575625, '__ci_last_regenerate|i:1666575625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c9965530f93fd1d24555a8c65b0574c31ad3eb', '172.105.247.100', 1666579822, '__ci_last_regenerate|i:1666579822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1032740726862b9afa55ca44f2d9a5180a45c9b4', '172.105.247.100', 1666579824, '__ci_last_regenerate|i:1666579824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ecbedeb956698fb7b510a33243408f4934f1d00', '172.105.247.100', 1666579824, '__ci_last_regenerate|i:1666579824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd33dd7554b397217bbcde34db9eda0b7c347767', '172.105.247.100', 1666579824, '__ci_last_regenerate|i:1666579824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83394dc0bb211b4533166cd8ed9fe71027df54a4', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff6ca038b2fadc91cee2f9aea8c81b997f80684', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b092bbed67d09d4b655f26777b8409d649f8a4c', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8508ae30b0bea4da80c6b530bf56d25307b626', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0315c415240fb2d32b8e66893f3b2832e82cebeb', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f38b90fcc91452827bf619f00b08984734558e', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83b47f821745b261de686d7a6d3e07b7689af0eb', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aebd930770b962d57136459f51e446784813c7b', '172.105.247.100', 1666579825, '__ci_last_regenerate|i:1666579825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f280875426782260b1214e5e43c1640cc553d3e6', '172.105.247.100', 1666579826, '__ci_last_regenerate|i:1666579826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b00c93cb017c2b7876d7d84e5560b913ed919a7', '172.105.247.100', 1666579826, '__ci_last_regenerate|i:1666579826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d27cb4e47b8b5d1a71bc00532f99416081631b', '172.105.247.100', 1666579826, '__ci_last_regenerate|i:1666579826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2ec25e4b96cdf76a6af3f3a747e0a6dcc33d36', '172.105.247.100', 1666579826, '__ci_last_regenerate|i:1666579826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97be2ff292299a1f3045d65661c5f2a6a0d5d78a', '172.105.247.100', 1666584022, '__ci_last_regenerate|i:1666584022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208e24fd6371091b50fa2abd745abf6bde8aa4af', '172.105.247.100', 1666584022, '__ci_last_regenerate|i:1666584022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607db262a49fea19534d903882c8e0417fe51dbc', '172.105.247.100', 1666584022, '__ci_last_regenerate|i:1666584022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c845030ea98b3c3a5fee1de624a24d17413c389d', '172.105.247.100', 1666584022, '__ci_last_regenerate|i:1666584022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c77df20dd90119c360b7432b91799075d1b4f68', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('757609d1ea17f4228561af8aee78479661824964', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2d8e90bb016cf7934f1cdd681b2cf1c1fd1f6d', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5865e6dc0bdf1a997ee5da4f92b1f66a5138ffb1', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7915c10fafc7caff2aef354f454073d2d6e42e', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2312176dead35b6f910d49f51b0b3121e55bc380', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774f62b465f5c94cebed41e29100acc7cafaef7a', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e097a38479887dd827ae0a26cfe2ea07f3aa0ec7', '172.105.247.100', 1666584023, '__ci_last_regenerate|i:1666584023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9dcb3a182f6b583075b50514deac324dbfdd40', '172.105.247.100', 1666584024, '__ci_last_regenerate|i:1666584024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d35e00aef43150e9dec34ca7eb6219404479f99', '172.105.247.100', 1666584024, '__ci_last_regenerate|i:1666584024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7fc30cd280ba0c19d959de680d5e963e67c18fa', '172.105.247.100', 1666584024, '__ci_last_regenerate|i:1666584024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a89572b5c8db821302d9f12fc022130f87cf10', '172.105.247.100', 1666584024, '__ci_last_regenerate|i:1666584024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d789075b0b4539487533c22d394dfcc535e3ebf7', '37.111.217.195', 1666587952, '__ci_last_regenerate|i:1666587923;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666500100\";last_ip|s:13:\"37.111.216.94\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666587936;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f019e2a8baebff984adb104832b6ae7c19a4664', '172.105.247.100', 1666588222, '__ci_last_regenerate|i:1666588222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c47b14b08a4bbd72410f48ac0092c49fda3169', '172.105.247.100', 1666588222, '__ci_last_regenerate|i:1666588222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446f67efd38528dc86be1e49e63a70dcef7f68ee', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bc75ed1f3fd8775c2640c4a740cb8509937d97', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bc04cd8f253e7fe4eaa3f290efb2ca33dadde1', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7222398c5fec0d71e6499b98dac0e1a8d4b788a8', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5523749f6e3f1da9d836796c6ec3a74986513fbf', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6daa41ff9f567bb11ac62413aee5bac2fd159d', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004acfc5a2cf636f4125c3ca9a142e984a2a374c', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4838c32b9d0aced6964791a96402868bb06330a4', '172.105.247.100', 1666588223, '__ci_last_regenerate|i:1666588223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a804480837296988cea2726067fa24d08b2347ab', '172.105.247.100', 1666588224, '__ci_last_regenerate|i:1666588224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1371950b4bd057c65334caac9e6436ba4f33109f', '172.105.247.100', 1666588224, '__ci_last_regenerate|i:1666588224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfa469b946ba31cfa772815a66436b0aacea798', '172.105.247.100', 1666588224, '__ci_last_regenerate|i:1666588224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c742b7c2e49c9963a8d0cb6919eb46c356d831b1', '172.105.247.100', 1666588224, '__ci_last_regenerate|i:1666588224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b3479ab38789355d55f067404923ef12c54bce', '172.105.247.100', 1666588224, '__ci_last_regenerate|i:1666588224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83964e9864bf78f911ae0a9b64e7d3ffd3c3600e', '172.105.247.100', 1666588224, '__ci_last_regenerate|i:1666588224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68a59a81196aaf7f0f8831172b55f1e436c259e5', '205.210.31.8', 1666591424, '__ci_last_regenerate|i:1666591424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b662f7f218fbdf688f5449e64a1b1d4545689e7', '205.210.31.8', 1666591424, '__ci_last_regenerate|i:1666591424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1e610e08400e6fb3f651e6b6e3b84501e03f48', '205.210.31.8', 1666591424, '__ci_last_regenerate|i:1666591424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b0bf4ddeaa1f69e612b77820a9d3a294368f83', '172.105.247.100', 1666592424, '__ci_last_regenerate|i:1666592424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c239004cc4cdbce84acca415dc55c900aeefde6', '172.105.247.100', 1666592425, '__ci_last_regenerate|i:1666592425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bec67ae7d88eac9fa1f1fc8509e28c32479b00e', '172.105.247.100', 1666592425, '__ci_last_regenerate|i:1666592425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54537c5cafb17dad2f32887443dcf2f86c2e48d3', '172.105.247.100', 1666592425, '__ci_last_regenerate|i:1666592425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dab0e6de233972542482c1585866596d4bea30e', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9158f04fd18f4f3cbc9a8c00d9e5a464ad0ca78', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6497ee5930a68a1470ad6380c76a47fa38b4ac19', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6532d7fca67bb98cf50d48a97aec461abd937a2f', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e55f75e198483551af1545cdc6958cc9d544fc', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a806071e971ffc8694e07614967c24a3e9b74c66', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e437a3e22a9796fe980832bf129e4ddfc6275aa', '172.105.247.100', 1666592426, '__ci_last_regenerate|i:1666592426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aad6aa0ba950a252eadba20bc53c75cb5278558', '172.105.247.100', 1666592427, '__ci_last_regenerate|i:1666592427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1aefc05fea2433116de6de3a8179ff0eeb80ea', '172.105.247.100', 1666592427, '__ci_last_regenerate|i:1666592427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d64740db0f1d6de741c2890c8e8a5d528d04c014', '172.105.247.100', 1666592427, '__ci_last_regenerate|i:1666592427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03929381b379afccd4100550e3e1adcdb0d9eb31', '172.105.247.100', 1666592427, '__ci_last_regenerate|i:1666592427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3718e6a7429e1b7b444bbc8a1f47a07f64d5caa0', '172.105.247.100', 1666592428, '__ci_last_regenerate|i:1666592428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e15a28c03193d619194d7fe6516857e6fc6833b', '172.105.247.100', 1666596623, '__ci_last_regenerate|i:1666596623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2609a31dd06c9055680af73c07a77c200e1ad642', '172.105.247.100', 1666596625, '__ci_last_regenerate|i:1666596625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656e07bcf5a022e521f036db3a3572e78406d01e', '172.105.247.100', 1666596625, '__ci_last_regenerate|i:1666596625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed37e3f689358038b81975118a6ad5563962c8d1', '172.105.247.100', 1666596625, '__ci_last_regenerate|i:1666596625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c05b85861e132918727afa11c7b252ac831e2c', '172.105.247.100', 1666596625, '__ci_last_regenerate|i:1666596625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25891269cf804f62112ca1bceea6d39b73c898ec', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75875410b481bd4acf3c059d331c37b1771493ec', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389d413f8f3904dd7951f1a4085340692a862698', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cba7fd9645f6a8d2d331bfe3c90d8584f576522', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cc90f3a6b63de2e5b0a1cf0bca5aa1a13c34c1', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6894ecd962a5a4f64436dd1992e53118f81f44b7', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c315eaef6e3a6d0dcd00be01315be16caef2613e', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4663f956dc347300fe3ddf3791f456467b1827af', '172.105.247.100', 1666596626, '__ci_last_regenerate|i:1666596626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b562f2ccd8e39593ff0c4fff63fc56efaa8dbbd', '172.105.247.100', 1666596627, '__ci_last_regenerate|i:1666596626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa89ef05a0ff55a7da44d858db6045da66c63a7c', '172.105.247.100', 1666596627, '__ci_last_regenerate|i:1666596627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c037b162e6c1b24424d0ce1447ddb989d36ff6e', '172.105.247.100', 1666596627, '__ci_last_regenerate|i:1666596627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3058a720b091efc9ba893112e85e44e2b16624', '172.105.247.100', 1666600823, '__ci_last_regenerate|i:1666600823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3695ab5b4bf06dacece523c2614bb7e8c446a7', '172.105.247.100', 1666600824, '__ci_last_regenerate|i:1666600824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6b300ab8c5f389c9148cbd1aa0f107c8e92266', '172.105.247.100', 1666600824, '__ci_last_regenerate|i:1666600824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffaa06a26f6d6cd31756923863b06f2c0f73f79d', '172.105.247.100', 1666600824, '__ci_last_regenerate|i:1666600824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f19624fb07764775d94829ae0d9fe2ddbe0ec5c', '172.105.247.100', 1666600824, '__ci_last_regenerate|i:1666600824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb219c620b852f9e1ea95cbeb716b0de711970e4', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998cbd26ff706fb69e7c5a455c40c7d6f63185e4', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff0780d56a3557baf596b4adda49d4b45992510', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('767df6361a4874d9f9eaeb5bf33fc3cc537f1151', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27cf823c5fcbd9105fe2b9b83e91aed13124041', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da74e712cc4e03c2f467d96fe6288f6e1ba72bc', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe01eea79e604029f3b75a4d949c222816f3381', '172.105.247.100', 1666600825, '__ci_last_regenerate|i:1666600825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25d431467433817d524954eb9dfa007a67f92af0', '172.105.247.100', 1666600826, '__ci_last_regenerate|i:1666600826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87d42bafb179ba5821b5ca035191cc242783ef8', '172.105.247.100', 1666600826, '__ci_last_regenerate|i:1666600826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733f7384e1ad618f7a3f2cebdd29bad7992fafe1', '172.105.247.100', 1666600826, '__ci_last_regenerate|i:1666600826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2f2fde4bc4b84e42e8cca9cc3b50b92c60df5d', '172.105.247.100', 1666600826, '__ci_last_regenerate|i:1666600826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0af9ff6be660a1bff14b3d1f3b19975ee06362', '172.105.247.100', 1666605023, '__ci_last_regenerate|i:1666605023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44061f5cfe460008451f4e8a2a073108c088948d', '172.105.247.100', 1666605023, '__ci_last_regenerate|i:1666605023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('209214b47cd3745438538cca67048971865c8850', '172.105.247.100', 1666605024, '__ci_last_regenerate|i:1666605024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388caa05506f9e33de2b442c31d0c4e9b3ccc70a', '172.105.247.100', 1666605024, '__ci_last_regenerate|i:1666605024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d886d450bebe755ddb623fef9234f6f0b055d443', '172.105.247.100', 1666605024, '__ci_last_regenerate|i:1666605024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8084f1db6adbb25d8583bf6ca1e1d657dc3dfc9c', '172.105.247.100', 1666605024, '__ci_last_regenerate|i:1666605024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a2d981089e16e77f806ee8fca4ab7eb28ead06', '172.105.247.100', 1666605025, '__ci_last_regenerate|i:1666605025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6ab45a5e6dd49e6afb0eb4699b53e36423f00b', '172.105.247.100', 1666605025, '__ci_last_regenerate|i:1666605025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44947e7000915b6990667370623c7627f625f6d', '172.105.247.100', 1666605025, '__ci_last_regenerate|i:1666605025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37432f57ef9919c3a6a724eb32453ed072c59a4a', '172.105.247.100', 1666605025, '__ci_last_regenerate|i:1666605025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('704d4903771baf2fb408856d10cfceaa7b0cceac', '172.105.247.100', 1666605025, '__ci_last_regenerate|i:1666605025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10281bb66c71ac00c4352622dc53b07b1fa85b83', '172.105.247.100', 1666605025, '__ci_last_regenerate|i:1666605025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c9518b7fc941a0927607bfb01907de0b11e3c5', '172.105.247.100', 1666605026, '__ci_last_regenerate|i:1666605026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b94d7c84e6bdd38a1031e072a1858837a0da976', '172.105.247.100', 1666605026, '__ci_last_regenerate|i:1666605026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68af281f46dbbfe22d0a4c2b663705a7c40e931b', '172.105.247.100', 1666605026, '__ci_last_regenerate|i:1666605026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651a13cc945edef6b59489df62882aa46b5f69e3', '172.105.247.100', 1666605026, '__ci_last_regenerate|i:1666605026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5083c1761b53c8ac1ce0239f8e2abd0b05a09c02', '37.111.217.195', 1666609092, '__ci_last_regenerate|i:1666609092;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666605433;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f7b7c8a711ed4fa7823055270b18d8548b75d3', '37.111.217.195', 1666605371, 'error|s:110:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>http://pos.otask.us/admin/products\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19cf4006ead729e97413fea3d51db3f508ab038', '37.111.217.195', 1666616359, '__ci_last_regenerate|i:1666616359;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666610532;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb6da5222a42254e08496d9cb02684654296fcc', '172.105.247.100', 1666609223, '__ci_last_regenerate|i:1666609223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d595876b7677a959caad8fb5a0326f4bb42594c', '172.105.247.100', 1666609223, '__ci_last_regenerate|i:1666609223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d288f405bf180c435cd8730b4e0d66a15d2c0ee', '172.105.247.100', 1666609224, '__ci_last_regenerate|i:1666609224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2bed933aa9a63be3b20b8dc79bd635840d0cd6b', '172.105.247.100', 1666609224, '__ci_last_regenerate|i:1666609224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fc525ba73d73775ded2927d3594be0fc521880c', '172.105.247.100', 1666609224, '__ci_last_regenerate|i:1666609224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f7a7aeccf007204e4f6e4f69057b2ad5c144c9', '172.105.247.100', 1666609224, '__ci_last_regenerate|i:1666609224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bc6158e7d6e7f821c49c96a02911c9a6f2aebd', '172.105.247.100', 1666609225, '__ci_last_regenerate|i:1666609225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cdcb17be3167e81bdb53e20788fee1db59678d', '172.105.247.100', 1666609225, '__ci_last_regenerate|i:1666609225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49f9b828e51996774d21f5ead4e05a6c99ce964', '172.105.247.100', 1666609225, '__ci_last_regenerate|i:1666609225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8099d1708858438c831fd370290b87f797222301', '172.105.247.100', 1666609225, '__ci_last_regenerate|i:1666609225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ef12a0054af3962ffb81b674e3115314d8043bd', '172.105.247.100', 1666609226, '__ci_last_regenerate|i:1666609226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3dfc22eeae0c70141f15c5219bc5f765a638d5', '172.105.247.100', 1666609226, '__ci_last_regenerate|i:1666609226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe54452dd54c7fc0ce32764c1470926243cdfae', '172.105.247.100', 1666609226, '__ci_last_regenerate|i:1666609226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370cae56481a95e40d6c3d7a5bd34f2b2f959303', '172.105.247.100', 1666609226, '__ci_last_regenerate|i:1666609226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80388aa4024d8d122680fd400a16c268c03253b7', '172.105.247.100', 1666609227, '__ci_last_regenerate|i:1666609227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc939aa755726be41532bc5348227f104a97da12', '172.105.247.100', 1666609227, '__ci_last_regenerate|i:1666609227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ecd5d7fb1ce6bae527b2423bbb06c6e6a42830', '172.105.247.100', 1666613422, '__ci_last_regenerate|i:1666613422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e543e8547b55d1affce05beda63811ef85e514f', '172.105.247.100', 1666613422, '__ci_last_regenerate|i:1666613422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b5dff0806cafb87c1b20b107ed15241012a538f', '172.105.247.100', 1666613423, '__ci_last_regenerate|i:1666613423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13dc45bfbe6d0bee11611131626390f5d850b36', '172.105.247.100', 1666613423, '__ci_last_regenerate|i:1666613423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dba43764704430cc0893993109d737e74db712c', '172.105.247.100', 1666613423, '__ci_last_regenerate|i:1666613423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0297be1fc280149c218b0ad4b9ef7f9a3fa5c1', '172.105.247.100', 1666613423, '__ci_last_regenerate|i:1666613423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3adde8156f3b5fb11b1fa89bf16f74a43c9d847', '172.105.247.100', 1666613424, '__ci_last_regenerate|i:1666613424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('059dbe8f3a81be2991ff79dfafc6553ea497fc54', '172.105.247.100', 1666613424, '__ci_last_regenerate|i:1666613424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9755c1f1f126658e6956052b29d6ef6bd0a8a43f', '172.105.247.100', 1666613424, '__ci_last_regenerate|i:1666613424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c0f2b55b35ce314f3b820dae36bf57dba682af', '172.105.247.100', 1666613425, '__ci_last_regenerate|i:1666613425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc2daade69a7fe226ea5fc4965c0561376d45c5', '172.105.247.100', 1666613425, '__ci_last_regenerate|i:1666613425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe2377fc88fa874388d8101accd66d4c4f13c891', '172.105.247.100', 1666613425, '__ci_last_regenerate|i:1666613425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf8ddf3a2e2c60e30573e7f1a014140d02a1fd4', '172.105.247.100', 1666613426, '__ci_last_regenerate|i:1666613426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e75141abc6d9fb74607d605f44cfd4bc8e76d8', '172.105.247.100', 1666613426, '__ci_last_regenerate|i:1666613426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51b191d1151b814b1ff7a2e4ff2eb12946c287a', '172.105.247.100', 1666613426, '__ci_last_regenerate|i:1666613426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637e612e7c9756a1570cd9ead11c3c164d6c2e78', '172.105.247.100', 1666613427, '__ci_last_regenerate|i:1666613426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac27858b570b9fd5dd2f3d81b9795f3065e55c0d', '37.111.217.195', 1666618694, '__ci_last_regenerate|i:1666618694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666616362;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c415e84869579faa3b3dfbc837ec5ca2ef3d434', '172.105.247.100', 1666617623, '__ci_last_regenerate|i:1666617623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd9cf85be378409d96fc97649967f9aeb79bc43', '172.105.247.100', 1666617623, '__ci_last_regenerate|i:1666617623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4afa05b61025627f6434ae7887273816fd83148', '172.105.247.100', 1666617623, '__ci_last_regenerate|i:1666617623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f021460134418c6c1106944050ffa1df2acefe0', '172.105.247.100', 1666617624, '__ci_last_regenerate|i:1666617624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27cbf33ef361f3e6577e8cabe31ed7ca507b8f33', '172.105.247.100', 1666617624, '__ci_last_regenerate|i:1666617624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69b8003ff238b1dabbe16337d317d87e0ebe0d4', '172.105.247.100', 1666617624, '__ci_last_regenerate|i:1666617624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3ce8b3166d542da5c20f4df7831b905578c4a6', '172.105.247.100', 1666617624, '__ci_last_regenerate|i:1666617624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f33dc236c709f5aed12eb973315f20503cfdc899', '172.105.247.100', 1666617625, '__ci_last_regenerate|i:1666617625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8481ebeecb1a22e74dcb532872fb67e7f34d7df3', '172.105.247.100', 1666617626, '__ci_last_regenerate|i:1666617626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04fc70844bf4e4c1a26286ade79301a0b9945b40', '172.105.247.100', 1666617626, '__ci_last_regenerate|i:1666617626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dad8083d6d7dc29462b5796af4526acedf39c7a', '172.105.247.100', 1666617626, '__ci_last_regenerate|i:1666617626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c58c72217ca32359fefdda70d0cadd739c1263', '172.105.247.100', 1666617626, '__ci_last_regenerate|i:1666617626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2364df4144966f4c43f7160258daf39cbf86fd3', '172.105.247.100', 1666617627, '__ci_last_regenerate|i:1666617627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fb9b8f984dec7fa094918578e5b6f771438d68', '172.105.247.100', 1666617627, '__ci_last_regenerate|i:1666617627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a70d224a50dbb8a07f9a144b40f09c4a036a48', '172.105.247.100', 1666617627, '__ci_last_regenerate|i:1666617627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6893be7c9970cd29c14a70ab595b2167db26a8', '172.105.247.100', 1666617628, '__ci_last_regenerate|i:1666617628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa2a9f0354ec946ac60776170d8ce7feadceb85', '37.111.217.195', 1666619324, '__ci_last_regenerate|i:1666619324;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666618700;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165f81a4344d152209d35c64955c87321e8b6360', '37.111.217.195', 1666619675, '__ci_last_regenerate|i:1666619675;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666619539;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a68a6a8d481f5f542350fe0d1a1ded0ffd490c1', '37.111.217.195', 1666620589, '__ci_last_regenerate|i:1666620589;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666620584;register_id|s:3:\"227\";cash_in_hand|s:9:\"2020.0000\";register_open_time|s:19:\"2022-10-23 20:30:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8edcef71a55ee5844216b60bf0a7339f5e56cd7', '37.111.217.195', 1666620612, '__ci_last_regenerate|i:1666620589;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666587929\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666620612;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a73b309022317ac7f94ee31cdf866301a2bb20', '172.105.247.100', 1666621824, '__ci_last_regenerate|i:1666621824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b62a940f2d6990014936a2317860e041c93d07c', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93398cfc3d35b8714549f1443504f9e0b2e17033', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14fcc0b96faa8c042b4c46756a5b70a92728e195', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6764c089ec28bc5d45a6a886aa2a2745abcf935', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c347721a9e8c6dee7a5ef63f1d3f92e0bfacf81c', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2199489d037a3ca7a53a4bb6c19c57e89bb0b744', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f897009c7ffb201384a6770155bbe1fbdfcdc02e', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84093a7b49a1f96c9213b6c8ed8d867b62e4a63b', '172.105.247.100', 1666621825, '__ci_last_regenerate|i:1666621825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd0be2a4dd7246d34a6057797f50df4c4cac47fb', '172.105.247.100', 1666621826, '__ci_last_regenerate|i:1666621826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7aad9c84463dc27be31db2c0896bf040ce1327', '172.105.247.100', 1666621826, '__ci_last_regenerate|i:1666621826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d9a4afadb04b219803e48b4420b5461b9c91fab', '172.105.247.100', 1666621826, '__ci_last_regenerate|i:1666621826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('667e8231c252ae2855ef0be060591f85a6b9d284', '172.105.247.100', 1666621826, '__ci_last_regenerate|i:1666621826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb114d2f07de2ca9783a5ba0717af2dfc6972dc', '172.105.247.100', 1666621826, '__ci_last_regenerate|i:1666621826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939781c9c4d4cb07e95d1d9c13e248bc04002a94', '172.105.247.100', 1666621826, '__ci_last_regenerate|i:1666621826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3cd2378bdb270059409727bcd505f508ecd6b3', '172.105.247.100', 1666621827, '__ci_last_regenerate|i:1666621826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16349c2fd67b72533f093992e432e74afa05a2e9', '172.105.247.100', 1666626021, '__ci_last_regenerate|i:1666626021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a331913be3e7193136826dc079de0f245b6f210d', '172.105.247.100', 1666626021, '__ci_last_regenerate|i:1666626021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0b0af5414dbf6d4852485d24a5f392998809cd', '172.105.247.100', 1666626021, '__ci_last_regenerate|i:1666626021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344c11fe9103ebd3eec55dc871d10754dafb4ce2', '172.105.247.100', 1666626022, '__ci_last_regenerate|i:1666626022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce570aad2e88b54af844954a3b8f212cb6e9356', '172.105.247.100', 1666626022, '__ci_last_regenerate|i:1666626022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d2a53e8e9da45378a78ab57a7ae873ce034240b', '172.105.247.100', 1666626022, '__ci_last_regenerate|i:1666626022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60bf9b9e9cae1b41c0c780e577dab370ce2371a4', '172.105.247.100', 1666626022, '__ci_last_regenerate|i:1666626022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1fbda5925b22bade29519829b104c8f692b588', '172.105.247.100', 1666626023, '__ci_last_regenerate|i:1666626023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c243e9690f5c5d9d44240bb9fcc9d9c13a37d1a1', '172.105.247.100', 1666626023, '__ci_last_regenerate|i:1666626023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75cf1dcc347b183613420055359aea3f495d2aae', '172.105.247.100', 1666626024, '__ci_last_regenerate|i:1666626023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f375dda6f969a3fda28ad689709bc870ed0d6d51', '172.105.247.100', 1666626024, '__ci_last_regenerate|i:1666626024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aa57ff24598709b30adea3fffa5df8ef796845d', '172.105.247.100', 1666626024, '__ci_last_regenerate|i:1666626024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a2b93990d48187d9a567d55b0a922f5762fac83', '172.105.247.100', 1666626024, '__ci_last_regenerate|i:1666626024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8f3b7006038dd4c7d1f41bc98e94c44b3ea874', '172.105.247.100', 1666626025, '__ci_last_regenerate|i:1666626024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa22aefd5fdbebe26e7886ecba4cc67594100ca', '172.105.247.100', 1666626025, '__ci_last_regenerate|i:1666626025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266b24b6f9de9f2ad31724cfc00a1f3ec2478092', '172.105.247.100', 1666626025, '__ci_last_regenerate|i:1666626025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce1f59b55e6b5ca861b8767c4a2d02143898888e', '172.105.247.100', 1666630221, '__ci_last_regenerate|i:1666630221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896e0a9d1b358c8a8ed1e08a83018e5d26c8be55', '172.105.247.100', 1666630222, '__ci_last_regenerate|i:1666630221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d754ed4a091ac890a35f2837701fdb0a3ef36a', '172.105.247.100', 1666630222, '__ci_last_regenerate|i:1666630222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6e477dee20fa7ac43470ef48fe7c559e4d265c', '172.105.247.100', 1666630222, '__ci_last_regenerate|i:1666630222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c0e96ca5184a75a8df2b128454d306830ef9ef', '172.105.247.100', 1666630222, '__ci_last_regenerate|i:1666630222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfc376da0148d5eb557e468d295826ac8364700', '172.105.247.100', 1666630223, '__ci_last_regenerate|i:1666630223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffbc77e1581db3813687d01537d8c9cdea9fc4ea', '172.105.247.100', 1666630223, '__ci_last_regenerate|i:1666630223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927cf8ca267045f7f3811ceb59af473589731050', '172.105.247.100', 1666630223, '__ci_last_regenerate|i:1666630223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('761f8429cbb5d827eb1fbedee319fb6ec1cb9779', '172.105.247.100', 1666630223, '__ci_last_regenerate|i:1666630223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2277d24f135d23a83ae14f4c39f2b411e2f7598', '172.105.247.100', 1666630224, '__ci_last_regenerate|i:1666630224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9421f6362eb02e92227a06e8eed6f3f3b3d606d3', '172.105.247.100', 1666630224, '__ci_last_regenerate|i:1666630224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75e47ad509e06725c36f6be1d9867ea94d62225', '172.105.247.100', 1666630224, '__ci_last_regenerate|i:1666630224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8ebd28fefd1b07f6a7281e82c39f019c1a18ea', '172.105.247.100', 1666630225, '__ci_last_regenerate|i:1666630225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f399c6541cc60951ae8dc8adfdfaf5a6367246', '172.105.247.100', 1666630225, '__ci_last_regenerate|i:1666630225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3f6e039fa9ead5706a2299bccec2dae80a0afd9', '172.105.247.100', 1666630225, '__ci_last_regenerate|i:1666630225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59417e9ec1a39e7075f530d5c124d6d5557cfa58', '172.105.247.100', 1666630225, '__ci_last_regenerate|i:1666630225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('480b12529b422e80d39ea4f8bb3acaa2768ac1ec', '172.105.247.100', 1666634425, '__ci_last_regenerate|i:1666634425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212b934c727bc67ce881214f2ff4edd620addde3', '172.105.247.100', 1666634425, '__ci_last_regenerate|i:1666634425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bec09f5d17033e76de872a3f1c71cd644698787', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5101d6410773dddc7dd591b077e40cde666de08', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a1ecab600e7dec745a9fd94c886142208c18c1', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90cf0abcf1abfe13551b5037e317579153c01dda', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17e1afa53452ce1271a300cea89b3d63e2cc935', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('689725d52b09b27df63d0a5a0878b4383690d20a', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab36cefc84d6e6c8e2313a0de771c28d26c4208f', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261b2a90cc478d2de6e0ad9172ca2794ceb2c58c', '172.105.247.100', 1666634426, '__ci_last_regenerate|i:1666634426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('617a2f26f98ca73dc34055a1afc799fa343ef6a9', '172.105.247.100', 1666634427, '__ci_last_regenerate|i:1666634427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e935e63ea8be8a95e0631533fd8b5c867f9d557', '172.105.247.100', 1666634427, '__ci_last_regenerate|i:1666634427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba645da35ae7f9a86e9eae1a38e282066c4aab1', '172.105.247.100', 1666634427, '__ci_last_regenerate|i:1666634427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa145737bdeb371e82f60962694ebe226c774bc', '172.105.247.100', 1666634427, '__ci_last_regenerate|i:1666634427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d76984b263754f8d3517fa01fce960a3618df6', '172.105.247.100', 1666634427, '__ci_last_regenerate|i:1666634427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89aa711cc9954f8320fa421cd14e14c41a38105e', '172.105.247.100', 1666634427, '__ci_last_regenerate|i:1666634427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a372c230e791948757b116d5b7f28817327cd7', '205.210.31.178', 1666635197, '__ci_last_regenerate|i:1666635197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057afd2a98a86bf3b2689bd74ebe325f17a5ea42', '205.210.31.178', 1666635198, '__ci_last_regenerate|i:1666635198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214970a16e480cb97cb492f509b59c08982bc481', '205.210.31.178', 1666635199, '__ci_last_regenerate|i:1666635199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212a1e20372e352ba95d8241549c04dba2957892', '172.105.247.100', 1666638623, '__ci_last_regenerate|i:1666638623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e590b562db9a85314ca943b5c0c761ab5318c2', '172.105.247.100', 1666638624, '__ci_last_regenerate|i:1666638623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('187c72b243c091710dfa8537f997b110fae66993', '172.105.247.100', 1666638624, '__ci_last_regenerate|i:1666638624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dd98d86b0b590010d5c6f27e71d9b85d65626d', '172.105.247.100', 1666638624, '__ci_last_regenerate|i:1666638624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025db694829e193d25705fe72648a7196c6691a4', '172.105.247.100', 1666638624, '__ci_last_regenerate|i:1666638624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6641988b7a3013ac3c913a31ef0cdb5d86f3e5d8', '172.105.247.100', 1666638625, '__ci_last_regenerate|i:1666638625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154f3b9ee286140ce1945d60de44ba836454b56f', '172.105.247.100', 1666638625, '__ci_last_regenerate|i:1666638625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a632a07c4a188ea0f918229f80cf0973332db3', '172.105.247.100', 1666638625, '__ci_last_regenerate|i:1666638625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aebeeb7afdc57197823f7e38a94114245cbc339', '172.105.247.100', 1666638625, '__ci_last_regenerate|i:1666638625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421a494513bd85558f25be82db1531a674cd36e7', '172.105.247.100', 1666638625, '__ci_last_regenerate|i:1666638625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab8667c8dac57d92f22dbb8850d353f8ef501a0', '172.105.247.100', 1666638626, '__ci_last_regenerate|i:1666638626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be9f4b58378dfeab8bc18505063965ad539331c8', '172.105.247.100', 1666638626, '__ci_last_regenerate|i:1666638626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ddc34767df979fb7dbb9c9b1df9e36cfe44d61', '172.105.247.100', 1666638626, '__ci_last_regenerate|i:1666638626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc29a5d862dd67c587a703dfbf6d307cda5e68b', '172.105.247.100', 1666638626, '__ci_last_regenerate|i:1666638626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d18332f6c553cfa8d19d1cc78e9810cecae65d4', '172.105.247.100', 1666638627, '__ci_last_regenerate|i:1666638627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d424ab83188626e235cc62e0cf89e2b6ac10e507', '172.105.247.100', 1666638627, '__ci_last_regenerate|i:1666638627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5457f4846ebb67c61d2ef3a7800d6e837ddf9fb3', '172.105.247.100', 1666642823, '__ci_last_regenerate|i:1666642823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af3d2a58ceacb05b85c5cadc43cab27d47cfd3cb', '172.105.247.100', 1666642823, '__ci_last_regenerate|i:1666642823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f68c1c3d3dc60363b678a179ecd9e6d8f81381f', '172.105.247.100', 1666642823, '__ci_last_regenerate|i:1666642823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ddc2c3eaa043c14116c438c662b9e9a616491e', '172.105.247.100', 1666642823, '__ci_last_regenerate|i:1666642823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b25dff73f739972771cbe4c57f6bdf58bc6025c', '172.105.247.100', 1666642823, '__ci_last_regenerate|i:1666642823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ec0122113500d211a095c74719c4adb27739bb', '172.105.247.100', 1666642824, '__ci_last_regenerate|i:1666642824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a2efb61d4843a5f70df71b87367a6ac0929352e', '172.105.247.100', 1666642824, '__ci_last_regenerate|i:1666642824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a3812bd216ce25b5b7a73f2dd010255a1b40e7', '172.105.247.100', 1666642824, '__ci_last_regenerate|i:1666642824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb63aeb71029b6dd9b9fcadde205251195e185c', '172.105.247.100', 1666642824, '__ci_last_regenerate|i:1666642824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('498485ab117b5a6c0dfc318b856a84ca3ab0550b', '172.105.247.100', 1666642824, '__ci_last_regenerate|i:1666642824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d124c315fdcdbd84d5171e57e6f036fe2965f913', '172.105.247.100', 1666642824, '__ci_last_regenerate|i:1666642824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29c114584b672881257a8aebad0f911ff25732e', '172.105.247.100', 1666642825, '__ci_last_regenerate|i:1666642824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae969d635605a0e53973cbe06baabcea2b839f5', '172.105.247.100', 1666642825, '__ci_last_regenerate|i:1666642825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fc8ee19a6d7548b553c03c7cf8384822c5a3a30', '172.105.247.100', 1666642825, '__ci_last_regenerate|i:1666642825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577d30de1a9e9b622f25efb9c11a89549ceb939e', '172.105.247.100', 1666642825, '__ci_last_regenerate|i:1666642825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403ba9c8c4444bb11ff2c7bd4cb83077ef665644', '172.105.247.100', 1666642825, '__ci_last_regenerate|i:1666642825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0a688664fcc0f716982ce345be16d0367128f8', '172.105.247.100', 1666647023, '__ci_last_regenerate|i:1666647023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ddefe7c0dd225a3532bb78ceb076dace71ea732', '172.105.247.100', 1666647024, '__ci_last_regenerate|i:1666647024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7c70b44cca9fc8ec186be777e269ccce27b6c4', '172.105.247.100', 1666647025, '__ci_last_regenerate|i:1666647025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af736589b094d8370c5aeaf607b7eda8e5dd216c', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aff604c890baa760429aa627900d9df0bd4a7ad', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d9618dac826958c16758110883871b876cfc468', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22d7c23d8234e394e6b47bff2852381ce0bdee2', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b64b0def0a2a68df12eda404bb5afca5f4d7ea', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9c28eb23a15b9a46cf28efb2fb4127c3062b0d', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27781949fe712d393a6099d8508e5c07e5762a0e', '172.105.247.100', 1666647026, '__ci_last_regenerate|i:1666647026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ccc4bcd718859e2882456bd0fe117dc4a190885', '172.105.247.100', 1666647027, '__ci_last_regenerate|i:1666647027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dde8d484cbece92c6d710c159bd0b8dab863d59', '172.105.247.100', 1666647027, '__ci_last_regenerate|i:1666647027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b11121e941ffc7cea1af7516ddeb327f8963841', '172.105.247.100', 1666647027, '__ci_last_regenerate|i:1666647027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917756936b8a7b2e56d2d2f6439cb8a882c30e4b', '172.105.247.100', 1666647027, '__ci_last_regenerate|i:1666647027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('322817e337eb6e207a118f268f0be3dc4c6e6d24', '172.105.247.100', 1666647027, '__ci_last_regenerate|i:1666647027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f77d7c20206362ef0aa05b6fffbd3cd6f5adbb', '172.105.247.100', 1666647028, '__ci_last_regenerate|i:1666647027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303b7c51f34c8e3ee39ecea58308c3869f8d10a3', '205.210.31.156', 1666647865, '__ci_last_regenerate|i:1666647865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cf6e52732ba8cd1420cd4d1be32fe78770a2fe2', '172.105.247.100', 1666651223, '__ci_last_regenerate|i:1666651223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e643d44fb9aac41e6fc7c01b2c6f8f7fe315d85', '172.105.247.100', 1666651224, '__ci_last_regenerate|i:1666651223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4156a711f7a4a7908b13d8d54d205e935effa2f', '172.105.247.100', 1666651224, '__ci_last_regenerate|i:1666651224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854fb4b5b90106b0f177e1c9811a0346667f7c8d', '172.105.247.100', 1666651224, '__ci_last_regenerate|i:1666651224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a142d4abc4901a0378df1fafc4c72f9fd2c64c0c', '172.105.247.100', 1666651224, '__ci_last_regenerate|i:1666651224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63ec3f15045c64c3465464fccb8224f5cf68a09', '172.105.247.100', 1666651225, '__ci_last_regenerate|i:1666651224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77a525903e99265fc248e32ac1993821370d52f', '172.105.247.100', 1666651225, '__ci_last_regenerate|i:1666651225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('890cd669f1d485e373d518a9e230991d64cc2ce3', '172.105.247.100', 1666651225, '__ci_last_regenerate|i:1666651225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a66772e806121f92a5817174581ae2cb8939bd', '172.105.247.100', 1666651226, '__ci_last_regenerate|i:1666651226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162c525075009c41f3b39e47c4c98cd708439f35', '172.105.247.100', 1666651226, '__ci_last_regenerate|i:1666651226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e409f3466239aa9781d47258fd97271bdf483e5c', '172.105.247.100', 1666651226, '__ci_last_regenerate|i:1666651226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7854c82bb7fdf5ca00aba713e7d5c54e939628', '172.105.247.100', 1666651226, '__ci_last_regenerate|i:1666651226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a21268bb10353592eb5dd27d22d94077b3425b1', '172.105.247.100', 1666651227, '__ci_last_regenerate|i:1666651227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4656ed5d25966adbe683cf33f7a77638df40bd94', '172.105.247.100', 1666651227, '__ci_last_regenerate|i:1666651227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193a1deb58be852ee90b89c85033e835a96c41cc', '172.105.247.100', 1666651227, '__ci_last_regenerate|i:1666651227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f5751388be1d25c8405c4a393df3cedf00a776', '172.105.247.100', 1666651227, '__ci_last_regenerate|i:1666651227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ca9b41ddaaa178eae1e5e9cd4cdf9b41ed0bb8', '172.105.247.100', 1666655424, '__ci_last_regenerate|i:1666655424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d9df4bb3928ac20ed96388298fbae8eb810ff8', '172.105.247.100', 1666655424, '__ci_last_regenerate|i:1666655424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e850129d3405a4eb9929a98564e94ebdbda074ed', '172.105.247.100', 1666655424, '__ci_last_regenerate|i:1666655424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21acbb1c74fba0310d13003d5e18888d7f05f347', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66f524222b9095747df4141543b319b2dd4bd31', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa65198245dba51d5c7fb32771305e0c7b90fa1b', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8a76669afd92764716779b59c45746b3dc06b3', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa9e425477ac0f42edf7e9eb8f341f6ded4aa31', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2003b6e201890a542e2735de0d0baaceac2c3855', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e94fb9e4fc6ad8e58fa00c9356f0600833405d', '172.105.247.100', 1666655425, '__ci_last_regenerate|i:1666655425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6300cf9356097301f8dc2767ae76969a4f33db8', '172.105.247.100', 1666655426, '__ci_last_regenerate|i:1666655426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e23584c3afa0941ab3a328baa3184f5b538865', '172.105.247.100', 1666655426, '__ci_last_regenerate|i:1666655426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2165dbe008e3236c51783fa3838cfe6ee82c551b', '172.105.247.100', 1666655426, '__ci_last_regenerate|i:1666655426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050a62a48484ffe12e2b7e377902a872074017cf', '172.105.247.100', 1666655426, '__ci_last_regenerate|i:1666655426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908de3fd05227cda90661cd395f01e74f7be2022', '172.105.247.100', 1666655426, '__ci_last_regenerate|i:1666655426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b988e8d8670113bcc81b842a23a5bcd156b535', '172.105.247.100', 1666655426, '__ci_last_regenerate|i:1666655426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a682098241c1507b9b0392aadf42cc3d20b559', '172.105.247.100', 1666659624, '__ci_last_regenerate|i:1666659624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1128726449d34174a91247d6ae28621995c28b2', '172.105.247.100', 1666659624, '__ci_last_regenerate|i:1666659624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31caaa9a972be2dfc68f042bd4b732dee32bf541', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68018946a795b742aae53d3b40780a433e1ef5c9', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5193206d969505ef329446db0bb9defe8a5d821', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49984d0e0d2218080b50f52c831413dd9fc54ef', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230555f9598ea88addf464472ab61d4672ae9326', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb392eb92a7b59d0f760a5400cbcfc4fac361804', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe5ddd656f15a99d03689c0640f45b251235375', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257379776726ddccf84e5ffc2367e1de72b65ea2', '172.105.247.100', 1666659625, '__ci_last_regenerate|i:1666659625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f6ce59154317e0adad675843a54a0772fdabf1', '172.105.247.100', 1666659626, '__ci_last_regenerate|i:1666659626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdaa66dca744a8a273a54c0a7c69d9299a9c1d62', '172.105.247.100', 1666659626, '__ci_last_regenerate|i:1666659626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6e93a12c4f022e534e4120d05de7743c06f0f4', '172.105.247.100', 1666659626, '__ci_last_regenerate|i:1666659626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27af5dd5c97e97f81d9b81a7d225e011c7a0c905', '172.105.247.100', 1666659626, '__ci_last_regenerate|i:1666659626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a69069dabf1529aa0ef50f5ae287af37fb4641', '172.105.247.100', 1666659626, '__ci_last_regenerate|i:1666659626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63819785aa70a5c21687d80c98c340f153a0d361', '172.105.247.100', 1666659626, '__ci_last_regenerate|i:1666659626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa1d464102da4826ac48fc8dd2114cd490e2143d', '172.105.247.100', 1666663821, '__ci_last_regenerate|i:1666663821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482ed0dadc19e05e34b1a10558d7ac493ddebd95', '172.105.247.100', 1666663821, '__ci_last_regenerate|i:1666663821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0194a90b30cc4fdeb24e5c507f0374ce7bd2cdb5', '172.105.247.100', 1666663821, '__ci_last_regenerate|i:1666663821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a9d42561cd54ebdfdbfeaca3749768495e3ea2', '172.105.247.100', 1666663821, '__ci_last_regenerate|i:1666663821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57e2ce6f7e7eab6f965ea43b78324254c21be6a', '172.105.247.100', 1666663821, '__ci_last_regenerate|i:1666663821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d108d91473e97b39ede71c3cde1fddf935499436', '172.105.247.100', 1666663821, '__ci_last_regenerate|i:1666663821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bbd46e72b59e563ad1595f12035bcac5eaeff3d', '172.105.247.100', 1666663822, '__ci_last_regenerate|i:1666663822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9198732ef8d52027b14e9b34ca148b1c697dfb64', '172.105.247.100', 1666663822, '__ci_last_regenerate|i:1666663822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e3d9980d8be0b79a8164cc225f93c20f906ed7', '172.105.247.100', 1666663822, '__ci_last_regenerate|i:1666663822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6f1e71de1dab33d5f91fa20e9b3a8d3683c582', '172.105.247.100', 1666663822, '__ci_last_regenerate|i:1666663822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7f715e6b4c7a733526bfca1631c82b2cb8a3a8', '172.105.247.100', 1666663822, '__ci_last_regenerate|i:1666663822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9596a7ba709b928eae217835e5f5dfd4d2ba819c', '172.105.247.100', 1666663822, '__ci_last_regenerate|i:1666663822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bffd5137f04b2d2df89f53110165ce00c248f1', '172.105.247.100', 1666663823, '__ci_last_regenerate|i:1666663823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5e271f327f0814436bfa4b00e03651a3648c03', '172.105.247.100', 1666663823, '__ci_last_regenerate|i:1666663823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15dc478abd7ec83773f2abc080a8d406fcc01bb', '172.105.247.100', 1666663823, '__ci_last_regenerate|i:1666663823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dcf9e6bf8fafe07af2acd2f7b652a8d28b05782', '172.105.247.100', 1666663823, '__ci_last_regenerate|i:1666663823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a6d0e4b51a373aa6fbfab8a1961561c7efc942', '147.78.47.249', 1666664080, '__ci_last_regenerate|i:1666664080;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081c5506c0572c1e69d2021bc96d2b877935d1c2', '147.78.47.249', 1666664082, '__ci_last_regenerate|i:1666664082;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85ef9f3fe28a741298ed34c53843e21ac6fdfe8', '147.78.47.249', 1666664084, '__ci_last_regenerate|i:1666664084;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55441f2a414af872ad0e30028d41759adae4f79d', '198.235.24.185', 1666665063, '__ci_last_regenerate|i:1666665063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20efebbf3350a61c3031f8f79e83ded695469fc', '172.105.247.100', 1666668023, '__ci_last_regenerate|i:1666668023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eeec1d8fb2a2e7618c99cf47e62a715cf833eac', '172.105.247.100', 1666668025, '__ci_last_regenerate|i:1666668025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b5f90a18622ebbef75d4af55eba9d5df5b2afd', '172.105.247.100', 1666668025, '__ci_last_regenerate|i:1666668025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9414f6e404aa3a7b99d0f7a15b0a5f4a374b0b3', '172.105.247.100', 1666668025, '__ci_last_regenerate|i:1666668025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd88d895c57381774e0c444148871fe153e91e82', '172.105.247.100', 1666668026, '__ci_last_regenerate|i:1666668026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841a9e60bc4bb0ce68ecbdc5e65b94e7377e9a2c', '172.105.247.100', 1666668026, '__ci_last_regenerate|i:1666668026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebaf2dac329a305605a48b7164feabe099bef9f', '172.105.247.100', 1666668026, '__ci_last_regenerate|i:1666668026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad8b30ce63ab264de22876ffd606e0f986aa859', '172.105.247.100', 1666668026, '__ci_last_regenerate|i:1666668026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69bc5adfb80cabb3ee1e446515384ffdf053db3', '172.105.247.100', 1666668026, '__ci_last_regenerate|i:1666668026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40efc25e25a990eb7ea5b9d1459bba7f8e793989', '172.105.247.100', 1666668027, '__ci_last_regenerate|i:1666668027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83e479a361558d92bc53d40f236350dbb295636', '172.105.247.100', 1666668027, '__ci_last_regenerate|i:1666668027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93dd6521a42aaa1d211d478ea8877715bc321f0', '172.105.247.100', 1666668027, '__ci_last_regenerate|i:1666668027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c53d18303cb6d8cc358456f44ce626258d525ba', '172.105.247.100', 1666668027, '__ci_last_regenerate|i:1666668027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb9ed2a82d6f519eb280ebdae0b0f2a0cff68fd', '172.105.247.100', 1666668027, '__ci_last_regenerate|i:1666668027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f373ffcb296bbdc919c561440634b93d1a92ad80', '172.105.247.100', 1666668028, '__ci_last_regenerate|i:1666668028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54238e1dd96fb6577ca7f5755681dd4c81ea06d', '172.105.247.100', 1666668028, '__ci_last_regenerate|i:1666668028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16bf2ed637c9c566bd0359d34dff7509dc0233f6', '205.210.31.48', 1666671955, '__ci_last_regenerate|i:1666671955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751b6df2e09c123460a1cdcf17361f0dbea3b10b', '172.105.247.100', 1666672222, '__ci_last_regenerate|i:1666672222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d543545d15d1ea01cd032c407169be627204323', '172.105.247.100', 1666672223, '__ci_last_regenerate|i:1666672223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85322db91c086ca1ebe3d5c69267bcd43f96fc88', '172.105.247.100', 1666672223, '__ci_last_regenerate|i:1666672223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a668ae3d0022ca89c78ace94155ddd01edffeec4', '172.105.247.100', 1666672223, '__ci_last_regenerate|i:1666672223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c266cce95b681ca37badff5563e2143d7a23ee52', '172.105.247.100', 1666672223, '__ci_last_regenerate|i:1666672223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af8df1fc4c8c46198f68e11d18c73ee7d234b6e', '172.105.247.100', 1666672224, '__ci_last_regenerate|i:1666672224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77fd6a15d9e8687c325963ea4746b324eeb555f0', '172.105.247.100', 1666672224, '__ci_last_regenerate|i:1666672224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('636c4e500f62c59b1b5aac3cbe3b097cf431c000', '172.105.247.100', 1666672224, '__ci_last_regenerate|i:1666672224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7951f722432e3b4f776fa0380aa07805428f18f9', '172.105.247.100', 1666672232, '__ci_last_regenerate|i:1666672232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cf395b2db8966d65fa2919cab731d39e80939a4', '172.105.247.100', 1666672232, '__ci_last_regenerate|i:1666672232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e403e175048143b49f48dd7a1693cec7464f99', '172.105.247.100', 1666672232, '__ci_last_regenerate|i:1666672232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c50e7a0265264873149fc601e8b9d686ba85c95', '172.105.247.100', 1666672232, '__ci_last_regenerate|i:1666672232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82408748153b4b3c8d3536d8d76bb5f30355692e', '172.105.247.100', 1666672233, '__ci_last_regenerate|i:1666672233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9c7d8d74ad60356a8c4cfc39f73bb3f1e5e4511', '172.105.247.100', 1666672233, '__ci_last_regenerate|i:1666672233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7db1267db475cf6bf5b0261cbcf406dcec96d71', '172.105.247.100', 1666672233, '__ci_last_regenerate|i:1666672233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6807db73bf8fb15a5beb955d225ccc74029f0cc3', '172.105.247.100', 1666672233, '__ci_last_regenerate|i:1666672233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53da1f7a240fc386ce2d83a9ba3b9dd1e4ec99d6', '37.111.216.124', 1666680074, '__ci_last_regenerate|i:1666680074;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666680067;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e52adfe295cc081a138b392be2beb5eb5e837b5e', '172.105.247.100', 1666676422, '__ci_last_regenerate|i:1666676422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('123aa717bd1fdd8b4d7e02a168095a26ba03cfd9', '172.105.247.100', 1666676422, '__ci_last_regenerate|i:1666676422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01d3512f48b342f4fc57f2f883519a570135b94', '172.105.247.100', 1666676422, '__ci_last_regenerate|i:1666676422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1beffaba176939665940157f933439b2d7139ab6', '172.105.247.100', 1666676423, '__ci_last_regenerate|i:1666676423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8daefb8b74bd25f63ee7bcf04b6aa570d284f492', '172.105.247.100', 1666676423, '__ci_last_regenerate|i:1666676423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09b33ba49642c3befba12af462c93607ce7cf5b', '172.105.247.100', 1666676423, '__ci_last_regenerate|i:1666676423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b41cd7a62b7386304afdbb1b4f90e300d166b1', '172.105.247.100', 1666676423, '__ci_last_regenerate|i:1666676423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c64af5522e46dff05395430011dd52db404337e', '172.105.247.100', 1666676424, '__ci_last_regenerate|i:1666676424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e06a13267fb291638b0ffe7850aa7dbcc97cf5', '172.105.247.100', 1666676424, '__ci_last_regenerate|i:1666676424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd05be5156204a58b9742137fe3302337ce43d9', '172.105.247.100', 1666676424, '__ci_last_regenerate|i:1666676424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f78d81ad761e27bf6269e64537cc041a587ac82', '172.105.247.100', 1666676424, '__ci_last_regenerate|i:1666676424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f59c83e86ba8dc38ca512750499d7395154d1c', '172.105.247.100', 1666676424, '__ci_last_regenerate|i:1666676424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099b4ea820564b053e57c422d8a16a4258842a21', '172.105.247.100', 1666676425, '__ci_last_regenerate|i:1666676425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10bc6f8ef91fce995b8c56e28d9771837f1d0dfa', '172.105.247.100', 1666676425, '__ci_last_regenerate|i:1666676425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d970cd8136e9f48f6153fd1a99384f3cdd94b76', '172.105.247.100', 1666676425, '__ci_last_regenerate|i:1666676425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbca31af75e28af9a1fc74c0e693170170d4db9', '172.105.247.100', 1666676425, '__ci_last_regenerate|i:1666676425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60e6c7e7cd28623d30771589d42c1e40d0d808d', '37.111.216.124', 1666682577, '__ci_last_regenerate|i:1666682577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666680329;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('594fcfbcef43a58d9757cffa5a94563c435b6c49', '172.105.247.100', 1666680623, '__ci_last_regenerate|i:1666680623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9389a5ff68633d151797a64283dd0a8582ecff4a', '172.105.247.100', 1666680623, '__ci_last_regenerate|i:1666680623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db1ca86a1ac45b5f26f983d84f74ba24813fff6d', '172.105.247.100', 1666680623, '__ci_last_regenerate|i:1666680623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a0c280a5c49bc575fe75d13ed45f06308a96bf', '172.105.247.100', 1666680623, '__ci_last_regenerate|i:1666680623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1847b5245b4cc3b03da4d49bc7e83c122f40d5', '172.105.247.100', 1666680623, '__ci_last_regenerate|i:1666680623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d05659eef0569a06cdd7e392cb04c165b3c3fce5', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f0442934e3c94966a423f8dcffe8319d6db984', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155985b63a570d7d6f0f4352a5afda1ca513fd3d', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e335539f6c7894651319a0ab9deca9bb2d5ea357', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3b861cd7568dfb52f953dbc2415a924f1232b5', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22bf4ad19ef446d1a320fe6083c1f27a2993aeb4', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a469c2a91a569807e74cdb3aba7fba74128651a5', '172.105.247.100', 1666680624, '__ci_last_regenerate|i:1666680624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8428c4980d820e5dbd1ae9299a2b30f219865bbf', '172.105.247.100', 1666680625, '__ci_last_regenerate|i:1666680625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac641c7b1c6f26e15112313169b29fc55299338a', '172.105.247.100', 1666680625, '__ci_last_regenerate|i:1666680625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73aa01117e9ae6c75146c024c6b319068f21f7f', '172.105.247.100', 1666680625, '__ci_last_regenerate|i:1666680625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbfa85fdc189de7981c1a86f9c4d38fe24a9ef2a', '172.105.247.100', 1666680625, '__ci_last_regenerate|i:1666680625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5199b8bac3ae64999da7c45cdb35b40e59f194', '116.204.230.27', 1666682653, '__ci_last_regenerate|i:1666682653;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666502805\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13f7407638e20fbabedf09fc45d6dd983057d381', '37.111.216.124', 1666683831, '__ci_last_regenerate|i:1666683831;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666683816;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2325e30afdf53816bc460d5f71425bdc4c7fc6', '116.204.230.27', 1666683220, '__ci_last_regenerate|i:1666683220;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666502805\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b72d52cf405f2cf6c9f2e6bd17ebc7c70b9e3881', '116.204.230.27', 1666684068, '__ci_last_regenerate|i:1666683220;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666502805\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5664199b4a5fa0265d3591a7cc980b726e7c8b', '37.111.216.124', 1666684339, '__ci_last_regenerate|i:1666684339;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666684115;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d001e4bb1b2be0e66284f7ec7237fbc89a5c88f', '37.111.216.124', 1666686448, '__ci_last_regenerate|i:1666686448;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666686432;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b002c6111783a64af6d0dd920468c1a7c44fe8d', '172.105.247.100', 1666684822, '__ci_last_regenerate|i:1666684822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c40d0df1aa5acf26467615048271a92cd9361f', '172.105.247.100', 1666684822, '__ci_last_regenerate|i:1666684822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa22fcc4391182de2fcab033ca4c7413f8a62fae', '172.105.247.100', 1666684822, '__ci_last_regenerate|i:1666684822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d24bbf77f1308845acef74e2eab91db4c76e87', '172.105.247.100', 1666684823, '__ci_last_regenerate|i:1666684822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd48d412a0801e36e8c32bb319bd1aa228b9c8e8', '172.105.247.100', 1666684823, '__ci_last_regenerate|i:1666684823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8a93ba585a89523f26686f75a8ba03e39ef1be', '172.105.247.100', 1666684823, '__ci_last_regenerate|i:1666684823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27edb7f9660b7baf1265acbabdbf1c96edb21eb', '172.105.247.100', 1666684823, '__ci_last_regenerate|i:1666684823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c68da1198ad84dcee80fef938a57d98b2664f2', '172.105.247.100', 1666684824, '__ci_last_regenerate|i:1666684824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45737bb6b2d019836d2640a2b10152c38efe7f6a', '172.105.247.100', 1666684824, '__ci_last_regenerate|i:1666684824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0abed74aa005451593d196f03defa80578cbb0c1', '172.105.247.100', 1666684824, '__ci_last_regenerate|i:1666684824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faebd1e6ea72fe1a84e5624b104083fbc85ddc5f', '172.105.247.100', 1666684824, '__ci_last_regenerate|i:1666684824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463cf0f104e9ba7c27f21c7fa4d42dfe7d644bd9', '172.105.247.100', 1666684824, '__ci_last_regenerate|i:1666684824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba96129acd19754c8d002106fc09edad7c630bf4', '172.105.247.100', 1666684825, '__ci_last_regenerate|i:1666684825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83966e827869303cb1b014a232a05ee55c7aa96', '172.105.247.100', 1666684825, '__ci_last_regenerate|i:1666684825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa34cbadbcf7308f02d08dfed44eb13f45d491f', '172.105.247.100', 1666684825, '__ci_last_regenerate|i:1666684825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37ae9d002564db084c0b8822815c51b03756927', '172.105.247.100', 1666684826, '__ci_last_regenerate|i:1666684825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ab1ae4a65d5f3b91472792e5f19bf2b41dcdc8', '37.111.216.124', 1666687682, '__ci_last_regenerate|i:1666687682;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666686449;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f61e3c55d621a81221eae4b381db0e685ba3bad5', '37.111.216.124', 1666689543, '__ci_last_regenerate|i:1666689543;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666687843;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab937c5d57a4768498d649e632fa52c3ee2eb696', '172.105.247.100', 1666689023, '__ci_last_regenerate|i:1666689023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58487c45f1d6ea5e900dfdf7936510e8f027d911', '172.105.247.100', 1666689023, '__ci_last_regenerate|i:1666689023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ffc4d30710829734021c5ab4ce5144257aa046b', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d859e2879acad0fac91f8cb0f8d145b6d878cbe2', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68677c0ca1d2460026a639320000794920e5a56f', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68a2c0983779573f209802ca7bf678738f865eb', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf840fa2fd026f8d3e0c561644487935f2ea5629', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda9a6cbf52d3e8ee51009b8145696d8874f4517', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3583877810c0ac3c681111dc786c6918b63ad834', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79938730008a1afb555e2f6e49a3364b70a9830d', '172.105.247.100', 1666689024, '__ci_last_regenerate|i:1666689024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4cceab810b0bd510dae84ef196e717692a3b17', '172.105.247.100', 1666689025, '__ci_last_regenerate|i:1666689024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc701fb3cdc35bb0e9de6e94b787fb8b50e9716', '172.105.247.100', 1666689025, '__ci_last_regenerate|i:1666689025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa45e549e4ae60b6173e8e6e30b90fd3bf3a04d', '172.105.247.100', 1666689025, '__ci_last_regenerate|i:1666689025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('244b7537b1eeaed833c317aea61871ce7bcfac11', '172.105.247.100', 1666689025, '__ci_last_regenerate|i:1666689025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b505d3b8a706c68f2b6fb8e04a120399015d979', '172.105.247.100', 1666689025, '__ci_last_regenerate|i:1666689025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a77f8f9c85aeb5632b28a7be4b32b527ba57979', '172.105.247.100', 1666689025, '__ci_last_regenerate|i:1666689025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e23a2171286ebb4c3964f2593b65aa1114932d', '37.111.216.124', 1666692923, '__ci_last_regenerate|i:1666692923;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666692910;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1637c987d1e28b7f4126a23c0ff83a93dc1ac5a6', '37.111.216.124', 1666693933, '__ci_last_regenerate|i:1666693933;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666692961;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a61772f9b77ec44aec25d2d9ca4bed85b5e39e', '172.105.247.100', 1666693222, '__ci_last_regenerate|i:1666693222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa695fc55a2c3d1ceb42dd9a0f4522304335d33', '172.105.247.100', 1666693225, '__ci_last_regenerate|i:1666693225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f91478d54bd546b6471825b5b3b16582d9d493f', '172.105.247.100', 1666693225, '__ci_last_regenerate|i:1666693225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ba1e3325dc88ef5930635683bb6731c70a9561', '172.105.247.100', 1666693225, '__ci_last_regenerate|i:1666693225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441d66620a11b2ea6ff129111c2fe82e9871e4ff', '172.105.247.100', 1666693225, '__ci_last_regenerate|i:1666693225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8110e6880cd022af911b8a45e0b910df00d42cc8', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad7c5769b0acea9e966f9a55280f81bfb62ccad', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e60d9be4c3b8e21c588c79fa631c8d9f2dbb99e', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435b5b5ea504f9e472c911b7129629fba4763784', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5282b859aebea0a53b66f3a4eb7a0ad92d4e66a0', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8246db00c65b262f219dd3948b40398e31526e24', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72d524355384a1df1bfba7279d62b0c89454242', '172.105.247.100', 1666693226, '__ci_last_regenerate|i:1666693226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0628c3f5632b05598e39cd5cfcfd4e4ef43bfb84', '172.105.247.100', 1666693227, '__ci_last_regenerate|i:1666693227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3d2bc9135178103da7818766884bd8fd2022b2', '172.105.247.100', 1666693227, '__ci_last_regenerate|i:1666693227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60306a16e74d05ea9a73a860d9084786e53a7911', '172.105.247.100', 1666693227, '__ci_last_regenerate|i:1666693227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a949160402c0581f78d78d0746642863f694de', '172.105.247.100', 1666693227, '__ci_last_regenerate|i:1666693227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09623b5db42d3d13d6bb287075f08917fa1b5222', '37.111.216.124', 1666696603, '__ci_last_regenerate|i:1666696603;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666696592;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774aede5c97348819536497d8259874dc1584fea', '37.111.216.124', 1666697045, '__ci_last_regenerate|i:1666697045;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666696603;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1608167e074fc6f674436cfeb2044828177ea2', '37.111.216.124', 1666697484, '__ci_last_regenerate|i:1666697484;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666697079;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d617481207eceedf756c216a1bae6bb0b9e77a', '172.105.247.100', 1666697423, '__ci_last_regenerate|i:1666697423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d99704232f371527760706efcc8cef16cb7940', '172.105.247.100', 1666697423, '__ci_last_regenerate|i:1666697423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420c31b1cf36a5293a54f09d055e3055301995c1', '172.105.247.100', 1666697423, '__ci_last_regenerate|i:1666697423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110f6836f446157505121ca40944f322a040e97d', '172.105.247.100', 1666697424, '__ci_last_regenerate|i:1666697424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a57c3b52da2f60801dabe03de321933d575d05c', '172.105.247.100', 1666697424, '__ci_last_regenerate|i:1666697424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119902c010251722a12f19bcc8ff98ad5785dfbe', '172.105.247.100', 1666697424, '__ci_last_regenerate|i:1666697424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dcb8c8e84a11fa4fc097da3b2ac528a17ecabef', '172.105.247.100', 1666697424, '__ci_last_regenerate|i:1666697424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce848e28eee2f36d121ccc5bf76e3e01f517d42b', '172.105.247.100', 1666697425, '__ci_last_regenerate|i:1666697425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d4273c62d67c098e56ca9183f94ac5546fc8c0', '172.105.247.100', 1666697425, '__ci_last_regenerate|i:1666697425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c665a754875e3dcd6e29d688cc3a71f548ff226a', '172.105.247.100', 1666697426, '__ci_last_regenerate|i:1666697426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e725a1cccb91e76ef97743053475b76af1208a', '172.105.247.100', 1666697426, '__ci_last_regenerate|i:1666697426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75e6d6b48972ae1a9007cc2e2e7d526f6c5a8b4', '172.105.247.100', 1666697426, '__ci_last_regenerate|i:1666697426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1a0f64f16751074ae5a6707d0dbc162f2b9ba8', '172.105.247.100', 1666697426, '__ci_last_regenerate|i:1666697426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb5abe5beeae6c45f2288cabed9704412c9c5a81', '172.105.247.100', 1666697427, '__ci_last_regenerate|i:1666697427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d66d49c29e1ec2effa8bad3a3e6459497c2a3de', '172.105.247.100', 1666697427, '__ci_last_regenerate|i:1666697427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec92edd26f19568e31f91b899994b887e86759c5', '172.105.247.100', 1666697427, '__ci_last_regenerate|i:1666697427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a28e4354e8c65ea601c2639c0231b66631987bb', '37.111.216.124', 1666699273, '__ci_last_regenerate|i:1666699273;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666697484;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374c5c68560aca36aee98447c153c8b5f7aa49c4', '37.111.216.124', 1666702989, '__ci_last_regenerate|i:1666702989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666702968;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8000ef1172e07032fdbeb870a22a62f38e4273', '172.105.247.100', 1666701621, '__ci_last_regenerate|i:1666701621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc741ed7d43cdfa66bceba6cf5e73fa8ea22f96', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddedff59a82ebec8736560537892dcf7774a3084', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363565a803814483ca9c443fd503be72b5fd1e86', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2de39896a0052fa333e7fbbabe36495d468c23', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea86b466db263c705e610a3cfd68cd946cceadad', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a9727af61d484ccf88ad9b75723ee73f27de552', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f985dd7aa8cf450ecbb76ace7670e7983b734dc', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b16feb9a11558c100e0ddb443111565a4e0bfca', '172.105.247.100', 1666701622, '__ci_last_regenerate|i:1666701622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8b66f6bfdf6006aff11fdadd142fbaa83befab', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3049d24d8e50e7ae5f320045767dcc034e2c8cc2', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4c3b288477af3223a1ec17eeb2e5a34186aba3', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962c5967a6b0c40046a32ccd449a35b3bc4c1680', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbc2d5209beae87b93dad4c7c627b361327c7f9e', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68ae109e7f55c3cd4ba634e2eecef6166607591', '172.105.247.100', 1666701623, '__ci_last_regenerate|i:1666701623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3839d5b22ee1029e96e1c86182eac27bc2d4ab7f', '172.105.247.100', 1666701624, '__ci_last_regenerate|i:1666701624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab564e864cef7ccc6fe882271dff33881831cdb', '37.111.216.124', 1666704542, '__ci_last_regenerate|i:1666704542;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666702989;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3cb218feeab2fe6e56c68988d3d6b1b0fc6b874', '37.111.216.124', 1666705527, '__ci_last_regenerate|i:1666705527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666704924;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb550664c6561714811a4f2dacd463caa4c21f86', '37.111.216.124', 1666705972, '__ci_last_regenerate|i:1666705972;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666704924;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae559bf08004cc17614bc0b4dca7e9e010a65935', '172.105.247.100', 1666705825, '__ci_last_regenerate|i:1666705825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24b2a163493e447cffdb8bf9d0388374275caf5', '172.105.247.100', 1666705825, '__ci_last_regenerate|i:1666705825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c449acafcacd90be60fd58093a3001f4a2e64b67', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be53e3004b82eb017770a4c66fd503732fad03be', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c7bd59f676fa14e5ebb7a3b016cafaf108f597', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe817def758c047f53b902b01403bc1069e38ed', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389f9f1e6fdb9e0bea20298018afcb5d3075be4c', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbaa7a6bd51753f40f085a10669b5e9d71743d8', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4655ff776c4befefbdaa26c60d83c5db36ff2fc8', '172.105.247.100', 1666705826, '__ci_last_regenerate|i:1666705826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94fbb4704494710f7550f881303b5c4e998f6fd', '172.105.247.100', 1666705827, '__ci_last_regenerate|i:1666705827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec6c0e81f1382aec0d39bc972592c565ae4de856', '172.105.247.100', 1666705827, '__ci_last_regenerate|i:1666705827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644a5f9d21ba727155c1541a84ec1c7b215a08c0', '172.105.247.100', 1666705827, '__ci_last_regenerate|i:1666705827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0a4a3af9a4bf2c31e3e34283d4eb1553d4aefe', '172.105.247.100', 1666705827, '__ci_last_regenerate|i:1666705827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d88328c2605ca2e44a0b511afd30ddf82ac1652', '172.105.247.100', 1666705827, '__ci_last_regenerate|i:1666705827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e025df596d6efe0f47195429cbda66c52bceadc6', '172.105.247.100', 1666705827, '__ci_last_regenerate|i:1666705827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf780f1ad3aaa7f2410a685de58d3bbff87a684', '172.105.247.100', 1666705828, '__ci_last_regenerate|i:1666705827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5df31561a9dfecbc961536e6fca5d051490ddf', '37.111.216.124', 1666708695, '__ci_last_regenerate|i:1666708695;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666708687;register_id|s:3:\"228\";cash_in_hand|s:9:\"5490.0000\";register_open_time|s:19:\"2022-10-24 20:10:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f543b7eb657c138344f3b54936eaaabf2fec0c3', '37.111.216.124', 1666708715, '__ci_last_regenerate|i:1666708695;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666605377\";last_ip|s:14:\"37.111.217.195\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666708715;register_id|s:3:\"229\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-25 20:38:30\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3494b6cbfb2344d4eaff8ab74821e1f466ad6683', '172.105.247.100', 1666710022, '__ci_last_regenerate|i:1666710022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398295eae554fbd74c9ad4db00af49561578ea56', '172.105.247.100', 1666710022, '__ci_last_regenerate|i:1666710022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96da501a9a20cd4f1dc4f1abe4eb0f233b576a38', '172.105.247.100', 1666710022, '__ci_last_regenerate|i:1666710022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9052e98465fafa9d2eec493b572961168f80e5', '172.105.247.100', 1666710022, '__ci_last_regenerate|i:1666710022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a20c2edd22c2461da4efb09753534b8698b647b', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d892df1649c9dd410941caee93bf1970bac54752', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7bd4a0bf9369b6df7670a5d15353e5af02aff5', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7367978a60f0ba338fdbaa09b36f018aab0331f1', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e57abf9e503db814fbcd8e0fea7b269e76b8bc20', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbfc771a0010b9124ea36ae5857a5b0f3993ea08', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4e77707ef4626833d5459512cbf86b432f73e7', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95d204c2d5db9db9ee4214b50003a8616b61d91', '172.105.247.100', 1666710023, '__ci_last_regenerate|i:1666710023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04330d60a8bc63a70a4f23ee2070aa930a23aa56', '172.105.247.100', 1666710024, '__ci_last_regenerate|i:1666710024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be45a58ad1467e16dd458accb5b1df11b4cde08e', '172.105.247.100', 1666710024, '__ci_last_regenerate|i:1666710024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add6b4ac49e46146bc3717e7cd79a4492d03a910', '172.105.247.100', 1666710024, '__ci_last_regenerate|i:1666710024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c7e958263f169a991674d09ff3f95097a3f44f', '172.105.247.100', 1666710024, '__ci_last_regenerate|i:1666710024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6d9c8e874b0f9a7cbbbf4ae9c327963ea1a64d', '172.105.247.100', 1666714222, '__ci_last_regenerate|i:1666714222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9194509990341851733c22abccdaaea99d8f219', '172.105.247.100', 1666714223, '__ci_last_regenerate|i:1666714223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918918675dfef69d22b5b0ee571f9d29fbe31c9d', '172.105.247.100', 1666714225, '__ci_last_regenerate|i:1666714225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c914695544cedfe3373e631fb13a4249e02cf193', '172.105.247.100', 1666714225, '__ci_last_regenerate|i:1666714225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ae0bc9ff9d8b8048d1e3ce15e1d1e1f87ceb9d', '172.105.247.100', 1666714225, '__ci_last_regenerate|i:1666714225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53e2460e894c4e898ed374ed48741a823c6f51f', '172.105.247.100', 1666714225, '__ci_last_regenerate|i:1666714225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1cf70e4b301539dbb2bfdf54affcdcd76e227c7', '172.105.247.100', 1666714225, '__ci_last_regenerate|i:1666714225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca507e1b9710dd3c992422fa6ae82e1625c78027', '172.105.247.100', 1666714226, '__ci_last_regenerate|i:1666714226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b57c76193dcad097e8ab9c896e3ceaf44d419c', '172.105.247.100', 1666714226, '__ci_last_regenerate|i:1666714226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aba66f52c261bd17ac446665eccc49931fe29bf', '172.105.247.100', 1666714226, '__ci_last_regenerate|i:1666714226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6906f02cc753a49110bbd07d510ca176d74354a', '172.105.247.100', 1666714226, '__ci_last_regenerate|i:1666714226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6d2e9452f8818d8abb54ffe2ba7b666e152db8', '172.105.247.100', 1666714226, '__ci_last_regenerate|i:1666714226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de0e9a0696155e70fed2683a50b8ba5f01317cba', '172.105.247.100', 1666714226, '__ci_last_regenerate|i:1666714226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b7b508d8d4fb335470ecdff3073f5b19fb740c1', '172.105.247.100', 1666714227, '__ci_last_regenerate|i:1666714226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b11d99a4d7df23fd22a192685eec81fb4b10f9', '172.105.247.100', 1666714227, '__ci_last_regenerate|i:1666714227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d82670f099332d5bed170402cc5bc32b9bcbb9', '172.105.247.100', 1666714227, '__ci_last_regenerate|i:1666714227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4b45d10cd6a55f63cf73cc1038c2043ed3d5862', '172.105.247.100', 1666718422, '__ci_last_regenerate|i:1666718422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374868d313fcb3561122940c41b85936d1c5916a', '172.105.247.100', 1666718424, '__ci_last_regenerate|i:1666718424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1621f34f158afbf8aeac9013409cee6273ef18e1', '172.105.247.100', 1666718424, '__ci_last_regenerate|i:1666718424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84988ee7de8fef483e5f9cfd568bc8d3ba4ae2c6', '172.105.247.100', 1666718424, '__ci_last_regenerate|i:1666718424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936f115787fd0225e139404ee32bb1a9ac1f56b2', '172.105.247.100', 1666718425, '__ci_last_regenerate|i:1666718425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ff19b8fde1fe6bf8a4fc17001d3378f17e03c3', '172.105.247.100', 1666718425, '__ci_last_regenerate|i:1666718425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a4e9b27eaabc7b323a8ab4b6852ee300e58732', '172.105.247.100', 1666718425, '__ci_last_regenerate|i:1666718425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46024a3559d87dbb08431588b0551c03a3e210ad', '172.105.247.100', 1666718425, '__ci_last_regenerate|i:1666718425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05361cde88b343fecdf7136a2203df17f07e1a1', '172.105.247.100', 1666718426, '__ci_last_regenerate|i:1666718426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d157046b7e361972752d1fdd7e537a78868398ed', '172.105.247.100', 1666718426, '__ci_last_regenerate|i:1666718426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3c2ac56f51dca855cb338c51c68fa1e7f625ee4', '172.105.247.100', 1666718426, '__ci_last_regenerate|i:1666718426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4784340414fbc1b77ddf02ba5070e442f66c8182', '172.105.247.100', 1666718426, '__ci_last_regenerate|i:1666718426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9cf3d829563c444fcdfe4db292ffd7be729b97', '172.105.247.100', 1666718427, '__ci_last_regenerate|i:1666718427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8211fd4a3a11087df44862d42f8433d638d44292', '172.105.247.100', 1666718427, '__ci_last_regenerate|i:1666718427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9736d1e12c916013b1f835bf3ae5421d7c51b25', '172.105.247.100', 1666718427, '__ci_last_regenerate|i:1666718427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcba3e969b98e73d189c9430ed3fc941207d1fbd', '172.105.247.100', 1666718427, '__ci_last_regenerate|i:1666718427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a32bd6a4850acb460445a104bc6bab3221a18ea', '172.105.247.100', 1666722624, '__ci_last_regenerate|i:1666722624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c441dbf98d6c280ee00d500a1b61aa2f2d6b9df', '172.105.247.100', 1666722624, '__ci_last_regenerate|i:1666722624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007e0831eb61936912088550d887efc2a0296419', '172.105.247.100', 1666722624, '__ci_last_regenerate|i:1666722624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afde05fbb226db20fd3da674c3e5a15e500b8346', '172.105.247.100', 1666722625, '__ci_last_regenerate|i:1666722624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db83143063f0db61f5af5260d9f20772a89185e1', '172.105.247.100', 1666722625, '__ci_last_regenerate|i:1666722625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac34997994ea16de02b6ca73f9d33bf5368680d', '172.105.247.100', 1666722625, '__ci_last_regenerate|i:1666722625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7fd997db1d4f1f2a9d2d7f7ce9547cc467d6e1', '172.105.247.100', 1666722625, '__ci_last_regenerate|i:1666722625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff321f82cf724c2406f3203e292da700c9259060', '172.105.247.100', 1666722626, '__ci_last_regenerate|i:1666722626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f2f146a0928d07bcab54f524cb6f04e9237bfa', '172.105.247.100', 1666722627, '__ci_last_regenerate|i:1666722627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca42b4463e86420e9f147f9da7a74e2e967406d', '172.105.247.100', 1666722627, '__ci_last_regenerate|i:1666722627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9480f7f59cd06c2cdcfee71b97a8cabd18b07b92', '172.105.247.100', 1666722627, '__ci_last_regenerate|i:1666722627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee975455fde48a1f104c0f6eb40d04453fe6ef5f', '172.105.247.100', 1666722627, '__ci_last_regenerate|i:1666722627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b48ec83a009be785cef2c11c6551af5dce5819a', '172.105.247.100', 1666722628, '__ci_last_regenerate|i:1666722628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afba1b241a3d8d8d4bb04a7e77ec9e0d6a12d3a8', '172.105.247.100', 1666722628, '__ci_last_regenerate|i:1666722628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa507d220dd10c11320e307ebb136490a968e7e', '172.105.247.100', 1666722628, '__ci_last_regenerate|i:1666722628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('313a81b7f9290683854f3c044227e8ac78fb28ac', '172.105.247.100', 1666722628, '__ci_last_regenerate|i:1666722628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8387f96a1945caa78d94fcc1eff188b4b198ca5c', '172.105.247.100', 1666726821, '__ci_last_regenerate|i:1666726821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4925c02a6739776b392092830704ec0aad246e08', '172.105.247.100', 1666726821, '__ci_last_regenerate|i:1666726821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f809b89f74cc6865a5db0e052683cb7dfbd56a9', '172.105.247.100', 1666726822, '__ci_last_regenerate|i:1666726822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0609cbd597875c6e115b5a9cd224b4e0b178acba', '172.105.247.100', 1666726822, '__ci_last_regenerate|i:1666726822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a3e15a6b41a34e9c2ae2e41a48ff8c6db70f20', '172.105.247.100', 1666726822, '__ci_last_regenerate|i:1666726822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004fa6a108972cc4d02e40857582e19ac85f6466', '172.105.247.100', 1666726823, '__ci_last_regenerate|i:1666726823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0502edef1e1500ad60540171e0811d8feed4ee', '172.105.247.100', 1666726823, '__ci_last_regenerate|i:1666726823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678062abc87275be4273b8d07c6bf907aa48cc0a', '172.105.247.100', 1666726823, '__ci_last_regenerate|i:1666726823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a87c45d95ac2969bcb3dffb72c0355e2ac13a99', '172.105.247.100', 1666726824, '__ci_last_regenerate|i:1666726823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3944e8435f6f4574e818ac07a2e7584ee4c2b38f', '172.105.247.100', 1666726824, '__ci_last_regenerate|i:1666726824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c9f90588a6f001b090e02abc42302b73a9a831', '172.105.247.100', 1666726824, '__ci_last_regenerate|i:1666726824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af23e128a6698ffb708018df0a3aa0497f14d85', '172.105.247.100', 1666726824, '__ci_last_regenerate|i:1666726824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f4b111347794bf71ce64c24d8ea6e246bd2008', '172.105.247.100', 1666726825, '__ci_last_regenerate|i:1666726825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3197e81b99f94e6c40eee0a39cf58c4a82761dd2', '172.105.247.100', 1666726825, '__ci_last_regenerate|i:1666726825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a1c0a7bb6ebce6cff7c67329a69bbd53bb1cd8', '172.105.247.100', 1666726825, '__ci_last_regenerate|i:1666726825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0fa3080beb06fec18d5cf01105024d0680cb99', '172.105.247.100', 1666726825, '__ci_last_regenerate|i:1666726825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c676788d80d0503a0d8a030920dbcc75eb8647', '172.105.247.100', 1666731024, '__ci_last_regenerate|i:1666731024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcccf25c0afb8a41c7f7c90b851bbdcaa0c79a74', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af96d483485ff0d4189d08636cd41c1c583e823', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de8fe36c18863a6f9e2c7cdc810b0355238e776', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa02d1336bd0d6af80513eed4edba2f39720879', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01336596fd4740de82c54a97b88eff947b017c53', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fc9e5558179911c41be384ae262aef7350cf9e4', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69e5d5da06c0deb6445f1f1ab2f8c6fad3dbc10', '172.105.247.100', 1666731025, '__ci_last_regenerate|i:1666731025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41fb6aed8f5c2ffe2e25224107ae13bfbf5b1a00', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0b955a69fed76284d432ade1f2d46e3aba5bf5', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c90bae01e8bf111eaa12f5df96bb2354305133e', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc76b79ed2e080a36a26401db970efa581f308e', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec80255837c74393c86415514db7263bc96ca262', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea4eb22d71847db1cea2c1f9de18f4bc6ecb1b0', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1fe4426849dbabaeb319d7b6047d721667243e', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802d9aaa10ffbabb1634257386e5121a7060d111', '172.105.247.100', 1666731026, '__ci_last_regenerate|i:1666731026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a3b30c6adc794392e17c85bd53085b83a74393', '172.105.247.100', 1666735223, '__ci_last_regenerate|i:1666735223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2716428518b9bd2dcc7761adc7bfdae5f03f689', '172.105.247.100', 1666735223, '__ci_last_regenerate|i:1666735223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b734c66c555a55ffd3a214a3a79cb856efd5ea', '172.105.247.100', 1666735223, '__ci_last_regenerate|i:1666735223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9217f2ed3be2e39f06a9946cae2028d74201f28', '172.105.247.100', 1666735223, '__ci_last_regenerate|i:1666735223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738066537abc55e4dcba7d7c3c9e95325e94d370', '172.105.247.100', 1666735223, '__ci_last_regenerate|i:1666735223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9640a25ac69ac9badb08bc23c9efa76765ffbe0c', '172.105.247.100', 1666735223, '__ci_last_regenerate|i:1666735223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b05bbfef518ad060b5ab90215f687c3179cd62d', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c2a6691aecab3c78adcb8cd343b17686f6fd52', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0076a10c2d537816832f8bc802de24aececc6a18', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b626b483d8ffd4351376e4c96cef70914298cf', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ed55c9eba7093756d9704c8649f7425a222e2a', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dc347d57053c843c64f08e33f4a5aef46cca58f', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab59e3ccf9bfe851fefb29188865dc4d97669a81', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc995a9a0911c95ee8f3eeea4b0f0186fc7c9f1', '172.105.247.100', 1666735224, '__ci_last_regenerate|i:1666735224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('101c18adbb732253db6fd004d9626424fd331b41', '172.105.247.100', 1666735225, '__ci_last_regenerate|i:1666735225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50dafce3d52cc6e9cf6b4ceaae1f41d421e3306f', '172.105.247.100', 1666735225, '__ci_last_regenerate|i:1666735225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6368b1d00c7a351ed8bff10283277c9fe0acf1e', '172.105.247.100', 1666739424, '__ci_last_regenerate|i:1666739424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1567f0c0a086b2c3fe87ed846a22b3b55d516627', '172.105.247.100', 1666739425, '__ci_last_regenerate|i:1666739425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8cc6d6171c8f305720471a4492f054036a43f5', '172.105.247.100', 1666739426, '__ci_last_regenerate|i:1666739425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e4f1266a1cd139a559526007bf58b00762f199', '172.105.247.100', 1666739426, '__ci_last_regenerate|i:1666739426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05fdea355d66111d9b2c3555c04374377d249662', '172.105.247.100', 1666739426, '__ci_last_regenerate|i:1666739426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2457388d2fdbb4f72366e4a77912e67b330f9de1', '172.105.247.100', 1666739426, '__ci_last_regenerate|i:1666739426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e099a1bd36ca7631b1b87ce1e72b5de5731927fc', '172.105.247.100', 1666739427, '__ci_last_regenerate|i:1666739426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6adef284c14aeeff5718a879df9a942cf8874a59', '172.105.247.100', 1666739427, '__ci_last_regenerate|i:1666739427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d4ebde605e8e18fccd50a6aed76bdeaa5df560', '172.105.247.100', 1666739427, '__ci_last_regenerate|i:1666739427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038d7b35e4fed40e6a3116a1d4d8d30e6fa64cf3', '172.105.247.100', 1666739427, '__ci_last_regenerate|i:1666739427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2000495475387f8106044fc4bfb2fa2d53b243f', '172.105.247.100', 1666739427, '__ci_last_regenerate|i:1666739427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a214556490924e83ba35b6a72996a3c6396050fe', '172.105.247.100', 1666739427, '__ci_last_regenerate|i:1666739427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9eaf8cfca716e6fedce43576b2f41942e730807', '172.105.247.100', 1666739428, '__ci_last_regenerate|i:1666739428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592befec224cf68aeaf48168efb1b18688bd9d85', '172.105.247.100', 1666739428, '__ci_last_regenerate|i:1666739428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dbc592f77c47d12cc8ab9f7bf553c28bafe4694', '172.105.247.100', 1666739428, '__ci_last_regenerate|i:1666739428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a279031e92daca54466bb40582df06ecbbf92a2', '172.105.247.100', 1666739429, '__ci_last_regenerate|i:1666739428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4776064265fa4ef5d1f93e20815c1097939d1f8e', '205.210.31.36', 1666742656, '__ci_last_regenerate|i:1666742656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea177ca4a64dcc29c1fc4f62e7cd04f8b9f230e4', '172.105.247.100', 1666743621, '__ci_last_regenerate|i:1666743621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9917cff0d14bccefdac81b4470cfa82f8894c3ee', '172.105.247.100', 1666743621, '__ci_last_regenerate|i:1666743621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea388070779b2ed7b49c81a79dbad7f557bfd5be', '172.105.247.100', 1666743622, '__ci_last_regenerate|i:1666743622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a1f99283344eef3f30f75771c19c47c16744d4d', '172.105.247.100', 1666743622, '__ci_last_regenerate|i:1666743622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4e1d3e17e9eec4100d469c2916b6ee16bfd90c2', '172.105.247.100', 1666743622, '__ci_last_regenerate|i:1666743622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adccfb3f23587e7a7240c9f8f8025a0a502289cd', '172.105.247.100', 1666743622, '__ci_last_regenerate|i:1666743622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b623f8f9def1abcba462d84f7cbcede116d23058', '172.105.247.100', 1666743622, '__ci_last_regenerate|i:1666743622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5809056d0198d60126486c041d312bd6604ab2', '172.105.247.100', 1666743622, '__ci_last_regenerate|i:1666743622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8a8f4652daf77273d5704f569c432ab388081e', '172.105.247.100', 1666743623, '__ci_last_regenerate|i:1666743623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97dbdf2a9368728dde0407ca92ff2b0ac53a25e4', '172.105.247.100', 1666743623, '__ci_last_regenerate|i:1666743623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1090037213b1fe31dbdeaeac002cd8bf7445ccac', '172.105.247.100', 1666743623, '__ci_last_regenerate|i:1666743623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4f03efbf7cb0bcde7a1213cb955559b62ec1e0', '172.105.247.100', 1666743623, '__ci_last_regenerate|i:1666743623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d28fa931bfa9274705ad1c2dd9b981e341d107', '172.105.247.100', 1666743623, '__ci_last_regenerate|i:1666743623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd89ff8ccb2dacc4e53837ee0fb23f93b9ea2a5', '172.105.247.100', 1666743623, '__ci_last_regenerate|i:1666743623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa652bf61f4e3a3f5116fac4cc0b1b418366bca', '172.105.247.100', 1666743624, '__ci_last_regenerate|i:1666743623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee86f2dd1ac074f5e866a5fc2abf6d1c5582ace', '172.105.247.100', 1666743624, '__ci_last_regenerate|i:1666743624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b0ab60d19a79cba909716959d9a3b4ce819f89', '172.105.247.100', 1666747823, '__ci_last_regenerate|i:1666747823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d38dd1efd920f5f88813f16ccf615ea8a4e1a39', '172.105.247.100', 1666747824, '__ci_last_regenerate|i:1666747824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50efb38813ef0db1d7d9e3e3deebc4539b8b60db', '172.105.247.100', 1666747824, '__ci_last_regenerate|i:1666747824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6891b97b1e2d6f1f561cb9295d925785ab5dfef', '172.105.247.100', 1666747824, '__ci_last_regenerate|i:1666747824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64a7c9f89f7a5c7e4acde6ea7d2c07fa30294f4', '172.105.247.100', 1666747825, '__ci_last_regenerate|i:1666747825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da1c3f589dc7cb98974f4371b893b95ca7f36ed', '172.105.247.100', 1666747825, '__ci_last_regenerate|i:1666747825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1c02460ef02e4b3e2f23eb4fbfcb8ac84431c1', '172.105.247.100', 1666747825, '__ci_last_regenerate|i:1666747825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7737d04606e59d5ce7b4969bf96f88ab86e86d', '172.105.247.100', 1666747825, '__ci_last_regenerate|i:1666747825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4fadb1497c287775b37f4350c9cd1b18c594867', '172.105.247.100', 1666747826, '__ci_last_regenerate|i:1666747826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb53586045946a5106745f70634e0b9449b0e47', '172.105.247.100', 1666747826, '__ci_last_regenerate|i:1666747826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a726a3e3811d2810d7e5f1d50c5bfb5637ba31d', '172.105.247.100', 1666747826, '__ci_last_regenerate|i:1666747826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27ee8cd02a35b3d59f3ce5ca6ce34e1bd639d87', '172.105.247.100', 1666747826, '__ci_last_regenerate|i:1666747826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97d95d95668c6c2fcc39e88841d60f0498bc936', '172.105.247.100', 1666747827, '__ci_last_regenerate|i:1666747827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bd3cdc6d4dfe1d56b0cbef014370f2aa669c667', '172.105.247.100', 1666747827, '__ci_last_regenerate|i:1666747827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b98caddd8b9c41d6f6e15db425ee003be6d71f', '172.105.247.100', 1666747827, '__ci_last_regenerate|i:1666747827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3115128fdfd370b0baa7da6050ee7b7b961687df', '172.105.247.100', 1666747828, '__ci_last_regenerate|i:1666747827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074851dc8acc9945e87a759de931bca7bc668cb2', '172.105.247.100', 1666752021, '__ci_last_regenerate|i:1666752021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254d6cb948d3d2b178eb88222ecd0882bc9e75c3', '172.105.247.100', 1666752022, '__ci_last_regenerate|i:1666752022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af181c37014bf9303cd33a762355e00080b3a5ec', '172.105.247.100', 1666752022, '__ci_last_regenerate|i:1666752022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c61ca0187a96835a4eb5c9b76358c2868b2da459', '172.105.247.100', 1666752022, '__ci_last_regenerate|i:1666752022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd78e3c4ae39c9d6a6746f10c3e623f226a4cb9', '172.105.247.100', 1666752023, '__ci_last_regenerate|i:1666752023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b1cb1f8682191f842719a333c598711bb7cfe46', '172.105.247.100', 1666752023, '__ci_last_regenerate|i:1666752023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384c51dbf6b6adc082e7c38d1451010d85ca0aaa', '172.105.247.100', 1666752023, '__ci_last_regenerate|i:1666752023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16dd0ee69acdf64eeb31a486d1875f1a895ecc18', '172.105.247.100', 1666752023, '__ci_last_regenerate|i:1666752023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae224b0420415242e1ee2f8ee7a8f8240482a5b', '172.105.247.100', 1666752023, '__ci_last_regenerate|i:1666752023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc708b05771cf9c0157b6e1e61279f2f18fe88b', '172.105.247.100', 1666752024, '__ci_last_regenerate|i:1666752024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85260296e3bf82be61c04ca73db4e33e6d38dd94', '172.105.247.100', 1666752024, '__ci_last_regenerate|i:1666752024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6fc0adfe76c3f5ab2c755c61617304da1b4e3e9', '172.105.247.100', 1666752024, '__ci_last_regenerate|i:1666752024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de8284a915f0645c0d20e63953877a6a93610f7', '172.105.247.100', 1666752024, '__ci_last_regenerate|i:1666752024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec21585a2425676ba16e39ff8f050325cb28bed', '172.105.247.100', 1666752025, '__ci_last_regenerate|i:1666752025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdec25baaf6ad0042c7a154f01c04c6a6b6dea7b', '172.105.247.100', 1666752025, '__ci_last_regenerate|i:1666752025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a99f8705557e1643566feb1991f883d4dbf0fb', '172.105.247.100', 1666752025, '__ci_last_regenerate|i:1666752025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3c1b53daf52da4dcdde0349e55ee37b9f891ca', '172.105.247.100', 1666756223, '__ci_last_regenerate|i:1666756223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c4ef623ecd50c96731224718adff524e26fa6e', '172.105.247.100', 1666756223, '__ci_last_regenerate|i:1666756223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d311d75016b6d41337488b76c98bd5fbd48ba1d1', '172.105.247.100', 1666756224, '__ci_last_regenerate|i:1666756224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c42b985ba144a9debffff008b9afb1018f0ffca', '172.105.247.100', 1666756224, '__ci_last_regenerate|i:1666756224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759a2722d9dbbd64495e1225c1072fddf7e5c720', '172.105.247.100', 1666756224, '__ci_last_regenerate|i:1666756224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311c9a17b0404e12c0d941cd04cd67a4d8767013', '172.105.247.100', 1666756224, '__ci_last_regenerate|i:1666756224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b92353f3fed2d54336c4486de10ae55653d39c1', '172.105.247.100', 1666756224, '__ci_last_regenerate|i:1666756224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094550eeede7efc58f91bf06bf1e36aa590e81aa', '172.105.247.100', 1666756224, '__ci_last_regenerate|i:1666756224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bee3d641d0923ba5fc01abb53d8a7be82e455af', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afd1f6882f0615edc071f897cf176d796c68daa', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d12836afb94a2e38abf45ade07fccd8c459dea2', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1dc8da3aa199f8cbec0044bcd399a814ff6924e', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33358354bb19475d44a08805648d6ba609833909', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3adb9f713cf3f95e3051096d5119bc43cd52b4c', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae33c096790bd59543a9eaa58b42a61575c7ac6f', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aadbfc00704ca0043e39cd2869b481d3d184a29', '172.105.247.100', 1666756225, '__ci_last_regenerate|i:1666756225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e361f64fa191630fd90dcb73f8988e25201ae8', '172.105.247.100', 1666760423, '__ci_last_regenerate|i:1666760423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261a62beb4e282fb479d3718111723a67fac7585', '172.105.247.100', 1666760424, '__ci_last_regenerate|i:1666760424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c647936ef950c71c2cfb1b48eb76dfe13881289', '172.105.247.100', 1666760424, '__ci_last_regenerate|i:1666760424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d3a41a67a222c84898e52e30943603c57d7c3d', '172.105.247.100', 1666760425, '__ci_last_regenerate|i:1666760424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9830aafb0ec84260334f544aeceefdcd5bd54a', '172.105.247.100', 1666760425, '__ci_last_regenerate|i:1666760425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe34695f63f32e8ff8c1462f0f96cf35d31858c5', '172.105.247.100', 1666760425, '__ci_last_regenerate|i:1666760425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8586b6944b345e16f37c8ce00489d08bec6f5028', '172.105.247.100', 1666760425, '__ci_last_regenerate|i:1666760425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e002680dfd13921a045b22aa56669be74870ff6', '172.105.247.100', 1666760426, '__ci_last_regenerate|i:1666760426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4161a5529a3a81ecb588f932d609ba93b15ae6be', '172.105.247.100', 1666760426, '__ci_last_regenerate|i:1666760426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c990f22ac49b8eec9b5310863ccd956956ffa6', '172.105.247.100', 1666760426, '__ci_last_regenerate|i:1666760426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f07a409c9eb499d3b4b505a7888e2ff42c2765', '172.105.247.100', 1666760427, '__ci_last_regenerate|i:1666760427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bb003c9626cf3b4d6f66edffb4831d2d64e214', '172.105.247.100', 1666760427, '__ci_last_regenerate|i:1666760427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ae070eb1c584007bb3b1576e01a4dc478a2889', '172.105.247.100', 1666760427, '__ci_last_regenerate|i:1666760427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8f35f6a43c67e915a397a74108a41fa9319f91', '172.105.247.100', 1666760428, '__ci_last_regenerate|i:1666760427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b40572523393e4864a106bfc109441bfc7ce02', '172.105.247.100', 1666760428, '__ci_last_regenerate|i:1666760428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ede27f27a6d409f546b2d70567f483737cbc795', '172.105.247.100', 1666760428, '__ci_last_regenerate|i:1666760428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('131e1eba9bbc9d6747a743189921fb3333ad15ba', '37.111.218.244', 1666762707, '__ci_last_regenerate|i:1666762679;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666674556\";last_ip|s:14:\"37.111.216.124\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666762707;register_id|s:3:\"229\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-25 20:38:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e709a8e4e88224fc38bbbf9e0574f22d187159', '116.204.230.27', 1666764382, '__ci_last_regenerate|i:1666764382;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c738d650cca3c5844802c99f2d9a74af5a8a8f9', '116.204.230.27', 1666765225, '__ci_last_regenerate|i:1666765225;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4eea7244e8f78e24af7bab08fa0c5d0f351e9f8', '172.105.247.100', 1666764621, '__ci_last_regenerate|i:1666764621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d266bc384fa9925d14796ab43d8d237444d0a97b', '172.105.247.100', 1666764621, '__ci_last_regenerate|i:1666764621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c3cb3425fdc21e1bd612d2ee9dffdb1592a731', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ca220a3c0f8810b9ab8ef82acf89236da832af', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e90693557f1ef0b54b2938fff7f4dc9687a6d8c', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e17543e6e4ebf6124469a28c647fa05a2bd9b28', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6a13b6ad84fcad950a8db9dd6aa927aa5e045b', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d030d7e5404935716095b9c5fd53570fc9a07da9', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb38883cf671c1c61fc80a415f7f750939c9dc3', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c89bba82639df2fb62588fd5f69b66e7ca40944', '172.105.247.100', 1666764630, '__ci_last_regenerate|i:1666764630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2325036c795800d7702450b0aa6c917ef61dac95', '172.105.247.100', 1666764631, '__ci_last_regenerate|i:1666764631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e52c008216084d70779628cbb74cc62f1889c866', '172.105.247.100', 1666764631, '__ci_last_regenerate|i:1666764631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cedc48f1a6bab5fa077eeb3b02294ff0146d0e2', '172.105.247.100', 1666764631, '__ci_last_regenerate|i:1666764631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de47d9f955704d7ffc7ebe969a6d5bdde4c4431', '172.105.247.100', 1666764631, '__ci_last_regenerate|i:1666764631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f61492f3e67c21d8c02fd305adbdfab360d8a26', '172.105.247.100', 1666764631, '__ci_last_regenerate|i:1666764631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c26d0544167365dadfa7c0fe973ff0715e7d792f', '172.105.247.100', 1666764631, '__ci_last_regenerate|i:1666764631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5963a5556b3838920384a3695986a140fb79633', '116.204.230.27', 1666765872, '__ci_last_regenerate|i:1666765872;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707dbda415ba48696e6177d2035e6b05c47d51f5', '116.204.230.27', 1666767030, '__ci_last_regenerate|i:1666767030;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e8718c4344dd14da3924545bf9243c47e27f7c', '116.204.230.27', 1666772197, '__ci_last_regenerate|i:1666772197;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb352f1ff398d5b74288f5592045f30225b2588', '172.105.247.100', 1666768823, '__ci_last_regenerate|i:1666768823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5e3d48e1a1bcf57cdf9ca5314a8df0d20edc9f', '172.105.247.100', 1666768823, '__ci_last_regenerate|i:1666768823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4f87091e566bb35436017e6326b7a5bc5c95cd', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8311b192a296239798c1ae2446a000871c1f961', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b659c815ca34b1c3b1bef38bdad794da7ed870', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81f607f46ba4ad65b59649897dbcedfeed6e535', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3bbcb7ce72ef6290be2805ed76b9aa7297fefce', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('376a94977e8a7e364a3212d58f0473dfc47fdaaf', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de62858c3b1ef95ce11ed4f3c1ff2467dbfee27', '172.105.247.100', 1666768824, '__ci_last_regenerate|i:1666768824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c972ff05d0817bb9df0c36bce7b3b678de4a992', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d875c5acaf610927b6bb9b4bfb3507879db8cf0b', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('843c2b7385d326914fed47b390eb9b55f4d42bb4', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('680779cffb59f40d7222896d77cb993402e40a1f', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3c01a3961369eb18fade2d5d80c84903b5380ba', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('894668e77c190775c31dac3ba2e286b89c338165', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e619c3b0467bb1646bb45beb3a04a0db65699548', '172.105.247.100', 1666768825, '__ci_last_regenerate|i:1666768825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3f42e57e6a5c76583c880a2e837ce2b9a0699d', '116.204.230.27', 1666772739, '__ci_last_regenerate|i:1666772739;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2c75fbd0dc2edb9616e1d83b7956a70dee4436', '116.204.230.27', 1666773505, '__ci_last_regenerate|i:1666772739;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666681983\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2224fe79d1bc60c6a270ed694127ad9eb9045c28', '172.105.247.100', 1666773023, '__ci_last_regenerate|i:1666773023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bad59f39eff4cb0aa6cb9d60ac5b7324340b680', '172.105.247.100', 1666773023, '__ci_last_regenerate|i:1666773023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b8e7ce0e1e4a56ee7644a9289627e94c37de177', '172.105.247.100', 1666773023, '__ci_last_regenerate|i:1666773023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39214ad910f5a87b0cd50c55a3796eff5247b28', '172.105.247.100', 1666773024, '__ci_last_regenerate|i:1666773023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e811a2f3a7e864545d65a4ccd7221e3d9790ca32', '172.105.247.100', 1666773024, '__ci_last_regenerate|i:1666773024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5706b375bbf40db1bd1abd8f676bdeb3123d2e1d', '172.105.247.100', 1666773024, '__ci_last_regenerate|i:1666773024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a308cd1eded3bfe66f169fd3c2b263d4d0d6793', '172.105.247.100', 1666773024, '__ci_last_regenerate|i:1666773024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98e3ed56b2a4156361db8129d5057174f8af6f3', '172.105.247.100', 1666773024, '__ci_last_regenerate|i:1666773024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f5046544b8aa68cdf6c08461c74e9dcf9f9e88', '172.105.247.100', 1666773024, '__ci_last_regenerate|i:1666773024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee90420ebe5416bc39be7e1110d1624a0b0e322a', '172.105.247.100', 1666773025, '__ci_last_regenerate|i:1666773025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b763b94abcff085eb16247662e28928609dcd3', '172.105.247.100', 1666773025, '__ci_last_regenerate|i:1666773025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be681f2666cac575a5beb145d15fe6b4b02f429', '172.105.247.100', 1666773025, '__ci_last_regenerate|i:1666773025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52455698ea2d7993241dc13f4f6dc08ba3c3ac8a', '172.105.247.100', 1666773025, '__ci_last_regenerate|i:1666773025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9995d273a664dc75cb97f6208601e3261b69167', '172.105.247.100', 1666773025, '__ci_last_regenerate|i:1666773025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2dc0cec046a76b734ff1827aff3d0024f733f68', '172.105.247.100', 1666773026, '__ci_last_regenerate|i:1666773026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13dbf26c6121db9a94bfa5f85884505e9c9151f', '172.105.247.100', 1666773026, '__ci_last_regenerate|i:1666773026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285a3de4fc4954c0a592a30b839166762eed5ac5', '172.105.247.100', 1666777223, '__ci_last_regenerate|i:1666777223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b2c092425e341cfeb28ce8a6b39d6c509a93661', '172.105.247.100', 1666777223, '__ci_last_regenerate|i:1666777223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783d75c3092b2dba4947422c473903ff7af35859', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5808492927677a975dcc5325132b67d0e8c8c27', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d10914ab342795676cff10058951cc14bbe9865', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dc926a2cdede3ac7c658ee296bff8af83df58f', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8049a43b09cc6da658c5675e9389fd9765a79d7', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754b007876a5bf1d83a460d098fb69db1f242818', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d1024cff927f9cce248390dca5d6ea9f313362', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aaaaeea76fd2e0c8a13676f930ee16846babf4b', '172.105.247.100', 1666777224, '__ci_last_regenerate|i:1666777224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab18d24545171c0963ecd8909c5b9a8e9eef18e', '172.105.247.100', 1666777225, '__ci_last_regenerate|i:1666777224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e747a05370e2092ff0d382a0ada20082b8efa8e7', '172.105.247.100', 1666777225, '__ci_last_regenerate|i:1666777225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b97a54fd4fb5562d809a473f4ba9896b114968b', '172.105.247.100', 1666777225, '__ci_last_regenerate|i:1666777225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5ff556f28ec702b47a10b0f6168efbdbdc88ec', '172.105.247.100', 1666777225, '__ci_last_regenerate|i:1666777225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d2e92a755154f8f70451a906f3843f5540521c', '172.105.247.100', 1666777225, '__ci_last_regenerate|i:1666777225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee161234b522ce430854e3dde797a0162d8b31e', '172.105.247.100', 1666777225, '__ci_last_regenerate|i:1666777225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88eab4e98cef3d88069c4b0f2867b32d79c56b61', '172.105.247.100', 1666781421, '__ci_last_regenerate|i:1666781421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e29a3893196e68a5a8909b1c1a7aec47df95f0', '172.105.247.100', 1666781422, '__ci_last_regenerate|i:1666781422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea0a5433c68c353fd497545a06ce61fde6b2331', '172.105.247.100', 1666781423, '__ci_last_regenerate|i:1666781423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961a717465cf8575ddb1a9b6c690ee5110d3aca2', '172.105.247.100', 1666781423, '__ci_last_regenerate|i:1666781423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71f7ce2095a77aa83ad4f8fb56b6f7af573c0cc4', '172.105.247.100', 1666781423, '__ci_last_regenerate|i:1666781423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e581d9f8f923bd0e4bac07a21f2742ef3aaff67', '172.105.247.100', 1666781423, '__ci_last_regenerate|i:1666781423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5afa24c2572d99849ef9b0f1089597c407addfa9', '172.105.247.100', 1666781424, '__ci_last_regenerate|i:1666781424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7bd2afe32d3ef009823a602c911fa438eeced85', '172.105.247.100', 1666781424, '__ci_last_regenerate|i:1666781424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b996265c1a5bf7821f9e05a9e3640bcb81c7603', '172.105.247.100', 1666781424, '__ci_last_regenerate|i:1666781424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d892714858b7ccb5b2b3e6034417825ec5e2b54b', '172.105.247.100', 1666781424, '__ci_last_regenerate|i:1666781424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3402ed8457e7cf43899934b8c6035ef28491edd', '172.105.247.100', 1666781424, '__ci_last_regenerate|i:1666781424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e847a6aa6c8ef8417b100fe22246c5e55c6194c', '172.105.247.100', 1666781424, '__ci_last_regenerate|i:1666781424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce13d301f97a8beb954da88b0d49ad0aabfca77', '172.105.247.100', 1666781425, '__ci_last_regenerate|i:1666781424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28682aa472f32c7dc7ac344aea322d24c0dad7cc', '172.105.247.100', 1666781425, '__ci_last_regenerate|i:1666781425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88993eae819eae78896d08141f306e670f01c1f8', '172.105.247.100', 1666781425, '__ci_last_regenerate|i:1666781425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc2795d698b4fddf79c98b11a82e8c6470ad01f', '172.105.247.100', 1666781425, '__ci_last_regenerate|i:1666781425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17544067fb9e1d5ed732c9028f517d289e0d26fe', '116.204.230.27', 1666782158, '__ci_last_regenerate|i:1666782134;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666763702\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('649b3b0588aa386f8f7aad76f1cbca2b21af01eb', '172.105.247.100', 1666785623, '__ci_last_regenerate|i:1666785623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c81867e1cc4cc7cd727c4750a30e4bef47098a', '172.105.247.100', 1666785623, '__ci_last_regenerate|i:1666785623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632f580d9cac718fb1449af42350d502315d2311', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecae4d148635b196a3122a950e4398d1747b5622', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b370bfaf0c822fe1b4fb801d4d4fcd7b34f9177', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aab6c8d21b282999feecddc163b052097ea98db', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe2f2332c066a516c9747b60c2aabf8b1bb0344', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05b3ee9e9e1c0555c9301561f90074fcd20ed02', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf928a09ed2bf9e456418b85850269ad57843bea', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdda03a12050121953bb638c12f41d4712f219e0', '172.105.247.100', 1666785624, '__ci_last_regenerate|i:1666785624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('becb5a8aff89feb78b27178e6c382dc832e01419', '172.105.247.100', 1666785625, '__ci_last_regenerate|i:1666785625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48ab8118412d9b28594dcbbe6310c1b838d7893', '172.105.247.100', 1666785625, '__ci_last_regenerate|i:1666785625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50b98863828c863429aa0e9769da71513ded503', '172.105.247.100', 1666785625, '__ci_last_regenerate|i:1666785625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa74b5c5054492f0636aa9c11383496103ee8ef1', '172.105.247.100', 1666785625, '__ci_last_regenerate|i:1666785625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73bb4334d6c921eee773f7deb13f56076201d251', '172.105.247.100', 1666785625, '__ci_last_regenerate|i:1666785625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a92f3b8c75faedf84b92ec97f17fe23119baa42', '172.105.247.100', 1666785625, '__ci_last_regenerate|i:1666785625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ff71698ddf093dadd0946a502d3568b08bf04f', '37.111.218.244', 1666789804, '__ci_last_regenerate|i:1666789804;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dcbe0de50a7b2cdb37a4f6e70b1da13baad94ab', '37.111.218.244', 1666790151, '__ci_last_regenerate|i:1666790151;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666762686\";last_ip|s:14:\"37.111.218.244\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666789905;register_id|s:3:\"229\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-25 20:38:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64489a66ab4ca1191315096bd795b5a5d54f3108', '172.105.247.100', 1666789824, '__ci_last_regenerate|i:1666789824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d7e4df0d9932719637d174d45b9c9f489632f34', '172.105.247.100', 1666789826, '__ci_last_regenerate|i:1666789826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9dd53fa7595d721972da460ad37538aeff3fd83', '172.105.247.100', 1666789826, '__ci_last_regenerate|i:1666789826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aef45fc3b978f3db313065362f780fe9050cb62', '172.105.247.100', 1666789826, '__ci_last_regenerate|i:1666789826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c363ea55f4aa3c20288527e02012e279e2f47ce3', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4430347aeb6bf5a881467e3561a63395673890', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64cf675fe52b71e5ce8f421f2934daf6d4d6a59b', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe5b96ae898b608d8c71a25e5bec1b8ed295e52', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaec30ecd02ec230b1b74b65327e8737dc251db9', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfc238b551e44f10b76f5d753816fdda2c3ba6d1', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c3a294deb0f2c457beda49c97b92d23855a733', '172.105.247.100', 1666789827, '__ci_last_regenerate|i:1666789827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeaf370dafe2e654d2b5702b092620e7d2b645af', '172.105.247.100', 1666789828, '__ci_last_regenerate|i:1666789827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce248a19a634601e33fd73c54558b6c34dfaed9', '172.105.247.100', 1666789828, '__ci_last_regenerate|i:1666789828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a3a5e31a8c0480d18d2d7d0ebb83efd5c313ef', '172.105.247.100', 1666789828, '__ci_last_regenerate|i:1666789828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a584bb8edb9a4d9c56b86afcc4da10008ff4379', '172.105.247.100', 1666789828, '__ci_last_regenerate|i:1666789828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e9d1167d8195ced4571ca76b7138e2fe1f1182', '172.105.247.100', 1666789828, '__ci_last_regenerate|i:1666789828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c929036717f8e51c70ed554375f35ba3389916', '37.111.218.244', 1666792484, '__ci_last_regenerate|i:1666792484;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666762686\";last_ip|s:14:\"37.111.218.244\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666789905;register_id|s:3:\"229\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-25 20:38:30\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70561ed8b4c56d77c9e006ffa986cd79c420124c', '37.111.218.244', 1666792870, '__ci_last_regenerate|i:1666792870;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666762686\";last_ip|s:14:\"37.111.218.244\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666792865;register_id|s:3:\"229\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2022-10-25 20:38:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddeb4cf2c0bcbec9c11e1ef14e560c6f0a7de4be', '37.111.218.244', 1666792883, '__ci_last_regenerate|i:1666792870;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666762686\";last_ip|s:14:\"37.111.218.244\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666792883;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923d8b4012c204c6dd06c87e9306de437ee6d386', '172.105.247.100', 1666794026, '__ci_last_regenerate|i:1666794026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01387c272dcaf4e926c3a17f6d86065511d356d8', '172.105.247.100', 1666794026, '__ci_last_regenerate|i:1666794026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a540ebc4be2cb7c96713e9f91a74b18d261004b5', '172.105.247.100', 1666794026, '__ci_last_regenerate|i:1666794026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1b67cb00f571322c6392a34c250287fbb3beb0', '172.105.247.100', 1666794026, '__ci_last_regenerate|i:1666794026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c18c7778a14e5645b878aee2427ed773748e6768', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0767f07371fd96196e85122d983e53e4e66f5420', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53810b95cecf307cf2539f6ff8322a2712553ba4', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a51815e8b646b499e78007ce8b559039d58d4c', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c35326d286794ead8c826e37601149975ce2bb8', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b5b8977745c35b208c92eeb25ca884ebfe3e733', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15e7b8cdda67a23507137bc7511d6d4cdf821ef', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7e9aacf884fca55b8ebb0bf516f8ff4c5809b8', '172.105.247.100', 1666794027, '__ci_last_regenerate|i:1666794027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fc97213c774854d0c5eafd2b4a3c60586053c6', '172.105.247.100', 1666794028, '__ci_last_regenerate|i:1666794028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4762c949ee099616e43717e59ce85cd81e1cbb2', '172.105.247.100', 1666794028, '__ci_last_regenerate|i:1666794028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c024a1b0c6e32900dcd3637f1fbd17b1a1496a86', '172.105.247.100', 1666794028, '__ci_last_regenerate|i:1666794028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f3bc2776bff41b90da1f4390a7993db9ffa050', '172.105.247.100', 1666794028, '__ci_last_regenerate|i:1666794028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc28faaa15f084251daab0588163a9f9ccc148d', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9846b4f6e0d8211df0eebcc85feb5929edd3f31', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c528ec76d1991e5801545a64090aca6bdf97cde3', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab740b1d861d8afdf60186f128dd25ed86edd23', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2bf029a67e28dd3e18d4d0830866b9c199f729', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5382c2ac67b57ffae4a7d85c46bb304f63a629fe', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6750281249797e26b05a6d387d07bc0748ceddaa', '172.105.247.100', 1666798222, '__ci_last_regenerate|i:1666798222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4496dc89e42c46bda809e93c905787d2bd61195e', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2a6607481888941e908f603578fd43b3b2f1e7', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa37e5a5e05bd74b70ba1fd80f8abb37dfae2e17', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828fc783f523f3f801d901418ea1a62287e4c510', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efac5a4616e3a7cc9476f93d72c3aa6bcd9ea9b2', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d40dda6ee2e9b1b67e97e5355fa9fbd32f5282', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57784f3c66920d189bbadb650dd5c4b2857d464d', '172.105.247.100', 1666798223, '__ci_last_regenerate|i:1666798223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d4a465b1f651515a2a7f054bea3db8fbef34a0', '172.105.247.100', 1666798224, '__ci_last_regenerate|i:1666798224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c1a2b027e195457c174a5cffb0ef3ff0fcdb95', '172.105.247.100', 1666798224, '__ci_last_regenerate|i:1666798224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57fa9563da8c2b1af8e876dbeb2ed1049bf88995', '172.105.247.100', 1666802421, '__ci_last_regenerate|i:1666802421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900b8b937ea12eced88edd24f3c31a8cabf7ee24', '172.105.247.100', 1666802421, '__ci_last_regenerate|i:1666802421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db99df356cb9eacc0123404c563920970ab9c2e7', '172.105.247.100', 1666802422, '__ci_last_regenerate|i:1666802422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07fae1ffbfbc4c1d2302c5c4632297fa392c3b6a', '172.105.247.100', 1666802422, '__ci_last_regenerate|i:1666802422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14123492c5e751418756c45d495c43120fcd9e4', '172.105.247.100', 1666802422, '__ci_last_regenerate|i:1666802422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75731d160e01e074da3fa6a596d31b4ecd7e5d6c', '172.105.247.100', 1666802422, '__ci_last_regenerate|i:1666802422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e420cbe7e5b2a069e0e708126e7531d9fa5770', '172.105.247.100', 1666802422, '__ci_last_regenerate|i:1666802422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f8bd1c522efc0172a53e9687dba7b5ccc34afd', '172.105.247.100', 1666802423, '__ci_last_regenerate|i:1666802423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8304dbc94f49312b3e869a6be8ab0c55251d873', '172.105.247.100', 1666802423, '__ci_last_regenerate|i:1666802423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7478ebf03746916a9c92698186c141ac39bcd8', '172.105.247.100', 1666802423, '__ci_last_regenerate|i:1666802423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a21569b5353665cf92aabe1d987db0ee0d39ccc', '172.105.247.100', 1666802423, '__ci_last_regenerate|i:1666802423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528cd64c7d8ea709449995d41a7e8278d54afaff', '172.105.247.100', 1666802423, '__ci_last_regenerate|i:1666802423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c336c48efded09b1e61a123e2179df3acb17d116', '172.105.247.100', 1666802424, '__ci_last_regenerate|i:1666802423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8993607b6b13d8b9c186c6e38b1dece702567a91', '172.105.247.100', 1666802424, '__ci_last_regenerate|i:1666802423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ec93d59f328d816847c8e8c566e630f88ae892', '172.105.247.100', 1666802424, '__ci_last_regenerate|i:1666802424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe815004e011a209c6b84f865d4fe99f0c2d878', '172.105.247.100', 1666802424, '__ci_last_regenerate|i:1666802424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482c9530c70446ee2659c3fef8341704f0b511d1', '172.105.247.100', 1666806623, '__ci_last_regenerate|i:1666806623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2de88ad463140b4a17b57f4bb2c1f546ca00f60', '172.105.247.100', 1666806624, '__ci_last_regenerate|i:1666806624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('732606bddb3058d967e82c60ffbc45cdbf1e96f8', '172.105.247.100', 1666806624, '__ci_last_regenerate|i:1666806624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9eda9a0a8cd9a0649744f5eac27472d7c6b11a', '172.105.247.100', 1666806624, '__ci_last_regenerate|i:1666806624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cf50c8e705eb8316b2e2650e30e888a7f2743b5', '172.105.247.100', 1666806624, '__ci_last_regenerate|i:1666806624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484b09f26b2f40993e00ae0957b169716e7b21d6', '172.105.247.100', 1666806624, '__ci_last_regenerate|i:1666806624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff6a990ea3f3184505534752bfaa51871f1bd74', '172.105.247.100', 1666806624, '__ci_last_regenerate|i:1666806624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4855d2f7d53b44cc233b731f5e5cad81fcaa89a', '172.105.247.100', 1666806625, '__ci_last_regenerate|i:1666806625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7fec5fa78df3169fe9833a53598a3680c34d90', '172.105.247.100', 1666806625, '__ci_last_regenerate|i:1666806625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57bdf714a1dbd6cf223faf26ea47e96838cce93', '172.105.247.100', 1666806625, '__ci_last_regenerate|i:1666806625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2017d126ec5059d79e1b65840f7a534449a357a9', '172.105.247.100', 1666806625, '__ci_last_regenerate|i:1666806625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd6c11554bdd4c708b84994d8b755bfe5a1853a', '172.105.247.100', 1666806625, '__ci_last_regenerate|i:1666806625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86a420ce31cc0925dd7a9123bbe2256c9c1d532', '172.105.247.100', 1666806626, '__ci_last_regenerate|i:1666806626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809f37ea6847cf5329d1db3b362a408875b0bd42', '172.105.247.100', 1666806626, '__ci_last_regenerate|i:1666806626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3fe9e06914d1576ced12fc07899faf76b086c8', '172.105.247.100', 1666806626, '__ci_last_regenerate|i:1666806626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e880b41a9709dc07314d35f6d89ed6e33266244', '172.105.247.100', 1666806626, '__ci_last_regenerate|i:1666806626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2ad777b7c2149f3102a0ddf2499be37a9a0e3b', '172.105.247.100', 1666810823, '__ci_last_regenerate|i:1666810823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a518ddcca856dc8ccc882d9b38a17bd0474066f', '172.105.247.100', 1666810823, '__ci_last_regenerate|i:1666810823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6d22d39469964b858ffb600edfc92a010db09d', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b98c1313f16d247166f64d698d7d66e93a566b', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47352f552922e1dc201a9a7acf1c12ca0ac2818', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eed3aec1b6a291312d6ba82d801bfe566ce719e', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d45af2820fa3f08b564440d20827cf87d0ca10', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e07aaa77f6a62c81074302debc0895f78e3892', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb107c0d821bcd8639a7a7762fe1b88722fdbb1', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3a57aa3d804e2c6325010be77a4835c645bce1', '172.105.247.100', 1666810824, '__ci_last_regenerate|i:1666810824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a965d9338e37cd7cb2aeb71da21669836b83bf4a', '172.105.247.100', 1666810825, '__ci_last_regenerate|i:1666810825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8065125d1af1c0ed2a0f73ff6987e33907bd11', '172.105.247.100', 1666810825, '__ci_last_regenerate|i:1666810825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ae1b3d65a22d2c1527de1d8a8d95afe8684f76', '172.105.247.100', 1666810825, '__ci_last_regenerate|i:1666810825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138392ae4123d40d031f469a9fe8d4ea805df8c2', '172.105.247.100', 1666810825, '__ci_last_regenerate|i:1666810825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48cb62edf6d3af4d5b9a3c1b9541e518e63886f1', '172.105.247.100', 1666810825, '__ci_last_regenerate|i:1666810825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92612668c3feedfb71b08ddae7c232f6640b1076', '172.105.247.100', 1666810825, '__ci_last_regenerate|i:1666810825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25fa36ec2abac684199f81c7825920c682cd66c9', '172.105.247.100', 1666815022, '__ci_last_regenerate|i:1666815022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200afdfe43e86bffea19cff3fddf9f1e8f9755a7', '172.105.247.100', 1666815023, '__ci_last_regenerate|i:1666815023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e072a49a36917d58b3f41ee0d6b75a164a27cda0', '172.105.247.100', 1666815023, '__ci_last_regenerate|i:1666815023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3550b193197606195f80af03dba827cd8b97ea45', '172.105.247.100', 1666815023, '__ci_last_regenerate|i:1666815023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('305d425f267ae8c265ad782a90f7027aad00c52a', '172.105.247.100', 1666815024, '__ci_last_regenerate|i:1666815024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c1552ba9a90bd71a077e46168c74575076874b', '172.105.247.100', 1666815024, '__ci_last_regenerate|i:1666815024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5cca38601f1d6c9e006e4eede50ad80aa73e3c7', '172.105.247.100', 1666815024, '__ci_last_regenerate|i:1666815024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56524cb44f2bddcf15f86610d1b88ee8ac9beb22', '172.105.247.100', 1666815024, '__ci_last_regenerate|i:1666815024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81356e6fc8dd73ac92d8088f9e8c556f29b301e4', '172.105.247.100', 1666815025, '__ci_last_regenerate|i:1666815025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e9fb06a8749177ec8d80cc751c82cebc901bc5', '172.105.247.100', 1666815025, '__ci_last_regenerate|i:1666815025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688b5310ccf77b588ca89ee2741dd024bcd95d6d', '172.105.247.100', 1666815025, '__ci_last_regenerate|i:1666815025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ee5adc4168eb849fb98183f403c01a520bf488', '172.105.247.100', 1666815026, '__ci_last_regenerate|i:1666815026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3833db4e98f7f6cf5b8c063a9d082d4ac5bd34e9', '172.105.247.100', 1666815026, '__ci_last_regenerate|i:1666815026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb336e38cde2987092b658e61785c8385f80a2c', '172.105.247.100', 1666815026, '__ci_last_regenerate|i:1666815026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38565b9940dcc8e4c5ec9cc6001e8e4b732f4f41', '172.105.247.100', 1666815026, '__ci_last_regenerate|i:1666815026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cc59de134fae23affbcb02276721e6f54baa4b', '172.105.247.100', 1666815027, '__ci_last_regenerate|i:1666815027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0260b18e03f5a131ea82aedde6f1757a656181ff', '172.105.247.100', 1666819222, '__ci_last_regenerate|i:1666819222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0e2b90cc8ed0a24d56c5fb3b550bcd4f028c7aa', '172.105.247.100', 1666819222, '__ci_last_regenerate|i:1666819222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4e03e5b6555bcbe0d9216e39066965212a7dd43', '172.105.247.100', 1666819222, '__ci_last_regenerate|i:1666819222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc1acedd8d5729e42078177c0bacae557b954376', '172.105.247.100', 1666819223, '__ci_last_regenerate|i:1666819222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd2165bb1d7a5e80507f3a856c13ad2c57e82dc', '172.105.247.100', 1666819223, '__ci_last_regenerate|i:1666819223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e4b942204661300b9a0114689bc64782c4df00', '172.105.247.100', 1666819223, '__ci_last_regenerate|i:1666819223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1450ace427bf72d65f37ce0a4e5d6accc8b31e05', '172.105.247.100', 1666819223, '__ci_last_regenerate|i:1666819223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddfaca28fb748ca22d4a126244354e1e29c3f003', '172.105.247.100', 1666819224, '__ci_last_regenerate|i:1666819224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35022ecd5adc76430796a672f330132b1e55bb5a', '172.105.247.100', 1666819224, '__ci_last_regenerate|i:1666819224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50592d7f41cae319b3246573e6c178b5722b4fb8', '172.105.247.100', 1666819224, '__ci_last_regenerate|i:1666819224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a87800bd0e8fe921399d19c590403dc38307536', '172.105.247.100', 1666819224, '__ci_last_regenerate|i:1666819224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ec4c6cbbd875d9ccd37e319310b3f9d4fcdf41', '172.105.247.100', 1666819224, '__ci_last_regenerate|i:1666819224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c334d91da9b4204e88daf06abbeb0cd0c93beec0', '172.105.247.100', 1666819225, '__ci_last_regenerate|i:1666819225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d72247d1eef14e102e4631eb24de22831f5ca21', '172.105.247.100', 1666819225, '__ci_last_regenerate|i:1666819225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5380028660b895cc26be1eb430e03a992f84bcdd', '172.105.247.100', 1666819225, '__ci_last_regenerate|i:1666819225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550d4160beedc8033b04a59ca053062f4b141c89', '172.105.247.100', 1666819225, '__ci_last_regenerate|i:1666819225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de984522ef0d98352e0e27b116126737d7630ee', '172.105.247.100', 1666823420, '__ci_last_regenerate|i:1666823420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d2012fa23524a62eceba82f4f6aefaa45c04b2', '172.105.247.100', 1666823420, '__ci_last_regenerate|i:1666823420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f822490a0a261ea81f49e6ff0a0af3b2f2901f3', '172.105.247.100', 1666823421, '__ci_last_regenerate|i:1666823421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb6bd5ea1bf69243dc2712e0b4c99a0e1036f1f', '172.105.247.100', 1666823421, '__ci_last_regenerate|i:1666823421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9542db69c243fca9dca2893161eddb52e18e2fac', '172.105.247.100', 1666823422, '__ci_last_regenerate|i:1666823422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da1cc0e15e9b3f495e2c8307bce2849d74d86100', '172.105.247.100', 1666823422, '__ci_last_regenerate|i:1666823422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea886319131c31c22a4abe9715d1db23f2665ff6', '172.105.247.100', 1666823422, '__ci_last_regenerate|i:1666823422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91fa42e6746a5dcbbbbbdfb8332898af2212d9a', '172.105.247.100', 1666823423, '__ci_last_regenerate|i:1666823423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a200f49f3ebec9d0e9f007def47237d5c9978722', '172.105.247.100', 1666823423, '__ci_last_regenerate|i:1666823423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8b32904fa9eda969baf72608c1493a626651c8', '172.105.247.100', 1666823423, '__ci_last_regenerate|i:1666823423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4d489add00b0261e9a9aaac17b0d63a5e10861', '172.105.247.100', 1666823423, '__ci_last_regenerate|i:1666823423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef8b3536f3dc17fd9b4bc267ddc57ea6fd938a1', '172.105.247.100', 1666823424, '__ci_last_regenerate|i:1666823424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90376fea973889bad65dd4117cae19f9b8fde407', '172.105.247.100', 1666823424, '__ci_last_regenerate|i:1666823424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97e4fad996e6a64a2112e8042de6cb171eb7ecb', '172.105.247.100', 1666823424, '__ci_last_regenerate|i:1666823424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a1f541d29be08f1ceaf37d27c5b52d40bfc853', '172.105.247.100', 1666823425, '__ci_last_regenerate|i:1666823424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ffc461bf551e511d3d42869e935ad131b817e09', '172.105.247.100', 1666823425, '__ci_last_regenerate|i:1666823425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc78f6b8b345ae448bf511f846f5a99024d7552', '172.105.247.100', 1666827621, '__ci_last_regenerate|i:1666827621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49785343210bec87fd992bdbe68650c6bfb6b12a', '172.105.247.100', 1666827621, '__ci_last_regenerate|i:1666827621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c425a24f540afe8e3a15ebaa8828cd82c919aa2', '172.105.247.100', 1666827621, '__ci_last_regenerate|i:1666827621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf925bbee25324985cb7c4b8d8e856788b3202c9', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbae7050729be9f079472ab3bbae2e651566d01', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f3269ca29c1f9603dae5e771e652f019a04662', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc65cf0fce1dfbe2279bfecbf373eeba3f32c5d5', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67a2e965cabe92a06e03b4e84e1b63c769671863', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc232ff5bfb1073c2b6f83174de6d1eef9448e47', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03741f5af16e08b8eec7b22456ca8aed18495610', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb21f5e260b5825043013c54f756acd9f411018', '172.105.247.100', 1666827622, '__ci_last_regenerate|i:1666827622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4fe99b725fde5c9b427aa134d18c8bca1dc05f', '172.105.247.100', 1666827623, '__ci_last_regenerate|i:1666827623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d232a07ff9ef0d71dd26701b4d2dd8870aaccd39', '172.105.247.100', 1666827623, '__ci_last_regenerate|i:1666827623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413ab28b1c5b5767aa8350ff23300e7f590b0692', '172.105.247.100', 1666827623, '__ci_last_regenerate|i:1666827623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad88931a8295868c3aa74e3667be6f640a5514c2', '172.105.247.100', 1666827623, '__ci_last_regenerate|i:1666827623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9788023bc4fde3efbf478622211c01b32d570f8a', '172.105.247.100', 1666827623, '__ci_last_regenerate|i:1666827623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f84b0a70b3ea72d0a0d8dda85d7fcd44cf99d05', '172.105.247.100', 1666831819, '__ci_last_regenerate|i:1666831819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5120796d1fed97d1eb9ee338634528d2e72e4f12', '172.105.247.100', 1666831821, '__ci_last_regenerate|i:1666831821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7866dab749d1da10120b59e03ba4bad5a400d577', '172.105.247.100', 1666831821, '__ci_last_regenerate|i:1666831821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b83ef3cadfae229dbd9e76d72b069489d7f49e', '172.105.247.100', 1666831822, '__ci_last_regenerate|i:1666831822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f75442da92db1d099355292d931528a81738ae2', '172.105.247.100', 1666831822, '__ci_last_regenerate|i:1666831822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0fca3abc73c2a5b875a24ebbeceda599bd5bc13', '172.105.247.100', 1666831822, '__ci_last_regenerate|i:1666831822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ac7517312527ae50c0a6f5c4018386e779d063', '172.105.247.100', 1666831822, '__ci_last_regenerate|i:1666831822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('890600fda902b804ccbc084ddba5a17f648bc4f2', '172.105.247.100', 1666831822, '__ci_last_regenerate|i:1666831822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d45c085f4ecbe4c66628feb6f93c882e33c3e0', '172.105.247.100', 1666831822, '__ci_last_regenerate|i:1666831822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d13489e44e231d22b62fe586736b835c5465be54', '172.105.247.100', 1666831823, '__ci_last_regenerate|i:1666831822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8e4299fbcf82347ed54f45a5dc9d3de660dce7d', '172.105.247.100', 1666831823, '__ci_last_regenerate|i:1666831823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dce1c50a15e8b086abddb9d349a002377962e4c', '172.105.247.100', 1666831823, '__ci_last_regenerate|i:1666831823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fa1ee03f2be24e9e61f0c642b64318ed3dcd51', '172.105.247.100', 1666831823, '__ci_last_regenerate|i:1666831823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9203a208e22490f60c971c144691d01769f382', '172.105.247.100', 1666831823, '__ci_last_regenerate|i:1666831823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a060def2fa04dc23d66010a8ccdfccbf9e97dc1', '172.105.247.100', 1666831823, '__ci_last_regenerate|i:1666831823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c11b17228b20ca3b33b3a55422922ef834048e9', '172.105.247.100', 1666831824, '__ci_last_regenerate|i:1666831824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0121d7bbe83a611362bba3b2177bd7bee5802445', '172.105.247.100', 1666836024, '__ci_last_regenerate|i:1666836024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02763a6dc04a82242b2b4121edf9fcd5b75008e', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6cad8318f068488754a25daf8f03bc17417346', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a59f872f30f5c6531d21d30661270cb33febb6', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2c22728982aa06c960fc6df98e4d369711d90a', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60bd19971350a994b2355aa2128720626fb06fdc', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b8ca6d7eb9ca10425e45f3168e54e6b384345b', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425632256e6a66e62d4b110b109183c22ba50d0d', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7852a03a22fd0dca5dd4a1f9d2597ab36af9b3', '172.105.247.100', 1666836025, '__ci_last_regenerate|i:1666836025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a50257700476ca7ab22bb8b719580aef2b0692', '172.105.247.100', 1666836026, '__ci_last_regenerate|i:1666836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('469ee0e9ff396312b48a4c8bdd54397f267b4015', '172.105.247.100', 1666836026, '__ci_last_regenerate|i:1666836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7083a500a4bd9b2cf564105270b4aefceadbd98b', '172.105.247.100', 1666836026, '__ci_last_regenerate|i:1666836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7afd5170eef5a4332af36fb57c47d79b6e95e69', '172.105.247.100', 1666836026, '__ci_last_regenerate|i:1666836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da2178b21cc1476b11a2badf132050c7ce5dce6', '172.105.247.100', 1666836026, '__ci_last_regenerate|i:1666836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dcec4ce5859707e40e956ed936b743d4a259750', '172.105.247.100', 1666836026, '__ci_last_regenerate|i:1666836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28fdb8d54bb634750ade8106e9912d7f29faa588', '172.105.247.100', 1666836027, '__ci_last_regenerate|i:1666836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdf7ee80b083af9701236c036947554503d379f9', '172.105.247.100', 1666840221, '__ci_last_regenerate|i:1666840221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea7394ece2362ef126ac863bd7ff77d3f1a013e', '172.105.247.100', 1666840222, '__ci_last_regenerate|i:1666840222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6d4a5d254066634d3d401407f8543de9897a4b', '172.105.247.100', 1666840222, '__ci_last_regenerate|i:1666840222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c48caa720c35e5f7f6ecfaeef395691b8f7b88e5', '172.105.247.100', 1666840222, '__ci_last_regenerate|i:1666840222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f6c8c17d8da4491c4ef84cfbcabee3620eec48', '172.105.247.100', 1666840223, '__ci_last_regenerate|i:1666840223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4560f93a5f7c7fde681d68c7e4aaa6590eea0b1b', '172.105.247.100', 1666840223, '__ci_last_regenerate|i:1666840223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3273c0d3c61d396898e210b67e41e7ff690eeb51', '172.105.247.100', 1666840223, '__ci_last_regenerate|i:1666840223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff85bddb65750388697518087245113c313fcbf9', '172.105.247.100', 1666840223, '__ci_last_regenerate|i:1666840223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e03ef457fe605a38d37012df7d7ad65deb790e7', '172.105.247.100', 1666840223, '__ci_last_regenerate|i:1666840223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3acc9ea022f02fb0ea754d454ad7b53331ec7bd1', '172.105.247.100', 1666840224, '__ci_last_regenerate|i:1666840224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec1e9b17cd9bc3eccbe007f31c106b4dfa434f6', '172.105.247.100', 1666840224, '__ci_last_regenerate|i:1666840224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44c47ba2eae4dab4a68965e0297a2bbb0b3c322', '172.105.247.100', 1666840224, '__ci_last_regenerate|i:1666840224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee0cc06d22e9d76675161491544beb45080f195', '172.105.247.100', 1666840224, '__ci_last_regenerate|i:1666840224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5db47c731ffc012cf707188c23707aa4b192f72', '172.105.247.100', 1666840225, '__ci_last_regenerate|i:1666840225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a87483d75bcf028fb89e5a7e219c5e2cdee16ff9', '172.105.247.100', 1666840225, '__ci_last_regenerate|i:1666840225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9641584faf57c1ec22c29cfb916e7332ff9fc13b', '172.105.247.100', 1666840225, '__ci_last_regenerate|i:1666840225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497b126d675a35d922d31bc1839c6cdc70285138', '172.105.247.100', 1666844423, '__ci_last_regenerate|i:1666844423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55b17b8b34798816af45ba2064c0e77a9b3ec1b', '172.105.247.100', 1666844423, '__ci_last_regenerate|i:1666844423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4760e42d9bec42247a07ada5041e26d0e3e7c21', '172.105.247.100', 1666844426, '__ci_last_regenerate|i:1666844425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfdc623203540676bbb0c59b7d20c860690fb1ed', '172.105.247.100', 1666844426, '__ci_last_regenerate|i:1666844426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdbfffa1c668fd411bf77225f65bbc548a122157', '172.105.247.100', 1666844426, '__ci_last_regenerate|i:1666844426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0b29a208bfa04a2b405a5c4970f0962280cde4', '172.105.247.100', 1666844426, '__ci_last_regenerate|i:1666844426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5b3d1ef00dddbcb16458e56bd49de2a85d452e', '172.105.247.100', 1666844426, '__ci_last_regenerate|i:1666844426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d33e6dd48f53a1d1f7f2b8d04d877b480e7b7e', '172.105.247.100', 1666844426, '__ci_last_regenerate|i:1666844426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e97195d3f093c4ae5e4b3d2fd33c5e7e4cde640', '172.105.247.100', 1666844427, '__ci_last_regenerate|i:1666844426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ab85bbbff73f53d93fb9e25ad992d2e87166cc', '172.105.247.100', 1666844427, '__ci_last_regenerate|i:1666844427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0629ee3366bb9bddb5210a8bcd90437d2c3e04a', '172.105.247.100', 1666844427, '__ci_last_regenerate|i:1666844427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a3a56ddefec1bc3fb7338aadf7d1ad034ab591', '172.105.247.100', 1666844427, '__ci_last_regenerate|i:1666844427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d151eae02d297c7f55246fb0e4baa7d671888a', '172.105.247.100', 1666844427, '__ci_last_regenerate|i:1666844427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbfcfb983b00f399ba0b23423250c09da9b9069a', '172.105.247.100', 1666844427, '__ci_last_regenerate|i:1666844427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ad0e19a219ba5ef1d777b690f86f65866fd6f4', '172.105.247.100', 1666844428, '__ci_last_regenerate|i:1666844428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11383ef6c94404faaf7456d89e2f0cf3fc1d37f6', '172.105.247.100', 1666844428, '__ci_last_regenerate|i:1666844428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a7eb22bd7e01db981861e65d22c5d99e3fd993f', '116.204.230.27', 1666846976, '__ci_last_regenerate|i:1666846976;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666782140\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8f6d091bab93b1295446904518d4953e2d6c6f', '116.204.230.27', 1666847466, '__ci_last_regenerate|i:1666847466;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666782140\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"qty9r3PFlRnL0f28KdBD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a42bcb5eb9a9b3cda90fcee01dfbc5a0346c838', '37.111.217.59', 1666852582, '__ci_last_regenerate|i:1666852582;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666789810\";last_ip|s:14:\"37.111.218.244\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666847409;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1327461e1fe3d7f5393116c3173e2fa2ebdc84d', '116.204.230.27', 1666847883, '__ci_last_regenerate|i:1666847883;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666782140\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"qty9r3PFlRnL0f28KdBD\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd39cf4dbd6048bc75c49dbb91a5a4df98815f2', '116.204.230.27', 1666847934, '__ci_last_regenerate|i:1666847883;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666782140\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"jAohG6DyUpgMZ1SvwK3E\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f1ffafceae351f8641c58315446771354d7789', '172.105.247.100', 1666848621, '__ci_last_regenerate|i:1666848621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9b787680137cb905a969b0f641b4832b779a1e', '172.105.247.100', 1666848621, '__ci_last_regenerate|i:1666848621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ee13357ba351c4f3f04dc2fb92f184c7a886d5', '172.105.247.100', 1666848621, '__ci_last_regenerate|i:1666848621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad01c29fc5ec497cd3f7e0f2a1a5137d6a0147e', '172.105.247.100', 1666848622, '__ci_last_regenerate|i:1666848622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e4c11f89b5da0db61bd899258d7e3a078301a2', '172.105.247.100', 1666848622, '__ci_last_regenerate|i:1666848622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd5b4526f2d28df658925b1dbf1cba9d644b74b', '172.105.247.100', 1666848622, '__ci_last_regenerate|i:1666848622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37590cf3eda2eebb262956157e017967746c719', '172.105.247.100', 1666848622, '__ci_last_regenerate|i:1666848622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9cc8afb6a44c57d4160d234f72b122e1300751', '172.105.247.100', 1666848623, '__ci_last_regenerate|i:1666848623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a059dab9df45975c24b41924f1541a489fb6ebe3', '172.105.247.100', 1666848623, '__ci_last_regenerate|i:1666848623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a356a619650d742a9b88907203a5d28ac27ebc', '172.105.247.100', 1666848623, '__ci_last_regenerate|i:1666848623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b392e18881c4fdc4ce23859e38b7674be30e37c', '172.105.247.100', 1666848624, '__ci_last_regenerate|i:1666848624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80cdce733136de86613795175d1312dc9ac94f1', '172.105.247.100', 1666848624, '__ci_last_regenerate|i:1666848624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f7e718b607c26cb6c9ebe9679a27dd1fbc210a', '172.105.247.100', 1666848624, '__ci_last_regenerate|i:1666848624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfbe64fbb75f40045a543920c18498943396146d', '172.105.247.100', 1666848624, '__ci_last_regenerate|i:1666848624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946384aaaa2702205b1e4f0928a7f789ec279cd8', '172.105.247.100', 1666848625, '__ci_last_regenerate|i:1666848625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('137a2783dbe78bd2aa23c5197e3bc52beb7e64f7', '172.105.247.100', 1666848625, '__ci_last_regenerate|i:1666848625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ceb4ef29d14968667f0596a5f6816239a8722c9', '37.111.217.59', 1666852591, '__ci_last_regenerate|i:1666852582;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666789810\";last_ip|s:14:\"37.111.218.244\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666852591;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fff985566478157b5c6c7c78d2ca15b43720291', '172.105.247.100', 1666852822, '__ci_last_regenerate|i:1666852822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124ba8ca29744d40b24644b83d0cdec76ae5589d', '172.105.247.100', 1666852824, '__ci_last_regenerate|i:1666852824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e47b200690daea19c0276f1b5375d9eec290c5', '172.105.247.100', 1666852824, '__ci_last_regenerate|i:1666852824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ece79a8549a889e7f67d89ea9354899d480984', '172.105.247.100', 1666852824, '__ci_last_regenerate|i:1666852824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513f779e28e91ce0d5b4e1a5b0529ebf8fcdd286', '172.105.247.100', 1666852824, '__ci_last_regenerate|i:1666852824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d377e3f1bb578a13729531f6b3708996864356f', '172.105.247.100', 1666852825, '__ci_last_regenerate|i:1666852825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4187f83c0c976bfd3e96b4e5149c530f74553bf7', '172.105.247.100', 1666852825, '__ci_last_regenerate|i:1666852825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ca8a9d6bfa25d7f5fad792c19fb52cb4c473a9', '172.105.247.100', 1666852825, '__ci_last_regenerate|i:1666852825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1dd62e224f979afc9eea23916bb0fd80d9661de', '172.105.247.100', 1666852825, '__ci_last_regenerate|i:1666852825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9237fd8f921a758b445a567b4c538e6653f7cc07', '172.105.247.100', 1666852825, '__ci_last_regenerate|i:1666852825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bdbc037f939e522b0aa7657d8d8808d0c30d0bb', '172.105.247.100', 1666852826, '__ci_last_regenerate|i:1666852826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561a9c7707d735197b7ad6901a7eec8ea3362431', '172.105.247.100', 1666852826, '__ci_last_regenerate|i:1666852826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5caccdf3402e8d845bbde660534e9826c30ee552', '172.105.247.100', 1666852826, '__ci_last_regenerate|i:1666852826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0231d605386d9835be4b2e02e52ccad5198ed8d4', '172.105.247.100', 1666852826, '__ci_last_regenerate|i:1666852826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e2da03feddaf8ef56e2ea59a8e74d7877442a6', '172.105.247.100', 1666852827, '__ci_last_regenerate|i:1666852827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67346e92c22458d251d4644e4850201dd8eea519', '172.105.247.100', 1666852827, '__ci_last_regenerate|i:1666852827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a9f7fbf917e817d37508ba60781454b41bff44', '172.105.247.100', 1666857022, '__ci_last_regenerate|i:1666857022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e56585b57a9e778e8ef7bbaa8fbd2867c8ce7a8', '172.105.247.100', 1666857022, '__ci_last_regenerate|i:1666857022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7bf8a2ecb886a592f0bd4e182263bf94a259290', '172.105.247.100', 1666857023, '__ci_last_regenerate|i:1666857023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8a56f3db1cd0a8c64d82b35eb0f1721a455682', '172.105.247.100', 1666857023, '__ci_last_regenerate|i:1666857023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2656191e74ef691fb48a7db5064db0c3d0f0f82a', '172.105.247.100', 1666857023, '__ci_last_regenerate|i:1666857023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f94e4d8ab960e08510399bce77bf51f9ca9546b', '172.105.247.100', 1666857024, '__ci_last_regenerate|i:1666857024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6559b3e59f84893f96adfffd20c2977fdbefcd5', '172.105.247.100', 1666857024, '__ci_last_regenerate|i:1666857024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d86d57369d22583fb8fb72b62efb598e5f541b', '172.105.247.100', 1666857024, '__ci_last_regenerate|i:1666857024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4eeaa5d43c6dbe7e2f53abe57b19f613bcbd024', '172.105.247.100', 1666857024, '__ci_last_regenerate|i:1666857024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ba088195cccff6fda841c1f401e31416e5a4be', '172.105.247.100', 1666857025, '__ci_last_regenerate|i:1666857025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b508f4303fcf3e0d1476233fe1529ef0203574', '172.105.247.100', 1666857025, '__ci_last_regenerate|i:1666857025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a0b80560c09e48e590e7cb38dfe3573b1857e2', '172.105.247.100', 1666857026, '__ci_last_regenerate|i:1666857026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38171377d013f15dc34a4b01de3ec518c8e85124', '172.105.247.100', 1666857026, '__ci_last_regenerate|i:1666857026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018e9165254001cdbf4a305e55137dd54dd239fb', '172.105.247.100', 1666857026, '__ci_last_regenerate|i:1666857026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1413e892eee4251bd9307f7f1510a7a81b733fd0', '172.105.247.100', 1666857026, '__ci_last_regenerate|i:1666857026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eca4384559a856f531f07ed3ecc3e4f39f91434', '172.105.247.100', 1666857027, '__ci_last_regenerate|i:1666857027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad2676a47129a09fc7e211037e8f999ab863911', '172.105.247.100', 1666861223, '__ci_last_regenerate|i:1666861223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34d7861975d98a9e8bcd39911c69598215a4c135', '172.105.247.100', 1666861223, '__ci_last_regenerate|i:1666861223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c528c94a809af6afd3b6909fffaac04bc6f708b6', '172.105.247.100', 1666861223, '__ci_last_regenerate|i:1666861223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac96939f9fb46fc0022913af98fea147943e8e21', '172.105.247.100', 1666861223, '__ci_last_regenerate|i:1666861223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece9fe70b230a4e8260d480a70dd50d20b3ab77d', '172.105.247.100', 1666861224, '__ci_last_regenerate|i:1666861223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22d4655ba34a07a95197b6a0276434558499605', '172.105.247.100', 1666861224, '__ci_last_regenerate|i:1666861224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbfc5f554179ff6470ccdbcd701adfecc829be99', '172.105.247.100', 1666861224, '__ci_last_regenerate|i:1666861224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba7e9233c15d881af9a7175236901a60bdab0b5', '172.105.247.100', 1666861224, '__ci_last_regenerate|i:1666861224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b57bce61728c0d3afeda30c361f25486d212177', '172.105.247.100', 1666861224, '__ci_last_regenerate|i:1666861224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b775a5640fca1f567b9544272af64290000c24', '172.105.247.100', 1666861224, '__ci_last_regenerate|i:1666861224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a372f65497fc0d90a8460fe9f94b5de63a0fbef', '172.105.247.100', 1666861225, '__ci_last_regenerate|i:1666861225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82fdbce37209c98e4fc51056366d2a2dfd3d89ae', '172.105.247.100', 1666861225, '__ci_last_regenerate|i:1666861225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927e3e2b0a21563bacc2a29241d43526053851f0', '172.105.247.100', 1666861225, '__ci_last_regenerate|i:1666861225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f222896d93fcefed1fe0abd1a5ae250d04469c0', '172.105.247.100', 1666861225, '__ci_last_regenerate|i:1666861225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0afbf210eda2043d64cfa5720327bbceaaa6f01a', '172.105.247.100', 1666861225, '__ci_last_regenerate|i:1666861225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82019611be2ca865dd3d3e4ba611210fac7fad34', '172.105.247.100', 1666861226, '__ci_last_regenerate|i:1666861226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9eb8ef61eb313741c60e1c573ca0fdb6981b8b', '37.111.217.59', 1666862981, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666862981;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666847375\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666862596;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2890a08e216e94e579e1fdaa666690905f0c9e3d', '37.111.217.59', 1666863340, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666863340;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666847375\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666863127;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c9b0b5932499e4fb5a527f64c0cdab446c6810', '37.111.217.59', 1666863345, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1666863340;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666847375\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666863340;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0be084e18dce8a5175de1e821adb61f8e64a9d', '172.105.247.100', 1666865420, '__ci_last_regenerate|i:1666865420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559a2c362fa864f43537bf945791c9f6b12b1a71', '172.105.247.100', 1666865420, '__ci_last_regenerate|i:1666865420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64adc200309521bb3ed0c5097bd8af3ad1e142c8', '172.105.247.100', 1666865420, '__ci_last_regenerate|i:1666865420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632bbd1b6bc6c2ad8024cb764c119c75ba53c577', '172.105.247.100', 1666865420, '__ci_last_regenerate|i:1666865420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91af5c93a82abf7cfb907e378592f256e6ae926', '172.105.247.100', 1666865420, '__ci_last_regenerate|i:1666865420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef96fc09a166af85020c751cbd7cebbf47469e5', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e95a5b2b340656e1719b7329efc03a920e47d23', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e9c24365a9f1317e770b8e66bdc53265413884', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a7d37bbbf9ca6807c7ed94630395abf4e81671', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa41a85f3f903de8edcf00b0fb8ea48b52867209', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bd775448b8473be16546f5d973da6a514573fa3', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('473b31d0e9bb40ce8b4206447ac6cf6f244d93d3', '172.105.247.100', 1666865421, '__ci_last_regenerate|i:1666865421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('746be524113d3f1e3961f5b8eefe483de6132516', '172.105.247.100', 1666865422, '__ci_last_regenerate|i:1666865422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b609263434889f6b857749c49fe90f485e1a93', '172.105.247.100', 1666865422, '__ci_last_regenerate|i:1666865422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7246a6889be814de5a2a2ad435723af49433c3a', '172.105.247.100', 1666865422, '__ci_last_regenerate|i:1666865422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90bc0d01a36461d53fbfe83df1274b434f52eb5', '172.105.247.100', 1666865422, '__ci_last_regenerate|i:1666865422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfea369910f4671a14c69caf4ef413c2086317e', '172.105.247.100', 1666869623, '__ci_last_regenerate|i:1666869623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8c95e05b118957ba200ebad17e78069653e184', '172.105.247.100', 1666869623, '__ci_last_regenerate|i:1666869623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec12deb3e5a15d18df5f5f4f8e1653b9b5640ce8', '172.105.247.100', 1666869623, '__ci_last_regenerate|i:1666869623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536180355b28eb63083caa28896376372d38b63f', '172.105.247.100', 1666869623, '__ci_last_regenerate|i:1666869623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0bc68648fbc8ef84ef2dcbd78058160f0f34f8', '172.105.247.100', 1666869624, '__ci_last_regenerate|i:1666869624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16ee25a770709de4d4c7f813bd023075331fe42', '172.105.247.100', 1666869624, '__ci_last_regenerate|i:1666869624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66b2673b56519f11c468525ce44b0b2e26c2389', '172.105.247.100', 1666869624, '__ci_last_regenerate|i:1666869624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624cc4f55c0a8e1dbe8bd922b1ed065f81e89d6f', '172.105.247.100', 1666869624, '__ci_last_regenerate|i:1666869624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2705fd5f28f288da931bb3a9838c556fcd2e543d', '172.105.247.100', 1666869624, '__ci_last_regenerate|i:1666869624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9b89d5cbd504e2b1b18ae40e14fc6bd5fdb70a', '172.105.247.100', 1666869625, '__ci_last_regenerate|i:1666869624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705b8dd4d3dc0d9f877fafe6e09881d61ae04c01', '172.105.247.100', 1666869625, '__ci_last_regenerate|i:1666869625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11df3bbe83d33a8a412698090b9cb2af3a04b91e', '172.105.247.100', 1666869625, '__ci_last_regenerate|i:1666869625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1421457467e55c4a4cef46426f3beca6033004bd', '172.105.247.100', 1666869625, '__ci_last_regenerate|i:1666869625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c485b0d63a7dc11a8a7c57bbfcac6239a0531f9c', '172.105.247.100', 1666869625, '__ci_last_regenerate|i:1666869625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d029fa25442ee167dc7d57007603412863ada542', '172.105.247.100', 1666869626, '__ci_last_regenerate|i:1666869626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b9409076035ba046ad1dbced816f5acb238b55', '172.105.247.100', 1666869626, '__ci_last_regenerate|i:1666869626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4de36fe87a47ae5f6d34a5b3c701fdf354db98a', '37.111.217.59', 1666875520, '__ci_last_regenerate|i:1666875520;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666875511;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a806019ea4c13d6c6b38389fc3e47234ac5f0d', '172.105.247.100', 1666873821, '__ci_last_regenerate|i:1666873821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea8d9c5e442e9b83aa64f7dd0b4a17e048049ae', '172.105.247.100', 1666873822, '__ci_last_regenerate|i:1666873822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df47ac7da57b83e88d79c014784d704c395f776', '172.105.247.100', 1666873822, '__ci_last_regenerate|i:1666873822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('203b2af654ba4837809ee6d1ac73e51362684fa3', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631040b14f89a968cb05e6f4ba4960cd0e6060a1', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26be8520cdc866492e22d94df196cdbcca5e71ea', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d04ebf7d961e93b303f4c1f7460e9e007e05622', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7010533d25cfe642990f0fc6b195ab019cbe04eb', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b887062cd3f644c182f5bd7007486c855b9c9f34', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9757aa79277d00352b9092fb5e02acc8bda5d505', '172.105.247.100', 1666873823, '__ci_last_regenerate|i:1666873823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da9f1086af8f5191adb8099b178a79a18876cd2', '172.105.247.100', 1666873824, '__ci_last_regenerate|i:1666873823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e16399f5a969fca12b0ba8a386a6bab4a0b236f', '172.105.247.100', 1666873824, '__ci_last_regenerate|i:1666873824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2156d738030829327d8fb8bbd33b0556f756cf0e', '172.105.247.100', 1666873824, '__ci_last_regenerate|i:1666873824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1289c8a7b8aee341993e20393e43fd36e3b41736', '172.105.247.100', 1666873824, '__ci_last_regenerate|i:1666873824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f5dd1a1c3edd964cff20b0c8918b9fb2a8a0ce', '172.105.247.100', 1666873824, '__ci_last_regenerate|i:1666873824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22f61248c73c3b5de9e4d45df5320c33608997b0', '172.105.247.100', 1666873825, '__ci_last_regenerate|i:1666873825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8ad0402b960fb7d0249286a396c161f69aa6dd', '37.111.217.59', 1666875882, '__ci_last_regenerate|i:1666875882;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666875521;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e92df5f28b51b8aafd39587fe3a0593ea6ca20', '116.204.230.27', 1666875800, '__ci_last_regenerate|i:1666875799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('673eaa57bb7d9dbf93b25c8146ef17530868f8df', '37.111.217.59', 1666877015, '__ci_last_regenerate|i:1666877015;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666876963;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd0a6f0d3c1dbfa9467e16d0a7abc02c276395d', '37.111.217.59', 1666877609, '__ci_last_regenerate|i:1666877609;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666877016;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65cfa6816e5ed0706c56409b0117a561ab4c01e5', '37.111.217.59', 1666881535, '__ci_last_regenerate|i:1666881535;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666881516;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c96ee600e055854220e010d2a2fd81157b3679e', '172.105.247.100', 1666878022, '__ci_last_regenerate|i:1666878022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('951ab6d1e499fcb57084c4023fdd5bc0d2d3e927', '172.105.247.100', 1666878022, '__ci_last_regenerate|i:1666878022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f6e21562f1f44890a57d72d77506fdbe2d50f64', '172.105.247.100', 1666878022, '__ci_last_regenerate|i:1666878022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb7ef0d8d3716d00ebee1e201af79c052500e32', '172.105.247.100', 1666878023, '__ci_last_regenerate|i:1666878023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7271d2322e91651cfd92cff14356254f16345a3', '172.105.247.100', 1666878023, '__ci_last_regenerate|i:1666878023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb6594c5bf7b66bb2fbc894dd23233de7b4c407f', '172.105.247.100', 1666878023, '__ci_last_regenerate|i:1666878023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56f4be0302aa1d2c82e62a8278f5ca32aadd8fb', '172.105.247.100', 1666878024, '__ci_last_regenerate|i:1666878024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc5a7b4343186ebd80ffc8a7980540f0885dd12', '172.105.247.100', 1666878024, '__ci_last_regenerate|i:1666878024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d00f75a5f7cfbc869c275adeae09615e26c4563', '172.105.247.100', 1666878024, '__ci_last_regenerate|i:1666878024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c0d1ff9f462d8417de300b4ea4f327f4334fbd', '172.105.247.100', 1666878024, '__ci_last_regenerate|i:1666878024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014120eb15097262e05f9976e5ce4be86726146a', '172.105.247.100', 1666878024, '__ci_last_regenerate|i:1666878024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5c2901ebc0a23490342013682dba98b00208ea', '172.105.247.100', 1666878025, '__ci_last_regenerate|i:1666878025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84958dfbe3bcf97acbaf5b755ba3914493ac5908', '172.105.247.100', 1666878025, '__ci_last_regenerate|i:1666878025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb92daee9831d3e78077166e86fd1a30dea5e95d', '172.105.247.100', 1666878025, '__ci_last_regenerate|i:1666878025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0556eabddf7bd923f108fe5914ce9a5645abbd47', '172.105.247.100', 1666878026, '__ci_last_regenerate|i:1666878026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98603aad66cd7b9d67f33388490a20af818392a', '172.105.247.100', 1666878026, '__ci_last_regenerate|i:1666878026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe610775f059bd23da93f4bdc7032381bbf23bae', '37.111.217.59', 1666882033, '__ci_last_regenerate|i:1666882033;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666881536;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44b0bd1f7eb61b2860f36c393278ce2a2aa71d1', '37.111.217.59', 1666882433, '__ci_last_regenerate|i:1666882433;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666882426;register_id|s:3:\"230\";cash_in_hand|s:8:\"610.0000\";register_open_time|s:19:\"2022-10-26 20:01:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2808692de2e24fdf6e0a145ca9a0f22d692e4f', '172.105.247.100', 1666882221, '__ci_last_regenerate|i:1666882221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b7316972592866266ce6fd24cc0416adcfbd49', '172.105.247.100', 1666882222, '__ci_last_regenerate|i:1666882222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586cfbd6688ffd02e64031c04476d9c42a6c8524', '172.105.247.100', 1666882223, '__ci_last_regenerate|i:1666882222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc1e192c667eeea6bb0acdac90115945c001989', '172.105.247.100', 1666882223, '__ci_last_regenerate|i:1666882223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e58832a84f9d63d3a07b4f5cc557f346005f13a', '172.105.247.100', 1666882223, '__ci_last_regenerate|i:1666882223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8d4ed9c08cd000464f312404a945501c3d6896', '172.105.247.100', 1666882223, '__ci_last_regenerate|i:1666882223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e402a4c0773c35d2a1dd9d3d8bdc468b72d48a', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1994f51a9744cf13c4c5b3d4d5e4c8bd6ea5708b', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fb1d9f51f8ada5970cd6a28ed5206da1cd3a829', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d72fd87a92402ba894a3d9b8575065c2d0c173', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a977e32752344bbae7332336140cefdb271d5efc', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ef4cd0d393ef6ff979425a2712a469af2bb2d0', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f8cfd3281abd3d426cb595e279727ac6621f1a', '172.105.247.100', 1666882224, '__ci_last_regenerate|i:1666882224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748fda090fc9164f2d79e7b0b62be562eab6c4df', '172.105.247.100', 1666882225, '__ci_last_regenerate|i:1666882225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a5672e80e5650a05bfbe73b3065bce4e521560', '172.105.247.100', 1666882225, '__ci_last_regenerate|i:1666882225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3f67b32f70cbdbca46004d79ff5242867c514c', '172.105.247.100', 1666882225, '__ci_last_regenerate|i:1666882225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bcf3112cb16b00f7809e78167d30e4073f7215d', '37.111.217.59', 1666882459, '__ci_last_regenerate|i:1666882433;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666862480\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666882459;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694459a2da62247e793e8d01420aeb370e201c37', '172.105.247.100', 1666886422, '__ci_last_regenerate|i:1666886422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f286120b8f64c575286e3a6f64ac9fd73da103c1', '172.105.247.100', 1666886424, '__ci_last_regenerate|i:1666886424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c244480682590ce64910629151dddd59d1c322f', '172.105.247.100', 1666886425, '__ci_last_regenerate|i:1666886425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3492ebb414dfdb36ac1bdb1fc55dc504b41a0dcc', '172.105.247.100', 1666886425, '__ci_last_regenerate|i:1666886425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0097be41a1d83d33959e342dbb8d353fa7e8efb', '172.105.247.100', 1666886425, '__ci_last_regenerate|i:1666886425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8278ad6094f6da494bbf3fcb514ecc5cc840d249', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441b784fdd086367b21c490e3de62399cf8b8ee5', '172.105.247.100', 1666886425, '__ci_last_regenerate|i:1666886425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbadc2ffd105acf87dbb71bef35d919d878086f', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d07a1371f34c498e5da0bf8d80f8dab764e78cb', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40aba81e567902c9a5d1254606967657d2698405', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3eccfa9f69a688651f2337a598279bd464e5024', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da1d473477819303fb56e651e0bab530f552266a', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e06dada538d84ff4bf1581e5f7bfa18b4c36a1', '172.105.247.100', 1666886426, '__ci_last_regenerate|i:1666886426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a006499936f30a3676a730015fb5756afbceeb33', '172.105.247.100', 1666886427, '__ci_last_regenerate|i:1666886426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e448154bab3e497333764e75b64789c56d730e', '172.105.247.100', 1666886427, '__ci_last_regenerate|i:1666886427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2f99078f6fdbae9ff1d3a9070cf019ee84f920', '172.105.247.100', 1666886427, '__ci_last_regenerate|i:1666886427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18538c9f413690859230694b926c5057b8010eb5', '172.105.247.100', 1666890623, '__ci_last_regenerate|i:1666890623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7d59d9e3f49351b32c9e8d5941c9d52f92fcc2', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac02802767b750699d80e1a38980ce5bf154ad5', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390fbcb2982695d702b3d82e88cf7819e78e611d', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98cf0426059be81b152faa236c9984670382974d', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34a91228b6903419997fdccd5d05347a38e0f21', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a63c29f7c9d0ec789895a86208c0631eafd7a94', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3caf6eebb8cced447e6734a05aae7d36ba35e520', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0437d8bccb4f325f566bf5fb1061129159f42a42', '172.105.247.100', 1666890628, '__ci_last_regenerate|i:1666890628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07da9c5379bd8f35ce0d1213e2c4fc2137e1ffd', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b469d68dc45e372f20fd368ae8d2254945b4c238', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cdbc65f5513901cab45c6ebbce1a5d8bd3c99c3', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e44e9b8270934f9ce1cb5fc8e047c5b8997d9c3', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d058a9d934576aa01f96a0dd211729ec1d5100', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3a986fd8086f33ceecddc18992d614b8feba6c', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac403d7550a6c974cef25b406f312cf7426dec4', '172.105.247.100', 1666890629, '__ci_last_regenerate|i:1666890629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0e3b0bc9f601d53b0fcfa5f24819a70342fec7', '172.105.247.100', 1666894823, '__ci_last_regenerate|i:1666894823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fbab536ae30cc194890f8fd8bd66e2a22439bf7', '172.105.247.100', 1666894823, '__ci_last_regenerate|i:1666894823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b005edf3e0735ff6adc05d900b71cda6f4f195d4', '172.105.247.100', 1666894823, '__ci_last_regenerate|i:1666894823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2232c07ce85770521d05f8c6bd57b81cb26e52ae', '172.105.247.100', 1666894823, '__ci_last_regenerate|i:1666894823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f7b446c4cd9909749026b449a97b797ebb9013b', '172.105.247.100', 1666894824, '__ci_last_regenerate|i:1666894824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04af5c5686cb9d7b12e3b0719fdda6e8112a88d5', '172.105.247.100', 1666894824, '__ci_last_regenerate|i:1666894824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ef9ce006681a671926f140050ef0afcce21cd2', '172.105.247.100', 1666894824, '__ci_last_regenerate|i:1666894824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958e45fb550ee000ab3940ee385c52153b086b79', '172.105.247.100', 1666894824, '__ci_last_regenerate|i:1666894824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a2cf77e7ec96a26607fc32aa32b0a6899ce689', '172.105.247.100', 1666894824, '__ci_last_regenerate|i:1666894824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbcdc97f9267f63d8e8f977f8e4d7d54961a3ad5', '172.105.247.100', 1666894825, '__ci_last_regenerate|i:1666894825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d02fab6954a0228fc20ee1a1d1a54590d0c2eaf', '172.105.247.100', 1666894825, '__ci_last_regenerate|i:1666894825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b216aec800a04c5abd551c9fd5dc5cb91390a15', '172.105.247.100', 1666894825, '__ci_last_regenerate|i:1666894825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beacb9936a8b678fba3f33ca0caa9221108e02f8', '172.105.247.100', 1666894825, '__ci_last_regenerate|i:1666894825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3231ede33e999d5ff7a5146c34c69583b142ed21', '172.105.247.100', 1666894826, '__ci_last_regenerate|i:1666894826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e754bfb27980b12284a28cc374faf58e5b135c9a', '172.105.247.100', 1666894826, '__ci_last_regenerate|i:1666894826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d523fdb2f78ddb55f95939b9d7e14134c7ccab', '172.105.247.100', 1666894826, '__ci_last_regenerate|i:1666894826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba537b1030a93bc562c3a0957d3ad2dccd1f43c', '172.105.247.100', 1666899020, '__ci_last_regenerate|i:1666899020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54188b336466a059720fa203b2ca74decfb80c8f', '172.105.247.100', 1666899021, '__ci_last_regenerate|i:1666899021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f83c3ef84d4c6442609238cfed70ae25839a29f', '172.105.247.100', 1666899021, '__ci_last_regenerate|i:1666899021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01fd73c13d4e358445df765589e795ad35b26fce', '172.105.247.100', 1666899021, '__ci_last_regenerate|i:1666899021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a749bd6e639826ba761e34108ca1607c53dc3f11', '172.105.247.100', 1666899021, '__ci_last_regenerate|i:1666899021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e7b8e2a4861db82dc180376dc5f081aa6b11a16', '172.105.247.100', 1666899022, '__ci_last_regenerate|i:1666899022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532730c21a025e6d5d9a5350bc6721158354e39c', '172.105.247.100', 1666899022, '__ci_last_regenerate|i:1666899022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31dc1b074c507085d42b532b254420180cee7d9c', '172.105.247.100', 1666899022, '__ci_last_regenerate|i:1666899022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ecf16db5728b805a44d7c67bf9ca190b609654f', '172.105.247.100', 1666899022, '__ci_last_regenerate|i:1666899022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8e6e0f4f7cb89c053c23bde8332bd5ea4ddae3', '172.105.247.100', 1666899023, '__ci_last_regenerate|i:1666899023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c7d5342cb308e147ad2bef342e3c65f8fd3e16', '172.105.247.100', 1666899023, '__ci_last_regenerate|i:1666899023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26042a94a655c66c324fc181bd63c0188f844698', '172.105.247.100', 1666899023, '__ci_last_regenerate|i:1666899023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21da7643d68ff769e1fec2a61c48850e409039d5', '172.105.247.100', 1666899023, '__ci_last_regenerate|i:1666899023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634f2b8cca7f50262c48f3220b7b0db7346f5b2c', '172.105.247.100', 1666899024, '__ci_last_regenerate|i:1666899024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4617107ae3ca8e8bc3b6cfe1b247d1520de9a3e', '172.105.247.100', 1666899024, '__ci_last_regenerate|i:1666899024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccfe104273aae6495329b29227eb82fd2e7f7d7d', '172.105.247.100', 1666899024, '__ci_last_regenerate|i:1666899024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f789b8134d5332e249d01cb48e6c0efa8801163', '172.105.247.100', 1666903223, '__ci_last_regenerate|i:1666903223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ec0c02e277e3e1a4f96ee5136d351d44517fcf', '172.105.247.100', 1666903224, '__ci_last_regenerate|i:1666903224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed48e8316a22208244e59592b40366694e9dbfd', '172.105.247.100', 1666903226, '__ci_last_regenerate|i:1666903226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321f6d9e219f5f06e371badfc9af3f55b3b54f29', '172.105.247.100', 1666903226, '__ci_last_regenerate|i:1666903226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74394c2e88a2bc22d03424372c64128511c32866', '172.105.247.100', 1666903226, '__ci_last_regenerate|i:1666903226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3dc74caf03e75835c35cfa98b901a64f82ccff', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8696bc83dd8ca6d84d5e712d113e5bee7ee9377f', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6812d5f334c23e235f807546c85a545e4e7b19', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7968fc792f84579eef5c2cc6d16c48ac8d659e1c', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06cac99313807e3ef0562aafc62aeb8e2d3d0b6d', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c07cf055a24440f1252b4e5a8d07b4a1d85d9ba8', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad0e4fb93a6d3eaade531dacd230cec210dcb595', '172.105.247.100', 1666903227, '__ci_last_regenerate|i:1666903227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d0f11a670dc633d80975808221b79ad4ef61a9', '172.105.247.100', 1666903228, '__ci_last_regenerate|i:1666903228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ed49221179823d4bfbbc10a3d9ed78a686825a', '172.105.247.100', 1666903228, '__ci_last_regenerate|i:1666903228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05286203b2b3b7aa6fc73eecb6cddcc537107660', '172.105.247.100', 1666903228, '__ci_last_regenerate|i:1666903228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a064d7eea5713eaf455d335ede76a6ff8234c8b6', '172.105.247.100', 1666903229, '__ci_last_regenerate|i:1666903228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8364d614eb5be9348479d13a0b5750d855279d', '172.105.247.100', 1666907422, '__ci_last_regenerate|i:1666907422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15edb2626bc4a9159ac9c30249a771cc90f14181', '172.105.247.100', 1666907422, '__ci_last_regenerate|i:1666907422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260b764642f01ae059593978b3fc31900463babe', '172.105.247.100', 1666907422, '__ci_last_regenerate|i:1666907422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4bcb7ca7b3e708978bb7caa3b208aa72329ab0', '172.105.247.100', 1666907423, '__ci_last_regenerate|i:1666907422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfe538ad0b583cee8dab1f2e4692fca64bd3df1', '172.105.247.100', 1666907423, '__ci_last_regenerate|i:1666907423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d592e52b4c99dfa4ce777a3828c8485b6df7210', '172.105.247.100', 1666907423, '__ci_last_regenerate|i:1666907423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477aaca029a9d9301e0a0283152ad6f141f9d632', '172.105.247.100', 1666907423, '__ci_last_regenerate|i:1666907423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0fc2d120b3acd8892a0113ff37a0195432b238', '172.105.247.100', 1666907424, '__ci_last_regenerate|i:1666907424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13f1e832e1c993af3d7ea36c52f7f5a6eefa4828', '172.105.247.100', 1666907424, '__ci_last_regenerate|i:1666907424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91217785b98ebf4037adc27e1e80544729a1cb4b', '172.105.247.100', 1666907424, '__ci_last_regenerate|i:1666907424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae590fa88da36cd3544ef84730d501f533b973ec', '172.105.247.100', 1666907424, '__ci_last_regenerate|i:1666907424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93c41fa94be8dedcd5b3b4f619e4bd746b65debb', '172.105.247.100', 1666907425, '__ci_last_regenerate|i:1666907424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98e16f7edb3cd82a2db9640ffab0fa403b45bb6', '172.105.247.100', 1666907425, '__ci_last_regenerate|i:1666907425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6be8b6eeee6a16e0d1eb4582782cced361b5a6', '172.105.247.100', 1666907425, '__ci_last_regenerate|i:1666907425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8a057ec8bf7159c6a81a6f7c066484571430e2', '172.105.247.100', 1666907425, '__ci_last_regenerate|i:1666907425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3522ac0c71704158236e7e7ead02d1966e2bfe2', '172.105.247.100', 1666907426, '__ci_last_regenerate|i:1666907426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f592f333b78e1990ffb10adf71e3b8179a6cdb', '198.235.24.37', 1666909726, '__ci_last_regenerate|i:1666909726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718f8237ccdb3f0c04b6c273a8102679d46ff871', '172.105.247.100', 1666911623, '__ci_last_regenerate|i:1666911623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ec17e0d0960c647b16ab1973da2df5668f0484', '172.105.247.100', 1666911623, '__ci_last_regenerate|i:1666911623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a585a040731acc38c7c85f35b011cfea7cc9de0', '172.105.247.100', 1666911623, '__ci_last_regenerate|i:1666911623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e57306dd664985e5b44c4eb6784c661c8e7229', '172.105.247.100', 1666911623, '__ci_last_regenerate|i:1666911623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a379cd65683c2e3960ce9daaf4514ffea24ac2', '172.105.247.100', 1666911624, '__ci_last_regenerate|i:1666911623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c7c34e0a793a0104e248942c4d0ba36a6e1e54', '172.105.247.100', 1666911624, '__ci_last_regenerate|i:1666911624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050540876c2da85464593e4d0ac510dc595b8663', '172.105.247.100', 1666911624, '__ci_last_regenerate|i:1666911624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac9d7a6f650a433aaf4fc8140ae282ba1f3c0ad', '172.105.247.100', 1666911624, '__ci_last_regenerate|i:1666911624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86dd5d03cb2a6b73306a22d3246ad7380b9f85d9', '172.105.247.100', 1666911625, '__ci_last_regenerate|i:1666911625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90be441ccf1cfc3cbe41bdd23b908ed0cc1e94ca', '172.105.247.100', 1666911625, '__ci_last_regenerate|i:1666911625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63083bb90ec98a33f6bd41848684c2b290a8bf28', '172.105.247.100', 1666911625, '__ci_last_regenerate|i:1666911625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8148ba97d9efb915e3789eee4eba8dcde87249c5', '172.105.247.100', 1666911625, '__ci_last_regenerate|i:1666911625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20fd502a8fca205949aa0cbb61a24310dd9678b', '172.105.247.100', 1666911626, '__ci_last_regenerate|i:1666911626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dfe01c605bf4c4a29f15f9ea516bcb1367830ac', '172.105.247.100', 1666911626, '__ci_last_regenerate|i:1666911626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd31f5fa3d92650b651abee87ba10d13c7d2f64', '172.105.247.100', 1666911626, '__ci_last_regenerate|i:1666911626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a71866f65137ae35e9e925566b337196ba19ba1', '172.105.247.100', 1666911627, '__ci_last_regenerate|i:1666911626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994863fbc35580e35c06397e0e614660ef52fc25', '172.105.247.100', 1666915821, '__ci_last_regenerate|i:1666915821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5a187b84e19b2fb9c3e2bd1acac7558682f778', '172.105.247.100', 1666915821, '__ci_last_regenerate|i:1666915821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048bb4c716450ede048943102c14a8fcb90703b6', '172.105.247.100', 1666915822, '__ci_last_regenerate|i:1666915822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a82638697b2003b8ef0e2161b7f644f4317dd91', '172.105.247.100', 1666915822, '__ci_last_regenerate|i:1666915822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be1a589dbbd500e630fd04c9caaa7bd1979168a', '172.105.247.100', 1666915822, '__ci_last_regenerate|i:1666915822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bda676c65ca5a17e81a22b00400bd4b49090aeb0', '172.105.247.100', 1666915822, '__ci_last_regenerate|i:1666915822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517af65746765bf45f3b57fb5558caabe36e307f', '172.105.247.100', 1666915823, '__ci_last_regenerate|i:1666915823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac94d74b6b653a38d0887d7ae1a75b3bedfe10e5', '172.105.247.100', 1666915823, '__ci_last_regenerate|i:1666915823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('280d10d6bb370d0e952e51bc6867ce39e7ab44ee', '172.105.247.100', 1666915824, '__ci_last_regenerate|i:1666915824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cbfc3b897abfb57d273d31c3bf610b5a60dc2db', '172.105.247.100', 1666915824, '__ci_last_regenerate|i:1666915824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f9a5a9b17853dbd829c333e1b8a449e2a89784', '172.105.247.100', 1666915824, '__ci_last_regenerate|i:1666915824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7bfcbc9e51f6ff04db6f8a7f4918a32f63d8cd', '172.105.247.100', 1666915825, '__ci_last_regenerate|i:1666915825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32a9e14a5e8a58591dde6022361c1bb80bd60200', '172.105.247.100', 1666915825, '__ci_last_regenerate|i:1666915825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4263a243abae7baa3e0dc9b166e602b14835ea', '172.105.247.100', 1666915825, '__ci_last_regenerate|i:1666915825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89786aea3ccdb71ad18c2838d9e19c7b09ba07e', '172.105.247.100', 1666915826, '__ci_last_regenerate|i:1666915826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15c1a7efb148856a5e05c8afb35a4c05a12f483', '172.105.247.100', 1666915826, '__ci_last_regenerate|i:1666915826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6efbc46e9e0ad0cd8c382b0233a66b4817a7e05a', '119.18.52.177', 1666916048, '__ci_last_regenerate|i:1666916048;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc5f895ed688816ce00ead6790de4263eae61c5', '119.18.52.177', 1666916049, '__ci_last_regenerate|i:1666916049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157c296a732a0d18d406c064bab473e71382904b', '119.18.52.177', 1666916050, '__ci_last_regenerate|i:1666916050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a54beadd11c0cf95780bdcedc59336ba238535', '119.18.52.177', 1666916051, '__ci_last_regenerate|i:1666916051;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3004ce3a2a8d48f387ccc2dbd2310ab41fb609', '172.105.247.100', 1666920023, '__ci_last_regenerate|i:1666920023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0a9aa9b57449e415cd26d0236296dad0fdb6146', '172.105.247.100', 1666920024, '__ci_last_regenerate|i:1666920024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2935c895ce482cbaf6dc8d52be11ac11d8c959', '172.105.247.100', 1666920025, '__ci_last_regenerate|i:1666920024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9030fba696e0a504a45088f2fae69544532cdc9e', '172.105.247.100', 1666920025, '__ci_last_regenerate|i:1666920025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d432320e91440f311bb643831ef16b9ac4767b6', '172.105.247.100', 1666920025, '__ci_last_regenerate|i:1666920025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6923683271b279db8c49e74eec8c64fd0494fb', '172.105.247.100', 1666920025, '__ci_last_regenerate|i:1666920025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adbe08944b672bc420c6d014bbef7d5f5b1bf03c', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('228767bf4920416b2495a8ac679c79256a5a0cfa', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc16fc75288086f725ba953a1853f91294ed43f2', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc31cece830bdd474c96b9703a579415b730fbc', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6297dd608580e65bd291148c4d70912d311b13', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d94b966a6867e78e237d82bed73fc12e315a58', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b313f50a4a213d442468dd6405b3592d7182a7', '172.105.247.100', 1666920026, '__ci_last_regenerate|i:1666920026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e3de11b410b95b49a5826766ad6074f89c291c', '172.105.247.100', 1666920027, '__ci_last_regenerate|i:1666920027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e811276a41703cf39a4b8dfc2d6c360f13583a', '172.105.247.100', 1666920027, '__ci_last_regenerate|i:1666920027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe4c7b2b5e07b2ffc47388c70a2979141fbdc5c', '172.105.247.100', 1666920027, '__ci_last_regenerate|i:1666920027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d7a190d9d6610ca04e272e6035324a68e2ffc2', '172.105.247.100', 1666924222, '__ci_last_regenerate|i:1666924222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae991a674f79f6a2b5d7821bb49d4b41e0705b6', '172.105.247.100', 1666924222, '__ci_last_regenerate|i:1666924222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be40daa28fb244f32e312e866aea0249281c0104', '172.105.247.100', 1666924222, '__ci_last_regenerate|i:1666924222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874b763cadb685d84574071fd31250bb0159365d', '172.105.247.100', 1666924223, '__ci_last_regenerate|i:1666924222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754dd15dbda112bbd24e0df914760cba3bf48388', '172.105.247.100', 1666924223, '__ci_last_regenerate|i:1666924223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58a1d746a43e3caa205a530a10bb94771775249', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f3d1ea43457ffd470c5ee0199b13de0e90cf07', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4251a1950c66cea99241a3b173ca0d7a99bc321e', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f62907fb096aacd7adb8923e013106d6e6a05bc6', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84a4e661012bf480a113174c8d9c87e06108e42', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc213ecbce6eef4467c9c02fc217455c71015669', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a60312cbdcfcff0c9976658f0aa11d948775bb', '172.105.247.100', 1666924228, '__ci_last_regenerate|i:1666924228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e31e9cde245d1afdf2095de0a2d87061546427a', '172.105.247.100', 1666924229, '__ci_last_regenerate|i:1666924229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5226e86387bafcf238eb877d0b7d1ec13ab3166a', '172.105.247.100', 1666924229, '__ci_last_regenerate|i:1666924229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd01f5e075a925b60426c7424c4b2cdc76985e4', '172.105.247.100', 1666924229, '__ci_last_regenerate|i:1666924229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399f4f0d92fa49df9a4d5014154d1c311d57306c', '172.105.247.100', 1666924229, '__ci_last_regenerate|i:1666924229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5bb6b13179068be5b956ea7a20b35325b733e7', '172.105.247.100', 1666928425, '__ci_last_regenerate|i:1666928425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352b57a3b5a198d414346abb9df85d80e12c48f6', '172.105.247.100', 1666928425, '__ci_last_regenerate|i:1666928425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a211068a6f1b229f69f6d75d15f2d052dd6fec5', '172.105.247.100', 1666928425, '__ci_last_regenerate|i:1666928425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58dde4f7401df68924bc89d14a05f4c33d3eab9c', '172.105.247.100', 1666928425, '__ci_last_regenerate|i:1666928425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c162c82ad7ff70170a369bf17a65630547db97e', '172.105.247.100', 1666928426, '__ci_last_regenerate|i:1666928426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e999660248e458d3cb5ae8bad8b808ee02014e57', '172.105.247.100', 1666928426, '__ci_last_regenerate|i:1666928426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d99cd6ff323448ad332f8ca1e1cdc52e3f4fb1', '172.105.247.100', 1666928426, '__ci_last_regenerate|i:1666928426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c77926c4a832226aa2213c43ebf5c0e3224c74', '172.105.247.100', 1666928426, '__ci_last_regenerate|i:1666928426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513b1de957b9c2bb1796fe15e6225af04806cf08', '172.105.247.100', 1666928427, '__ci_last_regenerate|i:1666928427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf04b5938b5339d89a7b0e53b613c6a680912a4f', '172.105.247.100', 1666928428, '__ci_last_regenerate|i:1666928427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceefe3ee48cf4ee4f32895a547f0548ce00a59ca', '172.105.247.100', 1666928428, '__ci_last_regenerate|i:1666928428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f315a56923b6104a3b7445a2ca828def0b5b48fe', '172.105.247.100', 1666928428, '__ci_last_regenerate|i:1666928428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb706783724641257b7a1f19ce17cfaa85dc56e', '172.105.247.100', 1666928428, '__ci_last_regenerate|i:1666928428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd22ea3beefe45d441ebe4a8d61070e195ad5d0e', '172.105.247.100', 1666928429, '__ci_last_regenerate|i:1666928428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba5f0c6d98beed1cb9c339290c8b0697f5dd0013', '172.105.247.100', 1666928429, '__ci_last_regenerate|i:1666928429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd3539335a559637c9029debd8705f0b5f7d255', '172.105.247.100', 1666928429, '__ci_last_regenerate|i:1666928429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cdf89ba6c4c5c97abcddc7eb3ba1ff7e74ad3c8', '37.111.216.48', 1666932700, '__ci_last_regenerate|i:1666932700;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666932675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a29b9a7ad9a31f3a837ccf597a456eac7d322de', '172.105.247.100', 1666932622, '__ci_last_regenerate|i:1666932622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13333181168c6b6ee308161931db413d5279f8b8', '172.105.247.100', 1666932623, '__ci_last_regenerate|i:1666932623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24aec68a5866b637a965fdc27c7f9b902788dcdc', '172.105.247.100', 1666932624, '__ci_last_regenerate|i:1666932623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37dca567681e8178b515b884228b4a93b4c62ec0', '172.105.247.100', 1666932624, '__ci_last_regenerate|i:1666932624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3ee4bc6a4403c27bd9b98dac769bb465291f87', '172.105.247.100', 1666932624, '__ci_last_regenerate|i:1666932624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec7bc03c38e9e8f6d9fdd9143ec8e7dfa4c5294', '172.105.247.100', 1666932624, '__ci_last_regenerate|i:1666932624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8938a2b94da2201e81f66afbfc97e31b1bc4451', '172.105.247.100', 1666932625, '__ci_last_regenerate|i:1666932624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c09523c0786f14fb3956744ffab0710e27f5dc', '172.105.247.100', 1666932625, '__ci_last_regenerate|i:1666932625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081d963c4c2b36d9065e6028854d32e5e16753f0', '172.105.247.100', 1666932625, '__ci_last_regenerate|i:1666932625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbe00ad2647ffa8c3b3796ffe8b2e5f274dcb75', '172.105.247.100', 1666932626, '__ci_last_regenerate|i:1666932625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd982a02381be8b51ff98a655124939350201e1', '172.105.247.100', 1666932626, '__ci_last_regenerate|i:1666932626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7851d995a6d1d7c5a0f0a59e6233918446c485', '172.105.247.100', 1666932626, '__ci_last_regenerate|i:1666932626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8b99688d91521975d7df9d477752eb99abf857', '172.105.247.100', 1666932626, '__ci_last_regenerate|i:1666932626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea57680b38c2153967b8e9c3169dd0b5c884fb8', '172.105.247.100', 1666932627, '__ci_last_regenerate|i:1666932626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b49904d68d34f0e4cc9ac10f9929ea0e41e2d1', '172.105.247.100', 1666932627, '__ci_last_regenerate|i:1666932627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e532763f80befad2d1fdb80c349e58bde38b74', '172.105.247.100', 1666932627, '__ci_last_regenerate|i:1666932627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0d6099aaeda232db45499528715b0014c9f1a8', '37.111.216.48', 1666934462, '__ci_last_regenerate|i:1666934462;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666934455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd8b4238a89369f6e2d4e5af8a21343c7d08602', '37.111.216.48', 1666935390, '__ci_last_regenerate|i:1666935390;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666934462;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa573eda3d85ca5b1a238e59dad7d90204a6030', '37.111.216.48', 1666935936, '__ci_last_regenerate|i:1666935936;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666934462;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9191d39ebe4dffb60b44e796b8f0e6159379135', '116.204.230.27', 1666935532, '__ci_last_regenerate|i:1666935517;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666846646\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c9cff37abd2d6458fcda40c49680935e28aa6c0', '37.111.216.48', 1666936597, '__ci_last_regenerate|i:1666936597;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666936082;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813b87924938f2f4f2f59e412930f566a1d5ab75', '37.111.216.48', 1666937615, '__ci_last_regenerate|i:1666937615;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666936626;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d9709336df8f93211ae80acef6edd436643032', '172.105.247.100', 1666936824, '__ci_last_regenerate|i:1666936824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6caabf463c3540f8b3a48833a8a624ee5b9821', '172.105.247.100', 1666936824, '__ci_last_regenerate|i:1666936824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21bd9a02d10ea1d8fbe29eed0ab6ffadb60d7603', '172.105.247.100', 1666936825, '__ci_last_regenerate|i:1666936825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5529342c7c84018faa8349790cc18fd30b02432d', '172.105.247.100', 1666936825, '__ci_last_regenerate|i:1666936825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b865b766623e333588330cf8ecf0f5fc68df4fe', '172.105.247.100', 1666936825, '__ci_last_regenerate|i:1666936825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa36cf46b36856f84aa91e8343b7c2b8d449392', '172.105.247.100', 1666936825, '__ci_last_regenerate|i:1666936825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64481d178c0cc73d579c0b2fe270a8215ef39fac', '172.105.247.100', 1666936825, '__ci_last_regenerate|i:1666936825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397673e4c01ad6e270189b79784f33ea09ae04ef', '172.105.247.100', 1666936825, '__ci_last_regenerate|i:1666936825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d61bcf983fe4fef779246d393631b1af488ee0c2', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299d95b78ed9fb2f3cb6da886d221d64221242dd', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8cefa99fe07843e27374b85f228a11dacce36e', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3fc9cf6ee9e30bc9954fb21fd5fa655af9779a', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('313a4070906c37f27040ca46fb11586d5d07f38f', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25456b0c7cecb123adfad815232bda850785bb9', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c20e7ec3970a59bcbe5ff5c9e2d30fa62f9960af', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0c3485d4a8d858a35f9b316fe606c599f90420', '172.105.247.100', 1666936826, '__ci_last_regenerate|i:1666936826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5332e6fba9655357dab514ec6ec231c8871eb1ea', '37.111.216.48', 1666938603, '__ci_last_regenerate|i:1666938603;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666937742;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca261ddd31c002ac9404c11582e66e445dee8b5', '37.111.216.48', 1666945001, '__ci_last_regenerate|i:1666945001;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666938783;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf21f190971375dee4196c287a0f0221e9299dd8', '172.105.247.100', 1666941023, '__ci_last_regenerate|i:1666941023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81133a51ef06cec5b6f7052058ec0daf746ea28', '172.105.247.100', 1666941025, '__ci_last_regenerate|i:1666941025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('619ba3bdd076c99736bf557dd24d5f6b8a6d7d18', '172.105.247.100', 1666941025, '__ci_last_regenerate|i:1666941025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f2d187eb3f9af27aef2e2f81841397faed5cc8', '172.105.247.100', 1666941025, '__ci_last_regenerate|i:1666941025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db7fd2c18929040188a75c8390942acc9bafd0c', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf1561e51cc065bf5b84ad3c32927db13282fdc', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da4e5932fcb6baf0e2d0b8da397c9382e5364bc', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095a79f38b3b7035776f1a025a3849e7445447c2', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733a044881fbf19d32cacf20a2567a2da3706547', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2447d8bebc4d64f48263240d0c9e22c6b91b0c09', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b6d9ace6c6570b3e386838dfc418f7c8ae794b', '172.105.247.100', 1666941026, '__ci_last_regenerate|i:1666941026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca79f5a925d8dbc1a23bbf8dd22b96500a9b1e1', '172.105.247.100', 1666941027, '__ci_last_regenerate|i:1666941026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d296a3b00eff2b35b4b0570707c24287371535fa', '172.105.247.100', 1666941027, '__ci_last_regenerate|i:1666941027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c63d2067cd88c05f8f1f4d5cee4664cf4ca8b300', '172.105.247.100', 1666941027, '__ci_last_regenerate|i:1666941027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c6367136eda3aea779201036660b1964c9698f', '172.105.247.100', 1666941027, '__ci_last_regenerate|i:1666941027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1ce5aefd2afafa825ae2d6908a11e54e3eedfee', '172.105.247.100', 1666941028, '__ci_last_regenerate|i:1666941028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2833c61a983db8bf80739449252c67e2b482d7d', '37.111.216.48', 1666945018, '__ci_last_regenerate|i:1666945001;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666872424\";last_ip|s:13:\"37.111.217.59\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666945018;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe504ae3bb9b6b58df2287c771808c53a0d8bc1', '172.105.247.100', 1666945221, '__ci_last_regenerate|i:1666945221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c415a5359c251d599db359b7de30c19b040d573e', '172.105.247.100', 1666945221, '__ci_last_regenerate|i:1666945221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42e1dc91f46054d34d9068146d36437136c22cc4', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2bae16fe7add8f8e9b61e191a3e14bba006d58d', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba9eefaff899e36901a4d5683389defd5338fb79', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b6327350e86be0fab31f2d30d0b4fed94f8dd8', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e3fc132b56d291382e8d65f9f84196ed00d886', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aaf1e759f0203e19c49d64587026da4db461e10', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937ea44e615e3b0396f1403e7c03e476248e0230', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbaaddac0496aad2a6c9498a53b9fa718e3a2b55', '172.105.247.100', 1666945222, '__ci_last_regenerate|i:1666945222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac86aecc7fcbe7e7e2e3fc2441f2b62f2d891a10', '172.105.247.100', 1666945223, '__ci_last_regenerate|i:1666945223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36fccddc1a5424c24aa66380de67b55296ff929b', '172.105.247.100', 1666945223, '__ci_last_regenerate|i:1666945223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90584826c68fe0091212e55964d24daa8367c535', '172.105.247.100', 1666945223, '__ci_last_regenerate|i:1666945223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a2fda97840085e090299599d5ebf35219f41fa', '172.105.247.100', 1666945223, '__ci_last_regenerate|i:1666945223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2b1b10f02eae70e9d7b44ca249a34e5ce6772d', '172.105.247.100', 1666945223, '__ci_last_regenerate|i:1666945223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('979b1bbee4e10c1bf04acf3c08c172f73f2fc1ce', '172.105.247.100', 1666945224, '__ci_last_regenerate|i:1666945224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4653f4e3da0e56420846e94c0098dcf55152788f', '172.105.247.100', 1666949422, '__ci_last_regenerate|i:1666949422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e4f2b5fb064f489056f5f677234b96034c44fee', '172.105.247.100', 1666949424, '__ci_last_regenerate|i:1666949424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b7cb1b6697f7041a00869f1bc7d7074c9af1da', '172.105.247.100', 1666949425, '__ci_last_regenerate|i:1666949424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a933ad28c31325dd95007bfb998106815bdda47', '172.105.247.100', 1666949425, '__ci_last_regenerate|i:1666949425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88bdad856170a0398c410bfceadef5723f0e9598', '172.105.247.100', 1666949425, '__ci_last_regenerate|i:1666949425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f301bcd350641baf88954474085123dc22da78', '172.105.247.100', 1666949425, '__ci_last_regenerate|i:1666949425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c6c265918e422113affd0fafef0958b7a4f15e', '172.105.247.100', 1666949426, '__ci_last_regenerate|i:1666949425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e01ac461c3a7d7a7816d6fe59ba02acbdb677a3', '172.105.247.100', 1666949426, '__ci_last_regenerate|i:1666949426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19f1999ec829329f3e7db618abe81b50140f3fc', '172.105.247.100', 1666949426, '__ci_last_regenerate|i:1666949426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a09866220a07a94f2d467aa87202e93cc7a0341', '172.105.247.100', 1666949426, '__ci_last_regenerate|i:1666949426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593a92f9f3a0f632cb876cfec6fe9ddfffd54b6d', '172.105.247.100', 1666949427, '__ci_last_regenerate|i:1666949427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c404737bf5aad8e66cba76f4db65210391ab618d', '172.105.247.100', 1666949427, '__ci_last_regenerate|i:1666949427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e99b37d7bbdbcf0bf4c09a958ded583f18ab194', '172.105.247.100', 1666949427, '__ci_last_regenerate|i:1666949427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d85ba18d6b3b04425e0abc1dd02f89eb8a7aaf3d', '172.105.247.100', 1666949427, '__ci_last_regenerate|i:1666949427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc922be734f8969955ce1de5a268b6dffe33952', '172.105.247.100', 1666949428, '__ci_last_regenerate|i:1666949428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7784d7dac016974de629a2441e15e7e118a41c2', '172.105.247.100', 1666949428, '__ci_last_regenerate|i:1666949428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cae6fa7f811a8ccb78eee50f29c3bae0709066', '172.105.247.100', 1666953623, '__ci_last_regenerate|i:1666953623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6febf465d85884672707f1d58e29b8d376102c21', '172.105.247.100', 1666953626, '__ci_last_regenerate|i:1666953626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceeb01599abf1906eba1c0b647f2a056506b17b7', '172.105.247.100', 1666953626, '__ci_last_regenerate|i:1666953626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5213e59f948034bd0072e1f73735ec9004e5cdc3', '172.105.247.100', 1666953626, '__ci_last_regenerate|i:1666953626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4258a1f833b854b1daf1e15c7781505039a2f4', '172.105.247.100', 1666953626, '__ci_last_regenerate|i:1666953626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409a8ffb76f3ddd7fbcb7e672a4eb56612d6ee7c', '172.105.247.100', 1666953626, '__ci_last_regenerate|i:1666953626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66141944b1bbaacde597d3d3a6a6f44e179e854', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('512f8c60970d892732bb08b282c045543809ee2e', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375c61bb5d773b15be493c5e46aa65891f79ff6f', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ce5e0c77923a1937b1969aa4170e31cf048a20', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f6c823e41bd20dd282992e0cf18ff9f56dd596f', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b05edb5381f4b96eac5aefde79ca8114c82674', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('117f5b320c57dde891a3170929831eb094d70106', '172.105.247.100', 1666953627, '__ci_last_regenerate|i:1666953627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d85afd56a0ea8ec2cfac4072131dec8bca1ac9', '172.105.247.100', 1666953628, '__ci_last_regenerate|i:1666953627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ac20d83d34de161ac02d01bc9d76293844d554', '172.105.247.100', 1666953628, '__ci_last_regenerate|i:1666953628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d57bcbedb93741cf62f8863bbf0c2b90304d69b9', '172.105.247.100', 1666953628, '__ci_last_regenerate|i:1666953628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08dda0cf3fda965c79063ba2e2b36257ae100792', '37.111.216.48', 1666957973, '__ci_last_regenerate|i:1666957973;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666955890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7f8bc04a35b3a33bc46316bc7f9086bb12c14b', '116.204.230.27', 1666957912, '__ci_last_regenerate|i:1666957912;requested_page|s:18:\"admin/products/add\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666935524\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db8bf73d3a5c7330326b384b9d718ff47b91e5d', '172.105.247.100', 1666957822, '__ci_last_regenerate|i:1666957822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3216faaa01d0643870e38a923e0cabca0a2240', '172.105.247.100', 1666957823, '__ci_last_regenerate|i:1666957823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aa0ec78d5de1d3752af326b7afc381f51e42043', '172.105.247.100', 1666957823, '__ci_last_regenerate|i:1666957823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('204dc58f6136a4c2ef00f74fb1e3379fad21da89', '172.105.247.100', 1666957823, '__ci_last_regenerate|i:1666957823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3348bf59acff96f4f8a5277a985ed88d52bcd3', '172.105.247.100', 1666957823, '__ci_last_regenerate|i:1666957823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad259c5797dd65e8dfef3d9306b4e442a6c68ae', '172.105.247.100', 1666957823, '__ci_last_regenerate|i:1666957823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c1d351cbe915ed510fba91b9c7d54781d8ec3e', '172.105.247.100', 1666957823, '__ci_last_regenerate|i:1666957823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df21a1731dc85692d4afb16b4a9ce48a205bb3e0', '172.105.247.100', 1666957824, '__ci_last_regenerate|i:1666957824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff476a2b6b871ccf029bd43af167636c8b95991', '172.105.247.100', 1666957824, '__ci_last_regenerate|i:1666957824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0093feade89192b29060a75597af56f27cd4cb', '172.105.247.100', 1666957824, '__ci_last_regenerate|i:1666957824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727da07c8834985a5904e95d6c6ab339bc92cac8', '172.105.247.100', 1666957824, '__ci_last_regenerate|i:1666957824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d088d89067463a3ffd8fa1db33f57abeee5b93c1', '172.105.247.100', 1666957824, '__ci_last_regenerate|i:1666957824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a86372bf0f7e29c93d2ba26468458fca8440d6', '172.105.247.100', 1666957824, '__ci_last_regenerate|i:1666957824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceca970fe05e8e80af977c4c433463cf4c2efc50', '172.105.247.100', 1666957825, '__ci_last_regenerate|i:1666957824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0efef1353ba4663ec09febf123548cd892804df4', '172.105.247.100', 1666957825, '__ci_last_regenerate|i:1666957825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f63b11e96c7d1158511a737b7ecab0f4f2981c', '172.105.247.100', 1666957825, '__ci_last_regenerate|i:1666957825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cac4c98544b741b29fa6981587bb3a5e188068f', '116.204.230.27', 1666958045, '__ci_last_regenerate|i:1666957912;requested_page|s:18:\"admin/products/add\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666935524\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc43e1f42b61b987e48708d6df691363b1844e6a', '37.111.216.48', 1666959910, '__ci_last_regenerate|i:1666959910;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666959489;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('220e3a2066ea9a446944255375f7a57067c0d228', '37.111.216.48', 1666960792, '__ci_last_regenerate|i:1666960792;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666959910;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cbd6828ea482c291bfdc4e11cac1c4f04cc4bb4', '37.111.216.48', 1666961104, '__ci_last_regenerate|i:1666961104;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666961037;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47532cb64eff72d0d335ded896ccf9d04175c193', '37.111.216.48', 1666962038, '__ci_last_regenerate|i:1666962038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666962034;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7be515b9ab9ec63a443a7967e42c63c4edbae3', '172.105.247.100', 1666962025, '__ci_last_regenerate|i:1666962025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac281408cc0f4178ad0053b3b6e0b3f210b3d02', '172.105.247.100', 1666962025, '__ci_last_regenerate|i:1666962025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ada570ef060c28bf60d0bfa87d8e74af63a40f', '172.105.247.100', 1666962025, '__ci_last_regenerate|i:1666962025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456554e7a05b0b2329974ca146a73d3513de6ebe', '172.105.247.100', 1666962026, '__ci_last_regenerate|i:1666962026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f09690faad74f34967b5f2516071e35ebe0fec', '172.105.247.100', 1666962026, '__ci_last_regenerate|i:1666962026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f202a29453c492080b49e9343ce41c8f2c6b1a15', '172.105.247.100', 1666962026, '__ci_last_regenerate|i:1666962026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eda4fe190b28ce224b1d921a7250c603151f039', '172.105.247.100', 1666962027, '__ci_last_regenerate|i:1666962027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad6f820ed7b8a9c2de143a8d65e528001f02a4f', '172.105.247.100', 1666962027, '__ci_last_regenerate|i:1666962027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c324ccc337b7a42d8cfdd6d3a6c0a41a77d5890e', '172.105.247.100', 1666962027, '__ci_last_regenerate|i:1666962027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ec11b2267d05a92d34509d6ad1382b3eb38eb2', '172.105.247.100', 1666962027, '__ci_last_regenerate|i:1666962027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04bb4614e634b2a40786b03b56aecd6c5d79e582', '172.105.247.100', 1666962028, '__ci_last_regenerate|i:1666962028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e307dff6db972f5905bb84b294a4e07fb78c733', '172.105.247.100', 1666962028, '__ci_last_regenerate|i:1666962028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5710b5a6862919da3576d082d2977de5784cc613', '172.105.247.100', 1666962028, '__ci_last_regenerate|i:1666962028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2e1581fc57035312a7317c4a6e2a99663cec8f', '172.105.247.100', 1666962028, '__ci_last_regenerate|i:1666962028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f207065e65366db8a6c034fdcf4cb23e1debf1', '172.105.247.100', 1666962029, '__ci_last_regenerate|i:1666962029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4026effd7afd5a76970b71d2307b3a5cc62d9c6d', '172.105.247.100', 1666962029, '__ci_last_regenerate|i:1666962029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63919d1a893ff1362a2a893858f061ce0ffd750', '37.111.216.48', 1666962651, '__ci_last_regenerate|i:1666962651;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666962039;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2ecdc7de7fc5333db4cd3474fd257a9276cd05', '37.111.216.48', 1666963134, '__ci_last_regenerate|i:1666963134;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666962678;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86ce60e9c72dfbdafea5fc0f08a99e74d4fa2fd0', '37.111.216.48', 1666963628, '__ci_last_regenerate|i:1666963628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666963152;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('128ec1c2d53b01cc6e6315040ec54b23bafa4b52', '37.111.216.48', 1666965754, '__ci_last_regenerate|i:1666965754;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666963713;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0709b44e0d65d495e8eaecd09734b8098184c767', '37.111.216.48', 1666966953, '__ci_last_regenerate|i:1666966953;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666966877;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c40ad918a03f8fcc5f9aef1a6047750e848cb89', '172.105.247.100', 1666966223, '__ci_last_regenerate|i:1666966223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db8a05fb7e1b2fd2cd186d8c2896fb60337ce51', '172.105.247.100', 1666966224, '__ci_last_regenerate|i:1666966224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('715dd4f1950bde825a87702557737df86ec44d36', '172.105.247.100', 1666966224, '__ci_last_regenerate|i:1666966224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8a022815cd8b5e09522d84e11afba1a483e358', '172.105.247.100', 1666966224, '__ci_last_regenerate|i:1666966224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2e0baba66728efd6bd1dc672d9b0f383cef0e7', '172.105.247.100', 1666966225, '__ci_last_regenerate|i:1666966224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b0284456fe0a5875e5c1a93fdeaa60578c1f416', '172.105.247.100', 1666966225, '__ci_last_regenerate|i:1666966225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91543b168f8460d23f03bb0ebb24b582dde5ae29', '172.105.247.100', 1666966225, '__ci_last_regenerate|i:1666966225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b635f2306b60ffb2f0c99325ff612d763fd60cf8', '172.105.247.100', 1666966225, '__ci_last_regenerate|i:1666966225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8477c20c600e2a004f9b3f12cc24084219c86bd', '172.105.247.100', 1666966226, '__ci_last_regenerate|i:1666966226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e13f232672f984c82a41eaf9f23b0621c45b12', '172.105.247.100', 1666966226, '__ci_last_regenerate|i:1666966226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599732f77777362fa046162150245c2bdfea0768', '172.105.247.100', 1666966226, '__ci_last_regenerate|i:1666966226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e2e8442c5bcf391664beb757fb7a5828fe3d85', '172.105.247.100', 1666966226, '__ci_last_regenerate|i:1666966226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70627b2dbc6b00747b3da73422d1c4b54d1ff018', '172.105.247.100', 1666966227, '__ci_last_regenerate|i:1666966227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3138884337674040ad470f205febc0c89e37224e', '172.105.247.100', 1666966227, '__ci_last_regenerate|i:1666966227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30a93bb90c35ff7972f43bfb7ca8ff93ad54ad7', '172.105.247.100', 1666966227, '__ci_last_regenerate|i:1666966227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a11f3fc400ca1789f0198aaa9f0205e891a7c3', '172.105.247.100', 1666966227, '__ci_last_regenerate|i:1666966227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bfccc6103da20ac83e91d909e1bf6a2af6e485b', '37.111.216.48', 1666967357, '__ci_last_regenerate|i:1666967357;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666967344;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d293aa428683be9ab0ac7ad717b7849e4da980f', '37.111.216.48', 1666968705, '__ci_last_regenerate|i:1666968705;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666968589;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da121b78ca879704f4d380b65eeab050fc131a59', '37.111.216.48', 1666969320, '__ci_last_regenerate|i:1666969320;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666968996;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d49ac375fa1649d790761777445dcdc1d0b2984', '37.111.216.48', 1666969720, '__ci_last_regenerate|i:1666969720;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666969488;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b195df08c86196cd431b3cfcdbf2b5b4ae4ff2', '37.111.216.48', 1666970066, '__ci_last_regenerate|i:1666970066;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666970056;register_id|s:3:\"231\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2022-10-27 20:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39041237be71a2b3c433a00360502d5c3071bbb8', '37.111.216.48', 1666970080, '__ci_last_regenerate|i:1666970066;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666930963\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1666970079;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0508b9608967d6d2333e89ce1a31069c8eb29d5e', '172.105.247.100', 1666970425, '__ci_last_regenerate|i:1666970425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac66fe8899c76b485c205f89ac3e6b1058aa507d', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acbc8b8714dea0203c7123e107abf9303ca5650f', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f23e7552941e72e9fa74d591a161278daafb7c9', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4afa16b840b859b8d7103cb7662df927cf1542e', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60aca34de296f0dfabf3ae78870ec15e85ff781', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce84325e5d7712437fc9df8e8428f3c9bbbdc49', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc6179ee9bafdf9202133de3e361fd365ff9fa7b', '172.105.247.100', 1666970426, '__ci_last_regenerate|i:1666970426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404557a52c493e6cfea033a820b74851526bb609', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5f3a6acbe4f97cc3e05683cc8aacfb76bde028', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15ac09560a7adc3c8f320c0f47447eacfeac930', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316b3b473195097a4c68417d6498e28d80fb12fb', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6c5677526e0facefe4e33b782008ed8d74b506', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('801deb2917e45688a4a86afe61d182e1a49c4bc2', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be6dbc125c25db000cd985a6ada24733fb1faab', '172.105.247.100', 1666970427, '__ci_last_regenerate|i:1666970427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f2efcce602198c9965a4b0c2ddc036a2c26bae0', '172.105.247.100', 1666970428, '__ci_last_regenerate|i:1666970427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531fee11016b5b64861dcf13b7d1a9b0e8fd1422', '172.105.247.100', 1666974623, '__ci_last_regenerate|i:1666974623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8109a7044ef5d244b76e19485838fa30a6f0ff5d', '172.105.247.100', 1666974623, '__ci_last_regenerate|i:1666974623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3995f584b9985284fbc9ace7bb1d5bb7b0950d3a', '172.105.247.100', 1666974624, '__ci_last_regenerate|i:1666974624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523464f9228e81c3bb0edcb47f5815211477d2f8', '172.105.247.100', 1666974624, '__ci_last_regenerate|i:1666974624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e64e1eb547df5cec67ddd0ad403b8c00cb6dca', '172.105.247.100', 1666974624, '__ci_last_regenerate|i:1666974624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e4146be95dbc1d4839e2db9d6e4f5810723f8e', '172.105.247.100', 1666974624, '__ci_last_regenerate|i:1666974624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1132395b9f5f7b0be47a61da3d60b70b78639b9', '172.105.247.100', 1666974624, '__ci_last_regenerate|i:1666974624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98b069147084e7f05ff2e3832bf83f7f5f8b923', '172.105.247.100', 1666974624, '__ci_last_regenerate|i:1666974624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2faef7a09c789de8f8e75db84c65efec6477656', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6d6fb2f6018a788427f307af560187680923b3', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe70342045637f41158f52279ba0ccf048eeb442', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b010c56dfe30c8e92078d038e03a8e36724a5d', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307b425506c706165802efd08b5018673af356a0', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fad715fecc56ec9a2ec8e1b386480f42854bd8a', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a908de1cb68368d2db93c3e6325427627732d8d', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e485ee7f3e4a851ec7a1920f42eb702e49f70d30', '172.105.247.100', 1666974625, '__ci_last_regenerate|i:1666974625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d59de582fe7564ea6499a3227bf573935860013', '198.235.24.145', 1666978198, '__ci_last_regenerate|i:1666978198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89bbceb065b691c022e88b218f0ff235db9d36f', '172.105.247.100', 1666978822, '__ci_last_regenerate|i:1666978822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a658c06e1f43be3ec237066a7a06512543e3b9e', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d7476a9b586bfe02dddac79c5508c9d37a6e40', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cdacdca6af4b80f32c95dc6ef251594af9581ac', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa9f9fd3054fb5bcf7914fc90101def36e9f7a6', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50731750af075228a5b889bf5f004908c876b038', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9aedbcbbc1553866c1c0f5458e33cf90f1397a', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d75127fab4c7ab637c6739482f203d6fe249e1b', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383307f15a34f05e8d86b67cc98201870b400e2d', '172.105.247.100', 1666978823, '__ci_last_regenerate|i:1666978823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dadbcd08536d471ba9aba056bf8bb03da7ba611c', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab30f3614245556a49426a9e88e12db09acd9778', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd793f61697d323b314a3fb7fe527b21e8b78535', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d790d0494574d0d09b7686615a6da419638e7353', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fc2ced048b13f08704963a6b643d6a30cb39b44', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df92dbcb608ea7200f961bdfdec4d89a50f66a85', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a16f52dcf584b977b02b9fc947fba4a719ed612', '172.105.247.100', 1666978824, '__ci_last_regenerate|i:1666978824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('222612abdb682f293377bfb26a64b1db66871719', '172.105.247.100', 1666983021, '__ci_last_regenerate|i:1666983021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d72d825c77479652b409af7b2038d370f9e64c8', '172.105.247.100', 1666983021, '__ci_last_regenerate|i:1666983021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1476d2a10590dc63b116bd3ee14751b3ff133e16', '172.105.247.100', 1666983022, '__ci_last_regenerate|i:1666983022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3eef05b24203297abcc4ec26222a804db4c19c', '172.105.247.100', 1666983022, '__ci_last_regenerate|i:1666983022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f16d926164ce806fbaf9726a10fe5f65a10f9a', '172.105.247.100', 1666983022, '__ci_last_regenerate|i:1666983022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b14cae24aafc4eda92f526ba940ef002e1845a', '172.105.247.100', 1666983022, '__ci_last_regenerate|i:1666983022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec310c077745d3a658e4124fe3b80482b11eadf', '172.105.247.100', 1666983023, '__ci_last_regenerate|i:1666983023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ae3304925432d6f9034291129d9639c6575204', '172.105.247.100', 1666983023, '__ci_last_regenerate|i:1666983023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a7bba607d2d8e95c6f0e5a1404c385641478be', '172.105.247.100', 1666983023, '__ci_last_regenerate|i:1666983023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d129f19f3640e26af94c0d0ab710029b8fd8d8b', '172.105.247.100', 1666983024, '__ci_last_regenerate|i:1666983024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3336e26926b0e79b0fba5f9574025f80755c0d11', '172.105.247.100', 1666983024, '__ci_last_regenerate|i:1666983024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2730390f7dee8555e47ab0bc6569c615f59fa8c', '172.105.247.100', 1666983024, '__ci_last_regenerate|i:1666983024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050c7f7d5bfa8c919ea3f1a714197221efb35f82', '172.105.247.100', 1666983024, '__ci_last_regenerate|i:1666983024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47e97f92af05bc2a44e0f607e169250402a2c8b', '172.105.247.100', 1666983025, '__ci_last_regenerate|i:1666983025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ebe26ad7ce555cf4dbc8fdc743d21497bd9fb2', '172.105.247.100', 1666983025, '__ci_last_regenerate|i:1666983025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ffa9f73e85693c2d8992203f67606917a670ba7', '172.105.247.100', 1666983025, '__ci_last_regenerate|i:1666983025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a512a9327deee7933537b15c62d108184138f9f6', '172.105.247.100', 1666987222, '__ci_last_regenerate|i:1666987222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c89d6874817eca1fe3435c4bbff0f0ca4c1a0f1', '172.105.247.100', 1666987224, '__ci_last_regenerate|i:1666987224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('972ac69e26ee51695bfc5e6463f9b9716ad3366a', '172.105.247.100', 1666987225, '__ci_last_regenerate|i:1666987225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033d443ef3e88fc373b7899986ee27dcaa6c5c95', '172.105.247.100', 1666987225, '__ci_last_regenerate|i:1666987225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f535030051480c7d172a7feb921f2a0ddbe5ded1', '172.105.247.100', 1666987225, '__ci_last_regenerate|i:1666987225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0f9072e6a6edf953d15cdaf93b0b246d858e41', '172.105.247.100', 1666987226, '__ci_last_regenerate|i:1666987226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc0cce0024121590cf0fabac581fe9c07c8ac68', '172.105.247.100', 1666987226, '__ci_last_regenerate|i:1666987226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866367217165b696955d1ca07802aafe00863ede', '172.105.247.100', 1666987226, '__ci_last_regenerate|i:1666987226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d825f4d9ecd5df24f4b75b67841769fb7a133191', '172.105.247.100', 1666987226, '__ci_last_regenerate|i:1666987226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b60d96aeb634ad3f18038179163547fe4d6fa743', '172.105.247.100', 1666987227, '__ci_last_regenerate|i:1666987227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('870f3b51cbef184b3f9c171c6eef4f8484169513', '172.105.247.100', 1666987227, '__ci_last_regenerate|i:1666987227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64310100654040ed1ee128ba837cb6ba0e0166ef', '172.105.247.100', 1666987228, '__ci_last_regenerate|i:1666987228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f0b8109ecac81713de3f23e6277f016046e3d22', '172.105.247.100', 1666987228, '__ci_last_regenerate|i:1666987228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('233b738bb8acce8f945175350d606b9954c32266', '172.105.247.100', 1666987228, '__ci_last_regenerate|i:1666987228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437ae0de6e1b551606558443ead63beb95fd78f5', '172.105.247.100', 1666987229, '__ci_last_regenerate|i:1666987229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf3a17c5dd6ade7f0317deaa7893f70322c04f3', '172.105.247.100', 1666987229, '__ci_last_regenerate|i:1666987229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040d90c47d48f15849e9b681102f10934066e3f1', '167.248.133.46', 1666987585, '__ci_last_regenerate|i:1666987585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53415f8179e3f1721cd0421cb13989f0e44c4745', '167.248.133.46', 1666987585, '__ci_last_regenerate|i:1666987585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974bd9d8885da44dc95434ba8ce045818bcb4a3e', '167.248.133.46', 1666987585, '__ci_last_regenerate|i:1666987585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5494b9c3cedd7311a387630460875d6819c4b5c2', '167.248.133.46', 1666987586, '__ci_last_regenerate|i:1666987586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d4207c838510aaad9d403e3e97b15abab112d5f', '167.248.133.46', 1666987592, '__ci_last_regenerate|i:1666987592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abab6ba93203821a2962c5b9f83a6276948c2a2b', '167.248.133.46', 1666987598, '__ci_last_regenerate|i:1666987598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb07c5ab1a33a084d661f030dfa3172391627a3', '198.235.24.184', 1666991105, '__ci_last_regenerate|i:1666991105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa0760bce2b5ae92d251ad69b868c6b1507258f', '172.105.247.100', 1666991423, '__ci_last_regenerate|i:1666991423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('615c67fa2edb1959f0784a82f4c73b57866adbe7', '172.105.247.100', 1666991424, '__ci_last_regenerate|i:1666991424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839507be871bc96c0be6840038a3bf15ba22a415', '172.105.247.100', 1666991424, '__ci_last_regenerate|i:1666991424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a44a412fa2c67e49eed2f3689a622090e50f14b', '172.105.247.100', 1666991424, '__ci_last_regenerate|i:1666991424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a509b91d375b67f676a6bff41cc57cdcaf91b3', '172.105.247.100', 1666991425, '__ci_last_regenerate|i:1666991425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4104c3d79d7503bd2c8a9c9e499e027d985fa7', '172.105.247.100', 1666991425, '__ci_last_regenerate|i:1666991425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d9301f780432d987b28e4bc1d62977d91145ba', '172.105.247.100', 1666991425, '__ci_last_regenerate|i:1666991425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b99f6665797f5254f308d0d42cb175e164340f8', '172.105.247.100', 1666991425, '__ci_last_regenerate|i:1666991425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de8d9cd6bab395f9dcd0e30a56fb35b477da21e', '172.105.247.100', 1666991425, '__ci_last_regenerate|i:1666991425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('126093ef8cb5203b3e9c1f06d934d638918eafee', '172.105.247.100', 1666991425, '__ci_last_regenerate|i:1666991425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949e8e9f928a563aab1e48bd06f48c5b0c02f2c4', '172.105.247.100', 1666991426, '__ci_last_regenerate|i:1666991425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba91b696ebee163abccd0e1c8ee5e3d4e3cd0eb', '172.105.247.100', 1666991426, '__ci_last_regenerate|i:1666991426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd8b1eee838645e2a422f8990afab1bcd2ad9e3', '172.105.247.100', 1666991426, '__ci_last_regenerate|i:1666991426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa365a58f011aacf3ec70dce59bfb8e91e0f80a', '172.105.247.100', 1666991426, '__ci_last_regenerate|i:1666991426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722b6a39f7c34751b47e4a309001cec11bcc83b8', '172.105.247.100', 1666991427, '__ci_last_regenerate|i:1666991427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f1aecadb40ef77309d5950ecb4a007bcc9fe1e', '172.105.247.100', 1666991427, '__ci_last_regenerate|i:1666991427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4cdef0eadf9168647586f474cb725bd807e219', '172.105.247.100', 1666995622, '__ci_last_regenerate|i:1666995622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d113a69f399dbdb160c6a2770cad561c41a421', '172.105.247.100', 1666995622, '__ci_last_regenerate|i:1666995622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751818a0d1a27f7e9536e0694b4b9f230e92ed4f', '172.105.247.100', 1666995623, '__ci_last_regenerate|i:1666995623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b660073c4fda7b551fbc1926852928da507f63df', '172.105.247.100', 1666995623, '__ci_last_regenerate|i:1666995623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f9e51995d9ea920fb8c47f1534accac98263a97', '172.105.247.100', 1666995623, '__ci_last_regenerate|i:1666995623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('376b8098ca442f5c3f0bed5c5f8e25cad60034c9', '172.105.247.100', 1666995623, '__ci_last_regenerate|i:1666995623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0c93552ed2d8bd35fa47e58ab666f52756c143', '172.105.247.100', 1666995624, '__ci_last_regenerate|i:1666995624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7797030815bf62f3012ae2a01838b536e351f4f5', '172.105.247.100', 1666995624, '__ci_last_regenerate|i:1666995624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb51075688f25263d54197b94b744888817dd632', '172.105.247.100', 1666995625, '__ci_last_regenerate|i:1666995625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1003e3b71b05162f4ec1d528fca1488c294a90e', '172.105.247.100', 1666995625, '__ci_last_regenerate|i:1666995625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e678d92ed4bfc714c22afa5c1cc82d42799a40', '172.105.247.100', 1666995625, '__ci_last_regenerate|i:1666995625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3823b4c666ef5bfaf531e3659bcdd90a779655fb', '172.105.247.100', 1666995625, '__ci_last_regenerate|i:1666995625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaad2b67c25f6122697ad2b644556cc3f2e6e8b0', '172.105.247.100', 1666995626, '__ci_last_regenerate|i:1666995626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160da53dd517e7cf39c357a4127b7ee12b2b51c9', '172.105.247.100', 1666995626, '__ci_last_regenerate|i:1666995626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ff29135abd2711fa7c6b3ce2bea999ff80d1ac', '172.105.247.100', 1666995626, '__ci_last_regenerate|i:1666995626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de0bfa762d5b91ea62c1a464185571e6bde5e405', '172.105.247.100', 1666995627, '__ci_last_regenerate|i:1666995626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8359571dab51cc846b33ea3af545f7fb66d27b', '172.105.247.100', 1666999828, '__ci_last_regenerate|i:1666999828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6783580aecfe2a70be44deb1f5ee5c5b715994e4', '172.105.247.100', 1666999829, '__ci_last_regenerate|i:1666999829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c34b2429249006dab8e8ac40c394d83b1476c5', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95300ad77b4f8e544a2429efdba9e85b3292385', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfdd1f9575ff1eccc9ef84fe8c9f46c58adacf04', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cef66ac625e1e15497387cdb7c012f63b6438ee', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc9aed5f9a983fd07c593c07ae8b00ec2ec3f95', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aabf95243b71d9685418fc2976ac8e99dd8ed46', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dc370232a8fe84155f3dd61731ff4435d5393d7', '172.105.247.100', 1666999830, '__ci_last_regenerate|i:1666999830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d8e701ba5dd010d55a69a51338d7a767098a6c', '172.105.247.100', 1666999831, '__ci_last_regenerate|i:1666999830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be1bc73a1e2d84a49fc74b52e284ab727ef441f', '172.105.247.100', 1666999831, '__ci_last_regenerate|i:1666999831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379b6fbc34388ce256adc3017ba14bfcf7ae70a0', '172.105.247.100', 1666999831, '__ci_last_regenerate|i:1666999831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb02c8e7b2e445cc6e62bc2d4e75e22fb5a2a0c', '172.105.247.100', 1666999831, '__ci_last_regenerate|i:1666999831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8155d3235566ecb226a9ca96e626fdd382e5dc09', '172.105.247.100', 1666999831, '__ci_last_regenerate|i:1666999831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b213ce125fc4a436f2fc63fcfa018efcd28b859a', '172.105.247.100', 1666999831, '__ci_last_regenerate|i:1666999831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95040369cc6b6ebd7b97077e58a45e80977eca0f', '172.105.247.100', 1666999832, '__ci_last_regenerate|i:1666999831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879e3c8619d4f006126c38c5445eaddb76237863', '172.105.247.100', 1667004025, '__ci_last_regenerate|i:1667004025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765209ccfffb541e1194430a617f6cdad473b43f', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf53ae685ddda066e016a13d2c24896fb448500', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2338d59a4a49fd61258de390d70916b1b3a4bad', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c099f0ce72bf2b653016da4e3b6b8ad510c71fb', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84926360663e1cf60bf333aad721137b65ec64f5', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399e40942eef37ae7cc5ad715d0387cf8861dc9a', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a943c387ec1537e514902e5989d259014a999763', '172.105.247.100', 1667004026, '__ci_last_regenerate|i:1667004026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9989dc0fd147f1ce0a672698762317adcb0944d3', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d93f060a2e2e17fc8331c611bb34344ee6032b', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb2ce42fc43b018f5d8bce5804a22f48f5458b3', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cd134791fb34621dd14948f4f5ffa37fb7ddf6', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3aabc9d9abbd655ee858f712eefe1afdd9d10aa', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1525d402b9ad662b3a24747495a4a2ae42aac90', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df6e7fc67d2650a08b9fe9f308ce8b8759ee40b', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74edc250b742172f222e060e5017ea1be2dc7ba5', '172.105.247.100', 1667004027, '__ci_last_regenerate|i:1667004027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c6861eaa5ad7c58b8e684e9bc78c8661143197', '172.105.247.100', 1667008224, '__ci_last_regenerate|i:1667008224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d3d49c1b2595121f077a1d22e4c467f4f884c9', '172.105.247.100', 1667008226, '__ci_last_regenerate|i:1667008226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55feb987903e3e1d5f19a91740b16d990252ef9b', '172.105.247.100', 1667008226, '__ci_last_regenerate|i:1667008226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d9be76e568f55c8405fafee1e7e02468665b36', '172.105.247.100', 1667008226, '__ci_last_regenerate|i:1667008226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('268049b015a61edfad7a6d9853ffbf9a620ee7ec', '172.105.247.100', 1667008227, '__ci_last_regenerate|i:1667008227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560dfa3a82bc3681ad2b4a204548454573126834', '172.105.247.100', 1667008227, '__ci_last_regenerate|i:1667008227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b725cbe120af6c46471a1cf5dc52e28253bcb9', '172.105.247.100', 1667008227, '__ci_last_regenerate|i:1667008227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5aa4e4dd2b774ccf323e7a7b0cdae7e2a0b549', '172.105.247.100', 1667008227, '__ci_last_regenerate|i:1667008227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28cb0017582a3b56d149b23495321d53963025e', '172.105.247.100', 1667008227, '__ci_last_regenerate|i:1667008227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30462ed367570b2d9baa270910f2cb231f63825', '172.105.247.100', 1667008227, '__ci_last_regenerate|i:1667008227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930f548179297bf9cfe73e3a8fedcb61f394a4b1', '172.105.247.100', 1667008228, '__ci_last_regenerate|i:1667008227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84109a37e54a436829faa8d6f36946a02a835d0', '172.105.247.100', 1667008228, '__ci_last_regenerate|i:1667008228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384bcafa9e7732df8a8ede8ae46142074da6dcf1', '172.105.247.100', 1667008228, '__ci_last_regenerate|i:1667008228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3bb7c33fb1583de93738eada8c254e37138f12', '172.105.247.100', 1667008228, '__ci_last_regenerate|i:1667008228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e254c8c7ec39656cbf8316ca5b76ec8653ef686', '172.105.247.100', 1667008228, '__ci_last_regenerate|i:1667008228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb26b7a88f6356d2f19dcdb061d61fd9c8ac247', '172.105.247.100', 1667008228, '__ci_last_regenerate|i:1667008228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edbd423b26cb48963aee19ed360f6c8351b57b8a', '172.105.247.100', 1667012424, '__ci_last_regenerate|i:1667012424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f8317aa7310b3b187f045691288401b8d6df74', '172.105.247.100', 1667012426, '__ci_last_regenerate|i:1667012426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d019be62c4c3bc07b0e9ad0f36cd54ff029df726', '172.105.247.100', 1667012427, '__ci_last_regenerate|i:1667012426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fb8fda97b4b4e5afd204a5f50521c677a0867b3', '172.105.247.100', 1667012427, '__ci_last_regenerate|i:1667012427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f79382a8f99480c955d1a3d89c97ddde6fbd40d6', '172.105.247.100', 1667012427, '__ci_last_regenerate|i:1667012427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428ad342a2396172f47bf0e3a3d1c8ac1cded7d0', '172.105.247.100', 1667012427, '__ci_last_regenerate|i:1667012427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460213b4c24a730156213ab9fe44831972c665c4', '172.105.247.100', 1667012427, '__ci_last_regenerate|i:1667012427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2ac82cf233e303cf008d3f58972b94207e8a8e', '172.105.247.100', 1667012427, '__ci_last_regenerate|i:1667012427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac7e9f5e0a0371e47e526ffb1d480cad8da82c9', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc460ee30be418a33986a2a0965dec6a95f79791', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017c69305a9e2001046950ca3b35036500e20cb0', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8931a789f9b3cbf469814ac87d402d432b2d8b85', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac63c32f05cf22abf03a27f89bd78a785ec7c546', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b301edbb959da6d3b47815ebd22ef3a91acbef8', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3eac3101802a3c14ff0b2caea28e8334ea54cb4', '172.105.247.100', 1667012428, '__ci_last_regenerate|i:1667012428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf56952bef26badb4b392bb9ca70f035efce9794', '172.105.247.100', 1667012429, '__ci_last_regenerate|i:1667012429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beb34839ff62a3476361322d5d267e9bc8c47e56', '116.204.230.24', 1667015217, '__ci_last_regenerate|i:1667015036;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1665969330\";last_ip|s:14:\"116.204.230.23\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3513eea21dec97a1feaf26c1228c6b1f2d8fa6', '172.105.247.100', 1667016622, '__ci_last_regenerate|i:1667016622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae43d9ddc8efc3f8dac3a9165cfaf13728a5313', '172.105.247.100', 1667016622, '__ci_last_regenerate|i:1667016622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd40458060b57c57feadaaa716347a6c49cf5e36', '172.105.247.100', 1667016622, '__ci_last_regenerate|i:1667016622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602893c11a0fbabe7fd8db2b69104e0a2d7a80ba', '172.105.247.100', 1667016623, '__ci_last_regenerate|i:1667016623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aafd89294b6da7778c5e735f738c6e75258827fd', '172.105.247.100', 1667016623, '__ci_last_regenerate|i:1667016623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a42667a502744a61d43d0df76d7fe4aee595d8', '172.105.247.100', 1667016623, '__ci_last_regenerate|i:1667016623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3947dba345f2ae4e7ba35f86ce2c8cfd1d5623e4', '172.105.247.100', 1667016623, '__ci_last_regenerate|i:1667016623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae8e2518fdac6d3a45acb9f6e4aa4cbeae9fc8c', '172.105.247.100', 1667016624, '__ci_last_regenerate|i:1667016624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd932ada124b7dd7bcc8a1d8c5c746e5be2610f5', '172.105.247.100', 1667016624, '__ci_last_regenerate|i:1667016624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbfd0fc35c39a812a325d8949776ece1f2ea9e7', '172.105.247.100', 1667016625, '__ci_last_regenerate|i:1667016624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed29b5185319c16fada421dc636bdccc99c3c88f', '172.105.247.100', 1667016625, '__ci_last_regenerate|i:1667016625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196d3fd112465854ba5bb415a8ea55561f181e49', '172.105.247.100', 1667016625, '__ci_last_regenerate|i:1667016625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15f68520e2b05b9207470f619e9fbb9afccf909', '172.105.247.100', 1667016625, '__ci_last_regenerate|i:1667016625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf3d4c129527f692bffec2d57d153488c32c29d', '172.105.247.100', 1667016626, '__ci_last_regenerate|i:1667016625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fac34984e7b6cc6301e4bf337a8b418200dffdb', '172.105.247.100', 1667016626, '__ci_last_regenerate|i:1667016626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70973f52fbed41c6cdc12038b60c771f1f1b3e0c', '172.105.247.100', 1667016626, '__ci_last_regenerate|i:1667016626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c63300b5d248022527c6dc2f3806fed0c2ddc9', '37.111.216.139', 1667019263, '__ci_last_regenerate|i:1667019263;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667018710;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588771f5b6bacee19eef2a05adbc0cdad1c99934', '37.111.216.139', 1667022374, '__ci_last_regenerate|i:1667022374;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667019265;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1ab67fd3166a085f00e30deb44b48cf5d3234d', '116.204.230.27', 1667019479, '__ci_last_regenerate|i:1667019474;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1666957147\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ef575e77cc67fe4122909933b54ffaed1432e1', '172.105.247.100', 1667020824, '__ci_last_regenerate|i:1667020824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029280ff235d57eebf49228f0539393abbbea474', '172.105.247.100', 1667020824, '__ci_last_regenerate|i:1667020824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea8eca8aa25777e46e424b44b016b7ad996b246', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dcc4abe9cb8d10334e1265368e12e83c0fc007d', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2315fac98a944ff66b7c15e5606232921dcd067e', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291951c67a8e3df86af2cdc8308447b2ded040cc', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd327ff24cbf650e3e7f5c180711ee25b9d8cfc7', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5791ea487cbf482a9570f5d825f5586325938745', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d57a7201feade11979bbc2c726be7bd11be72e', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9bccd9275f8428409b5bf3e348672bdfeab33df', '172.105.247.100', 1667020825, '__ci_last_regenerate|i:1667020825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14342b0d7782c94b9f05d6ee5a521d2fe638f682', '172.105.247.100', 1667020826, '__ci_last_regenerate|i:1667020826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197b137be580ebc17b598a34194b33b744ae8b09', '172.105.247.100', 1667020826, '__ci_last_regenerate|i:1667020826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ea431b8b0b3f8f3cb20bcdcf2b2c671c61ee82', '172.105.247.100', 1667020826, '__ci_last_regenerate|i:1667020826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc54fd368973c1077dc363bfc1758f86f91909e', '172.105.247.100', 1667020826, '__ci_last_regenerate|i:1667020826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bcfbb742c654625bb85fd8687ca77bd0942e1c5', '172.105.247.100', 1667020826, '__ci_last_regenerate|i:1667020826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2574484edc8ffd292ad4b8bfec00a917b33b8e08', '172.105.247.100', 1667020826, '__ci_last_regenerate|i:1667020826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce19472dfaa8a3ceca68af29c33cb6ccca04d34', '37.111.216.139', 1667025219, '__ci_last_regenerate|i:1667025219;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667022451;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1905fe382ef192e69f5fe1b21474d0f3baae51b2', '172.105.247.100', 1667025027, '__ci_last_regenerate|i:1667025027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd49ce6f6ede7044fb071e1fd1b2b27cc64a4b3', '172.105.247.100', 1667025027, '__ci_last_regenerate|i:1667025027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32bd238fdbff8192aa26c799274b192b87cbe4d', '172.105.247.100', 1667025027, '__ci_last_regenerate|i:1667025027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8da1c12232856af920187c7d768274e88da1e3', '172.105.247.100', 1667025028, '__ci_last_regenerate|i:1667025028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f771fd9a837f57350c0793a928cdd2c3099f492', '172.105.247.100', 1667025028, '__ci_last_regenerate|i:1667025028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b6ce36da35cdba9711395473d4dc962f9ffb6f', '172.105.247.100', 1667025028, '__ci_last_regenerate|i:1667025028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('090a3c741d38a3b56babce18e03cb969105304c0', '172.105.247.100', 1667025028, '__ci_last_regenerate|i:1667025028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d235ffd9c67d7ba7032add282001163f60c2eb1', '172.105.247.100', 1667025028, '__ci_last_regenerate|i:1667025028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffebf3b95339c07e20717e23f6f5c73e3180b8f3', '172.105.247.100', 1667025029, '__ci_last_regenerate|i:1667025029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e21dd95673137dde6e802c1003070a1b09d3c51', '172.105.247.100', 1667025029, '__ci_last_regenerate|i:1667025029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d94ded54d9ec51ad4664285980085381c047349', '172.105.247.100', 1667025029, '__ci_last_regenerate|i:1667025029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0d06c5c08196e356f563ea7f642ef431e78ac2', '172.105.247.100', 1667025029, '__ci_last_regenerate|i:1667025029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de210384362b0703e6db4e710364622b32fd74a', '172.105.247.100', 1667025029, '__ci_last_regenerate|i:1667025029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be5699ba802c3cb7fd78a17b1a3bbfeb3ad9f47', '172.105.247.100', 1667025029, '__ci_last_regenerate|i:1667025029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6a35aa5dddde693252fdcaaa3386fd7dfc7ac86', '172.105.247.100', 1667025030, '__ci_last_regenerate|i:1667025030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dff4be2108e243bfa5dd480bac267579b6f9b0e', '172.105.247.100', 1667025030, '__ci_last_regenerate|i:1667025030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7328fe0b96912b702d73c74e0e96697ede6725c1', '37.111.216.139', 1667030183, '__ci_last_regenerate|i:1667030183;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667025305;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e893b3996b00e059fb8b69dc097a9e27d7810458', '116.204.230.24', 1667026818, '__ci_last_regenerate|i:1667026818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01d64c526aad5cc79923fd8e1844af7126965d1', '37.111.216.139', 1667027008, '__ci_last_regenerate|i:1667027008;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667027008;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a957261ab27538a3cce0fa95a7b83cf0a23e9fb8', '172.105.247.100', 1667029222, '__ci_last_regenerate|i:1667029222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bf6d58c144c885d0759bbefc9ad0fe2b1a20e5', '172.105.247.100', 1667029223, '__ci_last_regenerate|i:1667029222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11dd4b27d9a7867c17cde19fdc5173535f93bec5', '172.105.247.100', 1667029223, '__ci_last_regenerate|i:1667029223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3cc8201bf4509b0faf274f9022960d5c533528', '172.105.247.100', 1667029223, '__ci_last_regenerate|i:1667029223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc37345c9d4289596918d98fc149f82d31e1584', '172.105.247.100', 1667029223, '__ci_last_regenerate|i:1667029223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c4501e2f7a5fb6815541ec09e15f63fbc176ea', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9cba8b1a2011d708496b959a02fe243c597bcd9', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f80b20b04ca0763ba3c8335abebc034adaa9adf', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f0ab190e57905e5bd313f5869dd72f9013f4ea', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3a6e8c0ba95f1372bb4f48dfada4eb09eb2b3c', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d872d78dc6117952f644f0087ef2a36d5bba2a01', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd58ef1ec976203066e1e149afb87727d560e61', '172.105.247.100', 1667029224, '__ci_last_regenerate|i:1667029224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5103f22ff6391c80c17dc2cd16e4f9de115871a4', '172.105.247.100', 1667029225, '__ci_last_regenerate|i:1667029225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b858281f399f141a371560b3358e06921a58cf3', '172.105.247.100', 1667029225, '__ci_last_regenerate|i:1667029225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0a999dcdbd1977c66938284e08a33530f8325b', '172.105.247.100', 1667029225, '__ci_last_regenerate|i:1667029225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447a05a3937a125c98373dd3597fee1f8bfb1da5', '172.105.247.100', 1667029225, '__ci_last_regenerate|i:1667029225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8fa7648b9e45dc2e829e02e8efe7ca01fca5c6', '37.111.216.139', 1667030871, '__ci_last_regenerate|i:1667030871;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667030399;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd2776e15d233d0980b720619c5475a5722a28c', '37.111.216.139', 1667034788, '__ci_last_regenerate|i:1667034788;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667030956;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d77ce4304eecb34864d2dfbd53edbde50904101', '172.105.247.100', 1667033423, '__ci_last_regenerate|i:1667033423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe415bb72a02b84dc9ea900005cba0b81bf08805', '172.105.247.100', 1667033426, '__ci_last_regenerate|i:1667033426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c47b100aac6c191d4306fd0de64b8029c0697b3', '172.105.247.100', 1667033426, '__ci_last_regenerate|i:1667033426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254c02051fce9fd98ac252e47dfb62ea44af6871', '172.105.247.100', 1667033426, '__ci_last_regenerate|i:1667033426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6209c908ea32c860eedb8792ac661fbe0a285792', '172.105.247.100', 1667033426, '__ci_last_regenerate|i:1667033426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdcdae7270f15313693fcafad78b80335ec2fa9', '172.105.247.100', 1667033426, '__ci_last_regenerate|i:1667033426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('376036f3fe79858d94d9da84c6ed936f7be6da06', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5aa3042973e37fef9e08a833ae895bd239bd73f', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbee0ada4f2bd2fa15cf20343351df7c6d4a7306', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59930bf88fd16616f9bdc0a270f4473b75baabe', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253fa777cd8e28829c9c0320a7c7608fa826545f', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e80f3014af279c42801ad59522c17bf9953917', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3a2fbfc0295f87c0e3bd4fbfacd171db672135', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75575491b44bdde32463be6634cf7d2927484a06', '172.105.247.100', 1667033427, '__ci_last_regenerate|i:1667033427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc512d97283b063b2b6c5a1b79e1a144933d345f', '172.105.247.100', 1667033428, '__ci_last_regenerate|i:1667033428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b455469de253589e275de1ea560a5bfbd537d3c', '172.105.247.100', 1667033428, '__ci_last_regenerate|i:1667033428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9518c494985f7bf686ec8e5ceb3b78b728a3e564', '37.111.216.139', 1667039450, '__ci_last_regenerate|i:1667039450;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667039444;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f94eebde39c0f356b5c11925490c645f9a14a1b', '205.210.31.182', 1667036738, '__ci_last_regenerate|i:1667036738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4efc8a7b15cb7fcbe756494a6d961e80b47781af', '205.210.31.182', 1667036739, '__ci_last_regenerate|i:1667036739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e2afba825b0539af3bda280521874ab8625483d', '205.210.31.182', 1667036740, '__ci_last_regenerate|i:1667036740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f00903257afd3d93df4dfd801a4f697d21caa46', '205.210.31.11', 1667037094, '__ci_last_regenerate|i:1667037094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('724efa841eb3815643527351c2812970f998bfa2', '205.210.31.11', 1667037094, '__ci_last_regenerate|i:1667037094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79414ed491a4d3657b7c86a6c1214b5ff77dc82d', '205.210.31.11', 1667037094, '__ci_last_regenerate|i:1667037094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5e4d9d5e202c64f0860a57448c5ae0eda37e13', '172.105.247.100', 1667037624, '__ci_last_regenerate|i:1667037624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ce193913fdb30064569109c4df449dc9a01082', '172.105.247.100', 1667037624, '__ci_last_regenerate|i:1667037624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b5dbfe9e34e4d5a586fca5f21f9c55eb6ed2dcd', '172.105.247.100', 1667037625, '__ci_last_regenerate|i:1667037625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f1db7207f2008d7b4672371bc8b0b4d15cc13c', '172.105.247.100', 1667037625, '__ci_last_regenerate|i:1667037625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29f29cf7a57f03ac23428a2e3ded22dc2d59505', '172.105.247.100', 1667037625, '__ci_last_regenerate|i:1667037625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c98b6d62be0120d8efbaf4091b48a3849d5aa7', '172.105.247.100', 1667037625, '__ci_last_regenerate|i:1667037625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e86f65a0fb428a8bf393c0c12edc99914e1369', '172.105.247.100', 1667037626, '__ci_last_regenerate|i:1667037626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be5077463d6753767eb913a3a688d578d466a392', '172.105.247.100', 1667037626, '__ci_last_regenerate|i:1667037626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687c7694e372da977f83f45c81801dde44fd0ecb', '172.105.247.100', 1667037626, '__ci_last_regenerate|i:1667037626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d7171c801e2986c98b61ce7943deb9340a5f84', '172.105.247.100', 1667037627, '__ci_last_regenerate|i:1667037626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f0f3ce89b9a5041d14abfc6fa04d241fe4b86f', '172.105.247.100', 1667037627, '__ci_last_regenerate|i:1667037627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e43df759b90985ce874e53a82b3a111a034db0e', '172.105.247.100', 1667037627, '__ci_last_regenerate|i:1667037627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e71a7aaa051a5661537f358ac3a41d2c49a7620', '172.105.247.100', 1667037627, '__ci_last_regenerate|i:1667037627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbcec53d63d264e5cf01ed4732f44abe25f19ae', '172.105.247.100', 1667037628, '__ci_last_regenerate|i:1667037627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6d50a876266d24c60f6afb7baad72ac7044479', '172.105.247.100', 1667037628, '__ci_last_regenerate|i:1667037628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('203567d3f8214878954d85af8edbe3801088f28f', '172.105.247.100', 1667037628, '__ci_last_regenerate|i:1667037628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4ff09d856d3450b434b5f2881dcb4cd4f418bb', '37.111.216.139', 1667040717, '__ci_last_regenerate|i:1667040717;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667040713;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72692c7f8a1a1fcefd59b85674ce9c178f81742f', '205.210.31.48', 1667039786, '__ci_last_regenerate|i:1667039786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a47c09d331b704dc114ca07e0969683279453a', '37.111.216.139', 1667041890, '__ci_last_regenerate|i:1667041890;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667040845;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3223610e1bc66eb59a04c185fb68c606dbeec5', '172.105.247.100', 1667041822, '__ci_last_regenerate|i:1667041822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d447dc5dfcf4b668f0e2d2ef1b62898ff4b85b', '172.105.247.100', 1667041823, '__ci_last_regenerate|i:1667041823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db2e22631c36a4104d18c609c79a63641b9d06e0', '172.105.247.100', 1667041824, '__ci_last_regenerate|i:1667041824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07768c4344e6748668f1eef32b278ab30567031d', '172.105.247.100', 1667041824, '__ci_last_regenerate|i:1667041824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5c5f9087ad57fb407bb792ebd719512ebbc1de', '172.105.247.100', 1667041824, '__ci_last_regenerate|i:1667041824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c37197e3074822b440411f6e2d2daeeeb32e94', '172.105.247.100', 1667041824, '__ci_last_regenerate|i:1667041824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020208586bb54b013eb794ee48bb242ba158fa46', '172.105.247.100', 1667041824, '__ci_last_regenerate|i:1667041824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4009619cc3352dc937780deef06a571f6a1be032', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('834400c593916a2885c8f44607311d4cafc197ea', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ac7a1d33d1fe0a085866737b5f3ddeeaf6cd83', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d0c0809096d5f2e1f0e423e95f724f0040d53b', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033c6c4b96fb91d4e127d568c520d32d254b726c', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b703ec84ab5d152767e1eab50764b0840ab3330', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764df9b9981448f7528104a4cce789c8cb6b1724', '172.105.247.100', 1667041825, '__ci_last_regenerate|i:1667041825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80076ac9a453d428a0ecc2ccc383fff22fbd3d29', '172.105.247.100', 1667041826, '__ci_last_regenerate|i:1667041825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e2ece0d1165f0e41ad9cd53c192b61a317e3887', '172.105.247.100', 1667041826, '__ci_last_regenerate|i:1667041826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c45f2a50e367204604b1a069bf793c281109d0f', '37.111.216.139', 1667042971, '__ci_last_regenerate|i:1667042971;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667042967;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353246ed85e8da86c33df63fc043d5f4d04268f2', '37.111.216.139', 1667044458, '__ci_last_regenerate|i:1667044458;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667042972;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3d26e3f66a3f09f4d8b6fb1496c54bc34c9059', '37.111.216.139', 1667044832, '__ci_last_regenerate|i:1667044832;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667044513;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027c88a48646780c890839f4ca1b79d504c50392', '37.111.216.139', 1667046710, '__ci_last_regenerate|i:1667046710;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667044853;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d732551e67e4309e488d557260cec0c7326d39', '172.105.247.100', 1667046024, '__ci_last_regenerate|i:1667046024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197656dfa626a8dc4964ac75d207fc1e5c27e27f', '172.105.247.100', 1667046024, '__ci_last_regenerate|i:1667046024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a400df3abf5ee5bc842dc666d434d1a97b0bfb', '172.105.247.100', 1667046027, '__ci_last_regenerate|i:1667046027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7717710ad3fba8dfc7fffa8a54e8647a6c90d8', '172.105.247.100', 1667046027, '__ci_last_regenerate|i:1667046027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be247c547201ef15daa893aea21457b1d63e3cab', '172.105.247.100', 1667046027, '__ci_last_regenerate|i:1667046027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5a620a886c72cd96a125a6cefa86cb382056d5', '172.105.247.100', 1667046027, '__ci_last_regenerate|i:1667046027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41cc78bfca2c8308043ead00364f04e621bc2951', '172.105.247.100', 1667046028, '__ci_last_regenerate|i:1667046028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b770e21f9cebd6ca2364351d8bbf3ad4f5d598b8', '172.105.247.100', 1667046028, '__ci_last_regenerate|i:1667046028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0eba2277b528c8609c2fc5755d9fbd763e3ec6', '172.105.247.100', 1667046028, '__ci_last_regenerate|i:1667046028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1729d98583a5ad84aec08b50b03c01eb0e62104b', '172.105.247.100', 1667046028, '__ci_last_regenerate|i:1667046028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8cf9447ce56779dcdc80c2ab316b536b6971fb', '172.105.247.100', 1667046028, '__ci_last_regenerate|i:1667046028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b165bb7d988ad173ca64eedf769f75b8191bf5d', '172.105.247.100', 1667046028, '__ci_last_regenerate|i:1667046028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6b44689b6a491871bbf26ad87e146edff08652', '172.105.247.100', 1667046029, '__ci_last_regenerate|i:1667046029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fbbbf3ca224f1c3651c49f31b9bee427c2bc7df', '172.105.247.100', 1667046029, '__ci_last_regenerate|i:1667046029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b277abf3f89f0c7f91fd3f665409db69c51dd975', '172.105.247.100', 1667046029, '__ci_last_regenerate|i:1667046029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb7f7947e986a314273c1bdc134c23c00bd1171', '172.105.247.100', 1667046029, '__ci_last_regenerate|i:1667046029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707a1c539df775002429405e8bb7ce0fdd3353e0', '37.111.216.139', 1667049266, '__ci_last_regenerate|i:1667049266;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667046930;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5473c482f200a83b4fae4843127ccc6fbafd6e3', '37.111.216.139', 1667049613, '__ci_last_regenerate|i:1667049613;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667049290;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d3839c020981cff328c9456761034de477bec69', '37.111.216.139', 1667050278, '__ci_last_regenerate|i:1667050278;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667049709;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd607fb75d76fdd980797dcecd887d954473b7c', '172.105.247.100', 1667050223, '__ci_last_regenerate|i:1667050223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49068e14763832fd289259c20f78ac8b07d602d0', '172.105.247.100', 1667050223, '__ci_last_regenerate|i:1667050223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3300e11a64c2a6243a1e5ec0be9302c4cdb3f052', '172.105.247.100', 1667050223, '__ci_last_regenerate|i:1667050223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983d2eae1ec309fc04f3cc8875d6ef16d886502d', '172.105.247.100', 1667050223, '__ci_last_regenerate|i:1667050223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f5ad6433d36b3af3872f18b50f6a2cc8bcd4fe', '172.105.247.100', 1667050224, '__ci_last_regenerate|i:1667050224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ce99440aea08afa4daa9da84785c1a514932d0', '172.105.247.100', 1667050224, '__ci_last_regenerate|i:1667050224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c0d5766814023dd85cef443c43ba5fb8f388da', '172.105.247.100', 1667050224, '__ci_last_regenerate|i:1667050224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65196891f979127d6c765e03eebab9b75c325ab1', '172.105.247.100', 1667050225, '__ci_last_regenerate|i:1667050225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c523a2973e16490f51fb83b2d48b6a15c80e7442', '172.105.247.100', 1667050225, '__ci_last_regenerate|i:1667050225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f11a4bef168462fd750bfa95a0451756033ddc7', '172.105.247.100', 1667050226, '__ci_last_regenerate|i:1667050225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057b57ce51ba27118384002555789d0b2a7959dc', '172.105.247.100', 1667050226, '__ci_last_regenerate|i:1667050226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2bc0671def0cf4cf11665b9e588591bc8793b35', '172.105.247.100', 1667050226, '__ci_last_regenerate|i:1667050226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4abddd297959347e434c89577a2cac5140456f', '172.105.247.100', 1667050226, '__ci_last_regenerate|i:1667050226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38268864b9c4792780aad727c3cb7f9ead8a54d0', '172.105.247.100', 1667050227, '__ci_last_regenerate|i:1667050226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7922fb2cb8b376e9b6cbfeeb2665717920410b', '172.105.247.100', 1667050227, '__ci_last_regenerate|i:1667050227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9221d5e8458537c23897eedece14b336669f2039', '172.105.247.100', 1667050227, '__ci_last_regenerate|i:1667050227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('613daf728813e2cccec1adf512e6670767d66c16', '37.111.216.139', 1667050827, '__ci_last_regenerate|i:1667050827;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667050823;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8264d566d8880ca1d2a8727f5180855848e8cc0', '37.111.216.139', 1667051362, '__ci_last_regenerate|i:1667051362;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667050853;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1fe63e5c4a23956834b16a7ee1c2f930c1e6a7', '37.111.216.139', 1667055379, '__ci_last_regenerate|i:1667055379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667055369;register_id|s:3:\"232\";cash_in_hand|s:9:\"1230.0000\";register_open_time|s:19:\"2022-10-28 21:14:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06a73da14b538010e96b1dc5d227822e8d0b240', '172.105.247.100', 1667054422, '__ci_last_regenerate|i:1667054422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aec189d3831fc125bbddc29ee1526765e054102', '172.105.247.100', 1667054422, '__ci_last_regenerate|i:1667054422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b16f3da916282f0ad24eadc88ec6070792c55f37', '172.105.247.100', 1667054422, '__ci_last_regenerate|i:1667054422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4216dce31101674c620eea0b84f7829316f388', '172.105.247.100', 1667054422, '__ci_last_regenerate|i:1667054422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603efd172856e3eeacf90e3ba4c431d05beba2b6', '172.105.247.100', 1667054423, '__ci_last_regenerate|i:1667054423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358da00baf4cb97b85bc4ecb5fb10138a825f46e', '172.105.247.100', 1667054423, '__ci_last_regenerate|i:1667054423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e76087fbbc52ece33b8bef2146ca980412c0497', '172.105.247.100', 1667054423, '__ci_last_regenerate|i:1667054423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afe50811de857d9adfbd5d1a67637cc655875a1', '172.105.247.100', 1667054424, '__ci_last_regenerate|i:1667054423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9057ed5fdd348f4247b31fe3fdd8cc520d2e5a89', '172.105.247.100', 1667054424, '__ci_last_regenerate|i:1667054424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb761be766330cc9f2c0a11300ed396c4c35bee', '172.105.247.100', 1667054424, '__ci_last_regenerate|i:1667054424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79a06419413579faa0c781fc4df4393454cdbdc', '172.105.247.100', 1667054424, '__ci_last_regenerate|i:1667054424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e209e8bc532407391a3abe891d71c0bac88248cd', '172.105.247.100', 1667054424, '__ci_last_regenerate|i:1667054424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b740cc01800fc98154f1ad46131bee7375d8ed', '172.105.247.100', 1667054425, '__ci_last_regenerate|i:1667054425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f2f1030a28a12ea79605b55b7d369ea90dc8ed', '172.105.247.100', 1667054425, '__ci_last_regenerate|i:1667054425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bef22c5c417cf38fb8f659a2edb5948b9863b41', '172.105.247.100', 1667054425, '__ci_last_regenerate|i:1667054425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b398a5c449f294a087981bbb1672c9f68bb2147', '172.105.247.100', 1667054426, '__ci_last_regenerate|i:1667054425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5273f5e01c22e30fa778690f2f12a52252ffd0', '37.111.216.139', 1667055482, '__ci_last_regenerate|i:1667055379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1666955878\";last_ip|s:13:\"37.111.216.48\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667055482;register_id|s:3:\"233\";cash_in_hand|s:9:\"1020.0000\";register_open_time|s:19:\"2022-10-29 20:56:45\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ceb844e0caacb67637d1005679129cebeead45', '172.105.247.100', 1667058622, '__ci_last_regenerate|i:1667058622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06db3c6dc5def3e54efa7c02e780b9564e4f1599', '172.105.247.100', 1667058623, '__ci_last_regenerate|i:1667058622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2154aceaa797e3e4afdbe8e27f91a749f1cd7f', '172.105.247.100', 1667058623, '__ci_last_regenerate|i:1667058623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a847b205ebda42d72b58d29ae308f461fd7e3ff', '172.105.247.100', 1667058623, '__ci_last_regenerate|i:1667058623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5833f6997d60cd385477b8f7e9314d3cad25e2', '172.105.247.100', 1667058623, '__ci_last_regenerate|i:1667058623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b73dcc8e9dfe81740879d7cffa882393586452b', '172.105.247.100', 1667058624, '__ci_last_regenerate|i:1667058624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9956e57127cff2b90a4dab49fc9b76e72a5277', '172.105.247.100', 1667058624, '__ci_last_regenerate|i:1667058624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10133af77d72a4621975d49b28b39db265f4c63', '172.105.247.100', 1667058624, '__ci_last_regenerate|i:1667058624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e9d757e80b4b9cf49eb14f65d0df648c04f2ff', '172.105.247.100', 1667058624, '__ci_last_regenerate|i:1667058624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b201dbe22974ed0f41fd77c7c50ebe0b76bdfd', '172.105.247.100', 1667058625, '__ci_last_regenerate|i:1667058624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08023c9c09c07c4f86799ebb1504e75e1eec58eb', '172.105.247.100', 1667058625, '__ci_last_regenerate|i:1667058625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0992bf2a328f56d3f2e694ad431f6a1e1955e6', '172.105.247.100', 1667058625, '__ci_last_regenerate|i:1667058625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fae0e91eeab47a662472d3c2a51d1866fcd6d83', '172.105.247.100', 1667058625, '__ci_last_regenerate|i:1667058625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3cd9890d2a4c1c1fc5d04a254050e6cc1cb051d', '172.105.247.100', 1667058626, '__ci_last_regenerate|i:1667058625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8083fbae3d7f57f54cf3a02cf7a72c73097bd4de', '172.105.247.100', 1667058626, '__ci_last_regenerate|i:1667058626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f033282d9068e0b16c0cb804c7c5349b608750ec', '172.105.247.100', 1667058626, '__ci_last_regenerate|i:1667058626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62becdb92154472e0da5735123aacc9d9c68f325', '172.105.247.100', 1667062821, '__ci_last_regenerate|i:1667062821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98bd3127a174ca6ac0a5b6d19ebedc77da7cf209', '172.105.247.100', 1667062823, '__ci_last_regenerate|i:1667062823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05bf18bffb93b2ef88792675191adc9affa1d17', '172.105.247.100', 1667062823, '__ci_last_regenerate|i:1667062823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68142d003bb0ce2a530a367312eef5adb1081b10', '172.105.247.100', 1667062823, '__ci_last_regenerate|i:1667062823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912c34e36c4f7c486f3f2837a699ad3a18dc5863', '172.105.247.100', 1667062823, '__ci_last_regenerate|i:1667062823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa5f1a3769bef98a0b552a5ab4933178b4505088', '172.105.247.100', 1667062823, '__ci_last_regenerate|i:1667062823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a39491358d9d9efe63695af9bcb006a1c11aee9', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b139a20d9008de511923752279aee53496c1a93f', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be3400019b7e70902cfcace35c62d3593f84168', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9f4be6adc4c3da4bc356c34ade86da67ed4848', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7680b4e279bd250d8d78223990007ea2e986af9', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ddeb4b68b5e533d24c6e5460225f6c9668d7bd9', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc19fa858df9a35881844c3d5f1727341ea92b6', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2efcd2098ea55046f3942156a1ea229cfbadb060', '172.105.247.100', 1667062824, '__ci_last_regenerate|i:1667062824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1027dad4d069bdb6a9df752f1183438646915aa', '172.105.247.100', 1667062825, '__ci_last_regenerate|i:1667062825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b93aedee25eb2d51e6740b085a6f60d8da5fd4', '172.105.247.100', 1667062825, '__ci_last_regenerate|i:1667062825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39458c28d3c50a2223c66c935c3ec6c103d17764', '172.105.247.100', 1667067025, '__ci_last_regenerate|i:1667067025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47fa69a7c6cc10da9fccbcc8b8dc0602976780ee', '172.105.247.100', 1667067025, '__ci_last_regenerate|i:1667067025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b157c38df3480da49e9c5b938da9b037de4be639', '172.105.247.100', 1667067026, '__ci_last_regenerate|i:1667067026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee748952c7c2c938a11382591adc168f90ca918', '172.105.247.100', 1667067026, '__ci_last_regenerate|i:1667067026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4b23a037834e1998ef24496b6960370967feb0', '172.105.247.100', 1667067026, '__ci_last_regenerate|i:1667067026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087d8696a1dad5c772eaa80e5c9a018dc06230ec', '172.105.247.100', 1667067027, '__ci_last_regenerate|i:1667067026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d3f9b02f494e9e14f8e0122cc7932158cec3e0', '172.105.247.100', 1667067027, '__ci_last_regenerate|i:1667067027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b3414b637038a389b52b9db386ac94ff7dad83', '172.105.247.100', 1667067027, '__ci_last_regenerate|i:1667067027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55f60c33d6a8b65aa0c9ac83551965712d6745c', '172.105.247.100', 1667067028, '__ci_last_regenerate|i:1667067028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bb74f62175b97a9c78da7e2569796d311b25bb', '172.105.247.100', 1667067028, '__ci_last_regenerate|i:1667067028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6f3b0f3be0f7439bd5abeda7251252cc529399', '172.105.247.100', 1667067028, '__ci_last_regenerate|i:1667067028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbffa23839f5a687b60d53379853820dc94be92b', '172.105.247.100', 1667067029, '__ci_last_regenerate|i:1667067028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dcab54b490e484b0692f6eceba117582ba7a355', '172.105.247.100', 1667067029, '__ci_last_regenerate|i:1667067029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c95ee02d35d5c93fbb03a48f6bd4002e51f5a4', '172.105.247.100', 1667067029, '__ci_last_regenerate|i:1667067029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12806dcb557c6590b828e48063502fb08845c736', '172.105.247.100', 1667067029, '__ci_last_regenerate|i:1667067029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('886e4f66b0b8c5e99708146b02f83fea3cf68d14', '172.105.247.100', 1667067030, '__ci_last_regenerate|i:1667067030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8e21fd2d7bddf370a97816b10c28175b48206c', '172.105.247.100', 1667071222, '__ci_last_regenerate|i:1667071222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0799d627349412758786906279a4b61e067737cb', '172.105.247.100', 1667071222, '__ci_last_regenerate|i:1667071222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fd09f030e1a8f9e856a0b19202bf0f9cea965a', '172.105.247.100', 1667071224, '__ci_last_regenerate|i:1667071224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d059bfd5140a16cd1bc1bc9aa8b9ed8ab8160b25', '172.105.247.100', 1667071224, '__ci_last_regenerate|i:1667071224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b1d02a2220588c550001f34506d2984ab6642f0', '172.105.247.100', 1667071224, '__ci_last_regenerate|i:1667071224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc4566be5188bb5af0b00477d0e94b2db66fc11', '172.105.247.100', 1667071224, '__ci_last_regenerate|i:1667071224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f875c4d12a2701e028805ae40730d88c49ea723a', '172.105.247.100', 1667071225, '__ci_last_regenerate|i:1667071225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('313a861d681af28712cd8f1c46ecdda499d2f500', '172.105.247.100', 1667071225, '__ci_last_regenerate|i:1667071225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3242b248ac85716e29f43b09db613188fcf7304', '172.105.247.100', 1667071225, '__ci_last_regenerate|i:1667071225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf5a54b66921766084b0f0646954a1aa086daed', '172.105.247.100', 1667071225, '__ci_last_regenerate|i:1667071225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ad784ac3461a8cc7e6175b9e51999371416bd1', '172.105.247.100', 1667071225, '__ci_last_regenerate|i:1667071225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562858a05bd8b8341239a7e1c475410c3e3e5db0', '172.105.247.100', 1667071225, '__ci_last_regenerate|i:1667071225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc591e7458b8714667cc5fb5fe12b57bfdbcb62', '172.105.247.100', 1667071226, '__ci_last_regenerate|i:1667071226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930acf2ab5120bada8632d2b0d1ad196bca0ed79', '172.105.247.100', 1667071226, '__ci_last_regenerate|i:1667071226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e674972455a915227888bdaa3c1c65c2a40f115', '172.105.247.100', 1667071226, '__ci_last_regenerate|i:1667071226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1e31a06942daa005089133ec5ceba4da0ad98d', '172.105.247.100', 1667071226, '__ci_last_regenerate|i:1667071226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b6379f2c3b4b1d3cdb4769d2644e819490d182', '172.105.247.100', 1667075424, '__ci_last_regenerate|i:1667075424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f609b5f1eedc6a4a06164a562379aa1e2251928', '172.105.247.100', 1667075425, '__ci_last_regenerate|i:1667075425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c96b472e0f436249909caad918e2baca6dd239a', '172.105.247.100', 1667075427, '__ci_last_regenerate|i:1667075427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4792b895046658339f369f0e02cf665d27a5d227', '172.105.247.100', 1667075427, '__ci_last_regenerate|i:1667075427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd7d8736de7526f6d1b4febaae202aacdb01a7e', '172.105.247.100', 1667075427, '__ci_last_regenerate|i:1667075427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4526e546cd89af184d772da9d507f3cbb4af1b60', '172.105.247.100', 1667075427, '__ci_last_regenerate|i:1667075427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48467d23fa7a7f142da2a3f4b1974213faa4d46', '172.105.247.100', 1667075427, '__ci_last_regenerate|i:1667075427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84247628d5b82a96c0b2a157c67744314e8c9e72', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7d1124c5e505aa4c580cb5081d85256ddc1793', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873ebf900a758c5cf1f7ff4831b3e30b6d6e5793', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b791d42bea910e744bca27bb8b10106ec140ff9', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b6890e0ada932654965c65635077c5afd70793', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0c164e897c4df730530c47334a80c9a7de1bb5', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c60e034ce3f2aa065b38cd539da2fc0135be46', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520de9ea0dc297f4c0a3051ae40cd18fd1ee6efc', '172.105.247.100', 1667075428, '__ci_last_regenerate|i:1667075428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44e41e738cedcb5aff21a15b67d2d419c170c63c', '172.105.247.100', 1667075429, '__ci_last_regenerate|i:1667075429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9158219e68d8d2c0e258ff7a550ead59cb23e5b6', '198.235.24.23', 1667077564, '__ci_last_regenerate|i:1667077564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ef31c41b75674503cc49785d1dfc877660eb39', '198.235.24.23', 1667077566, '__ci_last_regenerate|i:1667077566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b75a5727e0e6c1656b2fb0c0aa117b1675c7852b', '198.235.24.23', 1667077566, '__ci_last_regenerate|i:1667077566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c9afa919af5c9bb937597890c0f5a9e9f45632', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba2512a1bb2a13389ff10698b04cfeeae31d3dd', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408d51e16d6b2095895c68a6d97fae9aa9aac0f8', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a28d9bfcaf8a0ee14afe034f51bbfd6b96ce5cb', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252f772e1e30a134bd43e77aa2eaba8dfaa145c0', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8186bc42ea95736ef74cba0708154a93787e4d71', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa006c127c1e7b26778f5fb97b99ad04a0ed7709', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d635b4558edc9c58b67977dd47db56700bc5ef9', '172.105.247.100', 1667079622, '__ci_last_regenerate|i:1667079622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1f43fb31bb7d0916f95c211cca2f1a164a2365', '172.105.247.100', 1667079623, '__ci_last_regenerate|i:1667079623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfe9b895969a3153de82cb542c66c59ba0f7401', '172.105.247.100', 1667079623, '__ci_last_regenerate|i:1667079623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff34f6863da91f45d421f8f1bb261304e65bcead', '172.105.247.100', 1667079623, '__ci_last_regenerate|i:1667079623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483465cbbf04f3851b4be0d4007846cf27d51292', '172.105.247.100', 1667079623, '__ci_last_regenerate|i:1667079623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3257736a8ea862eb2de5a53654e29c18608a9427', '172.105.247.100', 1667079623, '__ci_last_regenerate|i:1667079623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d39a31ae4192a5b4c9ebfe3d11f4d5f41b841834', '172.105.247.100', 1667079623, '__ci_last_regenerate|i:1667079623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba14c92a9c6166ddeb02541aba4dea93c3c8e93', '172.105.247.100', 1667079624, '__ci_last_regenerate|i:1667079623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deca1415b7669adf5879a94747c4f51468d5712f', '172.105.247.100', 1667079624, '__ci_last_regenerate|i:1667079623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4411378372fe2e78156e1a1d3b15a85310f37895', '172.105.247.100', 1667083820, '__ci_last_regenerate|i:1667083820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ea8360b9faadc98b41dfeb527786c1059cbf95', '172.105.247.100', 1667083822, '__ci_last_regenerate|i:1667083822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9799434f60035ea65e3462eee48f5a1d89281f28', '172.105.247.100', 1667083823, '__ci_last_regenerate|i:1667083823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6297b4f69963cf8e526b27d89bd8190b0e08a97', '172.105.247.100', 1667083823, '__ci_last_regenerate|i:1667083823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766728e7e7b23a405b9b086cc59795f832d83d1b', '172.105.247.100', 1667083823, '__ci_last_regenerate|i:1667083823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89962baf4cb4b4d3264b4bbb028983b9e220a6b7', '172.105.247.100', 1667083823, '__ci_last_regenerate|i:1667083823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af93b66bba65bea5a88f42133f6e71f579a41b6e', '172.105.247.100', 1667083824, '__ci_last_regenerate|i:1667083824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b2d3c5e558d51dc97223e5ae188971c045152f', '172.105.247.100', 1667083830, '__ci_last_regenerate|i:1667083830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569aa89351a84ebeefed4c664878b364793c440c', '172.105.247.100', 1667083830, '__ci_last_regenerate|i:1667083830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f5c9a44cd1b3695d4114646f6b9e3e6ebde3d43', '172.105.247.100', 1667083830, '__ci_last_regenerate|i:1667083830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b552e0b614b6a4d34e7c1c5c82abee9ec25950', '172.105.247.100', 1667083830, '__ci_last_regenerate|i:1667083830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8a4d773b5019e690f471159726a4a9d085feca', '172.105.247.100', 1667083830, '__ci_last_regenerate|i:1667083830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59b971f9154caba42e09fbbac5606c3322a25b4', '172.105.247.100', 1667083831, '__ci_last_regenerate|i:1667083831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec5aa9c834b8f1ee6237b308103f8c56db90870', '172.105.247.100', 1667083831, '__ci_last_regenerate|i:1667083831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4ccad2ad8bc1dcc8be6576d3c63c00cf63bab7', '172.105.247.100', 1667083831, '__ci_last_regenerate|i:1667083831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6012cda316d7cb1c66a5b7b47b32901797d16981', '172.105.247.100', 1667083831, '__ci_last_regenerate|i:1667083831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138a7a3846090c21e08ad3a30dcec000c0bc07ba', '34.140.248.32', 1667084736, '__ci_last_regenerate|i:1667084736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a02901d25ff3275d73985f242d3171bb04058cf', '34.76.96.55', 1667084738, '__ci_last_regenerate|i:1667084738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e873e0022f207552175401a3dfa283514ee3510', '198.235.24.16', 1667085286, '__ci_last_regenerate|i:1667085286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b58e36a61ec06b8f3fcb5890bcf0a0483bc3bd0', '198.235.24.16', 1667085287, '__ci_last_regenerate|i:1667085287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6cbb68f123b032f101a8413ca57df3e4635a45', '198.235.24.16', 1667085287, '__ci_last_regenerate|i:1667085287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96798c95aff8014a7148fa173f63f892584cc1f', '172.105.247.100', 1667088022, '__ci_last_regenerate|i:1667088022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165121bfb156a58766f8c96ad3eef8d3a2f9550e', '172.105.247.100', 1667088022, '__ci_last_regenerate|i:1667088022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21d835f3364e32d30b80c63a8fcbc88fcab9075', '172.105.247.100', 1667088022, '__ci_last_regenerate|i:1667088022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa7a35382bd4ea5e927d1d22600cfc0837cc8f1', '172.105.247.100', 1667088022, '__ci_last_regenerate|i:1667088022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7124940116777652d2119c91a0ab375e0ef662', '172.105.247.100', 1667088023, '__ci_last_regenerate|i:1667088023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0adaafe7279f6ccd0ffbc03af2c2fea388fa95', '172.105.247.100', 1667088023, '__ci_last_regenerate|i:1667088023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d14225df1f01302fb1d114fa3649ab2bea74c9f9', '172.105.247.100', 1667088023, '__ci_last_regenerate|i:1667088023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f676ea226e9e211e38ef5209d1549a171a72080f', '172.105.247.100', 1667088024, '__ci_last_regenerate|i:1667088024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb66aafbad74d757834ebb1a59e0f501dc7f120b', '172.105.247.100', 1667088024, '__ci_last_regenerate|i:1667088024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93affcba527dfa67f00dfbc2c6b792c75b7906e7', '172.105.247.100', 1667088024, '__ci_last_regenerate|i:1667088024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a1f7d534d1f4fc93bdd5d0e897e6b47869ca77', '172.105.247.100', 1667088024, '__ci_last_regenerate|i:1667088024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d936fd79ec1d8fa9fd54aca95db28889effe0c32', '172.105.247.100', 1667088025, '__ci_last_regenerate|i:1667088025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdbbf883fcdeda3a8c68f0001d3fc388dd74246e', '172.105.247.100', 1667088025, '__ci_last_regenerate|i:1667088025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22023805bc18e3a4a258afa62897abffe5bd9585', '172.105.247.100', 1667088025, '__ci_last_regenerate|i:1667088025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e40e5415c96e6722d3e1c5603e958e1301a221c2', '172.105.247.100', 1667088025, '__ci_last_regenerate|i:1667088025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6954c03b1667b0811867a67af40857eaf221b1e', '172.105.247.100', 1667088026, '__ci_last_regenerate|i:1667088026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e97f4d25a37ac430dfea2dc83da23eb342e87a3', '172.105.247.100', 1667092221, '__ci_last_regenerate|i:1667092221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eba471ddc98b2a7ec79a71c9e92a75a011c0cdc', '172.105.247.100', 1667092221, '__ci_last_regenerate|i:1667092221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d24bd28f975600c5e57565319ba06164d0c921d', '172.105.247.100', 1667092221, '__ci_last_regenerate|i:1667092221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9776d1e5862e1308e117c37bde68a08209d0856', '172.105.247.100', 1667092221, '__ci_last_regenerate|i:1667092221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7914d2f244c7922ab67ff54e4d6e321cf3b85fc0', '172.105.247.100', 1667092221, '__ci_last_regenerate|i:1667092221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a5743080eb9b1f9c32c67cfe0146fb108b80f86', '172.105.247.100', 1667092221, '__ci_last_regenerate|i:1667092221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea49e86e72b8be03f4d1f64109e8531096c3eca', '172.105.247.100', 1667092222, '__ci_last_regenerate|i:1667092222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d951b426738c635327d3346cd62ac83217ad7e4', '172.105.247.100', 1667092222, '__ci_last_regenerate|i:1667092222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1e1a5b28166815c723a8b6d06a7e72cc7b8d54', '172.105.247.100', 1667092222, '__ci_last_regenerate|i:1667092222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb3a0645cda34509aa2f48fd48b4cb67428ba10', '172.105.247.100', 1667092222, '__ci_last_regenerate|i:1667092222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c215076f2ab121d4f5ec860855dc4e26f1b1db', '172.105.247.100', 1667092222, '__ci_last_regenerate|i:1667092222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acbfeee047aceecaffe82417f6acc92d78770bda', '172.105.247.100', 1667092222, '__ci_last_regenerate|i:1667092222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15335584ab1bd254be3a3196fab35012eeb9dec0', '172.105.247.100', 1667092223, '__ci_last_regenerate|i:1667092223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01506e2f99eab471831e745dffe8ec8668ee8bd', '172.105.247.100', 1667092223, '__ci_last_regenerate|i:1667092223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142e4f42b4c2d59374aa45183c6a36d996588ae2', '172.105.247.100', 1667092223, '__ci_last_regenerate|i:1667092223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121abb67a8ea51fafe70252fae560ec42e9254e0', '172.105.247.100', 1667092223, '__ci_last_regenerate|i:1667092223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e6c98f92e15f8ea41c65e7fdbba88138ca98b0', '172.105.247.100', 1667096423, '__ci_last_regenerate|i:1667096423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e48c0375a36bdaff0ce298f73a87d494cd251e4', '172.105.247.100', 1667096423, '__ci_last_regenerate|i:1667096423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77774804f792fe2335a698e444a4abda51f212a', '172.105.247.100', 1667096423, '__ci_last_regenerate|i:1667096423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012a289460e7aa663ab61b02a642e26cce4a0eef', '172.105.247.100', 1667096423, '__ci_last_regenerate|i:1667096423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7e08db9d23ec130a6be0d8a9bdc566fd7b38bcd', '172.105.247.100', 1667096423, '__ci_last_regenerate|i:1667096423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7fe96115343e616b24e10578dbe6d6868a9e8cc', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da092dc0ad4d110cf0ff7122090f77d26c68633', '172.105.247.100', 1667096423, '__ci_last_regenerate|i:1667096423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77ed3fc8afc6962e5c35048d65e6716919f46f0', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('226245301111df96edcb2018ad5c322026d6de1d', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a63de3ce2f6c477b738e29e4b9b683f5b0304d', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358de0e0ecdfd368feb08d8640686e32597c6dfb', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57db80aa40a55cef549eecd2a60c69351aafa4c9', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d836349038a4ac4474764a3b385aef6f4d8a62', '172.105.247.100', 1667096424, '__ci_last_regenerate|i:1667096424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1c330eafeaaa60b07297b84b575bf5de21d19d', '172.105.247.100', 1667096425, '__ci_last_regenerate|i:1667096425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('086241bc690392847633954e94d085b720c44893', '172.105.247.100', 1667096425, '__ci_last_regenerate|i:1667096425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf9b30672a8c092b61608d79286675d3f57599c', '172.105.247.100', 1667096425, '__ci_last_regenerate|i:1667096425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7416a7b208d29123d4e6a573f93dd9225a764c58', '172.105.247.100', 1667100622, '__ci_last_regenerate|i:1667100622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51abbbcf1de8b718cae9e8bcd8658cbb71ca5428', '172.105.247.100', 1667100623, '__ci_last_regenerate|i:1667100623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea505da032051d29f46a087bdc1f01411daeeee', '172.105.247.100', 1667100624, '__ci_last_regenerate|i:1667100624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74c144a30d1be1a5009e37be61d0a2b3119739d', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf3b29389029b7ffc45ccb0f3f665792b0713fc', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47666aafc62cc4f9bf90c6adad9bd592295167e', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bba06b7ddee7e9276af30b7e09bfd145e3445a', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6aa88a68c55785ce5dd9d21773205f19b7517a6', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777691c2ff25366f5e0c0312095e8f03014264a8', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2609644d6f30f5b8279eb935b5af68828d92a6c', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c96810ae446d12722225cecfb679f831bc8b982', '172.105.247.100', 1667100625, '__ci_last_regenerate|i:1667100625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab4150fbdc61182844f636ecc1ff347a962e811', '172.105.247.100', 1667100626, '__ci_last_regenerate|i:1667100626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85fa12adf1e198866857259a839d086dc6ca15ae', '172.105.247.100', 1667100626, '__ci_last_regenerate|i:1667100626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a46f64b79710661b64cbb86a92e2c76f32f48e', '172.105.247.100', 1667100626, '__ci_last_regenerate|i:1667100626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9c3d2176eeda4c6d76cc294f84e33d788b5c4f', '172.105.247.100', 1667100626, '__ci_last_regenerate|i:1667100626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b6cda8be8a69a6e53ee0466bbfec33dc4a55cc', '172.105.247.100', 1667100626, '__ci_last_regenerate|i:1667100626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f4858475c35c0606505f8925936c9e8719aa78', '172.105.247.100', 1667104820, '__ci_last_regenerate|i:1667104820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13947943e3fc5156ada0dd9bb559d0754c688bf8', '172.105.247.100', 1667104823, '__ci_last_regenerate|i:1667104823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cca9764d2900fa8da67f64c23687bbf38c25b78', '172.105.247.100', 1667104823, '__ci_last_regenerate|i:1667104823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e23eac7bbbd8cb3cbc8b744b6f160bdb1e855d2', '172.105.247.100', 1667104823, '__ci_last_regenerate|i:1667104823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f275bdfd437cf123990b9a0b954679b099693c1', '172.105.247.100', 1667104823, '__ci_last_regenerate|i:1667104823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91dff30ebf4cbe4e6b862397c8e2e474e6312d73', '172.105.247.100', 1667104823, '__ci_last_regenerate|i:1667104823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a1fe340851bb801d87defc3be4d7ac77b1d9ea', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be30e4bd89a4467cbdaf6a569da8e8cf3711dd70', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b0ce4db50902f79967170feeec9636734e1c54', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583e020e60c09d49e64b4fbe09fc1483ba4b45fc', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e7a58e36792489d452a7e1eb9394bf36a369a0', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1012ee17cd0bd740c51b158ec8733b983429eba2', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f646b0d2b3e9c2c0deebd1625bec4d26c508cfb7', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699b6a3196d1bf8aad5c30b43d5d037fef02d208', '172.105.247.100', 1667104824, '__ci_last_regenerate|i:1667104824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c0e97394cb17c6d8bde420f8d73ef9a4ab97d1', '172.105.247.100', 1667104825, '__ci_last_regenerate|i:1667104825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ee55a3060ca2f1d0d553ff8811d2b276f63746', '172.105.247.100', 1667104825, '__ci_last_regenerate|i:1667104825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('268019758eae857a3fb3fa99c7d2c8b02c49c322', '198.235.24.38', 1667106178, '__ci_last_regenerate|i:1667106178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fdb274103b8f5cbc1d7a967b337d37e93926ee7', '198.235.24.38', 1667106180, '__ci_last_regenerate|i:1667106180;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ffdf46d9ae84d1c7534c5cdb78953b01ecef9da', '198.235.24.38', 1667106180, '__ci_last_regenerate|i:1667106180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe8e579853843d80795ddf0f661967c3397857f', '172.105.247.100', 1667109026, '__ci_last_regenerate|i:1667109026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a54961f44bcf559277f784e7e84280ca8f4b10', '172.105.247.100', 1667109026, '__ci_last_regenerate|i:1667109026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92688e720d79408dc7a5465286e8a3c8fc664aaa', '172.105.247.100', 1667109026, '__ci_last_regenerate|i:1667109026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea68a456b529cc344359e4aa199e8abbe4d15af', '172.105.247.100', 1667109026, '__ci_last_regenerate|i:1667109026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1834db686d0ef02932a594a2e11209484ea221e3', '172.105.247.100', 1667109026, '__ci_last_regenerate|i:1667109026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4291a7f785900497df815739a6900bf075c9cae', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3462b6135a5d7dee81c8b79cd291c166477bce', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c651ea0fc9d0bf18644e530a028c588462fe61b', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9d4f1069fd80043acc44724779fa0de99f3484', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fbbc432b1fce78abc4393522fe3dbda09007c3', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd9fa2408fb13333cc7b1dddfda530fbeca97de', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b973d7dbff7de4a1980d4be40f8d16a56ebb424c', '172.105.247.100', 1667109027, '__ci_last_regenerate|i:1667109027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2055a9e7c77d8357fe97502025be5e325442bb74', '172.105.247.100', 1667109028, '__ci_last_regenerate|i:1667109027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5034be5aed63fa5f2fe38a33681f6c2ba2c1703e', '172.105.247.100', 1667109028, '__ci_last_regenerate|i:1667109027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1b402c225ee09956d6b748df1dd165619efd19', '172.105.247.100', 1667109028, '__ci_last_regenerate|i:1667109028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4fe775aaf19f733b3b24c9aa66d9b369f08561', '172.105.247.100', 1667109028, '__ci_last_regenerate|i:1667109028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1452c8ffede235a0cb2ea37a64c6039ab4c264dd', '206.189.112.203', 1667109743, '__ci_last_regenerate|i:1667109743;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72397a143988f53c5c2f1237cb3ef7ea70375465', '206.189.112.203', 1667109743, '__ci_last_regenerate|i:1667109743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f825fad37df9d70b93a353d535929435126ae63b', '206.189.112.203', 1667109744, '__ci_last_regenerate|i:1667109744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1fa2932a604965ce88cfadc9403169c03be6af', '206.189.112.203', 1667109744, '__ci_last_regenerate|i:1667109744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f788403cd2c83cc90b39a287c2107142c04dc41e', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f056a7ee1ada4646ca6f465f5ce0bf36ad2edbf', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a48c24f2ae2b7fd0c52bb24b289f8b5479b9c53', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7f0cf964697645042a74e3428fe4eaf3c2c9ec', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a387c4313a88421d062605b0cee808ab40e8583', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1d4e7bba95d68abfe0d361017a760e4d88f739', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23328d355d5165986ebe22f58eda8eea6017f538', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('801417788f09b444c9589367cb32cb27ba1704a7', '172.105.247.100', 1667113222, '__ci_last_regenerate|i:1667113222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac81dcc638a201859306ffe3c572aeb58a3d5930', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de52a95aff40ba51e66fab999625599b1ce89012', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441ef66433bd856d145c27f35b846e44e68c4336', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9532a38cf566df113561cdf4717288818958f77', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdc635cc1826763ab2d5cf6c26b319a26729e8b', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006c8a0a2171a46d60ea8a1ac69c6332613b8b82', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06805db635c582a33c422191062a7e316c79149d', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('693fa509ee0872cf2eb6765b62a46b2e05619041', '172.105.247.100', 1667113223, '__ci_last_regenerate|i:1667113223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeeda95bfbd9daeed34190c28a48b7f59e0f2eaf', '37.111.218.138', 1667122192, '__ci_last_regenerate|i:1667122192;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667018502\";last_ip|s:14:\"37.111.216.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667121342;register_id|s:3:\"233\";cash_in_hand|s:9:\"1020.0000\";register_open_time|s:19:\"2022-10-29 20:56:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f18645be1953293c13cc1ef7c4f85bc6f34f4a', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af014b16e0b403b3022169374470f4d956085be0', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19aea0d204901e031761be1a19221e3e5ce15d44', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e096dba2d635a78295e8baac88cb26862c786bed', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b73fc78ae510fe4248ad15ffea7e3a0caebd395', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e6172d005dd6c32ef81478ca7cc98c6ebeeb8c', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729024fccaf9326da3b617371fa13a758f2b6bf4', '172.105.247.100', 1667117422, '__ci_last_regenerate|i:1667117422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c956c509751c8ad2ceb621dc2c8d51b9974d15', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a45ccdd4ec1409ef88e0047cbba4c0a811bcd7', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7798b7062069707bedc9be5b52b9b8050e466d4', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7057fea670121f170cb067fc6eda6210c652ef0b', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a300111be43cdc33a667e99e26d169d5ff559c', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213942fc6e7a60ae4985d0a52c69d19973f0a6b5', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad12f02e228fcefa948014c9ff5cafebd89973db', '172.105.247.100', 1667117424, '__ci_last_regenerate|i:1667117423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5a861ff57b769fd4ed3b55c0538fb71b6bfbb6', '172.105.247.100', 1667117423, '__ci_last_regenerate|i:1667117423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4be2a14b346f1d09053dd0caec7aa1f1269c5b1', '172.105.247.100', 1667117424, '__ci_last_regenerate|i:1667117424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab1b244fcb0ca26a66cf231e3a802d02dc43c02', '147.78.47.249', 1667117457, '__ci_last_regenerate|i:1667117457;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc9c36da2b7f172074f43520b3d1d65d04db270', '147.78.47.249', 1667117459, '__ci_last_regenerate|i:1667117459;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296b05b3d09542e29c6cfae99b233028e515aa52', '147.78.47.249', 1667117461, '__ci_last_regenerate|i:1667117461;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4e0f84584127b7906ad3a1574608bb79f50907', '172.105.247.100', 1667121623, '__ci_last_regenerate|i:1667121623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e55922db3c44d06d86299a8ae40af4e710e9033', '172.105.247.100', 1667121623, '__ci_last_regenerate|i:1667121623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df29fcb1a97c8de7d3aaeeefcf702939dd03e2c', '172.105.247.100', 1667121623, '__ci_last_regenerate|i:1667121623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f469e61f44ffe895acf6cdbceeb011a99bda4fab', '172.105.247.100', 1667121623, '__ci_last_regenerate|i:1667121623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d06fb6bd0a9fc77f105ac1c66b0c389ef61c2e', '172.105.247.100', 1667121623, '__ci_last_regenerate|i:1667121623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e171761cd382e81653ee3c91afebe6bb6b4ea0', '172.105.247.100', 1667121624, '__ci_last_regenerate|i:1667121624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13d8d595251fe2aa95bcc72d53e1897c56a5d50', '172.105.247.100', 1667121624, '__ci_last_regenerate|i:1667121624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d485ca8d07fbb7a3bb59032ec38c69292851d3a2', '172.105.247.100', 1667121624, '__ci_last_regenerate|i:1667121624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5234fd1a28261e43db726f7768648767cf286a14', '172.105.247.100', 1667121624, '__ci_last_regenerate|i:1667121624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41edec77c07b7974e5d51d158874f01848d58031', '172.105.247.100', 1667121624, '__ci_last_regenerate|i:1667121624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('293cbbde598e18c944c642545f8435a0b40ca4a8', '172.105.247.100', 1667121624, '__ci_last_regenerate|i:1667121624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c8fca5d103dd3f4a19f8d69cf0400c3d9c154c', '172.105.247.100', 1667121625, '__ci_last_regenerate|i:1667121625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e2a4ebe48bc5bcb732d5c151df735a4a832f09', '172.105.247.100', 1667121625, '__ci_last_regenerate|i:1667121625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4353c2e56365bf0cecc980e4de605c3af6ff7a7', '172.105.247.100', 1667121625, '__ci_last_regenerate|i:1667121625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a351a6e5ffadb003de6d5136f537c728173e72fd', '172.105.247.100', 1667121625, '__ci_last_regenerate|i:1667121625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c4db03701041921054290e6bfeee34a54b1ddf7', '172.105.247.100', 1667121626, '__ci_last_regenerate|i:1667121625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223503ec760e9055f9c0e4a001b4301281162e88', '37.111.218.138', 1667122375, '__ci_last_regenerate|i:1667122192;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667018502\";last_ip|s:14:\"37.111.216.139\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667122374;register_id|s:3:\"233\";cash_in_hand|s:9:\"1020.0000\";register_open_time|s:19:\"2022-10-29 20:56:45\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a54e74be00af1fff9dab3bef82ebe9b17270d53', '172.105.247.100', 1667125824, '__ci_last_regenerate|i:1667125824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3babd4b7e62462668d81f9f918438ca8d80ebf59', '172.105.247.100', 1667125824, '__ci_last_regenerate|i:1667125824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('464a50eb5f8457f9676ed4b013a83164c9f888cb', '172.105.247.100', 1667125824, '__ci_last_regenerate|i:1667125824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40cd5d978de37d622d68d2275165739383c3a832', '172.105.247.100', 1667125824, '__ci_last_regenerate|i:1667125824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251ad3687c67efac0609fd900919414117a9e1ad', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661f0653641c920ba76e474e561a2693275ce629', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0933ce24ee6bd98710f5c48c6b2732edd8cedb', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e85821d4ae6f8a41a94d340fac314516778691', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d575317efdc00247915aec04e098ba661ea5c15e', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b996baf7eee8e04ac09eca16088679ba4b5b5d0', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd2c6cb0d2114c1e6ec4bb76601a141e51b7bad', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e93db5ed6c9a94faa477976845c7d1b46336420', '172.105.247.100', 1667125826, '__ci_last_regenerate|i:1667125825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ba096ca41e56f50114b3764d7c8e81c835197c', '172.105.247.100', 1667125825, '__ci_last_regenerate|i:1667125825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd2dc07d9c5c64d0863ea6eecb55a0ec5f3dcbd', '172.105.247.100', 1667125826, '__ci_last_regenerate|i:1667125826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c432c9d12fc96ea2d6768866818f00afbbf748a', '172.105.247.100', 1667125826, '__ci_last_regenerate|i:1667125826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e1b8e1c94d8eb791482c1c3f65a5e3dca9d83d', '172.105.247.100', 1667125826, '__ci_last_regenerate|i:1667125826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d58eae1920823b664893ffeaddd905e1bd41944', '172.105.247.100', 1667130024, '__ci_last_regenerate|i:1667130024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('689ddbf26fb86a7f704d921210b1bd09e00ffbd3', '172.105.247.100', 1667130024, '__ci_last_regenerate|i:1667130024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5170eab2f4c0df7281c208a38a981e4d553f6879', '172.105.247.100', 1667130031, '__ci_last_regenerate|i:1667130031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebf939ee6bcea0e45177e129ec9b9f1c9f19659a', '172.105.247.100', 1667130031, '__ci_last_regenerate|i:1667130031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86c80f0ecc7dafed5991e865ee5191f5b448eb0', '172.105.247.100', 1667130031, '__ci_last_regenerate|i:1667130031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('facfcf752403167e894b64a72ff7f95537419e97', '172.105.247.100', 1667130031, '__ci_last_regenerate|i:1667130031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4482505f9411ebe880f2e1857f445add11cab835', '172.105.247.100', 1667130032, '__ci_last_regenerate|i:1667130031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074de9b04ae9ac01d9e2bc5d79ab9d69056e37f3', '172.105.247.100', 1667130032, '__ci_last_regenerate|i:1667130032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0441741fd261e8d80ac47206d292798817e2a76e', '172.105.247.100', 1667130032, '__ci_last_regenerate|i:1667130032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8dc93c323eed623e13728b0af9693a4b566ec2', '172.105.247.100', 1667130032, '__ci_last_regenerate|i:1667130032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ef5337bd7265be302bcb3db78691e567681a0a7', '172.105.247.100', 1667130033, '__ci_last_regenerate|i:1667130033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0f8c3d8998f045e203a34e4bd094aaea24786c', '172.105.247.100', 1667130033, '__ci_last_regenerate|i:1667130033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800214278ad4c72bd6fa612b050491ae1496ae44', '172.105.247.100', 1667130034, '__ci_last_regenerate|i:1667130034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961da3d6ac9bc982a819f5c7fe095c4cab19abd0', '172.105.247.100', 1667130034, '__ci_last_regenerate|i:1667130034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ae96c04a4a07183a9f9a42b9efd7e4e833190e', '172.105.247.100', 1667130034, '__ci_last_regenerate|i:1667130034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc334086cf5f14a306d3badff21705326e68b168', '172.105.247.100', 1667130034, '__ci_last_regenerate|i:1667130034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73deba2a97b351175b1c985a4442599e797ac3af', '37.111.218.138', 1667134327, '__ci_last_regenerate|i:1667134327;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667117121\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189751ec8ecc8aa31976ae77d3adcadd0844a24d', '116.204.230.18', 1667133524, '__ci_last_regenerate|i:1667133432;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667019479\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85c8b10293ee03c38b5d23760f3377e92474cdab', '172.105.247.100', 1667134221, '__ci_last_regenerate|i:1667134221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('824889895efe5a31a4ff8a6030e01181db423708', '172.105.247.100', 1667134221, '__ci_last_regenerate|i:1667134221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0828144d18a9c8bbb0952647181fa8a205f5d3af', '172.105.247.100', 1667134222, '__ci_last_regenerate|i:1667134222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c77f508a5e6ff6f4f55d3b3e07d87dd8dbfc72', '172.105.247.100', 1667134222, '__ci_last_regenerate|i:1667134222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a20c2ed6ac07420bf57aef58edbffcfadbd8b5', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae9aa41f7001b964be7b9b7c0c553caad9cfe6ac', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('810ce32b4c119b119aa4e69fe91443917f0d97db', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0fc7d0a07edce776f6e3cb32d0f5eab7422679', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df4ee5dde0d76ac0edd6517727ea148f8b42adf', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de7c7526f1b4231a6c6a0db41850a25346d2e31', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1761370e1916eec6c2b357d8db49380912e029ff', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca0e5741921bdf5f606e613ae753ba0e2c7de7a', '172.105.247.100', 1667134231, '__ci_last_regenerate|i:1667134231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d53902e840908d23c0d6c19d9254f1a32d16fd', '172.105.247.100', 1667134232, '__ci_last_regenerate|i:1667134232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bacbbf55f9b74eeafb382dc6ac80a1b6ea1339dd', '172.105.247.100', 1667134232, '__ci_last_regenerate|i:1667134232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa14e9115eedc808d7b86c8586bb7e88262a5e3d', '172.105.247.100', 1667134232, '__ci_last_regenerate|i:1667134232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce74c819e95cf236ff6c00345afd60734108946', '172.105.247.100', 1667134232, '__ci_last_regenerate|i:1667134232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb1e07945ccad11c46302496b7b058b1cc2da6e', '37.111.218.138', 1667139218, '__ci_last_regenerate|i:1667139218;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667117121\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1667139209;register_id|s:3:\"233\";cash_in_hand|s:9:\"1020.0000\";register_open_time|s:19:\"2022-10-29 20:56:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c8ba2f49192a16185218a4ff329959eb756def', '172.105.247.100', 1667138422, '__ci_last_regenerate|i:1667138422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4d6d832f7aeb9107a9fb972d61a3dad04c99b7', '172.105.247.100', 1667138423, '__ci_last_regenerate|i:1667138423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e111a01ff9fd25a9536575e3315e2dbed47cbb3e', '172.105.247.100', 1667138423, '__ci_last_regenerate|i:1667138423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b6191a5ff1079a81f7d3dffe474a492b8be24b', '172.105.247.100', 1667138423, '__ci_last_regenerate|i:1667138423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf291b9c4a17fe68d1e097d0846b37776f155bcf', '172.105.247.100', 1667138423, '__ci_last_regenerate|i:1667138423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ae094cc0c8330e99cdaa758597d5933fb52c62', '172.105.247.100', 1667138424, '__ci_last_regenerate|i:1667138424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05249ad3c852b6523c54b569c9a8bfaee5585b7', '172.105.247.100', 1667138424, '__ci_last_regenerate|i:1667138424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cdce0af03e47dbb5fc0cfdc2eb16442934169c2', '172.105.247.100', 1667138424, '__ci_last_regenerate|i:1667138424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f319c5755424b5573a044393306b25684ab3c012', '172.105.247.100', 1667138424, '__ci_last_regenerate|i:1667138424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2323c66217804f109a413704f41c97f68745359', '172.105.247.100', 1667138425, '__ci_last_regenerate|i:1667138425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5512e46bcd19cd405fa839b774a2d91a1672dd8', '172.105.247.100', 1667138425, '__ci_last_regenerate|i:1667138425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76cf2e33aeeb045be8f70d93510d39cd5bd5cd4d', '172.105.247.100', 1667138425, '__ci_last_regenerate|i:1667138425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b64d64b09459cb881258cf52d48d33dfcc131c', '172.105.247.100', 1667138426, '__ci_last_regenerate|i:1667138426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1868dfbe6d709d21ee0cf435d8954c3f25dce4', '172.105.247.100', 1667138426, '__ci_last_regenerate|i:1667138426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8a24ea2b01cec3e87c7839fd11eef4104a7637', '172.105.247.100', 1667138426, '__ci_last_regenerate|i:1667138426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed57399976fc065636f7961a6997afb95cbd0ea', '172.105.247.100', 1667138427, '__ci_last_regenerate|i:1667138426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66bc2eda48f565e0210012c1d4af64e7d428f45', '37.111.218.138', 1667139240, '__ci_last_regenerate|i:1667139218;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667117121\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667139240;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac0728022b06f87ac6ea5905c5b2dfbea1150b1', '172.105.247.100', 1667142624, '__ci_last_regenerate|i:1667142624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e518265d88dc5bede91bb2e8d0e7ece671b3fdea', '172.105.247.100', 1667142625, '__ci_last_regenerate|i:1667142625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96e7d06d1728c3ae02d3d29ca8a32f027ea3ed6e', '172.105.247.100', 1667142625, '__ci_last_regenerate|i:1667142625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48037534d61d6f73e8913c065a3e4d69aae129c5', '172.105.247.100', 1667142626, '__ci_last_regenerate|i:1667142626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('518a1532bf96dbd715d53ae7d91fea9dad9032f6', '172.105.247.100', 1667142626, '__ci_last_regenerate|i:1667142626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b911a012c16c4035fb7b52724252b619e6f5b34c', '172.105.247.100', 1667142626, '__ci_last_regenerate|i:1667142626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2de605d321a7e77195292ddeabc2e8e22cb624', '172.105.247.100', 1667142626, '__ci_last_regenerate|i:1667142626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f31f826e97e72b31640f1e54f1dc4a0dfee8e9', '172.105.247.100', 1667142626, '__ci_last_regenerate|i:1667142626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1d1b818902c7a2e0ba480ab029db65dc5ad612', '172.105.247.100', 1667142626, '__ci_last_regenerate|i:1667142626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99cd4862d85c394d1d26c3487eff9be6c1caef5', '172.105.247.100', 1667142627, '__ci_last_regenerate|i:1667142627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae63895575443335f1485a1103d0d907a03a88ca', '172.105.247.100', 1667142627, '__ci_last_regenerate|i:1667142627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb0544de296a7144ef41c62e4448cdae53eb529', '172.105.247.100', 1667142627, '__ci_last_regenerate|i:1667142627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7164f1e458b8e803a2cd702f6f78684f8b64da63', '172.105.247.100', 1667142627, '__ci_last_regenerate|i:1667142627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2032b5bd1d1ddc26dd36ab9add398b1f9d5f381', '172.105.247.100', 1667142627, '__ci_last_regenerate|i:1667142627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b6b5610e5babd2f113a37d676c5e56194dc810', '172.105.247.100', 1667142628, '__ci_last_regenerate|i:1667142628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8fa6df718892bb54940b8afef3d4abf3dd83e5', '172.105.247.100', 1667142628, '__ci_last_regenerate|i:1667142628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef803eab56c8e83a914973e74ad6503af69d387', '172.105.247.100', 1667146825, '__ci_last_regenerate|i:1667146825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6795e3f23224169dc37d24d2b7b6adb6388599', '172.105.247.100', 1667146826, '__ci_last_regenerate|i:1667146826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab0826c42aa7663186aed1630fd7392302b10df', '172.105.247.100', 1667146826, '__ci_last_regenerate|i:1667146826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b83206fc1e7ac2dcb92acec0b3a53e13a6c8aaa', '172.105.247.100', 1667146826, '__ci_last_regenerate|i:1667146826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f20aaa8a544f442f3a6ce9610f2e1a0f1bab354', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1184b30d9c4960bcad59c666ad98f79a27425ca2', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55789b6a0ddfb6b27f5c72841fc558bac82ca8f', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab447d65c1321e312a0b5cf8f64bcc0da6196a74', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da5ba5a925729501dfd023352152573335d0fa0', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d025ea4aecc4445b312dc0777dac45fc1e35135', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd12023c39a4b85dfb9f49eedce313bfe4e399f', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9920cac8ebca6f2e193bdc03e01abfe77ea0d8bd', '172.105.247.100', 1667146827, '__ci_last_regenerate|i:1667146827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922aa005dd34d5730659cbbf40d9ec3b1f907a4f', '172.105.247.100', 1667146828, '__ci_last_regenerate|i:1667146828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dd438a90ff5d47db0241c2387f2258ed19f6198', '172.105.247.100', 1667146828, '__ci_last_regenerate|i:1667146828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c169844c24f10b2f22317c3316f5fe7310bb8a66', '172.105.247.100', 1667146828, '__ci_last_regenerate|i:1667146828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e1dbd3f32989131b971636589848b44a41167e', '172.105.247.100', 1667146828, '__ci_last_regenerate|i:1667146828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb2710ce73b6162eba77c1135b791d08d1f0df0', '172.105.247.100', 1667151022, '__ci_last_regenerate|i:1667151022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8042f51059d2a44bdf51cceb04d87e0085146cd0', '172.105.247.100', 1667151023, '__ci_last_regenerate|i:1667151023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd40c131e307968a4986990d4a81c45c431616b3', '172.105.247.100', 1667151023, '__ci_last_regenerate|i:1667151023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4ff8ba643743af5a648a30f363f4b24c9bedbe', '172.105.247.100', 1667151023, '__ci_last_regenerate|i:1667151023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56bba9676495c926dcb7bc63abe73a54fa7433e', '172.105.247.100', 1667151023, '__ci_last_regenerate|i:1667151023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83857beb80cab9472dcf9f42dcde50f1d4284d35', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed900d5ec3cbe891486e7552f0c4e50374d4755f', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c48ce3072e3315bbc978e8e6a1b3bd42d56df229', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a4255d62de5982003a3e39130db6b625859df1', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e309b8d579de87c8b7dced344189f94d75650b0', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a6402144044db2c6ad267e527c93ffc7a71fdd', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47e21e86016d06c4c3721bbc724e303094adc89', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0fb02643d527d5f7d7d084a3fc3f36ed2ea75b5', '172.105.247.100', 1667151024, '__ci_last_regenerate|i:1667151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e07832c217a5f53496ad7746cf9dd0d4f67cce', '172.105.247.100', 1667151025, '__ci_last_regenerate|i:1667151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579efee723d85e802232f40858cf9837462938a8', '172.105.247.100', 1667151025, '__ci_last_regenerate|i:1667151025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d556c9715a7cb1f6914f7adc52399cfbe87bb9', '172.105.247.100', 1667151025, '__ci_last_regenerate|i:1667151025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77b72675bef9be6c307e6147baacc5e1f8012841', '198.235.24.45', 1667154721, '__ci_last_regenerate|i:1667154721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc0d60ec42797dea64c63b069404000a599ff78', '198.235.24.45', 1667154723, '__ci_last_regenerate|i:1667154723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cef7ee9331a399ae31fdb5efd4ecf3d39caa863', '198.235.24.45', 1667154723, '__ci_last_regenerate|i:1667154723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31b0db2246a6731d4d3c2a2ff1f5da41111bef9a', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac191b11f5a705a06160a24f0d71e2f5997eee4c', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6172f0d0a5a32be2b7fc63756600521d266f23eb', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10163fbb80484e6be505dc5287e00c8f3b3a2e8', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae5a5c31f3742c9eabce1570b75e064cd4b31cf', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac54be5a1606154342310ce95f54ff34a236c0df', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607de99886873a0dc3fe0e76dbd4ad684f0c71e1', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d239339f184c2838c917f54ae54078a4c1031146', '172.105.247.100', 1667155224, '__ci_last_regenerate|i:1667155224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bf38fe30e56f2ed282748127eb10f072bbb25d', '172.105.247.100', 1667155225, '__ci_last_regenerate|i:1667155225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a3994e5717274aaaddfd973c64993ec9fc8009', '172.105.247.100', 1667155225, '__ci_last_regenerate|i:1667155225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71aa4728c8a5c34519d7eedec630cf5f015bca7', '172.105.247.100', 1667155225, '__ci_last_regenerate|i:1667155225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3dbd3e7fd2f7a4167418a9034f7eafe2d754150', '172.105.247.100', 1667155225, '__ci_last_regenerate|i:1667155225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e6f531f884ce80906a1987e639ac8440eac890', '172.105.247.100', 1667155225, '__ci_last_regenerate|i:1667155225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64ef5e716c2a6f381cfbecbddbdb547dae12e42', '172.105.247.100', 1667155225, '__ci_last_regenerate|i:1667155225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c79086514f7728b89a59c61f07d8638514c1fce', '172.105.247.100', 1667155226, '__ci_last_regenerate|i:1667155225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007373a3a38d9b8aa637e811a7459fbf58c093ba', '172.105.247.100', 1667155226, '__ci_last_regenerate|i:1667155225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7512d63b303ba054ef280b4bc7f4a7ec9f9e458', '172.105.247.100', 1667159425, '__ci_last_regenerate|i:1667159425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('591969e545e4b336bc0874c3c54e057f785313cf', '172.105.247.100', 1667159427, '__ci_last_regenerate|i:1667159427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47d89770d92a0734025c1f67fac906654690aea', '172.105.247.100', 1667159427, '__ci_last_regenerate|i:1667159427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862c4cc9e457f1c425549386bc31aa5345f2d2da', '172.105.247.100', 1667159427, '__ci_last_regenerate|i:1667159427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e2cdbad97c4aceb2bfb829b2a2c53d6801a8c0', '172.105.247.100', 1667159427, '__ci_last_regenerate|i:1667159427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733a1f56b2226912bc4a55532ecead2bf4d07f09', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5abf584c4bbd0128982cce10a5a39d4d5ca1bf9b', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6072985ac6b7314cf483b48fd02b750f0f555a8e', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ae18cab6361b2295173f83d90b4cec451b24e0', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c4383558cc2ed8bff2bb861ebbd914a3e4536e', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389011c7cb4c416cc5289e10cc6893d11c4f7ce2', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8f2d5e1fb636e554b8037fe850b183a3368bee', '172.105.247.100', 1667159428, '__ci_last_regenerate|i:1667159428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdcc64700258795263da4d18df40da9be97da3f1', '172.105.247.100', 1667159429, '__ci_last_regenerate|i:1667159429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4867b85e18143f139b18c6718d7494d9613ed454', '172.105.247.100', 1667159429, '__ci_last_regenerate|i:1667159429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dede743716a533e4e3ee9815588215bfb832238', '172.105.247.100', 1667159429, '__ci_last_regenerate|i:1667159429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a612b40397e9f07530d7e689024b85bb109933b7', '172.105.247.100', 1667159429, '__ci_last_regenerate|i:1667159429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c2041c3243f59220494553f6fa1ae73d1f5359', '172.105.247.100', 1667163623, '__ci_last_regenerate|i:1667163623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a64f14b02e404a320185e871fdf7147e7a86aa', '172.105.247.100', 1667163623, '__ci_last_regenerate|i:1667163623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15d6bcd5ddca57505a0a202d20baafa0ef8cb64', '172.105.247.100', 1667163624, '__ci_last_regenerate|i:1667163623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e342fa2243ee031d9df94714426637778aa2fa', '172.105.247.100', 1667163624, '__ci_last_regenerate|i:1667163624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4513ffde25720a7cb1571acaa99e4ba99da8ff4', '172.105.247.100', 1667163624, '__ci_last_regenerate|i:1667163624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e5f967b8398a46b5170b2dfb358db6aa6ebf8c', '172.105.247.100', 1667163624, '__ci_last_regenerate|i:1667163624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5f274716c1b48aec71f62d49c25173d2fe2e86', '172.105.247.100', 1667163625, '__ci_last_regenerate|i:1667163624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a018860302729bab061ffef66adc5e23036aee', '172.105.247.100', 1667163625, '__ci_last_regenerate|i:1667163625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d386e9f58b391d6f0d376ec833e9b81ced584a', '172.105.247.100', 1667163625, '__ci_last_regenerate|i:1667163625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58aef88309d9e6ff7a38475add1f81b3ffa86124', '172.105.247.100', 1667163626, '__ci_last_regenerate|i:1667163625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c39b043e909b69e50ae45295747813e700e16939', '172.105.247.100', 1667163626, '__ci_last_regenerate|i:1667163626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8444c44cf0423d2df926bdaa0fa4633cb841a72d', '172.105.247.100', 1667163626, '__ci_last_regenerate|i:1667163626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7d63964d35a5c6c873b7c57618727bd00048c2', '172.105.247.100', 1667163626, '__ci_last_regenerate|i:1667163626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a08ffd924048b15736bb1f53c0519b740a3e4f', '172.105.247.100', 1667163627, '__ci_last_regenerate|i:1667163626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f532caa9043999db24fba78423c9e39505ed2a92', '172.105.247.100', 1667163627, '__ci_last_regenerate|i:1667163627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6bfc6fe41b5d1355aeca823babd70efdf5756bf', '172.105.247.100', 1667163627, '__ci_last_regenerate|i:1667163627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e3b99b404dce1911a5552ae42b03eb72a595d3', '172.105.247.100', 1667167827, '__ci_last_regenerate|i:1667167827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbb9ff8e2dea1208b1045d4cac9792e88324cbc', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156b1022a644143725921c5ca69c4e40bc49da4d', '172.105.247.100', 1667167827, '__ci_last_regenerate|i:1667167827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2911ff44e7b0e06b4d1d46ab940190c52ac408af', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55bc343cdcf499ed21189622019ce7f8e782f392', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac00e89e33bc67eec44ef549788538a1c84d3f05', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('362a63b435762b96b2ef3ab7ed7e2f5c24b1a477', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d61c17c538a817ae6ea07b935d9e10e6ffd2b00', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dbfe9bb7217720c6536de66ff4031d8a7d84dea', '172.105.247.100', 1667167828, '__ci_last_regenerate|i:1667167828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e632c1f599ecc179684401ad251f50139fd3d4d0', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a915f598cfaf5da1295cfa62d407e82f51b127a4', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb25a724474a83560420843d1121c7f260ae6193', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181a60de83e6cdd9732ec17fd99c43ca457ee015', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a6e4a4b6051e3fd0e6f9a34657a75364170c23', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f6a456040f6f4f93f15a14aa34e9c93182a2bb', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d0de0247da232b658c887a4ddf413503813622', '172.105.247.100', 1667167829, '__ci_last_regenerate|i:1667167829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b578e7a3ba08061ba8cd9263afb4d7118c712ef0', '172.105.247.100', 1667172020, '__ci_last_regenerate|i:1667172020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489541d11c35bba7212908668a928565c9fc13bd', '172.105.247.100', 1667172021, '__ci_last_regenerate|i:1667172021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f30af4f3c1203a91193a992a3d58273efde4b41', '172.105.247.100', 1667172021, '__ci_last_regenerate|i:1667172021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303e05f8e46cf03ac7290401c595e11a3e4e17d1', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b31b10ccc89cc63129f67900975f5d11ae48093', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107adb15857b728d6972f394af46ce9fff152cb1', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14432bb9629be5c6124843585439279e553cb007', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b597a8bb73992bef89dea54a6839c00dfb04b8', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41b14ee73bb696b6d3f8e9152fc9b628c9a7e87', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9940ab54fc57a38d5b158557a7f4801f7c1641', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4bb58e15784ead9f6431ff8e73581d86a87ac5', '172.105.247.100', 1667172022, '__ci_last_regenerate|i:1667172022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c902191da3ea0463b46e849557ab5ec51b452dd', '172.105.247.100', 1667172023, '__ci_last_regenerate|i:1667172023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2125255f88d31a81697ab17890f6a82f109e1746', '172.105.247.100', 1667172023, '__ci_last_regenerate|i:1667172023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d38ceee7c00ee4613a71a5239c61eb10b29222', '172.105.247.100', 1667172023, '__ci_last_regenerate|i:1667172023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32ff89a50139674dbd0b1f72bb6a01cc808c482', '172.105.247.100', 1667172023, '__ci_last_regenerate|i:1667172023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dedba43fcd6f20aaffdc5b287e77707bb6114a38', '172.105.247.100', 1667172023, '__ci_last_regenerate|i:1667172023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2c1cfbf7c91bc37088b97cbf7a2743f50c0f74', '172.105.247.100', 1667176221, '__ci_last_regenerate|i:1667176221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27853a68653fd1a98833a51b3e445e5b1393971b', '172.105.247.100', 1667176221, '__ci_last_regenerate|i:1667176221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1cef4b58d6b255081ad99463351e3a395f1df5', '172.105.247.100', 1667176222, '__ci_last_regenerate|i:1667176222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63605f1cb13469542cfb3ca486744d08223a8f4e', '172.105.247.100', 1667176222, '__ci_last_regenerate|i:1667176222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf263078987f75d1ce82c414aa08194e1bf2e6e7', '172.105.247.100', 1667176222, '__ci_last_regenerate|i:1667176222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d39978ce66cb3f88f335eb4d9fa239e2fc1d51', '172.105.247.100', 1667176222, '__ci_last_regenerate|i:1667176222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5906a3002686311a925b2d3228d52ef7db7846', '172.105.247.100', 1667176223, '__ci_last_regenerate|i:1667176223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdb7345041d0abfceca0a09ca8609008e65d485', '172.105.247.100', 1667176223, '__ci_last_regenerate|i:1667176223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a916cdd9be4b6bffd070f5df82f9a150f5ec46b', '172.105.247.100', 1667176223, '__ci_last_regenerate|i:1667176223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6ab1317039da1e0c59ed66b3ffbb95b701155f', '172.105.247.100', 1667176224, '__ci_last_regenerate|i:1667176224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77e9423949834498e8688f65872aead025762e0', '172.105.247.100', 1667176224, '__ci_last_regenerate|i:1667176224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37925cec3a35eab1971eee523fb0c1eb7384a6b', '172.105.247.100', 1667176225, '__ci_last_regenerate|i:1667176224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70584ab021c139b45cc77cab204774ee88a1ab5a', '172.105.247.100', 1667176225, '__ci_last_regenerate|i:1667176225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac490bcfdeeef655e5f10a3b7e487ecd4fe9e3ac', '172.105.247.100', 1667176225, '__ci_last_regenerate|i:1667176225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d945eaf85a7b4c71cc7395bbf195d324a4dc362b', '172.105.247.100', 1667176225, '__ci_last_regenerate|i:1667176225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88cf35b9f1b86126c634adb96246e79240bcc3d2', '172.105.247.100', 1667176226, '__ci_last_regenerate|i:1667176226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6616ef9fbb79b294397648c1f941be1863d2b1e8', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56efd17311c23186ae3e539b4238f3ec730607c2', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b952716ea7fbbbe672a577968922e9fa8ecbc6f', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c61c28c414d3ee7d7d1dc660c398bf2f9bbdf5f', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd53e2292082676e2afd446094b03e17b64c4521', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7368a5ca764b2d8655c9edd0dccafdd655981b', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c67e7643cfacc47b1fb2e6237434f1269c6975', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7695c5c0821313dc8daada20b1e8d7f7b42248a3', '172.105.247.100', 1667180421, '__ci_last_regenerate|i:1667180421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d23d7dcb682e8ec4d892339038279e67156c4c', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da6c0bf3a4d018ae0d6b5038747213755111e774', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c23a20469274e0e2d8fbc0e0381b7210396694', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6efbde7bba9c1ef15a9daef860a690334dc99957', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd2876285b48797e0a5767228897fe90f2e4708', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d089546c0a5421b5ce2d372f800ebc6bbde9e4', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed207f022d8f0d687fd93592a8d32f4452ac824b', '172.105.247.100', 1667180422, '__ci_last_regenerate|i:1667180422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d066058e6c0e48f7b0fdae0910639f0185edf7', '172.105.247.100', 1667180423, '__ci_last_regenerate|i:1667180422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8306484405be491f829b451b9f1a5888877af84e', '172.105.247.100', 1667184622, '__ci_last_regenerate|i:1667184622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb43d36a3b0f307fdcb49adb6ba9ffdf90c6ad4e', '172.105.247.100', 1667184622, '__ci_last_regenerate|i:1667184622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dfc38fb2d9881760ab43a70e78b1332121904b', '172.105.247.100', 1667184623, '__ci_last_regenerate|i:1667184623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a117115982194d86bab0efe9639d49fbe35a46', '172.105.247.100', 1667184623, '__ci_last_regenerate|i:1667184623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68fbb1c7179fa9cb32bff95037e479bd1d946206', '172.105.247.100', 1667184623, '__ci_last_regenerate|i:1667184623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1736ff52c8753e6930d5b819a4ad258ff1b0a2', '172.105.247.100', 1667184623, '__ci_last_regenerate|i:1667184623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b9227ef169e6de7f16a392689742de5267e11d', '172.105.247.100', 1667184624, '__ci_last_regenerate|i:1667184624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7e31c77d41e8122f95c67a899906b572486837', '172.105.247.100', 1667184624, '__ci_last_regenerate|i:1667184624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7da754da0a3adc7d9063805c3aebd72695a9d7f', '172.105.247.100', 1667184624, '__ci_last_regenerate|i:1667184624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9039a4047921bcf8d55d93c19224c72172a0da60', '172.105.247.100', 1667184625, '__ci_last_regenerate|i:1667184624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1f71f0b9e19a5ff1ef11ac822d366abc47ed7d', '172.105.247.100', 1667184625, '__ci_last_regenerate|i:1667184625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0c86e27bfe81298f11a1a9844b6ae61fbbeeb7', '172.105.247.100', 1667184625, '__ci_last_regenerate|i:1667184625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb51226620c2b25e8e57a76b74f9515489b1d548', '172.105.247.100', 1667184625, '__ci_last_regenerate|i:1667184625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa9d2a9922d0fe22e0d0d038c3aa1f55f22a7ab2', '172.105.247.100', 1667184626, '__ci_last_regenerate|i:1667184625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c69387c3130130e870955872233692305153043', '172.105.247.100', 1667184626, '__ci_last_regenerate|i:1667184626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354637ae81b0ba90a12ae938ad56bad2208e6d10', '172.105.247.100', 1667184626, '__ci_last_regenerate|i:1667184626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('128240359511db3e344f5f4e2be2ea664981fe2b', '172.105.247.100', 1667188824, '__ci_last_regenerate|i:1667188824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b384a7f07848b039f150769ce121a8e76d836694', '172.105.247.100', 1667188824, '__ci_last_regenerate|i:1667188824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c09f329b0815a9387d0739f8872c6b2b583f4b', '172.105.247.100', 1667188825, '__ci_last_regenerate|i:1667188824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc7c2be43f946b9a124707278db361a30d33f50', '172.105.247.100', 1667188825, '__ci_last_regenerate|i:1667188825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe814a73cea0239415cbb0243c39d93b5119349e', '172.105.247.100', 1667188825, '__ci_last_regenerate|i:1667188825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9ef603f77302c515dac98326927cbc9fac5d6c', '172.105.247.100', 1667188825, '__ci_last_regenerate|i:1667188825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc7be4d461cbef31667ec3255ee28bb0b8b0142c', '172.105.247.100', 1667188826, '__ci_last_regenerate|i:1667188825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e530a64d8fcbb168143882250a533fd1201d2a8b', '172.105.247.100', 1667188826, '__ci_last_regenerate|i:1667188826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87193cdaaa57d9d94d414815dd384a36c2e0c571', '172.105.247.100', 1667188826, '__ci_last_regenerate|i:1667188826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687a62fd4a8cdd4ba786669a99465818837451f6', '172.105.247.100', 1667188827, '__ci_last_regenerate|i:1667188827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66aef642c4e95f94cd8cfe3ec76be76ad640d1e', '172.105.247.100', 1667188827, '__ci_last_regenerate|i:1667188827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2ad95633474c30477849a571576342d2d64397a', '172.105.247.100', 1667188827, '__ci_last_regenerate|i:1667188827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93dbfaa47c82e5f902eb2da39862bb43b048a31d', '172.105.247.100', 1667188828, '__ci_last_regenerate|i:1667188828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a369ccb8ec3ce5b5895b54e5dadd6463214a77c', '172.105.247.100', 1667188828, '__ci_last_regenerate|i:1667188828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4563f91ac16d6041930cdd5ab783f2338fa0850f', '172.105.247.100', 1667188828, '__ci_last_regenerate|i:1667188828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292d144205abf40eff71666870a5d1b53e16d1a2', '172.105.247.100', 1667188828, '__ci_last_regenerate|i:1667188828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a630a5f426ab9c4ffab2abab6937dbe64e54d5f7', '37.111.217.187', 1667198869, '__ci_last_regenerate|i:1667198869;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667191985;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b1aad5482d14f924ec61e09f71484a2e3ba7fb', '172.105.247.100', 1667193022, '__ci_last_regenerate|i:1667193022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80e11dc3601c85fa880127f080db139b804805c6', '172.105.247.100', 1667193024, '__ci_last_regenerate|i:1667193024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947a572fc7b8be518c33fe00857e2b7af2765bb6', '172.105.247.100', 1667193024, '__ci_last_regenerate|i:1667193024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd909a402ee77b95794d2d539d48ac3c41d7ec4', '172.105.247.100', 1667193024, '__ci_last_regenerate|i:1667193024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e41d257526848ce59699b93f7bf3fcc0e1d10aa', '172.105.247.100', 1667193024, '__ci_last_regenerate|i:1667193024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82aa22211d4838e6e882bf48f5020910ee7ceb2d', '172.105.247.100', 1667193024, '__ci_last_regenerate|i:1667193024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aad5a5a1af53be6254440c198b564cd1c420253', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13af99361df381107d2fcdcc2404f39f9d1f6b14', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441e9a0dc7b0d952ad6d930f0e612b6008489f40', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce172fac33d9c42a5f9a86229a6f968b70b84ad8', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109a592adb90bcde2c453449ce005372075ff4f0', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a3372b22566423df8e1d75acbe0ecd6bf87cec', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b440e199a005f126c677404c3ddf37deddd45f', '172.105.247.100', 1667193025, '__ci_last_regenerate|i:1667193025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f41a439d75a34508bc1a34c3083c16dbfc817bb', '172.105.247.100', 1667193026, '__ci_last_regenerate|i:1667193026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9487f7ea95d5824e576896524e2a0fdececcfd2a', '172.105.247.100', 1667193026, '__ci_last_regenerate|i:1667193026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b44b615f1d3c334e472215aba4325297f4adf73f', '172.105.247.100', 1667193026, '__ci_last_regenerate|i:1667193026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0fc991f0c86df58d8a89d98f51834b3b7efb7f', '116.204.230.18', 1667199315, '__ci_last_regenerate|i:1667199315;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667133440\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1667193498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e96655be576480f93a7f255f17de1985332313', '172.105.247.100', 1667197222, '__ci_last_regenerate|i:1667197222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e038f7eec91d23baa44912aaa81bdf5dfc3bf9a', '172.105.247.100', 1667197222, '__ci_last_regenerate|i:1667197222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86778383343e28e1ae92752364d3e2105dd4fe81', '172.105.247.100', 1667197222, '__ci_last_regenerate|i:1667197222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e84ad3307706ab9cd96ef8f8de3edb5157b5f5', '172.105.247.100', 1667197223, '__ci_last_regenerate|i:1667197222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cdcd055ea21ab3eb540199e39f33ebe587ebb8a', '172.105.247.100', 1667197223, '__ci_last_regenerate|i:1667197223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5007b2d5bc539827c419d588e08bf1ce51217b5', '172.105.247.100', 1667197223, '__ci_last_regenerate|i:1667197223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fc5c35765fc8fca55b23c61b3a06152e4cd462', '172.105.247.100', 1667197223, '__ci_last_regenerate|i:1667197223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5208dac8da5e188971b301c7908c9c583cccf1f', '172.105.247.100', 1667197223, '__ci_last_regenerate|i:1667197223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7c5f09c771b62547fa0f16f9aedf46bb79b257', '172.105.247.100', 1667197224, '__ci_last_regenerate|i:1667197224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02dae548c88004ca6202e58f3281ac9efae273bf', '172.105.247.100', 1667197224, '__ci_last_regenerate|i:1667197224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f48f57c941bab60b0f798402ac65426bee198de', '172.105.247.100', 1667197224, '__ci_last_regenerate|i:1667197224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b6017ee934f789d999fe96efc4d6b55d1e8ce6', '172.105.247.100', 1667197224, '__ci_last_regenerate|i:1667197224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51722efc72fde166dcd8adcaabdf4ed86b3b27c9', '172.105.247.100', 1667197224, '__ci_last_regenerate|i:1667197224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e875ef9c6d0f8eb071a56378ceb1c3466ecf4dc', '172.105.247.100', 1667197225, '__ci_last_regenerate|i:1667197225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bfc078280a5fd1463f932acfa458d0d83e994d8', '172.105.247.100', 1667197225, '__ci_last_regenerate|i:1667197225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7412b193637b17778409d068951b4fd0f711160a', '172.105.247.100', 1667197225, '__ci_last_regenerate|i:1667197225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce08af7e9afc3ed6a15c1ac068a0a481c9fc2286', '45.120.39.142', 1667199231, '__ci_last_regenerate|i:1667199231;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667199148;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0823a066983fd05c8a51f76a4db50bbea8ae05e6', '45.120.39.142', 1667199922, '__ci_last_regenerate|i:1667199922;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667199231;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a28e16724abe5fcce5a06a045f637c94018767f', '116.204.230.18', 1667203663, '__ci_last_regenerate|i:1667203663;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667133440\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1667199328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5a203c47ba0d2df9c57421bb112205f9b2d0b2', '45.120.39.142', 1667202835, '__ci_last_regenerate|i:1667202835;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667199925;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6ea4ff166bef400f554e2907d3f271e98e5ae4', '172.105.247.100', 1667201423, '__ci_last_regenerate|i:1667201423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb1343d506bfc82ec50b6bf87c693e5bf03f962', '172.105.247.100', 1667201423, '__ci_last_regenerate|i:1667201423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5f0efd7a707fdd43c6c3901c43876c656d55c3', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e156a5c627e147ce5854b2323bb4cbcf80c57e', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2d88bb35df3d8af6a76ca63c8e7e622a14a5dd', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df60829a2818f5da1c556da15829959b7bd3de1d', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ff4e5bf8bb2ee49a47de8ba00a83146f5e3b33', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924f88aa61e161adfb36c4d48996536f7fd6e673', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b286902d854678b1bbab4bc60f91639c1cf9cf5', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6f9fe663c7d8c84770e8ffc22617e186333c62', '172.105.247.100', 1667201424, '__ci_last_regenerate|i:1667201424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb17be6d5e1302cef8cc749e770d9c20dc30bc5', '172.105.247.100', 1667201425, '__ci_last_regenerate|i:1667201424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01bb565efcaf01f91052010f70b1e7efaa035a0e', '172.105.247.100', 1667201425, '__ci_last_regenerate|i:1667201424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd29223335ec1eafe23b17e247152141baa6179', '172.105.247.100', 1667201425, '__ci_last_regenerate|i:1667201425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb20093e08101ba2bd98d8913066555a2c4a8ac', '172.105.247.100', 1667201425, '__ci_last_regenerate|i:1667201425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07098648d59e0b3585af78897fa3f2fb3e182494', '172.105.247.100', 1667201425, '__ci_last_regenerate|i:1667201425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd4765cfe2b9227b354b852dcf69d394969c397', '172.105.247.100', 1667201425, '__ci_last_regenerate|i:1667201425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524cbb27489fb06ee8e501f9290880b45e05ece4', '37.111.217.187', 1667203886, '__ci_last_regenerate|i:1667203886;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667203343;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d76ba3ea98da87e1a0327d5441a386b74a3358c', '116.204.230.18', 1667203664, '__ci_last_regenerate|i:1667203663;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667133440\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1667203663;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b341420d609ed3ba2ba688cf9d26c51b0bd40f', '37.111.217.187', 1667204925, '__ci_last_regenerate|i:1667204925;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667203343;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a2045db206462ea9f81a09ad6f14d5898335df5', '37.111.217.187', 1667205227, '__ci_last_regenerate|i:1667205227;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667205063;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1addd22014fd2949fa76162792a2ee8c6b5335c', '37.111.217.187', 1667208801, '__ci_last_regenerate|i:1667208801;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667205063;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068b3e44bbfd18c3f03465f98f2387c6a7557006', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53ddd6e628f302d8bd746f1745f679d7cefd8f3', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9daaf84de5569bf9968e654c589d568a9636fb', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d8430d3a58ed4c731e65568d1c55c05a01f037', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d061c7a5cc86751c921ec8ad493d92c804f8aea', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e19e71c6a0f6d0e9227a67ccf8f22655925c4a', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd94ef3ab11ad1caa7e3dc1bc8747c207889adc', '172.105.247.100', 1667205623, '__ci_last_regenerate|i:1667205623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50511e3cbe8a612225c3270ab52285f1425d43bc', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf381a8ac87e6c846f5dfba62bf33244661f75c', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25aaa5255bb48b71ff2d6f5b9cfa01d522861c78', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814f8452f991dbf4f2878fdd0fd577c24023424c', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d43e3ce748c639b0190ae1f0ef71c744b18c28', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77192deb3bc92dd62f18faf3ebd39839862b69d9', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58379529fef2f76d6365c587340fc8c3fc54f12', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64091234dd174567c42e9983aea204528a39bde', '172.105.247.100', 1667205624, '__ci_last_regenerate|i:1667205624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e9dde202f20d197706813af4d4774222bda8aa', '172.105.247.100', 1667205625, '__ci_last_regenerate|i:1667205625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235540edbebafdbc4c7c24971bbd25d59193afd2', '37.111.217.187', 1667221758, '__ci_last_regenerate|i:1667221758;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667208801;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db905563255fb3d4b653cf82bfcce0174e69a738', '172.105.247.100', 1667209821, '__ci_last_regenerate|i:1667209821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3811a679b4d25cf835cd5e639aa3c4f461ec03c4', '172.105.247.100', 1667209822, '__ci_last_regenerate|i:1667209822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c7cf72dc33cace29dddbf071f628eb766f276d', '172.105.247.100', 1667209822, '__ci_last_regenerate|i:1667209822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c8edd138a869d900423d071a37140ef280953c', '172.105.247.100', 1667209822, '__ci_last_regenerate|i:1667209822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea89501ea6a8059107c0e997decd92ac0188ad7', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e05fdd70a76d2df25b0380e0e84ebbcd4a7f9fc', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b6ef90b699080940fc507c10b8688fdaf720b3', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d006ac5f08bf7b19701225557a3b01edb3ef7dd', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d269563e4757cfa02353e053af445350214a07', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e7f787338498a6a9667ba13b73c2fe6a459c4b', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3275c477c0d131a7989d905a993706f62855a6', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c76765fa6fae8c5e2d94f5235f95fd76867eaa', '172.105.247.100', 1667209823, '__ci_last_regenerate|i:1667209823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79989e3f8efbef02ce5459db7cebad49fa496b9', '172.105.247.100', 1667209824, '__ci_last_regenerate|i:1667209824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d915deccf060c636f3e267307ad41083b5256f0a', '172.105.247.100', 1667209824, '__ci_last_regenerate|i:1667209824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbfb5997c7b0a55f3bef02b62211c48054ea49b0', '172.105.247.100', 1667209824, '__ci_last_regenerate|i:1667209824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb86a81fe0b85d80129d086b65eef79f1060000', '172.105.247.100', 1667209824, '__ci_last_regenerate|i:1667209824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17bcf985e3c2fe66b6a8cc0895cecb2e226dd77', '172.105.247.100', 1667214022, '__ci_last_regenerate|i:1667214022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb4fba49190a048a7488938bcaf0fe381c1fecc', '172.105.247.100', 1667214022, '__ci_last_regenerate|i:1667214022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6897456785539d86816d4f386a8687497f1aff21', '172.105.247.100', 1667214022, '__ci_last_regenerate|i:1667214022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4889ebe0a6bef4f42c5c1b8fb2c98f120ff15e', '172.105.247.100', 1667214023, '__ci_last_regenerate|i:1667214023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bbbaa4ffbaf9db4ec28f438759f5e8962056d0c', '172.105.247.100', 1667214023, '__ci_last_regenerate|i:1667214023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a2dfcf4dbad5b00c2f028fea6b946e1527150b', '172.105.247.100', 1667214023, '__ci_last_regenerate|i:1667214023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccde13cb35ffdde1c32df10a6e84d3d89817429', '172.105.247.100', 1667214024, '__ci_last_regenerate|i:1667214024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d345177636223755f80c6f4be20f21436a2a4a97', '172.105.247.100', 1667214024, '__ci_last_regenerate|i:1667214024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2657530e17afd90c7b5d263b6a0256a9267425eb', '172.105.247.100', 1667214024, '__ci_last_regenerate|i:1667214024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5125818dd08093d8198aab89c234d07b43f11555', '172.105.247.100', 1667214024, '__ci_last_regenerate|i:1667214024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1b4c2dc4f8d4550b243599e0b14d7e32b34499', '172.105.247.100', 1667214025, '__ci_last_regenerate|i:1667214025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce0181b97a7c87088ff35848cf95237fd6e5964', '172.105.247.100', 1667214025, '__ci_last_regenerate|i:1667214025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf94f5094cc0393f25fe2379a8838beb8c5f83c', '172.105.247.100', 1667214025, '__ci_last_regenerate|i:1667214025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1995a0df02ca6d001916fad71bde7a02ac9d62', '172.105.247.100', 1667214025, '__ci_last_regenerate|i:1667214025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa7989c0e0e5059982118c5cc302937f3fd7d61', '172.105.247.100', 1667214026, '__ci_last_regenerate|i:1667214026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a739417207cd51ae3301ffb2de96b9b5ad3290d', '172.105.247.100', 1667214026, '__ci_last_regenerate|i:1667214026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5bf3d1aaccd03bebd8fcee35ebc20a50c6f1468', '172.105.247.100', 1667218221, '__ci_last_regenerate|i:1667218221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1199e919584b3ded23739e329839fe5b73724a40', '172.105.247.100', 1667218221, '__ci_last_regenerate|i:1667218221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fbe6845dfccba5290095cf1223546c243d74f0', '172.105.247.100', 1667218222, '__ci_last_regenerate|i:1667218222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90ae41de9490cf98edd15b37cfdd0fe4272473d', '172.105.247.100', 1667218222, '__ci_last_regenerate|i:1667218222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74de3346d5f3edfbeb824f3ca6a52d3344a72d2', '172.105.247.100', 1667218222, '__ci_last_regenerate|i:1667218222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3bd102b1cacaef1f17b8f5c4776a264fab7dd5', '172.105.247.100', 1667218222, '__ci_last_regenerate|i:1667218222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063123aefbd16874105a2732c7c9619f8f025e6e', '172.105.247.100', 1667218223, '__ci_last_regenerate|i:1667218223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0417af2a2bacf74b2218bf7c891cdb16fc4b6ad2', '172.105.247.100', 1667218223, '__ci_last_regenerate|i:1667218223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6283ff0d56320c1568393884751971fb28e598f', '172.105.247.100', 1667218223, '__ci_last_regenerate|i:1667218223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db5245df8c66e8c2c4ed63b909af810bf6104e4', '172.105.247.100', 1667218224, '__ci_last_regenerate|i:1667218224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac1b83ea8665acd85733a9b89846f81343be446', '172.105.247.100', 1667218224, '__ci_last_regenerate|i:1667218224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ea6d86b7056b88c832374c400f4dbacdda25ea', '172.105.247.100', 1667218224, '__ci_last_regenerate|i:1667218224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f892eb449f78399bae33a4de4df6b7d83e56a0c2', '172.105.247.100', 1667218225, '__ci_last_regenerate|i:1667218225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00bf73140dfbd8da8a11f67f1f969b15bbfb45ef', '172.105.247.100', 1667218225, '__ci_last_regenerate|i:1667218225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee222ec2d14bfe56c908cb166b5279d46c0b656', '172.105.247.100', 1667218225, '__ci_last_regenerate|i:1667218225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c77a50b712eef35aa467559874ceb33442edce', '172.105.247.100', 1667218226, '__ci_last_regenerate|i:1667218225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7def10dbbc4d5ec58228143820f5236967b53bf2', '3.252.238.192', 1667221449, '__ci_last_regenerate|i:1667221449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0149fa2ea353dc84cf9d0cdeef7d9a631ca7496', '37.111.217.187', 1667225025, '__ci_last_regenerate|i:1667225025;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667225022;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70a9f6d536c4ab590b279e3ef04e6983281d3e9', '172.105.247.100', 1667222424, '__ci_last_regenerate|i:1667222424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ada1d34f43ff524af0077be8b470c0cdd0e9807', '172.105.247.100', 1667222424, '__ci_last_regenerate|i:1667222424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a5a3182309e0fa480f6c27875e6ce7a1fe9a252', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f61a0c850e8546a6a6472d24ec6143a1b9db308b', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2cffb4adde05c034ead7cd4476206581e81dcb1', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f9c97906f67895daa3180c8b0aa839941a9cff8', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11dbd07698cbeb99df15111f4ab2c2245367dc2', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed73941c4542aecc6f1f1d602e6acfdfa900018', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad86ab936824b9516b5e5165e964c0b5ad45c60', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2e476d392d1ec44bf0af611e4a4f69e58f2b88', '172.105.247.100', 1667222425, '__ci_last_regenerate|i:1667222425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f27232da2fc18895921e2df923b13d57bf70b05', '172.105.247.100', 1667222426, '__ci_last_regenerate|i:1667222425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf54b714533439aad2aa1536fe20a88b3b04445', '172.105.247.100', 1667222426, '__ci_last_regenerate|i:1667222425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0329971ca21c7755e3168d70d9a18621df8a1a4f', '172.105.247.100', 1667222426, '__ci_last_regenerate|i:1667222426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5770c93016c3c066ae330f842fac8fd82dfb2bc', '172.105.247.100', 1667222426, '__ci_last_regenerate|i:1667222426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('387b5d23316945e10436af6e8fbddf4d4d301a4a', '172.105.247.100', 1667222426, '__ci_last_regenerate|i:1667222426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8ba069fd1aa0d295a02c29572f8c245b47c2ef', '172.105.247.100', 1667222426, '__ci_last_regenerate|i:1667222426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58822d138e6c06e7589476c84a6ad4d2d010b3a5', '37.111.217.187', 1667226176, '__ci_last_regenerate|i:1667226176;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667226171;register_id|s:3:\"234\";cash_in_hand|s:9:\"6150.0000\";register_open_time|s:19:\"2022-10-30 20:13:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de82444ed25ee04ade1634f9ae85620c2272367', '37.111.217.187', 1667226205, '__ci_last_regenerate|i:1667226176;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667132470\";last_ip|s:14:\"37.111.218.138\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667226205;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff7b48ef63a4c93f171c5f11bffa7ca0ff7e6053', '172.105.247.100', 1667226623, '__ci_last_regenerate|i:1667226623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342ab7b4477ad9d56668040196775b202ec8da7f', '172.105.247.100', 1667226625, '__ci_last_regenerate|i:1667226625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f51da43d2bed7f8ab07c95e7125558fcadf7938', '172.105.247.100', 1667226626, '__ci_last_regenerate|i:1667226626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db46d6609f1685a6445b9c887540e19b08f4248a', '172.105.247.100', 1667226626, '__ci_last_regenerate|i:1667226626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8ff5027d266c0b9cc2f765761028cf5bd68d23', '172.105.247.100', 1667226626, '__ci_last_regenerate|i:1667226626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fca97bddb5ec9080fddc26659c026f68d8ceac8', '172.105.247.100', 1667226626, '__ci_last_regenerate|i:1667226626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2179b5caaa2994fb0cd86d8a8481766e621a5ef5', '172.105.247.100', 1667226626, '__ci_last_regenerate|i:1667226626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf803e5781b24937d0b27e9c04834616a589d44', '172.105.247.100', 1667226626, '__ci_last_regenerate|i:1667226626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d6d01fd6b277726aafd3d649f83d4aeb88c154c', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5f87d3b07adf51c1dfcb730eb853e3ea91afb5', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d23f99da785135a3f71736f61ae1be37eb640329', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172121d9edecf6399a658f0ac20351df28f2882c', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1736afe363f3a4c858327a99f2b95138bf47f5f', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042c3ee1bd28a7cd47ca56fccade112e189bb9a8', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b1957eac02166315396fa7f4897c3bc54a7426', '172.105.247.100', 1667226627, '__ci_last_regenerate|i:1667226627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb874e3ac2ad7740e44cd973a88deaa063439d8', '172.105.247.100', 1667226628, '__ci_last_regenerate|i:1667226628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24268c6bf114e0fa94d34ccf7254f2e7f5802c4d', '172.105.247.100', 1667230822, '__ci_last_regenerate|i:1667230822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43bd8ca737fe02904145dcd4700e3972f936ba5', '172.105.247.100', 1667230822, '__ci_last_regenerate|i:1667230822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dfc7511c1291ca0d8bdb819c6fb4f4131cb4e15', '172.105.247.100', 1667230823, '__ci_last_regenerate|i:1667230823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8879bbca19a598a8e77a98616b10fd46fb63e7', '172.105.247.100', 1667230823, '__ci_last_regenerate|i:1667230823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b0dc3b7a77ea1d554b9add3a678b1cd2762ecf', '172.105.247.100', 1667230823, '__ci_last_regenerate|i:1667230823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be199fb3b739af476a33a30851dc50366abc3c62', '172.105.247.100', 1667230823, '__ci_last_regenerate|i:1667230823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('043ed682992a33349df53a7daf4a19f4d166ddcb', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900fccce60e7669a4a7c89b69db9d6e4c1c7296b', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c605b95e6c48e776270a8590cf64969ea91d48', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35cc7fc47604b81b01c6e9ce5bdf07c7eea04926', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f1656904edbec92ab7ae3e4de6ba633e5fb3f78', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa67e0be3647b7052357e312236273400fd19f9', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6bbb7a1c739dfe347b447aaa3067d5857d201f', '172.105.247.100', 1667230824, '__ci_last_regenerate|i:1667230824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1686344a44ba8afc41ccd5c867d4ccbe282f4b', '172.105.247.100', 1667230825, '__ci_last_regenerate|i:1667230825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a04b0d536c2185986d3f33bcf5abac6b4eab33c', '172.105.247.100', 1667230825, '__ci_last_regenerate|i:1667230825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ca787fdd2b87774ef2df3ba0dcc0e453b66d26', '172.105.247.100', 1667230826, '__ci_last_regenerate|i:1667230826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108ffac7322c2c3173267ead4c84ec503fcb4a42', '172.105.247.100', 1667235022, '__ci_last_regenerate|i:1667235021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febefaef14858d35fdd958d9a015db28c5338e7a', '172.105.247.100', 1667235022, '__ci_last_regenerate|i:1667235022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234f3cbdb30d0c68733a2fef315075f11f0b045f', '172.105.247.100', 1667235022, '__ci_last_regenerate|i:1667235022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f494d2b77a944f08a4a34ffbc407863caa000c7', '172.105.247.100', 1667235022, '__ci_last_regenerate|i:1667235022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927ac00d6ae87e3bd9d7eeccfe7471c6743bc74c', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1325be248604e8cd7657238dc9d11c182f56452b', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('972a2345e9d3baa0b1e2d15ba0513cec8bd0ef43', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b44d568399dd0c3ec746f1ced1569f258038f28', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cbe4047fc0597b9f1da64ae4c29dac9550e674', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f9dd15f245b06fb69db6de4b6870c9a3dea852', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10e76be10cc66d941f4462d500ddd32529f63af', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a1994746a7ac1f0696b632240695de58e2adb8', '172.105.247.100', 1667235023, '__ci_last_regenerate|i:1667235023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f70cf116b75f6dba0dd3ef5676aa2b3288c2ab', '172.105.247.100', 1667235024, '__ci_last_regenerate|i:1667235024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39895cb15b76789eb0d08067c967c9dff3f85ed', '172.105.247.100', 1667235024, '__ci_last_regenerate|i:1667235024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba504c98eb52a3daff1c00ccc74cf06b347205d', '172.105.247.100', 1667235024, '__ci_last_regenerate|i:1667235024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b555be5f408add8788b0eae3be2817d109954bd6', '172.105.247.100', 1667235024, '__ci_last_regenerate|i:1667235024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160a4a02c0b1bac780e5c1ad791fd6de244f56bf', '172.105.247.100', 1667239223, '__ci_last_regenerate|i:1667239223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d3dd49fb544e4b890eba9d61a93c95b505c3da', '172.105.247.100', 1667239223, '__ci_last_regenerate|i:1667239223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd15825546c644bf994d9485c3f796125786a77', '172.105.247.100', 1667239223, '__ci_last_regenerate|i:1667239223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d8b89903b840a32545de2cc26e37c93f35a9fc', '172.105.247.100', 1667239223, '__ci_last_regenerate|i:1667239223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37a8be006483cacfe8dda325283f58d4ef443ca9', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25de471176f0422bf61fd1ecbaad809173ef0da5', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660e29e961548586cfad43112027eb1997fbf319', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20348e6584c4b637b86f4f19a58005026172c98', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6484077f90cbaf6e31cc7c42566a8921439aa65a', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492e0e4fac722c87bb5b36e515e18518c025d743', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('767490a9e2543e065c9927d3a657d39fb15f610d', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b8354aad4ca4d5b4612780ed0dd7ce93a222272', '172.105.247.100', 1667239224, '__ci_last_regenerate|i:1667239224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40055548416dcbcdadc77b217b6c5ca4bb09bf3', '172.105.247.100', 1667239225, '__ci_last_regenerate|i:1667239225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4339860bc1bc3c3ffca0d237b22efca701a58e8e', '172.105.247.100', 1667239225, '__ci_last_regenerate|i:1667239225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150982d6e29b6acf4b5cd9e6c5ad7730d87fdce9', '172.105.247.100', 1667239225, '__ci_last_regenerate|i:1667239225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f54566f885ed4a40c241cfaaaa0e44cb7a3175', '172.105.247.100', 1667239225, '__ci_last_regenerate|i:1667239225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa123c799e30c01cfdc3ee89dd2f3d48262ed6f', '172.105.247.100', 1667243420, '__ci_last_regenerate|i:1667243420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9b90f565de3ab33a752831d3c064a47666edc8', '172.105.247.100', 1667243422, '__ci_last_regenerate|i:1667243422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c9570e9889982f0fd3bcd8a8adc5d17090932d', '172.105.247.100', 1667243422, '__ci_last_regenerate|i:1667243422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39a3d73e4afa420c815d7efc320ec1317a209cc', '172.105.247.100', 1667243422, '__ci_last_regenerate|i:1667243422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4bfe927e1bd1340d3a9b9c8ef4d50743cebc1c', '172.105.247.100', 1667243422, '__ci_last_regenerate|i:1667243422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd36a927715423e14d128a50bace65069eeab4b', '172.105.247.100', 1667243422, '__ci_last_regenerate|i:1667243422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('978ca54f0162e923f0bb67a70fb0ef276bfd9474', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc27d825ff8da35cd9447f13b24782324b939fc', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40bb2f301356144f094891723cada492bc56e068', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10454a77c154492b3e444a9b36e3768411eca104', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bab38fbbc3e91ccc417dee82018cf6674d2e64d', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee14b4acb5e621c55a7877119186aef33bc120f', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d0764ff255ff9959a2d7078cde01606f1122612', '172.105.247.100', 1667243423, '__ci_last_regenerate|i:1667243423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7592118d71d2a928ee26a313d97b2e1dbe51c3', '172.105.247.100', 1667243424, '__ci_last_regenerate|i:1667243424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263f5372bd7e179c068b6658c252a099b8959da3', '172.105.247.100', 1667243424, '__ci_last_regenerate|i:1667243424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e34214183e3f558fc45ce8a551614167c839a14', '172.105.247.100', 1667243424, '__ci_last_regenerate|i:1667243424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd932edb7901a0854f67ee5d3499319ea7934a63', '172.105.247.100', 1667247621, '__ci_last_regenerate|i:1667247621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e44caedfbf6620e56a78fc144e2bf3dd92cfe5', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93611f5df08c08919142bad9cc73730e6c9b0743', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22f9bdea39c737d1f362a5001017a09933260f7', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3d842c76ed5a6eba6d982c51d81ab08128eaf8', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb1d6dc7fee9b0ee49e5e2d29b1a43f1a43ee58', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1333166c2837b62b2782b66b2d055ce7ffd74d61', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084b11c0a71cdebaf961767ce0736d882fc61317', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a57d582e3d5ee546945991c1d6cc43bf2b3cbf', '172.105.247.100', 1667247624, '__ci_last_regenerate|i:1667247624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4cf5b034811dd93110768795f5a3eb86678104', '172.105.247.100', 1667247625, '__ci_last_regenerate|i:1667247625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48036611bb2ec1b678bfd9972a1280c3005cdd4', '172.105.247.100', 1667247625, '__ci_last_regenerate|i:1667247625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8defd41fab22c841d7cb419200628376c8bc7f07', '172.105.247.100', 1667247625, '__ci_last_regenerate|i:1667247625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44250cc86eb627f83452f8d70ac69805e21341bc', '172.105.247.100', 1667247625, '__ci_last_regenerate|i:1667247625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be4c5d5070be279f0a422d2b24d0bb4f3a7e9b60', '172.105.247.100', 1667247625, '__ci_last_regenerate|i:1667247625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f40284f790d0dfe3c9acd953131fae2f315908', '172.105.247.100', 1667247625, '__ci_last_regenerate|i:1667247625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e081d18e3cbd9e400d43e281b7df114c423e81', '172.105.247.100', 1667247626, '__ci_last_regenerate|i:1667247625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45348e4b3186d89cd7717d724c922ec994b4b7dd', '172.105.247.100', 1667251820, '__ci_last_regenerate|i:1667251820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9ff0717f953392d0c1b01b8745c9172123f13b', '172.105.247.100', 1667251820, '__ci_last_regenerate|i:1667251820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc402f99e0be017172baa79cafb6bb151f858f2c', '172.105.247.100', 1667251820, '__ci_last_regenerate|i:1667251820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20568670e8d2837f0204529cea66d7db5604f6c', '172.105.247.100', 1667251820, '__ci_last_regenerate|i:1667251820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11497c77682134de15ea9229926a3a2d13f364a', '172.105.247.100', 1667251821, '__ci_last_regenerate|i:1667251821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c908441b925b492ef4942c1638148328b45f4bd6', '172.105.247.100', 1667251821, '__ci_last_regenerate|i:1667251821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a716d3e1baef793a93cdc544ddc0d5d270bbb386', '172.105.247.100', 1667251821, '__ci_last_regenerate|i:1667251821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d092b850b52660534e218429712f92e1b0d029', '172.105.247.100', 1667251821, '__ci_last_regenerate|i:1667251821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26881dfe2eca89204900d625723ed582ca5f436a', '172.105.247.100', 1667251821, '__ci_last_regenerate|i:1667251821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e9c7757994cc9570fadc4b82483cac97e3239d', '172.105.247.100', 1667251821, '__ci_last_regenerate|i:1667251821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68432bd95a1ef10b2a28ec589048dd7c837f0da', '172.105.247.100', 1667251822, '__ci_last_regenerate|i:1667251821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbfe7b6ab67bd470a958e1246ef5796650b13b9', '172.105.247.100', 1667251822, '__ci_last_regenerate|i:1667251821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f758714b0c3a66eb80adf1072695c68761874e7', '172.105.247.100', 1667251822, '__ci_last_regenerate|i:1667251822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f6e4af15ce3ab0c4bb6cd60264c74f79272412', '172.105.247.100', 1667251822, '__ci_last_regenerate|i:1667251822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e9da1aa914aacb55fcb3b646fe82784c796017', '172.105.247.100', 1667251822, '__ci_last_regenerate|i:1667251822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd675620219c7158d430db7552ffae98cf65c1de', '172.105.247.100', 1667251822, '__ci_last_regenerate|i:1667251822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaec92bc01e4eab1eb44f43c952d3500f0e23c12', '198.235.24.54', 1667252761, '__ci_last_regenerate|i:1667252761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9576bde82bf3453f89389254b3dd670ea843e67a', '172.105.247.100', 1667256020, '__ci_last_regenerate|i:1667256020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73bec76b1a135c2f26cc71072d3069458b9f3eee', '172.105.247.100', 1667256020, '__ci_last_regenerate|i:1667256020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc6a41760d2f0c435958a8366ab08d628fc0563', '172.105.247.100', 1667256021, '__ci_last_regenerate|i:1667256021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961340f9af0e797e708fdb2dfd31d20345354e81', '172.105.247.100', 1667256021, '__ci_last_regenerate|i:1667256021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f6e8287d48d4e2d1731962fd389d74620177d9', '172.105.247.100', 1667256021, '__ci_last_regenerate|i:1667256021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e97d6c391df08b1cda2cf4efffba3ad5537c70d', '172.105.247.100', 1667256022, '__ci_last_regenerate|i:1667256022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5c6a83b14ef2c2e15c0e6431251d147893044d', '172.105.247.100', 1667256022, '__ci_last_regenerate|i:1667256022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0367cad4ab23a0d22db6d3f2b56f0aa277eb0885', '172.105.247.100', 1667256022, '__ci_last_regenerate|i:1667256022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee1a4f6c17c007dcbfcc529c9c89ecbea754417', '172.105.247.100', 1667256023, '__ci_last_regenerate|i:1667256022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c762303711fcd0dcefb1d1693462bf9af44c8f', '172.105.247.100', 1667256023, '__ci_last_regenerate|i:1667256022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b71e726438ad2fc8646b6708c0e8c84b664b8b', '172.105.247.100', 1667256023, '__ci_last_regenerate|i:1667256023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac045097585cc50b8b88e4c14fb10ad6c33cc28', '172.105.247.100', 1667256023, '__ci_last_regenerate|i:1667256023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef651b7b1208afd280410f3047ab7da660359fc', '172.105.247.100', 1667256023, '__ci_last_regenerate|i:1667256023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0073ae9c39aa831c7cf743f777aa3cfc8093a1ba', '172.105.247.100', 1667256024, '__ci_last_regenerate|i:1667256023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f721f060c1c219f6656f96fd6425c05f6b9a6f9', '172.105.247.100', 1667256024, '__ci_last_regenerate|i:1667256024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3714ebe1216561b25a85b5841b25b1229cbc4e32', '172.105.247.100', 1667256024, '__ci_last_regenerate|i:1667256024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06af6ff8333229804092a4f68cfc141bc2f64de8', '172.105.247.100', 1667260223, '__ci_last_regenerate|i:1667260223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c247777e2b0850db889a677e0032d535a6a550', '172.105.247.100', 1667260223, '__ci_last_regenerate|i:1667260223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e898a7122f35c366411818b3e7211a1d5c5dec', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023a5a21539d00369de237ec7c93ad1bb2009e9e', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e7534291ae0731c20d843d6494e4d09e23e443', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed34cfc2939540b1e1b4163ec2bfa5a43dc97565', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d041f7678ed3bae7b469fcab659d35965a432da', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c65de96733cc029c25bddb3ca102160caf7276', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d12cb81a0aab760dd2ef9fd60876de53f7113ee', '172.105.247.100', 1667260226, '__ci_last_regenerate|i:1667260226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff11d677f5852057ecba8f9c60c95221e6ed19f', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5caa66c5ea46480e30949311e3cdf5f04443c949', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00e0bbbc0dffd4eb85bcf251240db2014bd3202c', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7400214c0d7a1f5b63b7d90f3ca377f57d82cf', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369f2b8fab8c11fa7a886c197fca848579385cf6', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401f735d5d95a52348382ce26460392978a25938', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315e3cf7b95718a2949c6665496232528208c2b9', '172.105.247.100', 1667260227, '__ci_last_regenerate|i:1667260227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbfab156a3bf8def45b167ff9f319792f8c80789', '172.105.247.100', 1667264421, '__ci_last_regenerate|i:1667264421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa88c99402a3f9f8ecbb3d9ca5882739c8c3e852', '172.105.247.100', 1667264422, '__ci_last_regenerate|i:1667264422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6de5c7633ff768d9b1b0a1c2a866e46b0855f4d', '172.105.247.100', 1667264422, '__ci_last_regenerate|i:1667264422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f29760ba412a004f225b1607c2bab0b861778e', '172.105.247.100', 1667264422, '__ci_last_regenerate|i:1667264422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701370476b351856685e93b6d807e1ac8b054714', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60621eabd6302c5416344ae56afd5a829f1aa44f', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401575def90dea68e4f415abb2e2b80a90ac742a', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5ed5540c58074d3fcafefb9fae9281d8279c41', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b172562f08dccf5f44cef6e48a68f1d4f20d26c', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91f6f271bec46bc8cebc85defe61aa0ab4e188d', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f19f70ff4954a583c5c4d904acb00178c0cb3d', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc80d30359d89e86a44d2be79112d967f120440', '172.105.247.100', 1667264423, '__ci_last_regenerate|i:1667264423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f35c7afadfd0b0091f7e5595131fdac6324e2f', '172.105.247.100', 1667264424, '__ci_last_regenerate|i:1667264423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a676c116ae2dfce189db66e9117d851fea44e0f', '172.105.247.100', 1667264424, '__ci_last_regenerate|i:1667264424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595f0a93ae4c01c524fc4eba052292b9e09c8c57', '172.105.247.100', 1667264424, '__ci_last_regenerate|i:1667264424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e287ae5c296c023c7acfd84922a5a7c37c7311', '172.105.247.100', 1667264424, '__ci_last_regenerate|i:1667264424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54904aa0c3c2f119142ec5f5b6abbbd8b90e46b9', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4736737f3ad8f58e1eb522e3800ead3984d53e6d', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5909bf1cd55818a1b050dd64d39fe4cccd96145', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4501b35ac8a3b7c07e40fd72117f9c2947e03dd9', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee95e21fea6549ea4d38609bc75640c53e45de1', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b31d379632facf9eefc439fb4b444a439f1978e', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da8cc623821df96699a6c98a6807bcca7592678', '172.105.247.100', 1667268621, '__ci_last_regenerate|i:1667268621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48a00eedc107d8c763a8b7d64aa04c26bb3be31', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95333e3ae31dfc74f69f5986dffe2cd6392a50a6', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4250278bd1dcf42617a8b2ad8434fbccf981953d', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52807b65f52dd9fbd6f79bfec3ff029f7522a65a', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274d7531cd63fb4ca727a58fe87cae5f2e507033', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4c0a4c895af04aa6ff4b2f16bbea71959200f0', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42e6188fbd06cec15939878fc387a4c46e1176df', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d5352e2f9f47de2c6e1f028e0ba70506c1455c', '172.105.247.100', 1667268622, '__ci_last_regenerate|i:1667268622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f8ba690d590871a516dc442d04c5d27c8e6951', '172.105.247.100', 1667268623, '__ci_last_regenerate|i:1667268623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b66be34fa1a1b6829b33019318eb63be5363ba9', '172.105.247.100', 1667272822, '__ci_last_regenerate|i:1667272822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a3e8410b53c36961ce06a252e286e5ff19df716', '172.105.247.100', 1667272823, '__ci_last_regenerate|i:1667272822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2bfa27c4c29b9ddb72b401386a9a591e308d0ec', '172.105.247.100', 1667272823, '__ci_last_regenerate|i:1667272823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75788ae04ba9145b5c95f5dbb065057e911244d6', '172.105.247.100', 1667272823, '__ci_last_regenerate|i:1667272823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b384af72b7b2cd261a73ac7bf497f5abf0f0a62b', '172.105.247.100', 1667272823, '__ci_last_regenerate|i:1667272823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('313fd6c4c6417e309aa2f155b1e903b162ee1dd3', '172.105.247.100', 1667272824, '__ci_last_regenerate|i:1667272823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98bea5f0d023176ea2852bdba69da648443be0f2', '172.105.247.100', 1667272824, '__ci_last_regenerate|i:1667272824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612aded5619faaf628796de616235450f12a58cc', '172.105.247.100', 1667272824, '__ci_last_regenerate|i:1667272824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e816ff6362011ce444327195e7a2919e0ef6a6', '172.105.247.100', 1667272825, '__ci_last_regenerate|i:1667272825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7325cc2de77e15325ed175250e464180c14b4867', '172.105.247.100', 1667272825, '__ci_last_regenerate|i:1667272825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69103659118859d5e2a0c04a3a1ce80d8efc9d6b', '172.105.247.100', 1667272825, '__ci_last_regenerate|i:1667272825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2da61306864b521cf1ecd90dee65fb4b5b75c6', '172.105.247.100', 1667272825, '__ci_last_regenerate|i:1667272825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2909a88927088bb6147e5c1c4aa174b177fedef', '172.105.247.100', 1667272826, '__ci_last_regenerate|i:1667272826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc00ac261cd95a74b3776b6ad6003c223f5638a0', '172.105.247.100', 1667272826, '__ci_last_regenerate|i:1667272826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b0e5fb9cf193916b96f7ba2d795de72a177cebc', '172.105.247.100', 1667272826, '__ci_last_regenerate|i:1667272826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15c2e557eb6a9e45ceab6ec3f1640afd36aa3177', '172.105.247.100', 1667272827, '__ci_last_regenerate|i:1667272826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d3c85f64d81d1ee377fcbbda2641507f44a3ac', '172.105.247.100', 1667277023, '__ci_last_regenerate|i:1667277023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146ba84290ee6ebca81549d05cf7e9637040be0e', '172.105.247.100', 1667277023, '__ci_last_regenerate|i:1667277023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c509fb32c8765432c07c54023a5974b0943c82', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3973166e203d1557ecbc11d43881d0eea59fbe06', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57268ec856bd2773c4243714b155ea502eee6f5a', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1285b71f3bddfc497584129b4513e271c9e853b8', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8528a974dffe8e5d3b933e22fd9e8f1daa10b57a', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e96a5dd869623c157ceb4a75a524b3206f41e7e', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303ad394a4958b924c36ae8427492a2c8d342986', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff47d343d3116d2fe0602ce0c77ed7a682687e0', '172.105.247.100', 1667277024, '__ci_last_regenerate|i:1667277024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c7d34588f67dd08e982d2f2e91b7ab865bd766', '172.105.247.100', 1667277025, '__ci_last_regenerate|i:1667277025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f10786240571e1845e086dd396cbd6d3f93048', '172.105.247.100', 1667277025, '__ci_last_regenerate|i:1667277025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a8e24c650a2ae0ef38c8d39168dca4ecb0e7f6', '172.105.247.100', 1667277025, '__ci_last_regenerate|i:1667277025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b295f8e0395ac96c2d1b069e66f3bf5137854c', '172.105.247.100', 1667277025, '__ci_last_regenerate|i:1667277025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6263a4b6f284112ded2a248d5801be3374ef918', '172.105.247.100', 1667277025, '__ci_last_regenerate|i:1667277025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a263bab40e4adf668403cc4d49902a8400a9d407', '172.105.247.100', 1667277025, '__ci_last_regenerate|i:1667277025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be58c5c5720f67278ba7874d775e4d1c568df7a8', '37.111.219.121', 1667284873, '__ci_last_regenerate|i:1667284873;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667280397;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca13e192b03b524babdb4def571ab83ec07d8168', '172.105.247.100', 1667281222, '__ci_last_regenerate|i:1667281222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440c3c4e39d2b84f8503b5dba73a310617f66f35', '172.105.247.100', 1667281222, '__ci_last_regenerate|i:1667281222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3039b695c3dd924a46a33242f929b70782694f3d', '172.105.247.100', 1667281222, '__ci_last_regenerate|i:1667281222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04b6c23e534291f7e0de9f16c08e3d17b0cfe932', '172.105.247.100', 1667281223, '__ci_last_regenerate|i:1667281223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2224917ebb9f0e3a48a3b91f2cae2aee9d88884', '172.105.247.100', 1667281223, '__ci_last_regenerate|i:1667281223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687321c03c440345db2244df5c95c43a91c1cbae', '172.105.247.100', 1667281223, '__ci_last_regenerate|i:1667281223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9298e437657d2d8909e8f490e5c22d7114d98b38', '172.105.247.100', 1667281223, '__ci_last_regenerate|i:1667281223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5489e1eef12ec047a8b3b55c9b609c5277290f6f', '172.105.247.100', 1667281224, '__ci_last_regenerate|i:1667281224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ce6ea53ac81c76d976a871178344b9df62e719', '172.105.247.100', 1667281224, '__ci_last_regenerate|i:1667281224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72e380983146d02138edc5f9642c4d5d4ce963d', '172.105.247.100', 1667281224, '__ci_last_regenerate|i:1667281224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78b498bfe3d2ae4dec21df165c63f7bbf7a007b', '172.105.247.100', 1667281224, '__ci_last_regenerate|i:1667281224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e24930494bd369ee88253fc61f4d06a6c95843', '172.105.247.100', 1667281224, '__ci_last_regenerate|i:1667281224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd0948074cc502272253cd5643d84967993362ca', '172.105.247.100', 1667281224, '__ci_last_regenerate|i:1667281224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413d5fafa59a4cf4109af2537be91564e82757b2', '172.105.247.100', 1667281225, '__ci_last_regenerate|i:1667281225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7a891365119c5a0cfef6db69b9e5ce1563f7f5', '172.105.247.100', 1667281225, '__ci_last_regenerate|i:1667281225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f8a795a981b8a4ad9aaeea406c15e4146444ba', '172.105.247.100', 1667281225, '__ci_last_regenerate|i:1667281225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40f2625d384c31f4ac1906ccfed61bc8c1b9e41', '198.235.24.47', 1667282093, '__ci_last_regenerate|i:1667282093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a722726f4dc1065efec5e2091431c80dcde91935', '37.111.219.121', 1667286760, '__ci_last_regenerate|i:1667286760;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667284980;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2fd1c2d24d5bf12bebed31f90b0665f6e9ae27', '172.105.247.100', 1667285423, '__ci_last_regenerate|i:1667285423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b855ffeb9af4de547191e0a98e2c74d4d6086ed2', '172.105.247.100', 1667285423, '__ci_last_regenerate|i:1667285423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7899400a57644ec90d1269072d9d52533e5365d7', '172.105.247.100', 1667285423, '__ci_last_regenerate|i:1667285423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83fd9dc6a8911196713661e3e23ace7d65a3bd4b', '172.105.247.100', 1667285423, '__ci_last_regenerate|i:1667285423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4998003958e8e4ef0b2634eed7ae4b9af379579c', '172.105.247.100', 1667285423, '__ci_last_regenerate|i:1667285423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9898b50330735ec29b45963de6f9786aa9af6bfd', '172.105.247.100', 1667285423, '__ci_last_regenerate|i:1667285423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3200537eca86e597dac09809ed8763d2d3ac17b8', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dbec9ab4df0a6004d7c1a40403283d59dedd1c9', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7eeeb7f0aa1e31a10993748b3cc8519e5df74fc', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33fbdb2263d3787b5ea5d559a774a6f872c529f1', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4390a5cb2d030cd512171e5172da990da34725', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb355154b3c804963023158d50f27d3be5a59d20', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eafe795c7e66e55e5dfe938618bd13b89d994add', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807a645a8ba04b8315293df6d1f42a4f6c1c02ed', '172.105.247.100', 1667285424, '__ci_last_regenerate|i:1667285424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550adb6d8a3b6a2b9be0bd636a493a2984865ae6', '172.105.247.100', 1667285425, '__ci_last_regenerate|i:1667285425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e84d164cb174ed8e750a17ee8c46896dd7ff33', '172.105.247.100', 1667285425, '__ci_last_regenerate|i:1667285425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967f3bbec73fa51d0567fc96cb130a487cda02b8', '37.111.219.121', 1667292050, '__ci_last_regenerate|i:1667292050;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667286760;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae27887ec9866619a65af192c78eba8ece9c5c42', '172.105.247.100', 1667289623, '__ci_last_regenerate|i:1667289623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c9725252b2ab3bf9e8777e59565d972f295c580', '172.105.247.100', 1667289623, '__ci_last_regenerate|i:1667289623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee631eab858a2436b13e29467ab93c7fd388db6', '172.105.247.100', 1667289624, '__ci_last_regenerate|i:1667289624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da129b0682a7169874a922fc5b7a7f3b428bbca9', '172.105.247.100', 1667289624, '__ci_last_regenerate|i:1667289624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e7d141fdd81acb19189813774137c21327418e', '172.105.247.100', 1667289624, '__ci_last_regenerate|i:1667289624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef559f014fac18b789f7d4722177b1f0cc601720', '172.105.247.100', 1667289624, '__ci_last_regenerate|i:1667289624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e788bcfe16d94ecfe66095d14c6ce54703844a6e', '172.105.247.100', 1667289625, '__ci_last_regenerate|i:1667289625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2e8d86a3317bdde055f231674360d3aeab8c0e0', '172.105.247.100', 1667289625, '__ci_last_regenerate|i:1667289625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c7a69f32a7cf156c32a82f5ca22a6f097d98ed', '172.105.247.100', 1667289625, '__ci_last_regenerate|i:1667289625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7bcefcc69b1cd7632ddbfd8558106655f812f1d', '172.105.247.100', 1667289625, '__ci_last_regenerate|i:1667289625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438d094fbc1c67cdc273c0b300bc519ff6a163a9', '172.105.247.100', 1667289626, '__ci_last_regenerate|i:1667289626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc4c5b624392e664adc8244444a7bbe3c3d186a6', '172.105.247.100', 1667289626, '__ci_last_regenerate|i:1667289626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1e8166b6024e7f8d750b96b93ba356e51440a8', '172.105.247.100', 1667289626, '__ci_last_regenerate|i:1667289626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9fc0edd5d18b032c55d9f9700e224c57647377', '172.105.247.100', 1667289626, '__ci_last_regenerate|i:1667289626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a372471bf42efeeccf3fafc026cc58373814fcf1', '172.105.247.100', 1667289627, '__ci_last_regenerate|i:1667289627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29aceabef60c834f5cfe322f2e20a389638e9313', '172.105.247.100', 1667289627, '__ci_last_regenerate|i:1667289627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1483b299166591e9a895482294ff8f41a9ecd1ad', '37.111.219.121', 1667297703, '__ci_last_regenerate|i:1667297703;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667292752;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a185cb1ef7b2dd44f8119c4f0cfd0068627e55', '172.105.247.100', 1667293820, '__ci_last_regenerate|i:1667293820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0afcfe4700344882960909367baca3f76b94248', '172.105.247.100', 1667293820, '__ci_last_regenerate|i:1667293820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cfea4df17094628c479ceb4b4a59b1d86fe501', '172.105.247.100', 1667293821, '__ci_last_regenerate|i:1667293821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1472ce05d0abb95cc4e9c5057d05543a9293bd04', '172.105.247.100', 1667293821, '__ci_last_regenerate|i:1667293821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7130d9c330a4c508d2a831ce27885aa3d1fc79ac', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb44c303488e100295ae0ee90e4ca306964b8b3', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b9964a60f03899420ab524cbe383ead45ae9159', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8034b11892a6c04970012c7c7e8813b93b93232', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980956662856b3ce9918f660b826e80cdb0e18cd', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7bb471d913e430d01cdddae9c19b6c194efefe', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e760a40bd7dedf92893a2cf1c2faea42c10053', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82925fd2961853959d7b3b29571cc07e7aa301b8', '172.105.247.100', 1667293822, '__ci_last_regenerate|i:1667293822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32df2d415777a50c9d7642ff28a6973fa7792fa8', '172.105.247.100', 1667293823, '__ci_last_regenerate|i:1667293823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024b6339158a77240afeea082518d746a6a6ce02', '172.105.247.100', 1667293823, '__ci_last_regenerate|i:1667293823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d40613b53654d70b203b1775ba01ca6f07d87ee', '172.105.247.100', 1667293823, '__ci_last_regenerate|i:1667293823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14faa8910232e533c8ad82515380a82c048f94a1', '172.105.247.100', 1667293823, '__ci_last_regenerate|i:1667293823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ff89ac6c7947e5073263f847bdab242d4ff8fd', '37.111.219.121', 1667301327, '__ci_last_regenerate|i:1667301327;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667297783;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5fe30457c43d26e5920b5dd8ed29cf506f94c3e', '172.105.247.100', 1667298022, '__ci_last_regenerate|i:1667298022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1edee7ba4aa206fcd5500619bf310eb75ce51cbb', '172.105.247.100', 1667298022, '__ci_last_regenerate|i:1667298022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0aca6015fad309f41ecc5836e77ed980bb64aa', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2687ceae85b9fc7b7865269a75978fdf6fb544cf', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc865f6239994e98121e93c00a049c90531aacc', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114f0a151ca77579581586f66b13209d964b59cf', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7dd09e9dc77e24e1a31c955af820f75140a3de', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986018608d2866a83603869e22081cd99a2d97dc', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0934a55c9834cacb477fe12db0f0416aaa2d1243', '172.105.247.100', 1667298023, '__ci_last_regenerate|i:1667298023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ba1d5e76f5ee7b56a5bf5507a647194c7bb2368', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7755895150451caf3be3afb3e605561380b1bb52', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a986fd14a1d2d23142b02657da0958557ed2b87b', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dd5d0c745e670e3feb9cb4b9f851d813531afa3', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f42786e7176f8c110b74023f976f7d47be4661', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('712f043b0a7ead70995331e6d5a4836b9b13ee17', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca04c36295857c2daac855c59d1e97af6fc6ec4', '172.105.247.100', 1667298024, '__ci_last_regenerate|i:1667298024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54763d7a440e77585bc0e21c8e6870a40eba3652', '37.111.219.121', 1667305970, '__ci_last_regenerate|i:1667305970;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667301327;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d052e9917cc2cca82733d23b55e74a94cfe3a3', '172.105.247.100', 1667302220, '__ci_last_regenerate|i:1667302220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea099e763e4d7aa36080ba2479fb848a82ccc5a1', '172.105.247.100', 1667302220, '__ci_last_regenerate|i:1667302220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92bd26077f9ddb84b919d3304f06f697cef1d5f2', '172.105.247.100', 1667302220, '__ci_last_regenerate|i:1667302220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c2c62675aecd662fa56676b8252e76a299fb19', '172.105.247.100', 1667302221, '__ci_last_regenerate|i:1667302220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ddf2b29c37ba643a3b1d17f7ea7e7da5f2f33e', '172.105.247.100', 1667302221, '__ci_last_regenerate|i:1667302221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb37ec7e42e8443456602a8c5fe32b597f5d104e', '172.105.247.100', 1667302221, '__ci_last_regenerate|i:1667302221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7808b00674c5782eab78c28a675dede4dcb37363', '172.105.247.100', 1667302221, '__ci_last_regenerate|i:1667302221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66cb8d3c675db703fb64e5b67f8c222670715614', '172.105.247.100', 1667302222, '__ci_last_regenerate|i:1667302222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20759e28902c441cfb39a3dc4b9ba0d9696839f', '172.105.247.100', 1667302222, '__ci_last_regenerate|i:1667302222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6507641b5b43c597f98002c33f5455746437970d', '172.105.247.100', 1667302222, '__ci_last_regenerate|i:1667302222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e9fcc427e1af3a6a37fbacc93e8f9dffbea3bf', '172.105.247.100', 1667302223, '__ci_last_regenerate|i:1667302223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f01c08751ea501cdb5f10589c28975048e5edc', '172.105.247.100', 1667302223, '__ci_last_regenerate|i:1667302223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b84ee8358d9344db7302d1238069b193d9e6bfe', '172.105.247.100', 1667302223, '__ci_last_regenerate|i:1667302223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28baf594999ccb5106c71222de486fe4a41f3583', '172.105.247.100', 1667302223, '__ci_last_regenerate|i:1667302223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32d0828963c651d887aee82deb85df4ae6141b0', '172.105.247.100', 1667302224, '__ci_last_regenerate|i:1667302224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e06cc4e739fc1b00075222cf8005496c85be36', '172.105.247.100', 1667302224, '__ci_last_regenerate|i:1667302224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8ea026757121f0c7f08d410559b5072f6504ad', '37.111.219.121', 1667306499, '__ci_last_regenerate|i:1667306499;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667306064;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac1fd7f2d842f8b151b74a7a2a9a18864d8b427', '172.105.247.100', 1667306420, '__ci_last_regenerate|i:1667306420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7253a21c64b762813cb4f5b0d7c285038ad0ef6e', '172.105.247.100', 1667306421, '__ci_last_regenerate|i:1667306421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ca0a0dc3c6d02dfbd96bc36116fe8b3f8c1934', '172.105.247.100', 1667306421, '__ci_last_regenerate|i:1667306421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087ddc8ce892a92144463e689d4320e57023643f', '172.105.247.100', 1667306421, '__ci_last_regenerate|i:1667306421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9dd7acd50d53afa8bd91c0bbbe880e58eac2ae', '172.105.247.100', 1667306422, '__ci_last_regenerate|i:1667306422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f5d16c8e610f9ba1d411b9fd7bf698aba017cc', '172.105.247.100', 1667306422, '__ci_last_regenerate|i:1667306422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f76827ad54b9f7b9a22c0fb2391bd40bd6642e', '172.105.247.100', 1667306422, '__ci_last_regenerate|i:1667306422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa16bae4b2ded21019681c7880a749205fe9dfeb', '172.105.247.100', 1667306423, '__ci_last_regenerate|i:1667306422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660e99edbfaa10e7a4e3d8eaa90431568c2ef887', '172.105.247.100', 1667306423, '__ci_last_regenerate|i:1667306423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b560fde66188b521db4cccdc8a1f0cc0dd22ee', '172.105.247.100', 1667306423, '__ci_last_regenerate|i:1667306423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96fe3e2c1dbc8563301c153ca6f084ac069c4bb9', '172.105.247.100', 1667306424, '__ci_last_regenerate|i:1667306424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a245123983a56472d8f1fb8e5615be1603312ea5', '172.105.247.100', 1667306424, '__ci_last_regenerate|i:1667306424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f624346d0ac1d2e20699201eed12b92a03f1f2ed', '172.105.247.100', 1667306424, '__ci_last_regenerate|i:1667306424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8490128ed308dca04382d2c8d408fe038248cf76', '172.105.247.100', 1667306424, '__ci_last_regenerate|i:1667306424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965508cde93c2faff39f915697fc67c8549c51a3', '172.105.247.100', 1667306425, '__ci_last_regenerate|i:1667306425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd90911ca41ff57e4411955022cfa2e18da3980b', '172.105.247.100', 1667306425, '__ci_last_regenerate|i:1667306425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c327446d1054435ecdf5715508156acf91be0f', '37.111.219.121', 1667309702, '__ci_last_regenerate|i:1667309702;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667309689;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7553695ba23e29671dc4b496cd74983f5b0daa25', '37.111.219.121', 1667312168, '__ci_last_regenerate|i:1667312168;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667312148;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337def3907b023cff425e6503cab090237c5fe7a', '172.105.247.100', 1667310621, '__ci_last_regenerate|i:1667310621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd01efdbd2369b870df7708ee3600ca8b54d3378', '172.105.247.100', 1667310621, '__ci_last_regenerate|i:1667310621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72ee0dd43266b26c5f935cc5f67785027eda4fa', '172.105.247.100', 1667310621, '__ci_last_regenerate|i:1667310621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dcafdfa3f9d6a9f65980dafbe03ef905b91698f', '172.105.247.100', 1667310621, '__ci_last_regenerate|i:1667310621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db274b8c38e17bca3b5ab0f616dde47036b175d', '172.105.247.100', 1667310622, '__ci_last_regenerate|i:1667310621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c2cc933e68eee7ac40ab25e81136dbe3f9a4caa', '172.105.247.100', 1667310622, '__ci_last_regenerate|i:1667310622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e70faf7392468b19a44771840df0f55b853fa15', '172.105.247.100', 1667310622, '__ci_last_regenerate|i:1667310622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80e8245f004472b602ac624b9947bb4f09076ec2', '172.105.247.100', 1667310622, '__ci_last_regenerate|i:1667310622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73a5f5029bbb2aa838682b6177febd33ebba6ea', '172.105.247.100', 1667310623, '__ci_last_regenerate|i:1667310623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde7db4e85c4cbd4a1cc64aa6994add81f96620a', '172.105.247.100', 1667310623, '__ci_last_regenerate|i:1667310623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37d159b1665973dea9750a1c62c84fca0f571ed', '172.105.247.100', 1667310623, '__ci_last_regenerate|i:1667310623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72fd93a7820870d389d18a36ac622cbbc0b206d', '172.105.247.100', 1667310624, '__ci_last_regenerate|i:1667310623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b5e116c3ad5b436a8ff54acd6fcee89f838502b', '172.105.247.100', 1667310624, '__ci_last_regenerate|i:1667310624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba144c245fa18c71712bc9bfa94c38db8a03299', '172.105.247.100', 1667310624, '__ci_last_regenerate|i:1667310624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c29e9a002477f5232fcc6e2e470519c131ef5c', '172.105.247.100', 1667310624, '__ci_last_regenerate|i:1667310624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb1124b3c1aa901d71243e3ee79fd6d528558cb', '172.105.247.100', 1667310625, '__ci_last_regenerate|i:1667310625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acbe7826b4198f3eae302d50ad0fbaed3ef208f7', '37.111.219.121', 1667313000, '__ci_last_regenerate|i:1667313000;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667312249;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8181b6bb731d389786a93e7d5ad12c508e1501', '116.204.230.18', 1667312696, '__ci_last_regenerate|i:1667312681;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1667015044\";last_ip|s:14:\"116.204.230.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a9fb9cd13a860a79f118af04d5e68ee4c22ecc', '37.111.219.121', 1667313437, '__ci_last_regenerate|i:1667313437;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667313429;register_id|s:3:\"235\";cash_in_hand|s:10:\"12340.0000\";register_open_time|s:19:\"2022-10-31 20:23:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13dcb569fbc03e600bd83a3ee70953b4426b0167', '37.111.219.121', 1667313477, '__ci_last_regenerate|i:1667313437;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667191968\";last_ip|s:14:\"37.111.217.187\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667313476;register_id|s:3:\"236\";cash_in_hand|s:10:\"15810.0000\";register_open_time|s:19:\"2022-11-01 20:37:56\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08daf9e83a84f57ad3782e4e5e76334cb802643', '172.105.247.100', 1667314820, '__ci_last_regenerate|i:1667314820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e4c152e16c94685ae7ca4d9926759468abaafe', '172.105.247.100', 1667314820, '__ci_last_regenerate|i:1667314820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f68d6b620e7bcf752be466ca48249dff17fbc3', '172.105.247.100', 1667314821, '__ci_last_regenerate|i:1667314821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10b38903cb946c882f442af6daca2d3ce311987', '172.105.247.100', 1667314821, '__ci_last_regenerate|i:1667314821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084bf363744bc3625364b6623931dd1206a08bed', '172.105.247.100', 1667314821, '__ci_last_regenerate|i:1667314821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18712ebc9a64d8c9c0eb2b0a56aba5ccc6a75451', '172.105.247.100', 1667314822, '__ci_last_regenerate|i:1667314822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaafc230de5fa7648290562b9537eef9e0b7d731', '172.105.247.100', 1667314822, '__ci_last_regenerate|i:1667314822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b7d4294196c138a9a43e307722eafda094705c', '172.105.247.100', 1667314822, '__ci_last_regenerate|i:1667314822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d99f4bd9652e660ce928c6518b17bf534d301097', '172.105.247.100', 1667314823, '__ci_last_regenerate|i:1667314822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16b18fd133730686a44a4f3e1cd2507cc1a6955', '172.105.247.100', 1667314823, '__ci_last_regenerate|i:1667314823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d941e52d51bb22f8959cd8ea2b4b9cff389a655d', '172.105.247.100', 1667314823, '__ci_last_regenerate|i:1667314823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dee7e0f12020a9043df5a9f07628cb711a47e75', '172.105.247.100', 1667314823, '__ci_last_regenerate|i:1667314823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691caa8722d72a1a5ebb072aa6dceb4b9fe7ba87', '172.105.247.100', 1667314824, '__ci_last_regenerate|i:1667314824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b51c5ae281b2cdaf0329770f924cd90d72352c', '172.105.247.100', 1667314824, '__ci_last_regenerate|i:1667314824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9583ccf94c0ecc3767c854f49b86144791a54798', '172.105.247.100', 1667314824, '__ci_last_regenerate|i:1667314824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046e9b30b4695b9645a58d5a39cf7685be0bc23f', '172.105.247.100', 1667314825, '__ci_last_regenerate|i:1667314824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9194a578e6cc042e8217bb7695923afcc48d245d', '205.210.31.169', 1667315486, '__ci_last_regenerate|i:1667315486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d081718b73ad85f6e759f62e09c045691722a1', '205.210.31.163', 1667316562, '__ci_last_regenerate|i:1667316562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed725d4826d583aef19c5b4ccca678733e7e5fc', '172.105.247.100', 1667319021, '__ci_last_regenerate|i:1667319021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230c2ab2e3473d6e483ca7d323710125264d6b2f', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3fea17857a21189af83332a24fc752efa7748d', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9bbd4ffb1e315e6a3cb8756b1f30fd19faaeeb', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eaa2940169cf02037514c2040c4e98bd4b7b816', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac37ee4d07c4fa42857e114a10c24c67d2d34d8', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eced55435dfd1d0cd67c9842e3afa9efb6559fa3', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66507245cc07e6023c689cbdc30915fa2245c6e', '172.105.247.100', 1667319024, '__ci_last_regenerate|i:1667319024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877b1f17355ded81cae59aebc67a13ba421985c8', '172.105.247.100', 1667319025, '__ci_last_regenerate|i:1667319025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a482c9d483289eacf43f0cd3b318acaf206553', '172.105.247.100', 1667319025, '__ci_last_regenerate|i:1667319025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce8f124dc3a594663d99cc0e74ae2d310fd20ef7', '172.105.247.100', 1667319025, '__ci_last_regenerate|i:1667319025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae29c18a1490a69489417368989cb57e9ad11f55', '172.105.247.100', 1667319025, '__ci_last_regenerate|i:1667319025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfecf3f2e53f2af391b12b03eb38e0bc2cb1dd5', '172.105.247.100', 1667319025, '__ci_last_regenerate|i:1667319025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f43352a0d7be506d4bf96b66575e597c07d5938', '172.105.247.100', 1667319025, '__ci_last_regenerate|i:1667319025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f4d3df5c12ab2c2bb469642cf7be3f66d21478', '172.105.247.100', 1667319026, '__ci_last_regenerate|i:1667319026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a428266ac12fd7824835914b6d68da6516fc862d', '172.105.247.100', 1667319026, '__ci_last_regenerate|i:1667319026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b80420898fd130efd47ba296c362f35ed095c93a', '172.105.247.100', 1667323220, '__ci_last_regenerate|i:1667323220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3334e9e732156b37eb19b108b451a8ea1e51b83c', '172.105.247.100', 1667323220, '__ci_last_regenerate|i:1667323220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429467240958ff0f3f393ebf2d086c48ca52593d', '172.105.247.100', 1667323220, '__ci_last_regenerate|i:1667323220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1e155721127232ca4b0e3c871db01d643ead59', '172.105.247.100', 1667323220, '__ci_last_regenerate|i:1667323220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb434644b6900e6367788c9a3ed910187c9042c6', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f550a5dd5afb35c1d0b9f10cdf484dc957b54e', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4f4d58382ffef5c888c114c3159d3f5706c2dd', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b72cac95ef275bcaafdf36d5c6fdda84075ec7d3', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58746b1191e35582baa9efccf78e28d78490f67a', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('184618f4537f22311cb3ace5b03e2a0320bd309e', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e079a67d8c8761981a20862e0e0d1737a38900a', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aedc3a574f16ded26e54795dc3438acb521774a1', '172.105.247.100', 1667323221, '__ci_last_regenerate|i:1667323221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b14fdf53e4c5b77ca1401b57c54efe7b1e8a57c', '172.105.247.100', 1667323222, '__ci_last_regenerate|i:1667323222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd06e318faae469e9f8be9715a01b296314cd929', '172.105.247.100', 1667323222, '__ci_last_regenerate|i:1667323222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6318506f09ab5fa241b87aa254fee1e5e5a7e8f1', '172.105.247.100', 1667323222, '__ci_last_regenerate|i:1667323222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d85d8cccbe313873e3773b4ef65939f657606df5', '172.105.247.100', 1667323222, '__ci_last_regenerate|i:1667323222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eea324240dd35360613ed41fdd4f4c6fe952c98', '172.105.247.100', 1667327422, '__ci_last_regenerate|i:1667327422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb9f92d37cff81adedd2855f07509704bb085816', '172.105.247.100', 1667327422, '__ci_last_regenerate|i:1667327422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f41036a533f1190c88ea03310420f72e45ebac', '172.105.247.100', 1667327423, '__ci_last_regenerate|i:1667327423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4638095c85a3f165f1fbf428b44f992d807b1d', '172.105.247.100', 1667327423, '__ci_last_regenerate|i:1667327423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430c02271e9f1423976bc9fa826dabae1aa72986', '172.105.247.100', 1667327423, '__ci_last_regenerate|i:1667327423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13f6eac8ec73276b7360eaa66cd55125c01e1adb', '172.105.247.100', 1667327423, '__ci_last_regenerate|i:1667327423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbc8bb579899a600c26fa8c43b477132f674945', '172.105.247.100', 1667327424, '__ci_last_regenerate|i:1667327424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e4f0dc03790068fdeb8f7089fc0aebd5fc55ef', '172.105.247.100', 1667327424, '__ci_last_regenerate|i:1667327424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4162d53c370f5db75ee156a2013bf4f54831591a', '172.105.247.100', 1667327424, '__ci_last_regenerate|i:1667327424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779803ccf291008ba42cadd3ea16111cbf11205d', '172.105.247.100', 1667327424, '__ci_last_regenerate|i:1667327424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da385acf84d4609080d6da95251af8287047edc3', '172.105.247.100', 1667327424, '__ci_last_regenerate|i:1667327424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5592c3f61797702a5e9c3fefdc335f2bc9efd8e0', '172.105.247.100', 1667327425, '__ci_last_regenerate|i:1667327425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf0d5ec948ec9be2f7e73992c6262a38a04f29f', '172.105.247.100', 1667327425, '__ci_last_regenerate|i:1667327425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5a97c391d595e53cb94da552d3c6ee6dacd31d', '172.105.247.100', 1667327425, '__ci_last_regenerate|i:1667327425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fed2c99d996c0fa965c17dd1fdf8d7ed0599eda', '172.105.247.100', 1667327426, '__ci_last_regenerate|i:1667327426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045dd8c74d3bbe5c4c65ed9d64b0fcd6e0ed290a', '172.105.247.100', 1667327426, '__ci_last_regenerate|i:1667327426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa287f41a1104b5c24d26fc711ef83ff959ecfe9', '172.105.247.100', 1667331622, '__ci_last_regenerate|i:1667331622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e9c13d112012f736a2edffd52d4daf66bb79eb', '172.105.247.100', 1667331622, '__ci_last_regenerate|i:1667331622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b29c72449324637a0a3268fc6a953cf5e668b1c', '172.105.247.100', 1667331623, '__ci_last_regenerate|i:1667331623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84eaca9333b327aef2afaf7bf5b88bf7cd1877b3', '172.105.247.100', 1667331623, '__ci_last_regenerate|i:1667331623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef9ea958fee46c0d56263ff55ba524f6088b3f9', '172.105.247.100', 1667331623, '__ci_last_regenerate|i:1667331623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634465a92d29862026601f1b91cb012d3dd93ded', '172.105.247.100', 1667331623, '__ci_last_regenerate|i:1667331623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc300340fb7e821debe2a586dc04e5193405803', '172.105.247.100', 1667331624, '__ci_last_regenerate|i:1667331624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a7df38f70eefe3b66126d0771f9336a2579729', '172.105.247.100', 1667331624, '__ci_last_regenerate|i:1667331624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7418a7a1e910a420e7467a37391f4e8fae6a9169', '172.105.247.100', 1667331624, '__ci_last_regenerate|i:1667331624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ffca883d1a5f2053a07c87ca742c6291718d1f', '172.105.247.100', 1667331624, '__ci_last_regenerate|i:1667331624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a7e2311366f3c9dfd014f5e1aabfa7c98cad66', '172.105.247.100', 1667331624, '__ci_last_regenerate|i:1667331624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69650fa86605530fff3a99b7af2f870fc0b5657d', '172.105.247.100', 1667331625, '__ci_last_regenerate|i:1667331624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f6af16d4c1b4707fdd10f944fac68e5e48316a', '172.105.247.100', 1667331625, '__ci_last_regenerate|i:1667331625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432f17a4eab62ff28b6f8e350585a8269d7ec9c9', '172.105.247.100', 1667331625, '__ci_last_regenerate|i:1667331625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e690f2d706a219ef8960fd60a7c53a5dfaa0c7aa', '172.105.247.100', 1667331625, '__ci_last_regenerate|i:1667331625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4771423eaa85b3e3eb1aa320645e1a9e8e1ba9', '172.105.247.100', 1667331625, '__ci_last_regenerate|i:1667331625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759fce99ec3f59b6e4aaeefbbcbe4d769896bc7c', '172.105.247.100', 1667335820, '__ci_last_regenerate|i:1667335820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038ae7ecfd4c92de3d6d7011ea96213c196afef3', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c0e42277d28e9ea797b073add05be46c49b262', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c605e16763e6e3e15d749110c96697c671381231', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e85f14f25fdde8b9a42283094f54a1a4bc887b9', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1117e7f0a3786f151642312185ef50090c790d', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97cb6d98318741c42ca69fa6155b8de33780abc', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad06db1d9a18d933f306c19f46bdfb8caba2b01a', '172.105.247.100', 1667335821, '__ci_last_regenerate|i:1667335821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2adbc5a9b4d4ec7998ccfab7fea482197d740d01', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46bbaafca01459982758bb39e82f83407c00eca', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e302e95bf95411c418a03d803dc332e7c9fe5805', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb94880da9ab8ec7a13b7a5508363801796ba03d', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b416f8ff0016cb5a15a9fef4c4e34f6f69c75a0', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265a860939bef5d3d9641520802da0e20bcd358f', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f5b41b9bf02c397476bc1eba45667cd06d7584', '172.105.247.100', 1667335822, '__ci_last_regenerate|i:1667335822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ed9d0c9c9f03207a519fc8ca857b41ef62df16', '172.105.247.100', 1667335823, '__ci_last_regenerate|i:1667335823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0f93d0b731783d1bfd83e6299b771b001b80ae', '172.105.247.100', 1667340021, '__ci_last_regenerate|i:1667340021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d290d95dc3d0bbb6d86cc8498a30f114be0c7e9', '172.105.247.100', 1667340021, '__ci_last_regenerate|i:1667340021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957cbe9337548f3d61c71f1b12122a04d260807d', '172.105.247.100', 1667340021, '__ci_last_regenerate|i:1667340021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4708a00728bd69863cb28dd29011e7f7b8149d1e', '172.105.247.100', 1667340022, '__ci_last_regenerate|i:1667340022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b67404459be27d6da9a58f232dae24cb4cf238e', '172.105.247.100', 1667340022, '__ci_last_regenerate|i:1667340022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be0670f641c622e4c95be22accc699a03874838', '172.105.247.100', 1667340022, '__ci_last_regenerate|i:1667340022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c88cf60defc082da7a0a50560bcf1622d955363', '172.105.247.100', 1667340022, '__ci_last_regenerate|i:1667340022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96ae21cd757dbf8a8ae76d22c44f89968b14a24', '172.105.247.100', 1667340023, '__ci_last_regenerate|i:1667340023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0a2ba23d6825db5454f7528dfeb30181e7f638', '172.105.247.100', 1667340023, '__ci_last_regenerate|i:1667340023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ad813f6a1ab7b2107d42b15c74ab943bce01ec', '172.105.247.100', 1667340023, '__ci_last_regenerate|i:1667340023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370a60b27990dc308a2d0f569b541dbb5b8e80be', '172.105.247.100', 1667340023, '__ci_last_regenerate|i:1667340023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd1d1f2da4d6cadb7ac821e46d22cf886900743', '172.105.247.100', 1667340023, '__ci_last_regenerate|i:1667340023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f86ab7b291837583fa3bf41594d0af1d1b8169', '172.105.247.100', 1667340024, '__ci_last_regenerate|i:1667340024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102fcf67a035c60d9cc34d5c18b0702ae81eff5f', '172.105.247.100', 1667340024, '__ci_last_regenerate|i:1667340024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f099c4c4b8c9c255d67370072d6407d1d0fb199d', '172.105.247.100', 1667340024, '__ci_last_regenerate|i:1667340024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1386b1e7eb91c37348a843f7960abe564587e069', '172.105.247.100', 1667340025, '__ci_last_regenerate|i:1667340024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741916eede975ffaa1df909adcf5bf4dca290f09', '172.105.247.100', 1667344220, '__ci_last_regenerate|i:1667344220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c93d13d8aaa6419adbc741fa21468fda333f46c', '172.105.247.100', 1667344220, '__ci_last_regenerate|i:1667344220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aefcf7bcf9fdb72afbaf841128a8b62ffbb7e8f', '172.105.247.100', 1667344220, '__ci_last_regenerate|i:1667344220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f08c406561a44c7dd3cf5b685d22f0f417d71a', '172.105.247.100', 1667344221, '__ci_last_regenerate|i:1667344220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7df08841f64f455a018c7573e54f07e425f323a', '172.105.247.100', 1667344221, '__ci_last_regenerate|i:1667344221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a486f1660dcf8c7cb345de994d32b17a23aeba22', '172.105.247.100', 1667344221, '__ci_last_regenerate|i:1667344221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f80751519afaa158ddc86af0fed6850ac03a73b', '172.105.247.100', 1667344221, '__ci_last_regenerate|i:1667344221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6f476bbd499496fe4b0ca61dde8b4fe0e15f13', '172.105.247.100', 1667344222, '__ci_last_regenerate|i:1667344222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36995e37cdd6ea47064598fe0132d8eee880c3a4', '172.105.247.100', 1667344222, '__ci_last_regenerate|i:1667344222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9774c59fbfc23a4238a0e1271090f553199d9d52', '172.105.247.100', 1667344223, '__ci_last_regenerate|i:1667344222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a085a8e2f97dedea0b2b0de8110d3750977c2282', '172.105.247.100', 1667344223, '__ci_last_regenerate|i:1667344223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa30f2f02b3958e80fd208f32bf8b1bc1c6cd4c', '172.105.247.100', 1667344223, '__ci_last_regenerate|i:1667344223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06d06780e6a02b28208b462b987c6d8bbee35746', '172.105.247.100', 1667344223, '__ci_last_regenerate|i:1667344223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166911c6f00c86a476c0fd9ce1092cfe43b3d3c3', '172.105.247.100', 1667344224, '__ci_last_regenerate|i:1667344224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e631c2c2f322fa0cf4242c24baaec5375c2159e6', '172.105.247.100', 1667344224, '__ci_last_regenerate|i:1667344224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b667ef03d97ac646682d6756d64d96fe603e0baa', '172.105.247.100', 1667344224, '__ci_last_regenerate|i:1667344224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a256de138255bf5df1c07e07a59dd6728fcac5', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7573d435b02a7390659edaa006e6de48853acf', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6391d09a012729df09f6cdb52ce7892909637097', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571d9cb8387ec918d5f7a5048163f0938695da9e', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97820dd2244962b439bac31ff145828533220277', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7018aba373aee9b5c1a08244ae2e2128c2d1a1', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b97502608663f9652d185eff9b7adb4964a72a', '172.105.247.100', 1667348420, '__ci_last_regenerate|i:1667348420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c55cc0ed92d18deafbd6bf36782df131a85f7f', '172.105.247.100', 1667348421, '__ci_last_regenerate|i:1667348421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da9ba8619a8aecab3aff4e44ab88612f79bb892', '172.105.247.100', 1667348421, '__ci_last_regenerate|i:1667348421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af3579f0c290d7ed653c83625f4fdb5322047771', '172.105.247.100', 1667348421, '__ci_last_regenerate|i:1667348421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f772a7d8c925a82bd1ad7b5770d4bfd3273230', '172.105.247.100', 1667348421, '__ci_last_regenerate|i:1667348421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1902fdd26bce7d7e0e80ec8598936d451e066fd', '172.105.247.100', 1667348421, '__ci_last_regenerate|i:1667348421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6550277c7fe01733f03021ebb8093e93106f4e7f', '172.105.247.100', 1667348421, '__ci_last_regenerate|i:1667348421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29edf76e3c83ee7e1c53836904ed346e3c3f4960', '172.105.247.100', 1667348422, '__ci_last_regenerate|i:1667348421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66877da6de2e8b83bf2f2a39ebab097f2873092', '172.105.247.100', 1667348422, '__ci_last_regenerate|i:1667348421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a20846f752745924c0a61f2f3472c967f2abbd26', '172.105.247.100', 1667348422, '__ci_last_regenerate|i:1667348422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c03d3903cd71a9d5026faf4373b269a601b5551', '172.105.247.100', 1667352622, '__ci_last_regenerate|i:1667352622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4e59fe6f2a9ce871ecc47371e57efe1aba02a2', '172.105.247.100', 1667352623, '__ci_last_regenerate|i:1667352623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61f3b71f9da97022832551da762bef9ba826628', '172.105.247.100', 1667352625, '__ci_last_regenerate|i:1667352625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec39db23e1d3f0d290b3949fd26b0fb887478bb', '172.105.247.100', 1667352625, '__ci_last_regenerate|i:1667352625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb4692d625711409b622ddb60bac5c5aac25ee7', '172.105.247.100', 1667352625, '__ci_last_regenerate|i:1667352625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13123bea2890cfb3ceffb53fe7ae88b530ccff6', '172.105.247.100', 1667352625, '__ci_last_regenerate|i:1667352625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec9f9c5a29f59f1114000da0f488a297c611b97', '172.105.247.100', 1667352625, '__ci_last_regenerate|i:1667352625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b072e73fb43aabec2f70fec6d33b9d3e8196fa73', '172.105.247.100', 1667352625, '__ci_last_regenerate|i:1667352625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125734763a8bb3c6fb5c0c7015c11a3d80c3c5bc', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8342adfbe98caae109cc1c9738affe5d078e04e', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ac5da891df3af35c72bf1e40fd94db72b2a74c', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af22f9ec9b1f1badc844afceb66824a8b69d7702', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e5586e1a7f02d07817eb65ef7f05dd77d6c438', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('921ba10934cfb6612ee5028e0349a9d9624fd0d2', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ed6b8bf4b1bf8f6b28cd4693687bc1f03ee6a9', '172.105.247.100', 1667352626, '__ci_last_regenerate|i:1667352626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff4e569482879f60e4d5ce19875fc2def1f50e7', '172.105.247.100', 1667352627, '__ci_last_regenerate|i:1667352627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a1e5aafa90f0d4f7cf8ee1eff6b1294e77652a', '205.210.31.36', 1667356099, '__ci_last_regenerate|i:1667356099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae878571520282175da21f290da7a064fdc216fc', '172.105.247.100', 1667356821, '__ci_last_regenerate|i:1667356821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1433a7e30431726e0c24aad761a2541dab3d196a', '172.105.247.100', 1667356821, '__ci_last_regenerate|i:1667356821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd9560fe283c5889af7091bcbf921923e1ba2f0', '172.105.247.100', 1667356822, '__ci_last_regenerate|i:1667356821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537cb7d27e6fd8ca3fdfdbc4ba9f39fd95f35509', '172.105.247.100', 1667356822, '__ci_last_regenerate|i:1667356822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0a33df10ec64988c00bbc0cb45da5719fa23c4', '172.105.247.100', 1667356822, '__ci_last_regenerate|i:1667356822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12e6af0d1b4adffab5c2df8d660a9e6c6178dda', '172.105.247.100', 1667356822, '__ci_last_regenerate|i:1667356822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a8d25aa3661af05d0f721e96aa11295c7407cb', '172.105.247.100', 1667356822, '__ci_last_regenerate|i:1667356822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80ce05264a5968a77248d48267b7eafb31e20c1', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c013a14df76592c924de8b9fc01e7b1ec51faeb4', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797d359f77e3b808d20fde609c395c1c1a5fb38f', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d268c89cd2f754c52c60688dc98ed581ae86be1', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c831cb00a74ab84333275c230bafd8e72af851fd', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946757335c38cdbf7ae58c336b33043866f8cf59', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb818c5bf18359c02886f1847024481f93efd519', '172.105.247.100', 1667356823, '__ci_last_regenerate|i:1667356823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2efa880e7d1fc4d5321a0158254d3d45c00c51d', '172.105.247.100', 1667356824, '__ci_last_regenerate|i:1667356824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60666a1283593efe3eedd904e71c55ea5e338262', '172.105.247.100', 1667356824, '__ci_last_regenerate|i:1667356824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ef14910731c96f693be21265db4d82d7a6a5e3', '172.105.247.100', 1667361025, '__ci_last_regenerate|i:1667361025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b5fd71a8bfb0d622ba60823b0c7a8d7606b7d05', '172.105.247.100', 1667361026, '__ci_last_regenerate|i:1667361026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e7e3914c300ad062602f014f16ca099024f7ba', '172.105.247.100', 1667361026, '__ci_last_regenerate|i:1667361026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1784512625c3c151f9a0d52a0da52bc9bb0b65b', '172.105.247.100', 1667361027, '__ci_last_regenerate|i:1667361027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c788dfe05abf265727a33f4d4a48cce5a10028', '172.105.247.100', 1667361027, '__ci_last_regenerate|i:1667361027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467335c10598fcb3f539c512b206b39ef8306b67', '172.105.247.100', 1667361027, '__ci_last_regenerate|i:1667361027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a588efe035d30da98de587595559153715ed2f6e', '172.105.247.100', 1667361027, '__ci_last_regenerate|i:1667361027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af55b8de753c3ce8c17755e8fd119c468c95213', '172.105.247.100', 1667361028, '__ci_last_regenerate|i:1667361028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa67762fc568b2b3f722da7ad222b38cf3ec783d', '172.105.247.100', 1667361030, '__ci_last_regenerate|i:1667361029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663854794018ce2f61e8f6ea70ba3d3eb02a4e68', '172.105.247.100', 1667361030, '__ci_last_regenerate|i:1667361030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa4e15ac59aa3281e6532687b6a1ed3661648a1', '172.105.247.100', 1667361030, '__ci_last_regenerate|i:1667361030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc6de4455d1ad3d3afd1f20422806f1e993d49e', '172.105.247.100', 1667361031, '__ci_last_regenerate|i:1667361031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff944390218f9d694b8fbacbf59d6af22c70bf86', '172.105.247.100', 1667361031, '__ci_last_regenerate|i:1667361031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc80a19bd80d55fb3f3f99138310e46ea366c10', '172.105.247.100', 1667361031, '__ci_last_regenerate|i:1667361031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9fb70db0e18becd278d946d8f70d13573ca679', '172.105.247.100', 1667361032, '__ci_last_regenerate|i:1667361032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2685be6c9ca906a33eb7f3217cea2a4c397c1088', '172.105.247.100', 1667361033, '__ci_last_regenerate|i:1667361032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c3dd80885ef10cc7e475d5727c294b648d1bcd', '172.105.247.100', 1667365221, '__ci_last_regenerate|i:1667365221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7968e1d53791a5dbb041b899bd13ad565028e7a1', '172.105.247.100', 1667365221, '__ci_last_regenerate|i:1667365221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9017d4e057d89342a8fc61c1ffc4a3e26066bb8', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc6f0593513c06c78a1ecfda99cd68c5d88b7bb', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db85a6ebf96daac694e423375c7c3afe4693431', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c01efab8a045ea249be1351fdfecaa8eeb7c20', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85addde72c46f390aa01bf932bd7298ad6b94ee', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae2ac5ce2d9ed4fbb7754e1a6db642fb058d6d9', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6396503c9d166d6004668755a8d7a1f39e397da6', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6226f7d6c9c6c3fadea51e2d11c70a566d0c490c', '172.105.247.100', 1667365222, '__ci_last_regenerate|i:1667365222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0968d73035d745055f143be2a4b44b25e9ecebf2', '172.105.247.100', 1667365223, '__ci_last_regenerate|i:1667365222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6fbc0807d42504a1c524dd817033a03b7901fd', '172.105.247.100', 1667365223, '__ci_last_regenerate|i:1667365222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818ebffdc46581ddfc34d90d88482d25ddcff274', '172.105.247.100', 1667365223, '__ci_last_regenerate|i:1667365223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba9883d9cccbb2a8a83c54cd5f8a027e3a24f786', '172.105.247.100', 1667365223, '__ci_last_regenerate|i:1667365223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61647df1a391309fbe7e0175f6699b1d01145ed6', '172.105.247.100', 1667365223, '__ci_last_regenerate|i:1667365223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6244a9205ddc4223edb510abdabfc4291e2a8df', '172.105.247.100', 1667365223, '__ci_last_regenerate|i:1667365223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899141baffde75fd0e741cbb6a1360a4899e4d71', '172.105.247.100', 1667369423, '__ci_last_regenerate|i:1667369423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a437bab7fc0bfdc587c00ac58d0c787399cf442a', '172.105.247.100', 1667369424, '__ci_last_regenerate|i:1667369424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46508181107ec794015a9fa65a3b3dc30bb3f396', '172.105.247.100', 1667369424, '__ci_last_regenerate|i:1667369424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd110c3373859ab86e7f89e6e1108bdff12f3058', '172.105.247.100', 1667369424, '__ci_last_regenerate|i:1667369424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a44c9fee094eef17319aae2b1cd8e8351722c55', '172.105.247.100', 1667369424, '__ci_last_regenerate|i:1667369424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67a9d203430c8a8c16f993f2a2a400a28506792', '172.105.247.100', 1667369425, '__ci_last_regenerate|i:1667369425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0513b7b46237a92658cf8fc73cd50fc64e41d425', '172.105.247.100', 1667369425, '__ci_last_regenerate|i:1667369425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e51575b554b52d32635532d4f34994e8e211568', '172.105.247.100', 1667369425, '__ci_last_regenerate|i:1667369425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12e5485a7a91087953f0e7642860a5d8f4bb30f8', '172.105.247.100', 1667369426, '__ci_last_regenerate|i:1667369426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f471040d042acfb3b1279e8fe583ee293bb185bb', '172.105.247.100', 1667369426, '__ci_last_regenerate|i:1667369426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e15796f2eb4e1ca4b4a93f86148dfd6fa5cfdcb', '172.105.247.100', 1667369426, '__ci_last_regenerate|i:1667369426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d21ade9f677a96a81330b9a1855b44e8d7e4d2', '172.105.247.100', 1667369427, '__ci_last_regenerate|i:1667369426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33fe19e12dd224fa4cc8651e55ac7d0b52c6847a', '172.105.247.100', 1667369427, '__ci_last_regenerate|i:1667369427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b683fd981e0612ebafd9cf4d214e79827478a054', '172.105.247.100', 1667369427, '__ci_last_regenerate|i:1667369427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1823ea567d560cd9449d593a897cfe42be946e64', '172.105.247.100', 1667369428, '__ci_last_regenerate|i:1667369428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6faed25e44e490cfe22474158baf01d3575ec091', '172.105.247.100', 1667369428, '__ci_last_regenerate|i:1667369428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('089873f8d38bef02218a1de88c7adb06a4039cc0', '45.120.39.142', 1667373897, '__ci_last_regenerate|i:1667373897;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667280341\";last_ip|s:14:\"37.111.219.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667373893;register_id|s:3:\"236\";cash_in_hand|s:10:\"15810.0000\";register_open_time|s:19:\"2022-11-01 20:37:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd7ec9d162fcdb0b9b8afbe88d7aa208e801dac', '198.235.24.171', 1667370498, '__ci_last_regenerate|i:1667370498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7f09e8727b5ce48110539d72f50c6fe4fb3a73', '172.105.247.100', 1667373625, '__ci_last_regenerate|i:1667373625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afbf329403087739df74085af62394c23630ebf', '172.105.247.100', 1667373625, '__ci_last_regenerate|i:1667373625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7262a4f73d0e27decc77be3b7ed53317b71836f0', '172.105.247.100', 1667373626, '__ci_last_regenerate|i:1667373626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f20561408b349138e76838b6548960511480f16', '172.105.247.100', 1667373626, '__ci_last_regenerate|i:1667373626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ffe91478472ec1ffdbafef0ac631cb4c56887d', '172.105.247.100', 1667373626, '__ci_last_regenerate|i:1667373626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87572a9de06a278523fbecbd018901cd93436c4', '172.105.247.100', 1667373626, '__ci_last_regenerate|i:1667373626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a374794790d760285cbb323477137111f57fff3', '172.105.247.100', 1667373626, '__ci_last_regenerate|i:1667373626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80365955e2329c260ee84a28f7d75d1ca4c77b1', '172.105.247.100', 1667373626, '__ci_last_regenerate|i:1667373626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f2a7a8e550135bc70429aef1b5ebfef75d5264', '172.105.247.100', 1667373627, '__ci_last_regenerate|i:1667373627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6ce78e05d5b61dd243606264d4ae1d8702ed9e', '172.105.247.100', 1667373627, '__ci_last_regenerate|i:1667373627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb7d877091e5d7145edd204ca594422cdb309fae', '172.105.247.100', 1667373627, '__ci_last_regenerate|i:1667373627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec5bdfde78c7275274da4a76f114fef072f454a', '172.105.247.100', 1667373627, '__ci_last_regenerate|i:1667373627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac585acf8a8c0a837bc1bd8007cfd9546cb72b03', '172.105.247.100', 1667373627, '__ci_last_regenerate|i:1667373627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce6f2fcee3f07776c753e21940b790790d59a81', '172.105.247.100', 1667373628, '__ci_last_regenerate|i:1667373628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dff4d6fd8cc0b8d70a3de1b160ed1672c9cb277', '172.105.247.100', 1667373628, '__ci_last_regenerate|i:1667373628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58d864c6aabefb7c69cf2fe314be6e73bc2020d', '172.105.247.100', 1667373629, '__ci_last_regenerate|i:1667373629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37feef15c3514f8a816a7b75d0974517b4510e38', '37.111.218.45', 1667376215, '__ci_last_regenerate|i:1667376215;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667280341\";last_ip|s:14:\"37.111.219.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667376206;register_id|s:3:\"236\";cash_in_hand|s:10:\"15810.0000\";register_open_time|s:19:\"2022-11-01 20:37:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f88edd323b7c58596b6dab0f374fb88431d953', '37.111.218.45', 1667376243, '__ci_last_regenerate|i:1667376215;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667280341\";last_ip|s:14:\"37.111.219.121\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667376236;register_id|s:3:\"236\";cash_in_hand|s:10:\"15810.0000\";register_open_time|s:19:\"2022-11-01 20:37:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251774420d8685cec1690b58048992bd1ab8abae', '172.105.247.100', 1667377821, '__ci_last_regenerate|i:1667377821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a522f21043d350b903c9b23b92c42248d68a93f', '172.105.247.100', 1667377821, '__ci_last_regenerate|i:1667377821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d298a9f3904d316149220c2f35bb5106aa9e0898', '172.105.247.100', 1667377821, '__ci_last_regenerate|i:1667377821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa985a8c75577e7718128e861144f99d16f1cc6', '172.105.247.100', 1667377822, '__ci_last_regenerate|i:1667377821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad419332e93d0c9c90137371da392ae752456db', '172.105.247.100', 1667377822, '__ci_last_regenerate|i:1667377822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c03ec55d01d7d3b5169975122e6d27e5319d05', '172.105.247.100', 1667377822, '__ci_last_regenerate|i:1667377822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400f7ff55f2db0e1028fd51e254caf698ff7be0c', '172.105.247.100', 1667377822, '__ci_last_regenerate|i:1667377822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4481c8f25ee30a6632e01b6aaff50e3b5c0786', '172.105.247.100', 1667377823, '__ci_last_regenerate|i:1667377823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e260eae72ec7aeb6bd7ee2846c5b58686f9fab5d', '172.105.247.100', 1667377823, '__ci_last_regenerate|i:1667377823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc1cfd3416607bddb44eef152695f54a62f010e', '172.105.247.100', 1667377823, '__ci_last_regenerate|i:1667377823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('143d08f20c50b4e801f7506df22e731c08cf24b7', '172.105.247.100', 1667377824, '__ci_last_regenerate|i:1667377824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d628f915afccecbde4a9b5f15ff9240e54a3ee34', '172.105.247.100', 1667377824, '__ci_last_regenerate|i:1667377824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('928bcbbff8669a3f5eca55996cd14bebf7c0355c', '172.105.247.100', 1667377824, '__ci_last_regenerate|i:1667377824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b3e75c4a557842a935fdb0a37782616ffa1e68', '172.105.247.100', 1667377824, '__ci_last_regenerate|i:1667377824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde13892b04cfce00e2b0966575a54bb0ffa11b1', '172.105.247.100', 1667377825, '__ci_last_regenerate|i:1667377825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6475ae1002774606d7cb3b492effdda75e93ce4', '172.105.247.100', 1667377825, '__ci_last_regenerate|i:1667377825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42949cdf8822fb6972ceed4e9af620f1be8ca91f', '116.204.230.26', 1667377946, '__ci_last_regenerate|i:1667377927;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667193486\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699b1fc1c2e2266cbf220f250cfc3164641a3594', '172.105.247.100', 1667382021, '__ci_last_regenerate|i:1667382021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b83e5a25027b8263b39896c2d4d5638542c5e18', '172.105.247.100', 1667382023, '__ci_last_regenerate|i:1667382023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a01d2521b44a09e8c71d95895b180027aadb89', '172.105.247.100', 1667382023, '__ci_last_regenerate|i:1667382023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0193c1f1e15c2c04cb858aa08a78128839097208', '172.105.247.100', 1667382023, '__ci_last_regenerate|i:1667382023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deeacbccafd6a9873fb0e29c82a05184b57fa2be', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69177e43562d1e76839593c1f7a1c836d4c02f24', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0848c003224357f0d9a0051983346e02b0171ec', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21eef3933cda129ab801328d0278c4d64d9994dc', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69c2c8030f20dfd8a88f6176310635a6e0cbb79', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21841b750ea49b30b757b985b7c13d8ab4e75ffa', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d9502832438db0ddf4d590e68030bcf5d52616', '172.105.247.100', 1667382024, '__ci_last_regenerate|i:1667382024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2db6926c4bc4eccd41fe82218a4deb6dfc266ac', '172.105.247.100', 1667382025, '__ci_last_regenerate|i:1667382024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b05ed039fa2b0cb3ab2a4302478a5348ee2a70', '172.105.247.100', 1667382025, '__ci_last_regenerate|i:1667382025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca1a8865708fdc7723ef6a5a006df04791d1f375', '172.105.247.100', 1667382025, '__ci_last_regenerate|i:1667382025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94c4780a46023d561ee9841bccb5cff6f9a12f5', '172.105.247.100', 1667382025, '__ci_last_regenerate|i:1667382025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a440316e75949f557f7cd09462f7064b3b6c2841', '172.105.247.100', 1667382025, '__ci_last_regenerate|i:1667382025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0536a1dced05eb847cb3186143a92b400d6429d1', '172.105.247.100', 1667386221, '__ci_last_regenerate|i:1667386221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ab3b285585dd5adc98b92c2e1ffb28c6abc26a', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8bd570ed5b999f9f69929b8e1c628e4537db4a9', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4701d03ee82b608d60204d2690fc515a1850923a', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf8c5b7ecf631c3ffd55d60183deccbc5311708', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb25610c236033f64cce453574440139603b2ceb', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098737410aa20c89145ee8687131fd0415315612', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d05ce372a2f8a1bf4d9c2bd31aeb0ce109767653', '172.105.247.100', 1667386223, '__ci_last_regenerate|i:1667386223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485783262d8824049a4c27a8a2b354b2026c0333', '172.105.247.100', 1667386224, '__ci_last_regenerate|i:1667386224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef77f9104c1a8c35c61e4757654b04d71cc08dd4', '172.105.247.100', 1667386224, '__ci_last_regenerate|i:1667386224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9229f492245ede4cd8fd90d550713105bfd8d2c', '172.105.247.100', 1667386224, '__ci_last_regenerate|i:1667386224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84997d613c5ace83541448bb6a12c280ba289bd', '172.105.247.100', 1667386224, '__ci_last_regenerate|i:1667386224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d880890b002e8678a6dc96733b8e105f23aa3a', '172.105.247.100', 1667386224, '__ci_last_regenerate|i:1667386224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe039f1bfc2dbfee65e53fbf8f9c940368aed27', '172.105.247.100', 1667386225, '__ci_last_regenerate|i:1667386224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0359902d8dc44b3a3628aeaf52656533ce59e8b6', '172.105.247.100', 1667386225, '__ci_last_regenerate|i:1667386225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd4ad921225f20b70dccdd80ac7cf349da1f9260', '172.105.247.100', 1667386225, '__ci_last_regenerate|i:1667386225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7ff3f7f7959f9c28df036b5002fcd5bb2a24e4', '37.111.218.45', 1667388418, '__ci_last_regenerate|i:1667388237;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667370295\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1667388418;register_id|s:3:\"236\";cash_in_hand|s:10:\"15810.0000\";register_open_time|s:19:\"2022-11-01 20:37:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25c2bf02b9e0ee2299f1f670cdd54f88a7203f3', '172.105.247.100', 1667390423, '__ci_last_regenerate|i:1667390423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed77bc5c7f2d514effc31c3bb5070ecd8c82606', '172.105.247.100', 1667390423, '__ci_last_regenerate|i:1667390423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ecf0c0ce885b4e434995860c6600757a9ac6f9', '172.105.247.100', 1667390424, '__ci_last_regenerate|i:1667390424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d81d3e6eb63f8ba17c58397cdd92165f05296fe', '172.105.247.100', 1667390424, '__ci_last_regenerate|i:1667390424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16b3f71e8ef337a391a47eee7ff81cdc8e1620f', '172.105.247.100', 1667390424, '__ci_last_regenerate|i:1667390424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fad4bb3cff02e3fee63081d4a329785625d7353', '172.105.247.100', 1667390424, '__ci_last_regenerate|i:1667390424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9837f6374af5ee12dff49853b91009563320575e', '172.105.247.100', 1667390424, '__ci_last_regenerate|i:1667390424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f97325e0579bc6d0127129ca255ab6d32f1fa6', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8f7a023631366bdebda186ee623f697084af1d', '172.105.247.100', 1667390424, '__ci_last_regenerate|i:1667390424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192e40fd7321f88bc06f1a4e79b5b1a44de8b824', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b86343d820b1d643d795828de5c18f34db5669', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24cb6f6b325bfc834329c7bfa2d2cc6b1b719a6b', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281cb3ae21e0385b02db94e8f81837983a144a99', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('810c24e110dfdc477b0a09d07970014b447b45dd', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6b2b64711f1ac02abf6c2f40d5c81e6c391ec2', '172.105.247.100', 1667390425, '__ci_last_regenerate|i:1667390425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58c30eedb5c199469144e5948714ecd5e838e18', '172.105.247.100', 1667390426, '__ci_last_regenerate|i:1667390426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57c35b7a446d261eca449a35a549d4d29d4daf19', '172.105.247.100', 1667394621, '__ci_last_regenerate|i:1667394621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169cf1da1e7c1ebdd8c222619e0504ea249fe3cb', '172.105.247.100', 1667394622, '__ci_last_regenerate|i:1667394622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766528f334a6cfd19e9f58904a0971dbccdb9502', '172.105.247.100', 1667394622, '__ci_last_regenerate|i:1667394622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21f44ffc1fc866b79684f503843d62930ca253b', '172.105.247.100', 1667394622, '__ci_last_regenerate|i:1667394622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37de18f23e182f015d5707b81e5639d8459e1659', '172.105.247.100', 1667394623, '__ci_last_regenerate|i:1667394623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57fff42bb783333f91cec9f71a6225f12764f391', '172.105.247.100', 1667394623, '__ci_last_regenerate|i:1667394623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cc6cb3f4e02fefe6404871bc900f3c003e2cfe', '172.105.247.100', 1667394623, '__ci_last_regenerate|i:1667394623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f9cda98107afe33fef5d76eb934b94df6ef43c', '172.105.247.100', 1667394623, '__ci_last_regenerate|i:1667394623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce39b9762d9cd53211e7745ead06b17f61f206ca', '172.105.247.100', 1667394624, '__ci_last_regenerate|i:1667394623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cad285a18ef69879c8d93725db793ba03ce7171', '172.105.247.100', 1667394624, '__ci_last_regenerate|i:1667394624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36909d8e9a7c282e2d8a631542f8f6c88920ad62', '172.105.247.100', 1667394624, '__ci_last_regenerate|i:1667394624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205a4dad5f21a6ef5783141db3e622d20871820c', '172.105.247.100', 1667394624, '__ci_last_regenerate|i:1667394624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dd82f6a497080d3f96dc74dc64afeda78a9db3d', '172.105.247.100', 1667394624, '__ci_last_regenerate|i:1667394624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23d73eb864eaee627975a9dd19d86c9129e6cd3', '172.105.247.100', 1667394625, '__ci_last_regenerate|i:1667394625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf83396fa3b2d76d3cf99e3af485c27c86af9de', '172.105.247.100', 1667394625, '__ci_last_regenerate|i:1667394625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cbc5cc1e94913b8418ad53865e1a4f1236ac09e', '172.105.247.100', 1667394625, '__ci_last_regenerate|i:1667394625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ead3db5d61b6f51681f0c457a954cd0e830d4c6', '172.105.247.100', 1667398823, '__ci_last_regenerate|i:1667398823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b018368f00aed3b17b93fc0fa6428678b0e0b31c', '172.105.247.100', 1667398823, '__ci_last_regenerate|i:1667398823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1f610fcfedba89fceb650a16a69429a0b4980c', '172.105.247.100', 1667398824, '__ci_last_regenerate|i:1667398824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ae3a3f518bf00d1a27c5aa8f0f82ecf323f7f3', '172.105.247.100', 1667398824, '__ci_last_regenerate|i:1667398824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09d983c70c77ef753f9828b743899b95a03328b', '172.105.247.100', 1667398824, '__ci_last_regenerate|i:1667398824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c832631fad594f99b42e6681d72318496a3d8306', '172.105.247.100', 1667398824, '__ci_last_regenerate|i:1667398824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53afb921e99476d15f59c926793a29f6ef630f4', '172.105.247.100', 1667398824, '__ci_last_regenerate|i:1667398824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('745d0a7d61ea611dbd4b92c3f07e4e1bd49d5bd6', '172.105.247.100', 1667398825, '__ci_last_regenerate|i:1667398825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7481c2a921bd87894bf84c9305bc84b6f4454a2f', '172.105.247.100', 1667398825, '__ci_last_regenerate|i:1667398825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a614bb0e36495a23116420b7cb8fa0729dd811f', '172.105.247.100', 1667398825, '__ci_last_regenerate|i:1667398825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0c1ebb3a75d17c74faf1ed3ff3c61213304ff4', '172.105.247.100', 1667398825, '__ci_last_regenerate|i:1667398825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037f3cb5bc65e2dc3bf28a94c386f0d6683eeebe', '172.105.247.100', 1667398825, '__ci_last_regenerate|i:1667398825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f9545a2fe9b6f61b57515f878d146b2fd360d9', '172.105.247.100', 1667398825, '__ci_last_regenerate|i:1667398825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b250f20694ee0123830c3c9d8a037866118d12', '172.105.247.100', 1667398826, '__ci_last_regenerate|i:1667398826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2137c000a989cf53ece8014a2aa538b30ab9521', '172.105.247.100', 1667398826, '__ci_last_regenerate|i:1667398826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d033ef83ad84e92fc6b8576c81dd561e584b28', '172.105.247.100', 1667398826, '__ci_last_regenerate|i:1667398826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e465518aae47650810edde23153ff94edd095b5c', '172.105.247.100', 1667403022, '__ci_last_regenerate|i:1667403022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8801e2bda264d5fdfa8aa2d5b8323c91a4f39cbe', '172.105.247.100', 1667403023, '__ci_last_regenerate|i:1667403023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a704b1ffa94548a87b5340ef3225eee9d89c8d7', '172.105.247.100', 1667403024, '__ci_last_regenerate|i:1667403024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c9d57af8a69a38c868f84f65140fa6f8f32471', '172.105.247.100', 1667403024, '__ci_last_regenerate|i:1667403024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ee433fa2992d1685060e3a3ce33708afa00eef', '172.105.247.100', 1667403025, '__ci_last_regenerate|i:1667403024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc305518583073aa50f6d66cfb24f355d49fa974', '172.105.247.100', 1667403025, '__ci_last_regenerate|i:1667403025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3159e1cdf67666c7e6c1380ca347ad834d205c2', '172.105.247.100', 1667403025, '__ci_last_regenerate|i:1667403025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99bf0bbc941e0f06386dd20e0fd65ebd52dbd0a9', '172.105.247.100', 1667403025, '__ci_last_regenerate|i:1667403025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a2e8da0eda3534453223ca56e3dcb1f531c927', '172.105.247.100', 1667403025, '__ci_last_regenerate|i:1667403025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa682c553d0238f850ddab754a911a94c7598492', '172.105.247.100', 1667403026, '__ci_last_regenerate|i:1667403026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84f402d3a2c357c78977f20ea65db6b36875a8b', '172.105.247.100', 1667403026, '__ci_last_regenerate|i:1667403026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba47d08f7497f0804b478d60cfb39608e812ee85', '172.105.247.100', 1667403026, '__ci_last_regenerate|i:1667403026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0030847b0f02fae384ec05c7534ea1e62283280c', '172.105.247.100', 1667403026, '__ci_last_regenerate|i:1667403026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dcd30649c885e646436b081224eb4c4a5ab6689', '172.105.247.100', 1667403026, '__ci_last_regenerate|i:1667403026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87306134a322d129c0c5489e61f7afe872fbaac', '172.105.247.100', 1667403027, '__ci_last_regenerate|i:1667403027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1cca61c0f36679a06008e5245b39a7504aa2518', '172.105.247.100', 1667403027, '__ci_last_regenerate|i:1667403027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b2160e9d31e93bf0079ef731008f454fc8bc23e', '172.105.247.100', 1667407227, '__ci_last_regenerate|i:1667407227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ebdfd60a0ac092f6fc9b3fff2d6e5eda8ba1f61', '172.105.247.100', 1667407227, '__ci_last_regenerate|i:1667407227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c99e3752958bf6105d1c0e03ed548489c30406', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1033dd7121c6d318b16ab3e0fb0ab0d9f20a1459', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58b574b0459956d31a77efeb6514ccb8ba8ab68', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a073be9f39dbca61ee32dfb2f627e7eae26221c', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c48361f6b6443a1d9cbb3ef38e9f2852ac333c', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2d7e9c9060b302e1b591e85e46694433058380', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7982836d7e93477b874b1207a89bba56448c6d6e', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69364a75e16b568f9046e4d34ee4d348e81b55c', '172.105.247.100', 1667407228, '__ci_last_regenerate|i:1667407228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd04cdbd677570c46030da0fa05ad67672c7d1d3', '172.105.247.100', 1667407229, '__ci_last_regenerate|i:1667407229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d6bdfcd3b8057fbbe34353a257817d557e2c991', '172.105.247.100', 1667407229, '__ci_last_regenerate|i:1667407229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb1f94a70a9fa4ed4c25307c75232bf53d257ae', '172.105.247.100', 1667407229, '__ci_last_regenerate|i:1667407229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3762c0eb6c9dbf1a169c99b277d1b2665f16f4f5', '172.105.247.100', 1667407229, '__ci_last_regenerate|i:1667407229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733ddea3b9a86455d6834a96f72d411fe1c46740', '172.105.247.100', 1667407229, '__ci_last_regenerate|i:1667407229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d461f5beb742aad97de2c907b5d128d312a3596', '172.105.247.100', 1667407229, '__ci_last_regenerate|i:1667407229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2bf84e264b97270a5bce9ab5a5d90a7de4a2e1', '172.105.247.100', 1667411511, '__ci_last_regenerate|i:1667411511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eadd7f61d53f5df7506d242c47f4b79fdb2c7b44', '172.105.247.100', 1667411511, '__ci_last_regenerate|i:1667411511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3665d9729358cdc4f96ba2d13eb9ad21d4862674', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f677bd0668c5db03ab95721771256e1e7854ad0d', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d261ad5d7fe0c48ae5686cdf13b6894bb04fe8', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbcdffdbca608ff582f0ece191b94a719b1746fb', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3db62acb28696b81ef84e5fa3984bc0c92f873', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf5a4e9259fe475a9090992a2f5523ebbcd8cf3', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554414e8120f4f7e6ebd89f5d77daf303ceb2f61', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e06f60373961b41c0467ac5a6e1caafe134486', '172.105.247.100', 1667411512, '__ci_last_regenerate|i:1667411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9dca1b1b23d9c1d4c24fd52c29f39416e0b1430', '172.105.247.100', 1667411513, '__ci_last_regenerate|i:1667411513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15028ba3beb6786536bf990e4b953f7407a91f57', '172.105.247.100', 1667411513, '__ci_last_regenerate|i:1667411513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c18f79186f4d0435f457f5ed359fd6e46afc94', '172.105.247.100', 1667411513, '__ci_last_regenerate|i:1667411513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794c202104cf4294d718d7adcfbc3732d29627f2', '172.105.247.100', 1667411513, '__ci_last_regenerate|i:1667411513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a054f834a9260dd9282297b41b641943e85ca5e8', '172.105.247.100', 1667411513, '__ci_last_regenerate|i:1667411513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3d97b78d41bb285a7582b5ef962bcfab5ca7a8', '172.105.247.100', 1667411513, '__ci_last_regenerate|i:1667411513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c36c3e1ec594d6b6d8c5ea324366639f8810d99', '172.105.247.100', 1667415723, '__ci_last_regenerate|i:1667415723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a04548fd3e4ae72bf2b57f87515c2cbf8e94f115', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c2f2d2df45efebc9dce79d43d082ee9d3e2b68', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59e11a3f85df04d128cdfe0d858f6185fbe64ea', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24054b9b55a1b3fe5877f183c28c2c37fd697c8a', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a38b5eb654b6e9a466676ffe57752a669d31961', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5667432e67aeb286b88e0ecca4b463a74536a3b6', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c5ce9f2bdb03358eaeccf04ccdcf629811ff1fb', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7930673b68fce4226596473a4e052b7b129c07b', '172.105.247.100', 1667415724, '__ci_last_regenerate|i:1667415724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7acc4334534786717908fddff71e4bbb6a11b2d3', '172.105.247.100', 1667415725, '__ci_last_regenerate|i:1667415725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d21bee3a24855e54d8011970a517795b836b0cc', '172.105.247.100', 1667415725, '__ci_last_regenerate|i:1667415725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba11c39b7d1202bda78097c1b371c17751f32c16', '172.105.247.100', 1667415725, '__ci_last_regenerate|i:1667415725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('093b8adba778177e47efb60984118f142d519b73', '172.105.247.100', 1667415725, '__ci_last_regenerate|i:1667415725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad30603797b1dc46a6c716d4eb677c1882371d7', '172.105.247.100', 1667415725, '__ci_last_regenerate|i:1667415725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba2b67f7b7bbe248a734462bfb435cf8e65bf58', '172.105.247.100', 1667415725, '__ci_last_regenerate|i:1667415725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ece7fea4af5854a408616f6bb6491b9419330b2', '172.105.247.100', 1667415726, '__ci_last_regenerate|i:1667415726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61bdb7834c25a275456fc697c6db329899d6118c', '172.105.247.100', 1667420527, '__ci_last_regenerate|i:1667420527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcef241c84b927c4828fb5a0b302e4db0029280', '172.105.247.100', 1667420527, '__ci_last_regenerate|i:1667420527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ec2b07606bd68b99b4ee6ebe22205d3a7544a6', '172.105.247.100', 1667420527, '__ci_last_regenerate|i:1667420527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e20c79b9b8ff214a91a44a491e2d2ae30cd7ef2', '172.105.247.100', 1667420528, '__ci_last_regenerate|i:1667420528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a669f2cf5885d5f0d5b8062f5e238cb6f68011da', '172.105.247.100', 1667420528, '__ci_last_regenerate|i:1667420528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962a58ebe390ab6c9337f2bde0366b4a10df0e59', '172.105.247.100', 1667420528, '__ci_last_regenerate|i:1667420528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcd5cc65cfd5f016ae080950324c47733250c25', '172.105.247.100', 1667420528, '__ci_last_regenerate|i:1667420528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961e3a9b19b83fba968a51da6763150e36ff9628', '172.105.247.100', 1667420529, '__ci_last_regenerate|i:1667420529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b3fa62ec6e52df2604af8fedcb407c6059f926', '172.105.247.100', 1667420529, '__ci_last_regenerate|i:1667420529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dffa547b787fe36cb1243a558c6a8e068803d0d', '172.105.247.100', 1667420529, '__ci_last_regenerate|i:1667420529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14ebf12a86552fa595fa9b69977d80f22cc42d3', '172.105.247.100', 1667420529, '__ci_last_regenerate|i:1667420529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f5a0a8e38ad8582d3177ec08640f217e5f1516f', '172.105.247.100', 1667420530, '__ci_last_regenerate|i:1667420530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdec0b84da16e8ccb0e38a4df17e2524d4930c85', '172.105.247.100', 1667420530, '__ci_last_regenerate|i:1667420530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ce828a6634b5cbd0933f5c5711ec97f897e5a1', '172.105.247.100', 1667420530, '__ci_last_regenerate|i:1667420530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc49916550d2b7d7849e83b53f29579969faf6a', '172.105.247.100', 1667420531, '__ci_last_regenerate|i:1667420531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b271a4e0199ac5972cfb732a89443f2992fe30d', '172.105.247.100', 1667420531, '__ci_last_regenerate|i:1667420531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796f61f660502ccf6a256c32400ae8b128437dc8', '63.33.64.59', 1667423724, '__ci_last_regenerate|i:1667423724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7f0a796061b180568032034d73f273c1958331', '63.33.64.59', 1667423726, '__ci_last_regenerate|i:1667423726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521544b843cd6d8dd9b3a8307b34e46ec88279a1', '63.33.64.59', 1667423727, '__ci_last_regenerate|i:1667423727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1a7b9711b3d4886bef1951592dcd1848c0450c', '172.105.247.100', 1667426532, '__ci_last_regenerate|i:1667426532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebed91f988fc884b57a148d021efbaf32a4f810b', '172.105.247.100', 1667426532, '__ci_last_regenerate|i:1667426532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb21a6daa2974556cd9006b199a920d7b0e0026', '172.105.247.100', 1667426532, '__ci_last_regenerate|i:1667426532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b557d87c26ee927f0f64f145bc2a35806fc79060', '172.105.247.100', 1667426532, '__ci_last_regenerate|i:1667426532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c065c17cbbf51c45da1daecbdd48e7e26e03a5f3', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1f51fddddf3d236813d03be97da3cc6f8951f3', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d206db1a557519c949e3f368f7eb9e33b3a66e47', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f30e060e61cd9f3dc49ef46c60896d3a1536a69', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c9edd04c2c7e732f55aec2ed00d1b9929b9769', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac7f8ebddf166d7f3b2e1e445111af6e46db7f2', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4603d3789921d1f2351f025296f7425d1ec4175', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3edfbb8982eb6886d5e07dc9bd21a6c2e5bab69', '172.105.247.100', 1667426533, '__ci_last_regenerate|i:1667426533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffcff491c3e2736dbcb5cd8d9dab79d068ceb9b7', '172.105.247.100', 1667426534, '__ci_last_regenerate|i:1667426533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8de121106fc59825fa8011b27c9dedc73df453', '172.105.247.100', 1667426534, '__ci_last_regenerate|i:1667426534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0541ae5ed22edde77ec32b00dc759fecfb7fcabc', '172.105.247.100', 1667426534, '__ci_last_regenerate|i:1667426534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eaeac163a561d15643729c586de1a6febc2cd94', '172.105.247.100', 1667426534, '__ci_last_regenerate|i:1667426534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b933e0da94f46d1b69893fecdb026455c9dd031', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba987375a4f122d7d50eb2615571b3cca5b913f8', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa23d28c6d52ee764f453319361785bae24b8d7f', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda599401da3976c205741dd13acca514c4ccec1', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d7795729c3be5da34205f3c3fbc41806b7e40e', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8edc65d62a8fa2030e71bf1f2735e553777f1a', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54a361c128c2a0d3f476a72eb53d53c60faa77a', '172.105.247.100', 1667433129, '__ci_last_regenerate|i:1667433129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406a703fd62203413707b24a71a7a5588b592a08', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77fee7221c6270b6208504edc2b29f58caff4feb', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4dbe980fae65839a78ccb8037bc4c06b8294d3', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103e052c8093c8e3f55e13353c3a196ae373571c', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd2bd675a4659cd3efe95c2a7f7d1243843a7c0', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e805de1e2430db271ae7888b5b52d3cd1c170b', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b0bd9dd25fa946cf784c445f340e13439c3f2b', '172.105.247.100', 1667433131, '__ci_last_regenerate|i:1667433130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0794fc5f3c19380b3ec2e5c3e53619624a2c8157', '172.105.247.100', 1667433130, '__ci_last_regenerate|i:1667433130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7412d8af9798f7c890ab60ffb6f9cf59481253cc', '172.105.247.100', 1667433131, '__ci_last_regenerate|i:1667433131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd9f4683af3c39cb7321f7c6737eb8d704fe3076', '172.105.247.100', 1667440948, '__ci_last_regenerate|i:1667440948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e22a742ce623f077db56b38325987d859471d46', '172.105.247.100', 1667440948, '__ci_last_regenerate|i:1667440948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76d3a5531a73dfccfefe34fa62d42c012e6769e', '172.105.247.100', 1667440948, '__ci_last_regenerate|i:1667440948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f917278f89760ed662c33bd80318e53f36bd6a', '172.105.247.100', 1667440948, '__ci_last_regenerate|i:1667440948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0da461267bd5a7d068a712a9d3078e7abc9881', '172.105.247.100', 1667440948, '__ci_last_regenerate|i:1667440948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571f828cbc01c43e8cea50214abd8e6152acbc89', '172.105.247.100', 1667440948, '__ci_last_regenerate|i:1667440948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9be644e3634b2b9ed2d2eb54e0590193668e87', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51084852663e6fe403270173639b33ef54a447e9', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2799cd38447faec8298ed97331a04073d3514b76', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930711b230522ede57a13366a8d05e719651cc07', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccfe37de8aece5915347465c1ad7e81b3c007a6', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073d7e0848716ead03931df0be5a1c912cf7ce8a', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c95eaf07d8a2f1e6cf589d86e87a4bfb4fb88319', '172.105.247.100', 1667440949, '__ci_last_regenerate|i:1667440949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5873d9ffb90146b3f47a59b2d9232802002dc481', '172.105.247.100', 1667440950, '__ci_last_regenerate|i:1667440950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075f0dce5e35071c16a02e1a800fa1e22f5687f1', '172.105.247.100', 1667440950, '__ci_last_regenerate|i:1667440950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415f04d413252ea6863a1174f312cb9331217269', '172.105.247.100', 1667440950, '__ci_last_regenerate|i:1667440950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2247deed6b1aaf540d26338528fb9331d706e1', '34.251.203.8', 1667442183, '__ci_last_regenerate|i:1667442183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8943704687a1f427f6dd8fc62a3e091dce6966e2', '172.105.247.100', 1667449346, '__ci_last_regenerate|i:1667449346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e71bc82cf2e094b62d42348358ce3f0a1db31fc', '172.105.247.100', 1667449346, '__ci_last_regenerate|i:1667449346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a1754dd87050336990602d8b82d5bdf22f6cf8', '172.105.247.100', 1667449346, '__ci_last_regenerate|i:1667449346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1215c567452b28725a21ca784a4620ee944bb54', '172.105.247.100', 1667449346, '__ci_last_regenerate|i:1667449346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a42025d276fcb3ef32db68c70afa60ecfc80cb', '172.105.247.100', 1667449346, '__ci_last_regenerate|i:1667449346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793d8dc9d4eb8fe51d14337cab900da279444998', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181233f8b042cc32a7537ac308f26a6352d8f090', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c52ecad34c1d95f60fa985ef5c4098ceb0267b5', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958685e1c171cee48c4ae70b5e61ffed53d57e44', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee955ce63c6bd37cb6d4c3e79ce7ffbcf6966d6', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44ff801c7d989ddb5f723d49b41ba64b9154606', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc3f8fabf98ea30f6664f0dff97e31c8640be82', '172.105.247.100', 1667449347, '__ci_last_regenerate|i:1667449347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe30d36f8d86d33eb1c888af686c4ec5b9b5675', '172.105.247.100', 1667449348, '__ci_last_regenerate|i:1667449348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21180ee696a9e8b68d6c246921f84cda95c256a1', '172.105.247.100', 1667449348, '__ci_last_regenerate|i:1667449348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a61ef51dff2b331e6ac1ae638974caa6a2c90cec', '172.105.247.100', 1667449348, '__ci_last_regenerate|i:1667449348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3169b3dbf4c8ea882d9238da4af3c95b021178a1', '172.105.247.100', 1667449348, '__ci_last_regenerate|i:1667449348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('548ad8dcbf424de6ff167aeda64b2699153bc877', '37.111.217.42', 1667450984, '__ci_last_regenerate|i:1667450984;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e19699d1c6e3e4565210219e03d4e1c623301d7', '37.111.217.42', 1667450988, '__ci_last_regenerate|i:1667450988;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196dfac9bfc1841d4004e4c9b53c3725b2472aeb', '37.111.217.42', 1667450990, '__ci_last_regenerate|i:1667450990;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e65d5be01783356a0011239798413479f7aae4', '37.111.217.42', 1667450991, '__ci_last_regenerate|i:1667450991;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d69f013a34a658d257f04e323029aa0935dccc', '37.111.217.42', 1667453028, '__ci_last_regenerate|i:1667453028;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667453027;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29083f433ad9f8c6267281e8d96e887f947745d7', '37.111.217.42', 1667456321, '__ci_last_regenerate|i:1667456321;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667453080;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d9ba37ed4e881c28e370238af260118a9a74d2e', '37.111.217.42', 1667457141, '__ci_last_regenerate|i:1667457141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667457004;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cc09f3787d846c399ca4a24cae824696fe4fa1', '37.111.217.42', 1667457636, '__ci_last_regenerate|i:1667457636;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667457142;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ead8ef79c71be73bc13eb1b3f09a68ef502e0c', '37.111.217.42', 1667460585, '__ci_last_regenerate|i:1667460585;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667460582;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e047533c33a8de8adde4105f55bf5bc16e4bee28', '172.105.247.100', 1667458949, '__ci_last_regenerate|i:1667458949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521e415af61efd964aa9197865621e3f8faa63cc', '172.105.247.100', 1667458949, '__ci_last_regenerate|i:1667458949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9a1b1427c54cc33dc7025540bccde3642400f7', '172.105.247.100', 1667458949, '__ci_last_regenerate|i:1667458949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1007420c30f0746b89a02c7ac232a8bc1db6e626', '172.105.247.100', 1667458949, '__ci_last_regenerate|i:1667458949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fa37015bc94c9b42b7c6189032d92252fac794', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b188508ce4c5f35a434b4b0dd54e3e29e243d675', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae381b870b311696aaf07d83d9c3b5f1116d6c41', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75fd66dfa2176df8dae3d21ada713b8f378a8ec6', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4c6a57c97f303588d31c3444795714655fd224', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f58d81969fcdd14e55834b4b7e4d8b2c39d437fe', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8730a436eba9c6aa769166b16d565e6a9dfbdc12', '172.105.247.100', 1667458950, '__ci_last_regenerate|i:1667458950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48051a36831ceea5e169df356f8b9ddce2b62db6', '172.105.247.100', 1667458951, '__ci_last_regenerate|i:1667458950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eff99f866dd727a6248c874fa64a5323e0b7a6a', '172.105.247.100', 1667458951, '__ci_last_regenerate|i:1667458951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df3fc907f50e8d669bae2b6c33774602f1c1860', '172.105.247.100', 1667458951, '__ci_last_regenerate|i:1667458951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8866d524ddc3b300b1c23255f785c24ab9ba7e59', '172.105.247.100', 1667458951, '__ci_last_regenerate|i:1667458951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be86e4ca431bc42afab578e73410957a3782b08', '172.105.247.100', 1667458951, '__ci_last_regenerate|i:1667458951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723deee8925b95852972ce73c5a37c2801c2efc3', '37.111.217.42', 1667460970, '__ci_last_regenerate|i:1667460970;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667460585;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67855786e7628403497fe7546828d30242d2fdd8', '37.111.217.42', 1667461635, '__ci_last_regenerate|i:1667461635;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667460970;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a51b3baec04bf60178e49a48967973531e30a19', '37.111.217.42', 1667461638, '__ci_last_regenerate|i:1667461635;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667388250\";last_ip|s:13:\"37.111.218.45\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667461638;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d926f7535496a254e589b9fe160a2cc840ab9be6', '172.105.247.100', 1667469148, '__ci_last_regenerate|i:1667469148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9ec665d043db4cfe9c889062ccce6d769a958ac', '172.105.247.100', 1667469148, '__ci_last_regenerate|i:1667469148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59475cb83bdb51661730995af948c5edb8df8c3', '172.105.247.100', 1667469149, '__ci_last_regenerate|i:1667469149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1996a17505566f2d8f47471cd6b5bae221b59206', '172.105.247.100', 1667469149, '__ci_last_regenerate|i:1667469149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e54060619d12efcc114c674b3e275825b00a7426', '172.105.247.100', 1667469149, '__ci_last_regenerate|i:1667469149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc453d2c78c1c075e78d0eb107c5f9c978b2fa7', '172.105.247.100', 1667469149, '__ci_last_regenerate|i:1667469149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b61b5fd26853d6a61590f6e2f3309bbf7283e9', '172.105.247.100', 1667469149, '__ci_last_regenerate|i:1667469149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b89fc64dbd93a26a5033de96b9c4cf6bd2fb68a', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6aa6fdf2915bf98a75f5773aee68e57b9e62b2e', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff2afb36056454f554cbee8be239b474ab10d15', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ff2eac73a438243a771552eb6f39d0bb96827f', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e232be1d08027cc67247a5662174d4073e3f4284', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6e9404daf7139b2a76da946710f83e73ad70cd', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b943a17e61cdc3a2beebddc92e5c07bceb19608', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ca7290d017d7fda6f298ef8d85e4761542a18dd', '172.105.247.100', 1667469150, '__ci_last_regenerate|i:1667469150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476e23463bce6dba829bb8cf9bc8a4e4e8dfc2bb', '172.105.247.100', 1667469151, '__ci_last_regenerate|i:1667469151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5193ed710d8280cefdac120d5e90c806e241df0d', '37.111.217.42', 1667473437, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1667473437;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667451089\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667472698;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a8c5bc883c722454decdbb2bdef95d0b78d4f63', '37.111.217.42', 1667475157, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1667475157;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667451089\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667475153;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea59cbe1020571eb08fc8404c27c2e3a75ede86b', '37.111.217.42', 1667477078, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1667477078;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667451089\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667475208;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b286f463e136c39986b76e34428da91945309fd6', '37.111.217.42', 1667477129, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1667477078;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667451089\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667477078;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1897a3e8d87a393592b96b4a7a44cab5eb01ba', '172.105.247.100', 1667481160, '__ci_last_regenerate|i:1667481160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3888da86533099a102e4b2101d28d144cd2720b', '172.105.247.100', 1667481161, '__ci_last_regenerate|i:1667481161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab560f7c343ef512f1b5db3db20b86153ea2f81', '172.105.247.100', 1667481161, '__ci_last_regenerate|i:1667481161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bd182d6e943967198799af53878e13b59e5f24', '172.105.247.100', 1667481161, '__ci_last_regenerate|i:1667481161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd619782c88dcc83b61c4342f1f3ed1f21c6f46f', '172.105.247.100', 1667481161, '__ci_last_regenerate|i:1667481161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc3936f63e342946d0863d39b98a6a208153dff', '172.105.247.100', 1667481161, '__ci_last_regenerate|i:1667481161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6683c4be41af21fda0eb29576e0f0e03fc776ce', '172.105.247.100', 1667481161, '__ci_last_regenerate|i:1667481161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a50e9d30887e550d24c41191a98fe697e85827', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2606c3cbf3ab5d2342701e0515de76b006e143e', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ed09dd3d7b66688156f74b23f0117ff3159278', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b79a727994d649930abc59fd4488c38996f4f2b', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70a232326e36b428ca8b5daf40dae48d83800cf', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574a2205b627b55193743536cd0ac72a53902304', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b0078f3e7a49c4218dd56cba16beedd1899de0', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3394fa06168c43b27c3711826615af593e9bfc', '172.105.247.100', 1667481162, '__ci_last_regenerate|i:1667481162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea866f6e8612f30c9153c1198f8eb9ecb797792', '172.105.247.100', 1667481163, '__ci_last_regenerate|i:1667481163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fd9708c49fce1bf309dc851645a3f545214b31', '37.111.217.42', 1667486365, '__ci_last_regenerate|i:1667486365;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667472298\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667486359;register_id|s:3:\"237\";cash_in_hand|s:10:\"17020.0000\";register_open_time|s:19:\"2022-11-03 10:53:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65eb3700155abec32d49bf18fb47b3933e0c4078', '37.111.217.42', 1667486395, '__ci_last_regenerate|i:1667486365;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667472298\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667486393;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa81564eb5a1595068aa8d14101a41aa91f0830a', '172.105.247.100', 1667496158, '__ci_last_regenerate|i:1667496158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('499ec17cbfa2f881f2dc644663858764cd435eef', '172.105.247.100', 1667496160, '__ci_last_regenerate|i:1667496160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caad85a4a5b233e442b598464bca390b9a50ec9f', '172.105.247.100', 1667496160, '__ci_last_regenerate|i:1667496160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('001a70453be65d3264fb7c0b16437ec69760ddf5', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d669dcaa8ef4119bee5dc8e25627c61085a1b9a5', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea8992f57157d0a8eab473828582dc011cd2099a', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d8d5c1cb00c51533c4d6102d848714b2125fa77', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f29ad3ad80b228b2a4cc743d26028dfeaa927eb', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ed56ad915d0e27c1cabbf4410c5a0f8026da9a', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63337133808844ca68eae2aee332313e7213729a', '172.105.247.100', 1667496161, '__ci_last_regenerate|i:1667496161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b0ada00506874df27f23d931f5666061fb5e93d', '172.105.247.100', 1667496162, '__ci_last_regenerate|i:1667496162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d184354d82e8437ba2952d596dcfc38feaf01a', '172.105.247.100', 1667496162, '__ci_last_regenerate|i:1667496162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f626afe826604fe637c1fafd24511c5725cf70', '172.105.247.100', 1667496162, '__ci_last_regenerate|i:1667496162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e636a9a7a634163fdf529c5a3ef3a6d16be1090d', '172.105.247.100', 1667496162, '__ci_last_regenerate|i:1667496162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcb2b17e1868b9cdc93750724d94319edbfcdd2', '172.105.247.100', 1667496162, '__ci_last_regenerate|i:1667496162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdac52ae82406fa8d33f1d9646b3ada37069323', '172.105.247.100', 1667496162, '__ci_last_regenerate|i:1667496162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a53fa1d9cb21fbc4e2f318e060634f12e3537e', '172.105.247.100', 1667512352, '__ci_last_regenerate|i:1667512352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46664ad2813a5837be5a279d2d712216351ef680', '172.105.247.100', 1667512355, '__ci_last_regenerate|i:1667512355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3560ec599c0caa8e94283c2ec277d6d17ddeea07', '172.105.247.100', 1667512355, '__ci_last_regenerate|i:1667512355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912232364d8da0642e6ce9c53df8abdc9afb791b', '172.105.247.100', 1667512355, '__ci_last_regenerate|i:1667512355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4b3b463462ba24571f668e0cb5c29e9230d92f', '172.105.247.100', 1667512355, '__ci_last_regenerate|i:1667512355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821c4b4e15fcc7846224278cc4d47c0968b2f737', '172.105.247.100', 1667512355, '__ci_last_regenerate|i:1667512355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2944651d6517b5e4094078d0899ea91851f1eb', '172.105.247.100', 1667512355, '__ci_last_regenerate|i:1667512355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3aceb8cfa9cc186e2f0826e0d0cb68be8fcb41', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('698bf33b649dc5063f81f8d405187e182e3280c7', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5613e2c47f79a667e9d75f108867958f6b22db79', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ff79f97fb70f321aa9742e29f5d3349cf13351', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ccea30de1ad43bac3ca51b800b3cecfbd252ab9', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('787b124d5c36adb4310327ff00d2cea43cb42f99', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d25cad08d9ca8d40612316a6397651ab7798ed7', '172.105.247.100', 1667512356, '__ci_last_regenerate|i:1667512356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e06e45301829ef8d7b0c28bf028f8311a29e839', '172.105.247.100', 1667512357, '__ci_last_regenerate|i:1667512357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bea48623ec25cdd847914a47126c76b7121a784', '172.105.247.100', 1667512357, '__ci_last_regenerate|i:1667512357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191794db992dd44c4323b46388b7994adc635c32', '172.105.247.100', 1667530958, '__ci_last_regenerate|i:1667530958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db447c52a126fb3de9fc1193ebe32ecb7d3b98db', '172.105.247.100', 1667530959, '__ci_last_regenerate|i:1667530959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddeab606991cd5bae2332fbba90ccfb33a289a3b', '172.105.247.100', 1667530959, '__ci_last_regenerate|i:1667530959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9289ae10800e037b05e4a953cc9cc02ed55f22a', '172.105.247.100', 1667530959, '__ci_last_regenerate|i:1667530959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d518ed1c66b2ba001416bfff1e24d865dbeee8f', '172.105.247.100', 1667530959, '__ci_last_regenerate|i:1667530959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702195ea950775c7e856678a9bb7981b7a113037', '172.105.247.100', 1667530960, '__ci_last_regenerate|i:1667530960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7704461bb3a9c453a819c2f576b05061bb8b9ec', '172.105.247.100', 1667530960, '__ci_last_regenerate|i:1667530960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433fd5e2665270463de3ecbba86ebd25a2058956', '172.105.247.100', 1667530960, '__ci_last_regenerate|i:1667530960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b93ad45b4f6d2a61dc3d08254135534ecd0d0c', '172.105.247.100', 1667530961, '__ci_last_regenerate|i:1667530960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba43a7392a1febc372c9a5c4e169c7cce2b42990', '172.105.247.100', 1667530961, '__ci_last_regenerate|i:1667530960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef5d29bbc1efffeae130721f10df064621a75c3a', '172.105.247.100', 1667530961, '__ci_last_regenerate|i:1667530961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec1a052c263d0ffdd9069c9659c2111abcb4bf8', '172.105.247.100', 1667530961, '__ci_last_regenerate|i:1667530961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7246b02deaadb33fb87ca44e9ecbf0377c3fbfb8', '172.105.247.100', 1667530961, '__ci_last_regenerate|i:1667530961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501eb8e3bc2756cf2b43b3bc5734656ee0ae058f', '172.105.247.100', 1667530962, '__ci_last_regenerate|i:1667530961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa481a83fab334b9694d300ceede0b250ba8caa6', '172.105.247.100', 1667530962, '__ci_last_regenerate|i:1667530962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348d61ceab21de8c250682b9ad8fbc53c2d74d19', '172.105.247.100', 1667530962, '__ci_last_regenerate|i:1667530962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b9fa37697adbd42201f56cb6146afafea34400', '37.111.217.78', 1667537773, '__ci_last_regenerate|i:1667537773;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f05a9670a2fdb87fac050121672dee20dbbb162', '45.120.39.142', 1667538406, '__ci_last_regenerate|i:1667538406;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667538382;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706fe3df8fae6b23f39004bd6ebccbcc54529193', '45.120.39.142', 1667540348, '__ci_last_regenerate|i:1667540348;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667540344;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9901a0609181d3f9e98831f1555576a1884d4453', '45.120.39.142', 1667544309, '__ci_last_regenerate|i:1667544309;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667540349;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f4b5b578a291e0df7b3235e24a02194cb23d66', '45.120.39.142', 1667546087, '__ci_last_regenerate|i:1667546087;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667546083;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eeb82a84d74c938541838fc0b84c6e1b1c6e1c8', '45.120.39.142', 1667546817, '__ci_last_regenerate|i:1667546817;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667546088;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957aa679fbda57a476f9372b45fd1fb37b9da610', '45.120.39.142', 1667548384, '__ci_last_regenerate|i:1667548384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667546817;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d974a2472500574f6a225e7bf59f95aa6ef1f2', '45.120.39.142', 1667548433, '__ci_last_regenerate|i:1667548384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667485324\";last_ip|s:13:\"37.111.217.42\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667548433;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98be7ba535faad33d8d924be1650eb882121121', '172.105.247.100', 1667549554, '__ci_last_regenerate|i:1667549554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c29243a6bc50394c200ee395c5decc40cfbcef1', '172.105.247.100', 1667549555, '__ci_last_regenerate|i:1667549555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c7f6963afe6cca7b388d26fbcb2d1b96b86aa7', '172.105.247.100', 1667549555, '__ci_last_regenerate|i:1667549555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f08fef101afda3bff5de76e138ef062f3861af7', '172.105.247.100', 1667549555, '__ci_last_regenerate|i:1667549555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e00835d7317eee9f560d7301bae937dd987a5f3', '172.105.247.100', 1667549555, '__ci_last_regenerate|i:1667549555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238c5b5c0c4c66e643a8c216287af66fcda1eff8', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab578378f17043cebf5fb11a17f80dcbc3aa2c95', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ddbc6f85c98c8e3fb777f01bf3b98d802ff477', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5344dbdb640890bdf8a3e172824c20266615b3', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751b6faa900a30e40476efb889ef7da7ad80cce6', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84579356e7fdd8511de6a9ba916a53e680e86d61', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63fa9b68a09cc6a1e795d6f6a7c33e19daf3db96', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('882f6c9d4e447bd0901a867e277535a3b43f594e', '172.105.247.100', 1667549556, '__ci_last_regenerate|i:1667549556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5b672475abc72b23fe5551ffd876c68cf9e662', '172.105.247.100', 1667549557, '__ci_last_regenerate|i:1667549557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987db70b9127c3eb9ccf8ee7b2612cc2fa476086', '172.105.247.100', 1667549557, '__ci_last_regenerate|i:1667549557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186045c756e1a1a5cceec2a9d3d489a28163c7d3', '172.105.247.100', 1667549557, '__ci_last_regenerate|i:1667549557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21247075f5ba7fd0c004291e5de7b277c4029e10', '205.210.31.151', 1667551692, '__ci_last_regenerate|i:1667551692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b301880c7dc268a275fe87a6ea90bf1ca3d51f', '147.78.47.249', 1667554205, '__ci_last_regenerate|i:1667554205;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2500b3b71c2a773455fd49f1c541947a736686da', '147.78.47.249', 1667554207, '__ci_last_regenerate|i:1667554207;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13f61f86d8d51f3bedb169470496170bd692e408', '147.78.47.249', 1667554209, '__ci_last_regenerate|i:1667554209;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a161e938635ab40082f63f72052fd0c5e8bae2', '45.120.39.142', 1667558575, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667558575;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad42aed1e59bc944885812c1ec724159621bcae', '45.120.39.142', 1667561267, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667561267;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667561243;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584b9bf0e855aed7959801fd7443920d0cc47ae1', '45.120.39.142', 1667562063, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667562063;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667561472;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a78c300d1342ec853e0bfd60f394fbca52f143', '45.120.39.142', 1667562884, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667562884;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667562070;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df732fa503a15696b8d7687d96bede1c5da669d1', '45.120.39.142', 1667563314, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667563314;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667563120;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e802da5c4a938bdaab7656d13ddd5fab2cc337d0', '45.120.39.142', 1667565796, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667565796;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667563317;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c0a35976c18d2ab9070bc992c1e60b98dbba8c', '45.120.39.142', 1667569959, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667569959;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667569945;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bf7e984ca5eeeba3dcab1d870cdcfa230bc584', '172.105.247.100', 1667569361, '__ci_last_regenerate|i:1667569361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3190aebc2a02dbfa323ef5cb5e2ec6d643d314c', '172.105.247.100', 1667569363, '__ci_last_regenerate|i:1667569363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8b89193ca4128b5e91cc989a4867caf1c7557c', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569363;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0fc018b0ea6d9893d96b4b8d03cc0dc1600ed8', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477fa914c5c0c6e150e0b84193a0b9ec8af82392', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b695f01efa5db645ae49c84cf983dc12fedae0', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75df396c5221e094270277eeb4253f6b174535a', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84d789fa1ae5279d677855e6905fff6b70555ea', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e81c882e430cff5de216268ab9eddfc4a520126', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc96be93d8453a90cec6266279ecd8abfd872748', '172.105.247.100', 1667569364, '__ci_last_regenerate|i:1667569364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e920bf60bfcb8d4169063df20cd327b346abdb33', '172.105.247.100', 1667569365, '__ci_last_regenerate|i:1667569365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dcba787486660c417f99f7b923d0d4fa44415db', '172.105.247.100', 1667569365, '__ci_last_regenerate|i:1667569365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a56c6283aae75f59ecc4dcef67a30e8c8cbea5a', '172.105.247.100', 1667569365, '__ci_last_regenerate|i:1667569365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a0da9d4dedd1d0188e47430a18cf9a45534a55', '172.105.247.100', 1667569365, '__ci_last_regenerate|i:1667569365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f142c11ec735d7f7f47c446ae26b014f3e1b52b2', '172.105.247.100', 1667569365, '__ci_last_regenerate|i:1667569365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3110b8e163690d8fb7c4b96d2a920bb0eafea0d2', '172.105.247.100', 1667569365, '__ci_last_regenerate|i:1667569365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab4f8d3cd213e206b583b7af940567d0030fb59', '116.204.230.26', 1667570416, '__ci_last_regenerate|i:1667570416;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c9f375a0b6029c4e82ef5b3438cabbea00c0e0', '45.120.39.142', 1667571676, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667571676;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667570856;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4eebab8c384f59a7b17cb905d3c17db747359df', '116.204.230.26', 1667570825, '__ci_last_regenerate|i:1667570825;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c8a1a30ec138d35211c5a1a4aa14f598c0d155', '116.204.230.26', 1667571170, '__ci_last_regenerate|i:1667571170;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64410a4be07f5b828694a220b1926e5079d761e', '116.204.230.26', 1667571993, '__ci_last_regenerate|i:1667571993;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a455db219b46ae3a4f5f533f535cc35f378d63', '45.120.39.142', 1667572972, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667572972;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667570856;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668afa42c3f3a82ba21c189f8c25ef68d105c39a', '116.204.230.26', 1667572745, '__ci_last_regenerate|i:1667572745;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4645eca07512fd5ace93733958526bfb613b321f', '116.204.230.26', 1667573118, '__ci_last_regenerate|i:1667573118;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bc8eec9b266fbaadd65178416fed8c39f62ec7', '45.120.39.142', 1667573680, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667573680;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667572992;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('499eb4e88a93e6d40787978787f970998b7c1ca8', '116.204.230.26', 1667573427, '__ci_last_regenerate|i:1667573427;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758674dd03e582343102c697eeb7995058de7c7d', '116.204.230.26', 1667573748, '__ci_last_regenerate|i:1667573748;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24d9226d5b402b05c3331c11d3be8c3ceb97ac3', '45.120.39.142', 1667573981, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667573981;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667573970;register_id|s:3:\"238\";cash_in_hand|s:9:\"4840.0000\";register_open_time|s:19:\"2022-11-03 20:39:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a8cfce2026735d3540a829f1799e7a4b1fc871', '116.204.230.26', 1667574060, '__ci_last_regenerate|i:1667574060;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67014fa962655cd589c287d5d8a6648e941fd7c3', '45.120.39.142', 1667573985, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1667573981;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667537781\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667573985;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('217495386596c2b0d6a158ea0a6c1b801621cdea', '116.204.230.26', 1667574443, '__ci_last_regenerate|i:1667574443;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66db0745f31cb72f0f6afeb4870680eb8ce80d7', '116.204.230.26', 1667574787, '__ci_last_regenerate|i:1667574787;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('206013bad788528fe491652d724ada1e0c62e549', '116.204.230.26', 1667575102, '__ci_last_regenerate|i:1667575102;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0fe8ff0030f776d34fa8595ac5da08fcc20346', '116.204.230.26', 1667575493, '__ci_last_regenerate|i:1667575493;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c48fa331c64b52b3275b60eac83077c45a36a884', '116.204.230.26', 1667575808, '__ci_last_regenerate|i:1667575808;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df25401fd1be491d452f8d4fdf413d3700bb9f6', '116.204.230.26', 1667575844, '__ci_last_regenerate|i:1667575808;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667377932\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e994ea08a8a6092937662ce6f25eaa74496b343b', '172.105.247.100', 1667589273, '__ci_last_regenerate|i:1667589273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324c047c50132326d55996a31c925a913ff13346', '172.105.247.100', 1667589273, '__ci_last_regenerate|i:1667589273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da3dc9489a3b587048f9db223f1b031cf96f1cb', '172.105.247.100', 1667589273, '__ci_last_regenerate|i:1667589273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28776e913c47a74cb96365ad3191dcc08c5988c1', '172.105.247.100', 1667589273, '__ci_last_regenerate|i:1667589273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7047aeb86475177767d98b052c1362c523f9f5b1', '172.105.247.100', 1667589273, '__ci_last_regenerate|i:1667589273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39cbc7c724e10692829fc1f7720f156b0b359613', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598f56e575991f6f9ea66c5b236a9651938cd929', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7385dd8e8e67fd2b01e55669672fefec13ccbe', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a552016256d3d93baac80cfa575ce99db8e6c6', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7eaf3badffaea8e4c5225fd95e3488f4f40ac6', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46224e0623d18040d6cbe3117c0d2a6f027dfc8d', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5acac72a2f784153da1a95708ffe60c9293db2d', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45e1b5c5fd0cd00de9437a8fabad2e0fa6f3242', '172.105.247.100', 1667589274, '__ci_last_regenerate|i:1667589274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420f6381a295814e625fd4f6dbc333181aa86380', '172.105.247.100', 1667589275, '__ci_last_regenerate|i:1667589275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df1522e120b40527c911975d41136fca7c70b66', '172.105.247.100', 1667589275, '__ci_last_regenerate|i:1667589275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1688a3ac4e077171f9f8f607274ed1693b088fbc', '172.105.247.100', 1667589275, '__ci_last_regenerate|i:1667589275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19fe66997bcc76eff7daee645956a4eaea11999b', '128.199.243.74', 1667593065, '__ci_last_regenerate|i:1667593065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ae125c9ba9fdc5001151967da06131b8cdb20c', '128.199.243.74', 1667593066, '__ci_last_regenerate|i:1667593066;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca608213b305daa6c16653fbbca1e65c3975ee9a', '128.199.243.74', 1667593066, '__ci_last_regenerate|i:1667593066;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352ee4ae29126a7b77e3107f0fa289f6d68707a8', '198.235.24.166', 1667604708, '__ci_last_regenerate|i:1667604708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a4fcd27cc76cfc2f475229bd5f76a4221ada0b', '205.210.31.145', 1667605773, '__ci_last_regenerate|i:1667605773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1888ea1e5b378568cd8ed8102d9ddb9c8f305b00', '172.105.247.100', 1667609674, '__ci_last_regenerate|i:1667609674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45390d429f6ce692b5f7b3ae64889c61a3c9e27', '172.105.247.100', 1667609675, '__ci_last_regenerate|i:1667609675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e5185958499b23dac3e61d580dcd2068254e109', '172.105.247.100', 1667609675, '__ci_last_regenerate|i:1667609675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34a4ed6c6923753f91ae2689a905a3ab038c8d7a', '172.105.247.100', 1667609675, '__ci_last_regenerate|i:1667609675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87429286f937049d00a29787b4c4fbcc9434c3df', '172.105.247.100', 1667609676, '__ci_last_regenerate|i:1667609676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731d985f8a2fab3dd11f0d5320448948ba005b80', '172.105.247.100', 1667609676, '__ci_last_regenerate|i:1667609676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8a6652c2d357d3f2618f09ab130090eda0f35c', '172.105.247.100', 1667609676, '__ci_last_regenerate|i:1667609676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71023953ea1b1b8a90e21ebf36cfbefa1711b376', '172.105.247.100', 1667609676, '__ci_last_regenerate|i:1667609676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f5eb2ee836a7888dc71a01a997344a87b6dc3a', '172.105.247.100', 1667609676, '__ci_last_regenerate|i:1667609676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25d4178c7b7b007519ad0373647aa5985ed5f84', '172.105.247.100', 1667609676, '__ci_last_regenerate|i:1667609676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b483feec6c317aa805be8b9d6029ab90beddd9f', '172.105.247.100', 1667609677, '__ci_last_regenerate|i:1667609677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240d9f1d27284b030afe8ed64d4ecc966d1a4a09', '172.105.247.100', 1667609677, '__ci_last_regenerate|i:1667609677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b1d2a858c33055443ba8ba705e1c62454cb771', '172.105.247.100', 1667609677, '__ci_last_regenerate|i:1667609677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db2bf53cf15cf5ac30342c7f3bdadfd727cfc20', '172.105.247.100', 1667609677, '__ci_last_regenerate|i:1667609677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a2bf6643df4a3991e6721516d27ae685a9ef79', '172.105.247.100', 1667609678, '__ci_last_regenerate|i:1667609678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b32bef7a32f6a06a49c90963019c7f9441c055b', '172.105.247.100', 1667609678, '__ci_last_regenerate|i:1667609678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba8e209256ef42a6c5f11d073985c14845e8007', '205.210.31.16', 1667615075, '__ci_last_regenerate|i:1667615075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0659e7e3aecd9575f496902c4bc0ea076020c85', '205.210.31.16', 1667615076, '__ci_last_regenerate|i:1667615076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343dba2cfd632dd83b5ae7cb575f6c4ffee02e83', '205.210.31.16', 1667615076, '__ci_last_regenerate|i:1667615076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fadb953b9e0a176dfa2f8eeed02900dd99b17c3', '45.120.39.142', 1667624838, '__ci_last_regenerate|i:1667624838;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667624829;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffcd0de84def350f1dd8043a9f4e239661dc038e', '144.91.106.14', 1667622774, '__ci_last_regenerate|i:1667622774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1bab78c8968d34745266e26a5c093510a2d3fa9', '144.91.106.14', 1667622775, '__ci_last_regenerate|i:1667622775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a61791af2fdb0ed686cf76c36ab167c51d11a654', '144.91.106.14', 1667622775, '__ci_last_regenerate|i:1667622775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d73ca6750c2f01f71d5d2200e437b4cb3731670', '144.91.106.14', 1667622776, '__ci_last_regenerate|i:1667622776;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fd4b0ce68543e8298e31e1cf72ccbf3e13d067', '144.91.106.14', 1667622777, '__ci_last_regenerate|i:1667622777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758cec4d5a63f48c0f59ca8e44eca3658b86cd9e', '144.91.106.14', 1667622777, '__ci_last_regenerate|i:1667622777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105beab8e6d75bd2bf73c12493d9bbae073b518f', '198.235.24.39', 1667623124, '__ci_last_regenerate|i:1667623124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb165408b1731659987ba32aacd246a20eaf212e', '45.120.39.142', 1667626800, '__ci_last_regenerate|i:1667626800;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667624946;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c611527631b14db5a61b39de62e4d68b513924', '205.210.31.3', 1667625447, '__ci_last_regenerate|i:1667625447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cfade8746265bbf1c94eb9012e3ab70083e100', '45.120.39.142', 1667627432, '__ci_last_regenerate|i:1667627432;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667624946;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6c2742d64410f5a8f7cd8db967d1129b2856b2', '116.204.230.26', 1667627389, '__ci_last_regenerate|i:1667627389;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667569622\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7632c77e59fc8c44982551c67f7948bf2ab3d757', '116.204.230.26', 1667627458, '__ci_last_regenerate|i:1667627389;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667569622\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5230eee1a5461298235e9d72a3eed6b3b6ad7f40', '45.120.39.142', 1667629566, '__ci_last_regenerate|i:1667629566;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667627432;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61d8953a5e93e42b1df769b28cb184460c9a275', '198.235.24.20', 1667627648, '__ci_last_regenerate|i:1667627648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('516a72b99da6294eaf2f822d634168094a442959', '45.120.39.142', 1667637403, '__ci_last_regenerate|i:1667637403;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667627432;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a30b6a17ae3e2e4735a674321b3a1d0ba42f3c', '172.105.247.100', 1667630672, '__ci_last_regenerate|i:1667630672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5cda06c3a5e69291f28d15491bd42133f3f3a31', '172.105.247.100', 1667630672, '__ci_last_regenerate|i:1667630672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18afb009e2f6ec41863da74ee66728ad72d2999f', '172.105.247.100', 1667630672, '__ci_last_regenerate|i:1667630672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ddd4926fedfd9350ccc6aadb2fc122304c9e1d5', '172.105.247.100', 1667630673, '__ci_last_regenerate|i:1667630672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('190e52f9ca98ca13abddcb3f24fa036324881e96', '172.105.247.100', 1667630673, '__ci_last_regenerate|i:1667630673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48e529b04652f1553eb4c4b18009e075df0e379', '172.105.247.100', 1667630673, '__ci_last_regenerate|i:1667630673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e47e379ab47ca13e10551de8822a54329eef79', '172.105.247.100', 1667630673, '__ci_last_regenerate|i:1667630673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab9bf74378e5fe0eeaeeb272ced54f81840f252', '172.105.247.100', 1667630674, '__ci_last_regenerate|i:1667630674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d453dbe4a7f991f933ba111f6400b7b8333e6c', '172.105.247.100', 1667630674, '__ci_last_regenerate|i:1667630674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d90952f15bdf5a9aeb4c1dc9cf766731c7809cfe', '172.105.247.100', 1667630674, '__ci_last_regenerate|i:1667630674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49958eeaf78f44ca9a4782e0eb4e2fd810d2772', '172.105.247.100', 1667630674, '__ci_last_regenerate|i:1667630674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d2527da35dd644144d4691c0d9a8600679c649', '172.105.247.100', 1667630675, '__ci_last_regenerate|i:1667630675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c41cf252a482faa1d50fcd45d3d41079c0f72f', '172.105.247.100', 1667630675, '__ci_last_regenerate|i:1667630675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0987b6506c38c1302db41d6d0339ebe76b03af3d', '172.105.247.100', 1667630675, '__ci_last_regenerate|i:1667630675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156268f0839cd5a1fab327817f547ad51325fe04', '172.105.247.100', 1667630676, '__ci_last_regenerate|i:1667630676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89cc860bbb51d720a9e3e6fc76e78315381af9ea', '172.105.247.100', 1667630676, '__ci_last_regenerate|i:1667630676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8fd7d275677ccc9bbdc782071861266ca916c8', '45.120.39.142', 1667637739, '__ci_last_regenerate|i:1667637739;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667637720;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe5ee5232937130f743ca7133326e6d355197b0', '45.120.39.142', 1667644841, '__ci_last_regenerate|i:1667644841;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667644664;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87357dc302107674e7978fb874370d1f173ce0d3', '116.204.230.26', 1667638320, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667638320;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe6d864e296d4344204c81ec29f52ef169ba50a', '116.204.230.26', 1667638654, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667638654;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be83566f1ef76b0e6cff7f51198e541bc495f892', '116.204.230.26', 1667639152, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667639152;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5c5384bdeb7635c6557f2dcd0d418f59bcc2e2', '116.204.230.26', 1667641400, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667641400;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c78f5bc593826646cb09a3958a9390fc9de901', '205.210.31.32', 1667641226, '__ci_last_regenerate|i:1667641226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8540236f62414ccd53cd9c95e0b3c75d988b868', '205.210.31.32', 1667641226, '__ci_last_regenerate|i:1667641226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c08e422c524b29d5784d553b0b78bcb048f1cd5', '205.210.31.32', 1667641226, '__ci_last_regenerate|i:1667641226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6372c45e58458df5867482c234a6397ecfa02c37', '116.204.230.26', 1667641703, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667641703;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20082a6af90d1d26c1db3713f27b5f60cb1b6d0d', '116.204.230.26', 1667642035, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667642035;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0628aa8a12a66b1faad820bb5ba69a5b7ed77f44', '116.204.230.26', 1667642595, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667642595;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df01913e252c26ba877f8d9e245eeee7d5ce1b2', '116.204.230.26', 1667643115, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667643115;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('801d603bbf266b90aabb94ecef2a42d09acb01db', '116.204.230.26', 1667643469, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667643469;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c352b922a0d3b4e9e4653af0f2f6371bb1fdfdb3', '116.204.230.26', 1667643826, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667643826;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf1af34398844ccda2f330ec5b87ec809508c63e', '116.204.230.26', 1667646926, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667646926;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abf5bfb3f65c8c529c3463f3aefa619879c1ee4', '45.120.39.142', 1667646923, '__ci_last_regenerate|i:1667646923;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667644841;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8b4d8f548f14f3d21ee4fe98a1c732022e049f', '45.120.39.142', 1667651005, '__ci_last_regenerate|i:1667651005;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667649541;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60a9dbabe24594fa61c3b8ba03bfe7235bbece0', '116.204.230.26', 1667647289, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667647289;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408110e56b47487c9646129be983d35c93333c32', '116.204.230.26', 1667649593, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667649593;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f83c7cd9752e7bbbedf39f2f1c237e0a8904b5', '116.204.230.26', 1667650001, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667650001;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9c4639c0c171a0ff7a4a70d0eb275c15265c93', '116.204.230.26', 1667651145, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667651145;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2421ded257e1a6a9ac5469c6182bd85e5469dd44', '45.120.39.142', 1667653527, '__ci_last_regenerate|i:1667653527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667651275;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aabfadd7f4853ef5583bdd6b66e76645abe34f2d', '172.105.247.100', 1667651680, '__ci_last_regenerate|i:1667651680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29967f25cfced18cd09811769c7640f45b18413', '116.204.230.26', 1667652516, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667652516;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8df3b16332243f522c66781c39cb19358e7f04f', '172.105.247.100', 1667651681, '__ci_last_regenerate|i:1667651680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b89eb2dcde80db4bc5b037f9140ce0006f53ae31', '172.105.247.100', 1667651681, '__ci_last_regenerate|i:1667651681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deea00f36e6499f20730aecbd9da9068e6968856', '172.105.247.100', 1667651681, '__ci_last_regenerate|i:1667651681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b6da9bb29d4e6313cb494e688b1ab62bb55981', '172.105.247.100', 1667651681, '__ci_last_regenerate|i:1667651681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f9d963bcbedb8a6e301cb399cccee6d78e9f35', '172.105.247.100', 1667651681, '__ci_last_regenerate|i:1667651681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48b0a9bd52d0dc192086fb37a73d3b3b66682ea', '172.105.247.100', 1667651681, '__ci_last_regenerate|i:1667651681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e44ac132651feee838da6d37e384860edaa1461', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea499560e6164dd8d9842517f18850dd6ddd79d9', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5685f8dcb148c5b3587ded345d6951b670635699', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4b2cb049d58306e49df9ce05961c9665066b81', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff63fcaba9c7df7f76dc7014ceadf313c4cf745', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8836af25f393f00d7effe1eeb35852bfc826a646', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388f5192de8eb1011e30e1ed2ad092503171a42c', '172.105.247.100', 1667651682, '__ci_last_regenerate|i:1667651682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0448d1907e282d3d106ac95a4b182306d9ffb530', '172.105.247.100', 1667651683, '__ci_last_regenerate|i:1667651683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8fb425f463274ee172611c219ada94dea9f8c75', '172.105.247.100', 1667651683, '__ci_last_regenerate|i:1667651683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7222cdd620e1bb39ad1b9df2742e6feb0297551c', '116.204.230.26', 1667654096, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667654096;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6987be457ef089c60e495ced35ee2ae149011814', '45.120.39.142', 1667654147, '__ci_last_regenerate|i:1667654147;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667654140;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('036347795a1fb93a63b5a0761e601ac22069f822', '116.204.230.26', 1667656670, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667656670;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046fa51303522f18d80aa5f038b302171a78fe08', '45.120.39.142', 1667654579, '__ci_last_regenerate|i:1667654579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667654147;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73156cdca7db2a3e1dd8034420faa2c15c416071', '45.120.39.142', 1667657865, '__ci_last_regenerate|i:1667657865;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667657681;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('262ad3965341cbfbf110deb42a3859cd9cd19d84', '116.204.230.26', 1667657421, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667657421;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f6c4d87247a1058ec9664267ee43acd3f233c2', '116.204.230.26', 1667658288, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667658288;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('368d2bb199e4d50cd96b967629ea0cc077e264c0', '45.120.39.142', 1667658379, '__ci_last_regenerate|i:1667658379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667657866;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80285057dfc04c794eb8e3909ca0be13737f446', '116.204.230.26', 1667658288, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1667658288;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667626814\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";user_csrf|s:20:\"K4wFkItSnURfevDWBZ0b\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce1a2916cfb95f1a2a814b9b53362039712c617', '45.120.39.142', 1667658763, '__ci_last_regenerate|i:1667658763;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667658757;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c2c29682d18e4e0d9e23dfefc034eeedab2677', '45.120.39.142', 1667659808, '__ci_last_regenerate|i:1667659808;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667659801;register_id|s:3:\"239\";cash_in_hand|s:8:\"510.0000\";register_open_time|s:19:\"2022-11-04 20:59:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b66de1ad809ced04dc81210f189de3b8505e2f', '45.120.39.142', 1667659835, '__ci_last_regenerate|i:1667659808;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667555928\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667659835;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e521bfdd8b825278e7f21028979f41bca93dfd70', '205.210.31.183', 1667670869, '__ci_last_regenerate|i:1667670869;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a5d7b5bca9e44d0db7f9344470433fd40a93d7', '205.210.31.183', 1667670870, '__ci_last_regenerate|i:1667670870;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289e59ce04d43812c66c151c9a8cf3a6cbbcc319', '205.210.31.183', 1667670870, '__ci_last_regenerate|i:1667670870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57bea69830663266849623272a89a804dba42457', '172.105.247.100', 1667673282, '__ci_last_regenerate|i:1667673282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525eb3ee108dcc69f5844b83183da2e5997b32d1', '172.105.247.100', 1667673283, '__ci_last_regenerate|i:1667673283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbecb52efabd07d1cbee30f621db1e2e33e409ef', '172.105.247.100', 1667673283, '__ci_last_regenerate|i:1667673283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e2d225b54affa0534e21fa2e1a7e65b51fa04e', '172.105.247.100', 1667673283, '__ci_last_regenerate|i:1667673283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee2c25acae2e184ea00d91c1d44ab36840a7ef3', '172.105.247.100', 1667673284, '__ci_last_regenerate|i:1667673284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edfe4aec471a95ae6cc06ffe01fd31d1177e36e7', '172.105.247.100', 1667673284, '__ci_last_regenerate|i:1667673284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb3ef58ae85f4d79cd2797302ef8ba72a060248', '172.105.247.100', 1667673284, '__ci_last_regenerate|i:1667673284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232ddabc10d9c90bfcc0e8641c9277b4ac959232', '172.105.247.100', 1667673284, '__ci_last_regenerate|i:1667673284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47ed1baba8575b9ffe1c9ae4fbe9afd594d644d', '172.105.247.100', 1667673285, '__ci_last_regenerate|i:1667673285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784a87a42e53a28c7469c4c9a7e66129614ddb96', '172.105.247.100', 1667673285, '__ci_last_regenerate|i:1667673285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d5e76efd8c24fcd67e4a2b3cd5b75b49895362', '172.105.247.100', 1667673285, '__ci_last_regenerate|i:1667673285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce09d34e29828b68b46bd46aeb3a527454765980', '172.105.247.100', 1667673285, '__ci_last_regenerate|i:1667673285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa39b1b53fae4aa1bb3cc8017a04d184d751c25b', '172.105.247.100', 1667673286, '__ci_last_regenerate|i:1667673286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0615e783f8225a4630a543ceb68dffdac2aaa42', '172.105.247.100', 1667673286, '__ci_last_regenerate|i:1667673286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1d70590718d4284100652a864ad2a886fb09d4', '172.105.247.100', 1667673286, '__ci_last_regenerate|i:1667673286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f4b59f9182163b5238416ff96a67e2318edf08', '172.105.247.100', 1667673287, '__ci_last_regenerate|i:1667673286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7eb7d5118d0dbbcbad78f2bbcce5a0976083d39', '172.105.247.100', 1667695472, '__ci_last_regenerate|i:1667695472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85bf98d198fc647891fbc8c47b7473bbc1a8371b', '172.105.247.100', 1667695472, '__ci_last_regenerate|i:1667695472;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43c0bb09a05637d4c660b4856750d10b3802223', '172.105.247.100', 1667695473, '__ci_last_regenerate|i:1667695473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542f589a2893ff84b2bff3fe8ae2802d57c65e3d', '172.105.247.100', 1667695473, '__ci_last_regenerate|i:1667695473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aada57e6e0739c1a7bf3fd6bc79e1fa667e4084', '172.105.247.100', 1667695473, '__ci_last_regenerate|i:1667695473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f7ae65cf242e0095510da3e1c28b911e6d5f77', '172.105.247.100', 1667695473, '__ci_last_regenerate|i:1667695473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94bf9d94fdd43405f50ddfbd387b1cd3165f810f', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6cb2ad1760623adb086f4421e683127039ff31', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60cfa3cb578b899ea7af1f6c10b1745524ddad1', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74719ca2fc852de9429454227ed7609dfcbc457f', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c03c1c0f79814cbc0f0ebaa5fe7dcf739676114', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2655c48f0c3d7a0dd9bb5492b93ab0006d330aad', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47fc6b278549605467f66c30236c3bc36298725', '172.105.247.100', 1667695474, '__ci_last_regenerate|i:1667695474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34109260cc0be54383d6cc8973677bf316e32d7c', '172.105.247.100', 1667695475, '__ci_last_regenerate|i:1667695474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ded392fbcd5c025e342819eadf4325aad6505a', '172.105.247.100', 1667695475, '__ci_last_regenerate|i:1667695475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09095198e7faec4a3a099f3dace3f9a88e96ead0', '172.105.247.100', 1667695475, '__ci_last_regenerate|i:1667695475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df4df5b9fa529656a9bb27fc1565e6793d661af8', '198.235.24.39', 1667697810, '__ci_last_regenerate|i:1667697810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0d8306f57c66d1fd6befad908a2b3dc2b867303', '198.235.24.39', 1667697811, '__ci_last_regenerate|i:1667697811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bb651f1178a1cd557c25168e1b80a5c7831b06', '198.235.24.39', 1667697812, '__ci_last_regenerate|i:1667697812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f6f86b2673b8628c324519e43a2bda914ab4a2', '45.120.39.142', 1667709423, '__ci_last_regenerate|i:1667709367;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667622222\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667709423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9f9768f7c282a7225a00f1dddb0cf0bff832c62', '172.105.247.100', 1667715861, '__ci_last_regenerate|i:1667715861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3baa2edebbb5e82daeab6910f4d2eeaca57e8141', '172.105.247.100', 1667715862, '__ci_last_regenerate|i:1667715862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52a7a4186919b85d79e518690e1f740f8e45f92', '172.105.247.100', 1667715863, '__ci_last_regenerate|i:1667715863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a51a97c5cf85b7951c95caf4acae03f76d254df', '172.105.247.100', 1667715863, '__ci_last_regenerate|i:1667715863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a351fd8bf39c0ffbcc33dc3d89be9847a9deaf', '172.105.247.100', 1667715863, '__ci_last_regenerate|i:1667715863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032cfe125b9961cc1bfd2cd4aa68ad470039000c', '172.105.247.100', 1667715863, '__ci_last_regenerate|i:1667715863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3abe43701f7a34fe1dc526ede823e957de24d75c', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6fe4bb9a694e1728c78fa9b77a2065856a21c0', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2352c1720ccd7df0bd0df450179d6ff07ab393c3', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1ee913ac1562c3ce273b60a3093a40dd2dbbd9', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407aec31923d7536449413a082754325eeb76c54', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3432bc921f9ff5d94b5316a5df78f5b12e4c87ed', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a5d1304b54aff6c24c834eca418f73701cfc9b', '172.105.247.100', 1667715864, '__ci_last_regenerate|i:1667715864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78f9231be7b11a96f0435a2dfcfc732d3465b9ab', '172.105.247.100', 1667715865, '__ci_last_regenerate|i:1667715865;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd9496a381fa8ef7a904c537050dd7233d98cd6', '172.105.247.100', 1667715865, '__ci_last_regenerate|i:1667715865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2dbbdaf58f34d1d8660a4afd85ad9048768774', '172.105.247.100', 1667715865, '__ci_last_regenerate|i:1667715865;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b2224b7582f3e43afdfa0f29438b72c3dfbac5', '37.111.216.196', 1667722903, '__ci_last_regenerate|i:1667722903;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667722052;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd804189fe34ccd479225aee3e2f4023905830bf', '37.111.216.196', 1667724431, '__ci_last_regenerate|i:1667724431;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667722052;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c988d17032e65e277cf383fe47944cb4757fdd', '37.111.216.196', 1667724800, '__ci_last_regenerate|i:1667724800;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667724443;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799ab680637e0287513840f62a76c2e62c2882ed', '37.111.216.196', 1667725484, '__ci_last_regenerate|i:1667725484;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667724956;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a50486f59adc6a1595791300e277086b565da5b', '37.111.216.196', 1667727201, '__ci_last_regenerate|i:1667727201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667725556;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2885b55de18609519f69eee5569fbdbe554f6daa', '37.111.216.196', 1667727985, '__ci_last_regenerate|i:1667727985;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667727239;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc514df643bced4eba197235f53f39ff1464559', '116.204.230.26', 1667730783, '__ci_last_regenerate|i:1667730783;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667727459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb1ab8fd9e598164ff75095fa388754f45b9843', '37.111.216.196', 1667729377, '__ci_last_regenerate|i:1667729377;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667727985;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776515c1bb15c4d20f2ba17063714ee6c79ecc28', '37.111.216.196', 1667729504, '__ci_last_regenerate|i:1667729377;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667709374\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667729499;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4be5f4e260a684dd40dd358d578cb622c5e6880', '116.204.230.26', 1667731469, '__ci_last_regenerate|i:1667731469;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667730813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b12592dc21a17c50c7f43eaba523625bbd1d5f', '198.235.24.57', 1667731357, '__ci_last_regenerate|i:1667731357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea659dbbc4402ec6a8cd96cc447f383a14d15e09', '198.235.24.57', 1667731358, '__ci_last_regenerate|i:1667731358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57e08ee953fc975f22c7cbe29985ff1ef7bbbac7', '198.235.24.57', 1667731359, '__ci_last_regenerate|i:1667731359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01fe42d088de3cf4be4168be14d0297ec2484ec0', '116.204.230.26', 1667737978, '__ci_last_regenerate|i:1667737978;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667730813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b93c01b3f7c3df328f6d9c90333c016d5f9307', '172.105.247.100', 1667736265, '__ci_last_regenerate|i:1667736265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97d5fe1fe2d107f86b905c714c26d92d5940018', '172.105.247.100', 1667736266, '__ci_last_regenerate|i:1667736266;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5867efe7985d0f2a27cf99f4a22a6701e6f859', '172.105.247.100', 1667736268, '__ci_last_regenerate|i:1667736267;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb315cb57f6c0b20f9c5636990bb580ebe5b683e', '172.105.247.100', 1667736268, '__ci_last_regenerate|i:1667736268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f7ccc7136f30763f9ea7d65b4a3acdeb8563cb5', '172.105.247.100', 1667736268, '__ci_last_regenerate|i:1667736268;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3e8b971dbebb148dff6ac906b50f304470c9a2', '172.105.247.100', 1667736268, '__ci_last_regenerate|i:1667736268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ca55b5aeefcb6278247eac6a3c70e024677647', '172.105.247.100', 1667736269, '__ci_last_regenerate|i:1667736269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6ddc9b6d2e6bcd8ea3ebcac309544cd2d2a6236', '172.105.247.100', 1667736269, '__ci_last_regenerate|i:1667736269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a9769fa5cf5d70b47b2cd2c2131ccb2df5e406', '172.105.247.100', 1667736269, '__ci_last_regenerate|i:1667736269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85b76d31691bee531d2ae7452ab9ef6edc92180', '172.105.247.100', 1667736269, '__ci_last_regenerate|i:1667736269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961140f941ab1e70d447a7d5dec2f925d72ad977', '172.105.247.100', 1667736269, '__ci_last_regenerate|i:1667736269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87876034dc5a40eb2c1fc07a23552fe032c0f16', '172.105.247.100', 1667736270, '__ci_last_regenerate|i:1667736270;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac33c260f8028589ea9f9ac395716aec0d9b0d5', '172.105.247.100', 1667736270, '__ci_last_regenerate|i:1667736270;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf78cd5a480eaa200f1d5a407cf0669e21097ad', '172.105.247.100', 1667736270, '__ci_last_regenerate|i:1667736270;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e0bf86c2961aa66092384ce6b4eb4c66dccf9c', '172.105.247.100', 1667736271, '__ci_last_regenerate|i:1667736271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('849d8a1a546d3055729d777371ec48e6ba82697d', '172.105.247.100', 1667736271, '__ci_last_regenerate|i:1667736271;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e359d369d1b6c38bc1a7357e0a2f9569d6cc7d', '37.111.216.196', 1667738081, '__ci_last_regenerate|i:1667738081;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667736769;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa538da4cf99516686b221acf4ee9f1778e43234', '116.204.230.26', 1667737670, '__ci_last_regenerate|i:1667737569;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667727444\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1667737621;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cedb86b178647f57c2b13fd05251fa48df97994d', '116.204.230.26', 1667739255, '__ci_last_regenerate|i:1667739255;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667730813;user_csrf|s:20:\"ws3h7rQjEJ2M9U05zZvH\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307e9d28a3aa4ae7862606969f4bbbbe1cf00a55', '37.111.216.196', 1667740817, '__ci_last_regenerate|i:1667740817;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667738084;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0210a617b725d265a6e76b34cecf25840e533f', '116.204.230.26', 1667740942, '__ci_last_regenerate|i:1667740942;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667730813;user_csrf|s:20:\"S0kFxwp48EdIZBVT3Oe2\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f8216b29f14916a3de67422f0184d28cbedffa', '37.111.216.196', 1667741316, '__ci_last_regenerate|i:1667741316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667741231;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a656b0c6f9aea7a7606e435cc985f475f95d61', '116.204.230.26', 1667741279, '__ci_last_regenerate|i:1667741279;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667730813;user_csrf|s:20:\"S0kFxwp48EdIZBVT3Oe2\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f11b1ffe4c5f1994f17e1672cb3e4c2be8ec75', '116.204.230.26', 1667741299, '__ci_last_regenerate|i:1667741279;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667637817\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667730813;user_csrf|s:20:\"HKPuGjAFI2Jfcsakhimx\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528fef1bb03875b56f4f7f47a143bf57a532cb49', '37.111.216.196', 1667741870, '__ci_last_regenerate|i:1667741870;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667741866;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7060eee3af584082a389bc7bbb92bd405aa68621', '37.111.216.196', 1667742458, '__ci_last_regenerate|i:1667742458;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667741870;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70faa17360fc5688b4de505e5f8b83bedf163989', '37.111.216.196', 1667743572, '__ci_last_regenerate|i:1667743572;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667743560;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d4418d22ea4a16eb6bab4bbe18bd481a6c11cc8', '37.111.216.196', 1667745203, '__ci_last_regenerate|i:1667745203;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667743573;register_id|s:3:\"240\";cash_in_hand|s:8:\"120.0000\";register_open_time|s:19:\"2022-11-05 20:50:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99fac23e7985916b543a9312c8f4bc84420cab2d', '37.111.216.196', 1667745241, '__ci_last_regenerate|i:1667745203;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667721824\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667745241;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff958177da1083f929fc5ced26d5525f6edaefe', '172.105.247.100', 1667755278, '__ci_last_regenerate|i:1667755278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ab69995102d8f678a50ace0f2c2e9602fcc7d8', '172.105.247.100', 1667755279, '__ci_last_regenerate|i:1667755279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09ae0c90c923f640e8d2f73fd62603f50a8e37d', '172.105.247.100', 1667755279, '__ci_last_regenerate|i:1667755279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98b1187646312b1d1e50ff9da291b755b999ad1', '172.105.247.100', 1667755279, '__ci_last_regenerate|i:1667755279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c06799915623818fe10a6f42b8f622bbdaac9bf', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a706376f5b313c765449bc384a9cae1d5d2123', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1bc9af1e51a59e51ae510ecdb2e08d1b7921c4', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fafbdb56603dda923f49bc970defcb9a53635ced', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b123674397017196357714185be1f64bec9f8b4', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20605ebafd508c3302b30553d544a23073a0a817', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c162f50a96d961a5a14291bec31aa08e77e301', '172.105.247.100', 1667755280, '__ci_last_regenerate|i:1667755280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d01320c5946d871558674456762fd2de909c50', '172.105.247.100', 1667755281, '__ci_last_regenerate|i:1667755281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea1356101b9ff31fce98c86a13fbffb04f2d4c5', '172.105.247.100', 1667755281, '__ci_last_regenerate|i:1667755281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b8c40dee77f01ee1512f6e5d94c4fcb9f7110c', '172.105.247.100', 1667755281, '__ci_last_regenerate|i:1667755281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91709477d5c4b6ad0ef5de40353ca6073ef5522', '172.105.247.100', 1667755282, '__ci_last_regenerate|i:1667755282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd1889b698ed5305333bf812d9208815af194fb', '172.105.247.100', 1667755282, '__ci_last_regenerate|i:1667755282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bb9018db79d99c74709a0b7a0e82fdbd26f80b', '172.105.247.100', 1667760677, '__ci_last_regenerate|i:1667760677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ac46afacb14b06904e5150b340f5d3df5bd2ae', '172.105.247.100', 1667760677, '__ci_last_regenerate|i:1667760677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bd0db0a92e79e4b6e5221734985459816f51918', '172.105.247.100', 1667760678, '__ci_last_regenerate|i:1667760678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d8c85ed0b6cf3f5f951955ba56d477f106bf75', '172.105.247.100', 1667760678, '__ci_last_regenerate|i:1667760678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dee16d46ffe96e988cc7357be8273b03e5b6619d', '172.105.247.100', 1667760678, '__ci_last_regenerate|i:1667760678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291d9b7786b002941ad8f0d3f6a855b6c9b9705f', '172.105.247.100', 1667760678, '__ci_last_regenerate|i:1667760678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7312405ed9018fa988fd787358f3dc8b809c83', '172.105.247.100', 1667760679, '__ci_last_regenerate|i:1667760679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24642013ff394b859f65291144ec8688cfb08b70', '172.105.247.100', 1667760679, '__ci_last_regenerate|i:1667760679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b098c19b2c4838bf0621f3fd909c38a3554e2ec', '172.105.247.100', 1667760679, '__ci_last_regenerate|i:1667760679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c39239eb4808829c0fd79a51d974404bb92cd86', '172.105.247.100', 1667760679, '__ci_last_regenerate|i:1667760679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a179837b6e3f04fb053d96a9807ea50858205cec', '172.105.247.100', 1667760679, '__ci_last_regenerate|i:1667760679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d144f06ba2c9c2b8602ab757db1eae810d441c0', '172.105.247.100', 1667760680, '__ci_last_regenerate|i:1667760680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29cee6030d3a522e207fccda494e01c43d65d7d9', '172.105.247.100', 1667760680, '__ci_last_regenerate|i:1667760680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8167552d7c0a4315661b82df01aa6890c09b6a18', '172.105.247.100', 1667760680, '__ci_last_regenerate|i:1667760680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68a5038e132b7a360589ca1d879bdf6859a30761', '172.105.247.100', 1667760681, '__ci_last_regenerate|i:1667760681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d739036221f77b3fdb12250deed727cb06b6b2f', '172.105.247.100', 1667760681, '__ci_last_regenerate|i:1667760681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e469c5491a64922320a086833478a6a4bc9a484', '172.105.247.100', 1667766074, '__ci_last_regenerate|i:1667766074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6cf18993044105ec6037b0c813c2a8125efb962', '172.105.247.100', 1667766074, '__ci_last_regenerate|i:1667766074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c47e60c3684c1237a5f4b507502e51ce42ecd69', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af020cede28d435b8929dd90891baa2a3341f7fc', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394bfd2f1cd003ae2fdefb65c8bd12584f7e3be8', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963fc7d26593a79a6433302327b3d1e7ffb1f441', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85698a71592ca9608aaefa6ffbc3067ee645e403', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87c370d3c30ece2b394e141b478b348e803174d', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d77d04f8ccad5b3946a91d42d1620d45682c45', '172.105.247.100', 1667766075, '__ci_last_regenerate|i:1667766075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a809ca1079ff67cb8cbafe5fea867bfe335a05', '172.105.247.100', 1667766076, '__ci_last_regenerate|i:1667766076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b90f7adfdaede227496a5c8b724919b20da352b', '172.105.247.100', 1667766076, '__ci_last_regenerate|i:1667766076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ef011446cda1726757d2675714a712b3a09405', '172.105.247.100', 1667766076, '__ci_last_regenerate|i:1667766076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc61e3020b47ee533f2eea7da433aaafb498bc5', '172.105.247.100', 1667766076, '__ci_last_regenerate|i:1667766076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef34f55fecf3c6124ee9cde84ad7d5e32715182', '172.105.247.100', 1667766076, '__ci_last_regenerate|i:1667766076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc3819682c6d5b587c8994182e3e2f7c045d565', '172.105.247.100', 1667766077, '__ci_last_regenerate|i:1667766077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfdb577bae097832e445ee013f3f9f791b324426', '172.105.247.100', 1667766077, '__ci_last_regenerate|i:1667766077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5249bc577b68b225f45f7efe5f44865c80bb74f', '172.105.247.100', 1667772690, '__ci_last_regenerate|i:1667772690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b135233d6ed9260d74c6857a10e8c596c3229e', '172.105.247.100', 1667772690, '__ci_last_regenerate|i:1667772690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a51151b8fa78a9b0fe9b9ee149f3adb6fcb0c7', '172.105.247.100', 1667772691, '__ci_last_regenerate|i:1667772691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('944900fe870f63d3db58328ff5ba65b7b2ead18e', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bae326ce4ff9b59e63d706fd716022982c17da0', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d25b235957fb7104d942dd1b2439fbc17053788', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b691cae64228d561d03abd1c706f0229c93f9c', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae4c0db4ba660deb6977b859cf431eb7a1fa085', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f2b446b964213b686475941f00207248a7c349', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b72e792d4cf48a036ab0e415b8773b527050611', '172.105.247.100', 1667772692, '__ci_last_regenerate|i:1667772692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e6effeccc6cd578fb5551df5271ca19eafa06a', '172.105.247.100', 1667772693, '__ci_last_regenerate|i:1667772693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e1f7f73ee1d27e4d0398a2d66d53306d8a3ca7', '172.105.247.100', 1667772693, '__ci_last_regenerate|i:1667772693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d9bb1e35495bb485bf0a72eee51954222d265a', '172.105.247.100', 1667772693, '__ci_last_regenerate|i:1667772693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26701cc56d14515cffba792615d91471076513c', '172.105.247.100', 1667772693, '__ci_last_regenerate|i:1667772693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31209235549fda69c3c0c1bc66bd0c1d7ce6ae55', '172.105.247.100', 1667772693, '__ci_last_regenerate|i:1667772693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008e7883d1b7cf483d64a74565770bbefca65bb8', '172.105.247.100', 1667772694, '__ci_last_regenerate|i:1667772694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21417a2823e6801355ccd89eb553eb53e7d3cdd3', '172.105.247.100', 1667776872, '__ci_last_regenerate|i:1667776872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fd4717d89edfb088998961cbb59600d77169f9', '172.105.247.100', 1667776874, '__ci_last_regenerate|i:1667776874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6a8b8cecc21aaa5d830b76ac074884ca844282', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efeefbda1534567eb56ce8082934de6f7308a04d', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf6cd974f7d41b599415652b165695e86016e59', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e98a34b2c243f5f8d7ac8566154aca8b22de1e', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4256ec2153dc93d567c7327e0f1500d6f621074f', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c6774d77442f7b933865f76b66264110a1ed84', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9be0e791dc85a7ccb0e6a768977ba8fdae8608', '172.105.247.100', 1667776875, '__ci_last_regenerate|i:1667776875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bdfa7c7d01cc1a333c20116641b21eee1c47b5', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c2312985844945c0abbc8fe9278fd3aa7611f2', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5cfa36c9c89510f5b100787c38c65ba5bb9728', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe9ca64d1a91d36d41f86e8fa16a90fa8aa03ea1', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b822367e058c9251a85472e83d8f9e15b94b3f5', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a77e3487d3084564789a88fc88d4666d942ef4', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3928eb82f862614cdef3855acce24188634853b9', '172.105.247.100', 1667776876, '__ci_last_regenerate|i:1667776876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc642be00de14f5416d4deb5db11613f47d97bd', '172.105.247.100', 1667781091, '__ci_last_regenerate|i:1667781091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c6e0c1b0ca924a238a30a93e6d939cdf7d98b2', '172.105.247.100', 1667781092, '__ci_last_regenerate|i:1667781091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df92023537d867282a1de126a7b27822d774f33', '172.105.247.100', 1667781092, '__ci_last_regenerate|i:1667781092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78f2566383de13f394bb0765f9912d0f38577319', '172.105.247.100', 1667781092, '__ci_last_regenerate|i:1667781092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63da9931a3b3c59a9a51421b8a9cf9fa65bcc152', '172.105.247.100', 1667781092, '__ci_last_regenerate|i:1667781092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5277e9369550f8ba4cfcc6ff6a6680e58997c0', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb34a9db8f43e4423a2082e2c0ae30ed0ace658', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c18b5b22f547ec64df4ba1a424473d4d9876535', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe518053cd9a2c1bc7fa8b94cb806eb4a9c6d1ee', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d0733d6e1ed77d75116bcfcc3cdec9269fc45d', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ba9e75306f8eafb9196af0b72fbeb8396187b9', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a1115c49bf1e847eee596ef45b78aff815024de', '172.105.247.100', 1667781093, '__ci_last_regenerate|i:1667781093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd5694c88d97c2a7d53b50eb799c94e4857b562', '172.105.247.100', 1667781094, '__ci_last_regenerate|i:1667781094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d6a9e86433819593f4d86c50b2d87e9096fdab', '172.105.247.100', 1667781094, '__ci_last_regenerate|i:1667781094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f5b0173f168c96a07a3dc00dda90b4afe29305', '172.105.247.100', 1667781094, '__ci_last_regenerate|i:1667781094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c251fbb5af81a18a1882b87cad7f6da2ca05487e', '172.105.247.100', 1667781095, '__ci_last_regenerate|i:1667781095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7169c1ce48abdee8262993c4842080e4a5fb3e', '172.105.247.100', 1667785277, '__ci_last_regenerate|i:1667785277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874f2094cdd53dd943d9181652425e122c90f2a3', '172.105.247.100', 1667785277, '__ci_last_regenerate|i:1667785277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6147534d5371e19fcab8d5e7b36f53ee5cf00693', '172.105.247.100', 1667785278, '__ci_last_regenerate|i:1667785278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cae3ed9c8dda92efb33c0d275c3af5b2871b0a', '172.105.247.100', 1667785278, '__ci_last_regenerate|i:1667785278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12889a803d964520a2d29d1b27b8f63e5d4b9b53', '172.105.247.100', 1667785278, '__ci_last_regenerate|i:1667785278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4686df5b6d683ff56aa81f1491bb0d4477933e0d', '172.105.247.100', 1667785278, '__ci_last_regenerate|i:1667785278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f131d646e943939861f18d56bcaefb736a4e7f', '172.105.247.100', 1667785278, '__ci_last_regenerate|i:1667785278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b89f9f78b0858b180a8e92da3ce114fea2ebed51', '172.105.247.100', 1667785278, '__ci_last_regenerate|i:1667785278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8df55487dcc54440164d49bad71e70fa54cfab2', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a2a03187504211ebd43ff6bde7688f09493bf6', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf5f2d68a493b37d877249186dc9415566a871e', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28b977655de8252613168e7bd117200e02a5390', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8da7df15da9ac37a5104046501d6882052868a', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a3da9fcb793ab5c2369eb9115849111799124e', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67cb084af676796c5d6aac41d2c24fdeaeacc46', '172.105.247.100', 1667785279, '__ci_last_regenerate|i:1667785279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8ffef5154436ff3bbb6d2efaac4d602c857ffb', '172.105.247.100', 1667785280, '__ci_last_regenerate|i:1667785280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5004341da3263ad23aa4873a720c74fe43c6fcd', '205.210.31.177', 1667789334, '__ci_last_regenerate|i:1667789334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be279aa05c45ce6724653b1dc89a3f4cc9fe293', '205.210.31.177', 1667789335, '__ci_last_regenerate|i:1667789335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd222c830dca31f3429b994e966d49853432b63', '205.210.31.177', 1667789335, '__ci_last_regenerate|i:1667789335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1c196d428d8a33c5243dd45186f7468c619e85', '172.105.247.100', 1667789477, '__ci_last_regenerate|i:1667789477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f919fa584270967612e2084b540bd6327b7b7d8b', '172.105.247.100', 1667789479, '__ci_last_regenerate|i:1667789479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad82f2ba16da9071283d0f9db5fa9117eec1e871', '172.105.247.100', 1667789480, '__ci_last_regenerate|i:1667789479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10fc8871d37fca330a5db42b8117885f8768e3a2', '172.105.247.100', 1667789480, '__ci_last_regenerate|i:1667789480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74aa1bcf8dbd5cd3b0f3daf403478385efd9fa2', '172.105.247.100', 1667789480, '__ci_last_regenerate|i:1667789480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dea82ca38b9f20336a10ef5c5b95ed483e42190', '172.105.247.100', 1667789480, '__ci_last_regenerate|i:1667789480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd87f427d824bd9a454d6b99d11aed53f17ec76', '172.105.247.100', 1667789480, '__ci_last_regenerate|i:1667789480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8071282ffe9993eab60d57fa0953cccad517fbcd', '172.105.247.100', 1667789480, '__ci_last_regenerate|i:1667789480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06b8a56d3aa7f169d5555f01b29219bf1daf1a1', '172.105.247.100', 1667789481, '__ci_last_regenerate|i:1667789481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c89b567a2c1cafdc84af5c1205a725361bba4f', '172.105.247.100', 1667789481, '__ci_last_regenerate|i:1667789481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2082f0b7aba3143573fbee7db27d11ca40d2f257', '172.105.247.100', 1667789481, '__ci_last_regenerate|i:1667789481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c0b70e2bc49ac2854806dd31b24c9fbb8aecd2', '172.105.247.100', 1667789481, '__ci_last_regenerate|i:1667789481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949aefa6164c159ced95836fde19e21a2a0c7ed3', '172.105.247.100', 1667789481, '__ci_last_regenerate|i:1667789481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877728e66e2fb8265395c634826875cb37a5f272', '172.105.247.100', 1667789481, '__ci_last_regenerate|i:1667789481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99eb0c03caecc8e975970e97a6f256211275b3a', '172.105.247.100', 1667789482, '__ci_last_regenerate|i:1667789482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22708bc9d1ec63298b37b0c9dcb08d1c41cc3233', '172.105.247.100', 1667789482, '__ci_last_regenerate|i:1667789482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55179d4adbc2142b7cbe52d066d97a996fbb2081', '172.105.247.100', 1667793675, '__ci_last_regenerate|i:1667793675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21937dac4705f1c8e6da56235fd675ecd82b648d', '172.105.247.100', 1667793676, '__ci_last_regenerate|i:1667793676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6aef547fcceb30cea00bbb15d14c92b861c63d', '172.105.247.100', 1667793676, '__ci_last_regenerate|i:1667793676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d57eccd4e8215793e705885a6c8da67cf4834de', '172.105.247.100', 1667793676, '__ci_last_regenerate|i:1667793676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beb4e70e22ec79641dc18a68834a4d74f5186895', '172.105.247.100', 1667793676, '__ci_last_regenerate|i:1667793676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffa0b2af1055f4c6080327ced0aef548a9582d6', '172.105.247.100', 1667793676, '__ci_last_regenerate|i:1667793676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ebffda786ccd8d9cb8f456e3ae58c21374c5828', '172.105.247.100', 1667793677, '__ci_last_regenerate|i:1667793677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2d372f899ad48a4d910f74fbf1defdca8e740b', '172.105.247.100', 1667793677, '__ci_last_regenerate|i:1667793677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e690dc3dae060bee270d1f60211a375f6955e67', '172.105.247.100', 1667793677, '__ci_last_regenerate|i:1667793677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997b337721c2d6e3a753092a17df468a98e47a8d', '172.105.247.100', 1667793677, '__ci_last_regenerate|i:1667793677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a960fc89305ab0e3c4ca4b69e0a9b1197dc5d5', '172.105.247.100', 1667793677, '__ci_last_regenerate|i:1667793677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0684a6ff2a6da432552f3860f23c68010eca32ba', '172.105.247.100', 1667793677, '__ci_last_regenerate|i:1667793677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df0ae0285b370dd45f8687f67a6ec8d2b0d1d8f', '172.105.247.100', 1667793678, '__ci_last_regenerate|i:1667793678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e778c5806e53293c29309ccd462b3ad73d2de908', '172.105.247.100', 1667793678, '__ci_last_regenerate|i:1667793678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55ec7b45873ec163796ee3462bbb7f28d062e64', '172.105.247.100', 1667793678, '__ci_last_regenerate|i:1667793678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a80f1174bdae469d3ba95bb80aabf0c0e694b76', '172.105.247.100', 1667793678, '__ci_last_regenerate|i:1667793678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193b1f870c6ce64f7e86b4cbd8b01426f4231d46', '172.105.247.100', 1667797874, '__ci_last_regenerate|i:1667797874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc1ff726e58d96c12598771d33abf370bcd461f', '172.105.247.100', 1667797874, '__ci_last_regenerate|i:1667797874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cccad1d48a7a9c3efbf24029e55cfbc324f297', '172.105.247.100', 1667797874, '__ci_last_regenerate|i:1667797874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2c9fae76c90c574fbf114ec38e69d69b40a64d', '172.105.247.100', 1667797875, '__ci_last_regenerate|i:1667797875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961e60f4a2eca1cf86ed83eb6175ae000455435d', '172.105.247.100', 1667797875, '__ci_last_regenerate|i:1667797875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e823ddbd142381b34073c26219723b313a20e76', '172.105.247.100', 1667797875, '__ci_last_regenerate|i:1667797875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc93c705cfaeef24835d335ef5ad70be231b8be', '172.105.247.100', 1667797875, '__ci_last_regenerate|i:1667797875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1acfc161e1a4554fc0c87479560de9ec86c91964', '172.105.247.100', 1667797876, '__ci_last_regenerate|i:1667797876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c5d1c8db90de3522c9c84885b00c6358b03a94f', '172.105.247.100', 1667797876, '__ci_last_regenerate|i:1667797876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d13ffe265fb6efd6279eee7bbe446ecb05eee108', '172.105.247.100', 1667797877, '__ci_last_regenerate|i:1667797876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0be48c0a2e0359d84c99e68ebe43406cefe194', '172.105.247.100', 1667797877, '__ci_last_regenerate|i:1667797877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b35737a32684baec9cf2bc1fdf157f449decf8', '172.105.247.100', 1667797877, '__ci_last_regenerate|i:1667797877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df32dcf05a8e65926235590618b22312d9fd90b3', '172.105.247.100', 1667797877, '__ci_last_regenerate|i:1667797877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f59acb56f721332e53487ae1f3c804aec561b83', '172.105.247.100', 1667797878, '__ci_last_regenerate|i:1667797877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a3d6541941a31d15c2379a7f9a54ebd2458123', '172.105.247.100', 1667797878, '__ci_last_regenerate|i:1667797878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430df77a348fa15c14cb24a05285c1a0714354de', '172.105.247.100', 1667797878, '__ci_last_regenerate|i:1667797878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8af08fbfa5e44c1f76f80960c30b9ca527a5d75', '45.120.39.142', 1667802171, '__ci_last_regenerate|i:1667802171;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667736759\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667802161;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060f4fc9d550ae6a6398bbd769a826948307a517', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403065255d75a2b393fa4e7066f436441fafb347', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5fcd7582bb123a9f39fc8e27d37e320df51aa2', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbfe1b6df02ee9cc07ce051d496866882ba55fc', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d2295c937685a63c19cf783711403a11af500c', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be962915f858831ea96b70ad08e1ccd64385e715', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3377a18d70111438b8e6da4b02b3e5b5bcfc93', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327891ae76318e826b2b48a84c05990c5058585e', '172.105.247.100', 1667802077, '__ci_last_regenerate|i:1667802077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a866dcc6da470d2d65908d75ad6ac592cf368a0d', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f27bec98849e3dc47f5f1b2eb30a3c7d066fa61', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45c33947e50e81f93674810da81e3b47bb6e435', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35dc43c03273d59659e54a9c5ca7d88a6199b726', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c0033e799a44f0ff04f1909b0a5e0f397144ca', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb888c7ba9b31cc8ae7c2ce8a82d6931dda2a489', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c754a821976cd2cb6edd0c77f718dc2b2af05737', '172.105.247.100', 1667802078, '__ci_last_regenerate|i:1667802078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdac9fd71aa48a4ff016f99491c79ceaa1eb2bd', '172.105.247.100', 1667802079, '__ci_last_regenerate|i:1667802078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7df5ce0ba1fbfa62d1bb0e0d78b447cfe169183', '45.120.39.142', 1667808891, '__ci_last_regenerate|i:1667808891;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667736759\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667808886;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcdfaf5a293da6bc8c04fbf0d461c18fe856fbac', '172.105.247.100', 1667806277, '__ci_last_regenerate|i:1667806277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadd562da495a7e667f4b4279401afc6e0397c6c', '172.105.247.100', 1667806277, '__ci_last_regenerate|i:1667806277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60af6455bfac41659add8df3b4bc053d32bdd3f9', '172.105.247.100', 1667806277, '__ci_last_regenerate|i:1667806277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24b005e68dfdb85eb55b67d9bee9d9ff39f0884', '172.105.247.100', 1667806278, '__ci_last_regenerate|i:1667806277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37715d72b93d49ff032c9c842c564b8c8c14b2f', '172.105.247.100', 1667806278, '__ci_last_regenerate|i:1667806278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c46f699648a26b546ce09e7da48f7aec8bb22e', '172.105.247.100', 1667806278, '__ci_last_regenerate|i:1667806278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39be326d5aa861b3c20193ea4ea4ee23b891f3f7', '172.105.247.100', 1667806278, '__ci_last_regenerate|i:1667806278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73040cbd4de518dc92526af94cf0af8bb130190', '172.105.247.100', 1667806279, '__ci_last_regenerate|i:1667806279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce28485b6c3a6393404f1b7eb3a227aaa5da277b', '172.105.247.100', 1667806279, '__ci_last_regenerate|i:1667806279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc84b5e7b4ec31004437ce521100175f30fa462', '172.105.247.100', 1667806279, '__ci_last_regenerate|i:1667806279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febdde5ade71b941f8760974a8924d9379dbacd8', '172.105.247.100', 1667806279, '__ci_last_regenerate|i:1667806279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6964a22b4c9cacde951abd08eb1415186272fb74', '172.105.247.100', 1667806280, '__ci_last_regenerate|i:1667806280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95f3cfb4bd8b5bd72268bd32be3d85837f3c653', '172.105.247.100', 1667806280, '__ci_last_regenerate|i:1667806280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17bd53e6bc60a3250410f36db196fe46843f30ea', '172.105.247.100', 1667806280, '__ci_last_regenerate|i:1667806280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8993938b4c2294a316ae3162624047c4ffbb59', '172.105.247.100', 1667806281, '__ci_last_regenerate|i:1667806281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bdfe304f3331b2000ca1b6c10468da7965e0ac', '172.105.247.100', 1667806281, '__ci_last_regenerate|i:1667806281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ea14acba11ed431b6c577b3bd6601c7013025b5', '45.120.39.142', 1667809200, '__ci_last_regenerate|i:1667809200;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667736759\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667809195;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fda7b1a39ae8966ebcb4123b07fffd5fce55aed0', '45.120.39.142', 1667809201, '__ci_last_regenerate|i:1667809200;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667736759\";last_ip|s:14:\"37.111.216.196\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667809201;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485d68aed4a5ae1ae74994321d4d92443727d335', '172.105.247.100', 1667810474, '__ci_last_regenerate|i:1667810474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596babf00f26e4b73feb9a994bc9186c08ecf5ef', '172.105.247.100', 1667810474, '__ci_last_regenerate|i:1667810474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8228e1a9b2aba91ba6b68a1496583d7223ad5f', '172.105.247.100', 1667810474, '__ci_last_regenerate|i:1667810474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6ac280ff5efebf1cdb7ff3eb40ccaaab104f7a', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1589d1dacda58ba891190646f4aa93b6ac81187e', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a700c28a60da534f607c6df61e993fcf5ccdbc9c', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7430174136aa689ef0ac00175d39dca96805b64c', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02137e76073f7dd54a761d20a3d6925aeb9ecdaf', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d31e1b42c223c5b69e0e645a2c1c58fc3376f8', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f1f38204bf4e72baeac8ea09262f12579e8f2d', '172.105.247.100', 1667810475, '__ci_last_regenerate|i:1667810475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93dac2bf47d7efa50fa4001c78e8b5e0567a8632', '172.105.247.100', 1667810476, '__ci_last_regenerate|i:1667810475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f9faf3aa00151db5c207c7c86d3b29ec73fd5a', '172.105.247.100', 1667810476, '__ci_last_regenerate|i:1667810475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48a1ee6c5ac93b131789fcaca63987924b8e86b', '172.105.247.100', 1667810476, '__ci_last_regenerate|i:1667810476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf60b958092503b5399e32816596a3578019d5d', '172.105.247.100', 1667810476, '__ci_last_regenerate|i:1667810476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cd6cdb6da5b9c091e95ad3b971aedd7d8609630', '172.105.247.100', 1667810476, '__ci_last_regenerate|i:1667810476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718e641ff7c070852107d004d628725a84b32a7c', '172.105.247.100', 1667810476, '__ci_last_regenerate|i:1667810476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ce498ba28070bb315dbea10933fe0eae2a08c3', '45.115.113.198', 1667813577, '__ci_last_regenerate|i:1667813577;requested_page|s:14:\"admin/products\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0baa938f5b44527c6cec250d7a241c74e82eb6b5', '45.115.113.198', 1667813577, '__ci_last_regenerate|i:1667813577;requested_page|s:14:\"admin/products\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4955b9518d4c21c557103bdb7c128bbe41495492', '172.105.247.100', 1667814678, '__ci_last_regenerate|i:1667814678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc3ca15a4b63224278e00f93dd1bc9f56d2aa258', '172.105.247.100', 1667814678, '__ci_last_regenerate|i:1667814678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fdba401f86202999aaca51c3b2e7c78dc4263fd', '172.105.247.100', 1667814678, '__ci_last_regenerate|i:1667814678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d4238bdaecef5489fbb430f203744289bbab869', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee07137633275342c12c15ea79e4491d61ecc0b', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8132a8920a3f89342e3176421f00aaebbe14ed17', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d033f597f84bb9bc13f8ef959b6c30dc2cdcf09', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ee9d5aefef35b5e8f1ff47b13c4a161bb9ec9a', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a172035a599aaeae1d7cf010131f5517a86240', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17f6ed1147d099e3354d8c15cb4e8a82ae1e0a3', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0315df50a736410b17ee6ca2b7a2fddf7ab8599b', '172.105.247.100', 1667814679, '__ci_last_regenerate|i:1667814679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7af422b1e2b709c2a1e1be109e2d29f6d1762a', '172.105.247.100', 1667814680, '__ci_last_regenerate|i:1667814680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93525aeaf786f0fd50d0c8bd918cec39673da065', '172.105.247.100', 1667814680, '__ci_last_regenerate|i:1667814680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c166502903cd6a33b2c048b753b6af8650ad3d', '172.105.247.100', 1667814680, '__ci_last_regenerate|i:1667814680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803f87539733ef03dff0e73c59d3da3831417fad', '172.105.247.100', 1667814680, '__ci_last_regenerate|i:1667814680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6fca99a3727a5c24425b9fd8422813159ff426a', '172.105.247.100', 1667814681, '__ci_last_regenerate|i:1667814681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5676a87d931ef2b585fe465cc59a9463be63cca6', '45.120.39.142', 1667818172, '__ci_last_regenerate|i:1667818172;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667798630\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667818163;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2708618123cd79d2e3806aeca894b6830904104', '45.120.39.142', 1667820189, '__ci_last_regenerate|i:1667820189;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667798630\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667818173;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b4cf060100eb9c57c94a1cbc256568b7b01f07c', '172.105.247.100', 1667818884, '__ci_last_regenerate|i:1667818884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df614275c5a65cb5651205cb2a25e8236edbe470', '172.105.247.100', 1667818885, '__ci_last_regenerate|i:1667818885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9a523bb4723790a79f8b31b60d00e7c3a9fc6b', '172.105.247.100', 1667818885, '__ci_last_regenerate|i:1667818885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f57a6f420e0238d9ef085c3e129303d9a4c551', '172.105.247.100', 1667818885, '__ci_last_regenerate|i:1667818885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b8af495a307e7eaa840dba70caee0307363aee', '172.105.247.100', 1667818886, '__ci_last_regenerate|i:1667818886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ad41d7fff9faa027318bb700c5978750e90b3a', '172.105.247.100', 1667818886, '__ci_last_regenerate|i:1667818886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef2406f98a4be65c0570168a4c9540e2a55d8ef', '172.105.247.100', 1667818886, '__ci_last_regenerate|i:1667818886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef35bfdbadfefdfb5f1951fd8d5c478bbbb2f3c', '172.105.247.100', 1667818887, '__ci_last_regenerate|i:1667818887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c08792a6f4eb5718ffdac2abe916eda9e22485', '172.105.247.100', 1667818887, '__ci_last_regenerate|i:1667818887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35aefae4176d80fd720e4ee1e13108eb69cdc77f', '172.105.247.100', 1667818887, '__ci_last_regenerate|i:1667818887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b2fa614f9f765e96c18392f9fcb49a06d11c38', '172.105.247.100', 1667818887, '__ci_last_regenerate|i:1667818887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b880e6cfa07ae396a4e63891d2297ca5a1eb457', '172.105.247.100', 1667818887, '__ci_last_regenerate|i:1667818887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b53546163f10b87e029eecf9193e895540d3cf', '172.105.247.100', 1667818888, '__ci_last_regenerate|i:1667818888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('009db317c07bf6481bd5fcbf9b18ea3e9908c7bc', '172.105.247.100', 1667818888, '__ci_last_regenerate|i:1667818888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dac82bc135921c568c36f38432f109af42e3da8', '172.105.247.100', 1667818888, '__ci_last_regenerate|i:1667818888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dabb52d7243cb95ec9d9bc6441207db10e1bd595', '172.105.247.100', 1667818889, '__ci_last_regenerate|i:1667818888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef19c26fdc8b3ab242fbb0c4448106ff64e5807', '45.120.39.142', 1667821668, '__ci_last_regenerate|i:1667820189;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667798630\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667821668;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d6084f89d1ebef8ed793c654cb3c963efe7f2e', '172.105.247.100', 1667823083, '__ci_last_regenerate|i:1667823083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb29f836a79c3e00bbdb6a08982c2c0d0074102', '172.105.247.100', 1667823084, '__ci_last_regenerate|i:1667823084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a694793c80753ac68dc6399a8d53b1253d3e77a8', '172.105.247.100', 1667823084, '__ci_last_regenerate|i:1667823084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f6dacdb953641344150cd40b53a543dd047a02', '172.105.247.100', 1667823085, '__ci_last_regenerate|i:1667823085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b16c797c4b38e9baadf61b08af11215d64bd391', '172.105.247.100', 1667823085, '__ci_last_regenerate|i:1667823085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171af9f60f267b39e36bbe8247223c4c87b60e19', '172.105.247.100', 1667823085, '__ci_last_regenerate|i:1667823085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67959ad50ba0ace5941a0bf238d7e29726191df', '172.105.247.100', 1667823085, '__ci_last_regenerate|i:1667823085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6aa1ac0f139ab5d50fddff6eef2016ea2eabce', '172.105.247.100', 1667823085, '__ci_last_regenerate|i:1667823085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97bad134a9f079d0f7fec1f22c44b0754675c27', '172.105.247.100', 1667823086, '__ci_last_regenerate|i:1667823086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('426f9d69b20922caa7bb048f355871669e1e310d', '172.105.247.100', 1667823086, '__ci_last_regenerate|i:1667823086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f691ad2fd181aa6f0af2e183837ba3828d5dc20', '172.105.247.100', 1667823086, '__ci_last_regenerate|i:1667823086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc7ad0cb7ff35eb73214d53029b830d3a0828eb', '172.105.247.100', 1667823086, '__ci_last_regenerate|i:1667823086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f77dbe37b7a6d3dcfe3cfbf48ae88cda713bf5', '172.105.247.100', 1667823086, '__ci_last_regenerate|i:1667823086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784c909ecca814725f4a6d217e6993f8f15516bf', '172.105.247.100', 1667823086, '__ci_last_regenerate|i:1667823086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84876417677b347faed6b0ebd17bcaa2b01006a6', '172.105.247.100', 1667823087, '__ci_last_regenerate|i:1667823087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5525f335649cec40304f2e972c1d4ba30cd46850', '172.105.247.100', 1667823087, '__ci_last_regenerate|i:1667823087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf268d07b5dad2009357b4487e32a6e290f1206', '45.115.113.198', 1667823622, '__ci_last_regenerate|i:1667823622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb254d47e5cd86ded6e470904a5be65d87ddcdd', '172.105.247.100', 1667827283, '__ci_last_regenerate|i:1667827283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7e3689dfa77a6ff081f654daf0ef7421a1e9c7', '172.105.247.100', 1667827283, '__ci_last_regenerate|i:1667827283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ebb4c70de70230831292d6ce8164cd8f4fa63ad', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd514c4f3db7b9c30ebce0c91c195b32e903e82', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930e6c465e7a36f00336918295c540cd0d687c76', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c789b8871227db4307e8f86ec3ed9fbba8c5d647', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93cde4d8468cad878ca38232a4426ef9249a19ac', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3461353cfb8f1303bc5f6a1daa9c8dbf6d585e', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9881488e10421007d500f7ef39397334641775', '172.105.247.100', 1667827284, '__ci_last_regenerate|i:1667827284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560047f7930c7813c4ac76bf3e74b3f09acac916', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f4b25e157abbe1f38aa58edfe88a816fcf43a4', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31a33733b1f0824eefda13f3d7a2cd9ccabeea0', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca89ae92209cbe903f72024733865728c5335bd', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f6e20cd8218fa173529d701bdb06221b76f856', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6986d3d1002ca494cebcc8018e602ab3c8daf2e1', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b0bc208802312e1e628fdc88f720f4ad8af0d2', '172.105.247.100', 1667827285, '__ci_last_regenerate|i:1667827285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3654f680d045d7ea2b1186ca6788fbf052698d65', '45.120.39.142', 1667831604, '__ci_last_regenerate|i:1667831604;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667816864\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667831170;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57bb3f631e49bf56e541540ab56cfc0841036de0', '172.105.247.100', 1667831474, '__ci_last_regenerate|i:1667831474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('855210c263aa373aeea8cb059709ac6ee726b6eb', '172.105.247.100', 1667831474, '__ci_last_regenerate|i:1667831474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5a2caf1c5c56f8480173b3d4ee0b8c82043657', '172.105.247.100', 1667831475, '__ci_last_regenerate|i:1667831475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879b4c6846b421af8706da2f5653bdcf10dc19d6', '172.105.247.100', 1667831475, '__ci_last_regenerate|i:1667831475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ed760304f9a34cc9a5f2a4396c0b9a54293f68', '172.105.247.100', 1667831475, '__ci_last_regenerate|i:1667831475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d7c53c6928304367a7974432e168fab6505eb9', '172.105.247.100', 1667831475, '__ci_last_regenerate|i:1667831475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803643929a014d426213177cf4920a6afbb32d84', '172.105.247.100', 1667831476, '__ci_last_regenerate|i:1667831476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fb48865e8509212e3aee7d14edee2780b3d371', '172.105.247.100', 1667831476, '__ci_last_regenerate|i:1667831476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ef75baa44dd236384bc6ed1b8b0d2b9f398aa8', '172.105.247.100', 1667831476, '__ci_last_regenerate|i:1667831476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22918c6c23652aa6107b3f809b78ca2df3fe074', '172.105.247.100', 1667831476, '__ci_last_regenerate|i:1667831476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df4a8ed74fcc6f1fb92f3bc2bb8e4e993c7a30e', '172.105.247.100', 1667831476, '__ci_last_regenerate|i:1667831476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cdd4ef1fe32f83debfdab5469c3d9138f2a5f8', '172.105.247.100', 1667831477, '__ci_last_regenerate|i:1667831477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6272df0391d63f52f40f5d93ce876833a5ced9b', '172.105.247.100', 1667831477, '__ci_last_regenerate|i:1667831477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fc4fe304762807d355bb1d40b580b1d5612ddb5', '172.105.247.100', 1667831477, '__ci_last_regenerate|i:1667831477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab2125f97b58b8aa7bc9302d65b756872ef2bc9', '172.105.247.100', 1667831477, '__ci_last_regenerate|i:1667831477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3da57ecdc7e4e3841e8847979b61250cfffd80e', '172.105.247.100', 1667831478, '__ci_last_regenerate|i:1667831478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b5f30ed3c680208bda71027e1a73d7510eb9d8', '45.120.39.142', 1667832046, '__ci_last_regenerate|i:1667832046;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667816864\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667832037;register_id|s:3:\"241\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-06 20:33:55\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93f2c662867669e88cec34ef497491a847eee51', '45.120.39.142', 1667832070, '__ci_last_regenerate|i:1667832046;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667816864\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667832069;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14441b9f0d535ca21ec428bf9f8c15cbed8a1fa3', '172.105.247.100', 1667835680, '__ci_last_regenerate|i:1667835680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf3b9f628e16763e1d37c2b42d468da81b999fd', '172.105.247.100', 1667835680, '__ci_last_regenerate|i:1667835680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23e6adf49a9499e3c2132fdca75d1b0022b701d', '172.105.247.100', 1667835680, '__ci_last_regenerate|i:1667835680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2558b1af06da1484588c116066c31f9bdb243dc8', '172.105.247.100', 1667835681, '__ci_last_regenerate|i:1667835681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b44f5e3acf201879a3e804d3b9f8e4afc90d8ec3', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f327c4dd77195f63bb3c4201496e84407e9227', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6a40d024c969acd254031dee9b234c340d1367', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd475feef1b7404ea526ffd8236eb18893c9b57', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36ba5741423a8a1af8213aa9f09bfa70f6b6c9a', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca83313b7ddea3d0044bbbdf6ff71e2fc7d4ff4', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff15b3ab425edd004c2757e8a1bb89053e84984d', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff45abee06613370b8d5bec0d5ede1841ddb6894', '172.105.247.100', 1667835683, '__ci_last_regenerate|i:1667835683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789a5e8113517a1723d421577600ed8975c013dc', '172.105.247.100', 1667835684, '__ci_last_regenerate|i:1667835684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce5d261880c791dc25f2359dbfb47f22ae8cd10', '172.105.247.100', 1667835684, '__ci_last_regenerate|i:1667835684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b778607bedb0a53cfe7712cb5c6d66626037c63', '172.105.247.100', 1667835684, '__ci_last_regenerate|i:1667835684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876aa064d9c5cacbafa53a934d03ebea27c5b245', '172.105.247.100', 1667835685, '__ci_last_regenerate|i:1667835684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d69c64b22da00a019253dd775a104d42b2a043', '3.121.181.66', 1667838228, '__ci_last_regenerate|i:1667838228;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5138eec27e326ef8a1ce94efe188c560277849', '3.121.181.66', 1667838228, '__ci_last_regenerate|i:1667838228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3771196011392bbf80bf5a343c8b022ac070fddd', '3.121.181.66', 1667838228, '__ci_last_regenerate|i:1667838228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654a01c61da369b57a84d377e5fdd06efb1503dc', '3.121.181.66', 1667838228, '__ci_last_regenerate|i:1667838228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae4a62a13ce606b8527beec0f26294f8b60258b', '172.105.247.100', 1667839876, '__ci_last_regenerate|i:1667839876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15894ddcc31675dda16b54a5f5881b545be5a27e', '172.105.247.100', 1667839877, '__ci_last_regenerate|i:1667839877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95ffebcb073b1cd5cb709d7e144ab8e944c0101', '172.105.247.100', 1667839877, '__ci_last_regenerate|i:1667839877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b6e601f20b0df04c35caf524ab6c145848e685', '172.105.247.100', 1667839877, '__ci_last_regenerate|i:1667839877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c50820dd98c1eaf538411cff6bdae5e3558407c', '172.105.247.100', 1667839877, '__ci_last_regenerate|i:1667839877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af925dae47e560b10a586ad6560510f858221a0', '172.105.247.100', 1667839877, '__ci_last_regenerate|i:1667839877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ac2d0414bce4c2e2e0af424f24c19c505724e1', '172.105.247.100', 1667839878, '__ci_last_regenerate|i:1667839878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ac9024ee388aa039694999a8b0f2a9a128115d', '172.105.247.100', 1667839878, '__ci_last_regenerate|i:1667839878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b3b7b0b9a3fbbf417e10b1f78b8f2a0d813b80', '172.105.247.100', 1667839878, '__ci_last_regenerate|i:1667839878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0229e7f64782c14b1455e5763b28fc9a336771', '172.105.247.100', 1667839878, '__ci_last_regenerate|i:1667839878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6308d96d04196fa70973ba4434b69b984bbec57', '172.105.247.100', 1667839878, '__ci_last_regenerate|i:1667839878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c907fb56519f7edccebfe278d091c567eb18e6ab', '172.105.247.100', 1667839878, '__ci_last_regenerate|i:1667839878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e163ae867c1c97a8d71c6f19ab19800d1d811e8b', '172.105.247.100', 1667839879, '__ci_last_regenerate|i:1667839878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ba1852083359b42d91a5074c24c0c9080e1f377', '172.105.247.100', 1667839879, '__ci_last_regenerate|i:1667839878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c161775a65f1b6e36ee77a920395f69fea34757', '172.105.247.100', 1667839879, '__ci_last_regenerate|i:1667839879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47536564d2f4d002d85e01a4b8098f86ab195766', '172.105.247.100', 1667839879, '__ci_last_regenerate|i:1667839879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba8df9a9908f1ffdfc6e1ace3805351564375f8', '45.115.113.198', 1667841234, '__ci_last_regenerate|i:1667841234;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f23352e65bd987ece52681d570cc06e53bb429', '172.105.247.100', 1667844078, '__ci_last_regenerate|i:1667844078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784f9484d420d5f94d8a4af0301a246d86dd2710', '172.105.247.100', 1667844078, '__ci_last_regenerate|i:1667844078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1a4f3ec83701226993880f780b9e2825774637', '172.105.247.100', 1667844078, '__ci_last_regenerate|i:1667844078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75f94661b311a4a05804e554117f2984d995227', '172.105.247.100', 1667844078, '__ci_last_regenerate|i:1667844078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbc3be5757ff14bc3394089d9ad1ddc555447a6', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d139f41e804deb8ba09ff7e4a3f810a7b56f2f3', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aecadb9747db83e639c685b310ee83439c83e92', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe127cdeca8a894920815abb8300e712ef5f44e', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fbc73c4e3a5a514516e4a3b7a13c7031f8fa2b8', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7af5477e167e3636c31798d0fcd87427defa7a1', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dfbc90bf3278864fb5b9be51c142d90b2fcf6d1', '172.105.247.100', 1667844079, '__ci_last_regenerate|i:1667844079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67b32fe96b513b5c62d893764f5f55b238f05a2', '172.105.247.100', 1667844080, '__ci_last_regenerate|i:1667844079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0d0a00bc582d2733b8623702eab45771669232', '172.105.247.100', 1667844080, '__ci_last_regenerate|i:1667844080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caedb32d7261c1a3636739de7e0e75ec08105da3', '172.105.247.100', 1667844080, '__ci_last_regenerate|i:1667844080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e5f1a13ab497bda5a85c55d0995084bd353e0d', '172.105.247.100', 1667844080, '__ci_last_regenerate|i:1667844080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e629466d2f162c2a987d3e43d732ba6b44884964', '172.105.247.100', 1667844080, '__ci_last_regenerate|i:1667844080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df146d3a6e9ef8d82f84099d2398b6a126ebfea', '172.105.247.100', 1667848274, '__ci_last_regenerate|i:1667848274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8617b8f733e28709ab9021fc135419cce45f27d', '172.105.247.100', 1667848274, '__ci_last_regenerate|i:1667848274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43adae547f15b5b5bc54a33133315a53d23517d', '172.105.247.100', 1667848274, '__ci_last_regenerate|i:1667848274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd0006689c7c9df4e447928cc295710b91c2e3e', '172.105.247.100', 1667848274, '__ci_last_regenerate|i:1667848274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f719bada3e4c949bf3af9f8af7b739f786ac188', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a056b8ed3ba21383c2b48d1723b82fcc517106f9', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dbefd0af2ea88e7a7bb97fffd41573a6cfca507', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51efd83428d514dda8619a8540f2b9ff3913642', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1258379d637d8db76c70f3eb85e26251b1c0f6b', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40b11d9b9d959cf62dedcb436d49472e84e5a8ca', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1f00bb69b42ca184111983500d890515a9753c', '172.105.247.100', 1667848275, '__ci_last_regenerate|i:1667848275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d290e02ae349ec92fde00b16170519855ab7a1', '172.105.247.100', 1667848276, '__ci_last_regenerate|i:1667848275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337ed25b404e14db2a30b16f03259de9daa56177', '172.105.247.100', 1667848276, '__ci_last_regenerate|i:1667848276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a398fd3d3098bf36acd1e528836b7e438da8156', '172.105.247.100', 1667848276, '__ci_last_regenerate|i:1667848276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f83d552c115c964b49ada8c6bbe95861ab653c', '172.105.247.100', 1667848276, '__ci_last_regenerate|i:1667848276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27835ffc2982dcb27d4867cdc380b295d649a663', '172.105.247.100', 1667848276, '__ci_last_regenerate|i:1667848276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed3450b766886355f4dc4ced2fefcb3e9114cfab', '172.105.247.100', 1667852475, '__ci_last_regenerate|i:1667852475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493a8821d5cb714c60ef08adefd83d9113de3603', '172.105.247.100', 1667852476, '__ci_last_regenerate|i:1667852476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7503774e428afdc17d2ae1d38d6952c784ed5d', '172.105.247.100', 1667852476, '__ci_last_regenerate|i:1667852476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58737e309bcb8835d1bdc3714744437dbf055648', '172.105.247.100', 1667852476, '__ci_last_regenerate|i:1667852476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2315243d07fa30e8372e0c6aa01e57b98d10fec2', '172.105.247.100', 1667852476, '__ci_last_regenerate|i:1667852476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e60cafce9b197b4dbd998c9e3a496e71e62c97', '172.105.247.100', 1667852477, '__ci_last_regenerate|i:1667852477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624acb871b5bb03036306ecb9486dabeaac9b3c7', '172.105.247.100', 1667852477, '__ci_last_regenerate|i:1667852477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('834a034202783bacf0091528c0a713199b127990', '172.105.247.100', 1667852477, '__ci_last_regenerate|i:1667852477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2d53c833b22be037a93bba3ca94eb496ceae6c', '172.105.247.100', 1667852478, '__ci_last_regenerate|i:1667852478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73aae78337906d40361fb7d3db6a799d6f1e05f', '172.105.247.100', 1667852478, '__ci_last_regenerate|i:1667852478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e3b4f1d440745344b9b873aa7db77cc9db561a', '172.105.247.100', 1667852478, '__ci_last_regenerate|i:1667852478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470c7018a3236210e246ba4e3e81b4917bbb6408', '172.105.247.100', 1667852478, '__ci_last_regenerate|i:1667852478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e544b1baca1068bd68db8563c66c4e9a09cda8', '172.105.247.100', 1667852479, '__ci_last_regenerate|i:1667852479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df4c1f7957cebf460ae0d6bc0440cecd8b0af1e1', '172.105.247.100', 1667852479, '__ci_last_regenerate|i:1667852479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a0f0f475d85c211a8746c3ef90b99c61b0e69d', '172.105.247.100', 1667852479, '__ci_last_regenerate|i:1667852479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775bf5307ca0a6bdadb7cb72c5fab22a3f91323b', '172.105.247.100', 1667852480, '__ci_last_regenerate|i:1667852480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78df3c9b7097a6afd7e6258d644f08bd60d5ad2b', '172.105.247.100', 1667856678, '__ci_last_regenerate|i:1667856678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd49d70758116f04077e0a152d42c7dcc775377', '172.105.247.100', 1667856678, '__ci_last_regenerate|i:1667856678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bc4f6a09878ef45eccf3000738d4b7ba5b01d9', '172.105.247.100', 1667856678, '__ci_last_regenerate|i:1667856678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a469782fee8bf6c623ffedd6e5c17fdc71c8f2', '172.105.247.100', 1667856679, '__ci_last_regenerate|i:1667856679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e349337f8bbcca9c6f7dd542f570867b7dec2246', '172.105.247.100', 1667856679, '__ci_last_regenerate|i:1667856679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ed20b812543daeb6863ebd15a9488455e743c73', '172.105.247.100', 1667856679, '__ci_last_regenerate|i:1667856679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ad1855f2260581dd1e6855b20008bb6392bf50', '172.105.247.100', 1667856680, '__ci_last_regenerate|i:1667856679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd50f1cd64ef6d265d59e5d05f7ef20ff95faf8', '172.105.247.100', 1667856680, '__ci_last_regenerate|i:1667856680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be2c574a30855268e206e3d9bc658e851d4787d', '172.105.247.100', 1667856680, '__ci_last_regenerate|i:1667856680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff4bb97db0cc0633142830b334ebdc59ef439c6', '172.105.247.100', 1667856681, '__ci_last_regenerate|i:1667856681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472f9adbba9f9844607ea1388a46f1fa1094a2ee', '172.105.247.100', 1667856681, '__ci_last_regenerate|i:1667856681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('043ec50472f13438ca90ecf7392ccd55251bde59', '172.105.247.100', 1667856681, '__ci_last_regenerate|i:1667856681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13fa5773fdce5a47983664b8c0f49c9632f546ad', '172.105.247.100', 1667856682, '__ci_last_regenerate|i:1667856682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef03403bc4e59d4ec828e57d2ca3d53f90983c67', '172.105.247.100', 1667856682, '__ci_last_regenerate|i:1667856682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ff51141b3759520961537c2cad4e9208edc5e4', '172.105.247.100', 1667856682, '__ci_last_regenerate|i:1667856682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b3c0b4b916dcb54f5e306f41601ebd0adffd26', '172.105.247.100', 1667856683, '__ci_last_regenerate|i:1667856682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a39b648e308fe97be63cb08e202af6ca649c53', '134.209.45.225', 1667860714, '__ci_last_regenerate|i:1667860714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f76c50f146dd71ce7643bd2cdb682a2937d5528', '172.105.247.100', 1667860877, '__ci_last_regenerate|i:1667860877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74baf30287e9e3fd17ff1f6ab4fd1350c7a93c74', '172.105.247.100', 1667860878, '__ci_last_regenerate|i:1667860878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa4c6e235d564a8e5c9c0dfb8bbf7dfd460e479', '172.105.247.100', 1667860878, '__ci_last_regenerate|i:1667860878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71addb814d0ec6b642b47b60a898561da8c798d5', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3cda07b169f783d0deb97811d33e821b590f215', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca34a8245a02b53bf0cae955d7245165bf3d99e5', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e95ff44c5998d41f33354a0630ef6e2658aabf', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d6e783f107a0eab83f70f9fabec08dba716f79', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830acb9becc9a0c87011ea9f36e47f1ae816ed71', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588ebe8eb04ab8fcf29bdba364cdf66d12d752c1', '172.105.247.100', 1667860882, '__ci_last_regenerate|i:1667860882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d151d1068037b21da71298299a80f161b081817', '172.105.247.100', 1667860883, '__ci_last_regenerate|i:1667860883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf75c3879343c6ded8671cddfac103ea5c354ec5', '172.105.247.100', 1667860883, '__ci_last_regenerate|i:1667860883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b5071ada4378423c37108a23720993cb79ea05', '172.105.247.100', 1667860883, '__ci_last_regenerate|i:1667860883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7781a0e69a0fca3f368dcae3a9aec1ce099e9f', '172.105.247.100', 1667860883, '__ci_last_regenerate|i:1667860883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d901e704fc86916bf3e936d0974b5be0984d395', '172.105.247.100', 1667860883, '__ci_last_regenerate|i:1667860883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d458a5b9745582d09da702f6d4176d6d15bf062', '172.105.247.100', 1667860883, '__ci_last_regenerate|i:1667860883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60be46b685524630fee2abe1b4034453ce0a6560', '64.225.55.20', 1667863543, '__ci_last_regenerate|i:1667863543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404c61dfb0a2763fb2d932ec442d4a725280dd2e', '172.105.247.100', 1667865071, '__ci_last_regenerate|i:1667865071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e948a59978a51d5ed5f4a0ada73eda2f0f6a4e98', '172.105.247.100', 1667865071, '__ci_last_regenerate|i:1667865071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc2e2619e62d12751e772a0473bd5c38eb13841', '172.105.247.100', 1667865072, '__ci_last_regenerate|i:1667865071;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc30672ec0e7436385dfedef630daca7e563e737', '172.105.247.100', 1667865072, '__ci_last_regenerate|i:1667865072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a363e9dc7a6f6db3335dea13fa7bba71d1da08e', '172.105.247.100', 1667865072, '__ci_last_regenerate|i:1667865072;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7690c417e5b80132b0b194c6f7d106108edbd6', '172.105.247.100', 1667865072, '__ci_last_regenerate|i:1667865072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff87d6e440c7bb086d2771c56a6a70568a880a6', '172.105.247.100', 1667865073, '__ci_last_regenerate|i:1667865073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff4c4d1192637ed55be54fa0bac000daa9f460a', '172.105.247.100', 1667865073, '__ci_last_regenerate|i:1667865073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452b984b686a5e6834a6967bd2933d48eaea6ce3', '172.105.247.100', 1667865073, '__ci_last_regenerate|i:1667865073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c19095e54d80191aefcac8cf830eddad575e81ba', '172.105.247.100', 1667865073, '__ci_last_regenerate|i:1667865073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d993efe37f6794e119049778f7d1266f32b272bd', '172.105.247.100', 1667865074, '__ci_last_regenerate|i:1667865074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2554dc94b25407e34f97c64bc267432bf2a776e0', '172.105.247.100', 1667865074, '__ci_last_regenerate|i:1667865074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf28a1e3f0787248ee39de2876603d5c3755b84', '172.105.247.100', 1667865074, '__ci_last_regenerate|i:1667865074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c87d1b26cdcf5c5b0376ac23b31582f6f2d028', '172.105.247.100', 1667865075, '__ci_last_regenerate|i:1667865074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d4a5598c2207ff160c83c4a83d1de17893aba8', '172.105.247.100', 1667865075, '__ci_last_regenerate|i:1667865075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2149c74ce76789bd2c7184748df450cc979e76f5', '172.105.247.100', 1667865075, '__ci_last_regenerate|i:1667865075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73e20b192fefb474dbaa52fb9b2946209ba75ec', '143.198.28.135', 1667865956, '__ci_last_regenerate|i:1667865956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6360727c245bd461bf0df7cd9fdee5c57d79acb1', '198.235.24.145', 1667866320, '__ci_last_regenerate|i:1667866320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc4c758b23f29cfab9cb9e580c21bbfc4e9f744', '172.105.247.100', 1667869272, '__ci_last_regenerate|i:1667869272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4f4439206e6d872e40ee0689f9c33aceb8ba73', '172.105.247.100', 1667869273, '__ci_last_regenerate|i:1667869273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42845fbbbd55a208dfb83ce9bebdf8cfb89893d5', '172.105.247.100', 1667869273, '__ci_last_regenerate|i:1667869273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81bc0aeb0543c6fda559ffe14543b10d288ec7b3', '172.105.247.100', 1667869273, '__ci_last_regenerate|i:1667869273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f9d42d9d2a730b3414f8f7e3c0591ed07bf83b', '172.105.247.100', 1667869273, '__ci_last_regenerate|i:1667869273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0e9dde232113f0c5ee7142590df0a7cfbba952', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7335f19e8f6afde3cf3f91821ec8fe4da6a3d379', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db9e2be5f8d35b28c11777d87a59e2ac34db61ba', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be05653a27229c2b4f6b9ec8167e13e8b42be878', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f760d066b401e61ac362da458e01fb7c4150cfa6', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d2311634f363bc95711eeb92d2e071f421eee2', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68adab59713643b9514bdd025509a37aed13c3cb', '172.105.247.100', 1667869274, '__ci_last_regenerate|i:1667869274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c324ff689f75f197995ada05f2115c4ac3f3c9', '172.105.247.100', 1667869275, '__ci_last_regenerate|i:1667869275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45927de9cf80badebfdf14c3b9fedbcab94573a8', '172.105.247.100', 1667869275, '__ci_last_regenerate|i:1667869275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4344c541ffd52c757def8094bc8d152a331651e1', '172.105.247.100', 1667869275, '__ci_last_regenerate|i:1667869275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1337c69010ebf462575e2035fc79e30ed32e95', '172.105.247.100', 1667869275, '__ci_last_regenerate|i:1667869275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3165c45d98e0b3141c72ed13f3f04c562a090dac', '164.90.136.248', 1667869571, '__ci_last_regenerate|i:1667869571;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257d268b1d3b838913a7fe70c8b2768a0dabe8c5', '172.105.247.100', 1667873476, '__ci_last_regenerate|i:1667873476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b185e59426197d7b9d1fa4ed152f5b72773891', '172.105.247.100', 1667873477, '__ci_last_regenerate|i:1667873476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47250859ec6094fc53afec436ff702fa595c445', '172.105.247.100', 1667873477, '__ci_last_regenerate|i:1667873477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b91eeac0da4ef94159c79c386bd7cf309bcbb0', '172.105.247.100', 1667873477, '__ci_last_regenerate|i:1667873477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d1410944ca54e57b74e71b497997b1a1a170a2', '172.105.247.100', 1667873477, '__ci_last_regenerate|i:1667873477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5626ceccaef73dda769d923c6d623ab6bd6bf301', '172.105.247.100', 1667873477, '__ci_last_regenerate|i:1667873477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a484bea07838eea2a1ae9d0cd9b9cdea299ba624', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc553aca452a9be227823ba6fb7d128a25da04e5', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f306856d0183e6896a642a8b5220e3cf4b5be6', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62718478a8ba28e58f13c2aa7fdc3a7cef843704', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064b58eba4cf17bc0b702ccd6a84961d13959737', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5facb1e0612c6c99ffc6afa96e2b44a79ed440c0', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d0642beec8e7730159e710a571540b7aa06899', '172.105.247.100', 1667873478, '__ci_last_regenerate|i:1667873478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1318a1859ae50d6412add4590dea9b5eafc56399', '172.105.247.100', 1667873479, '__ci_last_regenerate|i:1667873479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4f0480fc0372d660cda2305d5094181145cd0d', '172.105.247.100', 1667873479, '__ci_last_regenerate|i:1667873479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c964639a25b13168628ba2486350f5f2d18b52bb', '172.105.247.100', 1667873479, '__ci_last_regenerate|i:1667873479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ef6df77711c0798719bf73114cf39ba2e143ec', '116.204.230.24', 1667873618, '__ci_last_regenerate|i:1667873485;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1667312686\";last_ip|s:14:\"116.204.230.18\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f491d3e0c3ec0896a6de250658f744da0e0dcb00', '172.105.247.100', 1667877679, '__ci_last_regenerate|i:1667877679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7349405d380a62ca47a00023c3500ea1f734dee2', '172.105.247.100', 1667877679, '__ci_last_regenerate|i:1667877679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ec3f6958b7949fdd7d90056c89d393d22acb16', '172.105.247.100', 1667877681, '__ci_last_regenerate|i:1667877681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9ebc3e8b650bb6f1e16589f10f92fd2ad28589', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a386e270df8432af3a80d4f34b1717d7b5adcd0', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f2605fe18dbae391964c06c8373335ee1ca952', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646ec3fc52c402d38a724b409ac6c8b97f6834f1', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6defba7e330b98acc62ba87c62498e7698e6f11f', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90af3eba54a0dfb025550bf082ba2f9c573a9acb', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4661ed6d7f23f74fe71facb8dee04313020b043e', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9fb76e126e4581c92cbed8fd7c58189a3ad991c', '172.105.247.100', 1667877682, '__ci_last_regenerate|i:1667877682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d986ec3f53d0a6ce4b6e0b0e2afa87d60a481d6', '172.105.247.100', 1667877683, '__ci_last_regenerate|i:1667877682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1789cbf38c8bd2a09f0e379f7442eca7113805ed', '172.105.247.100', 1667877683, '__ci_last_regenerate|i:1667877683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16a88458bccb3a97bc3c7889d254396b2d26d8f', '172.105.247.100', 1667877683, '__ci_last_regenerate|i:1667877683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880d65212eeeb96998bbc305f7023950decb98f4', '172.105.247.100', 1667877683, '__ci_last_regenerate|i:1667877683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ca20ddcf371217b693b553bba72dbab9666f64', '172.105.247.100', 1667877683, '__ci_last_regenerate|i:1667877683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c23ad311ace5a64dfb2c17fb082adce7dfc7eb', '172.105.247.100', 1667881874, '__ci_last_regenerate|i:1667881874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7550f2b658fe6987ad009ab28869e371579c32f', '172.105.247.100', 1667881874, '__ci_last_regenerate|i:1667881874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8112f09d14d4e8d1ffbf1a8533782e5935f152', '172.105.247.100', 1667881876, '__ci_last_regenerate|i:1667881876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94139417a0b685544dc4a757b576314c1b74e6c4', '172.105.247.100', 1667881876, '__ci_last_regenerate|i:1667881876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d11393260d8d4fc5022d229cff6aa1a1d33412d', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97e39d63945ff9bf1a5105a83e134a78332f0b8', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd1cf6bf97dfd714068379c344e17cc0249e72a', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2453e43d1864584794a45db34f37ae79c7aa3032', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe993b88ac148c62b566a2e7a3057d5f4a2c0d82', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e964f6cd0e729cc4261146663ea6f0e85cfb33c', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5387a0591f5a3e7fe44aaa02109113278fe9821', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dabc96f6f779bcf76879d76bd06215ed9d80605', '172.105.247.100', 1667881878, '__ci_last_regenerate|i:1667881877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c318fcf91f797040645c22472cb53f67736d27b', '172.105.247.100', 1667881877, '__ci_last_regenerate|i:1667881877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18212dec588360bc5936052a3ecb491863b27b94', '172.105.247.100', 1667881878, '__ci_last_regenerate|i:1667881878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c5e79eee8bdd4ff5c28a20de9fb48686940811', '172.105.247.100', 1667881878, '__ci_last_regenerate|i:1667881878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e1f19f6d6a1e886f8dade15676a936939218a9', '172.105.247.100', 1667881878, '__ci_last_regenerate|i:1667881878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e890aa4a595edb3da19fb1e1ad6ee5e8acb664d7', '205.210.31.30', 1667881887, '__ci_last_regenerate|i:1667881887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b35f0646b8bb2b8130994bc98a57cdbb51c644b', '45.120.39.142', 1667882519, '__ci_last_regenerate|i:1667882450;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667831075\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667882519;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f43ce69565a2527bfb13015fc856aa4dfa5af0', '37.111.202.91', 1667885128, '__ci_last_regenerate|i:1667885128;requested_page|s:25:\"admin/reports/daily_sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1aaf05c626f88439a70d509d492e692051e43c', '172.105.247.100', 1667886074, '__ci_last_regenerate|i:1667886074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d05a977dd5b6ab9161ece1f2e1dd45a36175f6', '172.105.247.100', 1667886075, '__ci_last_regenerate|i:1667886075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a505324c582179c3f4056f07696917161862036', '172.105.247.100', 1667886075, '__ci_last_regenerate|i:1667886075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc50b414db6a83ebebfad6db73406f377998d872', '172.105.247.100', 1667886075, '__ci_last_regenerate|i:1667886075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3747a84a680405813f602494506c36b93f010985', '172.105.247.100', 1667886075, '__ci_last_regenerate|i:1667886075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58edbb73bd6248e8e5c702ed9e767c83e39596ab', '172.105.247.100', 1667886075, '__ci_last_regenerate|i:1667886075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a134af743affb561e419004fd801252c93c12d', '172.105.247.100', 1667886076, '__ci_last_regenerate|i:1667886076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65324e0a508c834a928d1c9b5c7d0cebc1a72f8a', '172.105.247.100', 1667886076, '__ci_last_regenerate|i:1667886076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df02b0618171e1065402abc6ad6502f725e4f4fb', '172.105.247.100', 1667886076, '__ci_last_regenerate|i:1667886076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ebe8a92af2ed68e622ba7077a0e58d9621a115', '172.105.247.100', 1667886076, '__ci_last_regenerate|i:1667886076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c447278acfa3e43a9c22a31828aa6ed2f8e346', '172.105.247.100', 1667886076, '__ci_last_regenerate|i:1667886076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191f4f139f580c3679adb70108b14755f7a25e5e', '172.105.247.100', 1667886076, '__ci_last_regenerate|i:1667886076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0eca38bcf13473eb853946572ccb84c97f59e0c', '172.105.247.100', 1667886077, '__ci_last_regenerate|i:1667886077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4019bc2a7ef73b398d89aa1cd8beacd8e1cc85', '172.105.247.100', 1667886077, '__ci_last_regenerate|i:1667886077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29facbeb768a77a6158f9d706f54fcacc163d509', '172.105.247.100', 1667886077, '__ci_last_regenerate|i:1667886077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34032d89889a166168de5559b8eec832e883726', '172.105.247.100', 1667886077, '__ci_last_regenerate|i:1667886077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba90053dbd65a253b57d0521785a4339ade63938', '144.91.106.14', 1667888529, '__ci_last_regenerate|i:1667888529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e32d2401bd034b59b9c9a39ea4925f74269ecf', '144.91.106.14', 1667888529, '__ci_last_regenerate|i:1667888529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0327ea78e624dc80f13a434abdd8b163dd87786b', '144.91.106.14', 1667888529, '__ci_last_regenerate|i:1667888529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d3eda4d276d417ccf526d2c2f688e940035776', '144.91.106.14', 1667888530, '__ci_last_regenerate|i:1667888530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a0eebafbbefdd945ea3c0b840bca24c01308b2a', '144.91.106.14', 1667888530, '__ci_last_regenerate|i:1667888530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b882719070c0225bc5251e055b9bd0e6eb00b281', '144.91.106.14', 1667888530, '__ci_last_regenerate|i:1667888530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6468085fa4f3abb38b8513ed1f39cffe566ec9', '45.120.39.142', 1667896911, '__ci_last_regenerate|i:1667896911;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667889949;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50cc6efd1bea4fe623ab1274d4cb138161f9163d', '172.105.247.100', 1667890281, '__ci_last_regenerate|i:1667890281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9460b0826efc32e9d1d1780f1ac54e11e1e6a512', '172.105.247.100', 1667890282, '__ci_last_regenerate|i:1667890282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c080f9827e9dc52b7408f48e33dd4ca253d290', '172.105.247.100', 1667890283, '__ci_last_regenerate|i:1667890283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dce64ba7dbf6b0ffbe84e4b829fb7b4f4ca4334', '172.105.247.100', 1667890283, '__ci_last_regenerate|i:1667890283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806f3fd42c5842e49813ccfb6f38bdb88a5c3e60', '172.105.247.100', 1667890283, '__ci_last_regenerate|i:1667890283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40effca0e067f088e9e4fe03b3b0893147cf6c10', '172.105.247.100', 1667890284, '__ci_last_regenerate|i:1667890284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef976484606e1cbb3618771f7ac23bf2fbc9628f', '172.105.247.100', 1667890284, '__ci_last_regenerate|i:1667890284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6cd45e18a7b19d0b03ec29c79367bf362b1b27e', '172.105.247.100', 1667890284, '__ci_last_regenerate|i:1667890284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d8d88ff03bb43152c1763d0cf9124bd64f2b09', '172.105.247.100', 1667890284, '__ci_last_regenerate|i:1667890284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('123088cf94ab4adeac91d5dba1134b3ea2df36a0', '172.105.247.100', 1667890284, '__ci_last_regenerate|i:1667890284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3ab9f6c39f4680c5376acd235b52c21a510089', '172.105.247.100', 1667890285, '__ci_last_regenerate|i:1667890285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed31dd82f31527f7f4785c1a669ee2d0170b135f', '172.105.247.100', 1667890285, '__ci_last_regenerate|i:1667890285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f87fa420df1c0ae231242aca2ae608915fec2e', '172.105.247.100', 1667890285, '__ci_last_regenerate|i:1667890285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02cad9a37ff27c5193e0fb2a911f1e701394ba50', '172.105.247.100', 1667890285, '__ci_last_regenerate|i:1667890285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92941f34a41eff353eaea7c3f65b20f391c3a4a0', '172.105.247.100', 1667890286, '__ci_last_regenerate|i:1667890285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717e4f641d100de8d6059798f3a56ebe7be44cc3', '172.105.247.100', 1667890286, '__ci_last_regenerate|i:1667890286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4288555f7dbc594d7ad3cfd7469d0024d507bac8', '172.105.247.100', 1667894475, '__ci_last_regenerate|i:1667894475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2009fe008e3a284ad87ea57a8d3a6f6e4c56ba', '172.105.247.100', 1667894476, '__ci_last_regenerate|i:1667894475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b49b4fea852522bd4c5ee73825cafebd8daaac', '172.105.247.100', 1667894476, '__ci_last_regenerate|i:1667894476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58626fb82eb9eae246275bfc95797f2b26b5ec1e', '172.105.247.100', 1667894476, '__ci_last_regenerate|i:1667894476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2215ba5eb7d98c1d94ff7d780faadc6deec9e20c', '172.105.247.100', 1667894476, '__ci_last_regenerate|i:1667894476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ed330891deea37301e241689e45981a57d3f37', '172.105.247.100', 1667894477, '__ci_last_regenerate|i:1667894477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba395cf170dbd84fee2befdf36942a97ffd916f0', '172.105.247.100', 1667894477, '__ci_last_regenerate|i:1667894477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6b20adb0f73f32d1445c4cc6797131adb18897', '172.105.247.100', 1667894477, '__ci_last_regenerate|i:1667894477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c20e2f5f19ab3c5e65d78a5cf0bfd34d5ca3f3d', '172.105.247.100', 1667894478, '__ci_last_regenerate|i:1667894477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014a8df04ee8f873cad91b18a9342aa29326c200', '172.105.247.100', 1667894478, '__ci_last_regenerate|i:1667894478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b846b52ccd6abd5cebb00eca5129010f5d0782', '172.105.247.100', 1667894478, '__ci_last_regenerate|i:1667894478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d34ed544cec4c166a6b8a34cf55e98511be4f9', '172.105.247.100', 1667894478, '__ci_last_regenerate|i:1667894478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5610662ee3d2d509cdbf50c844685bec4d17a5f7', '172.105.247.100', 1667894478, '__ci_last_regenerate|i:1667894478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8901a2d431688668f9c5008ba44a806b4b3eb916', '172.105.247.100', 1667894479, '__ci_last_regenerate|i:1667894479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5213d83760ff95a007bee01dccbfeb0bd182d5', '172.105.247.100', 1667894479, '__ci_last_regenerate|i:1667894479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0adb5d12efacb21eab2454c9aceb6e41e5594c75', '172.105.247.100', 1667894479, '__ci_last_regenerate|i:1667894479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6090e9266de6bf80a0ffa388b3c5b91aa9b6fe67', '45.120.39.142', 1667902211, '__ci_last_regenerate|i:1667902211;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667896944;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659ab6d900dacd46c0b0e696ff66062be12a5ef6', '172.105.247.100', 1667898685, '__ci_last_regenerate|i:1667898685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900a8cf9c602a836256e61f9aba55d20aac1308e', '172.105.247.100', 1667898685, '__ci_last_regenerate|i:1667898685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a85dd4f1053a2fa889d5041116e1bcf4255a626', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002561c8810347e4caba951e69b45b95f5ac4006', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9358581adaff79c3f414c7eeab88db887874d1', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589085f18774df95fff59676673d35875dab04da', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291ee2db7b3502668235ec76afd3ba5ccdef83db', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2030b94e2d087160f20b86b5485a8667fe7bcdf', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e0da7ece9e514376828ebd1ca432834c267132', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0861811fe50fb447f51aaeb4d46bd8f3e8a3b3bf', '172.105.247.100', 1667898686, '__ci_last_regenerate|i:1667898686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234b5f79ef2adf5386d4e70d9710f575febebd34', '172.105.247.100', 1667898687, '__ci_last_regenerate|i:1667898687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a71772a12cf3c0befd32123ef8ba79c4cbafb47', '172.105.247.100', 1667898687, '__ci_last_regenerate|i:1667898687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c56254aaa7725ebdbe4c561d6ea0268df7b573a', '172.105.247.100', 1667898687, '__ci_last_regenerate|i:1667898687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('270d214eb324008e756d24e99fc47cce0c65d567', '172.105.247.100', 1667898687, '__ci_last_regenerate|i:1667898687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25aaac1e43ba0afd32078eb4fefbdf3228bd6df3', '172.105.247.100', 1667898687, '__ci_last_regenerate|i:1667898687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed66a99e7f1020800534e11ae37489574dde451', '172.105.247.100', 1667898687, '__ci_last_regenerate|i:1667898687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6887bf5a286d93c8f002f802d8ae7a7715ae9214', '45.120.39.142', 1667905972, '__ci_last_regenerate|i:1667905972;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667905837;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb69aff4f2d342026cabdaaa3f6973504a38e0b8', '172.105.247.100', 1667902876, '__ci_last_regenerate|i:1667902876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42077917a435136669259b92f1abb568e2bf0148', '172.105.247.100', 1667902876, '__ci_last_regenerate|i:1667902876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8dde9adde830674f031b219abf466df105e6be', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ca489206019cad9976814f9149d1cf44fa8fb3', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f899210d1dc0940083c2045a7f892bd6d912879c', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e220c8277e4c5ea16d7b6453e1a310cbdce34a28', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aac00c655775cff2a1fe45a1eae5ac2a0becfbd', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3354e05a7f86dbd2d7bad6b4d451b4af7624037', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f2d42716023b8da99d3ef85f0ed7d237df4bc5', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f226f363bbfd4f3de095419e2551189d3cd6752', '172.105.247.100', 1667902877, '__ci_last_regenerate|i:1667902877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af12bd470d1ef43267e2435bf854a0329d322cca', '172.105.247.100', 1667902878, '__ci_last_regenerate|i:1667902878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b461b58b9f3f2e3f72f8a2ef995a73a67de55cdc', '172.105.247.100', 1667902878, '__ci_last_regenerate|i:1667902878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07769c2f61fa0e11339941fd553b1e85fe084360', '172.105.247.100', 1667902878, '__ci_last_regenerate|i:1667902878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388c0171b90eaf5dbd702b1c3b4491e8b236398b', '172.105.247.100', 1667902878, '__ci_last_regenerate|i:1667902878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba5bff341513962e71885c18bb2e9aa15ac65ed', '172.105.247.100', 1667902878, '__ci_last_regenerate|i:1667902878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6036f6200bdcb03f4814f9c6e4a5857620a252', '172.105.247.100', 1667902878, '__ci_last_regenerate|i:1667902878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38c3c36fd8740cc80c80ffef0c9d04221c5b4c6', '45.120.39.142', 1667908715, '__ci_last_regenerate|i:1667908715;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667908704;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28022d63e28908ddd0a662f473fe20b919f03cf5', '172.105.247.100', 1667907081, '__ci_last_regenerate|i:1667907081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ea7282065f11fd399655e3c95cc6130dd7b66a', '172.105.247.100', 1667907081, '__ci_last_regenerate|i:1667907081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140c1c7893071b43743ff848865bed6f0ab49c30', '172.105.247.100', 1667907082, '__ci_last_regenerate|i:1667907082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f507e3ac9123323da75f401bef57997e483d71', '172.105.247.100', 1667907082, '__ci_last_regenerate|i:1667907082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c6159705aff20d835ccf6080a4243cb110999f', '172.105.247.100', 1667907082, '__ci_last_regenerate|i:1667907082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a70116736f4b327820822be29176da98a51bc4', '172.105.247.100', 1667907083, '__ci_last_regenerate|i:1667907083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d34b61422977f2749f7d06cac82b5e096628054', '172.105.247.100', 1667907083, '__ci_last_regenerate|i:1667907083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c2d1cc8c336de8bf050e18fbfd69c6ff8b8c5a', '172.105.247.100', 1667907083, '__ci_last_regenerate|i:1667907083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e5ebf0d742ab6b0b85ad95ca50457a2c9810c4', '172.105.247.100', 1667907084, '__ci_last_regenerate|i:1667907084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796a52edad3bec75d348764d0a5d2e90995806b9', '172.105.247.100', 1667907084, '__ci_last_regenerate|i:1667907084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18c89009659e47e0f18b2e316404fa5b29f49f63', '172.105.247.100', 1667907084, '__ci_last_regenerate|i:1667907084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6adfb680873fdc29d22fc7f228d175c184ac399', '172.105.247.100', 1667907084, '__ci_last_regenerate|i:1667907084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b387dce638f8ea1212fd23dac122f5a92452e59', '172.105.247.100', 1667907085, '__ci_last_regenerate|i:1667907085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1f5efcfd5bb2831f0dd78de80f68921f2a659c', '172.105.247.100', 1667907085, '__ci_last_regenerate|i:1667907085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae52f0b5071cc24a381855e169c0db53f0504e14', '172.105.247.100', 1667907085, '__ci_last_regenerate|i:1667907085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44e3785270b36988fd3985a38c1a1475c67bff2', '172.105.247.100', 1667907086, '__ci_last_regenerate|i:1667907086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d927cf815bc5c2e59586805b7c61eeb4494a28e', '45.120.39.90', 1667910490, '__ci_last_regenerate|i:1667910490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667908715;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc4a2b2a857fea8287fd740f93d422fe238b622', '45.120.39.90', 1667912498, '__ci_last_regenerate|i:1667912498;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667910509;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655df502330a850b4d333eaffbceb2c4aa137789', '172.105.247.100', 1667911272, '__ci_last_regenerate|i:1667911272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae8e3c72b3f391bf543e431e3ec1c2cc9460450', '172.105.247.100', 1667911272, '__ci_last_regenerate|i:1667911272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1fdad4fa05b498f49230ed6d94acc830d3bdfcb', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2bbf66ee6c73ad706025f365f994f0bcdf65a2a', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111a6135f5d2743a6e0da71b16a112463350022c', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0537f8cbaff34e3427ac466ad024f2aeafe361', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf4270298056358063ecd9c97a716ddc39493e1', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7fa776be356354c3ccae9de32c5724cd3cde27', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a39113d97286b360d03c541b319f7e5e6d9ced', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82a1dea5ff74686ae9ff776699ca1115007ced2', '172.105.247.100', 1667911273, '__ci_last_regenerate|i:1667911273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e84887afab5404a2c93b0ec5cd29113f0005b74', '172.105.247.100', 1667911274, '__ci_last_regenerate|i:1667911274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9eb183adca2702a719d2270428e39b6dc99e6f5', '172.105.247.100', 1667911274, '__ci_last_regenerate|i:1667911274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d4526888a840c33cc595081be61966452c5af1', '172.105.247.100', 1667911274, '__ci_last_regenerate|i:1667911274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c704ae32a6c53497c6936f09e4816248b1de14', '172.105.247.100', 1667911274, '__ci_last_regenerate|i:1667911274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700c6df077d432144f1acec2b5db9557a05a2f1d', '172.105.247.100', 1667911274, '__ci_last_regenerate|i:1667911274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4cdab0796a4b2078758252c07d0cd1195d3de4', '172.105.247.100', 1667911274, '__ci_last_regenerate|i:1667911274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697de99e732dd0e220e6abeba900933d37f6ce12', '45.120.39.90', 1667914201, '__ci_last_regenerate|i:1667914201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667912512;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94d15c3741ff47bb0ff07cafb47b696f31b7b56', '45.120.39.90', 1667916662, '__ci_last_regenerate|i:1667916662;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667916638;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09e9f81861ae724614879235c26973edf109588', '172.105.247.100', 1667915476, '__ci_last_regenerate|i:1667915476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f63b5f06c7b9e9f0168e6058de24df189b02ad', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177decfd33a099721cc3b093483d26afb5198efd', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf875d25a4dd9edf8bfcb2271920da44dfa9678f', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700bdadc14eed72b91317151a63ae2ec8d402151', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36084ca5251acd3cd534ad4233d1ad7dcea1e08', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a604767717cd562a7f2562b7541d81aba6713164', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cff5c7af2ed4ecddd38d0bce1352e560048be48', '172.105.247.100', 1667915477, '__ci_last_regenerate|i:1667915477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa51adfa0417e3283890e239b57c883831724574', '172.105.247.100', 1667915478, '__ci_last_regenerate|i:1667915478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc2e6a808947cd302047bae65c635d5ec9215088', '172.105.247.100', 1667915478, '__ci_last_regenerate|i:1667915478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0152f9cec4e57f46ec6d7977065a34e9b6d6379', '172.105.247.100', 1667915478, '__ci_last_regenerate|i:1667915478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99c12f5dbaa23d1d2114dbf4ebb6a438523290e', '172.105.247.100', 1667915478, '__ci_last_regenerate|i:1667915478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adcf562dccf0101a9829a981ed82512c26a95630', '172.105.247.100', 1667915478, '__ci_last_regenerate|i:1667915478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21b0b3d3ba852b7b1a3419062f72a3b8521c20c', '172.105.247.100', 1667915478, '__ci_last_regenerate|i:1667915478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3131922379b79a39ae0aa01874eb87d4dd3bfc7', '172.105.247.100', 1667915479, '__ci_last_regenerate|i:1667915479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b755f393e6e155773dca3233178cb0eda600ccf', '172.105.247.100', 1667915479, '__ci_last_regenerate|i:1667915479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e2dd8506a9d377480e676ceb486067d9faa81f', '45.120.39.90', 1667918023, '__ci_last_regenerate|i:1667918023;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667918018;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1206944f4d9a2b118ff6e965700bff433851fcb4', '45.120.39.90', 1667918408, '__ci_last_regenerate|i:1667918408;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667918401;register_id|s:3:\"242\";cash_in_hand|s:9:\"8720.0000\";register_open_time|s:19:\"2022-11-07 20:41:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1ba25c23e102e6f8533a6d93a3d28eb8582c2c', '45.120.39.90', 1667918455, '__ci_last_regenerate|i:1667918408;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667882457\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667918454;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4958f16f8fb410cd6f066083c8f80d67c3f0325', '172.105.247.100', 1667919676, '__ci_last_regenerate|i:1667919676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89dfedec1c15d729aa0144788ffc3328cb2b657b', '172.105.247.100', 1667919676, '__ci_last_regenerate|i:1667919676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d85f3bd14be2496436a9185869cb99238aaf46e1', '172.105.247.100', 1667919676, '__ci_last_regenerate|i:1667919676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44e9703f063829591e61fa355664cd71fb909b53', '172.105.247.100', 1667919677, '__ci_last_regenerate|i:1667919677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2340bc375b1af7a24c0c19953fc232b57d9334e', '172.105.247.100', 1667919677, '__ci_last_regenerate|i:1667919677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91060d650e011c678c53872cf2a9b3339f5d9cf', '172.105.247.100', 1667919677, '__ci_last_regenerate|i:1667919677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c70d657c07d565850ebd67e87568be912471e0', '172.105.247.100', 1667919677, '__ci_last_regenerate|i:1667919677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63680931bfbdd8a85c4de8532e2757dee28a78f', '172.105.247.100', 1667919678, '__ci_last_regenerate|i:1667919678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b286a7581bfc2fd8c70a076aeebbad6710d529f3', '172.105.247.100', 1667919678, '__ci_last_regenerate|i:1667919678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bad9df06a3c5f88bd1d639783f8d08fb1b92558', '172.105.247.100', 1667919679, '__ci_last_regenerate|i:1667919679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4731b38de597f56f57af2fdb994eaa296351fc6', '172.105.247.100', 1667919679, '__ci_last_regenerate|i:1667919679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('117838e2126e22fbf4f2a6975a344ee2faada1fb', '172.105.247.100', 1667919679, '__ci_last_regenerate|i:1667919679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5446b43eb19ee1169a3bee8ce745feb7d3f8e82', '172.105.247.100', 1667919679, '__ci_last_regenerate|i:1667919679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba491f78945cc71916e90f765447a296dbbbc44', '172.105.247.100', 1667919680, '__ci_last_regenerate|i:1667919680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18bcba144a4b1a6823c97d812e5597702858c2b5', '172.105.247.100', 1667919680, '__ci_last_regenerate|i:1667919680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2071efd15e84d4184d49fc1bd20863792a285b35', '172.105.247.100', 1667919680, '__ci_last_regenerate|i:1667919680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de25e96c3c01956c4ca18622d9618db9cfbffb42', '172.105.247.100', 1667923885, '__ci_last_regenerate|i:1667923885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79c931cdeba1f10d65a1dd89be6cca6c49876ed', '172.105.247.100', 1667923885, '__ci_last_regenerate|i:1667923885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193f80cd7c31e8feb518a0917c852a4c8d230f13', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b37a74f44328e5991eef7cf634dd0d66ee15cc', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3af48a9ae6b85228e66b414412dadf096b0a15', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722898150a0ad99687e4d1601d5f4c0cabe13d03', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82692e4ae6f92f64c4e21be563148c22b601655a', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af3899660f45b915b7c47a683d55b6ebda125028', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd29a690282eecac20766253706c6b17472488ba', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e528815de7723177026ba3563181ed3e5f8b3f', '172.105.247.100', 1667923886, '__ci_last_regenerate|i:1667923886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef572c100bc83e3e9dfbc1f9f69db01b2132885', '172.105.247.100', 1667923887, '__ci_last_regenerate|i:1667923886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b59210514967408c6695fb73ae61dca13169ca', '172.105.247.100', 1667923887, '__ci_last_regenerate|i:1667923887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095d3a3aacb3183f0ce86a3f2ce6e8a4483efdce', '172.105.247.100', 1667923887, '__ci_last_regenerate|i:1667923887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472ffb25d6bd3ad7e45f12fd8653d1aa59d46285', '172.105.247.100', 1667923887, '__ci_last_regenerate|i:1667923887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e54fff1e280462a100e32743bdc3994138c0d5', '172.105.247.100', 1667923887, '__ci_last_regenerate|i:1667923887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dffeb7c6ac74395cf0288e63b559e5e4be3a1bd2', '172.105.247.100', 1667923887, '__ci_last_regenerate|i:1667923887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55cede1f33923e2595c90bc2900251743680bd4e', '205.210.31.177', 1667926991, '__ci_last_regenerate|i:1667926991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073eb0b98d814dcb5264f893fd0afa93ff61b614', '172.105.247.100', 1667928082, '__ci_last_regenerate|i:1667928082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fced477f62e698e67fc7898c575133401d9dfd6', '172.105.247.100', 1667928082, '__ci_last_regenerate|i:1667928082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257cc044ac2ac1317adff6e9ce6b0b99f8c4e42c', '172.105.247.100', 1667928084, '__ci_last_regenerate|i:1667928084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a6b8fac7a466575986af606030ba05db4f4f7e', '172.105.247.100', 1667928084, '__ci_last_regenerate|i:1667928084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d76742d96165e241c1a6c6d8375f76410bd21de', '172.105.247.100', 1667928084, '__ci_last_regenerate|i:1667928084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3349b702a3f819e80aa47502585e6b0a0d558ff', '172.105.247.100', 1667928084, '__ci_last_regenerate|i:1667928084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c340a1d645d3fb091b6650bd9a188f00fc44ddfe', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fed6e3319cd15c56d8efe5ab7957dd2c9f94032', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84d81d8e811cb699c78e1bb6a0926ea2bede0133', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c1132593ecaf4c477663c3c561e3ed53d997ea', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd4fec2d91d120ca64393f2e551b08e6520ee33', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a71aae029a61740c7f844e86d1804006f545e1', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c6c3eefcd7ce2e7fa8cc0fdb172f3fad07a8a9', '172.105.247.100', 1667928085, '__ci_last_regenerate|i:1667928085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114ee1d018c4c05c2ac1854c7c1e08c765eb4184', '172.105.247.100', 1667928086, '__ci_last_regenerate|i:1667928086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39dc93232bd27835685145d264b1af73c7e19baa', '172.105.247.100', 1667928086, '__ci_last_regenerate|i:1667928086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a7e6c217dd28efa5afcbe9f7bed7509c335396', '172.105.247.100', 1667928086, '__ci_last_regenerate|i:1667928086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584d9d181fe6866a2de02b70851d5ed72e95bb7a', '172.105.247.100', 1667932274, '__ci_last_regenerate|i:1667932274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22dfa3c3cbefd7f22a79a35c90299fae34d8e85b', '172.105.247.100', 1667932274, '__ci_last_regenerate|i:1667932274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b421214248054f06695d7a32266177afab2c25e7', '172.105.247.100', 1667932275, '__ci_last_regenerate|i:1667932275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4eb4049feba8c246ad340948effe414da0c1de', '172.105.247.100', 1667932275, '__ci_last_regenerate|i:1667932275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d23281aa6d501092e69ac74327d8dd2e2d2a9af6', '172.105.247.100', 1667932275, '__ci_last_regenerate|i:1667932275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b06c51f49dedd8fed587cd9e482f0aefce1d82ab', '172.105.247.100', 1667932276, '__ci_last_regenerate|i:1667932276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948b68e32126b1263e36747f96af64a58048caa9', '172.105.247.100', 1667932276, '__ci_last_regenerate|i:1667932276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2406af9a0b591092bb5e3c674b203c5210862358', '172.105.247.100', 1667932276, '__ci_last_regenerate|i:1667932276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d8bfb425da0f82cc1414175cc87e63df6d06b3d', '172.105.247.100', 1667932277, '__ci_last_regenerate|i:1667932276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb92f85427dcf83c70675b96dcd5b0064edd4d7c', '172.105.247.100', 1667932277, '__ci_last_regenerate|i:1667932276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92bb2b31a2a72039591ccfa27da56754e1b4a080', '172.105.247.100', 1667932277, '__ci_last_regenerate|i:1667932277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9d523e1793a2242e9b3212ebdc990f3dd0f0c7', '172.105.247.100', 1667932277, '__ci_last_regenerate|i:1667932277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ce77e9fa91ba49654abbb6651560ec155ee11c', '172.105.247.100', 1667932277, '__ci_last_regenerate|i:1667932277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b0c35bc0712cb70ed74d1a6eeb9be67dcf117b5', '172.105.247.100', 1667932278, '__ci_last_regenerate|i:1667932277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a814143d9f96f04a37ffc0c60b2ad72d23873fe', '172.105.247.100', 1667932278, '__ci_last_regenerate|i:1667932278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1e58ed820bce6da63c14920401ba1f70605631', '172.105.247.100', 1667932278, '__ci_last_regenerate|i:1667932278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c89758242780bc0c540355d598ed6653cd7d7a', '172.105.247.100', 1667936481, '__ci_last_regenerate|i:1667936481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc79f1e0867ff7183f4295e24e7e56e487217fbc', '172.105.247.100', 1667936481, '__ci_last_regenerate|i:1667936481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f845dd5972cea1b7683847ee5e51ebecaa15a8a8', '172.105.247.100', 1667936482, '__ci_last_regenerate|i:1667936482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977e126e1892c87d9c89747581b09b8ea4c5337e', '172.105.247.100', 1667936482, '__ci_last_regenerate|i:1667936482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3387862f921f5473bc5b55947a241f3bd95e630', '172.105.247.100', 1667936482, '__ci_last_regenerate|i:1667936482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8fa26475e8b5ef21f2d7dd8a3c27cef6f5c2495', '172.105.247.100', 1667936483, '__ci_last_regenerate|i:1667936483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d2ae39b3825c9213028ab663bb9f8ee9d318c2', '172.105.247.100', 1667936483, '__ci_last_regenerate|i:1667936483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88510ecea5a82aa646e59857ae02e57ac45860e', '172.105.247.100', 1667936483, '__ci_last_regenerate|i:1667936483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf76a66af95eacaab23c81966e05e5d322e76f4e', '172.105.247.100', 1667936483, '__ci_last_regenerate|i:1667936483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f2835bc0bb1813d9f912265695ae39f4c522f56', '172.105.247.100', 1667936483, '__ci_last_regenerate|i:1667936483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da396887737c0e583bf4850117f0eb70aa15fc9f', '172.105.247.100', 1667936483, '__ci_last_regenerate|i:1667936483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce8800ed4f0ccbf8e5bec2783a31ac5dd3856119', '172.105.247.100', 1667936484, '__ci_last_regenerate|i:1667936484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62b28f3984bd0672fee4fd2d3ee17b0deaf5885d', '172.105.247.100', 1667936484, '__ci_last_regenerate|i:1667936484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da6bb5bf068d6fec64ed2c0ad39feb3aa6c321b3', '172.105.247.100', 1667936484, '__ci_last_regenerate|i:1667936484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819ec7a2b081ed694029de17cbd8d422ecc719c4', '172.105.247.100', 1667936485, '__ci_last_regenerate|i:1667936485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9653883260e4731300d95da84246025bb21636', '172.105.247.100', 1667936485, '__ci_last_regenerate|i:1667936485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7162d314f6ce190f609ee0aa603101885922dbd7', '172.105.247.100', 1667940678, '__ci_last_regenerate|i:1667940678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0d3b401ea5a9a168ad6b904f52991269bbc040', '172.105.247.100', 1667940678, '__ci_last_regenerate|i:1667940678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d81e7aaca2b26fc6a33a46f7a3f2a483a468465', '172.105.247.100', 1667940678, '__ci_last_regenerate|i:1667940678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7b1275aac7e4f81fc3683108b7a585bcf00adf', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2db8083f0174b089a9a340f5e0c96c31c197384f', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307ff952b2654f1e94a07a02fc0b1de2403b7dbb', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16aac27937cf7c1a71e352fd0d2d7a57de2416bd', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d4e6d25e226ff83aa1061b21718dc657bf2818', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84daf43b94bdf475dbb7ff41b668eb9ebbe661ab', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ffb19cab67d4b25878adce062beeece38394dfc', '172.105.247.100', 1667940679, '__ci_last_regenerate|i:1667940679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebe117c1ef2d6a569dff09183650a8a7bbf944b', '172.105.247.100', 1667940680, '__ci_last_regenerate|i:1667940680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056db057335794a26d1c15e518129c7d7174b844', '172.105.247.100', 1667940680, '__ci_last_regenerate|i:1667940680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d43abb1f5063c0469ac4eb7144af7003d4174ef', '172.105.247.100', 1667940680, '__ci_last_regenerate|i:1667940680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ebb8c9a93df4fac03f33a1ffdb30c3f8c3f292', '172.105.247.100', 1667940680, '__ci_last_regenerate|i:1667940680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a087b52d29a99cd1dbe66871f93349cdb3b1d836', '172.105.247.100', 1667940680, '__ci_last_regenerate|i:1667940680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee33fb86d15891a11d901b95173eae312adebfbf', '172.105.247.100', 1667940681, '__ci_last_regenerate|i:1667940680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19412ab01e2756325c312a20009c7284d556cc38', '172.105.247.100', 1667944875, '__ci_last_regenerate|i:1667944875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a52d1a7f25945572550f96cce23faea7d96840', '172.105.247.100', 1667944877, '__ci_last_regenerate|i:1667944877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27f7d7cfe20e52ec9ce6b9acc542bd56c4f8f99', '172.105.247.100', 1667944877, '__ci_last_regenerate|i:1667944877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf75b64636ed80631a830e29dbfbee0e8de34b23', '172.105.247.100', 1667944877, '__ci_last_regenerate|i:1667944877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d4cb441cb94a77b575a6b7a98b96c1eb81e10d3', '172.105.247.100', 1667944877, '__ci_last_regenerate|i:1667944877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6950636d709ead703fc67ed97ec406e7a6f2721', '172.105.247.100', 1667944877, '__ci_last_regenerate|i:1667944877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a7cd8e1c0d3a62571892108f0043e293e12439', '172.105.247.100', 1667944877, '__ci_last_regenerate|i:1667944877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51866e15a8f6ec555b9d8aad59eb2cca7ebc70d2', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84d1b0c3ecb506cbe3934ebeb82d3bbc991b9e84', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2aadbc68a3c66778fd09f90c59ae9a74df12222', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('649b71a59cbad6375fab8a33c47f68dbd8f6f140', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1530ab67a170a783cbe00f424968fa0deff6b0d', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482c921f05f04d8f7935e7901fc7a2c79c1eb520', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dccc3bc311b3e88d343141e3fe7414e81f2cf18b', '172.105.247.100', 1667944878, '__ci_last_regenerate|i:1667944878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d52e63fc5383e8054b61abe9ae26044fd71f0b70', '172.105.247.100', 1667944879, '__ci_last_regenerate|i:1667944879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64bd75e299eb0ec8f6a54239a4aa88b257b8f6e5', '172.105.247.100', 1667944879, '__ci_last_regenerate|i:1667944879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398416560ee16cd9c45e2c65c56697c60a7dff00', '172.105.247.100', 1667949072, '__ci_last_regenerate|i:1667949072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e669ccf107093c0ef11cc9e03b1eba6d3ad7d5', '172.105.247.100', 1667949073, '__ci_last_regenerate|i:1667949073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d7bfbf97e4f92d7f0a46c27bd3dd5d50ea8055', '172.105.247.100', 1667949073, '__ci_last_regenerate|i:1667949073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e309f8c8be1a8f22d3ac2476e6b5b0b013ee00a6', '172.105.247.100', 1667949073, '__ci_last_regenerate|i:1667949073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdcd19f8aa7156a7796821d4d0f1c7a353c85874', '172.105.247.100', 1667949073, '__ci_last_regenerate|i:1667949073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc23cdb0fb05c3d5e57a4b9a254a660e9134b364', '172.105.247.100', 1667949074, '__ci_last_regenerate|i:1667949074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e66a189d38d3bfe909c1267858b0718a55c19b8', '172.105.247.100', 1667949074, '__ci_last_regenerate|i:1667949074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d435ea75a3c751b73e5aa9f35dea615052a4eb', '172.105.247.100', 1667949074, '__ci_last_regenerate|i:1667949074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a6547a355ed6a06407732aabf9df6643d7b77d', '172.105.247.100', 1667949075, '__ci_last_regenerate|i:1667949074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38289cfd3e2179b9ab4fe6a32f883b418e472dd5', '172.105.247.100', 1667949075, '__ci_last_regenerate|i:1667949075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddb794b085dc7d4b6937400b0f4fb4542b699b9', '172.105.247.100', 1667949075, '__ci_last_regenerate|i:1667949075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acae54f00376df078b1c12cc4ae4d82a0b61ac06', '172.105.247.100', 1667949075, '__ci_last_regenerate|i:1667949075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012865225e94e89b1269e09d25078157c58de7b8', '172.105.247.100', 1667949076, '__ci_last_regenerate|i:1667949076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119c0dfd3ef66a59a94e09882c15bcf288bbd35a', '172.105.247.100', 1667949076, '__ci_last_regenerate|i:1667949076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf67dd00d62d690771639f5dd74337c712a01ae', '172.105.247.100', 1667949076, '__ci_last_regenerate|i:1667949076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a57a7b64847fdc028d4205eb2259559c635c9f', '172.105.247.100', 1667949077, '__ci_last_regenerate|i:1667949076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd6a734f08358871098cf822554c192e40fc49c', '172.105.247.100', 1667953278, '__ci_last_regenerate|i:1667953278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67c64505388950b7dda18fc4f67db55085c55dd', '172.105.247.100', 1667953278, '__ci_last_regenerate|i:1667953278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc52d52834c29efa4f197abe8b47cc55665016f1', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb9542a1279aae534848363236fc4de2eb35a35', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b345a218a9f16088ca21685536caa1234f652b98', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a5f6ebdfe9974f18887dc8b446d0a35f8b6d7a3', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60efe543b0465bfccb3df4b4d05faabada4f4c20', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90690ac7af9d4231e28ac2c39e5b58c6dea9cc52', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c612f126bf8cd9e5ec063b541560d9ecf77d8b7', '172.105.247.100', 1667953279, '__ci_last_regenerate|i:1667953279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8b9dc49339a4e93985fbf955d6069bb8e32031', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d0e42d20b775087651b8957b3492d8b600e4ae', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26136f4793dbbd2fdd7ff3d62b2454fa27bece99', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253b9b7ec18c7369a7adb13c1b7803072ccb3458', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6aa2c60b6f0861e453c972c9f3b0fdf7db3eff4', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b3818b2918253b2b1cc072752711affbb36bab', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cae47c55f9a9bbc7642f4c9e244cf072bc7c227', '172.105.247.100', 1667953280, '__ci_last_regenerate|i:1667953280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46636c3df0e9ee82deaa60bf27d08d5fa10204e0', '172.105.247.100', 1667957470, '__ci_last_regenerate|i:1667957470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba4b4df2ee36b0ca4cbc295d757e3ff531ce545', '172.105.247.100', 1667957470, '__ci_last_regenerate|i:1667957470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b180046b8cf6c89c996d0ec4102e59b7873430eb', '172.105.247.100', 1667957470, '__ci_last_regenerate|i:1667957470;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cfa298184adec85e7adef974587831e6c52fdf3', '172.105.247.100', 1667957470, '__ci_last_regenerate|i:1667957470;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a536b51c7b02e55c863e4bbaf506be96fc632511', '172.105.247.100', 1667957470, '__ci_last_regenerate|i:1667957470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e373376f0af5fea52fc3b6748eac79b3981b4ffd', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97072aace990d37249d87b55c7ff872c05687b3b', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c51c06e7fd03864868f4a433d94d1f429606db', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2dc008d5187f88ecdf323c73380969fa80700e', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9b0244a0151d70ee58b3ec887e8d473e7f0bcb', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae492d2bc0d0db8a399e51322cfe9a53359772d', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1d83cfb3fc0eee1b72541574d627ae98da0e00', '172.105.247.100', 1667957471, '__ci_last_regenerate|i:1667957471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fddc5e285c037ec26bc306487089b8035d81526', '172.105.247.100', 1667957472, '__ci_last_regenerate|i:1667957472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde421ebb605fa191b978aa362e830b8510f093c', '172.105.247.100', 1667957472, '__ci_last_regenerate|i:1667957472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef84e6d47944c1a3d9558cbfdf3e3675b4d291d', '172.105.247.100', 1667957472, '__ci_last_regenerate|i:1667957472;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5edd66b99feddc64356aa973a5acee5bc8474839', '172.105.247.100', 1667957472, '__ci_last_regenerate|i:1667957472;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7302d983d525225b0f5b122bc3760967c93358', '172.105.247.100', 1667961670, '__ci_last_regenerate|i:1667961670;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3adf86a3ebf198596179a8dd00e305c42c33557', '172.105.247.100', 1667961671, '__ci_last_regenerate|i:1667961671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a7aaae37f2ddfb1f37cfa9cd047f9bf812eb87', '172.105.247.100', 1667961671, '__ci_last_regenerate|i:1667961671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e307ffdf7d64dd4b5e487576d539e37938e36346', '172.105.247.100', 1667961671, '__ci_last_regenerate|i:1667961671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a866db8389d8b97aaffcff1d9bf7e7dce57fec8', '172.105.247.100', 1667961671, '__ci_last_regenerate|i:1667961671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d33cc5bf9e671fb0c0d012e53c4313879576f8a', '172.105.247.100', 1667961671, '__ci_last_regenerate|i:1667961671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0940f6370cc4c7a8f810dfe2ad5aa640505772', '172.105.247.100', 1667961671, '__ci_last_regenerate|i:1667961671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96ac2512449acf14ad2189325030af38dd5928f', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41fc05657324fde57cfabb02220231d1609e5ee2', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f3d4b1535190291da757681285052fa794ac40', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f456b8639784ad466d719acc26c9797ee0799b05', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ae7a40e8deef5b61d584b70077c0058bed7cf5', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d494bedde4295eb3ce90a91a26f22691d0d032', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b52d8104ba2bff3c41057e36dc8a38b0f7d1b3', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c07f15a09c735f18325e3acd128398e3717d4b', '172.105.247.100', 1667961672, '__ci_last_regenerate|i:1667961672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750175dcb5bb9b72a1bb0e31e0ce23bbbbec14b3', '172.105.247.100', 1667961673, '__ci_last_regenerate|i:1667961673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9cdc1e6819aa35a01c8bf6d0a2dbdf2bcc33b7d', '198.235.24.186', 1667963932, '__ci_last_regenerate|i:1667963932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18247800f3ee3889515585a36f30663ac798d3f4', '172.105.247.100', 1667970077, '__ci_last_regenerate|i:1667970077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f9c02133816fb6f25f8132727c75da28e844c6', '172.105.247.100', 1667970077, '__ci_last_regenerate|i:1667970077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dddc944c3dc415b763ddd606b72234c517ee6374', '172.105.247.100', 1667970077, '__ci_last_regenerate|i:1667970077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e092e1cbecbc9bbfc3dff710f45a206cb885c821', '172.105.247.100', 1667970077, '__ci_last_regenerate|i:1667970077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f375e2dbc8d7bb482ff476e2f1e6eba0a4595550', '172.105.247.100', 1667970078, '__ci_last_regenerate|i:1667970077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016db87b9c00f175711584fc787759a12a1ed4b0', '172.105.247.100', 1667970078, '__ci_last_regenerate|i:1667970078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41bf2d657d4d5b73c1a2c4dc159958d80a591e28', '172.105.247.100', 1667970078, '__ci_last_regenerate|i:1667970078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c766590d2aa6077419478f9d17e0149d542b13', '172.105.247.100', 1667970078, '__ci_last_regenerate|i:1667970078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22946a87355b88b11d8be0fd7767fda1c776e6c7', '172.105.247.100', 1667970079, '__ci_last_regenerate|i:1667970079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c85cda2431d2e79550a06e521340f5d23d4e47', '172.105.247.100', 1667970079, '__ci_last_regenerate|i:1667970079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c23478699bdf0a3a9dbe45253e730fb1c88c7b1', '172.105.247.100', 1667970080, '__ci_last_regenerate|i:1667970080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c14d414316eef80447ce41c7671a6ced036dc1', '172.105.247.100', 1667970080, '__ci_last_regenerate|i:1667970080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de0655e2bb86ad1c48929200c1115ac9dac69048', '172.105.247.100', 1667970080, '__ci_last_regenerate|i:1667970080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6474f75563cca4e978e381177595a324b5bea528', '172.105.247.100', 1667970080, '__ci_last_regenerate|i:1667970080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841c3f576cdf1d66c61f1cded35431dc44f9405c', '172.105.247.100', 1667970081, '__ci_last_regenerate|i:1667970081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28d30b3d117404bcd796d601b1173034e9487c9', '172.105.247.100', 1667970081, '__ci_last_regenerate|i:1667970081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de216990325e0fc09c02cd132ecb9a5e2cc98eec', '45.120.39.90', 1667972159, '__ci_last_regenerate|i:1667972159;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667889835\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667971108;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7716977d0f4f3a625b7b204a241369fb0e5ed6', '45.120.39.90', 1667972159, '__ci_last_regenerate|i:1667972159;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667889835\";last_ip|s:13:\"45.120.39.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667972159;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321f2dc9bf5528a9d8a87e5a0df1d96f1a548919', '172.105.247.100', 1667974287, '__ci_last_regenerate|i:1667974287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2cd289fffd13880f4e5527dc149e0bf6946191', '172.105.247.100', 1667974287, '__ci_last_regenerate|i:1667974287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c75c947409d2da022ebe8fb9d6ee7d05287d234', '172.105.247.100', 1667974287, '__ci_last_regenerate|i:1667974287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140ac99bd76f8813bb4069eda9849078e3e32f43', '172.105.247.100', 1667974287, '__ci_last_regenerate|i:1667974287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('992559773630d5f1968da74f37fe679fcd41b19b', '172.105.247.100', 1667974288, '__ci_last_regenerate|i:1667974288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef5f9139d9c7cc15472b1491fe6e16406a1487d', '172.105.247.100', 1667974288, '__ci_last_regenerate|i:1667974288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad0bccb0d648a08bc04a3b8bfebe4101b4aa5d8', '172.105.247.100', 1667974288, '__ci_last_regenerate|i:1667974288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e4664c1b97d673e55d6a39a4b4d077c430ef45', '172.105.247.100', 1667974288, '__ci_last_regenerate|i:1667974288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b59cc1b085c385e1c3d595ebedce3498b206f1', '172.105.247.100', 1667974289, '__ci_last_regenerate|i:1667974289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1f5359c326a33c6cfa3b706890a01663e28101', '172.105.247.100', 1667974289, '__ci_last_regenerate|i:1667974289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f07ba43a61d89556ace25fb79f4443bcc703395', '172.105.247.100', 1667974289, '__ci_last_regenerate|i:1667974289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9880a40e0a93bc98e6b5b71e21e68ddacef3bc98', '172.105.247.100', 1667974290, '__ci_last_regenerate|i:1667974290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a73727cda753216a50361c7ebb944c8511f8b7', '172.105.247.100', 1667974290, '__ci_last_regenerate|i:1667974290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25e0b5de99f355e52d1b1561824e7262e7bf165', '172.105.247.100', 1667974290, '__ci_last_regenerate|i:1667974290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72adaf919060da7c951ea643826cd671961fdf0e', '172.105.247.100', 1667974291, '__ci_last_regenerate|i:1667974291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb52103e4c872f0b24fd7100e47c499f34abf3f3', '172.105.247.100', 1667974291, '__ci_last_regenerate|i:1667974291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2bd5c23ac36bbac257e96ad24c3b7000bb8e6cf', '172.105.247.100', 1667978480, '__ci_last_regenerate|i:1667978480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418ba68755946e0f581ea227e40c54127419af45', '172.105.247.100', 1667978480, '__ci_last_regenerate|i:1667978480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb97e2bf4cdfa5570dd9815ebcc33fff2361acc', '172.105.247.100', 1667978480, '__ci_last_regenerate|i:1667978480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b88627aa0cd648d4253a6662a515022a3c4ab80', '172.105.247.100', 1667978480, '__ci_last_regenerate|i:1667978480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3324fc6e9e4bb61e7ab219c39fa88303762297a1', '172.105.247.100', 1667978480, '__ci_last_regenerate|i:1667978480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b9330dbdd61d523eb74ae5e471077908b1fddb0', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fae0f22f4906d9fb4ebb0c9a45fb9944ceaa541', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f1511a5e05af2173f9b7df6daea11f600346bfb', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8518fde989b56826ca36ade0d77e02489ba983c', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc59f80a26eb915c3456e0012eb9ca97e610afb', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3612f6449dcf0290827e0ff785e3b55990255a', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ccbbdb73b9f75dc0a92008996c9857df26c59f', '172.105.247.100', 1667978481, '__ci_last_regenerate|i:1667978481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e632f50410e7624afa113cfc3f2d252b82d3fccd', '172.105.247.100', 1667978482, '__ci_last_regenerate|i:1667978481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f7f45a565393b5d5eca0e9c3aa214d729286f4', '172.105.247.100', 1667978482, '__ci_last_regenerate|i:1667978482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14c32d3d62d6d2d8cee1d0d6f51c7e52f052859', '172.105.247.100', 1667978482, '__ci_last_regenerate|i:1667978482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428c87f459f3242f57ee9f3e7719415d4dddcfa7', '172.105.247.100', 1667978482, '__ci_last_regenerate|i:1667978482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017ce65f58279a7989f6c062ca8714fe0aa1f084', '172.105.247.100', 1667982680, '__ci_last_regenerate|i:1667982680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4cd1f5760aa6648e7dc2210315be3e9c84b7b45', '172.105.247.100', 1667982680, '__ci_last_regenerate|i:1667982680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d69203c7982bf8f87975c72c5e3829746ccd2a1', '172.105.247.100', 1667982680, '__ci_last_regenerate|i:1667982680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a6432c32d34289cad4f48b2ad14987e56c14e1', '172.105.247.100', 1667982680, '__ci_last_regenerate|i:1667982680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f50fae79f3369e912139a987b9e0e197fc77ab', '172.105.247.100', 1667982681, '__ci_last_regenerate|i:1667982681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450aa28f1453071e01d7f220669430023da8ba43', '172.105.247.100', 1667982681, '__ci_last_regenerate|i:1667982681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('089a3f73d6a1e18ecf456ead47cd60e81e5be91c', '172.105.247.100', 1667982681, '__ci_last_regenerate|i:1667982681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477d7371ee01b39aadd4f03300469e96259bc0da', '172.105.247.100', 1667982682, '__ci_last_regenerate|i:1667982681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('674ba5e7fe3651ef9de1ce4f24ea19b92c7c951f', '172.105.247.100', 1667982682, '__ci_last_regenerate|i:1667982682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5407aba5403119308285666714127a594a866a77', '172.105.247.100', 1667982682, '__ci_last_regenerate|i:1667982682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28819affee7007fb9bfaa9e17f2c2b0ced5a2da6', '172.105.247.100', 1667982682, '__ci_last_regenerate|i:1667982682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acfed6d295bf86ae07087629a99eeff06c9d434', '172.105.247.100', 1667982683, '__ci_last_regenerate|i:1667982682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a4f499b452a20017e212721cee77ef6e4305ae', '172.105.247.100', 1667982683, '__ci_last_regenerate|i:1667982683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e796c85235154d74853c2895b4c50d68ef08f8ea', '172.105.247.100', 1667982683, '__ci_last_regenerate|i:1667982683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d52e2f12c113d9080d10eefd3fe625153aaa6a95', '172.105.247.100', 1667982683, '__ci_last_regenerate|i:1667982683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f53759bbad46eb80e61b9a27b554885fb513fb', '172.105.247.100', 1667982684, '__ci_last_regenerate|i:1667982684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77b00bc24707bb0f99fe4d8e0e82e3beff4e6c1', '172.105.247.100', 1667986878, '__ci_last_regenerate|i:1667986878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312088efd34894ea523d387b13d2d2d433fea5a0', '172.105.247.100', 1667986878, '__ci_last_regenerate|i:1667986878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93c3ed1bc560d5648da3be9623a4b8082364bab2', '172.105.247.100', 1667986878, '__ci_last_regenerate|i:1667986878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20809b165f1226cf236ebd7e74561b7b876838b7', '172.105.247.100', 1667986878, '__ci_last_regenerate|i:1667986878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbc8bc8a7949989c01d851facfc1b47e49059f0', '172.105.247.100', 1667986879, '__ci_last_regenerate|i:1667986879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0495d36c7cf743199148116d1ddcc2b54a1097f8', '172.105.247.100', 1667986879, '__ci_last_regenerate|i:1667986879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08af273d9d2620ac9c37d0533122061e22cb3d47', '172.105.247.100', 1667986879, '__ci_last_regenerate|i:1667986879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474b570aabe025179ef8c47b7092421868d17c7f', '172.105.247.100', 1667986879, '__ci_last_regenerate|i:1667986879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a04ae8823529615382766846722105e661333c', '172.105.247.100', 1667986880, '__ci_last_regenerate|i:1667986880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251d93b1e3813e69e5ecf15b9c50afeea21fc33e', '172.105.247.100', 1667986880, '__ci_last_regenerate|i:1667986880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3aa0be15e8b6ead94f3d03e0618afea311b2ea', '172.105.247.100', 1667986880, '__ci_last_regenerate|i:1667986880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7a66be202d7361b03982dcd554be84b383a713', '172.105.247.100', 1667986881, '__ci_last_regenerate|i:1667986880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d58eca5b1f893d87bef0aec78511dae28f672f4', '172.105.247.100', 1667986881, '__ci_last_regenerate|i:1667986881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2609545c314f2593b99ecff7868815dc8c2c091', '172.105.247.100', 1667986881, '__ci_last_regenerate|i:1667986881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1f76fa0a2e091e7cf08247157a2c8c599d4ea8', '172.105.247.100', 1667986881, '__ci_last_regenerate|i:1667986881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14df1382e5143d6966a07ab9235da4275cd547ad', '172.105.247.100', 1667986882, '__ci_last_regenerate|i:1667986882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c44c93ede717658c14bd3a4cebaa5825079825f', '45.120.39.90', 1667988367, '__ci_last_regenerate|i:1667988367;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667988354;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6eacdb20fc8682dbcbc398a4c14d3d73d1bb889', '45.120.39.90', 1667992092, '__ci_last_regenerate|i:1667992092;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667988367;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d8fefd7462cc6e6d7cc0469a2a63fa006af826f', '172.105.247.100', 1667991082, '__ci_last_regenerate|i:1667991082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3357a238d47aef9dd19090dd4e48a2ada7f878e6', '172.105.247.100', 1667991082, '__ci_last_regenerate|i:1667991082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c3f9e2b512837d29f7ea7cde83ed5f9db869d0', '172.105.247.100', 1667991082, '__ci_last_regenerate|i:1667991082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8831db5912f4a0110bdddfcf18a6c31c5c417f69', '172.105.247.100', 1667991083, '__ci_last_regenerate|i:1667991083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6590e2b1ad148b061c0c26589ff8bf67a208e029', '172.105.247.100', 1667991083, '__ci_last_regenerate|i:1667991083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dfa47c3c94d660e07e4b0a0bcfeeb4ea325acf0', '172.105.247.100', 1667991083, '__ci_last_regenerate|i:1667991083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d18527c7232b5789bfa60fa4b41525e01fc4f4', '172.105.247.100', 1667991083, '__ci_last_regenerate|i:1667991083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04fc59f65abb40a0ed8d02365e9115bf40d561e7', '172.105.247.100', 1667991084, '__ci_last_regenerate|i:1667991084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8a77dc5a5c701bf68a79f3f5af3463b3d6d035', '172.105.247.100', 1667991084, '__ci_last_regenerate|i:1667991084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df983953e841b2d31f66ea20e5720e797e90e0c4', '172.105.247.100', 1667991084, '__ci_last_regenerate|i:1667991084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16bc14c16d89c0b62c8a48cc2f98dc91f4b8ef5a', '172.105.247.100', 1667991084, '__ci_last_regenerate|i:1667991084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('548816e81de31f54a7e99aae2dadee46a529fba9', '172.105.247.100', 1667991085, '__ci_last_regenerate|i:1667991085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361f07f2768dfdb0a3a649d26735297e6351955e', '172.105.247.100', 1667991085, '__ci_last_regenerate|i:1667991085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7578ef6929e112486c32517f6944b55f0ecd1b68', '172.105.247.100', 1667991085, '__ci_last_regenerate|i:1667991085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782a3204f178cdb4e76d67d00fb56230e37a7f5e', '172.105.247.100', 1667991086, '__ci_last_regenerate|i:1667991086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b276ca63da48ec39bf6ccd3e2d054bb4b85503', '172.105.247.100', 1667991086, '__ci_last_regenerate|i:1667991086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31da0e63056bebd2766121b94291311f74aa497b', '45.120.39.90', 1667994573, '__ci_last_regenerate|i:1667994573;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667992154;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7879e659f6e0ead1b7615ca4948d70cee1b3486a', '45.120.39.90', 1667996453, '__ci_last_regenerate|i:1667996453;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667994573;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f16bd15c1587052fae53c21d776563a0c1578f', '172.105.247.100', 1667995289, '__ci_last_regenerate|i:1667995289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50758a7720ee1af330cf04ddd33121b6daa37291', '172.105.247.100', 1667995290, '__ci_last_regenerate|i:1667995290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ceb80e217f0503a7ad8802810a2bc601f68c15', '172.105.247.100', 1667995290, '__ci_last_regenerate|i:1667995290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7deb76645f2d6b3cfc0f9b6a0f065e956e32133b', '172.105.247.100', 1667995290, '__ci_last_regenerate|i:1667995290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d85445f411fc63d0fb8ce80d77b81b51211058af', '172.105.247.100', 1667995290, '__ci_last_regenerate|i:1667995290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77c47fe2cc9db17678aa611a3db69e259a94b76', '172.105.247.100', 1667995290, '__ci_last_regenerate|i:1667995290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32e9eb9b4e6d9857a01c8cba3691bf6901b34e3a', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5f101fbbf80c2bb1b378727ef3821943394e94', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0397b0f6cdafa63d5976e90503490afaf7d77c78', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0167542aa95da4bdd9d750236d112134879758e6', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3118531ab6d00c1726618398b18e78b5eeb10d98', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca41be80007c71708530fcbd7faa8f25cab2fde2', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da89de1e83f914855b830e5ded6834b24f3f189', '172.105.247.100', 1667995291, '__ci_last_regenerate|i:1667995291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d95183fc3c3e5dda491680495a530e208ad5c9', '172.105.247.100', 1667995292, '__ci_last_regenerate|i:1667995291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ce2a3e9bee3347b8a50455329abf69cac8919a', '172.105.247.100', 1667995292, '__ci_last_regenerate|i:1667995292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b49d1583d86f248049b7dd94df0bd954ac5445', '172.105.247.100', 1667995292, '__ci_last_regenerate|i:1667995292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad579c1f55deef51070f5024606a0cba9dc2cb0c', '45.120.39.90', 1667997119, '__ci_last_regenerate|i:1667997119;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667996466;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0edb4a924b6661a6a979dc09acec602d79c78c61', '45.120.39.90', 1667998685, '__ci_last_regenerate|i:1667998685;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1667997119;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f86f52a375e38f67e49457626e72f5f3d1c1658', '45.120.39.90', 1668002858, '__ci_last_regenerate|i:1668002858;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668002853;register_id|s:3:\"243\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-08 20:40:54\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca4233bf09139fd54753cb62b8bdfc3229fad76', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a3bf350ae0bc49db4af8b892409ac1a9d0bf20d', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532af619b0d68a7c1b82eaad9a67d9d3ace09670', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07966fa512eb90275cfc706ba4bc6a1e8f0ce611', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b6451ce6627173800f81194b0444bbd5f4942c', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb468787bd8f645812480b28941808ba4409600', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ff937334730b1962f54bc9b95433e6c1666fb3', '172.105.247.100', 1667999480, '__ci_last_regenerate|i:1667999480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d474b453d2818c1f3ae4e4040c72b47a0c462d62', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953b1819fd0a59216ffa4b310a2affd154fd61b7', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8a0f09c042138a323d6434fbba77b79439c618b', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea6ce23ca834144f62394798540e1989e40411a', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('872b4e74a143fb14f38523e734e67ddc44f2d512', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fffb9e3b1a6b9625a3cfad927611fba619fe189b', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcbb4b9693f3435200cacf36f9f021c174458137', '172.105.247.100', 1667999481, '__ci_last_regenerate|i:1667999481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa7258d494b285792b5194db12de837cf583393', '172.105.247.100', 1667999482, '__ci_last_regenerate|i:1667999481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4fcb9cb15bf784a8249b0bfd43863a97427247', '172.105.247.100', 1667999482, '__ci_last_regenerate|i:1667999482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22455f226345f7db628312408a571f0034a8beb', '45.120.39.90', 1668002890, '__ci_last_regenerate|i:1668002858;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667971077\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668002890;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88cc4f0ca25bde8250d0e5137d47a010f37f4249', '172.105.247.100', 1668003685, '__ci_last_regenerate|i:1668003685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4eed1f87d48bb2399175f4c2ac7051b039e80f', '172.105.247.100', 1668003686, '__ci_last_regenerate|i:1668003686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d72db4c52ac4df617a17731bbc456f7fb541b7d7', '172.105.247.100', 1668003686, '__ci_last_regenerate|i:1668003686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14733325bf94ffe2b6d4bd4b6095739e68adca59', '172.105.247.100', 1668003686, '__ci_last_regenerate|i:1668003686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cefbb34516ceaa310883dc6522d989f90457119d', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0488cb4eaa3e50ac3977a2553438eba2c172ac', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d5554375ffa64c44f6bed36e5c625dd8cc7c77', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47923feb050e12e96251267d95faf063bc386ac', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e72181afdc38f96eb5b2c0d478e027bf08b8ba', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e8ef1e4700784a100faa07b50c2034200eae14', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a5d6c0c40c78fc00f8ce93b416a8511e6c3af24', '172.105.247.100', 1668003687, '__ci_last_regenerate|i:1668003687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925b9c829356fcf046912727f90384b3b49bd4d5', '172.105.247.100', 1668003688, '__ci_last_regenerate|i:1668003688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde7b6e52d0adc10bd14b0034ac4b6a5d1a0bccb', '172.105.247.100', 1668003688, '__ci_last_regenerate|i:1668003688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88d304325bed78a82f2a3a51e16dedfbbd437f1', '172.105.247.100', 1668003688, '__ci_last_regenerate|i:1668003688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524245b30e743cd0d965370dfbc862f5bd04b16b', '172.105.247.100', 1668003689, '__ci_last_regenerate|i:1668003689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff60014939f42a4df3871d2d583a673ba1a81b1b', '172.105.247.100', 1668003689, '__ci_last_regenerate|i:1668003689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ba383281c2ab49885f0eccf1fd4011afe497aa', '172.105.247.100', 1668007881, '__ci_last_regenerate|i:1668007881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772d5a7f1c0d115fce2536f89900022019a708ee', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01191110cacf620bac7df46e5de298a05545468e', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bdc224e7333ed6034834258ea042d3c9db44c7d', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9666d16f2bceeccb5ecc4dc66dc325ecc6d1df3e', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b94d1734135edecd1f32d8d59b32b1cc4e10838d', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace3c0dce436acc63ca11d1e0cd2f69a8d07d7ca', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4cbfaf7a5ad0f8507c7b7ebdcfac6640bba43d', '172.105.247.100', 1668007883, '__ci_last_regenerate|i:1668007883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb9fff8b8ec95825ef7acfcc951171088021206', '172.105.247.100', 1668007884, '__ci_last_regenerate|i:1668007884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf2a159d1762ee07509bb63898a137e01526ca2', '172.105.247.100', 1668007884, '__ci_last_regenerate|i:1668007884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee62ec6ef0d7424aec133ec91d63ced7278b34a8', '172.105.247.100', 1668007884, '__ci_last_regenerate|i:1668007884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77cbd67310b9a2bb2289f192205a46665236c1d', '172.105.247.100', 1668007884, '__ci_last_regenerate|i:1668007884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e6ffccae5e23d6488010c1e71633bbe968d083', '172.105.247.100', 1668007884, '__ci_last_regenerate|i:1668007884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8adc364ba548b6854681d767e83a415c215c39b', '172.105.247.100', 1668007884, '__ci_last_regenerate|i:1668007884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38e83267d18781023624724557c36484d05ca0c', '172.105.247.100', 1668007885, '__ci_last_regenerate|i:1668007884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119ee19d047d9627d4613cb676c5e266e4005981', '172.105.247.100', 1668007885, '__ci_last_regenerate|i:1668007885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da37df0b9c28ebddcbb7ea888e69e65cb5a7aa14', '172.105.247.100', 1668012083, '__ci_last_regenerate|i:1668012083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7bba12b4fc6d15239d6c3452caea40e80d5fb39', '172.105.247.100', 1668012083, '__ci_last_regenerate|i:1668012083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381ac0add7f6544eb11e3b86703de8ad6dfc34c8', '172.105.247.100', 1668012083, '__ci_last_regenerate|i:1668012083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c47f82eab348a488c6a3a419ed8b0dbff8a5d1', '172.105.247.100', 1668012083, '__ci_last_regenerate|i:1668012083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c172a16efe9cc0e0f0b6a781c778a1a63ad94c', '172.105.247.100', 1668012083, '__ci_last_regenerate|i:1668012083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446de5685a418b5846f150e1fe134e61fe4f2723', '172.105.247.100', 1668012083, '__ci_last_regenerate|i:1668012083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f6235a3b16613047de09269e290577d299b357', '172.105.247.100', 1668012084, '__ci_last_regenerate|i:1668012084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea88002f2dd3606b123f171068140ee947dbda6', '172.105.247.100', 1668012084, '__ci_last_regenerate|i:1668012084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1979e9da1d3e9bb16b253b6b4b070c05a7d24bff', '172.105.247.100', 1668012084, '__ci_last_regenerate|i:1668012084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9620c944013ee82af848b89df7dcdcc4dfb9c8aa', '172.105.247.100', 1668012084, '__ci_last_regenerate|i:1668012084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad21febe342fbdf35465a4b27859a474719e556c', '172.105.247.100', 1668012084, '__ci_last_regenerate|i:1668012084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d52ad4041d6f947d24330dedbd13472291e162', '172.105.247.100', 1668012084, '__ci_last_regenerate|i:1668012084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb15eeab1088af9c5dc1e5ad69def44afbf64b3', '172.105.247.100', 1668012085, '__ci_last_regenerate|i:1668012085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9dade3f3aed53f1c81208f0d4fe2a7c01c5def', '172.105.247.100', 1668012085, '__ci_last_regenerate|i:1668012085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9024b422911bc9ba0aa13e97ec4f607cadc919', '172.105.247.100', 1668012085, '__ci_last_regenerate|i:1668012085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b01940160e9e195f7285a30ce92635e6208a43', '172.105.247.100', 1668012085, '__ci_last_regenerate|i:1668012085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbccb4327d071dc7a0ad9fc6be625a9ab6ee7825', '172.105.247.100', 1668016277, '__ci_last_regenerate|i:1668016277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dba52571479d972152ee3b59b56aaab9c1422a9', '172.105.247.100', 1668016277, '__ci_last_regenerate|i:1668016277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fdc0c44b8f010f1e30469de4d01b292ae88777d', '172.105.247.100', 1668016280, '__ci_last_regenerate|i:1668016280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1255be759d65c6f6c3ac398d4f4c91f1da7ff44', '172.105.247.100', 1668016280, '__ci_last_regenerate|i:1668016280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c653019668416b9569091b2f00de4e87d276cf2', '172.105.247.100', 1668016280, '__ci_last_regenerate|i:1668016280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('753b48f4615b8d5c73b64b61b668caa68ebe307d', '172.105.247.100', 1668016280, '__ci_last_regenerate|i:1668016280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7d2ee97608ab480bc91a3250a2e119ea59aff8', '172.105.247.100', 1668016280, '__ci_last_regenerate|i:1668016280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70bd655eb5514b6e43eba7fb6ee468467594acd', '172.105.247.100', 1668016280, '__ci_last_regenerate|i:1668016280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d27eb3abc5ddb79876dd54ea463fca3785bc4b7', '172.105.247.100', 1668016281, '__ci_last_regenerate|i:1668016281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae57c5650f617fa2489a2677fb506d0a580a74f', '172.105.247.100', 1668016281, '__ci_last_regenerate|i:1668016281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e959e9c017820b741cd9c65e66b030c7433eb4d3', '172.105.247.100', 1668016281, '__ci_last_regenerate|i:1668016281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5615ffe47bda0f192aa3e6e4786f167d67bb44b1', '172.105.247.100', 1668016281, '__ci_last_regenerate|i:1668016281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb170e563cfb9490767b385b9651eaa02536400', '172.105.247.100', 1668016281, '__ci_last_regenerate|i:1668016281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98842160b4a277faec7e5eac97efb696c46b18e1', '172.105.247.100', 1668016281, '__ci_last_regenerate|i:1668016281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d61992069270582587a9f1d2d91513cb5ef3b93c', '172.105.247.100', 1668016282, '__ci_last_regenerate|i:1668016281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56aefed1de80429a2a2e693807fc439b5b7343be', '172.105.247.100', 1668016282, '__ci_last_regenerate|i:1668016281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44185095a81a309e71baf7626fca641c89751d23', '172.105.247.100', 1668020483, '__ci_last_regenerate|i:1668020483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f88139ac5b8dec51b55ae4c806a7f8338a699271', '172.105.247.100', 1668020483, '__ci_last_regenerate|i:1668020483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04eb4d06b67c99634b9cf42fdc3e56cbcd1bb57d', '172.105.247.100', 1668020483, '__ci_last_regenerate|i:1668020483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dec96eb8869f9527fa03f94853d384bb83a71c3', '172.105.247.100', 1668020483, '__ci_last_regenerate|i:1668020483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8107c5b8ff9acd50c2b2daae2ac145097471df38', '172.105.247.100', 1668020484, '__ci_last_regenerate|i:1668020483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baac8515c4487c1c237d70b0e66a82f3c2c0cad6', '172.105.247.100', 1668020484, '__ci_last_regenerate|i:1668020484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42b9f5b3adff5bb196b30c4712307c9d6da81bd', '172.105.247.100', 1668020484, '__ci_last_regenerate|i:1668020484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b12fe229b9e1f2dbbb88634ef860abb7ba7c9b', '172.105.247.100', 1668020484, '__ci_last_regenerate|i:1668020484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5674d2a337face9ee08fa6a20c5236a8bbc63a0', '172.105.247.100', 1668020485, '__ci_last_regenerate|i:1668020485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2334d30f35797b24dd6169cbd89fc22e551d029', '172.105.247.100', 1668020485, '__ci_last_regenerate|i:1668020485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4936e6d8f53488e009cdcbdd708ec919b7533d98', '172.105.247.100', 1668020485, '__ci_last_regenerate|i:1668020485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b7e1cc9a480f2e141ef30ec8a182a7cf3c452e', '172.105.247.100', 1668020486, '__ci_last_regenerate|i:1668020485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3290a2e3bb5261b153c796041153363552df9550', '172.105.247.100', 1668020486, '__ci_last_regenerate|i:1668020486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e77b0df458f26661be27a363399ea4ef432ac4', '172.105.247.100', 1668020486, '__ci_last_regenerate|i:1668020486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d81fcad35df9f35f395c6e0dd773d099bdd711', '172.105.247.100', 1668020486, '__ci_last_regenerate|i:1668020486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a234d7dc8d2371b9779ca0a4d2c549e5d5a51d8', '172.105.247.100', 1668020487, '__ci_last_regenerate|i:1668020487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54ccfde4fe9c4bc5d231aa72d156a96ee6fdfd0', '162.142.125.212', 1668024480, '__ci_last_regenerate|i:1668024480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a6becf3b8d9d06cfd6847746959fc40f2accd2', '162.142.125.212', 1668024480, '__ci_last_regenerate|i:1668024480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1726070264bd08ed8e4c922d2dc8d943703aa3', '162.142.125.212', 1668024481, '__ci_last_regenerate|i:1668024481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899961db071cf0d13c0b152c147cbdc8278f9a9b', '162.142.125.212', 1668024481, '__ci_last_regenerate|i:1668024481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b00a04787243275a2989adba527efc09ad705a', '162.142.125.212', 1668024481, '__ci_last_regenerate|i:1668024481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e3587bd8d9254058621d11d909839426535a65', '162.142.125.212', 1668024481, '__ci_last_regenerate|i:1668024481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c403afc286da1791d4e77fb0cb6f4c46badf044', '172.105.247.100', 1668024685, '__ci_last_regenerate|i:1668024685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e6506024275a6f131ec958df11739659f0d33c', '172.105.247.100', 1668024685, '__ci_last_regenerate|i:1668024685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee895f4fe42dda22ff57e42e0a8804a6a6f3107', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4acf6a9c0f7948d06c22a433e90f4119ed4399', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('284fe7405e0594f03e7a70203d755bfaed90a619', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cf71c990b7e66b5b71cc619e4817cd04c4bb391', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80931cd8fb163048466cfc624d484dcf7b344638', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d127933d5c0e38162f5c0eee5631b798407150d5', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5f23600b4b2a15d2f0ae41476e63c49a1657c9', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c109aeae0377acf2edf9fe6c6bb7fcdf806244', '172.105.247.100', 1668024686, '__ci_last_regenerate|i:1668024686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf261b7bf2eabe8ced8827d647f31be04923e7b9', '172.105.247.100', 1668024687, '__ci_last_regenerate|i:1668024687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3444f4327ac7ef79dd92b8b92ef8d80175913a04', '172.105.247.100', 1668024687, '__ci_last_regenerate|i:1668024687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8474328d91886d158573020746702518962366d2', '172.105.247.100', 1668024687, '__ci_last_regenerate|i:1668024687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6622728cabedd3d189ec5f9d7337a4e522ff14e6', '172.105.247.100', 1668024687, '__ci_last_regenerate|i:1668024687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e09d10ab93a6861a27fb6a48457a03dcc0e66a', '172.105.247.100', 1668024687, '__ci_last_regenerate|i:1668024687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ecdc639ef96a3d0802f28379cb3beddfa6a83e0', '172.105.247.100', 1668024687, '__ci_last_regenerate|i:1668024687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('978a62dd114c64cb16347311da7c421a5a9dd7e5', '172.105.247.100', 1668028881, '__ci_last_regenerate|i:1668028881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f451e6eca99f731279c4179ed2484d5aac173ddc', '172.105.247.100', 1668028881, '__ci_last_regenerate|i:1668028881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddc12511f2e6ebae103cdebaf71fa21233c31b1', '172.105.247.100', 1668028881, '__ci_last_regenerate|i:1668028881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b622da1306104105c2ab5a1b7653001637ca3d', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1783998655502a5316d0d36d641349dbc217cac', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e7ad5cfc530691401f5eafbf4fe43e093e29fa', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7db4e057fffdf5cd4e9bb375d5398c231dfba90', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf38fb9ab81790200b051d40a0df55445c1e69d', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d340e425501ce0b1d7604b0bb5fcfb22d94881a', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9a98cf31697030d2ce1fe09d36cf451a8d2ad0', '172.105.247.100', 1668028882, '__ci_last_regenerate|i:1668028882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d21b7f735fc830cf3082d1fa594b2bce74ceadc', '172.105.247.100', 1668028883, '__ci_last_regenerate|i:1668028882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a9252a3d4b362a27d001fda2133eb39e68e93d', '172.105.247.100', 1668028883, '__ci_last_regenerate|i:1668028883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2088b37d42d47b4a2eef47133e15c2ec6317dd', '172.105.247.100', 1668028883, '__ci_last_regenerate|i:1668028883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebed92ec7fa9828153d3b0373f73ebf11a2678a6', '172.105.247.100', 1668028883, '__ci_last_regenerate|i:1668028883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ec53ca6951f8ce945bf192b2ca6199ce52d29e', '172.105.247.100', 1668028883, '__ci_last_regenerate|i:1668028883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b63dfec965d95cdd8414607c118447dc77e96f', '172.105.247.100', 1668028883, '__ci_last_regenerate|i:1668028883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e663f8741de29bf43f8c0f6a74d71566f9294159', '172.105.247.100', 1668033076, '__ci_last_regenerate|i:1668033076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81499e51c06d772c4dcb1a4d3e7a299aa933e622', '172.105.247.100', 1668033076, '__ci_last_regenerate|i:1668033076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbe5a1f4ae60cb0cd311ecce1bba5e39f8539e9', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73079ceb58ec6647e7fc2fa59036e674141eb5c4', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f042fd77cd44d2443e822dc09e5274fc4e96a4', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e5d7b244e9df5f680c4c73dbd1ffcd2b213d0b', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73a89feddf66882e1367543608a8f93178f380b', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0148787fff3433af488bd5c04837e5acc2d1a9d', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00b96306af9645c80fcee4c8dbaa3231e8fa5d0', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5eefbf6a8ad8fa5a811282032d38147a3e9bd7', '172.105.247.100', 1668033077, '__ci_last_regenerate|i:1668033077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae4d12476eda6e0678b2111adc41f509a3acb80', '172.105.247.100', 1668033078, '__ci_last_regenerate|i:1668033078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0993bd20c1fe11615609d20614de334322ea0419', '172.105.247.100', 1668033078, '__ci_last_regenerate|i:1668033078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('801de9a627cfe47fba0537783fedafbadc189a1e', '172.105.247.100', 1668033078, '__ci_last_regenerate|i:1668033078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ff6e3ed32c05cbbc8991df43dec6db6a5560a8', '172.105.247.100', 1668033078, '__ci_last_regenerate|i:1668033078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595b6126a483f1330ef2c418fb45bae012ac250c', '172.105.247.100', 1668033078, '__ci_last_regenerate|i:1668033078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3d748b63022c0a08c6d957ba20bab272c9796b', '172.105.247.100', 1668033078, '__ci_last_regenerate|i:1668033078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fcfe493ee2ef521436fcdf848ca02549403dadf', '172.105.247.100', 1668037287, '__ci_last_regenerate|i:1668037287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6577bc3c05f88924380f95ef5e35ea176d336b3c', '172.105.247.100', 1668037287, '__ci_last_regenerate|i:1668037287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f74753c1733437f4d229de17738e91f5374546', '172.105.247.100', 1668037287, '__ci_last_regenerate|i:1668037287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f7cebad99ce232a62cfd7060ffd742659d89f5a', '172.105.247.100', 1668037287, '__ci_last_regenerate|i:1668037287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df8fd657ce71d13e5143abb6d3173c50b5a9a2e', '172.105.247.100', 1668037287, '__ci_last_regenerate|i:1668037287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84ceb069ee2de367fead20a0f72911548ecf378', '172.105.247.100', 1668037287, '__ci_last_regenerate|i:1668037287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd51a80ff6ae25b359615efe7b8bb2c062c31f8', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e00c0cf499812f36248f3da8a0427889ab6b4f', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446ec145543c3cd21a876797617171913dc460cd', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16239224307a4de4f011549e973c3e6a8ff14a8e', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3e5d143ad3c9c7572a42ce67e892c04ff50fd9', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193c6f259c4fb9d553e33bc0832c1018e2de385c', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3f28e58f5e31c86e0a2e0fdc9885a8e6b48013', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088307318d489ea7ec747dbb995467021b5336b7', '172.105.247.100', 1668037288, '__ci_last_regenerate|i:1668037288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('216f700430f79fb0e090bf83555b480e5eb5ccce', '172.105.247.100', 1668037289, '__ci_last_regenerate|i:1668037289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be903f29213a29a951b0138e5e4daf846d6f536f', '172.105.247.100', 1668037289, '__ci_last_regenerate|i:1668037289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d668dd5fd816637eeae6e0e7dc7249a96df722', '172.105.247.100', 1668041480, '__ci_last_regenerate|i:1668041480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2eea73698eee96b23fbe333f5d563046941b91', '172.105.247.100', 1668041480, '__ci_last_regenerate|i:1668041480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5a150610e5eab952212f5dbf670baedc83f86b', '172.105.247.100', 1668041481, '__ci_last_regenerate|i:1668041481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1883d2494d7ffcaac9f9531af18b1ebced7396', '172.105.247.100', 1668041481, '__ci_last_regenerate|i:1668041481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c046b3be8eefffda9d27241de1598e5c58fa1f87', '172.105.247.100', 1668041481, '__ci_last_regenerate|i:1668041481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29821b17f796441ef2019bad161409191479dc0c', '172.105.247.100', 1668041481, '__ci_last_regenerate|i:1668041481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e464f86025840ecb44b71e26796b2ad34f6964ff', '172.105.247.100', 1668041482, '__ci_last_regenerate|i:1668041482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('609e3a73b698ece6edaaeb05e954dd29eac91fd1', '172.105.247.100', 1668041482, '__ci_last_regenerate|i:1668041482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877da4e118239f5531bc73cfdd12a9214b42107b', '172.105.247.100', 1668041482, '__ci_last_regenerate|i:1668041482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f20905e44525b818022fa344a493d27aa752fd', '172.105.247.100', 1668041483, '__ci_last_regenerate|i:1668041482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c14bd3d3e50cae88e4721a72511c51ddc529975', '172.105.247.100', 1668041483, '__ci_last_regenerate|i:1668041483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4309e0d667454fd910c3bf8e97860eeacef23d4', '172.105.247.100', 1668041483, '__ci_last_regenerate|i:1668041483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('019c8ed5e8fc8b9c85b0d1305894ebf87836274c', '172.105.247.100', 1668041483, '__ci_last_regenerate|i:1668041483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7118546b7fb7f3c1cefe795b72a6cbcfddabe614', '172.105.247.100', 1668041484, '__ci_last_regenerate|i:1668041484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a9c039ee08f564f7e0c1b158f566c4cdc34cf7', '172.105.247.100', 1668041484, '__ci_last_regenerate|i:1668041484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e67d1666b779c6a167845b9e836dc058a3bd39', '172.105.247.100', 1668041484, '__ci_last_regenerate|i:1668041484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebacd2f2855a546c1ee7bdb5146c79bad6e7c2c2', '172.105.247.100', 1668045684, '__ci_last_regenerate|i:1668045684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34d55a1b92f2f7e54f3d8b3c87eda2737b275b9', '172.105.247.100', 1668045684, '__ci_last_regenerate|i:1668045684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b17f9c4f8f992156ceb122d18d0fba4f19f411c1', '172.105.247.100', 1668045684, '__ci_last_regenerate|i:1668045684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18fa689de8a3fa1ee16183a7ff45cd415f797b39', '172.105.247.100', 1668045684, '__ci_last_regenerate|i:1668045684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668b9008e38be7bc7fed0238f26ac6c471e3cae7', '172.105.247.100', 1668045685, '__ci_last_regenerate|i:1668045685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df13482f8b970b80c2ddd6c1edb97c6fb897aa5', '172.105.247.100', 1668045685, '__ci_last_regenerate|i:1668045685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5377a08feb785817f9998a173e122db5d7535ddb', '172.105.247.100', 1668045685, '__ci_last_regenerate|i:1668045685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17bcf8a8a28a37a71c7136c6dbcf95c3aaae02d', '172.105.247.100', 1668045685, '__ci_last_regenerate|i:1668045685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb87ef625be0b6aed23a2826ea574cd911a16a4', '172.105.247.100', 1668045686, '__ci_last_regenerate|i:1668045685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d70c40adc4fac75689c20503e8e39b70e03fce8', '172.105.247.100', 1668045686, '__ci_last_regenerate|i:1668045685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d7ddc5f8eb7eee63203bc3317b8c011f16ac29a', '172.105.247.100', 1668045686, '__ci_last_regenerate|i:1668045686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675b9fc2b3580fe1139fe767fdcc92da3bca2c42', '172.105.247.100', 1668045686, '__ci_last_regenerate|i:1668045686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec493b227f89fc92e95c21be10462cc564398b8c', '172.105.247.100', 1668045686, '__ci_last_regenerate|i:1668045686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83be75b17fb506dd5929149a001400c96afac6fe', '172.105.247.100', 1668045687, '__ci_last_regenerate|i:1668045687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c33b52c7b398632f74f2ac7621db8c71551f5f4b', '172.105.247.100', 1668045687, '__ci_last_regenerate|i:1668045687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c76364794e575423ee317385d7a94b847fe0f05', '172.105.247.100', 1668045687, '__ci_last_regenerate|i:1668045687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde7184f7cb15de89a4cbadc91c6c80936202012', '172.105.247.100', 1668049879, '__ci_last_regenerate|i:1668049879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f66771e116839d8554154cc980792e6c34bea63', '172.105.247.100', 1668049879, '__ci_last_regenerate|i:1668049879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93bcbe9d4151dc28c5cf43950674ec8aadfbd7a2', '172.105.247.100', 1668049879, '__ci_last_regenerate|i:1668049879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d7a822248f737bb645192f05e1daa62fd8e556', '172.105.247.100', 1668049879, '__ci_last_regenerate|i:1668049879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d2abdfd69d7542fca16322a363e22a0f038e31b', '172.105.247.100', 1668049879, '__ci_last_regenerate|i:1668049879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d2e9c0d4e06b017561e14fe963a161855abb31', '172.105.247.100', 1668049879, '__ci_last_regenerate|i:1668049879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bed7cbc579cb4b6a85061e1f0de59739eeac4e2', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e927199935e6de3f46293547620db298e177ac', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a425cc13369c29ed3f480ccc4f28ca7e7fa1f692', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85c910307fe79928b13810b4c52e82144a9e1cd', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4843ce4567c8b700043594a93c2c867657508f', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3acf345bb8105bbd8cf81dca72c8eb534e85761c', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32194a8d324fac10111063cc8921fdf63c143561', '172.105.247.100', 1668049880, '__ci_last_regenerate|i:1668049880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4392eb702193a4ec4e7ed836646acaf73ef003e8', '172.105.247.100', 1668049881, '__ci_last_regenerate|i:1668049881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d92a0af86acc6e11f322c7fc7803d56c771a01', '172.105.247.100', 1668049881, '__ci_last_regenerate|i:1668049881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('613b7b1ef7c7267ad4fb81aed61e1acfd6ec6d2c', '172.105.247.100', 1668049881, '__ci_last_regenerate|i:1668049881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca23a1717452164d4dec6e731a8d5fb483c58a6', '45.120.39.90', 1668060199, '__ci_last_regenerate|i:1668060199;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668060193;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f882a747c1fb27ae31de933fa33a600f85320716', '172.105.247.100', 1668054076, '__ci_last_regenerate|i:1668054076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c64555a08ff19705a8df119a9cd301e4ad5c85', '172.105.247.100', 1668054076, '__ci_last_regenerate|i:1668054076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37918bf020d870fece1cd0b20d00e163b6c83262', '172.105.247.100', 1668054076, '__ci_last_regenerate|i:1668054076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a041250c94565b6f7c3baeeb944c9ad7f2e2767', '172.105.247.100', 1668054077, '__ci_last_regenerate|i:1668054077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e8be29b63ab8f01277c823c4320503e123d7d7', '172.105.247.100', 1668054077, '__ci_last_regenerate|i:1668054077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3beabe27c0699113bed74e0ff8317f7c5be0c17b', '172.105.247.100', 1668054077, '__ci_last_regenerate|i:1668054077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da182acc0706d47eda7b8465e5ef435307ac207', '172.105.247.100', 1668054078, '__ci_last_regenerate|i:1668054078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb9917e72286d1c55c27dfd08e9c573df075bac', '172.105.247.100', 1668054078, '__ci_last_regenerate|i:1668054078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a3acca89fb52a4b9dd8e65702900951bfe30f5', '172.105.247.100', 1668054078, '__ci_last_regenerate|i:1668054078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad29a522e749ea051c22821c2aaba4bb941b3777', '172.105.247.100', 1668054079, '__ci_last_regenerate|i:1668054079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea84bc5a48499823bc96e8b993d6d891e86ec8e', '172.105.247.100', 1668054079, '__ci_last_regenerate|i:1668054079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2df3c2f724514865c871741c6ddfcce7f5d4c6', '172.105.247.100', 1668054079, '__ci_last_regenerate|i:1668054079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6ab90c9ecfd89d992a3f45d537d720cb479c16', '172.105.247.100', 1668054079, '__ci_last_regenerate|i:1668054079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f5259da5bd43f171efef39eb01276ace71d3fc', '172.105.247.100', 1668054080, '__ci_last_regenerate|i:1668054080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03557fce661a04993392cb8e87af5d9c56a1957f', '172.105.247.100', 1668054080, '__ci_last_regenerate|i:1668054080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c068f390412f38f20fc2eb9016747a984cf8c81', '172.105.247.100', 1668054080, '__ci_last_regenerate|i:1668054080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd98d2f277e9f8327fee712eebd98ec3ac82075', '172.105.247.100', 1668058284, '__ci_last_regenerate|i:1668058284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be7bcd3117377153721f352b7a8a6e62bde4f8a', '172.105.247.100', 1668058285, '__ci_last_regenerate|i:1668058285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33107619d97fb4374afc76d3d902f7f09377da7', '172.105.247.100', 1668058287, '__ci_last_regenerate|i:1668058287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ffd41c3e14691bd2a2c393a9f4b672cf5f0e054', '172.105.247.100', 1668058287, '__ci_last_regenerate|i:1668058287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361b9883de80f4e68eae6f5571ccd0b7c359812e', '172.105.247.100', 1668058287, '__ci_last_regenerate|i:1668058287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899411ce6d5b52b41a4cdd92687bb968c4997bf6', '172.105.247.100', 1668058287, '__ci_last_regenerate|i:1668058287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2f70035cb5f5b6e41a76591c809fe40b05be8a', '172.105.247.100', 1668058288, '__ci_last_regenerate|i:1668058288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('535072fa5fa08d9841d06050a6d87efe35c71b57', '172.105.247.100', 1668058288, '__ci_last_regenerate|i:1668058288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fac9591572cb8ce3bed18f461d19f16372538a5', '172.105.247.100', 1668058288, '__ci_last_regenerate|i:1668058288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7092d55ddd0c03d4ab373aabd670632de21f8bbe', '172.105.247.100', 1668058288, '__ci_last_regenerate|i:1668058288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0f0cafeaa55c4db35f843a24c7f0dde0eb6fbab', '172.105.247.100', 1668058288, '__ci_last_regenerate|i:1668058288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf0a76919be169aa8f7411a47c7438462636a0b6', '172.105.247.100', 1668058288, '__ci_last_regenerate|i:1668058288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2023cb5e477ec389d3dbfda7d2033c236a7864', '172.105.247.100', 1668058289, '__ci_last_regenerate|i:1668058289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ed41d5fd40c76bbf8d1b2133a1896441b89ebc', '172.105.247.100', 1668058289, '__ci_last_regenerate|i:1668058289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa119040e04f53e84f80bb7c56ec9a88638aea79', '172.105.247.100', 1668058289, '__ci_last_regenerate|i:1668058289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fbf816badfafafbb78a299e7a467931787eb3e', '172.105.247.100', 1668058289, '__ci_last_regenerate|i:1668058289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce322775e60746be2406fa15e1053d86e1799dc6', '45.120.39.90', 1668066294, '__ci_last_regenerate|i:1668066294;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668060199;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cb63823081502ad0adcab7644a772305f2eb57', '172.105.247.100', 1668062477, '__ci_last_regenerate|i:1668062477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1dae23b6e43223e9605db859d891b7b563eae2a', '172.105.247.100', 1668062477, '__ci_last_regenerate|i:1668062477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03206a2df50aa4cae72b369490487105546d85dd', '172.105.247.100', 1668062478, '__ci_last_regenerate|i:1668062478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e888e69b1b125a98ac6439d16dbcb560d1625e9', '172.105.247.100', 1668062478, '__ci_last_regenerate|i:1668062478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10e36da78927714c10b379868731c4e86c1c80c', '172.105.247.100', 1668062478, '__ci_last_regenerate|i:1668062478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff04cd73bff62d717a7a5b15ce948c89f378ad0e', '172.105.247.100', 1668062478, '__ci_last_regenerate|i:1668062478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b3050238026f375b26077945e5849451a5a179', '172.105.247.100', 1668062478, '__ci_last_regenerate|i:1668062478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826343ae484c26b0d93597e24fd2fc3d1aaa8349', '172.105.247.100', 1668062478, '__ci_last_regenerate|i:1668062478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aad73b84af8cce1add81bc6fe9af27f4f5f3034', '172.105.247.100', 1668062479, '__ci_last_regenerate|i:1668062479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c60a3cd2b739c4a81c3ce72f2ebe03890daf1c', '172.105.247.100', 1668062479, '__ci_last_regenerate|i:1668062479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8521475883606f9a44b76abd53c25a4e302d06fd', '172.105.247.100', 1668062479, '__ci_last_regenerate|i:1668062479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6a579b6bdd86f781b9bf4f0aaa6301f09bb64c', '172.105.247.100', 1668062479, '__ci_last_regenerate|i:1668062479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1c1e2c09c44d2f770ea85ba286b362e4a21bff', '172.105.247.100', 1668062479, '__ci_last_regenerate|i:1668062479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc2d388613f9d372686b47db09acb4f67604c03', '172.105.247.100', 1668062479, '__ci_last_regenerate|i:1668062479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b16faed9ac2d3b74bccfbb04106867eba00876b', '172.105.247.100', 1668062480, '__ci_last_regenerate|i:1668062480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962a9e8225540dc241dc446cd80519a7820d96b5', '172.105.247.100', 1668062480, '__ci_last_regenerate|i:1668062480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6674f6176a1f46657f0b9fca2fcba5c08374599', '45.120.39.90', 1668069646, '__ci_last_regenerate|i:1668069646;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668066315;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317ec9c5bac6b3a0b752b5936d82c9a9072dbef3', '172.105.247.100', 1668066684, '__ci_last_regenerate|i:1668066684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78db031e1475089c8eb1d452c924139951f4f842', '172.105.247.100', 1668066684, '__ci_last_regenerate|i:1668066684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e59d8afa56bf4d1085dc77cce3c0b19cbaadbc41', '172.105.247.100', 1668066684, '__ci_last_regenerate|i:1668066684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b0054727a750ff73434e75f6510c73d2cae56e', '172.105.247.100', 1668066685, '__ci_last_regenerate|i:1668066685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3c7fa4e8ee5fc7a5e9b34e26a0e3e639bbfc8e', '172.105.247.100', 1668066685, '__ci_last_regenerate|i:1668066685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c0471edfd0de7970d0c29214600691763a6d4d', '172.105.247.100', 1668066685, '__ci_last_regenerate|i:1668066685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3745d97329ba616f73886e75501f1346fc730acb', '172.105.247.100', 1668066686, '__ci_last_regenerate|i:1668066686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77df702f95ba894a6db2ddb96805acf0a01574fc', '172.105.247.100', 1668066686, '__ci_last_regenerate|i:1668066686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a79389144f1851d0aa7a9467bc9464a85c2a16', '172.105.247.100', 1668066687, '__ci_last_regenerate|i:1668066687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779f4a26aefcb6107169111ca81e3324cf205f0a', '172.105.247.100', 1668066687, '__ci_last_regenerate|i:1668066687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9489fcfdefe7336385938309280d8f5d0bf8184', '172.105.247.100', 1668066687, '__ci_last_regenerate|i:1668066687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b3993451fff01b097857ccec2f6ef242948902', '172.105.247.100', 1668066687, '__ci_last_regenerate|i:1668066687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058b4e9144f665dd1ad8b97d4a8e0f79df3834c5', '172.105.247.100', 1668066688, '__ci_last_regenerate|i:1668066688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e29ff9273ba891971729754a78010e756b36113', '172.105.247.100', 1668066688, '__ci_last_regenerate|i:1668066688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432edeb8ebdb8e246c1a52647ba7fbe08a2ba080', '172.105.247.100', 1668066688, '__ci_last_regenerate|i:1668066688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c86d08192a71b0ca064d4c3e05a34b3a76e312', '172.105.247.100', 1668066688, '__ci_last_regenerate|i:1668066688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('211869c45301bc1088918ec8277009b4c1b972ae', '45.120.39.90', 1668072308, '__ci_last_regenerate|i:1668072308;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668069671;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3576359df7cf36ee8aff41f6ad96c19bb78d4c3', '172.105.247.100', 1668070884, '__ci_last_regenerate|i:1668070884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26433b86fe188d7b31ee38afaf68c6ac1cfaf065', '172.105.247.100', 1668070884, '__ci_last_regenerate|i:1668070884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e5b853afb4370c528bec0eb6866adafad75105', '172.105.247.100', 1668070885, '__ci_last_regenerate|i:1668070885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f54d83f4bb4a3b310352bb402ab064a2dd3379f', '172.105.247.100', 1668070885, '__ci_last_regenerate|i:1668070885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01169a5d7c34166061c2ca6ea6aa280119a444c5', '172.105.247.100', 1668070885, '__ci_last_regenerate|i:1668070885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e26bc6b021f485e9f46b3c21d6e817d4abd52f', '172.105.247.100', 1668070885, '__ci_last_regenerate|i:1668070885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af37c669feebafd9c1544d56751d8ffeb96e4ff', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e506cab2e9c67d30cfdefb79a32aee8aef01786', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb7a8c194fbe124fd377974834b03fa40c350a72', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0719bb0a44414747098df28598c27b4e892b5e58', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94601edb6c44b5c948f6a430685047713f2f44eb', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcefe9301bc91df1f056392e511107d753a4306e', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61cf89cd28d8e7bef205fd385d7b66c0ac1b0cf4', '172.105.247.100', 1668070886, '__ci_last_regenerate|i:1668070886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce538426a925f6103abedcb368ae352e39dca9c', '172.105.247.100', 1668070887, '__ci_last_regenerate|i:1668070886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747098ac8731974edfe6568b06369471210d5924', '172.105.247.100', 1668070887, '__ci_last_regenerate|i:1668070887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04911a70fad62ad147b7d2081f8a522978034ba', '172.105.247.100', 1668070887, '__ci_last_regenerate|i:1668070887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7192ec68cefa2a6b7dd8d4f984d983d3f19c83', '45.120.39.90', 1668076271, '__ci_last_regenerate|i:1668076271;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668072308;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26e99ac5dc7838c39c7aaa1fc72fdad1a855a978', '172.105.247.100', 1668075082, '__ci_last_regenerate|i:1668075082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10af6565f684857b2c7ca921057fcfa5644b78e9', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55de5a8fbc690c69a5aad3a27a0bbf148de8291', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd50bbd2625fb262e0e42ee8e825f62a3132b50', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b328fff69d6ecbd00cdcc02eed8d3086cd75a042', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1fa62cdb7cf7bded7ed6a68021e4facb4051898', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835036b6a46569f30c97c521ca020373b7212e21', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0190240d47f62e5bfc78d8cf22555804aed74dc8', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86238013441112a02bfc35f3659439fe85fea25c', '172.105.247.100', 1668075083, '__ci_last_regenerate|i:1668075083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c051ac226853b59de9819264211976ee785adf8', '172.105.247.100', 1668075084, '__ci_last_regenerate|i:1668075084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da9e2bb0ffdc7e0fd75e05ae1d4846b10826200', '172.105.247.100', 1668075084, '__ci_last_regenerate|i:1668075084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1665a69db511615145d1f2084de10c2201cbf416', '172.105.247.100', 1668075084, '__ci_last_regenerate|i:1668075084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61aeae606f5a99437837bd17d86428af9862dd35', '172.105.247.100', 1668075084, '__ci_last_regenerate|i:1668075084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1732602d20f4f3920acd905a0a99bd649bf19fe', '172.105.247.100', 1668075084, '__ci_last_regenerate|i:1668075084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dccea67dd11deaf0e6a859b22ddb1680b513c84', '172.105.247.100', 1668075084, '__ci_last_regenerate|i:1668075084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc5d2df24a54a8eda0bbaf9330f208607e77e6f', '172.105.247.100', 1668075085, '__ci_last_regenerate|i:1668075084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682735acdfcaeb80f4c2b97c256165d9997900db', '45.120.39.90', 1668076606, '__ci_last_regenerate|i:1668076606;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668076590;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09056d6e06f0802e83716092d3bfecad34f4c2ca', '45.120.39.90', 1668078775, '__ci_last_regenerate|i:1668078775;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668076673;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03611375985a4407102a4be3e1277af08cee59b2', '45.120.39.90', 1668079183, '__ci_last_regenerate|i:1668079183;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668078821;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5a8b9d692d25a4c8caa7eeb752a7837db0aa66', '45.120.39.90', 1668081442, '__ci_last_regenerate|i:1668081442;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668081435;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394c86aa311d277110d794c2d0279112ddc5f841', '172.105.247.100', 1668079277, '__ci_last_regenerate|i:1668079277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e6e405438f23c8a35a21ce902a4efc5e0fded1', '172.105.247.100', 1668079277, '__ci_last_regenerate|i:1668079277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7242fa7c49b94dd5573365b3376ee301a6692ab3', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50873d76db586c59b1694c6327e72f6ec6b59c15', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e803dc700f7646056bb4a578018f0341c3b3163b', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d527c799581c8167e99c53fae150e0e7fd2c7997', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c37881fdf46de86d019f0a93fbc7b72af57c65a0', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b00a3d8dcd6a40324e5b03b53c2083459a3b7c6', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d5b1a61b8ad92f5fdd688222def73fc4c2b831', '172.105.247.100', 1668079278, '__ci_last_regenerate|i:1668079278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3d690f7de8cee0a1ce01f6f085d94d4749d35b', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79427e6455369a56fa0c52e4a56a31d65dfdbbeb', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a24289f4737b6f76e822dd996d4aff37e20621', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e00274601b60778e45f274a73ee10f488c9deb', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dffde97e8d56493329e54708101f5375033f56', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c82175bce733ccf262b1508827b25b3ae944b11', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd95983595f176c7e86c949bfb2cb70748308ac', '172.105.247.100', 1668079279, '__ci_last_regenerate|i:1668079279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f606513991dc45d801a604452c419b30113eae0', '45.120.39.90', 1668086106, '__ci_last_regenerate|i:1668086106;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668081456;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428a193c540d13fb413feaa66425b00ff36dabf9', '172.105.247.100', 1668083480, '__ci_last_regenerate|i:1668083480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ccd905d0c20bcd31df59a8f154d2ed2d7b34088', '172.105.247.100', 1668083481, '__ci_last_regenerate|i:1668083481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b48b3efd5618c4b28ed7a58bc5a9985333e83cc', '172.105.247.100', 1668083483, '__ci_last_regenerate|i:1668083483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438fb283559a737326dfef7e553915551844322b', '172.105.247.100', 1668083483, '__ci_last_regenerate|i:1668083483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317bc72f2ab87aad257b09a2ba06adc2f7356067', '172.105.247.100', 1668083483, '__ci_last_regenerate|i:1668083483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c82fddcf77a2b080f6452c525b271ddfb30d11d', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4952634c9a68889888c840a607cf8373b63634', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7778fd6eb474636229a8a4e21b1704eb7683b3c0', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf4e5981c4bfac1cfce9bb5c173a4ead680bbbc6', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f0f6d126a8af65f154f18ee81d4f36d7b01f02', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1422f4d831cc14568916f01d27c692e51fa2e492', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33d6bb142a172adbb2dff4da334e1025d205e5f', '172.105.247.100', 1668083484, '__ci_last_regenerate|i:1668083484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ce2b9adc8c94dd6e4385f8e60ae764754276be', '172.105.247.100', 1668083485, '__ci_last_regenerate|i:1668083485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa5a12f5cbe4e21468190b234d552a449d1e8f6', '172.105.247.100', 1668083485, '__ci_last_regenerate|i:1668083485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661a9f8cde39f7055be009b00f191544373d384a', '172.105.247.100', 1668083485, '__ci_last_regenerate|i:1668083485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d288ad78415df6197ddafbe5d76609bbf18433bf', '172.105.247.100', 1668083485, '__ci_last_regenerate|i:1668083485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6724334682d34c85862282ff2761a2be990fbe0', '45.120.39.90', 1668086409, '__ci_last_regenerate|i:1668086409;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668086253;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf3cafd5cca1b332cfae27c3bb7660982ac2519', '45.120.39.90', 1668090360, '__ci_last_regenerate|i:1668090360;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668090352;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c8c58335bb011005f34d621af8c0430a459a7e', '172.105.247.100', 1668087682, '__ci_last_regenerate|i:1668087682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('633aa235a6a606d439b1cb2ccad8356a0c004da3', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4610052691b3c5d0fbf53cb29f444336831446af', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312c938eb77d3877e724e8a04248c27043254005', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af06465e467a8807dd1736314fe0fbbe77925c6d', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a8851abc9e4afbbf7164eb7a43843467415add', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6d3b439e765618800a6acd5fc5a1e6ac5fbbdf', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7332207122264f4e5281982c6fa3e888d1b865a0', '172.105.247.100', 1668087683, '__ci_last_regenerate|i:1668087683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ad5dee07fe005338b373ac1dc4692d2717ce9f', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c0c318dcc94afd055f532c2117351f3442f856', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f70d8f2a03473dd9fc4316c11ce365b3ea36b7', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0313c3ea29c7fccdd0a573d6662cc02b0d8eda1f', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f402458318dc5e6165cc703f999f5ff0e21638', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29572ca6abba8c6c78a5595ac225dc56f1c97c88', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c32fc0fe3c251a3a27dabea80e1eee6a5b97788', '172.105.247.100', 1668087684, '__ci_last_regenerate|i:1668087684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900eccd326ff39f06ff7e4f0731543a39caac658', '172.105.247.100', 1668087685, '__ci_last_regenerate|i:1668087685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6cc5006bfcc99e2ea0ff9b14a21af0b57cb7cb', '45.120.39.90', 1668090810, '__ci_last_regenerate|i:1668090810;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668090360;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927ae5384d9709857cbf08ff4cb9f1ffb941af55', '45.120.39.90', 1668092268, '__ci_last_regenerate|i:1668092268;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668092257;register_id|s:3:\"244\";cash_in_hand|s:9:\"5180.0000\";register_open_time|s:19:\"2022-11-09 20:08:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d43bb3cedc670a342c46199e37013429eb9e896', '172.105.247.100', 1668091883, '__ci_last_regenerate|i:1668091883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae7057a4b89ab268be529ab4129b3911f9cb782', '172.105.247.100', 1668091883, '__ci_last_regenerate|i:1668091883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9014aa2a0cb0aa44732cc76aae26533416162209', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1926e566e0dfc847fbbc8c79eb83982bb71b159', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54f784fc4a6ad2f0dcedcb81a7fa3e86158691e', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e3537cfaa9a1a3bfe4da8ab00548a0e936a6b4d', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dfc0454f24d40d1ce06b4438e92ebbefb12d2ff', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d060da4cd0bdc62a904cf1c880c0e7d23c4f4b6', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515ed22eb4dd0ead4c7c24e578e387ac460155b6', '172.105.247.100', 1668091886, '__ci_last_regenerate|i:1668091886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93b386f78c1e5889ca8c374faacaff7b6cacdb1', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04748ca476ae4e590f103ae271ae470abe79d9c5', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8674e1c3499dfeae577f7c3b5a9d329fd791a91a', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d017c49bc1c59fa81490f0de5cbb18cfc8b21391', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55866c75f89051974b99dd23c714403b2fca3fa', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539b2e8adc244d704f85ad65f2566896c05c2502', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c512cfd7ae9887744f18b7c47c8a16c0d2dca165', '172.105.247.100', 1668091887, '__ci_last_regenerate|i:1668091887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b1b6f882fdac1329a4aec8d9db759746037aa8', '45.120.39.90', 1668092291, '__ci_last_regenerate|i:1668092268;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1667987530\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668092291;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f57921f396e1c2b5330c179a9df244535803b53', '172.105.247.100', 1668096083, '__ci_last_regenerate|i:1668096083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e70e547a9f06db1b35a57af6ae24845ae4abd0', '172.105.247.100', 1668096083, '__ci_last_regenerate|i:1668096083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd37bfe857e9c2d8f79f54973a57a74d043d30c0', '172.105.247.100', 1668096083, '__ci_last_regenerate|i:1668096083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df47e88a304d118738bdf2b054344365c17ceada', '172.105.247.100', 1668096083, '__ci_last_regenerate|i:1668096083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805d6873214a0f32440ad0e3e1e41ac9203a089d', '172.105.247.100', 1668096083, '__ci_last_regenerate|i:1668096083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a02a9a7d674b2ccea83475a8c6fed6abcd8bf8c', '172.105.247.100', 1668096083, '__ci_last_regenerate|i:1668096083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3256ec07ac1d8e8590aa812f6f77b51b2458d55', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1c584edb195d4ddd1c3ac673f04ca9b0591228', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2775e6d68daa65bdd77900b74ef2cb9f2966c1e1', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb661ba12f759a6710fcc9623e50079c56a6cf48', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba37a52fa27eb9bc09a799cba28b01b990ad367', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ebe157b9c476f5ba95feaf4e2b11092a927c1d', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e21c697dd221b3eb7f0415193cd0b5d6a285cb', '172.105.247.100', 1668096084, '__ci_last_regenerate|i:1668096084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba4a3c8ffe18fd5935772a768b931cdae80931a', '172.105.247.100', 1668096085, '__ci_last_regenerate|i:1668096085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d231387516dfdc8c51d0327478e957f2279b24e7', '172.105.247.100', 1668096085, '__ci_last_regenerate|i:1668096085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5314b2349fc0a5333e04dc728ee3cc310a404c91', '172.105.247.100', 1668096085, '__ci_last_regenerate|i:1668096085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9abbabe4d43f1d047d0816f76988326cbb5a148', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07737a3832c0d5218428c762e6fe2c5aad15a937', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679be8e58dfa8b976aace2554ded1b8e4e425858', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d22d9a30e0517c79b234cf24a25c01bcbbe243', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564320e93f6e23a1b0a48b1b829730914899e975', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5fb007e5029b057b13666f463e78dbb95b4fb4', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e56ec59c9bce7bed57e22d740840f3568771996', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2826881401f0c622c89cb7cb72361d687f50bf40', '172.105.247.100', 1668100289, '__ci_last_regenerate|i:1668100289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae123cb845085df274f19212814fbed2a6306d85', '172.105.247.100', 1668100290, '__ci_last_regenerate|i:1668100290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ec9255e892c6075910b6489a7aee4cdcddfbe2', '172.105.247.100', 1668100290, '__ci_last_regenerate|i:1668100290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa59a9320816873cd16c92eb35f19750dec4d02', '172.105.247.100', 1668100290, '__ci_last_regenerate|i:1668100290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e04e1ddd4fbf3635b50159cb985bad7c6c5831', '172.105.247.100', 1668100290, '__ci_last_regenerate|i:1668100290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c4f0f7ca8cdf88037ee68dce2ca9b3cdb8d869d', '172.105.247.100', 1668100290, '__ci_last_regenerate|i:1668100290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f57f629edfa18e4fed08f2eb0fb3f5c79cfade', '172.105.247.100', 1668100290, '__ci_last_regenerate|i:1668100290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490d846564a0725507c2a98ccfb1498c0ac61f00', '172.105.247.100', 1668100291, '__ci_last_regenerate|i:1668100290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f62aa1d81fd9f21999270d8ced0012f381e5ab7', '172.105.247.100', 1668100291, '__ci_last_regenerate|i:1668100290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906efdb162b1d840da2ced0b2fbf258fa1fe2a3e', '172.105.247.100', 1668104479, '__ci_last_regenerate|i:1668104479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ea8ed837ce4cb50d50d6da84d0761ad8f858ea', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b707093f8a371621be0921c10d8484ded6f44d8', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfdf0c9cef86a352979f94fd5b6907601bcd1000', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0c4528ab3d6a5813044e04a20a56bd7175fe97', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb7e817ff1f534b8cc6e0e7dc8e40e9b91de4a9', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed461de4c02c378de344826ad8fefa4feb1df314', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7353ab6490136c7ba3523c94b4c8947043bdff2', '172.105.247.100', 1668104482, '__ci_last_regenerate|i:1668104482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7830e99c8019b25957bb4568351d34d4fd39b4', '172.105.247.100', 1668104483, '__ci_last_regenerate|i:1668104483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc02e4a89a92cef67a94eadd8794ffc0f0ed847', '172.105.247.100', 1668104483, '__ci_last_regenerate|i:1668104483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f545a9b9b0e56463418f1e24765c396cfe9e8717', '172.105.247.100', 1668104483, '__ci_last_regenerate|i:1668104483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60812dd43836ba31305c45f65a66a77a05b833a', '172.105.247.100', 1668104483, '__ci_last_regenerate|i:1668104483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb739ba01c70957f837d4852c6cd1e3b77445a1f', '172.105.247.100', 1668104483, '__ci_last_regenerate|i:1668104483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af45d2c38b49dbe9e621471e9df270a59a109b5d', '172.105.247.100', 1668104483, '__ci_last_regenerate|i:1668104483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cfbaa929cd13f5351c8e129c6b30385c1b2f392', '172.105.247.100', 1668104484, '__ci_last_regenerate|i:1668104483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c4e662cf730bc1c02ccd44eea696daad44a7ca', '172.105.247.100', 1668104484, '__ci_last_regenerate|i:1668104483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e450108f7bab7c26a6777a7a2e64e4b88059c10d', '172.105.247.100', 1668108683, '__ci_last_regenerate|i:1668108683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86709e1ab3b41219cca3a4a2151e82be48f7201', '172.105.247.100', 1668108683, '__ci_last_regenerate|i:1668108683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3f295dfa70e02544c38f7b10fa19dc785b8945', '172.105.247.100', 1668108683, '__ci_last_regenerate|i:1668108683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291f920830314ace7805d1eabbbf84a02f414bf2', '172.105.247.100', 1668108683, '__ci_last_regenerate|i:1668108683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df29598d1ff7400a2fe846eb69b2b79bf712769', '172.105.247.100', 1668108683, '__ci_last_regenerate|i:1668108683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d10281cdb37042e66a63e57c2c5e420dbe8e6ef', '172.105.247.100', 1668108684, '__ci_last_regenerate|i:1668108684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd8916aa5b96240cb3e4f8556d42aa397c1ea8f', '172.105.247.100', 1668108684, '__ci_last_regenerate|i:1668108684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729eaf0800d9cf94734eff3aa3f979709cf87828', '172.105.247.100', 1668108684, '__ci_last_regenerate|i:1668108684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5efaffe702b15483e2f97eec85a6078067b3a267', '172.105.247.100', 1668108684, '__ci_last_regenerate|i:1668108684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edcdba7cd4c3a24965b58c9300471029fd22ea88', '172.105.247.100', 1668108684, '__ci_last_regenerate|i:1668108684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af044aca3957553659c2d63720b70dd4c828148b', '172.105.247.100', 1668108684, '__ci_last_regenerate|i:1668108684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fda338057924e9814c2fa40b3db40eb8395c9c3f', '172.105.247.100', 1668108685, '__ci_last_regenerate|i:1668108684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85bc4e43654202e782ef28f03a7be7f49b370de', '172.105.247.100', 1668108685, '__ci_last_regenerate|i:1668108685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb19882e243a47941243db03fd3231c4c79621e', '172.105.247.100', 1668108685, '__ci_last_regenerate|i:1668108685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44e0ed8139eacfe15cec38284189fd5bc6c5478', '172.105.247.100', 1668108685, '__ci_last_regenerate|i:1668108685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8352edf90c3d2ed02d7410337700b222553b250a', '172.105.247.100', 1668108686, '__ci_last_regenerate|i:1668108686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee9d009de5177081462cbb757e961bfa7c1a112', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d86b556b3bf6619752f93468994ccdbdc3003a', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab40c68ab47641c8df7879f5c15c83e039de5ed1', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf716508baea26024784b5533ad77e0387db1dd0', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20317d12fb64711999db278ce1391a4d34c97445', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0adf0a3ea406d21de8b1da637ae399d169a32f', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569cc853a56a7e33ae6a505b11eb83b4c9d511bb', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e0b4809febf3c09c910ec3df05198ad87ffbf4', '172.105.247.100', 1668112880, '__ci_last_regenerate|i:1668112880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed0568e55b43ea2c6ff7734a89a3bee3052fe12', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1479417b6fee69c488bf1e55a5300a578fcccfd', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a16069f820d9b549f03892d59e0310054cb9ae', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6504b24ef3a645b73717f68a207656f065c9b46e', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('affe6bcd833227ed277f948a02d7113541f3801f', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a72ae54056a9f03d8b3c590df55e52f7da43630', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fc4b36d40c62d79f907688064c4dda70591af5', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64eb7edb926e75f810ab1001be05b952912b49f', '172.105.247.100', 1668112881, '__ci_last_regenerate|i:1668112881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3664404a7a192545b0d2e6b066ffc7e81f34ac8e', '172.105.247.100', 1668117081, '__ci_last_regenerate|i:1668117081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb48e1e50277a6f3d0c2513b6ac36617fa625a9', '172.105.247.100', 1668117081, '__ci_last_regenerate|i:1668117081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963f75ea69dcfa39205e370a6f9f8105d972df15', '172.105.247.100', 1668117081, '__ci_last_regenerate|i:1668117081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72bb2851e57527e80e602596a29ab071587ec8a1', '172.105.247.100', 1668117081, '__ci_last_regenerate|i:1668117081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b76000e222e912fab47a759ade90a9f27d1aac', '172.105.247.100', 1668117081, '__ci_last_regenerate|i:1668117081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ece486b65221a43a2e54fced23072159c41d4d', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800e0bc61fff223ab473e7c26952eff1e75dbdd4', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2290e803c110537442303e8380e19dc59aa6bd', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371abd72c245f30fd7fb3f6a4b20885edf170dc4', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e92a20251264046827b4c5164645523fd26dadf', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20104d6d198b3c3b232d4c756a001dc69c060900', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e896c5a43962dbd9d6e85631fea8113671462c62', '172.105.247.100', 1668117082, '__ci_last_regenerate|i:1668117082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a050cec45244cdb4de08febcc4b4900dc26e4215', '172.105.247.100', 1668117083, '__ci_last_regenerate|i:1668117083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dd7e7878b82874210b21dac0a8152e05daaf32b', '172.105.247.100', 1668117083, '__ci_last_regenerate|i:1668117083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f566e63db3dde7f09743b41a0a9c9af4ccb8f3a5', '172.105.247.100', 1668117083, '__ci_last_regenerate|i:1668117083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c9b67cbc7630a2fccc3d46624525c81586da32', '172.105.247.100', 1668117083, '__ci_last_regenerate|i:1668117083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312c1333772a2ad55ecc7a916745b4fa64e77343', '172.105.247.100', 1668121278, '__ci_last_regenerate|i:1668121278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2b56cba625a99b01e278859747a50e74263786', '172.105.247.100', 1668121278, '__ci_last_regenerate|i:1668121278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc81a4e7ee67c80cc6d7c43fc78eeb6c2d4bbc5d', '172.105.247.100', 1668121281, '__ci_last_regenerate|i:1668121281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92936246a1b138327c59fbb67087278225bd9ea', '172.105.247.100', 1668121281, '__ci_last_regenerate|i:1668121281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37a0726e0aeb2eec041c65fcb488255fe88e0057', '172.105.247.100', 1668121281, '__ci_last_regenerate|i:1668121281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4f92228dfb6f90032c162a8ef724eef97144c6', '172.105.247.100', 1668121281, '__ci_last_regenerate|i:1668121281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e4a959598efba952784fa23ae60df4a81aaa4a7', '172.105.247.100', 1668121281, '__ci_last_regenerate|i:1668121281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67a75822362a15c97f7c8fe08f17315ef4d883b', '172.105.247.100', 1668121281, '__ci_last_regenerate|i:1668121281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b4044de8dd96e8a1ccac7d9926de56f686caed', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe1733365c2e5e6036fff287e1ed0a3f16d64ac', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b680033307e7f753ca3f044cc5385b2bc6d8b9d0', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9067243cd5a085d6f1a7c5ad81a03b8219325c2b', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d38397933ddbd9ab2aea8ce57b0bed102bba9f', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e099535df872f8f622c000018dbc554e6ba67e2a', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a20b496a5e5e6dacf5bdd8d1a2df0a407daaa6', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ea9cd88d4d089d7b0607f807112448128966cb', '172.105.247.100', 1668121282, '__ci_last_regenerate|i:1668121282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3ad63d54060899f5ac7ff8cd48e662d70180d2', '172.105.247.100', 1668125472, '__ci_last_regenerate|i:1668125472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7851a97e7c2c59b3d7b87cfdc62e7ec85aba6bfe', '172.105.247.100', 1668125472, '__ci_last_regenerate|i:1668125472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f06be42a88a172ef690e27944dd5425c9def0a2', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf3adfc16ee370132804df73eee253d91c3345aa', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82d00392bc1befcdc64161f8c3a50b3ce864693', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a4dd6aa5c110f1ded65d4320b6312b7dacbd29', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbfbe864df0057eaf29aa3909f22aacb6eccaa7', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb20f659697d470e3b545186280bbcc993e389bf', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad394a2746839df475d2906e6d8895ca33ab35e5', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c1f134895007be8103ef480679104f39e3f92c', '172.105.247.100', 1668125473, '__ci_last_regenerate|i:1668125473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65cb572a3e0675f16cc5644981f76914f3d65dd1', '172.105.247.100', 1668125474, '__ci_last_regenerate|i:1668125474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eced6f404a625cedc37378547f2f7bfec789ec61', '172.105.247.100', 1668125474, '__ci_last_regenerate|i:1668125474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5960ef6c0833bf01153a71b9a3bbb67e19199caa', '172.105.247.100', 1668125474, '__ci_last_regenerate|i:1668125474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b61212b1c3a0acd60bf121bd7de4965a48aed8f', '172.105.247.100', 1668125474, '__ci_last_regenerate|i:1668125474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f316884b1a9bd8bc473a92dff1255789dcd5c94', '172.105.247.100', 1668125474, '__ci_last_regenerate|i:1668125474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9e0c0da6d319e172e05e4abe2c61bd93b88851', '172.105.247.100', 1668125474, '__ci_last_regenerate|i:1668125474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ff21f3895b1c5776985da457321e65c352d8e6', '172.105.247.100', 1668129683, '__ci_last_regenerate|i:1668129683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310d58f40f544e8623d45af520a983f4158c97d0', '172.105.247.100', 1668129683, '__ci_last_regenerate|i:1668129683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e516ce2872ce2e6c6b6d8d4b7262815f74b3d937', '172.105.247.100', 1668129683, '__ci_last_regenerate|i:1668129683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb481fe9b72df0f7f530d5f627d774b71437aa2', '172.105.247.100', 1668129683, '__ci_last_regenerate|i:1668129683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2c36ae0c686fec635a028dfe68ea9bfa13bffc', '172.105.247.100', 1668129684, '__ci_last_regenerate|i:1668129684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639d887cfc33088b501dafb6a3690237a2736205', '172.105.247.100', 1668129684, '__ci_last_regenerate|i:1668129684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f271726e0501b250ff1e38a83edda00b21a512eb', '172.105.247.100', 1668129684, '__ci_last_regenerate|i:1668129684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56d5fc28593e122bb66169a6126b8838df01bea', '172.105.247.100', 1668129685, '__ci_last_regenerate|i:1668129685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7ba40e44030566030da888925ff558f0a83fa5', '172.105.247.100', 1668129685, '__ci_last_regenerate|i:1668129685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be25a16e17e5a8774031154914a98a35d9777ada', '172.105.247.100', 1668129685, '__ci_last_regenerate|i:1668129685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41621cf0a44763f85cca0488f113f1bbfff9c952', '172.105.247.100', 1668129685, '__ci_last_regenerate|i:1668129685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0c43cd4ea3c7ad507f3a3e93d923c4bed20cf2', '172.105.247.100', 1668129686, '__ci_last_regenerate|i:1668129686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce56bdc104acaa92b91ed5423b53f1ae5a063f2', '172.105.247.100', 1668129686, '__ci_last_regenerate|i:1668129686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2405d9da358a01eb13af94743fb76b31ae9ea2e', '172.105.247.100', 1668129686, '__ci_last_regenerate|i:1668129686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478b87843504b3a4dd37645f6fea89534faef256', '172.105.247.100', 1668129687, '__ci_last_regenerate|i:1668129687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3d9ac3c34dccf069946f1961f247952840c8ef', '172.105.247.100', 1668129687, '__ci_last_regenerate|i:1668129687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aea28f7388407f3cc7b289e545ce16fd4a2099d', '172.105.247.100', 1668133872, '__ci_last_regenerate|i:1668133872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb85888cac5438c29343243d2d1470c4b6fe65d0', '172.105.247.100', 1668133872, '__ci_last_regenerate|i:1668133872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3715ecc4bbaec181dab493e5172e6121c2ae93c7', '172.105.247.100', 1668133872, '__ci_last_regenerate|i:1668133872;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8434f4795ef92ff41cefba7a0c50a24c731ebd0', '172.105.247.100', 1668133872, '__ci_last_regenerate|i:1668133872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b8318ffbe1f46b879592fbd404866541152925d', '172.105.247.100', 1668133873, '__ci_last_regenerate|i:1668133873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dada2669cc694c077001361c7e8780bb155cfd1d', '172.105.247.100', 1668133873, '__ci_last_regenerate|i:1668133873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052c897cd16a431bcbc2a53d3a23285403c59167', '172.105.247.100', 1668133873, '__ci_last_regenerate|i:1668133873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67cd7a36b3f38152db8a65eb26c8793ccb9b840', '172.105.247.100', 1668133873, '__ci_last_regenerate|i:1668133873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a81033193da57d519faede48a60216e6aa22321', '172.105.247.100', 1668133873, '__ci_last_regenerate|i:1668133873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff08006e65369d9522f9573d01435cd00b7b337', '172.105.247.100', 1668133873, '__ci_last_regenerate|i:1668133873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2579fdf6338e0875ab16fd51540451cfa9982539', '172.105.247.100', 1668133874, '__ci_last_regenerate|i:1668133874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e02f09c43d5c65cfe4b45cfbea8e3d147aebfc1', '172.105.247.100', 1668133874, '__ci_last_regenerate|i:1668133874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adcc27517e7ea44c1b5a49bcb3cbbf677ec68486', '172.105.247.100', 1668133874, '__ci_last_regenerate|i:1668133874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c37b44dad22668c9ac4777d846b734d01679ad56', '172.105.247.100', 1668133874, '__ci_last_regenerate|i:1668133874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd1907818bea99035f30127cd307618f128a537', '172.105.247.100', 1668133874, '__ci_last_regenerate|i:1668133874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75ed0d763f980803f3a7bedb990fdd58810894c', '172.105.247.100', 1668133875, '__ci_last_regenerate|i:1668133874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744f3f5b919531be0d42e29a68c252f16b51ab2f', '172.105.247.100', 1668138079, '__ci_last_regenerate|i:1668138079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('228f81db7c91240c791b2a67603d2675d6347633', '172.105.247.100', 1668138080, '__ci_last_regenerate|i:1668138080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db9fe11fff4bf89c6773b50b69af54555babaad', '172.105.247.100', 1668138080, '__ci_last_regenerate|i:1668138080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceabd1f7d7faea275d63ebfb5aeb8b24ff48d0eb', '172.105.247.100', 1668138080, '__ci_last_regenerate|i:1668138080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e47e0e3a0a34dcb0ada62590124a59d665011a', '172.105.247.100', 1668138080, '__ci_last_regenerate|i:1668138080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ac4747bbb21627454564aedfe36ce4f90009a7', '172.105.247.100', 1668138080, '__ci_last_regenerate|i:1668138080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d7006cc7a26cb5094625bec953339704a81254', '172.105.247.100', 1668138080, '__ci_last_regenerate|i:1668138080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e251fed921404cdcd3cc9e6212abf5b111010d37', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1435bf26289ee2a4448cc034e07e9824656438d1', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88a915fe045db9b275662779c8e1845ef9c75217', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0d192967895d0430ef236d461faeb5b896c539', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0beef4053e243c74c01df4da03a28a5e860b8ae8', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef84441b02e7c023922623461bb7bfe8e7b597f', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8a52256046a380030e3c8d7634dd50e63650a4', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27d139dd4f87443dc2a5f40964ecc188f740c8d', '172.105.247.100', 1668138081, '__ci_last_regenerate|i:1668138081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f798f2c8934dde48d2d2c89cc37af64de89474', '172.105.247.100', 1668138082, '__ci_last_regenerate|i:1668138082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4cd89639f7495e49ea37b9e2cd7d4c13a5e2fd', '172.105.247.100', 1668142279, '__ci_last_regenerate|i:1668142279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab55b8f2fdd788a91232de1fa14b56d1467ea38', '172.105.247.100', 1668142281, '__ci_last_regenerate|i:1668142281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b171fd0468ea8c8a93be298cddf7bf35f1c075', '172.105.247.100', 1668142281, '__ci_last_regenerate|i:1668142281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7942cd9e4241ed6eb635d32b0f04cf02b4e1d4', '172.105.247.100', 1668142282, '__ci_last_regenerate|i:1668142282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01fe56d3bf61e7133eca633cd3e4f7ed56271710', '172.105.247.100', 1668142282, '__ci_last_regenerate|i:1668142282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7bab9f92064c67a583248efda7c1664bb9eb18', '172.105.247.100', 1668142282, '__ci_last_regenerate|i:1668142282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbb8f792e94706892722af67509950e63b1c140', '172.105.247.100', 1668142282, '__ci_last_regenerate|i:1668142282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8b5dddc4e504ffe8f3d3c44985fee4ed873b35', '172.105.247.100', 1668142283, '__ci_last_regenerate|i:1668142283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1c801fc233c6db07e59b40f4c1968629745b1d', '172.105.247.100', 1668142283, '__ci_last_regenerate|i:1668142283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f95c284a7305f49ea069f79522fa944cf0d51d', '172.105.247.100', 1668142284, '__ci_last_regenerate|i:1668142284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff712dd51effe1294ceccf6f154eaa90aee157ee', '172.105.247.100', 1668142284, '__ci_last_regenerate|i:1668142284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed01dcd699ead6536293df50d0e90d24fbe9f01', '172.105.247.100', 1668142284, '__ci_last_regenerate|i:1668142284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38d50650a7adbbd401d9b79a9e09962ec61930d', '172.105.247.100', 1668142284, '__ci_last_regenerate|i:1668142284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf78ab70ff0ede4fa301b90f5d64d77031e96b6', '172.105.247.100', 1668142285, '__ci_last_regenerate|i:1668142285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06682cf7924ec8cc6c31889d56ecdcd4e6275771', '172.105.247.100', 1668142285, '__ci_last_regenerate|i:1668142285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5770502eb64e13a83ea5b9737c24430179db6c47', '172.105.247.100', 1668142285, '__ci_last_regenerate|i:1668142285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3adc4bc9b20d2c75556834de22e8c69ba4f995a1', '45.120.39.90', 1668149263, '__ci_last_regenerate|i:1668149263;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668054101\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668149227;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb6f60c7caf4b60341600a1f367aa78ff214272', '172.105.247.100', 1668146480, '__ci_last_regenerate|i:1668146480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f771b77585621b0b71efdc18b7b575cb7031500', '172.105.247.100', 1668146480, '__ci_last_regenerate|i:1668146480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84886144466e89f3f7611fc7411de9280cbfa139', '172.105.247.100', 1668146480, '__ci_last_regenerate|i:1668146480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c159f717a098940c41bc9c02f5a68e61f9acb8b', '172.105.247.100', 1668146481, '__ci_last_regenerate|i:1668146481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23eeda9b2e7acf2f51f05d230b13297d81fb72df', '172.105.247.100', 1668146481, '__ci_last_regenerate|i:1668146481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ac9d4d75a786777ec3d975b1f31257fa615ebf', '172.105.247.100', 1668146481, '__ci_last_regenerate|i:1668146481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea635f2e6f0d5a272921ddda254fae0a8346556', '172.105.247.100', 1668146481, '__ci_last_regenerate|i:1668146481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb751dad6b96e1d24c9745e6781d3703ef290cf6', '172.105.247.100', 1668146482, '__ci_last_regenerate|i:1668146482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08091453e527c35f57c86cbfc6c796ef9b581665', '172.105.247.100', 1668146483, '__ci_last_regenerate|i:1668146483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4a27d441a834a4722529526aff314907e2fc4e', '172.105.247.100', 1668146483, '__ci_last_regenerate|i:1668146483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f9192ac8d04615d121c84ab9934d694dd131c09', '172.105.247.100', 1668146483, '__ci_last_regenerate|i:1668146483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0bcd8aeac41c621a879be90b4d0536c7b706363', '172.105.247.100', 1668146483, '__ci_last_regenerate|i:1668146483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d075c76bb5fccf12af9262e9126a767c0f4e3fd', '172.105.247.100', 1668146484, '__ci_last_regenerate|i:1668146484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fee0ea134dd044c9d04815102a7f7b4dd6a3039', '172.105.247.100', 1668146484, '__ci_last_regenerate|i:1668146484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51fc306b1a70f371ebc177b3c736f1bf8cb4ee61', '172.105.247.100', 1668146484, '__ci_last_regenerate|i:1668146484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0432c39a15ed21443a456ce7b12d60b1a182c9ce', '172.105.247.100', 1668146485, '__ci_last_regenerate|i:1668146484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d9537e3868c63260e1e892eea7e073d3b7ffc2', '45.120.39.90', 1668150904, '__ci_last_regenerate|i:1668150904;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668054101\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668149267;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8140e7629abf74974a025c0e1aa17367ab490c5', '172.105.247.100', 1668150676, '__ci_last_regenerate|i:1668150676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7a48fe0a17a5518d1b7f1f6ba7c88da52ed25b', '172.105.247.100', 1668150676, '__ci_last_regenerate|i:1668150676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296aed813f6a0ca8556922549fb9b991add444fd', '172.105.247.100', 1668150676, '__ci_last_regenerate|i:1668150676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f453329d9c98bb9e7f71454281c4723630df0d97', '172.105.247.100', 1668150677, '__ci_last_regenerate|i:1668150677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cbd46bedb149d5b655a08b120012b3167e1dc09', '172.105.247.100', 1668150677, '__ci_last_regenerate|i:1668150677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538d9af232bbba000df5ec9efe7af1ba4d032907', '172.105.247.100', 1668150677, '__ci_last_regenerate|i:1668150677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de23bbcf3004b5bcb3df3a03a2c5568484699aeb', '172.105.247.100', 1668150677, '__ci_last_regenerate|i:1668150677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ebfc9118b9d616f1cee71188c3a31d87ac2280', '172.105.247.100', 1668150677, '__ci_last_regenerate|i:1668150677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e28e5f695448ee762b7ebc96402185f087db23d', '172.105.247.100', 1668150677, '__ci_last_regenerate|i:1668150677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92343ec5521e3aef2e23021419d6d82074956555', '172.105.247.100', 1668150678, '__ci_last_regenerate|i:1668150677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793612ffeeb324058023176367bfd759d2d83a5b', '172.105.247.100', 1668150678, '__ci_last_regenerate|i:1668150678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa98fcc91898859f458cd6da1ff2b36a131e5b4', '172.105.247.100', 1668150678, '__ci_last_regenerate|i:1668150678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d31e05581abc8c51f3e9acc267fb7fbd56c0740', '172.105.247.100', 1668150678, '__ci_last_regenerate|i:1668150678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e17cd175b8ec49188e419ae38d8c6225029fac0', '172.105.247.100', 1668150678, '__ci_last_regenerate|i:1668150678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47697795d33aeb721c793c77d789ede3bd79b2fe', '172.105.247.100', 1668150678, '__ci_last_regenerate|i:1668150678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707dfe6ed79b15b3a5299e35db35ba641a477726', '172.105.247.100', 1668150679, '__ci_last_regenerate|i:1668150679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e398cdaf49e498553ba27bbee473b6c3f142278', '45.120.39.90', 1668150922, '__ci_last_regenerate|i:1668150904;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668054101\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668149267;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24be82e1c1f07b8f79950e6d6bc547c4402fed4', '205.210.31.180', 1668153447, '__ci_last_regenerate|i:1668153447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8580b28b83e0307b3740614d0a77ae8b52c3521b', '172.105.247.100', 1668154875, '__ci_last_regenerate|i:1668154875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6698f0e789ab60a843d22fb3a736a301717405c6', '172.105.247.100', 1668154875, '__ci_last_regenerate|i:1668154875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835edeb3774be8619b85527ee850d570b18c61ba', '172.105.247.100', 1668154876, '__ci_last_regenerate|i:1668154876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d47146e776354917d0a6ccb6f6db62610473e56', '172.105.247.100', 1668154876, '__ci_last_regenerate|i:1668154876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48c10f191d43da91c8b84610e5748b64a44fb12', '172.105.247.100', 1668154876, '__ci_last_regenerate|i:1668154876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf16ccfed6808c2fe15ba468e8169869190f51b', '172.105.247.100', 1668154877, '__ci_last_regenerate|i:1668154877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94db1acb0030a2632ea960ceba8bf4787186df3', '172.105.247.100', 1668154877, '__ci_last_regenerate|i:1668154877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc469ad61fec9a8b514f852a9c2ec649b41a92f5', '172.105.247.100', 1668154877, '__ci_last_regenerate|i:1668154877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911e054843f6e25f5df86b12dcb42cc9a954661e', '172.105.247.100', 1668154877, '__ci_last_regenerate|i:1668154877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92facacd531190ba4eb372cbd69ac718c5588b5', '172.105.247.100', 1668154877, '__ci_last_regenerate|i:1668154877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe798ed05289c924e2e4e0424c807047e814532', '172.105.247.100', 1668154877, '__ci_last_regenerate|i:1668154877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6237d3e6ff21ae9c7cb7d57622322cbd564c5f89', '172.105.247.100', 1668154878, '__ci_last_regenerate|i:1668154877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f4c196d2a6da9fc3dbcb475f2f3e67271ac898', '172.105.247.100', 1668154878, '__ci_last_regenerate|i:1668154878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad463b39f30b1cd97beb4faa47d2a8396594ee4', '172.105.247.100', 1668154878, '__ci_last_regenerate|i:1668154878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a00153b1c25fe06d389231fb82f6dba5ff2ecb6', '172.105.247.100', 1668154878, '__ci_last_regenerate|i:1668154878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c44c50d00c263d3c11f4b3cc65125078cb8795f', '172.105.247.100', 1668154878, '__ci_last_regenerate|i:1668154878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16ebbff4d3d2b95fa3d6f88c661818edfdf0fe3', '172.105.247.100', 1668159078, '__ci_last_regenerate|i:1668159078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4568727767c4eb39f7085e74a16af79e412655b8', '172.105.247.100', 1668159078, '__ci_last_regenerate|i:1668159078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4e3320dd72bec195fd3500b4bffce6c9e74ed8', '172.105.247.100', 1668159078, '__ci_last_regenerate|i:1668159078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7064a49d3f6b2cca189a91074fe557cfb5827519', '172.105.247.100', 1668159079, '__ci_last_regenerate|i:1668159079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd2a02fc43fc63e699aa0707971996960879424', '172.105.247.100', 1668159079, '__ci_last_regenerate|i:1668159079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e73fd4b99dfd2733082533e19ed1e46f49e2ec', '172.105.247.100', 1668159079, '__ci_last_regenerate|i:1668159079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7494e900a2c99b3d788fe62fc339958f0940f2d5', '172.105.247.100', 1668159080, '__ci_last_regenerate|i:1668159080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f1ff7cfd9e52c3651988a66dc8a4faaabaf2b0', '172.105.247.100', 1668159080, '__ci_last_regenerate|i:1668159080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442a6bfb37f9db02ec9688a81be6c1ca2a07f6c6', '172.105.247.100', 1668159081, '__ci_last_regenerate|i:1668159081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e334f67b0c794678373d00a7e9d4eeacb6ae064', '172.105.247.100', 1668159081, '__ci_last_regenerate|i:1668159081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0e7db811b859cac359b153db90b1dc2d9c9165', '172.105.247.100', 1668159081, '__ci_last_regenerate|i:1668159081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aee3cf7f913cfcbd037b2b27fe1041a80641ff3', '172.105.247.100', 1668159081, '__ci_last_regenerate|i:1668159081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3345059472fe8b7303f9cc37c2258a459bae4d03', '172.105.247.100', 1668159082, '__ci_last_regenerate|i:1668159082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ecc1f8bc0ef7eacbd2f9565861d3290bcea78a1', '172.105.247.100', 1668159082, '__ci_last_regenerate|i:1668159082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d27f41872e635392bf23c9576c39aeba36e6edb', '172.105.247.100', 1668159082, '__ci_last_regenerate|i:1668159082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0785ef0968d20a0562309340281f21a7508b985c', '172.105.247.100', 1668159082, '__ci_last_regenerate|i:1668159082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39adef8343c788c854dd113cc5c16a902a34dc8b', '45.120.39.90', 1668160470, '__ci_last_regenerate|i:1668160470;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668160310;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4e6b6c29d52d73f61371a2e1c6a1d48cd89bf2', '45.120.39.90', 1668162149, '__ci_last_regenerate|i:1668162149;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668160497;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebeddd7b8d6013629534a743bc6684dd4477c2ab', '45.120.39.90', 1668161745, '__ci_last_regenerate|i:1668161745;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668160497;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d094a168c2d62a0fb484735421979e455a2f33ae', '45.120.39.90', 1668163892, '__ci_last_regenerate|i:1668163892;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668162152;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7765ecf966044c23ea12a0468ce8653bb69b70a0', '205.210.31.41', 1668163087, '__ci_last_regenerate|i:1668163087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c280f63d62569dda3c9fda90d5e91895ae733093', '172.105.247.100', 1668163283, '__ci_last_regenerate|i:1668163283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b43e9680b952b2f05db3ed14e2da5b0cc977eb', '172.105.247.100', 1668163283, '__ci_last_regenerate|i:1668163283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c50bc2ad10bcc8584e456347394a8cd412212a', '172.105.247.100', 1668163284, '__ci_last_regenerate|i:1668163284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5541514f44aa9403755d942ccbc5ffaad6780d15', '172.105.247.100', 1668163284, '__ci_last_regenerate|i:1668163284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8731f6ccb4121d58b1b0a0e85c9770d5f2170407', '172.105.247.100', 1668163284, '__ci_last_regenerate|i:1668163284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c401aad69f352bef80d1a0cc333f78f2f47fab', '172.105.247.100', 1668163284, '__ci_last_regenerate|i:1668163284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f13a9d9e97340c674c7d9aee3f3f02df857bb73', '172.105.247.100', 1668163285, '__ci_last_regenerate|i:1668163285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19e80a29de1cccb6f8c3a5e54602f254ac28d950', '172.105.247.100', 1668163285, '__ci_last_regenerate|i:1668163285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d139ab4c2bf613906bd1391a7f00fad91974b9', '172.105.247.100', 1668163285, '__ci_last_regenerate|i:1668163285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ff9d880f9dc0de8e415d6d9798a3eb12999209', '172.105.247.100', 1668163285, '__ci_last_regenerate|i:1668163285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f78a7df16b4c5eccd1de2da96dab9974a36d0c86', '172.105.247.100', 1668163285, '__ci_last_regenerate|i:1668163285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d33e4a2b85800d73dcec049cf273ce11971b8b', '172.105.247.100', 1668163285, '__ci_last_regenerate|i:1668163285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9caff70fbe84c5a75e32dd5c21b1b3ad8aca9294', '172.105.247.100', 1668163286, '__ci_last_regenerate|i:1668163286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a4908c5008d0d86faa4659e311278472d32612', '172.105.247.100', 1668163286, '__ci_last_regenerate|i:1668163286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710fe0ca9d6c69a54fa2c6048be0c60c78c37da7', '172.105.247.100', 1668163286, '__ci_last_regenerate|i:1668163286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e317e8a57a1b7c4b0f96c0415c257c145b7fbe3', '172.105.247.100', 1668163286, '__ci_last_regenerate|i:1668163286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f421669405960408666ea1563d38fbf096942d', '45.120.39.90', 1668170802, '__ci_last_regenerate|i:1668170802;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668164034;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c309529498dc3680392980409414c6f997ee970', '172.105.247.100', 1668167477, '__ci_last_regenerate|i:1668167477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f69be9466dc1cec02c16853f6b3e5a1a4cbd27f', '172.105.247.100', 1668167478, '__ci_last_regenerate|i:1668167478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba61449854449a900513f060c3394b78cc922c1', '172.105.247.100', 1668167479, '__ci_last_regenerate|i:1668167479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9d0cf94d5d131e27ab6f1980f624bcf757dea2', '172.105.247.100', 1668167479, '__ci_last_regenerate|i:1668167479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30be90f7fd6b68fb30aa81903ec2993592147a2c', '172.105.247.100', 1668167479, '__ci_last_regenerate|i:1668167479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b2661295c81711640f7bb0ae16a1439df15dfb', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f58affe43720f385e247437d76e08763a397e65', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e462da7689831c77f78dc9ee472807dae1a89d', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd085c516b5d103396452d09d49e8cdd6608a5c', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c0946ec934cdfb5b173b79c4765d793e2a644d', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e626fc426b3143b0c74d8de2639c64d245c9e40', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7e5025146acbde619ad8fc3636d01649e5b50d', '172.105.247.100', 1668167480, '__ci_last_regenerate|i:1668167480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad47d6aa6060b547dc97c298795bbc37d54751f', '172.105.247.100', 1668167481, '__ci_last_regenerate|i:1668167481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0e7864d74f17c0620b59b588457082b6eac878', '172.105.247.100', 1668167481, '__ci_last_regenerate|i:1668167481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c354272aa64a627f958cd405ca10a94896e6c95', '172.105.247.100', 1668167481, '__ci_last_regenerate|i:1668167481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9a15eccf82b3fde26370eb22124b945076abcb', '172.105.247.100', 1668167481, '__ci_last_regenerate|i:1668167481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fc9acb0f5fcf2c4be7c933cc77117b65e872d86', '205.210.31.163', 1668170485, '__ci_last_regenerate|i:1668170485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5d401e4ba18813c1a077040d8f87821b362080', '45.120.39.90', 1668171781, '__ci_last_regenerate|i:1668171781;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668171777;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33bd1e43f733712d766e5370ea5e4108d5501ac5', '172.105.247.100', 1668171688, '__ci_last_regenerate|i:1668171688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2846ea3337f34e92d0aea4d16269f40645942930', '172.105.247.100', 1668171691, '__ci_last_regenerate|i:1668171691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84043b02719655efda45d5820fae4c8819152a08', '172.105.247.100', 1668171691, '__ci_last_regenerate|i:1668171691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82ef09d7ce1841f31c305080b7505b5a310adeb', '172.105.247.100', 1668171691, '__ci_last_regenerate|i:1668171691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15a22b5772f5409a442cc79c237575bf39dacdbb', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd63066f1d8b79b4e03a533c5e9ecaf48aa32a3a', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2023e448763d1509ddaadb2a1b9a3b4afbc918ba', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62fcff9d915964291b82ff8f40e954b902f3ddd5', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac4dd804e3b86a68ee4aa420e09626b2c261dac', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da28cb80668b9a23229907426ba9c4c1fb13e1bd', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6e4c8ef2f9f905e8a19f8e3af03cdae905f853', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('280132b1abac7d0fb09d076e28fadec95e3c8696', '172.105.247.100', 1668171692, '__ci_last_regenerate|i:1668171692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d6b4764254f92ae7189750ff1962db275d564e', '172.105.247.100', 1668171693, '__ci_last_regenerate|i:1668171693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8feca5263254914e9a30ac0c072fc1085d4cb285', '172.105.247.100', 1668171693, '__ci_last_regenerate|i:1668171693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e353e06a6bc7e30f5cfb42c36691e3724de959', '172.105.247.100', 1668171693, '__ci_last_regenerate|i:1668171693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822a0a30d44224dbc961bfbdb19da2206280884a', '172.105.247.100', 1668171693, '__ci_last_regenerate|i:1668171693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c505595c2c8725a68a6369769c61d2f7e559dd', '45.120.39.90', 1668172295, '__ci_last_regenerate|i:1668172295;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668172279;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f45d1f4f189ecf79e25d9cda1c9056787e09b1', '45.120.39.90', 1668174287, '__ci_last_regenerate|i:1668174287;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668172297;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b99fae99259083d1cd25396fb5eada5d14da93', '45.120.39.90', 1668175468, '__ci_last_regenerate|i:1668175468;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668174292;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfaecbf7e2fa1b5efe68e07109d31dddf15087a4', '45.120.39.90', 1668176409, '__ci_last_regenerate|i:1668176409;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668176369;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf68e156b8c3d1c2bc6950dfb8485a53fabf9d0', '172.105.247.100', 1668175881, '__ci_last_regenerate|i:1668175881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e2860cef23b00dc6ba6062d29121254320d5db', '172.105.247.100', 1668175881, '__ci_last_regenerate|i:1668175881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8431896df11771e7a6d5ea378076950418ba4c', '172.105.247.100', 1668175881, '__ci_last_regenerate|i:1668175881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dff87e47dabafe1b3b5d1660858b30d44e19f9d', '172.105.247.100', 1668175881, '__ci_last_regenerate|i:1668175881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bab6e104eb9074492672f68d66a717104d7c1e', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dea398a0786953acfea31edf5e41c9c3d2527a6', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db68cdfce347b85147f47f730d1660c332e4b2b', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6e17976b70af52d47f977c4853557da52e2dff', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ac452abe90c47215c8d08abc23822091457f74', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a4eb1862c83026a51c979dd1ed9051f696ec82', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f1f80011fb6eb293cad64171d8bf2eb8ad73e7', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8e164619de948f34ab6d910eecd05b4d3c0ead', '172.105.247.100', 1668175882, '__ci_last_regenerate|i:1668175882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9addd233c00c4aa67c19544e700ef822f6dad0fb', '172.105.247.100', 1668175883, '__ci_last_regenerate|i:1668175883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4f608fa590ef051a784198785185738a343add', '172.105.247.100', 1668175883, '__ci_last_regenerate|i:1668175883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777ca15630b879be179a24d0f9a0fb2bd04befd8', '172.105.247.100', 1668175883, '__ci_last_regenerate|i:1668175883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7592225e4f437c81d818311a5a798abb91905ca', '172.105.247.100', 1668175883, '__ci_last_regenerate|i:1668175883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f6655f955d02d6149ca9cce789c4c00a9170c1f', '45.120.39.90', 1668176890, '__ci_last_regenerate|i:1668176890;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668176410;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4bc70c7a730c78e14988052033f245d6e78e2fa', '45.120.39.90', 1668177529, '__ci_last_regenerate|i:1668177529;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668177367;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddca301ae2ed7c226b2b0c93f636e35a7b41f486', '45.120.39.90', 1668178356, '__ci_last_regenerate|i:1668178356;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668177802;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b83751461176d587300740541ab80c1841d9962', '45.120.39.90', 1668178668, '__ci_last_regenerate|i:1668178668;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668178644;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49406b85a58980f9992fc175b6a71da58c4dbfb7', '45.120.39.90', 1668179565, '__ci_last_regenerate|i:1668179565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668179558;register_id|s:3:\"245\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2022-11-10 20:58:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45af5baa3305de403d63b526b70af202c7d85a9', '45.120.39.90', 1668180013, '__ci_last_regenerate|i:1668180013;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668179977;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5623cae36ad370e920caec9cbdf4a0fe4c392b3', '45.120.39.90', 1668180013, '__ci_last_regenerate|i:1668180013;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668144352\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668180013;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3172d01437e875d8941d4551cfbf53e72a39b1d4', '172.105.247.100', 1668180074, '__ci_last_regenerate|i:1668180074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e817bd9b65a84d3a269b05ac900f2dd3af57e6e', '172.105.247.100', 1668180075, '__ci_last_regenerate|i:1668180075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa99030bad4b9284ff1b14be9412d86d2250681', '172.105.247.100', 1668180077, '__ci_last_regenerate|i:1668180077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a50a19f13ca91633410d4d1ae68847e823bf07', '172.105.247.100', 1668180077, '__ci_last_regenerate|i:1668180077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df15f2e732705b88878034c80c4d3035390c5e46', '172.105.247.100', 1668180077, '__ci_last_regenerate|i:1668180077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a89eb23a3713195deef6394d54d9c91dc27e6b', '172.105.247.100', 1668180077, '__ci_last_regenerate|i:1668180077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb7a3e60c1613480d3afbc54302bc786f84e960', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c33504f03794223aa02f203068acd4391e135d5', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e867f12c60fa3a97022045217995ee88f78a4f1', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a5b8b693fa73d0b4be48aa734df28ed7a325ff', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b85a98c8d73a7e3be758af79f2140283152d5d', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a14ff75c6dbece2e4c1cb39c47efc0e33911ce', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179acb8e250db505d9582bdb9b1376bf968aa5d3', '172.105.247.100', 1668180078, '__ci_last_regenerate|i:1668180078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63016d4a94275731857e15d80128db9a58885cec', '172.105.247.100', 1668180079, '__ci_last_regenerate|i:1668180079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db57e13719a05730cb16cdd2be203a9a47f058a4', '172.105.247.100', 1668180079, '__ci_last_regenerate|i:1668180079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b94462cdbf17cfa840da0a8747b52222ff27b341', '172.105.247.100', 1668180079, '__ci_last_regenerate|i:1668180079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af33ca2450c6b67e68557a604149051ffd704edd', '172.105.247.100', 1668184282, '__ci_last_regenerate|i:1668184282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6734eaa4bce5a2851d5d3284fe57c916d37922', '172.105.247.100', 1668184282, '__ci_last_regenerate|i:1668184282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfd3eac0b55fd6d2323e0cf5b78c3306d39ce4f', '172.105.247.100', 1668184282, '__ci_last_regenerate|i:1668184282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95be4032c56e99d1ec7f92206373d406c2e08d1d', '172.105.247.100', 1668184282, '__ci_last_regenerate|i:1668184282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249efc602508f2d595e63d14fcc7c2f31876e5eb', '172.105.247.100', 1668184282, '__ci_last_regenerate|i:1668184282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9dd4b0f032a97eb0a742f6be0ce8898d66bdc78', '172.105.247.100', 1668184283, '__ci_last_regenerate|i:1668184283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21e55e34735781c78e038428d57762a0b64398db', '172.105.247.100', 1668184283, '__ci_last_regenerate|i:1668184283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db22c9164b63c33d291604d3cf3afe2394cf981', '172.105.247.100', 1668184283, '__ci_last_regenerate|i:1668184283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e2414f30f7f57c3a4eec8a0b61e1165b81b058', '172.105.247.100', 1668184283, '__ci_last_regenerate|i:1668184283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1324377e8d62dafe4536728df5e730e87f5a8c75', '172.105.247.100', 1668184283, '__ci_last_regenerate|i:1668184283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa9550b5c579abe4dc43a76e3494dd1ba301e62', '172.105.247.100', 1668184284, '__ci_last_regenerate|i:1668184283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1034e6a42680bd2c09df0eb05c9f130cb365d739', '172.105.247.100', 1668184284, '__ci_last_regenerate|i:1668184283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d82079fa3a2dfe6b7c526753ad83ad061268b49', '172.105.247.100', 1668184284, '__ci_last_regenerate|i:1668184284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095bc813de9a9ad2ba876a1b30017bfeceab591c', '172.105.247.100', 1668184284, '__ci_last_regenerate|i:1668184284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a705aa89ae298d18c9dcdb66cfed6cc57c346e8e', '172.105.247.100', 1668184284, '__ci_last_regenerate|i:1668184284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586e2f3573f5efb5b602e1d2902132936938623a', '172.105.247.100', 1668184285, '__ci_last_regenerate|i:1668184285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2d4009c4ba179f53c21d309d4dd66587ac06a4', '172.105.247.100', 1668188480, '__ci_last_regenerate|i:1668188480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2e0d3da1707d36fb401642784c34fa0fee75ea8', '172.105.247.100', 1668188481, '__ci_last_regenerate|i:1668188481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240471ca5be44fcf4e82846ea3180f665da40838', '172.105.247.100', 1668188482, '__ci_last_regenerate|i:1668188482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef5ef6f439ca08c72c40f1cf3dc1c7cd74f33e4', '172.105.247.100', 1668188482, '__ci_last_regenerate|i:1668188482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d853c6fc38fd78677b107a11dbe6c07e34b23626', '172.105.247.100', 1668188482, '__ci_last_regenerate|i:1668188482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9c3620b7828227edc92aa3f94aa12f403ec7ed', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40139a9c750558430ca04c7a56cba53dd4da48d', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4fa389fde4fff81bfdfc2aa873eb485400d6a2b', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d607c4e1f6797b47c3e68bd45dbc5e2d18b2df', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('594e1049a3a94d27c67ed1850f57fa58212923ac', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cab190ce842751fa8dbd882fe4d9ba4315300c4', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fb049f0d2276c474e81b131ee7930261feaba7f', '172.105.247.100', 1668188483, '__ci_last_regenerate|i:1668188483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ba5a5abfce5590224da1ccb16d775228c05252', '172.105.247.100', 1668188484, '__ci_last_regenerate|i:1668188484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c20f62aa5c0d1eda33f74a5ec2d196192d7df1c7', '172.105.247.100', 1668188484, '__ci_last_regenerate|i:1668188484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4e7a4644cc228244d4778139a2c11a3b70783d2', '172.105.247.100', 1668188484, '__ci_last_regenerate|i:1668188484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9beb8afa731fa7c81556de3efa86f2ed0b8b0c6f', '172.105.247.100', 1668188484, '__ci_last_regenerate|i:1668188484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c7df19b980f90d07c6625cbe9a985eb7091ff6', '172.105.247.100', 1668192677, '__ci_last_regenerate|i:1668192677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f2468976cd999ca6fb9d177514b3f7fc5bdedc', '172.105.247.100', 1668192677, '__ci_last_regenerate|i:1668192677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c766525618f7fe30a8c213221f6f14148ce60b8', '172.105.247.100', 1668192680, '__ci_last_regenerate|i:1668192680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e01a37a8de2516091402259809d795d91dc5579', '172.105.247.100', 1668192680, '__ci_last_regenerate|i:1668192680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70484da369e2f9677bcdb8ed9933a4c722316d2f', '172.105.247.100', 1668192680, '__ci_last_regenerate|i:1668192680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de3537b1c00f3b2b2f53fa745241800594948a4', '172.105.247.100', 1668192680, '__ci_last_regenerate|i:1668192680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff60ea9ac4752cb9f8a9025f07cd9bc3777f873', '172.105.247.100', 1668192680, '__ci_last_regenerate|i:1668192680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcfee68e9e9c59e8758fd7304ac49f66169933f', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f72b8af328916ebf4c206691cc60044c265c80', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e677c12ecc153ad18aeba019d7ca9d66786458', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd23be2d026ec8a1275cc1e9e3a39aaed9cf11b', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a228e554fb4daf6727bd6264740b5b72f2c9779d', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53ba71f388ebb672d54e2cb00e75a6665d293e5', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b53af58ef9061539f2fb0bc22e195031a939bd7', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61225a2855d0e46be5df8d82424dd61170cbe42b', '172.105.247.100', 1668192681, '__ci_last_regenerate|i:1668192681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41cf262e3c9cd0fa5824d883591ae00cdef0e296', '172.105.247.100', 1668192682, '__ci_last_regenerate|i:1668192682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22311bda4f63139686418d43a21974aec8965ed', '172.105.247.100', 1668196882, '__ci_last_regenerate|i:1668196882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ce09509a99443e3b5c77593276645222b51486', '172.105.247.100', 1668196882, '__ci_last_regenerate|i:1668196882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d399e3d4ba79a9a96035f8aecf34e4293b38c8', '172.105.247.100', 1668196882, '__ci_last_regenerate|i:1668196882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be9838342e93dd41aa2ee0e91988e524faa45b8', '172.105.247.100', 1668196883, '__ci_last_regenerate|i:1668196883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8333c2c77aa8585dbf26eb8f1e5dac36e91cad6e', '172.105.247.100', 1668196883, '__ci_last_regenerate|i:1668196883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ea4ac5a5a378bdfaf053f163e45db871bb0240', '172.105.247.100', 1668196883, '__ci_last_regenerate|i:1668196883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0500a0b1f65dd98cd5be2f109e30de10beec2a3', '172.105.247.100', 1668196883, '__ci_last_regenerate|i:1668196883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8034913805eba27d85b8d4c133c1a601c0ada3ca', '172.105.247.100', 1668196884, '__ci_last_regenerate|i:1668196884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49f97152416f55596af38058ab5501fb1cf4ea3', '172.105.247.100', 1668196884, '__ci_last_regenerate|i:1668196884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15dbc590409d38567904c15dfaa1d0b8e54b75ff', '172.105.247.100', 1668196884, '__ci_last_regenerate|i:1668196884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7dd82acfc0f7f94615e657e65a5de4b6b72842e', '172.105.247.100', 1668196884, '__ci_last_regenerate|i:1668196884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f0825d4a9a4fcb84d3bdb76b1e3d4ab72243a4', '172.105.247.100', 1668196885, '__ci_last_regenerate|i:1668196884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5304b39b8b657d217fc1aa3338231bcb30821f41', '172.105.247.100', 1668196885, '__ci_last_regenerate|i:1668196885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f9845f66effbe7837b522d0b8fd98f2655bdf8', '172.105.247.100', 1668196885, '__ci_last_regenerate|i:1668196885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7532c344fbaff706503c4a8b7d7d1277356fdea', '172.105.247.100', 1668196885, '__ci_last_regenerate|i:1668196885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ade399085e7a4dc1bc43202af38e22e3283002d', '172.105.247.100', 1668196886, '__ci_last_regenerate|i:1668196886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc45bc8d6bb4ac81d084652f8c9548f72c051d6', '172.105.247.100', 1668201079, '__ci_last_regenerate|i:1668201079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbe3df72181bf970be241f475d4a6db50d9f3b2', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b148347356b7f938da432cde0ca30c4c04961fd5', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10528e05ea3195142ce6af29843ece779608f015', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e98193a7039224f30899026a9a276618d14e5e', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d88480d198baa4f32c7912338f8b6f25ea32cf', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a142a063896074dce3d360689937a9f92a1af82', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be94697f763282b0ef81c303a45d1953cc956e44', '172.105.247.100', 1668201082, '__ci_last_regenerate|i:1668201082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d4aeaac9ca199ff4d7e673c3d200d3bc81d8569', '172.105.247.100', 1668201083, '__ci_last_regenerate|i:1668201083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3022a272b52fc0f1f7dca36f6e51c302c450f28', '172.105.247.100', 1668201083, '__ci_last_regenerate|i:1668201083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed7d82484bc514abf4e23785a8d8031ea7183c1', '172.105.247.100', 1668201083, '__ci_last_regenerate|i:1668201083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('444acde06da032f54571d12df96cebec6beb75a1', '172.105.247.100', 1668201083, '__ci_last_regenerate|i:1668201083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a75f7e54f61f814aec31b8024184295e736408', '172.105.247.100', 1668201083, '__ci_last_regenerate|i:1668201083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d73e57348e949fabff842e43dbcf8eb8fab872', '172.105.247.100', 1668201083, '__ci_last_regenerate|i:1668201083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e50eae1ea6dbfab9e300938edb0edea32c9b68ea', '172.105.247.100', 1668201084, '__ci_last_regenerate|i:1668201084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ededf8f9df3714a4787c71bba374874df92955f0', '172.105.247.100', 1668201084, '__ci_last_regenerate|i:1668201084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ad03cb88355de2af5c533421a69c5fedfa3eb9', '198.235.24.130', 1668202096, '__ci_last_regenerate|i:1668202096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c603ce1c505290ee5b8709761af2d9b9d5b6b4c7', '198.235.24.130', 1668202096, '__ci_last_regenerate|i:1668202096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad2d7473bf99950d4e9ea1ee132f008141a12a7', '198.235.24.130', 1668202096, '__ci_last_regenerate|i:1668202096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4583bdc8ae5000f3bfb9414dab454eaf070da020', '172.105.247.100', 1668205272, '__ci_last_regenerate|i:1668205272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d22ad13f6aaf5f5689cd80078fd50b11cb1bb76', '172.105.247.100', 1668205272, '__ci_last_regenerate|i:1668205272;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f162c63a6d6ae6acf2548dff408c6b1870dcc1d0', '172.105.247.100', 1668205272, '__ci_last_regenerate|i:1668205272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b15a6e0583494a9952773813e111fa7f5ff1c10', '172.105.247.100', 1668205273, '__ci_last_regenerate|i:1668205273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994ec24a99ce351af1a60c4d8183ded4013222ff', '172.105.247.100', 1668205273, '__ci_last_regenerate|i:1668205273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440fcd9f8796786f1f18dac43c8adba111b0d7c6', '172.105.247.100', 1668205273, '__ci_last_regenerate|i:1668205273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e44947c41eff2bd2369ac283982ed60ce6cb38', '172.105.247.100', 1668205274, '__ci_last_regenerate|i:1668205274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f7eef91848234c837e716c8fc65254df2970acf', '172.105.247.100', 1668205274, '__ci_last_regenerate|i:1668205274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2498c4099ac6771ddc942ebca506897cbe9f64', '172.105.247.100', 1668205274, '__ci_last_regenerate|i:1668205274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24e50b5069fdea0c92cc964ee7cdcc8cbebdf0e0', '172.105.247.100', 1668205274, '__ci_last_regenerate|i:1668205274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac198a40c747559ae0d91fa0310353e3f5c91c3', '172.105.247.100', 1668205275, '__ci_last_regenerate|i:1668205275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b95d739e4c8755f9fa6bd8a7b48edddb742a175a', '172.105.247.100', 1668205275, '__ci_last_regenerate|i:1668205275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d280ca36e64f1444325c33419ff2d6d10ac5a35b', '172.105.247.100', 1668205275, '__ci_last_regenerate|i:1668205275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b8177f83f2ed6423fbd2ef6387dead3f953467', '172.105.247.100', 1668205275, '__ci_last_regenerate|i:1668205275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3788df6533f679bea174654dc7d0f4d3c177bc1e', '172.105.247.100', 1668205276, '__ci_last_regenerate|i:1668205276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0d65d1b8bc51f2fb735ad72d7e676083d55a62', '172.105.247.100', 1668205276, '__ci_last_regenerate|i:1668205276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87a04f80e6fe2ec31c46610954bcb1f3d0a754b', '198.235.24.21', 1668205838, '__ci_last_regenerate|i:1668205838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d61be7a66aaefbc7e370da651691b91ca77436', '198.235.24.21', 1668205840, '__ci_last_regenerate|i:1668205840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbdd7999069663e78c6b03b12b8dd25b4f040b8e', '198.235.24.21', 1668205840, '__ci_last_regenerate|i:1668205840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b427bf9a9b0be306dc5e777dd1f9a3b1c060569f', '205.210.31.31', 1668207709, '__ci_last_regenerate|i:1668207709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5597b99f2fbe462acb7aab52d734d90aadb07583', '172.105.247.100', 1668209485, '__ci_last_regenerate|i:1668209485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f978b24fa5680ec354e6a930d0d3b7eb31d6ebf', '172.105.247.100', 1668209486, '__ci_last_regenerate|i:1668209486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85449deb2288b0512a3adc6ed15bc2d84c12e55a', '172.105.247.100', 1668209486, '__ci_last_regenerate|i:1668209486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba72ad81c2ddda59291d653a28a9452a5ea86ad2', '172.105.247.100', 1668209487, '__ci_last_regenerate|i:1668209487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530c843f053daab2ae6dfab31e9679899a412907', '172.105.247.100', 1668209487, '__ci_last_regenerate|i:1668209487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03292194a382213fcaf9c27fd8e0980fc96d21f4', '172.105.247.100', 1668209487, '__ci_last_regenerate|i:1668209487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9743a1072e53ac0807d55a2a1b536ee31fb4f56a', '172.105.247.100', 1668209487, '__ci_last_regenerate|i:1668209487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3474f8bd8a766fb1a2a01c47f064cfa864e46db', '172.105.247.100', 1668209487, '__ci_last_regenerate|i:1668209487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8bf12fe8ce0be30e7b596bc27bf0b9beaa5782', '172.105.247.100', 1668209488, '__ci_last_regenerate|i:1668209487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2059083e407b11d11a5b0f09de0da5082c2c98', '172.105.247.100', 1668209488, '__ci_last_regenerate|i:1668209488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('356b81538e72ef601d60bf62dacf8dad87170b03', '172.105.247.100', 1668209488, '__ci_last_regenerate|i:1668209488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19cf65285e423d47899e9f0fb9aae576e0674373', '172.105.247.100', 1668209488, '__ci_last_regenerate|i:1668209488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6771a722e89043ab9f03ffbb9656be4ace77341f', '172.105.247.100', 1668209488, '__ci_last_regenerate|i:1668209488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274343ec05041f658c68f83187a10828224a6904', '172.105.247.100', 1668209488, '__ci_last_regenerate|i:1668209488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5574962ab7f915985e292e2d1cef97be69a483bc', '172.105.247.100', 1668209489, '__ci_last_regenerate|i:1668209489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c0dbfce5ac2c3c37a0215537a8c681148e68b8', '172.105.247.100', 1668209489, '__ci_last_regenerate|i:1668209489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a8711043c320231ef95a7e4baa66e72b4aca3e', '172.105.247.100', 1668213679, '__ci_last_regenerate|i:1668213679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b546ce209b6c553fe207e3397649b6ca579b647', '172.105.247.100', 1668213679, '__ci_last_regenerate|i:1668213679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448fe815a958750e6a307e975c91d6c93255f1d9', '172.105.247.100', 1668213680, '__ci_last_regenerate|i:1668213680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc16e07b6e42b694d6b4cc2b2fbc39e74fe72b3d', '172.105.247.100', 1668213680, '__ci_last_regenerate|i:1668213680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('815cab56a94f8a2c08de038a83ffafe36b1897d3', '172.105.247.100', 1668213680, '__ci_last_regenerate|i:1668213680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d3f0d46962e1c36dc3f2cd595aeaec4338791a', '172.105.247.100', 1668213681, '__ci_last_regenerate|i:1668213681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563a745fed727461392d021a84d00ce79707c045', '172.105.247.100', 1668213681, '__ci_last_regenerate|i:1668213681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2591094d40337e6a8ffca2c6ae2e328e5a713427', '172.105.247.100', 1668213681, '__ci_last_regenerate|i:1668213681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7979089a81675e8c87daa72d7a84f15bfa8fbb58', '172.105.247.100', 1668213681, '__ci_last_regenerate|i:1668213681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4bab03dc8d183c6df5d27656617cd0b214adcc', '172.105.247.100', 1668213682, '__ci_last_regenerate|i:1668213682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d95e29b31245a3c431ca66758d7768043a80a9', '172.105.247.100', 1668213682, '__ci_last_regenerate|i:1668213682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cddd3a5aa597ff2c76fac3ed065c0c13819f04', '172.105.247.100', 1668213683, '__ci_last_regenerate|i:1668213682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e45580e9d4f3aeb3aaa457f8af7f1672492953', '172.105.247.100', 1668213683, '__ci_last_regenerate|i:1668213683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479fb212acb198a6c0970fae224a49c9625f98be', '172.105.247.100', 1668213683, '__ci_last_regenerate|i:1668213683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5977951ede5639800eacfca011d1fe2be7ae4909', '172.105.247.100', 1668213683, '__ci_last_regenerate|i:1668213683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd3a4ada0e280144853ed62dc9a45af43c75225', '172.105.247.100', 1668213684, '__ci_last_regenerate|i:1668213684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fec685c739905b945d112ecd7eeff7880924828', '172.105.247.100', 1668217877, '__ci_last_regenerate|i:1668217877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63813614ad7027eeccf7c22c667253377bfcfe7a', '172.105.247.100', 1668217879, '__ci_last_regenerate|i:1668217879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c82dddacbe22f2ed445e7b7ffd2795bc078c770', '172.105.247.100', 1668217879, '__ci_last_regenerate|i:1668217879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f624f5a7ed4e8dec1f5954ee35184cce845df1', '172.105.247.100', 1668217879, '__ci_last_regenerate|i:1668217879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cec650d0168fe8dc550c87d078aa079347c115e', '172.105.247.100', 1668217879, '__ci_last_regenerate|i:1668217879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772cab77e01a3f2de50e87d7469831e196591dee', '172.105.247.100', 1668217879, '__ci_last_regenerate|i:1668217879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f357166601b9ae43a34655cef96a9b54a19c96', '172.105.247.100', 1668217880, '__ci_last_regenerate|i:1668217880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43842300f7d4d56040fcc4baff0df0cf701f546b', '172.105.247.100', 1668217880, '__ci_last_regenerate|i:1668217880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88715c537c7863be8c0eba79b210eb5d08c3f7f6', '172.105.247.100', 1668217880, '__ci_last_regenerate|i:1668217880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29a5084a56eba4cb9bb86fb44bcaf18b560fab6e', '172.105.247.100', 1668217880, '__ci_last_regenerate|i:1668217880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f57821bf1c0f5dc4d11b8d2e9ff9ec4d6f5f13a', '172.105.247.100', 1668217880, '__ci_last_regenerate|i:1668217880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5fe5ba45b865e29285106a6f13fdc45feaef55', '172.105.247.100', 1668217880, '__ci_last_regenerate|i:1668217880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe969da4cd98828aa717cb7213f9494d8535deac', '172.105.247.100', 1668217881, '__ci_last_regenerate|i:1668217881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4c440a2a7e5342aafeb5a6e7f1f2397320e11a', '172.105.247.100', 1668217881, '__ci_last_regenerate|i:1668217881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ad5470eb4b2b7bc760388d6321c119c3842330', '172.105.247.100', 1668217881, '__ci_last_regenerate|i:1668217881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca983c8f61b57421fd96c61afaebd125b5cbc294', '172.105.247.100', 1668217881, '__ci_last_regenerate|i:1668217881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8b664bd8ce7f8d47699139fd4ee71276e4d46e', '172.105.247.100', 1668222087, '__ci_last_regenerate|i:1668222087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f68df51abf95c8b7398bba77fe37307254eed82', '172.105.247.100', 1668222087, '__ci_last_regenerate|i:1668222087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19efe151c49773bf6345775c3815eebfc77089ab', '172.105.247.100', 1668222087, '__ci_last_regenerate|i:1668222087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddfcea481a6dfbcd3145882a897d61ce8f520bdb', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d07f9696dde38b52aa332e7ac9e91c621e858c', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1a5d8c1fa6493f41d907222764b8f9c09ef624', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28c360fa336276f44b7791491a506601cc9dfff0', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef84212e3f8c9fe872e7978e815c1ce6858c658', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54da36a60c8af13c7d5a91a8574ba8668e93ea6d', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52851a5c95de2bddd6e6e5e87562d9e063f8b4d', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff5647833ad3bb3fea7fb0e2fb451dee9267234', '172.105.247.100', 1668222088, '__ci_last_regenerate|i:1668222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3bfd4ac71c3cbc1d5db79a10ae409da0a6d7e64', '172.105.247.100', 1668222089, '__ci_last_regenerate|i:1668222089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5536cbbaa0f836d118578b967144d6ec736f963b', '172.105.247.100', 1668222089, '__ci_last_regenerate|i:1668222089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6634597d792aa48e31a7bb3d310ed72221e1239a', '172.105.247.100', 1668222089, '__ci_last_regenerate|i:1668222089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e489ac337b95eb9d040f3eb21b76e32c727de13c', '172.105.247.100', 1668222089, '__ci_last_regenerate|i:1668222089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e1aa549bd85ee46da15b20cff3614808e75a59', '172.105.247.100', 1668222089, '__ci_last_regenerate|i:1668222089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c256830ee24e4c1fe7ccf621aff615c65d8a8d3b', '172.105.247.100', 1668226278, '__ci_last_regenerate|i:1668226278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d7c09c96119a9fdccc1c7a2b00e46141feb110', '172.105.247.100', 1668226278, '__ci_last_regenerate|i:1668226278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa52d4b967defdda320c35bcea04c1012c8030c', '172.105.247.100', 1668226278, '__ci_last_regenerate|i:1668226278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ae7a9bae7264bfb294ae723d1bfc239b1646f7', '172.105.247.100', 1668226278, '__ci_last_regenerate|i:1668226278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbba78ebd8cb0c422b965ff71186a2c5eb3112b', '172.105.247.100', 1668226279, '__ci_last_regenerate|i:1668226279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20452af3bb7244e75125c12d69bb9fb72a070e6', '172.105.247.100', 1668226279, '__ci_last_regenerate|i:1668226279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('512112494f2886f5fda0bf3a33719d959a164a10', '172.105.247.100', 1668226279, '__ci_last_regenerate|i:1668226279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ec33caf89fa34d37e2ea2e3db19adccc9f03e3', '172.105.247.100', 1668226280, '__ci_last_regenerate|i:1668226279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4709375f4e9d6d527d2bd51fa1060ab4d9356b94', '172.105.247.100', 1668226280, '__ci_last_regenerate|i:1668226280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09284df58e8168674fae9c8f5d04eea13728285f', '172.105.247.100', 1668226280, '__ci_last_regenerate|i:1668226280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e8f78946c0752980754cc14246a183e167bc8f', '172.105.247.100', 1668226280, '__ci_last_regenerate|i:1668226280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751b26e02beeeaaba3f06afc18105bd1c5c2e05d', '172.105.247.100', 1668226281, '__ci_last_regenerate|i:1668226281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2921cacccdd8e15adf56972440ac0f68dd4ec585', '172.105.247.100', 1668226281, '__ci_last_regenerate|i:1668226281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('151b73dcd8d53c8b2dc355c41595e521e095642d', '172.105.247.100', 1668226281, '__ci_last_regenerate|i:1668226281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8fc87327075cb75bd97b03866fab119f209edc6', '172.105.247.100', 1668226282, '__ci_last_regenerate|i:1668226282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f9281ce40ab6a83ec69873119d72fd792c4c65', '172.105.247.100', 1668226282, '__ci_last_regenerate|i:1668226282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939e7b8a42ec53cdd396443ca82a9748d0c63b41', '45.120.39.90', 1668229655, '__ci_last_regenerate|i:1668229655;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd53f198f29175a8f343e99c12cb7d6760a2a42', '45.120.39.90', 1668234679, '__ci_last_regenerate|i:1668234679;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668229707;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ed78b4e9a8b40b3adddcf4776611f7dd1b4fc4', '172.105.247.100', 1668230481, '__ci_last_regenerate|i:1668230481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa33686b41a3dcf99b360069e6611d654e08f726', '172.105.247.100', 1668230481, '__ci_last_regenerate|i:1668230481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf95863d43a923e39f313d458173f1e0c7b1d6a', '172.105.247.100', 1668230482, '__ci_last_regenerate|i:1668230482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691da11efc6e581cd67426e3b6eecd9a3bdd9384', '172.105.247.100', 1668230482, '__ci_last_regenerate|i:1668230482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34da29f357c4c228aac98874ef62e2cbcc15ed51', '172.105.247.100', 1668230482, '__ci_last_regenerate|i:1668230482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('989f2e6594927aa3ad01c0080ebee66279b117fd', '172.105.247.100', 1668230482, '__ci_last_regenerate|i:1668230482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1f2bd0d8ef7fe182200e26defe051221ea65db', '172.105.247.100', 1668230482, '__ci_last_regenerate|i:1668230482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bdd1a2eaef263ee3a635f9be55274fd7c27b6af', '172.105.247.100', 1668230482, '__ci_last_regenerate|i:1668230482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fb74234b0c288bf1f51e8e26053ecb7982385c', '172.105.247.100', 1668230483, '__ci_last_regenerate|i:1668230483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94001f4cd4482c5c6e7979401645e42dd52ed21', '172.105.247.100', 1668230483, '__ci_last_regenerate|i:1668230483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75f580f9f1056332e59b3362295570740e1a327', '172.105.247.100', 1668230483, '__ci_last_regenerate|i:1668230483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea77d03daefbf2517c459f752a91abd00db51f1', '172.105.247.100', 1668230483, '__ci_last_regenerate|i:1668230483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8011d3c8291642570ef457422bdfbf2d25b79ef', '172.105.247.100', 1668230483, '__ci_last_regenerate|i:1668230483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9a0931dde73e6796078cbb9d9c93610cc78d3c', '172.105.247.100', 1668230483, '__ci_last_regenerate|i:1668230483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c693b960682df973b156d38c49f6bc116622ef87', '172.105.247.100', 1668230484, '__ci_last_regenerate|i:1668230484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7429624fa8e80a5d8ca9267e54e336dec0ba4396', '172.105.247.100', 1668230484, '__ci_last_regenerate|i:1668230484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ae1bf7b717d6b379d11f411974a2ec416c059d', '205.210.31.139', 1668231529, '__ci_last_regenerate|i:1668231529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd87a4dc4e442eac0bbbe91f6ea190fad6803ea1', '51.159.214.50', 1668234236, '__ci_last_regenerate|i:1668234236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4024e2b4b41c6e0243c936664ebde2354d7673', '51.159.214.50', 1668234236, '__ci_last_regenerate|i:1668234236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d91405a7ca5fc2c84a97d6b28516e49d1db4656', '51.159.214.50', 1668234236, '__ci_last_regenerate|i:1668234236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f16332c957b6f08a89dad41ac8d8f669fc7562', '172.105.247.100', 1668234675, '__ci_last_regenerate|i:1668234675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1dc665b4352f920b7b4e6d4c6208c54ba5ee05', '172.105.247.100', 1668234675, '__ci_last_regenerate|i:1668234675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18dcf1be0f179a25eb1965d23bfa26a5935934e4', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b5469428f61da6f513f8a09a735f76a8d59e8ff', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08bd8a975ef1b3ffe5e8837c71b655068b9c8b0c', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ffc23ff624681b75ead6470fb471f19603b780d', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b8dc1d3af670d09e4907945875d452db5a6c89', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f315f71b2b6bc6345b5b26201fbecf6644ecc9', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2aa8550743ae953ef41f2a793de78458a029118', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd93f62aab87d824f3c592664519c57e1fbdae7', '172.105.247.100', 1668234676, '__ci_last_regenerate|i:1668234676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e6cce027c7512ce7cf0ea531dc8103b371e161', '172.105.247.100', 1668234677, '__ci_last_regenerate|i:1668234677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb74043f972b9978cb361f70026fc10712c82801', '172.105.247.100', 1668234677, '__ci_last_regenerate|i:1668234677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b7a2ca1a68fa5f64705c961af48426aca2d15b4', '172.105.247.100', 1668234677, '__ci_last_regenerate|i:1668234677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ffaedbb6b42d37c72c0bac47df7706853d1586f', '172.105.247.100', 1668234677, '__ci_last_regenerate|i:1668234677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be7eb998bd44ea3e1b067092131787e6065a3ef', '172.105.247.100', 1668234677, '__ci_last_regenerate|i:1668234677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d331056dce3eb055ed6edaa1d43e746796f880', '172.105.247.100', 1668234678, '__ci_last_regenerate|i:1668234677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e889cd4662a023ecfc8c5c22d8e50e212a717c0', '45.120.39.90', 1668235401, '__ci_last_regenerate|i:1668235401;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668229707;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec1f806f540fd789eb871cafd97ed54857ea10a', '45.120.39.90', 1668235737, '__ci_last_regenerate|i:1668235737;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668235626;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d4ffdbadb560c9107197953625fa1ccc338474', '45.120.39.90', 1668237176, '__ci_last_regenerate|i:1668237176;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668235738;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a40762f2881b68ea8f028534dab816e96233dab', '45.120.39.90', 1668238696, '__ci_last_regenerate|i:1668238696;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668237382;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a8e331e4762461e0c5d25c8fce489fa1f611e9', '45.120.39.90', 1668238701, '__ci_last_regenerate|i:1668238696;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668159690\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668238701;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6e164cda21db7e5c7491e47005831909e7857b', '172.105.247.100', 1668238884, '__ci_last_regenerate|i:1668238884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b83904ad50b24234e3233793e83d142cd5d12a7', '172.105.247.100', 1668238884, '__ci_last_regenerate|i:1668238884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd769a0851c9123b590d2d471a14e945570c7de', '172.105.247.100', 1668238885, '__ci_last_regenerate|i:1668238885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a66f956a7e88b1a7d354507e84c5be703e1a71', '172.105.247.100', 1668238885, '__ci_last_regenerate|i:1668238885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0841664fe050881deb92a00f3d4418f1ad8b63', '172.105.247.100', 1668238885, '__ci_last_regenerate|i:1668238885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c61c127ff569a68235af51921c063ee3bb44fb7', '172.105.247.100', 1668238885, '__ci_last_regenerate|i:1668238885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf4b0a16a007cd3cb33b5e6716cc062bb831c2db', '172.105.247.100', 1668238885, '__ci_last_regenerate|i:1668238885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb26aae6cbeeaae64c41104ca6265c1fc0071db', '172.105.247.100', 1668238885, '__ci_last_regenerate|i:1668238885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba110ca6241b6297a91b0cbcbc4ec8ebceef3e44', '172.105.247.100', 1668238886, '__ci_last_regenerate|i:1668238886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3abf7e4ce1dbcc87eb51f6379d75b99add7bcd90', '172.105.247.100', 1668238886, '__ci_last_regenerate|i:1668238886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0052848563f432b77ed63af24814741c7be0a350', '172.105.247.100', 1668238886, '__ci_last_regenerate|i:1668238886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec9e0e8ed15b8dbf9673fb28099d7219fe21350', '172.105.247.100', 1668238886, '__ci_last_regenerate|i:1668238886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('106118359e7ed5f12df054ae81fc5763a01b57a4', '172.105.247.100', 1668238886, '__ci_last_regenerate|i:1668238886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df56223a8ca164436f16640ff2ee45d2bc708a11', '172.105.247.100', 1668238886, '__ci_last_regenerate|i:1668238886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d49b1f9a92a19e65fffec51dea74429376aae4b', '172.105.247.100', 1668238887, '__ci_last_regenerate|i:1668238886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88f9fcfdf4974e10547ef07e177df89729dc6a9', '172.105.247.100', 1668238887, '__ci_last_regenerate|i:1668238886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d51c8c4dbb42811462b0119a5a986fd68af477f', '172.105.247.100', 1668243079, '__ci_last_regenerate|i:1668243079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e33b3ac5513cb5561a8e6a27d5aeca0f479a9d', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6848990b6219edc487a1d95eb8a9170c52270ec', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21af1efdc6e2632594a06cc9ad8cfbd9927599e', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99c87d7f92857d099a16c29cdd70664d8d553c4', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4721aff431f630f0a5884d41417de68624bcae0', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbdc7a6952cb892156a1f10ffefe8ee99e63715', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e8bdbda008097ba55f5e22a93f235212174c5d', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a575b7eb9ac42cab29082cb4d79567c0428d530', '172.105.247.100', 1668243085, '__ci_last_regenerate|i:1668243085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821cd289f5e080407004a9959a324267a98da374', '172.105.247.100', 1668243086, '__ci_last_regenerate|i:1668243086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a826ff3fa8ece26606d76cfdb789611d8f703fea', '172.105.247.100', 1668243086, '__ci_last_regenerate|i:1668243086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d328314792bb0182a1506f50d36d57494ea21b08', '172.105.247.100', 1668243086, '__ci_last_regenerate|i:1668243086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b0a3e820eed56c2e9c635770f25225d53fdf9fc', '172.105.247.100', 1668243086, '__ci_last_regenerate|i:1668243086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb6130b5e856da6e8033e937907eeedc9a0dfe5', '172.105.247.100', 1668243086, '__ci_last_regenerate|i:1668243086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e689ab8b8d70ca92d722a733afabd87d6b0cf1', '172.105.247.100', 1668243086, '__ci_last_regenerate|i:1668243086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('106c59e495a7431221cf90b3b0a5738ed0188084', '172.105.247.100', 1668243087, '__ci_last_regenerate|i:1668243086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da2dcf04195d0f0a1b7f6edc0b4f34f30d9e136', '45.120.39.90', 1668246620, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668246620;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668246371;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a24798c13d9825caa39d08316806d4d89f54b4', '45.120.39.90', 1668246253, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea7e6c18bae325f8ed54a7f0c7d9c8cf034e5ee', '45.120.39.90', 1668246253, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196a6b7dc2029c6843139aecd18e6b155b4a86d3', '45.120.39.90', 1668249398, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668249398;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668246731;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8acc15546e0762fdb05e593ca8d66b3275ee2ec4', '172.105.247.100', 1668247275, '__ci_last_regenerate|i:1668247275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d47a1a5d4229ecf03fc3e79c31b008c6d10b160', '172.105.247.100', 1668247276, '__ci_last_regenerate|i:1668247276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442bba3a7465b6c24e5312809d0ca327dc587dc1', '172.105.247.100', 1668247276, '__ci_last_regenerate|i:1668247276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eff1e64d2102a3635f5603aad84aa542de46965', '172.105.247.100', 1668247276, '__ci_last_regenerate|i:1668247276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37a7b92a53c899c8c7d6100e451c9bd057ae0eaf', '172.105.247.100', 1668247276, '__ci_last_regenerate|i:1668247276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bab9855db003ccd12cced59e0d3f484dcf9f806', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595fdb2fa0464a3c6f3c4a7fc3c8526782de86c8', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620df5b12778d88230372dcfb090410d129639a3', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b531251f14b1c3ea9170367bb28f9d36c02095', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2d9841bde21598dbac03f1348667b7aa248d78', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ae47392ff8ae4048c91cfd4b87a6c66e92084d', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b4ec87503779738f9968df58378ff1add189f0', '172.105.247.100', 1668247277, '__ci_last_regenerate|i:1668247277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07216aec1e0b7bc8bc09521d41574d4152d38c26', '172.105.247.100', 1668247278, '__ci_last_regenerate|i:1668247278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5760a09ea4deb8eca13f04b88d17b1d23245fe', '172.105.247.100', 1668247278, '__ci_last_regenerate|i:1668247278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87bde75cdcf1cc994fe98b661a7fec7447a42da', '172.105.247.100', 1668247278, '__ci_last_regenerate|i:1668247278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45946e7accfcfa9172bcbbdf98184df731f86ad3', '172.105.247.100', 1668247278, '__ci_last_regenerate|i:1668247278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2df1046a2e3c3b1b81a98e09edd0951b6310c75', '45.120.39.90', 1668249976, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668249976;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668249423;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce9f5cf33be1ac614d3756aa9548bb947aa6a56', '45.120.39.90', 1668252332, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668252332;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668252302;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fccfd3bc2583067e3f8b989b3558edd81da0be', '172.105.247.100', 1668251475, '__ci_last_regenerate|i:1668251475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ea9dee12fbf5faf4f0d6579ba58765cfa18780', '172.105.247.100', 1668251475, '__ci_last_regenerate|i:1668251475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ecae7fee7a7ea27f317319bb0765cf8bb122747', '172.105.247.100', 1668251475, '__ci_last_regenerate|i:1668251475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24bbb3f50441466887f1ee61c2ac2fb7423da894', '172.105.247.100', 1668251475, '__ci_last_regenerate|i:1668251475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f81bc483256078da331b9d09480b8471761fc9', '172.105.247.100', 1668251475, '__ci_last_regenerate|i:1668251475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0383c4611664f81a55a406b869489a707bc52c6', '172.105.247.100', 1668251475, '__ci_last_regenerate|i:1668251475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3eb23f79ca5f1c99096aa104a57b1c41ed00886', '172.105.247.100', 1668251476, '__ci_last_regenerate|i:1668251476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292e21e4a458c42c01d5e10fb2287363f2e03cd2', '172.105.247.100', 1668251476, '__ci_last_regenerate|i:1668251476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf24f29b34e6ac9e1864f693eb6488500bc79ea5', '172.105.247.100', 1668251476, '__ci_last_regenerate|i:1668251476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ee791478987fff28d34aed77d0af8f60147b69', '172.105.247.100', 1668251476, '__ci_last_regenerate|i:1668251476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0ba29fe56a200238b77e62357bbc9f97a2ba3c', '172.105.247.100', 1668251476, '__ci_last_regenerate|i:1668251476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54e5ed67d5d632bbc5d09ebb88ddbc9fbd0f1b7', '172.105.247.100', 1668251476, '__ci_last_regenerate|i:1668251476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ebdec0aab784349026f9a690eadb1ce067bf727', '172.105.247.100', 1668251477, '__ci_last_regenerate|i:1668251477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf96afb129e0d2a95f6e9253d4ec10e5f19b58cb', '172.105.247.100', 1668251477, '__ci_last_regenerate|i:1668251477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d477c8d4da3ed9f425426661b9a7b633228e38', '172.105.247.100', 1668251477, '__ci_last_regenerate|i:1668251477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9718f4dd60cac5829b751adfe8f8e5454ce6f511', '172.105.247.100', 1668251477, '__ci_last_regenerate|i:1668251477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e442d9bdf5348d258ccdbad75314f01a69da0d57', '45.120.39.90', 1668253463, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668253463;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668252349;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cffab8b383fa4317dbabba40712ee8c702d1c5', '45.120.39.90', 1668258857, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668258857;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668258842;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b71c9d1dd18d65e5d03b4ad6fd62ebe2666fa65', '172.105.247.100', 1668255677, '__ci_last_regenerate|i:1668255677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1f8d2a4028e368b772712e809ed0b4c3d704c15', '172.105.247.100', 1668255677, '__ci_last_regenerate|i:1668255677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55ef3d1733c3d12a9dfd8f9543edb184a687224', '172.105.247.100', 1668255677, '__ci_last_regenerate|i:1668255677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8943ab0330bc82757bdb41f8c1c90e7c0fd1d8b', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b6564ec66af1f50e3718f86abbb26d2aa8eadf', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('810192dcb391f443ac50186ecbb9368067a4cd08', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c6f14f659405f02eb14ad9f3715b55b7d67196', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a732520daad0556f1b09270b7ce5504bce0391', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554780fd34c8308d9293959ba6875051884962fb', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa92c09121bdcc11cfc6b72112598f2b9fb46a6', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c95015ddb26a2aaeb28a3d0a281962eee79be14', '172.105.247.100', 1668255678, '__ci_last_regenerate|i:1668255678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12a2031089ed2264fabf8ec1de78c48b02cb83b2', '172.105.247.100', 1668255679, '__ci_last_regenerate|i:1668255678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72c56cf4e833ac934c123f36b204f23a52803ba', '172.105.247.100', 1668255679, '__ci_last_regenerate|i:1668255679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a5470cebb33103d85a6ffa394852cde3c9e3d4c', '172.105.247.100', 1668255679, '__ci_last_regenerate|i:1668255679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5ccc4ebbacd457f2bdc9130bac6d08778172e6', '172.105.247.100', 1668255679, '__ci_last_regenerate|i:1668255679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad6450a1e57a256db64810d22977de72d3f6f29', '172.105.247.100', 1668255679, '__ci_last_regenerate|i:1668255679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74107768a0cd27b47bb5703bb2d9f593499374be', '45.120.39.90', 1668262363, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668262363;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668262343;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef84d1ad8afe91d9aad7d878e1046e2e2af5a67', '172.105.247.100', 1668259875, '__ci_last_regenerate|i:1668259875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e35c3057ef6b256974a2091a573cfab0f14ca2', '172.105.247.100', 1668259875, '__ci_last_regenerate|i:1668259875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c758cf69408bb3c256c905ad9fb12de7b03eb97', '172.105.247.100', 1668259875, '__ci_last_regenerate|i:1668259875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1561c1a7a83f30731ffa01cd6d4b5be9b155e9e', '172.105.247.100', 1668259875, '__ci_last_regenerate|i:1668259875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93bce03ebf5a6a643f627b5fae7831e442e5ac9a', '172.105.247.100', 1668259876, '__ci_last_regenerate|i:1668259876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1a994f455805f8a4c93cc9d149f3cb471caaef', '172.105.247.100', 1668259876, '__ci_last_regenerate|i:1668259876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5948e304ea609f66861c7bee4ca5b859a2bf9b98', '172.105.247.100', 1668259876, '__ci_last_regenerate|i:1668259876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb3329734fc025ea6beccc776e1b261116e6678', '172.105.247.100', 1668259877, '__ci_last_regenerate|i:1668259876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4886d11eb1e12a9d6def8f7187c1ed266e3ad708', '172.105.247.100', 1668259877, '__ci_last_regenerate|i:1668259877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253c4751cef0b0eb9a360e8afb27bea6a24f121a', '172.105.247.100', 1668259877, '__ci_last_regenerate|i:1668259877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06fcc86d05fea79c63fb8b72da1d2cf5d08fc53f', '172.105.247.100', 1668259877, '__ci_last_regenerate|i:1668259877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b03bd71ce6c025b9eb917c059e08c415ca7978', '172.105.247.100', 1668259878, '__ci_last_regenerate|i:1668259878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b79724c03bfad8007bb0314df5b267214afd6e', '172.105.247.100', 1668259878, '__ci_last_regenerate|i:1668259878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e995e6c04679433f3295608b826db11c27b36d5a', '172.105.247.100', 1668259878, '__ci_last_regenerate|i:1668259878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a52cfb4e76a61560da1418252dbfc852c6f8ffa2', '172.105.247.100', 1668259879, '__ci_last_regenerate|i:1668259879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71503d612b98ea79a48331d0761c18dc551f62d6', '172.105.247.100', 1668259879, '__ci_last_regenerate|i:1668259879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291b148f82adfde93578a57d0d48af80e0c0dbe9', '45.120.39.90', 1668263830, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668263830;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668263807;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97e3afeac540ac8a56af956a789217c45a7d9a1', '45.120.39.90', 1668265016, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668265016;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668263831;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3414657976a88e0bd77e4f7032c0ed3d915a40', '172.105.247.100', 1668264083, '__ci_last_regenerate|i:1668264083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054137078aee6188bd11bb823ce5fe5236785bad', '172.105.247.100', 1668264083, '__ci_last_regenerate|i:1668264083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c82a2253e0b63b9be481177b075c443cd43443d', '172.105.247.100', 1668264083, '__ci_last_regenerate|i:1668264083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ed248b55fe058cb6cc0291a578b8da4e06b80e', '172.105.247.100', 1668264083, '__ci_last_regenerate|i:1668264083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a059a8a5605d61c9713abe700407b1ae6d8fdffe', '172.105.247.100', 1668264083, '__ci_last_regenerate|i:1668264083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41660ef604f3d63845843570ec927f4af20542fb', '172.105.247.100', 1668264083, '__ci_last_regenerate|i:1668264083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e573b8a87749a75d87c3892131b993cd114e94', '172.105.247.100', 1668264084, '__ci_last_regenerate|i:1668264084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc607eef0364168c8a4eff45e43c2a8d1ba58a1', '172.105.247.100', 1668264084, '__ci_last_regenerate|i:1668264084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff639c204352a8a793dbb3d9331b0c577ed474c', '172.105.247.100', 1668264084, '__ci_last_regenerate|i:1668264084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7dfa44abc358648b20b679376cc19441738e97', '172.105.247.100', 1668264084, '__ci_last_regenerate|i:1668264084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d47acc3f28563e69a74bf6f8c421c287dfeda07', '172.105.247.100', 1668264084, '__ci_last_regenerate|i:1668264084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c2d2598958400f31e2801999298225c883f1e9', '172.105.247.100', 1668264084, '__ci_last_regenerate|i:1668264084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a677c55644805f93613bafbd5c964ce1e0b58c2', '172.105.247.100', 1668264085, '__ci_last_regenerate|i:1668264085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260ef5cdd93346ff7b2e8b52cd8e534d275c471b', '172.105.247.100', 1668264085, '__ci_last_regenerate|i:1668264085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20e27f9a238b45978c22b92bd9366e99edc620d', '172.105.247.100', 1668264085, '__ci_last_regenerate|i:1668264085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4efd79815502c225c0a3591c376d40ccb12198f0', '172.105.247.100', 1668264085, '__ci_last_regenerate|i:1668264085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6687471475e54e3845e342ebf2f38a89c6267682', '45.120.39.90', 1668265451, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668265451;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668265379;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c12472123499cae76b4129e7d339df07d63e38d', '45.120.39.90', 1668266065, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668266065;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668266059;register_id|s:3:\"246\";cash_in_hand|s:8:\"830.0000\";register_open_time|s:19:\"2022-11-11 21:13:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69dd28d0f8b8bb4dc23d3ceab94cb14bf35a6f31', '45.120.39.90', 1668266086, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668266065;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668229434\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668266086;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce66e2373fed7f77d515f8b270e2549be1c3100', '116.204.230.24', 1668266339, '__ci_last_regenerate|i:1668266290;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1667873500\";last_ip|s:14:\"116.204.230.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377b72c8a42063397a02aab612d414f91ea88b8f', '172.105.247.100', 1668268274, '__ci_last_regenerate|i:1668268274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc41740e6d2d4976259a3e15f15ecfdfc5905c94', '172.105.247.100', 1668268274, '__ci_last_regenerate|i:1668268274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c3f032b3b0f09dd247eeddca08dc25cf6f248f', '172.105.247.100', 1668268274, '__ci_last_regenerate|i:1668268274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d0924097b4ed9f73193f7ceb7d4b64cd68a3c8', '172.105.247.100', 1668268275, '__ci_last_regenerate|i:1668268275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca29a1aa1dfdd466c10a2ee0d02f0d6636471f3', '172.105.247.100', 1668268275, '__ci_last_regenerate|i:1668268275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5f1b39ac1c52ba5dde39406f616050ecdb63cd', '172.105.247.100', 1668268275, '__ci_last_regenerate|i:1668268275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a64504be6f0a037e77b72bf5209a30f036c527', '172.105.247.100', 1668268276, '__ci_last_regenerate|i:1668268276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a283c2366b1d3fd3909d2c9aeb909daeb16b0d95', '172.105.247.100', 1668268276, '__ci_last_regenerate|i:1668268276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d0ba02cc3f0ab9b0e541665d365a419a6d148b7', '172.105.247.100', 1668268276, '__ci_last_regenerate|i:1668268276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa6b1cea4d8104095a6c2909a15a14c85516a2d', '172.105.247.100', 1668268276, '__ci_last_regenerate|i:1668268276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e02eac74b0b9823ee8b49f99813477390306c17', '172.105.247.100', 1668268277, '__ci_last_regenerate|i:1668268277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f899efc79b4a6bd72dfdbaf23762c280b53304', '172.105.247.100', 1668268277, '__ci_last_regenerate|i:1668268277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51068f11a265752e5acd175a7ba32d3ea65605f9', '172.105.247.100', 1668268277, '__ci_last_regenerate|i:1668268277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd08adf106098252f20e856a6e354f4b97eb23f', '172.105.247.100', 1668268277, '__ci_last_regenerate|i:1668268277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593841efa68de07e44019371d981049d0211d299', '172.105.247.100', 1668268278, '__ci_last_regenerate|i:1668268278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6369d71c7817b91d3dd66242df13445a6144713e', '172.105.247.100', 1668268278, '__ci_last_regenerate|i:1668268278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71f33445788d687eeb2faf0576b8c66a112cff6', '172.105.247.100', 1668272477, '__ci_last_regenerate|i:1668272477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982e8b0cca036973a6d606744d0049966ec5ed39', '172.105.247.100', 1668272479, '__ci_last_regenerate|i:1668272479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef72b0d53fd28b11a8bc3812a72e7b5a394de769', '172.105.247.100', 1668272480, '__ci_last_regenerate|i:1668272480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4124a719eae496360004cf686039ace4e27de469', '172.105.247.100', 1668272480, '__ci_last_regenerate|i:1668272480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3166a2c8e211370fec9a71129886e568a6ec047d', '172.105.247.100', 1668272480, '__ci_last_regenerate|i:1668272480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad7578922479c20eb6a94d07e29e7125361b69c', '172.105.247.100', 1668272480, '__ci_last_regenerate|i:1668272480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c548204fd5dfa65558b5b7b69ae5fd498156e8ee', '172.105.247.100', 1668272480, '__ci_last_regenerate|i:1668272480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76873f109b75e6caffa06a2421fbb08d099a5f38', '172.105.247.100', 1668272480, '__ci_last_regenerate|i:1668272480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8926d3ebf15b5564f8a767d796b87b013a4514', '172.105.247.100', 1668272481, '__ci_last_regenerate|i:1668272480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398f5507ae2b6dbbca037bcc2c018021335eded4', '172.105.247.100', 1668272481, '__ci_last_regenerate|i:1668272481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bd011dc2652532a6180376d02442e3aa3565d9', '172.105.247.100', 1668272481, '__ci_last_regenerate|i:1668272481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e549a44fd34b099802eec67a8ea68a8625cc48', '172.105.247.100', 1668272481, '__ci_last_regenerate|i:1668272481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36678111526372ecf7bfae283c8b3c6c1576b339', '172.105.247.100', 1668272481, '__ci_last_regenerate|i:1668272481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d050bdf63cf1b7bf9062e78db8ad8ed8240d88', '172.105.247.100', 1668272481, '__ci_last_regenerate|i:1668272481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa47ed34dee49e82813f0d57d82763459e0fae0', '172.105.247.100', 1668272482, '__ci_last_regenerate|i:1668272482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de13587266ff38a4c80dbc4da42b5fc84ad4ae5', '172.105.247.100', 1668272482, '__ci_last_regenerate|i:1668272482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d76064e4bb05f2827d02bd116e706c6a0a809bf', '172.105.247.100', 1668276672, '__ci_last_regenerate|i:1668276672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5ec437d6cbb32ebaf4ada7bc4f295a83531e2a', '172.105.247.100', 1668276672, '__ci_last_regenerate|i:1668276672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57310681548ef9b2e84c9d60f75bd26c96d9552a', '172.105.247.100', 1668276672, '__ci_last_regenerate|i:1668276672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688cd38d632c448829a0bb70ed7c9894c609e937', '172.105.247.100', 1668276673, '__ci_last_regenerate|i:1668276673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b75838525afddc3efe1ba2b0e0b563954d72711', '172.105.247.100', 1668276673, '__ci_last_regenerate|i:1668276673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcda5aacbe814f628981d3fd2184654203d6447e', '172.105.247.100', 1668276673, '__ci_last_regenerate|i:1668276673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99f0e12184977bb75f5af81ae5337b5e2f54dcf', '172.105.247.100', 1668276673, '__ci_last_regenerate|i:1668276673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d452b4d2808fe6f44bbbaacc4cf52ec5163c20a', '172.105.247.100', 1668276674, '__ci_last_regenerate|i:1668276674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70f5c7e484249d20fdab6699d19b9396317505c', '172.105.247.100', 1668276674, '__ci_last_regenerate|i:1668276674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72fb62d87d5bea779ae9ddc19be6b896046e829a', '172.105.247.100', 1668276674, '__ci_last_regenerate|i:1668276674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b47051b97cddcc5252128e2bcb4dee1963e7142', '172.105.247.100', 1668276674, '__ci_last_regenerate|i:1668276674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202c29873032ff26fbaafb34fa1b4f565d9b743b', '172.105.247.100', 1668276675, '__ci_last_regenerate|i:1668276675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f2a947614c2bf9686fea90388cd093ac91771aa', '172.105.247.100', 1668276675, '__ci_last_regenerate|i:1668276675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016a6f70149071b5cbb4b05ac24350517632302f', '172.105.247.100', 1668276675, '__ci_last_regenerate|i:1668276675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06b6c66941d799dbfd33747485bee8143e2e480', '172.105.247.100', 1668276676, '__ci_last_regenerate|i:1668276675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db44cdfd474d9d6d181a2fb292f9b32eae1fb233', '172.105.247.100', 1668276676, '__ci_last_regenerate|i:1668276676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba30ee0a57234a267e6230c5c6af0efdac2ebca', '172.105.247.100', 1668280872, '__ci_last_regenerate|i:1668280872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c5ab0b9dee3b2466a17a33488005adf2b13b60', '172.105.247.100', 1668280872, '__ci_last_regenerate|i:1668280872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f10ba9a4cc2b7a57edead4da5a6d4cfbc87c5e1', '172.105.247.100', 1668280873, '__ci_last_regenerate|i:1668280873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374d85f3f735a8561cf11e0d8f01441e0e723cbb', '172.105.247.100', 1668280873, '__ci_last_regenerate|i:1668280873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3960a1ad188058385b61fd19eb71ee64049d5235', '172.105.247.100', 1668280873, '__ci_last_regenerate|i:1668280873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b13889927328e6814d7f3eaabff25ddeb528873', '172.105.247.100', 1668280874, '__ci_last_regenerate|i:1668280874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc5919fe9c2c883d9a96e131e4836a9d48505c9', '172.105.247.100', 1668280874, '__ci_last_regenerate|i:1668280874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f442a3908b7871e4f864da1f305899253d5bc2f', '172.105.247.100', 1668280874, '__ci_last_regenerate|i:1668280874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99221d1ff082addfce1441d3de27b3454476c49d', '172.105.247.100', 1668280874, '__ci_last_regenerate|i:1668280874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3fbbe001c056cf2ab1c427bdecdeda4373e34ec', '172.105.247.100', 1668280875, '__ci_last_regenerate|i:1668280874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4f0821fcd85ab02013647f8667f314df33a325', '172.105.247.100', 1668280875, '__ci_last_regenerate|i:1668280875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f63170a4fa79dc57bda0165e77edc7f46a1f37', '172.105.247.100', 1668280875, '__ci_last_regenerate|i:1668280875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49389633b560eb0670040c4af59ecb11b4092f7f', '172.105.247.100', 1668280875, '__ci_last_regenerate|i:1668280875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b06d6d05f8c20407726ac956cab5f7de27f344b5', '172.105.247.100', 1668280875, '__ci_last_regenerate|i:1668280875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ff63d7f8b44e79970b05d18e9c9d7eefb62880', '172.105.247.100', 1668280876, '__ci_last_regenerate|i:1668280876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d44626b57e67ced54e7843bbcd7e7a7bd61618d', '172.105.247.100', 1668280876, '__ci_last_regenerate|i:1668280876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177cdae66ef0e37e3250813b11fe2aa5cb89247b', '172.105.247.100', 1668285074, '__ci_last_regenerate|i:1668285074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34fd48e249b06ed03df148596c602fb10d98b2c9', '172.105.247.100', 1668285074, '__ci_last_regenerate|i:1668285074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa499bb23be1c1566c9dc1f243d9922385d34a4', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d28e5210bb10976a1a93e40ef09b1f9b3b83d6', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b870db48aaf401710c309675381b092cb4fc0379', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e8c6490edc5e04872e539ba3867fac24708c9e', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ac5a45867683db75d4d2a25de8ba8254c94f60', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b840d66caec888b4d85a552dbcc6f70dfad9de', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871156b560995b66e2a172f7fdc0beaba09b66ac', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c39ad210cd052bfc4dc386885803cc23a57beae6', '172.105.247.100', 1668285075, '__ci_last_regenerate|i:1668285075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a578f8255b9ac7fd79879a80fe8ccfa47b81a95', '172.105.247.100', 1668285076, '__ci_last_regenerate|i:1668285076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c314849b5214990d974a484d5cb6f7fa9b708c9', '172.105.247.100', 1668285076, '__ci_last_regenerate|i:1668285076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868913cbda264098948c65964ca88fc5ae263d0f', '172.105.247.100', 1668285076, '__ci_last_regenerate|i:1668285076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b1c878225af11ba08ed8a24c2fcd84c7b73c24', '172.105.247.100', 1668285076, '__ci_last_regenerate|i:1668285076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82dfe338e06043959726e721abc2e95d779bf683', '172.105.247.100', 1668285076, '__ci_last_regenerate|i:1668285076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1532ce4680d72168a28060e9f0f6c6f02aca23f8', '172.105.247.100', 1668285076, '__ci_last_regenerate|i:1668285076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68dfb25e35e3d0ade39ca5e4582ee9ab5e5fe961', '172.105.247.100', 1668289276, '__ci_last_regenerate|i:1668289276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e164c7aad1301aacf9a62be882fe09e8debd38f', '172.105.247.100', 1668289276, '__ci_last_regenerate|i:1668289276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fabb71f02e1596796bdf58e74b3f4d50f4cb4d', '172.105.247.100', 1668289278, '__ci_last_regenerate|i:1668289278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef419de02943ae463bd71fcf6ce2390abbaf6e5', '172.105.247.100', 1668289278, '__ci_last_regenerate|i:1668289278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe6bb7ee526eefea2ef13f7f997614b40b4c939', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44019c7a83b2b958f0a3bf1158d0a7baef0826d4', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a35b45c44a1146a1341bf6bbbba506a32b9c28', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b602e424998bb4930ac6d7868826164d819b981d', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f5b05a2761eef14b6a411b5955cf8e6f6e7980', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff22c652c8705d636a0d6650c6871866aab962e', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68d5701e4b9791cf13c868f35302ce7a96201b7', '172.105.247.100', 1668289279, '__ci_last_regenerate|i:1668289279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a5d3e75a096b4700b0d3641e1a317630bd087c', '172.105.247.100', 1668289280, '__ci_last_regenerate|i:1668289279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661dff909d2b0d3f35e9f4a6da3b58b8719ea0a3', '172.105.247.100', 1668289280, '__ci_last_regenerate|i:1668289280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e1ec84bd0db33a32a7269c54ea1784e9036a0b', '172.105.247.100', 1668289280, '__ci_last_regenerate|i:1668289280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13b59a1136668349f46308c590eadba941cdad6', '172.105.247.100', 1668289280, '__ci_last_regenerate|i:1668289280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9364f497f0deb2878dc51d0ebdb79264ca4a0b', '172.105.247.100', 1668289280, '__ci_last_regenerate|i:1668289280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e5e7e11e6b9f3a8c26b29a4ce060528d5c199f', '172.105.247.100', 1668293478, '__ci_last_regenerate|i:1668293478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f1c8754c8c361defdf58ace7a674f3068ba0c8', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d95c028853294273a343003c84a4e4986d6a67', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d6441ac7cff9c91fa857dfbb24ab24cbedfd4a', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c95435063f63df76a0bed3babd05e309826a30f2', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49416bb07888ecb3ab9b11a965b17d6a5194508f', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348a7c1ba03920a11cb182f8bb4f85c5269ace22', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8135600fa111bff5cb66591fe7d68c05fd73c56d', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84b3db660b665298d0d92c2967c77203d42f466', '172.105.247.100', 1668293479, '__ci_last_regenerate|i:1668293479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0a1ea7a1229e43a0d06e13f67ed6df01cdf365', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9d68a82807223b12d5d54a2ad8c5ba1f7d40f7', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081f66a8d8635a38f72288601e6e285a3f85c99b', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a2bb2aa5737513207b880b2af42d010eeefbc7b', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736c0363f2f93267e251c289652f0ae11e818801', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760fc32be059ac0f0c7720dcadd1af6c81ecaf6d', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa4222a73732c6be1cf923127da341a527e0189', '172.105.247.100', 1668293480, '__ci_last_regenerate|i:1668293480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8df642bc2341c7e4706a7dd0662580b62cfe595', '103.98.152.12', 1668294167, '__ci_last_regenerate|i:1668294167;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87d5b8a7d76abfd31fad862131eaca66a0274d4', '103.98.152.12', 1668294169, '__ci_last_regenerate|i:1668294169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48b181b05d70945b969c14ac8016224e5050e82', '103.98.152.12', 1668294170, '__ci_last_regenerate|i:1668294170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9742ce7365dff9f7828c88bafc8dd22cb9fe20', '103.98.152.12', 1668294171, '__ci_last_regenerate|i:1668294171;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea383f3490ed471eace7dfb46675faeb0b2e2a8e', '172.105.247.100', 1668297673, '__ci_last_regenerate|i:1668297673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a678d41235c21bfd3227dc409b00b57af361dc', '172.105.247.100', 1668297673, '__ci_last_regenerate|i:1668297673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fb648aa4af24d1207959694b96296c5f04f7b3', '172.105.247.100', 1668297673, '__ci_last_regenerate|i:1668297673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1543b66356186ca6a92e63e1e50fed683f081752', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbb0c8ed1667c0b4244245895b2c5f70a2d030c', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec3d401a2ddd57c91517601c8af8d10cea32036', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0889cef48b3147b25bf3f4cc25fc23ae91ed77', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169093d8a606880c9d93af62575f2e6c152f4461', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef3cd95363aafbb7b1a6d007d74a7dd52c17271', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee270fa65baa00b3fba3c0527c39d1bbf73f40e', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6868ed06b3f5dd6716ab78dc48956f7d74bd6c60', '172.105.247.100', 1668297674, '__ci_last_regenerate|i:1668297674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3f74939a3797d1460d95378219b46a81365bd2d', '172.105.247.100', 1668297675, '__ci_last_regenerate|i:1668297675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e27d0de4008fde881e7a06e783e230fbb16198', '172.105.247.100', 1668297675, '__ci_last_regenerate|i:1668297675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('921be98258a90ca5e7f6e53daa83a8173a3027cf', '172.105.247.100', 1668297675, '__ci_last_regenerate|i:1668297675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451a72893ac64bed5e57c3661076bb18820c18ec', '172.105.247.100', 1668297675, '__ci_last_regenerate|i:1668297675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7dbc1d8ebbc933673ac05f25355a573a0c03c2f', '172.105.247.100', 1668297675, '__ci_last_regenerate|i:1668297675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5864da6cdbca27ac2e4558fad1e1bf6e2462379', '172.105.247.100', 1668301877, '__ci_last_regenerate|i:1668301877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21b6172ac39b0a5cc0e92a104a696926bd9b759f', '172.105.247.100', 1668301877, '__ci_last_regenerate|i:1668301877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e86f30f2729717b35909c8f87fe409c13187090', '172.105.247.100', 1668301878, '__ci_last_regenerate|i:1668301877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772d1b63357e26deafd519c8f9f850989ac52226', '172.105.247.100', 1668301878, '__ci_last_regenerate|i:1668301878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f03db7ed60fafb8467181ce19694325ed652cf2', '172.105.247.100', 1668301878, '__ci_last_regenerate|i:1668301878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc2667d6a477e6c288c7bf0d529505fb4257b7b', '172.105.247.100', 1668301878, '__ci_last_regenerate|i:1668301878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce9dfe0d866d0c4c8168e58404878bbb87aa7b6', '172.105.247.100', 1668301879, '__ci_last_regenerate|i:1668301879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f837814ab32476fe7b3814d783495af4f79a243', '172.105.247.100', 1668301879, '__ci_last_regenerate|i:1668301879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1706dcc19ad5c8da3f5516280d69fa1fefc2a586', '172.105.247.100', 1668301879, '__ci_last_regenerate|i:1668301879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a1db3cacf8aaca289909fb357a2e1a18c47928', '172.105.247.100', 1668301880, '__ci_last_regenerate|i:1668301880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8e99e128fb75a609cb90f41505bb691a234532', '172.105.247.100', 1668301880, '__ci_last_regenerate|i:1668301880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f798698c25ae506ea05bd73717c252a4d8b92f', '172.105.247.100', 1668301880, '__ci_last_regenerate|i:1668301880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06622e55a0f1d7a8a38ddc90f73c7222e132021', '172.105.247.100', 1668301881, '__ci_last_regenerate|i:1668301881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36bea9493760d4e46b951c7a7c8ee96d90bdbf72', '172.105.247.100', 1668301881, '__ci_last_regenerate|i:1668301881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c61b6766e78d1900570d5a939a440a7de642b67', '172.105.247.100', 1668301881, '__ci_last_regenerate|i:1668301881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25be03d660b5c6ed8a2e3389e124379e3e8393ff', '172.105.247.100', 1668301881, '__ci_last_regenerate|i:1668301881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4dfe0fb482b1ea5d5ff5dbb4738f2785df35697', '172.105.247.100', 1668306078, '__ci_last_regenerate|i:1668306078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67d160450dde2e157a1acd9245cb22392cc26c5', '172.105.247.100', 1668306078, '__ci_last_regenerate|i:1668306078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1abc100ff14b9a1ebc4c71d9bd9990505acedf3', '172.105.247.100', 1668306078, '__ci_last_regenerate|i:1668306078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41419e70628b56d0d8b4bd4b70eb48c31c57d2b', '172.105.247.100', 1668306079, '__ci_last_regenerate|i:1668306079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e1741beedd49781306a16d68e67c3b4554cff6', '172.105.247.100', 1668306079, '__ci_last_regenerate|i:1668306079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0598ad281f62e68de8871aa13722293021f8b1ec', '172.105.247.100', 1668306079, '__ci_last_regenerate|i:1668306079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bfb620206b1577071bf9cbfb3441f229a03bf0b', '172.105.247.100', 1668306079, '__ci_last_regenerate|i:1668306079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57c574ee9a628206083b0f7f1690e235a7b8d1a8', '172.105.247.100', 1668306079, '__ci_last_regenerate|i:1668306079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05bfa82fbc3517f21251ec8017a2f2649cdd8342', '172.105.247.100', 1668306079, '__ci_last_regenerate|i:1668306079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd7265b83f236071138cdad805eff0f7236326b', '172.105.247.100', 1668306080, '__ci_last_regenerate|i:1668306079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc06c080b4e9b3fddc25c86cf899d36e177de2e', '172.105.247.100', 1668306080, '__ci_last_regenerate|i:1668306080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e80012f170080b83690ccaaa87115918e59f60e', '172.105.247.100', 1668306080, '__ci_last_regenerate|i:1668306080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2bea127ba70b25f8a3bce5af6aa9af284ec88d', '172.105.247.100', 1668306080, '__ci_last_regenerate|i:1668306080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c891275095094bc33458c9ed4de6bea8b8d435e', '172.105.247.100', 1668306080, '__ci_last_regenerate|i:1668306080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22500e281784c399c2e8181e878cd47a0a1c043c', '172.105.247.100', 1668306080, '__ci_last_regenerate|i:1668306080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee1d69431c2e44a6212ec42dec139d579fcfbb6', '172.105.247.100', 1668306081, '__ci_last_regenerate|i:1668306081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5111f4ffc80fca85290b6e8315468048476ee738', '172.105.247.100', 1668310275, '__ci_last_regenerate|i:1668310275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bc7fb294be51c06ec531786aa6b838f2a690d3', '172.105.247.100', 1668310277, '__ci_last_regenerate|i:1668310277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f641082934f715e7546d603753097c689fd6dd6', '172.105.247.100', 1668310277, '__ci_last_regenerate|i:1668310277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c186f069e716217b2fc2b5191ea915526cb15051', '172.105.247.100', 1668310277, '__ci_last_regenerate|i:1668310277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3529c8220708bccdf9cf8401d16cfa98483a09cd', '172.105.247.100', 1668310277, '__ci_last_regenerate|i:1668310277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f2bb145231e25a1404fbdafdb65490c2dc7a89', '172.105.247.100', 1668310278, '__ci_last_regenerate|i:1668310278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d1eb5360d7c41bf48861a81d8bf2ae5978f7da', '172.105.247.100', 1668310278, '__ci_last_regenerate|i:1668310278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b29ec509130235e2c0583af7bc263db7b378291', '172.105.247.100', 1668310278, '__ci_last_regenerate|i:1668310278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae6079a5fa6f56c3703834bfa158cecbecd12ff', '172.105.247.100', 1668310278, '__ci_last_regenerate|i:1668310278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdcc4dbc89bf2f4bae43df9112a46166e0702e71', '172.105.247.100', 1668310278, '__ci_last_regenerate|i:1668310278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4360aa63d57d5f07e7c90f6308d00438c18dd6c', '172.105.247.100', 1668310278, '__ci_last_regenerate|i:1668310278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f7eb8a1cd47cae9efc49da02df833b113459bd5', '172.105.247.100', 1668310279, '__ci_last_regenerate|i:1668310278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55ae1ab4d6cca1d1f714c17b00d1d7181a4d268', '172.105.247.100', 1668310279, '__ci_last_regenerate|i:1668310279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b92bf7336dfb406866d4c8533eac0c0bbfd91c', '172.105.247.100', 1668310279, '__ci_last_regenerate|i:1668310279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb259ca4fe439a313f8e3e73208ca00a2aa40d0b', '172.105.247.100', 1668310279, '__ci_last_regenerate|i:1668310279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2fd6a7558374ba0e892d8a79cf88e08b329259b', '172.105.247.100', 1668310280, '__ci_last_regenerate|i:1668310279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ef1016bf06d5fdd2c88ad63b5f3258902fd75f', '205.210.31.167', 1668314218, '__ci_last_regenerate|i:1668314218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e3de65cd2ff45a07ed25e5ddedd818b2ba501ea', '205.210.31.167', 1668314220, '__ci_last_regenerate|i:1668314220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d5d252cbfa2ed27d3d7ceff78a4845732ed506', '205.210.31.167', 1668314220, '__ci_last_regenerate|i:1668314220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca20e40aabf3e5ed21fadbd31e8415c039f364c0', '172.105.247.100', 1668314479, '__ci_last_regenerate|i:1668314479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8075ca0f1b52dc32c2b5e834a184528c9656ab47', '172.105.247.100', 1668314480, '__ci_last_regenerate|i:1668314479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b710f779075d6a66effb66541b37d35974ef490c', '172.105.247.100', 1668314480, '__ci_last_regenerate|i:1668314480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19aad5c469c8f4e315b1476f7c642b5e159973a', '172.105.247.100', 1668314480, '__ci_last_regenerate|i:1668314480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588e842ddf72d104b0e4700849c02da201b5a55c', '172.105.247.100', 1668314480, '__ci_last_regenerate|i:1668314480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11cf369ce2f7db4ef7e1678139103c9c0628264c', '172.105.247.100', 1668314481, '__ci_last_regenerate|i:1668314481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8aab3fb1be3143503b4b253b23dace3f80b4a46', '172.105.247.100', 1668314481, '__ci_last_regenerate|i:1668314481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2410fdad80e7f1714f2a97569cd1e9ca8a94268f', '172.105.247.100', 1668314481, '__ci_last_regenerate|i:1668314481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca57566088a2e16227050997a8ab98c170ac941', '172.105.247.100', 1668314481, '__ci_last_regenerate|i:1668314481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a19585133d6810da67c483c2540b54af2a8c9be', '172.105.247.100', 1668314481, '__ci_last_regenerate|i:1668314481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88deb4451df6edba34eca2d2764f7bbffbb4fe6d', '172.105.247.100', 1668314481, '__ci_last_regenerate|i:1668314481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6b11ccd3a26157db479664145f6603f3bf1232', '172.105.247.100', 1668314482, '__ci_last_regenerate|i:1668314482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aef82156d9c3e05e2e7169931e892cf3d0bb539', '172.105.247.100', 1668314482, '__ci_last_regenerate|i:1668314482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9fbdc4b36196663093b0f882462f585b1cc234b', '172.105.247.100', 1668314482, '__ci_last_regenerate|i:1668314482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea83cf7febe7e0b9cbc150634bf66e8be1b9773', '172.105.247.100', 1668314483, '__ci_last_regenerate|i:1668314483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9969afb011e13523b1f5cd540f1ef79277fe9e5', '172.105.247.100', 1668314483, '__ci_last_regenerate|i:1668314483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee8b235e4f44f39603d3f94ef63e0a1b4207f22', '172.105.247.100', 1668318685, '__ci_last_regenerate|i:1668318685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c43438e6f83f3bfc51adc0310e05a11075025e', '172.105.247.100', 1668318685, '__ci_last_regenerate|i:1668318685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aea848611d097a9f064cfe7f5837a13c2efc30c', '172.105.247.100', 1668318685, '__ci_last_regenerate|i:1668318685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c56cd7d82a3c0e0016bb6a3fccdf313e5d12b6', '172.105.247.100', 1668318686, '__ci_last_regenerate|i:1668318686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f14a91ae4e808bce4d98ba32c61951a55b08c37', '172.105.247.100', 1668318686, '__ci_last_regenerate|i:1668318686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1e588680050ec64a6c58e7d021f1511aaa844e', '172.105.247.100', 1668318686, '__ci_last_regenerate|i:1668318686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df02d9f58bc109e65f87a91e2fe325e49db0317', '172.105.247.100', 1668318686, '__ci_last_regenerate|i:1668318686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1eea57360171da8cb9ac851f758a1d27737804b', '172.105.247.100', 1668318687, '__ci_last_regenerate|i:1668318687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16bc730c98c3d18a7987695909c8e4aec83d5949', '172.105.247.100', 1668318687, '__ci_last_regenerate|i:1668318687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e9e5ce9e8007650e470eb7a43c773e32790c1f', '172.105.247.100', 1668318687, '__ci_last_regenerate|i:1668318687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f6ccc4a39f8c6c7ab1c116418b18ce14ccd763', '172.105.247.100', 1668318687, '__ci_last_regenerate|i:1668318687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934689e3a9174dc614ee7052ada938e5aa96ece5', '172.105.247.100', 1668318688, '__ci_last_regenerate|i:1668318687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('267eb0136e05293e00c4ee044cdbc26da8a326f9', '172.105.247.100', 1668318688, '__ci_last_regenerate|i:1668318688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69ad35ea73d35a04a81bc4d3a97dd068754f5ab', '172.105.247.100', 1668318688, '__ci_last_regenerate|i:1668318688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d261a94661e513f966e525b707a92c08b64452ce', '172.105.247.100', 1668318688, '__ci_last_regenerate|i:1668318688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0873006685ef2e3558691927e0d23338d4ad45', '172.105.247.100', 1668318689, '__ci_last_regenerate|i:1668318689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821e342799189cbced3679f7a5ab53c34db64eb1', '172.105.247.100', 1668322879, '__ci_last_regenerate|i:1668322879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3000a3364798930177ded07ca5887486040e7972', '172.105.247.100', 1668322880, '__ci_last_regenerate|i:1668322880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0faaa694fb83ef1567d70af132ffa6d23ac6651', '172.105.247.100', 1668322880, '__ci_last_regenerate|i:1668322880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc5d88977e2274bc7842578f707955a7769f4a7', '172.105.247.100', 1668322880, '__ci_last_regenerate|i:1668322880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b073ed17cdfed7f2186430afc84e93cf0ff40f9', '172.105.247.100', 1668322880, '__ci_last_regenerate|i:1668322880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4d645dbe3f9e601dd3688d076b3e2290883527', '172.105.247.100', 1668322880, '__ci_last_regenerate|i:1668322880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b50b89ddca0c2ca63c547f01abf851632459d7a', '172.105.247.100', 1668322880, '__ci_last_regenerate|i:1668322880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffa420fd8e128f5f513cf9cdc2f8e70c992fd7d', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1879abd8dfafd596df6945ba1f6432adf1f9fe', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4921d4309dba3fd2a9b6c854402e002cbd658f14', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5740e3662769268b687bea0c1be63f4b0e2f30b4', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cea81101e1f4a08a899413308e1be783b2d3668', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f3ebcebae4ba3fa318422920863e7cc8761a75', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd41a21526294be88d77a535e93bd3e8c0918a21', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238d2a715aca42f444bd64a869dac606301388cf', '172.105.247.100', 1668322881, '__ci_last_regenerate|i:1668322881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750bd7db0556d24d33e3595d5f6a4ff9d67945f6', '172.105.247.100', 1668322882, '__ci_last_regenerate|i:1668322882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3fab3890dd3ef3b85c0b2aee49b2f7f60aad755', '45.120.39.90', 1668324113, '__ci_last_regenerate|i:1668324113;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668323962;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4c89ef3d710be7cec802de811b84895f1c03f1', '45.120.39.90', 1668326610, '__ci_last_regenerate|i:1668326610;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668324293;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a5e895f9c2a36730371cc39df453f7795f1700', '45.120.39.90', 1668327940, '__ci_last_regenerate|i:1668327940;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668324293;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9ff71ca583b50ce22f0fe392ae7a8256e6db52', '172.105.247.100', 1668327082, '__ci_last_regenerate|i:1668327082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e4da4ae061ac2a7d6d0e9941770b230ffa4abc', '172.105.247.100', 1668327082, '__ci_last_regenerate|i:1668327082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5116c27b7fce6ce215288f8017789b00d3f72a0d', '172.105.247.100', 1668327082, '__ci_last_regenerate|i:1668327082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9f01ae48597b8a48da38a9eba35aa23e28acb5', '172.105.247.100', 1668327082, '__ci_last_regenerate|i:1668327082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3542beed30d8d43e081e9e99fbf584e12956716', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab03d7a049edad935f03804b6a96116a0b61db4', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12810e4a68b763ee9b202734e06caa6fc50dcc7c', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6dbb591caa75f09dde05589b95e63f7176644f', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907ec69d3d822b011f6c54dd156047cbb004f62f', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d96a9eaa4b2b8c3cfd13975ab9bd4881fdb5e6', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19c08d79b3d76805f93ea458bd935c0d848da24', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d921e2c91e4477736b355e136ed80e651c27d5d2', '172.105.247.100', 1668327083, '__ci_last_regenerate|i:1668327083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ab3626e74f9651c47d4f64a2d6c80376c78ac8', '172.105.247.100', 1668327084, '__ci_last_regenerate|i:1668327084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d5e0fa5eae594e72258f843aac07e8456e5787', '172.105.247.100', 1668327084, '__ci_last_regenerate|i:1668327084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56390e082a8563cb81997efa9c5d90fafa2111e5', '172.105.247.100', 1668327084, '__ci_last_regenerate|i:1668327084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec80ec5ecb705702f3cb9c54d1d98d277378ef91', '172.105.247.100', 1668327084, '__ci_last_regenerate|i:1668327084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9450c87d9ffdd98cc8c1bace69e5f37bb97f28', '45.120.39.90', 1668330321, '__ci_last_regenerate|i:1668330321;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668328019;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d3a71bb78600dcf3a72e42364fbc2e8e4b1b1e', '45.120.39.90', 1668330648, '__ci_last_regenerate|i:1668330648;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668330613;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a580173045b8ad2f65c0a4b71fb5efa90b5f590', '45.120.39.90', 1668333523, '__ci_last_regenerate|i:1668333523;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668333508;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06f8e2f3782c4349faa5ea82b2f8f4c35aa6f39', '172.105.247.100', 1668331277, '__ci_last_regenerate|i:1668331277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9257e7bfd48e03a41cb9f10c15cd58d67c45d7', '172.105.247.100', 1668331277, '__ci_last_regenerate|i:1668331277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fcf960a955b3a0c26d32d11d23a164cfa623b1e', '172.105.247.100', 1668331278, '__ci_last_regenerate|i:1668331278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab852cbc734ef7490f3c0fa5035f9b0174e15e1', '172.105.247.100', 1668331278, '__ci_last_regenerate|i:1668331278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d47af9869376ff1bff5305f23219064a82788e2', '172.105.247.100', 1668331278, '__ci_last_regenerate|i:1668331278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e048276ccbbe9e353a19f867d5209025e40292c0', '172.105.247.100', 1668331278, '__ci_last_regenerate|i:1668331278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad1a8f70b05dbf136c8455375e4d87ee2bd75ce', '172.105.247.100', 1668331279, '__ci_last_regenerate|i:1668331279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6633773f0642f5c5857e95c687e8be06878ad0', '172.105.247.100', 1668331279, '__ci_last_regenerate|i:1668331279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d9482a3493682df4416295394cdd3bf95107501', '172.105.247.100', 1668331279, '__ci_last_regenerate|i:1668331279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf931ae3d5ab71324d43f747090ba3c5daddc98', '172.105.247.100', 1668331279, '__ci_last_regenerate|i:1668331279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38dcec6e3612412944e38fe843c257fae351af2', '172.105.247.100', 1668331280, '__ci_last_regenerate|i:1668331280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5e9620231ec2221de5ad3602eb71b6e455ff40', '172.105.247.100', 1668331280, '__ci_last_regenerate|i:1668331280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2cdd34986d942604d4dbd3ee40ce68f4eeb407', '172.105.247.100', 1668331280, '__ci_last_regenerate|i:1668331280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca299bfa526f1b8af494b280f83e87996b768191', '172.105.247.100', 1668331280, '__ci_last_regenerate|i:1668331280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6266a579d37f511765f42fd484c4b665d1b9a66', '172.105.247.100', 1668331281, '__ci_last_regenerate|i:1668331281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6b5fd338ba6ba7123d0e49290d6169f6c2544b', '172.105.247.100', 1668331281, '__ci_last_regenerate|i:1668331281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa1f3ea6be933da4871092da9fe1360b3835c64a', '198.235.24.10', 1668332469, '__ci_last_regenerate|i:1668332469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f8929e0de46903fd11a77b5eccf23797107715', '198.235.24.10', 1668332470, '__ci_last_regenerate|i:1668332470;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c57e6894f901d274203bc87126cb9cffb457558', '198.235.24.10', 1668332470, '__ci_last_regenerate|i:1668332470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c95179a8e6e960b40ef37f115a89ec47a18cfe', '45.120.39.90', 1668337668, '__ci_last_regenerate|i:1668337668;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668333571;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800a30ec739788e18f878477ca48df31de4bef7d', '172.105.247.100', 1668335474, '__ci_last_regenerate|i:1668335474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ce41145cf91f1f11b9179dac9cd1bb57467b72', '172.105.247.100', 1668335474, '__ci_last_regenerate|i:1668335474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20963830241a6681fd94e767b5c5b4b5ddd3be9c', '172.105.247.100', 1668335474, '__ci_last_regenerate|i:1668335474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c8f01639753ec64a17301ce005d33fc0cba36d', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b816edd17570707d5ba2352b6d815128c01418e3', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('190907827e76683b12b7616c55e0e2a1bea3f78f', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55997fc0e2d0c9b5776c2561222751613153f02', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6590f8f9bc8a436b1c1559000811fbea9b38a7', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9355f124249e1d89f360fe24fb87eeb77b8c94b', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a08cd52eff31f116703c6058eeb229f469e79d', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b98f0a235312a74ff1fca97dfa73623cade375', '172.105.247.100', 1668335475, '__ci_last_regenerate|i:1668335475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a306203a8cadede88e245516013fd044e712a9', '172.105.247.100', 1668335476, '__ci_last_regenerate|i:1668335476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450fc6d324c7d80082bd0bc5ff6917514f7a3038', '172.105.247.100', 1668335476, '__ci_last_regenerate|i:1668335476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ab668018a2b279efdd614b9b48bf5d48ea9a8e', '172.105.247.100', 1668335476, '__ci_last_regenerate|i:1668335476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eabdcaeb4a9ca4421fb2a9d02164c0c5c448efe', '172.105.247.100', 1668335476, '__ci_last_regenerate|i:1668335476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee84fcf5d0eb8c7dbc4dc34b0566f49402c3147', '172.105.247.100', 1668335476, '__ci_last_regenerate|i:1668335476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aad9630070a3efd68972d146cd86be660967833', '45.120.39.90', 1668337971, '__ci_last_regenerate|i:1668337971;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668337962;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd4a6951514ab96dd7c6c2b842cc637602e22ed', '45.120.39.90', 1668342539, '__ci_last_regenerate|i:1668342539;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668342534;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694b2523008d05c92232cc652bf0e397c14f7f9e', '172.105.247.100', 1668339675, '__ci_last_regenerate|i:1668339675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265c7408a89fb927b2f7388d5de09f53d818ddc7', '172.105.247.100', 1668339675, '__ci_last_regenerate|i:1668339675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5b36fe4ad0ef947bb872095fc9c4a80c0579ca', '172.105.247.100', 1668339675, '__ci_last_regenerate|i:1668339675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe8635f427b74ed2bf9e45e2c110904fb3f430e', '172.105.247.100', 1668339675, '__ci_last_regenerate|i:1668339675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8801148c49865899c33fdde200f1202cfd93e80f', '172.105.247.100', 1668339675, '__ci_last_regenerate|i:1668339675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('547f40b31702c2e5799bf77e6f920ce4857b4028', '172.105.247.100', 1668339675, '__ci_last_regenerate|i:1668339675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af44f86108531cd76c61c5fceb9a0b997e8bbb5', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51fa5528a06384b4204afafa19fc9edb6cc7c954', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d49be42347bafb7389b7fd74e2d3a70255d833', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7733f67c333c1c7dc9c0043226a9b27c88e2155e', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334515c7882c9d7890b0b808d78dbb3058bc35d2', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e5c3b002fb8ca48d03562cbe7915b0cfffd1fc', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eba57d0bac096f367e65b4cab1893b5fb33c57a', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de93f1628f99c313c4af9e3c87cb78d17ffe9864', '172.105.247.100', 1668339676, '__ci_last_regenerate|i:1668339676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf6bcfb3a47858a0d90d8719e06ddd162f613ef', '172.105.247.100', 1668339677, '__ci_last_regenerate|i:1668339677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39fcae03c6a41074daf42249dbf7179572d01357', '172.105.247.100', 1668339677, '__ci_last_regenerate|i:1668339677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fbe044490d10f75e3d90f8b92db22a2a7f5ecd8', '45.120.39.90', 1668349631, '__ci_last_regenerate|i:1668349631;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668349027;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489b667d4e64e769a53987a7a0bbe81eee30813d', '172.105.247.100', 1668343874, '__ci_last_regenerate|i:1668343874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf2bb48c8a77c1d579815c7706f62de24a7d708', '172.105.247.100', 1668343874, '__ci_last_regenerate|i:1668343874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c45fbf65b11ddbe63159ec76d2cc6c7281d34bb', '172.105.247.100', 1668343875, '__ci_last_regenerate|i:1668343875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cece1a64fe3aae0e81f391d998446bcaab23667f', '172.105.247.100', 1668343875, '__ci_last_regenerate|i:1668343875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b56fa18927b069e7bb75aa604e7d6ac52059b9', '172.105.247.100', 1668343875, '__ci_last_regenerate|i:1668343875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a3ebac26e43ae6c2590d5422ad1b85e7cff8135', '172.105.247.100', 1668343875, '__ci_last_regenerate|i:1668343875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f61fd4d824890141e29f6b5af843abb98babeaac', '172.105.247.100', 1668343875, '__ci_last_regenerate|i:1668343875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6007d5409f22576febf2d1363ea9c08613b57db2', '172.105.247.100', 1668343875, '__ci_last_regenerate|i:1668343875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acca92539ed00846b1cb132039aaadcc0112dd8d', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9eb7b8f854bc6ef96183e8654204643bf3c3f9f', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f41c196482bde1a0c6f1c3cbd04d26d1d4eb1f', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6e25f95e1c2b698132df7308b23b0efae600df2', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28fe44a911274982cb31bb912ef1c5d23fb0c5e', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be12840787db89531f7d9a563e5dcf0f540f83e2', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadb69e6b79ac70d7801ce9f9e1395ed57d3b4be', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39e11c7f6db1ef9b29dae3483e0c9627ad551fe', '172.105.247.100', 1668343876, '__ci_last_regenerate|i:1668343876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d405e96d978e393c412c0e40bf1da284952a8ad3', '172.105.247.100', 1668348079, '__ci_last_regenerate|i:1668348079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bcfec9034a755e7d1e999720b03512f1e8fb17b', '172.105.247.100', 1668348079, '__ci_last_regenerate|i:1668348079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82884335cde7d134dae0029b97b36ec4ed4b0b3d', '172.105.247.100', 1668348079, '__ci_last_regenerate|i:1668348079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f65e4502d0b256e725bb0b6bdc90df027a4624', '172.105.247.100', 1668348080, '__ci_last_regenerate|i:1668348080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d566f69e8a87bd75b4e7e556e1d18ebe3a0900', '172.105.247.100', 1668348080, '__ci_last_regenerate|i:1668348080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a70d97d8a8a4bc567ce2d272ce3f53619ee3759', '172.105.247.100', 1668348080, '__ci_last_regenerate|i:1668348080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e796f761c23f32799ff051dd1e80bb6d9797fd4d', '172.105.247.100', 1668348080, '__ci_last_regenerate|i:1668348080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034f53132d122b5adabcc78f2ccd650c287d69bd', '172.105.247.100', 1668348081, '__ci_last_regenerate|i:1668348081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9317fb33da7fcf2a8de53b37f8e29bb1369ea71b', '172.105.247.100', 1668348082, '__ci_last_regenerate|i:1668348082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7257c2934db2f35381010920cbebf9afa228dc13', '172.105.247.100', 1668348082, '__ci_last_regenerate|i:1668348082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e8723d0ca9d713309c7f32ecd8e3477c74ac6f', '172.105.247.100', 1668348082, '__ci_last_regenerate|i:1668348082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea133aace3c33765cb11e11701df926f247984e', '172.105.247.100', 1668348083, '__ci_last_regenerate|i:1668348082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d1e2795bb6b66077629cf30bf57025b62464ea', '172.105.247.100', 1668348083, '__ci_last_regenerate|i:1668348083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf37d966d3695cd43720881cca6744a97f77d74', '172.105.247.100', 1668348083, '__ci_last_regenerate|i:1668348083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bce9f77ea06219a97bbcf3cf7991995f60a16e3', '172.105.247.100', 1668348083, '__ci_last_regenerate|i:1668348083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21b8d5c9deea2f51f11259e2d753d19a5df0676', '172.105.247.100', 1668348084, '__ci_last_regenerate|i:1668348084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023326d345af5d83fbda8bb13b110d517b8561af', '45.120.39.90', 1668350497, '__ci_last_regenerate|i:1668350497;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668350491;register_id|s:3:\"247\";cash_in_hand|s:8:\"290.0000\";register_open_time|s:19:\"2022-11-12 21:14:41\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd55d58175e4962cc5252e3a41835096edd5550', '45.120.39.90', 1668350529, '__ci_last_regenerate|i:1668350497;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668246311\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668350529;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6024654170143144c0a6146f253ef0a165b48e6', '172.105.247.100', 1668352277, '__ci_last_regenerate|i:1668352277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f27f7447e3aae1617ca7d90d0f06fe4b8b6258', '172.105.247.100', 1668352277, '__ci_last_regenerate|i:1668352277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('870fab7a90c89b2e92877adee6357ae811d559db', '172.105.247.100', 1668352278, '__ci_last_regenerate|i:1668352278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3415541caefde582cf8d7a8144052ace826f81', '172.105.247.100', 1668352278, '__ci_last_regenerate|i:1668352278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae43afd778356ce1bbb0f28433e06115b6bfcd21', '172.105.247.100', 1668352278, '__ci_last_regenerate|i:1668352278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a6dba8b7773d3ce10a089044c32514921e23306', '172.105.247.100', 1668352278, '__ci_last_regenerate|i:1668352278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d901f0d2b1a569c65b22e299e6d605541aaf54fa', '172.105.247.100', 1668352279, '__ci_last_regenerate|i:1668352279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c5d40599ee0f35d9eb04667c400b214497655f', '172.105.247.100', 1668352279, '__ci_last_regenerate|i:1668352279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342c948fd39b34af358d198bbc5109d894d80efa', '172.105.247.100', 1668352279, '__ci_last_regenerate|i:1668352279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1df61056e919a4f90c78dc04b483d97032c99c', '172.105.247.100', 1668352280, '__ci_last_regenerate|i:1668352279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe46b8c87bc916709c4dec1d3a62eb34ae3eb7d', '172.105.247.100', 1668352280, '__ci_last_regenerate|i:1668352280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d582f578ca9c7213b737adb703fe87b299d3e14', '172.105.247.100', 1668352280, '__ci_last_regenerate|i:1668352280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c690991d7113e80f979d10ca46905fc8d340c05', '172.105.247.100', 1668352280, '__ci_last_regenerate|i:1668352280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342592dfad57ee85436ee4a565b060c818f134e8', '172.105.247.100', 1668352281, '__ci_last_regenerate|i:1668352280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40579d329c42f997533cc4f4440f4a4325a610b2', '172.105.247.100', 1668352281, '__ci_last_regenerate|i:1668352281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca13e02f411731d00dd4541ad1ccf8dfe2ff5da', '172.105.247.100', 1668352281, '__ci_last_regenerate|i:1668352281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2d73ff93c15e1bc98db2313d0c045661dc6230', '172.105.247.100', 1668356476, '__ci_last_regenerate|i:1668356476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4392448f8337af3721af384a0ab57f00c233cf', '172.105.247.100', 1668356476, '__ci_last_regenerate|i:1668356476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b687932e3395d99f1fd39ba5defd4afc5ddf858', '172.105.247.100', 1668356477, '__ci_last_regenerate|i:1668356477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47dc923cbbedf26f9e821ae5f11913b31da2691a', '172.105.247.100', 1668356477, '__ci_last_regenerate|i:1668356477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2fb25b401a09f1f93ee7e7ce1d1817074815e51', '172.105.247.100', 1668356477, '__ci_last_regenerate|i:1668356477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f22e725d38c5a6ac58da4b37fe4fcf01d62438', '172.105.247.100', 1668356478, '__ci_last_regenerate|i:1668356478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c03532e0fface6dabb67ad501002031c040c87d3', '172.105.247.100', 1668356478, '__ci_last_regenerate|i:1668356478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20dc983025a751d01fd42c3b39acf246e90429d1', '172.105.247.100', 1668356478, '__ci_last_regenerate|i:1668356478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524ee94a3ee1c68651894cb5c410f2beab475f9b', '172.105.247.100', 1668356478, '__ci_last_regenerate|i:1668356478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31cf7ef10641bc7e59750f22ac1f46c932518bba', '172.105.247.100', 1668356479, '__ci_last_regenerate|i:1668356478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49637700f63ba6dda5fb395e644c71674269578c', '172.105.247.100', 1668356479, '__ci_last_regenerate|i:1668356479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('786ec27d7ee0cf1413c9b38b8f8a1c8bb75ddb04', '172.105.247.100', 1668356479, '__ci_last_regenerate|i:1668356479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87712e9d27edf70012b3c23004d7a7cab14d9fd0', '172.105.247.100', 1668356479, '__ci_last_regenerate|i:1668356479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50593f598a77c329fb7809df36ac70d34d99e62', '172.105.247.100', 1668356480, '__ci_last_regenerate|i:1668356479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1977bcedcb6a6f6a6789fdc41a14e577098933c8', '172.105.247.100', 1668356480, '__ci_last_regenerate|i:1668356480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c8c370d4cbef37959fdbd83c1eac415f289832', '172.105.247.100', 1668356480, '__ci_last_regenerate|i:1668356480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7283d1aff7911eaf3c1316cd7b4f0db5346a43c0', '172.105.247.100', 1668360676, '__ci_last_regenerate|i:1668360676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f6654195f4575dbb568e498997dbc2797704c5', '172.105.247.100', 1668360677, '__ci_last_regenerate|i:1668360677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d20fde015211c8179ee99ba828d36a35b8bcc42', '172.105.247.100', 1668360679, '__ci_last_regenerate|i:1668360678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07fc2ec88c695879ae176c3456813f9969598391', '172.105.247.100', 1668360679, '__ci_last_regenerate|i:1668360679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0b560d0886395c15e129ef076d1926503996c0', '172.105.247.100', 1668360679, '__ci_last_regenerate|i:1668360679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18a7b00acc3acc95b230927d3fa215bf63cc867', '172.105.247.100', 1668360679, '__ci_last_regenerate|i:1668360679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6137a4eca0ed3e43a6da3edcad10769eaba509fc', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83332fb5533ab4bcd0fac4dfdfbd9e05b59d7ab2', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af9b905c252e2a296c60539fa9fdf2c5addab39', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a7edbc3a8a19291c68e5f104a33f2f1cfae220', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859d38297df7b3651a4be805686f031975b5f5fe', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09dca475dc690f426adc3e4c25e8a4fb1745124b', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d51e3abff847785c5d9e402ca2ec2b50be374c', '172.105.247.100', 1668360680, '__ci_last_regenerate|i:1668360680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f238929a85208adaf2c297410985e927fa576ca', '172.105.247.100', 1668360681, '__ci_last_regenerate|i:1668360681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e0104acd9780c6a0b16d48771e5fcaa07afbe0', '172.105.247.100', 1668360681, '__ci_last_regenerate|i:1668360681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df451b615c5a98251e2888dcb44e42cd66d1ee90', '172.105.247.100', 1668360681, '__ci_last_regenerate|i:1668360681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f5f3baa79911fb2eab17a56cb4dad8eacd2304', '198.235.24.139', 1668362336, '__ci_last_regenerate|i:1668362336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8eac0abedad47cea6e678a8f2f827efd4db1e2c', '198.235.24.139', 1668362337, '__ci_last_regenerate|i:1668362337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3165edb9ee92b52dad9ea955fc0e6fc91efc7557', '198.235.24.139', 1668362337, '__ci_last_regenerate|i:1668362337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a25573a75d0416464150f7313a951be63960225', '172.105.247.100', 1668364876, '__ci_last_regenerate|i:1668364876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23341e0966375a3d808fa5cdaf5bdbf8482cc570', '172.105.247.100', 1668364877, '__ci_last_regenerate|i:1668364877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8637086e07ab6aac84bfdedd57c28a7a0e278df2', '172.105.247.100', 1668364877, '__ci_last_regenerate|i:1668364877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f617dde842d7f4aa7d0ed08ad12424bd6e8aa1f2', '172.105.247.100', 1668364877, '__ci_last_regenerate|i:1668364877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3bb679e3145531665fb76c7bb74dc4595403fa1', '172.105.247.100', 1668364878, '__ci_last_regenerate|i:1668364878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826bf8fce5337fde3a9de6e7c43245e0d82702e8', '172.105.247.100', 1668364878, '__ci_last_regenerate|i:1668364878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae93c86a7302af31bf3d496bb6ab79b8425dc22', '172.105.247.100', 1668364878, '__ci_last_regenerate|i:1668364878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab38fd22f9f3e7ab5bd66e1cbc3fbe0fa2f1911', '172.105.247.100', 1668364878, '__ci_last_regenerate|i:1668364878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad60215cb1eeac156dde10aaac99ed5d56056a77', '172.105.247.100', 1668364878, '__ci_last_regenerate|i:1668364878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1500700291af61ebb3531f051c71112ee6725b28', '172.105.247.100', 1668364878, '__ci_last_regenerate|i:1668364878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4803a2929414fcce98917f37788d8f8e9793a6a', '172.105.247.100', 1668364879, '__ci_last_regenerate|i:1668364879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89872f59cd400b7e0420a9d81434840eaff9ab3d', '172.105.247.100', 1668364879, '__ci_last_regenerate|i:1668364879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee6fdb1ef14a42ba7c237a40971acf84578c184', '172.105.247.100', 1668364879, '__ci_last_regenerate|i:1668364879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13332253c359eecf675ef39342da4d0fb2a1387', '172.105.247.100', 1668364880, '__ci_last_regenerate|i:1668364879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10c02ed0fef66a6b0d596146e3959adc981ebe7', '172.105.247.100', 1668364880, '__ci_last_regenerate|i:1668364880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8ab2ce6461eb5f7e692acd88a7d2c57be3e251', '172.105.247.100', 1668364880, '__ci_last_regenerate|i:1668364880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3b498b7328d40b13d37144a950715c23cf0fc8', '172.105.247.100', 1668369073, '__ci_last_regenerate|i:1668369073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8e7a061759210a67924e93ed65a2d74b3229c71', '172.105.247.100', 1668369073, '__ci_last_regenerate|i:1668369073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde26866ddb4563e0268a547cb3a16aa6e77085d', '172.105.247.100', 1668369074, '__ci_last_regenerate|i:1668369074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd2aa5809f082beda00205445d760a630abca14', '172.105.247.100', 1668369074, '__ci_last_regenerate|i:1668369074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1675648405a08cfa73b6de220d3ddce900852396', '172.105.247.100', 1668369074, '__ci_last_regenerate|i:1668369074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d6c6beed906fb019b99c539628816b17c6941d4', '172.105.247.100', 1668369075, '__ci_last_regenerate|i:1668369075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a77a4c369c07e5c611ebe3b6ffb8f9f72cbc5b', '172.105.247.100', 1668369075, '__ci_last_regenerate|i:1668369075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97909f0caabca5eb38cf132d3c1e53eb2d98161e', '172.105.247.100', 1668369075, '__ci_last_regenerate|i:1668369075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d2b615ce41f10895b908c8f27f0b08fc20bb96', '172.105.247.100', 1668369075, '__ci_last_regenerate|i:1668369075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb49fd6703d4b9a5170640f2374e58033ff011d', '172.105.247.100', 1668369075, '__ci_last_regenerate|i:1668369075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48e4c6a464171e46fd8c65d4f66c2fbc43bddb4', '172.105.247.100', 1668369075, '__ci_last_regenerate|i:1668369075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e978ea6524bec5d308be8a4a99dc186352690332', '172.105.247.100', 1668369076, '__ci_last_regenerate|i:1668369075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28449a8efb6079466754bdf2cd20927026ed6acb', '172.105.247.100', 1668369076, '__ci_last_regenerate|i:1668369076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edaf3a85e6aed0fe81aa794f52b7e3d921f7afaa', '172.105.247.100', 1668369076, '__ci_last_regenerate|i:1668369076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb585b7d4c69d712eaa0852fb020aaebc15ce23f', '172.105.247.100', 1668369076, '__ci_last_regenerate|i:1668369076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d55f7520e14f1788a114bead2f8be377345f6d', '172.105.247.100', 1668369076, '__ci_last_regenerate|i:1668369076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f649aab684b14522492892466eff11c423f8dc40', '172.105.247.100', 1668373283, '__ci_last_regenerate|i:1668373283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e2da8901b29177642a3adbf9602829af0b05a3', '172.105.247.100', 1668373284, '__ci_last_regenerate|i:1668373284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef19d626138444dd0ca5573646f823da224efea', '172.105.247.100', 1668373285, '__ci_last_regenerate|i:1668373285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551f22a760e1da7468866369234d7e1efeb93d78', '172.105.247.100', 1668373286, '__ci_last_regenerate|i:1668373286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba5855e4bf96e72258a9d58d9ebf448536a3548', '172.105.247.100', 1668373286, '__ci_last_regenerate|i:1668373286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('284d9dc59cb3ed8e6f8d4df1ee973837f8c70855', '172.105.247.100', 1668373286, '__ci_last_regenerate|i:1668373286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b13c3610cfe66e3eb75c7394498dfcd5f3e87ca', '172.105.247.100', 1668373286, '__ci_last_regenerate|i:1668373286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6457750ec92490aaac5938df98926b3021bea98', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f63cf6c3d0dcd6a782ed7fef5bb93adafbfef3', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45868894d68b3e58f031440c61279661cac8959c', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b0eb16c1f019b37ea9f8e8c2e2149e11fdd653', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab556fc6532d8765b722f475208987e97a7af15d', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59188b18dbfb3041dfc2d409ec8a97b12cac6ea9', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1c9cde196ab05944da159e123e2ce7ffe16307', '172.105.247.100', 1668373287, '__ci_last_regenerate|i:1668373287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a43766f5b9276b259f8d6da25a737fe96f2bfbda', '172.105.247.100', 1668373288, '__ci_last_regenerate|i:1668373288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff8be3db61d409aa3b70cb859e133403762f8b5', '172.105.247.100', 1668373288, '__ci_last_regenerate|i:1668373288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e61f0ddbae9e45c2eeed97f529043eb91a083cc', '172.105.247.100', 1668377476, '__ci_last_regenerate|i:1668377476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce26a0fe4f942600a2af08207d2e7bad213e4510', '172.105.247.100', 1668377476, '__ci_last_regenerate|i:1668377476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891861f99457e8a8a7eb4cd7b2c7dece76b163ec', '172.105.247.100', 1668377476, '__ci_last_regenerate|i:1668377476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4217ed284e0b900ec534101b10d287dabccc7396', '172.105.247.100', 1668377477, '__ci_last_regenerate|i:1668377477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91123b11653e1048f2cc1dd236a90c1436b79b23', '172.105.247.100', 1668377477, '__ci_last_regenerate|i:1668377477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad7b0bbc94d5680d90e53d44546157fb83d1dbe', '172.105.247.100', 1668377477, '__ci_last_regenerate|i:1668377477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517e3f997977391bd4970d0904cd83614783f27d', '172.105.247.100', 1668377477, '__ci_last_regenerate|i:1668377477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33ed296b84f6c536229abd5684843c5ddc84676', '172.105.247.100', 1668377477, '__ci_last_regenerate|i:1668377477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8932f96379a2a473d5b022aa7e4ab18733f406e1', '172.105.247.100', 1668377477, '__ci_last_regenerate|i:1668377477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88998b5514ad278ba4bdeacfd50927b0279bba06', '172.105.247.100', 1668377478, '__ci_last_regenerate|i:1668377477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3d43e107228fc267f6ea370f1a0ed02bdab02b', '172.105.247.100', 1668377478, '__ci_last_regenerate|i:1668377478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad1199364aed4211ca175f090547eb7d5d2d996', '172.105.247.100', 1668377478, '__ci_last_regenerate|i:1668377478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f742d4e8de40183b7cae40756a7102d2abd37518', '172.105.247.100', 1668377478, '__ci_last_regenerate|i:1668377478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e8653226aff345b4689f63153adb2f2981cca9', '172.105.247.100', 1668377478, '__ci_last_regenerate|i:1668377478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78259120f0ed28ba11db9da611594ec05fb7fe17', '172.105.247.100', 1668377478, '__ci_last_regenerate|i:1668377478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c982cd10872556e3f4a07293ee53389a24401c3', '172.105.247.100', 1668377479, '__ci_last_regenerate|i:1668377479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850dfac510bce4485d596f95b6882892f355defe', '172.105.247.100', 1668381678, '__ci_last_regenerate|i:1668381678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb61a11e14ab2f6a867974c837c493622bd8277', '172.105.247.100', 1668381679, '__ci_last_regenerate|i:1668381679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d136f9d1095273fe69531fcb6391a9d2f341f0c', '172.105.247.100', 1668381679, '__ci_last_regenerate|i:1668381679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdef179db5232e1a67c352dec1cfd8b6d815abdd', '172.105.247.100', 1668381680, '__ci_last_regenerate|i:1668381679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76fa6e8c8bc6b1e9cbade59fcf6acb79c6a4547c', '172.105.247.100', 1668381680, '__ci_last_regenerate|i:1668381680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f73b9cfa032fa452953435a83e39832a31de2e2', '172.105.247.100', 1668381680, '__ci_last_regenerate|i:1668381680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c713925269bc7f44001a7f7f5c5f9c65efb20d8c', '172.105.247.100', 1668381680, '__ci_last_regenerate|i:1668381680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b417f0d18cfea89f29a05d977a6b3979410dcf1c', '172.105.247.100', 1668381681, '__ci_last_regenerate|i:1668381681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d42548df20e651821f5e70d13e1554dd36d695', '172.105.247.100', 1668381681, '__ci_last_regenerate|i:1668381681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61274f3d7dce534ad52e40931d5599ca043df455', '172.105.247.100', 1668381681, '__ci_last_regenerate|i:1668381681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea49ecc0ee67df81fe3356aea7d3940ab9ad3bfc', '172.105.247.100', 1668381681, '__ci_last_regenerate|i:1668381681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f12ab2febe79f769a6a6a7de593cecbf502a51', '172.105.247.100', 1668381682, '__ci_last_regenerate|i:1668381682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c805ca83f30a86869a2f109b3218e5760a3f3e6', '172.105.247.100', 1668381682, '__ci_last_regenerate|i:1668381682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3703ca803f8bba913434c17a057411f20144084e', '172.105.247.100', 1668381682, '__ci_last_regenerate|i:1668381682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06127d0e3f7dd74f2ba33489ef3766ca8d4afdb0', '172.105.247.100', 1668381683, '__ci_last_regenerate|i:1668381683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e4c7e5759d7ecca8c03ed5784521a4963ce103', '172.105.247.100', 1668381683, '__ci_last_regenerate|i:1668381683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5028ca4e9b9474098278a16e4db4ea66f3776b68', '205.210.31.36', 1668384893, '__ci_last_regenerate|i:1668384893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c8675daab0d899447477443cea0b8b61758c60', '205.210.31.36', 1668384893, '__ci_last_regenerate|i:1668384893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861682a417fd3e4ece5edfca936c021d3496cb7f', '205.210.31.36', 1668384894, '__ci_last_regenerate|i:1668384894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f031926d08add17b0ecfcf2f1fd3fa5cf3352e2c', '172.105.247.100', 1668386476, '__ci_last_regenerate|i:1668386476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6ee6b7dc2311860d61d0e8af9e5d113377377eb', '172.105.247.100', 1668386476, '__ci_last_regenerate|i:1668386476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcec8bd980be5687c4539c4d86eac7f354632dc0', '172.105.247.100', 1668386477, '__ci_last_regenerate|i:1668386477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c4b69b31627eaeeae422a97cc2db3f3aa0196e', '172.105.247.100', 1668386477, '__ci_last_regenerate|i:1668386477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577b8f06b3132b8a20919b3a527549b03e932529', '172.105.247.100', 1668386477, '__ci_last_regenerate|i:1668386477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b9654d1a99c7966d29703937e2a651c68396c5', '172.105.247.100', 1668386477, '__ci_last_regenerate|i:1668386477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c2ee3652a1856b4baceabf0872befd7a32acd8', '172.105.247.100', 1668386477, '__ci_last_regenerate|i:1668386477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2182a391bef3b3ca55cc117ce8b1a47b0d6179', '172.105.247.100', 1668386477, '__ci_last_regenerate|i:1668386477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd20093f063dade6953dd4279588cc4338fdfda', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1249ba489d1e8964ad23cc060132d54fadafeb1a', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99314cc9bbd084d248b807984d70150e716da3ce', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997aef980c87b40f6b132ac7fbd08463b896334b', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a5d8c5c6e3a788a4b569a34ad5436beebfb7c3', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5302461517b3107815f2a6304fb129c829a34355', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c778619a7f915a6b7e2e793fde0e7b4ff3a7810', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e9f55dc821e056763434c7c5c3a8c3accc36e2', '172.105.247.100', 1668386478, '__ci_last_regenerate|i:1668386478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadae9be3e749d117a1c948107f3cfc07bd1e9f4', '172.105.247.100', 1668390681, '__ci_last_regenerate|i:1668390681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ec52b94eac04edf34001ffec4a3842fabf84bee', '172.105.247.100', 1668390681, '__ci_last_regenerate|i:1668390681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38bc27da3dc1b245595859cf0e5403a1c0d96b96', '172.105.247.100', 1668390681, '__ci_last_regenerate|i:1668390681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('851af6a7a17e60256b3d25facb95898ceaabdb52', '172.105.247.100', 1668390682, '__ci_last_regenerate|i:1668390682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b480e411305156e4491f9a2baed59b6381fde7e4', '172.105.247.100', 1668390682, '__ci_last_regenerate|i:1668390682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00861ad2afe0bc4dbbdfbdab651051346a8d1086', '172.105.247.100', 1668390682, '__ci_last_regenerate|i:1668390682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fcc7419b366aa1c71283d5e46b8749e0d025a99', '172.105.247.100', 1668390682, '__ci_last_regenerate|i:1668390682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb8415840e5594f2fd60403c687b372e8c44cc5', '172.105.247.100', 1668390683, '__ci_last_regenerate|i:1668390682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ccc912ef1f9b8d6cbf8db48e46deb5a9e02f38', '172.105.247.100', 1668390683, '__ci_last_regenerate|i:1668390683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3ecfd3c250191edcb3cc2720957c33089adfa2', '172.105.247.100', 1668390683, '__ci_last_regenerate|i:1668390683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07942434bb1fbe37315fe457bc5c6a472b5a1813', '172.105.247.100', 1668390683, '__ci_last_regenerate|i:1668390683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ae73330d5fb2474e3622441331e88c0e98f3ba', '172.105.247.100', 1668390683, '__ci_last_regenerate|i:1668390683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99159e68f203ce80396bde0723cd9312910678e', '172.105.247.100', 1668390683, '__ci_last_regenerate|i:1668390683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ffd8a707b29e1691d691704e04b4615ee533a4f', '172.105.247.100', 1668390684, '__ci_last_regenerate|i:1668390683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13c3293f9b4309da2cd0513aa7cde7bc48fc126', '172.105.247.100', 1668390684, '__ci_last_regenerate|i:1668390684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f9c68b7f1780e073246c41ee71e49213bcd620', '172.105.247.100', 1668390684, '__ci_last_regenerate|i:1668390684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e637cbbc9dba8d5cd12871e66a4c4ea49fc82e5a', '172.105.247.100', 1668394878, '__ci_last_regenerate|i:1668394878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814c83b90931a03569c233dcccce0b3c84a9cb02', '172.105.247.100', 1668394879, '__ci_last_regenerate|i:1668394879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46f38d3695fa1972b3b52e0a6b7943759cd0034', '172.105.247.100', 1668394879, '__ci_last_regenerate|i:1668394879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2005f03a59e54c6fc909d61e0154a6e0581a4b66', '172.105.247.100', 1668394879, '__ci_last_regenerate|i:1668394879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27fb73aee0224edaa1f91690b025e7e03da89aca', '172.105.247.100', 1668394879, '__ci_last_regenerate|i:1668394879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a1b73813f24c064fa2024cba932a9269fb8deb', '172.105.247.100', 1668394879, '__ci_last_regenerate|i:1668394879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5f42d7f71b8a6d09c93a605c7c1f333d4f0122', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2347982fc89bfa9bf66646266f6c106982c30521', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7fcf3072356ce5dd9e97ec5f176bedcac212e9', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408b60a51ba1c6b33c745b977c34572c92adb4b9', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3abf40b9ac30c8b6ffc8b17b7c8e0bfa40c3d5', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a17f1fb8b5c0f29af2cbb6649b72ca4d7e25285', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36581c86deb67913c7f2d4c8544e41d46a4c6bd', '172.105.247.100', 1668394880, '__ci_last_regenerate|i:1668394880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e2f504d35807655737c2151df2297d23db6a41', '172.105.247.100', 1668394881, '__ci_last_regenerate|i:1668394881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6804d3e899e57098609b13d78d39eeb7ad44209', '172.105.247.100', 1668394881, '__ci_last_regenerate|i:1668394881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401a35b96f152f488896f4bf11913db8ed0e303c', '172.105.247.100', 1668394881, '__ci_last_regenerate|i:1668394881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa2b77ac0a9aa8f9be4932caece08f9a15ab7ba', '172.105.247.100', 1668399074, '__ci_last_regenerate|i:1668399074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b32a2d6fed5acb4482db6bed2251d4e0aae76c', '172.105.247.100', 1668399074, '__ci_last_regenerate|i:1668399074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9b573f81989d099d051fd8ed50dae13a0efdaf', '172.105.247.100', 1668399074, '__ci_last_regenerate|i:1668399074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d40ca3ab9194ea723f0f2a98dd4f9be139d9ef', '172.105.247.100', 1668399074, '__ci_last_regenerate|i:1668399074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b0ead14461452d2ef5d6b2b1258c77e47d58fc', '172.105.247.100', 1668399074, '__ci_last_regenerate|i:1668399074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0bd754713d80ee05accdd6141da6b77b03a047', '172.105.247.100', 1668399074, '__ci_last_regenerate|i:1668399074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165841c4d05fbaaac0f7c447a546302ed9f75ba9', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a793f9f47db5d3826c26770834afc3c6897f559', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d36362237ac528a7ce775ec25edbafb5e6e67058', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a608ee29d65636298ca58f6f695867bb988a4dda', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8feaf6a3c62a80cb7f9d0da63b21a73c5d34152d', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29eb1ce4d08f8086962358e2cce879caf3575d9', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff367669ad85c3d17e7c0f3719b94370e0d72e3', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('664c504afed9cf4ae32c851b7c4026b3548cb059', '172.105.247.100', 1668399075, '__ci_last_regenerate|i:1668399075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21ceaa0263beb4df33e935e02da185511c3f639', '172.105.247.100', 1668399076, '__ci_last_regenerate|i:1668399076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97069b940deb1f4ef1a963b4f44ba582bf10415e', '172.105.247.100', 1668399076, '__ci_last_regenerate|i:1668399076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e369083b8649c798afa3f43ca17da3a15402c38f', '45.120.39.90', 1668403075, '__ci_last_regenerate|i:1668403075;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668323001\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668402989;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8fe9c41594f75030b2b248e1e7506fbb97aa6a', '45.120.39.90', 1668410094, '__ci_last_regenerate|i:1668410094;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668323001\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668403075;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('816e0e81af22740abf594a44655527ae84eca485', '172.105.247.100', 1668403880, '__ci_last_regenerate|i:1668403880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9f749df8caef940de450c7ca85e1ba0e8be30a', '172.105.247.100', 1668403881, '__ci_last_regenerate|i:1668403880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b848bb7a06fd3ed7904ecf17196fa9053538e364', '172.105.247.100', 1668403881, '__ci_last_regenerate|i:1668403881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d58ab8a34bee346274f4afb9a0d0270ef923bea', '172.105.247.100', 1668403881, '__ci_last_regenerate|i:1668403881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa38ab127a6d5fcea0565ca9bd332d7e740687d', '172.105.247.100', 1668403881, '__ci_last_regenerate|i:1668403881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68c165ba47179b3fb9cca8c6bb4ba361cc0767d', '172.105.247.100', 1668403882, '__ci_last_regenerate|i:1668403882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8803276c4ee5021f99fe0cf910ece2b779419476', '172.105.247.100', 1668403882, '__ci_last_regenerate|i:1668403882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0910228b6c80562fa8a6885b37ea265a8284b6b', '172.105.247.100', 1668403882, '__ci_last_regenerate|i:1668403882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4ad6dd4c417afdaf5590fd1ad7256d2ef13d311', '172.105.247.100', 1668403882, '__ci_last_regenerate|i:1668403882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8557c274a125cf7f50cf479b4cc96980470cf5', '172.105.247.100', 1668403883, '__ci_last_regenerate|i:1668403883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24795ce20ae61bdb16f93534fcc3849ba5ffcb2', '172.105.247.100', 1668403883, '__ci_last_regenerate|i:1668403883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b07cd7288421804162e8dee3acfeb4579868d09', '172.105.247.100', 1668403883, '__ci_last_regenerate|i:1668403883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8ee7e848ee3e4521d794f6e716713fcfdba74d', '172.105.247.100', 1668403883, '__ci_last_regenerate|i:1668403883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd742951fc6a438e0aeeb824910ea8590418d00', '172.105.247.100', 1668403884, '__ci_last_regenerate|i:1668403884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88a48d26fbeda45ba673ed41caa6ffdc23e936ae', '172.105.247.100', 1668403884, '__ci_last_regenerate|i:1668403884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3d947cca0dc7081942078d9e52bc09d2d88544', '172.105.247.100', 1668403884, '__ci_last_regenerate|i:1668403884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb836fd777c45e91df09af327ab9eaef4899513b', '172.105.247.100', 1668408075, '__ci_last_regenerate|i:1668408075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc390cbbbf76c9df0c0a04dfea43fc1877bc2ad8', '172.105.247.100', 1668408076, '__ci_last_regenerate|i:1668408076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac9ea619d265405eb9b2db65c53b5bbaef1bfda', '172.105.247.100', 1668408076, '__ci_last_regenerate|i:1668408076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f90ebe1e5f850d763a1fe59cf27e231b3ede4f', '172.105.247.100', 1668408076, '__ci_last_regenerate|i:1668408076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2568aff63bc51d205db995ef11a73551e1072b5', '172.105.247.100', 1668408076, '__ci_last_regenerate|i:1668408076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6dcd647eb39c0de776424018d72f5d4cc49c2ef', '172.105.247.100', 1668408077, '__ci_last_regenerate|i:1668408077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559f8fdfbea51661f5809279f9a46aeb6313e0dc', '172.105.247.100', 1668408077, '__ci_last_regenerate|i:1668408077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08aa7b79b1b8bf6388d7f7fe7636b273f3744ad', '172.105.247.100', 1668408077, '__ci_last_regenerate|i:1668408077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93dc934b53550192b926c2740608537fb8769510', '172.105.247.100', 1668408078, '__ci_last_regenerate|i:1668408078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d8238116ffacb4caeb22a4fd00024634c525f3', '172.105.247.100', 1668408078, '__ci_last_regenerate|i:1668408078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1445b5a93edcbf93a6a53fd4c5876a92f9c40112', '172.105.247.100', 1668408078, '__ci_last_regenerate|i:1668408078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ae396b2c56b7ad873848d0671e3de68d5fa0c7', '172.105.247.100', 1668408079, '__ci_last_regenerate|i:1668408078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295037a0e1b0651e05c74654520002be01844cc9', '172.105.247.100', 1668408079, '__ci_last_regenerate|i:1668408079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6bbd0a3c0c3ad6eb4e4fe58773779e57c1fcc34', '172.105.247.100', 1668408079, '__ci_last_regenerate|i:1668408079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e249e1e17ca47ec60c1565f4f83ab6037ee15909', '172.105.247.100', 1668408079, '__ci_last_regenerate|i:1668408079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c50c5bc7e7a471e642fb9bab58ba3af8b0903b', '172.105.247.100', 1668408080, '__ci_last_regenerate|i:1668408080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7a5c48f11d775b33c8d7f40820bc8cff9a64b7', '45.120.39.90', 1668410095, '__ci_last_regenerate|i:1668410094;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668323001\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668410094;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afed21a0102e13d02f89eeb3e083c81ab4b7b8ba', '172.105.247.100', 1668412278, '__ci_last_regenerate|i:1668412278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8369d0402d95c2a8eb0530d358c2d84c137c8ee1', '172.105.247.100', 1668412278, '__ci_last_regenerate|i:1668412278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9072a4d5e1abc259e5b8a4d93e509b5b2d29bfe', '172.105.247.100', 1668412278, '__ci_last_regenerate|i:1668412278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4744a03eeb1116e5c624bcd8a6ea38c4614ca0a1', '172.105.247.100', 1668412279, '__ci_last_regenerate|i:1668412279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d94acd721c7ecdfbcb750a57c2fb92966a84068', '172.105.247.100', 1668412279, '__ci_last_regenerate|i:1668412279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19269412e521212759095cf74ee53cfbe5a465f8', '172.105.247.100', 1668412279, '__ci_last_regenerate|i:1668412279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69774b12622417739b071411dc7c1c8b1fc2d452', '172.105.247.100', 1668412279, '__ci_last_regenerate|i:1668412279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021d0bf17f451ccdd6917734f5c91b476fb295d6', '172.105.247.100', 1668412280, '__ci_last_regenerate|i:1668412280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b9a135fc5792069d872fc7ebb57c1145a4a8e7', '172.105.247.100', 1668412280, '__ci_last_regenerate|i:1668412280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939f37569cf873e65ce3d354080b37ac8b0a8d46', '172.105.247.100', 1668412280, '__ci_last_regenerate|i:1668412280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f878364e5c439be432b201b6df97619573ac8c0', '172.105.247.100', 1668412281, '__ci_last_regenerate|i:1668412281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c5f1c3628c4f4f9d3dda216c8b94652b935047e', '172.105.247.100', 1668412281, '__ci_last_regenerate|i:1668412281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0878da29e1230df275d813de3e7b427a392a0bde', '172.105.247.100', 1668412281, '__ci_last_regenerate|i:1668412281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a8548cad289b132021a3d13cf2ee28e8d4f076', '172.105.247.100', 1668412282, '__ci_last_regenerate|i:1668412281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d907f02e383a87d5021fdc2242a8d2f9fa41718', '172.105.247.100', 1668412282, '__ci_last_regenerate|i:1668412282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d73249e3b466fc887893f7e19b0c06b24f11b3', '172.105.247.100', 1668412282, '__ci_last_regenerate|i:1668412282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('addce1490c1a8d2b8039834ccc322c7c015f4a2a', '172.105.247.100', 1668416474, '__ci_last_regenerate|i:1668416474;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4103f8842ae180ee813570bee87a95b158bc09', '172.105.247.100', 1668416475, '__ci_last_regenerate|i:1668416474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7d7c543812a55f07f61777a5a07ca6c020c8c2', '172.105.247.100', 1668416475, '__ci_last_regenerate|i:1668416475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75c823dc23485d86ae7d5328839eb953739649f', '172.105.247.100', 1668416475, '__ci_last_regenerate|i:1668416475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182c4735e106bc3d51aefc9740e1771c5543b340', '172.105.247.100', 1668416475, '__ci_last_regenerate|i:1668416475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc57fd9207303e8c3a724f2ed6fb5843bc8a749', '172.105.247.100', 1668416476, '__ci_last_regenerate|i:1668416476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff98a95550d3f8ee2ab6d930b2898341a03ef0c2', '172.105.247.100', 1668416476, '__ci_last_regenerate|i:1668416476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14896f556eda7f4bc17b8e33571c5e24a27beb69', '172.105.247.100', 1668416476, '__ci_last_regenerate|i:1668416476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99fbf113bef47bff6c9246bb38a1abc20e45d77', '172.105.247.100', 1668416476, '__ci_last_regenerate|i:1668416476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92cc93c69968b9f7cd0d7b679e5bce07203bc552', '172.105.247.100', 1668416477, '__ci_last_regenerate|i:1668416477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8d1af4aa69232a8213dd9fbf3df5a4c1e2f0fb', '172.105.247.100', 1668416477, '__ci_last_regenerate|i:1668416477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf87f4f7f26b4ca80d390826d62619035e0cb903', '172.105.247.100', 1668416477, '__ci_last_regenerate|i:1668416477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3b0b299a5823dd5cf08173839042efad7d00ea', '172.105.247.100', 1668416477, '__ci_last_regenerate|i:1668416477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1706c6ceab97f25f0fb81f6282edc41b27759187', '172.105.247.100', 1668416478, '__ci_last_regenerate|i:1668416478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c8562c5e6bd490e95ea17456b110d242371635', '172.105.247.100', 1668416478, '__ci_last_regenerate|i:1668416478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d878e4bbda0337674d6d4595e0cbf1e29b171b', '172.105.247.100', 1668416478, '__ci_last_regenerate|i:1668416478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9a844e6feafbc8e537408113fed40bf8cb629c', '45.120.39.90', 1668421237, '__ci_last_regenerate|i:1668421237;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668417427;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5389fa3461e99d6aa026d97fdab49392cd33278f', '172.105.247.100', 1668420672, '__ci_last_regenerate|i:1668420672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af5789a41321261c0c81ad6b101af1571ce2ef10', '172.105.247.100', 1668420673, '__ci_last_regenerate|i:1668420673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d896ef22b1811cc46d792361582935e586589e83', '172.105.247.100', 1668420675, '__ci_last_regenerate|i:1668420675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb3d5bac6dde4485583a047c9286c1fbfb17ac1', '172.105.247.100', 1668420675, '__ci_last_regenerate|i:1668420675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e724266e6f4282ebc4c895f29a5398d8fd145c', '172.105.247.100', 1668420675, '__ci_last_regenerate|i:1668420675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88bf3fddfb6d0e11775ebcf49dc49d2fc95af998', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27739fe8745b72a5f7612cc65499faf6e4be287', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a4b9f53c2a9892b52da8e5cfc5f903997b42ef', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e1dbcaf061cfd5c65b892d62bff1ed25902936', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11cff2706e459ca5974def247c19cb652543103f', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c38525c1ff9674f4c72f9dd28ca0574f978a27a', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77aa756d2da1478c39d952a1102fac7d0d78b52c', '172.105.247.100', 1668420676, '__ci_last_regenerate|i:1668420676;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d8a5ee5d0b02f76ba7082b051dcb8009de4187', '172.105.247.100', 1668420677, '__ci_last_regenerate|i:1668420676;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e912b105373d1099790fd79fead3b74647cb3a4', '172.105.247.100', 1668420677, '__ci_last_regenerate|i:1668420677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('647682430db0ac2c3925d080d3a2a664220fefd5', '172.105.247.100', 1668420677, '__ci_last_regenerate|i:1668420677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0f6889020811f36e6baa2170615ec4f1e661a2', '172.105.247.100', 1668420677, '__ci_last_regenerate|i:1668420677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a1e354ba5ad964554e64ce3deb5c2c54615477', '45.120.39.90', 1668427657, '__ci_last_regenerate|i:1668427657;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668427373;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef64de4cc1246bbf4c8a7ab2628784b300bd97f', '147.78.47.249', 1668422309, '__ci_last_regenerate|i:1668422309;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866c00cb6d92a4a17f25df99bacc49a8ca647b38', '147.78.47.249', 1668422311, '__ci_last_regenerate|i:1668422311;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c54dd8bf3f1f3bffc5bd7baa02c4ea3f7287f2', '147.78.47.249', 1668422313, '__ci_last_regenerate|i:1668422313;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c5cbe9942df67a59a7a7251c411cdaff0036e9e', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8790cdf9452d4eae00798d3079644850e79c7b27', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e277714976e54054259855fc232a13bffe7d3da0', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c59ef815c47503c25d1367259f75c0f03724c67', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b9b9b975093cf7be0d3aa4b7029d65cf15aa9e', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df941eef967775c8a7990c447284581cbdd3a2e', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0a2e4321734740c162fdb551808561967a5beb', '172.105.247.100', 1668424878, '__ci_last_regenerate|i:1668424878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0f7ba690daef0645e482141622c9fd13e82cb0', '172.105.247.100', 1668424879, '__ci_last_regenerate|i:1668424879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8cfee2d4cc17caeb4d5de62802fe2eb0d4fc1f', '172.105.247.100', 1668424879, '__ci_last_regenerate|i:1668424879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45282e3bd4119a0e42b26c5f95035f2f908d20bd', '172.105.247.100', 1668424879, '__ci_last_regenerate|i:1668424879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f134bdd16f64b21f3ae73a8f73e514076cfc4b4a', '172.105.247.100', 1668424879, '__ci_last_regenerate|i:1668424879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ccc1391e8c37852d2dd76e5a352c6d8240cdd8', '172.105.247.100', 1668424879, '__ci_last_regenerate|i:1668424879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70afad7dff6721b0f5997517dba2c5611cbcc757', '172.105.247.100', 1668424879, '__ci_last_regenerate|i:1668424879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985eb31019ec3164db9483a4d5187c7fc5bba7c1', '172.105.247.100', 1668424880, '__ci_last_regenerate|i:1668424879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4066828b899f59ff5b7407b8f0653c2fd293fab7', '172.105.247.100', 1668424880, '__ci_last_regenerate|i:1668424880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6524b0ed44968359ef010e75519a08ef62d20e5', '172.105.247.100', 1668424880, '__ci_last_regenerate|i:1668424880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6facc449964bcd8a02a9f8775878d3afc499a7b0', '45.120.39.90', 1668431225, '__ci_last_regenerate|i:1668431225;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668427685;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e363b9b608cea26ceea78811de211e4313f521f', '172.105.247.100', 1668429074, '__ci_last_regenerate|i:1668429074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c442e71e8f38e199779e49363b03a3f3413db52', '172.105.247.100', 1668429074, '__ci_last_regenerate|i:1668429074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d435fbd3ef731ed2c2ac995f15032737018b55', '172.105.247.100', 1668429074, '__ci_last_regenerate|i:1668429074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474c96d7f168684f00bead0e9241d2352881e993', '172.105.247.100', 1668429074, '__ci_last_regenerate|i:1668429074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73eee9a1055f5a3842976eafa924b62e63b33e25', '172.105.247.100', 1668429075, '__ci_last_regenerate|i:1668429075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10deb88e609f51401f43465bab7e3fe0df6e8687', '172.105.247.100', 1668429075, '__ci_last_regenerate|i:1668429075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b234042ff0bb99e8621b57a89b9d9cd2cec4e4', '172.105.247.100', 1668429075, '__ci_last_regenerate|i:1668429075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e893b4c2151a115614fe7dedba1ab18526bad730', '172.105.247.100', 1668429075, '__ci_last_regenerate|i:1668429075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cbcfffc8958d43de48d3e62c8b12df65d8c9eb', '172.105.247.100', 1668429076, '__ci_last_regenerate|i:1668429076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92e4508c0f7696b4517a7dd4e39c64b26ba3744', '172.105.247.100', 1668429076, '__ci_last_regenerate|i:1668429076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6757473ac8bb46c0c8726d0c6c28aec6cfbb904', '172.105.247.100', 1668429076, '__ci_last_regenerate|i:1668429076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f591d556fa07dee312dcb15d8a4d8098948f424', '172.105.247.100', 1668429077, '__ci_last_regenerate|i:1668429077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88d73747a29c6b834b36200b94a9615b50222d9', '172.105.247.100', 1668429077, '__ci_last_regenerate|i:1668429077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327f9b9283a4995454b20af5d21ddb6535f9377b', '172.105.247.100', 1668429077, '__ci_last_regenerate|i:1668429077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9328392e3314de21946f3c7701f29e8f5a402419', '172.105.247.100', 1668429077, '__ci_last_regenerate|i:1668429077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b685a1c472d182e6d1c9ee2f6126c77a8b6d9034', '172.105.247.100', 1668429078, '__ci_last_regenerate|i:1668429078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2b87a6a33d4911c5f1933e931bdce913d43cc9', '45.120.39.90', 1668432999, '__ci_last_regenerate|i:1668432999;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668432996;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc5c2bdcaefdd472563b136ed6dd775a97dcb5d', '45.120.39.90', 1668434236, '__ci_last_regenerate|i:1668434236;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668433112;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19115dd3f4f315f514bfb91ae6a5ff80a7b3033f', '172.105.247.100', 1668433283, '__ci_last_regenerate|i:1668433283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa8f6883343506722b7db369750c5103ff08ebc', '172.105.247.100', 1668433283, '__ci_last_regenerate|i:1668433283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ecdcbaa3f3f6dc7eb73278704a8ab788f72b19', '172.105.247.100', 1668433283, '__ci_last_regenerate|i:1668433283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31239ff57ea591f0272e9e9ecdce4eb8257dcdd', '172.105.247.100', 1668433284, '__ci_last_regenerate|i:1668433283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a3ac6e839821eadff9aea371e3be0962062ca5', '172.105.247.100', 1668433284, '__ci_last_regenerate|i:1668433284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f4da7eb8e423c00f724fc38b99ae8e515d1165', '172.105.247.100', 1668433284, '__ci_last_regenerate|i:1668433284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadec0dfbb76ebc21c98fdd42fb287333a1ae465', '172.105.247.100', 1668433284, '__ci_last_regenerate|i:1668433284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b547f22759e9b397a9bacdecc527cc5fc6797ff7', '172.105.247.100', 1668433284, '__ci_last_regenerate|i:1668433284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a9d4fe9b2831a4d9a0fb1e9e85b47981ac08bd', '172.105.247.100', 1668433284, '__ci_last_regenerate|i:1668433284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01aab7cc120120d190cfe141ba5ba236fc819cd', '172.105.247.100', 1668433285, '__ci_last_regenerate|i:1668433285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a2bbcc2f04a7de593298770c7090df05953bb8', '172.105.247.100', 1668433285, '__ci_last_regenerate|i:1668433285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82b383038de72fdddf910cfe7b016317012ef3f', '172.105.247.100', 1668433285, '__ci_last_regenerate|i:1668433285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ddf0bc363d30b6cb4ac87bcc03f18083940b60', '172.105.247.100', 1668433285, '__ci_last_regenerate|i:1668433285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4dd275b69e45af2787ad70a4da2a915be69905c', '172.105.247.100', 1668433286, '__ci_last_regenerate|i:1668433285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e285c69ffdd64090fa04c7491d4735b7cc5beb6', '172.105.247.100', 1668433286, '__ci_last_regenerate|i:1668433286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff3d60a1d3cf06c5c04c996ad0d3fdd43923486', '172.105.247.100', 1668433286, '__ci_last_regenerate|i:1668433286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8dc071879c31e050fce2f1545d2d4a0b220d882', '45.120.39.90', 1668436599, '__ci_last_regenerate|i:1668436599;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668434239;register_id|s:3:\"248\";cash_in_hand|s:9:\"1530.0000\";register_open_time|s:19:\"2022-11-13 20:42:05\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4624048999b4aeb5525ee1e34f835d5ee464339', '45.120.39.90', 1668436811, '__ci_last_regenerate|i:1668436599;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668401333\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668436811;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5614eb6798d7f16fd83a7d7159fea90d6b668c', '172.105.247.100', 1668437476, '__ci_last_regenerate|i:1668437476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bab752feebd4ffaf5a9be9496844a7f665f5146', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fefd847c9dced1679504d4902a9777aab769a2c6', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a6822324280fa13cfe952bcfe929f9b4b271e4', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3847e149a6d56c3d21580a39b24b482813efbcf', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b93a5ac3962bb5700931407f2e79c26e31dbc9be', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ba4efd94549d13ac4e4ac7cbd36761fa3d53e9b', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af42738494af25755e9f7aa197c9322777f554a', '172.105.247.100', 1668437477, '__ci_last_regenerate|i:1668437477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa77502229d72b6451a24fbd978d32fb57a2f97d', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec86cfb90066be48cd2b6a0b1aa99c972749ce9', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8628b36ded0accc139c14efe982580b6c42c8943', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5386b9fe0a47d53dc44531e75f440d45bb93efc1', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1e509d05460732055988d027b9af33d364d57d', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fa357a5301e4a97277cf000efb3141578762c1', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02159b144e16e8b9d950ddb42848d5e2572e175a', '172.105.247.100', 1668437478, '__ci_last_regenerate|i:1668437478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4281c448f17f8a275fbde048dfef3fdeff18fe', '172.105.247.100', 1668437479, '__ci_last_regenerate|i:1668437479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a482693a273eb5f2fa75a48111dff39844c97cd4', '147.78.47.249', 1668439078, '__ci_last_regenerate|i:1668439078;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af2b7db7b2386d4837c829dfe9534e2eb687a52', '147.78.47.249', 1668439080, '__ci_last_regenerate|i:1668439080;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1a6073f207b36f05f90e158f82c2fd66d3870a', '147.78.47.249', 1668439082, '__ci_last_regenerate|i:1668439082;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3787da8a674c9263ad3accc24c91e550511c38bf', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f87fc071e4e3a224a678e3c304cf6d1d2f8dadaf', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e01cf22169eccaaec09fdf71fa7392f03f057e', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c65652c57f2fd510e7e54c26e37d2649918703a2', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5586b1591b2ed46cbf4619087baea38e250c87bc', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da1c91d76d6a522f539c98a6613c784862633666', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e342464be3b9ad344d0be5bff57193f7a6113e', '172.105.247.100', 1668441679, '__ci_last_regenerate|i:1668441679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b6dbcce40798341ea1c6a0dcf172bbd9143e3fb', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f1a893a9e55880cec9fb149a8d922998d9d35f', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6189745473b439b3d146a6da529bfb6a4c3280df', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9da40aa91f538c4d3a50fa890eee793f3cba755', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14fdd0c00b88219597d23fb36c8a9757cc092a5', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90365c02e9e016b2bc59c15a65b8d14725b9ba8', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94247a7ffccfdf43459daa9a0b2dc57da4c385cc', '172.105.247.100', 1668441680, '__ci_last_regenerate|i:1668441680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4ea929fcd97e4284151217868f99d9d4d6e558f', '172.105.247.100', 1668441681, '__ci_last_regenerate|i:1668441681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f26d9cecc4afb44439e64aad4a7fc743fe42db', '172.105.247.100', 1668441681, '__ci_last_regenerate|i:1668441681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27561e370949f833836b218cf5ffb8ac3ed38b55', '172.105.247.100', 1668445883, '__ci_last_regenerate|i:1668445883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cc71715b45ec423af0e958fa3a9aef71611a22', '172.105.247.100', 1668445883, '__ci_last_regenerate|i:1668445883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db78b4e169081346f7ad8f11356e569c66be73c1', '172.105.247.100', 1668445883, '__ci_last_regenerate|i:1668445883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36fea1f55e55f8f5d699685169c6b30c28748d2', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed319b93d8e28cdca115915f14998956c8748e62', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975a22805668a2181830f7ca7f76f062402928b4', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0d6fd35d1d4ffc596ec890b2a8a69e689d561b', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5d49ee572fe73840678ce96640209a7600e968', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d53b17f7e8ba99a1cb32a8190824991e8538362', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b64db08dd0b5efda53653c865ae77767729201', '172.105.247.100', 1668445884, '__ci_last_regenerate|i:1668445884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2233299575d6c2e7fbad650d2d7dfa8e18f735e8', '172.105.247.100', 1668445885, '__ci_last_regenerate|i:1668445885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0e1450421573c0dd8305d18280839854c3bd6e', '172.105.247.100', 1668445885, '__ci_last_regenerate|i:1668445885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfe8dbb7617e9c7fb0a8ed411d484cdc3440445', '172.105.247.100', 1668445885, '__ci_last_regenerate|i:1668445885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc4ea832b30a31eead69d305f6af50df39e63cc', '172.105.247.100', 1668445885, '__ci_last_regenerate|i:1668445885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff3b28ab585dae9c4a59123c0d65fec3978fad3', '172.105.247.100', 1668445885, '__ci_last_regenerate|i:1668445885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0745749e5155028291acd63a3ab6f659b21cc5ed', '172.105.247.100', 1668445886, '__ci_last_regenerate|i:1668445885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16d43d37cb906fdf6528ec50aafb0e71879f44b', '172.105.247.100', 1668450074, '__ci_last_regenerate|i:1668450074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4242a501cfbda645c4e91ff617f42a72dbc4296', '172.105.247.100', 1668450075, '__ci_last_regenerate|i:1668450075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a5a95d9027674a679aad300268bb8d779806407', '172.105.247.100', 1668450075, '__ci_last_regenerate|i:1668450075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2a4a980bc058dfbe1810a0285b6ca1ebb33e1e', '172.105.247.100', 1668450075, '__ci_last_regenerate|i:1668450075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c2cbb7a3112d8f6c8a75c76fc73d7e251546866', '172.105.247.100', 1668450075, '__ci_last_regenerate|i:1668450075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcdf2f104b6713dd2df64932d1883b9b9b8340f5', '172.105.247.100', 1668450075, '__ci_last_regenerate|i:1668450075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b97bf1388c7a9e12dc674c98fe514cf57ef291c', '172.105.247.100', 1668450075, '__ci_last_regenerate|i:1668450075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f2e2248b138c7a095ceffa2cfe8279ccbf7872', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2e1f85c8a7343fb102781373629af6b9ef3ba1', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d655b1e2d656bdd27be1e0826af45c611e73b96', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e72caae5a4fa4922d58a3846f3de5b6c632f90', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c0495d14da2c108cd68b7c3a2835df16a43469', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99507d8ce4f6bbfebebc829f45e1c01f6ba73614', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3ab2a857b45ea514d2c21c6b6f2e69e9393c96', '172.105.247.100', 1668450076, '__ci_last_regenerate|i:1668450076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae55b3ede48a99fb79ddb3536019267e85844b8c', '172.105.247.100', 1668450077, '__ci_last_regenerate|i:1668450077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f749811c15434c6c2d9a8b8e6b866fb6ad71aa3', '172.105.247.100', 1668450077, '__ci_last_regenerate|i:1668450077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9cd959c79192dae118a3fe5f68f1caaaf3ee6a', '172.105.247.100', 1668454280, '__ci_last_regenerate|i:1668454280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6679175dd56815c4e4481d96b2e2047ef71c45e', '172.105.247.100', 1668454280, '__ci_last_regenerate|i:1668454280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96d0adbdbcd893e7cbc9c9379aae2ddb5015f61', '172.105.247.100', 1668454282, '__ci_last_regenerate|i:1668454282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81030996d553bd87d11b62bbd1fd02b286a851ab', '172.105.247.100', 1668454282, '__ci_last_regenerate|i:1668454282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076b74bef11c1d15d8a4367a15963eb55d5a6729', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03155fdcbbdad39816be9fa518498ac3de3c3a44', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05effed35fa828180b351d3d5fea8402fd5dd83', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cba71d0faac12f6a0710991678c5514077d124f', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1861f41075fc9a17e82c0d67433334f4bce8ec8', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e095ce0ac44ee08f5e460e8ad2cb47f24a79c7', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90962f92c9de5415cf04523b1c853b5d02402b70', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8165658e81cb5392fea225fbd371c26db287d1', '172.105.247.100', 1668454283, '__ci_last_regenerate|i:1668454283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e00671cf95ca0b16d30f74d6f65ba9529495c7a', '172.105.247.100', 1668454284, '__ci_last_regenerate|i:1668454284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b07c7f2000a3d78c49bd5c14f6cc41ed9c1f2b5', '172.105.247.100', 1668454284, '__ci_last_regenerate|i:1668454284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0719eabcac6ec3f048bcff0b0b319c408fc91f40', '172.105.247.100', 1668454284, '__ci_last_regenerate|i:1668454284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b684e89fac8f3be13d22f1b897fe6b1b3f08a28f', '172.105.247.100', 1668454284, '__ci_last_regenerate|i:1668454284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c16e49a8d10c36da9e1cea2110df712293728b', '162.142.125.220', 1668455445, '__ci_last_regenerate|i:1668455445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b048cd30e2be49a3f346c4ceaa6a1e59cfb640', '162.142.125.220', 1668455445, '__ci_last_regenerate|i:1668455445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1237a76cdc6c460bff5ba0574d0f6ed68d65d0b', '162.142.125.220', 1668455446, '__ci_last_regenerate|i:1668455446;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab53289239ebd5d2d3b0ce5a18df85546a71747', '162.142.125.220', 1668455446, '__ci_last_regenerate|i:1668455446;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba82a52ca24a0267c7508eaada1881ada35d135', '162.142.125.220', 1668455447, '__ci_last_regenerate|i:1668455447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a82b0c62344ac23b148775ae477bbe8de5a560ba', '162.142.125.220', 1668455447, '__ci_last_regenerate|i:1668455447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e7a653b9905c340d4497fbf4f5ba472504f1f8', '172.105.247.100', 1668458476, '__ci_last_regenerate|i:1668458476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be146a0016ee46365484cac43ff1d8ffdb59b09', '172.105.247.100', 1668458477, '__ci_last_regenerate|i:1668458477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49c165e23add470afbae7d6aada6116b80223b2', '172.105.247.100', 1668458477, '__ci_last_regenerate|i:1668458477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85d8904114783eb2d44f7f19ddfe5e7c9a5bf35', '172.105.247.100', 1668458477, '__ci_last_regenerate|i:1668458477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0b7069c513a72ba7c273f02955d7f008b7ac4a', '172.105.247.100', 1668458478, '__ci_last_regenerate|i:1668458477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d0509ae9ac0be50b2c1c61341e00183f1502321', '172.105.247.100', 1668458478, '__ci_last_regenerate|i:1668458478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e537bd9ff1a4bf532bd9d7b1a0783bc123bfb5', '172.105.247.100', 1668458478, '__ci_last_regenerate|i:1668458478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb83fe89faed0b740125ffbdaba25f2d05a028ac', '172.105.247.100', 1668458478, '__ci_last_regenerate|i:1668458478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f4bf2e290f0cc81a9a755026bea7c4989334f8', '172.105.247.100', 1668458479, '__ci_last_regenerate|i:1668458479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3853271314124c971324322e6ba406cf80627e17', '172.105.247.100', 1668458479, '__ci_last_regenerate|i:1668458479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d70f10fee60882963b4d9515c8a750aef4d884a', '172.105.247.100', 1668458479, '__ci_last_regenerate|i:1668458479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d8ca92bacbd72f8ecad84cd49c0646bbe3f915', '172.105.247.100', 1668458480, '__ci_last_regenerate|i:1668458480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e00fe32966b248d92a098d78280e7899f7c270c', '172.105.247.100', 1668458480, '__ci_last_regenerate|i:1668458480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899d428c6b1d19ece5dde48cec0ee11beac430a1', '172.105.247.100', 1668458480, '__ci_last_regenerate|i:1668458480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87b293f437c4b2086eedf9b4021972d42ebfb84', '172.105.247.100', 1668458481, '__ci_last_regenerate|i:1668458481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d98215a6985fb5dd55603f161efe665e7520af', '172.105.247.100', 1668458481, '__ci_last_regenerate|i:1668458481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1625a6ec8acf09389e530a4cea4bb2296a3498', '172.105.247.100', 1668462675, '__ci_last_regenerate|i:1668462675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb57f209504c0012aad45468a2f4f6c9d2e5795', '172.105.247.100', 1668462677, '__ci_last_regenerate|i:1668462677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab723fb7774384269b0ce829ff18969c8010ab68', '172.105.247.100', 1668462677, '__ci_last_regenerate|i:1668462677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3db28e928bbd35bd6697f0cff5d1f8d91b669c2c', '172.105.247.100', 1668462678, '__ci_last_regenerate|i:1668462678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6643a410eccb947bc53dd8ed505d469062023c19', '172.105.247.100', 1668462678, '__ci_last_regenerate|i:1668462678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba7029f4949beb396bb51a9a174295135782f9c', '172.105.247.100', 1668462678, '__ci_last_regenerate|i:1668462678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef9631a2376d3145c0a0590d0a578fc82fdc61af', '172.105.247.100', 1668462678, '__ci_last_regenerate|i:1668462678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0684bd6bbc6b809d02646c44b8fc76f2cfe164f5', '172.105.247.100', 1668462679, '__ci_last_regenerate|i:1668462679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c92a86c8a68742889881830c7e67136d0c609ff', '172.105.247.100', 1668462679, '__ci_last_regenerate|i:1668462679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63b63fc01493df2550e264c08729f798edd8628', '172.105.247.100', 1668462680, '__ci_last_regenerate|i:1668462679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd1bde9dc4e97164756e78e09e1e6fdf23f8d7b', '172.105.247.100', 1668462680, '__ci_last_regenerate|i:1668462680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfffe0d70dbae1c112fa8a14767cc339a845854a', '172.105.247.100', 1668462680, '__ci_last_regenerate|i:1668462680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466381094fe020f2ea8e9e3437e9d835301e4f5f', '172.105.247.100', 1668462680, '__ci_last_regenerate|i:1668462680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d16b4ced1698b5b9f504e3c12289582947b356', '172.105.247.100', 1668462681, '__ci_last_regenerate|i:1668462680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a6ddbee9e86beb03a1104ba554d274a96dc8ac', '172.105.247.100', 1668462681, '__ci_last_regenerate|i:1668462681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('242df0d2812f68b808abc2e3e25923afe95e11d0', '172.105.247.100', 1668462681, '__ci_last_regenerate|i:1668462681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c872848d3c8f16be9f92b911fd69582473dfe7cf', '205.210.31.13', 1668464938, '__ci_last_regenerate|i:1668464938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589cf6dc3e03810968e35f593e5b8371ebf66d16', '172.105.247.100', 1668466877, '__ci_last_regenerate|i:1668466877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d45a447d0902418e327038c35f590689a15abd8', '172.105.247.100', 1668466877, '__ci_last_regenerate|i:1668466877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb9b437870d249bf843402279cca1fbdd1aeba3', '172.105.247.100', 1668466877, '__ci_last_regenerate|i:1668466877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f88f410af2f6ffa2a7606b2fa5dfa76d1fa95f', '172.105.247.100', 1668466877, '__ci_last_regenerate|i:1668466877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4028a2574780a37e1da58cdb81b3d89822874a', '172.105.247.100', 1668466877, '__ci_last_regenerate|i:1668466877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1488847ef9dca9fd42b079f5ac244e543af514', '172.105.247.100', 1668466878, '__ci_last_regenerate|i:1668466878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('206cecb99c1434bc23439919db88c22847be8f0f', '172.105.247.100', 1668466878, '__ci_last_regenerate|i:1668466878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b8fa7412225850ecbc8d30d4c28bb076bfa578', '172.105.247.100', 1668466878, '__ci_last_regenerate|i:1668466878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc46ec2ba1d72f11bf29134b7ae157efa5cb841c', '172.105.247.100', 1668466878, '__ci_last_regenerate|i:1668466878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f1bd5abbf64ef0e8babc969120de7931538bc3', '172.105.247.100', 1668466878, '__ci_last_regenerate|i:1668466878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a86877208292d8ff2456e8afd57a31fc7a8d66', '172.105.247.100', 1668466878, '__ci_last_regenerate|i:1668466878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0508a8ddb08b77fe0a5f4e1952cf535498f0aa79', '172.105.247.100', 1668466879, '__ci_last_regenerate|i:1668466878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc8516b65d6314be6549aa9814c4fde1cff50d4', '172.105.247.100', 1668466879, '__ci_last_regenerate|i:1668466879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07cbcc6f947f71e7dd7abaa6344c5c4378338022', '172.105.247.100', 1668466879, '__ci_last_regenerate|i:1668466879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3a3d2dd267500c51f5604a31db905ccfd653d6', '172.105.247.100', 1668466879, '__ci_last_regenerate|i:1668466879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50eabb4eecee0efe8adaf02dfaf4059c02416aee', '172.105.247.100', 1668466879, '__ci_last_regenerate|i:1668466879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b891ac4185cf1c6fe6e623f17a9bd30587e54a48', '172.105.247.100', 1668471075, '__ci_last_regenerate|i:1668471075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbd11dd341818f841ff2d94af3cbee6f3254ad8', '172.105.247.100', 1668471075, '__ci_last_regenerate|i:1668471075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d1fb2123bac701067be271cd0dfb0ac120995a', '172.105.247.100', 1668471075, '__ci_last_regenerate|i:1668471075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0321109196aaf0f9d4b3c3650adb9700367bbb83', '172.105.247.100', 1668471076, '__ci_last_regenerate|i:1668471076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079f955597e0a3d3be7f4fd8c52cb7cba691d7ba', '172.105.247.100', 1668471076, '__ci_last_regenerate|i:1668471076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f41536c0686e048fc69d5b392162c8dc3f9f32', '172.105.247.100', 1668471076, '__ci_last_regenerate|i:1668471076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6866c14536ef0fdd6870ee9897e678e70fe467b', '172.105.247.100', 1668471077, '__ci_last_regenerate|i:1668471077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57b5766a2e60750147cbcc10fd0d512064e9e13', '172.105.247.100', 1668471077, '__ci_last_regenerate|i:1668471077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9576591aeb43f99b3593df570d44fb867405868d', '172.105.247.100', 1668471077, '__ci_last_regenerate|i:1668471077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('376a9a8a9db82f93f57aa225422a912cbb801ee2', '172.105.247.100', 1668471078, '__ci_last_regenerate|i:1668471077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263c265dc6a5537252c330e7cd2b61496fd90454', '172.105.247.100', 1668471078, '__ci_last_regenerate|i:1668471078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232070f0e4f28700038080ac0a38931cc83cdcfb', '172.105.247.100', 1668471078, '__ci_last_regenerate|i:1668471078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8e09b25cfc576f62e944b6fc1a4108991a5cca', '172.105.247.100', 1668471078, '__ci_last_regenerate|i:1668471078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3517e685e76ea4b02226ee4f9b6fde1c1313b634', '172.105.247.100', 1668471079, '__ci_last_regenerate|i:1668471078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7307125e35a3eb5e718a17dcbb320b70bc110f1', '172.105.247.100', 1668471079, '__ci_last_regenerate|i:1668471079;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0b5102aa408e00365efb454ddc59e855ed5ac5', '172.105.247.100', 1668471079, '__ci_last_regenerate|i:1668471079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f06b56db9fe3e7d8bf00e974705d566487e71e5', '172.105.247.100', 1668475273, '__ci_last_regenerate|i:1668475273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142a3adf4425e256ff7861f4cb2889b72c7ea3a7', '172.105.247.100', 1668475274, '__ci_last_regenerate|i:1668475274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4368e0970c79735cc70f049b7637c11549c81f16', '172.105.247.100', 1668475274, '__ci_last_regenerate|i:1668475274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58f9a4d1cacee04617e50acae4d9f42a1303a76', '172.105.247.100', 1668475274, '__ci_last_regenerate|i:1668475274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a3114d06b912efbc64d8ab25f5c059a97be9ca', '172.105.247.100', 1668475274, '__ci_last_regenerate|i:1668475274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6910ef04e68ef695a9ee388ea84b8622762044a8', '172.105.247.100', 1668475274, '__ci_last_regenerate|i:1668475274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39119226e88ffe0dfdc59e473ed30a9ddad8c0e9', '172.105.247.100', 1668475274, '__ci_last_regenerate|i:1668475274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e737218450a973cf7a0f8ec57ac88cf9741eec58', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8a15d3791f802067e2b93b1a38ce0b171cc3ec', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d5e3043c0b163b79c9a2c40dbc15e39e82f864', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40112a97a1d7da8a53796e1d630a62a1f2f92a71', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223bc85eb1b56f7dd311be4a05e5f63c84481be9', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38337cf538f8aaf00aec2edf59937194f57beb41', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68768c7b04e5138bd3235512bdc8dd5547ded401', '172.105.247.100', 1668475275, '__ci_last_regenerate|i:1668475275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5e8dd4c563e76e374001b0cf10b83ac138786d', '172.105.247.100', 1668475276, '__ci_last_regenerate|i:1668475275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f9189a25e0683071e8ee452c0de8c0873f573b', '172.105.247.100', 1668475276, '__ci_last_regenerate|i:1668475276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff8ec2eeb61f3adc233b58c8cad325c627c59bd2', '172.105.247.100', 1668479482, '__ci_last_regenerate|i:1668479482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68cc861bc9a14ec6f5d940e6dfacf47b16aece62', '172.105.247.100', 1668479483, '__ci_last_regenerate|i:1668479483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452c245591ba08ce2fee2ee4a32cf41bf69d21f9', '172.105.247.100', 1668479484, '__ci_last_regenerate|i:1668479484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0242c4c6db740f87481ae24870970a557914e598', '172.105.247.100', 1668479485, '__ci_last_regenerate|i:1668479485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec145c43f5f61ea22126f0ad82062002d8169a6f', '172.105.247.100', 1668479485, '__ci_last_regenerate|i:1668479485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e51e9bfced28165516d3e10aa549bc4c4278738', '172.105.247.100', 1668479485, '__ci_last_regenerate|i:1668479485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f190634ce9a32847d4cdeb718755a6343f11546', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b1f1f5c5bfe185fc14e2df7a8a091d04f731c20', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a962e0aa9d7ff9f0708c917b794cd6e6f7c18d', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('365168015e2f7eac94069430cfeb171f69438fbe', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2dc144e9a650e076e22af69e80cc81b2d380425', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63425e675050b7762a8a20669cdb6e67fe834fa2', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3223292b6cbf95bc62160982938a91e539fe6829', '172.105.247.100', 1668479486, '__ci_last_regenerate|i:1668479486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741730d3fb769db49b9c9ddff5f23f040d21a95f', '172.105.247.100', 1668479487, '__ci_last_regenerate|i:1668479487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e90db2e450c7dc466a24520f3f304c40bc8879', '172.105.247.100', 1668479487, '__ci_last_regenerate|i:1668479487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82da176cae91d47d59bf645dd76387499c5ba340', '172.105.247.100', 1668479487, '__ci_last_regenerate|i:1668479487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23df895bb64cfe9cadcc9e74492fa420cf317db9', '172.105.247.100', 1668483681, '__ci_last_regenerate|i:1668483681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a58396c1858313f85ad2b0bd616ff24f285c74b', '172.105.247.100', 1668483682, '__ci_last_regenerate|i:1668483682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495d813aa16b0c9de8c844d559088942f8541074', '172.105.247.100', 1668483682, '__ci_last_regenerate|i:1668483682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bb3fe6ef6af5c58efdb30fe910797560d9077d', '172.105.247.100', 1668483682, '__ci_last_regenerate|i:1668483682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70ef04279e508ff2da67c3412adcfdc50e3140f', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c4e5dd0b437a5317aef0810c45b882596355b4', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f208822b225e0eb70e53030d247415fab6823b', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8bdbdb74d0c5d6daa8ffbc5ad006cd6d56b4e85', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7e72afa226949b65a1eb05a4d4e880d30bf0be', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74440cc6d53fded5faa4c7b871a8af2d7bf69e12', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79870ab5d15e5d3de75a5ef52cd84028ac72c12', '172.105.247.100', 1668483683, '__ci_last_regenerate|i:1668483683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ae4d77b722656716ded4c016cd4d3e66f894c6', '172.105.247.100', 1668483684, '__ci_last_regenerate|i:1668483684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0147ae4e5951f37c8c00a82e60f197cce5be728', '172.105.247.100', 1668483684, '__ci_last_regenerate|i:1668483684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776440e347f24bc8ef2aef83dcd6f85e4a65e28e', '172.105.247.100', 1668483684, '__ci_last_regenerate|i:1668483684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1e67a1e5c04fc72ef3063f78d5c02ec9862afd', '172.105.247.100', 1668483685, '__ci_last_regenerate|i:1668483685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cc1171a07de34b5216fb6c73b0d83bc27171c3', '172.105.247.100', 1668483685, '__ci_last_regenerate|i:1668483685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577833c695a63f54e14f500f90a8dfde9d52d0d5', '172.105.247.100', 1668487874, '__ci_last_regenerate|i:1668487874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557fc492688f633565a2a13bae786e4a05b1327a', '172.105.247.100', 1668487874, '__ci_last_regenerate|i:1668487874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077c43381be61f57cfa94ccd12ad01a03b171df7', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2faf74350456a44997e3a6fa9c37daa0c8818646', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db852ec9cc3165ca78ee6287a90ea454783994d', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('335ea7ca6b0ae22f3072bbf6978b9c76363ab87e', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f515381a0748d0fc415541df2cccd6ebb72d27d', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42edba290b97b1f26ade745865f3ed05fe11a68b', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('326cd00813a8513752a8da51e16a23c639525d21', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ffea2e5f9c85be043d91ed68e0ca849ab68e0a9', '172.105.247.100', 1668487875, '__ci_last_regenerate|i:1668487875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c9c40317cdf5059a814a03a2dc713910aacddf', '172.105.247.100', 1668487876, '__ci_last_regenerate|i:1668487875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3182843e1c1b749449fe66106b727006397975', '172.105.247.100', 1668487876, '__ci_last_regenerate|i:1668487875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3beb186878ac82d08b6de8b0ce68aa02c012d6', '172.105.247.100', 1668487876, '__ci_last_regenerate|i:1668487876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c847919bd31e18512ac766790c560d307d16ee2a', '172.105.247.100', 1668487876, '__ci_last_regenerate|i:1668487876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4ecaf5c80d9340f1de8f69397e5fe742c16aac', '172.105.247.100', 1668487876, '__ci_last_regenerate|i:1668487876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37dea43e4e93e6e36fba77d93ac2a1f5bba2a74f', '172.105.247.100', 1668487876, '__ci_last_regenerate|i:1668487876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d995a99b1a7c5b71b04d6da0011966cbbb8e585f', '45.120.39.90', 1668488227, '__ci_last_regenerate|i:1668487984;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668417366\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668488104;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('617911d6aa563e79d48363b23115efdfd7d4ab30', '172.105.247.100', 1668492075, '__ci_last_regenerate|i:1668492075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c0570d459072749191675229319c6c5e869c46', '172.105.247.100', 1668492075, '__ci_last_regenerate|i:1668492075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90e2c0377533311b9b561053007be09ce0b6ab1', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e12983a691c5b13913932db1115157834e5ca33', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068a695f42f9cbf5f3143373acfd5aede6157035', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd72d5543190dcf1268453aff1a07753ce88e678', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb5841ec8760af525d1b57dfb897abb57f32cbf', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca75f4baf613c7e6ca5715b9abf66dc38484d5c5', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b68115bf173328441943ddbb1162e3b323df97df', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb40c59ba5fb3bb30c5b4c58324beaba18f58e3', '172.105.247.100', 1668492082, '__ci_last_regenerate|i:1668492082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa21b0f67558cd8a6deef9ea2e2e0a0866aa036', '172.105.247.100', 1668492083, '__ci_last_regenerate|i:1668492083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee4c9f93421dc6f2a00cd589c2e43e21f87c1e5', '172.105.247.100', 1668492083, '__ci_last_regenerate|i:1668492083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ca2373029a4ae8d79fbbcb0f8b3255cc629661', '172.105.247.100', 1668492083, '__ci_last_regenerate|i:1668492083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f823140febfe5649ad372394c537d2b3a2b90a92', '172.105.247.100', 1668492083, '__ci_last_regenerate|i:1668492083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0be30aa7c5cc9aa088627fe8bd46d12798122f', '172.105.247.100', 1668492083, '__ci_last_regenerate|i:1668492083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d8e5b6a900fdc9b7277be83be937b24f554793', '172.105.247.100', 1668492083, '__ci_last_regenerate|i:1668492083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc546744b5d7c9e5e89911bc46a28726dd3bff3', '51.159.214.50', 1668495574, '__ci_last_regenerate|i:1668495574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6017512e370542674bcd0beb4b7563a617d9016', '51.159.214.50', 1668495575, '__ci_last_regenerate|i:1668495575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93de57bdcccb71568a15afb3b41dc783a91f7a05', '51.159.214.50', 1668495575, '__ci_last_regenerate|i:1668495575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0828df2c0e42941f341425f83fa0eb79629625ed', '172.105.247.100', 1668496274, '__ci_last_regenerate|i:1668496274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a327704223bee68acf222b6af60c87cf1680e1f2', '172.105.247.100', 1668496274, '__ci_last_regenerate|i:1668496274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4115b27bee4089081cf4ca54d6aa8f53fdc0fd73', '172.105.247.100', 1668496275, '__ci_last_regenerate|i:1668496275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706d3c317c5d171d316fbf93a924fb373245aaf9', '172.105.247.100', 1668496275, '__ci_last_regenerate|i:1668496275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4321c53d76e309c473702f2a6549b434d4af5fa0', '172.105.247.100', 1668496275, '__ci_last_regenerate|i:1668496275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e8246b848d96944c103dd023aa7e2eaa375508e', '172.105.247.100', 1668496275, '__ci_last_regenerate|i:1668496275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28f2abd551062c7c2dcfd5cb41dd7e2e6a31383', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69633eb1f937fb7fce387d4a7c74631a450d454d', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba2b22c3b15b2fb979ada305ad0b00e2db02190', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a7c8ee66771469b69263ec962734935d4de368', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d377d360195bf885fb5968d802cfc95d1924d671', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdead2ad3270aee088dbad4c1de145e639bd68e', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cde0abb201c9da3fee7d655576dec5134919d71', '172.105.247.100', 1668496276, '__ci_last_regenerate|i:1668496276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352030b3fa8b74cf0264785320d8e99c0ab44243', '172.105.247.100', 1668496277, '__ci_last_regenerate|i:1668496277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510c237d67ba18bca7d0beaa65127c14714308e0', '172.105.247.100', 1668496277, '__ci_last_regenerate|i:1668496277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6e5ce4f6869030b5dcadc7c0c8a68a2af5d92b', '172.105.247.100', 1668496277, '__ci_last_regenerate|i:1668496277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579c9a5078199dcacdd19990cb503f54d0487a15', '45.120.39.90', 1668497078, '__ci_last_regenerate|i:1668497078;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668497041;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a59f813d127437c474da59e25e8e60cad38fcbf', '45.120.39.90', 1668499095, '__ci_last_regenerate|i:1668499095;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668499036;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229cb261f1c8e59c779103ebaddf1114c2846199', '45.120.39.90', 1668500419, '__ci_last_regenerate|i:1668500419;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668500384;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd152f812fa21e1474af385354cb5e09a780eaa', '45.120.39.90', 1668500739, '__ci_last_regenerate|i:1668500739;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668500623;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be249be99dc9e36ece616888e0a98d70dea7355a', '45.120.39.90', 1668505603, '__ci_last_regenerate|i:1668505603;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668505588;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36167ad685c36ab3242c24c2e97001df53124ffd', '172.105.247.100', 1668500477, '__ci_last_regenerate|i:1668500477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3dff7231587901b685dac7f4abf40ead82fa61', '172.105.247.100', 1668500477, '__ci_last_regenerate|i:1668500477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d9d31176101300a65c8d559e117c1969c50696d', '172.105.247.100', 1668500478, '__ci_last_regenerate|i:1668500478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed4db6e8224649d76b93fc7c73c5a378d10e4aa', '172.105.247.100', 1668500478, '__ci_last_regenerate|i:1668500478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7ae6fbd0ce260951d4ea2f72c32deb8ecaabbc', '172.105.247.100', 1668500478, '__ci_last_regenerate|i:1668500478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3e4dd572e78842f6868a18d0826480b73677c9', '172.105.247.100', 1668500478, '__ci_last_regenerate|i:1668500478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0c2be25041aa3246c75c63f9af803170d9e633', '172.105.247.100', 1668500478, '__ci_last_regenerate|i:1668500478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b130e2b0cfd1cf934104b6c6643172268b62b291', '172.105.247.100', 1668500479, '__ci_last_regenerate|i:1668500478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927758025b755fcc2279dcff8602cbfe9353101e', '172.105.247.100', 1668500479, '__ci_last_regenerate|i:1668500479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f96e5fae35e7dcd71994b735e71115675b7ed2', '172.105.247.100', 1668500479, '__ci_last_regenerate|i:1668500479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2ac26ca397b36afff83cebdd8e4e4f67dc7899', '172.105.247.100', 1668500479, '__ci_last_regenerate|i:1668500479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdeb6ed3b5ae0c74ee5500e74970177c2d57cad', '172.105.247.100', 1668500479, '__ci_last_regenerate|i:1668500479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5b254ec6dc2625546f6b86ca6cb30916d0835d', '172.105.247.100', 1668500479, '__ci_last_regenerate|i:1668500479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78da93280f13d25188cbeb03ed4166e4192ff41', '172.105.247.100', 1668500480, '__ci_last_regenerate|i:1668500479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df71ff1327d254e28d3772a617a23ac98d922c51', '172.105.247.100', 1668500480, '__ci_last_regenerate|i:1668500480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24188b1c9d2ec41c05ccb726644a32281b62da31', '172.105.247.100', 1668500480, '__ci_last_regenerate|i:1668500480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcfc03260c107cf638b71afe1cf6686d1ecc030c', '172.105.247.100', 1668504681, '__ci_last_regenerate|i:1668504681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350f38110c740ec8c27e36f035fb16ce5cef65fc', '172.105.247.100', 1668504681, '__ci_last_regenerate|i:1668504681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c0596d771b1562b2a2380f769bf615cc863aaa', '172.105.247.100', 1668504681, '__ci_last_regenerate|i:1668504681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312abac3928da2c6280466dd4fa0a3259eb1f43f', '172.105.247.100', 1668504682, '__ci_last_regenerate|i:1668504681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce04acd5e9500d211bfbf8439f06ba3332b73c9', '172.105.247.100', 1668504682, '__ci_last_regenerate|i:1668504682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6613082002320dcc07e2297d3d084de1a4af74cf', '172.105.247.100', 1668504682, '__ci_last_regenerate|i:1668504682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d04ccd7dda4316b020ea7ac865c3bd731218f8', '172.105.247.100', 1668504682, '__ci_last_regenerate|i:1668504682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d8b718c3ccba126ff54db1881f44e32705ad09', '172.105.247.100', 1668504682, '__ci_last_regenerate|i:1668504682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdcb008e4ed234605b9b3091deb39a8ca0ba34a4', '172.105.247.100', 1668504683, '__ci_last_regenerate|i:1668504683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea13abf292c3c7aa65aa77c12ad3d2385e68f114', '172.105.247.100', 1668504683, '__ci_last_regenerate|i:1668504683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cf8085bcf5bbed7c95c2cbee9ab5ad1278e1d6', '172.105.247.100', 1668504683, '__ci_last_regenerate|i:1668504683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3065c3666b47d667c9ffa17ea5fea43dc7464f', '172.105.247.100', 1668504683, '__ci_last_regenerate|i:1668504683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec5d22989ffa69d785f63900636b98a37ee58e55', '172.105.247.100', 1668504683, '__ci_last_regenerate|i:1668504683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a91e66fcddb0f1295e6d2858237fcdb8fa9fb0', '172.105.247.100', 1668504684, '__ci_last_regenerate|i:1668504684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e50494b0a96230826e84de8ed1f8b78beafd5cae', '172.105.247.100', 1668504684, '__ci_last_regenerate|i:1668504684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca4c57c9996cd13b61aa91d338372bf8c4192be0', '172.105.247.100', 1668504684, '__ci_last_regenerate|i:1668504684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb03a12fc72f3c8cb3ec49363bc47400e02f158', '45.120.39.90', 1668507178, '__ci_last_regenerate|i:1668507178;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668505607;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edbb85ff5d66f9fe99225f976639a2fbe025e112', '45.120.39.90', 1668507569, '__ci_last_regenerate|i:1668507569;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668507178;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87f80ca6776a1a991369768236a40e8c971410f', '45.120.39.90', 1668508126, '__ci_last_regenerate|i:1668508126;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668507606;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e4a1787bdd8d66112107848482d88285a4dc1f', '45.120.39.90', 1668512019, '__ci_last_regenerate|i:1668512019;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668508226;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e9cfacf222076b605dbfbfc0b87b9b549b5aaa', '205.210.31.177', 1668510018, '__ci_last_regenerate|i:1668510018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8e16fa9fcba16414737e34d79c942bbef0052d', '172.105.247.100', 1668510073, '__ci_last_regenerate|i:1668510073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4a5de8e4ea527d9379e7df2f169f9855181922', '172.105.247.100', 1668510074, '__ci_last_regenerate|i:1668510074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532d04d64113c563cfccefa7ccc4441118c10900', '172.105.247.100', 1668510074, '__ci_last_regenerate|i:1668510074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f76ec679ecb8113765f1e6524603f80225dfaaf', '172.105.247.100', 1668510074, '__ci_last_regenerate|i:1668510074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38837cc61814b2fda0bfd7ce1fd309dad6f529cc', '172.105.247.100', 1668510074, '__ci_last_regenerate|i:1668510074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf49f15fc10bf62e639bc0f86fd3369f18c1490f', '172.105.247.100', 1668510075, '__ci_last_regenerate|i:1668510075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f182aff0c685ba1ed952d17a284c2e04a76c762', '172.105.247.100', 1668510075, '__ci_last_regenerate|i:1668510075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d9866e2e591510dc4aa1a95f562dd58ec6427f', '172.105.247.100', 1668510075, '__ci_last_regenerate|i:1668510075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf86222bbcf86cbfef8cff3a86510ac04dd5de6', '172.105.247.100', 1668510076, '__ci_last_regenerate|i:1668510075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6dce0ed7165da8445e0b2357acb9f1b72bbea6a', '172.105.247.100', 1668510076, '__ci_last_regenerate|i:1668510076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4f346084167fecd41170079b5a6aad86958563', '172.105.247.100', 1668510077, '__ci_last_regenerate|i:1668510077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c95b10116758bbca90193ceacfb537531268342', '172.105.247.100', 1668510077, '__ci_last_regenerate|i:1668510077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ee9d0f0cef00bd16f4335e6c8a9d0fe1cc582c', '172.105.247.100', 1668510077, '__ci_last_regenerate|i:1668510077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34dfb0ccbebb5f28ab5223ab13c4d085d2ac8ea2', '172.105.247.100', 1668510077, '__ci_last_regenerate|i:1668510077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f026f6fed73809b3ecad9c9174d8048191c84ffc', '172.105.247.100', 1668510078, '__ci_last_regenerate|i:1668510078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e042f1b9caf5e0c3ccdd26b0f61b59a71f4980', '172.105.247.100', 1668510078, '__ci_last_regenerate|i:1668510078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e720ad5097b3297b76f04d82aacf1be2a5d0bf91', '45.120.39.90', 1668517374, '__ci_last_regenerate|i:1668517374;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668517358;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f496a7e5b17e7a04088a3c909f157d8f09d1167', '172.105.247.100', 1668514271, '__ci_last_regenerate|i:1668514271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a42667d5fcc4ce06f6860c973a7e4912858f28e', '172.105.247.100', 1668514272, '__ci_last_regenerate|i:1668514272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c9619441b93ca050af1313ff73acce5784e65ae', '172.105.247.100', 1668514274, '__ci_last_regenerate|i:1668514274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2025fd381292c660d38d17b32e90515eb533646f', '172.105.247.100', 1668514274, '__ci_last_regenerate|i:1668514274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740785971453c94c60d70b6c7879dcaf709a31cb', '172.105.247.100', 1668514274, '__ci_last_regenerate|i:1668514274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa8a0731386a465f43aa63b21116d3fd575816d', '172.105.247.100', 1668514274, '__ci_last_regenerate|i:1668514274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a98edcaec5375bbf640d5f167e3d2d33397ef54', '172.105.247.100', 1668514275, '__ci_last_regenerate|i:1668514275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04bb1ccb2cc9920c0dc0b970b262560368d23f06', '172.105.247.100', 1668514275, '__ci_last_regenerate|i:1668514275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c708b48f2f9867eb4585411ae59cf10c754437e', '172.105.247.100', 1668514275, '__ci_last_regenerate|i:1668514275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbb3f9895e345e81f96d2649180965a80248d09', '172.105.247.100', 1668514275, '__ci_last_regenerate|i:1668514275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc7a0444859b5f25dd28ec4e9e29e115eef1d9d', '172.105.247.100', 1668514275, '__ci_last_regenerate|i:1668514275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a2d1e30e15e8140677ef70e13ecf90bfff23f1', '172.105.247.100', 1668514276, '__ci_last_regenerate|i:1668514275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4183ffed8e3d7678a99263308fc26c81226557b4', '172.105.247.100', 1668514276, '__ci_last_regenerate|i:1668514276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032237b8dbdb5256caba2460a8aabedeb582d214', '172.105.247.100', 1668514276, '__ci_last_regenerate|i:1668514276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4fc4b0e2c5b4582ceb86ea23aac0c72420fc93e', '172.105.247.100', 1668514276, '__ci_last_regenerate|i:1668514276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054eb1c821dfcfabf72af1c55ad8d56790392bd7', '172.105.247.100', 1668514277, '__ci_last_regenerate|i:1668514277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e857b6f046a38e57c7426dde2be2b68ee5fbb9', '45.120.39.90', 1668521654, '__ci_last_regenerate|i:1668521654;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668517375;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85419d9edaca075d6d73474d712eec0c5691a7eb', '172.105.247.100', 1668519080, '__ci_last_regenerate|i:1668519080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a024c7c8924b1351a3f315726a7f06822fed14aa', '172.105.247.100', 1668519080, '__ci_last_regenerate|i:1668519080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a0e3528c471a08e2cf33971cab6aa156640621', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb3abe259fcc1f6f3cf5937bfc010b9c4a29e87', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddb9aa74db81cc9b7a07add7e8b258b8d90db6c1', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7f71627fc8d83c73be85585896a551144e368c', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9687f5666a996f8b8581609b819cdeb637afe9d4', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db0da4189f1a1cd6a7ed09f155d6d128dadd49f6', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7673a84f849cf743cf6e06b3b2cea212f287de62', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7557d324de71f33c0fcc8201593f2d66acf640', '172.105.247.100', 1668519081, '__ci_last_regenerate|i:1668519081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d0895c7830a2a261caef1e9e3e7b1d9768e678', '172.105.247.100', 1668519082, '__ci_last_regenerate|i:1668519082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dca46b5495149b06f2d42c067ef6ded81603b31', '172.105.247.100', 1668519082, '__ci_last_regenerate|i:1668519082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6c32fe29df6b005554bdca33da1782f840c299', '172.105.247.100', 1668519082, '__ci_last_regenerate|i:1668519082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9371f7c05c5dad75858c28cf65e572d79b6c59d5', '172.105.247.100', 1668519082, '__ci_last_regenerate|i:1668519082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dfc65d8ee9fe79422b59d51d99f7449c46c3bfb', '172.105.247.100', 1668519082, '__ci_last_regenerate|i:1668519082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c40a25545410807da881a2eb8b35a257dee2468', '172.105.247.100', 1668519082, '__ci_last_regenerate|i:1668519082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164c1fb947d147462577eeece0f71c17d8e775d0', '45.120.39.90', 1668522090, '__ci_last_regenerate|i:1668522090;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668521910;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ce0242b742d47059df116852ed7d38f0ded15a', '45.120.39.90', 1668522308, '__ci_last_regenerate|i:1668522090;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668487990\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668522308;register_id|s:3:\"249\";cash_in_hand|s:9:\"1980.0000\";register_open_time|s:19:\"2022-11-14 20:40:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0d681d7e5c930935ab83b318878feac8614446', '172.105.247.100', 1668523889, '__ci_last_regenerate|i:1668523889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9910b6bd6205fc533d759117013e5051e9d91e', '172.105.247.100', 1668523889, '__ci_last_regenerate|i:1668523889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705b89d340390e69d71971a23361e90d4b3c9d96', '172.105.247.100', 1668523889, '__ci_last_regenerate|i:1668523889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169968671312f9d2fafd7c6934cee50cd9ef6aa1', '172.105.247.100', 1668523890, '__ci_last_regenerate|i:1668523890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1932ad65b74db6483fb1519e6fbf86dac43277d9', '172.105.247.100', 1668523890, '__ci_last_regenerate|i:1668523890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6c3f0d21d4637eaa301a8cb7e1c64f5d037e8c', '172.105.247.100', 1668523890, '__ci_last_regenerate|i:1668523890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('627d89e5cd6c907dd5dd3a31edf2c5837974731a', '172.105.247.100', 1668523891, '__ci_last_regenerate|i:1668523891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f1a62403c46bf949368f43174ccf59527cb9b3', '172.105.247.100', 1668523891, '__ci_last_regenerate|i:1668523891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a80073893a854b748e3b9bdfe94c6220c6ff343', '172.105.247.100', 1668523891, '__ci_last_regenerate|i:1668523891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c397750fb85d3758f2a3e3e5e40ff6bcaeaeccd8', '172.105.247.100', 1668523891, '__ci_last_regenerate|i:1668523891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034b8b96474f52963ac365090bdfb8a6e18bff87', '172.105.247.100', 1668523891, '__ci_last_regenerate|i:1668523891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19510fa420f6ca375bc9f6e2eadfda74a0728e4', '172.105.247.100', 1668523892, '__ci_last_regenerate|i:1668523891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c618329d93dbac58da6a5f5bf57c3893b6e5b8', '172.105.247.100', 1668523892, '__ci_last_regenerate|i:1668523892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652f8ad69f9ee1d8fbba501d41a848f0d32191c2', '172.105.247.100', 1668523892, '__ci_last_regenerate|i:1668523892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e2d3d293e80b2cba235167bf0b45ab8c952ddd', '172.105.247.100', 1668523892, '__ci_last_regenerate|i:1668523892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae95e339416097598a3481608ffbbf058eabcb13', '172.105.247.100', 1668523893, '__ci_last_regenerate|i:1668523893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9464340e594505fc8d49599c8191c2372b2d277', '172.105.247.100', 1668528074, '__ci_last_regenerate|i:1668528074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e764fc96498a90c2f768b85e6c3c5ebd3455590e', '172.105.247.100', 1668528075, '__ci_last_regenerate|i:1668528075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174ad6f474ef06cff3a9fbec28d04c32017393b0', '172.105.247.100', 1668528075, '__ci_last_regenerate|i:1668528075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d4123b53f659af3bff3eab257cbff0d27781e5', '172.105.247.100', 1668528075, '__ci_last_regenerate|i:1668528075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4368011f624a83834f90f31b30e827d0cfc8d9', '172.105.247.100', 1668528076, '__ci_last_regenerate|i:1668528076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa9275f9064b92eb10a2abebf14be19940736e0', '172.105.247.100', 1668528076, '__ci_last_regenerate|i:1668528076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354409113f94a07b2d937124822f36d708343836', '172.105.247.100', 1668528076, '__ci_last_regenerate|i:1668528076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c2d46696202d21710c95c171ad1d829f494e38', '172.105.247.100', 1668528076, '__ci_last_regenerate|i:1668528076;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50fec1f284b1854979a1b83b050377c2eec29d2', '172.105.247.100', 1668528076, '__ci_last_regenerate|i:1668528076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79e6fbc05fa4ea0997eb9e4cdb504b3d941dc33', '172.105.247.100', 1668528077, '__ci_last_regenerate|i:1668528076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d826a2dc2222f7b0302410a0f764a899387423', '172.105.247.100', 1668528077, '__ci_last_regenerate|i:1668528077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab80856b188c412a2d8db3cde0be9fa05bbc170', '172.105.247.100', 1668528077, '__ci_last_regenerate|i:1668528077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10962ebbf655531d54dfbd29804073cceb09881', '172.105.247.100', 1668528077, '__ci_last_regenerate|i:1668528077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e1dfee5a325ce0e8de4b0db58803e98f8fae2f', '172.105.247.100', 1668528077, '__ci_last_regenerate|i:1668528077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87194cb44c6c519ef858248324d60d38e4b2e8a6', '172.105.247.100', 1668528078, '__ci_last_regenerate|i:1668528078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d1a8586048cab5b226e990659f6ded1fb002688', '172.105.247.100', 1668528078, '__ci_last_regenerate|i:1668528078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5ea7efe4f3d4f5ffee23dd23296f66e4f25ddc', '172.105.247.100', 1668532274, '__ci_last_regenerate|i:1668532274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c1e013b0cb8d89d14260ba11f9b7ee165e2281', '172.105.247.100', 1668532274, '__ci_last_regenerate|i:1668532274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10328903778f227e0a0147e191d800ab09adbe84', '172.105.247.100', 1668532274, '__ci_last_regenerate|i:1668532274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1e0e5b51ce7317efeba0b54d652fe3fd532263', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c8b2bb1a2dc57c3a41b17c4c871e39208125a3', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a7b50dd5f136b4879e3172f56633bd6c439f9dc', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5738cc41721b7d63627f6483723cfe8138a1c02c', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964528227c19c3a286019381f20ece7e5cde09b3', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f4ac8c685f29269702b96221e563cfa81933513', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63db7e55ce0d74e051c7023464a9fce87ec0f0f5', '172.105.247.100', 1668532276, '__ci_last_regenerate|i:1668532275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1405f059e435d52202186655e4066367578c88a', '172.105.247.100', 1668532275, '__ci_last_regenerate|i:1668532275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9493f1ba3b166df4b90517a1bd041a3cc32192f', '172.105.247.100', 1668532276, '__ci_last_regenerate|i:1668532276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3984ac83ffdf5369c405ca77344c8e49ce089c1', '172.105.247.100', 1668532276, '__ci_last_regenerate|i:1668532276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82e776df4e4a0095419bb165cbb6dc9f0ad9bc6', '172.105.247.100', 1668532276, '__ci_last_regenerate|i:1668532276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1551dde652c9420bc5b007ad91685b1c4eaecee6', '172.105.247.100', 1668532276, '__ci_last_regenerate|i:1668532276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508001bcbc08f899878e1a200c97793a887f9533', '172.105.247.100', 1668532277, '__ci_last_regenerate|i:1668532277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d62686e8a6d74016f5782d0a778aa682be891f', '172.105.247.100', 1668537077, '__ci_last_regenerate|i:1668537077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122d7a12e10b9590ac57c6a6d32c28a1c2b37394', '172.105.247.100', 1668537078, '__ci_last_regenerate|i:1668537078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c07144f365276cced59bd016fe3794cbc056ec', '172.105.247.100', 1668537080, '__ci_last_regenerate|i:1668537079;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2deb7d7f49d2824aa6fa2d1d1b94633de402866b', '172.105.247.100', 1668537080, '__ci_last_regenerate|i:1668537080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a41f3fd8e9270a6c617a7e06d759ea51ef03d2', '172.105.247.100', 1668537080, '__ci_last_regenerate|i:1668537080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac08d489fe80a16e57ad8bb9674e9b60f6f9e4e5', '172.105.247.100', 1668537080, '__ci_last_regenerate|i:1668537080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4324756938276d6c07bc3016f95c7c62d5826ea0', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385be30a0c752dd218b6c55150d7ff231defb660', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b75ebe2d5ec28a7f6e9e5629e0856d3465d6614e', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b854c871352bef1db294e69a5ac2b939edc0388e', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c243862abd81929ecb0831cf792a5fda39a09e6', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388088d68a27df3dfb954ccc57129ad56b0b02fb', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3f57798dbd4d4b05c55dc2da0dc3f79808d8f5', '172.105.247.100', 1668537081, '__ci_last_regenerate|i:1668537081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc663ad47ae4e7b3c04a6577a4cf6afc029701c3', '172.105.247.100', 1668537082, '__ci_last_regenerate|i:1668537082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4c75190b9a02ea02bc5da4765d58d1c5aef0b4', '172.105.247.100', 1668537082, '__ci_last_regenerate|i:1668537082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('237b1f7fbaec9919a14dc771f0e7316dbe14e688', '172.105.247.100', 1668537082, '__ci_last_regenerate|i:1668537082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699827594a8716fda405bc2203044cabd5a27275', '172.105.247.100', 1668541876, '__ci_last_regenerate|i:1668541876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53126f770509d286206406f7fe941ad134f36dd0', '172.105.247.100', 1668541879, '__ci_last_regenerate|i:1668541879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2237ce6cebbea438187aa83c69a97211b9287c', '172.105.247.100', 1668541879, '__ci_last_regenerate|i:1668541879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45f2b2b444e0d2c0d33cbc4bd5d9407f044dbd9', '172.105.247.100', 1668541879, '__ci_last_regenerate|i:1668541879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1e81da7a9fa442e63e875039fb004e01c143b7', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cbec0897d27cec4a1a65bc017e2521d22fd4e9', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8ffee3311b48c2198df0a59382046ef46e1736', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8b0008304126065badc0c5d2420226dbad2b35', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca569e49c6116ff5e58ec2bc408045da64d0c53', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c23ebfac23fc5992492d683cf32041909f10b2', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13fbaba6fc5d3bf2a28d80d92ee180476768901a', '172.105.247.100', 1668541880, '__ci_last_regenerate|i:1668541880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4063fcfcc3dc00671fd7db519128391a480d7df6', '172.105.247.100', 1668541881, '__ci_last_regenerate|i:1668541881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd826a39073a8d67237ed2341a218cf24ccd8e9', '172.105.247.100', 1668541881, '__ci_last_regenerate|i:1668541881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2714ac1cb2da44b7c82d360e7444c708a2c20b33', '172.105.247.100', 1668541881, '__ci_last_regenerate|i:1668541881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d90bb6d452ffcd41bd62937290386d6198fdfc8', '172.105.247.100', 1668541881, '__ci_last_regenerate|i:1668541881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d1137cbd17adab39867151f08b5939f999bb81', '172.105.247.100', 1668541881, '__ci_last_regenerate|i:1668541881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7bdc6bac6259a32a61202182e04ca03b0ad366', '205.210.31.45', 1668545245, '__ci_last_regenerate|i:1668545245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb0536dcde4573e54224348630b5b702293fd383', '172.105.247.100', 1668546084, '__ci_last_regenerate|i:1668546084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84316e27fb6d84efcc06468902970db4db43215a', '172.105.247.100', 1668550874, '__ci_last_regenerate|i:1668550874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d623378521853a5374e893aaf39f42ddb5d55204', '172.105.247.100', 1668550875, '__ci_last_regenerate|i:1668550875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6abe4d6cb3176b6e026b2ef24c6f5426e0f43ce7', '172.105.247.100', 1668550875, '__ci_last_regenerate|i:1668550875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38bb55ad344f3b9edf41bd21a71a3c3827081a6', '172.105.247.100', 1668550876, '__ci_last_regenerate|i:1668550876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d521101fc230e939cb4c5f7e5ac649cace4d78', '172.105.247.100', 1668550876, '__ci_last_regenerate|i:1668550876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45403ad92f214355fd626897644f5a2ceb68094b', '172.105.247.100', 1668550876, '__ci_last_regenerate|i:1668550876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399e312591874a83a622585bffbb42a42f4fc01a', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcae3a074f7c5dd3c9e86408deb6b49f836f483e', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e076eab27ce6037ac05863a9ac4ddcac7c88d3', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c877ecc9471556b668df7f7251d13c1a7cc736', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f02b77cbf8feade64123a51903ddf2f9baddea8e', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14988470c3e357abeb93935a73248d1e32db9ce8', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9fba63cbfadcaa6e65fe4eefd929970bd4c52c', '172.105.247.100', 1668550877, '__ci_last_regenerate|i:1668550877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48bfed3d7eed29e47749eead470ebfeab72752a6', '172.105.247.100', 1668550878, '__ci_last_regenerate|i:1668550878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca913b9d55991785577940a1fe0281ed5087cb50', '172.105.247.100', 1668550878, '__ci_last_regenerate|i:1668550878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c481043cd8ae0bb218e6e9f7217f458a6dcc448', '172.105.247.100', 1668550878, '__ci_last_regenerate|i:1668550878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7103373376ae2c78b0025e590a44f6ccfd97eb34', '170.187.184.242', 1668550881, '__ci_last_regenerate|i:1668550881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367289f39fc9800b6403610f8fb14f1354e514d5', '170.187.184.242', 1668550882, '__ci_last_regenerate|i:1668550882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea6df54d648fef665823e06b3cd9310dae1cd53', '170.187.184.242', 1668550882, '__ci_last_regenerate|i:1668550882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f801e0ba6694f346b055522dd18da1ca90f5f3e', '170.187.184.242', 1668550882, '__ci_last_regenerate|i:1668550882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a4836f89cfad2ba79b75e8dd2b16c4057b914d', '170.187.184.242', 1668550883, '__ci_last_regenerate|i:1668550883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042ef0849780a7a7e5817978e7810a0d87f661c1', '170.187.184.242', 1668550883, '__ci_last_regenerate|i:1668550883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a785666fd39dd1710b0574e2f929117c3b3b050', '172.105.247.100', 1668552009, '__ci_last_regenerate|i:1668552009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c791b3bfeddf3103cdae02dc2cff368ecdfe6a', '172.105.247.100', 1668552010, '__ci_last_regenerate|i:1668552010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89214d5163df241188b77b282f89c147587385b', '172.105.247.100', 1668552010, '__ci_last_regenerate|i:1668552010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c970d00a9278af87a5bb3c25157493e179cceac', '172.105.247.100', 1668552010, '__ci_last_regenerate|i:1668552010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b741c4ea8128db07c5455ed4ff12a962cb366b9', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f289a0829f24010ecf08f1678fb6737195a808af', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae0d9def8da23892bda7a5ead0ddb7e40f4137a5', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63065ddf2913c38f162a87fd14ce3f4dd7fc778', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe66f9ee427afe61126daee7fff4b2e016e187d', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9c91258d791babec91c0799b5cc9143bfbf394', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03614c034024ad3b9e4feb083be2cd010eb304c2', '172.105.247.100', 1668552011, '__ci_last_regenerate|i:1668552011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2024e4a74344bdf42fd5927df638481e025f900d', '172.105.247.100', 1668552012, '__ci_last_regenerate|i:1668552011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced4eb926913fc40460bac236ea74b7c09ec2967', '172.105.247.100', 1668552012, '__ci_last_regenerate|i:1668552012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d764f6a5a2b77edae1280247975e7e3cfe6d342', '172.105.247.100', 1668552012, '__ci_last_regenerate|i:1668552012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71d2c928f3ea3e0dd62c619b89e2a509347d5bb', '172.105.247.100', 1668552012, '__ci_last_regenerate|i:1668552012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d21e7cfaf15ed510cfb394c16ba93d27117ae5d', '172.105.247.100', 1668552012, '__ci_last_regenerate|i:1668552012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43d0e9c8e38c927df3dd86cbf74677f8451c87b', '170.187.184.242', 1668552012, '__ci_last_regenerate|i:1668552012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7025b943a7ebebf5af4c4bd1b5b5f91f4a2c8b49', '170.187.184.242', 1668552013, '__ci_last_regenerate|i:1668552013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831f9e6c8e95afec76d22d5c4a8c15c93b100d90', '170.187.184.242', 1668552013, '__ci_last_regenerate|i:1668552013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb2d9d7a793caa27d1d396e4e7974da05b863e4', '170.187.184.242', 1668552013, '__ci_last_regenerate|i:1668552013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e049bdfd4bb0b36d96d09acc99b4da3c6cd719f', '172.105.247.100', 1668553208, '__ci_last_regenerate|i:1668553208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('330cb1e261af1ea4c8d66cc086343c93013eb4d8', '172.105.247.100', 1668553208, '__ci_last_regenerate|i:1668553208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae894617dbec193ef031d6ffc67077f26b56bbaa', '172.105.247.100', 1668553208, '__ci_last_regenerate|i:1668553208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cfe457e8dc1e8ce7968b94ae085267459da280', '172.105.247.100', 1668553208, '__ci_last_regenerate|i:1668553208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31aa37327d73402d275daea2ed48e190a960ab69', '172.105.247.100', 1668553208, '__ci_last_regenerate|i:1668553208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b5fa7f78c9237d3eb055aef18ec82a291a8be9', '172.105.247.100', 1668553208, '__ci_last_regenerate|i:1668553208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dccc811cc16c571c7b5c23a692b40c40ff441d7', '172.105.247.100', 1668553209, '__ci_last_regenerate|i:1668553209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b5e14bc81a2c77c30a16855d2c86c61ab4796f', '172.105.247.100', 1668553209, '__ci_last_regenerate|i:1668553209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4243a978b717971d2285b065802791915231c86b', '172.105.247.100', 1668553209, '__ci_last_regenerate|i:1668553209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7729881ff799e3c0d01ab8b1aeb960f8e2b79f78', '172.105.247.100', 1668553209, '__ci_last_regenerate|i:1668553209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f39ac3dc0aeb3434ceb000639cd06e6c0073c98', '172.105.247.100', 1668553209, '__ci_last_regenerate|i:1668553209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e5cce7114920a9fb708052f35df140a9b55b13', '172.105.247.100', 1668553209, '__ci_last_regenerate|i:1668553209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54087b1d58cf5b29cd86edaf5fbab7ba82518a83', '172.105.247.100', 1668553210, '__ci_last_regenerate|i:1668553210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92bdd81e0f2e39445d35774123ca1fb0499fe448', '172.105.247.100', 1668553210, '__ci_last_regenerate|i:1668553210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be401e922d63da0e54a9396ecdccefbb6f1a4260', '172.105.247.100', 1668553210, '__ci_last_regenerate|i:1668553210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79231b3eb81723506f8120ddf6a92c1d9c9f4598', '172.105.247.100', 1668553210, '__ci_last_regenerate|i:1668553210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fee12bfdc10d461285029bcca298a1d834409320', '170.187.184.242', 1668553210, '__ci_last_regenerate|i:1668553210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53ab6b8538ff9a9055eb9cb083723f33aa20a6b', '170.187.184.242', 1668553211, '__ci_last_regenerate|i:1668553211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('816d05db8a316efdb1343ef98ddc93246ac31d1f', '170.187.184.242', 1668553211, '__ci_last_regenerate|i:1668553211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61dccf28b08bccf9750a5766bc9570a3f5200b16', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c4b019119a8c816c7fd9ae2b4fcf1439fc7af8', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46260d7a6f247db3732ed30a6efe13ff8d791f6c', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd27e6d79482e6c24d19837842fd23498e5e667b', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f04614420656e50dc94cbc0a9e77e2c919f69db3', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87a9d6959a1c103f5d4108fad9e55f6309c9bd0', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db41e7f237a51f476fa5cb0dc7c35ed9a621daa6', '170.187.184.242', 1668553213, '__ci_last_regenerate|i:1668553213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6427149520412e8950935774970f3b94bc5f5dd7', '170.187.184.242', 1668553221, '__ci_last_regenerate|i:1668553221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a6d97d1c6cf684cb9ff7a3a248c5e389b06d5b', '170.187.184.242', 1668553221, '__ci_last_regenerate|i:1668553221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cfe1b31e8a3103255dce6bcf9888be8ce92ebe', '170.187.184.242', 1668553221, '__ci_last_regenerate|i:1668553221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d84d14393c8bf695c6daf9f3e597affc2843ca', '170.187.184.242', 1668553221, '__ci_last_regenerate|i:1668553221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e6126535b3565cfe6d9c7e58df062fc1f33174', '170.187.184.242', 1668553221, '__ci_last_regenerate|i:1668553221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db1682ef1d3a7b71d6a59f5bb90f310f48a9564', '170.187.184.242', 1668553221, '__ci_last_regenerate|i:1668553221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908a57b9b30be8bf9a1b6599a412a9276455fe78', '205.210.31.168', 1668556247, '__ci_last_regenerate|i:1668556247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02bc82c2a6de38b6dddd68ca9c60d723f7e3d2b', '172.105.247.100', 1668557410, '__ci_last_regenerate|i:1668557410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c14ed096983b458952f45a763a12f5d7c099dc2', '172.105.247.100', 1668557411, '__ci_last_regenerate|i:1668557411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78cc6930293359fb9648a1c5da22e6d1bf55a889', '172.105.247.100', 1668557411, '__ci_last_regenerate|i:1668557411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e52d69386b00e80f5e1993d52437e90fc93529c4', '172.105.247.100', 1668557412, '__ci_last_regenerate|i:1668557412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21b69331fab713d432af80f1640323db78d81a7', '172.105.247.100', 1668557412, '__ci_last_regenerate|i:1668557412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbb5f77f6cfc038db2ae48dc65260021e8bbc82', '172.105.247.100', 1668557412, '__ci_last_regenerate|i:1668557412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1583640f9a436505bed685eef0cbcbfa999b7c38', '172.105.247.100', 1668557412, '__ci_last_regenerate|i:1668557412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538ff4616a162ee4980db7a66ccf3b1d82fd1072', '172.105.247.100', 1668557413, '__ci_last_regenerate|i:1668557412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f1ef428173f553962a13c24d2fb3a1ecee87a97', '172.105.247.100', 1668557412, '__ci_last_regenerate|i:1668557412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f32eef3c40baa57b5fb0d18f6ca15bfd1419e0', '172.105.247.100', 1668557413, '__ci_last_regenerate|i:1668557413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc4c2f03cbf7b39461c6730b1c50dca1396901fb', '172.105.247.100', 1668557413, '__ci_last_regenerate|i:1668557413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72195e1a7b876e3c095a2784610de64077637309', '172.105.247.100', 1668557413, '__ci_last_regenerate|i:1668557413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8511a87269a4427be8ba858666943b4498685e51', '172.105.247.100', 1668557413, '__ci_last_regenerate|i:1668557413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f3346e8043c78aeea217e7fce4ed94c67f260b2', '172.105.247.100', 1668557413, '__ci_last_regenerate|i:1668557413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2804b9217a007f583446dfd36c8def84f2ca40', '172.105.247.100', 1668557414, '__ci_last_regenerate|i:1668557414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5dba60035e601020a8d7af5a388938c1c1c43a7', '172.105.247.100', 1668557414, '__ci_last_regenerate|i:1668557414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb101611ae97ec16c0676ab5cf58882f0074a994', '198.235.24.54', 1668559548, '__ci_last_regenerate|i:1668559548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f800b93add6a10488e68adafa77e3173b1d9cb', '172.105.247.100', 1668561608, '__ci_last_regenerate|i:1668561608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a53dbaeeca0f225f86bfa2dda51db0c209330548', '172.105.247.100', 1668561610, '__ci_last_regenerate|i:1668561610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce4128f01fef49a498d67d06e15e5d9dd58850c', '172.105.247.100', 1668561610, '__ci_last_regenerate|i:1668561610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172c092e510a13bf4fbd21dbe448752db8f7b535', '172.105.247.100', 1668561610, '__ci_last_regenerate|i:1668561610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('553a9f0deaeda2b69b11047fc73dd1ffefd1573a', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf539af570acdfd4beb7d94367b76e7ab0d143ee', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115b146fb67394ce9e2cfa7279a0155a52823a0d', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623328cc54fa070b00cbd65267e5c1c8f1ec68c3', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b202f5676cc028303fd4234d3a28dd826d5061', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5eb2a221cb2be38ca9415c89f1db9af1b2f5159', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe32cc148a95913da3a4cdbf9ab5b1f4952d9d7', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc8011ac08f2b87b5af49451b534d0a7a97c3ab', '172.105.247.100', 1668561611, '__ci_last_regenerate|i:1668561611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fccc018b6a2e9602b4960d5ae61c30b90fb3ec46', '172.105.247.100', 1668561612, '__ci_last_regenerate|i:1668561612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc332d7feb508077f6c3fee460b64f74ec5945f', '172.105.247.100', 1668561612, '__ci_last_regenerate|i:1668561612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7451d3ebc27125a129f43683cef0e601d4aa2a', '172.105.247.100', 1668561612, '__ci_last_regenerate|i:1668561612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f340dd4bb71e71205c3e4bd246700514a6517fe6', '172.105.247.100', 1668561612, '__ci_last_regenerate|i:1668561612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb58a1b09bdaa325e12cd67241888344321a76e', '205.210.31.30', 1668565495, '__ci_last_regenerate|i:1668565495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d28b452cf0f48e26f83c0419dbd450e6229900', '172.105.247.100', 1668565808, '__ci_last_regenerate|i:1668565808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c8d2c82e7bae8f819926b655c862a23b51acc0', '172.105.247.100', 1668565808, '__ci_last_regenerate|i:1668565808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a47435151ecab5dfed447bee9263d150285408', '172.105.247.100', 1668565808, '__ci_last_regenerate|i:1668565808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c4fd09ca002d83c8166b5ce66c6edcfc0d7014', '172.105.247.100', 1668565808, '__ci_last_regenerate|i:1668565808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b75c8509d5bacb11ca70919c9e6b6f2b7197299', '172.105.247.100', 1668565808, '__ci_last_regenerate|i:1668565808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d2acbcae9875192c7dfc350ab84ff0b455b739', '172.105.247.100', 1668565808, '__ci_last_regenerate|i:1668565808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6370e68fbe76066b560d6e05bcac8073a5b6ef2b', '172.105.247.100', 1668565809, '__ci_last_regenerate|i:1668565809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('914959fa0b66a111b841bbb0a04228f0ffcad0eb', '172.105.247.100', 1668565809, '__ci_last_regenerate|i:1668565809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba6afd3884ef466a1697c84148c0ac830eefc05', '172.105.247.100', 1668565809, '__ci_last_regenerate|i:1668565809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df653857918c51853604e00f8842164aec8bef53', '172.105.247.100', 1668565809, '__ci_last_regenerate|i:1668565809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281b8758a499956bd2cd265870e474c21a16ecfc', '172.105.247.100', 1668565809, '__ci_last_regenerate|i:1668565809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e03b1ccb88fe83e93e8a7a6133032f366ffd5f', '172.105.247.100', 1668565809, '__ci_last_regenerate|i:1668565809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d3d6cd7a43ab654132b33d813aa52b5a9afc563', '172.105.247.100', 1668565810, '__ci_last_regenerate|i:1668565810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b64675045688709413a3f336a7388747de2da86', '172.105.247.100', 1668565810, '__ci_last_regenerate|i:1668565810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dc77fbf5fe102081e4f5bbef3afd685bb92b15', '172.105.247.100', 1668565810, '__ci_last_regenerate|i:1668565810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7cf7f82ae6058a7f2a4ff08cc6591b08caed4b', '172.105.247.100', 1668565810, '__ci_last_regenerate|i:1668565810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8815ef7a0b99e0ebfbecead0f4a96ce24c2fa1', '198.235.24.20', 1668566900, '__ci_last_regenerate|i:1668566900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d8a8bd62fd37cfdafdee4894dd59e66dac730f', '172.105.247.100', 1668570007, '__ci_last_regenerate|i:1668570007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e343401cfb6cea0aa28e7a155221fecaabc8278d', '172.105.247.100', 1668570007, '__ci_last_regenerate|i:1668570007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c0688d88443006022472499cbc8e4a08d2e21f', '172.105.247.100', 1668570007, '__ci_last_regenerate|i:1668570007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17ad7aeecd5ec7414c9b879899b5cac31d7e8cc', '172.105.247.100', 1668570007, '__ci_last_regenerate|i:1668570007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9782467eba7c9798ffcbcac5787e689cdb545d3b', '172.105.247.100', 1668570008, '__ci_last_regenerate|i:1668570008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ca9016e21858d0bb1ec7165a590eb4d0181822', '172.105.247.100', 1668570008, '__ci_last_regenerate|i:1668570008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9532273aa321df101aabacaa86266690e4b5a812', '172.105.247.100', 1668570008, '__ci_last_regenerate|i:1668570008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825d3e5ece9303249dea8b05c58243dd15a7721b', '172.105.247.100', 1668570009, '__ci_last_regenerate|i:1668570009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e952e4c137051ec9c55e397eb4915878dce5dadb', '172.105.247.100', 1668570009, '__ci_last_regenerate|i:1668570009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efe7f053a80d4ccf69366a4d0502503bb1c0dd74', '172.105.247.100', 1668570009, '__ci_last_regenerate|i:1668570009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9026e5f0789d68bd093d0c1187a446da97a38b1a', '172.105.247.100', 1668570009, '__ci_last_regenerate|i:1668570009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55f41d31384e114fea056126ad154f880ef7e83', '172.105.247.100', 1668570010, '__ci_last_regenerate|i:1668570010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52932451591968ded434dea52bb549bfd2017eb0', '172.105.247.100', 1668570010, '__ci_last_regenerate|i:1668570010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ab5ebefa6994e64756ce2ebc2a9413172030f5', '172.105.247.100', 1668570010, '__ci_last_regenerate|i:1668570010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061f2c91c88365417ee27a1b67dfa97b90312243', '172.105.247.100', 1668570011, '__ci_last_regenerate|i:1668570011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f32a1e6296df912b54bc61dcd5c0e5cc4b8105', '172.105.247.100', 1668570011, '__ci_last_regenerate|i:1668570011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418e9856c07733c22111948f604db8238f1a66c9', '45.120.39.90', 1668573409, '__ci_last_regenerate|i:1668573358;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668496369\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c98f2af4583c55791987d6d20af113d1458a7d2', '172.105.247.100', 1668574810, '__ci_last_regenerate|i:1668574810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f92dd75da9b411296972f05e12c4d011ed23bb', '172.105.247.100', 1668574810, '__ci_last_regenerate|i:1668574810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a2d257589f6132b29840b868a7838199687e50', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1bcff636a27af8ff82c9729523d58b0c70cefb6', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00cbaefd7b2d924b03cce28398791d4e463b18d4', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76191ee5d5eb55e8dd0af1f6b2fa411345202db', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c546e3ca532c5ba39ea5cc0265a612e158af1f41', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c40f4f627c2afc0134197fdfc9455aebc25be15', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6067af67011622b11be3972d0fbc25aabb145f68', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6069509d247730d308012b858e613f691f1f6ed', '172.105.247.100', 1668574811, '__ci_last_regenerate|i:1668574811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8159534a6f4382e52af7aaa7b2fa8873a74778ff', '172.105.247.100', 1668574812, '__ci_last_regenerate|i:1668574812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5caa38afcb49850c39f2b5cabd1fc9c806c141', '172.105.247.100', 1668574812, '__ci_last_regenerate|i:1668574812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce411bfd9b49c4f03bb37ea7c5939883d8948ca', '172.105.247.100', 1668574812, '__ci_last_regenerate|i:1668574812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('945f86afe44046857fc0392b1df6f81cc39b79fc', '172.105.247.100', 1668574812, '__ci_last_regenerate|i:1668574812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60ee9fe0604d77a72579f0a7ec143c00557c1db', '172.105.247.100', 1668574812, '__ci_last_regenerate|i:1668574812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e84b17cc5cf58c0bb23b019c1800acb59d9aaeb', '172.105.247.100', 1668574812, '__ci_last_regenerate|i:1668574812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d466fd1073cfb7209912be69ba43b33db3b5b5e', '116.204.230.26', 1668575248, '__ci_last_regenerate|i:1668575248;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667737576\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44289a11ed45f6cf85d926f6840b12045150547c', '116.204.230.26', 1668575813, '__ci_last_regenerate|i:1668575813;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667737576\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0126847c147e99b8ad2b42ea06394fca4b331d24', '116.204.230.26', 1668576245, '__ci_last_regenerate|i:1668576245;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667737576\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000b54ee9d95e614a9169cd75255ebceb3901ed8', '116.204.230.26', 1668576759, '__ci_last_regenerate|i:1668576759;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667737576\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d0690ca42de55b7607da874496633faa31fbdc', '116.204.230.26', 1668576759, '__ci_last_regenerate|i:1668576759;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1667737576\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ee86ab0b6ae05c6d179e8c66e2f1f4efc1936e', '172.105.247.100', 1668579609, '__ci_last_regenerate|i:1668579609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb240c22a53d0469fff566b50fdb2b3c0cda533', '172.105.247.100', 1668579609, '__ci_last_regenerate|i:1668579609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f67add3575e7362380f4b5ae1906873fa88865', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56538713d80126399297da6945aa811389a88f1a', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4431720bb377caa89533bb5b0d84afeba68dbb', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf37a6da738c12472599374e8b670e0ea7e84a3', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016bd2d832f65d658de69a05b31d3277500cdb2e', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b5413e9cc869f6f82c8f55bf4ebd3936f922e9', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b7d9c0efc62ed1ade4db3edcddcee3d702f06f', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6916ca865afeb23b90fb12afc82bd3d20bc8906c', '172.105.247.100', 1668579612, '__ci_last_regenerate|i:1668579612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb0f7beea535636b679b99971bc8db7c0639403', '172.105.247.100', 1668579613, '__ci_last_regenerate|i:1668579612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff26c7362ac32502c0665f4ddeef3edecfab0c5e', '172.105.247.100', 1668579613, '__ci_last_regenerate|i:1668579612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113757b82ab23dcb06d0bbc6108fbdd0c9170c20', '172.105.247.100', 1668579613, '__ci_last_regenerate|i:1668579613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('886bea672b25bc7088e37ec542d85d845347b190', '172.105.247.100', 1668579613, '__ci_last_regenerate|i:1668579613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b954ec44a06eb2e563448adebb1e0f796c9d8c', '172.105.247.100', 1668579613, '__ci_last_regenerate|i:1668579613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bc5146979cb3746d358bb81294d739a6f5842a', '172.105.247.100', 1668579613, '__ci_last_regenerate|i:1668579613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b789b73fd41f5f13dd5a9639d37bfd87a9f36c', '45.120.39.90', 1668587602, '__ci_last_regenerate|i:1668587602;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668573397\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668580992;register_id|s:3:\"250\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-11-16 12:43:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb303fdb274aaf3aa20ddaa2b686a5328f5b7bf', '172.105.247.100', 1668584408, '__ci_last_regenerate|i:1668584408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c92784f648f1e35b9c59dd02dcb864c9839682', '172.105.247.100', 1668584408, '__ci_last_regenerate|i:1668584408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf8b00527d656b8b29b580f97435b7e451b0ba2', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91685add8b09a5e6fd88207ccc5208a5725e5cfc', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a75385016006b0e804751817b464dd114055ced', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d2af81b37d959634b16eb0ccd718ebec1d6157', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62b655efd6eacb4bbdcd294ee13257cc881501c3', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfdfac3437fb41450ca4a5ae898cb2d4b4dc8105', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53726e395d0f2e9ab656bdbc26f2b2789e46c22', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea215fdb6d5a542700006f23eb8d06cd25c25e7c', '172.105.247.100', 1668584409, '__ci_last_regenerate|i:1668584409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ad75afa64d318f64132a12b58e7b0dc2b0651e', '172.105.247.100', 1668584410, '__ci_last_regenerate|i:1668584409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c5afc3bd31a9fba9f607759349b0ab968b28d6', '172.105.247.100', 1668584410, '__ci_last_regenerate|i:1668584410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2bb4ef0a6d21badc168414689d658a0c83a3a8', '172.105.247.100', 1668584410, '__ci_last_regenerate|i:1668584410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9eee3ac836e54e3cb7dbab79e6f1677de9c4f8', '172.105.247.100', 1668584410, '__ci_last_regenerate|i:1668584410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf19c32a83983cae4f9e3db6d6aba475981b3c99', '172.105.247.100', 1668584410, '__ci_last_regenerate|i:1668584410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d6bcd8b8ab61fcde80a5334d3fc277683488b8', '172.105.247.100', 1668584410, '__ci_last_regenerate|i:1668584410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4ef6067d6ccafe6e671bb0de99ecc9b15d7c43', '45.120.39.90', 1668594357, '__ci_last_regenerate|i:1668594357;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668573397\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668594343;register_id|s:3:\"250\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-11-16 12:43:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439c099dee54d2d3e95bf2aca5c3dff40f8d9629', '172.105.247.100', 1668589210, '__ci_last_regenerate|i:1668589210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a39e941917506d521c1266326ebb3d6b18a25a', '172.105.247.100', 1668589212, '__ci_last_regenerate|i:1668589212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ed7f46911c346535bae4bcfc4ee55341e1cc53', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522ed8cba81f8f6cddb5d5d0e98e54bf9f42f7b8', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c178da467a3132bf0d45eb29c05911d0fb1855d2', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a985329a31e5c0cee31b617bd52d2653919936', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652745a96b2741361ce26f7dc80cd44593cd82c7', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87814001aa5e59c4abf8cd3166853ba6a77d5a5', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22078f9eb3488b2d3e116585677b7f04a076c2b4', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e7f3bce5d96cf2896937ffaf719ff93196ab14', '172.105.247.100', 1668589213, '__ci_last_regenerate|i:1668589213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8f588d6644260402e21c1797522ab0c7ee0016', '172.105.247.100', 1668589214, '__ci_last_regenerate|i:1668589214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45ee25ce4eb9bdb5d1967329513ba77fe7c6a6d', '172.105.247.100', 1668589214, '__ci_last_regenerate|i:1668589214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23cb8bd4632e885ebd73d61ece206be06005353', '172.105.247.100', 1668589214, '__ci_last_regenerate|i:1668589214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67050429cae3c40ecbe4c16b775d62f333726dac', '172.105.247.100', 1668589214, '__ci_last_regenerate|i:1668589214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8486ada23760c9b24f0922a6b215e32679ff64e2', '172.105.247.100', 1668589214, '__ci_last_regenerate|i:1668589214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc0497f20ce5a6c6742c259b6636f176ec3c4aa', '172.105.247.100', 1668589214, '__ci_last_regenerate|i:1668589214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ddf24f74455b2d8b662b9cedfa0f5512fbccfe2', '172.105.247.100', 1668593409, '__ci_last_regenerate|i:1668593409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e326f5099437c7f3e3a0044398b9169db9abee5', '172.105.247.100', 1668593412, '__ci_last_regenerate|i:1668593412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf33955180fcca48ee523f50c7c60ae01fc7b453', '172.105.247.100', 1668593412, '__ci_last_regenerate|i:1668593412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c21094cb19c9c6c339275841af9cf015966395', '172.105.247.100', 1668593412, '__ci_last_regenerate|i:1668593412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9a47a7f85f4efd2b16b184b018059ab888f8f9', '172.105.247.100', 1668593412, '__ci_last_regenerate|i:1668593412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('237033fc96358065f9928b5f42d39707c6b06f71', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d580ba36a87fd0721af7195333af9ae9982fa13', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ef226771c775b5c451ae15fc41f5d7271b683e', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25363bf8c1ff998b09d9728645dc2e36b714525a', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2931e570ac508cde473e4968384701ff40fb8db4', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb8c22933471c463b148dc0bcea237b7953a4ba8', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd6b62e31bd19845a85ddb1dd1bdb5ab3bba273', '172.105.247.100', 1668593413, '__ci_last_regenerate|i:1668593413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e8a2cc3e31a6265ddcd2045abf7b6168a6d769', '172.105.247.100', 1668593414, '__ci_last_regenerate|i:1668593414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ec66e8bb736dfcfae607cd8f439d50cd7d3e93', '172.105.247.100', 1668593414, '__ci_last_regenerate|i:1668593414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2be569ac93d34771a4d9e5ff26d2715bddeb354', '172.105.247.100', 1668593414, '__ci_last_regenerate|i:1668593414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f3731e2b80fffa0288a0899dcc89461a0b57ff', '172.105.247.100', 1668593414, '__ci_last_regenerate|i:1668593414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35e4088b77ff925ed3b2949cc32e9a4a6829be2', '45.120.39.90', 1668594619, '__ci_last_regenerate|i:1668594357;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668573397\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668594619;register_id|s:3:\"250\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-11-16 12:43:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2458ae2a26ab7cfe1c827a7f71ee1a45cc8affa9', '116.204.230.26', 1668597628, '__ci_last_regenerate|i:1668597628;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668574855\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c26ab6462ad90cbb0fa53f987b994c27f1c440', '172.105.247.100', 1668597608, '__ci_last_regenerate|i:1668597608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d23e4943ea5fc080003381a68e0c07a6590030', '172.105.247.100', 1668597608, '__ci_last_regenerate|i:1668597608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19847a973794324ab6fb6174e6960dffef7742b', '172.105.247.100', 1668597608, '__ci_last_regenerate|i:1668597608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbdd54e42523d342ec8faa0c75be96f105678a28', '172.105.247.100', 1668597608, '__ci_last_regenerate|i:1668597608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e783406fd8d9d6d65de5ab0c67f810b3c0f2ba5', '172.105.247.100', 1668597608, '__ci_last_regenerate|i:1668597608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd103d56060fed7ea1f44f2c01bddce6f2f8b9c6', '172.105.247.100', 1668597608, '__ci_last_regenerate|i:1668597608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5112d48340acbbcee19cb0d5309912cd075b0eb', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5503095baf629a91d2a09442700812a2c2ae05ac', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70a5ffb3bff1cc077837c83bba9d5628e477ec76', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d72bd123bcddc82ee3df9b8508a14a4a866652', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e57d6622b743217a476c6da5604f9530e03bdf', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd2289ce8f26a7efc0e612cf3fdfe942bbc567b', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be5779a4afb9cbf54386b9030c2e05a2957747e5', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93da11a07c982b99d32c9ccb461757d2a26be4cf', '172.105.247.100', 1668597609, '__ci_last_regenerate|i:1668597609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8323779fbb1ea9116f17493a9b7bd943a75c9b', '172.105.247.100', 1668597610, '__ci_last_regenerate|i:1668597610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154ab026c95aec586c5176da5946fffc5f99fe6a', '172.105.247.100', 1668597610, '__ci_last_regenerate|i:1668597610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f6e953d6ecfe233c261b1e510b0bbc0ba0e75af', '116.204.230.26', 1668597634, '__ci_last_regenerate|i:1668597628;requested_page|s:35:\"admin/products/quantity_adjustments\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668574855\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668597634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44054bacbab090bec5f3d9eab0b869fb827eb4db', '172.105.247.100', 1668601808, '__ci_last_regenerate|i:1668601808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34994b295cbbd7300cba925b6723d3ed6076da1d', '172.105.247.100', 1668601808, '__ci_last_regenerate|i:1668601808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06640daf5ac780b43a2c35d064a41ff386715f40', '172.105.247.100', 1668601808, '__ci_last_regenerate|i:1668601808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19933bf311655b3e3bbfec829d4940455ac9c318', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed18a2c8ec915c611d86388c3df9a8b956930449', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bcb86b920f77449b8fb62000ef9cc5275726de4', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af996d614c3290114d5f529f5a06a1c8a9466332', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a8863901d57e69c9691cdfc63ae1f94d03613d', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e6d1635018fb69f744f32ec30eab459bc8bcce', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896582c6002801a558799793f123646b1a1f368b', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79638f220bce27c8834eeeeafd2bbe918061344b', '172.105.247.100', 1668601809, '__ci_last_regenerate|i:1668601809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22ee93190e7fcc9e8b1459c385989d3e3efbea3', '172.105.247.100', 1668601810, '__ci_last_regenerate|i:1668601810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68781ec865c5c50fcbb3853eccc2c77e254e124', '172.105.247.100', 1668601810, '__ci_last_regenerate|i:1668601810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd91386c6b7d20d0fce48a3af62dbf35ce2daa16', '172.105.247.100', 1668601810, '__ci_last_regenerate|i:1668601810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3825f7f0bf372e5dbfd8a4b362946b954601d454', '172.105.247.100', 1668601810, '__ci_last_regenerate|i:1668601810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d66e6dcdea2528a8ff6a0dcf886e95cd047dc1', '172.105.247.100', 1668601810, '__ci_last_regenerate|i:1668601810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8e7d795793345fb614adb65bd88fcbced3d245', '172.105.247.100', 1668606007, '__ci_last_regenerate|i:1668606007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dcd47d15f103e25d32023d9c56da8aa05d058fd', '172.105.247.100', 1668606008, '__ci_last_regenerate|i:1668606008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e0d85f9b76e655554985aafc0c96b3ba3bacf0d', '172.105.247.100', 1668606008, '__ci_last_regenerate|i:1668606008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2583b51816135d38195e1621ebe3fa0e1d099e07', '172.105.247.100', 1668606008, '__ci_last_regenerate|i:1668606008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad25e14b1d436e51484b85d37b0d8707c4a5813c', '172.105.247.100', 1668606008, '__ci_last_regenerate|i:1668606008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a6bb24924aeac3064832f1a717bc641b16149c', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4bcc15b91f53b07d5a5f047bf40d7a998669a4', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('affcfe2b3c9cf1a34f160aa21747ed5b318d70d7', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230666767397066e95d980c52be9583bce084f51', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d71c0261af7072359b42191ebd0bd08faa9017d', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b60a3db497b26809651c5ea5dc0efb9f52a3a6', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15c283d007e961e1e8d90579cc710b7da43deaf6', '172.105.247.100', 1668606009, '__ci_last_regenerate|i:1668606009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51577720357124623d998719ac1c365dc3534f2', '172.105.247.100', 1668606010, '__ci_last_regenerate|i:1668606009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c1ea67ad5f79f627af34585bc10782aa6e5687', '172.105.247.100', 1668606010, '__ci_last_regenerate|i:1668606009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49f1f54a9a6f0793a08b57c25a5084965026418', '172.105.247.100', 1668606010, '__ci_last_regenerate|i:1668606010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d81ff72f1bd1173d99a9273177087cf717d5b92', '172.105.247.100', 1668606010, '__ci_last_regenerate|i:1668606010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c2fa89711739cbcd806a48b5f302bcb4cc9eeb', '45.120.39.90', 1668607105, '__ci_last_regenerate|i:1668607105;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668580915\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668607101;register_id|s:3:\"250\";cash_in_hand|s:9:\"3920.0000\";register_open_time|s:19:\"2022-11-16 12:43:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eabbf258612eefad97cc8832838799dc8573a12', '45.120.39.90', 1668607132, '__ci_last_regenerate|i:1668607105;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668580915\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668607132;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283536c023dc56e52092851363c94d181a9d3425', '172.105.247.100', 1668610207, '__ci_last_regenerate|i:1668610207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1ef49a9bff53befa4b65eddbe3220256816e3f', '172.105.247.100', 1668610207, '__ci_last_regenerate|i:1668610207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a266d2284d9efb335dfa7830ea58ea43db42d4ce', '172.105.247.100', 1668610208, '__ci_last_regenerate|i:1668610208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9f06ad493d3c5d44bb606fa9af48513104a6d2', '172.105.247.100', 1668610208, '__ci_last_regenerate|i:1668610208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11402a4e9b6917506296fdde72bb566b6039df26', '172.105.247.100', 1668610208, '__ci_last_regenerate|i:1668610208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9748226995af1bd99901566e17345185f266231', '172.105.247.100', 1668610208, '__ci_last_regenerate|i:1668610208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07cc154bcc46347bbc79bcccfa6cdf3ff49db77e', '172.105.247.100', 1668610209, '__ci_last_regenerate|i:1668610209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6463a2588f397d72dc5b22a75463b09dda19be43', '172.105.247.100', 1668610209, '__ci_last_regenerate|i:1668610209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30826f054d3fd112700c49e95eb80131c00d783c', '172.105.247.100', 1668610209, '__ci_last_regenerate|i:1668610209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cdb8bb07b8c1d2d14d4c927cf8f7d785df45c83', '172.105.247.100', 1668610210, '__ci_last_regenerate|i:1668610210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d2f2b877870c2e408dfa9b0690a4b3ff9c0da6', '172.105.247.100', 1668610210, '__ci_last_regenerate|i:1668610210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bcbacbdecc56f39bb6352433d5792f9c7e9bff', '172.105.247.100', 1668610210, '__ci_last_regenerate|i:1668610210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62da3ee26de62af5591a86350382a26f02cf696d', '172.105.247.100', 1668610211, '__ci_last_regenerate|i:1668610211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554162823e2818685bb4954849b5ffd41db9fba7', '172.105.247.100', 1668610211, '__ci_last_regenerate|i:1668610211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e564ae38e04d3bdcd3c73aa97b1af504b7c875c1', '172.105.247.100', 1668610211, '__ci_last_regenerate|i:1668610211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdbae1651008e35ffd843d55974a9028711bea3d', '172.105.247.100', 1668610212, '__ci_last_regenerate|i:1668610211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8746270cd6a7a763a54b9b9d7a838c3917e9cfea', '172.105.247.100', 1668614412, '__ci_last_regenerate|i:1668614412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1abd1056ce571008ed2b6cdacec3b4f4668984ca', '172.105.247.100', 1668614412, '__ci_last_regenerate|i:1668614412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856de0c6b80fe144b0f79039b8ab217d70130525', '172.105.247.100', 1668614413, '__ci_last_regenerate|i:1668614413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1aac9ee33bfe2362b03fb235cf90b2d7fc728d', '172.105.247.100', 1668614413, '__ci_last_regenerate|i:1668614413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a46048522260c31cbd34b959e74c00e0c0d1179', '172.105.247.100', 1668614413, '__ci_last_regenerate|i:1668614413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af52b3218677c622461ed86d283d803ca5855fe', '172.105.247.100', 1668614414, '__ci_last_regenerate|i:1668614414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e462564b111039f153d151fbc13b311dea04cf74', '172.105.247.100', 1668614414, '__ci_last_regenerate|i:1668614414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b05d36cee45e0ec654fef5179dc49513c89a69', '172.105.247.100', 1668614414, '__ci_last_regenerate|i:1668614414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7de5ca299025727a5ade08c6db15a0feb17e53a', '172.105.247.100', 1668614414, '__ci_last_regenerate|i:1668614414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f10857240f19013eef292e42d95b3467ee1a04', '172.105.247.100', 1668614414, '__ci_last_regenerate|i:1668614414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b4e6f500f2487c35aa0ec439898f615d09bc9a', '172.105.247.100', 1668614414, '__ci_last_regenerate|i:1668614414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245239bf9469ae6ae29042f24e7e7a08c5881d42', '172.105.247.100', 1668614415, '__ci_last_regenerate|i:1668614414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f728cd63d73a48bc593d3b18428a977fa61c5cd', '172.105.247.100', 1668614415, '__ci_last_regenerate|i:1668614414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0d702aaeec6fa41850be438566e6286af0e85b', '172.105.247.100', 1668614415, '__ci_last_regenerate|i:1668614415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ffb0d6051bbb5266214d5d3122cdacf27bacf5e', '172.105.247.100', 1668614415, '__ci_last_regenerate|i:1668614415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb7a9b19f8e5185dba24e68056a540ab3ac25a06', '172.105.247.100', 1668614415, '__ci_last_regenerate|i:1668614415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40772cf126deeba323d33f0c146117090fe8682', '172.105.247.100', 1668618608, '__ci_last_regenerate|i:1668618608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35fc48de0d7926691ac0ccff8ba561611d2c228', '172.105.247.100', 1668618611, '__ci_last_regenerate|i:1668618611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb8061eea8b85ad13cdc2dbe38696ea39841128', '172.105.247.100', 1668618611, '__ci_last_regenerate|i:1668618611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8f5e70ab2fef1f732b5a058f3a429a525364d4', '172.105.247.100', 1668618611, '__ci_last_regenerate|i:1668618611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599c2db199f9c72b579936a46b63bb51c1b0f465', '172.105.247.100', 1668618611, '__ci_last_regenerate|i:1668618611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08123495fe629339e17c99c2f6522153a474e57e', '172.105.247.100', 1668618611, '__ci_last_regenerate|i:1668618611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5865cdbd5fc7ee315aeada1d305e418a6727b6cb', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ac87c16585e919a8d60cfb6b291de6a631b77a', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80ea4b357a126211ea67a05eb5115e4a87168ca', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4fe8ea7d84ced854d0b067b0e58b8e09fe2ebf9', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7deec2e352b94dea74febfe254f825033648943f', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1f98e7b4a766b637e95c51797ab88163d47ce7', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110ce666dea9ecbfdca3d377f99a30fcf441e276', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f73cea55e7a619e0addfd90ede0326a49126bf5', '172.105.247.100', 1668618612, '__ci_last_regenerate|i:1668618612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ff3db647442d3fa3781039582a005be485aba8', '172.105.247.100', 1668618613, '__ci_last_regenerate|i:1668618613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5438c9fdb670811cd7f720c925588aefe1116346', '172.105.247.100', 1668618613, '__ci_last_regenerate|i:1668618613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50c95b64035a9d92026e89abccf08a6f996c801', '172.105.247.100', 1668622809, '__ci_last_regenerate|i:1668622809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f3d91c3fa713ed30a4df96ca9ee6340fe42240', '172.105.247.100', 1668622809, '__ci_last_regenerate|i:1668622809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce717d994b617bf8d0311e5e6de455b453d95a55', '172.105.247.100', 1668622809, '__ci_last_regenerate|i:1668622809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac1e8990ba0873aea7dfe588b350851ecf4a992', '172.105.247.100', 1668622809, '__ci_last_regenerate|i:1668622809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0fa7e9be3cbf09e26dbc7741d37bbf1acde65ea', '172.105.247.100', 1668622810, '__ci_last_regenerate|i:1668622810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ff89c955a093ba075ea5dc78882378d376cbce', '172.105.247.100', 1668622810, '__ci_last_regenerate|i:1668622810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69deb3f13634cf1b03f141922fbddf876e07a682', '172.105.247.100', 1668622810, '__ci_last_regenerate|i:1668622810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3b76723d2e3828a09d601ee9444aa39d9a5ee4', '172.105.247.100', 1668622810, '__ci_last_regenerate|i:1668622810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1ed6d915ab87335adac85e9fd96dfe390353547', '172.105.247.100', 1668622811, '__ci_last_regenerate|i:1668622811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785a23fcff9980d0e92573dcdd917c7fc580834d', '172.105.247.100', 1668622811, '__ci_last_regenerate|i:1668622811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0973234cdd3f6fb82eb57eac57e886cd18fe1570', '172.105.247.100', 1668622812, '__ci_last_regenerate|i:1668622812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8e11c7a0946cfaf908f2907bba61fa9aadee3d', '172.105.247.100', 1668622812, '__ci_last_regenerate|i:1668622812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a257ae55b5f93f0e3833132d859c555d16a0d7b', '172.105.247.100', 1668622812, '__ci_last_regenerate|i:1668622812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5cb24d58ffa0ade7581a6f53bb6cd67ed33444b', '172.105.247.100', 1668622812, '__ci_last_regenerate|i:1668622812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765869015828fd835d3539bd08dbed363d423e8c', '172.105.247.100', 1668622813, '__ci_last_regenerate|i:1668622813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2607f8a628d9050391a5c362f8e84e76f66f6df0', '172.105.247.100', 1668622813, '__ci_last_regenerate|i:1668622813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2660f5cc65d015e3fce983e90a235c2672d825c0', '172.105.247.100', 1668627008, '__ci_last_regenerate|i:1668627008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092bd57082c9fea4c3006a2b83e1b6edf1b0a4fb', '172.105.247.100', 1668627008, '__ci_last_regenerate|i:1668627008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7bf6e71b0da0dac3bd53687cf66db73d78203b8', '172.105.247.100', 1668627009, '__ci_last_regenerate|i:1668627008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd23af34782c52eeff65a4de9ecd5dc96ffd1b79', '172.105.247.100', 1668627009, '__ci_last_regenerate|i:1668627009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1351c2d1cbf3cc57f46f3d73ec0cc6ce0eab057', '172.105.247.100', 1668627009, '__ci_last_regenerate|i:1668627009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5276c2710f3249b3d36d0562b8ab6d454a27d2c', '172.105.247.100', 1668627009, '__ci_last_regenerate|i:1668627009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2373613274a7d377b15e06c102780b8990fa46c5', '172.105.247.100', 1668627010, '__ci_last_regenerate|i:1668627010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d174f84b17db18fafd590174ed717f5cb6bd72', '172.105.247.100', 1668627010, '__ci_last_regenerate|i:1668627010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd2328cccb5f521cec22b5dd8ca89f6b8eebed7', '172.105.247.100', 1668627010, '__ci_last_regenerate|i:1668627010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10859d18e0fc47702af89c9f5cfd28b7b05b556', '172.105.247.100', 1668627011, '__ci_last_regenerate|i:1668627011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f983464c178c5f023542fa66ac2250a691e0152', '172.105.247.100', 1668627011, '__ci_last_regenerate|i:1668627011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d510d8e7b02af29740a057ff5d777477ed36a8', '172.105.247.100', 1668627011, '__ci_last_regenerate|i:1668627011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c6227887e507a6134632a64ed6255720fa4a9e', '172.105.247.100', 1668627012, '__ci_last_regenerate|i:1668627012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5435978ca5f21a96a53fafe076bb8d8af11a1233', '172.105.247.100', 1668627012, '__ci_last_regenerate|i:1668627012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b64d6096c000ba686457b2ddf07a31eaa300f1', '172.105.247.100', 1668627012, '__ci_last_regenerate|i:1668627012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e732f565472a8ea09c0690ac40b41b6966a596f', '172.105.247.100', 1668627012, '__ci_last_regenerate|i:1668627012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c62dfc0d8fba9773614e1ffceed31114dab1b18', '172.105.247.100', 1668631207, '__ci_last_regenerate|i:1668631207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5feda6c215cb208f512dd97d85d7c7286e6ad3', '172.105.247.100', 1668631207, '__ci_last_regenerate|i:1668631207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf47f7b008fe12fed25ec9d9584745b9539c937', '172.105.247.100', 1668631208, '__ci_last_regenerate|i:1668631208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1709971a561d9153b13d8b04903edb27059066d5', '172.105.247.100', 1668631208, '__ci_last_regenerate|i:1668631208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930f19ca7b9ad3f9aab0df6fa06b393893bbee0d', '172.105.247.100', 1668631208, '__ci_last_regenerate|i:1668631208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48206f5e23305d7db4b977493d0b4d80e7fabd38', '172.105.247.100', 1668631208, '__ci_last_regenerate|i:1668631208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546ff1cffa938a32251fa696d8dcc2c775cc59b0', '172.105.247.100', 1668631209, '__ci_last_regenerate|i:1668631209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('305cfb6f6749c9b463b68aa7477bfbbdc4c36bd5', '172.105.247.100', 1668631209, '__ci_last_regenerate|i:1668631209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ed5f03553ce991d4608415282b7acd54727310', '172.105.247.100', 1668631210, '__ci_last_regenerate|i:1668631210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7b9ec91e7ffc334c23e4fdea34f0d68e674414', '172.105.247.100', 1668631210, '__ci_last_regenerate|i:1668631210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5dbcfd782a49a7246ab3180e8fcaba1b863f950', '172.105.247.100', 1668631210, '__ci_last_regenerate|i:1668631210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa1cad5afce52f817111b14e049809b83f0161f', '172.105.247.100', 1668631210, '__ci_last_regenerate|i:1668631210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be7ca3ebf51b55428dbeeb43d976462ab344836', '172.105.247.100', 1668631211, '__ci_last_regenerate|i:1668631211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e0cd910caac66aae965016ababdcd9542570f5', '172.105.247.100', 1668631211, '__ci_last_regenerate|i:1668631211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519fe47f786568db0226db996ba8afb5872e0f94', '172.105.247.100', 1668631211, '__ci_last_regenerate|i:1668631211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37f46b6d89cff6b092beb2da5f3fcf89d7a7e03f', '172.105.247.100', 1668631211, '__ci_last_regenerate|i:1668631211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3648684b1ff4a3bfe843ef485c873e8b2ca71a8', '172.105.247.100', 1668635409, '__ci_last_regenerate|i:1668635409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e430beba6498c54f47786582fe5315f06c5cdc1', '172.105.247.100', 1668635409, '__ci_last_regenerate|i:1668635409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ab9460c75b8a262ba9e4d790d627031adb1f62', '172.105.247.100', 1668635409, '__ci_last_regenerate|i:1668635409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b29df8b05a7e1afa6d9018514d3d71a1f1a96df', '172.105.247.100', 1668635409, '__ci_last_regenerate|i:1668635409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93218b13f806f82a2b7b89de015a10c79e3866b', '172.105.247.100', 1668635410, '__ci_last_regenerate|i:1668635410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41927f6119fcd6fc48830a80aec61ba9c2170da5', '172.105.247.100', 1668635410, '__ci_last_regenerate|i:1668635410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59b859dac5900e992e95cd023947bbafcb6b1ab', '172.105.247.100', 1668635410, '__ci_last_regenerate|i:1668635410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87753d90c1e17befaf58c9226290efc4861b1d6', '172.105.247.100', 1668635410, '__ci_last_regenerate|i:1668635410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04dffa1241e3658e4667b9cac421da76a3beeb9', '172.105.247.100', 1668635410, '__ci_last_regenerate|i:1668635410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a66360c965024c6b6e769817984e724daee79d', '172.105.247.100', 1668635410, '__ci_last_regenerate|i:1668635410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34d8f160d32b7cdee0710572ef9405175630679', '172.105.247.100', 1668635411, '__ci_last_regenerate|i:1668635410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0e0b4d917c66e12425b16c699619bf68476c32', '172.105.247.100', 1668635411, '__ci_last_regenerate|i:1668635410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6192f0eee2494c35c2c6444a63690e995f26650a', '172.105.247.100', 1668635411, '__ci_last_regenerate|i:1668635411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b103f2f4b4ce77bbf8a668148a2b70e83679b478', '172.105.247.100', 1668635411, '__ci_last_regenerate|i:1668635411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d88523be692c36057e77066da078fb38d8d66b8', '172.105.247.100', 1668635411, '__ci_last_regenerate|i:1668635411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f68b8bdb1a1642ed54b96d32c1bfe1fc521cd5', '172.105.247.100', 1668635411, '__ci_last_regenerate|i:1668635411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ef5a5b7cbe27fdaaab9fb8f218bcd6890fa8a2', '172.105.247.100', 1668639607, '__ci_last_regenerate|i:1668639607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba9c0699d1027c4dc8bded085ebba825b005517', '172.105.247.100', 1668639607, '__ci_last_regenerate|i:1668639607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b316704c77f46fc98abb22fe5935a4dffa812b5', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4fc96c357eafceb39f7584331cfb4e8e6af37e0', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe4e7fc66615c327176dc88060ff28d46cdc871', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc25d4ea2e4890c29e42ffb6eb3dd94f578a876b', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb24b44e046cd20e96ce4d2fa9a994cba3fbaa96', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ebb3b2de9312e7ea5a368a5aaaf8ee6e2f8bf4', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d9155d9b337aa093485d9d4d7e1c0231725c6d', '172.105.247.100', 1668639608, '__ci_last_regenerate|i:1668639608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6594c8aecd3cf67cbb7a5513815fbf7fff02dac3', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5220510274c628305fea8895c9469c4570f81cb', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26370a1029166968fce20d9b344c81eafede9f2e', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7da9a212bcb8acec3c7ef55d1830f412dfea4b2', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40d2bd5bdf0bd615abb043cada18c35640dc2d2', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f782d70d76cae2ae2612e41a083acc448235601', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031d09970c3070893a2e9642c21801005407ae08', '172.105.247.100', 1668639609, '__ci_last_regenerate|i:1668639609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e17816f84835975105a23f3b977497e7ac74278', '172.105.247.100', 1668643808, '__ci_last_regenerate|i:1668643808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194052eaa459fe87607bd51a712983ae36d647f5', '172.105.247.100', 1668643810, '__ci_last_regenerate|i:1668643810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99353d7d23aaa1f7acb27cf0048ab7b1c462503e', '172.105.247.100', 1668643811, '__ci_last_regenerate|i:1668643811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed29c88bf8cb10ba40eabcb92af9bb74c1585df8', '172.105.247.100', 1668643811, '__ci_last_regenerate|i:1668643811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85fcc05f2b06639b72675e7c9661071335e0f3b0', '172.105.247.100', 1668643811, '__ci_last_regenerate|i:1668643811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f5b3a81530a8b2719995f93e401a3d3272cc46', '172.105.247.100', 1668643811, '__ci_last_regenerate|i:1668643811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f72acc1beda50a37265d06679fbab6b0c71918', '172.105.247.100', 1668643811, '__ci_last_regenerate|i:1668643811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30c2e5c442e285746d9fc73cc728343b4856d74', '172.105.247.100', 1668643811, '__ci_last_regenerate|i:1668643811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3231f48a7f80bfb852073c12a68100c07d83e128', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a545c4efad54024445c8e9da7fc4ddacb83fc5', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1195b488290f5aea6567bd8306e43fd46992cd52', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6914fb08a2347fc212c74e0ae501564aa8ad3462', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab99e1b5be4af8115418b29cc94463ff8aaabde', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4db6dde589539499eaf09a8a588c734b310582e', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4d6145a88110b33ce28548e25a81f5943e40f2', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('049e2956e559e9a5d6de9fd72d2108010e5a131d', '172.105.247.100', 1668643812, '__ci_last_regenerate|i:1668643812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48be4d1d7ecad99d01bedf09c887909ea46e8197', '34.136.249.27', 1668646789, '__ci_last_regenerate|i:1668646789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35643c506d5da4404ef2f6cba6d3f70d72ea1a35', '34.136.249.27', 1668646790, '__ci_last_regenerate|i:1668646790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87264a9375d255eb07bded04b137b86b5b31c45', '34.136.249.27', 1668646790, '__ci_last_regenerate|i:1668646790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b7831ba126898b0ae767988d39d3065d5392c4', '34.136.249.27', 1668646792, '__ci_last_regenerate|i:1668646791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0520da0bb3165c47a169f03c1e49b79ae5ba7e6a', '34.136.249.27', 1668646793, '__ci_last_regenerate|i:1668646793;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1804fb7bf8bccefb9fda4a965074490816d9054', '34.136.249.27', 1668646793, '__ci_last_regenerate|i:1668646793;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501635043462f65aa6dd2bff4f8054943e49e92d', '34.136.249.27', 1668646795, '__ci_last_regenerate|i:1668646795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0318080e9a8014bc8361dd5db1180fccbb00d6', '34.136.249.27', 1668646795, '__ci_last_regenerate|i:1668646795;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25bad0c54884b8e1af7b62a4f9d13335a8fc5a7', '34.136.249.27', 1668646795, '__ci_last_regenerate|i:1668646795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f17d4f75c8f56ee1313adaec73dac5323337e2', '34.136.249.27', 1668646795, '__ci_last_regenerate|i:1668646795;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a44f194af9cfdc1b935c9d00201c465bf4f462', '34.136.249.27', 1668646797, '__ci_last_regenerate|i:1668646797;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37591b2f075c7f47fd665e64b6d7a7926bc694b7', '34.136.249.27', 1668646797, '__ci_last_regenerate|i:1668646797;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efcd42cc3131cb3e0c99d8c3755e52f3e8201368', '35.225.29.9', 1668647112, '__ci_last_regenerate|i:1668647112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afb95f4afbb97568f5436bc6ea92359aa16dd8f', '35.225.29.9', 1668647112, '__ci_last_regenerate|i:1668647112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0429e923bbdfef18c85e2ca838f5d1700483c66d', '35.225.29.9', 1668647112, '__ci_last_regenerate|i:1668647112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a371888a2c41743471a5861ed7e921e5128ce37', '35.225.29.9', 1668647112, '__ci_last_regenerate|i:1668647112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8b66a5f3a805b144ba52d5db5c9e2de10206b7', '35.225.29.9', 1668647114, '__ci_last_regenerate|i:1668647114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc4fe341dc3c3dd63a0d39dfea7de4e26b134e9', '35.225.29.9', 1668647114, '__ci_last_regenerate|i:1668647114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4511f4d38226f80f75b050ebb45b6b906a56a07', '35.225.29.9', 1668647115, '__ci_last_regenerate|i:1668647115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c855fa6e120e61fc34072ec7f33c8e629417ea', '35.225.29.9', 1668647115, '__ci_last_regenerate|i:1668647115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7195b4c5db4ac99633aca941e5f5be452eed5dc0', '35.225.29.9', 1668647117, '__ci_last_regenerate|i:1668647117;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629293e3a67f28285dfeadf7ca62e54f872cb999', '35.225.29.9', 1668647117, '__ci_last_regenerate|i:1668647117;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc84f8fcb2682b1ad04baae72e7c97c77b3f0e69', '172.105.247.100', 1668648007, '__ci_last_regenerate|i:1668648007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76bd3ce47abec7e3af528ecba44c69ac2f77bf8b', '172.105.247.100', 1668648007, '__ci_last_regenerate|i:1668648007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afcc0323a292002c7baf4d7c3cc8beabde4e67e', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b092e04cf3b9e44124a8479155e539d63d8b78', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1691d608deb5f5643bfb3d94cc75cdd0e9754727', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aa4f2bb8d5647ed5df1cc53cd30c7be2b4e839', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94db77cb6fc9a536e4d6039b488e3a0533fc663f', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a041938d36e5bebab9eec42834d87209f0a8ebbd', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7af7c9ec0026882903d6f705c8b50e1f2a9e50', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7015361ec7f40a94c4e09cbdf899b482ce01e0f7', '172.105.247.100', 1668648008, '__ci_last_regenerate|i:1668648008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2041e918c5556f159b6a59f913a3af741e7c3c23', '172.105.247.100', 1668648009, '__ci_last_regenerate|i:1668648009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fceed4e986f779d8cc2bac7b50c0373155f1097', '172.105.247.100', 1668648009, '__ci_last_regenerate|i:1668648009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17bab63a2f122a8b9e863560c226faa13a44dc5a', '172.105.247.100', 1668648009, '__ci_last_regenerate|i:1668648009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70dd24b8223eda7d279e48c4d01b8d99ca7e0291', '172.105.247.100', 1668648009, '__ci_last_regenerate|i:1668648009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a99e4e76d443e134a5d8ab44b115b6fb7f6c0d', '172.105.247.100', 1668648009, '__ci_last_regenerate|i:1668648009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236fc9b22f97701a63f9fcf127329653fd5279d1', '172.105.247.100', 1668648009, '__ci_last_regenerate|i:1668648009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84305e5c28a1e1128fba27eca8972c6df22517e6', '35.225.29.9', 1668649326, '__ci_last_regenerate|i:1668649326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919baa184c7dffa8d8b71a0d899889e9eff45aa9', '35.225.29.9', 1668649327, '__ci_last_regenerate|i:1668649327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb5cb5340ae872726e424f03049bce0b58bb53dc', '35.225.29.9', 1668649329, '__ci_last_regenerate|i:1668649329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cad6a54d8dd95eb5aad0bfa4bf2346fcb94ac09', '35.225.29.9', 1668649330, '__ci_last_regenerate|i:1668649330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98041cab87aa7648074552f83ed1796a9e9eb97d', '35.225.29.9', 1668649341, '__ci_last_regenerate|i:1668649341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a8b6ac9d2ca0a5ac710de8f8bf426b8f584b7f', '35.225.29.9', 1668649341, '__ci_last_regenerate|i:1668649341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29fbe5223d0a50891c007eb8f6d1bd4f6a69bbe2', '35.225.29.9', 1668649341, '__ci_last_regenerate|i:1668649341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3362b2c45adaebe301ccb4c799e02993bc2288d', '35.225.29.9', 1668649342, '__ci_last_regenerate|i:1668649342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1d3b04fea4ff56a061dab970e22cc758ff003d', '35.225.29.9', 1668649343, '__ci_last_regenerate|i:1668649343;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad495ceec16f2169e8186e98966c9366cb9ed84', '35.225.29.9', 1668649343, '__ci_last_regenerate|i:1668649343;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f30572d55e8c2332150905f823b5492ed8c399', '35.225.29.9', 1668649359, '__ci_last_regenerate|i:1668649359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51c710c360834294af3bf2d7f3942555db069d1', '35.225.29.9', 1668649359, '__ci_last_regenerate|i:1668649359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16a50b209d0190e1043d080dbbdd203d76f833b', '35.225.29.9', 1668649359, '__ci_last_regenerate|i:1668649359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d9a1a500a3be68ae913420a8611b500f3404f7', '35.225.29.9', 1668649359, '__ci_last_regenerate|i:1668649359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96e0c3e416614e2e7a29dc54c40db8a52dffe56c', '35.225.29.9', 1668649360, '__ci_last_regenerate|i:1668649360;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c453571364f0b5cd6b234d76ba7d8826016c84c', '35.225.29.9', 1668649360, '__ci_last_regenerate|i:1668649360;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66ece8a732e1b4a51d3c9c3e14c8e070869ee68', '35.225.29.9', 1668649361, '__ci_last_regenerate|i:1668649361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a940178dc7d80897c4c31cfe720ae6b05478ceba', '35.225.29.9', 1668649362, '__ci_last_regenerate|i:1668649362;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0696fbe427c60df4851732795cda7caf8fe0b840', '35.225.29.9', 1668649362, '__ci_last_regenerate|i:1668649362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8fff7745d6a3f5902507966a647e23bf16a729', '35.225.29.9', 1668649362, '__ci_last_regenerate|i:1668649362;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245efd0d12a036804931c6c608e5c2e8d7d70dcc', '35.225.29.9', 1668649363, '__ci_last_regenerate|i:1668649363;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b701d47921359431c4461f264bccdefe8b5c87e', '35.225.29.9', 1668649363, '__ci_last_regenerate|i:1668649363;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12238b82cce61f03e4d4b15c2d0271dae5138a35', '172.105.247.100', 1668652809, '__ci_last_regenerate|i:1668652809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3339dfe62c1e279df0dedb6b88e4f566ba78a494', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22c57af3a9005054fef6a094b989009cae69de0', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b655c0f6c917fdb189c3478913212e26e1f8793', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d3d86ef185115ab8e2c6c9dbe8d7cb1462af46', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae397da79f6da3a8b71cdf5a16c91b5060fa364a', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99f22059442a937bb53ece0e3c323e0f39cde6b', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029d2dbff29f720b5198638f73d2a5c1e8f36572', '172.105.247.100', 1668652812, '__ci_last_regenerate|i:1668652812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1214f1bebd4c8804670d895520f1000c7aa35b71', '172.105.247.100', 1668652813, '__ci_last_regenerate|i:1668652813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b00381d83ad7a1fa02ec5ea84a7e6ba5df7fea', '172.105.247.100', 1668652813, '__ci_last_regenerate|i:1668652813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e13c6d1ceb0584c1a886577b068299b2fdb71a', '172.105.247.100', 1668652813, '__ci_last_regenerate|i:1668652813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac18efafdcee14920cb73b169b3fe083ff8b7034', '172.105.247.100', 1668652813, '__ci_last_regenerate|i:1668652813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b391b577edc451d5509da89e9d9c2104418b582', '172.105.247.100', 1668652813, '__ci_last_regenerate|i:1668652813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210cff6f16ee5b6ece100accc789f933460fb94f', '172.105.247.100', 1668652813, '__ci_last_regenerate|i:1668652813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb85b62355f0a279d464bbed838d045d3500d71', '172.105.247.100', 1668652814, '__ci_last_regenerate|i:1668652813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7073329d7a8dce5746cda1749a44894ac4605765', '172.105.247.100', 1668652814, '__ci_last_regenerate|i:1668652814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25830c7df1fb54d4978d4927a31cb2c88b0c3d16', '172.105.247.100', 1668657007, '__ci_last_regenerate|i:1668657007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa19de8a5bc8bd3e2d1608ec755f7badafa67a29', '172.105.247.100', 1668657007, '__ci_last_regenerate|i:1668657007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0717d8a5c1bbc1b381b8bfe95375eaca3bb0c2', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4527c06afd4a3e4648c400f64f68c37a77dcbe1', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922a97f19013096db7f61ac6185d0d7f775bda5f', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2792e8f6a57744b34ec915107eded2088af61914', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c66ea3a25d897ddc1e4f4ba5d2a8bc023f931e', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d25e5198fc767d04c1ed9e4460c8801eb9ef6b1', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f9f3baed12ecba280dd9b2804c5bd77a58ccca', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7054a78df5f45549dfb93d00eca686692757ee8', '172.105.247.100', 1668657008, '__ci_last_regenerate|i:1668657008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571a21af2c0ff0945bddaf3e42d2d5cdefb80eff', '172.105.247.100', 1668657009, '__ci_last_regenerate|i:1668657009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('920af2ea5ef5c8e56b079021c9c1f2421f437ae3', '172.105.247.100', 1668657009, '__ci_last_regenerate|i:1668657009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50aaba5cdd7aacd844d99308055bd11c46968403', '172.105.247.100', 1668657009, '__ci_last_regenerate|i:1668657009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2243cff9e1df025136274b0441d5cc719aa16ced', '172.105.247.100', 1668657009, '__ci_last_regenerate|i:1668657009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7719d4aed7dfca478d57aabf03d8619e188c2a', '172.105.247.100', 1668657009, '__ci_last_regenerate|i:1668657009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb6f08b600d2573bdfb066727be2815c60fd190', '172.105.247.100', 1668657009, '__ci_last_regenerate|i:1668657009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ae6fe886544a9ff9cc973d848dd9291adbedef', '45.120.39.90', 1668658267, '__ci_last_regenerate|i:1668658267;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668658258;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f56b6fe960bd6fe187dd8960a02ae823c1112e23', '45.120.39.90', 1668663234, '__ci_last_regenerate|i:1668663234;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668663229;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cff583e2859888563f71d366e90b0331af1850', '172.105.247.100', 1668661211, '__ci_last_regenerate|i:1668661211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1db806ae2046eebfb3ba82d6a919a09fa1c4994', '172.105.247.100', 1668661211, '__ci_last_regenerate|i:1668661211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dbddb830715aaf8d6ead2260e670aae4a622209', '172.105.247.100', 1668661211, '__ci_last_regenerate|i:1668661211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a05178dba351d74bd7c5426310eb7ee355d1285', '172.105.247.100', 1668661212, '__ci_last_regenerate|i:1668661212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9b9d6030f4a3a7c347abca15b67caa7ed25fb3', '172.105.247.100', 1668661212, '__ci_last_regenerate|i:1668661212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c8c9d46692f86e8735a38abace90955a480113', '172.105.247.100', 1668661212, '__ci_last_regenerate|i:1668661212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74d72d2f965da1354ea0b5e48919f6dedbb64c9', '172.105.247.100', 1668661212, '__ci_last_regenerate|i:1668661212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b4310bdf9371026a2a93e52ca5db9fa7bb385b', '172.105.247.100', 1668661212, '__ci_last_regenerate|i:1668661212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b366681d556685e0e9d527c352f263fb62038c6', '172.105.247.100', 1668661212, '__ci_last_regenerate|i:1668661212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c0f74287ab6c4f385ed6b0d84c7a9511f46f22', '172.105.247.100', 1668661213, '__ci_last_regenerate|i:1668661213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b5eeb20bb68b0899f4b2ab25120f2dbcdd9bc7', '172.105.247.100', 1668661213, '__ci_last_regenerate|i:1668661213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f0f0366e6d307416c5eb2c0cf625e6d1bccca4', '172.105.247.100', 1668661213, '__ci_last_regenerate|i:1668661213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab11c74e86b0188dee255085149b8c4dbaf3fd4', '172.105.247.100', 1668661213, '__ci_last_regenerate|i:1668661213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfaf4281fcbfd001e25a8eca4ab2d4f78968b5d3', '172.105.247.100', 1668661213, '__ci_last_regenerate|i:1668661213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2139c54cb1136a566c24e4f47c34d4d3cebabbfd', '172.105.247.100', 1668661214, '__ci_last_regenerate|i:1668661213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e44280de774ea90bf00dbafa7354e5630bafc68', '172.105.247.100', 1668661214, '__ci_last_regenerate|i:1668661214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eeea95269928deebbaa5a288367af20559d872f', '45.120.39.90', 1668664585, '__ci_last_regenerate|i:1668664585;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668664363;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02debf10a8d52a78220345116b0eb2c28ccb939a', '45.120.39.90', 1668665457, '__ci_last_regenerate|i:1668665457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668664615;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f920fbf922e88d341d394f30d6ee6018aaffbaf4', '172.105.247.100', 1668665411, '__ci_last_regenerate|i:1668665411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509143119d88cc4dc674653149dee18c6e774733', '172.105.247.100', 1668665411, '__ci_last_regenerate|i:1668665411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a318f2a30b721fa83414eccbb39027b93a33130', '172.105.247.100', 1668665413, '__ci_last_regenerate|i:1668665413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f3eb97a64e2e9d7850631f3f35197fce186a37', '172.105.247.100', 1668665413, '__ci_last_regenerate|i:1668665413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bafd18eff327dd49cc561275877a4952127a1816', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7674d3b12da02836befaf373b566faed708dd7', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6d8c667e030f125dbdd4b5991edb2bdb03271a', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3aa5cbe61ffc33fbebba23a7bf42c9469ec8509', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f092d720df10fd02d1aaff2bab9a0bc6bdeecfc', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf78c8fe480557a7a27ef50b7a6dbda916b4e54e', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b98d1abac37598e021d11f6dd13fb68c4716fca', '172.105.247.100', 1668665414, '__ci_last_regenerate|i:1668665414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edff6339c4155b0c72a8f97593a01faaefd2152c', '172.105.247.100', 1668665415, '__ci_last_regenerate|i:1668665414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a7b996f835a47fa8cbfa8eb5c304a545fabdda', '172.105.247.100', 1668665415, '__ci_last_regenerate|i:1668665415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e309e9284a08a6d389ffc03e324c0bb3f21cfe10', '172.105.247.100', 1668665415, '__ci_last_regenerate|i:1668665415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e10fe237bdea847c8304d70e040b1764ded8d53', '172.105.247.100', 1668665415, '__ci_last_regenerate|i:1668665415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320c996b556608392d393e8db4205ffec5905588', '172.105.247.100', 1668665415, '__ci_last_regenerate|i:1668665415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d9e3a1f365dd838567a61aa43acbf2d1c7faa4', '45.120.39.90', 1668670907, '__ci_last_regenerate|i:1668670907;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668665502;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a14a2c7c307e5a67879299ea72b61910609dc6f', '172.105.247.100', 1668669609, '__ci_last_regenerate|i:1668669609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11733bd341da50072058071924bb17ae00488da1', '172.105.247.100', 1668669609, '__ci_last_regenerate|i:1668669609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7835da9dbeda9477117ac336bcd682a635263e48', '172.105.247.100', 1668669609, '__ci_last_regenerate|i:1668669609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f0d64cc05c9a5075570f57a20be52852692926', '172.105.247.100', 1668669610, '__ci_last_regenerate|i:1668669610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2bfee9a35d9c0de31411f8e60494ac20952e722', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63625c34a4d59903358722a3816fafac33f23f25', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a75e654bb4414a1e9ef0706f165537adc1c2440', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2abcbb46e880d88aa3db5ac4253366f50d576d', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4899a9336a13ce28f3842048432dd61e34d789', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5763dcbf60e64ad35a69bde4d358a4481d4295f4', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19e9a79a6df739efc7dc9a8ce0e7c0e17898837', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc5f0b0a9ae5bc016a525f18e9402fdd396aafe', '172.105.247.100', 1668669611, '__ci_last_regenerate|i:1668669611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f918303c58f058908da7c379a9d6ac00330d72', '172.105.247.100', 1668669612, '__ci_last_regenerate|i:1668669612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef6e505bc2d485c5be6d4339c89571b8d849800', '172.105.247.100', 1668669612, '__ci_last_regenerate|i:1668669612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f51835d9df5e1bbe9d322e90ad8249658ae2d5b', '172.105.247.100', 1668669612, '__ci_last_regenerate|i:1668669612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('424db38b9d5210b8f32082efb43b1e0c57aa6d41', '172.105.247.100', 1668669612, '__ci_last_regenerate|i:1668669612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d55d761a8cdbf5cd6d8711e57ab46fd380ee03', '45.120.39.90', 1668672062, '__ci_last_regenerate|i:1668672062;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668671988;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8eabffbcc1e6884372676a91d5828e5b5e5b14', '45.120.39.90', 1668672881, '__ci_last_regenerate|i:1668672881;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668672689;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4e50ca4113a1b2ff0384e374118ed081ad36d7', '45.120.39.90', 1668680170, '__ci_last_regenerate|i:1668680170;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668680139;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772319a68e26e30f0430ab69aac31cf4e5c56348', '172.105.247.100', 1668673808, '__ci_last_regenerate|i:1668673808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b411d4d9b2bd4a91d7e39779a0ef05438fe33a0', '172.105.247.100', 1668673808, '__ci_last_regenerate|i:1668673808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323728289e8bfd14594c7eeaef8514df31edcf84', '172.105.247.100', 1668673809, '__ci_last_regenerate|i:1668673809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690c30ffa6ea7a7d86442e3447bfed1cc8e724df', '172.105.247.100', 1668673809, '__ci_last_regenerate|i:1668673809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84802c3b0cdb65f1b2b0a10ad8564fca8ff705db', '172.105.247.100', 1668673809, '__ci_last_regenerate|i:1668673809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a06a290beee45ea69f8ac7a6e49d6410b727faf', '172.105.247.100', 1668673809, '__ci_last_regenerate|i:1668673809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812d5cc644c6a314d3de3e80f006acec6b2c405c', '172.105.247.100', 1668673810, '__ci_last_regenerate|i:1668673810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a175c175e3b41667da1d54da61d1f10c1b234ef', '172.105.247.100', 1668673810, '__ci_last_regenerate|i:1668673810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b511d5924a5ef007e0976c9a0b3095d185de33', '172.105.247.100', 1668673810, '__ci_last_regenerate|i:1668673810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bc9b4516436ddfd31b673fdf295fb129dfff13', '172.105.247.100', 1668673810, '__ci_last_regenerate|i:1668673810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e05e3fbe4f6673951174c326739bd1c893be087', '172.105.247.100', 1668673811, '__ci_last_regenerate|i:1668673811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a0101b338b9ea6d467dca11be24689ddb1b9f3', '172.105.247.100', 1668673811, '__ci_last_regenerate|i:1668673811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1313ad2437e875c001243fc5daaf6f9da7325ed', '172.105.247.100', 1668673811, '__ci_last_regenerate|i:1668673811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83afa0cfcf5eae41f3ea272ff860da6659fe2f6c', '172.105.247.100', 1668673811, '__ci_last_regenerate|i:1668673811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889fa9856ae81a67e5237b354d630ee4158abe5e', '172.105.247.100', 1668673812, '__ci_last_regenerate|i:1668673812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42d1874f7223f7d1c9ba6c82ccc55769688114c', '172.105.247.100', 1668673812, '__ci_last_regenerate|i:1668673812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0a5fb3c75e71f5c0240a2edcfdf36178313c853', '172.105.247.100', 1668678009, '__ci_last_regenerate|i:1668678009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce39cf3193af785b459bee68fffd5dc28c7b331', '172.105.247.100', 1668678009, '__ci_last_regenerate|i:1668678009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bda11633509cbf702df85ee3315567884a2b2bb', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3563b2d53ca98b109c84ec2d361dd947453455', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7903e47bd83f545c34c9a5c3a256d7649117d462', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a4c12359cdae5964705a4b5ae0c43e1f6ec19d', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092145b1cd84208d074dbf3e9c7ed9fe16c03c5a', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e915c3306b3b3f5e7e93d7a1e313c07d15d707c', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c727cb99c61835907afa4d1a4d4db737361567ff', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296da06f60d0ec85472e870ac56ffdd7dd0f577d', '172.105.247.100', 1668678010, '__ci_last_regenerate|i:1668678010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a0c29e60e7bd3655b6494c7e9743c24eb443109', '172.105.247.100', 1668678011, '__ci_last_regenerate|i:1668678011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f8d7c749d66b3aeb3290adb6451a0ef5d59c20', '172.105.247.100', 1668678011, '__ci_last_regenerate|i:1668678011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbeb551ebc55a9a420fdfece7da42677715c1b97', '172.105.247.100', 1668678011, '__ci_last_regenerate|i:1668678011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('286a90170261062d28d2f2947fd4f2b990c5ba8c', '172.105.247.100', 1668678011, '__ci_last_regenerate|i:1668678011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('117f7e9d4b2d2bf04b3f65f78ed37da1d5d24924', '172.105.247.100', 1668678011, '__ci_last_regenerate|i:1668678011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b814408e2503cf71d7878e9fce7256d52d98160', '172.105.247.100', 1668678011, '__ci_last_regenerate|i:1668678011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4787ba4ef122ce8a6869901d48b431841ffa4cce', '45.120.39.90', 1668680499, '__ci_last_regenerate|i:1668680499;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668680465;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7be18886bd3d2d823b252dafec8715d431d2ce5', '116.204.230.26', 1668680878, '__ci_last_regenerate|i:1668680878;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668595598\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1668680629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d14590a5a34cc477c340774649048aa41843be', '45.120.39.90', 1668681026, '__ci_last_regenerate|i:1668681026;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668681013;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c299b0c406fc6760ca63a29ffa8858307db054de', '116.204.230.26', 1668680878, '__ci_last_regenerate|i:1668680878;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668595598\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1668680878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca756d5f148a23f8936986023135506ff1914c4a', '45.120.39.90', 1668681593, '__ci_last_regenerate|i:1668681593;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668681491;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868421407afd9bda7b8aaf4e1ff803a039c4a16e', '45.120.39.90', 1668681924, '__ci_last_regenerate|i:1668681924;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668681491;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66aea2a285de6ccc8b28cb8d263a2f9e990d2ec', '45.120.39.90', 1668683391, '__ci_last_regenerate|i:1668683391;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668683277;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9639b0cb20223b73a405f0002ebf3860307d2a0f', '172.105.247.100', 1668682208, '__ci_last_regenerate|i:1668682208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467cc651191debcf7974a3583396791377767e97', '172.105.247.100', 1668682209, '__ci_last_regenerate|i:1668682209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee29bd0647955256318bac1959f610f4081032b5', '172.105.247.100', 1668682209, '__ci_last_regenerate|i:1668682209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50fa2a5289dbba28fae8ab5b9af64453ff04bbb', '172.105.247.100', 1668682209, '__ci_last_regenerate|i:1668682209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f842fb8c8c8d18634fcf089150cdb7e0b20420ee', '172.105.247.100', 1668682209, '__ci_last_regenerate|i:1668682209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195434b6bd67f90a0f378e784cc645107cbda6cd', '172.105.247.100', 1668682210, '__ci_last_regenerate|i:1668682210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ee1de479c21ff8b67a4e42ca85b86ee98f860d', '172.105.247.100', 1668682210, '__ci_last_regenerate|i:1668682210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adbe0e4fddd085042677fe9c27d8d99a7b2dfc21', '172.105.247.100', 1668682210, '__ci_last_regenerate|i:1668682210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b925a0f8664931b6bde2894c1f8bc376c56594a', '172.105.247.100', 1668682211, '__ci_last_regenerate|i:1668682211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('143d02d4db98891901fa5d38ed3e9f3ff8f8e4f0', '172.105.247.100', 1668682211, '__ci_last_regenerate|i:1668682211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8faad7afbd48a4650adb6d98e5e7c34280ee0f58', '172.105.247.100', 1668682211, '__ci_last_regenerate|i:1668682211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c530889beb8bf4b77113c5b5f2e558aa0d19fd2', '172.105.247.100', 1668682212, '__ci_last_regenerate|i:1668682212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e13bfb8e1266dbefe6b72bd31378f93ba08216', '172.105.247.100', 1668682212, '__ci_last_regenerate|i:1668682212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cec4d4bfdf669f309e66b60027aa30a6fc59155', '172.105.247.100', 1668682212, '__ci_last_regenerate|i:1668682212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974b33968017dfdbfd23497a6bd03fc375664191', '172.105.247.100', 1668682213, '__ci_last_regenerate|i:1668682213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76609d02a300653720fcbd518e6426cf2efa337', '172.105.247.100', 1668682213, '__ci_last_regenerate|i:1668682213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3887bef2e3e7f91dbbca6b5042a6ba7a1bf73e44', '45.120.39.90', 1668688779, '__ci_last_regenerate|i:1668688779;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668683485;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92421a7c1c30f58369ec0d0efa89ece42e4f7219', '172.105.247.100', 1668686408, '__ci_last_regenerate|i:1668686408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb88ae9f6e6659315cef0d51df11237d4ce20bd', '172.105.247.100', 1668686408, '__ci_last_regenerate|i:1668686408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba63d99bd6454606a2ac94f397c9e6270ec411c9', '172.105.247.100', 1668686408, '__ci_last_regenerate|i:1668686408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6492eb8ab6c2c789438f1f173a794d5c9a4a78bc', '172.105.247.100', 1668686408, '__ci_last_regenerate|i:1668686408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d3b6ae7577fb856c4885edaeed68a2c06233589', '172.105.247.100', 1668686409, '__ci_last_regenerate|i:1668686409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7e41db51bea025eea7a2e7e60a1ee53dea00db', '172.105.247.100', 1668686409, '__ci_last_regenerate|i:1668686409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc2afc8ca518514960a851667d9f7e4a4a15afd', '172.105.247.100', 1668686409, '__ci_last_regenerate|i:1668686409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef2fcd08a818941b70df5b201b82a925f9f6e34', '172.105.247.100', 1668686410, '__ci_last_regenerate|i:1668686410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cae06d13b937b19d034b7984062bbd4cf82d73', '172.105.247.100', 1668686410, '__ci_last_regenerate|i:1668686410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054602a02e3d7d08a510ea1dfb365baf3ecf8a02', '172.105.247.100', 1668686410, '__ci_last_regenerate|i:1668686410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78776ef0bfd0e01b7ec25604bd5e58bfb5079e0b', '172.105.247.100', 1668686410, '__ci_last_regenerate|i:1668686410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fc64e642a4eb21af8ab6eccb0195efd0f18c18', '172.105.247.100', 1668686411, '__ci_last_regenerate|i:1668686411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0caff6bd56dd7ac48c8c6fae0687fddae1530a5', '172.105.247.100', 1668686411, '__ci_last_regenerate|i:1668686411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2c004f27ca5c9826135286610ed47f0084af13', '172.105.247.100', 1668686411, '__ci_last_regenerate|i:1668686411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37646b358b63622972b8f9b4c5c2cffe4b341ecb', '172.105.247.100', 1668686412, '__ci_last_regenerate|i:1668686412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e351be5f22ce4de69e8ce36b3c3a4eb90ed6c8', '172.105.247.100', 1668686412, '__ci_last_regenerate|i:1668686412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e8d7f596de1ffcb12fc084d2678eb2c6c52673', '45.120.39.90', 1668689251, '__ci_last_regenerate|i:1668689251;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668689032;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca74c2f03a4a175199269ba683b5bbf20f6ed72', '45.120.39.90', 1668694626, '__ci_last_regenerate|i:1668694626;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668694620;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('553f5e4985b59080087ecda8866325ec21c570f9', '172.105.247.100', 1668690610, '__ci_last_regenerate|i:1668690610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903a8297326d51a586f87172b3dff14d6f98bae5', '172.105.247.100', 1668690610, '__ci_last_regenerate|i:1668690610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d94fe3ff41b61907502ae448da893b04fa0568', '172.105.247.100', 1668690610, '__ci_last_regenerate|i:1668690610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64eb3973cde076c5b8efe965e097859f778fa657', '172.105.247.100', 1668690611, '__ci_last_regenerate|i:1668690611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b7fbc73725e178aba00fadfb73437c710bc9701', '172.105.247.100', 1668690611, '__ci_last_regenerate|i:1668690611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ba7ecf9bbeb8d190e7689437394e3331215d6c', '172.105.247.100', 1668690611, '__ci_last_regenerate|i:1668690611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c552e92a748e154905cc0c2b13cac6873e64fa9f', '172.105.247.100', 1668690612, '__ci_last_regenerate|i:1668690611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd53cf36e1bd2317967cfa13e88f2207a7e495d', '172.105.247.100', 1668690612, '__ci_last_regenerate|i:1668690612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3294976a497937d5de8d7258c83d2882ce8093cb', '172.105.247.100', 1668690612, '__ci_last_regenerate|i:1668690612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a139794d28df93d3077e114af6ad09f59addace', '172.105.247.100', 1668690613, '__ci_last_regenerate|i:1668690613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df00112826e4d57e6eeab918a5c9cfcfcea1da0', '172.105.247.100', 1668690613, '__ci_last_regenerate|i:1668690613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7629bf726dd36b8ed776a438f4fdcff7274d26', '172.105.247.100', 1668690613, '__ci_last_regenerate|i:1668690613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddfb2486c981fadfbd100a854e833f2fdbc9b8d3', '172.105.247.100', 1668690614, '__ci_last_regenerate|i:1668690614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906f4e8182dfa0674c078c0ad064c0fac8132228', '172.105.247.100', 1668690614, '__ci_last_regenerate|i:1668690614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1caa42e58d43723feefcb1fe3357fc0dd10e85', '172.105.247.100', 1668690614, '__ci_last_regenerate|i:1668690614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de951f9e1fad896836792126041690019b1fea0e', '172.105.247.100', 1668690614, '__ci_last_regenerate|i:1668690614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c2eca503f3b2e21b96e95cd1277ba5ece9357bd', '45.120.39.90', 1668695724, '__ci_last_regenerate|i:1668695724;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668694626;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7056002c88e98978b32efc05f1b26f7204e44da', '45.120.39.90', 1668696631, '__ci_last_regenerate|i:1668696631;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668695754;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da8f9cdd3685fe86be573306d216325c2aba466', '45.120.39.90', 1668697227, '__ci_last_regenerate|i:1668697227;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668697062;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb7c67224065ddd94e8825dbe4a22a5a65653635', '45.120.39.90', 1668697941, '__ci_last_regenerate|i:1668697941;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668697934;register_id|s:3:\"251\";cash_in_hand|s:10:\"12710.0000\";register_open_time|s:19:\"2022-11-16 19:58:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce60b1e760c7b450da0d316a754fc00365db7cac', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d1315a89bbf9c7e3a37adabc59cc8bd3ccef44', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a58975e7b27f414b64f7543224d80fbfadfec8d', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e440a0fdce01d975a9e0ce2566e2da1b27487a', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5acde4736fdad060eb77e4d2f8de351ac51010f', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e8f212134c0bd232a9cd367613dc5034e7ea54', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f342762ad0350387903058b349e12a6f90ec79', '172.105.247.100', 1668697878, '__ci_last_regenerate|i:1668697878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f64685bc660db30fc49c14174fae27a71c401cd', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b674f988b406884a5b86f97981c5d548d95d81', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f4a498ec5629113b3204bc606e93b6fb1ea52c', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67041fa504d0562245840a669c25108924c91704', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5787c5e54e3fb19654a7454ac03376db5cab1d60', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047c12a33fd6713f49e45d080ef61f302f8a2bcf', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6108e30045b02cec032385ecd44b53b45242d60b', '172.105.247.100', 1668697879, '__ci_last_regenerate|i:1668697879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b92caa848cf7bd7fa95f9f2e98fa45ee60e9dfc', '172.105.247.100', 1668697880, '__ci_last_regenerate|i:1668697880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3ad23dc00016eee0a8cf3fcca6b9ce4a0f2b3b', '172.105.247.100', 1668697880, '__ci_last_regenerate|i:1668697880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571a3e31f82c306720b7057b227070d5038bdc92', '45.120.39.90', 1668697959, '__ci_last_regenerate|i:1668697941;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668606626\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668697959;register_id|s:3:\"252\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-17 21:12:35\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48fae7117543c4e083fd4f7d7aafd42014474f98', '116.204.230.24', 1668699514, '__ci_last_regenerate|i:1668699435;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1668266298\";last_ip|s:14:\"116.204.230.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a192482b00605e0268d21ca683480da21d7087d7', '172.105.247.100', 1668702728, '__ci_last_regenerate|i:1668702728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1186e48c0df3d4bd321acda4bc1363213e5c83fc', '172.105.247.100', 1668702729, '__ci_last_regenerate|i:1668702729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67470d2d6279526b1c2fdcb360735b109261409', '172.105.247.100', 1668702729, '__ci_last_regenerate|i:1668702729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e763c6731515fbe80f427abf5f6301bf8995cc1b', '172.105.247.100', 1668702729, '__ci_last_regenerate|i:1668702729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da164fcc967bb1ee5bbaebc655c7a9b2a005877a', '172.105.247.100', 1668702729, '__ci_last_regenerate|i:1668702729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e983020586dd70bbaa00900b6b41ecc6583b4eaa', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa40f7cb1febcc27cf6025123f6653c66bef21a', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032a68016124db3eb65e46a17525b6093d18e576', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ef8ad0ad721da6f58bb104ac763bd52573d4cb6', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba94dda05c70d3981feb37ad0011c2845e99c02', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c59d0d9720c2f8d7d65e38021439bb5a6037f6', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcbd4015c24e6e45f5190b635dd493b37916a4cb', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbdcfc0f30d5a5ef7dccce397b13d89e4f4a0181', '172.105.247.100', 1668702730, '__ci_last_regenerate|i:1668702730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff33e3a0eabfccb45049369d09090b104b84f66', '172.105.247.100', 1668702731, '__ci_last_regenerate|i:1668702731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d16a4fb108b8fb0cad56bb24d18118246515f2a', '172.105.247.100', 1668702731, '__ci_last_regenerate|i:1668702731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a975be1032898d361683d1cd535738b63e439b', '172.105.247.100', 1668702731, '__ci_last_regenerate|i:1668702731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68cabb609fd6f78c494eebe17250871679aba43', '172.105.247.100', 1668702731, '__ci_last_regenerate|i:1668702731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9479d4e2b25dafa84c51d5201a0ab95f0b0e20', '172.105.247.100', 1668702731, '__ci_last_regenerate|i:1668702731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de9d3a2a02bfa31f92c14124598267566a7532b', '172.105.247.100', 1668702731, '__ci_last_regenerate|i:1668702731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc6e260d29729faa456273d4fc6967352fc3c756', '172.105.247.100', 1668702732, '__ci_last_regenerate|i:1668702731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fc0c9adfde64948ec9569b56d3cefa9d01684f4', '172.105.247.100', 1668702732, '__ci_last_regenerate|i:1668702732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50a0fda0bbf9e4e8def9c9afcd2a985075760a3', '172.105.247.100', 1668702732, '__ci_last_regenerate|i:1668702732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b25597dbb5ade5d467f596a81199dfe59758af1', '172.105.247.100', 1668702732, '__ci_last_regenerate|i:1668702732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eaea57ebf5184b3c02e72f82e7519130301a4c6', '172.105.247.100', 1668702733, '__ci_last_regenerate|i:1668702733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98a4e456eb10bfdd804047526cbac3c87706c58', '37.111.217.71', 1668784457, '__ci_last_regenerate|i:1668784457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668657781\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668784173;register_id|s:3:\"252\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-17 21:12:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f438a94ed71ed25b772f64806c687e627f7a73', '37.111.217.71', 1668784830, '__ci_last_regenerate|i:1668784830;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668657781\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668784740;register_id|s:3:\"252\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-17 21:12:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aff5c5164a4ed8b4ad01931e41c175bce4985ae', '37.111.217.71', 1668785339, '__ci_last_regenerate|i:1668785339;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668657781\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668785332;register_id|s:3:\"252\";cash_in_hand|s:8:\"800.0000\";register_open_time|s:19:\"2022-11-17 21:12:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de86623da06d40cf59e513872bb7636c32a7782a', '37.111.217.71', 1668785360, '__ci_last_regenerate|i:1668785339;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668657781\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668785360;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dee1d2bbeb3afe63c98498da287678281b7a6713', '172.105.247.100', 1668787325, '__ci_last_regenerate|i:1668787325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794eece7893db0815e62e3671e85037678dfc6af', '172.105.247.100', 1668787327, '__ci_last_regenerate|i:1668787327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831c58e289b6062dcb4a76361db72362cae1f2b7', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2329f35640a9fb7252f985caa769b782d5e246ef', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a4c344abe473ab61ba8755ae404244406228df', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6751948ccd9126e36799162f9ee07bf17fe6e1bc', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a9d6ed25de1bcef148a030ae906c62b61731bb', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d52214ae9be6bed5e561c6e61e3fe5d75dc165', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af22d514193567f57374f50d78328fab4a49b2fa', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d78df12942a351c6f47fa09393d1dc5af99d608', '172.105.247.100', 1668787328, '__ci_last_regenerate|i:1668787328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e83f9b70e34012713038727c92d56adbea58727', '172.105.247.100', 1668787329, '__ci_last_regenerate|i:1668787329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ffb1c03913ffca4639b7be11a2a4f15583f0a2', '172.105.247.100', 1668787329, '__ci_last_regenerate|i:1668787329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44fd30a1277a23edae4ab8263061fbf8b06fd081', '172.105.247.100', 1668787329, '__ci_last_regenerate|i:1668787329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b84c23b9999c2bc54bcae8cb1732464fca8a9b8', '172.105.247.100', 1668787329, '__ci_last_regenerate|i:1668787329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c260556e05c78abe3bdce2993dd70b0f0d5b6c6b', '172.105.247.100', 1668787329, '__ci_last_regenerate|i:1668787329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d34a629705d586f3db16cf7ae665fbb1bfba17', '172.105.247.100', 1668787329, '__ci_last_regenerate|i:1668787329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08add0344ca3b67088e4292fd7ccec6a5b80b0eb', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66bc47c5a494573f5f3f814fa8d85efda9853780', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81246a93a43b7e457df99812a834f06fe6f01a85', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa295172da4c24106a368d2b951e6b84823e213', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84fe4aac5917da6d93a18f892d6d3f3394630f2', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1170a13c241947a2045c79154cff5cf25bd7c552', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d37bc7c1c6d0c4b1992d4a503e2b6ffa3c38a5', '172.105.247.100', 1668787330, '__ci_last_regenerate|i:1668787330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36f455ab15b0ecead18357368ac9575aaebc966', '172.105.247.100', 1668787331, '__ci_last_regenerate|i:1668787330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f933bc7212edb04a3c0fb68aa654ec7e5a2348', '170.187.184.242', 1668787333, '__ci_last_regenerate|i:1668787333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7ba5ee98366dafebbddf1bef5812f4ba3ffa3b', '170.187.184.242', 1668787333, '__ci_last_regenerate|i:1668787333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3803e985a172a0a048f37ee522ac9f8299ee0d26', '170.187.184.242', 1668787334, '__ci_last_regenerate|i:1668787334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892f4c5f7e64311fb7ec59f76e04ef60389e058f', '170.187.184.242', 1668787334, '__ci_last_regenerate|i:1668787334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f018f77cd3ff700c1f7ab8f00d3ea82acb5c0642', '170.187.184.242', 1668787336, '__ci_last_regenerate|i:1668787336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4b86bed4e67284d299b057e03ef49f081747c5', '170.187.184.242', 1668787336, '__ci_last_regenerate|i:1668787336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc276871169c218ba7edcdf32bb15e43f3530bb', '170.187.184.242', 1668787336, '__ci_last_regenerate|i:1668787336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9d92a11800202df88864847751a5d7ef112cd4', '170.187.184.242', 1668787336, '__ci_last_regenerate|i:1668787336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d8e3a2fca5e13b8ca6f5caedef04878933a5c3', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c82350446ca664518450b50561f2657ffb32c8', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428f859d665a1a658665c146caf18310a76a65a9', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29560d9222fa287d18426f5dfca483492b44666', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a7371f4b612d8c4e95d0bf671d65291b9c0f6f', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('139b49cbf58944360650cbd9d3b1d1076723283e', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ece5d87963945fc68af045c4f1e8b65b76a46d', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f376dfa3fe3388101bc34366025d1e5128808e', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6346632f61c3dd0ea792dd0ee2da0cfa93904fa1', '170.187.184.242', 1668787341, '__ci_last_regenerate|i:1668787341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218998f2868336e4c3b58feed439f2d19a2ebdf1', '172.105.247.100', 1668792136, '__ci_last_regenerate|i:1668792136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d18393f1a206c11f8f77dae915f5cc88f91f9f', '172.105.247.100', 1668792137, '__ci_last_regenerate|i:1668792137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af19a8d61f2293f005e76bc1221a44232561162', '172.105.247.100', 1668792137, '__ci_last_regenerate|i:1668792137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d199de2517728e69fce690c96043f7e78ff39f61', '172.105.247.100', 1668792137, '__ci_last_regenerate|i:1668792137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833488a33718fe0aba07058d171c492d7c12cf91', '172.105.247.100', 1668792137, '__ci_last_regenerate|i:1668792137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a61aa781d15ed3ede59bbaa12420ce4eae4d45', '172.105.247.100', 1668792137, '__ci_last_regenerate|i:1668792137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a53077d6dc8ac158b0c8c2a8dcc84feceaf13fb', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917272145389a6303255f08052af8638ef7cb581', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eff46c1b0616cab9cd689d605f2a8d11f4de75c', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113f35fae9c5851aa8e43baac90c740e4568cba5', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c497c7e56955e07e6db8f1bfc475c07a0183dcf', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2531fc187877a23b20e5f30c377e8816022d1db5', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef91e79037f83af3dac3d728971fdbb489bab590', '172.105.247.100', 1668792138, '__ci_last_regenerate|i:1668792138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('642f54ba49fa540d5ba92d2630b062dd8658fe53', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c6812289af4ca8ccdc2dda2bedfa12de233178', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614fe4b7c85a01ed002ba2528bf466b141517519', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dff211fa475b0c26a46ee2279e159eb08f6f192', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea84034bca11af16894c6746b8a26ad471b703f6', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b006db065fb9a014f3416d65f3aad28a9417a8d', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0f11eff44880fbc7b58305bbe6fccf57e66770', '172.105.247.100', 1668792139, '__ci_last_regenerate|i:1668792139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f948072d378919ec99d1567436a7913278ff387', '172.105.247.100', 1668792140, '__ci_last_regenerate|i:1668792140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee02d2356f9ac4d2458ada05e359dcef549fcdf6', '172.105.247.100', 1668792140, '__ci_last_regenerate|i:1668792140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32031c2c218de6e6ae68c66bc63008303aca3e67', '172.105.247.100', 1668792140, '__ci_last_regenerate|i:1668792140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4474b975f599a11389b581f013a4a6c72f54d7ff', '172.105.247.100', 1668792140, '__ci_last_regenerate|i:1668792140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bdec3a27eb149173857e36e5eb8188853c4eeeb', '162.142.125.210', 1668797354, '__ci_last_regenerate|i:1668797354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db60a687575e6c4f616ca10d35ef20ae9433da6', '162.142.125.210', 1668797354, '__ci_last_regenerate|i:1668797354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f62f9453f3bda2a3f49003066a95cc258965c5', '162.142.125.210', 1668797354, '__ci_last_regenerate|i:1668797354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5771b1ae6f3d985e4779def6e89c12566caa8daa', '162.142.125.210', 1668797354, '__ci_last_regenerate|i:1668797354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b83bf88c2ced5b014e865f9d0bca3aa71b13285', '162.142.125.210', 1668797354, '__ci_last_regenerate|i:1668797354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7fb1a4434b680930553968fc7ea2d6e64389dc6', '162.142.125.210', 1668797354, '__ci_last_regenerate|i:1668797354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f487381db599c03b545631be03b9ae2a56a88b', '172.105.247.100', 1668797531, '__ci_last_regenerate|i:1668797531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1400e2120b335395ad66fec2db7ce464b41a4689', '172.105.247.100', 1668797531, '__ci_last_regenerate|i:1668797531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbee1ac2d2e10dc713b640be9080b9e08bb64dc', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c005f586ebd2656d19550d7b0449f3bdfb32c6b9', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5bfb2b4b972840b21315b99b89016b51808f159', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa212c457ea397169dd5032e5691937dbf32d8ea', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee6101f264898fbc7a6617df6e290610dc15c50', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2712da5984f96b7cb0f3897a93887d143da3cd28', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18803632882eb0b2eba2c1bc36a96a0f667a49cb', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b07500a0cdbe76f6068fcb26fdd3762e964e5f', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2287cc974e916b27c2330ee1c291094608adb2', '172.105.247.100', 1668797532, '__ci_last_regenerate|i:1668797532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa972dee383c577721fa9132422a4dc5d92cd9e1', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f6b607c64efe1f61ba2132ad32dc1aaffdc010', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9544f49e47676843d4ac4afe768f82c5007cda91', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4984b3aa83bed358a0c382b454db938f5d7e85bb', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0af9b4852c55507b8827a1ec72db01acd4788fd', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006e1e2c495cf5a14652ea621aa9b59d8ff81935', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa0ebde585356e98f2c3a23f8a36d7c3885c93a', '172.105.247.100', 1668797533, '__ci_last_regenerate|i:1668797533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e63d2460fca623bbd93b8cb98fe173a70574ada', '172.105.247.100', 1668797534, '__ci_last_regenerate|i:1668797534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a3a79b622c5bddcc55c339ba3e5b257f467b70', '172.105.247.100', 1668797534, '__ci_last_regenerate|i:1668797534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a03a02c357918ebefe2e622fe8d540153b3636bb', '172.105.247.100', 1668797534, '__ci_last_regenerate|i:1668797534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3819636475d40007af31981aedfce4c690beaa8a', '172.105.247.100', 1668797534, '__ci_last_regenerate|i:1668797534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cb28deb2adbf58b344027d1fab8e6169809d60', '172.105.247.100', 1668797534, '__ci_last_regenerate|i:1668797534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18652d14380f0ba2e0b3878f96985773fc622aaa', '172.105.247.100', 1668797534, '__ci_last_regenerate|i:1668797534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9e88059ba7c974b73de1aee111376f8559d2e4', '172.105.247.100', 1668802330, '__ci_last_regenerate|i:1668802330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2d820901ac2b699a2c1086f2cdd7d2d3698824', '172.105.247.100', 1668802330, '__ci_last_regenerate|i:1668802330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8728720d49333b6348a5fbf8c11f62fe8349ec', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce5ed5fad265b6e7731b5fb4e16c151a985c2f6', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14846f0ebe01a22ecd81de501d62de80aa755747', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935de929460b0314e6e4b27b12b03b1e05518e9a', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('331eb021f6092eb3e817216e255230f582a7ffcb', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d2176241627a711c3c113b4eebf210bc1444a3', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1756e365631913debe19bf09c0d7bcbe3b1c0c3a', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57466a8238f0d1d3177068fe282219a1187e34a6', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73284cf2eb093db422569a5218493533c922f72', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462dae560892a33967593b7f4201c8f5bf29b36d', '172.105.247.100', 1668802331, '__ci_last_regenerate|i:1668802331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efcdaace3f2c63178da6fa11e6f5f20793f08a89', '172.105.247.100', 1668802332, '__ci_last_regenerate|i:1668802332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e873b984862238ce8a3b7bdcda3a3f05f266e40b', '172.105.247.100', 1668802332, '__ci_last_regenerate|i:1668802332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088dc2326f9d6e1829e4dec15cfd6cdf43abc3dd', '172.105.247.100', 1668802332, '__ci_last_regenerate|i:1668802332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f4cdbc30afa990e2c19b3aa331a85582f5c3fe', '172.105.247.100', 1668802332, '__ci_last_regenerate|i:1668802332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55bfd1ecd309e66184094667a61d00319c685f9d', '172.105.247.100', 1668802332, '__ci_last_regenerate|i:1668802332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6d404acc1cf70f0e318f0b7a63d7b9a9865900', '172.105.247.100', 1668802332, '__ci_last_regenerate|i:1668802332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f348ace33f289f60e6fe3f05cc4f0d478b362d09', '172.105.247.100', 1668802333, '__ci_last_regenerate|i:1668802333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d75b2db75f098180ad5ea7c7b859a8dbceb4f31', '172.105.247.100', 1668802333, '__ci_last_regenerate|i:1668802333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ffa38fdd90a262c1997c73a447f8e3188256e5', '172.105.247.100', 1668802333, '__ci_last_regenerate|i:1668802333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c302cd5164c5241dca5b2e6e546d359ba4c79b4', '172.105.247.100', 1668802333, '__ci_last_regenerate|i:1668802333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('730a7c69426897c37efea157b8b10461567b5cc2', '172.105.247.100', 1668802333, '__ci_last_regenerate|i:1668802333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a36d7d88de38d84bdfd2876d76ee985639f2b8', '172.105.247.100', 1668802333, '__ci_last_regenerate|i:1668802333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed99a99d97a6a8fe535586a78d0740278a13247f', '172.105.247.100', 1668807728, '__ci_last_regenerate|i:1668807728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48a3d99044408b3d8a684d30ed4324f940b2eb5', '172.105.247.100', 1668807728, '__ci_last_regenerate|i:1668807728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959f5130b62a978e69edd6fc02fa22668245d055', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e20251f83016db2f95841b8f28a3a20d3e248b', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10470a7a42abae2120c2e876fda0cccf2cf7771e', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f77c3b012781407d42629f288accfa5272d8fd', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457c7e86958bc83fe5689f7bcba222fe15b30de4', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1675b38be6b29a6c169cd4ebc32030d7203b2273', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df05b6f607c9f2ef9bfe7f8c6854097c7f1c8810', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd3e54dcbf25db728576ca652e85fef813cb84e', '172.105.247.100', 1668807731, '__ci_last_regenerate|i:1668807731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3cbe045550f45ce194f1a449db51333a417e12', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c1e72c09f6c6de40afa819c2976b704135d96e', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec653c746f42c94365e71c80d45343581dbff74', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3d5daac765862d6b04ed9b56390faff2a241ca', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8087e19f8a2328a97781954faba280914728c189', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c53cac0ac1b92c80dfddc9ebc9834e2e482cf97', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2519e1ec9c7d241dc28c7000230306cc7cde3d0', '172.105.247.100', 1668807732, '__ci_last_regenerate|i:1668807732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0799f3325fa1ef76df4ffcc83bc6faeb436614', '172.105.247.100', 1668807733, '__ci_last_regenerate|i:1668807733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f2b37dc1eaefca087d6b4df1e6f4d4f6097117', '172.105.247.100', 1668807733, '__ci_last_regenerate|i:1668807733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de541fb3fd51ac1259334222d2db7a82856293e', '172.105.247.100', 1668807733, '__ci_last_regenerate|i:1668807733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faea91177b9c6331da57752f2dc09cb16ada5613', '172.105.247.100', 1668807733, '__ci_last_regenerate|i:1668807733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebb331cca5221ea569775c3f1a3be808dd01048', '172.105.247.100', 1668807733, '__ci_last_regenerate|i:1668807733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c53bb26d99a359f9237600bb52a77536fabc440', '172.105.247.100', 1668807733, '__ci_last_regenerate|i:1668807733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90dd24ea8cda181ab63970bece5c176b1a99e08c', '172.105.247.100', 1668807734, '__ci_last_regenerate|i:1668807734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('259c420596aa52c7e698caf6506eb5e172f7ee41', '172.105.247.100', 1668813132, '__ci_last_regenerate|i:1668813132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b011437a2c68dca87d46be8dc343c7f41cff7ef', '172.105.247.100', 1668813132, '__ci_last_regenerate|i:1668813132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69773f0a29f5e924ac9c94de7fc18cd16ca35e7c', '172.105.247.100', 1668813133, '__ci_last_regenerate|i:1668813133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d1c39d96584df314fecae7b04c83699950ae4c', '172.105.247.100', 1668813133, '__ci_last_regenerate|i:1668813133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa1b35dc56892715495a7494f70a0fce6d54aa6', '172.105.247.100', 1668813133, '__ci_last_regenerate|i:1668813133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b0f50b534bf26d3abf64b41cc084dc856fc493', '172.105.247.100', 1668813133, '__ci_last_regenerate|i:1668813133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024bfb147a312452f4fa7a90e7dabb331638d3f6', '172.105.247.100', 1668813134, '__ci_last_regenerate|i:1668813134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76846a5e0cfe2da1b2ed448d7df2ac7f79f06aa2', '172.105.247.100', 1668813134, '__ci_last_regenerate|i:1668813134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed63d8541578305f0e8eb95945eb41769ebe1e10', '172.105.247.100', 1668813134, '__ci_last_regenerate|i:1668813134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc05a147672c78c351f885358918c9de0bec86f9', '172.105.247.100', 1668813134, '__ci_last_regenerate|i:1668813134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dace5b9a031161ab0309fa3b30eeebc63622ef1a', '172.105.247.100', 1668813134, '__ci_last_regenerate|i:1668813134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1dcdfd50643ac5be93781baf899505cc78fccd3', '172.105.247.100', 1668813134, '__ci_last_regenerate|i:1668813134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49b7306c2b8bda647a4dab6c8bdf5419bef401d', '172.105.247.100', 1668813135, '__ci_last_regenerate|i:1668813135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f20319a9eaab352ea2c3ad4aeecadbc4e83cf89', '172.105.247.100', 1668813135, '__ci_last_regenerate|i:1668813135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77a13d1acb6d2da102dcf3f417e4e5ba43b455b', '172.105.247.100', 1668813135, '__ci_last_regenerate|i:1668813135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45649170aec500fc4af4f05f17bf96cfc5a0ed3d', '172.105.247.100', 1668813135, '__ci_last_regenerate|i:1668813135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02d056bee73f4a930748bf6f03fed20452bbe6c', '172.105.247.100', 1668813135, '__ci_last_regenerate|i:1668813135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9ce2ff9810dab01c7fd80b5c605406f26f38ab', '172.105.247.100', 1668813135, '__ci_last_regenerate|i:1668813135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc7a84889f74c6ce38cad13936809081947936d', '172.105.247.100', 1668813136, '__ci_last_regenerate|i:1668813136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d001728fbe6c1a320c59c70906e7543455e9175', '172.105.247.100', 1668813136, '__ci_last_regenerate|i:1668813136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('649149af5b705d10c3a34b363e7efc8e58abb68a', '172.105.247.100', 1668813136, '__ci_last_regenerate|i:1668813136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d174cdef99f253f874ddac0c2d2eef3b2a2620', '172.105.247.100', 1668813137, '__ci_last_regenerate|i:1668813136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1362e0083e3894e923224de7fcd99550bbd8dd20', '172.105.247.100', 1668813137, '__ci_last_regenerate|i:1668813137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf1d60f0f1fe0c2a2bf4660dc0aa54a784f60ee', '172.105.247.100', 1668813137, '__ci_last_regenerate|i:1668813137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccffc7100484e1b3648c1ca5d3d07fea44d3f101', '172.105.247.100', 1668817331, '__ci_last_regenerate|i:1668817331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263288a04c3c7603105676672d9f79f9408dbf17', '172.105.247.100', 1668817331, '__ci_last_regenerate|i:1668817331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670b8a87db93012d7be8724a213d7acd2e3d061c', '172.105.247.100', 1668817331, '__ci_last_regenerate|i:1668817331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71dec92636d82a87ad556c075dd1e6f173f49ad5', '172.105.247.100', 1668817331, '__ci_last_regenerate|i:1668817331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ccf094d4c13b6eaed35a678a1c95c777a844d0', '172.105.247.100', 1668817331, '__ci_last_regenerate|i:1668817331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2369e90f0b2c791382478c13944a0e5738449ac2', '172.105.247.100', 1668817331, '__ci_last_regenerate|i:1668817331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cbdd717da1544f79b8fd33563a62d9d728478db', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c31e6005edf03f85d9fb1df555dd17b0894b618', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de950223290c49aad7fe60722677a8f6ef787d9d', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcb4383e89ff04fd9db03b1158f3256735e9357', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb080351de767f77466f3a197f272e1d8aeb1b25', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7032ce48e2a03adc69eab0988e5067ae124453', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24d834c3873a27b11513f39fe48f84ffb329f677', '172.105.247.100', 1668817332, '__ci_last_regenerate|i:1668817332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c96d452cf348453df546870282882cea4ac0c6d', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5bbf4c86006ec37d710657a1401e40633b89c8', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf15487c7f699792aade8b480780b7483e3435d', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57c6d55f7e5a4e6c33722cf7cd387df83011c89', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39b37876a84d85a4b1ca0c35643a8751bcdbd05', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66de2ccf8abf2bf362d5314b9e0974132d21e319', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23c784843f17ccf71636c5324eb6228d82038ce', '172.105.247.100', 1668817333, '__ci_last_regenerate|i:1668817333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4319aabb0a0c5358021591e5d2148685bf68007e', '172.105.247.100', 1668817334, '__ci_last_regenerate|i:1668817334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6626a64f84436d964237014a5f5ef5f0c90f50f', '172.105.247.100', 1668817334, '__ci_last_regenerate|i:1668817334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f3413b2654d4718c1836adf2e6cc0bd89db4fe', '172.105.247.100', 1668817334, '__ci_last_regenerate|i:1668817334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5afd13981d93bf2b6459cd7dcf56befcf0a60bdf', '172.105.247.100', 1668817334, '__ci_last_regenerate|i:1668817334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dca86b788e228a8ae9cc94ebd7c40c2947f01ab', '172.105.247.100', 1668822731, '__ci_last_regenerate|i:1668822731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a469274420f75a82d904572d502687bdcb2ef934', '172.105.247.100', 1668822732, '__ci_last_regenerate|i:1668822732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a24eebdf35a950aa9cc0a794f5f9df5729e9b3', '172.105.247.100', 1668822732, '__ci_last_regenerate|i:1668822732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312e5ac86edb7e318e6bddc234ac758e472bfecd', '172.105.247.100', 1668822732, '__ci_last_regenerate|i:1668822732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a85b39091310040df584997e6f1eaefcbc9d0fe', '172.105.247.100', 1668822732, '__ci_last_regenerate|i:1668822732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5834d317173da22c624d5dd65e85c6cc8e8e1f7', '172.105.247.100', 1668822732, '__ci_last_regenerate|i:1668822732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5981ad1673ee910267471a695806bd136c194bc2', '172.105.247.100', 1668822732, '__ci_last_regenerate|i:1668822732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1650e7e416108e9516dea5d0c06a619ef69242', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b64141d0845b25dfec74b4f2f769173e689e81', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f16a26fd4b68f319d2b1bd15a39a84b6ff4d377', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f385efa44fe2a3c069013363d2b9bdcbc9f85b', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181413439f02bc4da457aff987b49e965ef20345', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2a97edb0e076d040778596f4fd12cda4a37701', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ed82fdc7a4061fc46b300685ce5cc419290fae', '172.105.247.100', 1668822733, '__ci_last_regenerate|i:1668822733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa755befb3452bb7eee1027dddcb98ded9072d24', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f6a072749a5e160fd80ff5027b3d59945c4057e', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4389b1c1fc59ff206e0d0e3c268efe2f583435ab', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c2b9d4f53ceb304b3dbd079f3597363f4a805d', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72ac336dd0ba708ebcc0dea4a2e8430deb2fbb9', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024515835364550c1f23deba873cee927a4dae8f', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe66a0d0c31b6a523b2424d16440438561e82af4', '172.105.247.100', 1668822734, '__ci_last_regenerate|i:1668822734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f817068cc07aa95a68c5073ef846a7c19f9656f', '172.105.247.100', 1668822735, '__ci_last_regenerate|i:1668822735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30782958c61f0e1b7b05cc51f203af03615ea36', '172.105.247.100', 1668822735, '__ci_last_regenerate|i:1668822735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598d46829912d1b450c51d608c4d04a0385fc7f1', '172.105.247.100', 1668822735, '__ci_last_regenerate|i:1668822735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39fe793445dbdbdec0bb462b87da04d0745ec3e9', '172.105.247.100', 1668826934, '__ci_last_regenerate|i:1668826934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a03dfc469ccd05350092139b2b3bb1e406872e0a', '172.105.247.100', 1668826936, '__ci_last_regenerate|i:1668826936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208dd8b528cab1b517f5a50b970698fbecec1cc4', '172.105.247.100', 1668826937, '__ci_last_regenerate|i:1668826937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e160143626ce00c40441c048a5f0aaf7a672d64f', '172.105.247.100', 1668826937, '__ci_last_regenerate|i:1668826937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fa5035da84a885397531e5da244a083e71cf32', '172.105.247.100', 1668826937, '__ci_last_regenerate|i:1668826937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1666f238768870f6b5ad98b452c84373bf3e4d', '172.105.247.100', 1668826938, '__ci_last_regenerate|i:1668826938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1819d277dc744a376eea7a39a56b2118dc938676', '172.105.247.100', 1668826938, '__ci_last_regenerate|i:1668826938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c771324ffeddd40fca620625d90c697391846cd1', '172.105.247.100', 1668826938, '__ci_last_regenerate|i:1668826938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d4dd976810d85a982db6d90b10e33b7b834830', '172.105.247.100', 1668826938, '__ci_last_regenerate|i:1668826938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e73007c097a37f1c5a97c15e3af733ac600e517', '172.105.247.100', 1668826939, '__ci_last_regenerate|i:1668826939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26c4d5a34f934a0f1483402c72e3e4fb7b49bb5', '172.105.247.100', 1668826939, '__ci_last_regenerate|i:1668826939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ae2a3fea73f750345fdb9774aa0fa6e557a8c1', '172.105.247.100', 1668826939, '__ci_last_regenerate|i:1668826939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0245024eab6a1d75a9c741df1c595f777e0ddc8', '172.105.247.100', 1668826939, '__ci_last_regenerate|i:1668826939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16a513e4b98d2a4b1bfe58e09ed592848ee3fbf', '172.105.247.100', 1668826939, '__ci_last_regenerate|i:1668826939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d3fa4ea2a4231283cb37534b944a19f415beed', '172.105.247.100', 1668826939, '__ci_last_regenerate|i:1668826939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1829802db203c1de67ccb2584d21fd57a9328131', '172.105.247.100', 1668826940, '__ci_last_regenerate|i:1668826939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09b4dbc6705841b337462ebb8042609a8397be8', '172.105.247.100', 1668826940, '__ci_last_regenerate|i:1668826940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f82fe69f98065d11471b8471177f3da5297a17', '172.105.247.100', 1668826940, '__ci_last_regenerate|i:1668826940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794b66a3b9c92d271ca99afb3ecaf867244fe577', '172.105.247.100', 1668826940, '__ci_last_regenerate|i:1668826940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba8abd981d07df64c57181b0d132986abd4fde1', '172.105.247.100', 1668826940, '__ci_last_regenerate|i:1668826940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f72a6c0ee00b48e11f7a40a0d53a75d4553bdd9', '172.105.247.100', 1668826941, '__ci_last_regenerate|i:1668826941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048845902e5a23e59db7e6c2b8e23a976f09f7d5', '172.105.247.100', 1668826941, '__ci_last_regenerate|i:1668826941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2026408dd2131aafd475b1beb507698bf3d8cd4', '172.105.247.100', 1668826941, '__ci_last_regenerate|i:1668826941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd34a3c62a6fbbe985956a97c3d040401b44e9fe', '172.105.247.100', 1668826942, '__ci_last_regenerate|i:1668826942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8df71feedd0ca32db5ec9235b04fe043b0087c7', '198.235.24.6', 1668829097, '__ci_last_regenerate|i:1668829097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25f780e82578ad580e044871da450d6731cb31e', '198.235.24.133', 1668830771, '__ci_last_regenerate|i:1668830771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c57eadf8d76d1669168090a39bd857773eaa908e', '172.105.247.100', 1668831733, '__ci_last_regenerate|i:1668831733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490851c18e96e6486bead33f568c64b7a85f3b7e', '172.105.247.100', 1668831734, '__ci_last_regenerate|i:1668831734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc238dd6b85d1a00a0a187314ab26ac47e70d72', '172.105.247.100', 1668831736, '__ci_last_regenerate|i:1668831736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84196f47b372a232d85c03e47815b670365d685c', '172.105.247.100', 1668831736, '__ci_last_regenerate|i:1668831736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148e00e3c38d930e918e03caf3f633d5dd1e0e48', '172.105.247.100', 1668831736, '__ci_last_regenerate|i:1668831736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b34c1c787e6c7771fa76e7ca86400ccd5f2a07', '172.105.247.100', 1668831736, '__ci_last_regenerate|i:1668831736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1942a9d8a77df22f0d0eabacc31f753fc5c36d', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('966c5b7e31aff70f36c660d7aca45866429e97ef', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd63afd1a081584db4454ca33703bccbe090bb0', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6bd787aa476940d9bfbb0311a23f86e543d8711', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c58f7d3234cb4b6d73e24353c81c3fda4a9a62', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc8cf5de1a81fe254ee5bacda6ea6d968de765d', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9a3d4ef9fea8291c58e13683a47a533d3a3553', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2aba54c9ed22505e1ef693c8203e2fa1562d9a', '172.105.247.100', 1668831737, '__ci_last_regenerate|i:1668831737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b858e03dc2b8f606dbf5d45d2529bc25ffaa69b', '172.105.247.100', 1668831738, '__ci_last_regenerate|i:1668831738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e68d17aa7cc629bde89448b7631609697b2198c', '172.105.247.100', 1668831738, '__ci_last_regenerate|i:1668831738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1080682e818bfb478b7f6b314b52b7c61d8c39f7', '172.105.247.100', 1668831738, '__ci_last_regenerate|i:1668831738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf54f8293402b8aa52d3f6df82ab6f78a7143cc3', '172.105.247.100', 1668831738, '__ci_last_regenerate|i:1668831738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2ac32ea34ef6f6ac2ccc827b408d76bc2d607c', '172.105.247.100', 1668831738, '__ci_last_regenerate|i:1668831738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856ca875c709968c56b6fd33d2a007b2db5e8365', '172.105.247.100', 1668831738, '__ci_last_regenerate|i:1668831738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5429560966f910bffab70895f2d6cc415fe0412', '172.105.247.100', 1668831739, '__ci_last_regenerate|i:1668831739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2aa28d5977ed5be075bacbd571455e0f7200a1', '172.105.247.100', 1668831739, '__ci_last_regenerate|i:1668831739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa89a9eebc76c1fc40045f0967a53199e2fc3d1', '172.105.247.100', 1668831739, '__ci_last_regenerate|i:1668831739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a5535e777e3d5c5348ddd9ee18d1a29391b6f7', '172.105.247.100', 1668831739, '__ci_last_regenerate|i:1668831739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44d4885b58eaa293cb27e7165c28449db3ebf4d', '116.204.230.26', 1668832087, '__ci_last_regenerate|i:1668832087;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668680493\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72a45a6b854fcfca8af92f1aaa75d5f6f1eabfe', '116.204.230.26', 1668832698, '__ci_last_regenerate|i:1668832698;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668680493\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d9b574b702343a6003ec56108d7759907c6976', '116.204.230.26', 1668833327, '__ci_last_regenerate|i:1668833327;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668680493\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1668833322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1623fae63070e1498a56493763dc3ed84ca38bfc', '116.204.230.26', 1668833332, '__ci_last_regenerate|i:1668833327;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668680493\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1668833322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ddc215f2be9bdcecb4ce17a12ae1cdb4ed35b7', '37.111.216.39', 1668836889, '__ci_last_regenerate|i:1668836889;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668834018;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d906e8527ce37295616a86355209bb4d9d621a2d', '37.111.216.39', 1668837349, '__ci_last_regenerate|i:1668837349;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668837341;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3468aed72050bf24a033eb0a04977ede1675abf6', '172.105.247.100', 1668837139, '__ci_last_regenerate|i:1668837139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80edf9a8801fc6c4ec750a39bcc3e00e38e14ec4', '172.105.247.100', 1668837142, '__ci_last_regenerate|i:1668837142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aae46c51e612b1ff184471bfd356332365c05f4', '172.105.247.100', 1668837142, '__ci_last_regenerate|i:1668837142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eacd2ed06021140f064540574a22e066f080fdc', '172.105.247.100', 1668837142, '__ci_last_regenerate|i:1668837142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1c701a2ae0eb066e5901036fb0b838095506eb', '172.105.247.100', 1668837142, '__ci_last_regenerate|i:1668837142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee8b36e77e0eb0659962087e2a7caae6b612ae75', '172.105.247.100', 1668837142, '__ci_last_regenerate|i:1668837142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('454e9e3cab072134af000337745c47329088dea3', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a0f6120ae9461387f85026e4490c9ace11da25d', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bc86138cb0ee39531faf09e81f2523aea62814', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('151a11fea5655335109131a7fca42ed6df8f1f14', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49f35cdecbd12927e11182b0fa2e1b68a9e987b', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f486ca5ccc0272b2ce6eaae60628ca8efdb00b', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c777af805ebf4465b39295ea9c24401664d6e36', '172.105.247.100', 1668837143, '__ci_last_regenerate|i:1668837143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d9c3c381179162da1d77595092c15142a1a0e4', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c9e9f89252f3067e2b926f3925dfa1b1fe44d3', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83e1787e29a35f8cfcb12ab453e5d0294b1c645', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b6115818129972dc8d42db37b241047cf547a9', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade3aa348f2c65ed1c8b8a897edf598a7fd532bf', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b6e5901264aed624db4af9a895b41bae349082', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a0e2f075c9f2ee6d441d73cc032895c483d24a', '172.105.247.100', 1668837144, '__ci_last_regenerate|i:1668837144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd1a0e10e31531ad85230ae91735e783f6ad2bb', '172.105.247.100', 1668837145, '__ci_last_regenerate|i:1668837145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e432a055d75e02506700463254331d85123cff5', '172.105.247.100', 1668837145, '__ci_last_regenerate|i:1668837145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae670d57d453912a8be00002323c713198abdd5', '172.105.247.100', 1668837145, '__ci_last_regenerate|i:1668837145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3bcf095e0fdfabe793120c02f277495bd6bfa7d', '172.105.247.100', 1668837145, '__ci_last_regenerate|i:1668837145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0dd625e92a79e27e160da86c9e60d5c5ecba87', '37.111.216.39', 1668842825, '__ci_last_regenerate|i:1668842825;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668837349;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dffb7dd12a7924086922dfb10cc095d770f69ed1', '116.204.230.26', 1668840973, '__ci_last_regenerate|i:1668840973;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668831787\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"eykC5T1IKQ7sJolBp3q8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5658280fb12685528717fe8e716265314b24cfb', '116.204.230.26', 1668841667, '__ci_last_regenerate|i:1668841667;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668831787\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"eykC5T1IKQ7sJolBp3q8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a243d6187b9efc8625eb8dafbab1be44a2257614', '116.204.230.26', 1668844066, '__ci_last_regenerate|i:1668844066;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668831787\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"eykC5T1IKQ7sJolBp3q8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc2fd721cc1633fea2f7b51fe5df3742dc68c6a', '172.105.247.100', 1668841928, '__ci_last_regenerate|i:1668841928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4abd1280707e6389a3c86f30e1e5d18846eb1267', '172.105.247.100', 1668841928, '__ci_last_regenerate|i:1668841928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a5b94047b8a79edb6a282a0fac373fefa31c95', '172.105.247.100', 1668841929, '__ci_last_regenerate|i:1668841929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e32f9ad8722591e045ca121075278cd4fa083e', '172.105.247.100', 1668841929, '__ci_last_regenerate|i:1668841929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fcbaa220ac27eb4d15c47c3adfa4c3cb6e4aa46', '172.105.247.100', 1668841929, '__ci_last_regenerate|i:1668841929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a450817657e0dbb5d8b89fb185898d400a9a4b', '172.105.247.100', 1668841929, '__ci_last_regenerate|i:1668841929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ed6aea864849ad8470ee120bd96978d59ba5a1', '172.105.247.100', 1668841930, '__ci_last_regenerate|i:1668841930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced0a4ff86c57a08f3d223509d5713cea768e7a0', '172.105.247.100', 1668841930, '__ci_last_regenerate|i:1668841930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efcedbc44a203b1f41e9e5a6ec26db1423e7adc9', '172.105.247.100', 1668841930, '__ci_last_regenerate|i:1668841930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8223ab5614d8a321665c5b09e5c160ec25ab716c', '172.105.247.100', 1668841930, '__ci_last_regenerate|i:1668841930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74849020a82762979278d67249befc6d400b072', '172.105.247.100', 1668841930, '__ci_last_regenerate|i:1668841930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2eeb95882202c3054a2179703a235357bb110e', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf60c2a501df92fc6572dc8e4a04661ef36bcf90', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd4dcad1a395370b598deec15a5c87b031c7dbd', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4996cd0cd26c7b42e4c5aeac0c91b8e89701ac84', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ede3f4bdb8eff37d4f57e65ac1d71fb53314b96f', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2962e8ce1a8240785dd85d3bb9e889978dcfee23', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f121f36d94b76e9e9a8585cc68afc94240c3934e', '172.105.247.100', 1668841931, '__ci_last_regenerate|i:1668841931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b057e234657693be145465dd57b4bd5085dfa4', '172.105.247.100', 1668841932, '__ci_last_regenerate|i:1668841932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e928a94bc6791423d35f9c26f13e4dee57876aa', '172.105.247.100', 1668841932, '__ci_last_regenerate|i:1668841932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97001b690fefcd88204e0b6319d9d9ce81959bb', '172.105.247.100', 1668841932, '__ci_last_regenerate|i:1668841932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0e7b2363e6b1a3c2e8571592b71f7909752277', '172.105.247.100', 1668841933, '__ci_last_regenerate|i:1668841932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775592199c5c6ae34ec9f18f5998e0e73d064082', '172.105.247.100', 1668841933, '__ci_last_regenerate|i:1668841933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c054dc76d96d2c41d8537f8c3d5b2c1e6a5ca0', '172.105.247.100', 1668841933, '__ci_last_regenerate|i:1668841933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('684a8a62a33fda1ec64acf42d958407947db7bb8', '37.111.216.216', 1668843141, '__ci_last_regenerate|i:1668843141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668842955;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8271aa628fddf6dc181db08226db3cb4ae8d5c0a', '37.111.216.216', 1668845343, '__ci_last_regenerate|i:1668845343;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668843142;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('558ab900fd751bc9c54f2e51c8ec6319efa6f8a8', '198.235.24.130', 1668843988, '__ci_last_regenerate|i:1668843988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc8829f0d60dfb966a7c06c6224573cedf7fd836', '198.235.24.130', 1668843989, '__ci_last_regenerate|i:1668843989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57dcfcdad03ecac1e15e36be4fce94bc31cf159', '198.235.24.130', 1668843989, '__ci_last_regenerate|i:1668843989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebde0ab62ede7ee87aa6072c809f8055f345d2a4', '116.204.230.26', 1668844088, '__ci_last_regenerate|i:1668844066;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668831787\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"eykC5T1IKQ7sJolBp3q8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e1de6c48b3a8b22f86ca2e5b221ed13e26a8ab', '37.111.216.216', 1668845799, '__ci_last_regenerate|i:1668845799;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668845343;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d345c1f1f57857807733a944e575a2acfa7061a', '37.111.216.216', 1668846759, '__ci_last_regenerate|i:1668846759;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668845343;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e53f78036237735293c73ba5c863d7de3749d1', '37.111.216.216', 1668851429, '__ci_last_regenerate|i:1668851429;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668851266;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59dcffe5f22b93d802a4d5278b3b54587d38cf57', '172.105.247.100', 1668847332, '__ci_last_regenerate|i:1668847332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5da0a93593c8f278e8518c5f3ec6e6469eec12', '172.105.247.100', 1668847333, '__ci_last_regenerate|i:1668847333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be25713b9fa35789388cc4a7ba93e951179e27a7', '172.105.247.100', 1668847333, '__ci_last_regenerate|i:1668847333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d62994c28745f425339fe2968c3be2ef62aa6a3', '172.105.247.100', 1668847333, '__ci_last_regenerate|i:1668847333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d356b3194204b3df3c4436f033243a610ca5493', '172.105.247.100', 1668847334, '__ci_last_regenerate|i:1668847334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d4e95cdb75a85cd645548337b16cc2a679749c1', '172.105.247.100', 1668847334, '__ci_last_regenerate|i:1668847334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900cadc0869d3e2b96d270b2a48ea55e8a098747', '172.105.247.100', 1668847334, '__ci_last_regenerate|i:1668847334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf5bf87076c01645b2aceff57a1815cda5f3b0b', '172.105.247.100', 1668847334, '__ci_last_regenerate|i:1668847334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa5277822e7086770d2313fed226aca85efce5f', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad25312a852688761b871e30677b3f46ccb68f5', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c09cda87f49ee164b8e56f4d1f0499fc58e491c', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4797a5216b227e2b0a10ca5ca604d270a5b3220', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177ae27d9a24e571781e17216dcfc8878fcd307b', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31276c291c76d5be48b6bbeb331e432682156eb0', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5c09c20a23f4edb71799a9ba0bf9b3ee29b29a', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79446ef6869bb646a3258f14f6e5d7731b4790cb', '172.105.247.100', 1668847335, '__ci_last_regenerate|i:1668847335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e837d59626416c936487c8d7d0acff716d5515c', '172.105.247.100', 1668847336, '__ci_last_regenerate|i:1668847336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e685324a6ae0c8ebe018769e342b0022c0da7dd', '172.105.247.100', 1668847336, '__ci_last_regenerate|i:1668847336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061e64b4305205ffca64ecef54a30f4357997132', '172.105.247.100', 1668847336, '__ci_last_regenerate|i:1668847336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c648920c059e5dee1235019d34473c0b6d43bd', '172.105.247.100', 1668847336, '__ci_last_regenerate|i:1668847336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fc4cc6f4778a2066d48a661074c5d32dad77ccb', '172.105.247.100', 1668847336, '__ci_last_regenerate|i:1668847336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06254981bd607371d34ffd1559c3bd322cccabca', '172.105.247.100', 1668847337, '__ci_last_regenerate|i:1668847336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f84fea83570668ce58c186e467a7f1d2ef18ef', '172.105.247.100', 1668847337, '__ci_last_regenerate|i:1668847337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5752ea38341cae81b99066ede27a81b0f089addf', '172.105.247.100', 1668847337, '__ci_last_regenerate|i:1668847337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8d27d8354f8fad7131f94e42b461780898e19f8', '37.111.216.216', 1668853038, '__ci_last_regenerate|i:1668853038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668851266;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25db94e7e0dfc8313dcab21764d191702ec949ba', '205.210.31.136', 1668851631, '__ci_last_regenerate|i:1668851631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b2e1444a824d564804f26db94ce58e9837668b', '205.210.31.136', 1668851632, '__ci_last_regenerate|i:1668851632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c879cd84dd07ec51887dc7cb33fd0034d940c1', '205.210.31.136', 1668851632, '__ci_last_regenerate|i:1668851632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc10a08b948ee52f651a8f5bca2ab16fdac20cb', '147.78.47.249', 1668852658, '__ci_last_regenerate|i:1668852658;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2f698e943460cd321b854002d8a4b2a2bed02e', '147.78.47.249', 1668852660, '__ci_last_regenerate|i:1668852660;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9eea8b00d8d6b31fd07f83b4d12ac84bb816b96', '147.78.47.249', 1668852662, '__ci_last_regenerate|i:1668852662;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fea3a38ac9140a630e2cc7660776a75c1fb40c6', '172.105.247.100', 1668852727, '__ci_last_regenerate|i:1668852727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c6df35fcfc05ffdee74a536cb6a805e469a8f0', '172.105.247.100', 1668852728, '__ci_last_regenerate|i:1668852728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b94a69368394f3ccaa3f9a258794fe31d06e376', '172.105.247.100', 1668852728, '__ci_last_regenerate|i:1668852728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4ebe4d14db05f5dadf7ccef1e1c98f7b652ef5', '172.105.247.100', 1668852728, '__ci_last_regenerate|i:1668852728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563a8f7ccc4e4fce0ce790b07a9067563a558325', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2461347ad888c0a99558e2dcd84d2fbc2f0a9e1f', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d108c9a339ec4adeda18bcf896c15c7a3e28c3', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02f51fb6b7b55ff2ea327e281ea560c0ac4a99a', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5cf5f91599d62865d395f64d1b165d7404b7e46', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029fe8911c65e291e4ee940a139862911c29a9bc', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5caada15ea72d4790d3d8f6b02ce18f735084203', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59281154b51d591462bc25e1f0bfa3e4b6c39f3c', '172.105.247.100', 1668852729, '__ci_last_regenerate|i:1668852729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c7db86bf1ddce47ea4ee6a461413dd4620c756', '172.105.247.100', 1668852730, '__ci_last_regenerate|i:1668852730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67b4844140efe04e4232dbf9514b42f00ccd6c9', '172.105.247.100', 1668852730, '__ci_last_regenerate|i:1668852730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7632778dea784fb4fac2e7412001b1b4aa40ee0', '172.105.247.100', 1668852730, '__ci_last_regenerate|i:1668852730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ef54d4b56f14f58879b4067e8d6128ae2c6821', '172.105.247.100', 1668852730, '__ci_last_regenerate|i:1668852730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cebec4c07530ec730cbc847befe1e424d44663cc', '172.105.247.100', 1668852730, '__ci_last_regenerate|i:1668852730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d970479815aeefcb7231c7428cce4fe5cb7c36df', '172.105.247.100', 1668852730, '__ci_last_regenerate|i:1668852730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b862e2c92f6061f484a97e3e91ef6399998f89', '172.105.247.100', 1668852731, '__ci_last_regenerate|i:1668852730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f7606e263744b8ca3af3c36831b325d2f69562', '172.105.247.100', 1668852731, '__ci_last_regenerate|i:1668852730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27f1cfb7ee8c7f9483c2633d76de89e776ecc21', '172.105.247.100', 1668852731, '__ci_last_regenerate|i:1668852731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06bfeb1866dd0e90baf4c59afb469be8f8b92a14', '172.105.247.100', 1668852731, '__ci_last_regenerate|i:1668852731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ed43845c54c11596002df01dab6a9b309ba763', '172.105.247.100', 1668852731, '__ci_last_regenerate|i:1668852731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5478c2c9b2688812e159fd8ac625f84a8f162d0c', '172.105.247.100', 1668852732, '__ci_last_regenerate|i:1668852732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887a4bab1c9f0b753bd0ae349db706a0a56d3536', '37.111.216.216', 1668853691, '__ci_last_regenerate|i:1668853691;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668853047;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b18c9c092727c1ae29162ccd35093899b0f979', '37.111.216.216', 1668854832, '__ci_last_regenerate|i:1668854832;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668854027;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31208ccc52ec3508aaa35e741a9803703ea2d7f6', '37.111.216.216', 1668855368, '__ci_last_regenerate|i:1668855368;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668854877;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4dc6ed7901f7af1026e879aae71dddabf14383', '37.111.216.216', 1668856822, '__ci_last_regenerate|i:1668856822;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668855372;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15bc8f0689d2d2b917be6539bf93aa615e071ab8', '116.204.230.26', 1668856361, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668856361;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4790db47ac683bbc099a00dda31000d3d38e32ec', '116.204.230.26', 1668856988, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668856988;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb36386d8368a187af32fd8cec638a321662584e', '37.111.216.216', 1668857179, '__ci_last_regenerate|i:1668857179;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668855372;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21149f91ae824e4f9157962916626ed5b6bc390f', '116.204.230.26', 1668858598, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668858598;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b6c523baae648f69b094c8c98cd499df0fba16', '37.111.216.216', 1668858793, '__ci_last_regenerate|i:1668858793;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668858788;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67998467d8d18cf44d2e586f3d743d9f79933dab', '172.105.247.100', 1668858139, '__ci_last_regenerate|i:1668858139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4a9ce66faf8447e2efc781fa8ebe09598be60a', '172.105.247.100', 1668858139, '__ci_last_regenerate|i:1668858139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd015a6b4a4b6315f60d8e55ca221b7feda9b2c7', '172.105.247.100', 1668858140, '__ci_last_regenerate|i:1668858140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff913fba30608975c5fccc2a3897039f36a2c84b', '172.105.247.100', 1668858140, '__ci_last_regenerate|i:1668858140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('246c790f314620833c9e039362784620468a6264', '172.105.247.100', 1668858140, '__ci_last_regenerate|i:1668858140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11988f939f0f23d176c1ff14e45789304e0f3cd6', '172.105.247.100', 1668858140, '__ci_last_regenerate|i:1668858140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8231a3168e2be104cc6be21021bd12ff41ebd7ea', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc0f378d567be66b89131928a401f669cc496f7', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d0e48c5f83c17d64ad6590cb8c56f429d141ae', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af96773b3a55bfcf67842d3ae18d522b85bbda3', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42d1c0105a75847b90515acbc3fbac29b019157', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c71fc5727a454a1018711b7e770c082a4128aa', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df7dd8f65a0269f03e0a95780c2fcab8d7ead6e', '172.105.247.100', 1668858141, '__ci_last_regenerate|i:1668858141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646a772a87564642d3ac7d83fde4fe4b598e2571', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea3df9c9c26af42a3e025718c6d3c6435a45249', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a272b965b0af894db1cc2724fd1cd0cb97ec2b5', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c619d6c736b3a93cc5c7e746de6cad26249844', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545686dbaa9a10224078f254bc41dbf98d675352', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbd99df6be8ae06c4d7c8b87514405f82d0249b', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5266001be8850a9dc323b269b345f0396c1245', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c621ee34a4d5d0061b8e5231aea8cb17600ee58f', '172.105.247.100', 1668858142, '__ci_last_regenerate|i:1668858142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed77070707b2860bea001c3a93f40112d9665a7', '172.105.247.100', 1668858143, '__ci_last_regenerate|i:1668858143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e656aa915f6fc52abe3b544a6cd469f96cac226', '172.105.247.100', 1668858143, '__ci_last_regenerate|i:1668858143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fcd7d9a0c78bf2800b1dd82c7c99468ec08c89f', '172.105.247.100', 1668858143, '__ci_last_regenerate|i:1668858143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f295a0fc38aeffa7d4a54315ac31b8a9ac2f71', '116.204.230.26', 1668858996, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668858996;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f6047af1ebffabc9a65afb1b574edb5c9ec737', '37.111.216.216', 1668859148, '__ci_last_regenerate|i:1668859148;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668858837;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3bd84566391be07923a37dd08682f419f10ffc', '205.210.31.142', 1668858897, '__ci_last_regenerate|i:1668858897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a3b9b16ed80144582fb94ac9b77467b73c038e', '205.210.31.142', 1668858899, '__ci_last_regenerate|i:1668858899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8538f4d35d60b6a4712aa8bbfdf4d57d1b5a891f', '205.210.31.142', 1668858899, '__ci_last_regenerate|i:1668858899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df49b09492d6c5e752bd12ab539c8c844dfd2684', '116.204.230.26', 1668859445, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668859445;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e8ea59ff285d1e9c777f452f20ad61aa5bc22d', '37.111.216.216', 1668862296, '__ci_last_regenerate|i:1668862296;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668859262;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4371cbc3ef6dd65733e60da38282d87ecc5d82', '116.204.230.26', 1668860098, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668860098;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4357e944992372abb8037c4d5ad8d0a3c9c6aa', '116.204.230.26', 1668860418, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668860418;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf37f16f04c7134fe2d37333eb96ab5596ccb63', '116.204.230.26', 1668861443, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668861443;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306b734d02b666b2e6c87c29b1c32f7a3a637bd9', '116.204.230.26', 1668862113, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668862113;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f04376c4c10528d987e402c5d32e72b4ce8d44', '116.204.230.26', 1668862135, 'requested_page|s:29:\"admin/products/modal_view/425\";__ci_last_regenerate|i:1668862113;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668840674\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"APoINtkLhivE4dq6eSfn\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c2f6c4d953a7db2dc6da27d5e318be83be5cbd', '37.111.216.216', 1668863432, '__ci_last_regenerate|i:1668863432;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668862420;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e62656f308013d9199d9e274ac891ced2279f6', '37.111.216.216', 1668863753, '__ci_last_regenerate|i:1668863753;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668863712;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15908315a3704dd03d6ac5a34a93782e765779f3', '172.105.247.100', 1668863518, '__ci_last_regenerate|i:1668863518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34a985c4bc4fd58d80ca6b0d4d527f06cfca365', '172.105.247.100', 1668863519, '__ci_last_regenerate|i:1668863519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f5c007ff9c3d5457b73f84ef0bf405499dc87e', '172.105.247.100', 1668863519, '__ci_last_regenerate|i:1668863519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca529ad45d8041e2acac379405d3b235d599a5c', '172.105.247.100', 1668863519, '__ci_last_regenerate|i:1668863519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f689d1c3248074ff565deedd08394ca7625e7af3', '172.105.247.100', 1668863520, '__ci_last_regenerate|i:1668863519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5def7ef6072fbba61f0da84fdfd7d34c71959b9f', '172.105.247.100', 1668863520, '__ci_last_regenerate|i:1668863520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7dff972e9f401eae717b8ea0d7e8e7cbdeba63', '172.105.247.100', 1668863520, '__ci_last_regenerate|i:1668863520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('585491e9c2c7357d5e87886b459e42258e8a83a0', '172.105.247.100', 1668863520, '__ci_last_regenerate|i:1668863520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4191295b4d706d3e5763e5849e9e35bea4ae763', '172.105.247.100', 1668863520, '__ci_last_regenerate|i:1668863520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4329a620de7017f71aeace753ef05e0e6e31dc', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e04eae723bab635be751bb108ab2ee0ebff3bfb', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb54efd09ba1e55f06a109a9f46b9dde38a4c625', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f230f9b9344ee0a2ad23adc72f181479e85b34', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6520dfd1b8876fe8dfb9b7de42a256e8608ab664', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b71f45b17b14bf85fc1ab2d583a3d3716525bc0', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('506f50d76b5ccc0cdb3fc9afb6c4930b52b6ac42', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0c98dfcb287295dfa7d0a85243de8f2a79d3d4', '172.105.247.100', 1668863521, '__ci_last_regenerate|i:1668863521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0e709b892b5d17d3d2fbaf1fe2fc33bb81caf5', '172.105.247.100', 1668863522, '__ci_last_regenerate|i:1668863522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8df14ef267392451449d545571c6bff7a86b2d3', '172.105.247.100', 1668863522, '__ci_last_regenerate|i:1668863522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e0119090a65a61e1b358bc1de438b8dcb3961d', '172.105.247.100', 1668863522, '__ci_last_regenerate|i:1668863522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19cdbc8f8a951b4b35295089639c048426a2efd', '172.105.247.100', 1668863522, '__ci_last_regenerate|i:1668863522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('101eea6ba88f2f1a3dffac74499d8f2783325307', '172.105.247.100', 1668863522, '__ci_last_regenerate|i:1668863522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce14fdd12ebfea89af02f98b855aa9457279b4db', '172.105.247.100', 1668863523, '__ci_last_regenerate|i:1668863523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e36291c87b22f2ab71e45642db633c28b2f7b55', '172.105.247.100', 1668863523, '__ci_last_regenerate|i:1668863523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce9cd92c8ca1d41b5a656f6085cab62c75fc84b', '37.111.216.216', 1668864127, '__ci_last_regenerate|i:1668864127;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668864109;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e440544ff32409263ed768eb8b15d0870ff4fc2d', '37.111.216.216', 1668864484, '__ci_last_regenerate|i:1668864484;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668864427;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8d05c5d0b90270543f62460ac4817462f8998d', '37.111.216.216', 1668865439, '__ci_last_regenerate|i:1668865439;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668864697;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e3509aa8d5e8a07ac84ae2b9f44ebecd947016', '37.111.216.216', 1668867839, '__ci_last_regenerate|i:1668867839;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668867836;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435ab31a8cc90cc8ce32b5a9c76dc84096c7eb61', '45.120.39.90', 1668868092, '__ci_last_regenerate|i:1668867839;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668783979\";last_ip|s:13:\"37.111.217.71\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668868092;register_id|s:3:\"253\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2022-11-18 21:29:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ae91b46f53e462d67791e80c871ec3a58cead1', '172.105.247.100', 1668868922, '__ci_last_regenerate|i:1668868922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a338180a582a6fc53a154e3078d3496f39c981a', '172.105.247.100', 1668868922, '__ci_last_regenerate|i:1668868922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c02bd239869dc4d0d4be5ed67b20644d8fea6bb', '172.105.247.100', 1668868922, '__ci_last_regenerate|i:1668868922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25acf8f20260602b508ae08be0a8003c50a28b6f', '172.105.247.100', 1668868922, '__ci_last_regenerate|i:1668868922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3c165e9160e67ebbcf902f00467fa7301ef61b', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543c08db6644f61402fed7e08e582f72a75b5f58', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc5b24892ba6872a584bb6053aa6ca6b610de387', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640eb6f314281a9d72bfd7d9dc67828220f9b265', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a04266ca41ce1cc826fc1d25b7805012f2d7a9', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa81b747126f4db1c60495d4333913a99bf730eb', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2194fccae4c7d78b104257c2844cceb56caa6865', '172.105.247.100', 1668868923, '__ci_last_regenerate|i:1668868923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42a119fcd5d5d41e370665e769cfcc9cbb43fc3', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1131bbba9886e1a67ba47e6e5c1d279ee9f3dd90', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d23a36f7d795f692802c5bc9df17056d51fd307', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6817d2f49a0af3630b09907b742d46fdccab3f32', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e840de250862afed18d45978ed847809d6be0e84', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c3cb0cb75d10c18499515cd6cddf8a3399622b1', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ad8fd6552cc83f71ef8dab2e75302273024d5a', '172.105.247.100', 1668868924, '__ci_last_regenerate|i:1668868924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de71be2155bb0752cf96eae333604037c2593e38', '172.105.247.100', 1668868925, '__ci_last_regenerate|i:1668868924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e4e62c8676f62d69753d297eb88b9030497dc3', '172.105.247.100', 1668868925, '__ci_last_regenerate|i:1668868925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6c5827000c83ffeb7f1104aeea343e65364494', '172.105.247.100', 1668868925, '__ci_last_regenerate|i:1668868925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b89c25b3332bff15046a5c7eac33aa7519a0582f', '172.105.247.100', 1668868925, '__ci_last_regenerate|i:1668868925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15df31dfcaf0e2b941e4c3d4c865d7fa4f2e713', '172.105.247.100', 1668868925, '__ci_last_regenerate|i:1668868925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39c819519d3b26dccb097654f84356d1844da70', '172.105.247.100', 1668868926, '__ci_last_regenerate|i:1668868926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed4eb05ec8edc81bac75215d7a931b8f419e1c0', '147.78.47.249', 1668869637, '__ci_last_regenerate|i:1668869637;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf282248e117abdffd37a30b6c1be3d9e762248', '147.78.47.249', 1668869639, '__ci_last_regenerate|i:1668869639;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b935301838d098ea7fb0aa30c849fbce08898d7a', '147.78.47.249', 1668869641, '__ci_last_regenerate|i:1668869641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a7ef587875bb1ef32450edd761763e427c0ed6', '51.158.108.61', 1668871669, '__ci_last_regenerate|i:1668871669;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc46aee162912cd925879355e999a739d0c3968d', '163.172.180.25', 1668872270, '__ci_last_regenerate|i:1668872270;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c201d189661fd8191cd3684d832d308fef2f2e3e', '172.105.247.100', 1668874332, '__ci_last_regenerate|i:1668874332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d3293dc5639e4a5c80f20728cee4a3264057fb', '172.105.247.100', 1668874334, '__ci_last_regenerate|i:1668874334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aebaeb83f673a045ccab28c9026f593e24ea405e', '172.105.247.100', 1668874334, '__ci_last_regenerate|i:1668874334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6fa2ec9ed360a5ba744c4494ccd4c315b6042c', '172.105.247.100', 1668874335, '__ci_last_regenerate|i:1668874335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60409496c7fb58e4414ab2c8aa35d0a9fb24f205', '172.105.247.100', 1668874335, '__ci_last_regenerate|i:1668874335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc33241dd9b1bc2d58e7880c5c9ba10e39ee92c', '172.105.247.100', 1668874335, '__ci_last_regenerate|i:1668874335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa1c73befb584f0e69932c546b314e7527fe1f5', '172.105.247.100', 1668874335, '__ci_last_regenerate|i:1668874335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89908eb9bffb83cefb7b79fecf3de3db77d3eb48', '172.105.247.100', 1668874336, '__ci_last_regenerate|i:1668874336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dc9657cb8c500852a903a8cc8ec52e18e8f037', '172.105.247.100', 1668874336, '__ci_last_regenerate|i:1668874336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13edca91beec3c7f3053b0617493c99b4009efff', '172.105.247.100', 1668874336, '__ci_last_regenerate|i:1668874336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6cbf84412f28fbd05ea680eff84dd88fb4ed74c', '172.105.247.100', 1668874336, '__ci_last_regenerate|i:1668874336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5fd2413ae57480d4c7a9a573ee2116f8ecd62d8', '172.105.247.100', 1668874336, '__ci_last_regenerate|i:1668874336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99c7e3abbd578a31a0bc8313847d2c7ff9a5247', '172.105.247.100', 1668874336, '__ci_last_regenerate|i:1668874336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c9fa59e8c7fbda852656efce3524866cb06c35', '172.105.247.100', 1668874337, '__ci_last_regenerate|i:1668874337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e331065ec2c66352df12ac937479e0df4c13530', '172.105.247.100', 1668874337, '__ci_last_regenerate|i:1668874337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cae3693fbeec74ce61a3e936121b80c4d47a01e', '172.105.247.100', 1668874337, '__ci_last_regenerate|i:1668874337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed5384e4940352219aef2047e8dbf7b1859d651', '172.105.247.100', 1668874337, '__ci_last_regenerate|i:1668874337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5930637390fab184bc582774877125faf59220f', '172.105.247.100', 1668874337, '__ci_last_regenerate|i:1668874337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff63a6a1be5308013cd90d1018712330651ccce', '172.105.247.100', 1668874337, '__ci_last_regenerate|i:1668874337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb210fe636b3580718464eac6de212934c0619d2', '172.105.247.100', 1668874338, '__ci_last_regenerate|i:1668874338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c8efef70728806c63ec66d03eb558ab8205757', '172.105.247.100', 1668874338, '__ci_last_regenerate|i:1668874338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('951c8196956d9ee26917220fb13ac6e057ba9507', '172.105.247.100', 1668874338, '__ci_last_regenerate|i:1668874338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90fe6c83389291ffa66d8c913815bff7e4c4548', '172.105.247.100', 1668874339, '__ci_last_regenerate|i:1668874339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8461536eb1da743525c7f64e00dbc418a681252b', '172.105.247.100', 1668874339, '__ci_last_regenerate|i:1668874339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983d38f7a6d7bfa3f14e58d34d19ebdf760b151a', '198.235.24.146', 1668875452, '__ci_last_regenerate|i:1668875452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903b964ca003e148a7649365648f52d3fb01e8ad', '198.235.24.146', 1668875452, '__ci_last_regenerate|i:1668875452;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b982577c47c1682924cd181dfed85147d0e428e4', '198.235.24.146', 1668875453, '__ci_last_regenerate|i:1668875453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e98d89b435df578cdf17509f7e27f7e2a8f53f6', '34.136.249.27', 1668877068, '__ci_last_regenerate|i:1668877068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930d0985af540de50009d065b39043a01e96052a', '34.136.249.27', 1668877070, '__ci_last_regenerate|i:1668877069;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58f05d9cd5ea9e5666fa3fdb3952262904d0ce0', '34.136.249.27', 1668877070, '__ci_last_regenerate|i:1668877070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b97f2e5bf4f31a5839dd6db28e39dc7dbeb662a', '34.136.249.27', 1668877070, '__ci_last_regenerate|i:1668877070;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398bedb34fefe99eb96652706d504a8beefd4836', '34.136.249.27', 1668877071, '__ci_last_regenerate|i:1668877071;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197332ba774bc449b633fe04242889dd1dd49e13', '34.136.249.27', 1668877071, '__ci_last_regenerate|i:1668877071;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73245092b7fc29569404177e0760398017f211f9', '35.225.29.9', 1668877114, '__ci_last_regenerate|i:1668877114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2799ab686507f41a78a04366cda130385eeab599', '35.225.29.9', 1668877114, '__ci_last_regenerate|i:1668877114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129b0faacda14ecd6a0585ac2cfa2ffbccc76089', '35.225.29.9', 1668877116, '__ci_last_regenerate|i:1668877116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b1ce2365ee997cbe87b5c3cc0136fe2ddabe2d', '35.225.29.9', 1668877116, '__ci_last_regenerate|i:1668877116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9dade4a0068b4abbd255597b7fc4fa2fea93a9', '35.225.29.9', 1668877117, '__ci_last_regenerate|i:1668877117;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ad322915601a99e589822154d224099f70b7e8', '35.225.29.9', 1668877117, '__ci_last_regenerate|i:1668877117;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1501850ee9857d5366a24dce12e1dad7f9137bc1', '172.105.247.100', 1668879124, '__ci_last_regenerate|i:1668879124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1dd9b7878a09def95b9d233775328c6de4d4535', '172.105.247.100', 1668879124, '__ci_last_regenerate|i:1668879124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7c1c2e93f09712483d129c0399b4594a7a1f48', '172.105.247.100', 1668879124, '__ci_last_regenerate|i:1668879124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b384a868865841a1305b15c68b1fe66a1514da', '172.105.247.100', 1668879124, '__ci_last_regenerate|i:1668879124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958423d119359a61ce655ecf1281405b7a3ddefd', '172.105.247.100', 1668879124, '__ci_last_regenerate|i:1668879124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b16e5bc6075759749275a7c754a4dec3c0672657', '172.105.247.100', 1668879124, '__ci_last_regenerate|i:1668879124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ed6ffdc6da433a0eec5d8583633bad5e6021a6', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb0e50c7caf5193a7dd24e9d2c7b94802341b207', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b5fde34d120a1c0b200ee82c2d86efc9d15bd0', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0ab75f56fae9e920d32a4efe3d54ad6c0be098', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6b3d131d0b0d1595465a35dd4e0b6f17e10724', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b987e3ea7dbc5fcf982c94e7214d3a3286f09b1', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd31ffee1f17e614c38cbd76454d06a26d79bd5', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('966c59eb37536a45753419fd16558fbff4669240', '172.105.247.100', 1668879125, '__ci_last_regenerate|i:1668879125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2308565f5d4fdc1977360d44ab7301f546a67c39', '172.105.247.100', 1668879126, '__ci_last_regenerate|i:1668879126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53fd509c242cca13e2e311316a912402b9756ce1', '172.105.247.100', 1668879126, '__ci_last_regenerate|i:1668879126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4dfd0088f4932a50afbd9c1c0f453905dfeadb', '172.105.247.100', 1668879126, '__ci_last_regenerate|i:1668879126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2abb2c3261180a1f2b8d533f2540b837295e548', '172.105.247.100', 1668879126, '__ci_last_regenerate|i:1668879126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc915d431cde2e0011002625c260fd94b0dab5fa', '172.105.247.100', 1668879126, '__ci_last_regenerate|i:1668879126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7362eef9790da35f7a4d867c35e67d6b54ff4251', '172.105.247.100', 1668879126, '__ci_last_regenerate|i:1668879126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49cef57870f8d98e51c6962acab6c948733e36be', '172.105.247.100', 1668879127, '__ci_last_regenerate|i:1668879127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe8973602d57ec7bf4e6d1aa01f0bb992f09bcf', '172.105.247.100', 1668879127, '__ci_last_regenerate|i:1668879127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e839f906e65d3fe2425239989a65725490d7f7', '172.105.247.100', 1668879127, '__ci_last_regenerate|i:1668879127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db390bbe381af6f4308ce911c5d65a7702d8f51', '172.105.247.100', 1668879127, '__ci_last_regenerate|i:1668879127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96305d3fe0ee1c538657d9dbcd066c50c719c1b5', '172.105.247.100', 1668883923, '__ci_last_regenerate|i:1668883923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed4ffce8ea69dc361fe106b55c774893c37a4ca', '172.105.247.100', 1668883924, '__ci_last_regenerate|i:1668883924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d6e6f5c812dacd4bf0dc86aef9127705aa3c14', '172.105.247.100', 1668883925, '__ci_last_regenerate|i:1668883925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f148af333c2123de4386d3027bc1e2ca2ed3128d', '172.105.247.100', 1668883925, '__ci_last_regenerate|i:1668883925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f41ba00ee96f9058cd5865b755295fd2c41119c', '172.105.247.100', 1668883925, '__ci_last_regenerate|i:1668883925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439e74183424a7b00a36f7791a59f2838f61ed3b', '172.105.247.100', 1668883925, '__ci_last_regenerate|i:1668883925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebccf6dbc74d26cdbd4d5d1fbeff9fc9bc498e95', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('444fb7023186e9e0e0ccf94ae366e950b852fa8a', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063fb5b2b21106c37182c99a830730f545f72866', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682bf66ac94b65958cc3cf3319ce82b184decbb3', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69c7ada2ab6f878eecb96ea22906ba264580fdb', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa42591e806cccdeb3149385c8da2944b55f84dc', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d68b6e51d6f95cde268ee29106755b9c725e47', '172.105.247.100', 1668883926, '__ci_last_regenerate|i:1668883926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab568d804a0143ad5e2241cdaafc1e431254d92', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c7557769cdcdfcf26e7327a6baef374cdd3aac', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c66c8684915fb91ea605fb9216bf78c8922796', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2fced3bb625f16a105afa551a2768d6bf6ddf75', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7bccb28ea82aebd767427a7b66cbcf3cb5fd42', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba9fe0fec949d33e6806b04effc3320c34371db2', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb407bda97998df11919a9dc09aba08c8be4ec34', '172.105.247.100', 1668883927, '__ci_last_regenerate|i:1668883927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c5aa590e0d52b7106f89c2b8bbf9206382f4d7d', '172.105.247.100', 1668883928, '__ci_last_regenerate|i:1668883928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b569bd6afa190b3160c7f3814429319d37917d4f', '172.105.247.100', 1668883928, '__ci_last_regenerate|i:1668883928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66032d779df4050a9b7bd5de23a2e00d781f3526', '172.105.247.100', 1668883928, '__ci_last_regenerate|i:1668883928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b90cacd4cc56d576759a201da0d94426f0615b', '172.105.247.100', 1668883929, '__ci_last_regenerate|i:1668883928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48941e9503836699aba50eb970afe52e2c052da3', '205.210.31.14', 1668886614, '__ci_last_regenerate|i:1668886614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51df535a7f358c7866fd80649b22eab100c065ed', '205.210.31.14', 1668886615, '__ci_last_regenerate|i:1668886615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438bdaf2ef49b903d31805000d3160988f822cf6', '205.210.31.14', 1668886615, '__ci_last_regenerate|i:1668886615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f38bcf06a8777191f635bb346c729d1c8c13c96', '172.105.247.100', 1668888721, '__ci_last_regenerate|i:1668888721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9202a32d0062e99a7f6788dfe9c8849f49c9db70', '172.105.247.100', 1668888722, '__ci_last_regenerate|i:1668888721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7dc75d26b9809c88751543a2e91eba6a4935e06', '172.105.247.100', 1668888722, '__ci_last_regenerate|i:1668888722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f493f768eaaff190fd040d6d552d6439b4647fb1', '172.105.247.100', 1668888722, '__ci_last_regenerate|i:1668888722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea0c4cb753503cc23f376625700d22f643ccb61', '172.105.247.100', 1668888722, '__ci_last_regenerate|i:1668888722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70d720501f37b567da43052b0a2e58a933be313', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2ed677474fdcf9e425321c554b0343ba9ce7a8', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11770d320772f58e68b8637a1bd3be1567c78fd', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446e5a9b6167facab8b86051f85251e8cbe0053f', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02c39c8647416c5dc2aacfbbb50f17cbfd6c20d', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b041a3d53e2fe2cb2bf46b22036325fc76fe1d', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d848ba0c8eb669ac0af0a72ac940d29b89860cbc', '172.105.247.100', 1668888723, '__ci_last_regenerate|i:1668888723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a0d73094af72f051c96f8d5de781d9c9385774', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fde044cbb9fe70fd8e52847bfc1de8bd447c5f5', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b762abc047a983c15064bbbacd72fbfa1ea0d74c', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e2508176b7738c64aff797f3e514732485590a', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0221fad68e38eb11dffdbce80c56cc66613cd04c', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5c0ea70ce47f0afe6c35de8ef8ba2fcd48c3ae', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46642bbb86b8b1c6c189eb187d4ffc45ca6ee256', '172.105.247.100', 1668888724, '__ci_last_regenerate|i:1668888724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c8264fc21ddb2180b29d97f16f5a9acb6bc2e3', '172.105.247.100', 1668888725, '__ci_last_regenerate|i:1668888725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e304632b08eabcebb00a9f25515e5bdba3d681', '172.105.247.100', 1668888725, '__ci_last_regenerate|i:1668888725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c39b834c5f5929ad66b14ea77387b349f73720', '172.105.247.100', 1668888725, '__ci_last_regenerate|i:1668888725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb29f28f93f2f699a8cc2e98ffe7a5ab66f4c6a', '172.105.247.100', 1668888726, '__ci_last_regenerate|i:1668888726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f3ebcc1cf6a2f489acdb36318db1b7eb636935', '172.105.247.100', 1668888726, '__ci_last_regenerate|i:1668888726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d484bba035174bc1cca78cd66dce354a9a2becd6', '172.105.247.100', 1668892920, '__ci_last_regenerate|i:1668892920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7245b1a01002122bc9b9af9efcb13eb2cb85ea', '172.105.247.100', 1668892920, '__ci_last_regenerate|i:1668892920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('762cd7433ca5c75ef3a20eb6ecc74e655d1ff7dd', '172.105.247.100', 1668892920, '__ci_last_regenerate|i:1668892920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8684aae150bcdab385ffc4bf03f850e58c36477', '172.105.247.100', 1668892921, '__ci_last_regenerate|i:1668892920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6cc890666890100b39e4c417dbdf5b2c8a6d420', '172.105.247.100', 1668892921, '__ci_last_regenerate|i:1668892921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c59b4ebedf760128eedc4323d40e2cbbc1742d', '172.105.247.100', 1668892921, '__ci_last_regenerate|i:1668892921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('847e49ad6fd2f70bc8e4710ca2d0b5d1f7a7742c', '172.105.247.100', 1668892921, '__ci_last_regenerate|i:1668892921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd095cc07b2d23b690ed6b166c7ae716f5a7ebe1', '172.105.247.100', 1668892921, '__ci_last_regenerate|i:1668892921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba32ebce4ac527eff4e82b722ac0f84ea2dcf006', '172.105.247.100', 1668892921, '__ci_last_regenerate|i:1668892921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('992e9bb4d249a0372ca0c1c0aaf1822d35a9e1d5', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ee592ba2404a92818fe9ba856bd55a5665d271', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff07fbcbdf9b28acd4c9be2878d8133b7a39404d', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0939228542634598c701cf8ad0e20a6833914f42', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f43dd9bc6740d28cb433bb1c650b0e50c2948091', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('811561db71029e8a2e12027e7f9b502b43b2fafe', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eafeb11346ba9e66675bf93b1ad1e75db4daac54', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8187d93fe5722a3d74b81eb4d108c4f7774dab42', '172.105.247.100', 1668892922, '__ci_last_regenerate|i:1668892922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937921b9e97060164601e9a9a256adb92d061f57', '172.105.247.100', 1668892923, '__ci_last_regenerate|i:1668892923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae36596392a71c2e5d304acd887c2ef4bbdf01e', '172.105.247.100', 1668892923, '__ci_last_regenerate|i:1668892923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfccca50c2312747be2485f5856561facf420a2', '172.105.247.100', 1668892923, '__ci_last_regenerate|i:1668892923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1717792c90423c69a8965d3c66936ec03995da5f', '172.105.247.100', 1668892923, '__ci_last_regenerate|i:1668892923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff04866a08b9cfe33a3666a1e034ebe2dda92fd', '172.105.247.100', 1668892924, '__ci_last_regenerate|i:1668892923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a026fea9f2574ab74580e8dd987319b1c162684b', '172.105.247.100', 1668892924, '__ci_last_regenerate|i:1668892924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6eabc4e15d557369de73881bcf9abebe24d6c9c', '172.105.247.100', 1668892924, '__ci_last_regenerate|i:1668892924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf398cce2e5ebc683a2c13ca4b4b6fff66bcc62', '172.105.247.100', 1668897719, '__ci_last_regenerate|i:1668897719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('494e58bcf0aef75d41882d12d1f95e0f5f67c8ae', '172.105.247.100', 1668897720, '__ci_last_regenerate|i:1668897720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ed378eb6090d28485a71a1ce97864b776e5aa3', '172.105.247.100', 1668897720, '__ci_last_regenerate|i:1668897720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8972bf41ae3cb0b095ec46326a8510a72ed7c530', '172.105.247.100', 1668897720, '__ci_last_regenerate|i:1668897720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0267906e2692f69b5bea64b307bbbc1d23aba1c', '172.105.247.100', 1668897720, '__ci_last_regenerate|i:1668897720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7d9fb4b662e00bebebb46154af6ed83eb00ee1', '172.105.247.100', 1668897721, '__ci_last_regenerate|i:1668897721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8931742786fe06b01e177a89ad5073ce3ebf878e', '172.105.247.100', 1668897721, '__ci_last_regenerate|i:1668897721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ec894be3d7985b88c0875de3eb074fce398f06', '172.105.247.100', 1668897721, '__ci_last_regenerate|i:1668897721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28989fd56fa42bc6f68ca2cacebf233b059acec0', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c0e0b28f9a2ee006ae953d033be077d8a79dfa', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2fb0f80d273f74505acc25546e8e4168edf1852', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe7b6f89ff8f7b175fa639e6a641e140724c0e8', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9175f6a32d783c1e5520de1f6340f894431da6eb', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed45170f3db4260e2b4a6061597640f95dc6e48d', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60a51400498acde107e4dd35f52804d27adb2fb', '172.105.247.100', 1668897722, '__ci_last_regenerate|i:1668897722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe475623603ae91bc9359540996d93d598f654e2', '172.105.247.100', 1668897723, '__ci_last_regenerate|i:1668897722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4dd31075c4ad3e058bbfd7bb81f27f92c5735de', '172.105.247.100', 1668897723, '__ci_last_regenerate|i:1668897723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1523dc5d7133aea40476780019120bd93707c6f', '172.105.247.100', 1668897723, '__ci_last_regenerate|i:1668897723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a638382dd59b50ac6ff647f1190390f29475d3d1', '172.105.247.100', 1668897723, '__ci_last_regenerate|i:1668897723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eabf1510dc0d0b9136801cfdb5280bd6f9503848', '172.105.247.100', 1668897723, '__ci_last_regenerate|i:1668897723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c342072963698d5720a5c3ba05f0c95bc6cfde67', '172.105.247.100', 1668897724, '__ci_last_regenerate|i:1668897724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6130a48352af5d7f7f23e04fe70da00a48a3e96', '172.105.247.100', 1668897724, '__ci_last_regenerate|i:1668897724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2b0c0dea7e993eedc4551f1aca0f668bc62f62', '172.105.247.100', 1668897724, '__ci_last_regenerate|i:1668897724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8a9f08ad8535bd7efcf2082acaad180a74d988', '172.105.247.100', 1668897725, '__ci_last_regenerate|i:1668897725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc2bb8a7f2691723d4de99ff37675e3bbd61efb3', '198.235.24.46', 1668900702, '__ci_last_regenerate|i:1668900702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710b41d1600738b34f451d6a612f4d7483e73253', '198.235.24.46', 1668900704, '__ci_last_regenerate|i:1668900704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589d4274017b7dc99c271593c55d3313ec75383e', '198.235.24.46', 1668900704, '__ci_last_regenerate|i:1668900704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962382758ec14961e0f589860fa3f09ca90b3cbb', '172.105.247.100', 1668903121, '__ci_last_regenerate|i:1668903121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fc7720d98ce734ea0df6be96b112fb221017d3', '172.105.247.100', 1668903123, '__ci_last_regenerate|i:1668903123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e4dfe1504bc50da5ceb68c6b1faf36822bc860', '172.105.247.100', 1668903123, '__ci_last_regenerate|i:1668903123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16e15806d28766b08127c50181d820221132fec', '172.105.247.100', 1668903123, '__ci_last_regenerate|i:1668903123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01754dc09f16ee03b93705b85f327334a7a938d', '172.105.247.100', 1668903123, '__ci_last_regenerate|i:1668903123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4691051911fca0e1cf106ce5d3777429e132f75', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a4bc5f880676316a3793ebbfd6e63b6e8fc9f7', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea390ed296823214468cd421f5d924851b241f1', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67656f4272e937cefd813113094230531204c712', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33464b29004fe7102f9e860e95416cff6d15031c', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6840764b3298b5fa672c2a1953a9aec6bf42f0d2', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa1f82cbe7ee54cf615783451bb013db0050a85', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb2dd973a06f152478e6d8654f9eeb467a01cd9', '172.105.247.100', 1668903124, '__ci_last_regenerate|i:1668903124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c825280e015d5f1330b61755c437f044997de6de', '172.105.247.100', 1668903125, '__ci_last_regenerate|i:1668903125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0afe3f9173c95487eeaaf7d945380a26f928a513', '172.105.247.100', 1668903125, '__ci_last_regenerate|i:1668903125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005aca89b64219d5310cbf05c0efd9e531ac0074', '172.105.247.100', 1668903125, '__ci_last_regenerate|i:1668903125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ddffbb22c93548d919d58088a6c4c6d42d6385', '172.105.247.100', 1668903125, '__ci_last_regenerate|i:1668903125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b3829590d9112cd562dbc6d2d417c3baec24c4', '172.105.247.100', 1668903125, '__ci_last_regenerate|i:1668903125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1661972e1d9075f23919e03d57ebc8260e5ef5', '172.105.247.100', 1668903125, '__ci_last_regenerate|i:1668903125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fcaae63c975e77034fece1628e5382f668d6788', '172.105.247.100', 1668903126, '__ci_last_regenerate|i:1668903125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bffd79e814d1cc575af5b156f42894afcdb48f1', '172.105.247.100', 1668903126, '__ci_last_regenerate|i:1668903126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b855a54486a89ad249d63eac1735a706aae6ec', '172.105.247.100', 1668903126, '__ci_last_regenerate|i:1668903126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8010e0d9ea13070cf75cc018f7d3a187cf9c6f', '172.105.247.100', 1668903126, '__ci_last_regenerate|i:1668903126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd089c2d879bd80cee73bfa780e5a6afbcb04a5c', '172.105.247.100', 1668903127, '__ci_last_regenerate|i:1668903127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67fd49b3371ebe5032f35fb7afbfc801da8fc9d', '172.105.247.100', 1668908530, '__ci_last_regenerate|i:1668908530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39b576c2b2862d6ae95c6edd5078c6275da50cf', '172.105.247.100', 1668908530, '__ci_last_regenerate|i:1668908530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29c923af92ac313a5b22a1181d1a517c7d2dab2', '172.105.247.100', 1668908530, '__ci_last_regenerate|i:1668908530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69ad85ece757d0f55affeceea469b24b3ef73d2', '172.105.247.100', 1668908531, '__ci_last_regenerate|i:1668908531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c8009447f6689c70cfbe52bc500357445906ec', '172.105.247.100', 1668908531, '__ci_last_regenerate|i:1668908531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d2399edf635b4a3f07677137aa57853580ccf2', '172.105.247.100', 1668908531, '__ci_last_regenerate|i:1668908531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20665c380aa30441b5735bc7e0d5b88dd78a5bfe', '172.105.247.100', 1668908531, '__ci_last_regenerate|i:1668908531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33eb1bdb53a586c9377c8d541fdb14256410a3c5', '172.105.247.100', 1668908532, '__ci_last_regenerate|i:1668908532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cf2e06e3fbb6337f5b47281e9f2eacb0569761', '172.105.247.100', 1668908532, '__ci_last_regenerate|i:1668908532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2acf16ff0e03d74a83e486fd6426e12ccf5845f3', '172.105.247.100', 1668908532, '__ci_last_regenerate|i:1668908532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b7887edc79e82e79e12f4a2dfb596883fa5162', '172.105.247.100', 1668908532, '__ci_last_regenerate|i:1668908532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('001bad7d8a0e153ac09dbe162902fab018d10e4b', '172.105.247.100', 1668908533, '__ci_last_regenerate|i:1668908533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5043e69b339cec8827d4ba62a64791c6a302c71b', '172.105.247.100', 1668908533, '__ci_last_regenerate|i:1668908533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c128625798c2ef3c70de791b67b144f5abd552fb', '172.105.247.100', 1668908533, '__ci_last_regenerate|i:1668908533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e175038bd99a00117496bc6ec7c72af0014ac5fa', '172.105.247.100', 1668908533, '__ci_last_regenerate|i:1668908533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83efb1e0b1322a6f2f048361693d98bf3275504', '172.105.247.100', 1668908533, '__ci_last_regenerate|i:1668908533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('853566ab53ebc6e6e71646ec016578cab2dfbf90', '172.105.247.100', 1668908533, '__ci_last_regenerate|i:1668908533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736ac196d66237885b33f0c384b511a7d9ad6b4d', '172.105.247.100', 1668908534, '__ci_last_regenerate|i:1668908534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d267df27ad3bb997498508ec96d5de819eae2e', '172.105.247.100', 1668908534, '__ci_last_regenerate|i:1668908534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0ff0140555b6eabb3f9e4ec2b112e71b3dbf2c', '172.105.247.100', 1668908534, '__ci_last_regenerate|i:1668908534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4610573ea8f95b45fd48418f4a7f6377a21e3423', '172.105.247.100', 1668908535, '__ci_last_regenerate|i:1668908535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df88cc01a2ac5fee7f47b161f9cb946e1408a291', '172.105.247.100', 1668908535, '__ci_last_regenerate|i:1668908535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58806654a974127fc57fabee531f1d05d7e75fe7', '172.105.247.100', 1668908535, '__ci_last_regenerate|i:1668908535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201897c591eb5c2949c824361c4cf36e70e107c1', '172.105.247.100', 1668908535, '__ci_last_regenerate|i:1668908535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374890670e2f96ab84c68a878d04383bb9db38d0', '172.105.247.100', 1668912727, '__ci_last_regenerate|i:1668912727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08826124fe0432226c6247fccea085563e1eb014', '172.105.247.100', 1668912727, '__ci_last_regenerate|i:1668912727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fea5cd3a157a8d414b7dd612399ae56b6493650', '172.105.247.100', 1668912727, '__ci_last_regenerate|i:1668912727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42ed2d0e27a87423e8cde22364bc7dfdbd49c02', '172.105.247.100', 1668912728, '__ci_last_regenerate|i:1668912728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cdbf5523afd9e57bef217efc7a1eedef24acd86', '172.105.247.100', 1668912728, '__ci_last_regenerate|i:1668912728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8fc1e8a15d1cb47e4ff157dace9ea8fa576a33', '172.105.247.100', 1668912728, '__ci_last_regenerate|i:1668912728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acece728fc714d27595773851178679330433165', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43bd6d5eff3bde1c669b5485b866990d2be574d8', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d92f2ca5ad056988c2bb94393d945cdf357ff7', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f42fa005147b941f7e01f183f69e28443c5dcaa', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f731c93fdb16317967023f5fe6a4940265e6d83', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828b1af46d36fb1d884ad4148010a0aa390afbaa', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e01d025aa98d0924c0715f7343be6ab4e2f9ee', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('613f4db6d1056b075daeb8b54587216c00bd0f75', '172.105.247.100', 1668912729, '__ci_last_regenerate|i:1668912729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be5aa6f432392285a5759720bc41c8ec7aeaa1f', '172.105.247.100', 1668912730, '__ci_last_regenerate|i:1668912730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e460d7a7a2f18a46004609f61f493f99cb91a7', '172.105.247.100', 1668912730, '__ci_last_regenerate|i:1668912730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b8bc0e9849d00f40e654036e8cc9683e5faaa59', '172.105.247.100', 1668912730, '__ci_last_regenerate|i:1668912730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a20ae009c3be4d23249ccced3f0e7360ae11b6d9', '172.105.247.100', 1668912730, '__ci_last_regenerate|i:1668912730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78abb6aa529e4897039bc0ad086d4a2610aba83', '172.105.247.100', 1668912730, '__ci_last_regenerate|i:1668912730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01b7a2d5aa3dd0832530113a1ca40eba1ff8f68', '172.105.247.100', 1668912730, '__ci_last_regenerate|i:1668912730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b64d7dfb1bc03b3a8085217b8a9e02f5dfa3061', '172.105.247.100', 1668912731, '__ci_last_regenerate|i:1668912731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('128c0b9ff993708d48a73c265e1ace277bc88688', '172.105.247.100', 1668912731, '__ci_last_regenerate|i:1668912731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1bc5429f4f49ecb8dbf08e64d75c266c1fd1be2', '172.105.247.100', 1668912731, '__ci_last_regenerate|i:1668912731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94584a55e7a97388fa2289fd4013453381cac4e3', '172.105.247.100', 1668912732, '__ci_last_regenerate|i:1668912732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a600b2321a54bc0b5b085a8b7eb7ea608fa37d38', '172.105.247.100', 1668917528, '__ci_last_regenerate|i:1668917528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3c6e1b810718f546ab57f07820af7ed848a852', '172.105.247.100', 1668917528, '__ci_last_regenerate|i:1668917528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1c64cf591b864095183b3fb0f5090cde6f18c8', '172.105.247.100', 1668917528, '__ci_last_regenerate|i:1668917528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4999f471d62d705ed82a281e1b8c6cd68f62a18c', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17fe20de109e0a0738742d301343094e1292281', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74457381314c20dedda237db3a9b7bfffa2ea5eb', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e1c4df56a0dc3c11d1bcd4e04b894895e613d6', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1781e9a7a6e86bc0bb62d9b1fde849b645d3246c', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a975a2197275801354f94ef7ad59a1a5cab2906f', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedcf0ac3ab938c4ebbc53cd1b10ff8f13992ad0', '172.105.247.100', 1668917529, '__ci_last_regenerate|i:1668917529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5527703f000c689eceb6956e4a5fb79b9b1b986', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859f1479df3783c47e4a9a805085b462ea44c8e6', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b477ddb869210c842c3b3665066d45a991774dc4', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cdce4f4de82322271769a16a458f534bf5951c', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94857a99117615488ac908bc41cdfbe5e893283', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60a7f0087285dfc403b62af6e7d76837d7557a9', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae42e1bdfb7d633b2722d3513ff09785daf6f7d', '172.105.247.100', 1668917530, '__ci_last_regenerate|i:1668917530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db53bd9750854b3772aff506efad576fd0eb094', '172.105.247.100', 1668917531, '__ci_last_regenerate|i:1668917531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161b3577b4349674eb853e7be1481b7fc30f07f8', '172.105.247.100', 1668917531, '__ci_last_regenerate|i:1668917531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3805f14127172b73bf74e4f9abc2c4092500002e', '172.105.247.100', 1668917531, '__ci_last_regenerate|i:1668917531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683fac7e3daebd44f6ceae76197aba69ad2dbe25', '172.105.247.100', 1668917531, '__ci_last_regenerate|i:1668917531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825427e599bbe843de73597946eba8d6c22d8529', '172.105.247.100', 1668917531, '__ci_last_regenerate|i:1668917531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5086d32acb41511061881c81a3c805f6194dbcd8', '172.105.247.100', 1668917532, '__ci_last_regenerate|i:1668917532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c737b4fff9434fd464e9b3aa093f7995fd438ea', '172.105.247.100', 1668917532, '__ci_last_regenerate|i:1668917532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf5c20dc2403a7763c0736e4962d6397ad1bb92', '45.120.39.90', 1668918132, '__ci_last_regenerate|i:1668917962;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668834006\";last_ip|s:13:\"37.111.216.39\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668918132;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b665994bd85ac7bf5ce33776d7bc2c06e6e09349', '116.204.230.26', 1668921458, '__ci_last_regenerate|i:1668921458;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba35fff8aeee6ffbe42dd3bf6f657b058a3e7d45', '116.204.230.26', 1668924314, '__ci_last_regenerate|i:1668924314;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2054e16a1583021fb1f90e5293b50efa3d19af', '172.105.247.100', 1668922321, '__ci_last_regenerate|i:1668922321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709562802fe7e0d82d677b23b606aa56b5d5bf37', '172.105.247.100', 1668922322, '__ci_last_regenerate|i:1668922322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffe284e7cb5dada87f6bbb07eb572d266a11a1d', '172.105.247.100', 1668922322, '__ci_last_regenerate|i:1668922322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528fe739b7257b19bd740aee5c830a3bebe13626', '172.105.247.100', 1668922322, '__ci_last_regenerate|i:1668922322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f2f119017fd2c47e9128be246aeb388e10021a', '172.105.247.100', 1668922322, '__ci_last_regenerate|i:1668922322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e74ffe6ecfd25ce1c1a00f221a70d0383b1823', '172.105.247.100', 1668922323, '__ci_last_regenerate|i:1668922323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171d219921c1d090f60ca89e959094f54c491e30', '172.105.247.100', 1668922323, '__ci_last_regenerate|i:1668922323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baaa1507614fddf246dfdf81109840f6154717a3', '172.105.247.100', 1668922323, '__ci_last_regenerate|i:1668922323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55fd201be68ff38880f8c79882ff706618d617b8', '172.105.247.100', 1668922323, '__ci_last_regenerate|i:1668922323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4866a1a949ed03350892b7047d10f857ff6ceeb', '172.105.247.100', 1668922323, '__ci_last_regenerate|i:1668922323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34bb630efbcabeaa66cc8d1a0437a1e97658b28', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d796efbc72e9a66f97cdd3a33b30660990bb68', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d94612f72738882d01eb64522e39bb2ecf0a4f4', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa486775163eec0acf27db650704aff53ca6a96', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d1f98348e5e4c618da41766e01eb3b75769abd', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d2d5df43a2429f6e995a456212bf29b3e55584', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4cc9a723b761432bd3795004fe2f9e44913208', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('932972539ae1cd4772bfa99eac92b053b88f76e2', '172.105.247.100', 1668922324, '__ci_last_regenerate|i:1668922324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0ab5323008b544d1b7e9489c842fc86d6dff8f', '172.105.247.100', 1668922325, '__ci_last_regenerate|i:1668922325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3a35ad8ce5716acdebf0986893e23f4b02f7c3e', '172.105.247.100', 1668922325, '__ci_last_regenerate|i:1668922325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32696ee544509411fa7c4ba0d0972ec61190c730', '172.105.247.100', 1668922325, '__ci_last_regenerate|i:1668922325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a66df42d0a0d9456f02d6f085cb66b3e14fe78', '172.105.247.100', 1668922326, '__ci_last_regenerate|i:1668922325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c790392deb73ae39f47b4c40ff5c10d8681ebef2', '172.105.247.100', 1668922326, '__ci_last_regenerate|i:1668922326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64cea7c09e6da8081c0e7ada3efc0368a1d1ce0', '172.105.247.100', 1668922326, '__ci_last_regenerate|i:1668922326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c1680717e2fb40050e3dc1d9ee0a84183638cb', '116.204.230.26', 1668926272, '__ci_last_regenerate|i:1668926272;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0bcc50659ba86c696f51cd3caebec8fc4d9616', '116.204.230.26', 1668928149, '__ci_last_regenerate|i:1668928149;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e828fddec601766f8df682d43f4978ca643ce52', '45.120.39.90', 1668926796, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0be8c51c46fbe87f0d4414b838ce3d325cc5d3', '45.120.39.90', 1668932312, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668932312;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668932302;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de8df4515dc9b227d33923cb6604ead0fdbddc7', '172.105.247.100', 1668927123, '__ci_last_regenerate|i:1668927123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae5220d2c1e759ce66a25581d582b9073d6f979', '172.105.247.100', 1668927123, '__ci_last_regenerate|i:1668927123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac9d2f270a4301ef11e28aea5f31a0e99901f0b', '172.105.247.100', 1668927124, '__ci_last_regenerate|i:1668927124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9480dd9bc52a25ab7bf49c8fe72bc3f7330feaf', '172.105.247.100', 1668927124, '__ci_last_regenerate|i:1668927124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c888c959e307b974f15e0f94e5fe7e85f03bf12', '172.105.247.100', 1668927124, '__ci_last_regenerate|i:1668927124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9a00f24615d51fb17f39d8d62c8558c71f4e1a', '172.105.247.100', 1668927124, '__ci_last_regenerate|i:1668927124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cec6ef86b84da5dba7cab973cc31930d97a5f89', '172.105.247.100', 1668927124, '__ci_last_regenerate|i:1668927124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a961559b4a5bc61508cad2257667e59d17b36e2', '172.105.247.100', 1668927124, '__ci_last_regenerate|i:1668927124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab6fb74b80751508ab3bd47ca29917862300b06', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86335089f168d56297f899544faceff5050a59e0', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38425809f88a5f058c24bf542acf6e9d0399cf55', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f231675fb9cb9e6c7fa0f0569109823f00b7b686', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f894956959a7554d171d64ca5013e1df6fc04080', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6d7564ef01bd8f5cbbaa97fdf0aabd7ca92b3d', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf13fac97d5a4a25f9ff9e7f0dfec6cfd5cd316f', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733721693a5c630a8ae1874dcd89f1949cc377f9', '172.105.247.100', 1668927125, '__ci_last_regenerate|i:1668927125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc84a03be4c62796beb6a95f655a178f1902fbc7', '172.105.247.100', 1668927126, '__ci_last_regenerate|i:1668927126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538e82349450c4c5b5866a81ab0f54ff33987e0d', '172.105.247.100', 1668927126, '__ci_last_regenerate|i:1668927126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7002dacd78b8321395e0887d25e6241c05440b4a', '172.105.247.100', 1668927126, '__ci_last_regenerate|i:1668927126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af58ff5447b6f9a7782186bc877ff723dbb3bca7', '172.105.247.100', 1668927126, '__ci_last_regenerate|i:1668927126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0e3e68f55d6e167f5e444be2c6fe93776c7adf', '172.105.247.100', 1668927126, '__ci_last_regenerate|i:1668927126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4226be36d2c0ed1ee5788ebfd1e1b85d052866da', '172.105.247.100', 1668927126, '__ci_last_regenerate|i:1668927126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98384c9a38d3245ac53f4ad0a9d538be041942e', '172.105.247.100', 1668927127, '__ci_last_regenerate|i:1668927126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be04871ba902329f904984283aea53bf4cdf037', '172.105.247.100', 1668927127, '__ci_last_regenerate|i:1668927126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d24c67b4096b43c59f5ad3288b15df53579bc8f7', '116.204.230.26', 1668928581, '__ci_last_regenerate|i:1668928581;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"lZCk8bP4oxqiQmMt0h2y\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09524daa1eb78ba679802aed5a29b5a0ca937012', '116.204.230.26', 1668928993, '__ci_last_regenerate|i:1668928993;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"lZCk8bP4oxqiQmMt0h2y\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb223bf562b17fc872056f75678bc9b9935cecd5', '116.204.230.26', 1668931601, '__ci_last_regenerate|i:1668931601;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"lZCk8bP4oxqiQmMt0h2y\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08bd43661348548d7d3afc5ba9fdcff1694dc03', '116.204.230.26', 1668931910, '__ci_last_regenerate|i:1668931910;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"lZCk8bP4oxqiQmMt0h2y\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83aa1dac002ddc7528129baf709343d975313fd', '116.204.230.26', 1668933316, '__ci_last_regenerate|i:1668933316;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"lZCk8bP4oxqiQmMt0h2y\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb476196b0dbe0aa00b406cde342a62c147c760a', '172.105.247.100', 1668931930, '__ci_last_regenerate|i:1668931930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf76a4738116cb33373cbc322183990c99a24ecb', '172.105.247.100', 1668931931, '__ci_last_regenerate|i:1668931931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07bf4804f7b1690491690c28bf1e3439cbaa6b65', '172.105.247.100', 1668931931, '__ci_last_regenerate|i:1668931931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e2e8eef9d7dbe4fa04e79aaee891db389c802f', '172.105.247.100', 1668931931, '__ci_last_regenerate|i:1668931931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477d11c6d57610dd7990b76844016b81e2aaa17f', '172.105.247.100', 1668931932, '__ci_last_regenerate|i:1668931932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3a05a6a70b10904c2c5bc8b959106ed0f5d1fe', '172.105.247.100', 1668931932, '__ci_last_regenerate|i:1668931932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84afbf4506c5bb3c8d62d677d66f5f0be7617335', '172.105.247.100', 1668931932, '__ci_last_regenerate|i:1668931932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25d3e28f31e209206736f735f6b80413a5da10b0', '172.105.247.100', 1668931932, '__ci_last_regenerate|i:1668931932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9492865ddb841fc28fc4e6408e07c75329cde3e2', '172.105.247.100', 1668931932, '__ci_last_regenerate|i:1668931932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ebe1772d4194b33d31cf3262f3c8da069b39fc', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7513a0cff57db11222df4ce359265e6de64e84b', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74675a38769a1d290d1e6e22dab2785976f06ede', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbf2c51abeeb27ac3b70e96f8a616d4bea894f1', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a9d06ccdec729f04f517b5bf97661335b08229', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc6fae33d1251b74d94c4a672f830b4e2e71868c', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067d3f4d204558f2e9292cdb8ea788efd12efa12', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9353389ab63b89e6b44354c04337b5d5a8049e', '172.105.247.100', 1668931933, '__ci_last_regenerate|i:1668931933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99f388dc0b9b35d072696ddf59b4724c60ffa6b', '172.105.247.100', 1668931934, '__ci_last_regenerate|i:1668931933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8118b3b8c74ae73a6f3893dda754df4af53f0452', '172.105.247.100', 1668931934, '__ci_last_regenerate|i:1668931934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f902ca4b4d7416cc73de3b1ee75d07dba465366e', '172.105.247.100', 1668931934, '__ci_last_regenerate|i:1668931934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c01421ef025acc47284777de730909a2a281f98', '172.105.247.100', 1668931934, '__ci_last_regenerate|i:1668931934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6375f70419ce8c48d5df5471bfd07e3cde69360c', '172.105.247.100', 1668931935, '__ci_last_regenerate|i:1668931934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5234160a6b96aca922d7c6d2c15b73547632e531', '172.105.247.100', 1668931935, '__ci_last_regenerate|i:1668931935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1f1effce94e641729a5961f64cc8584fbb82ae', '172.105.247.100', 1668931935, '__ci_last_regenerate|i:1668931935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521728519c39a1258a68e312c51801e6b3a5f3b7', '37.111.216.65', 1668932960, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668932960;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668932313;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f0e22138c24dd4b2e136c907abb755f9f2eb21', '45.120.39.90', 1668933501, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668933501;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668932960;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f16623239272776e2df0291d9d44bd7a28b534e', '116.204.230.26', 1668933584, '__ci_last_regenerate|i:1668933316;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668855973\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"lZCk8bP4oxqiQmMt0h2y\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d00ce19cf89089a311fdb1f86f3d421f18c11cf', '45.120.39.90', 1668936998, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668936998;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668936851;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1e01b4498cd0c6c40634487b442af6714e1484', '45.120.39.90', 1668939575, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668939575;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668937209;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1ff80dad17bc79db5308fb576f9f3adf56988f', '172.105.247.100', 1668937923, '__ci_last_regenerate|i:1668937923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792f65d4a2467d9e1eaa79d3d04739057a5a04db', '172.105.247.100', 1668937923, '__ci_last_regenerate|i:1668937923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55693a95765fe84ec013373414d828dd36e552b7', '172.105.247.100', 1668937924, '__ci_last_regenerate|i:1668937924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cf059c97be7d1ef2645da01e4c03f0302e39417', '172.105.247.100', 1668937924, '__ci_last_regenerate|i:1668937924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e1412f22c02a88ea9e6b843819bb7e3c0ccf26', '172.105.247.100', 1668937925, '__ci_last_regenerate|i:1668937925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bbc8782a732725601dcfe891a6e0a2d98b0f947', '172.105.247.100', 1668937925, '__ci_last_regenerate|i:1668937925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d97a7f76613ea8cad892b520c090fb78374992', '172.105.247.100', 1668937925, '__ci_last_regenerate|i:1668937925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6544fe48d0b00bc1e91d38bf748c428b6816cff6', '172.105.247.100', 1668937925, '__ci_last_regenerate|i:1668937925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b57ad5aa5a10d4afebdf34ae2a9dcd2680482f1', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1c73d83637d0aa09122b00ca080944fa09bf470', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65b2a50bbe53247037943a6318b0b8b23318e27', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372d99d76a85d3c6806af79aa7e6997b921327d6', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4bd9b1f7ab38532f5653131e35840e776ac748b', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc957fce00168106e1df655f2a83370c507eb335', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8685e753876320ec0acd0144eb6e61402fb4c5', '172.105.247.100', 1668937926, '__ci_last_regenerate|i:1668937926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c61478d8aa5f75ba622af72f9326229753244052', '172.105.247.100', 1668937927, '__ci_last_regenerate|i:1668937926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb5f5a9b39ee29eef2211763ef3bf426d72bce1', '172.105.247.100', 1668937927, '__ci_last_regenerate|i:1668937927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5ca8bada95560c4a20f2fce316217360ed26e7', '172.105.247.100', 1668937927, '__ci_last_regenerate|i:1668937927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8c4b8eeb99d755140def90d5027922f7bbf8eb', '172.105.247.100', 1668937927, '__ci_last_regenerate|i:1668937927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf28a198db89a5c7bbd9526f797dfebc15e5287', '172.105.247.100', 1668937927, '__ci_last_regenerate|i:1668937927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2796d3c436abdd807882785711555bdf812b4e0', '172.105.247.100', 1668937927, '__ci_last_regenerate|i:1668937927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487de7c141c2ca85da2dfbecb5ba188ff02d674c', '172.105.247.100', 1668937928, '__ci_last_regenerate|i:1668937928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741d9e9c07c080387d0cd073618e486f6a532082', '172.105.247.100', 1668937928, '__ci_last_regenerate|i:1668937928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2672c7715cd99826b20ed877446bf9c8a56db8', '172.105.247.100', 1668937928, '__ci_last_regenerate|i:1668937928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6a71768b4fb807ce430df3b51fd504c71b14d3', '45.120.39.90', 1668943091, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668943091;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668943082;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('882664c42027ba2536f80ca9ae92a57ab65633eb', '116.204.230.26', 1668942257, '__ci_last_regenerate|i:1668942257;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813358d15eaf10bae4ca3aa0443b86be19bd4a5c', '116.204.230.26', 1668942636, '__ci_last_regenerate|i:1668942636;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a023c7cca2c091690e0f20b4c4e6e37c390c9e5', '116.204.230.26', 1668942956, '__ci_last_regenerate|i:1668942956;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f18f08ffdbe0cd8c86158f9415bcaf2693ca58dd', '116.204.230.26', 1668943261, '__ci_last_regenerate|i:1668943261;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c700c1dbde7199a0d909758bb819055d186a74c1', '37.111.216.65', 1668943650, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668943650;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668943092;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c37628c78a4a02db3ced0511db9658dd086573fb', '116.204.230.26', 1668943615, '__ci_last_regenerate|i:1668943615;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af492c66719140ac1cef6e644643ac7bf57a3392', '116.204.230.26', 1668943938, '__ci_last_regenerate|i:1668943938;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c797405ecef6b1f2179821a47c880aec1f7e553', '37.111.216.65', 1668945990, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668945990;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668943669;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9373a26f0472132cd26b54d1e0b4c8ba55bb552', '172.105.247.100', 1668943924, '__ci_last_regenerate|i:1668943924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ea5e0dc2c6f54e43b070e1b789a21244799496f', '172.105.247.100', 1668943924, '__ci_last_regenerate|i:1668943924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4329c24477049bd9fea27b8663a4c7e6f5b19b4', '172.105.247.100', 1668943926, '__ci_last_regenerate|i:1668943926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7d6eeb1ba15f5092dfdb20739c062b3f5f0e16', '172.105.247.100', 1668943926, '__ci_last_regenerate|i:1668943926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee7dc32569cf8d856972428638e36bfbd09e4c5', '172.105.247.100', 1668943926, '__ci_last_regenerate|i:1668943926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13c41be8946d89e488b5bb2a02eb7f5b3d2551cf', '172.105.247.100', 1668943926, '__ci_last_regenerate|i:1668943926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7d6acedda0d8a44dd46706ee4bcc7fdc38a259', '172.105.247.100', 1668943927, '__ci_last_regenerate|i:1668943927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a0b3ce85e928bce5baf3cde737fed00217d57da', '172.105.247.100', 1668943927, '__ci_last_regenerate|i:1668943927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b67540fd401fd64d12022ccde508fafd134bcde', '172.105.247.100', 1668943927, '__ci_last_regenerate|i:1668943927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e935d4d37ebf39eb173ab3a9e6f46acd141edc43', '172.105.247.100', 1668943927, '__ci_last_regenerate|i:1668943927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1379bfaa33afe4c32decbdea98ba1d9c1be534e1', '172.105.247.100', 1668943927, '__ci_last_regenerate|i:1668943927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d8120ecb843a8ca8402d634856d827759ee2d9', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65d150b6ede8543aab239e0826ca33f10be5e0e', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66fecc553f808dd9912b45acdf4b54b23af6ce0', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946ab4644b928e5fe7faea07f835dafbd8727c07', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f1b0ac6caf8a11ff8d3a2b943b28d65c7cd9b8', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('475384e00e9171cb05730d1026b15773d6c40787', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff537aeffb71fd0a32249fee3d7dfb1ed5ff3cb', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97d8d1c3948fb24aec372dcdbd87053ae37b9cf', '172.105.247.100', 1668943928, '__ci_last_regenerate|i:1668943928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2591c2fa9bbcf42d06f9bcfa6ed0d628ea43cdc', '172.105.247.100', 1668943929, '__ci_last_regenerate|i:1668943929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd538fe64dd19c357d5de1384a6622288c2ca5de', '172.105.247.100', 1668943929, '__ci_last_regenerate|i:1668943929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29a056aadbd7715040b87f58b8630e4fd81a4e3', '172.105.247.100', 1668943929, '__ci_last_regenerate|i:1668943929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b7abc421856b287ffe748f604eae96c212e5ee', '172.105.247.100', 1668943930, '__ci_last_regenerate|i:1668943930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30f2104b2e48e307f07222e52c35086e954faa8', '172.105.247.100', 1668943930, '__ci_last_regenerate|i:1668943930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb635fb3a29d6ad87557dce35009ab00aefd765', '116.204.230.26', 1668944395, '__ci_last_regenerate|i:1668944395;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a39383ddb40633f6e08e90b95ed3aaebf3dc820', '116.204.230.26', 1668944754, '__ci_last_regenerate|i:1668944754;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79528b62d8c1857088318fc3f3ade3f2f65b1350', '116.204.230.26', 1668944990, '__ci_last_regenerate|i:1668944754;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668918542\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74388f9e2b7f58bfe8d90cc43c8ff7d2a0a55dac', '45.120.39.90', 1668948687, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668948687;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668946026;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421b1baffd05506cdf7a134b57f16a2784891dfa', '45.120.39.90', 1668953533, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668953533;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668948852;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79dd0994a7bc163b8147d963230cb9296fc1e0ce', '172.105.247.100', 1668949930, '__ci_last_regenerate|i:1668949930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30b96fb23a136593d419bc69e0da9a4ced9c2de', '172.105.247.100', 1668949931, '__ci_last_regenerate|i:1668949931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e87f5d66d08476723bb95e9592a92be830fb41a', '172.105.247.100', 1668949933, '__ci_last_regenerate|i:1668949933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149a8589eeed423e5248aee4f6cb852a86abaf55', '172.105.247.100', 1668949933, '__ci_last_regenerate|i:1668949933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72e34f0ff7bba099cb139aecf67f1d75067424c', '172.105.247.100', 1668949933, '__ci_last_regenerate|i:1668949933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0174878e8474dcf5bdec0a254f4ff0a554be7df', '172.105.247.100', 1668949933, '__ci_last_regenerate|i:1668949933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818962e0fc0d675837a45ec1a2d8fe3db4bccff8', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef863612d1b1d3c44f55f660c520d3e90c0bba8', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f007d6da99e83af25d17e3fe80db17362a0e645', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5120cf5e7da946b5a54dedcb4981852f2417ef51', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f0f7b7e716a4fc7da636d0108acce461c11567', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26d3ae00d375cb16d75ef9e158a19b4186be6dc', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6859b4702e03a6e759e424e11b203de7d5d76dd', '172.105.247.100', 1668949934, '__ci_last_regenerate|i:1668949934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581dc2856935563f3d4359f56ebf1f46af99f7d8', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03e8a8505d99beb2d314a5b1fcbfc66a53591db', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799779ad6c6e5232dd29e5195e6b93cc8f681110', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d895dd6ff59714cf266f59a30287093d8cba60', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb5582e54a05c5fb6f0b82268b0ce09ee3ffedc', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a973f0c9d896422d21e381d7c65625457519800a', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3680f4b65a4c0ed017f6c7a3453e3bbf1b0d0c9', '172.105.247.100', 1668949935, '__ci_last_regenerate|i:1668949935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97db139026653457299e68ce87b4a8e4b4a04718', '172.105.247.100', 1668949936, '__ci_last_regenerate|i:1668949936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0015de431cbc252d792c685cedf497b341fad0', '172.105.247.100', 1668949936, '__ci_last_regenerate|i:1668949936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49b908417b9673e5b4f399044e6c26a13493214b', '172.105.247.100', 1668949936, '__ci_last_regenerate|i:1668949936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac71eca027fcfc9a76bcf7fcba34307a6495938c', '172.105.247.100', 1668949936, '__ci_last_regenerate|i:1668949936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ad5a1271b5b179847cf59805ecb8f18c1e5f5c', '45.120.39.90', 1668954603, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668954603;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668954596;register_id|s:3:\"254\";cash_in_hand|s:9:\"6820.0000\";register_open_time|s:19:\"2022-11-20 10:21:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9bfb6ef914c8f45695427364f8f3c6086b90e3', '116.204.230.26', 1668953968, '__ci_last_regenerate|i:1668953948;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668941819\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747eaca05f9f67292b49928a06482e0d9d173524', '45.120.39.90', 1668954627, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1668954603;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668917981\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1668954627;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe5dca80e7015b367e11f53bc8015588146dbf3', '172.105.247.100', 1668955323, '__ci_last_regenerate|i:1668955323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2285dcc2220c208869f77f12ee65532994392125', '172.105.247.100', 1668955324, '__ci_last_regenerate|i:1668955324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab0238bfa1e23f8fb43803b86b3d577b51f0709', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc115a4b40eb7ed0fb5691fc51237604b5c267dc', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b188fa99e5e4aa5d48edf5830b393f5037e8e22f', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb4e59a0eb256ca7bf72014f8018995e918cf0a', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25f324dc55bc31d0aeff7d31dbf6f49aaa02f1f', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8eaafcb3019f8971be7b8c6b09af9ecad2eff6f', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f531286b0daade9401258a7ccd2af126bdee332', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a01b0537d2a8a2b75506b3ba73793f3ea32c814', '172.105.247.100', 1668955325, '__ci_last_regenerate|i:1668955325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540764596739a39c7df2b93291a8744746776357', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42e600e48d37f8bfbea813d29fa6b7269186856e', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10209faf50803951b8ab436d321f8b0084f30541', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21bdbaac0cecfafb3d37584a144049624ed57288', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067646c89b100242bf83e492d34c0f5191c0e615', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66f6e0ae85e2fe7c47ae1fb84ca0cf8a0d3023f8', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c089d962c3338e5793af0870c1a1f15609944dee', '172.105.247.100', 1668955326, '__ci_last_regenerate|i:1668955326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b80edb04d73185c7b30f2ff2d3d3cccc847ef6f1', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce9d12071641f2d1dd93d0c3d64a049d4a5776d', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3ac32805cfe581a621ba23fc62e2c96570948c', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3ea5ba75f823f20e375f95e3a94b9859067331b', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1280065f7182bbe5453e62f28009ad0993763d8b', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ea51c300f62c464e0cbef8cad2cde4fe7c56cd', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce071ee1215c910b26008107ac210b42dceb9507', '172.105.247.100', 1668955327, '__ci_last_regenerate|i:1668955327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d153c50656a23c3e0aa0a8ea460f9c00d8f829', '172.105.247.100', 1668959526, '__ci_last_regenerate|i:1668959526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc3866df22fb8ce0ee5dc65ebccf3de9e4fc962', '172.105.247.100', 1668959526, '__ci_last_regenerate|i:1668959526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5bf1c91380dbecaddd92a891bed1c8bd361d48', '172.105.247.100', 1668959526, '__ci_last_regenerate|i:1668959526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690548ea0c91c24777dad493b44d1063c2197b80', '172.105.247.100', 1668959526, '__ci_last_regenerate|i:1668959526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ed9e909d64e88b5c472a978a88a1236ddebbb4', '172.105.247.100', 1668959527, '__ci_last_regenerate|i:1668959526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f7898b2560674917f3adf2c8df4b6088e7b303', '172.105.247.100', 1668959527, '__ci_last_regenerate|i:1668959527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b536c5b641e99b24d96d9bf09868d8736ed24e', '172.105.247.100', 1668959527, '__ci_last_regenerate|i:1668959527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec8b949803b0f904068ff60b9dc8bde97837b7a', '172.105.247.100', 1668959527, '__ci_last_regenerate|i:1668959527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57091b269c1d3b25ff0f4db1b613444ab13d9401', '172.105.247.100', 1668959528, '__ci_last_regenerate|i:1668959528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe36c6f2fc574485ee2be144b70dbed911ea2e0e', '172.105.247.100', 1668959528, '__ci_last_regenerate|i:1668959528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2903ebb89544f7b010857270146481058103ab2', '172.105.247.100', 1668959528, '__ci_last_regenerate|i:1668959528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bdae43dcbfc208e2849e8bc948f21064037178', '172.105.247.100', 1668959528, '__ci_last_regenerate|i:1668959528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6427fccfab4ff52705e2ca0756ff6b4b2851d2f', '172.105.247.100', 1668959528, '__ci_last_regenerate|i:1668959528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346616a59826f2d1b8c67c0f14a114d65649749e', '172.105.247.100', 1668959529, '__ci_last_regenerate|i:1668959529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8faf95732453fb68443961e845c930d7f86df5a', '172.105.247.100', 1668959529, '__ci_last_regenerate|i:1668959529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378b255f7c471615780b29d100964a4bd0b66867', '172.105.247.100', 1668959529, '__ci_last_regenerate|i:1668959529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b79c6056dde80bc4579fadfa0404846f043a60', '172.105.247.100', 1668959529, '__ci_last_regenerate|i:1668959529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b66be2a9c21e7752876cbfeb47b3f2e52aa491a', '172.105.247.100', 1668959529, '__ci_last_regenerate|i:1668959529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3cd3e754fac64524eb134b3966f94c466b1e8e', '172.105.247.100', 1668959530, '__ci_last_regenerate|i:1668959530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1309eea05fb651e3f92b1a00442c388051c2eca6', '172.105.247.100', 1668959530, '__ci_last_regenerate|i:1668959530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cafaceb6e02a1b7f2a89cb2c49295603525f4f9', '172.105.247.100', 1668959530, '__ci_last_regenerate|i:1668959530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532ebcefda3b4d8ee3b418c7283f928b00c50959', '172.105.247.100', 1668959530, '__ci_last_regenerate|i:1668959530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397e4f44e6b03547da271deab18f8cb2cd6ba080', '172.105.247.100', 1668959531, '__ci_last_regenerate|i:1668959531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc834ceac76a86bb3675b1037edb921caeddf96', '172.105.247.100', 1668959531, '__ci_last_regenerate|i:1668959531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b4c118f1a97108cb1ace8675f60e2c4063faf50', '172.105.247.100', 1668963728, '__ci_last_regenerate|i:1668963728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb2e52a8b388c897ad5e3717a53a5b971aa69a5', '172.105.247.100', 1668963728, '__ci_last_regenerate|i:1668963728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d5c1b8f83df77f21304bf7b3498f2dcc764958', '172.105.247.100', 1668963729, '__ci_last_regenerate|i:1668963729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b5255a5cabcdf7b56fefe8a4400d25bba231faa', '172.105.247.100', 1668963729, '__ci_last_regenerate|i:1668963729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b807e76ded55d1a6ab9cebc8d669557981d31ebd', '172.105.247.100', 1668963729, '__ci_last_regenerate|i:1668963729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccba93b451eda126b9e5cd95da5f7f6887c2b66', '172.105.247.100', 1668963729, '__ci_last_regenerate|i:1668963729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19e7ee2d6a92371dd12d192725785e3ba4fcb85', '172.105.247.100', 1668963730, '__ci_last_regenerate|i:1668963730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e0f3341eb2d72e0b236e5a293b96ee427720ef', '172.105.247.100', 1668963730, '__ci_last_regenerate|i:1668963730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f8ccf4d1b6ca7438fe57814d59a4d547c89053', '172.105.247.100', 1668963730, '__ci_last_regenerate|i:1668963730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bccbd59b50960f1f00f3c691dada99a7ab8c641', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3556c463418ddcec7bbfdc4493f7517ba1f25ef2', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5479a38ddf648b9f70c9359c33ef198e3c859d8c', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0251c285e3a50edebd16a26bf7c9f03211bffa64', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f6981717ab476e42dc5f968a22bb4eb3fcd4bd', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c0f67daea39371718f0b20ecfe2377bc2fae1e', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fdca620af718ba2cf9534f222cca3802cf4e64f', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b76c0d5a0578235e6e93e35ee87bb9ee3c713d0', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8317cd25d88d845529cddcd0ed3f22b0e8a8239a', '172.105.247.100', 1668963731, '__ci_last_regenerate|i:1668963731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed065e87da36e458002b4e7334d76504aa82a1fd', '172.105.247.100', 1668963732, '__ci_last_regenerate|i:1668963732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c84c42c5b676def255e689dab25c95ddf386628', '172.105.247.100', 1668963732, '__ci_last_regenerate|i:1668963732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950b9fb0800bff03d0fe7a19d6025528d0e8405b', '172.105.247.100', 1668963732, '__ci_last_regenerate|i:1668963732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64cb8f321de74cb2b291b8c13afc145ad53c8b56', '172.105.247.100', 1668963733, '__ci_last_regenerate|i:1668963733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3b68758a3d8620c7c3829c16213e607f3ea76e', '172.105.247.100', 1668963733, '__ci_last_regenerate|i:1668963733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16debd5b286435a26428d04f4a5b58098c6bac93', '172.105.247.100', 1668963733, '__ci_last_regenerate|i:1668963733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a6a0a82f027c79d7c9efe08c95aaa2c9ab8166', '142.44.135.134', 1668967152, '__ci_last_regenerate|i:1668967152;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf1ac1dd2f8242d4eb0cd3cde49a090833dfc9d', '142.44.135.134', 1668967153, '__ci_last_regenerate|i:1668967153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337873c25f854c9b59a6ba577099f232c3b86059', '142.44.135.134', 1668967153, '__ci_last_regenerate|i:1668967153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602acbef54efa1285c28a71e87b0b4db4ca2c851', '142.44.135.134', 1668967153, '__ci_last_regenerate|i:1668967153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd5f087047bb12f09eddb56e8ff1b602051c243', '172.105.247.100', 1668969125, '__ci_last_regenerate|i:1668969125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70ab8c04736ef9addb9b24298145c64f16b9583', '172.105.247.100', 1668969127, '__ci_last_regenerate|i:1668969127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54fbb1a0de75233a3da55474d4db92822738ca5f', '172.105.247.100', 1668969128, '__ci_last_regenerate|i:1668969128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bbf267a0ffa4df4895607269a87024dee839e4e', '172.105.247.100', 1668969128, '__ci_last_regenerate|i:1668969128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0199a9b50956f5d1aaf0ee8124b309da3743a1', '172.105.247.100', 1668969128, '__ci_last_regenerate|i:1668969128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84c4e2a68a34b271bca5d0dc9092daad4a93c21', '172.105.247.100', 1668969129, '__ci_last_regenerate|i:1668969129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea3140ec950cf294e3e97fa9cc65b28f7d99b49', '172.105.247.100', 1668969129, '__ci_last_regenerate|i:1668969129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bffe9f8527c0c52a256a2f31463ce77314444919', '172.105.247.100', 1668969129, '__ci_last_regenerate|i:1668969129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29078f086330289529f6b90298d35533ad8b744b', '172.105.247.100', 1668969129, '__ci_last_regenerate|i:1668969129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9e290edfadc6e3ea0b1712dced60106ed9aa11', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3392862485ec56b0bce414b881b0796454acde09', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f7901f591246d4e522f968b147b1530ce12bdf', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c585019aa18fc413d889cd25d392c20bed19ef4', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7020ed14902e86f7c9e8f752be46d86f01f50178', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6003ac963c16b6afc7b9e842ec87adde90ab4e02', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18c304a50cd8856d38d6452ef7f0449bb349142', '172.105.247.100', 1668969130, '__ci_last_regenerate|i:1668969130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf7c6f062a9f70a369ba3509e7b91a7a98769d7', '172.105.247.100', 1668969131, '__ci_last_regenerate|i:1668969130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd29932ce4c4d28c18614391279efb6ac443457', '172.105.247.100', 1668969131, '__ci_last_regenerate|i:1668969131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f8a2c5926e1c6ecee0c763cfc3edbdc48c40bd1', '172.105.247.100', 1668969131, '__ci_last_regenerate|i:1668969131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb3679118adde5cc1fe95080ec74c2308b422ec', '172.105.247.100', 1668969131, '__ci_last_regenerate|i:1668969131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf82d6a2d20096b277987eb751bccbe177f6ea20', '172.105.247.100', 1668969132, '__ci_last_regenerate|i:1668969132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889f228ac66bcfcfaec6fac25d32575618655979', '172.105.247.100', 1668969132, '__ci_last_regenerate|i:1668969132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998b89d0bbc73af5c12e8cf56cb4cf4cd33d3abe', '172.105.247.100', 1668969132, '__ci_last_regenerate|i:1668969132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb4ac8c9125714caf56b0afbac72c3d4bbd4559', '172.105.247.100', 1668969132, '__ci_last_regenerate|i:1668969132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d184ba442d6508f3a30c00efe6159988f5631ac4', '167.94.138.47', 1668973710, '__ci_last_regenerate|i:1668973710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5351acaff590dae4647dca95f5c4100937f096', '167.94.138.47', 1668973710, '__ci_last_regenerate|i:1668973710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec273d5891be436fdcc120b869ce67a325a3b42', '167.94.138.47', 1668973711, '__ci_last_regenerate|i:1668973711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae493e66d7bac989707192421d6c14a50f6b30fd', '167.94.138.47', 1668973711, '__ci_last_regenerate|i:1668973711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ba1e6c08b517067c13f6dbd9270844e7e1d11e', '167.94.138.47', 1668973711, '__ci_last_regenerate|i:1668973711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fe25822e87b7d348db0c351cce122208a9e9c5', '167.94.138.47', 1668973711, '__ci_last_regenerate|i:1668973711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0785f1b1c8bae9891aede6c69dbc73d8e4a5e41', '172.105.247.100', 1668974522, '__ci_last_regenerate|i:1668974522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46167489535dc0a8946970352d836546d4442dbf', '172.105.247.100', 1668974523, '__ci_last_regenerate|i:1668974523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7df1a9e051304bd96558b14c6a975ffd0b7ac79', '172.105.247.100', 1668974523, '__ci_last_regenerate|i:1668974523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ed91b1b69755893c4edf5f79463a71681dd4ad', '172.105.247.100', 1668974523, '__ci_last_regenerate|i:1668974523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b018a5ed88e44a941f3ef8272e4f2cc267826e4f', '172.105.247.100', 1668974523, '__ci_last_regenerate|i:1668974523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22d3fab451c5e3e8deb80a84253cd0f1f5e3e31', '172.105.247.100', 1668974524, '__ci_last_regenerate|i:1668974524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af761549c953b8fe0d61d79453b098ab2906c6b2', '172.105.247.100', 1668974524, '__ci_last_regenerate|i:1668974524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e09f103aeb8f9888676c21f087e9d8d5c3140d', '172.105.247.100', 1668974524, '__ci_last_regenerate|i:1668974524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3cb06b5b20cb96358a1e878fa54128156809bb8', '172.105.247.100', 1668974524, '__ci_last_regenerate|i:1668974524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f06a75a661e772d1a6143ac804a89fef288bf6d', '172.105.247.100', 1668974524, '__ci_last_regenerate|i:1668974524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02429b6ca550290d4b083a89e936d8f8a7713f61', '172.105.247.100', 1668974524, '__ci_last_regenerate|i:1668974524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17701a3b6f186a873a1c8941d740c370c27accc', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254b83a8549afd4761a9d0c147903665c001791f', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e36d77b3fc602a4854898805503f97f5ab46e69', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a99a2477acc78dd3199b26947883f2fd603ec3', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a06b2803d61097eb97b793878b7a9d1d2b94eb', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f6ffdff6b0df7822df2856417ca02ef3ec3d8b', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af1ff6b50ae36e4d1975490490f06770f9965d6', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d6dc124cc41dc140d1c11824ffd9c9eb4a4a9d', '172.105.247.100', 1668974525, '__ci_last_regenerate|i:1668974525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54296e204669b308cc37859b094c03234363db53', '172.105.247.100', 1668974526, '__ci_last_regenerate|i:1668974526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63298fafd2dd680efcfc7486d388329a7c973343', '172.105.247.100', 1668974526, '__ci_last_regenerate|i:1668974526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffbce7de121b0fb8787943fbc5cc9ca6e59f171c', '172.105.247.100', 1668974526, '__ci_last_regenerate|i:1668974526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43708af1b8274d755b1a89266ca29292c14d9050', '172.105.247.100', 1668974527, '__ci_last_regenerate|i:1668974527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0272b7b4ac3feefa15854823c1104d770212c1ae', '172.105.247.100', 1668974527, '__ci_last_regenerate|i:1668974527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62e1760f3b0d7508767bc77d5630b359e7fae31', '172.105.247.100', 1668979925, '__ci_last_regenerate|i:1668979925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8e9a25294f74e8c76ce284575855baf6dc8ac9', '172.105.247.100', 1668979925, '__ci_last_regenerate|i:1668979925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50bd2a7cc9114492c2af343a7bbce10e2f51630f', '172.105.247.100', 1668979925, '__ci_last_regenerate|i:1668979925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e4eb1b6625c9d051b312e7ec5cff31167c6d41', '172.105.247.100', 1668979926, '__ci_last_regenerate|i:1668979925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110a74fd5c9e16000b7b079b0d6ea49d7193ec3d', '172.105.247.100', 1668979926, '__ci_last_regenerate|i:1668979926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d581d918ec4884f47cb5b7a64e3624b18d372c', '172.105.247.100', 1668979926, '__ci_last_regenerate|i:1668979926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f0d4d73c87f5e3493e6e38cbd892b45da6cc26', '172.105.247.100', 1668979926, '__ci_last_regenerate|i:1668979926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a71a167b27f53c4fa9e316bd48564490bb5ea12', '172.105.247.100', 1668979927, '__ci_last_regenerate|i:1668979927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ff69ee03067fae101abe060960556aec694680', '172.105.247.100', 1668979927, '__ci_last_regenerate|i:1668979927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07db7220daa5614f6c388728a341bde3e2e38ef1', '172.105.247.100', 1668979927, '__ci_last_regenerate|i:1668979927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5723528f390d446cbacbc5cd89ac92bb06e7590', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c53161ce6926c44651b48ec26469f576d685a7', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f37f22ba4247adfa65fd1e517095c841bbfd0b', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624f7afbf53bef022016107d9d7ef9efc05c8148', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb41a6abc772d54d07b516cd33768aad2dec438', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94532c23c83813cd5c47002a9e46d9260d24ed8', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e8cd8dac82c5a789d3e2099774a5307e59529f', '172.105.247.100', 1668979928, '__ci_last_regenerate|i:1668979928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d62a358267f372fc070e632e3c7e3934c0b43090', '172.105.247.100', 1668979929, '__ci_last_regenerate|i:1668979929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791c5bed92a22bef299574d64d4564a52d17fb66', '172.105.247.100', 1668979929, '__ci_last_regenerate|i:1668979929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777c07fe64630324e0ec2d14dcab5787ed7aedbd', '172.105.247.100', 1668979929, '__ci_last_regenerate|i:1668979929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f25d29caf4945a185dbfa604d051de2436b2023f', '172.105.247.100', 1668979930, '__ci_last_regenerate|i:1668979930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9d77f347a5f95476e4a52ba5f9b6353bf35307', '172.105.247.100', 1668979930, '__ci_last_regenerate|i:1668979930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dca7eb84e7a0b2213522a08b00f19ee883de5d4', '172.105.247.100', 1668979930, '__ci_last_regenerate|i:1668979930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669a2f0076b08696f1e0fdb7c2920ec736471268', '172.105.247.100', 1668979931, '__ci_last_regenerate|i:1668979930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ddb0a7a27c537f99d3a7f965821c955dbb70c83', '172.105.247.100', 1668985918, '__ci_last_regenerate|i:1668985918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03ae4e07a8266cdbd417575c43ef138ebd93040f', '172.105.247.100', 1668985918, '__ci_last_regenerate|i:1668985918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('268fe3157a1eadb3f573b1b9026cb39343b2b316', '172.105.247.100', 1668985918, '__ci_last_regenerate|i:1668985918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6215ebb0fcdff69fa213ab14742419fa9424f1', '172.105.247.100', 1668985918, '__ci_last_regenerate|i:1668985918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a36e76f423de94dd42a67079a406d040ff0a1b', '172.105.247.100', 1668985918, '__ci_last_regenerate|i:1668985918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0fd72be51e27ed0e7d4dbae40193aefae9191fc', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4997df9f243371436aaa408ec3d59fccabb2588', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e508adcca77e68dca2472809b0b2e75c4ca893a1', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155db697277cacd1f327cec132cbc4bbf8d9da12', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b1b34f07837064c7b0dca2bc5c2c3bfdf37f88', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcec5aa867dcddb8bfc5f5f366234a865d0dbec7', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162016f4cf5647e7b789cffd994ac0928b5252c0', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d309cf29a72ceb464e0ff7553632796aca4ddf', '172.105.247.100', 1668985919, '__ci_last_regenerate|i:1668985919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e819e8e44d3c7d95886d672957c4b7f3fb0d4be', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f9c6a1d761d5e87ae5505222e1024c2e01f7243', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0dc1c89bb192da993cc59aec552a8c48215d5f', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a79529a3d72e943a78b2a9f930056f48f4697b', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e5359fc0a7dea400e38e535c8ff0d13c341195', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc790c885653c949ecdda030aea9a018e65595a5', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2af023a13fd0b500e6b676184aae120795d2897', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394cf3d05a85a489d3e148be9a77002e859e17f0', '172.105.247.100', 1668985920, '__ci_last_regenerate|i:1668985920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c4337bfeba212562ce429839f3e0c7b558ee053', '172.105.247.100', 1668985921, '__ci_last_regenerate|i:1668985921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f665bb60a24b72ebf3ae21788f583908b84ebc1', '172.105.247.100', 1668985921, '__ci_last_regenerate|i:1668985921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749688ccd3ed37d8e3d6fe9906c3faa1e3815d6a', '172.105.247.100', 1668985921, '__ci_last_regenerate|i:1668985921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e579ced6b4bd91677e4ab73f354990c2c154908d', '172.105.247.100', 1668991321, '__ci_last_regenerate|i:1668991321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89459290f68da29aafe82c27c672063f4bac8842', '172.105.247.100', 1668991322, '__ci_last_regenerate|i:1668991322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095beedc036c7d80cca07d17c033155215f0f3c4', '172.105.247.100', 1668991324, '__ci_last_regenerate|i:1668991324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6611db951bf773f9887f858e99e99f1603b305b6', '172.105.247.100', 1668991324, '__ci_last_regenerate|i:1668991324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66952224d80a48ff6f41c19b4c60d3c12be5a9d', '172.105.247.100', 1668991324, '__ci_last_regenerate|i:1668991324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812794e25d660fc4439ddff51088de6fdd874f46', '172.105.247.100', 1668991324, '__ci_last_regenerate|i:1668991324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70cccee24afc7dfc893eb5869a71cd6835ea6d9', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f524e01e69d29b3f15b147db6c263da5339deb', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355b0570e3ea980ed01b247bc994e7d3494c4154', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('387231bfe95b44e86948c3679a7e95c54a483d67', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc7f608dcb51ae69079597aa48c6d27df13124f', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39cd9c914577357df2ae9c29c2c23069b7b07412', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c37a3c30a2513190d97363e252a2b461a8c328c', '172.105.247.100', 1668991325, '__ci_last_regenerate|i:1668991325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdefc849def7996e35e83a0d19ec3fdbd7b6551', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0bd272f860791cfd269e5cf21cfffe6036b85e2', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed24ac6b63afa47c5527ff1e81c16139abde9e36', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000587c63c2c411d074b4e415bdc079fea756186', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a051a0b223d3dcd4ab0aa679417d46cd5e98215', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448424468e61f374beaca1817f56b8853fda7e6c', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcee7d48d484722ecb8d647bec049fde5b970ac6', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5b7a79161ea7a538a6808675c4277b72bd2332', '172.105.247.100', 1668991326, '__ci_last_regenerate|i:1668991326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f25b4a0020ce8421ae607b0979573240b44ac0', '172.105.247.100', 1668991327, '__ci_last_regenerate|i:1668991327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722fd590adf06a53cd7f0938e0dbb32fa41b948e', '172.105.247.100', 1668991327, '__ci_last_regenerate|i:1668991327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb39c5b58dadfc095a92961f9887af4e338b696', '172.105.247.100', 1668991327, '__ci_last_regenerate|i:1668991327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda00a69819f090a1f4d9f85ebd86f3db2166dfb', '172.105.247.100', 1668995524, '__ci_last_regenerate|i:1668995524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdd942b145854e78b3d7c6c2056d4f60b3e00e9', '172.105.247.100', 1668995524, '__ci_last_regenerate|i:1668995524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d3f5bf8c4f0f27340a31aa027d38f7e5b2d7fc', '172.105.247.100', 1668995525, '__ci_last_regenerate|i:1668995524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ecfedce80a1367bde33da0fbe40749aaf8717d', '172.105.247.100', 1668995525, '__ci_last_regenerate|i:1668995525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e0a48161680e4bb489c6bd3cd0f4901231afc9', '172.105.247.100', 1668995525, '__ci_last_regenerate|i:1668995525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b009418d95372f7be71fd9994e61ea16d0e087', '172.105.247.100', 1668995525, '__ci_last_regenerate|i:1668995525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49bac34a461469c8bc5201f74a3ce8af6b4eb5ac', '172.105.247.100', 1668995525, '__ci_last_regenerate|i:1668995525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e906fe3c5f2cb3fe7ee3a42479644488b5077df6', '172.105.247.100', 1668995526, '__ci_last_regenerate|i:1668995526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50e35f61dd3f565f36a252ebb5f61ea28269b0e', '172.105.247.100', 1668995526, '__ci_last_regenerate|i:1668995526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48e34c32ac87d1033e7227053089ab8c782a31a', '172.105.247.100', 1668995526, '__ci_last_regenerate|i:1668995526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ada2160afe5ab6e456a8cddcbb57c8bbb4d781', '172.105.247.100', 1668995527, '__ci_last_regenerate|i:1668995527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254d94bc049096764b785242611dd51a35c4c7a8', '172.105.247.100', 1668995527, '__ci_last_regenerate|i:1668995527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e604e68d72dbe6f6a80e2e1a6fe8a2806196abc', '172.105.247.100', 1668995527, '__ci_last_regenerate|i:1668995527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('615a981d7fac7a5409c74952487210843082cb7e', '172.105.247.100', 1668995527, '__ci_last_regenerate|i:1668995527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c9efe030022c89b6c15c3dadf06a7e2f9a71bd', '172.105.247.100', 1668995527, '__ci_last_regenerate|i:1668995527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ee67c3c4690d0fa7803df73ef9112fc5bc7900', '172.105.247.100', 1668995528, '__ci_last_regenerate|i:1668995527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3edab6596054d43d258a220c98fc75fbf9412b8a', '172.105.247.100', 1668995528, '__ci_last_regenerate|i:1668995528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45812938469a1cd7234c55e1ec6e45efa802cfd4', '172.105.247.100', 1668995528, '__ci_last_regenerate|i:1668995528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0d50875cdee777a8f60c576b7f6c640509648c', '172.105.247.100', 1668995528, '__ci_last_regenerate|i:1668995528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a770efa2f2e0a9fe2aa18e3433d13394177fae', '172.105.247.100', 1668995529, '__ci_last_regenerate|i:1668995528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8180853ef927af1572aa382abadaf72ad2aaa3', '172.105.247.100', 1668995529, '__ci_last_regenerate|i:1668995529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff5d79176d041a4f688f5af00d1a33ce95cefeb', '172.105.247.100', 1668995529, '__ci_last_regenerate|i:1668995529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e05c4aec62f6fc9fc931ffa6ad86f0f49a55ad', '172.105.247.100', 1668995529, '__ci_last_regenerate|i:1668995529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0e0fba20484101996c964850b7b73f5b79d85e', '172.105.247.100', 1668995530, '__ci_last_regenerate|i:1668995530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55eb20477400d4b338b10f432b37b5591278d888', '172.105.247.100', 1669000322, '__ci_last_regenerate|i:1669000322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b45210d11147fba66ba8eb7197151d84b783077', '172.105.247.100', 1669000322, '__ci_last_regenerate|i:1669000322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8833b1a224547a257db1f38139d59830eb6842', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1395c7a1f654e189d7afcd6cc8f009a6467dba1', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a22cece79b7831104fdae3ea75731bbcb8aa3d0', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f442fef8631603a3574534b7804eb5049a0b05', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53bff7fcf346cd3c0d9e7c2fbe5737cb346414b', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92940058936b877f7e363a7304743490df206155', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f541b1219d7488f399b2d85da690dc4f051d556', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8edf6a122a8181c8e44fc89f675697a21dd528ea', '172.105.247.100', 1669000323, '__ci_last_regenerate|i:1669000323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04be236ad69bfc5d02b4789b7c56e020ef6c647', '172.105.247.100', 1669000324, '__ci_last_regenerate|i:1669000324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05765889a0ddbdba2c8035f2024af386d8e87397', '172.105.247.100', 1669000324, '__ci_last_regenerate|i:1669000324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaeeb2ced1fc21b44e8942298e0204d14ac1d300', '172.105.247.100', 1669000324, '__ci_last_regenerate|i:1669000324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9eebef8f8dc6dfdbb71d455e7c463d99f2d565', '172.105.247.100', 1669000324, '__ci_last_regenerate|i:1669000324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd7112231a2aaf1436f487bb56b4a79ddbeda12', '172.105.247.100', 1669000324, '__ci_last_regenerate|i:1669000324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69362e0a0a95e0704d99287ca8de9907ce6d5ebb', '172.105.247.100', 1669000324, '__ci_last_regenerate|i:1669000324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61e3074def899f61ce1849a8768f7d5219f6e45', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae6891c985979887e655a6f4878e5a51cef7109', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac98c110b405939ed7c08e8c90ea092ed319bf2', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7744b6eea42d86651572981be5f5d3c8386a4a0f', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25211a3c564688449392f43ba95a94adf7b93962', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d81e2409ef5d521a43267c377b38e3b92aedb911', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28bf2832ee14a5b8d35a41d55ffaa760e45e3c86', '172.105.247.100', 1669000325, '__ci_last_regenerate|i:1669000325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4726281ee938875ba653ad60f47184cac5324b6a', '172.105.247.100', 1669000326, '__ci_last_regenerate|i:1669000325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ab255e14e8dc484927e45432181aeb339205e2', '172.105.247.100', 1669006926, '__ci_last_regenerate|i:1669006926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f6aa6c4ae2caa8db870d819177881e245c9714', '172.105.247.100', 1669006927, '__ci_last_regenerate|i:1669006927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346b39687aaa1bf3162fb0c3a9422db9f33b0767', '172.105.247.100', 1669006927, '__ci_last_regenerate|i:1669006927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe335208a90c2c451a10f0bed2b64abcd1d5aa1c', '172.105.247.100', 1669006927, '__ci_last_regenerate|i:1669006927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf4b252a22783764d882e7541495434a8a6bab4', '172.105.247.100', 1669006927, '__ci_last_regenerate|i:1669006927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5fb873225f3ca2eb72f5704eac95021b01c0d2', '172.105.247.100', 1669006928, '__ci_last_regenerate|i:1669006928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdde82fb975697bc12fa567687b9ab59f2330a1', '172.105.247.100', 1669006928, '__ci_last_regenerate|i:1669006928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db28327e7bf466f8f7063017a394fcdf7ff86ef4', '172.105.247.100', 1669006928, '__ci_last_regenerate|i:1669006928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39cd8722c441f36bb29887732cc92c555434de0', '172.105.247.100', 1669006928, '__ci_last_regenerate|i:1669006928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('298f3d93186e18b4c4754b31f87d8ca61197cd57', '172.105.247.100', 1669006929, '__ci_last_regenerate|i:1669006929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c563cc2ded413ca06014b7b35852802b69a30c', '172.105.247.100', 1669006929, '__ci_last_regenerate|i:1669006929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63af6de32c1ca75adf39447b37b0935eeeb2a633', '172.105.247.100', 1669006929, '__ci_last_regenerate|i:1669006929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb5c83494a8867a954aa355c6bb7db234300a4f', '172.105.247.100', 1669006929, '__ci_last_regenerate|i:1669006929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae32466cabc7a19fca54e771cd9a030834a1f9e3', '172.105.247.100', 1669006929, '__ci_last_regenerate|i:1669006929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fbca4b6995ef9bbb1b2539fe2f6628f4f4cfc51', '172.105.247.100', 1669006930, '__ci_last_regenerate|i:1669006929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d063d8b939842de39a67c41843bfe91aea55cd4', '172.105.247.100', 1669006930, '__ci_last_regenerate|i:1669006930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a836476dd5ceee4936cde34752efc91e59891583', '172.105.247.100', 1669006930, '__ci_last_regenerate|i:1669006930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea813e6ed944bc4b80447ae7400a210685412fb4', '172.105.247.100', 1669006930, '__ci_last_regenerate|i:1669006930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ca2271247a2c14589f68cbea45e425b9df8709', '172.105.247.100', 1669006930, '__ci_last_regenerate|i:1669006930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7cf95a48afe7852654424e78aee323b22fb1cd', '172.105.247.100', 1669006931, '__ci_last_regenerate|i:1669006931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e281734dc0e4e972b4a106942c4a7f52b550224', '172.105.247.100', 1669006931, '__ci_last_regenerate|i:1669006931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb814c37ad8bdadea49f2a7cbdb22d3f9ab7a36', '172.105.247.100', 1669006931, '__ci_last_regenerate|i:1669006931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb33394e1b2c0f3d95b8fabc8a5b07bcc2fe86a', '172.105.247.100', 1669006932, '__ci_last_regenerate|i:1669006932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('762fe5c94d6f718df69e3effce45208fb3e83f08', '172.105.247.100', 1669006932, '__ci_last_regenerate|i:1669006932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7018b62c0101308161390224a90ff985853c4c5', '45.120.39.90', 1669010858, '__ci_last_regenerate|i:1669010858;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668930511\";last_ip|s:13:\"37.111.216.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669007856;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b602411f0a38a9286edb9023b9ff7d99b78813', '45.120.39.90', 1669013958, '__ci_last_regenerate|i:1669013958;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668930511\";last_ip|s:13:\"37.111.216.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669010875;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d5a8e2e31632a9fcc835d438d3b33cfc05216d', '172.105.247.100', 1669013528, '__ci_last_regenerate|i:1669013528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa36ff707476a5d604f2b44dae0eec5559886fd', '172.105.247.100', 1669013528, '__ci_last_regenerate|i:1669013528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550813b795528828323d102f3d80fb0c53ff24ef', '172.105.247.100', 1669013528, '__ci_last_regenerate|i:1669013528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5f6b9b63bb1355b130e511d46da62a2330e839', '172.105.247.100', 1669013528, '__ci_last_regenerate|i:1669013528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32292a50d0126b9040d6d7b00d3bbfea7e2bfebb', '172.105.247.100', 1669013528, '__ci_last_regenerate|i:1669013528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c57835479840c650795eda725b444b19541631', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5ba94ae51f1a1128c24a510d6bf76665177968', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3943b523e97494706c924c7652ae02dc045a8733', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71d3ffc7a871a265bfd30004ca44607db3ee794', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdf60420a9153c0eb756cfe63f94be3cfff247e', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8094a3702375b7973f0de06126bcafa2f4ff3e1', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb989ede4f1cfcfbf8412f6dd033979f6c18196', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ef352e3acaf2b589a96d8e34d2cfbaa919a715', '172.105.247.100', 1669013529, '__ci_last_regenerate|i:1669013529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56de0b0a8be56c0236cbcfbc77b6076c7567002', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f192c1b69ab350c0bc9ea467b5a286f65d08f84', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07538ca743f5098267bc6d9708839c9a20a44f9d', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8641d89e7f6e90169e3553aab2c2013ae721cd3f', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796a0e7be7b252b168d296fae4947f068c80b3e7', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f6f4a3da6cbdd13f80afebcb9334adc235329b', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cfe96034b359666715de17a6735a1f84ad7a867', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a814366bba01c4a398101a64c1be87be7a0629f0', '172.105.247.100', 1669013530, '__ci_last_regenerate|i:1669013530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44ed600e89fdc4ab694159d8ed45a2a73d7868d', '172.105.247.100', 1669013531, '__ci_last_regenerate|i:1669013531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e43ee494e81faf85af991f7c5fc9ef073f1eb3dc', '172.105.247.100', 1669013531, '__ci_last_regenerate|i:1669013531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa76344f3e6bf0e28c57c0aa5151927eedf6cb1', '172.105.247.100', 1669013531, '__ci_last_regenerate|i:1669013531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390c9f8505b889a9d17197b2f52258650e3b14bc', '45.120.39.90', 1669015905, '__ci_last_regenerate|i:1669015905;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668930511\";last_ip|s:13:\"37.111.216.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669015899;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9038a5bdc41f7d21f004c6113c923fb96b013731', '45.120.39.90', 1669015968, '__ci_last_regenerate|i:1669015905;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1668930511\";last_ip|s:13:\"37.111.216.65\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669015899;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48e3ca3f52bf17a99414d441f56332d64970726', '172.105.247.100', 1669019539, '__ci_last_regenerate|i:1669019539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e351f5f61ea51c3265638ef12076b8a10e765e46', '172.105.247.100', 1669019539, '__ci_last_regenerate|i:1669019539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16acb07c5a15a68d5c980ef0b01b0bd9c4e0a4de', '172.105.247.100', 1669019539, '__ci_last_regenerate|i:1669019539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1fe3698e13eb55d292313b16588ecbfca9e4a0', '172.105.247.100', 1669019540, '__ci_last_regenerate|i:1669019540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e939e2d13d8b39e0cf3e746fdfeb18687b8bd81', '172.105.247.100', 1669019540, '__ci_last_regenerate|i:1669019540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce535326af898497352612d8ee393ac6e4b11d0', '172.105.247.100', 1669019540, '__ci_last_regenerate|i:1669019540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a861bd274fb07048e453d694664a2a2258d2481', '172.105.247.100', 1669019540, '__ci_last_regenerate|i:1669019540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cedb09b4d41b6bdd829524c3ca011c2dadb28903', '172.105.247.100', 1669019541, '__ci_last_regenerate|i:1669019541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('106c307e2dee695f4f67813995340c46b60bb42f', '172.105.247.100', 1669019541, '__ci_last_regenerate|i:1669019541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a1da282d1290a26b9e3b24365abe42f91b6b9e', '172.105.247.100', 1669019541, '__ci_last_regenerate|i:1669019541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf277e905be6cb6fa2be60f467c9caffdb9a9a7', '172.105.247.100', 1669019541, '__ci_last_regenerate|i:1669019541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166c341c659cb848b4e374781a4db7159935ad01', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13853ac0ddf7401d09e0b04d0a4d9cbc9866e348', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b841cd9b3db80211fec5d0e171178a0e65e38c0', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4bb09693a18bf51f8720a52723f006b6d37a1b', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983ab66f13cf154804dfb72c9f5a4fc273cdc992', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42bccf4a45dc46f51a24bd30b4275baad80a2fd', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648c5407f96164449f018825893a8b738b1e4034', '172.105.247.100', 1669019542, '__ci_last_regenerate|i:1669019542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e84afdfee828d6a010a050fd4fad8e6fbe1341a6', '172.105.247.100', 1669019543, '__ci_last_regenerate|i:1669019543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01755fa241c0e36a3b3c3c0a304ea11069cc81b2', '172.105.247.100', 1669019543, '__ci_last_regenerate|i:1669019543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0693a76b42c36a88e3504a09cc6a243ad37f0c1a', '172.105.247.100', 1669019543, '__ci_last_regenerate|i:1669019543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1392eaebd67119f904d989829d7a083527a6e8db', '172.105.247.100', 1669019544, '__ci_last_regenerate|i:1669019543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e2e9c6821ae4936aa4fbe48ccfe7d9f059540e', '172.105.247.100', 1669019544, '__ci_last_regenerate|i:1669019544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe0f029d2427095a3cf7376b5bae6ac1bdd2bf3', '172.105.247.100', 1669019544, '__ci_last_regenerate|i:1669019544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423e8360494633b16c45ef7e6b7149ee4bf00117', '45.120.39.90', 1669028201, '__ci_last_regenerate|i:1669028201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669028197;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d165570345c4f4ec8deb7e1c35cd00e097f0338', '172.105.247.100', 1669025533, '__ci_last_regenerate|i:1669025533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae30c85d1739d9790ad7e403b450d9e7b987e35', '172.105.247.100', 1669025533, '__ci_last_regenerate|i:1669025533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1d1991a1dd0521a7e885f459d2a146cc505e68', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66c4deb7db2cddc7f810db7cb734ebd8e66cda3', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6c98ffdea7afc6a0d6a2ad2be4aae01332972d', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2a9f8e529ab13e96126357ce4ac99fc6daa1d6', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f31a61a178492be5af763e76386c51b0192fdc', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d855155bdf66816ba2e2334216edc7b118283c1', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a4f7c2356ff0a5bdac25641a947d58dd59d6de', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9d7b7d3d8a522e1291e5ab05a314550517e94c', '172.105.247.100', 1669025534, '__ci_last_regenerate|i:1669025534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e85299ac3363ea341b02789ba2fbc0fd9f1302', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54533f41e8e7cec2df65f3870b47e2a63513490d', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3084ac15663c466fb5d5e618d88e80d8b0d22c37', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b1ae0d2156b70b8315e0db9b3d2a9611f0d15e', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07a403c9eabb1f332b1bc4f6b1e446f44ab1e10', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c4c6a59779a145a26e02638293488cdb5470a5', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4447c0e295e6e32d3d3d4df77c21d4366a1abc7', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64f1b54a053912af1abb83ffeb4719a06970479', '172.105.247.100', 1669025535, '__ci_last_regenerate|i:1669025535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64261da58ee17c34a05979a517149923373a843', '172.105.247.100', 1669025536, '__ci_last_regenerate|i:1669025536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f8447a90a9444ac3bd7f1fd8b5327f0dc4dc31', '172.105.247.100', 1669025536, '__ci_last_regenerate|i:1669025536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e400441b060bcaf472edf992d2678b8fa83dc7', '172.105.247.100', 1669025536, '__ci_last_regenerate|i:1669025536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879ea29fa738bba0ba1261c10df066412704787b', '172.105.247.100', 1669025536, '__ci_last_regenerate|i:1669025536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c36e783dbd52cfe5d54c4e685f51adb93c3698f', '172.105.247.100', 1669025536, '__ci_last_regenerate|i:1669025536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06a96af61beb9fcd679785e13861d9e841645b2', '172.105.247.100', 1669025536, '__ci_last_regenerate|i:1669025536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06584c201a2e624e619b3e0b89425df91f223bf1', '45.120.39.90', 1669030087, '__ci_last_regenerate|i:1669030087;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669028201;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468767e7f6b946da699731b77ca3411db4c85b92', '45.120.39.90', 1669030671, '__ci_last_regenerate|i:1669030671;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669030109;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cddfbfef1c1421f49e58d2ded41023e61272b102', '45.120.39.90', 1669036272, '__ci_last_regenerate|i:1669036272;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669036089;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9596d435c4f85b50b492114511f4b81495b7ef5c', '172.105.247.100', 1669031548, '__ci_last_regenerate|i:1669031548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b22e828460a1d175b22be92d62d9fc9d18d529', '172.105.247.100', 1669031549, '__ci_last_regenerate|i:1669031549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2cc98b5a43a1fa9b5a034190628eb05b853038b', '172.105.247.100', 1669031549, '__ci_last_regenerate|i:1669031549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac58d620c6ee776138491db27eb06391aba263e6', '172.105.247.100', 1669031549, '__ci_last_regenerate|i:1669031549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01793bf2a3c961d4b313ca444fc6d2308af189a', '172.105.247.100', 1669031549, '__ci_last_regenerate|i:1669031549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f021bfee71827811df3145f6c776e1f4a4b6de5', '172.105.247.100', 1669031549, '__ci_last_regenerate|i:1669031549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0113cdcef578470fd7ba14a3b280d5a0941de552', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6965ef3ca9d9b1c10e90e7ed9903f275c44aa59b', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24648b6ac4392cc34c7ebcd6042f67a1827cf5a1', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483e0f73dd79046446e2d8eb10733286d96d92d1', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e924792f18d9bd3af16d3ecbb8eed467b35c8e', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c7ec42ed7132a6fd393c63280ca1e0035f2fdc', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5d719dd1b3b162b032765c7363a899e4e22c89', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08bbfec5cc4d0de5940c97b2a04e64dd34c9c820', '172.105.247.100', 1669031550, '__ci_last_regenerate|i:1669031550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634b8395586eda413b111bb97e61e78399093935', '172.105.247.100', 1669031551, '__ci_last_regenerate|i:1669031551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beacde30554b653ed9f9740b4f766d49143bc756', '172.105.247.100', 1669031551, '__ci_last_regenerate|i:1669031551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5488d4149cecabd251823115fa0052dd2170e163', '172.105.247.100', 1669031551, '__ci_last_regenerate|i:1669031551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a5eb22b7da821b50ecdb37c53f13949873f93c', '172.105.247.100', 1669031551, '__ci_last_regenerate|i:1669031551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f7b71e0a8e0f7ea68ce9e20d0202def2bde9a8', '172.105.247.100', 1669031551, '__ci_last_regenerate|i:1669031551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4260b5de84ef659f11f626ce1eeb8d2391436110', '172.105.247.100', 1669031551, '__ci_last_regenerate|i:1669031551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c91243bbf51ba753db2799c806e881a1c0d834', '172.105.247.100', 1669031552, '__ci_last_regenerate|i:1669031551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3496254a36d99f946edbc97d79b7105a0b9a18f6', '172.105.247.100', 1669031552, '__ci_last_regenerate|i:1669031551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d3bc44bc7bf369dd14976ed4daae32cb973516', '172.105.247.100', 1669031552, '__ci_last_regenerate|i:1669031552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3dda977144246fa42f30d51abad16a974964edb', '172.105.247.100', 1669031552, '__ci_last_regenerate|i:1669031552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cad5f71db8e5304fdf9f6de3495f25e3fdf7d62', '116.204.230.26', 1669032940, '__ci_last_regenerate|i:1669032940;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668953951\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b1151bf63ea53655cf68e83f0dbadf5835bf5f', '116.204.230.26', 1669033273, '__ci_last_regenerate|i:1669033273;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668953951\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82370ed36b65086e49d6d46839dafdb63fbd3df', '116.204.230.26', 1669034678, '__ci_last_regenerate|i:1669033273;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1668953951\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbfb8de7af3dad80fdbbbfb6359cbef8dad100a0', '45.120.39.90', 1669038410, '__ci_last_regenerate|i:1669038410;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669037818;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd58470781e664bc0bb748fada9524b69a956dd', '172.105.247.100', 1669037530, '__ci_last_regenerate|i:1669037530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0481459d8c73d2e2628f31ded2d4ba54ab08bcd1', '172.105.247.100', 1669037531, '__ci_last_regenerate|i:1669037531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ca89559bdb8fd38af654b9c1cea018d31c7e4a', '172.105.247.100', 1669037531, '__ci_last_regenerate|i:1669037531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08f351d82b18489dbc127bd7c97895ddc86be5f', '172.105.247.100', 1669037531, '__ci_last_regenerate|i:1669037531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b15882c896433e7d06937abbbacf16279033d3', '172.105.247.100', 1669037531, '__ci_last_regenerate|i:1669037531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1b9ca52b254e818a8c5485b9cd33da2da51b9e', '172.105.247.100', 1669037532, '__ci_last_regenerate|i:1669037532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad169d05965cf10813255abd47c24321eef1f0b0', '172.105.247.100', 1669037532, '__ci_last_regenerate|i:1669037532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01614453d479432c03dd94704c14f70e1380afa4', '172.105.247.100', 1669037532, '__ci_last_regenerate|i:1669037532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d1d8d8969ac1aa7c06916a53b908f0376357297', '172.105.247.100', 1669037532, '__ci_last_regenerate|i:1669037532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425a82b0c8b8fd8b6841bcc962af11f932718497', '172.105.247.100', 1669037532, '__ci_last_regenerate|i:1669037532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f9b8162cc5b50c4ded0589c0d91b0d117962a9', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705f53553882b3e02479593082da6adf9eea6e2c', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c24ac7439d55151730c2b8bd8e3bea576753071', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2097d9e9518bbb13252b2cd9d564c28bee6d109', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a1b30b7da4867dd969820fb7b01c684be5683e', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce08c63a3cb184113c273cfaefff64da496cfcc', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3656b202c6c1bd4a40928024ad9f432128ab5689', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5589de9210ad6d42d3e357ef63170f71063e677a', '172.105.247.100', 1669037533, '__ci_last_regenerate|i:1669037533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea9f96f3a8b53410d7b99ebcb1187f39add7f99', '172.105.247.100', 1669037534, '__ci_last_regenerate|i:1669037534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0909b038fb4f2616ee522af3181f4a9e08caf9', '172.105.247.100', 1669037534, '__ci_last_regenerate|i:1669037534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef311b3361af4eb27bccfbfb3d35f49ed851ad4e', '172.105.247.100', 1669037534, '__ci_last_regenerate|i:1669037534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b7e1f582aa15d4f8a19e78b3d9c444ea5c299f5', '172.105.247.100', 1669037534, '__ci_last_regenerate|i:1669037534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6223d758a7b76137c75364e424bcdd0e3d4a5b27', '172.105.247.100', 1669037535, '__ci_last_regenerate|i:1669037535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2f5125080d077e0603ee93b1cc8ee224d282ed', '172.105.247.100', 1669037535, '__ci_last_regenerate|i:1669037535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c5bace8150da3bec4db8928c4c27646774d577', '45.120.39.90', 1669041694, '__ci_last_regenerate|i:1669041694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669038525;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be611f30ef80276dd7cd322a5722fee4eb3a84b4', '37.111.219.176', 1669042221, '__ci_last_regenerate|i:1669042221;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669041782;register_id|s:3:\"255\";cash_in_hand|s:9:\"4080.0000\";register_open_time|s:19:\"2022-11-20 20:30:22\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd7351434073737b61e4d869ee1ea2daa7fd651', '45.120.39.90', 1669042293, '__ci_last_regenerate|i:1669042221;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669007775\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669042292;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e9fa2164e81282de9c3230c216ee977901c6c2', '172.105.247.100', 1669043529, '__ci_last_regenerate|i:1669043529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2984fc1dedc3c082c08ef03d7b7c9c6c3e01f6e1', '172.105.247.100', 1669043529, '__ci_last_regenerate|i:1669043529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f9c99cd07de8a0bd91f6879d57a35cf0d0119c', '172.105.247.100', 1669043530, '__ci_last_regenerate|i:1669043530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6489575e9c7cfe6faa9da8ac1eab0cf5c30ef95c', '172.105.247.100', 1669043530, '__ci_last_regenerate|i:1669043530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d32a9ace771b5311acf4648777a6ff4704c5aa', '172.105.247.100', 1669043530, '__ci_last_regenerate|i:1669043530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f979a6d7c652d02c110fc5aaf16406aa3a4ad1', '172.105.247.100', 1669043530, '__ci_last_regenerate|i:1669043530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d532065a39c5f3b793fb41b930927bab6eb8f07', '172.105.247.100', 1669043530, '__ci_last_regenerate|i:1669043530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0b29e6fe69d0ab292907118d91a595740b17ad', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96defdad96886859ea31b0addc20da76aa9061fb', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01e7df0ba4267f2fd585deb998d50d0b0e313c9', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2832f8babdf1a7005ad6c15ea811690e8fa01876', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8899bb987c3fcb3243a7daaa591448ce958a40', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59dbddf90e701255746f49ac024ec99f4a21ed5', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fa9803684817ba3971e0d24c783e3b86a5186a', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8bc67f500b98837a9d206b2a8b1f362c24f505', '172.105.247.100', 1669043531, '__ci_last_regenerate|i:1669043531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b96308d7cc11b562d9f75fc2ec4f8ca5dc6df93', '172.105.247.100', 1669043532, '__ci_last_regenerate|i:1669043532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c5f3eea78cd877d6521446389528b3f91e6a30', '172.105.247.100', 1669043532, '__ci_last_regenerate|i:1669043532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ca2c72d38e2b7adc5e8baa72f423042b389042', '172.105.247.100', 1669043532, '__ci_last_regenerate|i:1669043532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72584eb6bba904d8b96e99f3c53ee866e095e0a6', '172.105.247.100', 1669043532, '__ci_last_regenerate|i:1669043532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49af78d5bf3aa79006fd8e670762ce54ca2629f', '172.105.247.100', 1669043532, '__ci_last_regenerate|i:1669043532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833ff0e870d16eb5dece7ac1cd3d8eb08606fcaf', '172.105.247.100', 1669043532, '__ci_last_regenerate|i:1669043532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ad3b92abf22f54a94b88e5de46fb38d8e06f78', '172.105.247.100', 1669043533, '__ci_last_regenerate|i:1669043532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc64edb2695f426fbff1728c0b6336dc4b82a6cd', '172.105.247.100', 1669043533, '__ci_last_regenerate|i:1669043533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470b018b655dfc9bd69637fbcaf2a5d37cf5569d', '172.105.247.100', 1669043533, '__ci_last_regenerate|i:1669043533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863cc6ea5c5a10955b295da6e4835c79a8545d89', '172.105.247.100', 1669049526, '__ci_last_regenerate|i:1669049526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f921031064522c935314ac0717eb42596f975748', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4be3e6b0ebde8c28ddf79142588681f232a52b', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776ebf87388e8e1bed30a2453fc7a28de0589bfe', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219c487b030f8d4e0d416f186a902905a02a02b3', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c64f511ea31dd88fc91faa13e15ab3cd18ee9cb', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd500121f8d3563967f63ba152820231cb738c3c', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad1e141036b5fe9e39c25f4e53ba534f183173c', '172.105.247.100', 1669049527, '__ci_last_regenerate|i:1669049527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b7ee59e88e76257cdf71c2a6777157b0487fe3', '172.105.247.100', 1669049528, '__ci_last_regenerate|i:1669049528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aee1b827d508794f4f3502578764b9a7d1aaf9a', '172.105.247.100', 1669049528, '__ci_last_regenerate|i:1669049528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3313c8f36cc584296b6ef6df24999abbe71ce3', '172.105.247.100', 1669049528, '__ci_last_regenerate|i:1669049528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ea2fae45a708f95f049a4543e76f1f2e80d7ed', '172.105.247.100', 1669049528, '__ci_last_regenerate|i:1669049528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752625088667a378c75d4623cd990c4ae82b71e5', '172.105.247.100', 1669049528, '__ci_last_regenerate|i:1669049528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c13357f7bf1e0ed44a44dc1d8b2746196f0502b0', '172.105.247.100', 1669049528, '__ci_last_regenerate|i:1669049528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0b34b21e04160dd065af10916854d3b4ccd0da', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0107632165f6b70221641fa745096583ff9fca67', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09e94a7e64ea811139ffe692f3ec1b6ae9860ce', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9980f7c1d026b18ae032a2e6cf7909f3387d48b9', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c881b4e7861f2d6c64f1604f4ad89a6d01b259f1', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd28aa337bbf095307d7cfc0bc59d14b91808d08', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264853b49c7000e8b1d7cb94a7365f121e61c59f', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be02b0bb64bf29a9f510f7f0a7521aee316aaca6', '172.105.247.100', 1669049529, '__ci_last_regenerate|i:1669049529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478c9ff05b2a748b9570958052590aa9891daec7', '172.105.247.100', 1669049530, '__ci_last_regenerate|i:1669049530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39deb1ef781c7fbd276f7c765f58d0d23c7d2dee', '172.105.247.100', 1669049530, '__ci_last_regenerate|i:1669049530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41be15bbb06ac4b36433f12ba489865894c36232', '172.105.247.100', 1669055529, '__ci_last_regenerate|i:1669055529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92dcd538b98946a1f5cb9e68ee4ff3b03f32ad2', '172.105.247.100', 1669055529, '__ci_last_regenerate|i:1669055529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0e41316960fdb7f6c7f6fdb8f7b8b1af85249b', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489d77776d671c2bca2cabdabc6700ebb9627b5a', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd53142728a11b78899b3d463268bc1cb35a18f9', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d605b695eefd70cbfb32893165bb098cfcc0e359', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c17a8fafac229b43472b7b41a1860ab714411b', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e73077dc2bbbd3b1e6171c9fa3c8a64b7b9c40', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e86745681e3645f8b789203b6610c5dea5d2931', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e852c19f14c7290df414142a0619a009e543354d', '172.105.247.100', 1669055530, '__ci_last_regenerate|i:1669055530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726541a56c693eb5c4cd2ead22c4a57681cc6ac3', '172.105.247.100', 1669055531, '__ci_last_regenerate|i:1669055531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea1645235e02ffea7ef23db110333a60b3c21a4', '172.105.247.100', 1669055531, '__ci_last_regenerate|i:1669055531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2575fe5f67a16b4d7d457c8f90ca2ad8e38b979', '172.105.247.100', 1669055531, '__ci_last_regenerate|i:1669055531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ba04445c9db5ae4433f9eba0921cd2dca10dedc', '172.105.247.100', 1669055531, '__ci_last_regenerate|i:1669055531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('905b414300dabcbebacb02a0044c79bee3f677ea', '172.105.247.100', 1669055531, '__ci_last_regenerate|i:1669055531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42fd6e78a60db5adb4b367a71cf21e88d8684520', '172.105.247.100', 1669055531, '__ci_last_regenerate|i:1669055531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ca3cbd8e89b9d7d8d65c5770cb42b306f49e49f', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4221c4e68e38496e81621b219f0174a70b30d13e', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c9def625cc8040cc506b8ddb8fae77a52e8cee', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ae3bf175414278a7a0d150b9c1eb9c7c7b7671', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e1cd1d3d5c4a8f018b9adbad68359bd22534c7', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4417c9b2f988478acb70e8c73cef27208c110aa9', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b30985e25c916edd759ae7233e926395891fc05', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d75365a1dfa13c413890c2ab0b91e7a8b654cd', '172.105.247.100', 1669055532, '__ci_last_regenerate|i:1669055532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf2044d8d1bfca530f8a1fbfbf098d4878ede7e', '172.105.247.100', 1669061528, '__ci_last_regenerate|i:1669061528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b89a7d6207cc8b3221632ab75eb1f349ddb2a6', '172.105.247.100', 1669061529, '__ci_last_regenerate|i:1669061529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016e0518a607c0f479ec64a9bcd93854c09f2b87', '172.105.247.100', 1669061529, '__ci_last_regenerate|i:1669061529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62fc5c0ff20e95a30f5c47d8d883c2474eb934e2', '172.105.247.100', 1669061529, '__ci_last_regenerate|i:1669061529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e477d899301b983a221967b55668df7eda338c', '172.105.247.100', 1669061529, '__ci_last_regenerate|i:1669061529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9af7b50d9097d85898982235d30f744419b1f56', '172.105.247.100', 1669061530, '__ci_last_regenerate|i:1669061530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd662d35cfb2ab2c4324eb2073dd254bca8baa69', '172.105.247.100', 1669061530, '__ci_last_regenerate|i:1669061530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a616c4231ede19eeae72839fd3b8ccfa3deb594f', '172.105.247.100', 1669061530, '__ci_last_regenerate|i:1669061530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0dfb3401a8e3a3e53ddc724b6d3cc58255f3dd', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288a62550b9fb83f73721e39b33324206399d43a', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8a87aac9324f84c5636e7f91bf2f07ebf0064a', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('704d1381eb4a80efa9dd43f320f1407dae5173fc', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40873cf2a94bf406dc1eb5726a548a874c23d623', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9794d31be980584fe10b93b8116595e110f3e942', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7e44756ddb5f181dd788df67f001c186a15db4', '172.105.247.100', 1669061531, '__ci_last_regenerate|i:1669061531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47b44610220701729e1ba93ead0a659fef768de', '172.105.247.100', 1669061532, '__ci_last_regenerate|i:1669061531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a910910f45adca5054991e7f44d0f6507eda9b8d', '172.105.247.100', 1669061532, '__ci_last_regenerate|i:1669061532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d5c292d18d8f6184b7f0949c2039c4104cf0c9', '172.105.247.100', 1669061532, '__ci_last_regenerate|i:1669061532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94230752e2bbbadad7d536559feffec91f8710df', '172.105.247.100', 1669061532, '__ci_last_regenerate|i:1669061532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9be58b509a66e32c66da20f83cbe011d395e16', '172.105.247.100', 1669061533, '__ci_last_regenerate|i:1669061533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d64b0882ee22eaea80ca30947beda6b4d3c7725', '172.105.247.100', 1669061533, '__ci_last_regenerate|i:1669061533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8eb5a64aa880486dce745c271311636c43030a', '172.105.247.100', 1669061533, '__ci_last_regenerate|i:1669061533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac2d21a8e4d82f655e5db1f2f94628e0447c47b', '172.105.247.100', 1669061533, '__ci_last_regenerate|i:1669061533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5bc386480a7f265133dd4443f67af4015f6ce7', '172.105.247.100', 1669061534, '__ci_last_regenerate|i:1669061534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4a425cd403071fa2bbc015339f46057fa9c97e', '167.94.138.44', 1669062179, '__ci_last_regenerate|i:1669062179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8839594f45fe11ccb3d1da6f14fc81a3b1934c', '167.94.138.44', 1669062180, '__ci_last_regenerate|i:1669062180;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64cb004ad7aed34e0047af74341fd0a2a986e884', '167.94.138.44', 1669062180, '__ci_last_regenerate|i:1669062180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed9943d76ad2c8aef617aa89de8631cbe4a6f68', '167.94.138.44', 1669062180, '__ci_last_regenerate|i:1669062180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbdac06496bce64da6c65ab30ce45bb604981968', '167.94.138.44', 1669062181, '__ci_last_regenerate|i:1669062181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6753871e665cd8abc402dfa2a657003396c4da3b', '167.94.138.44', 1669062181, '__ci_last_regenerate|i:1669062181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba25a5eebee0dccc6b67911f60aaa7edc7ffda47', '163.172.180.25', 1669065113, '__ci_last_regenerate|i:1669065113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b78efca58c2893ef10d699853e04d7df9853fb17', '172.105.247.100', 1669067535, '__ci_last_regenerate|i:1669067535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28d46e505862727f65e978203579c3466384dec', '172.105.247.100', 1669067535, '__ci_last_regenerate|i:1669067535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f30fe1c4b52182497d37cd7c89b8bec6120b9f', '172.105.247.100', 1669067538, '__ci_last_regenerate|i:1669067538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4456ec83fa6fd1a789061efe31c083b6e10b4d71', '172.105.247.100', 1669067538, '__ci_last_regenerate|i:1669067538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88389513562f1adeb7b9312d4bccd9d7ae49dc86', '172.105.247.100', 1669067538, '__ci_last_regenerate|i:1669067538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3ff227d0f14f85dd05938226c7a46d0c3738279', '172.105.247.100', 1669067538, '__ci_last_regenerate|i:1669067538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2ebae521095fe6ae2f439cbb74eb7821baa5f6', '172.105.247.100', 1669067538, '__ci_last_regenerate|i:1669067538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472166c753a1484d3a4ee17d17c2e193d983bd51', '172.105.247.100', 1669067538, '__ci_last_regenerate|i:1669067538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ffe04d73a489dbd2014d4921dce274077bcad1', '172.105.247.100', 1669067539, '__ci_last_regenerate|i:1669067539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec6d4171d2d6dd4e7d748370770e7e17f3933c8', '172.105.247.100', 1669067539, '__ci_last_regenerate|i:1669067539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8535c8af0a248be9a88697b67a03ee9c7b2e2d8', '172.105.247.100', 1669067539, '__ci_last_regenerate|i:1669067539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295e054e0a472d8b37db0c54c028292956ccf061', '172.105.247.100', 1669067539, '__ci_last_regenerate|i:1669067539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82f5164968f6bf28fc9da60f7c7aa78e1dde258', '172.105.247.100', 1669067539, '__ci_last_regenerate|i:1669067539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7634f678244b64b8672c19a829c3742512f4b0dc', '172.105.247.100', 1669067539, '__ci_last_regenerate|i:1669067539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb84bac3dfb4aab76c7474f1659c7503e7474e6', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c604b0a681b32a2b67dc696b39bc9368df8b421b', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fcf3771ecc1f27cbbdad5223bac7e395376b4f2', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d686414409e276d392c351245067c9a706130d3', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30216f3ed619484a8e0c21865590aa8f6c2016a8', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b51ec945102ae12a8db4f0ace9d3ad52ec5fa5', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15978a6155f428ec934ab915629c171668c57a3d', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad3b426c308157ce2c9699b49321bde7b0d3b52', '172.105.247.100', 1669067540, '__ci_last_regenerate|i:1669067540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27128dd60217fa0fcf9707d1b9ab197ca6b9ac5b', '172.105.247.100', 1669067541, '__ci_last_regenerate|i:1669067541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0523ff3335905de3797683a0d478e8de5f586fda', '172.105.247.100', 1669067541, '__ci_last_regenerate|i:1669067541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3dd124609550c4e64333a99b530c33a58d2d542', '172.105.247.100', 1669073532, '__ci_last_regenerate|i:1669073532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6214943367d7595ef0c41e10eab97a6539f572d1', '172.105.247.100', 1669073532, '__ci_last_regenerate|i:1669073532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447637a4e864411ad0442260e214c049006603de', '172.105.247.100', 1669073533, '__ci_last_regenerate|i:1669073533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba6b6f903b765c099b022453f38784a1a5db7e2', '172.105.247.100', 1669073533, '__ci_last_regenerate|i:1669073533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5227ffe51c19825e888196ee5b2d92ddd3dbbc79', '172.105.247.100', 1669073533, '__ci_last_regenerate|i:1669073533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db65e35eee5a9d54f6562bb81561342400408bf6', '172.105.247.100', 1669073533, '__ci_last_regenerate|i:1669073533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7faa750870f83be64492be32d25181fa17bc0581', '172.105.247.100', 1669073533, '__ci_last_regenerate|i:1669073533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a04e2f4745514b024d45b41cd4b03cde3ff6f05', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32efb9a199824916d0fdb86a631e857eb47e4135', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f231dcbe32fd8b6a2c1e888141a3873b0b8fd8ba', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01934754700a5ebb42689d138936157a4f393400', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b117a0269edcdfa0e9d43ae9f213a296c74d18c', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ecbfaf66dbc51accfdf7ba93aa4e48da586c1bd', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e121a3fa7f497ce3497f0b9af26356ea2c19f1', '172.105.247.100', 1669073534, '__ci_last_regenerate|i:1669073534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c8f34c2229a3d56da9fb7ffda2a6ec314dbc56', '172.105.247.100', 1669073535, '__ci_last_regenerate|i:1669073534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a3191efb177e38e950befb133a22b436830209', '172.105.247.100', 1669073535, '__ci_last_regenerate|i:1669073535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f488f7940bcdc850bc75c67e2826b41b8ddc064', '172.105.247.100', 1669073535, '__ci_last_regenerate|i:1669073535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6069d622013284de37d373cd841145d74add1420', '172.105.247.100', 1669073535, '__ci_last_regenerate|i:1669073535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b75bc03bd619130c4f3f1ae55774c3b931c51ea7', '172.105.247.100', 1669073535, '__ci_last_regenerate|i:1669073535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab1f4d200a6bf149b4988082b5974375cb881af', '172.105.247.100', 1669073535, '__ci_last_regenerate|i:1669073535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ada722bf474589dc5025efb241edaa06b55e3c8', '172.105.247.100', 1669073536, '__ci_last_regenerate|i:1669073536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d473ce0621e2dd56f49574a1bf12a6e8372c82', '172.105.247.100', 1669073536, '__ci_last_regenerate|i:1669073536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c730688668150e63f8554f7c2b05c928733aa44c', '172.105.247.100', 1669073536, '__ci_last_regenerate|i:1669073536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983ec5b6263066a67bb5221e7be59201967e9053', '172.105.247.100', 1669073536, '__ci_last_regenerate|i:1669073536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09d26322cf1e4e96070512d7c36c0e2d143311f', '172.105.247.100', 1669080125, '__ci_last_regenerate|i:1669080125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dfd2389fc96b90aecec9b8e41ae1936414ec6be', '172.105.247.100', 1669080125, '__ci_last_regenerate|i:1669080125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9333549394c44646c73ca6ffef5f9266f5fd28fb', '172.105.247.100', 1669080125, '__ci_last_regenerate|i:1669080125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f428ee1c5d14b9c083796c418c4ca4f1dee235fa', '172.105.247.100', 1669080126, '__ci_last_regenerate|i:1669080126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0c928bb8c0fd21ed4e82a87643c4e6e0bf75484', '172.105.247.100', 1669080126, '__ci_last_regenerate|i:1669080126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c647582509e79460ada00a5b7cde800f4c5cb6', '172.105.247.100', 1669080126, '__ci_last_regenerate|i:1669080126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f9659aba1a96cef7a58dd1db9d481a9be961473', '172.105.247.100', 1669080126, '__ci_last_regenerate|i:1669080126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ea73f601c7b13ede64166bad06cfb336a92b76', '172.105.247.100', 1669080127, '__ci_last_regenerate|i:1669080127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0ed40fb55994b92e4a4d7bcfed3c8057082518', '172.105.247.100', 1669080127, '__ci_last_regenerate|i:1669080127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155f024cd5e28c1a56eb5d1657dc2b8f1a8da5f3', '172.105.247.100', 1669080127, '__ci_last_regenerate|i:1669080127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052c4f35a8bdf3b4b9741d792aeb07c9ea21ae9d', '172.105.247.100', 1669080127, '__ci_last_regenerate|i:1669080127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea2e70567f2ccecc7a730939b3c31421f5671c5', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f797d114ee138cfddc01e5f5b709aa10a192dd', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc951115953ba8b2e118921419f35f138c1ccfe', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070fabd3cb20626fffdca673163624c500f661b7', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05152a9916b53043de6f55546c7750d004f221a9', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93934993b41c285cf0b1dcf5adadaa5ec7e4368c', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94de26e2f28efa38262ccde4ddfd7569e31148eb', '172.105.247.100', 1669080128, '__ci_last_regenerate|i:1669080128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3e3a8fcc35fcfdd2548be6a5fb2ffe44473729', '172.105.247.100', 1669080129, '__ci_last_regenerate|i:1669080129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b43083f9870819a33027115f29c3169b8e3a4f6', '172.105.247.100', 1669080129, '__ci_last_regenerate|i:1669080129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde8bc7559c51184beccd7e399033830777179cb', '172.105.247.100', 1669080129, '__ci_last_regenerate|i:1669080129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8db74f155a3477ed3ac93a866d7dc4d5e540488', '172.105.247.100', 1669080129, '__ci_last_regenerate|i:1669080129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ded01124086998e0a4a334f6324195b62c63b2', '172.105.247.100', 1669080130, '__ci_last_regenerate|i:1669080130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861cfbb9800e49d6b2d269c86384d2ec0a35be1b', '172.105.247.100', 1669080130, '__ci_last_regenerate|i:1669080130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070684ffa565b49eb26cfbdf8135d87778e27950', '172.105.247.100', 1669086139, '__ci_last_regenerate|i:1669086139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf66710aa1f9df9798c4718623cdafff0f41c2ed', '172.105.247.100', 1669086139, '__ci_last_regenerate|i:1669086139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9922de31eb2b8b381ca99c063e1eb6c6f481dbfc', '172.105.247.100', 1669086140, '__ci_last_regenerate|i:1669086140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162e374f00986caf92dd271a0cb76a7998f85938', '172.105.247.100', 1669086140, '__ci_last_regenerate|i:1669086140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e9fd907ee703f2fe539433db92db3bc47fc7e0', '172.105.247.100', 1669086140, '__ci_last_regenerate|i:1669086140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8a560bcfa05d133860cef830a9d09f895bcf5d', '172.105.247.100', 1669086140, '__ci_last_regenerate|i:1669086140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b89ecffcbd2779b6c57d527e8ac382be20da602d', '172.105.247.100', 1669086140, '__ci_last_regenerate|i:1669086140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d2f5f583a01aad1b58c95d8ecc420114218434', '172.105.247.100', 1669086140, '__ci_last_regenerate|i:1669086140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8542d94e6f8b9e9fe8ff17ac327631bde8e87978', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e58e59d1448cf13fca9e396a59c26dfb58e7f1', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c75dd7a347767720f595def5c4790f240aedf5', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9972f3fa998f70d9120c93ed44c57e82e86ea9', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3785f655cce27a7f3477a774434ac7ca01e5e00', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca4e4048e716f293a637e591595a76db6e49a320', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5270d2487f0684f53da394caef871b494e0b5d2c', '172.105.247.100', 1669086141, '__ci_last_regenerate|i:1669086141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f76c953525608b401ae280c88f9791d2f9ad742', '172.105.247.100', 1669086142, '__ci_last_regenerate|i:1669086142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3b386bf0c7fcb72f4c81e8392fd1892d295a9f', '172.105.247.100', 1669086142, '__ci_last_regenerate|i:1669086142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb599167d6eccbd1d8d2e13d881ae450de539f2', '172.105.247.100', 1669086142, '__ci_last_regenerate|i:1669086142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6358dce28e3e0fc905341970133a0d488eb12489', '172.105.247.100', 1669086142, '__ci_last_regenerate|i:1669086142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab39c1f94d5af50c9c418dff013eeba3b7a7654', '172.105.247.100', 1669086142, '__ci_last_regenerate|i:1669086142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4316d89c689c2d724ffca64cbb2aa648df1536', '172.105.247.100', 1669086142, '__ci_last_regenerate|i:1669086142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897412c78ae1bdb25554bc52c9fdb972ace7d11e', '172.105.247.100', 1669086143, '__ci_last_regenerate|i:1669086142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd20b3a474d75e08ea4634a201e0446d2f1241cd', '172.105.247.100', 1669086143, '__ci_last_regenerate|i:1669086143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358658b017522d07f8cfb41e4845bc67407c831d', '172.105.247.100', 1669086143, '__ci_last_regenerate|i:1669086143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a437289925a856aa09831951d3ef7f2db9f7e24', '172.105.247.100', 1669092726, '__ci_last_regenerate|i:1669092726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266ba777bed899d496d579b8a8b86886e3405433', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf3370ded8f11eb86df92f9a4287e8a2c7de36d', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0957b274198ba4cc24bc4f6539b27fb44f1b329b', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775f534828570811b9c12ac1eba703de40875965', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83a6265590a302f7a08af78e42f6a423e621c33a', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a31460f8d945316335ea988c5f8a9d80f88961', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c688617f502182e33e8bfb1b82663117b89fda29', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2149380426e625191eb50ec13a9bb457059b1023', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39925b23a93308b42efdc8cabbcae341a6b01c99', '172.105.247.100', 1669092728, '__ci_last_regenerate|i:1669092728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ee5374139dcafa10c5ec178a75236fb8c388fc', '172.105.247.100', 1669092729, '__ci_last_regenerate|i:1669092729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24418a222975bfc548e4546a4c58c179683e607d', '172.105.247.100', 1669092729, '__ci_last_regenerate|i:1669092729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adedd977d3b83407b186396e112769294582c7f4', '172.105.247.100', 1669092729, '__ci_last_regenerate|i:1669092729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12057cfd7062d8da0dc037310353216e57290db6', '172.105.247.100', 1669092729, '__ci_last_regenerate|i:1669092729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a3d80b56b7cf069b5f94f41b49f3bf45f9988ee', '172.105.247.100', 1669092729, '__ci_last_regenerate|i:1669092729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0add67c80d5db09eb4d50789f85aadf433de56', '172.105.247.100', 1669092729, '__ci_last_regenerate|i:1669092729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7b857159786d0299747ac937c91656c15aa06f', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc54a8c02d71ff713e5a1f815f17eb6646e7cca', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a87cc4926b13c28ef4a68955fee9b36515597b', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a984c73ce3100ba947cf401f691d510dcea0e366', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64feec7b59e7668d6c0f922f612363335b25830b', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef92350dc53d3ae4a25eb30640b688191cd1c43b', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad916e5b9dfc19701e29bc942747552371ec5671', '172.105.247.100', 1669092730, '__ci_last_regenerate|i:1669092730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5292ca4958acc8b54ef03d489637cc85077025', '172.105.247.100', 1669092731, '__ci_last_regenerate|i:1669092730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22dacba40e12b118099da3677a6173a93622633', '116.204.230.26', 1669093929, '__ci_last_regenerate|i:1669093929;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae3320a31e81cd27f4cd879264c3f1d83694888', '116.204.230.26', 1669094241, '__ci_last_regenerate|i:1669094241;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e75cc5ea2ea1d749ce752aaa7ffbd727416a6d6', '116.204.230.26', 1669094555, '__ci_last_regenerate|i:1669094555;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3822feafa25ba0d052fc447ecaba5101778b9cc', '116.204.230.26', 1669097802, '__ci_last_regenerate|i:1669097802;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e707dc68b0f6498355e7fb91554be8ea2a86a93f', '45.120.39.90', 1669098144, '__ci_last_regenerate|i:1669098144;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669098138;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('083af865e5293037360011ba15622e5254438166', '116.204.230.26', 1669099308, '__ci_last_regenerate|i:1669099308;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6265173e29441a1d6e4c1d5001b100a526d54441', '172.105.247.100', 1669098138, '__ci_last_regenerate|i:1669098138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0466ea3b1bc60e0cd905338ed3edbc770ff4fd6e', '172.105.247.100', 1669098139, '__ci_last_regenerate|i:1669098139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3e4fc536a96a8d8837c2459e84fbd478990291', '172.105.247.100', 1669098140, '__ci_last_regenerate|i:1669098140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c7c15ffe292f48224e42ec12796c14fdb0be4a', '172.105.247.100', 1669098140, '__ci_last_regenerate|i:1669098140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1ccf51936f1cc134fc6c734d020c63d67fed6e', '172.105.247.100', 1669098140, '__ci_last_regenerate|i:1669098140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e3626fee3a4f6d08e6469379ecc29da11d43d7', '172.105.247.100', 1669098141, '__ci_last_regenerate|i:1669098141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4cf8e1b097c3d386b884c63d18aabe1dd6c3d8', '172.105.247.100', 1669098141, '__ci_last_regenerate|i:1669098141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('591416f5d757585fee7e4468ba10f056af1a8497', '172.105.247.100', 1669098141, '__ci_last_regenerate|i:1669098141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b121495b4bf3f4efd6fad3f0b62c2d6c09a155ea', '172.105.247.100', 1669098141, '__ci_last_regenerate|i:1669098141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca96f8c3c52b9fa751f3127126132788881b8e2f', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04b2b045fc3d3bd63d32258d81c6f53e4ba89322', '172.105.247.100', 1669098141, '__ci_last_regenerate|i:1669098141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2c1116b2c8270b65f3dbef084f2da7db1d78ad', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f4f267470429db1bb58b507afbd3f845213585', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b798db5517f7a242e8c4646c5b3cb4653dc8e8a', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6176d324a3eac7d6926a24124ea9772b7ab1a218', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da6c55f9cd290b5f4cd50715361a0a39e0cf8a5d', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa9496ee98d6181bccadf6fde3ebd09bee28e9a', '172.105.247.100', 1669098142, '__ci_last_regenerate|i:1669098142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6045d5d36a3d5d24db207f27850fd79e7d1343a', '172.105.247.100', 1669098143, '__ci_last_regenerate|i:1669098143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22681e0abd7d7339824c00c1f9c65fe2b6ed70a3', '172.105.247.100', 1669098143, '__ci_last_regenerate|i:1669098143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fdb8e1011f1e5a338d6629bfc14c01f3bc7d77c', '172.105.247.100', 1669098143, '__ci_last_regenerate|i:1669098143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aba0b40f190cc358e8cbd2f73fd27bb91921d70', '172.105.247.100', 1669098143, '__ci_last_regenerate|i:1669098143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c25f16471878a52cd34edd994416f6b40fec10e', '172.105.247.100', 1669098143, '__ci_last_regenerate|i:1669098143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0784c00015347c7d3a7c8be85102e70ac00b07be', '172.105.247.100', 1669098144, '__ci_last_regenerate|i:1669098144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4a2aad3d209156b9c5b1791045c5d9c9ad622d', '172.105.247.100', 1669098144, '__ci_last_regenerate|i:1669098144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1abe01b606a2a62a593c843e63d2f293ffc47525', '45.120.39.90', 1669099889, '__ci_last_regenerate|i:1669099889;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669099871;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a2f115c8f2e1e308ae785056f1458153af026c', '116.204.230.26', 1669099870, '__ci_last_regenerate|i:1669099870;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40bb13e62524b73963f9161c80923e9736dedca', '116.204.230.26', 1669100199, '__ci_last_regenerate|i:1669100199;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e610796af18fa577842637ecd0ed0e1bd99a403', '45.120.39.90', 1669101836, '__ci_last_regenerate|i:1669101836;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669101825;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f7d025ab506e8bc55d117fb6e9b156b800cafc', '116.204.230.26', 1669100620, '__ci_last_regenerate|i:1669100620;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2c333195bb40f976850b2181987d1e8441accd', '116.204.230.26', 1669100924, '__ci_last_regenerate|i:1669100924;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69735d4e8e4170bfbe61d69143d4df5c6e9335da', '116.204.230.26', 1669101292, '__ci_last_regenerate|i:1669101292;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea4c13719773e472c4c0627c8ae6fa1ded18ad26', '116.204.230.26', 1669101603, '__ci_last_regenerate|i:1669101603;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc9626a96323eec881e4c0785ad731467000db5', '116.204.230.26', 1669102322, '__ci_last_regenerate|i:1669102322;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d9f5fc82087f8d2354609a834ddd47cd52bd1d', '45.120.39.90', 1669102843, '__ci_last_regenerate|i:1669102843;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669102842;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57774d0fe2033b29f732e67e1379bc3382e73fdb', '116.204.230.26', 1669102645, '__ci_last_regenerate|i:1669102645;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e184fdc421ebab8a3d8183f739ff71dda05f07', '116.204.230.26', 1669103537, '__ci_last_regenerate|i:1669103537;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce0ba5ed074e0fb751035809c9141d558417ff5', '45.120.39.90', 1669103967, '__ci_last_regenerate|i:1669103967;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669102842;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991ff9ca13f00ab1548c27a67ae00ab68270e27b', '172.105.247.100', 1669102934, '__ci_last_regenerate|i:1669102934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958e1efb61a18e3df6a8b4055d82b78daf9c5d2f', '172.105.247.100', 1669102936, '__ci_last_regenerate|i:1669102936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3462bd2b0815e128539d99c30bbe3064677090c7', '172.105.247.100', 1669102936, '__ci_last_regenerate|i:1669102936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c61a679635d9a85c0bb438423b81cc8b66c98c', '172.105.247.100', 1669102936, '__ci_last_regenerate|i:1669102936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c45fbb41381c0a751384530b69c7279a505ad8', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce2ec2d60492b4f41d790c1adf47d961657e6c7', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be55c0fca1f648aa1a213232b4457770ac18725', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ed5eaa999c911d4afaed4dbad7622e2d6262e0', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd963a33f5280e5e6300263a6ebf0bec4c2571b0', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22f557bf8793a6883f1adff87f29dba86aa9bcb', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da328c6b65ed55e8e80baf5ad0f7841843b575f0', '172.105.247.100', 1669102937, '__ci_last_regenerate|i:1669102937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6cd0b43294d14116c951c94c2a0df5df7b805b', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad74f639a2ee94f942c734476e6d09a326638b4', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc008c335c6dda08a86f6aa48b405b598ab2c6f', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2533add3fe31acfb45f4cfba63bc25e9000feb', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb470cb0bded8656f3c6fdc27be03a6dbc779d93', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5645500738e5321989b3e7a94ba5cbbd5c88a87', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492a7c55149717301bab7272ecbc32e1f0b83815', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b83e8babda087e423c7abb1d950b95ee2e774635', '172.105.247.100', 1669102938, '__ci_last_regenerate|i:1669102938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e718ed59fd0153c2a0baf6b76b7a6effe2d7d3c', '172.105.247.100', 1669102939, '__ci_last_regenerate|i:1669102939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5f817d4dd737c2e519b42aff760bc71b2b012e', '172.105.247.100', 1669102939, '__ci_last_regenerate|i:1669102939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b194afa84a26b9e60625ede33f8a695269b534e', '172.105.247.100', 1669102939, '__ci_last_regenerate|i:1669102939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa019a8e239e4c81f860d18fc4ec1bedff2af2a', '172.105.247.100', 1669102939, '__ci_last_regenerate|i:1669102939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a715237c409f65c000a16ea4e76d7efcea8d11', '172.105.247.100', 1669102939, '__ci_last_regenerate|i:1669102939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8addcd687912a0c2930c0467294f095c1322ea55', '116.204.230.26', 1669103613, '__ci_last_regenerate|i:1669103537;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669032603\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416008cbcd57a9ffd77a5a773d447b48e8c6a34d', '45.120.39.90', 1669104784, '__ci_last_regenerate|i:1669104784;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669104322;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11fe2d63211ec7ed5d08f90a0bc67a34fdf0027d', '45.120.39.90', 1669105545, '__ci_last_regenerate|i:1669105545;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669104786;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3495139b632b0af73196fadcffcfaa0bf3da147e', '45.120.39.90', 1669108179, '__ci_last_regenerate|i:1669108179;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669105661;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8fca8eaf46284739527a1bcfd1ee59e3572e6f', '45.120.39.90', 1669108179, '__ci_last_regenerate|i:1669108179;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669024118\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669108179;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31bccd7ce1c3c865bec4e9516011701d95781c59', '172.105.247.100', 1669108330, '__ci_last_regenerate|i:1669108330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3441961055e94e40148a35c04c1d06cc4ea935a8', '172.105.247.100', 1669108330, '__ci_last_regenerate|i:1669108330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef858e9c61126546cd23d3f3ffa68ed0eda004b', '172.105.247.100', 1669108330, '__ci_last_regenerate|i:1669108330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603d8ecf24726b38e56fd2953607acd925ba9e1e', '172.105.247.100', 1669108331, '__ci_last_regenerate|i:1669108330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e438548a62853c3cfb484c670691ffaf41cadf8d', '172.105.247.100', 1669108331, '__ci_last_regenerate|i:1669108331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c457534267910529a7fab6ab825462c018e38d', '172.105.247.100', 1669108331, '__ci_last_regenerate|i:1669108331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f9163659585d0cc9ba96667dae22625247d05f6', '172.105.247.100', 1669108331, '__ci_last_regenerate|i:1669108331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4344985858ef5541467a62749d54f592f110695', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99c611ab28b4c893281aff8a8751c14fe4e7329', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5996b0c86af59f4944ef85ccf1e98a0f42855077', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744a43918c05dc7e0afa30ba485de125d174c5f2', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06714f1845d47bfa9775c0bac76bf3e31c275474', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d1b5919c13948bffceadd9e4b05d8218abeaba', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f650b23c8e1b9d95f2ee0853a2b93cdd40f54654', '172.105.247.100', 1669108332, '__ci_last_regenerate|i:1669108332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35292018f4da6446b5c2a1bde0cdfda6db33904', '172.105.247.100', 1669108333, '__ci_last_regenerate|i:1669108332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8f546327765162764778e5800140fe51874d2a', '172.105.247.100', 1669108333, '__ci_last_regenerate|i:1669108333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e27b7100afd753d86b677ad75dd0c0917d8a11e', '172.105.247.100', 1669108333, '__ci_last_regenerate|i:1669108333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0baf0ed9d608cf3486ea813c08b4d4aeb65f04', '172.105.247.100', 1669108333, '__ci_last_regenerate|i:1669108333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76222fcbe0378cf9824928c77c7c2cbee941c223', '172.105.247.100', 1669108333, '__ci_last_regenerate|i:1669108333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c9bbc9191e562ce3a635bea00592470ab29be53', '172.105.247.100', 1669108334, '__ci_last_regenerate|i:1669108334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b283497266d6505b811a93f2cd3c8cd67a919d', '172.105.247.100', 1669108334, '__ci_last_regenerate|i:1669108334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd31b298790cfe05cd2435ceee5312993f8a6744', '172.105.247.100', 1669108334, '__ci_last_regenerate|i:1669108334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769ebbe216bdcfc2682027fd299ef6d6584b65f4', '172.105.247.100', 1669108335, '__ci_last_regenerate|i:1669108335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b48c63859dbec803e7c80fbd380e2217ef2a5c2', '172.105.247.100', 1669108335, '__ci_last_regenerate|i:1669108335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e966235193ab56f8f94e402763b151a6005329a', '172.105.247.100', 1669114932, '__ci_last_regenerate|i:1669114932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a052ee0a942c1a18c45dfd69c7dadfe55fb8101', '172.105.247.100', 1669114932, '__ci_last_regenerate|i:1669114932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9259b052895080d4ed6fa965a4ba906bba20ef8f', '172.105.247.100', 1669114932, '__ci_last_regenerate|i:1669114932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('757a3c90730f7608cec9f7c5baf7acbce66692f7', '172.105.247.100', 1669114932, '__ci_last_regenerate|i:1669114932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a334aa785b62708ab0aa11e06cbf7ca405712f', '172.105.247.100', 1669114932, '__ci_last_regenerate|i:1669114932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3099a203086903808004559ae983bdc7c4df30dd', '172.105.247.100', 1669114932, '__ci_last_regenerate|i:1669114932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb14e4562881030b0fd5bbbb4223c01a2294ad0a', '172.105.247.100', 1669114933, '__ci_last_regenerate|i:1669114933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5172b03c272fad42278a38c3734a5f1c20263df', '172.105.247.100', 1669114933, '__ci_last_regenerate|i:1669114933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06b9baa7f40859bfc0ead48c35b16fb63ddc488', '172.105.247.100', 1669114933, '__ci_last_regenerate|i:1669114933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('703e69fad4a12f322c643e42d720e1c23945b3ec', '172.105.247.100', 1669114933, '__ci_last_regenerate|i:1669114933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3253ccf56b15d9a65b68fd13a35f92fa53e58eb', '172.105.247.100', 1669114933, '__ci_last_regenerate|i:1669114933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1570c2269592c7b4ce8586325ef43f1a1a1b5fbf', '172.105.247.100', 1669114933, '__ci_last_regenerate|i:1669114933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54706676c6cf3646f5e06d88214868069e64c92a', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36c072377bfdfd2b98523a776cce7b9dd14ee45', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a529e3c58a0e3f9a4694ca9d98e3feac5cddb3f', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('305bfdd902acbeace4aab765bd6ef9ac70f735c9', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad38daeed803f43a5ae21b8c1e9c15fa811f873', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd63537ede55d47aab7d16bbe53aa2b7650804ca', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58134b712c757f29cdec65cff2feaef7bc319830', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3e421209004cc2439efada44e8a1304db66d39', '172.105.247.100', 1669114934, '__ci_last_regenerate|i:1669114934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53ba5823bea11a29ce5ecbfc3dcb3fea273d397', '172.105.247.100', 1669114935, '__ci_last_regenerate|i:1669114935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c3c79e9c4170d00bd3f55baa057c81e55aa43b', '172.105.247.100', 1669114935, '__ci_last_regenerate|i:1669114935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb906f75c49c5f9b017177485e07d713f90161c8', '172.105.247.100', 1669114935, '__ci_last_regenerate|i:1669114935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452c9097d7e2f37d4afd81b0e3217dca5cd8fcd2', '172.105.247.100', 1669114935, '__ci_last_regenerate|i:1669114935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6758fb0eacde4dd123ad27a05bf1c7edc5bc31', '116.204.230.26', 1669116752, '__ci_last_regenerate|i:1669116752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433ee6e7dd886f31b86c8110f32833d6b9dda011', '116.204.230.26', 1669117287, '__ci_last_regenerate|i:1669117287;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669093517\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"YKGn0lF2I1RxrBeJ6icZ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d94777b231e7351779e2413106bdb4b07b800c', '205.210.31.47', 1669116987, '__ci_last_regenerate|i:1669116987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3a01b1a6510ce92f47d8983f5fc8d0f4a789f7', '116.204.230.26', 1669117648, '__ci_last_regenerate|i:1669117648;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669093517\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"YKGn0lF2I1RxrBeJ6icZ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8232fdb78cf5172f8a5f10ee16f5898cafb030f1', '116.204.230.26', 1669118195, '__ci_last_regenerate|i:1669118195;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669093517\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"RlvdpnoVM1IWmai2cUBF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050e04428aee9702b11398e6327533514470394b', '116.204.230.26', 1669120236, '__ci_last_regenerate|i:1669120236;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669093517\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"RlvdpnoVM1IWmai2cUBF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73df63e06f297bc2f3946c4037237c113be6a589', '31.222.203.2', 1669118216, '__ci_last_regenerate|i:1669118216;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b1708c84a3829bbc485427ad282cbfd7d37a5d', '31.222.203.2', 1669118220, '__ci_last_regenerate|i:1669118220;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae51a922aff6ba0a9602c5359557085a62d10438', '31.222.203.2', 1669118284, '__ci_last_regenerate|i:1669118284;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce08b22d728d861506906a4274a04ef9e114faf5', '31.222.203.2', 1669118291, '__ci_last_regenerate|i:1669118291;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f814702d24722ca8374e7a91c505170f7d4be51', '31.222.203.2', 1669118332, '__ci_last_regenerate|i:1669118332;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a4cead21645e26b655f226157a948a161ace8b', '31.222.203.2', 1669118334, '__ci_last_regenerate|i:1669118334;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163bc9433f6b455769b1f344d3de4c17cb306b7c', '45.120.39.90', 1669119738, '__ci_last_regenerate|i:1669119738;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669119409;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338d676923a2b02c86c6996de1ec0cbce7bfaec6', '45.120.39.90', 1669125922, '__ci_last_regenerate|i:1669125922;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669122340;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80cb800cf821724b79e004b486bf1a966d62231a', '205.210.31.150', 1669120205, '__ci_last_regenerate|i:1669120205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee65dcb3020cdd01f06aa7d0249d8833cf52f20', '116.204.230.26', 1669126990, '__ci_last_regenerate|i:1669126990;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669093517\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"RlvdpnoVM1IWmai2cUBF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd6d8d1527091f5095163045b040f60ce69856f', '172.105.247.100', 1669120941, '__ci_last_regenerate|i:1669120941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f0a4fdaf1b50dbd14609c67c14137994cf2ad0', '172.105.247.100', 1669120943, '__ci_last_regenerate|i:1669120943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9215b38327137578a9f44349edb13485bcfdc627', '172.105.247.100', 1669120943, '__ci_last_regenerate|i:1669120943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947bd85e896d092f392f6471b82c83f4ba7280c3', '172.105.247.100', 1669120943, '__ci_last_regenerate|i:1669120943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96cb9cc2da173ffdf29e1e67328df6f7390ba8f5', '172.105.247.100', 1669120944, '__ci_last_regenerate|i:1669120944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a52e11d7ad36475a58514f72b6ee7806cc64c7c', '172.105.247.100', 1669120944, '__ci_last_regenerate|i:1669120944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ceaff2442830bd63e1b596dd66a828f157edf9', '172.105.247.100', 1669120944, '__ci_last_regenerate|i:1669120944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28eeb7599a9efb1f6764fa92ce9857a94e9e0b2b', '172.105.247.100', 1669120944, '__ci_last_regenerate|i:1669120944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9403783138b52b79863949c3d5528a75c532e6ae', '172.105.247.100', 1669120944, '__ci_last_regenerate|i:1669120944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9799cbcb95504b74bf7c159c4691ec925e37e8f', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6a414e26dcf4ca9dc2500d77a4f7c2e9faa9d1', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2790cdfad2e5bc7a0d95cea4856075303575fa', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260358ea9fcd4208a5a913a43b4440d620191e61', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c282102324d7018ee5fdede701993ad1c84351b3', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076b4039a95ae5fc9f41b9dc9eadbfcaee2de6e2', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db8a2f34373c508502f4559f5fda5451edeaf96', '172.105.247.100', 1669120945, '__ci_last_regenerate|i:1669120945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29212153966295121994bcb73ee5660c1cecc802', '172.105.247.100', 1669120946, '__ci_last_regenerate|i:1669120946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a8688bac915d8c896eae2210c9e8f9c091e7f5', '172.105.247.100', 1669120946, '__ci_last_regenerate|i:1669120946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa3766903bdcafa76544f12fa83c00ec704b7b1', '172.105.247.100', 1669120946, '__ci_last_regenerate|i:1669120946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162914f1a0cf5675fd6800a1b56cf4c3a7afd046', '172.105.247.100', 1669120946, '__ci_last_regenerate|i:1669120946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eef488a06ae3d327f535075f764d5a798c0612a', '172.105.247.100', 1669120946, '__ci_last_regenerate|i:1669120946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da835de143f0a1ec54c4b04d7c131a3229628518', '172.105.247.100', 1669120946, '__ci_last_regenerate|i:1669120946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ffd56d45b5b04bde815f217e69db90b9fa23db9', '172.105.247.100', 1669120947, '__ci_last_regenerate|i:1669120947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5348ac03dc88d3be2e3a1e72b7af2cb869562ee', '172.105.247.100', 1669120947, '__ci_last_regenerate|i:1669120947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f6bae9ab014bad7894085ee8771f0abb02a45e', '45.120.39.90', 1669122205, '__ci_last_regenerate|i:1669122205;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669122205;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910e828c417ad12f44539a75d6901918858f9336', '205.210.31.145', 1669124439, '__ci_last_regenerate|i:1669124439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee3f331b23bc862f5ae05c0a255bcdbd7219196', '45.120.39.90', 1669127782, '__ci_last_regenerate|i:1669127782;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669127018;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d3fc500485b4ef508cf566aba982297ef5b885', '172.105.247.100', 1669126939, '__ci_last_regenerate|i:1669126939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad8ee8f3ca9dfa27dd8fe67f92079e809772208', '172.105.247.100', 1669126940, '__ci_last_regenerate|i:1669126940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4357185888739d68af5217c7eda5b7e031a4faf', '172.105.247.100', 1669126940, '__ci_last_regenerate|i:1669126940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8edeb03ba07cdd853b5cef8c0a4dbdda6852c74c', '172.105.247.100', 1669126940, '__ci_last_regenerate|i:1669126940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7aa5c4ddc28ff454a413cf39f94f0557a164d08', '172.105.247.100', 1669126940, '__ci_last_regenerate|i:1669126940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8aceb26559457f1519a5d90bd86982057007e5', '172.105.247.100', 1669126940, '__ci_last_regenerate|i:1669126940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd1cd9adc5e165ba7140f3193ad168cbbefa639', '172.105.247.100', 1669126940, '__ci_last_regenerate|i:1669126940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579a326d93f1b807a7fb203fcac540ffc258a7dc', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e41e500cc142d22b984da5113c0bb53ad4f238e', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ea761eb11fb30f05197939f48caf27178843c1', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc29fed54fc4b3022c7cd03a681e649361071e5', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e389bf2eac8e8b9b8cdaacc9e6a0b0132850a482', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fac4ae8ee39f5015c4a476fcc79393828e6757f', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189b21bddfb2c89421d8258f3de24ef7995919b0', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5fe8dd5be064733e851d32af1d8031d6fdb6ce7', '172.105.247.100', 1669126941, '__ci_last_regenerate|i:1669126941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe8c2a43801d2c07811cfe77fd0d12ad220dd7a', '172.105.247.100', 1669126942, '__ci_last_regenerate|i:1669126942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e39e92ced377f39de966c7800e6b3318c8724c', '172.105.247.100', 1669126942, '__ci_last_regenerate|i:1669126942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b31b4dae16d87938d7af98f44491f111c97c403', '172.105.247.100', 1669126942, '__ci_last_regenerate|i:1669126942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3558e88c1197e29243ed4d60be3efe2fc8b2fc57', '172.105.247.100', 1669126942, '__ci_last_regenerate|i:1669126942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aab099d48051615fdad57992287f7eb0d72c500', '172.105.247.100', 1669126942, '__ci_last_regenerate|i:1669126942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14f48fb6fa499b4ad2ae04f8d4057fce3cd7d582', '172.105.247.100', 1669126942, '__ci_last_regenerate|i:1669126942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ffef1a4df802f0d1414b1683416fde25f49073e', '172.105.247.100', 1669126943, '__ci_last_regenerate|i:1669126943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa429cb8f5e0b575ee738049c3087a6e718be560', '172.105.247.100', 1669126943, '__ci_last_regenerate|i:1669126943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f17da3036324651428e34efab2766cf6e202acf', '172.105.247.100', 1669126943, '__ci_last_regenerate|i:1669126943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f73c0d50ca42624ebbf96581f35559929f9b26', '116.204.230.26', 1669127160, '__ci_last_regenerate|i:1669126990;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669093517\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"H4pyzMCjosO7erB0tTKE\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('904ab957db192f7b7d6fcbdad608519dcfe9b32c', '45.120.39.90', 1669128092, '__ci_last_regenerate|i:1669128092;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669128033;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a6c31f1c954bd0cd74b9a83c7982fdd35a4a7d', '45.120.39.90', 1669128399, '__ci_last_regenerate|i:1669128399;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669128385;register_id|s:3:\"256\";cash_in_hand|s:9:\"5080.0000\";register_open_time|s:19:\"2022-11-21 20:51:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1e8ca2c3d8f2a45a654309c29041066c09dfe0', '45.120.39.90', 1669128401, '__ci_last_regenerate|i:1669128399;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669097492\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669128399;register_id|s:3:\"257\";cash_in_hand|s:10:\"18380.0000\";register_open_time|s:19:\"2022-11-22 20:46:39\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c86b800f1af7503456128f9f4f95d352535c2b1', '172.105.247.100', 1669131732, '__ci_last_regenerate|i:1669131732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f7a0799e1dadb2077a21cf56cb5fbf09fe70b8', '172.105.247.100', 1669131733, '__ci_last_regenerate|i:1669131733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44276e5c662e7b9355c8d33297681b8e6b5bd98f', '172.105.247.100', 1669131733, '__ci_last_regenerate|i:1669131733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4494e48a5701cea6df1b7804577db6836894f3c', '172.105.247.100', 1669131733, '__ci_last_regenerate|i:1669131733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f338264071be498faffb26fdf3bb1d64d536c2bd', '172.105.247.100', 1669131733, '__ci_last_regenerate|i:1669131733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec5f2681aa74f4edcd23228f1846fbf7a3c311e', '172.105.247.100', 1669131734, '__ci_last_regenerate|i:1669131733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869694a11d298b0f8d63e4b5adc0444166439783', '172.105.247.100', 1669131734, '__ci_last_regenerate|i:1669131734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4018bb57afdd27b2b76c0822bd518028c5289554', '172.105.247.100', 1669131734, '__ci_last_regenerate|i:1669131734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f96a1b312c7e3d2b36a513356d02f28ad4b8d94', '172.105.247.100', 1669131734, '__ci_last_regenerate|i:1669131734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e78f08dd82dfa949779bc05a0e5f2b135bdcea4', '172.105.247.100', 1669131735, '__ci_last_regenerate|i:1669131735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28bf351b3e5ca5e61b3638c2dcd1410ca442a50', '172.105.247.100', 1669131735, '__ci_last_regenerate|i:1669131735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f38101262171eb4952a34950f7ac792fb031c9cb', '172.105.247.100', 1669131735, '__ci_last_regenerate|i:1669131735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a749f50df020922e48861dcf1c6b29dafc8a4ed3', '172.105.247.100', 1669131736, '__ci_last_regenerate|i:1669131736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fb97b8866d8e6b5b19527be82658f877b3bed6', '172.105.247.100', 1669131736, '__ci_last_regenerate|i:1669131736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a50248bc386513c6ff8c1114d6d4e14b28b3d05', '172.105.247.100', 1669131736, '__ci_last_regenerate|i:1669131736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f084914974cda3b3af6d04a5372b6f53d1d055', '172.105.247.100', 1669131736, '__ci_last_regenerate|i:1669131736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3257a374dca4925e927cd175ef37b9adcd66ea43', '172.105.247.100', 1669131737, '__ci_last_regenerate|i:1669131737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb80d1bf655fcd7d4af2519c96cbebc95cd9ffd8', '172.105.247.100', 1669131737, '__ci_last_regenerate|i:1669131737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b315e209c648071883b8d3d398fac2448dc3099b', '172.105.247.100', 1669131737, '__ci_last_regenerate|i:1669131737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee9d7bc42ce7eb631184ce6d1e20abb0b2423ae', '172.105.247.100', 1669131737, '__ci_last_regenerate|i:1669131737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ed59caf831499355617bfe2eab8eb3f1e58921', '172.105.247.100', 1669131738, '__ci_last_regenerate|i:1669131738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574c207106e34e47845a2e5d860bc16013873202', '172.105.247.100', 1669131738, '__ci_last_regenerate|i:1669131738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25fc633c1719a5a2574c5da6d29add659835d620', '172.105.247.100', 1669131738, '__ci_last_regenerate|i:1669131738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55aa74b15916cfb0666a26c0734bf2148118b586', '172.105.247.100', 1669131739, '__ci_last_regenerate|i:1669131739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2419b3b2226e9fd5b9d45290cbafa319d9aa6f', '172.105.247.100', 1669136533, '__ci_last_regenerate|i:1669136533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1280e8304b7e10845232a2139c4ae511f488f760', '172.105.247.100', 1669136533, '__ci_last_regenerate|i:1669136533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e6fa9432d5ccc24fe8af3ecc01c972b597e870', '172.105.247.100', 1669136533, '__ci_last_regenerate|i:1669136533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13968577d9567411450b2b6ff13027bd214591da', '172.105.247.100', 1669136533, '__ci_last_regenerate|i:1669136533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2750c2d4dae4ae1ce1c53c4bc413f7f912f1bb11', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59bbc0ffb096308d515993289aa638d9c99ae1e', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00891b4518e881a476101ca2c811d9dbaf697f85', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3366daa87e512b0140237a57ec970e8d6568e0cc', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad2c08b20f0919e1eba3dd33343953d48add99e', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f716df03f90c6c1fde8a0e225b1fa5c53eb14e1f', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4484e00a48bfacf50bd0b6f5998c5217dcb9832', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82d121a1363ddf11d4ec2ad6f5a78d41b7dfd7d', '172.105.247.100', 1669136534, '__ci_last_regenerate|i:1669136534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b76054466ae2c2ca24be9b8a49c3ee726783bae', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccab2ad09390ec9c12c3fc053ea6ad3ad5e42022', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e79380b0c8f7468bb2e24961845445d685d14ae', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87bfebe8d23cee664b3e7229317389f11f7ba1a', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5845a9eef708342997ac509112c773f425086055', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff01250218ab8e0a75639b56da23e4914474c55', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545e388c84044a92441b32b237455dbeeb244a0d', '172.105.247.100', 1669136535, '__ci_last_regenerate|i:1669136535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e526e43ca303543fe7812e3ad8a6b2eb9b29cc', '172.105.247.100', 1669136536, '__ci_last_regenerate|i:1669136536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3229f22e851cf1179de9d646265ca1d3a0a34aec', '172.105.247.100', 1669136536, '__ci_last_regenerate|i:1669136536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f0c903cd5dbf0d7e936a578bd2c6e9e5658cae', '172.105.247.100', 1669136536, '__ci_last_regenerate|i:1669136536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34fcf7726fafb8b262a62995f191ea86307afd31', '172.105.247.100', 1669136536, '__ci_last_regenerate|i:1669136536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fdac03bd4f65b5e59f5a3e4b01d519b47d8dee8', '172.105.247.100', 1669136536, '__ci_last_regenerate|i:1669136536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0b8c027c99ba19155e1dd9390a1fed0928e521', '172.105.247.100', 1669141330, '__ci_last_regenerate|i:1669141330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b038e60d589d7103721ec6a69a760e8f0e10a86', '172.105.247.100', 1669141330, '__ci_last_regenerate|i:1669141330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e572d6e6cabab5e53660981ce862e7b6a72b71', '172.105.247.100', 1669141330, '__ci_last_regenerate|i:1669141330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afaecc3a0d05e47e408597e5915b7d225fa28e82', '172.105.247.100', 1669141330, '__ci_last_regenerate|i:1669141330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3504c9fb79d02486cd7ae33efdbedce0dabc352', '172.105.247.100', 1669141331, '__ci_last_regenerate|i:1669141331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b0bf71c63aaf9b0c72d37fabc683cef6197febd', '172.105.247.100', 1669141331, '__ci_last_regenerate|i:1669141331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e57c38003286e32ea3996277a1cff8448451ba', '172.105.247.100', 1669141331, '__ci_last_regenerate|i:1669141331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23593b79fdd1f054795807d0bae482cce83cebd9', '172.105.247.100', 1669141331, '__ci_last_regenerate|i:1669141331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91b4b9dd90b9f61b27abfda793a53ad952e4bff', '172.105.247.100', 1669141332, '__ci_last_regenerate|i:1669141332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ffe7c922e9eed3c0932d7586b6f1c80d7d3afb', '172.105.247.100', 1669141332, '__ci_last_regenerate|i:1669141332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a938d95cf0f50a30e3778c33594b734e0e364c4', '172.105.247.100', 1669141332, '__ci_last_regenerate|i:1669141332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c51a50f731a26edaa03b288e3a7c6428fd6fa337', '172.105.247.100', 1669141332, '__ci_last_regenerate|i:1669141332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8afb2f729b124c6abeda76bc5750ef2913cd1220', '172.105.247.100', 1669141332, '__ci_last_regenerate|i:1669141332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbe8778f723b0ad20c2402570f4a26dd3cf1c92', '172.105.247.100', 1669141333, '__ci_last_regenerate|i:1669141333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('078cec5a57afd502074965ec4cc83704a5f52805', '172.105.247.100', 1669141333, '__ci_last_regenerate|i:1669141333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de786341470b6f17f0e6e4082b0a4c446c26255', '172.105.247.100', 1669141333, '__ci_last_regenerate|i:1669141333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3d7fa0e005db74da87a850be886aa6e3792db8c', '172.105.247.100', 1669141333, '__ci_last_regenerate|i:1669141333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5903768a63307fbc40b0822648bce7ed7cf31881', '172.105.247.100', 1669141333, '__ci_last_regenerate|i:1669141333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dfa89ece18a6e649068ac3b3776385ccec06dea', '172.105.247.100', 1669141333, '__ci_last_regenerate|i:1669141333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfd7eeed144b994fb4ad2b5f2733f637aba8357', '172.105.247.100', 1669141334, '__ci_last_regenerate|i:1669141334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8bbd48bc2c2809900f57dbe276930859cf5fec', '172.105.247.100', 1669141334, '__ci_last_regenerate|i:1669141334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57c151ee4e01c522dc5428f53449c96d8375fe51', '172.105.247.100', 1669141334, '__ci_last_regenerate|i:1669141334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a503a4f8a1e30f5e0c4eb7a8c589a0a835264a5', '172.105.247.100', 1669141335, '__ci_last_regenerate|i:1669141335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc956fdbaf76967e9cdfa932829efe3ce9586fcf', '172.105.247.100', 1669141335, '__ci_last_regenerate|i:1669141335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077eeb517cda85379d31706f46d9ed36b67daab6', '167.94.138.120', 1669145561, '__ci_last_regenerate|i:1669145561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5ffdeef46157e36db49d4f300e1edd57146788', '167.94.138.120', 1669145563, '__ci_last_regenerate|i:1669145563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e20468962df8c094518661c1b114669d1165548', '167.94.138.120', 1669145566, '__ci_last_regenerate|i:1669145566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e24adfba438db2a2a2eace7e43ca7833f978fc', '167.94.138.120', 1669145567, '__ci_last_regenerate|i:1669145567;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93880763269e0af38ec9b107bd9d24cf8ae86c06', '167.94.138.120', 1669145575, '__ci_last_regenerate|i:1669145575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b268cb8e6293b6421161ff8ccdc446ab138e7c9', '167.94.138.120', 1669145577, '__ci_last_regenerate|i:1669145577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc86fe1c6f5f80e6b1a2fa7666d367d8d09415a', '172.105.247.100', 1669146127, '__ci_last_regenerate|i:1669146127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc39e55b32215f96f8e0d79a05d7b282f6876fd', '172.105.247.100', 1669146127, '__ci_last_regenerate|i:1669146127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('703d883b7e1de21a27a3b44d3853959b14ea9d08', '172.105.247.100', 1669146127, '__ci_last_regenerate|i:1669146127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b360629e95fd2bf353f63f7977b43d1fa82752b4', '172.105.247.100', 1669146127, '__ci_last_regenerate|i:1669146127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f356f1fca96bfc3cc15dcc600be555b2438727', '172.105.247.100', 1669146127, '__ci_last_regenerate|i:1669146127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe8e7cde14083628f6432fe3e6768d4e1795758', '172.105.247.100', 1669146127, '__ci_last_regenerate|i:1669146127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8706b660ae2b71eb0c1b69d3bdbdbd3053f5cb0', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d521b7230c731dc89eef4f5ad93e8e412b72e5', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96fd0d89de3f358fed5f069b675d6a0120cd4d4b', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57e6891e7f95957186674b4657841f6661977e47', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51fb5dc033c137a9d1b822b0a612979e23825cd7', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bc1c8eaf8e39cdeed1799b7baf309e858346f9', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a46d8d2fb46e8255a0e063a2b470681deadcca', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d348c175132966d152ad194d3a14e6f18057e3', '172.105.247.100', 1669146128, '__ci_last_regenerate|i:1669146128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ebfe10a2f6c4b87c9bba9bbaf36e989478df70', '172.105.247.100', 1669146129, '__ci_last_regenerate|i:1669146129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3156c911d6b007a1381989a3d8c02fa5eb563b5c', '172.105.247.100', 1669146129, '__ci_last_regenerate|i:1669146129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738a679ce5326f57350d7dfb5dd3fc9fd5339867', '172.105.247.100', 1669146129, '__ci_last_regenerate|i:1669146129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1e1b91c1e63c55ad337fcfcb84a39068af66c6', '172.105.247.100', 1669146129, '__ci_last_regenerate|i:1669146129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1b2977bc9fbdbcea5f7e4244f9171d1cdbedd7', '172.105.247.100', 1669146129, '__ci_last_regenerate|i:1669146129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f244fc8cfa0aa3bce248e5416edcabb23bb8f2a2', '172.105.247.100', 1669146129, '__ci_last_regenerate|i:1669146129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85574a75316bf68672601c70035f0755e848fd68', '172.105.247.100', 1669146130, '__ci_last_regenerate|i:1669146130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5fec71c9eb0cbd594542aa5cbe6281c1971eef3', '172.105.247.100', 1669146130, '__ci_last_regenerate|i:1669146130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8a051ec8966b292e0abc13beb96a72417c5c86', '172.105.247.100', 1669146130, '__ci_last_regenerate|i:1669146130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c25604d728a44a8afeaa644d7099384691b7f2', '172.105.247.100', 1669146130, '__ci_last_regenerate|i:1669146130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592c2d64136978000e69241581ed831f94dc3229', '172.105.247.100', 1669150930, '__ci_last_regenerate|i:1669150930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b546df6034c8a3d5d899e936d7f81f12c8653d', '172.105.247.100', 1669150931, '__ci_last_regenerate|i:1669150931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32af7d509a9f03890c99095dba23506fd6b34b56', '172.105.247.100', 1669150931, '__ci_last_regenerate|i:1669150931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92222fcafce7dabc3004b7536ff767cfaf7e01a4', '172.105.247.100', 1669150931, '__ci_last_regenerate|i:1669150931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d153db1cea1da32dfa76a34176e1b7e9ca6827f', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8771b8076e4664fb65e656468e5beb980b15882c', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e51fe1825264f27f470d077b585c2ce492a8683', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac3c7908698f68ac11b62c3ce74f1dd8ce5b279', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d714526111fbb4ef71ac4437fc5fe10f655c45', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee6aec427ac128c63f30ef8bcc8e65a51ab2d16', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5189f6e21b6bcf08ec589ac8f53dc29942b1a59', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a547c5c03555f9548e14b36b6cc2cd92b45573', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0de7d8abe39f76e2b93793bdb4a20a3b3fb3f0', '172.105.247.100', 1669150932, '__ci_last_regenerate|i:1669150932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc48c40a145a2191651500b223ca24db5af86ceb', '172.105.247.100', 1669150933, '__ci_last_regenerate|i:1669150933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aec5a44766be551301938f2f448fe6b9c99b215', '172.105.247.100', 1669150933, '__ci_last_regenerate|i:1669150933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d023d6630e03862ab9aa85e62aa567a948376cb6', '172.105.247.100', 1669150933, '__ci_last_regenerate|i:1669150933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('684684df3965ba73a82c7828ddbe24562a660314', '172.105.247.100', 1669150933, '__ci_last_regenerate|i:1669150933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b66a82d5297bc740472fd7e4afb4cbb1da508a', '172.105.247.100', 1669150933, '__ci_last_regenerate|i:1669150933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb63156d36456f86e0bfca19c50bd11346ad6491', '172.105.247.100', 1669150933, '__ci_last_regenerate|i:1669150933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ef68bfb6b0ad56c62dd53cf9a5badb04418727', '172.105.247.100', 1669150934, '__ci_last_regenerate|i:1669150933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7dae2e1d4c8a02b019925280fe44ee18d952cd9', '172.105.247.100', 1669150934, '__ci_last_regenerate|i:1669150934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7e6e552541d004bfd6de46b9e14c667243e6fc', '172.105.247.100', 1669150934, '__ci_last_regenerate|i:1669150934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0535ab9468166915ce6a78a13b0f8e28f4bbf0ff', '172.105.247.100', 1669150934, '__ci_last_regenerate|i:1669150934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee4fa19c696511ced2b15b947164f2f8950278a', '172.105.247.100', 1669150934, '__ci_last_regenerate|i:1669150934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea9cdff6a5e8831a0d688b2bc06b0bf58d222465', '172.105.247.100', 1669155727, '__ci_last_regenerate|i:1669155727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b583b2a120375ad04fd22f0639c68f358d5808', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d92d2cb1b42503fb7f6029b3ee3a797bf8054c', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('305c08f98031f6c3ebdc6ea7f3db70395a24c004', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed15d6d5cf6fee37ce2b523d4d40148114f64dce', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9800fe7f21f2cdd10244f194be4b375238cda5f', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2c7ac089b9f12e5d453c2b60c1289f371968c3', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a96184591148e57a8c7f0bc34beee778a021b0', '172.105.247.100', 1669155728, '__ci_last_regenerate|i:1669155728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ff0364511960de1860bd56db79c0c44febfad5', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716fc5c8979c4bfe9b4d07471807747858226422', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ed565398ea44679ffc4cba3c10451616b11728', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d4f3c2c2fb972f4de6a84cd58be68e77a16601', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df5d574c2007fd25c33e18f5cd899b4ae34ee84', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21af6a68d49bdd2c7aebc6811de836f79a2ef12a', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776c2584ffae5947ac7c45ce7e4fe023e7065436', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02ff5d536869d5b663ab2c29e8e0632a4f47c06', '172.105.247.100', 1669155729, '__ci_last_regenerate|i:1669155729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa35a51a3032c815770f955b42b673bc5554932', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488e3aa7752a5eb53ab9af2f9fc5c54b911a6fbf', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ffee68f9c7cff7bb4667803194126d17277677', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3140a59799b53d157cc29adfc1b6262e693d6356', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a6ae4798dbd080a84b0cd2daa638fa4f7a5fb8', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41fa5cc1c93e91cde3d087f75f5494ea065ac597', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e9bde95f557f3e57a455412e6643e3dcc28a11', '172.105.247.100', 1669155730, '__ci_last_regenerate|i:1669155730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4776caecdef34131b38c08bc0cfa7766fc765482', '172.105.247.100', 1669155731, '__ci_last_regenerate|i:1669155731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1128fa017a975d41162060ee77124a935a69418', '198.235.24.12', 1669156468, '__ci_last_regenerate|i:1669156468;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fe1af89883ad827baacdb1dd9fd0059aa202eb', '213.149.103.132', 1669160339, '__ci_last_regenerate|i:1669160339;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef96542799bd65fce0bc5062c6e6807ca041f20e', '213.149.103.132', 1669160339, '__ci_last_regenerate|i:1669160339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ea43a41d2e49dce46097b22a2a7794333c8e42', '213.149.103.132', 1669160340, '__ci_last_regenerate|i:1669160340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22faec67982f030dc84790d3b2a259f21a5565a0', '213.149.103.132', 1669160340, '__ci_last_regenerate|i:1669160340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8557cbed0825fcbe09a673af9d730335d9ac33e', '172.105.247.100', 1669161123, '__ci_last_regenerate|i:1669161123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ca70abc1c6995f9141fe1cc120147321763ead', '172.105.247.100', 1669161124, '__ci_last_regenerate|i:1669161124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7493a7b9a65a877f670651df883cb78644867d32', '172.105.247.100', 1669161125, '__ci_last_regenerate|i:1669161125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf36d8f9934cfd208a8067900be14692e982871', '172.105.247.100', 1669161125, '__ci_last_regenerate|i:1669161125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db73a225b54a09241a5a4efb4db9a9b066c3cd40', '172.105.247.100', 1669161125, '__ci_last_regenerate|i:1669161125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755bdb38b20049b7eff70f2d2bcd076d5ad61530', '172.105.247.100', 1669161125, '__ci_last_regenerate|i:1669161125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a428e88f97a4cd627814b1f8daca82e9d4e0186', '172.105.247.100', 1669161125, '__ci_last_regenerate|i:1669161125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f25463ceaba6786f464d20972d79e72000a810de', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d86624716195f94844c7a35c745deae50a47f7', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c08eaf90c0a537b4b4630a4bb8654ff8723154', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b440c8170222e461421db0b725dc9f392d7bfad', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3cdb7aa3f36685dc9ea6ef7fd5e9fa9066f5118', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f35cec1e587b58e949c9388a5ab562cc7438042', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e950afc57415e4a0c5782a9e9d6379a4092c65c6', '172.105.247.100', 1669161127, '__ci_last_regenerate|i:1669161126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('621a8bcc5553d07b484d97301262e30757884a9d', '172.105.247.100', 1669161126, '__ci_last_regenerate|i:1669161126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba3cad0fe8d9bc14aadb2aedc1a0bdf376bd8a3', '172.105.247.100', 1669161127, '__ci_last_regenerate|i:1669161127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3b68c96b237fd2d297b77eae6ebead2836bff1', '172.105.247.100', 1669161127, '__ci_last_regenerate|i:1669161127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f2fc8230ca2802e9dc81659d13481c8113a8af', '172.105.247.100', 1669161127, '__ci_last_regenerate|i:1669161127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b9327cc76128e3326b8ffe83cabc3b5c9e115f', '172.105.247.100', 1669161127, '__ci_last_regenerate|i:1669161127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa09ed7d0d7c878929076f35b4a6e6f2586d919f', '172.105.247.100', 1669161127, '__ci_last_regenerate|i:1669161127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0a7d6142725409bb5e3cf529f3f3177cb374bb', '172.105.247.100', 1669161128, '__ci_last_regenerate|i:1669161128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251fdae53bc343fa937c475b67aab9e490e44f42', '172.105.247.100', 1669161128, '__ci_last_regenerate|i:1669161128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c39d4041059a909f51aca318e757ac8fc955b70', '172.105.247.100', 1669161128, '__ci_last_regenerate|i:1669161128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2677159448e5bba2b8769472a3f32c3990cbc5c5', '172.105.247.100', 1669161129, '__ci_last_regenerate|i:1669161128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c49bdbf089050a36ca9665a828951dbb756ef890', '172.105.247.100', 1669165923, '__ci_last_regenerate|i:1669165923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bba47fe4742285506bede629e8e36ac66a3b6a0', '172.105.247.100', 1669165925, '__ci_last_regenerate|i:1669165925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6404ef8ffdffada8ca4f8cb881195107cf1a84d', '172.105.247.100', 1669165925, '__ci_last_regenerate|i:1669165925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4071b18c3fb817c8d89465372e4beaf969765eec', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a64bd6bf22f1df87ba874b41725d1a720eb86f5', '172.105.247.100', 1669165925, '__ci_last_regenerate|i:1669165925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a831f2951a0c5909fc8b0ee144cc761ccdfafe', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d0b1c7d2738b2410cc6e519cd75792e0816c33', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c181051143f5739dc721ecada62f69df41f114', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0e9104a7f2bd409e1dadd67eb08bc69d2e0e7e', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6980e9185f043db22d1a810bd3eff18ac15c427', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96fa5a864a2213de859eb81230ad73db702b51c9', '172.105.247.100', 1669165926, '__ci_last_regenerate|i:1669165926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab84e0291d59bcd65f9f2c6d9fb94558ccd7fa7', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b49244e486579e1d558eb861175a9373a6d0f202', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87376edf8f9a76705612b63bd3e528b63c2e7a4', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac25b1e55050110cfcb92fb131b13dc09d8b5f76', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e85b12db03eea6d7ddb77cc58f075c9fc6857c', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82137cb2c3b4f770619d3fe15ac1679339dc13d9', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71553d345cc6be2f63829bb29386987d43ba790a', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a8aad889f3b6cf713d3fc4da9e7feb3d193691', '172.105.247.100', 1669165927, '__ci_last_regenerate|i:1669165927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7703b95fd5847881ff719945a99986ab3f2ab3c', '172.105.247.100', 1669165928, '__ci_last_regenerate|i:1669165928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57e25991215484496512ba66d9f7b41f80a17d5', '172.105.247.100', 1669165928, '__ci_last_regenerate|i:1669165928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29df7742a209c2936074b7455e3318136aa849f7', '172.105.247.100', 1669165928, '__ci_last_regenerate|i:1669165928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('013287cf217ef02d9d28501ba04fd2290716c3f7', '172.105.247.100', 1669165928, '__ci_last_regenerate|i:1669165928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ca0fc1bd44a278ece4c0e62be80a2ede6ccf68', '172.105.247.100', 1669165928, '__ci_last_regenerate|i:1669165928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2ac8bf9c1f99bfd115ba6963ebd27363ca1fec2', '172.105.247.100', 1669170132, '__ci_last_regenerate|i:1669170132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e41e5b4d95bd5f27b95dfc1507b22a0cfe24bdfe', '172.105.247.100', 1669170134, '__ci_last_regenerate|i:1669170134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aff82f44f6348ac9a1871881ee8e1205f631dbe', '172.105.247.100', 1669170134, '__ci_last_regenerate|i:1669170134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c8606ba376c3bce1db49388a71ab55ef97127c', '172.105.247.100', 1669170134, '__ci_last_regenerate|i:1669170134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf0c72de1e2267c2c9e59c505e409a3f9c63971', '172.105.247.100', 1669170134, '__ci_last_regenerate|i:1669170134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563e19d62d42d6b1e7d7fc4956ee86712d6cde8d', '172.105.247.100', 1669170135, '__ci_last_regenerate|i:1669170134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d54bcab60f04d9d21d9c2a6f4734ec808c1c71', '172.105.247.100', 1669170135, '__ci_last_regenerate|i:1669170135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e550509dae73173f0b984ff6e818b50c0914012f', '172.105.247.100', 1669170135, '__ci_last_regenerate|i:1669170135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f457e1e393f230915b688747b743caedd1dc0cd9', '172.105.247.100', 1669170135, '__ci_last_regenerate|i:1669170135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394be88330b809e25d666ae7e13ff3943ad445a4', '172.105.247.100', 1669170135, '__ci_last_regenerate|i:1669170135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d34ffbb62ea2cdf56a59561407a7dae9e6b02f', '172.105.247.100', 1669170135, '__ci_last_regenerate|i:1669170135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf809562885404fd31290a49a48b216096cc77c2', '172.105.247.100', 1669170136, '__ci_last_regenerate|i:1669170135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('938d6253ca72ee81f2d5113c9353ffa73f0aab1c', '172.105.247.100', 1669170136, '__ci_last_regenerate|i:1669170136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae352edd2957c420fbb54f0463cf6136dc32d372', '172.105.247.100', 1669170136, '__ci_last_regenerate|i:1669170136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd76d4a1ef07fb0952394cfbe17e463c771a7ec', '172.105.247.100', 1669170136, '__ci_last_regenerate|i:1669170136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224c015206f5a1e2ce7a8fda8f73f00045530112', '172.105.247.100', 1669170136, '__ci_last_regenerate|i:1669170136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb45976337208888a5406f97f24985959309a853', '172.105.247.100', 1669170136, '__ci_last_regenerate|i:1669170136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6484eecf4eebd322ccc8cfd7cdb31327028f8b97', '172.105.247.100', 1669170137, '__ci_last_regenerate|i:1669170137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee88b116919e6185ecb4f129462ffdfc31e3b3c', '172.105.247.100', 1669170137, '__ci_last_regenerate|i:1669170137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb22057d5bd156e31e346edaa35a23b94fc98b7', '172.105.247.100', 1669170137, '__ci_last_regenerate|i:1669170137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f05307c957444e60ba46439e1cff9d943b226e7', '172.105.247.100', 1669170137, '__ci_last_regenerate|i:1669170137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ec7971ca51e50cd0caf1e28bc9652583916c56', '172.105.247.100', 1669170137, '__ci_last_regenerate|i:1669170137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2606e833683fa666ef14066fa189175c200cc557', '172.105.247.100', 1669170138, '__ci_last_regenerate|i:1669170138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc6fde0544effc9d610ccb18a510a703b12aa97', '172.105.247.100', 1669170138, '__ci_last_regenerate|i:1669170138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66265553cc0108bc00f5326aa554e92820c5f917', '172.105.247.100', 1669174936, '__ci_last_regenerate|i:1669174936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2906e20fc0ad78a8c521413380c0eb3ba4ac73da', '172.105.247.100', 1669174936, '__ci_last_regenerate|i:1669174936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c072f7909a79f8e1cb856057d5b42d04f5747eb', '172.105.247.100', 1669174937, '__ci_last_regenerate|i:1669174937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c18bc050beaaa4fe13a4e49b9e0a444bc2be450c', '172.105.247.100', 1669174937, '__ci_last_regenerate|i:1669174937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688b87bc5d4635c24bba0655ac989e89c112b507', '172.105.247.100', 1669174937, '__ci_last_regenerate|i:1669174937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b7298fa11bd31313cd693b5e79e7aa871eaf6ff', '172.105.247.100', 1669174938, '__ci_last_regenerate|i:1669174938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865869b5b8c6c39e42da652893b7a1255d704829', '172.105.247.100', 1669174938, '__ci_last_regenerate|i:1669174938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8fd04954b44a9b5e143a73a63c23a140ed3148d', '172.105.247.100', 1669174938, '__ci_last_regenerate|i:1669174938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433ac4aeeb5120d4d0bfa34653999f1d01e954c3', '172.105.247.100', 1669174939, '__ci_last_regenerate|i:1669174939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150eba41e69ce20558796cc06c475121c851589a', '172.105.247.100', 1669174939, '__ci_last_regenerate|i:1669174939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b31430b54101ebdbd9591e25f65edcbacbf878d', '172.105.247.100', 1669174939, '__ci_last_regenerate|i:1669174939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b332641a8e69711cd0825179cb90624e50f35e00', '172.105.247.100', 1669174939, '__ci_last_regenerate|i:1669174939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbe5d8ebae10d49eb86eda511801f34e55e2ebf', '172.105.247.100', 1669174939, '__ci_last_regenerate|i:1669174939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24901ab012bd44570de4357eec173d3864267e2', '172.105.247.100', 1669174940, '__ci_last_regenerate|i:1669174940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525939128e35a4f6351232fc393ca717d34e28ea', '172.105.247.100', 1669174940, '__ci_last_regenerate|i:1669174940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd599784a0660cb12558568d8a66406deaf91609', '172.105.247.100', 1669174940, '__ci_last_regenerate|i:1669174940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550d3a9c26f05822cb1793a66b3ee9792564a15a', '172.105.247.100', 1669174940, '__ci_last_regenerate|i:1669174940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9313ae20397a2cd79f2622851f7c4fe9cf56345e', '172.105.247.100', 1669174940, '__ci_last_regenerate|i:1669174940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ece15bc654eaf817cd2639ac9e6e4b930ff66d', '172.105.247.100', 1669174940, '__ci_last_regenerate|i:1669174940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8762011ae95cde5e691391bd63d2dc16979d65a', '172.105.247.100', 1669174941, '__ci_last_regenerate|i:1669174941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3354d33bb77c74de1e3158411e1c287c6fee62a9', '172.105.247.100', 1669174942, '__ci_last_regenerate|i:1669174942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919fa2422846ad7b75aece6e6b5df715640feebc', '172.105.247.100', 1669174942, '__ci_last_regenerate|i:1669174942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d009d5c34d52f536005cf54f1c9fb15348e9b992', '172.105.247.100', 1669174942, '__ci_last_regenerate|i:1669174942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2472ac2c3df351438136d79b3afc8e6ad2e24fc5', '172.105.247.100', 1669174943, '__ci_last_regenerate|i:1669174943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('248e2bff387edd55a366be87ea4657c3eb4a9520', '45.120.39.90', 1669180581, '__ci_last_regenerate|i:1669180581;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669119264\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669177541;register_id|s:3:\"257\";cash_in_hand|s:10:\"18380.0000\";register_open_time|s:19:\"2022-11-22 20:46:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ede6868c6a79af3b782e1e85b0641ec891e63e8', '172.105.247.100', 1669180327, '__ci_last_regenerate|i:1669180327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ecd72c3c0814591604e0d5050f084b2a71616b4', '172.105.247.100', 1669180328, '__ci_last_regenerate|i:1669180328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6447bd420e0074d93059ff5439c70b4843cd60c', '172.105.247.100', 1669180330, '__ci_last_regenerate|i:1669180330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b55ee22a215b7aa90a68b10c106e6225edee5f2', '172.105.247.100', 1669180330, '__ci_last_regenerate|i:1669180330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538f260926120e1d9834b89c79f96334168eb5a6', '172.105.247.100', 1669180331, '__ci_last_regenerate|i:1669180330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b60cb8aaf2f08dc35d90e3bda7cfab6a61a3ad', '172.105.247.100', 1669180331, '__ci_last_regenerate|i:1669180330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('905c4c9c3db49f30a41de29cb357537516f96b87', '172.105.247.100', 1669180331, '__ci_last_regenerate|i:1669180331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018b33abc14bbd35c6f66f75c9f67fc397ac4be9', '172.105.247.100', 1669180331, '__ci_last_regenerate|i:1669180331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f02696396ea9e0219dcec74ab00c949bb55f6b9', '172.105.247.100', 1669180331, '__ci_last_regenerate|i:1669180331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0820d8bb6ec52f463b7969578fc8aa00e7acab', '172.105.247.100', 1669180331, '__ci_last_regenerate|i:1669180331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae159cd982a4718f70bde46c4bc315983dda937', '172.105.247.100', 1669180332, '__ci_last_regenerate|i:1669180332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('857a1f56e89a7596fe86c84be81b453524399a21', '172.105.247.100', 1669180332, '__ci_last_regenerate|i:1669180332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0cb668ca71cf8eb1af955eb89dde306dfb1be6', '172.105.247.100', 1669180332, '__ci_last_regenerate|i:1669180332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f546b36da052b0b9afd0d9c76d13cfb29a33c8d', '172.105.247.100', 1669180333, '__ci_last_regenerate|i:1669180332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fc328b28bde9878069d09a6f17f3b0c0de3e496', '172.105.247.100', 1669180333, '__ci_last_regenerate|i:1669180333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4373fe4f65b9cc0b36e3db21d4564857de6028', '172.105.247.100', 1669180333, '__ci_last_regenerate|i:1669180333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d96d3fa5c71e28e6210b35968dd824c38fd1a395', '172.105.247.100', 1669180333, '__ci_last_regenerate|i:1669180333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a4226c75c598e971973d8f8200c47b02da0667', '172.105.247.100', 1669180334, '__ci_last_regenerate|i:1669180333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9878ae52ad8ca5792b78ef18097bf7937067d83b', '172.105.247.100', 1669180333, '__ci_last_regenerate|i:1669180333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e88d8846f49db6984624c189bedd02bb8ef038', '172.105.247.100', 1669180334, '__ci_last_regenerate|i:1669180334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df50927f88c1be6f02abdc79cd99f80a34c6328c', '172.105.247.100', 1669180334, '__ci_last_regenerate|i:1669180334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6129712fdd12999df497350b28b555b522fd3dd8', '172.105.247.100', 1669180334, '__ci_last_regenerate|i:1669180334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e409c35ae7567754702562f2600e359dbc7139', '172.105.247.100', 1669180335, '__ci_last_regenerate|i:1669180335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe969517b57394c5cefcfc7d1290fc0b3e432bc', '172.105.247.100', 1669180335, '__ci_last_regenerate|i:1669180335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb7dbbabe8e24e738ee6cc70c43de088928eb52', '45.120.39.90', 1669183184, '__ci_last_regenerate|i:1669183184;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669119264\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669180943;register_id|s:3:\"257\";cash_in_hand|s:10:\"18380.0000\";register_open_time|s:19:\"2022-11-22 20:46:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fa3c881c3a00be55161bbdd85f093b3a5268b4', '45.120.39.90', 1669180885, '__ci_last_regenerate|i:1669180885;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669119264\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669180885;register_id|s:3:\"257\";cash_in_hand|s:10:\"18380.0000\";register_open_time|s:19:\"2022-11-22 20:46:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c527b95ce37c7b1588fcb333c2cbb95f3e828a', '116.204.230.26', 1669183232, '__ci_last_regenerate|i:1669182969;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669116761\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669183230;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2f0eb6a156228f9953dbc90181eaa865efd260', '45.120.39.90', 1669186947, '__ci_last_regenerate|i:1669186947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669119264\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669186942;register_id|s:3:\"258\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-23 12:02:04\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ec0eebb71c20b1d571de2eba1c1f2acfef3544', '172.105.247.100', 1669184531, '__ci_last_regenerate|i:1669184531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987c4f94d9b62b6b8deb85882df6845272ce8561', '172.105.247.100', 1669184532, '__ci_last_regenerate|i:1669184532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9759993bb9b983485baa58b32c8a21bbadbfdb3a', '172.105.247.100', 1669184532, '__ci_last_regenerate|i:1669184532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611313c5e4e2c9dbe4783f968b7ba24059ad18ca', '172.105.247.100', 1669184533, '__ci_last_regenerate|i:1669184533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdec8b29d89f9033ade52059e875c0eb50fea87', '172.105.247.100', 1669184533, '__ci_last_regenerate|i:1669184533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d852e5b3745a7961bea11e3e3a84e5dbe092ff5', '172.105.247.100', 1669184533, '__ci_last_regenerate|i:1669184533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce96a1b4b24517482e6879963a74d9687a58e8aa', '172.105.247.100', 1669184533, '__ci_last_regenerate|i:1669184533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70bc838fc7e1b1a7d33db679a5af5f1537de7c52', '172.105.247.100', 1669184534, '__ci_last_regenerate|i:1669184534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad10a3186666731aef0ea0bfd613d61cfae3682', '172.105.247.100', 1669184534, '__ci_last_regenerate|i:1669184534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7459599ccf6b846e75aa01a7488d794aa227ad18', '172.105.247.100', 1669184534, '__ci_last_regenerate|i:1669184534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef49c851f62714c8fee5ec324d98a409c4c7f37', '172.105.247.100', 1669184534, '__ci_last_regenerate|i:1669184534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad9137e6faebe413e9aa78be4dca4e5de35900f', '172.105.247.100', 1669184534, '__ci_last_regenerate|i:1669184534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3f30a3dc197da06466b0fc3d4fe9ae08db1e90', '172.105.247.100', 1669184534, '__ci_last_regenerate|i:1669184534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8f19335617af31524d4be8fd49a576b3474cb5', '172.105.247.100', 1669184535, '__ci_last_regenerate|i:1669184535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b7ceed52a10e7ee36c97bb3812637b70446a10', '172.105.247.100', 1669184535, '__ci_last_regenerate|i:1669184535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7e6cea12c2331136e89f75c2cbdd644392fbf2', '172.105.247.100', 1669184535, '__ci_last_regenerate|i:1669184535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c337258afb8e5b26b1ab5964f9afc062d583e11d', '172.105.247.100', 1669184535, '__ci_last_regenerate|i:1669184535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e729b5ea9a1fdfec49d7b8c2f43c320dd78156e2', '172.105.247.100', 1669184536, '__ci_last_regenerate|i:1669184535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319a6a29115e5b3a7b75a874ee4ed8a448933d13', '172.105.247.100', 1669184535, '__ci_last_regenerate|i:1669184535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7b5125a976a0e1f6204926760b748d21973625', '172.105.247.100', 1669184536, '__ci_last_regenerate|i:1669184536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aeffde3995c482287373088dc90a3fc05c5228f', '172.105.247.100', 1669184536, '__ci_last_regenerate|i:1669184536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73bd25abba1237dfbadad6e0e70a8ac13b811fb', '172.105.247.100', 1669184536, '__ci_last_regenerate|i:1669184536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b36723749dc091f4c266638f752a6e57373c632', '172.105.247.100', 1669184537, '__ci_last_regenerate|i:1669184537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8851e87611ab0c9fbcebcf9f5d14cb3b7b5341', '172.105.247.100', 1669184537, '__ci_last_regenerate|i:1669184537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b5ce0360be576fccacec711bbf2ff2d705e644', '45.120.39.90', 1669186948, '__ci_last_regenerate|i:1669186947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669119264\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669186948;register_id|s:3:\"258\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-23 12:02:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35cc8c73f001097702c8bc87c862147d3f38be2c', '172.105.247.100', 1669189335, '__ci_last_regenerate|i:1669189335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff45b0f13c84b4c41b5f45f64c297f1b969f09e3', '172.105.247.100', 1669189338, '__ci_last_regenerate|i:1669189338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9fbcd38f70096017b2dd8f51a4ea7ed8726271', '172.105.247.100', 1669189338, '__ci_last_regenerate|i:1669189338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34da001db32de38115d97af9902f5eff3745ef7', '172.105.247.100', 1669189338, '__ci_last_regenerate|i:1669189338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254311d91a11cb5a7e4553723789a5b0aa3ea109', '172.105.247.100', 1669189338, '__ci_last_regenerate|i:1669189338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969327817c7ca45de26a8002b0687844e227afe0', '172.105.247.100', 1669189338, '__ci_last_regenerate|i:1669189338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d242e90b75e64ef3452b116db14b47d6d787f8d', '172.105.247.100', 1669189338, '__ci_last_regenerate|i:1669189338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c7dfc1de00680289d797d1f18dcbd0363432f9', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7f1fc86172c2f95e3d081492b8a1dcbaf55544', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba8f4d5cc3e4d34ea2530d211331428c4fc00ad', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db5940279956b73ca92d5ed85fb3b0d59fe94b0', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8650b1a42255be879d57be199ba8bbf68b901a', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02efb391ef83a9b2e8af17c3e2c14167082427ce', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd2f82ae06a29e2d4000e09cd8688c213f3c4d2', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1846dad9dd6ca5a549d13cc03e71d58836fc5a2f', '172.105.247.100', 1669189339, '__ci_last_regenerate|i:1669189339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593a9dd5e35c962af7ce9af982bdaa54c0121ba8', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd4d5ef9b449500617809864ae2eb21a5121942', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1326bba54f4ff33d1268c66aeb7879b1bf994001', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd18785e5464fc867e3741b142a01e92ae10daa', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48180990f3ee979ac0dcf40a05c91eaf7b4539bc', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6720101cfc3a9ebf811582a65c013f124dfcc38', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a347f0d9e5871a6b25c4e896928c75c9a83e80', '172.105.247.100', 1669189340, '__ci_last_regenerate|i:1669189340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47a80ca395d7687e8474c7d86cdb1a044b11c42', '172.105.247.100', 1669189341, '__ci_last_regenerate|i:1669189340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1b2245886890fb05d1517da10470c7b1d62cde', '172.105.247.100', 1669189341, '__ci_last_regenerate|i:1669189341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0c4d9555c51d4e2cc8cf0e8ade4c9c14939219', '172.105.247.100', 1669195352, '__ci_last_regenerate|i:1669195352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12549cb885493ce0c7c4f05b6f287c2eeb5f2e95', '172.105.247.100', 1669195352, '__ci_last_regenerate|i:1669195352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7942e9387effdadccc9b8ddc4a816c591cb385c1', '172.105.247.100', 1669195352, '__ci_last_regenerate|i:1669195352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b7440aa612c11143b5891f781a6b234891c593', '172.105.247.100', 1669195352, '__ci_last_regenerate|i:1669195352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7e1a331bf8c7501dc8f126a2b1bcdf40abac01', '172.105.247.100', 1669195352, '__ci_last_regenerate|i:1669195352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66cd2bf68d881ad61ee1793472b96bf0edea9ac9', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109241e993210dc50bd517aeb111faab438e5512', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1ba33df02a1d11f8e240c05a8bd0fbcc3fa595', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b24f1f22e71f7c7b265773a74e08bcf2fe0a54b', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88e606d1c43b637dc6829c38eac9face80b9196', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b93e22918d8e401d31084872ba88dcc586d5ba', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e74815f79530a487e6dcb26280ab9469c2570d', '172.105.247.100', 1669195353, '__ci_last_regenerate|i:1669195353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db856a84b513b7a575dbab533e45c844f8f1e4da', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('151aa382037ef780e964f365429226fe7dee0a59', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a7ebfc7f54022d5d7286fc2e8958525e6082fa', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c07e7a5bb32d3018c1746bfdff8a43dd4cf29157', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa78f89095e498c327abf5e25d21cd4d2ce0b97e', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab389fd142c76d60ca1aba08c7e3da3f4c03d88', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4fab529253cf4756fadc22525dcfac5fe586eab', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd675206ad7677fadfbfcc7f0ec41780ac4ed7d', '172.105.247.100', 1669195354, '__ci_last_regenerate|i:1669195354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a5a5ca1bbb3756e2bab91ed91e5bb46b6baf10', '172.105.247.100', 1669195355, '__ci_last_regenerate|i:1669195355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249b7ba9297a1b2c88853252e925d61b993cc782', '172.105.247.100', 1669195355, '__ci_last_regenerate|i:1669195355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a53cd3ba23d4ddefa6c0f982a66c3382f104f25d', '172.105.247.100', 1669195355, '__ci_last_regenerate|i:1669195355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223ece0ad08e340328fef56d1657a19ac05b9562', '172.105.247.100', 1669195355, '__ci_last_regenerate|i:1669195355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14424f1032f0a6d33c177bef75ad81f282ad0e2f', '45.120.39.90', 1669198988, '__ci_last_regenerate|i:1669198988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669177522\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebeda4f1497324dc42c89d9e7072055b0ede2639', '45.120.39.90', 1669205799, '__ci_last_regenerate|i:1669205799;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669177522\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669198988;register_id|s:3:\"258\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-23 12:02:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8cd6ed8ffdb592a956b2276e580e4e940195c0', '172.105.247.100', 1669201340, '__ci_last_regenerate|i:1669201340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6583f3316ea8ef21ce21dbd75c56331e82735f', '172.105.247.100', 1669201342, '__ci_last_regenerate|i:1669201342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8143ffa120b2091100380d4e2683b885311cb9b', '172.105.247.100', 1669201342, '__ci_last_regenerate|i:1669201342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e795cb59de5ef5d82eceacfb04d97655f1eccd0d', '172.105.247.100', 1669201342, '__ci_last_regenerate|i:1669201342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d704b14dfdb6dec3837b6a7c9af85b8b6db8edf2', '172.105.247.100', 1669201342, '__ci_last_regenerate|i:1669201342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e431e0378d34aff38f8d23387c8e3b153c3884', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('112c0e1165ac0b35273e9f3279785837b0a3d9a5', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448e1d7010fb7504797c80d89cd22dbbdc021860', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c5b22ad0bd284ba923a65ead26bc8ff46e4ae8', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0074e4d76cdb006b51b4131953592ea9d1be6502', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04a9995c1e89d773e9d4743d3cdcf1fea3e462cf', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab72e687b82f1d442a9da2db617669198d96fdd', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba5f6dd6aeac39cd57ab9d8d7aa3d6427110da9f', '172.105.247.100', 1669201343, '__ci_last_regenerate|i:1669201343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87af487fe5c55ecd8d44bd796df593b65404b232', '172.105.247.100', 1669201344, '__ci_last_regenerate|i:1669201344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd66dc1eb06ab59be858908cd26512642883363', '172.105.247.100', 1669201344, '__ci_last_regenerate|i:1669201344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b490e2baa8c5e6334d7b936917bcd6d65d8e5106', '172.105.247.100', 1669201344, '__ci_last_regenerate|i:1669201344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f3f0ca5d6328dd0e570633187b482714771ffe', '172.105.247.100', 1669201344, '__ci_last_regenerate|i:1669201344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e73735efa56671e2debbe2a30e83b6b5791bd93', '172.105.247.100', 1669201344, '__ci_last_regenerate|i:1669201344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0055575a828cfa5f5a095226df0e6b3cb715bf', '172.105.247.100', 1669201344, '__ci_last_regenerate|i:1669201344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bce8ea3805915d5464c7e6ae8b2859474400c5', '172.105.247.100', 1669201345, '__ci_last_regenerate|i:1669201344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2e3953d124c4369814052d15b4c001650c25cf', '172.105.247.100', 1669201345, '__ci_last_regenerate|i:1669201345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b59ba3260c7466d70e5f267a6109112c9b254c', '172.105.247.100', 1669201345, '__ci_last_regenerate|i:1669201345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('884ff553f3c3899cd543997fe7f00381d138b09d', '172.105.247.100', 1669201345, '__ci_last_regenerate|i:1669201345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d6d279c9ad235c13a34a61cf38c3b25710f21f', '172.105.247.100', 1669201345, '__ci_last_regenerate|i:1669201345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d869f9b2d5b9e059cb683972c8824f26b38c9faa', '116.204.230.26', 1669204424, '__ci_last_regenerate|i:1669204420;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669182977\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0805e7a8fbb0198567a17b8ecae9bfec2c26a100', '45.120.39.90', 1669211704, '__ci_last_regenerate|i:1669211704;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669177522\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669211699;register_id|s:3:\"258\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-23 12:02:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f17c5779b9ea2c66cb7a90184c4618d8c7bd4b5', '172.105.247.100', 1669210949, '__ci_last_regenerate|i:1669210949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219b7697f40160d8114e5a38a7bc2a0294c9c7f3', '172.105.247.100', 1669206139, '__ci_last_regenerate|i:1669206139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa0def10aee233a9e02f548f8e514de1987f493', '172.105.247.100', 1669206140, '__ci_last_regenerate|i:1669206140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0c86543d9b4982e816aecf5a5e95f90f5edee5', '172.105.247.100', 1669206140, '__ci_last_regenerate|i:1669206140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42300a72c9210536dfeb6eedcc29cc605569d833', '172.105.247.100', 1669206140, '__ci_last_regenerate|i:1669206140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8240eb3567a85270ba8fbe133464e6b191b26209', '172.105.247.100', 1669206140, '__ci_last_regenerate|i:1669206140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a1643240a593aeb4ced112672b77cd5a190569', '172.105.247.100', 1669206141, '__ci_last_regenerate|i:1669206141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3941ed7957e0edf06c309f0c79030c568178b667', '172.105.247.100', 1669206141, '__ci_last_regenerate|i:1669206141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869f9368a90b801e3a09ee6da4f9cd25248f1eeb', '172.105.247.100', 1669206141, '__ci_last_regenerate|i:1669206141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd53fb4c9a93d06023eac517015b3ea0468b2b0', '172.105.247.100', 1669206142, '__ci_last_regenerate|i:1669206142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e840d7f258fece1395cc37c0e59e1aa0cbbc5af', '172.105.247.100', 1669206142, '__ci_last_regenerate|i:1669206142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25872e543eb95abfcb81b254e667c5d3f0709e38', '172.105.247.100', 1669206142, '__ci_last_regenerate|i:1669206142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78317f138c3838b7b44c3c8fb9e7be9c6bdb38b', '172.105.247.100', 1669206142, '__ci_last_regenerate|i:1669206142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec99bd0ecabd8d1c3e3180a892d3f57a6e61ef2e', '172.105.247.100', 1669206142, '__ci_last_regenerate|i:1669206142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88973b812e6c7cb05fdc85f6af547e9317aed0d2', '172.105.247.100', 1669206143, '__ci_last_regenerate|i:1669206142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a77520ec5bc8bc78cdfb9712463f56ede22e9b2', '172.105.247.100', 1669206143, '__ci_last_regenerate|i:1669206143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b22ef3951d1f8ed3303dd14ecea89c730f756aa', '172.105.247.100', 1669206143, '__ci_last_regenerate|i:1669206143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097ae674618685a40c086d926f791aba393a7fee', '172.105.247.100', 1669206143, '__ci_last_regenerate|i:1669206143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c40f04e196029f085234a2c02d78dae5979c7a7', '172.105.247.100', 1669206144, '__ci_last_regenerate|i:1669206143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bae53634407f6e3af652a72de8ff03cf73fe64', '172.105.247.100', 1669206144, '__ci_last_regenerate|i:1669206144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b8adae4277ce21135a7d787cc3042c12d3b9360', '172.105.247.100', 1669206144, '__ci_last_regenerate|i:1669206144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e54f4b694aa26930a5db59d4036b65b5d14441', '172.105.247.100', 1669206144, '__ci_last_regenerate|i:1669206144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f836748e15b828fc0aae5a9c02de9429535e21e4', '172.105.247.100', 1669206145, '__ci_last_regenerate|i:1669206145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0c0f0363349b2cb49d2c50dd18b788b619179a', '172.105.247.100', 1669206145, '__ci_last_regenerate|i:1669206145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e2611d0ba9b742e9a43bc2004d426af3909f9e', '172.105.247.100', 1669206145, '__ci_last_regenerate|i:1669206145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e7c5be47c69dc78322c234997dbcb400d70e49b', '45.120.39.90', 1669210615, '__ci_last_regenerate|i:1669210615;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669177522\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669210615;register_id|s:3:\"258\";cash_in_hand|s:9:\"4380.0000\";register_open_time|s:19:\"2022-11-23 12:02:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519756b0e617827d1281ad767709e74c1bfd78ea', '172.105.247.100', 1669210949, '__ci_last_regenerate|i:1669210949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28ec924669990b783aa3bb7c3e826ba72138343', '172.105.247.100', 1669210949, '__ci_last_regenerate|i:1669210949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243d89792ca2d998abe93512ea69b0efff48b536', '172.105.247.100', 1669210949, '__ci_last_regenerate|i:1669210949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bff3c5f595c5aba4f89230e0918f322cb06f58', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82ae33efb1b5bd20216afac5e1d018843e849f7', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f619f6cd620ba57397c4063b30ce7d768ce6aebc', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213e193a63cdffc25ed515e5430e2637cdd4c26f', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e43483af2d2db1ee49b5f72c422cf54925774222', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6841147b890bbb69d2d3f12bcfdbd54924adcd67', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec0a70e2947d612b0289967108a1798c73d01c3', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('184ea2272ff2b68711071ed23827bfdf31d7d7b6', '172.105.247.100', 1669210950, '__ci_last_regenerate|i:1669210950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fd0dfa0692a7b311fb91e67b7c7ce1662ae661', '172.105.247.100', 1669210951, '__ci_last_regenerate|i:1669210951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4beefd1dc286fe055e0b0dd1d2c80e45865f5e59', '172.105.247.100', 1669210951, '__ci_last_regenerate|i:1669210951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0300f1bf7f964cb055b6c2f6eb8f807273b4314', '172.105.247.100', 1669210951, '__ci_last_regenerate|i:1669210951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c878c4c0ea328ce3a3d3e2d556234e39790bad6', '172.105.247.100', 1669210951, '__ci_last_regenerate|i:1669210951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2daae18c568dc104e7b289c42b94eef15250cdf', '172.105.247.100', 1669210951, '__ci_last_regenerate|i:1669210951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92635a4ba15c7f6e3f0b02031e0be289c958636e', '172.105.247.100', 1669210951, '__ci_last_regenerate|i:1669210951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb66fcdcba31f9279d30543e13c3d841d6ccae8', '172.105.247.100', 1669210952, '__ci_last_regenerate|i:1669210951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ecbb3da61ffd35768135f0da815d61e0ae474e8', '172.105.247.100', 1669210952, '__ci_last_regenerate|i:1669210952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3aefad0d1664882fd2cf5c393d70e98e90d51e', '172.105.247.100', 1669210952, '__ci_last_regenerate|i:1669210952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('198842f15fafab9a92821662d899c8e00b51bee1', '172.105.247.100', 1669210952, '__ci_last_regenerate|i:1669210952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf888203acc790f0f5bb0a1e3ed46dd068e05d9c', '172.105.247.100', 1669210952, '__ci_last_regenerate|i:1669210952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0dee9a46d0bfd0aa5d0c2250c0be1f9ee5baab', '172.105.247.100', 1669210952, '__ci_last_regenerate|i:1669210952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3774e96c21a57285a5c1fd6846717d03c17e9c8e', '45.120.39.90', 1669211731, '__ci_last_regenerate|i:1669211704;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669177522\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669211728;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8284d6292942692aaae59e32efe47debbe74f40d', '172.105.247.100', 1669215743, '__ci_last_regenerate|i:1669215743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a5b500d79eafa900060c50bf0fecf4402febf3', '172.105.247.100', 1669215743, '__ci_last_regenerate|i:1669215743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abad5136dcf81f572bb50ea59de61fa7004b922', '172.105.247.100', 1669215743, '__ci_last_regenerate|i:1669215743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8893352a5e462fe889ca3922a5637afd46bd2b', '172.105.247.100', 1669215743, '__ci_last_regenerate|i:1669215743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9341cca4f9741fe9d2bb92aaf3817f161a3cb3', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa813fd2b13b44d357f4b8c4e8e3e799f09121ad', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f5813eb555bbce405282dc3387e6119c745248', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5daf0e7cf22953973d66c89b3f3f9346febbf6', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d920d215cb9706bffc240d4cd88a690a7b06c8', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7e009e0c0c63bdabadbc827a70262709d4c07c', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b069801957bbfd7caed4ff2bfb77d90853a14aa', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a689e777dfc566970f772d5b76dc8798e5a927', '172.105.247.100', 1669215744, '__ci_last_regenerate|i:1669215744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c9825e354b2d05e2bcf862b78ed742f7032e55', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('127381df9c181c2af5e80fd9b89ece4875b3837d', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9dbc72538d55d5355b1d5af12469c0382a4c4c5', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d44b2a4e131db2046cd684c1a573a9efd9c7223', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ca19be4750c161174730552a3d2390afe3f2a8', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6390c15be85fd3b60a1f16dc637a50a87efe504e', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb6802af078adbd51ae06ea6906be3f2b481c5c', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dc32fdea2a3d235fec9d0d31f97e0d43146f55', '172.105.247.100', 1669215745, '__ci_last_regenerate|i:1669215745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66dbdcd74e7460f7b1c361462459d3f1fccc87e4', '172.105.247.100', 1669215746, '__ci_last_regenerate|i:1669215746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a0790f9ecd7b46249c20dab7464a5d62e06bef', '172.105.247.100', 1669215746, '__ci_last_regenerate|i:1669215746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fb6d471dd87a5d8acbc3a8278b6560f45106afb', '172.105.247.100', 1669215746, '__ci_last_regenerate|i:1669215746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caceb3a9262bb97b7ffc78029857f8c5033580c8', '172.105.247.100', 1669215746, '__ci_last_regenerate|i:1669215746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbb678e8c2fc4a4562d89e03ef6d6d74f43444d', '172.105.247.100', 1669220548, '__ci_last_regenerate|i:1669220548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0784d65ed67614fcdce9520c1e81a928c7142ba', '172.105.247.100', 1669220548, '__ci_last_regenerate|i:1669220548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b0f563fb586ae94552d2a844001970827749b1', '172.105.247.100', 1669220548, '__ci_last_regenerate|i:1669220548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b967473d935523cb54806960191f4963119688', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca932890e40fca6b72d026c1eb59ae1275860a0e', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257e8aa1f7aaf2c9ba7f55048baa643ebe79646a', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a6593c79786ea6690b2675262444071ea24a62', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a21520fda9eb3d72cb50ecfab805925443e2c08', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6229a6eedebb10590b27c2b97e5b3b32012bac5', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca55c38e1a6f7e6962b7637a019171673af0aad', '172.105.247.100', 1669220549, '__ci_last_regenerate|i:1669220549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5cdab9d5e57a5648d062c7b4e041194216a469', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a69177972ab4d802bdae821fc4a08b03badf44c', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c028327980449172a195423c849d8a9d1fc2688', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15675d6719f7334852eeec581422c73ec27e781d', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e10d2c838f5429800fd721dea33b2ed4f152dc6', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f71a335fc616ceeff6061a46ddcfca9abc331d8', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d619b1e8a24f8d31ec101d0a4aa9c38f569a623', '172.105.247.100', 1669220550, '__ci_last_regenerate|i:1669220550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6332375753d194d65317482f9df6ab9c6fb970b7', '172.105.247.100', 1669220551, '__ci_last_regenerate|i:1669220551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da304ec4edea93a3fe9ab20cfa607594b0c0cfd', '172.105.247.100', 1669220551, '__ci_last_regenerate|i:1669220551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a018ad93b421332591dfcdc9a8620355715325d2', '172.105.247.100', 1669220551, '__ci_last_regenerate|i:1669220551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba224efdad4c2543f3b6c5947251f239bdd715d8', '172.105.247.100', 1669220551, '__ci_last_regenerate|i:1669220551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a3e2a167957eafe8bf19ab5bf79047e640e2bc', '172.105.247.100', 1669220551, '__ci_last_regenerate|i:1669220551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0559ef71612479375cf2f4b05bf24cdd969a6aa2', '172.105.247.100', 1669220552, '__ci_last_regenerate|i:1669220552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5e18c06ff03642f453a4034cd6501e8bfcc5c5', '172.105.247.100', 1669220552, '__ci_last_regenerate|i:1669220552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8dd66d5a9dce8cd012cc5164d5fe215f82fba3', '172.105.247.100', 1669225346, '__ci_last_regenerate|i:1669225346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51129d67af3be361582feee85cef16fa4b478943', '172.105.247.100', 1669225347, '__ci_last_regenerate|i:1669225347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4f65728a9cb9cdbc8ee6cbf01a0ffd8e576ed8', '172.105.247.100', 1669225347, '__ci_last_regenerate|i:1669225347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d930718b4f5c7f6fd16af92b52bc29eff60cefaf', '172.105.247.100', 1669225347, '__ci_last_regenerate|i:1669225347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aef03e73ffba502b934ce677097d31974571923c', '172.105.247.100', 1669225347, '__ci_last_regenerate|i:1669225347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1aa4d2f17f6ffa4787bfa182aa0de21e90e3f8a', '172.105.247.100', 1669225347, '__ci_last_regenerate|i:1669225347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a456da99049908655dd37d798b47701346964852', '172.105.247.100', 1669225347, '__ci_last_regenerate|i:1669225347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4143114c6e69470f33e73e8a39c35a6db585c67', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a225b17cb4a345d4d5050cdaa1ad306ca82f5608', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a56ad2b72d16864c25586a08ff3490d7cb0e15', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20039cef0719d17559057f59d28b7571e07d314a', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff2f9b73e50cbccaa99ad34c51d5b2a5e617934', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8500b0edc7b0909742a20cf99c3010740824bc', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8312f6a86505b1c08eb76c65286d1d6b9f543ea5', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a2b3fc47063b75fae0fd0e2d536bfae2f3bfc6', '172.105.247.100', 1669225348, '__ci_last_regenerate|i:1669225348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d243267fa890b4a6e14cf40adef0dce4627971b', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d4b6af7415b0c6a2a08dc376218ebcb5b4d073', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5279b742b3ffbd13b6a253ab24116ee9f04c28f', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc12837941bec14a9d94a894ab4368fcf5625d8', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c86469b2a57ca5f44dcfc9d6490aae5e1aaa8f', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a770c2e8fb17b0cb16d6abc565773f0bd5c72376', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9063c328f0e41010a9d387c55722887c34ee5106', '172.105.247.100', 1669225349, '__ci_last_regenerate|i:1669225349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5154796179cdfe16cd93cb059d6eebe3b1ac99c4', '172.105.247.100', 1669225350, '__ci_last_regenerate|i:1669225349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0569a2c40b6f83709899ba4e62d47ef19c16ba73', '172.105.247.100', 1669225350, '__ci_last_regenerate|i:1669225350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd788e06ad37cb784140156db50f552ccb8a840', '172.105.247.100', 1669230146, '__ci_last_regenerate|i:1669230146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bbf7d0fd7de8ffc60913b861e43a1bbbaf2536', '172.105.247.100', 1669230146, '__ci_last_regenerate|i:1669230146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2992b7097ece4dba74c5796678250a67345dc64f', '172.105.247.100', 1669230146, '__ci_last_regenerate|i:1669230146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508a90f950a66eceb609d0ed6d964d7fbbe6faff', '172.105.247.100', 1669230146, '__ci_last_regenerate|i:1669230146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a3e50716babbe97ff97237919c56acee9890f8', '172.105.247.100', 1669230146, '__ci_last_regenerate|i:1669230146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28c80a0b95c2edfd195b3aa7b8df1210c2c0bb8', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae02f4a55d32f330a02200e79545f4101ab129d', '172.105.247.100', 1669230146, '__ci_last_regenerate|i:1669230146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b29f5b09988fa7b1293163b6fe6ef77dce9b086', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be34ed90e96d24475a6ee5a189a42a3ec99bbd7f', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ed2ea050af8847b73319605cc106b260afa60d6', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc1ec66d331ceb3c5471ef813cf12195a5427d2', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2125b02cf6719d34caae6f52f73063c5f7dade07', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e03cdfe8f572ce56451473ae09dc264174d5934', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be843618b328c9257f8251d63d3d0cf722ec769', '172.105.247.100', 1669230147, '__ci_last_regenerate|i:1669230147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d579d73c5b779f617ec60bc0cf72a08af6912f', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf94508e5d0d9d43279b754aa5858a5e5724e6c1', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913b0180f6125829f5f84469c8423fc12775e483', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6033a156991ebab224b15f58fec3d6f4a14170a', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c0a699f0c1eb3264d53f7d23efb95ea7a7366e', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a561c71bcef764453ee0a144ca6f7f8dd024ccc7', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6abf1761a943c32f48d45bbf7cf3674cc5322c75', '172.105.247.100', 1669230148, '__ci_last_regenerate|i:1669230148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fb3b1f30bf495fa79d6af2dbc8b061812dd065', '172.105.247.100', 1669230149, '__ci_last_regenerate|i:1669230149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e0523c8cd2aa32e6faf9aa20017a24507a1a1c', '172.105.247.100', 1669230149, '__ci_last_regenerate|i:1669230149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c55d01ae804817ac3ad1789093011d9457c73f', '172.105.247.100', 1669230149, '__ci_last_regenerate|i:1669230149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19e610db852fb874094e34896e4bbb0ba3c529ff', '172.105.247.100', 1669234336, '__ci_last_regenerate|i:1669234336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b5bc26fb6152c706b66fa2d35fb83717c69a30', '172.105.247.100', 1669234337, '__ci_last_regenerate|i:1669234337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63e2f14d08e891d42dc6a648592f4e0df586743', '172.105.247.100', 1669234337, '__ci_last_regenerate|i:1669234337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7e6e8b166c114d58a74c705b33f733af9ee2c1a', '172.105.247.100', 1669234337, '__ci_last_regenerate|i:1669234337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5199c2179ae66122b9c68ed8b69874b2e4fb0d3a', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc3aadc828301a1aa025bb454c3a0bd07fc58c5', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fff7b443a3dae33ac2d0faaf893af209577431e4', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f18dfb4f7a2f1b2349b1ecea5cb3e3ea7f0032f', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7110cb9cd689e7d5772c128c0c005ad23de046b1', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc49ca74fc6f44e18793a6ed75b906a2d490dc8e', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff243280a874bf81f338b2cad10f5db2227e202', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eef00b9c8e3ee7c8da3f93aa9fa308fa1c8b708', '172.105.247.100', 1669234338, '__ci_last_regenerate|i:1669234338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d0fda1c7e8aacac5c4480a2f626ac2fb9e2bf4', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467054097510abf762e773701097fd1377417a60', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aedb871d7f2b6dc84e50fcfa6b51cf5741c087a8', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb7de552f58272779a664bdacb71e7074037711', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c59a92f5e488cd82bce81f4b98866b27ca6c8e', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b559ad91a1fe08f6decf64d8a62e4a7efd32de', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d8ffb1cffb9aecc9e8eaae828b280cedf33c8f', '172.105.247.100', 1669234339, '__ci_last_regenerate|i:1669234339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbc77372ff59af986b3e68982e99d4d25278f5c', '172.105.247.100', 1669234340, '__ci_last_regenerate|i:1669234340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eedc3d205bd25abf2ccf0b69ddf547fa7d6e247', '172.105.247.100', 1669234340, '__ci_last_regenerate|i:1669234340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b26feacca731e7bbac1eed6769dfd6822e052b', '172.105.247.100', 1669234340, '__ci_last_regenerate|i:1669234340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d681b3d6fa9e50590e9a70e09ea40a7b579c46c', '172.105.247.100', 1669234340, '__ci_last_regenerate|i:1669234340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f12f23d08ae5630c819d8886bd7e7bce7be08c', '172.105.247.100', 1669234340, '__ci_last_regenerate|i:1669234340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6f4f75791c8f0e73f44939b0eab5e9967d9daf', '172.105.247.100', 1669239746, '__ci_last_regenerate|i:1669239746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f0c2cf0adc0429943de4cc2b2d207e80f79975', '172.105.247.100', 1669239748, '__ci_last_regenerate|i:1669239748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33e2846b43cafb0980b77cd106a628e5e00d16b', '172.105.247.100', 1669239748, '__ci_last_regenerate|i:1669239748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439f20d8d0b75a766382bce0123dcb07bcea399e', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97768d19f0ceb2cf8b516f30a7f6ac5001c3f35c', '172.105.247.100', 1669239748, '__ci_last_regenerate|i:1669239748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b86a7ffeedaa499720e9dbb0f87b5684876c0f2', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd9459ea4c4c8b736169fceb2562814ef74d517', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6cf18cc2573f0f0704f10193108c45c6aa9224', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1debc5a21ddb27b860c879c6771af31335e8a62b', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253ccd4b8009f98c48aef772dac17bdbd4897c98', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf142b98cc4612a5bda71fe692499fc7b46e978a', '172.105.247.100', 1669239749, '__ci_last_regenerate|i:1669239749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2489a6a5ca65d8c4e8a54340eef78617a4c231', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6dd865e5c46032d3134f306b5528265a8634a6', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7b230f2d14e681273c99a95bef4b4edd0aedb8', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0cb65c4851b9a78f2b8b98690ceb08f4356d686', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13884c53f1d065d270e579e85e4299292ebcdc45', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98757467772ed6fd583e1a63928e7585bef0f5b', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9f49f6f4ce556e32ca1aafac0245a283ffc149', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311f73c9b5542169e04f782540f55d1ec57c5fbb', '172.105.247.100', 1669239750, '__ci_last_regenerate|i:1669239750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa7fac308979814b6f6331306de18dd9cf08336', '172.105.247.100', 1669239751, '__ci_last_regenerate|i:1669239751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5272ee23e47a92d7fa365dead9feac53c05040a', '172.105.247.100', 1669239751, '__ci_last_regenerate|i:1669239751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae8e099703d88dfaf8eac1c01ff634dacb16966', '172.105.247.100', 1669239751, '__ci_last_regenerate|i:1669239751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6eb04bded1a63651c9bcc61d25b3a945f62bfea', '172.105.247.100', 1669239751, '__ci_last_regenerate|i:1669239751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf7c75ffbfcfac5ba6237316465da119b6c727c', '172.105.247.100', 1669239751, '__ci_last_regenerate|i:1669239751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c4f7fd208d352d3833b8bd265745eeb2206744', '172.105.247.100', 1669245744, '__ci_last_regenerate|i:1669245744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d64158ff4e8f041ee4fb9147d583ede0ac4117b1', '172.105.247.100', 1669245744, '__ci_last_regenerate|i:1669245744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6596094ca13b5bcfccce64e242533c189256085d', '172.105.247.100', 1669245744, '__ci_last_regenerate|i:1669245744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa5e174219ac9464f93bfc57537a1bf73ce9c67', '172.105.247.100', 1669245745, '__ci_last_regenerate|i:1669245745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e1d285d57ca6860a70f25799fe5079a523d8630', '172.105.247.100', 1669245745, '__ci_last_regenerate|i:1669245745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f0ac113e4d599c7dc8e64691718e28895de485', '172.105.247.100', 1669245745, '__ci_last_regenerate|i:1669245745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b1a9876bd85143dbfe24df45f548b726d8f3f4', '172.105.247.100', 1669245745, '__ci_last_regenerate|i:1669245745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e1fe9ac8ed6f29607677a7d207413f12c7fe4f', '172.105.247.100', 1669245746, '__ci_last_regenerate|i:1669245746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8953d6a891abf54dc177374b5ed99702a6af19b2', '172.105.247.100', 1669245746, '__ci_last_regenerate|i:1669245746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b60cf2c17fec1e9ec9d5d48b5a6bb81bdb3dec', '172.105.247.100', 1669245746, '__ci_last_regenerate|i:1669245746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840e059c7728d5c50fff8cb01d1249f0c6f26b58', '172.105.247.100', 1669245746, '__ci_last_regenerate|i:1669245746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb12c03eb7ce772306aeee2834d5a3b8abd75f4', '172.105.247.100', 1669245747, '__ci_last_regenerate|i:1669245747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4708e1ddf1fed028d3781433eff293f696a990e6', '172.105.247.100', 1669245747, '__ci_last_regenerate|i:1669245747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78bed673439373ed5a1d39ffb877f5a07a774785', '172.105.247.100', 1669245747, '__ci_last_regenerate|i:1669245747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ea3f9325cf2ad22773e52bf5fdc90f9ee7cb154', '172.105.247.100', 1669245747, '__ci_last_regenerate|i:1669245747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b011f405ba0b79b358ce3dad1536cd455ab6fec', '172.105.247.100', 1669245747, '__ci_last_regenerate|i:1669245747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b46c8f84a03fc78f5060331239ab84f4eea017aa', '172.105.247.100', 1669245747, '__ci_last_regenerate|i:1669245747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('065cf105df92fcdd59eeea433140f89043b76d0a', '172.105.247.100', 1669245748, '__ci_last_regenerate|i:1669245748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04966806ec692c72bd040dde601ff587b3628bd0', '172.105.247.100', 1669245748, '__ci_last_regenerate|i:1669245748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3b7c77349219983345648aacb74d2319d6db00', '172.105.247.100', 1669245748, '__ci_last_regenerate|i:1669245748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a378d58cad92cda964427e70a9d3cdf9e2c137', '172.105.247.100', 1669245749, '__ci_last_regenerate|i:1669245749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81de061760ceac5c4b75bbdb8f20afceab5202eb', '172.105.247.100', 1669245749, '__ci_last_regenerate|i:1669245749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7235c9ab4fd09784a0e084a18e95cef1a3d75790', '172.105.247.100', 1669245749, '__ci_last_regenerate|i:1669245749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c769227a79f412587e081486f8ba09cf4361fb56', '172.105.247.100', 1669245749, '__ci_last_regenerate|i:1669245749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b7a2854e659af932a2d9979dc0c6a59096b8926', '51.158.103.247', 1669247690, '__ci_last_regenerate|i:1669247690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f9dd1a7914a91ffff5e09c67cb1440f22aa622', '172.105.247.100', 1669251741, '__ci_last_regenerate|i:1669251741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d486c6edb341c17730b886ae1c7714f0054712e', '172.105.247.100', 1669251741, '__ci_last_regenerate|i:1669251741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3efc8a61b588b37ad8bf07fccf458af5eff7026', '172.105.247.100', 1669251741, '__ci_last_regenerate|i:1669251741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9785ab94eb9d4dc253fcb48a58c2bb1a5162d596', '172.105.247.100', 1669251742, '__ci_last_regenerate|i:1669251742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6488c58de55800b6378dff70d9e6fe09a7344748', '172.105.247.100', 1669251742, '__ci_last_regenerate|i:1669251742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f95573ae72e5ea172664611aff0554367c5d54', '172.105.247.100', 1669251742, '__ci_last_regenerate|i:1669251742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71ef3dc76e65e6c5f650c674395fd7e563da044', '172.105.247.100', 1669251742, '__ci_last_regenerate|i:1669251742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6df2dbaf0cff11c6e49a970039d8f2048261e2', '172.105.247.100', 1669251743, '__ci_last_regenerate|i:1669251743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6a49c038fb7edde6fc4a4d4e13a20b993386f6', '172.105.247.100', 1669251743, '__ci_last_regenerate|i:1669251743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5060e2ac8501fb8000fb2bf4c8c10fb081ec7966', '172.105.247.100', 1669251743, '__ci_last_regenerate|i:1669251743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6799f05fe9ad2544356442092870b4672d9bf3b8', '172.105.247.100', 1669251743, '__ci_last_regenerate|i:1669251743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ad1f2c67bc395809584e537fb7efa1cbc1ec23', '172.105.247.100', 1669251744, '__ci_last_regenerate|i:1669251744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0adb47b5679d3e8c9bf997a83e165c1729ed2030', '172.105.247.100', 1669251744, '__ci_last_regenerate|i:1669251744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8481006fc5857a7f75402685ac60c41675c14c39', '172.105.247.100', 1669251744, '__ci_last_regenerate|i:1669251744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60b70e69de12d55c5f49009eb74863589fcb140', '172.105.247.100', 1669251744, '__ci_last_regenerate|i:1669251744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2992cef7d335e379d2a9512ea7fcb2a60c9719c5', '172.105.247.100', 1669251744, '__ci_last_regenerate|i:1669251744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd87c4a3ccfdf06b0b6f6ef65c36393b83f804a1', '172.105.247.100', 1669251744, '__ci_last_regenerate|i:1669251744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb505c7b2cbd2ede66396cd71ad3f43e0cad070e', '172.105.247.100', 1669251745, '__ci_last_regenerate|i:1669251744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445a94501156e78dcfff6af4ea9b626d53c85dd7', '172.105.247.100', 1669251745, '__ci_last_regenerate|i:1669251745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d001eb7933868c998f00cce5e5ea3a86a5931324', '172.105.247.100', 1669251745, '__ci_last_regenerate|i:1669251745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47953046b82dc04ad930bf68a5373ded3b720980', '172.105.247.100', 1669251745, '__ci_last_regenerate|i:1669251745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebb9bfbc929131a006c26cc37d819b262cabc5d', '172.105.247.100', 1669251746, '__ci_last_regenerate|i:1669251746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79b72d6832d61a9d58ade7616e67f051b9758ca', '172.105.247.100', 1669251746, '__ci_last_regenerate|i:1669251746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205d117e3d71a46357c323665ac4fc8d27bb1695', '172.105.247.100', 1669251746, '__ci_last_regenerate|i:1669251746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf0eed9e502db955303f64bd2a56bafc95a1689', '172.105.247.100', 1669258345, '__ci_last_regenerate|i:1669258345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46716f5ab1d4d3b3edc5e25731a64cd1d9fa8d12', '172.105.247.100', 1669258345, '__ci_last_regenerate|i:1669258345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b60759e1590ca598c6748e8e4388b471c5cd65', '172.105.247.100', 1669258346, '__ci_last_regenerate|i:1669258346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4070a202da0c7fe74e6dc30910a77ddc6ffd149a', '172.105.247.100', 1669258346, '__ci_last_regenerate|i:1669258346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f832937919a76df11c241c36ca0cdefed3b49ce4', '172.105.247.100', 1669258347, '__ci_last_regenerate|i:1669258347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a223e5c1727e413b9d275a45f4311a137aa3c02', '172.105.247.100', 1669258347, '__ci_last_regenerate|i:1669258347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8633af702c882a485b399dd190f8010c06575a69', '172.105.247.100', 1669258347, '__ci_last_regenerate|i:1669258347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f9712156d7ede7ca148be89f215aa354a4ebfa', '172.105.247.100', 1669258347, '__ci_last_regenerate|i:1669258347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c38c9a5722016818c5e7251003933749d7f79f', '172.105.247.100', 1669258347, '__ci_last_regenerate|i:1669258347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1d1d19604a01228a3f113fb7112cde4b5d24e4', '172.105.247.100', 1669258347, '__ci_last_regenerate|i:1669258347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd30db3a4ec8dfb1ac5be0abbe14afb9a152873', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17679b6be37352acc39a8fe6da07522bd01bd2c9', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0ccc3cac4cb1259ca134d957ceb8ff6f3f91b6', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b50c1078e3da5a8990f4d3eca6609106d004a40', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e155f94cb47e9615e28b69654c9a4bf9571a9658', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cef131aa458daca4fa0bec915b248b8b4b01b6', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28c63ade2f3b5c67d77f48f16509437db66d137', '172.105.247.100', 1669258348, '__ci_last_regenerate|i:1669258348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4138dfb1cebdbd34e2659fc6892e0f49355256', '172.105.247.100', 1669258349, '__ci_last_regenerate|i:1669258349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447bab805e9a0de1f2f32af3cce1b79ab2400d0e', '172.105.247.100', 1669258349, '__ci_last_regenerate|i:1669258349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397d16ae5750b794e18669f601b3839dce8c68e4', '172.105.247.100', 1669258349, '__ci_last_regenerate|i:1669258349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4f21db37973a8b713f0af4fdca544d80ec1598', '172.105.247.100', 1669258349, '__ci_last_regenerate|i:1669258349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b13c821adf1373db198cf27e22f9ad14fd5d01b', '172.105.247.100', 1669258349, '__ci_last_regenerate|i:1669258349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e92c6f4c4f59eb5670edd5d2270b495c18bd8b6', '172.105.247.100', 1669258350, '__ci_last_regenerate|i:1669258350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24db460c83e9b0adb04cf6628838c75e163c5ec5', '172.105.247.100', 1669258350, '__ci_last_regenerate|i:1669258350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d5f1f8acd6fb37e67d77a0fc01328daa906231', '45.120.39.90', 1669267244, '__ci_last_regenerate|i:1669267244;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669196035\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669264766;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d641e28ad02834300022780acd4f93d727d1b75', '172.105.247.100', 1669264938, '__ci_last_regenerate|i:1669264938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9188e88e9d37f1db5864900cc14bdf6b8f011e', '172.105.247.100', 1669264939, '__ci_last_regenerate|i:1669264939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb41de911513c6d69ac7178de9384964ad67ba9', '172.105.247.100', 1669264939, '__ci_last_regenerate|i:1669264939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb35401c43dfef8af434bc4f0840b77eee245f7', '172.105.247.100', 1669264939, '__ci_last_regenerate|i:1669264939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312a963d0189f1fcff9acd96c9d256b8237869c5', '172.105.247.100', 1669264939, '__ci_last_regenerate|i:1669264939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fceb31fc6d330497f6f81bf39992d5a720ec23f8', '172.105.247.100', 1669264939, '__ci_last_regenerate|i:1669264939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02720fe53fd09eee58a3bb3a9840f629621f5915', '172.105.247.100', 1669264939, '__ci_last_regenerate|i:1669264939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ed68e224bf16df5dd6a52b2c196fbb79597064', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74025f0b79ec7ee1045c2b3345d7f5f492ff4773', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31b3fb9a552117babca171b1fcafd5b3af0c38ea', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07684ac7381700ec4828d8890d0461cdb7d2699d', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed555416751787662080158e4df5704a08516501', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc15ba74e3ea5260b9fa0a46716fa0f78a752956', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e41ac82456d718320d21d3571142b714187c15b', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2712f1a17e7b2daece893ddfeef7c78cff29364', '172.105.247.100', 1669264940, '__ci_last_regenerate|i:1669264940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4d2ec197a6fc3289e6eb00fa4c664fa419bde12', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c97485875ee85cdecaa37b41ce67acd236504e', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09608a409cea88bb0636af5b729db70de9fd896', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f3b593de34c934604f58f13395f58364fc0c21', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec8eaa80a590e5ea2df6d44a670c40f4c6211bb', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641092f43721981ae9f8bb0ec6902a1cbde9194a', '172.105.247.100', 1669264941, '__ci_last_regenerate|i:1669264941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b59a2294b3a466dfc0109973fbdf2c921b8e3df', '172.105.247.100', 1669264942, '__ci_last_regenerate|i:1669264942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911b6e32315e7ea4837e7dd5d73f04ded6aa32c0', '172.105.247.100', 1669264942, '__ci_last_regenerate|i:1669264942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9d24f54d4df3333b14129db3cef6823fea7b7f', '172.105.247.100', 1669264942, '__ci_last_regenerate|i:1669264942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10fe2b428c33e122d1b0bf78fefec6fa465a05a2', '37.111.217.177', 1669276582, '__ci_last_regenerate|i:1669276582;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669196035\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669270882;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6016305988280ca314c025a252b137936b18cb2e', '116.204.230.26', 1669270576, '__ci_last_regenerate|i:1669270576;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669204424\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4f4051c2869048b7095c998866743003e7de6b', '116.204.230.26', 1669270908, '__ci_last_regenerate|i:1669270908;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669204424\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('062165d392e24e03d7a1a069607101d1244ea063', '116.204.230.26', 1669271109, '__ci_last_regenerate|i:1669270908;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669204424\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dffa745cd6864469b77d14ed6c613a934c80fcd2', '172.105.247.100', 1669270938, '__ci_last_regenerate|i:1669270938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3d19d89254e5eabc5c3a88e1c149e65d9e55909', '172.105.247.100', 1669270941, '__ci_last_regenerate|i:1669270941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a3c2b770222a0dcc5531e31340cb462f09b1b7', '172.105.247.100', 1669270941, '__ci_last_regenerate|i:1669270941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a18b98f2c974873d4b4a3a6c5beb5f072bc746a', '172.105.247.100', 1669270941, '__ci_last_regenerate|i:1669270941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f58db0304ca4be1f4fae0ecbf7702a1f686bcca2', '172.105.247.100', 1669270941, '__ci_last_regenerate|i:1669270941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d874b43c3cf1ab30c148245a9e1a63f23af716', '172.105.247.100', 1669270941, '__ci_last_regenerate|i:1669270941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d136a5f9ef3d40ffcf0528aa30109eca026cf3', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac88da884573e9838c121c64581a8575efa290c', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f835e842e113006b28a4b0e2b7ce58a1acc3892', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dfc66761b96cc36bf8ec25fd5d2fd1a81ce0d2c', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c9553324b1656be6132892c6e3dc1e19560a50', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca4b77a327aa48f7a340bd68a635f3a2ae72629', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0032689756c299d1cd1e3356b849c2c8ba56e2f2', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b4d1d4027186e6a9c294a0b1629e4ae4d11d9f', '172.105.247.100', 1669270942, '__ci_last_regenerate|i:1669270942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88f62bfce5945221a80672f22a38b3bc426b89d', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491e13f1568218b145c9d9d26e35c4cf139a7358', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4401d4998099ac83bf40566b2d9bcaad6ef370', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cda11eec65b68241e1c1e75dcbe31707fdabe35', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff3b60cfe52f7bb642c63fcc58aab3a5d2af349', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ef91ad9f304795b0c801ec55ac06b3893dc46e', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f52a5c56cab830ffd60d749006e1b6a098e2cb6', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b32e690796e369b21cdcc44cf6de8f8b27366dc', '172.105.247.100', 1669270943, '__ci_last_regenerate|i:1669270943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1e927ce6f9eaccdc7a3258b08b95fa45d287a9', '172.105.247.100', 1669270944, '__ci_last_regenerate|i:1669270944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95df7c3a60c172fbc93e0ee3d00df5d58f9d9cf', '172.105.247.100', 1669270944, '__ci_last_regenerate|i:1669270944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a423222ce5db0a1eafd91d4a4588608672e7c862', '37.111.217.177', 1669279837, '__ci_last_regenerate|i:1669279837;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669196035\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669279728;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0942738e81c516bf6136a62842c4a7648305ba51', '172.105.247.100', 1669276939, '__ci_last_regenerate|i:1669276939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec98c7e943b5ed3b6f914b31868fd5f3d190c9e8', '172.105.247.100', 1669276939, '__ci_last_regenerate|i:1669276939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04239b561ab3ace57c69745703ea2d7061d1d0d3', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8691a2845a2617e4974758b1fa17f8151b7a04', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21416e9711c3b3c4466a98cac59eabcba3dc9e60', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a7e4dee430964befe194e560d7bd8ceb3b3fe9', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5bafc0c02d07d33620c394ba457e22f1a36551a', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('788236e0b240c46a407274d81fe4e7388a914ea5', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7fd60e57cc489ac591aa453e857a98e1c019fba', '172.105.247.100', 1669276940, '__ci_last_regenerate|i:1669276940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ecfc39dbbbd52a99acf235413b17112856379dc', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4a6b353d63a3763a7c0ba7d867a1e3679a89122', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e3143b0dbf7a1636f1f955ecb112c84ce7f268', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64cdbae404a191e1f7f79153df6f34854d72e9c', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015811b82771628354d698f0bbc92b47f0631651', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ef910a5931f5382a0e6999604403355603133e', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789e1da76519f481505d54ddfc40444bd8a83592', '172.105.247.100', 1669276941, '__ci_last_regenerate|i:1669276941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30ff59172b60f9539323804987cdfd2595f5d34', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc975c7a560da91f691bceac6bbad66da2eedd2a', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d491770b928caa2e4d68fca6145e1e1bdefcfa6c', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f05083127abe05dc29df10a13cfcc1f626d824', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e04b06574a076ee1bf01541626a2774953ecb3a', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be7548263d280b24a02c5280334f5484abf05839', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a7363190e3433b365edfe69156cea490a38056', '172.105.247.100', 1669276942, '__ci_last_regenerate|i:1669276942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d3743e201d4bcce9c65148c50ec4cbe9872333', '172.105.247.100', 1669276943, '__ci_last_regenerate|i:1669276943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d714726653fffa934df35bdec4205d542669d908', '37.111.217.177', 1669279837, '__ci_last_regenerate|i:1669279837;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669196035\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669279837;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f328e81a2129c0988f7a02cb3e87768515f7194', '172.105.247.100', 1669282936, '__ci_last_regenerate|i:1669282936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7391a1ced4702a1706ff51b9027f24da302fad0', '172.105.247.100', 1669282939, '__ci_last_regenerate|i:1669282939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44bd1786b51a0313d5a3b00759d44faf609d9f6', '172.105.247.100', 1669282939, '__ci_last_regenerate|i:1669282939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838baf28db67f289971d795b8e2c89164fcaded8', '172.105.247.100', 1669282939, '__ci_last_regenerate|i:1669282939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f16bf3b8051a1877637300e2d6c4b2237caa149', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74da2a328bb0f659fd811f47631dac605f4a04b', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f3cbaf3be53a5280cb98964d825a0860db271f', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4fdd8f8bf9cb4957028679f2b71cb00cb7ee77b', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e610d5bcd16cbd78def7810ba8b388635bad353e', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54f0b8c40673e55add77a1b51343a5e7d67ccbf', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce5bead860f7cfd3540e4db2e4e0aaf656082b0', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db216579c4ef8aac9d572dbeac342f5144b145b', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25332d7792c76a579ab71a4bd3473854be0b8e7b', '172.105.247.100', 1669282940, '__ci_last_regenerate|i:1669282940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f0b6d92264da4e7ad71809b249c21afe6daa50', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('914346394791660d66f5e29b8d13767915770002', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a23531391479e36cc15b24bcf62020f5106892', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('244a4fdc7e0090bec9d05bf0723432c0012a70e5', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ae7c93fcbb002fa8622ef64d7e2255336039ca', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5893b0873fd13b1d7681c3a370226756cf625478', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb21bef9957d2ee4edcfa8282e73a535150e5ae', '172.105.247.100', 1669282942, '__ci_last_regenerate|i:1669282941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af298f0920e89b68c5ea3d312341b6b0e8dea33', '172.105.247.100', 1669282941, '__ci_last_regenerate|i:1669282941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8e603680b0246643b2bb0c55458f48d43fd6cb', '172.105.247.100', 1669282942, '__ci_last_regenerate|i:1669282942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17377b2108dd75a8e1b473cf4abb8f0b0d59587a', '172.105.247.100', 1669282942, '__ci_last_regenerate|i:1669282942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc2ed8dec1c8cafcedca68a2afeba7988569290', '172.105.247.100', 1669282942, '__ci_last_regenerate|i:1669282942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902c2c80e1af0ac09f1a0e4aa4635a2b7ab341f5', '172.105.247.100', 1669290146, '__ci_last_regenerate|i:1669290146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9691dc292c65f656843e5f20187504b38480facf', '172.105.247.100', 1669290146, '__ci_last_regenerate|i:1669290146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febed974953df07a6851fecacaca725e523f8679', '172.105.247.100', 1669290146, '__ci_last_regenerate|i:1669290146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9afc6ec728667593e5c9646ea8df52a30519dab', '172.105.247.100', 1669290147, '__ci_last_regenerate|i:1669290147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19143d452e0f7cd83ea5cd571c26cdcdb7bb540', '172.105.247.100', 1669290147, '__ci_last_regenerate|i:1669290147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09938981267f92c2a9b10049f8e2aef534c1a82f', '172.105.247.100', 1669290147, '__ci_last_regenerate|i:1669290147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb2430dac4933ba16dd4f2b296a3c7f9b35c778', '172.105.247.100', 1669290147, '__ci_last_regenerate|i:1669290147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d7d70c8c72d7a7d1c3b2f212e1944edf37e2ad', '172.105.247.100', 1669290148, '__ci_last_regenerate|i:1669290148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ecb026e3c6bc117bdb7cdffaba044a7723dcb64', '172.105.247.100', 1669290148, '__ci_last_regenerate|i:1669290148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b4d67fb5d951e811371bf2443ba7170f71ba1b', '172.105.247.100', 1669290148, '__ci_last_regenerate|i:1669290148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fabdcbd0bff20b9c27c9993fb3e6872adb0878b8', '172.105.247.100', 1669290148, '__ci_last_regenerate|i:1669290148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7045f9e6c2a391de84d188e071a1b78be1e9eb75', '172.105.247.100', 1669290149, '__ci_last_regenerate|i:1669290149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72ff873c1bfaffe4c0353e3cab2ce31b774381f', '172.105.247.100', 1669290149, '__ci_last_regenerate|i:1669290149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcc41f9a3ed736b32c09f69fbfaa27d6af5e3dd', '172.105.247.100', 1669290149, '__ci_last_regenerate|i:1669290149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d26141791d8f8c80b1f943a073fcef7eeb3160', '172.105.247.100', 1669290149, '__ci_last_regenerate|i:1669290149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cca53d47b8d6706087e7fb3bfd97b15c83df096', '172.105.247.100', 1669290149, '__ci_last_regenerate|i:1669290149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed389f0b10862732f15edd39bfdea6faa6575b5b', '172.105.247.100', 1669290149, '__ci_last_regenerate|i:1669290149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69beeae0b7d8b43d3af0226a41f80fe7e3600501', '172.105.247.100', 1669290150, '__ci_last_regenerate|i:1669290149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79e0525f8f4e06593135d5c5149160dd501f7d9', '172.105.247.100', 1669290150, '__ci_last_regenerate|i:1669290150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('244b66cc351012e16603ba636cd5d664bc945d84', '172.105.247.100', 1669290150, '__ci_last_regenerate|i:1669290150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd8d8ab1bdf8397e8306025a679c29cb395a65c', '172.105.247.100', 1669290150, '__ci_last_regenerate|i:1669290150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602fddb622f8d681064a22814bf9105c7eb196db', '172.105.247.100', 1669290151, '__ci_last_regenerate|i:1669290151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d17cc9a6c1f974b50198a896813a45615d2140', '172.105.247.100', 1669290151, '__ci_last_regenerate|i:1669290151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5afe495098def9d3abe03e265ba52f79219bc7', '172.105.247.100', 1669290151, '__ci_last_regenerate|i:1669290151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b50db4275ea1472aae5f4651a435c7b32125d54', '37.111.217.177', 1669292503, '__ci_last_regenerate|i:1669292503;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669264574\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669291269;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602652f8b94cce0698b68d66cb89bcc34f19424d', '37.111.217.177', 1669300004, '__ci_last_regenerate|i:1669300004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669264574\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669292858;register_id|s:3:\"259\";cash_in_hand|s:9:\"4450.0000\";register_open_time|s:19:\"2022-11-23 19:55:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd346806ea5e3939d53f73d16bbce13da290b81', '172.105.247.100', 1669296742, '__ci_last_regenerate|i:1669296742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff3ece8ee611eae41801a2c01eaa2b0c2f62f74', '172.105.247.100', 1669296742, '__ci_last_regenerate|i:1669296742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b43c6974aa49f5b6a14936a7552cdc6de4c2903', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66350fbe2006e07e901d728e546c20d290b324da', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624474dd57bc0dcd7ab37d7fc3d7840f73633d9e', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd613a8229644167dcf7dd5ab32e853eee120491', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('443d1e09d027f84bea3cd013330190615672572c', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7f9ac5e7d674ccd980df2c276122cac1082d6d', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ada64241e069bfa9d00102cf2c9fc4cf931afd', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fa6cf661c690e6c043d446610d73e491bc216f', '172.105.247.100', 1669296743, '__ci_last_regenerate|i:1669296743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88a89c3015d4f58c702566d3e2b91e78b2dacc7', '172.105.247.100', 1669296744, '__ci_last_regenerate|i:1669296744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad0f07e62335f3bea12cace87eb74edbb995eda', '172.105.247.100', 1669296744, '__ci_last_regenerate|i:1669296744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5418f9cb8dee5d18c4d715fbdb4c0ad45603fc', '172.105.247.100', 1669296744, '__ci_last_regenerate|i:1669296744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32e66d5868c77b684a977973066bde4b9d34532', '172.105.247.100', 1669296744, '__ci_last_regenerate|i:1669296744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ded3e49e3ba4e851770f74f40fa5ec67935be18', '172.105.247.100', 1669296744, '__ci_last_regenerate|i:1669296744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e68f68451303fa1d14c944e6ade266acf7f54d24', '172.105.247.100', 1669296744, '__ci_last_regenerate|i:1669296744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d563bb56595d9c33178b15af1b02ab279c99fea', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd790358c17ec7f3c4e9ac3430e95b42ad004f6', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79ec91fedb295824f2eb38f1033579331faad6a', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87c98c1e4a61485332b234645cca50b3fd3c761', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878f27b04ae28c19bd2b75ae8c5852e638a28136', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a933e1ba68f9e4856b1aff0b3084e5efac0a0ea', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243ee615b326b7406292ee75b7755c42671432d8', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6d8c822d19b62ae8f1c0f36ba5431d6f9311ce', '172.105.247.100', 1669296745, '__ci_last_regenerate|i:1669296745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37873e01982753eeb225aa5f9a0b4207c0951b88', '37.111.217.177', 1669300197, '__ci_last_regenerate|i:1669300004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669264574\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669300197;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de147d03952a615d30da25528dd45ce81e3000b5', '172.105.247.100', 1669303335, '__ci_last_regenerate|i:1669303335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7beb75511465c24a790e15f62f661e1d5905ef', '172.105.247.100', 1669303336, '__ci_last_regenerate|i:1669303336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d16fda616e64e6ea976c28f2a08787f88dd6054', '172.105.247.100', 1669303336, '__ci_last_regenerate|i:1669303336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57517a77ec82fc62143ab565749cb4ca07c92dc4', '172.105.247.100', 1669303336, '__ci_last_regenerate|i:1669303336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60185da8aabb73ccf58b6908043fa44e09f61488', '172.105.247.100', 1669303336, '__ci_last_regenerate|i:1669303336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edaf8fd503a408518be0181cbaae5c78488bb362', '172.105.247.100', 1669303337, '__ci_last_regenerate|i:1669303337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b3f886a85de7c0eb6fae1275b82e3ecaa9001b', '172.105.247.100', 1669303337, '__ci_last_regenerate|i:1669303337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b1953bcafac2f721a705980be2d59595130784d', '172.105.247.100', 1669303337, '__ci_last_regenerate|i:1669303337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b184ab8e2588150921fa6ee86a037fafae4fbc', '172.105.247.100', 1669303337, '__ci_last_regenerate|i:1669303337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d8963b6157a044aea891f98300fc425fe1c293', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e934ad911157924108588f0a2f96c4b9aec7940', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65252ea8d839c4bf002e105cecce698e2e3adaa', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff1ec8634d2e5a416c1176d36b5ae4e7eefd96f', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6872f0fdc03f457f7f206a8b60e6a03de5978ba3', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c8ea0948cd6469d0bbc237423c1b1c67e13ec5', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f9a145341d56ab26e190102d4e28f663c9e716', '172.105.247.100', 1669303338, '__ci_last_regenerate|i:1669303338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320caee281ab28f05c5bf816e892c9f8e8c3b8fe', '172.105.247.100', 1669303339, '__ci_last_regenerate|i:1669303339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da946b933c23ae983eea39e212dcaa19d6b0e47', '172.105.247.100', 1669303339, '__ci_last_regenerate|i:1669303339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27d842e17a64c35c3a6a82d122f7dd5536599ee', '172.105.247.100', 1669303339, '__ci_last_regenerate|i:1669303339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dad282a890a2d6772a46d3b146e10f943528cab', '172.105.247.100', 1669303339, '__ci_last_regenerate|i:1669303339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1934e51e07f0b860a9f0554d2532d9eea36a1f', '172.105.247.100', 1669303340, '__ci_last_regenerate|i:1669303340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb96d656f6affa4f57a5900a5e76a76a7a2ef85', '172.105.247.100', 1669303340, '__ci_last_regenerate|i:1669303340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb8ccd92aecd1771bad161e15c607494377c3da', '172.105.247.100', 1669303340, '__ci_last_regenerate|i:1669303340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d756ccc37357a42c44691d360728b871025305cd', '172.105.247.100', 1669303341, '__ci_last_regenerate|i:1669303340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f126680a68c9c580a2eea9132518881f0d1ea690', '172.105.247.100', 1669309924, '__ci_last_regenerate|i:1669309924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b03cb53a323616591eae131a075c3ca0786db5d', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a04aa7f7c50e035481fca564b06e801d15a592b', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('884fb84983cb4575c1032f13a25b983715d2e61a', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b621c7f4d1385ea9f8d1c0623189414391ba02ec', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('585e2c47d4dd89f5e6ba5abb833caa4b37ba2f82', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3495972a88f40cd74b724fb4183a8fb104d62af6', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb478cc1088a459932b4084fea51a8222865ce8', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e70de59ddd98608d3cc6fe4c0dc0377c92ff447', '172.105.247.100', 1669309925, '__ci_last_regenerate|i:1669309925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff835c3b6ee6fb6f51b4195594583ae34386ac9', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6762514878f07ba5ed45cea8a00dbbca98c5390', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0de17bf411c672c5d490bd2de3d8b6465e5f3a6', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d4118359e92abcd677233385d07e56d85d1811', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef3aa82f5e71dd5ebc06c77801af211df40102d', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56ed0be80695ee4570871ab9416b1f771ab8450', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8758c4bd71e14b6003edface2f5eb86c0381f968', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc761aa68050d34b25f7a16db823400f0cf13d92', '172.105.247.100', 1669309926, '__ci_last_regenerate|i:1669309926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a298966ee73f29e508df11c51425de5753e0e133', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41519df388e77160bc3c09b22b991381028e1cc7', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc60a6b328a3670e2eb5147a820eb22865ade1bc', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774c4e310693ba391b749fa9693ed9491185b3c8', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5998e94dd3784a7df617c553c8fe06f5f596e8a', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('636d522b7e53998547abe46d25ccf63990ce695b', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460dcf9ad223048c88dec9eeee1db2401869d0ce', '172.105.247.100', 1669309927, '__ci_last_regenerate|i:1669309927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b9158d8aa10334c0c1c0a664799c39d15b43d2', '172.105.247.100', 1669316529, '__ci_last_regenerate|i:1669316529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5d3324f0f9ff79a21bc7d0af8e0d5a23428593', '172.105.247.100', 1669316529, '__ci_last_regenerate|i:1669316529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf717066e43ebac9f7a2ce4eade8058a20c4e36e', '172.105.247.100', 1669316530, '__ci_last_regenerate|i:1669316529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5148e5574c31dfb01dd3ec30e5616a262f287d07', '172.105.247.100', 1669316530, '__ci_last_regenerate|i:1669316530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74516886fd356fb8ef6bbe605bd4db67b82856a4', '172.105.247.100', 1669316530, '__ci_last_regenerate|i:1669316530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb3f81ed602ee9d4cc2b269c1c0630d259239b7', '172.105.247.100', 1669316530, '__ci_last_regenerate|i:1669316530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f186d0779d9bed470cf5565016c6a5491ebf368', '172.105.247.100', 1669316530, '__ci_last_regenerate|i:1669316530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5f9ba59c743c9d4f0281b289f362abc96368ad', '172.105.247.100', 1669316531, '__ci_last_regenerate|i:1669316531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d8e9149e2f2b89283b183ec496dbdd7172dc02', '172.105.247.100', 1669316531, '__ci_last_regenerate|i:1669316531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ef1756aed8cafad1f0d7953335e7444ea0d3c6', '172.105.247.100', 1669316531, '__ci_last_regenerate|i:1669316531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ca027ac185ea79a24a49ba7f67a8b8b29fd376', '172.105.247.100', 1669316532, '__ci_last_regenerate|i:1669316531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50719d7195407de3b9ac772355edf91d13e11b2', '172.105.247.100', 1669316532, '__ci_last_regenerate|i:1669316532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe2d5a9f4fc68f5b553759cf4786d3b3b7c611d', '172.105.247.100', 1669316532, '__ci_last_regenerate|i:1669316532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2135451e4486e9ea499d42f2a56577acd2b5d0f7', '172.105.247.100', 1669316532, '__ci_last_regenerate|i:1669316532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a7a77d29b36029710efb52210a776b20e05961', '172.105.247.100', 1669316532, '__ci_last_regenerate|i:1669316532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0068c73d36b15790107f2337d09a05268d1e83', '172.105.247.100', 1669316532, '__ci_last_regenerate|i:1669316532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f7c4db77302195171e295bf914f6d688a0189e', '172.105.247.100', 1669316533, '__ci_last_regenerate|i:1669316533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e74bfc14c06cc74ec33705d7d333830c2fb99bb', '172.105.247.100', 1669316533, '__ci_last_regenerate|i:1669316533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a335946acf023f1e3f1a465ead9a09808c5480', '172.105.247.100', 1669316533, '__ci_last_regenerate|i:1669316533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21dce9533c9c30ddb607278a8f44092d8b1ce4e', '172.105.247.100', 1669316533, '__ci_last_regenerate|i:1669316533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ed6468b97f66aba6128590368c46667fb4afc6', '172.105.247.100', 1669316534, '__ci_last_regenerate|i:1669316534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea991b97e356959179500490fa0260d9bd50b32', '172.105.247.100', 1669316534, '__ci_last_regenerate|i:1669316534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b571f307f345f17c9e329459c945f415cb7cc7', '172.105.247.100', 1669316534, '__ci_last_regenerate|i:1669316534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9575d08cbfd35d37386476980de1bec84733d837', '172.105.247.100', 1669316535, '__ci_last_regenerate|i:1669316534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc3bdfa16aeb8507602fbf2a3b4b7813f3ed743', '205.210.31.38', 1669322763, '__ci_last_regenerate|i:1669322763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9477caafa0ee1b99033d4d80b96b8aa815211a', '172.105.247.100', 1669323131, '__ci_last_regenerate|i:1669323131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0545860a36a7008f8d7f92f579c3520d666de1c9', '172.105.247.100', 1669323131, '__ci_last_regenerate|i:1669323131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586c20810aeba3165d10ba4fb9affad76aecbbd9', '172.105.247.100', 1669323131, '__ci_last_regenerate|i:1669323131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61df8e295f8abc86236b48f0a6c8b76225f66d34', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf93c16a5ceba1a5d51a0d63b728f8247000b77', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65210f1f73874b191986a0c5a063a0036e1dadf', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be1a8c04541b14207204b011fe127455f70284e', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662800831cc0d4c705be90037c14af4ab6165e22', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37422feab5eaf50a572eb05439a7e552d8abefb7', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c393eb07caddc83377c3e22ba8424fb25b303107', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd4373e4e8453a5ff1c3219ee80efe02b939a44', '172.105.247.100', 1669323132, '__ci_last_regenerate|i:1669323132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ecd9f86075fdc73626acfef33d7e62587e2592', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709d5ff45ec70c5fb0013d3aae168a4371660f42', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef0ae8b30f29eae4c7d9a1e8ca431aa33e38b39', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dacd8e050157c4697994ddad6b518c1aba73f523', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05ce78e6e79ed0b90404cfb365a1a9caf9498aa', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af688c4306aa9c2a09a4418572095ea42d79469c', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f60605f1d7aefd7bf00813d68ecdb7350bbd9f5', '172.105.247.100', 1669323133, '__ci_last_regenerate|i:1669323133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98749a0e8f356d8c20e51f34b5eb2884651dc892', '172.105.247.100', 1669323134, '__ci_last_regenerate|i:1669323134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64907123b2ca7b2652daa61c17c05645017282c2', '172.105.247.100', 1669323134, '__ci_last_regenerate|i:1669323134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3497218fe3c33c9f88d5dbf83145ebe206b42b0', '172.105.247.100', 1669323134, '__ci_last_regenerate|i:1669323134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4c6ea7636d92ef4a8fbaf2b7562ac92518c039b', '172.105.247.100', 1669323134, '__ci_last_regenerate|i:1669323134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad6dae3233608c01f0b40d5d7c6e40c0bdee9ec1', '172.105.247.100', 1669323134, '__ci_last_regenerate|i:1669323134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33756c699950af8616b43c82bceeb3e60e9515d', '172.105.247.100', 1669323135, '__ci_last_regenerate|i:1669323134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf02dd96d2a972aaa79ec3e1fee3bbef02333e1c', '172.105.247.100', 1669329726, '__ci_last_regenerate|i:1669329726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43064e3610db4304aa9b79c38285659a751e602', '172.105.247.100', 1669329726, '__ci_last_regenerate|i:1669329726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57df256e569a3817273fa765ab129150c807dd8b', '172.105.247.100', 1669329726, '__ci_last_regenerate|i:1669329726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15966c1b973b372af9b28c87440ed5e86cfc97ed', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631e47d4c042e61f28c9dedcb43f8b01c27f3e39', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6bfc1231992ada36953328a111da9aec166367', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10a73e1b95cf3e4eff5cae47101c6216a3b1b59', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899a3cce50008123290114be8363c0b4750781f9', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af9d950c0aeb0b7f691042ade01f55114f58650', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d648c3aabc99c54e957d70ca4e7796479e3c0cac', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77da2a71d0e6ae29ede43ecb07e47bd36678531', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc9461d262a68a564580706e21825c9946cdb66', '172.105.247.100', 1669329727, '__ci_last_regenerate|i:1669329727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046cc660fa0648bddbed669b22cd3843a7cd1a31', '172.105.247.100', 1669329728, '__ci_last_regenerate|i:1669329728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4a55eec68d0b04bfa51449454b4fae8f06c25c', '172.105.247.100', 1669329728, '__ci_last_regenerate|i:1669329728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ac9951635b0e40155dbc4b64ffbbf8b6d86e9b', '172.105.247.100', 1669329728, '__ci_last_regenerate|i:1669329728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d96123117088075eafe563075e3431b06be8cc0', '172.105.247.100', 1669329728, '__ci_last_regenerate|i:1669329728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d56fb0ae6ab58a67516d71cedbe1f00d70c940c', '172.105.247.100', 1669329728, '__ci_last_regenerate|i:1669329728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e46f9d681bc5c4ad41f3dff92fabb37ed57eb864', '172.105.247.100', 1669329728, '__ci_last_regenerate|i:1669329728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d7cbe49cf6d8f46ccb204937a5db767da74497e', '172.105.247.100', 1669329729, '__ci_last_regenerate|i:1669329728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125f16559e0ad1122085b078992e393e67caddbe', '172.105.247.100', 1669329729, '__ci_last_regenerate|i:1669329728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6158f58046c985d4233a12627bc8f07de63f44d3', '172.105.247.100', 1669329729, '__ci_last_regenerate|i:1669329729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f505a96012d7e40de8af787d4e6d3d3cd0e759bd', '172.105.247.100', 1669329729, '__ci_last_regenerate|i:1669329729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378c04d3038fe052b3cf35381b58bea4de079fbd', '172.105.247.100', 1669329729, '__ci_last_regenerate|i:1669329729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2177ac9eca7393ff513333108faf388ed122c687', '172.105.247.100', 1669329729, '__ci_last_regenerate|i:1669329729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e897d50d1a52c819f7523c4c6810c1774b48279f', '147.78.47.249', 1669334829, '__ci_last_regenerate|i:1669334829;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3014f9f9d3fe927360836f5684c57115dfacf92b', '147.78.47.249', 1669334831, '__ci_last_regenerate|i:1669334831;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70dbbdafa84da2f887ac2c70fbda507ef415ef6e', '147.78.47.249', 1669334834, '__ci_last_regenerate|i:1669334834;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ca1bd242684474390d7fd7adb328e729a91d27', '172.105.247.100', 1669335725, '__ci_last_regenerate|i:1669335725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ecbcd1a4e7664b915ad2f224b2b2d11da35f74', '172.105.247.100', 1669335725, '__ci_last_regenerate|i:1669335725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65c6d649698335a26b9075e4aed57ca8f1c5193', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3638b2d4f3558961d1a70d23fee9000e40936974', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9fab615c9eba244a88f57f063a8e35e976187fc', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45710582744cdb7af8fcbc34ba1fac2b491ad2c', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e7927606b089ee4f109c568e23bb88ce4c6b34', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81355df85e3cd8b75c9101f91d982b981bc84007', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c41f46a41564cdf71c418f676856c9ea69f3d7', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4070a0ddb27228de7d2084b24446448b4066f676', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f124c669d723f733485da98fb40ee4af522426', '172.105.247.100', 1669335726, '__ci_last_regenerate|i:1669335726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ace020f86e3907d0866281b2c5600a7bd9df631', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db207b9e3c185d50fa430502ccd9e9de4223fe8', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d478cb71fd9848c8b91ff140da17afc23ae96858', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e9c0f9f5526b6e14215d9303129496eb8fedc6', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0921dbe99fa975ed03054c6d2c441eea20694b', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d23bcad2a26221601288830eebc7cb5439009a', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ccaca17a080c4a68b82259180da43756cb03aed', '172.105.247.100', 1669335727, '__ci_last_regenerate|i:1669335727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd9e0787cd2a66ad3dea8df60db6c14deb5c646', '172.105.247.100', 1669335728, '__ci_last_regenerate|i:1669335727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c67935264f65774d7b2faacea690f95c69ea08', '172.105.247.100', 1669335728, '__ci_last_regenerate|i:1669335728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7cfd962508678e62944067c94ecd228e466c28', '172.105.247.100', 1669335728, '__ci_last_regenerate|i:1669335728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('313b51a6e287513d460e74c50e71856e29050423', '172.105.247.100', 1669335728, '__ci_last_regenerate|i:1669335728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbaa532e077f623a8789e41581455621132d3bfa', '172.105.247.100', 1669335728, '__ci_last_regenerate|i:1669335728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18bb536e42e0b9de298a28237317f0fbb3bb9db', '172.105.247.100', 1669335728, '__ci_last_regenerate|i:1669335728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f51b039d0d387ecde6c55addafea8a68b8acfa', '172.105.247.100', 1669342928, '__ci_last_regenerate|i:1669342928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702d46b656827a7ec4d176846153f766431539d7', '172.105.247.100', 1669342929, '__ci_last_regenerate|i:1669342929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a813673f479b0a38f54088e338081bd368aeb3cc', '172.105.247.100', 1669342929, '__ci_last_regenerate|i:1669342929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('988d95bad77ff31fdc14b1bad2a0f3f04583348f', '172.105.247.100', 1669342929, '__ci_last_regenerate|i:1669342929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4efed84c0f2ef9641d410bde301b3022ef5b6da6', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f2e115e19a54d9ee5acca832cac9db0ffdea94', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d16a90e29192a50a366888895e940165b1b7a7e', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac755b6eeaf8b856a98d3c5d124f7c449bdea6a', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415721ed34272a5abf492b9789a86f99436f01b9', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c6ca0ad61074ca156adef41c0845aa2988b430', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fdf89170b66e941b1369ca9db87a7913efcb343', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d879975757a9de2ab9d9ecd9adbe680584e24e7c', '172.105.247.100', 1669342930, '__ci_last_regenerate|i:1669342930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77e35a61792f9039b9a30e487ff8804eefb6bf2', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d245c3e3cab1aeb1e64739f16b5f9737e87713', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eff2a4705fd9ef1fb3deb7cf9e2ce820cf4c0b0', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61dbf91106ef9fa6c7d1982e79bc38f8a840a4e9', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0cea2f3da1f3201c7196a0f821a925ba0e16fa', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8882e775f6adf610a44df6b187920b07159cdca3', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b1056cbe4c1368b008d6613d4aadce401b70d6', '172.105.247.100', 1669342931, '__ci_last_regenerate|i:1669342931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61941dd7c54bc222a6d747c96dbfa9486baa315e', '172.105.247.100', 1669342932, '__ci_last_regenerate|i:1669342932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04145f4eb7a95621a9c5d5e60d43910e81d2fbd', '172.105.247.100', 1669342932, '__ci_last_regenerate|i:1669342932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34eb47e22b50c26929bf0d0afaaf4014773263c4', '172.105.247.100', 1669342932, '__ci_last_regenerate|i:1669342932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d577af1873f638e1758900886e77709c12add538', '172.105.247.100', 1669342932, '__ci_last_regenerate|i:1669342932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8abbec2f7de0573a9d7d1a9a0a41bdfd2d74e7', '172.105.247.100', 1669342932, '__ci_last_regenerate|i:1669342932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49ab43389b913eeae10fe6192d6e41b95d0e7bd', '172.105.247.100', 1669349523, '__ci_last_regenerate|i:1669349523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c2d58bf490a15dc2f6e75fdb8ac07c634e4c2d', '172.105.247.100', 1669349523, '__ci_last_regenerate|i:1669349523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbacb7b9bab3ee88cc1213b4ed4876bc0352ab68', '172.105.247.100', 1669349524, '__ci_last_regenerate|i:1669349524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f17b03b0586a1692d460003bea2ce6a8f251b6', '172.105.247.100', 1669349524, '__ci_last_regenerate|i:1669349524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45fba81c15064eba45d050a7b35fce3c929d99e1', '172.105.247.100', 1669349524, '__ci_last_regenerate|i:1669349524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21250c53409c013230ac09bf81f667537041ce0', '172.105.247.100', 1669349524, '__ci_last_regenerate|i:1669349524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be8d6b86d6b5dd5fa2d6ba26f6a627de8a23b94', '172.105.247.100', 1669349524, '__ci_last_regenerate|i:1669349524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e771e31701e9d896e487b140d382e868d4fd868c', '172.105.247.100', 1669349524, '__ci_last_regenerate|i:1669349524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5e8c4ab15d1fa9df71ad28b7ffb2d8e1930247', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49b5e1cdfd4eb35a6f413fb4da0f9a342b4ee74', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed6c8dbf7f73aa5e283264bc0c67ac0810ce4c1', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666b1716bcbae8eb2d674ec1c2db0a9816f5ff7c', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092aa6d352c67f81f616c45b228704f8d11206bd', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b9be65af1a1e01a6090a67304a5a22361cf7b0', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15c09548ada3c668c8956ffafc6cce1252364d0e', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d8807994e68ddbae228306677a80c34746c7dd', '172.105.247.100', 1669349525, '__ci_last_regenerate|i:1669349525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3263f59e55afed510c05df20699b9ec110076cb5', '172.105.247.100', 1669349526, '__ci_last_regenerate|i:1669349526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8924f9dfef8e51c331c95decc07f1274fc8a9d64', '172.105.247.100', 1669349526, '__ci_last_regenerate|i:1669349526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0eb4c9ece3df1b6e41bcbf639249d7f19b07b2', '172.105.247.100', 1669349526, '__ci_last_regenerate|i:1669349526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3aff6cddfa163bffc410c64f94d3e0d04d6f63e', '172.105.247.100', 1669349526, '__ci_last_regenerate|i:1669349526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c3235a71be6b2ab47d36b7558b7afc9a7215ca', '172.105.247.100', 1669349526, '__ci_last_regenerate|i:1669349526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11d842a5e80ef720a6471627a983f7a7c00b549', '172.105.247.100', 1669349526, '__ci_last_regenerate|i:1669349526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b7ed9b10e006cc6398302ef16047a6b8d2a5537', '172.105.247.100', 1669349527, '__ci_last_regenerate|i:1669349526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fdca6ee8222c99439e211f1d039dc9d07ec3cdb', '172.105.247.100', 1669349527, '__ci_last_regenerate|i:1669349526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa3fe5f35f22de0718e755d5fa5ef4f03876ed8', '147.78.47.249', 1669351435, '__ci_last_regenerate|i:1669351435;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc6ed0804e60720a833eb405991be80398bf40e', '147.78.47.249', 1669351437, '__ci_last_regenerate|i:1669351437;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670d2dc59386156cdb45299b07bb5791488101d9', '147.78.47.249', 1669351439, '__ci_last_regenerate|i:1669351439;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c9b62fc6a8ee0c151269e7512f1be9d6499e129', '45.120.39.90', 1669356536, '__ci_last_regenerate|i:1669356536;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669356489;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10e7bcfa057fadc12bbb8c0c1948003888c7e39', '172.105.247.100', 1669355528, '__ci_last_regenerate|i:1669355528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b06b5b28b28670e23ac36a843e31daf6f6a9910', '172.105.247.100', 1669355529, '__ci_last_regenerate|i:1669355529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0104863cc22ebbca3348bb2ccdab62425c4058', '172.105.247.100', 1669355529, '__ci_last_regenerate|i:1669355529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5d6d0ff9138dc09f65fd98cc11417c8e0ad464', '172.105.247.100', 1669355529, '__ci_last_regenerate|i:1669355529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda57215806737c6df288b4c2003e1aa4f193742', '172.105.247.100', 1669355529, '__ci_last_regenerate|i:1669355529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a889e1d95d2d58f1f549b10008898a2080616cb6', '172.105.247.100', 1669355529, '__ci_last_regenerate|i:1669355529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd28a35c462f71cddb7a524338e740f33f797bb5', '172.105.247.100', 1669355529, '__ci_last_regenerate|i:1669355529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7725c9a4f194f13e53306f920613edce2a1cc78b', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbfe0717b4376dc9c0b2abd6aa1269dc011da1c8', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('771a86fa10036a9c7b743454fc44441c0c0c8003', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cb099511980eadb5193624c2ca260beaef4255', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385c344df503df3bbceae638e0fc16acee3cfc4e', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac6bab3b5dd20a50a249e4d1fdc7e9ed328919f', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be1c1af311d9d484bd70c5c243d1fbbff645881', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa6ac9eb878208f88304aabd41fe207fd61e77b', '172.105.247.100', 1669355530, '__ci_last_regenerate|i:1669355530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81ddf4744856e966e81b1ea441478b5a7ba2050', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f98bbd283387031f845f4c1518230d24963bc5', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16bc73eef9e5f6e62f4fd9dfad3669104b21d748', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827e97e5e614e6b933623f7247faf0970f3d564a', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b03125a16a615622cec920095b68c88e3b02bc4', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898f1061120db9f345d6ee2dab36f2cf6578425d', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74703049ad7dab38c8c895f8a138edbbdee2dbad', '172.105.247.100', 1669355531, '__ci_last_regenerate|i:1669355531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be11b98eafa0b010cddf4e81152f7b615f1f519', '172.105.247.100', 1669355532, '__ci_last_regenerate|i:1669355531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c7d23b0689603013b3ba1bc9218fdad02bf9d9', '172.105.247.100', 1669355532, '__ci_last_regenerate|i:1669355532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5a0213bede34e55b9e43725417ab6494634353', '45.120.39.90', 1669361501, '__ci_last_regenerate|i:1669361501;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669361121;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef7b8d26ce4fdd9a55ce7052c1124e89c9a1e71', '45.120.39.90', 1669363802, '__ci_last_regenerate|i:1669363802;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669361511;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e3856e66391198cfe167a482fb466cb998845a', '45.120.39.90', 1669361117, '__ci_last_regenerate|i:1669361117;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669361117;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89cd4a6b6886a8caa9c36d477745548604948d7', '172.105.247.100', 1669361530, '__ci_last_regenerate|i:1669361530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcecf2623a915c5c241c626a49e0dc9f344ea754', '172.105.247.100', 1669361530, '__ci_last_regenerate|i:1669361530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9fbbbddc38ba8df872d791120e3ccbceea40689', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a32459f0324a57f3825da71f4686dec442f539a', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3fb4d78cb83c0d607e78692d35fbf5ca544db04', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336451aac2fdf2eb1b87a92219acceac149eddf5', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e6ca8870afdf3eb42bc740629820041b782b65', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29cf4360f205c65a64cf9568e67da4bb36b98466', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dad8d139bb2bae65a29c387afb35119233a326e', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191310b474683f707f01753520f5bcd92b0826b5', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f65da691d907955ad2ed160583c307a3bd33f3', '172.105.247.100', 1669361531, '__ci_last_regenerate|i:1669361531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe2d267b741b5d092d4a4d3403cdcdf672b03d0b', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e90ee53d4b87fb9aeff086342ca16bef0ef9fbc', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6ae766b0db400c1a6ce42c4ee5e3e6b1a611b0', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0eac53361c6364e0185ba4e3848a4e4bdf12d5', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c832d7ad60be014b08e07bb872aa5f4429fb2c31', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b169dee29936885550064631c5ce90c1569d8136', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af4a35b037dba7ed390229b2f4b9d94683d7d26', '172.105.247.100', 1669361532, '__ci_last_regenerate|i:1669361532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b631775c6b36a7ef6e899fb0f55459df5611c6b0', '172.105.247.100', 1669361533, '__ci_last_regenerate|i:1669361532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fd27bb527e4907650e36aa1d3e6d7ebf7ae439', '172.105.247.100', 1669361533, '__ci_last_regenerate|i:1669361533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7340ca75db513f0ce7d7a4a72ac798b832e454', '172.105.247.100', 1669361533, '__ci_last_regenerate|i:1669361533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83c65c3f81df693c63f7e3d14b4f86c66a5afbcb', '172.105.247.100', 1669361533, '__ci_last_regenerate|i:1669361533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e181c607c6549f198bb8c84419f5ffcb8187f25d', '172.105.247.100', 1669361533, '__ci_last_regenerate|i:1669361533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3662071248da658984e46874ac28f7a1885104c', '172.105.247.100', 1669361533, '__ci_last_regenerate|i:1669361533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52147d035c4935164d7def4b8fefc00f4fca6a68', '45.120.39.90', 1669368734, '__ci_last_regenerate|i:1669368734;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669363809;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39277c3f4b07743b5e95f5e3d068ec25664fdac3', '172.105.247.100', 1669367532, '__ci_last_regenerate|i:1669367532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e317f737bf1dc547f93e48ebf1a3a497c4906ca6', '172.105.247.100', 1669367534, '__ci_last_regenerate|i:1669367534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe908e5ae2e330fbacd95aedafdf064a00c4599', '172.105.247.100', 1669367535, '__ci_last_regenerate|i:1669367535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c932ae37a9062cfd91a912ff8bae75b5f7fd3f2', '172.105.247.100', 1669367535, '__ci_last_regenerate|i:1669367535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50261b88a55ef1863482dff70dedf79c5262857', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e338aa39662a3750b4fd5e8e7ba1315be1710a1e', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0d51018f489e2b43d192a9ae8d145bc3f528c0', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff4a21d67ece11e29e757b7654e37bfab8c1bfd', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c73eaf573fd388ecb48f4caf7aef0920cdda67', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324af06ed4ce3e948342d0ace0de3f287dbef1ff', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844ed9256b6aa49184d56f92931744971049ba17', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3e0d24eb0a4fdbb310cd5e5983c1065a9d4d41', '172.105.247.100', 1669367536, '__ci_last_regenerate|i:1669367536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b10c6f74f79acd976875ad16ed9e6cabb61c7c84', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1934816182ac023ad4bb35d2d199b950f86cec33', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2408a34f3acb88e2e002eb14d8ac0231ece41eea', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed523ef5fc24189a08c03d78b8c77bf446ca65ca', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c036d813796abd3c7ab461a1058a77656d44efc', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92b66aaf963e762604881a8b0c45018826a9de6', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd2d2cea4add6fb3f5d4cc4ff14c83b89de869b', '172.105.247.100', 1669367537, '__ci_last_regenerate|i:1669367537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed287416409904bb978685941c642806934e762', '172.105.247.100', 1669367538, '__ci_last_regenerate|i:1669367538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2dd8941bee86958e4ac79d66c46214521d8583', '172.105.247.100', 1669367538, '__ci_last_regenerate|i:1669367538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ba24ab789baf0b1599c64ea6ce3485b813ffbf', '172.105.247.100', 1669367538, '__ci_last_regenerate|i:1669367538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbcb0720c7e9584672fac25a3a88b1d31d5103b6', '172.105.247.100', 1669367538, '__ci_last_regenerate|i:1669367538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebee0fc6f927583fd46cacd00a8d976bcca882ef', '172.105.247.100', 1669367538, '__ci_last_regenerate|i:1669367538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2da0973c7f20065744161c393b48e1bdf1fd8b5', '45.120.39.90', 1669371065, '__ci_last_regenerate|i:1669371065;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669368786;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49659d885234144c54142b477fb07a212dadb850', '37.111.219.194', 1669371800, '__ci_last_regenerate|i:1669371800;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669371301;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58490202b0fec8312ddcc746a9b6cf301d7cf77', '37.111.219.194', 1669372634, '__ci_last_regenerate|i:1669372634;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669371802;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9741f88b1f43d663e0cb190af86e25c47f9dcc', '45.120.39.90', 1669377643, '__ci_last_regenerate|i:1669377643;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669377634;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f24e7bdc7cc014bdcaec35813d3f1b6f423704f', '45.120.39.90', 1669373267, '__ci_last_regenerate|i:1669373267;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669373267;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f0669e03c3de5d0df3f2fa69fd9cbaf45373a8', '172.105.247.100', 1669373532, '__ci_last_regenerate|i:1669373532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1bb13cde4c608406c14838f4864c797f240373', '172.105.247.100', 1669373533, '__ci_last_regenerate|i:1669373533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3484e9a5718208c41a28a39fce5749d58265c0a4', '172.105.247.100', 1669373533, '__ci_last_regenerate|i:1669373533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e43c999132f22ddddffaf7653f8a749d31ae50d0', '172.105.247.100', 1669373533, '__ci_last_regenerate|i:1669373533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a525250a8081496b04f3529ed391dda9ea2c849', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a63f0dec7177c5da61e15bdc1c1bb98a50f461b', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9aef5805a5ed554e86d4365cc8daccc674fada', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634da08f3714d1119bda63689c08fb71f4f03707', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77fbcbd61dea5479315e7e90e006e8334bedd62', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a5daa75c95143c6570fe77e73b5b86a6688394', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17cb2f458549c07154f8c3a4d9bbc922167eae5e', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de6fc421129ddc964faace3cd1be7966e996727', '172.105.247.100', 1669373534, '__ci_last_regenerate|i:1669373534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8640184567669e40a13c27932e3924fd1d7395e1', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7bd8a87ff33eb5b7aff6ea7dc3a68b7de98305', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d386b2e6f7ccc7a3c1f71ff58a9412065acd41e0', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f16018d9809a475c79818b34f9aea8556c6a51', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856cbfb51a012c6f107554e9b5f669a6a9cc3f2c', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59bb06fe43abe9a4394106eb067ee35dd0a8619', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c180d95c7e5bf2acf9378856a7a25c200db1691', '172.105.247.100', 1669373535, '__ci_last_regenerate|i:1669373535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe0a434c8c6e087dc3de4e99fd75ad57d30c6ef', '172.105.247.100', 1669373536, '__ci_last_regenerate|i:1669373535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b742f20717361292febe39a93db0e177c67864a', '172.105.247.100', 1669373536, '__ci_last_regenerate|i:1669373536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c700153b58282c7d7c67f35536303c0f5a2ea84', '172.105.247.100', 1669373536, '__ci_last_regenerate|i:1669373536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac1107dc2a8f3483a4873ddf2389df11ff8775b', '172.105.247.100', 1669373536, '__ci_last_regenerate|i:1669373536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2cb5379a175fabb5f33fd41366a7efb4f46ae41', '172.105.247.100', 1669373537, '__ci_last_regenerate|i:1669373536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffce943d6e389fe0076c51274520ba328bdc5365', '37.111.219.194', 1669375169, '__ci_last_regenerate|i:1669375169;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669375169;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c851f7ba17ca7af4c97792a0ce9aaa8227f60f', '45.120.39.90', 1669381430, '__ci_last_regenerate|i:1669381430;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669377643;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f19dc32a16c092b54e0ad37809ee5704e72ea3e', '172.105.247.100', 1669380132, '__ci_last_regenerate|i:1669380132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48945795d848aa8c544febb8517d81aaa15017eb', '172.105.247.100', 1669380133, '__ci_last_regenerate|i:1669380133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48922b710c3a943861ceeac75f864f45bd87427', '172.105.247.100', 1669380133, '__ci_last_regenerate|i:1669380133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c9d94c87e403bbb1d172b8150358d9c3b66994', '172.105.247.100', 1669380133, '__ci_last_regenerate|i:1669380133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c005633fa5e455b304259dc474de6be6690f4c26', '172.105.247.100', 1669380133, '__ci_last_regenerate|i:1669380133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95736d026ba9198fa23ffa5a76bb74ae66f95f57', '172.105.247.100', 1669380133, '__ci_last_regenerate|i:1669380133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1330aa168604e16be4795cffdddee099b14b229', '172.105.247.100', 1669380133, '__ci_last_regenerate|i:1669380133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff5dbb211b2043be12fbfe595e284615d646e8d', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5bdade4d08c0551267fba4ca93d0c481fcdcba', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db54357796f6db3208fab5f02d3add14468e8b6e', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fcc7f3324614a455ec73e0c587f99f35fce957', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a1f86631740e423cad6b0a8505e84a31a29103', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7773f838dfa4931bedad4e9597b6ade93d9f163', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab4fc546cc3f6c39c9fef5152fb8ccd6b87b80e', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f38061cf71520a6f2315bca89e43138439000bd3', '172.105.247.100', 1669380134, '__ci_last_regenerate|i:1669380134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fda52c1aa10787fcf49fc88ade0b6ef37ad4181', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2bf408b82994d0433afc4a80c5a68318368549', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a820bd802e4ae7c80b3f929b3c8f2c1e3e778d8', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c064774613c00085e7a16871a4d9fd5ac1bcfc', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f39dc0f02ddcce9480ba41b1bdd4b00075ab38', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aaa7c63e07b74e3321db6f1f31e238e247b7a9c', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08fbb160abe8eadc20f4c5bfb10f377d279aa60b', '172.105.247.100', 1669380135, '__ci_last_regenerate|i:1669380135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d281db0547c2d243b1756deddc87dc9c4c12cdb6', '172.105.247.100', 1669380136, '__ci_last_regenerate|i:1669380135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42e94b19db28d085d47b164ad1c7dff4da301823', '172.105.247.100', 1669380136, '__ci_last_regenerate|i:1669380136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('768aeaa781383bbf1ff427a57fcd3863726e765e', '45.120.39.90', 1669382859, '__ci_last_regenerate|i:1669382859;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669382300;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2ee7dc06483ba90910730fe9de3aad7f0d001c', '45.120.39.90', 1669383211, '__ci_last_regenerate|i:1669383211;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669382902;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9797cf6dc6b8c1ea1d0d7ba1bcb60d881798921c', '45.120.39.90', 1669383674, '__ci_last_regenerate|i:1669383674;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669382902;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877ded409d3e108a8c98e65a421ac0767404f7b2', '116.204.230.26', 1669383695, '__ci_last_regenerate|i:1669383671;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669270149\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669383695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f620b5e1934a86cc25a1635b24d4021a9d2f0b51', '45.120.39.90', 1669384022, '__ci_last_regenerate|i:1669384022;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669383724;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d213e8c0e7b323f6b82498beaa2404c82254638d', '45.120.39.90', 1669384898, '__ci_last_regenerate|i:1669384898;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669384313;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdc57ea179400b9ad47044637d13f8374f85b56', '45.120.39.90', 1669385329, '__ci_last_regenerate|i:1669385329;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669384972;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce1622ce46835a53deb4dc7e1327881fab57efc', '45.120.39.90', 1669386132, '__ci_last_regenerate|i:1669386132;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669386126;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e32ad346bb3ccc6ce22d2002d293918735847e04', '172.105.247.100', 1669386129, '__ci_last_regenerate|i:1669386129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef061fd334520b7508e1f61e57978f56c3101114', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aea1754ae5a5ecb04bb3cd23689c60d30499c7a', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdb8128229dc77a607f9cbac96f8183afd00ed3', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('417ff8f32c73ea51761bf31ab567e4379204a2a4', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55adff087341c5531dab1a015317563b0e1d0925', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('104bf4abc323591bf9037c06bd0ef6538fdfdd6a', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9135d9cb8030ab253ba9a6600077d70b79a87d92', '172.105.247.100', 1669386130, '__ci_last_regenerate|i:1669386130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8313a4a79903787d990807bb82e50ad883edf38d', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c34b78497997c104ae3aea745bb6cd8940c2e6', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe60f42c7b64155117be593574101150d598e9db', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f874822740ddf6624d095c028f543df6133f3c', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eecb70ff25f02389226a3e22c8e07a9fdfb2ed0', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31ddf258b9a4065e209e9ce8f4c075a19117bcc', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6692f1a5e555015f149c552749315de643cb99', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('932e1b98f8c86286154b65088134068aa21530da', '172.105.247.100', 1669386131, '__ci_last_regenerate|i:1669386131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e452145357243b6188e64befaef2e841e2f5c4', '172.105.247.100', 1669386132, '__ci_last_regenerate|i:1669386132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1f396f2f7c3b11bbc6ee5412029aa7333dc89b0', '172.105.247.100', 1669386132, '__ci_last_regenerate|i:1669386132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7c008ec57f1762dadd99a1d28a78b4dc30e628', '45.120.39.90', 1669389262, '__ci_last_regenerate|i:1669389262;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669386132;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1013e512cfef8538cf71eea215629aadde3af9dc', '172.105.247.100', 1669386132, '__ci_last_regenerate|i:1669386132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9491b0f62109463ab623189af2da045973c5f213', '172.105.247.100', 1669386132, '__ci_last_regenerate|i:1669386132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf848d61457d1eb9d8952295b87ed7eb55c90efc', '172.105.247.100', 1669386132, '__ci_last_regenerate|i:1669386132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5bb04299cb8b065eb1919f102decef923b171e', '172.105.247.100', 1669386132, '__ci_last_regenerate|i:1669386132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0510c77fa414ce70260e4fa53f8b9a3d4ea4bfd7', '172.105.247.100', 1669386133, '__ci_last_regenerate|i:1669386133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35652cfff25297505332a83ce84c897c4859a950', '172.105.247.100', 1669386133, '__ci_last_regenerate|i:1669386133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accfa72014ae1cd8181872c6b4114fb04eccf321', '205.210.31.171', 1669388075, '__ci_last_regenerate|i:1669388075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345c51f31d9e8dc6ae19fa8d620d2c8391ef2909', '45.120.39.90', 1669389656, '__ci_last_regenerate|i:1669389656;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669389614;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd8bf3da5d10b9561fdd21007ee28e52c1a281b', '45.120.39.90', 1669390062, '__ci_last_regenerate|i:1669390062;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669390056;register_id|s:3:\"260\";cash_in_hand|s:9:\"5550.0000\";register_open_time|s:19:\"2022-11-24 20:29:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('effd4537cc6934b3f0f4e83fd0d4c8e30c61e722', '45.120.39.90', 1669390093, '__ci_last_regenerate|i:1669390062;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669291169\";last_ip|s:14:\"37.111.217.177\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669390093;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a97d0aa9e442e781dc877cd7e287c99c40fe80', '172.105.247.100', 1669392726, '__ci_last_regenerate|i:1669392726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06d559260e84a757d8caa997655c47336da19b1c', '172.105.247.100', 1669392726, '__ci_last_regenerate|i:1669392726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c24fe1fe826218c66e14a53fd7be9c479f6d64e', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9878b2dea19c9ce2b6452f3395d12bc5941b5b62', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9921aa79a64611a9e9be918b8f3089f4e63dbfca', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d39699f90fc3f3723c406f4e1d016684620883', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c01ce2475cd9233f10d3b6a41c5f823fa6a38e', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c64e5280e0cf6180aad328ed69451bf6f31618b', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7589c19525082264925ed70dedaf306bea2b371', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b91d784b5f32596f00bbd5a2b0bd6ca2c91ecc', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('198a7cecfe8e5876b2f2359a2ab33a8c1a557ec3', '172.105.247.100', 1669392729, '__ci_last_regenerate|i:1669392729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33ba0932833f31314dcc0066966d63092edfc98', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a7bcf11c17943274a3c024a49a2d74fa0313e9', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74db518262d70cf3463e486653f3d84b0a7c1ee1', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9684376604a7f4baab5346cd41c66a24cc6d629a', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201d5416501989c8c0316ee401e5f7ad942ead5a', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4338ce87d08e48b94b595ada022acf5618be1c9b', '172.105.247.100', 1669392730, '__ci_last_regenerate|i:1669392730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca64326334d48f7517c9828c8480f84849407d74', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f348a86bd8734a0d14127b697acaa633ad93b771', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cd32e52d12bd56dd1a7b9ecb587b21aa5729e2', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf588a9f4f900cd43989d1efe1079f571c08753c', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd79b10162816a455dec1fad9a2f5b53b419870', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a660a3c922b1effd9d75915b6846a3b165cb316', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a47842660de84287d4f821c31038672e0c6c253', '172.105.247.100', 1669392731, '__ci_last_regenerate|i:1669392731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba2e80aa448242ee5e6c9c65f14427e65b7aca5', '172.105.247.100', 1669399333, '__ci_last_regenerate|i:1669399333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08f48dc74ef4ee81315d3ff1ee36e2ca572327b', '172.105.247.100', 1669399333, '__ci_last_regenerate|i:1669399333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973c37082fb35a42b945ffdffaf3a269b60aed3f', '172.105.247.100', 1669399334, '__ci_last_regenerate|i:1669399334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('106f71a6ccb6d4d08df0b96ba097bd23cda0d7e1', '172.105.247.100', 1669399334, '__ci_last_regenerate|i:1669399334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7c4cc718b94801d71f8d7ed246f88174033c1f', '172.105.247.100', 1669399334, '__ci_last_regenerate|i:1669399334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367ef65c296b7dd8cedf7482ca640951715e139b', '172.105.247.100', 1669399335, '__ci_last_regenerate|i:1669399335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9398f9c362c4e3d5f5e129f69de8ba0caf7e8d', '172.105.247.100', 1669399335, '__ci_last_regenerate|i:1669399335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8128aab4befe01b34ea3d337f8f99190bf9629a', '172.105.247.100', 1669399335, '__ci_last_regenerate|i:1669399335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfba352b6d7502987394ba59da78e0226d7a8412', '172.105.247.100', 1669399335, '__ci_last_regenerate|i:1669399335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299bdc080e2b9ead556248a614a79788009f1474', '172.105.247.100', 1669399336, '__ci_last_regenerate|i:1669399336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b96786b6980874c903b1db5e26ad3502c183789', '172.105.247.100', 1669399336, '__ci_last_regenerate|i:1669399336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554c1f85287f840eb546dbfbde1c8afa8c8439b7', '172.105.247.100', 1669399336, '__ci_last_regenerate|i:1669399336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab4422e5d508ce859bc64f6471266ffe5c7d663', '172.105.247.100', 1669399336, '__ci_last_regenerate|i:1669399336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39cd48288f8ea396c07bc81b021861932fc8b67b', '172.105.247.100', 1669399336, '__ci_last_regenerate|i:1669399336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976f18ed2ee1eac58bc585b2a871983e99a3ff61', '172.105.247.100', 1669399336, '__ci_last_regenerate|i:1669399336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45f270860f842e9ee6d62c8cbeeedc79623674f', '172.105.247.100', 1669399337, '__ci_last_regenerate|i:1669399336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4619e54aaf437a59e0874a0762f96a87aed5d9a', '172.105.247.100', 1669399337, '__ci_last_regenerate|i:1669399337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f815495aa1ceb1a996cd5ceaec31a69d70ac12', '172.105.247.100', 1669399337, '__ci_last_regenerate|i:1669399337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a893075b658f74d9a8167da07d5bdb4fa22aa080', '172.105.247.100', 1669399337, '__ci_last_regenerate|i:1669399337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd65f4944ea9547acd28c921ce6ce6cf3652569c', '172.105.247.100', 1669399337, '__ci_last_regenerate|i:1669399337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6945f66a3e4e54d4ae9e50ab0f83711bf0ee131e', '172.105.247.100', 1669399338, '__ci_last_regenerate|i:1669399338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f40a637a023b430456f4f8a850203b5f7795fa', '172.105.247.100', 1669399338, '__ci_last_regenerate|i:1669399338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50294850b17bb76a8a584be27f9c2d41291b558', '172.105.247.100', 1669399338, '__ci_last_regenerate|i:1669399338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2636a84d13760d3b0c9465570ee0060ff026099', '172.105.247.100', 1669399338, '__ci_last_regenerate|i:1669399338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed6b5b2330c734a3aa054db4d7ba6bbf9fbd501', '167.248.133.47', 1669404592, '__ci_last_regenerate|i:1669404592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0313b5b38206dc0bbe4a8167620fcfdddd9b2b', '167.248.133.47', 1669404593, '__ci_last_regenerate|i:1669404593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d167939fbcf36a315fea40870d12bff07ff323', '167.248.133.47', 1669404593, '__ci_last_regenerate|i:1669404593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e7d712b918044ff626000d3d4f9c3915781780', '167.248.133.47', 1669404593, '__ci_last_regenerate|i:1669404593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f34ed80749567923d970e190ed5bbd7bc6b6d34b', '167.248.133.47', 1669404593, '__ci_last_regenerate|i:1669404593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9f619760db4ee2416efa0e0447af79fafd35f9', '167.248.133.47', 1669404595, '__ci_last_regenerate|i:1669404595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6543b5e6a569a2086035ed6ce4799fa9845bd419', '167.94.138.46', 1669404780, '__ci_last_regenerate|i:1669404780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd50c4a3a41e5ecef8fd3305deac26c3b7b525e', '167.94.138.46', 1669404780, '__ci_last_regenerate|i:1669404780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd840d37503e0cb4d096221d5f35279c151496c1', '167.94.138.46', 1669404780, '__ci_last_regenerate|i:1669404780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f988e136d9057c7f2204d3383d7df7fcc36440f', '167.94.138.46', 1669404781, '__ci_last_regenerate|i:1669404781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d814cf8df289f803e1c69d69b94434fe9b88f63', '167.94.138.46', 1669404781, '__ci_last_regenerate|i:1669404781;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958945d110ebfdd8f2b5ac89712451eeabcf4a17', '167.94.138.46', 1669404781, '__ci_last_regenerate|i:1669404781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df42961e3bd47c314ea2d0ae8b3ffcb24cbffdf', '172.105.247.100', 1669405927, '__ci_last_regenerate|i:1669405927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1e4657bdbe76dae513ec069aa7acbdb213d6e4', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06812b46c3e270c5da1ab47ef8d41e4a6855046b', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f60c28a84be51a283912d1a07ae3a4605da84ca', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63468723931e43f99f5fae3225776d0dc72a5a1b', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aab35b6d736ad2c226500129972de3968c13a4b', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ac16fa443e3e92598cbf19234ffb08fe441b6e', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f3b747cb2efe253967969751f718ba37ccd148', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('608bc581790bc0eee04560f8b33bb447d93dc5e4', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af203de7964da122cc1f288a0558cf3e8405919c', '172.105.247.100', 1669405928, '__ci_last_regenerate|i:1669405928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d28f2cea06bcf45940751d3d51ebe4aeb4e339', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8e28fb09ea32942360104a2aab94809982df0a', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3d32a569ea7ddc5cdf8bf52daa55893e09afe3', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b34fa29ffc9d0b1a9b9cd2a54d8be625b032ac6', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e3f4557e2ea923cf34304ce9aecd438da88123', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5259c1cde0bca9df9fb3d022eebc234f6348a0', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30450f950907b84e12d6acd7a5b1e53dd002d9a', '172.105.247.100', 1669405929, '__ci_last_regenerate|i:1669405929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d0db849d20ac1d4bdb86767602e65cd6b19ca09', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5c05e5e2e963d3e0410d320888ddb7fbdc480d', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630ef607266fde75e4e81be3a5367ca454779c1a', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3d2e114caad15e8aedac7e795abccbd7835460', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55eb3be705c40b0389c5a922bdad784f8dcc3be3', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4156dfb03c7f2151941072ea4ddc7866efa945b', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f5931a41b56b5879494df82375096478c41bc8', '172.105.247.100', 1669405930, '__ci_last_regenerate|i:1669405930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0169d919eb707186b4b683d6a612545cb1cfbf', '205.210.31.31', 1669407762, '__ci_last_regenerate|i:1669407762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfc30412fb73b21eee0e9f09480514c1e951573', '205.210.31.31', 1669407764, '__ci_last_regenerate|i:1669407764;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b73505600f20d97f2940f33cea97d4792ee2b7', '205.210.31.31', 1669407764, '__ci_last_regenerate|i:1669407764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f93a7e7ef16b176a2798062632eb09f6dad562', '172.105.247.100', 1669411925, '__ci_last_regenerate|i:1669411925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ef4378a0670c66d84cdfda10d38b74f9f0bcc6', '172.105.247.100', 1669411926, '__ci_last_regenerate|i:1669411926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b7765661cd7dc84e72e27c8b8af015ff2457b2', '172.105.247.100', 1669411926, '__ci_last_regenerate|i:1669411926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b0660577a9fc7cfb11ece5abb9109028bfc359', '172.105.247.100', 1669411926, '__ci_last_regenerate|i:1669411926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('126d76b38d9713da737af904bc76e0b8262eb653', '172.105.247.100', 1669411927, '__ci_last_regenerate|i:1669411926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717b893649a4e166f05449ffa73916ca74d194d8', '172.105.247.100', 1669411927, '__ci_last_regenerate|i:1669411927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5303e5cd79dc142c24054c84139dd72132f5ad74', '172.105.247.100', 1669411927, '__ci_last_regenerate|i:1669411927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3619d009e60f01a55a7745fc834a7befdcdc0d8', '172.105.247.100', 1669411927, '__ci_last_regenerate|i:1669411927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874acd182e3a0670b6ea059eaadf8ccf318c5f82', '172.105.247.100', 1669411928, '__ci_last_regenerate|i:1669411927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1418820912f6d1a91ee83b96246beb901e4461fb', '172.105.247.100', 1669411928, '__ci_last_regenerate|i:1669411928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7903f480ecca3881f5387c6011b0fb4aae92bfe6', '172.105.247.100', 1669411928, '__ci_last_regenerate|i:1669411928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776391f3545d0794a58b81a9ba793b8f76a2a12b', '172.105.247.100', 1669411928, '__ci_last_regenerate|i:1669411928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2c130e5de0ba5257149b5a8b364fd3c5ea0451', '172.105.247.100', 1669411928, '__ci_last_regenerate|i:1669411928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32bd50dbe106a2283d29292c38c16540404180ab', '172.105.247.100', 1669411928, '__ci_last_regenerate|i:1669411928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ddd54a725df56cc2103723fb0610b82e25bcde', '172.105.247.100', 1669411929, '__ci_last_regenerate|i:1669411929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a3cce523a834996dbec6a23b5616db36a4470b', '172.105.247.100', 1669411929, '__ci_last_regenerate|i:1669411929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1473a6d674f8fcd6b0b26e2e61b19e75c09994', '172.105.247.100', 1669411929, '__ci_last_regenerate|i:1669411929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('211a240d53876423e07ca776d60a0b8c1be4b317', '172.105.247.100', 1669411929, '__ci_last_regenerate|i:1669411929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc07ca73e8a0a300700659c385722fc6796c14f5', '172.105.247.100', 1669411929, '__ci_last_regenerate|i:1669411929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a51fdd5d3bc008bf9b6752dbb1a06b43ace34e', '172.105.247.100', 1669411930, '__ci_last_regenerate|i:1669411930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8235aaee7d75745db7c9a2466f720567ceee1a', '172.105.247.100', 1669411930, '__ci_last_regenerate|i:1669411930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85bb204c27616252f35751646b460b1fe75dbc1f', '172.105.247.100', 1669411930, '__ci_last_regenerate|i:1669411930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd619ebed280166357b8b5e9b5c139455d25a85', '172.105.247.100', 1669411931, '__ci_last_regenerate|i:1669411931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a26b03d0763901c8e710d50778777ac7c5e55033', '172.105.247.100', 1669411931, '__ci_last_regenerate|i:1669411931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2257e58dbaa7b62bbb538f176f5d7bd7d47c734', '205.210.31.170', 1669416921, '__ci_last_regenerate|i:1669416921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0e2fd6fa493b80ba97d785f9487cfb28b017b9', '172.105.247.100', 1669418526, '__ci_last_regenerate|i:1669418526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ecdf2640de5719a87be2ebf1ee7186a930b64a8', '172.105.247.100', 1669418529, '__ci_last_regenerate|i:1669418529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d38c952502c8123436ca6055cad05dc751a43c', '172.105.247.100', 1669418529, '__ci_last_regenerate|i:1669418529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a693904faf0969dd45ae37fe7cd4e2fcb2443c', '172.105.247.100', 1669418529, '__ci_last_regenerate|i:1669418529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b43ccfe216bfe6e57c914f60cf48a7817a3d9aa7', '172.105.247.100', 1669418529, '__ci_last_regenerate|i:1669418529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef39570c7b635645c367f1f47662c8e9c3a1695', '172.105.247.100', 1669418529, '__ci_last_regenerate|i:1669418529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579ffb22f81929308c9d3538dbc30fda3eb0f7c7', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efeb98257215b2f8bca02dd94451147263f98575', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ccfa99b60f28447badb23c0b9b169b88383305', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59adbe9163e5150eabea581dc110513157ba869b', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad69e87cfa4c7ad4a62f38bfba46ba8c5b1af37b', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d0a45dcebafb75481e21495900a7776b12aa62', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff11fc4253fb88585f5b221280690a157693e9e', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042fdb04296bffae7aab2833b21f83b83b810afe', '172.105.247.100', 1669418530, '__ci_last_regenerate|i:1669418530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8b897b9f372d97cf376ca164c6c7d4319ff238', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad6a516ce43c56de1247bc4568e97716f903e3c', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc8c6dc7548617ce5ee7504a1c15034b0543164c', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7b0dd06e8a578a3af1b058c8ea61b42fb89ef8', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eeba94b73bc7c786cc54229effeae6f41d5dd35', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fee5ab0f04fc645414e1a30971346b7050f57a', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363b2abcf70d89249f347fa821efa69300881e2e', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c481d2f8aff70702dd81cc6f55e969248abdd290', '172.105.247.100', 1669418531, '__ci_last_regenerate|i:1669418531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f096b2794095a1a988ed93a296eb38ba5048ea', '172.105.247.100', 1669418532, '__ci_last_regenerate|i:1669418532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79291fdcba39e975cfafa6ef17211115f1fb0119', '172.105.247.100', 1669418532, '__ci_last_regenerate|i:1669418532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e92d9d1f7fe10bfd92948893680db108f7c4b99', '172.105.247.100', 1669424527, '__ci_last_regenerate|i:1669424527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809c755fa6d1f4ae7a45f310815e894d01236150', '172.105.247.100', 1669424529, '__ci_last_regenerate|i:1669424529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18611f6782d96021c48bbd9ae6aeefba9ea38770', '172.105.247.100', 1669424529, '__ci_last_regenerate|i:1669424529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5b662f943471731eff3697e9ff1c98777f2ecc', '172.105.247.100', 1669424530, '__ci_last_regenerate|i:1669424530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922801a92b19783125a504449d8cf29328e196ea', '172.105.247.100', 1669424530, '__ci_last_regenerate|i:1669424530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e086e6ff261eb592e2cb564464b99856532c0478', '172.105.247.100', 1669424530, '__ci_last_regenerate|i:1669424530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8b1952e8f5624b621233bb2495dfae6c67ecb5', '172.105.247.100', 1669424530, '__ci_last_regenerate|i:1669424530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('724a2d84e9688de3446dda66e9018243de183eed', '172.105.247.100', 1669424531, '__ci_last_regenerate|i:1669424531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae2f8a19640d67a13fc800351cd4e55448cf883', '172.105.247.100', 1669424531, '__ci_last_regenerate|i:1669424531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77c91e8e80f0ffbacf928f9fc9f873cb05a64eb', '172.105.247.100', 1669424531, '__ci_last_regenerate|i:1669424531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('511249b5cb811c85ec3b9140d30ffb799a86fe82', '172.105.247.100', 1669424531, '__ci_last_regenerate|i:1669424531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35671fdd58e0c84bb2e1d69494328262760d0a94', '172.105.247.100', 1669424531, '__ci_last_regenerate|i:1669424531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2885b9bc9c6abcfe3aed0d0c403680344ac9b3de', '172.105.247.100', 1669424532, '__ci_last_regenerate|i:1669424532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f526315655d6042df976967e59628a1b39d710', '172.105.247.100', 1669424532, '__ci_last_regenerate|i:1669424532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab68314e06e82185976adb96ce466dea300732e', '172.105.247.100', 1669424532, '__ci_last_regenerate|i:1669424532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7535b9ddce000c5ce5ba0d28938ddc15ece6deb7', '172.105.247.100', 1669424532, '__ci_last_regenerate|i:1669424532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c45ffde4c85d3293a33c6368f41447dde6e206', '172.105.247.100', 1669424532, '__ci_last_regenerate|i:1669424532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a14475afb51c5fc8adb8a67201a06800875186b', '172.105.247.100', 1669424532, '__ci_last_regenerate|i:1669424532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08cb4813422aa548572b2e62886593802f9525bb', '172.105.247.100', 1669424533, '__ci_last_regenerate|i:1669424533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29637ed68f9c9437244262146919d1f277d289e3', '172.105.247.100', 1669424533, '__ci_last_regenerate|i:1669424533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa69a6525ecea04466b22902037f78aeadbc042b', '172.105.247.100', 1669424533, '__ci_last_regenerate|i:1669424533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888159b8973b876d68a797a8c8915419541979a8', '172.105.247.100', 1669424533, '__ci_last_regenerate|i:1669424533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfc1678c213bb71044d282eab5116662b7e137d', '172.105.247.100', 1669424534, '__ci_last_regenerate|i:1669424534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6185b4525322959af6acbf0ba8ad4d35432daa6d', '172.105.247.100', 1669424534, '__ci_last_regenerate|i:1669424534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e6e9b1d660365dccd8622d990941e2e8f34475c', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215be45ef297c590f9478429092824c7cea73221', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5f09bbcc6e23fb5b636983de83078da58b72a0', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5db4da906cd5c6b0b93df69ee00e55935e4e2f5', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcce0141d7dd745f43a610c75ceab44fe44e6ea2', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef6c71eeaf1a0ac0aaa3519b1ea9dca6b272a6b3', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b3b868efa89e4833e3547ae525ccda8c14eee1', '172.105.247.100', 1669430543, '__ci_last_regenerate|i:1669430543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77fcf0c68931c1af33d2ba98cae29c07e41e416', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6239835ca433d8e5670c5226cb21d18aff8e4915', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352825c197fd76e4d264afcdc2ec21a976e0e516', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178f4dcecbf4532b65de4da0d3a95ed5e35c1e89', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559f4fb32fe2c80d4ed0c5caf7e8781fb0ea6b71', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0fcad89dc15814b49e770400ad7753e4affe73', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e17e85adb4cbffb8e0032d949183a6ed57dec7b', '172.105.247.100', 1669430544, '__ci_last_regenerate|i:1669430544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42751d2bdccfb4cdf11e93b968c08432c029675b', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56e2224fc15037b842ba2aa5dc3de9dee995e55', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('680c6eeeac23d6b6ef9153ae35d7cdd9f0c03e9c', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d36b6b18faeb9ca7ad528da2e4b0589f7889ee', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8008dbc768ed15ac71c3d128a92cd4f63426d902', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eadb933322eb54dba70e11e3756d5acaa713ee62', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89198ac6e506ca657081e09340070b5bb764f65f', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cfddb10f61949038db82a8f5683d3d25c5c9fe', '172.105.247.100', 1669430545, '__ci_last_regenerate|i:1669430545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa443c9c6f617af7e8313f7aa99398db1b048f7', '172.105.247.100', 1669430546, '__ci_last_regenerate|i:1669430546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de76cbc2b695b9e675274c237e7388a1bf98b1c8', '172.105.247.100', 1669430546, '__ci_last_regenerate|i:1669430546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a56cf843da0397b5bf11c3f73fd6a1963e00aab', '205.210.31.27', 1669430816, '__ci_last_regenerate|i:1669430816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b576df231e422ee0230b17dcc3216689c64145b3', '51.15.195.246', 1669433867, '__ci_last_regenerate|i:1669433867;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34708a926009aaa57da801033c275267db2dcbb', '205.210.31.143', 1669436504, '__ci_last_regenerate|i:1669436504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45902c85fbf8d5176309a783ee8821c78538f10e', '205.210.31.143', 1669436504, '__ci_last_regenerate|i:1669436504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2780aedeff4f21a6943f00e51d304a5ac47401', '205.210.31.143', 1669436505, '__ci_last_regenerate|i:1669436505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ecea07c5980947021e1bea0a5022ad58ce8399', '172.105.247.100', 1669436528, '__ci_last_regenerate|i:1669436528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06854f4d0846b3df7275abee6bc66be743349f80', '172.105.247.100', 1669436528, '__ci_last_regenerate|i:1669436528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710f7505a2c6dd492d0616e9a17bb3e94514f68e', '172.105.247.100', 1669436528, '__ci_last_regenerate|i:1669436528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d089c114ff8cf25c61b7be7f00fba9af19da92', '172.105.247.100', 1669436529, '__ci_last_regenerate|i:1669436529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86569d8b65badb0c79573eb3862c0973ff101f1a', '172.105.247.100', 1669436529, '__ci_last_regenerate|i:1669436529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b4e37f860ade9207a2a661a3ed2015e33f6e594', '172.105.247.100', 1669436529, '__ci_last_regenerate|i:1669436529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a42ad169e2fa174b4aa237b42cb69c8d150df10', '172.105.247.100', 1669436529, '__ci_last_regenerate|i:1669436529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438514dc61d50821ce092568729fbd8418c48954', '172.105.247.100', 1669436530, '__ci_last_regenerate|i:1669436530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af12953279c1cffbe53eb1e2cc09fa534ca3dae4', '172.105.247.100', 1669436530, '__ci_last_regenerate|i:1669436530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639d91b4dabf1ae3b62491a4e9582d4abcb90249', '172.105.247.100', 1669436530, '__ci_last_regenerate|i:1669436530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b146572682ee499adf901e62080921b9c042a5a', '172.105.247.100', 1669436530, '__ci_last_regenerate|i:1669436530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1a444be5a8e19c4cbe233b2b0de46c8c8f38d5', '172.105.247.100', 1669436530, '__ci_last_regenerate|i:1669436530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb98b3fe9e845586bf3c4441eac3de1858fd1fb1', '172.105.247.100', 1669436530, '__ci_last_regenerate|i:1669436530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7af82424ff3a66b9c71e73028c5428134f2e5e', '172.105.247.100', 1669436531, '__ci_last_regenerate|i:1669436531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f90a3840f9dcccd24c491d9d9ebc9c9cc4c3d2e', '172.105.247.100', 1669436531, '__ci_last_regenerate|i:1669436531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3fc9bf3574fc1b6582bec06ad561aad93b30b2', '172.105.247.100', 1669436531, '__ci_last_regenerate|i:1669436531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8633686369d758227642a20682c81a26c213850', '172.105.247.100', 1669436531, '__ci_last_regenerate|i:1669436531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59ccae41eb4042c77f3a924222bb4c92a818132', '172.105.247.100', 1669436531, '__ci_last_regenerate|i:1669436531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca83ec5b8337c6febdd02ac5a9bce2c9a49d5963', '172.105.247.100', 1669436532, '__ci_last_regenerate|i:1669436532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b12441d80eb279ceb53e27c4fae1d474072d46e', '172.105.247.100', 1669436532, '__ci_last_regenerate|i:1669436532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e66fac9e8bee7d2764abdb83721adf454cd0924', '172.105.247.100', 1669436532, '__ci_last_regenerate|i:1669436532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7edd7358590f0a5abb34fe07b0c23a4f5629f2', '172.105.247.100', 1669436532, '__ci_last_regenerate|i:1669436532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665d574a2d70b622e003f30f2b5197a2b3d978ee', '172.105.247.100', 1669436533, '__ci_last_regenerate|i:1669436533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64f01289234f759ea1da4ed7609624217db47b8', '172.105.247.100', 1669436533, '__ci_last_regenerate|i:1669436533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bdefd36ab87882b7b609c981ce25d61b1e01fb9', '45.120.39.90', 1669437418, '__ci_last_regenerate|i:1669437348;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669351596\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669437418;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be4651f7eef5f010e751018ffa3ccaa0565739b', '116.204.230.26', 1669438001, '__ci_last_regenerate|i:1669437966;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669383677\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"aqHmTzfjLXF1oPiQvD8E\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebcc5b83e076442555671d44b90a20689f7cc46e', '172.105.247.100', 1669444347, '__ci_last_regenerate|i:1669444347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb54875445839b9b26720f0259071c6c9da3e0be', '172.105.247.100', 1669444347, '__ci_last_regenerate|i:1669444347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0dcdd5455fcdc1a3daddcebc28d17d2957d856', '172.105.247.100', 1669444347, '__ci_last_regenerate|i:1669444347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6b145ce4256dc89f49407b4d8e7c1ad02e2c9ef', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4444d77089bca449a2271d2e5bbc3dfc5f3f6da', '172.105.247.100', 1669444347, '__ci_last_regenerate|i:1669444347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daabe80dde34fadbb14e1966a2071b51d7afca2e', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7056f9f5ad960c21a1eeac8713131259483896c5', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb29b335b5ce7dd7f249d52d9aa2931986bc81b6', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b690c66c78de8ba935b2855d150934de675fcd97', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9207bd4f949f0ad441777b705d2c576d9db2ea16', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5929a826ed93b6800f1a0aa4212c59cfaba9ab30', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db1f06e0d231af387309c37e759436d42160274', '172.105.247.100', 1669444348, '__ci_last_regenerate|i:1669444348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1490d2d6de712138eee44c9dba7108cfaa2ff838', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229e7e03457d4ccfcd7520c3792f7459ad102f0f', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5879589c3e0fe7aef0548ad518fda7a9e45e48', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df9bacbd18bc353bf13be00c8455c03e225ad26', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1936dc3a90c4230b29ebb2df94cb32d7f3e0c26', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b22dd3c2af4a297b58ebdf3504a58ddb41c06d66', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2e2a0956f87bc0bc2dc21cd5eef9574f746e0f', '172.105.247.100', 1669444349, '__ci_last_regenerate|i:1669444349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e139701e1f9cb8c381a9f2b1e73ff89291d90bbd', '172.105.247.100', 1669444350, '__ci_last_regenerate|i:1669444350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17cadeac2680590ff5bfb4e8e985f231d1bb3507', '172.105.247.100', 1669444350, '__ci_last_regenerate|i:1669444350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d5abc61375ff6e994c5770885f33132c663121', '172.105.247.100', 1669444350, '__ci_last_regenerate|i:1669444350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee386f94a9380d9863711c925ca41cdb877981bd', '172.105.247.100', 1669444350, '__ci_last_regenerate|i:1669444350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e9205582ffbe96eaeb7080fc503d166c4e8790a', '172.105.247.100', 1669444350, '__ci_last_regenerate|i:1669444350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b6c2235de9b2d536334e0ee28e4cc3443449dc', '45.120.39.90', 1669445101, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b7c29f0ce4e28a35d41da00938d3bf124e6f3f', '45.120.39.90', 1669445951, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669445951;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669445635;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2ae663eb7270e6759ddf2abdf84792d08ba8128', '45.120.39.90', 1669445101, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22d1fba0d18712b1163cdf9c9cace48e25b179c', '45.120.39.90', 1669446435, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669446435;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669446115;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7ae56c4fd47911f7ef8b3fb522f5f5d3b4ae5f', '45.120.39.90', 1669448652, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669448652;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669448635;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d71342eec4bd15c5ab4b266c9607c20fcedd66', '45.120.39.90', 1669451863, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669451863;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669448652;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16021ae11f7ba6378ed162cff86b48d4225c809', '172.105.247.100', 1669449128, '__ci_last_regenerate|i:1669449128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ea3442e54dcd967e540609d5dc22a40a980cb8', '172.105.247.100', 1669449128, '__ci_last_regenerate|i:1669449128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8f5c253b3531a238bfdaca48c1a5493dde8952', '172.105.247.100', 1669449128, '__ci_last_regenerate|i:1669449128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36c34193a71e63534c769eb21cc733a98ee6be5', '172.105.247.100', 1669449128, '__ci_last_regenerate|i:1669449128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0fdc0fb3aec5b83d4affcb1e4aa7fcbe0fb4606', '172.105.247.100', 1669449129, '__ci_last_regenerate|i:1669449129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdcb387200fc911f1ab2b9a8cff86b7073daf386', '172.105.247.100', 1669449129, '__ci_last_regenerate|i:1669449129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c9cb22287f9ab3ad01cefcb9b3d0628b460866', '172.105.247.100', 1669449129, '__ci_last_regenerate|i:1669449129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc7379a8cd651bfab63913ebeb3ddb289be0704', '172.105.247.100', 1669449129, '__ci_last_regenerate|i:1669449129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5308f7a8080fdf1f48c9deecedd36d957e536c2', '172.105.247.100', 1669449130, '__ci_last_regenerate|i:1669449130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c254b7e6ab2b42474ea6f9a326eb92e1499b5a53', '172.105.247.100', 1669449130, '__ci_last_regenerate|i:1669449130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35241403b208adfaf90579ebfe53d8ea2e7c78cf', '172.105.247.100', 1669449130, '__ci_last_regenerate|i:1669449130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20d6358240234f392ee78d24f203f937f21dd41', '172.105.247.100', 1669449130, '__ci_last_regenerate|i:1669449130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a403b959948525b940ad9e1dbdee388d0de991d', '172.105.247.100', 1669449130, '__ci_last_regenerate|i:1669449130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b80b2ca4354c94dab4cf15d99d7ef130258af6', '172.105.247.100', 1669449131, '__ci_last_regenerate|i:1669449131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606e1df0565edd11eedb1ba38cf5de98845f1f43', '172.105.247.100', 1669449131, '__ci_last_regenerate|i:1669449131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e7b1aebe12d5b3d2c1037da16f832b9cbac184', '172.105.247.100', 1669449131, '__ci_last_regenerate|i:1669449131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92f0316a6106b3e86ff118761662f99ecb2f816e', '172.105.247.100', 1669449131, '__ci_last_regenerate|i:1669449131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78518be665e834e1ec4ca3749623ebda2dc4658', '172.105.247.100', 1669449131, '__ci_last_regenerate|i:1669449131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5e2c925bf6129558e93d3e9fcd24931fecb0c0', '172.105.247.100', 1669449131, '__ci_last_regenerate|i:1669449131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ffc772ad56aa4036dfef8389e05f4f086db8b4d', '172.105.247.100', 1669449132, '__ci_last_regenerate|i:1669449132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b2abcc4337913b43bb496a1138b12c28c2bb7f', '172.105.247.100', 1669449132, '__ci_last_regenerate|i:1669449132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160da95590ba528312d78ba1660d1402947db719', '172.105.247.100', 1669449132, '__ci_last_regenerate|i:1669449132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd108d89adfa5d53a1d360ff531d98e64fb8533', '172.105.247.100', 1669449133, '__ci_last_regenerate|i:1669449133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68d3b85a80a819410f103ea0d4a7219bc6a18ad', '172.105.247.100', 1669449133, '__ci_last_regenerate|i:1669449133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3017cd7fd78d72f557fb32403f9decabf18a4e', '45.120.39.90', 1669455676, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669455676;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669455520;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbbe9deaa5df57288302819c93231b5dbb8bc82', '172.105.247.100', 1669455133, '__ci_last_regenerate|i:1669455133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38bcd7f62c5666792b8db0dc8ca791ca81162d3f', '172.105.247.100', 1669455135, '__ci_last_regenerate|i:1669455135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1775c8ba289b70d35648d2b71c0a89c54f1ea4', '172.105.247.100', 1669455136, '__ci_last_regenerate|i:1669455136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3875643646234497e863a1eac0f8539e62863fb', '172.105.247.100', 1669455136, '__ci_last_regenerate|i:1669455136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c902c48c74a226d1d2e1883eb67bc1316e9011f6', '172.105.247.100', 1669455136, '__ci_last_regenerate|i:1669455136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0ed893fd984f36f9624683eeb2fbc09d1b3a35', '172.105.247.100', 1669455136, '__ci_last_regenerate|i:1669455136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2c66b345ca0d450093cde54675523a6a06bddc', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4261a4431cb56b169a80f5e87a9d4c612b3473fe', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1626fbd2bc92bd1dd8ca81787f64b044fd936f83', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f094b3d10e948ea82c83b8baba6d14ab21f1bc24', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b13f02b48d8ffd4d361bb8dcbbb20ec56f4d25', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b9077a4bb70d9441fda90ee97245dde3372637', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0285b348c5c4f757966b30688eecac0406e770da', '172.105.247.100', 1669455137, '__ci_last_regenerate|i:1669455137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858c96a0775dae1c43c5efcd98e4e9fe1b4d8965', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d24357ec2c5bc4bd08127ab391dc680fe696a1c2', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2746b19be755198541a5fd1b70c8abc9bde597', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2793243aa8b83540507e397dc8ad0a21a8ec177c', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a07531106396fb2101b9d8177ebba451411e82', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4c4b06bc2e069b997cda276abb4eb027e724b0', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd626d19f4c5c57cb448b8781f20dcee741f413', '172.105.247.100', 1669455138, '__ci_last_regenerate|i:1669455138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d0b7039899df75d706fd76ee322cafbdd47b207', '172.105.247.100', 1669455139, '__ci_last_regenerate|i:1669455139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e627d0c854959bca9242f9e85a730fa6fe600f', '172.105.247.100', 1669455139, '__ci_last_regenerate|i:1669455139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc55eacc29a7ce03bfe7896c30e9186701cfbf3', '172.105.247.100', 1669455139, '__ci_last_regenerate|i:1669455139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e15b42bb32acbfac3548df84c945936cc08714', '172.105.247.100', 1669455140, '__ci_last_regenerate|i:1669455139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492c46fad69d9e560a7bcb720761008a54ae3c75', '45.120.39.90', 1669456322, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669456322;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669455826;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a96630a328913ca16fd34770e17aea1657eeca', '45.120.39.90', 1669456914, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669456914;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669456326;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae497ff47e3f8e439d45a264e87147a0fd1f21f', '45.120.39.90', 1669457216, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669457216;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669457018;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22efbe0dad76f74b2157d6e665356711291f8f2e', '45.120.39.90', 1669458243, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669458243;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669458234;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad553783411e69e9a689dc1fc9bcad015bb4a6f2', '45.120.39.90', 1669461170, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669461170;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669461162;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf58f4811f194ba57fb03a999a3769b132c3151', '172.105.247.100', 1669461141, '__ci_last_regenerate|i:1669461141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1438c0f165f530c26ad8ae4706482de0a3dae5de', '172.105.247.100', 1669461141, '__ci_last_regenerate|i:1669461141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b924d48905dcf12a94e4b97ecbbd52f8ab3259a0', '172.105.247.100', 1669461142, '__ci_last_regenerate|i:1669461142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c69217935ea898afb553ba4a06d015b92a8d8d5', '172.105.247.100', 1669461142, '__ci_last_regenerate|i:1669461142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7821150aca23a44df8eb26ce49e40cca1139ebf1', '172.105.247.100', 1669461142, '__ci_last_regenerate|i:1669461142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f702b0f1ff0e19d441d32251037ca866021f1f2', '172.105.247.100', 1669461142, '__ci_last_regenerate|i:1669461142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59779b77e015c447e52f2fb2fa2c115b0d87e0f3', '172.105.247.100', 1669461143, '__ci_last_regenerate|i:1669461143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3560e3adfb5d592475197ef1c3b24149857efd9', '172.105.247.100', 1669461143, '__ci_last_regenerate|i:1669461143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dea0424a75ea1f6a8db721fd74a81208055c159', '172.105.247.100', 1669461143, '__ci_last_regenerate|i:1669461143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7444b1b305b74530e16390cf33a92bc96539be', '172.105.247.100', 1669461144, '__ci_last_regenerate|i:1669461143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899e475ea69091c4f6d7aac358e9f33b9764672f', '172.105.247.100', 1669461144, '__ci_last_regenerate|i:1669461144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236546a194ec80e273fd0038849aada2feada137', '172.105.247.100', 1669461144, '__ci_last_regenerate|i:1669461144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce348e656302b6eda3dde9b2fa6393714be17dc9', '172.105.247.100', 1669461144, '__ci_last_regenerate|i:1669461144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a030941391dd349d23a436ff25b6d6a4fe1e292b', '172.105.247.100', 1669461144, '__ci_last_regenerate|i:1669461144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5048cdaf16e9ae14a9087fe5ebd6fd7e18d88059', '172.105.247.100', 1669461144, '__ci_last_regenerate|i:1669461144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bda47d907c00a153ffc697a31dc6e9705a7357b', '172.105.247.100', 1669461145, '__ci_last_regenerate|i:1669461144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc2ce3443f8adb693f4e2cb029e313258bff61b1', '172.105.247.100', 1669461145, '__ci_last_regenerate|i:1669461145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b277a12dc625af72e474a3d3987995d89407ce18', '172.105.247.100', 1669461145, '__ci_last_regenerate|i:1669461145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ee735b1449f6d43d9e809aa3220e9e9c055aa9', '172.105.247.100', 1669461145, '__ci_last_regenerate|i:1669461145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf0980af813aa7911a35ca85a5f1ce54550e360', '172.105.247.100', 1669461146, '__ci_last_regenerate|i:1669461146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c0984b2bda1b15113b3b8ee9edbedc49274d62', '172.105.247.100', 1669461146, '__ci_last_regenerate|i:1669461146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec5dff90ff135b47d08643f56dd1335a50c4915', '172.105.247.100', 1669461146, '__ci_last_regenerate|i:1669461146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1916f79e541e1b4ce74614c842ba2f8904e4a978', '172.105.247.100', 1669461146, '__ci_last_regenerate|i:1669461146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa6536df9d046677e0d4e7bc3940a5ba88642c0', '172.105.247.100', 1669461147, '__ci_last_regenerate|i:1669461147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d894181a3218f13c26b31fbb17982d4f09a8c5e5', '45.120.39.90', 1669461994, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669461994;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669461171;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca8d55ebfd30216e6e067ea88459ca079a2c89f', '45.120.39.90', 1669462863, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669462863;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669462854;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c3f5dd42b00c4b52da76b799a36349beebcb73', '116.204.230.26', 1669463919, '__ci_last_regenerate|i:1669463919;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669437970\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fa9cadc1648c9f32e4901a8b36f2b02249f6ee', '45.120.39.90', 1669463368, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669463368;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669463171;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6a2c813319cf60de206624ef8ea362f505c4a8', '45.120.39.90', 1669463706, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669463706;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669463693;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2800de6529386f7123e3a1f07ad33de2018961', '45.120.39.90', 1669464058, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669464058;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669463959;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388abebd36801d691672d56d5ae6e14bc41e25a9', '116.204.230.26', 1669465026, '__ci_last_regenerate|i:1669465026;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669437970\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669464006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d9ce9f3a779b7c47788f59c0dc06d3269abdf1', '45.120.39.90', 1669464432, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669464432;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669464379;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe97e8dd8ee7b2d6393a2e4edc847ed8bd6b897', '45.120.39.90', 1669465690, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669465690;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669464446;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181bcef57f1955b0ff98604825050546caf1cf61', '116.204.230.26', 1669465035, '__ci_last_regenerate|i:1669465026;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669437970\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1669465035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6f091219164a00cd6ce9fbf52dd8a8813439a8', '45.120.39.90', 1669467952, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669467952;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669465694;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167845e948c6fb94dc022759325ea0c93ac2e690', '172.105.247.100', 1669467750, '__ci_last_regenerate|i:1669467750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fee23e0f2909a87fc6771da63cec8e4e06e2e683', '172.105.247.100', 1669467751, '__ci_last_regenerate|i:1669467751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d3d128248c0125cadca04efc079ab15a9f8632', '172.105.247.100', 1669467752, '__ci_last_regenerate|i:1669467752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5921213d6556773195c5de3660d43c6933a2e1d1', '172.105.247.100', 1669467752, '__ci_last_regenerate|i:1669467752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d0cbceee15bad6ef7ba16b779e967fb294cd188', '172.105.247.100', 1669467752, '__ci_last_regenerate|i:1669467752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cffd77e5f6eb65e7579b7aec270a5007f27da9bc', '172.105.247.100', 1669467752, '__ci_last_regenerate|i:1669467752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568eca9b972c5d82587eea34c260b50d2a025c36', '172.105.247.100', 1669467753, '__ci_last_regenerate|i:1669467753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253123799c5f047d0cb0b8bb735c68b41f09b983', '172.105.247.100', 1669467753, '__ci_last_regenerate|i:1669467753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a510d5c22db5229b95dde10008f21e42b1b3da', '172.105.247.100', 1669467753, '__ci_last_regenerate|i:1669467753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cb5089f511ab7f45fb67cb0b8a5d2f8eccdd3b', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f12175604286a1c965d31be2c95c72ae397e88', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('136d86e4fde5061ac8adda1947479de0718c4690', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eeec06ee3dada7dbf54f3be0cd6cfde4a3b98d2', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('567a6298f93140374c15d4ae2c63f0a107b59b20', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b3e44ff487eaa2e6276bebadf66ec04bd21474', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d068e630af185b3c74e5dc71cb1dd2d427a4d89a', '172.105.247.100', 1669467754, '__ci_last_regenerate|i:1669467754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4561de281cd2c74c1e317110fe9d6d12167b40dc', '172.105.247.100', 1669467755, '__ci_last_regenerate|i:1669467755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e2ad07feedf42ddf2c9799a622f9fe3cd30b47', '172.105.247.100', 1669467755, '__ci_last_regenerate|i:1669467755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('065de2d36cbefb73754fca3a422fa02bd2f3846d', '172.105.247.100', 1669467755, '__ci_last_regenerate|i:1669467755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c679aa9b4b4f7ffb491b6cfd92d40893a7ca27', '172.105.247.100', 1669467756, '__ci_last_regenerate|i:1669467755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95de2169876b634838f549a7f907d3727f9f0dfd', '172.105.247.100', 1669467756, '__ci_last_regenerate|i:1669467756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('745ba18447e44ad1717038146f19eb3b228adec6', '172.105.247.100', 1669467756, '__ci_last_regenerate|i:1669467756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669b751c78c92aa4cf8f7a11c0351b2ccc489ede', '172.105.247.100', 1669467756, '__ci_last_regenerate|i:1669467756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67503c354f7625da98af23caedfea3d5d0b3deae', '172.105.247.100', 1669467757, '__ci_last_regenerate|i:1669467757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401d1460e6a67aa47d4f20355718fb59ee213255', '45.120.39.90', 1669468336, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669468336;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669467977;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd512d84f05d16cb870472ee2e4e7825884313dc', '45.120.39.90', 1669471371, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669471371;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669471241;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0356aa6a58c4ccd697231c57a204f2d850af978a', '45.120.39.90', 1669471712, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669471712;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669471689;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86e2c893f552a09777c9d01a814d4f878ad4648', '45.120.39.90', 1669473054, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669473054;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669471773;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6a20260472bdb9c0f9ef36f49694ceebad23ba', '37.111.219.74', 1669473384, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669473384;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669473074;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0f21b56f3c94f67182bfdae4af93921c6585b5', '37.111.219.74', 1669473743, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669473743;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669473735;register_id|s:3:\"261\";cash_in_hand|s:9:\"3730.0000\";register_open_time|s:19:\"2022-11-25 21:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328ea3b3b45e67f0027e9f042e6d1861050a70e6', '37.111.219.74', 1669473769, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669473743;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669437356\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669473769;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe08be6b161a080179d69808cd79ebbfe892b59', '172.105.247.100', 1669474342, '__ci_last_regenerate|i:1669474342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2ca6518bc99aede73e40b0365556dbb7e62345', '172.105.247.100', 1669474342, '__ci_last_regenerate|i:1669474342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff5c9ad2dc1e6ba154c3d04ee253c2b7a93868a', '172.105.247.100', 1669474342, '__ci_last_regenerate|i:1669474342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b289f2e7da80f4f153a6ee1ee0ae40b433147d21', '172.105.247.100', 1669474342, '__ci_last_regenerate|i:1669474342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce55e928f3fde7c120ad0fa0090c0a4e254155a0', '172.105.247.100', 1669474342, '__ci_last_regenerate|i:1669474342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16859e2c4d785139755ecfcee521ecd0722a6985', '172.105.247.100', 1669474342, '__ci_last_regenerate|i:1669474342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1185b2bc1ca52710ac46b9d9559bb59ad3dc57', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32284f5c0724a75b288a0a96b03073b51ed33b58', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e17883014268e7194f823c23f5f079b9c38731', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1104aa645f4c0f1ebb827ae7e3ac409ca6714678', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b45ad9124082e579c15a0f0471607851f4d2d2b', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad30af3c361b1a4edf227e1dc562951ff0372ce', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4da9f311e14d21ae3fe6d66e731d6676bbae61a', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f14a5092baf90d782e80ddae2db7e8e67fde7b', '172.105.247.100', 1669474343, '__ci_last_regenerate|i:1669474343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e223fb62c2a0832d620a1dae435a07a25cb815', '172.105.247.100', 1669474344, '__ci_last_regenerate|i:1669474344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19636a7318125b1ddb85e72aafb7b7799799c5b5', '172.105.247.100', 1669474344, '__ci_last_regenerate|i:1669474344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150e229c2b57060f07979b2454a39fe588f085b7', '172.105.247.100', 1669474344, '__ci_last_regenerate|i:1669474344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b9596d6689eccd53e26d8f0d9365cfc9db7332', '172.105.247.100', 1669474344, '__ci_last_regenerate|i:1669474344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c33b8e970075d2d619a4dff5d74ac02c8eed9cc', '172.105.247.100', 1669474344, '__ci_last_regenerate|i:1669474344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf55fdad86b0f87378c1b17f7f3efe0fb7cca0f', '172.105.247.100', 1669474344, '__ci_last_regenerate|i:1669474344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7305365ecb1fede9370f2fdfc144f970194dce', '172.105.247.100', 1669474345, '__ci_last_regenerate|i:1669474345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7f0d1cde0ee121d1b84d8706410845afb99b9a', '172.105.247.100', 1669474345, '__ci_last_regenerate|i:1669474345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1645f94a24ca5a360679c1bf78e43cbe7257ec53', '172.105.247.100', 1669474345, '__ci_last_regenerate|i:1669474345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f137caf730fe3ba9f553ca5b7533bec5894272', '172.105.247.100', 1669474345, '__ci_last_regenerate|i:1669474345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9de5f32ff1692f738a4730f38abd4f8124ab595', '172.105.247.100', 1669480340, '__ci_last_regenerate|i:1669480340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f3cff48476fb0960b2d09c37bb10f0c94ae834', '172.105.247.100', 1669480340, '__ci_last_regenerate|i:1669480340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c67b107b9ec29a42d4c6a8c7ab7ca91b37d9efd', '172.105.247.100', 1669480340, '__ci_last_regenerate|i:1669480340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adffcd8295ce815dca897fe4072bf25417251ed0', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ba2d366a1aaef76e5412398ef97f982c26838c', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa099149b44250d64cf1da307fd4182c7cdc3c9b', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcfccdc9aefd97579440b2ac06bfa448638f9097', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651e815d18cacd8b599b1668c150d39b619c082f', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db172c66efc2d753fbb93a06d98daf66827b1cfc', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dcdb715ac85cbef51036b4fc103b74268c5331a', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a20c6277eb9dbe0302e36932bd9201315096e14', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b143999c75c11d75dc0b4ebcf49b081dc4120b8', '172.105.247.100', 1669480341, '__ci_last_regenerate|i:1669480341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f1f338cca7480fc90bd2f4dec3800e68388c29', '172.105.247.100', 1669480342, '__ci_last_regenerate|i:1669480342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb92df09aebbec7141f8af9fd68e508abccd3ca8', '172.105.247.100', 1669480342, '__ci_last_regenerate|i:1669480342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a452a288097a6d99def501987877003d736f4cf6', '172.105.247.100', 1669480342, '__ci_last_regenerate|i:1669480342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a6b03735a5bc7292c48176b50cee8e3878c582', '172.105.247.100', 1669480342, '__ci_last_regenerate|i:1669480342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b59929f8ec0bf8cf5d0b8a8868ef7dbeda2244a', '172.105.247.100', 1669480342, '__ci_last_regenerate|i:1669480342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6b9286d90cc0fbdef60406aadc5f526317ee59', '172.105.247.100', 1669480342, '__ci_last_regenerate|i:1669480342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e74d386a19f4fa889a2091cc01ee1e1604c1e5', '172.105.247.100', 1669480343, '__ci_last_regenerate|i:1669480342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2144245b07d784da8fabf1783e7d9e0d98f8d509', '172.105.247.100', 1669480343, '__ci_last_regenerate|i:1669480342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4172196cf0d877e45e0ed3a515f8c9e523087881', '172.105.247.100', 1669480343, '__ci_last_regenerate|i:1669480343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ab01ba55154927d79a01774c964abb5403251d', '172.105.247.100', 1669480343, '__ci_last_regenerate|i:1669480343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008572352ea4d29b16631ca368e1014694c9eb89', '172.105.247.100', 1669480343, '__ci_last_regenerate|i:1669480343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ff5a265388bb6b3c4f67e28f09914f967887a9', '172.105.247.100', 1669480343, '__ci_last_regenerate|i:1669480343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc0232afe1316f0f182735c45eb9164e7ff8b75', '172.105.247.100', 1669486338, '__ci_last_regenerate|i:1669486338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('535ea0f1e1c7ae3804b34c0364c17ff654215022', '172.105.247.100', 1669486338, '__ci_last_regenerate|i:1669486338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8467f58c5bf2c88ebb950966df87f4f29d3e2b', '172.105.247.100', 1669486338, '__ci_last_regenerate|i:1669486338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9765767b8989177ff1b91c06dbbf84b0a3b0c04', '172.105.247.100', 1669486338, '__ci_last_regenerate|i:1669486338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369af38a80e3317baeed029b9285030e723170e4', '172.105.247.100', 1669486338, '__ci_last_regenerate|i:1669486338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96e3e238501ac59c6f387fd228acb7884d5d67b', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52d589256d17fd267bc2104e21b76541868864c', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4caa5ef4ff0e7264f827b1a6211bc75bdebeeb54', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9532c85028991114512abc4bf4887bfd4f8d66f', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121a3b89740898d730ea0a41d0cf1dbe7bfb8544', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30c22e9405336d5a8de6813e1ca8d3466bb18b8', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fe201b046c95ad3e3f3313606e96785a6a1f56', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f09fbfbceafa610d92e968d109ec3b94ac0078', '172.105.247.100', 1669486339, '__ci_last_regenerate|i:1669486339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6477040d200bc367143d5aa099b7fc6e30e9d02f', '172.105.247.100', 1669486340, '__ci_last_regenerate|i:1669486340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755f6778eaa09b6c1b092c7b699e84c710ddaa45', '172.105.247.100', 1669486340, '__ci_last_regenerate|i:1669486340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c048b0ab073bc9817922b59e2981df2a650bad', '172.105.247.100', 1669486340, '__ci_last_regenerate|i:1669486340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0138bbf2a5cbe266eef13699456822e1a8e6e29', '172.105.247.100', 1669486340, '__ci_last_regenerate|i:1669486340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54de591e4402ed2f5704e08d0a925399fc1b2f21', '172.105.247.100', 1669486340, '__ci_last_regenerate|i:1669486340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5bb925abf044ea79f20f4e78ba9eeee596e5312', '172.105.247.100', 1669486340, '__ci_last_regenerate|i:1669486340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b571a5b46d6392637feb9382e3581f35cddebcb4', '172.105.247.100', 1669486341, '__ci_last_regenerate|i:1669486340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f5ce07b9f0742f77af1b14a17be03393f554c0', '172.105.247.100', 1669486341, '__ci_last_regenerate|i:1669486341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517fe7b960516b077ac9fc05e878a078f41faafd', '172.105.247.100', 1669486341, '__ci_last_regenerate|i:1669486341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ae3fc7422842b00e9ee47fa663234d6abe1563', '172.105.247.100', 1669486341, '__ci_last_regenerate|i:1669486341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abadfd6a62ef01840ee2476bb22f52a8b5d21afb', '172.105.247.100', 1669486341, '__ci_last_regenerate|i:1669486341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1524adc04266efdc820594c1bc393799dde0f2ae', '172.105.247.100', 1669492940, '__ci_last_regenerate|i:1669492940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c18bd607ef6366af40e1a055334a353e0f24593', '172.105.247.100', 1669492940, '__ci_last_regenerate|i:1669492940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8213f1b018d6278e406d966fc12c62ab74367e28', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f6e3f61a6e684ed17b28dced05a563dea6bab3', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073a12eccc37a2865fc10b306b1388b9c17b1f8d', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b949fa940053e7be043464130f54d1b7027629b', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ff0e61856844e88d0e612ae17a00c87293f64c', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac666e8dcc2477dccf38c4b77c0736cf8e04e9f', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d745c84242159271905d7a421f377aa0881a10e3', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef390a4fca6ab5a164d72526bf2de1ca08764bf7', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c204f18aae789df5a3d230a92e655d3bf12e6b6', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4598fe7ffae32cf7a7773c21825a8ace5e7cf7', '172.105.247.100', 1669492941, '__ci_last_regenerate|i:1669492941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6176228dac1fea473843747f37e5006eb7db1a', '172.105.247.100', 1669492942, '__ci_last_regenerate|i:1669492942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e25d7cf79eda278117bf31b2ff21a37074d0dc', '172.105.247.100', 1669492942, '__ci_last_regenerate|i:1669492942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ce6eb30af8ab6ea70beb224e875778f060bcbe', '172.105.247.100', 1669492942, '__ci_last_regenerate|i:1669492942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434356f7b6a88849d3b274582cf7f6ef9bba77f6', '172.105.247.100', 1669492942, '__ci_last_regenerate|i:1669492942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81cd752870671c834ad13ef2216a53b1c7dd527', '172.105.247.100', 1669492942, '__ci_last_regenerate|i:1669492942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba375df3980b5689d5c844005da768bdae057510', '172.105.247.100', 1669492942, '__ci_last_regenerate|i:1669492942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc8055d2fd9dcb0243e1a4995510fbfee4f5d70', '172.105.247.100', 1669492943, '__ci_last_regenerate|i:1669492943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b853d9ce298006a3e98e275a731ecaba7bc2496', '172.105.247.100', 1669492943, '__ci_last_regenerate|i:1669492943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ea01335279350bf712b512f2828c23fca44db1', '172.105.247.100', 1669492943, '__ci_last_regenerate|i:1669492943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c2367b9fe897da6b02eb07da89d6a4a6754bb4', '172.105.247.100', 1669492943, '__ci_last_regenerate|i:1669492943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cafacc941fec925258f530355226ae9a690e5567', '172.105.247.100', 1669492943, '__ci_last_regenerate|i:1669492943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27d60a08c2cac3faa903f76a360174f46b65241', '172.105.247.100', 1669492943, '__ci_last_regenerate|i:1669492943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cd2cdd61632e3cd33cab380404227b02506ab4', '172.105.247.100', 1669499533, '__ci_last_regenerate|i:1669499533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fde26d4e8e5aff4fc725d08801d1f4fc0396231', '172.105.247.100', 1669499533, '__ci_last_regenerate|i:1669499533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f83b0e8251518ba7634d845c1ce8e4b7c831e96', '172.105.247.100', 1669499533, '__ci_last_regenerate|i:1669499533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99bddf83104fb3a3224aa86bd71ba5fa419d1583', '172.105.247.100', 1669499534, '__ci_last_regenerate|i:1669499534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f83af9c2ced7aff687f22f02503b2c07d6c47c', '172.105.247.100', 1669499534, '__ci_last_regenerate|i:1669499534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe74d672987f2313790ca1cc640d9e55505709b', '172.105.247.100', 1669499534, '__ci_last_regenerate|i:1669499534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eabe3de50ea44021e7ccb434fa971cf33d11e56f', '172.105.247.100', 1669499534, '__ci_last_regenerate|i:1669499534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775c86d0cce5867d9e9cbaff66aa33a44d071d22', '172.105.247.100', 1669499535, '__ci_last_regenerate|i:1669499535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f606325757f81c7b1ec4940c6fa4a766556726', '172.105.247.100', 1669499535, '__ci_last_regenerate|i:1669499535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bfa30bf0a3ddf3b14f889980fe4ebf56007da62', '172.105.247.100', 1669499535, '__ci_last_regenerate|i:1669499535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491a8e19d97589e515b8f997c1b3aeb78cbc2ad7', '172.105.247.100', 1669499535, '__ci_last_regenerate|i:1669499535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0b75fcf8c657611b14d486c087d2febbd589e9', '172.105.247.100', 1669499536, '__ci_last_regenerate|i:1669499536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d15e2b7ca372fcc49b1e59aaf5fdaa413698a20', '172.105.247.100', 1669499536, '__ci_last_regenerate|i:1669499536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5b36cd49bfcb09b86a6ee82db8176b94b5288e', '172.105.247.100', 1669499536, '__ci_last_regenerate|i:1669499536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2daf76a0b6a753f430d156ec28d7bed606dea00c', '172.105.247.100', 1669499536, '__ci_last_regenerate|i:1669499536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e1ef4a694f2df6d932306ea1f9c81b8289b0970', '172.105.247.100', 1669499536, '__ci_last_regenerate|i:1669499536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa186e16556f4c0c7fd22d20dd55b6d42327a677', '172.105.247.100', 1669499536, '__ci_last_regenerate|i:1669499536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb8b24ed36532274d8ff66a76f60845cbd6677f0', '172.105.247.100', 1669499537, '__ci_last_regenerate|i:1669499537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae16f8df7b9b2ed07e81a58aa17d4d6df6040a9', '172.105.247.100', 1669499537, '__ci_last_regenerate|i:1669499537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a57927c2d693c72b4b508c00cf16ebe85953a7', '172.105.247.100', 1669499537, '__ci_last_regenerate|i:1669499537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dee7787ddb93b859cc1947b8411edee2c9f41c7', '172.105.247.100', 1669499538, '__ci_last_regenerate|i:1669499538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aca8a18b5fc4e7df910b7fbb39c48b8f425645e', '172.105.247.100', 1669499538, '__ci_last_regenerate|i:1669499538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af3aac143de0d0aeb3630c6ecf51e7b06d3ff7c', '172.105.247.100', 1669499538, '__ci_last_regenerate|i:1669499538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f43182e60e26a821205769f0dbae85c487517b7', '172.105.247.100', 1669499538, '__ci_last_regenerate|i:1669499538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51982ae9203dd55feb54b8c5c816c8c992b4ad67', '67.222.152.219', 1669501639, '__ci_last_regenerate|i:1669501639;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c90b0cd90d1f02fbe41cc4e66c0624ad33ec531', '67.222.152.219', 1669501639, '__ci_last_regenerate|i:1669501639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e25b87ae3a6ee9f8633c401bd738a534c949b8', '67.222.152.219', 1669501639, '__ci_last_regenerate|i:1669501639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0bb178033fa4612ec2c1891bbbc6a95377f8cdd', '67.222.152.219', 1669501639, '__ci_last_regenerate|i:1669501639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc1ee7ba259b3c1e7b45a0a6e1a84614a0eb75b', '172.105.247.100', 1669503738, '__ci_last_regenerate|i:1669503738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a699efdc3a0485b359d3bd3f32ad43c4d79fe75d', '172.105.247.100', 1669503738, '__ci_last_regenerate|i:1669503738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98027b166d17810318504a3c72479606e2758abc', '172.105.247.100', 1669503738, '__ci_last_regenerate|i:1669503738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc86058786ce9d27d0e833ad7bc382d7b1c2623', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af818a973f6e0fa0311bfd9541a32221d3ba9d6f', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deef0897d11c2a5525bb81bf65fb7e97d45ab5c4', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fbe9b0789c6bcca9490b0c12c44a0aa80acb50', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37d65e11d1d64ad478f68eabfb1b6b72bf1207b1', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e3686ca726d79e5af65bebed00b82c85eb7952', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1c07f5df04551f27c5b95684702305e40056cc', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ed3800c0f70445e45265a7078010d091e6d227', '172.105.247.100', 1669503739, '__ci_last_regenerate|i:1669503739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861d788aeb5a75e968de97b77f8c95b491c60e14', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe05cced6811e993b491025f9193cfcb610fbdc', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46555079fd0a57fd4833c4e677d574ce8060065', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e7cc05cf8836696f8c9d477f4236e007ac3f06c', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2241b05913dbc39d48aac2bdc314a09eaf48b5b', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be652317a013f794dde4a079962fab07b8597e98', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a483193f4f79bb8040ea591ae79cf46323c31ce', '172.105.247.100', 1669503740, '__ci_last_regenerate|i:1669503740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701ff1f6f8f45b96271056ba95b370ce3402ae3f', '172.105.247.100', 1669503741, '__ci_last_regenerate|i:1669503740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d29d297d9f6cf68b1f4e2f18c5ff92c4f6e22bf', '172.105.247.100', 1669503741, '__ci_last_regenerate|i:1669503741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ddfa24817a5a33a691f07e62c3e2f13479d8fc', '172.105.247.100', 1669503741, '__ci_last_regenerate|i:1669503741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f89ed0d8fb3d9f3c6d54a3b5ad7b7c2cebca2c', '172.105.247.100', 1669503741, '__ci_last_regenerate|i:1669503741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b08f6942f40ca51e3cdf53e5adb6b1f9fc5331', '172.105.247.100', 1669503741, '__ci_last_regenerate|i:1669503741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab27f12596cc4a4fa32759c0c5f87b5ddb303351', '172.105.247.100', 1669503741, '__ci_last_regenerate|i:1669503741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363c0d86153f832c5bf2702afce531879e70a1b6', '172.105.247.100', 1669509758, '__ci_last_regenerate|i:1669509758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbacf75b60701f1e84c6544ee3d44901010cbda', '172.105.247.100', 1669509759, '__ci_last_regenerate|i:1669509759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b11ca99d98c1a800ab5d9bb4f711644c6bf90e0', '172.105.247.100', 1669509761, '__ci_last_regenerate|i:1669509761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('085a0eb662969523a18e3c2e1abf526a30960faf', '172.105.247.100', 1669509761, '__ci_last_regenerate|i:1669509761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90cc15ef5a17ddbaa7de76ee398eb63aa2b60d55', '172.105.247.100', 1669509761, '__ci_last_regenerate|i:1669509761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3e57c4c93e1dcb7eb960c21977db906ce62a1a', '172.105.247.100', 1669509761, '__ci_last_regenerate|i:1669509761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f67d3151d70f4e42c54eda9a33eba4276a4f62', '172.105.247.100', 1669509762, '__ci_last_regenerate|i:1669509762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8949dd711966102bfdf1c3e6db331256c732de61', '172.105.247.100', 1669509762, '__ci_last_regenerate|i:1669509762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7076ecc18afe4d9209cffe08e7810ff4eec1d17d', '172.105.247.100', 1669509762, '__ci_last_regenerate|i:1669509762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0da61d1aa367c353825e60d400775e7234995ca', '172.105.247.100', 1669509762, '__ci_last_regenerate|i:1669509762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b9b751a25ac016b3f653665863752b5e6e2fe9', '172.105.247.100', 1669509762, '__ci_last_regenerate|i:1669509762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42536e8ebe13b3e361804ccf81c4efcb8a5bf12f', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa928567993ced3175f87b316e7c54ad079ecec', '172.105.247.100', 1669509762, '__ci_last_regenerate|i:1669509762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('940538f58cf1df8dceda97f4a2fdb82c148ec6a2', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12191076f82385986a217b893f5bc5d2e184e7df', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7a68ce9652f3d5a3b512cd5c8e3b97c57af224', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e3bb61dc74e48e01b1b742dd6cc15865f2120a', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c43847e164533b780ac351b439aa3e513d6591c', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218afc3272dc1cddbfabac78691bcfda393d75c1', '172.105.247.100', 1669509763, '__ci_last_regenerate|i:1669509763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb218eefba61712844b61ebbe362017dd34c0ce', '172.105.247.100', 1669509764, '__ci_last_regenerate|i:1669509763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dd390223ba50acb6e483214f99d45a4d5a8b6d6', '172.105.247.100', 1669509764, '__ci_last_regenerate|i:1669509764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde797ca407cecc2aa91a4288e8ea3dc1fdb102d', '172.105.247.100', 1669509764, '__ci_last_regenerate|i:1669509764;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706f41147c6f452eff98cc4fef8f340e47f7cdd8', '172.105.247.100', 1669509764, '__ci_last_regenerate|i:1669509764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ce3ed7d334ab1da016cdf5649dcc059395e97e', '172.105.247.100', 1669509765, '__ci_last_regenerate|i:1669509765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2db1c6d730537b9dade201ba793b9477d368e98', '205.210.31.130', 1669510291, '__ci_last_regenerate|i:1669510291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b10e8598ec3ebbcde1062086c8b0da1d036e64', '205.210.31.130', 1669510292, '__ci_last_regenerate|i:1669510292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f72791f780cb8ce98683c7aac2071167abaed2', '205.210.31.130', 1669510293, '__ci_last_regenerate|i:1669510293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a44ba4eea2ae87b02df1f518d48369bf9d3c72d', '172.105.247.100', 1669517548, '__ci_last_regenerate|i:1669517548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4790867e90dc95adee2f369117201a9575fd2c79', '172.105.247.100', 1669517548, '__ci_last_regenerate|i:1669517548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('857aa3f4274fade8bb8dfce90060105efc1de9fd', '172.105.247.100', 1669517549, '__ci_last_regenerate|i:1669517549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6188f4ee64cd6f0ef67377ae4768780792ba4614', '172.105.247.100', 1669517549, '__ci_last_regenerate|i:1669517549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02b50bd8b995b0efcc2855bc0e8e73786e352c0', '172.105.247.100', 1669517549, '__ci_last_regenerate|i:1669517549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97cca06a9406d00643615f4666a94190ec8c41a9', '172.105.247.100', 1669517550, '__ci_last_regenerate|i:1669517550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6012494b5299895b89151bae10ce8302d100dde', '172.105.247.100', 1669517550, '__ci_last_regenerate|i:1669517550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c44ebe0a8a8c713f027c2b1b1830d5221e05bc8', '172.105.247.100', 1669517550, '__ci_last_regenerate|i:1669517550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82898a45eb73eed7fcce2091ce026b49c2c460c3', '172.105.247.100', 1669517550, '__ci_last_regenerate|i:1669517550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38b9465e11e4433dddd8116914f38afb6c80a56', '172.105.247.100', 1669517551, '__ci_last_regenerate|i:1669517551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac36a0044734466c050f9cb2dcac03af09d8256c', '172.105.247.100', 1669517551, '__ci_last_regenerate|i:1669517551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95a56ae2858116933c49c20e2c4d61464dc3a93', '172.105.247.100', 1669517551, '__ci_last_regenerate|i:1669517551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a095329a95e8bc63172a3d4ec3bb65acffe4ac23', '172.105.247.100', 1669517551, '__ci_last_regenerate|i:1669517551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a69dac3ba4c5f9728e7ebe8b4fb20da0339e4d', '172.105.247.100', 1669517551, '__ci_last_regenerate|i:1669517551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d35808e764381e28dc5e53327a693c8853905aa', '172.105.247.100', 1669517552, '__ci_last_regenerate|i:1669517552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f782c65d2b606a559f9ed23a754891068dbc03', '172.105.247.100', 1669517552, '__ci_last_regenerate|i:1669517552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148acbf0571107c8791294ef611e7b679c79d9d0', '172.105.247.100', 1669517552, '__ci_last_regenerate|i:1669517552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b2f6fb288c682b89ab0d65c2052b9f025b488b', '172.105.247.100', 1669517552, '__ci_last_regenerate|i:1669517552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9e425994e894c4f76a0998d6ff1158738a8f76', '172.105.247.100', 1669517552, '__ci_last_regenerate|i:1669517552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c543b85979b682acd1778fdf54bc7726e27e7ba', '172.105.247.100', 1669517553, '__ci_last_regenerate|i:1669517553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab72082283512865cbf9a38730f372129eedf75', '172.105.247.100', 1669517553, '__ci_last_regenerate|i:1669517553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd31925bb64ad900e0236e3cac1f97dce9d1f85', '172.105.247.100', 1669517553, '__ci_last_regenerate|i:1669517553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671af8f3cef3ed60c95e9edc9bc62ec6921f01f8', '172.105.247.100', 1669517554, '__ci_last_regenerate|i:1669517554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0739f9a37996c4900b475bc6ab42cc7d179c2fff', '172.105.247.100', 1669517554, '__ci_last_regenerate|i:1669517554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6af347b84f2d4753e8379166dbc0903a7170033', '198.235.24.168', 1669523191, '__ci_last_regenerate|i:1669523191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87455d1e833fb834f08a5ac888ecd6881c50087e', '198.235.24.168', 1669523192, '__ci_last_regenerate|i:1669523192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f993e551beba893b49c0e8802433e025a92e8a', '198.235.24.168', 1669523192, '__ci_last_regenerate|i:1669523192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9711767b7fe0bcd8a61bf8238ef648e61df5a4b0', '205.210.31.141', 1669523287, '__ci_last_regenerate|i:1669523287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091c1bd0456bd38057221c128558a4cdf43a1cae', '205.210.31.141', 1669523289, '__ci_last_regenerate|i:1669523289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1022f25e2cf0d56bb7d233a2c5fc0c1d4fb9b6b1', '205.210.31.141', 1669523289, '__ci_last_regenerate|i:1669523289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf856b20cdc72f52efc0dc70d841f8f6a53d2a8f', '172.105.247.100', 1669523544, '__ci_last_regenerate|i:1669523544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5198d01f441dfd683bf30affe83e6b2faf43f41', '172.105.247.100', 1669523546, '__ci_last_regenerate|i:1669523546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23dc4d21be8c978d37bf7d6723209b6b53d99ee7', '172.105.247.100', 1669523546, '__ci_last_regenerate|i:1669523546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68aa530937704d049d14fdee26d5bb9968d1973', '172.105.247.100', 1669523546, '__ci_last_regenerate|i:1669523546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28629ba9a3666fec7cc9af60d462663c03fb8830', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f87f6eab4cfcbeeb1bb9e4264ce29a3d42c0df', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26e66d53f30ccb5daa3d98abef75843c7e3c1c32', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ff917d0bd94f48d19e9616278f4eba14c6ae95', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd66a98781ff5a84edd5a8bfd785aa90a5a4d4c4', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f48ceee1fc3674e33884794619915e70dad0d5', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04966cd4dca6170127fff268f2951ce611bf8f70', '172.105.247.100', 1669523547, '__ci_last_regenerate|i:1669523547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0364f1cf3a9161bc3b4743daff63490a7271d1df', '172.105.247.100', 1669523548, '__ci_last_regenerate|i:1669523548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5b1159f8df429d1384a2b7d86cc77e27e79d459', '172.105.247.100', 1669523548, '__ci_last_regenerate|i:1669523548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad7f0d29f8f6532ffcd5fd5481ed83bc207bc0e', '172.105.247.100', 1669523548, '__ci_last_regenerate|i:1669523548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d08980c21cf689f8e845c9c7ac8afe60282fdf0', '172.105.247.100', 1669523548, '__ci_last_regenerate|i:1669523548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed53c2963a730a995077b6a28779789bcdf17a8c', '172.105.247.100', 1669523548, '__ci_last_regenerate|i:1669523548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f327e44deef2ca5a89d9c381ec40e5cb6e0330', '172.105.247.100', 1669523548, '__ci_last_regenerate|i:1669523548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96070c928ba7813c2615e50a24631e3c89dd92f7', '172.105.247.100', 1669523549, '__ci_last_regenerate|i:1669523548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d2643d31e78b1af4f7caa9e352d2a8aae077da', '172.105.247.100', 1669523549, '__ci_last_regenerate|i:1669523549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab62bfb2311f30c3a586557c13c93ca7f9c8762', '172.105.247.100', 1669523549, '__ci_last_regenerate|i:1669523549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8407e44d34284e9525689375c008c4cf3ace4649', '172.105.247.100', 1669523549, '__ci_last_regenerate|i:1669523549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5559053278b7585a9bca8ced139e5c559102d354', '172.105.247.100', 1669523549, '__ci_last_regenerate|i:1669523549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f1d6d49276fd17e644e3f4ede58b446c7d0be1', '172.105.247.100', 1669523549, '__ci_last_regenerate|i:1669523549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3766939d939a25dd7b064fb0243c2b2c9e1fe6c9', '172.105.247.100', 1669523550, '__ci_last_regenerate|i:1669523550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ff2d762b0d4f39f20299911503ce9959f360cd', '45.120.39.90', 1669527966, '__ci_last_regenerate|i:1669527966;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669525192;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fac9190cf23bec2769eb4bf0a60131991c293f0', '205.210.31.141', 1669526009, '__ci_last_regenerate|i:1669526009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b770db18c16e8cee6ddbb171dc5bca38422b796', '205.210.31.141', 1669526011, '__ci_last_regenerate|i:1669526011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3824c7f0490d90976ab04b59e3b2ca87bb2da7e', '205.210.31.141', 1669526011, '__ci_last_regenerate|i:1669526011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a6af5d41e6642ba77e0c625ddbb6ff99a08338', '45.120.39.90', 1669533391, '__ci_last_regenerate|i:1669533391;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669528772;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0852e94df559c38e7fe6a6fedae9e7d440f9571', '172.105.247.100', 1669529550, '__ci_last_regenerate|i:1669529550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('211f8ba8e5aeafc8f783ea7bdba9264a5b028ade', '172.105.247.100', 1669529551, '__ci_last_regenerate|i:1669529551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e1732bc76b56ecb94dfcfe1225e99117210d8d', '172.105.247.100', 1669529551, '__ci_last_regenerate|i:1669529551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1df931fa4eb4125d4a17ed8a53bcd810b8cc55', '172.105.247.100', 1669529551, '__ci_last_regenerate|i:1669529551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de527442e0997f37a4a8ed65531f735410565a2', '172.105.247.100', 1669529551, '__ci_last_regenerate|i:1669529551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e700fc64d3f65a116aba6b359c42435483aaf5bc', '172.105.247.100', 1669529552, '__ci_last_regenerate|i:1669529552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15626d36eaf1ae5ceb02cd8f2f2a1c9694042200', '172.105.247.100', 1669529552, '__ci_last_regenerate|i:1669529552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83a1870fc5b2524f7c2a4d8ed44a2c3ccfc91f4', '172.105.247.100', 1669529552, '__ci_last_regenerate|i:1669529552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29407e3bb50de8092e68c6bf04d6d981d2a6638', '172.105.247.100', 1669529552, '__ci_last_regenerate|i:1669529552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7568ee9e933cbebe74fe4251ceab058743b56318', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abfbca246c10055583e84c7113f3d7d9d25bec75', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b33d1bc72ef8da93fe53107d69d6dafa62ecf1', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661e2662be7190b9d03b405c4f78450b31c81708', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98ecb88da7ecb5ed552a677d5bcbfdd41cfb334', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d8ef03d3689fb29baae00f352e0ff8836aa49c', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fc0644d1bc7b4514430ba3d21467e5b718ecd8', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc3c5061b06cfe085acf5c2d91ace20fe80883a', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f78647099417d4af6869905e81d5a9203ab2bc4e', '172.105.247.100', 1669529553, '__ci_last_regenerate|i:1669529553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deadcddb69e354ab773d5c258643c8c8591db017', '172.105.247.100', 1669529554, '__ci_last_regenerate|i:1669529554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f549e07e03f4e9d6b9df5acddfeef3c4c3dd2627', '172.105.247.100', 1669529554, '__ci_last_regenerate|i:1669529554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260fca3be131b5e62dd41ddee332ea2082ce0477', '172.105.247.100', 1669529554, '__ci_last_regenerate|i:1669529554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faed6b75677120fbba34ee1b833a30547fbadeb3', '172.105.247.100', 1669529555, '__ci_last_regenerate|i:1669529555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51bb1f7c601de9cda43c1883a68c976750ba520', '172.105.247.100', 1669529555, '__ci_last_regenerate|i:1669529555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7d1b9eaede3f6fc1605c7dc0dbbdfe68ca462c', '172.105.247.100', 1669529555, '__ci_last_regenerate|i:1669529555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf5919765414abb7ebc94a2ce5ba71bf8524237', '45.120.39.90', 1669539578, '__ci_last_regenerate|i:1669539578;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669539560;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b465c9d3fca3b9a8cbf51c87afd9ac991f540263', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d271d843f01f20fa2b6f85bbbee830bdbdac3f', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46688d585721bfea000582224cb1f596a9395336', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0297c4610e52772a477e8d1a462b44b9badabd', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7426be6f7cc462d07e5d30aaa83f1774c1c319', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8bebb3e6a2022ee0044d63aa888e9b0e278081', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f3a62f3f5f2b0ddb75ad7e65f3ecdfa1274d42d', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00215ae97241d4dbaf1cd243b7e3da2969d03ff3', '172.105.247.100', 1669535537, '__ci_last_regenerate|i:1669535537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2341073c4401900470bae662094e4a34c20fdd24', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099c56b5c55687f12c1fb1e4cb16aada6ed851c7', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd8e287a2651b0f53224c7302b1271d2dcdbc0c', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320734d71104fb21f4aa5c3ec07e598723b5509f', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b06eaaceafd68faf0bb8a263084adfbd5bdbb401', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5e1b3d57ec44154298b1b659ff8463b52eb2b1', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b5cb94b31c2ceab6681c96daff71cfa19deee2', '172.105.247.100', 1669535538, '__ci_last_regenerate|i:1669535538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323e86705795b67365dae0c937de4243af26e17f', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f38d7f2a74d52c188cb4636c191cd04a5efcaa', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eec425cd7994dfc3622cb9f92a0ec174425954d', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55ebfe9cf99aa52ef374b62d319d6068bfce576', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706329c979c43d791e0ade8d40bf40e8b4afa906', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4140048288e544082df5f43068472ee27d31af76', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf9fa058f9524dd2d59f8ebc65d2d0faa33ff09', '172.105.247.100', 1669535539, '__ci_last_regenerate|i:1669535539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7445c18461d313d3ff2ac7c62a0c36de524a2e', '172.105.247.100', 1669535540, '__ci_last_regenerate|i:1669535539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a59d63707e41ce29525445842738041a8d312ed', '172.105.247.100', 1669535540, '__ci_last_regenerate|i:1669535540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4218f76e00085818595110f5fd391eb9d8b9f2e3', '45.120.39.90', 1669543448, '__ci_last_regenerate|i:1669543448;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669539650;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02eb4b849e3eeece4db7f9ed5e49ed949ab518a0', '172.105.247.100', 1669541545, '__ci_last_regenerate|i:1669541545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027257dda008606d2371125e8424cd3f9bd2ae66', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2722a39193f5cb01065cb13be0a36949ef9dd889', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34a6ccb9cd5768a185ed1c6515ecbb8b6c93a7e', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d782b3f1fa6d3938b0e1fdc5a5600bd82d23f5', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92106a616f6e9ddb005ad668f4eee7ed819d91f6', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38978406cfcd56047f9c14f5b334d975f90a5a3', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eaa2081fdf80b253da73adfc941c658db8144dd', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f966997159247362df5d13cdc4569de47219a819', '172.105.247.100', 1669541546, '__ci_last_regenerate|i:1669541546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('356763d85bdea6bbe3a1340fef96e954716199c4', '172.105.247.100', 1669541547, '__ci_last_regenerate|i:1669541547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8778e4535a5f35aa3cabd3dc0328acaffc05b388', '172.105.247.100', 1669541547, '__ci_last_regenerate|i:1669541547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974090ea0ed23db086516f2b2204da44698888f6', '172.105.247.100', 1669541547, '__ci_last_regenerate|i:1669541547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee185570cbbddb81d04c85b5ac789ea56f2cb7c', '172.105.247.100', 1669541547, '__ci_last_regenerate|i:1669541547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84fcfd85de2d6aa3ed50b6613071ca751e0fa42e', '172.105.247.100', 1669541547, '__ci_last_regenerate|i:1669541547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d64bed995f56f41a49d8d6774190fb0384fe2e59', '172.105.247.100', 1669541547, '__ci_last_regenerate|i:1669541547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333acddc9b86b669cb2077c921afbee1efca37d9', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611a66684a1c677a7391b4dab7d3e1a1c21ad0e2', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2b25e21174b646520a766f5b5cdc0fdb99fbd7', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3bf8030a475b932c6de173e1241ddaa1d4a331', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bbee0d74cf9e5088aa23d2ee5cc5bfd1a577b6', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb9d8c78f5d78aa55a3671057bb35cda290a91d', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b58a4bab676a0a66c99d86c3d9d7bddfbc9969e', '172.105.247.100', 1669541548, '__ci_last_regenerate|i:1669541548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916caba1a63dba00741535b41732d1541131b024', '172.105.247.100', 1669541549, '__ci_last_regenerate|i:1669541549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b96daa0f539de613d65f6bf19cdebd09de8f403', '172.105.247.100', 1669541549, '__ci_last_regenerate|i:1669541549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a76a39cc41bafebb1d249696b38d3481afdeb0', '45.120.39.90', 1669554029, '__ci_last_regenerate|i:1669554029;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669543461;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47cdfa835fcfa20a09785a910698f791e81ca264', '116.204.230.26', 1669544341, '__ci_last_regenerate|i:1669544341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d404a1e76dc3111f9815024aa4560baa5f28b595', '172.105.247.100', 1669547540, '__ci_last_regenerate|i:1669547540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af552bca1140409376fea21d3e41ca2947eeb997', '172.105.247.100', 1669547540, '__ci_last_regenerate|i:1669547540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9ed4d5b5b941b4870844b330fec898a88691ab', '172.105.247.100', 1669547540, '__ci_last_regenerate|i:1669547540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a10bce4808773325872f52c6d1c553aa32ddf7', '172.105.247.100', 1669547540, '__ci_last_regenerate|i:1669547540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4328c82592ceff9b4107b2b66cff9ff7e0471544', '172.105.247.100', 1669547540, '__ci_last_regenerate|i:1669547540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd7b5a5a7c5973eeebb2da7027aff0ec6ed8c944', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc5a2be39c34e2515268942196b8aa9ef0108ff5', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a69033a3626c53b1173e5ffb46499370b3bc8b2', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2a6b5d6996ca44ca0cb440fb8ba43f87019ad8', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5694e2d1eaeaef3870610997a086251d98c11d', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9f2a6da1e10b17f9558f5d0b396fdb33cb3b36d', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbba369efef15fa955af59657184f3864b757ff', '172.105.247.100', 1669547541, '__ci_last_regenerate|i:1669547541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439db0a781d61f3a9f44b7d96080efeac5a25b24', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4457b1e9f5c1fa0115cce14800c71fc2fdc82cd7', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6037501ebb440419c4c427ee9b5bbe4578923ef9', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('402230e0cf167efa6ee8a56f0374a521da0f69f0', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59909e344942a2722d9f92b4031fbea3d21b84af', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292861459f302ae334c31d67417dbea7d0a8db9e', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e9d2d23077489647e3500358409a12cde66714b', '172.105.247.100', 1669547542, '__ci_last_regenerate|i:1669547542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ea66e4c74d2d2865ff1e9f08732225e19b7c3b6', '172.105.247.100', 1669547543, '__ci_last_regenerate|i:1669547542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c03ca25b4bb8b99aaabbc603ee2afb6d7cb712ff', '172.105.247.100', 1669547543, '__ci_last_regenerate|i:1669547543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692e98dc614b7dc1561a0a874a44bce30d6e472e', '172.105.247.100', 1669547543, '__ci_last_regenerate|i:1669547543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d666f414fe8006453475d2d1a5f56494e742ae29', '172.105.247.100', 1669547543, '__ci_last_regenerate|i:1669547543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b5aef14a658f9f3e5f2b0f69316bdea3555c6f', '172.105.247.100', 1669547543, '__ci_last_regenerate|i:1669547543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2aa8ae4eadb440b94ccde36e0907f6763e1981', '172.105.247.100', 1669553546, '__ci_last_regenerate|i:1669553546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dbd6a71372b7188892804dacfcf1c8a77180b34', '172.105.247.100', 1669553547, '__ci_last_regenerate|i:1669553547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11bd3b0d6eba4f8b25c3688f3f64d4ddc96f4ac6', '172.105.247.100', 1669553547, '__ci_last_regenerate|i:1669553547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddabac70afd1b856c84ad95c5a652ae2f5c15b5', '172.105.247.100', 1669553547, '__ci_last_regenerate|i:1669553547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c959f1a26504f409420ce298da02cf3c01a65e86', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('babfdf93d7e1069a56072f027d4d9abc8ed719ac', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1599a7834ba1ab0be6e980c29515c0c158a596a2', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f245a9a4e398379256fe0485387f241d5e25ee', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55cb10913b5269b5c2057b9b80c6bf00f8f88004', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f0adb660bd722b02e5e3478740ee69c854fa6e', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5fbb1d1e60b3bfc973f1602f420fca38903b08', '172.105.247.100', 1669553548, '__ci_last_regenerate|i:1669553548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ecba5451990109448fc001d8080c4b68c8fc15', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a5bf82984a66fbf68b336b46219509ba9ca34b', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d248a22393c64f0b8d73fbfad5a94d3268f0e6a3', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606997a5eb45ab183fcc265a5c44ec814bdd4bd1', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f96b05c7b963311d30822adf4ac3e524d4c259', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8741fc8ecb001bc3cc3f3a98453a701cef29a631', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2412f0c59ad32110f2cd05edf8ee95fcacef8f02', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6d5dfb746a8e6cf723ca3c48e5e6452e0ebb2b', '172.105.247.100', 1669553549, '__ci_last_regenerate|i:1669553549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f11659e0ffcd721878963956462e47ddd97fe143', '172.105.247.100', 1669553550, '__ci_last_regenerate|i:1669553550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ccb9098ec3ac67daa9a8e2f147c971e06f98a0', '172.105.247.100', 1669553550, '__ci_last_regenerate|i:1669553550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f348a28f36226421922573473cc5885d1f126e', '172.105.247.100', 1669553550, '__ci_last_regenerate|i:1669553550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d942addf4ecd03a353ad8f256261ed36db462cc', '172.105.247.100', 1669553550, '__ci_last_regenerate|i:1669553550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507d40d0a376dfcb9357bc9946a517ef0176d48e', '172.105.247.100', 1669553550, '__ci_last_regenerate|i:1669553550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97644a98e99bdaa4c2c293ad5a2810110582b80f', '45.120.39.90', 1669559133, '__ci_last_regenerate|i:1669559133;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669554144;register_id|s:3:\"262\";cash_in_hand|s:9:\"5250.0000\";register_open_time|s:19:\"2022-11-26 20:42:45\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dab67e3ffb28b703dee116d080af44e457aac9', '45.120.39.90', 1669559284, '__ci_last_regenerate|i:1669559133;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669445554\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669559283;register_id|s:3:\"263\";cash_in_hand|s:9:\"6720.0000\";register_open_time|s:19:\"2022-11-27 20:28:03\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8d0e8d639d8e0321a725105ae11805ca7456b5', '172.105.247.100', 1669560136, '__ci_last_regenerate|i:1669560136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587e6b235a731213aae49b96b59e0d91f0d24852', '172.105.247.100', 1669560136, '__ci_last_regenerate|i:1669560136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53c170ddc936ce806b57d31caca302a54ec889d', '172.105.247.100', 1669560136, '__ci_last_regenerate|i:1669560136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9aecada21d65b99eceec87cddcc0cc82a67e25', '172.105.247.100', 1669560137, '__ci_last_regenerate|i:1669560136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36e92408250eaba574cc35ca95a8f88cec59294', '172.105.247.100', 1669560137, '__ci_last_regenerate|i:1669560137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c609723c5168a9b22e58eee6fa878108885f079a', '172.105.247.100', 1669560137, '__ci_last_regenerate|i:1669560137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d46d2213ea82315999b905da6109740315ddadd', '172.105.247.100', 1669560137, '__ci_last_regenerate|i:1669560137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6ae90f979fcc79bb0e9c1cd79eebcc55c87ca5', '172.105.247.100', 1669560137, '__ci_last_regenerate|i:1669560137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3bf5fdfe230c65d195e2f84db8bba1978fd8850', '172.105.247.100', 1669560137, '__ci_last_regenerate|i:1669560137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3760113d9c0309b75a9806b5a3a85b54aa46d6', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874cb2937cd9845d46271cbfe1abc3b8185c435a', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5632bafe038d53998b4dd53966b8ec15365b04', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd5961bb2da48e04b7dcadf5da4dc845ff7aa83', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2eee137d252aa017cc7c6fe97fe1eb51612044a', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c9dd51f93ca1e3f5b91b88b5a6ba3e92a0fd99', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061e7a34c7f27d8377b646a714ae2799572ca0fe', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92febeeb69f94278c6d8edd48bfcf1ab2f957b77', '172.105.247.100', 1669560138, '__ci_last_regenerate|i:1669560138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c1dd9c19deaaf7484280b24138c13146fff3a9', '172.105.247.100', 1669560139, '__ci_last_regenerate|i:1669560139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17377fd3539c32a92c8bbb673e482f99c7db537', '172.105.247.100', 1669560139, '__ci_last_regenerate|i:1669560139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fe78dd0b1a0fd0eea8262b20b28265bfbc505e', '172.105.247.100', 1669560139, '__ci_last_regenerate|i:1669560139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ed07e0d1a362c50823e3427c55ae7887856429', '172.105.247.100', 1669560139, '__ci_last_regenerate|i:1669560139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d208cccc286c88511b31e032db2f9243dc04d19b', '172.105.247.100', 1669560139, '__ci_last_regenerate|i:1669560139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec4c5ec971fd815db08cc4e1d6a93edbbf4979e', '172.105.247.100', 1669560140, '__ci_last_regenerate|i:1669560140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be90a3da8aaa5aa4c38961586a35322b3dacb20d', '172.105.247.100', 1669560140, '__ci_last_regenerate|i:1669560140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f614d8688effcf0c07d504d32e30a0c5868a23d0', '172.105.247.100', 1669567339, '__ci_last_regenerate|i:1669567339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a5ed4b2ea218f737602f3729243b8d4fb2bc78', '172.105.247.100', 1669567340, '__ci_last_regenerate|i:1669567340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d82cae2f314353d1b668d5cee3aaed07872dad0', '172.105.247.100', 1669567340, '__ci_last_regenerate|i:1669567340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee909def1532a8ab7e39e2f41baa227c756da1f5', '172.105.247.100', 1669567340, '__ci_last_regenerate|i:1669567340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92aa7c120510079e4825f7e7296ffdb7404f0dc1', '172.105.247.100', 1669567340, '__ci_last_regenerate|i:1669567340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bed7be1dd06c795c68c4927a6af902358fa5b10', '172.105.247.100', 1669567340, '__ci_last_regenerate|i:1669567340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018af45f14b384744e14ee4b2c54b8ab50607a1d', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe58fa9c30182e45e7bcacebc593d3631b99143', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b0198353b0f3ee92e95344683332cfe4fe5680', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b9a15ef99ec51ec82e2ee555ced9c35c661368', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6a83f38e8824631c25b674869297b2e0d579d5', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d8359e2c8d812014237b13ac903bb5052e9011', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d33143de8204d45d05f61356aa96e8bdf63c1f', '172.105.247.100', 1669567341, '__ci_last_regenerate|i:1669567341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575168ee52d2f24dcd1913862373778cfa7cab09', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6eda2b29ef2e935724bb132d41ea196a42a0cf', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8eef9c844ab44c7f9243c2f350d5f2c78f6bb6e', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4060a0736f2ee204ffab8fbc47635704769974f6', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b785f674e2c4e49a0c4edf5eaca16f12bed8d5f2', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63afa1103820e360a6203d4d877a4ace6819c02a', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad0ff7f7f69981ee82775c3c83e77a50d9be24c', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee16e740673ef61e786cc3ce9a3550e62eb24bd3', '172.105.247.100', 1669567342, '__ci_last_regenerate|i:1669567342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c939d98efebc40c464bb445029bce48e8c6de66d', '172.105.247.100', 1669567343, '__ci_last_regenerate|i:1669567343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a035ef3eb399a3eef54df1f119781c90a3f26e99', '172.105.247.100', 1669567343, '__ci_last_regenerate|i:1669567343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf0174fced44f2a1675a7e5829854c828d8e32a', '172.105.247.100', 1669567343, '__ci_last_regenerate|i:1669567343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fbdfec8ca5826eb80a30e2bbdc397e18ef3047', '172.105.247.100', 1669573938, '__ci_last_regenerate|i:1669573938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28810bfe8adc1c1102bc147cc693b25ace93fe04', '172.105.247.100', 1669573940, '__ci_last_regenerate|i:1669573940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95733dba92eefc8b6abf57ec385a02008341975f', '172.105.247.100', 1669573940, '__ci_last_regenerate|i:1669573940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e1e5c4af26cdd55fc85311045f6884634e58da', '172.105.247.100', 1669573941, '__ci_last_regenerate|i:1669573941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b0967769bc5e5ad03e02bd1c744ad3391f73bd5', '172.105.247.100', 1669573941, '__ci_last_regenerate|i:1669573941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef02f0458433cd49f70f89d188fdd1cdb007430', '172.105.247.100', 1669573941, '__ci_last_regenerate|i:1669573941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b5372ca69820052cebbf86c3aa21ed4e400ddb4', '172.105.247.100', 1669573941, '__ci_last_regenerate|i:1669573941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b4d9ae8cbd5dbe40066ba1aed2f9399b556643', '172.105.247.100', 1669573942, '__ci_last_regenerate|i:1669573942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0c62a2851601178dea1c3f2a3e52a2fce96bbf', '172.105.247.100', 1669573942, '__ci_last_regenerate|i:1669573942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0b4ed162c75193f7dd60749b6034a09a528aa2', '172.105.247.100', 1669573942, '__ci_last_regenerate|i:1669573942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c64f6845a27348046bbef2ba17dc0ce607d03a', '172.105.247.100', 1669573943, '__ci_last_regenerate|i:1669573942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb33c6967ce065f7102ef1de2420a33c077c3f15', '172.105.247.100', 1669573943, '__ci_last_regenerate|i:1669573943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156d16b0a65aa360b7597342d8c5d26a8a641551', '172.105.247.100', 1669573943, '__ci_last_regenerate|i:1669573943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bac3202c77301a630c5134cdd10fd3f1aae03b3', '172.105.247.100', 1669573943, '__ci_last_regenerate|i:1669573943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('280493f671cf58765b3732e53588eaacddbe89dc', '172.105.247.100', 1669573943, '__ci_last_regenerate|i:1669573943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7b3d2a1ddc62696b8bbbbdf37d9a5f63790d4c', '172.105.247.100', 1669573943, '__ci_last_regenerate|i:1669573943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d3c0c94514deab50eb033a9a5d46e5769f48fd', '172.105.247.100', 1669573944, '__ci_last_regenerate|i:1669573944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f7de2112c340a2b4a2447fbe70423743f3bd9d', '172.105.247.100', 1669573944, '__ci_last_regenerate|i:1669573944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f71405a806a6a7e9e747c06041177db4ed05d7c', '172.105.247.100', 1669573944, '__ci_last_regenerate|i:1669573944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffbd6e109deb5f261d6b50666bed2fa9c709be7b', '172.105.247.100', 1669573944, '__ci_last_regenerate|i:1669573944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be4833e5179f17c83eadfcd36c9951a66645ba9', '172.105.247.100', 1669573945, '__ci_last_regenerate|i:1669573945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823af93a642a5c0a9a48fbcddeee0e9e8c5d9ae8', '172.105.247.100', 1669573945, '__ci_last_regenerate|i:1669573945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010481ab2abe799f7b62355f18a9d5cb0fb94904', '172.105.247.100', 1669573945, '__ci_last_regenerate|i:1669573945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eacb6e644d82a1e622afa09bede9c269f952f3b0', '172.105.247.100', 1669573946, '__ci_last_regenerate|i:1669573945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39a9ae156ec5491adf64c1942ac1ca49becbe8c', '162.142.125.221', 1669576284, '__ci_last_regenerate|i:1669576284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad18c0006c0942dbd7b8ef027519b8663676ee3b', '162.142.125.221', 1669576284, '__ci_last_regenerate|i:1669576284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c5f1d22342c9b7a6d1bfa126a3c9657a7350809', '162.142.125.221', 1669576285, '__ci_last_regenerate|i:1669576285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06d67adb26e80be9f28d22145dc31ef51cda790', '162.142.125.221', 1669576286, '__ci_last_regenerate|i:1669576286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52216effce89504b189e7e649264c9ad054c319a', '162.142.125.221', 1669576287, '__ci_last_regenerate|i:1669576287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2392ad5e77ccf87d3896df1bfec98568450061', '162.142.125.221', 1669576288, '__ci_last_regenerate|i:1669576288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c639af1a8df23c9ec1b84a106bb7c5b0cd9bbbdf', '172.105.247.100', 1669580548, '__ci_last_regenerate|i:1669580548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33075fe9a02c2ec339afdee1fffffceb095c1c5c', '172.105.247.100', 1669580549, '__ci_last_regenerate|i:1669580549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1894069790cd0f24e25bf44c54e6b5e30626ea6f', '172.105.247.100', 1669580549, '__ci_last_regenerate|i:1669580549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbfab2c640466968d8981a888c45c084a3ae7e9', '172.105.247.100', 1669580549, '__ci_last_regenerate|i:1669580549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1999c4d6a22b6606d932a7f207f3e79a38704db0', '172.105.247.100', 1669580549, '__ci_last_regenerate|i:1669580549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65df92acd8d0843e3bfa82adb37c03136ad721f8', '172.105.247.100', 1669580550, '__ci_last_regenerate|i:1669580550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('290123f0bdeda87af90ee41672dfdbe4a095bd75', '172.105.247.100', 1669580550, '__ci_last_regenerate|i:1669580550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a200d479ff314f24acc14f6134ce8a8b9a0b083', '172.105.247.100', 1669580550, '__ci_last_regenerate|i:1669580550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f42d9356cf9858dd931e60d114cac92fb28b25', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8806ceaedbd1121bdfbbe7ab18bd111aaafd670e', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5833a19ab4b17db9da0c776765bdad0c2d52fd', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed3dc9f7b16794d7d96e9214af45e7541a517c0', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510be4b803cc7d5ea59d9947a8caf32716d7e328', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac3768906d85ef20cebae0b131a62e7e41350bd', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77db1730de62b87f74f3f5a47fd93442b4aaf43', '172.105.247.100', 1669580551, '__ci_last_regenerate|i:1669580551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b880ec6c4b553b5f20419a32e311c8fdf2269be', '172.105.247.100', 1669580552, '__ci_last_regenerate|i:1669580552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c609103386df3095d750ed5dc03a16d80b454a7', '172.105.247.100', 1669580552, '__ci_last_regenerate|i:1669580552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba45d23617ab09235c82b52a5eec33af8e2cd2a', '172.105.247.100', 1669580552, '__ci_last_regenerate|i:1669580552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eb9199a6c8d2fea66c3eb376c7fb75e4ec60216', '172.105.247.100', 1669580552, '__ci_last_regenerate|i:1669580552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb37347d9928e1c276ca9dda2f09550d44070d38', '172.105.247.100', 1669580552, '__ci_last_regenerate|i:1669580552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6c4360a6613cd8bc0db54d65cd4cf84a8422fa', '172.105.247.100', 1669580553, '__ci_last_regenerate|i:1669580553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec7f0845a80a0fe2a0183a3682470bb04b5425a', '172.105.247.100', 1669580553, '__ci_last_regenerate|i:1669580553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37bfe7b59b44a828f866bae061ebf85b5010c94a', '172.105.247.100', 1669580553, '__ci_last_regenerate|i:1669580553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7f182d7b2785cdad577a287f7f0c6a9f39a780', '172.105.247.100', 1669580554, '__ci_last_regenerate|i:1669580553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0bd4b026c29635990de8b2bf407acda9432652c', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b676004ec4986df33a8963217b02a2cae783fc80', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e453b475800eb13f0d8218cc5ca73cbb083717', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b0ce308734a4ef935f48f2cec1e367f754bdfc', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b2d0370de6ae8ff0df9670ddf50684940435a2', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99e4935be9630791c80e82585e1faf2f66a982e', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae9bb13e2c1a30f508a95f98a7167e0cca2c0331', '172.105.247.100', 1669587134, '__ci_last_regenerate|i:1669587134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90489c5901e53cce8f07555997921f404b5a7995', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee009f6ef0bae0fd81e62fe9d836df5845ea2b5', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfab12fd066d0eb4bc906e6f06fe2fae4244cc6a', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f943e117b711087bd6291b27581198015a744eaf', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c1c9bd7dc1447c5280ecee3c2b65e4dff30a6e', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6daa317d54437ec92c6f32c8a6ddc3469857d987', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d3e692692ec52d6f891d238324c7c109c95b84a', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2396194c37986c97def4316a009c499b1ad3623', '172.105.247.100', 1669587135, '__ci_last_regenerate|i:1669587135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364e4732a341117b1c6bfd82586ea0245a465346', '172.105.247.100', 1669587136, '__ci_last_regenerate|i:1669587136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a7a8c01d4e3fc24534a8991a0e36e81e1d5d03', '172.105.247.100', 1669587136, '__ci_last_regenerate|i:1669587136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e26d6a163461a35a45b5171d8ec82ca25731f2', '172.105.247.100', 1669587136, '__ci_last_regenerate|i:1669587136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee083cf73f2604af21d2ce08bb5a7b82d82cfaf7', '172.105.247.100', 1669587136, '__ci_last_regenerate|i:1669587136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaea85e254108a995190263606af1f07af827c97', '172.105.247.100', 1669587136, '__ci_last_regenerate|i:1669587136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01d0a129125418c31f6f4f0c145f6744fce5b1f', '172.105.247.100', 1669587136, '__ci_last_regenerate|i:1669587136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86381a29e14409a08b5a4be9d5d47c3abc6b1cb5', '172.105.247.100', 1669587137, '__ci_last_regenerate|i:1669587137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0d59754756f9b513ba0f35a0561437dab3bad2', '172.105.247.100', 1669587137, '__ci_last_regenerate|i:1669587137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2539e924674b5703e9c8739291c6285173156b', '172.105.247.100', 1669587137, '__ci_last_regenerate|i:1669587137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23bca987b5e6a8b91150974a94caafa190c85e91', '172.105.247.100', 1669593742, '__ci_last_regenerate|i:1669593742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dd230ea121dd58dc11b40ebfcbd6dfc3d51162', '172.105.247.100', 1669593743, '__ci_last_regenerate|i:1669593743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5635fc17b57279b47aead569e263b8f11051c1', '172.105.247.100', 1669593743, '__ci_last_regenerate|i:1669593743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f5d34fe3287a4e048adfe2d72a19be5fa4073d', '172.105.247.100', 1669593743, '__ci_last_regenerate|i:1669593743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0992d546fe671ab7795f1b53e4e713148f7f94cc', '172.105.247.100', 1669593743, '__ci_last_regenerate|i:1669593743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d8ebd7f4f0b707c6e3d47206c697c71153b8bc', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8fe5fdb5764030ae9b89b71d6f4373d4ee87abc', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f13b335fe609b92830d5cf75dad14c670aa294', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc48c7a2b4acc2e328a7d6c212344aa7ed408ba2', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110ca54f5d431dc5e2c671ac289f3acad64fccef', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d382fa9b40f401f53ec31fa772c74ef52f89db78', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f1e10ccbcfa5c168899609964e48047c850adaa', '172.105.247.100', 1669593744, '__ci_last_regenerate|i:1669593744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1b23e880aab29342aadd7aaee203c85f4ca9ea', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9039944743e9d50e20fe1494b9d071a1b937495', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15008e0aee8472f07968a7c736ca3945009267c', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964f0e7aabb5a00c1d81d259db4ddc61225b8139', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4413721a58aee8206491197873c50b0fc15e48ec', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c110d891ec79f92b2622ac33137503fd240c4e', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2e57956e17cb28cbfe961c2551fdfc0b4198c2', '172.105.247.100', 1669593745, '__ci_last_regenerate|i:1669593745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae0bd141835137338bce3b2a69b2cba068688fa', '172.105.247.100', 1669593746, '__ci_last_regenerate|i:1669593745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9dd8dca25b216296a29a25ea9ce4f86ade3990', '172.105.247.100', 1669593746, '__ci_last_regenerate|i:1669593746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b968847fee84b73e2297ffe540384358b3589c', '172.105.247.100', 1669593746, '__ci_last_regenerate|i:1669593746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f377815890664e1b628a5a5208aa9479622a48b', '172.105.247.100', 1669593746, '__ci_last_regenerate|i:1669593746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d23a184b609ddd75de76e412b2fe38747e57f86', '172.105.247.100', 1669593747, '__ci_last_regenerate|i:1669593747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6628c1c330a6ec85f2faa6bfff8331b47a916cd', '172.105.247.100', 1669600354, '__ci_last_regenerate|i:1669600354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f614239b94b1ddf09b479194812a2c00089cf6a8', '172.105.247.100', 1669600355, '__ci_last_regenerate|i:1669600355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce641eb36bc0d086b2f00808ec1aad67ae27683', '172.105.247.100', 1669600355, '__ci_last_regenerate|i:1669600355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e721bb0718259b8115ae864060070460b11aabe3', '172.105.247.100', 1669600355, '__ci_last_regenerate|i:1669600355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a7e1f4f241a4c4c96ebd1f7ab14c3dc97f1533', '172.105.247.100', 1669600356, '__ci_last_regenerate|i:1669600356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b9d2d8eef95ade65cda9c77a445105f4d0966e', '172.105.247.100', 1669600356, '__ci_last_regenerate|i:1669600356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eca34deb33594ba578e1791c0fc41fc78c62142', '172.105.247.100', 1669600356, '__ci_last_regenerate|i:1669600356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a623623666b5c22eeae94856a4f0356b28b94b4a', '172.105.247.100', 1669600356, '__ci_last_regenerate|i:1669600356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae06fd623235133d549e72f6857f3d1d8633ef38', '172.105.247.100', 1669600357, '__ci_last_regenerate|i:1669600357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('882baf1fcd901f3fda9080c86d82aff0db13db22', '172.105.247.100', 1669600357, '__ci_last_regenerate|i:1669600357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c782a596c25948d397b722fdcf39c805f4ced50', '172.105.247.100', 1669600357, '__ci_last_regenerate|i:1669600357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25911eaa2243b549de808aabf91d3597ce6d0d32', '172.105.247.100', 1669600357, '__ci_last_regenerate|i:1669600357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23ce2d2739b757ce292904af86b066416f57fb7', '172.105.247.100', 1669600357, '__ci_last_regenerate|i:1669600357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41382f19b3226c0df88d29bc58b3ba9bdb5a124d', '172.105.247.100', 1669600357, '__ci_last_regenerate|i:1669600357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7937d054f05a663e7b9de2ec0d261da11d44db22', '172.105.247.100', 1669600358, '__ci_last_regenerate|i:1669600358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70a26e8ae49b53fe4cade00c4aa5767b46a09779', '172.105.247.100', 1669600358, '__ci_last_regenerate|i:1669600358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d70ff4a25491473b59341ddd11bb64f44d745a4', '172.105.247.100', 1669600358, '__ci_last_regenerate|i:1669600358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05109ba4a047e7f3eb24e14a9a275c106032c761', '172.105.247.100', 1669600358, '__ci_last_regenerate|i:1669600358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8166c47e1fd5b9f8c32822d151504484d68bc0', '172.105.247.100', 1669600358, '__ci_last_regenerate|i:1669600358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b627f1aa61516768b65b7b1d34299adf9ed446', '172.105.247.100', 1669600358, '__ci_last_regenerate|i:1669600358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc62c00c8f531a1640193dd8224afb410ac409d', '172.105.247.100', 1669600359, '__ci_last_regenerate|i:1669600359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd3d67e6a125d25bc26d03b8110e5720b76fe40', '172.105.247.100', 1669600359, '__ci_last_regenerate|i:1669600359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd7cce5bf8d35ddf7dc76d11ca138a517472bf2d', '172.105.247.100', 1669600359, '__ci_last_regenerate|i:1669600359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21e84351196233531ae082685a625f92346a34d4', '172.105.247.100', 1669600360, '__ci_last_regenerate|i:1669600359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6fb26fe4d200d1746225b15a67b57227ab6d3e0', '172.105.247.100', 1669604544, '__ci_last_regenerate|i:1669604544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0b8af7c9ca5c9fa38c0a9397d11ad346635d14', '172.105.247.100', 1669604544, '__ci_last_regenerate|i:1669604544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07107dc1c38ea16ce7c70cf42c48cf5094f4fbc', '172.105.247.100', 1669604545, '__ci_last_regenerate|i:1669604545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80dbaa70246161420230b2931067a7936f87c584', '172.105.247.100', 1669604545, '__ci_last_regenerate|i:1669604545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c955ebcdf5ed8ad6850c2391c991b45e7d07fea', '172.105.247.100', 1669604545, '__ci_last_regenerate|i:1669604545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ff1f9df02bca0bf25979880d71e94eca9d5691', '172.105.247.100', 1669604545, '__ci_last_regenerate|i:1669604545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7207adb469d71785b3765c110e87c54a698c4168', '172.105.247.100', 1669604546, '__ci_last_regenerate|i:1669604546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6739d6a054e38da0127d86158690d2038a54a2', '172.105.247.100', 1669604546, '__ci_last_regenerate|i:1669604546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e88409626dc04860f88a1e529167da716027bb', '172.105.247.100', 1669604546, '__ci_last_regenerate|i:1669604546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17900eb099448e6a14b6e00fe1aea9c93a111637', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2a0b9379e8fdf40e29c1ed35e231f4df3c2cfd', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d8c7bac20f9a860f9196ce19aa220dfa59b02c', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c6d9959775e34efe55aa54b61aac38f0121a31', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3c7aec0b8fc884fa21d46c237ca9d3df6f5474', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eddafdc203bf104d1514fb23449ad4f09f56df6', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb8409919669b417d51f91ab0ba927dd39820c3', '172.105.247.100', 1669604547, '__ci_last_regenerate|i:1669604547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51aeaada0d7203926740e56ce18adb8278b3325e', '172.105.247.100', 1669604548, '__ci_last_regenerate|i:1669604548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceae9d4e59f7623839809d3c2d8c03f6b2a99035', '172.105.247.100', 1669604548, '__ci_last_regenerate|i:1669604548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf68cbfce358eaf9bcdb4ddfda61e26e73db7d0c', '172.105.247.100', 1669604548, '__ci_last_regenerate|i:1669604548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d61409c6e18ccfcca5496876a61cd01ca974e3c', '172.105.247.100', 1669604548, '__ci_last_regenerate|i:1669604548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa252b1633a671622712b55bfc2ca9a7c425d80', '172.105.247.100', 1669604549, '__ci_last_regenerate|i:1669604549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e1ca54338a84bbfaa73e2a27b4b8c518b1d142', '172.105.247.100', 1669604549, '__ci_last_regenerate|i:1669604549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e7e9daf8e7a6bc2febbb7dfcb6cdb07954396e', '172.105.247.100', 1669604549, '__ci_last_regenerate|i:1669604549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9991493cfbc6b87c09107804c501d8f5bf2d84de', '172.105.247.100', 1669604550, '__ci_last_regenerate|i:1669604550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52cc87f6270329af18c73933cd4ccfff86311af3', '45.120.39.90', 1669610260, '__ci_last_regenerate|i:1669610251;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669525182\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de385f0a8034f3c6e671b76a2358f674d24dc8b4', '172.105.247.100', 1669611157, '__ci_last_regenerate|i:1669611157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03841bc4af0bab5658efdaa77695441b021dc2d4', '172.105.247.100', 1669611158, '__ci_last_regenerate|i:1669611157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb59b2fa8bd969e0115a2b6b106452f0d38895cf', '172.105.247.100', 1669611158, '__ci_last_regenerate|i:1669611158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750daebadd1c6de6a2c9a218481b08f533ebbe16', '172.105.247.100', 1669611158, '__ci_last_regenerate|i:1669611158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd526f19b23a2f49b93ec6fe325a7fdb47d0d967', '172.105.247.100', 1669611158, '__ci_last_regenerate|i:1669611158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ef362f0e7f96d18567d2def1acdbed3a69b814', '172.105.247.100', 1669611159, '__ci_last_regenerate|i:1669611158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3dd6849e636d07cff9c84b27ad50c6f5b7e5a3e', '172.105.247.100', 1669611159, '__ci_last_regenerate|i:1669611159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac37d9627982040e259915f024072ff9d7b37a6', '172.105.247.100', 1669611159, '__ci_last_regenerate|i:1669611159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f410335f710809d2d40817f74309aef30e47cc39', '172.105.247.100', 1669611159, '__ci_last_regenerate|i:1669611159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb39b4bbfd3e8242b45874a1e45fc10e2f79655', '172.105.247.100', 1669611159, '__ci_last_regenerate|i:1669611159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ba66efd211eb5fbfdda3e9a5c92d11cf2062cc', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd4b4a48a5e5175a58fd34cb06247f6c7682da5', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b177dbd56d28013e5b863a3dbab562a451205d6f', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8484fcecc6f1548986326ecfc84aa580e2858fd2', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880b23a3e46cb9ed318bda910cdfde59027f530d', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d995046e9bdad5e4eb4cccad54a830049cc50bb4', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65c40deb791f4aafda81878ecb7f3887529dc70', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad217f148c10d5bca30e60301b9a8a727ad2f6d', '172.105.247.100', 1669611160, '__ci_last_regenerate|i:1669611160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe6dede17765d59c2f6356f249644a6b8666c17d', '172.105.247.100', 1669611161, '__ci_last_regenerate|i:1669611161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c960b6f63a4da81ba4acf3418b6aac302a7310f6', '172.105.247.100', 1669611161, '__ci_last_regenerate|i:1669611161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1ee8eee7f942ddf6bbb727c9fd8f2007f3d671', '172.105.247.100', 1669611161, '__ci_last_regenerate|i:1669611161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22038cf16377f22c8f18c91006be83ba02afb24e', '172.105.247.100', 1669611162, '__ci_last_regenerate|i:1669611162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e005be5a31ff855fb269367d13a60345db794f', '172.105.247.100', 1669611162, '__ci_last_regenerate|i:1669611162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e1c6e4332aa5b7c53d29a93870ba5853ab1a24', '172.105.247.100', 1669611162, '__ci_last_regenerate|i:1669611162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('072acf44fcfa66e9e6435ad9c7f01434f84309ac', '172.105.247.100', 1669617740, '__ci_last_regenerate|i:1669617740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d278556b047da58e03489fa1605861d511184b1d', '172.105.247.100', 1669617740, '__ci_last_regenerate|i:1669617740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2591901bc675b8d4a961f73a3dfda3ea2e0db7e8', '172.105.247.100', 1669617740, '__ci_last_regenerate|i:1669617740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08047e2541f4167569e7a9f80f580336d8156150', '172.105.247.100', 1669617741, '__ci_last_regenerate|i:1669617741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44408be3871845b6cc8a72c8f6383292e949e7fc', '172.105.247.100', 1669617741, '__ci_last_regenerate|i:1669617741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79a2b6e518994c80e2672b69931bec3acf2b6b7', '172.105.247.100', 1669617741, '__ci_last_regenerate|i:1669617741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2992cda602c7e305d3a63de475f7978a095977', '172.105.247.100', 1669617742, '__ci_last_regenerate|i:1669617742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d99cd0e403a785e6dfa4cb3f9f27011c5048075e', '172.105.247.100', 1669617742, '__ci_last_regenerate|i:1669617742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7423d54b7fcfda465c41104c0026938eec5fd0d4', '172.105.247.100', 1669617742, '__ci_last_regenerate|i:1669617742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78518f54b8e3c9f3312ab5c191d75c7da27d21f', '172.105.247.100', 1669617742, '__ci_last_regenerate|i:1669617742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c4b27be7fc602fe593be1dcc6076a5ee499177', '172.105.247.100', 1669617742, '__ci_last_regenerate|i:1669617742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3948feffa38cc000fc8e5b1c10c960770b5b851', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25dfc8853501e5ef4d6645198960db55651015ce', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ad73f568a952458ad9fce86e0933cd65202a5b', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab82af04a4c676e3fe71a587531ff476f6ce30a1', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8bce7bb4cc96a238be98f70c9edd5a9611a531', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577a11721fa1da4db42b40d00f512b8aacba2049', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0261210b9c8b2e66c5d6068c8afbbe6c3e5f4017', '172.105.247.100', 1669617743, '__ci_last_regenerate|i:1669617743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5104e3325f35c3d1bc238a585ff684c6b38f12c7', '172.105.247.100', 1669617744, '__ci_last_regenerate|i:1669617744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a994426a2a502747b951837b629bf96e29d9ae', '172.105.247.100', 1669617744, '__ci_last_regenerate|i:1669617744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19b4fcb0e5a6fe98414c60f0c244ed51f4ee0c7', '172.105.247.100', 1669617744, '__ci_last_regenerate|i:1669617744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9045ca3e11de5a06bf44111fb7024a5d9ebb0d', '172.105.247.100', 1669617745, '__ci_last_regenerate|i:1669617745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7728bbcc288653a04fe1bdb980c37d25047231d4', '172.105.247.100', 1669617745, '__ci_last_regenerate|i:1669617745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82bb5163f5cab765e025237213f5e60a367b02a', '172.105.247.100', 1669617745, '__ci_last_regenerate|i:1669617745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa95aa43acf7d4583ff2bb67d913f7165a7113b', '45.120.39.90', 1669622108, '__ci_last_regenerate|i:1669622108;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669610259\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669621716;register_id|s:3:\"263\";cash_in_hand|s:9:\"6720.0000\";register_open_time|s:19:\"2022-11-27 20:28:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dcbd8dccc1e1b761bf98e57f20b75ba8c668113', '45.120.39.90', 1669622413, '__ci_last_regenerate|i:1669622413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669610259\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669621716;register_id|s:3:\"263\";cash_in_hand|s:9:\"6720.0000\";register_open_time|s:19:\"2022-11-27 20:28:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060c04ef859042a2997f8098c9446697a76493ee', '45.120.39.90', 1669623347, '__ci_last_regenerate|i:1669623347;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669610259\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669623326;register_id|s:3:\"263\";cash_in_hand|s:9:\"6720.0000\";register_open_time|s:19:\"2022-11-27 20:28:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545d8cd79f4159308666672fe96e61339036f1ca', '45.120.39.90', 1669623347, '__ci_last_regenerate|i:1669623347;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669610259\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669623347;register_id|s:3:\"263\";cash_in_hand|s:9:\"6720.0000\";register_open_time|s:19:\"2022-11-27 20:28:03\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e960b2ac7bf98a1d31358c12ab03b5dc798011', '172.105.247.100', 1669624945, '__ci_last_regenerate|i:1669624945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a46c42b9e1052084c3354e6b6a127d02d935f19', '172.105.247.100', 1669624945, '__ci_last_regenerate|i:1669624945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c98b2f22a579cb1ba75af68cb6f3054d50dbc3', '172.105.247.100', 1669624945, '__ci_last_regenerate|i:1669624945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825fad8ec269bb93c79873362b89a836cd18b1ef', '172.105.247.100', 1669624945, '__ci_last_regenerate|i:1669624945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522a95efdc20f1253f121d37ccfedbf30dcf0e00', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9d442108dabb7730b5615a7012ec3f38b74278', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb5ce4008e5fc6aeff959d1e93a924da97478ee', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c40356013e664964ecfe6c7cbafa5f5c861242', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364224d091e1e36238117878f7afbf2e13068458', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9038b0820d67e1d37d327c57d44c1cf4dad737', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61dbd99e588a625381527393578c644313886ac6', '172.105.247.100', 1669624946, '__ci_last_regenerate|i:1669624946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ef6213cd78e04e9c243749c5e2e195fdb776f7', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff732c0c01c55f85725b65cff4a5eee2e067365a', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96eae153b8e3ddc85bf94a04560513b1af4ba315', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d0642ee1f50fae9fc2e341ce73034aedb5d647', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd52e65b0cb6afd9a8548654cc9160b7aca2ba37', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d0dd9b61e1ddf5c776a0e3ec53d89b841e5e60c', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32724802d7f6a04c5b2a347723c0e9d5ecee89d', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1fe02a4c00e2c672b4fb929a48fc262f226c1a2', '172.105.247.100', 1669624947, '__ci_last_regenerate|i:1669624947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4913c9204aacd9af67cab82d9f010521841d4350', '172.105.247.100', 1669624948, '__ci_last_regenerate|i:1669624948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6a9895c0484a918eacbb43ad22806bf119e07d', '172.105.247.100', 1669624948, '__ci_last_regenerate|i:1669624948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897cf20e9c2274bda9e9ecebfb5f122041b3a534', '172.105.247.100', 1669624948, '__ci_last_regenerate|i:1669624948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315b8f6f0377fb93d5e2679f139d44a2d1da60b9', '172.105.247.100', 1669624948, '__ci_last_regenerate|i:1669624948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343adeef9c6660f85ca3dd5561b585f7ac4460ea', '172.105.247.100', 1669624949, '__ci_last_regenerate|i:1669624948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('849fda216e8c7511cf838395cdd7b0e7623afcb3', '195.211.77.140', 1669629329, '__ci_last_regenerate|i:1669629329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27f4df8485f440de078cd9d2e912bae1cebf9fb', '195.211.77.140', 1669629330, '__ci_last_regenerate|i:1669629330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1ea76dc9af9d0b7b062e5d3ffd531c40ee418c', '195.211.77.140', 1669629332, '__ci_last_regenerate|i:1669629332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44cd85728a790dd5d59d01746c886dd1f1b623b0', '159.223.109.111', 1669629354, '__ci_last_regenerate|i:1669629354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008d1fee493b2507d28c5a03f694f07854ff3221', '159.223.109.111', 1669629354, '__ci_last_regenerate|i:1669629354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa88f240686f1f1e197096149d797ec37849668', '159.223.109.111', 1669629354, '__ci_last_regenerate|i:1669629354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbf1959174caeead3fd2543136db114d2d6a07b', '205.169.39.63', 1669630717, '__ci_last_regenerate|i:1669630716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc9bc1bf0bc543f92e2fe70912cfe23f77401a1', '172.105.247.100', 1669631549, '__ci_last_regenerate|i:1669631549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9e079ba7406cfad502c7b43c7b28d2c1e3e4bf', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5dbcca470649bdde446454c37fadd1922196862', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc693f114ac827dd907b9ceea60d2c60aee7f0f4', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef56671b6264e0444a2c1c9d87162e312ba2cee', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2a358b65e86f4d806a9398b26c74b1f6c54a6c', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e5af223db9f920a2a0c821ad0a59631cb3b915', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f033cdd0f2761fa9c8fd94708c544c875f4125f0', '172.105.247.100', 1669631550, '__ci_last_regenerate|i:1669631550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b167c63392c8ae1b406c16cc6643b8257a8274ea', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f15d77f5aa97650ca318fa23732d8f935c18d8b', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79ebeabfee8c79ea07e256ffd643cc256fe8f44', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1cafad4da2dd9b83144a3986e9c9d5c18dacb68', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a0ae1805d2476138a79aa1cb0d7923e8eb1eb5', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a94c22d90095f479cabd8e6496e680259e1d26d0', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37cfe01767a972f48ad1fc8c2ac50408e3fd461b', '172.105.247.100', 1669631551, '__ci_last_regenerate|i:1669631551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43bbb5c1cda23b8b7dbc2778c31bb59207e76a1a', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e9a773ff37df02e2ae11c551387ed25d9ae0f2', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72f0b2a7b5812694777527e049b7c1fd8e14e8d', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92471f440ad0fc4f004ede2e4ef9f14ca2d534c', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a203624d175b0d81c0d8a6ddc2aabd4d1329522b', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a828c96bcb69b842bfb48e408709959829fbd19', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8108345635af2276f5099b1b7de4aac5c9e8c1d', '172.105.247.100', 1669631552, '__ci_last_regenerate|i:1669631552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395154e568fda1cf2182aaaec0f81eee18e6a0f9', '172.105.247.100', 1669631553, '__ci_last_regenerate|i:1669631553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51ba8b474b0776593353862fcddc85bd8d8ae0f', '172.105.247.100', 1669631553, '__ci_last_regenerate|i:1669631553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0e75dadf87e670643b4b2446a58f645a8b6a2af', '119.30.39.184', 1669636255, '__ci_last_regenerate|i:1669636255;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1668699443\";last_ip|s:14:\"116.204.230.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83455df20801011bc9fd48bd2822413b74a88c52', '119.30.39.184', 1669636255, '__ci_last_regenerate|i:1669636255;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1668699443\";last_ip|s:14:\"116.204.230.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ee46d9b54342fda6fe829b345f4e175602a497', '172.105.247.100', 1669638741, '__ci_last_regenerate|i:1669638741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10037e84122b50844d7ed9bece5b9d3418da78b', '172.105.247.100', 1669638742, '__ci_last_regenerate|i:1669638742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9780f32850981980fa396a44f3daac8f9cea66a8', '172.105.247.100', 1669638742, '__ci_last_regenerate|i:1669638742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06929d267650a8669148ddfaf6ddc946b0bff1dc', '172.105.247.100', 1669638742, '__ci_last_regenerate|i:1669638742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4920eff0106a1bfb34572f5057f9d116b38dd752', '172.105.247.100', 1669638742, '__ci_last_regenerate|i:1669638742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b50e24a518b2892c3865a0575ed29aa9655626', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d951be39f873b27818b13fceb50a6cc0e81680fa', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16cc8e59adb3752c7ce6a3285d368f62c4a1eb1d', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a92084eb6e8191ea67bbe9ab82ad6ffcecabb3', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4971fee46eaa1573681b8a59bed70c4c22227f76', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792d2d9bcb963cbbe1eae2f2fd863d1ffa3e1a89', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b6dfebf13588f496385cb9d818ec000f0fa510', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c9170db368bba659e34b8bfb9979e0c50949ced', '172.105.247.100', 1669638743, '__ci_last_regenerate|i:1669638743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b80d35db1f269e961a5fc753d39f2bc85d3854b', '172.105.247.100', 1669638744, '__ci_last_regenerate|i:1669638744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4a114bf52dbea72c4c19ba2c6b677580d67c34', '172.105.247.100', 1669638744, '__ci_last_regenerate|i:1669638744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbd239c734f318b578305d28b709ceacdfb8122', '172.105.247.100', 1669638744, '__ci_last_regenerate|i:1669638744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16be1733efdbcb5fcbdde1165717eac3883593ca', '172.105.247.100', 1669638744, '__ci_last_regenerate|i:1669638744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6151cbb3d564dda0dee7b094e5248ea89a21a98', '172.105.247.100', 1669638744, '__ci_last_regenerate|i:1669638744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9126d58a05945b8e10cf05c3837cf8080f0c2e5', '172.105.247.100', 1669638744, '__ci_last_regenerate|i:1669638744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29a9271509ad1f13f31c15b295a607acce5fb878', '172.105.247.100', 1669638745, '__ci_last_regenerate|i:1669638745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f577684d76ef25c9ad3365085dbb7ec5fbcd5152', '172.105.247.100', 1669638745, '__ci_last_regenerate|i:1669638745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b26c5357cd878ed9f1fff097e13982f64de471', '172.105.247.100', 1669638745, '__ci_last_regenerate|i:1669638745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd31226d140b31e6141def236dcabe01367c229', '172.105.247.100', 1669638745, '__ci_last_regenerate|i:1669638745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de820db2d7431421d8fb4a74cf7d8daaee80025', '172.105.247.100', 1669638746, '__ci_last_regenerate|i:1669638745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef8497f724c897652fd45a5b6039458fb0c9de5', '37.111.217.253', 1669644327, '__ci_last_regenerate|i:1669642399;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669621708\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669644327;register_id|s:3:\"263\";cash_in_hand|s:9:\"6720.0000\";register_open_time|s:19:\"2022-11-27 20:28:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6617b80fc54e0fb1a26d5c428307ce48ab5be7', '172.105.247.100', 1669645944, '__ci_last_regenerate|i:1669645944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28dd9d4d2c74a474b29f6e471fbc33eeec90d616', '172.105.247.100', 1669645944, '__ci_last_regenerate|i:1669645944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb64376450154edea611b811f41e7c08502ccf6e', '172.105.247.100', 1669645944, '__ci_last_regenerate|i:1669645944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f42fdd09780e9ea8665acded11003c9a5e58bcf', '172.105.247.100', 1669645945, '__ci_last_regenerate|i:1669645945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9362e7237a54b3b233cb2ec65cdcef32d18441b9', '172.105.247.100', 1669645945, '__ci_last_regenerate|i:1669645945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc9760b8fdc252ccd735d36de0df9e097407136', '172.105.247.100', 1669645945, '__ci_last_regenerate|i:1669645945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09e9397cbb04af5ea1eae2885f81efb22564cc8', '172.105.247.100', 1669645945, '__ci_last_regenerate|i:1669645945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ff09bcb268c95a7b9ca8e691ed0b757fce3fd1', '172.105.247.100', 1669645945, '__ci_last_regenerate|i:1669645945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47da7ec232594418c3151c2caae5d2730180113', '172.105.247.100', 1669645945, '__ci_last_regenerate|i:1669645945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63108f76d09c056e86fb1b9fb9ca99f19abd8412', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9975f7748a6df216c4676b26adb544b2f4b3abb5', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a76a58d16aa61de337f40d8183e96646bf79b1d', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba183df1b1a2c0bc162bb70c9ae39d472a8e27c', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda31fba3f2c7a2fbd3ee8bc3e47f86ed4b32342', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('206d507be3d08374e5a4094854da8c759d08fdb1', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b939361d1ad3df5edcb0a753ca7f2dc5e05a9d6d', '172.105.247.100', 1669645946, '__ci_last_regenerate|i:1669645946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff29c6601e0f76d4114708a1d1514cbddbcd9274', '172.105.247.100', 1669645947, '__ci_last_regenerate|i:1669645947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d4de2f5ee44426417fab42079e0e775f49b15a4', '172.105.247.100', 1669645947, '__ci_last_regenerate|i:1669645947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89820093fb3a86f4ca54e5198bc5b8fee87e9066', '172.105.247.100', 1669645947, '__ci_last_regenerate|i:1669645947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e39cfb14a16b7f5446df1348909d58810042e6', '172.105.247.100', 1669645947, '__ci_last_regenerate|i:1669645947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7705e079ac879379c29e78a2c5873ef64684d48f', '172.105.247.100', 1669645947, '__ci_last_regenerate|i:1669645947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84ed2628cfab332411e598aad60da86664cda2c', '172.105.247.100', 1669645948, '__ci_last_regenerate|i:1669645947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779114cc1bdc2279de67e2e6be561c5688e09e2e', '172.105.247.100', 1669645948, '__ci_last_regenerate|i:1669645948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557d82840ebe10c66e531ccf0a85cc9d97b116f9', '172.105.247.100', 1669645948, '__ci_last_regenerate|i:1669645948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc51d29fc6aea4b93d7ab3552aad451292249cf', '172.105.247.100', 1669652537, '__ci_last_regenerate|i:1669652537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d357ac405b3f85279c5668bbfd99809fb88a2f14', '172.105.247.100', 1669652538, '__ci_last_regenerate|i:1669652538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd2022da753d0ad3ad2f5ad85e41399f20864a4', '172.105.247.100', 1669652538, '__ci_last_regenerate|i:1669652538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce322bf9de0870d4e39c61d8e86240a238a97aa', '172.105.247.100', 1669652538, '__ci_last_regenerate|i:1669652538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186a72ead0c52224e3a07b4781580b788993740c', '172.105.247.100', 1669652538, '__ci_last_regenerate|i:1669652538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1fc27523337928456a9d398392215f51c579a11', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf1e931b75f70e6c7b9b13e439e521ef23a394a', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2babaa6a44efefa35051b946731232dea624b075', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96073109abd5451b1eb6360b6b5a68adc18445b7', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc4f27d1e1decad1d9f4c7f61c636fa1152bc22', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd13ef72cf9e8ee3da3704b95c8590269cc8500', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7365d3384fa2796b8691e4c4a49a4565abfda124', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('001d42c82d5fc4397fd98a44bb982b28992e4c02', '172.105.247.100', 1669652539, '__ci_last_regenerate|i:1669652539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed956e686f07f68a77eb08b526893e2b4dbcda2', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854a755f17465a50dc225bc7fd54ae4fb2da422f', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec2f42f1ac4cc980dd2f12bf15ee4d86370fca7', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55d0746953b7aeb340764473b665e0a8dd7154f', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515465f3941099d9a5a2ed1870abe12a10a4a336', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2852e38774a2c0a67f936bf43a753d5eb88fae', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b452ead30ba2583567487291817b4f507ea6803', '172.105.247.100', 1669652540, '__ci_last_regenerate|i:1669652540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b13bd3fd90cb6698d086b9aaf04af20fa94058', '172.105.247.100', 1669652541, '__ci_last_regenerate|i:1669652540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe1d009baa79562f92d56b647cf214de5d80eb5', '172.105.247.100', 1669652541, '__ci_last_regenerate|i:1669652541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e68686986cde4f82fb3e4055be33a24524cec2', '172.105.247.100', 1669652541, '__ci_last_regenerate|i:1669652541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cdb4178c86660323d75d1038ad02355fbbe154b', '172.105.247.100', 1669652541, '__ci_last_regenerate|i:1669652541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c659f7b3f9eb52a005d8e9938f4cf0b1b12bf5', '159.223.109.111', 1669655353, '__ci_last_regenerate|i:1669655353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529092ca7a3169a7a13d8d17c24c938f68960786', '159.223.109.111', 1669655353, '__ci_last_regenerate|i:1669655353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b7b0f2838fa2208bcb8556fb7a5f9cf97c1826', '159.223.109.111', 1669655353, '__ci_last_regenerate|i:1669655353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f779adc1d5d266a249b094c3da54d2d070773ce2', '159.223.109.111', 1669655356, '__ci_last_regenerate|i:1669655356;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1372f875942eaa0a73e264ca24dc6311c9aa876', '159.223.109.111', 1669655356, '__ci_last_regenerate|i:1669655356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26fa7c8c3776ab94e3023e24c997fc274f9f32ce', '159.223.109.111', 1669655356, '__ci_last_regenerate|i:1669655356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5216ba2aa1b005358e48a588cd32daff1ea3ccf7', '159.223.109.111', 1669655356, '__ci_last_regenerate|i:1669655356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff6c352c1810ad32a35d6e66ee1a3e2acb5868b', '159.223.109.111', 1669655356, '__ci_last_regenerate|i:1669655356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72f1221bb2949ed8dd685600281da5b4719a1b8', '159.223.109.111', 1669655356, '__ci_last_regenerate|i:1669655356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcfda642ce24ea3e6ea2708805c785cb9679d40', '159.223.109.111', 1669655357, '__ci_last_regenerate|i:1669655357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78dbd381c17465f296dae17744e3da074e323dfa', '116.204.230.24', 1669656836, '__ci_last_regenerate|i:1669656836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd71d66c94a17f29a1993b568729c93de8ea51f5', '116.204.230.24', 1669656844, '__ci_last_regenerate|i:1669656837;error|s:81:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>admin\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e50f4d3406b28f80d5cdf9b193cf5c91beacb31', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('884cf8e7b06b82ed7580f4c3039e93e956c8d640', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87b0faf5a0cd9f15a7966d4bcebc650d29d4ad5', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddfa487a96029a2467e3bfc542f8f070eb7884f', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e26d74df78178c265c7d70d47c8976c1ba77e47', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4979fc46a5ffccee94142b34c2ac1b173b90ffcf', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd68b03a79458676aa48532964e2b5c57e39c8ff', '172.105.247.100', 1669659140, '__ci_last_regenerate|i:1669659140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fc7ac6d105cc8edc24925d9865411fba8b94b33', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5cb9302f285d65a4312c2b6dc6cd4d32cd0751', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69834f87b27a08fab2bcbc74382ffd6ba8ac12de', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423c8126f6a8c0258cc14c2bcb9e46e86e33156d', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6156d6e0bee58b895ef428424fae3d609550d93', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ccca80179f70122b2ecdb2158f9f7832d3bbb1', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be64f55643282450610cc0ad9a7f663ac3dcb738', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3956317c6ff0381ed113cc3a1224b9cd77bf622', '172.105.247.100', 1669659141, '__ci_last_regenerate|i:1669659141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4c33a4361de8448c7f71aab5ad4c330be51ba2', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba0ca9ccf3254de23eaca3aec6aa91f0b70a5f1', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a1258652ec987529139c6bf4fa54512cfb4295', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9094851a03a59f93a4ed2b1bf25cfcbf75be621d', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b51dd3baed29159fb01f288661569443e67ea7d', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66cfda5d5a8ceea6e10a28a9b63193920311cc5d', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ad92b4c5f52d83d1df396ba4a0028ffc966df9', '172.105.247.100', 1669659143, '__ci_last_regenerate|i:1669659142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d889214553f5baa6e2f36c1f2435de92290cc9e2', '172.105.247.100', 1669659142, '__ci_last_regenerate|i:1669659142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf9e4ab83ea81ad7b21d1d9647ef0713c584f48', '172.105.247.100', 1669659143, '__ci_last_regenerate|i:1669659143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fea59fbbeee70c1dd9721216f578d88c45182eb', '172.105.247.100', 1669665137, '__ci_last_regenerate|i:1669665137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2fd692c752bc6f1bb057c88b63fa9a1c623944', '172.105.247.100', 1669665137, '__ci_last_regenerate|i:1669665137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ea5ab87a31d09b4eaaa0d9f9e1e5ffb2dc8bf1', '172.105.247.100', 1669665138, '__ci_last_regenerate|i:1669665138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dd414d23c2799f624292fbf84ac2c1aa7757e31', '172.105.247.100', 1669665138, '__ci_last_regenerate|i:1669665138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12dc4ea13d1572871a29c05152678c928a7a6670', '172.105.247.100', 1669665138, '__ci_last_regenerate|i:1669665138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e384634688db6fbd095288918508670ce93a9b', '172.105.247.100', 1669665138, '__ci_last_regenerate|i:1669665138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebfe073f073cff62fb52b68372ef49604a0d044d', '172.105.247.100', 1669665139, '__ci_last_regenerate|i:1669665139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ebd0f55c44b5001bf866627dcf19dde7514f30', '172.105.247.100', 1669665139, '__ci_last_regenerate|i:1669665139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ffa3148006e502e7ff5bea9ea2f08824f135cbd', '172.105.247.100', 1669665139, '__ci_last_regenerate|i:1669665139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2bad5f0c14db2ae086bc9a94cd481a1c6fc3a65', '172.105.247.100', 1669665139, '__ci_last_regenerate|i:1669665139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a93d7996b833a985155a72d9845c3b35dfbc71', '172.105.247.100', 1669665139, '__ci_last_regenerate|i:1669665139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4432484df52b4b2bdbd4e3047587cd1c1def4be', '172.105.247.100', 1669665139, '__ci_last_regenerate|i:1669665139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7572b4457b12cfb384999649fd07cb7294267da0', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e16716b4db135f973953c7923f2d0aa6caca41', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c158758e65ee6056551b981bd6a450207164c2', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bad255401972a83d27b5324730dff666f9d5694', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1216d61c78bfcc4296783590c8cb1f862a6a4c20', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9e1cad5ca0e167ce8c620c033424f4ed53ce0f', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf2d0aa65ca2ece857ed2a2c30519f8044398f5', '172.105.247.100', 1669665140, '__ci_last_regenerate|i:1669665140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339c638d8d8db4e459146ed20c06b15917111720', '172.105.247.100', 1669665141, '__ci_last_regenerate|i:1669665141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52350f793a6599b23f162d2a3ca7c9a20f74deb1', '172.105.247.100', 1669665141, '__ci_last_regenerate|i:1669665141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9339be7fe5dc21f75043643a1ed064b5acbe6532', '172.105.247.100', 1669665141, '__ci_last_regenerate|i:1669665141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b9a47b49cd437f2d7b102ca370b01998c736d8', '172.105.247.100', 1669665142, '__ci_last_regenerate|i:1669665142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35675a041fba61bab69997aca470be73d753ec77', '172.105.247.100', 1669665142, '__ci_last_regenerate|i:1669665142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d9d737d5cbc7323a527a68ee3aae256591f294', '172.105.247.100', 1669671747, '__ci_last_regenerate|i:1669671747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47fabfd1ad13a800688c3e13940c1308029a12c3', '172.105.247.100', 1669671748, '__ci_last_regenerate|i:1669671748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b987509362e080d3307977e4791dafafa0c0cc29', '172.105.247.100', 1669671748, '__ci_last_regenerate|i:1669671748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc2687ff89feb72a5bc1dfe6453d3fcb2059a062', '172.105.247.100', 1669671748, '__ci_last_regenerate|i:1669671748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cca40bc9c37b8ee4b8bb7e9651c0acfdeb25e1b', '172.105.247.100', 1669671748, '__ci_last_regenerate|i:1669671748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94d44a44ae0b511e045aed558211843ae97174b', '172.105.247.100', 1669671749, '__ci_last_regenerate|i:1669671749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc49e8d1ae57f2bf3422df04b8570371bd16d087', '172.105.247.100', 1669671749, '__ci_last_regenerate|i:1669671749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff69c65563d60c5843481b954810130cbdd5e1f', '172.105.247.100', 1669671749, '__ci_last_regenerate|i:1669671749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25bd9ae6f7104c7ad1c6a1786cde6a25b4835fe', '172.105.247.100', 1669671749, '__ci_last_regenerate|i:1669671749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99fe3963712a5095484a76d947db406732ef8c8', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a168a3735ac74f93671b11cf659a17106fb9b4', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5583e60d3a9f0108cd9a235e0d096bd82fabdc6', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e2148a6c04b3d6bc725ca792b52839378e75d1', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf9094fb2f7d54ffe47f0a5cbbc2096e2bf0318', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6938263618c3652c0c2ac97b868a1abc7d0c3c9', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0228ecfd16613fc4f6b8e177aa2d1526a98c09fd', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497c547d142e863cbd55165ba104423a5ea1268a', '172.105.247.100', 1669671750, '__ci_last_regenerate|i:1669671750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a68ddc834fcca232de6fc5ce9b9f0a535ceb8d8', '172.105.247.100', 1669671751, '__ci_last_regenerate|i:1669671750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315e710163c6cf50fa66a45fca122743c5637470', '172.105.247.100', 1669671751, '__ci_last_regenerate|i:1669671751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6432d419afcf825bca07a02fae90a525c9090b5', '172.105.247.100', 1669671751, '__ci_last_regenerate|i:1669671751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906992d44bf2b35f44d78e4cb316008e75861b41', '172.105.247.100', 1669671751, '__ci_last_regenerate|i:1669671751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f785046761586a3c7105470ba670d5babc889b', '172.105.247.100', 1669671752, '__ci_last_regenerate|i:1669671752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200960e60a3de6df8843957abff475393cbe54cd', '172.105.247.100', 1669671752, '__ci_last_regenerate|i:1669671752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ecf4b5188ce765f87e3181c323746d74a5a336', '172.105.247.100', 1669671752, '__ci_last_regenerate|i:1669671752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f4d9e42141bb044d0b3c8b2df0de4c27332fdaa', '172.105.247.100', 1669678945, '__ci_last_regenerate|i:1669678945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8d62c1c0de41e4d03bfbe5f4f6255630b428c2', '172.105.247.100', 1669678945, '__ci_last_regenerate|i:1669678945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5692b439a027a4061e51982a90a05d74231cfe22', '172.105.247.100', 1669678945, '__ci_last_regenerate|i:1669678945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee68209f417a90a3a7ffb5967db214fb42ebaee1', '172.105.247.100', 1669678945, '__ci_last_regenerate|i:1669678945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c925aeea4dee3ddb1c3386ca3fa75a359dcde0b7', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd415e308d814245088b99b908668c6fabc1c674', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28da26357866243329615572bc3c4dbc5fbb9bbc', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b74c1217e1f901e511b2cb059a31b58902537d', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a498786ed78fb578511f5fbe783dd5c3dd608e2e', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ccaae84953bfc3c7469257a97d1242a47cc8b62', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c80450b2f1df2a84e4ba3156e9581f189fe24ee', '172.105.247.100', 1669678946, '__ci_last_regenerate|i:1669678946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe33ff247db0c7f82d1149437335556bbcccac6', '172.105.247.100', 1669678947, '__ci_last_regenerate|i:1669678946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069a4378a7b4ba6f73d448ebc3b0f1a3272147f6', '172.105.247.100', 1669678947, '__ci_last_regenerate|i:1669678947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70e47a84c17e0c177899a151c2cefd3ce8e835b', '172.105.247.100', 1669678947, '__ci_last_regenerate|i:1669678947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32fda4cb49e2c126d5deb901b6a44032c26bf1ef', '172.105.247.100', 1669678947, '__ci_last_regenerate|i:1669678947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8b6ac5d0379bbc4996cdfb2b792543653dad12', '172.105.247.100', 1669678947, '__ci_last_regenerate|i:1669678947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5c96075c2c0bffdd5071613f64794b2f0203b5', '172.105.247.100', 1669678947, '__ci_last_regenerate|i:1669678947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb456667b88eec7af58fad0a6ffb8a3083a37c3', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe30cb3c263842f3454ca44948f2d6d83bade3eb', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323a14f5cff50dd3abc9774d3d426d2e05ef4fad', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e82a9317a0a75fe0c2489a999eb3124c0da7463', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435516a08e78959ea1b73585c8f95482d4089a62', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90c4c3d288fe02a07f17877b652f7dd33de9465', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b1be7079e113f36c74078c5225ac11fb5e94d5', '172.105.247.100', 1669678948, '__ci_last_regenerate|i:1669678948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10c98fb713103189ab341133b28882204dc1ab2', '172.105.247.100', 1669685548, '__ci_last_regenerate|i:1669685548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('872309581b1f6ef6b603b4fd497bf8bb5d3df054', '172.105.247.100', 1669685549, '__ci_last_regenerate|i:1669685549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4abd7718990badf96e11bb5f0fa2798bc21445', '172.105.247.100', 1669685549, '__ci_last_regenerate|i:1669685549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00631ce366a1b6ab0f21e114341809ab3dd0953', '172.105.247.100', 1669685550, '__ci_last_regenerate|i:1669685550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedf28581c11bd2636be3577147411a49ab5adef', '172.105.247.100', 1669685550, '__ci_last_regenerate|i:1669685550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc38f567f164bddd22162616ff6df6c9dbc821d9', '172.105.247.100', 1669685550, '__ci_last_regenerate|i:1669685550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69336e2e3e41710b6d43955795b7bc1b8d8ad540', '172.105.247.100', 1669685550, '__ci_last_regenerate|i:1669685550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6554ddb65b866579a05a9e74df09710b9dbe5bdc', '172.105.247.100', 1669685550, '__ci_last_regenerate|i:1669685550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ca2d1e0870da2acbfa2a6ed36b8af9cc0f3f42', '172.105.247.100', 1669685550, '__ci_last_regenerate|i:1669685550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d54a54e2c80c9b585a03252b2856cb8476ecf8f', '172.105.247.100', 1669685551, '__ci_last_regenerate|i:1669685551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa7931ab5b765cbc423e5f2b04c7b29c634c9a54', '172.105.247.100', 1669685551, '__ci_last_regenerate|i:1669685551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794fadbabb3377ea8d8ce3c9ef22bca564a70701', '172.105.247.100', 1669685551, '__ci_last_regenerate|i:1669685551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fdae48f969660b8eabf4c04f0c0a456715e502f', '172.105.247.100', 1669685551, '__ci_last_regenerate|i:1669685551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83fb53f9979300426f72a390e33f4210485a3e6d', '172.105.247.100', 1669685552, '__ci_last_regenerate|i:1669685552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97009fc726d87e951ae01bc96ef59488deb4fc52', '172.105.247.100', 1669685553, '__ci_last_regenerate|i:1669685552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71cc32a713340a537befd67891194492de5bbe2f', '172.105.247.100', 1669685553, '__ci_last_regenerate|i:1669685553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5e02ce1ce90e7887de91cd06b13b03561872bf', '172.105.247.100', 1669685553, '__ci_last_regenerate|i:1669685553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f7c03e669699b19b09eccbaa31bc61ef2cdf312', '172.105.247.100', 1669685554, '__ci_last_regenerate|i:1669685553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e9a1f615309da228e92d986029fa3874933045', '172.105.247.100', 1669685553, '__ci_last_regenerate|i:1669685553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('730090419e35b705387230a1b17d1b07c09508ab', '172.105.247.100', 1669685554, '__ci_last_regenerate|i:1669685554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142df6cad9543f1cd5d1901f1feff048560edb81', '172.105.247.100', 1669685554, '__ci_last_regenerate|i:1669685554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f98f6248b6d1ab90d6bdb0da1d9b00c2f4a2622', '172.105.247.100', 1669685554, '__ci_last_regenerate|i:1669685554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e446bfea416419658eed03d298ea72e093df34', '172.105.247.100', 1669685555, '__ci_last_regenerate|i:1669685555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e36f29add41dd3e4bc241fc6a6e3616c30a3b1', '172.105.247.100', 1669685555, '__ci_last_regenerate|i:1669685555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44cd71659a82b34a4018897fb7ccb458f288e0c1', '172.105.247.100', 1669692144, '__ci_last_regenerate|i:1669692144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c038870896a2b9dd53bfd02e3934c0876c292fe5', '172.105.247.100', 1669692144, '__ci_last_regenerate|i:1669692144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf94d66ec816740968558e9ac19baa1e7ab36d88', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('979eb171901032c15f7b06ae04027455e904102c', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4e37feed2f7781c23228a0568b4a6e9bf70220', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56346d2b05113c51cb0e8c5997bcaa6ca78d2333', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa1c0ac71bab67f47011ca4c19f9f1a8a79c3bb', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5ae27a10cf8b93e8b405f4c6fe2f106d37e513', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa22ccd497cc2ddd37e83296ceab25e527e09076', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119c62555c79ce6cefab25a78b156d69109f6b95', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb25371e6c05d90f388bc40e321b0094c928b3ad', '172.105.247.100', 1669692145, '__ci_last_regenerate|i:1669692145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf43a691bcb90fbc3ee5f6a1af9efcef6c3f4d89', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37a69d9b61c544ff29ba3584e96751a988aeba4', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a12e0f1e0bfe8b36fb063d4796e4c1977c72786', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81b467ef1c9bb15582360d8d19aea6ee6416dcc', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4a2d079a48b9238bee4ff42827920a351d54b7', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371e592ff1781f85aff2d43315287113e51914e2', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd0a294a69ca468eab1d1c958d13c1af739b5b2', '172.105.247.100', 1669692146, '__ci_last_regenerate|i:1669692146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00281c1d53d7b56244590bb5fd96dae7001a7fa', '172.105.247.100', 1669692147, '__ci_last_regenerate|i:1669692147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0f18cb7b00d892dfc7f2bef7b82c50525cb906', '172.105.247.100', 1669692147, '__ci_last_regenerate|i:1669692147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff26645287f492b9b72d1e1b2959e98502f57dd', '172.105.247.100', 1669692147, '__ci_last_regenerate|i:1669692147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68ea0a5086b4abe6cf037c326bfe9071c2c552c', '172.105.247.100', 1669692147, '__ci_last_regenerate|i:1669692147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1129c755e7837ee787739b92a671ee6ef608700e', '172.105.247.100', 1669692147, '__ci_last_regenerate|i:1669692147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb633125a3daa8b101e8452103089dc49d8603e0', '172.105.247.100', 1669692147, '__ci_last_regenerate|i:1669692147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df7e5140676be550ecd3e665462ba8f56634667', '172.105.247.100', 1669698750, '__ci_last_regenerate|i:1669698750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958a8a1c293d27a7fcfa8d712ebea312e86fc8db', '172.105.247.100', 1669698750, '__ci_last_regenerate|i:1669698750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18958bc753bbd3a00efb21317731759a639b4d33', '172.105.247.100', 1669698750, '__ci_last_regenerate|i:1669698750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696d4b3af56ad2bc2b5221b730805c352acc9b95', '172.105.247.100', 1669698750, '__ci_last_regenerate|i:1669698750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3ef04e327f0ea8de6c52f51b53310b4d738c8c', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6257ddcd8ded25c5063321776e568f257b9df5be', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d74c525bca2dd103e488211f66188aad886cc1', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b68605ee1256a1331a1609f57b21cd29f64ef00', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0fe11764ee929d95b9a5022f5a1670b5299e521', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4fa5966282f8147843b7ae4ef69599ba5d239ac', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e625e391843a4c7b693834aa48efaa1cee9ddf', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92005f78e4936199eead14137d021e3cdc7b767f', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b179794900421d1421c1789a9dc2d85d085d7c', '172.105.247.100', 1669698751, '__ci_last_regenerate|i:1669698751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfda9926921f436973ac06c9a6c3577b343adcbf', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bee5cce06f8d860764c5081903f1c3dcf25439b', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b70347ac025cd22c888e2d85107f950e1abcf8b', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78aaa864c7c0bdd14dfbc42c6432dc5e2aa430f8', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c644e7df41b69f33466646ab537298e260f1b19', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0835a76c184c9974df2330a9c9e0fc07839cb1af', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7232049a5dde3384ce44ac84b6d4b2f4bb440734', '172.105.247.100', 1669698752, '__ci_last_regenerate|i:1669698752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40be7e88bef3b70538a61edbaf4a06c7a4194350', '172.105.247.100', 1669698753, '__ci_last_regenerate|i:1669698752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bad744e07303db2cf1e08559820e802b78a979', '172.105.247.100', 1669698753, '__ci_last_regenerate|i:1669698753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc2d50649c38c3aad76d500b695f31c89cddfbe', '172.105.247.100', 1669698753, '__ci_last_regenerate|i:1669698753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c7529eb66ac65beb03bb14559aaf78f8b9eda2', '172.105.247.100', 1669698753, '__ci_last_regenerate|i:1669698753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0098f92b5e7d285e8323976ce463a9227c74db95', '45.120.39.90', 1669702291, '__ci_last_regenerate|i:1669702291;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669642406\";last_ip|s:14:\"37.111.217.253\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669700633;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e064b2980f64d5f195803c156e5bb1b4c0e421', '45.120.39.90', 1669704419, '__ci_last_regenerate|i:1669704419;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669642406\";last_ip|s:14:\"37.111.217.253\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669704413;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2212481ca1bbacd3437e868c04c3a70b555433d2', '45.120.39.90', 1669707144, '__ci_last_regenerate|i:1669707144;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669642406\";last_ip|s:14:\"37.111.217.253\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669704419;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc97d9be97bc56749157aeba91fdba76efddf216', '172.105.247.100', 1669705348, '__ci_last_regenerate|i:1669705348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a34e233f4a7e239b3f9c77d20734b17021b44fe', '172.105.247.100', 1669705348, '__ci_last_regenerate|i:1669705348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('628a48ba554da408e27432091d885dc51027172b', '172.105.247.100', 1669705348, '__ci_last_regenerate|i:1669705348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e19558f5007aed4e0c8a45947e6dc633a39065', '172.105.247.100', 1669705348, '__ci_last_regenerate|i:1669705348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343b1358b15a41010ebe95341a9edfe642d3904b', '172.105.247.100', 1669705349, '__ci_last_regenerate|i:1669705349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ab7eb1dc214684c045ebce2a347316a1fe6108', '172.105.247.100', 1669705349, '__ci_last_regenerate|i:1669705349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5233d465922de304822abcf4e871a3b06ead8c36', '172.105.247.100', 1669705349, '__ci_last_regenerate|i:1669705349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8425c8aa9353eeaaa71cb3b929a8e7c8df8abf4', '172.105.247.100', 1669705349, '__ci_last_regenerate|i:1669705349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f9ef0c4e6f96cc4e3aa3bf6d166d0c75be95d25', '172.105.247.100', 1669705349, '__ci_last_regenerate|i:1669705349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfda4a08c504b69b76be53d40b0287ba11d449e0', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d97b8c171134e01de0af22b4650f97ddb4c7b1b', '172.105.247.100', 1669705349, '__ci_last_regenerate|i:1669705349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88667fed0eae8957b9cffe6883a964d0e9438f63', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d6c6cf67aef2fd1d5c749c6deb0f26b78b5d1c', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44298e2de642a413e7025549033c382d9f68a765', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82fe3e2b74c9c4e0281428748438c4785bdddb11', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b5d7eb79fef98a6442b4538c7f11ba0402b80f', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012eed3a709eefd40f2f2357efecc9b43e5c31a0', '172.105.247.100', 1669705350, '__ci_last_regenerate|i:1669705350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e54c966c6ad2cd3c57c48043e3057151871951', '172.105.247.100', 1669705351, '__ci_last_regenerate|i:1669705350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622245e0e7d637066dd5454c0ef3cf2715d60796', '172.105.247.100', 1669705351, '__ci_last_regenerate|i:1669705351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c5fc45594ca01f3fb2bb7e589615aae75d71e1', '172.105.247.100', 1669705351, '__ci_last_regenerate|i:1669705351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4dcd5da6d80754483c922d113bbedd7c3813760', '172.105.247.100', 1669705351, '__ci_last_regenerate|i:1669705351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb80ef364ccd8c533013971d0a7c1567f238a706', '172.105.247.100', 1669705351, '__ci_last_regenerate|i:1669705351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500af955ce10a0b894f5148e18151b5b74b9861a', '172.105.247.100', 1669705351, '__ci_last_regenerate|i:1669705351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f736fbf4a877c5ce98bdb3414a9592b69bdd098d', '172.105.247.100', 1669705352, '__ci_last_regenerate|i:1669705352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4c4b6e6864c30d6c83aca566d6e056045b7c82', '45.120.39.90', 1669707204, '__ci_last_regenerate|i:1669707144;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669642406\";last_ip|s:14:\"37.111.217.253\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669707203;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10a78fcbcabbcf69b06c15487762cfb2d436cf4', '172.105.247.100', 1669711939, '__ci_last_regenerate|i:1669711939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f13d20ae4a53fd9895cf3d1c4be47837d76a38', '172.105.247.100', 1669711939, '__ci_last_regenerate|i:1669711939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ef0d9d1884a253029ba7cfabc0214a70c56ef2', '172.105.247.100', 1669711939, '__ci_last_regenerate|i:1669711939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474593a5674d81a797db1086a804105a5c4406cf', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63c32f49498f6faae20e83bd8495b4485b8f485', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('658942146f983b2543f9acee28ae9daa5f324434', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ecb612bbdb4d03ebb38dd31ff3c041c2dbfb50', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee66a9a809f1516938b6c89df21d11868e5e9c6', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425d1933f382506a1c5a65f4f2138d4c7256def5', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76d1bdd2baba73ac31417d5bddfadffa392ceb9', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d817fb12c3649bcfd36e17517089387c7d20db9', '172.105.247.100', 1669711940, '__ci_last_regenerate|i:1669711940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19e2067ef67950d7fe521a42fa6a7c0d23ea5212', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ba93d249a5adc8c9cf6362d1fb725231cc8e94', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e49fe6e4754a3686d19c8f6828080dcadd78ff', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5737a10bc278bc74c649c2e0f851933b07ccd83b', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce405042e117d4f32c75a034aba165db02d78d2a', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb0cbc2e0251286a1797bc93d344989e1cef4fd', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34261180750c9db7afac1c853eaea832e28de1ed', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5de1c5c660774692212768512767a5ab9215a3', '172.105.247.100', 1669711941, '__ci_last_regenerate|i:1669711941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c661a9d218715971c75a12c5c6ec55db40bb4eff', '172.105.247.100', 1669711942, '__ci_last_regenerate|i:1669711942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046b04bc47034d4eed06ae93a2c2d9c31829d505', '172.105.247.100', 1669711942, '__ci_last_regenerate|i:1669711942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc38e6eb166a0fc6fe37e33d9b96c414a090b911', '172.105.247.100', 1669711942, '__ci_last_regenerate|i:1669711942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9beaac01a9845017819bb4a36e8c631707d331', '172.105.247.100', 1669711942, '__ci_last_regenerate|i:1669711942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7200abbc62ccca56ec84bcf74ba9d86206690ec', '172.105.247.100', 1669711943, '__ci_last_regenerate|i:1669711942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec808732905c12520616185a017426467ddd51f0', '172.105.247.100', 1669718550, '__ci_last_regenerate|i:1669718550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43bb86162557fa2254d8902c68199a2924093a98', '172.105.247.100', 1669718550, '__ci_last_regenerate|i:1669718550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640a156fab64b2ec8f8599861dcfde16c2f8f853', '172.105.247.100', 1669718550, '__ci_last_regenerate|i:1669718550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd025f44e7a06c304c3bd95e1e0d8035b7ae2fc', '172.105.247.100', 1669718551, '__ci_last_regenerate|i:1669718551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963f32c077eb260b5990f0762b672f214f4dd86e', '172.105.247.100', 1669718551, '__ci_last_regenerate|i:1669718551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('417051b9973cb6977b35268212bc145c4637c57c', '172.105.247.100', 1669718551, '__ci_last_regenerate|i:1669718551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f655da505d1e4a901c6935ab2503426cdd280df', '172.105.247.100', 1669718551, '__ci_last_regenerate|i:1669718551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64023ed1b75bc449641b19a7cdcf231dca2120ff', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9470534b4b01bb9fcf7840e1a42770d3498bfcf3', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d0ba3071986911187e27e78a1c4b82f896cd5e', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c871797e6e57eaafbb0fb7dfe5697f4fc6dd83', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e986740a0429969087578132661f6be1b851a1', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157dbb5edd0a8efcd6ed4597b0efac5d0734e022', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f93d50006fff642a9cdef9b976401244210a6f9a', '172.105.247.100', 1669718552, '__ci_last_regenerate|i:1669718552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5262e0a5f7ea56381f0e3d8ad2daa04173c858', '172.105.247.100', 1669718553, '__ci_last_regenerate|i:1669718553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83284acd7d01a8d20bdbe0de435bf1911fbe7fa', '172.105.247.100', 1669718553, '__ci_last_regenerate|i:1669718553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a318ac9d662fc9639feb8ac31becc50eeee702', '172.105.247.100', 1669718553, '__ci_last_regenerate|i:1669718553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47719e25ab5cb931b0e40b5f4e913ff0bb441eca', '172.105.247.100', 1669718553, '__ci_last_regenerate|i:1669718553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbc5d2961f35da84420a38c1758d133b12f78d6', '172.105.247.100', 1669718553, '__ci_last_regenerate|i:1669718553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b1a330b2d048e63248bdafb1ef43f55a693a84', '172.105.247.100', 1669718553, '__ci_last_regenerate|i:1669718553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae28165bab7f331d2a80cbcb97636f8392aee64', '172.105.247.100', 1669718554, '__ci_last_regenerate|i:1669718554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e02787b3e9b098b8ddd1d06c0885ad997bcb95', '172.105.247.100', 1669718554, '__ci_last_regenerate|i:1669718554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d29b45d84dad06efc872c154509b830e703eebb', '172.105.247.100', 1669718554, '__ci_last_regenerate|i:1669718554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc23f4787daa49ad92f4d81e412815c59d1621a', '172.105.247.100', 1669718555, '__ci_last_regenerate|i:1669718554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab305a0f40933deeb5a6e3c2fae787efe0d8079', '37.111.218.81', 1669724444, '__ci_last_regenerate|i:1669724444;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669700472\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669724154;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e0b0bded972d8155614c766f83267b2fa4fd3c3', '37.111.218.81', 1669732092, '__ci_last_regenerate|i:1669732092;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669700472\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669732066;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939ed82df0ffefa75bb371c6fd50ae85c9e9471e', '172.105.247.100', 1669725746, '__ci_last_regenerate|i:1669725746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b679e0bacf1ee83e8feacf2f23873093691801', '172.105.247.100', 1669725749, '__ci_last_regenerate|i:1669725749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5294d1e15b8131586f396685a0f6ae4fabacffcc', '172.105.247.100', 1669725749, '__ci_last_regenerate|i:1669725749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2373ad4c339d8462bb14a4635a6548c524c5458', '172.105.247.100', 1669725749, '__ci_last_regenerate|i:1669725749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739aa56905b82170596e30022be749f0c1db1fa9', '172.105.247.100', 1669725749, '__ci_last_regenerate|i:1669725749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705032a72bba58ec9af465fd7211b233bd7455d6', '172.105.247.100', 1669725749, '__ci_last_regenerate|i:1669725749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98444baddf52b2c1aef91b94e3596d1a391e311', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39bf99372b1e0436ad2c2a396732593078a25923', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c073926597d924a241308d434d4c706283e400', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e3864cc9df5707596319a64b903f8ae340ad389', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7491edda6f08546d175309fd0d3ca4da777efe', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1d6745278490dc50b01d89e2527dfe258afd1a', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c98be7224d5c256cc70f6eaeab819cff2f5c2d', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa82416074d86ce9110cde7db7a6abdc626fd0f', '172.105.247.100', 1669725750, '__ci_last_regenerate|i:1669725750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18106ff847090fa1e0f838e3f42a052936bcbc30', '172.105.247.100', 1669725751, '__ci_last_regenerate|i:1669725751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a700ff7d9c36fff14a94e825c4e7df429cd1a7', '172.105.247.100', 1669725751, '__ci_last_regenerate|i:1669725751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0264a1dd0f6a26931b5f66c7dc0ea97b7c0c7665', '172.105.247.100', 1669725751, '__ci_last_regenerate|i:1669725751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f6c9cf236017aa5c041da4bbbde6cfa441747e', '172.105.247.100', 1669725751, '__ci_last_regenerate|i:1669725751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52efd90b589538e32dfafd7a14d1d20e2127aca9', '172.105.247.100', 1669725751, '__ci_last_regenerate|i:1669725751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae0dd0b9652e1a769392f987a37452501fc432b4', '172.105.247.100', 1669725751, '__ci_last_regenerate|i:1669725751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c98c75ba3c64c95e066bf6a61837cf41c5a20f89', '172.105.247.100', 1669725752, '__ci_last_regenerate|i:1669725752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5369b9753cadf74e1fee6c2ae7ada091e7c0cb9', '172.105.247.100', 1669725752, '__ci_last_regenerate|i:1669725752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af3a93b533767077562fb9f1f47800980b7ff09', '172.105.247.100', 1669725752, '__ci_last_regenerate|i:1669725752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d708b0f2942890ef7e59e8b503ff12a94284b7', '172.105.247.100', 1669725752, '__ci_last_regenerate|i:1669725752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd389ca9845c5645fcb2dd129261347f0ff57e0', '45.120.39.90', 1669732412, '__ci_last_regenerate|i:1669732412;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669700472\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669732407;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f71b8bb359b753a36f855ecfd335b8898b25bc', '45.120.39.90', 1669732858, '__ci_last_regenerate|i:1669732412;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669700472\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669732504;register_id|s:3:\"264\";cash_in_hand|s:9:\"7890.0000\";register_open_time|s:19:\"2022-11-29 11:42:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f2bc7b755d98cf4aa7ef36e6c69b28ca98cff7', '172.105.247.100', 1669732959, '__ci_last_regenerate|i:1669732959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d99250d784350fb93e083ac4205d9a9cb1dc3c79', '172.105.247.100', 1669732960, '__ci_last_regenerate|i:1669732960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('616c9adc017a2ab74698bca9a1876fbbd952cadc', '172.105.247.100', 1669732960, '__ci_last_regenerate|i:1669732960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3e8a3453bb6ef68d66076beda231cb206c4994', '172.105.247.100', 1669732960, '__ci_last_regenerate|i:1669732960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38aa84a4c8e4bdb142bdd9680405ff526a00d416', '172.105.247.100', 1669732961, '__ci_last_regenerate|i:1669732961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1856113e517ccba575fdb8aa143b844ef2a1f779', '172.105.247.100', 1669732961, '__ci_last_regenerate|i:1669732961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a3963247ccbf12cfe00b871d3fc1d7aac33c63', '172.105.247.100', 1669732961, '__ci_last_regenerate|i:1669732961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b7abc502c5211440f987e5a5d54b7c27ed9a2d', '172.105.247.100', 1669732961, '__ci_last_regenerate|i:1669732961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('facea78104c33fb8a08d9b0242ee25938d6c0fb9', '172.105.247.100', 1669732961, '__ci_last_regenerate|i:1669732961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91bbb5ac47bd78bd6a1d9926a9c2109d0017b03b', '172.105.247.100', 1669732961, '__ci_last_regenerate|i:1669732961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0431cf4c888d1c81b8747e0e40d3de82a438af91', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399d491f606a67481a2c80b812d8138b5a7ec1a2', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa06a557d3aa0f3e551c5821b165820d8301d3c', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d541d2648a0849f9e7ceb0adaa9061a76d8a0b', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f43c97b93ec8aaba64422e7201cc673258788f2', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed30462b97239b03196ed2a89f99b1e7e8a9dd27', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e74d41952ca96fc1b089d7e1a3cefa4e46773e', '172.105.247.100', 1669732962, '__ci_last_regenerate|i:1669732962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02865dd06a6eb6c91acde373818ad8b8749bccc9', '172.105.247.100', 1669732963, '__ci_last_regenerate|i:1669732962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423bbc3b83a3c3a1100c9345fee9c479e2f8f550', '172.105.247.100', 1669732963, '__ci_last_regenerate|i:1669732963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d90e2163c56911599d60be3c23d5b70f5503bf9', '172.105.247.100', 1669732963, '__ci_last_regenerate|i:1669732963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081c441359e7227581031c2aa150332308192d59', '172.105.247.100', 1669732963, '__ci_last_regenerate|i:1669732963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc13a4aef634bb7ed07b866a4196b4b39e3eb85b', '172.105.247.100', 1669732963, '__ci_last_regenerate|i:1669732963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826b8d627576ba554b55f1509c7aa9ccf8524130', '172.105.247.100', 1669732964, '__ci_last_regenerate|i:1669732964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d4066a2d7d86b55fe0af1c55c7876ccc3314ceb', '172.105.247.100', 1669732964, '__ci_last_regenerate|i:1669732964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a2dfc2c7d2d7487c48484d5209cd182ae732cf', '172.105.247.100', 1669740154, '__ci_last_regenerate|i:1669740154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3092187f1fa4a18547c0d4227e052978ef8274', '172.105.247.100', 1669740155, '__ci_last_regenerate|i:1669740155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a5136f2caedea6665e3e7ba271f4ffa49c5417a', '172.105.247.100', 1669740156, '__ci_last_regenerate|i:1669740155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e7b01e45481db8ed2faa3b012486c0452d87c8', '172.105.247.100', 1669740156, '__ci_last_regenerate|i:1669740156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aab0cfdfc85280584302d650bf8b5a98da1973e', '172.105.247.100', 1669740156, '__ci_last_regenerate|i:1669740156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29b1a81fb0fef2c3bb8e4499196c8a8b7dd1d29', '172.105.247.100', 1669740156, '__ci_last_regenerate|i:1669740156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9439a74b04444180df920ca5b83cf685dc971d02', '172.105.247.100', 1669740156, '__ci_last_regenerate|i:1669740156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76eba0956e3be3e6f38e4f21305a1c76515d9ebe', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d0837d751c8baef228a7d8e7d7f543cdcfa0b6', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0e4cb2a9b944483eec4d4ccd4ebb40648cb94e', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b40189de24352d3e8a32232644b5498f416010', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeae9a014f55d7ba5687ac1e17822f36fa0c9dab', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('787903b9af3a1d708369e3e40717b6065f748d96', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1240c6118fb2451d7fcc7643889f8d6fc59a2a70', '172.105.247.100', 1669740157, '__ci_last_regenerate|i:1669740157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e643be93e3eeeb6f263ebe9eb40d409dbab7104', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b7e7fef2751477f42c565aa62381d14221fbdb', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087021c5e03075ba42300431ec25ddf3035ae65d', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d3037e3b63ad0c0ea7c968ee744a12ff89401c', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58304836054e5387bc3a24f74bdd5c1abd3aead1', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be508154481e6d5636c27f7caad957bc4db86a4', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8a7239f6c46cd874754606436772797d5f66f1', '172.105.247.100', 1669740158, '__ci_last_regenerate|i:1669740158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6574f22e20818a85ac75c2aa44e50013d1048bb8', '172.105.247.100', 1669740159, '__ci_last_regenerate|i:1669740159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ff7e3cead3cdf965c3548728f6fa32d9408942', '172.105.247.100', 1669740159, '__ci_last_regenerate|i:1669740159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2f6851af1d7e12bac0f1dfc0382e47c6ea251f', '172.105.247.100', 1669740159, '__ci_last_regenerate|i:1669740159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd4ff95dd84ce2cff2c1e352f4ece20a47e338d', '172.105.247.100', 1669746752, '__ci_last_regenerate|i:1669746752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30a5e9b866d35d08c015ee001de5bc79ed41e5f', '172.105.247.100', 1669746752, '__ci_last_regenerate|i:1669746752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e7b2f327b477f340aa32bb17b291da3d503e4f', '172.105.247.100', 1669746753, '__ci_last_regenerate|i:1669746753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57219eac97f4ba10382e1da3aed98cfb9ab95481', '172.105.247.100', 1669746753, '__ci_last_regenerate|i:1669746753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e3b6e8d84d620d66af462beb139d6974ab15c2', '172.105.247.100', 1669746753, '__ci_last_regenerate|i:1669746753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e39f819cf3ddec32266b316c0d4aee459736cd', '172.105.247.100', 1669746753, '__ci_last_regenerate|i:1669746753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35abc04c1a7cb613e99413682aa7c17c5d1b8e8', '172.105.247.100', 1669746753, '__ci_last_regenerate|i:1669746753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e909ad30a11cfa251b3b242ec157e646ec729f', '172.105.247.100', 1669746753, '__ci_last_regenerate|i:1669746753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d4664b0ad34c4df87cf0e844d014fed3c2c0ed', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ec647fee41dcfa11350b1d1b5a93f511b67b92', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c43afc51ccf3622bf4c4144cbe4f88f35784e74', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5497aaf2a5052ee5f04eaa2e25aca71aad21061', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbbfef582dbbda2f3f2630c2a0f6ef787ad7ad9a', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b193ae4cd4b8807bbcbf4ac267b9dc8eb54c7055', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c61975e227db48db012146e83f3223e459905083', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff3242d365876a9875622624711933ca7d8f5f7', '172.105.247.100', 1669746754, '__ci_last_regenerate|i:1669746754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3098744af4fc14160e71da6a12061fc9952b6544', '172.105.247.100', 1669746755, '__ci_last_regenerate|i:1669746755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c6b65bfc685328706c84d1dd3c498fb70cebcf', '172.105.247.100', 1669746755, '__ci_last_regenerate|i:1669746755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f62b667deaee58986293d05bf2a0548ac06525d', '172.105.247.100', 1669746755, '__ci_last_regenerate|i:1669746755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07858fbf026a217cc72f0c58af674861a0ba8368', '172.105.247.100', 1669746755, '__ci_last_regenerate|i:1669746755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c9338e4fe7125f9709b9ca15791efaf3a75973a', '172.105.247.100', 1669746755, '__ci_last_regenerate|i:1669746755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2735e2668fcb544f02c019c02d166fb207110601', '172.105.247.100', 1669746756, '__ci_last_regenerate|i:1669746755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9420ff265c6d3636436e5e2750dc91b9dc4b7e2', '172.105.247.100', 1669746756, '__ci_last_regenerate|i:1669746756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a83bde3b29b52d452697b4c1686e75dc400f416', '172.105.247.100', 1669746756, '__ci_last_regenerate|i:1669746756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e221592c2b40c144b4447ed26922cb94a91edc', '198.235.24.51', 1669752460, '__ci_last_regenerate|i:1669752460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805620523b3c48560063afee6452156133ff054d', '172.105.247.100', 1669752740, '__ci_last_regenerate|i:1669752740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8768dce9b631c8cc4de7bcd14592f27f736a0f0e', '172.105.247.100', 1669752740, '__ci_last_regenerate|i:1669752740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24bf014a901c8b764dd81e792033529ae0ba8c1b', '172.105.247.100', 1669752742, '__ci_last_regenerate|i:1669752742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd4acdbafec6f4409f72b068dc439f80fc07fd8', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd49b46e87a46ddcd871d84b1e64bede0a941c88', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115461091e1da0df224edffa5848b3c5bc3e45c8', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c536c2f585743f2dfadc2581b26ea8123dd06c1', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e633bef70baf8bfb14b6d7e4c74c4401aba7b058', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903fd1352c2f5fa821a0f5e41c6bd9eba93462ca', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a263fa453a786e6d7ec21c42f2f4a84945adafe4', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15af84cd3f3ec9ac6b3554951bbe4b4749c108f7', '172.105.247.100', 1669752743, '__ci_last_regenerate|i:1669752743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab517c67660ba7275232b2f69008334c9e5381ad', '172.105.247.100', 1669752744, '__ci_last_regenerate|i:1669752744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8621fccbe01813efd2cd11868874ccebbbf9ac4', '172.105.247.100', 1669752744, '__ci_last_regenerate|i:1669752744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ffe65fa1a1e217c7e80af09ab42001f8797e7c', '172.105.247.100', 1669752744, '__ci_last_regenerate|i:1669752744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e5960bb530fd8fc23a5c339dcefbd7667b8618', '172.105.247.100', 1669752744, '__ci_last_regenerate|i:1669752744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ea743357b4b025fb23b755d0ba8b5438aeb9b2', '172.105.247.100', 1669752744, '__ci_last_regenerate|i:1669752744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a222a966f511dedf6be6d2a4e4f14a403eacb1c', '172.105.247.100', 1669752744, '__ci_last_regenerate|i:1669752744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae79ee9c6c7d3da36a16a8fd6b59b58ecc541062', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99803d8a0be86d2a49a0f13d636f73761bfa9852', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0597987a6144b9aae47e8eb3d778752691828299', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9218d7534167cf591b6b42f30c633bb1c5ea7367', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58a99d84225ffb0c46e42c431ad670e88b44146', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07ba53751f9be1de70b2ba103d31a851c566b81', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d8fa974a4f06c8449e5ff5f897306c8d372633', '172.105.247.100', 1669752745, '__ci_last_regenerate|i:1669752745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d08029abf778b643b2313083c633cc320d87fb', '190.107.177.243', 1669756146, '__ci_last_regenerate|i:1669756146;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f367a31182e95dc415d5f15f53c2b234518ab0a', '190.107.177.243', 1669756146, '__ci_last_regenerate|i:1669756146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f42055ccdd22a0d21c63b8ce0b80cb12396dbe6', '190.107.177.243', 1669756146, '__ci_last_regenerate|i:1669756146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ab2a6ffff19fdaf48ca0add270fa42ae97687a', '190.107.177.243', 1669756146, '__ci_last_regenerate|i:1669756146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d945a88142044340cf8ad2bba20beaf4c3c32a', '172.105.247.100', 1669759341, '__ci_last_regenerate|i:1669759341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b92164ca133d108a6e760ef878bd786099778f4', '172.105.247.100', 1669759341, '__ci_last_regenerate|i:1669759341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484ab16db4f1bdbac9ef455a6fe99ce4b70441ed', '172.105.247.100', 1669759341, '__ci_last_regenerate|i:1669759341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6adb77c5f0f5a8be6bfbf8eb4e10258a7e110e38', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4414b57434d2d4c9dbc4ca7d63ca663ef93b0c73', '172.105.247.100', 1669759341, '__ci_last_regenerate|i:1669759341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68dfba464b12fbdf5cb3614d16f8d4669c255c44', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db424d21520147e17a73e844af0d46dc732c128', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc6dc41b713fc5ace8839e6e17ffb9036d7e409', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b479d402a6f800d020272cf7f9ce1162846e6ae3', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddd211fbda92ed6ff8eeaceb17b125dc1424521', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f4313b8a6b2cc06f14e33a875016d6f1a0e509', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf81f332251ff87d57d3421bbbf012f5ff551d8', '172.105.247.100', 1669759342, '__ci_last_regenerate|i:1669759342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1ab75836533feeefdef99453b71805bcf64489', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c1750aa7e626a8e66cedaea59dc7d26c203190e', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1fe964d8c7dc00938500965958d1033f4d22f6', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c3bbb3e2fa477f5978d376df347bfd2d524dc6', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b90ec950863f77c4068836e896b7eb3303dde5b', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be73401f286601da8355dd32ffaf216f84335d8', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da91d529089a96121d6a63b43d6b51fe190e9aa1', '172.105.247.100', 1669759343, '__ci_last_regenerate|i:1669759343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da417f0fcadfe78c97e061df6ec912e6fc33a36f', '172.105.247.100', 1669759344, '__ci_last_regenerate|i:1669759344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc3c3b815bb050ab6f529794e5263280da59f09', '172.105.247.100', 1669759344, '__ci_last_regenerate|i:1669759344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243e544bf52e1394d42549454ddb16bd36dfabba', '172.105.247.100', 1669759344, '__ci_last_regenerate|i:1669759344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f80b02753d5821d00a8441c5c5f76a85944a3e', '172.105.247.100', 1669759344, '__ci_last_regenerate|i:1669759344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bfac0dc3f3c950a1bf678dadd0b48b1cb91358a', '172.105.247.100', 1669759344, '__ci_last_regenerate|i:1669759344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d32976809e2343f0c9b129a73745722d1f7afc3f', '172.105.247.100', 1669765338, '__ci_last_regenerate|i:1669765338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c818e494045f47321ac8ce5a82fc4cea21ef4e7c', '172.105.247.100', 1669765339, '__ci_last_regenerate|i:1669765339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cef7d433e3f39848d10d7718713d4c242746404', '172.105.247.100', 1669765339, '__ci_last_regenerate|i:1669765339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6dcec5020007ce94090f6db7670a6d821d025aa', '172.105.247.100', 1669765339, '__ci_last_regenerate|i:1669765339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c33e7fe1a0a48f29ba98373d7fd139c087d2e5a', '172.105.247.100', 1669765339, '__ci_last_regenerate|i:1669765339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e6342eccbfa4363c7870585ca9042d36fa76ce', '172.105.247.100', 1669765339, '__ci_last_regenerate|i:1669765339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2386734f5004acb9383eaeb14a954628475c4717', '172.105.247.100', 1669765339, '__ci_last_regenerate|i:1669765339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5207a0c03ab84427ec6a17317d3c3138813682', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2afc9c128ec38cc574431957035bcef3922a984', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef370c57297ae2413512d2e22796bf48c27d8f78', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae070facaf53143e79526859eb4532ecbb2387fa', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac7ff2bd6821d2cdff215522aef7e3556e70437', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3fb54deac1cf21e256a7bab8eb084b3ef4d52d', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e336a34ba10149c3fac5d897d10a84272ad2e8', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00643c84c235772efbb56ddb2a6a68fb6c3116fb', '172.105.247.100', 1669765340, '__ci_last_regenerate|i:1669765340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231a2cbccff7561bb6cb0912401d8e47badb2f21', '172.105.247.100', 1669765341, '__ci_last_regenerate|i:1669765341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f434e199e4e1d1590d4519100928a97e93e634a2', '172.105.247.100', 1669765341, '__ci_last_regenerate|i:1669765341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7c911cd661340bd65f06b7fff5abc69cfa4269', '172.105.247.100', 1669765341, '__ci_last_regenerate|i:1669765341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d14973f39703ce4c7fb7628f72b5d652b432ae91', '172.105.247.100', 1669765341, '__ci_last_regenerate|i:1669765341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2252d9cd29625b61025d5074b57c76bdaa1331f4', '172.105.247.100', 1669765341, '__ci_last_regenerate|i:1669765341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa041083a37c8a9dc24b28bdb828a071b58f7fe3', '172.105.247.100', 1669765341, '__ci_last_regenerate|i:1669765341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5380ee34babbced9d9ae652df1f7df75cca4c7d0', '172.105.247.100', 1669765342, '__ci_last_regenerate|i:1669765341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092e6c4ace67bdbf27dca51f513251986c1beaa4', '172.105.247.100', 1669765342, '__ci_last_regenerate|i:1669765342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3a3766c6185bcba5e7854dfd383c477d0ac9b8', '172.105.247.100', 1669765342, '__ci_last_regenerate|i:1669765342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656915560db94bd890aa614e8169e24aaa643c94', '147.78.47.249', 1669768802, '__ci_last_regenerate|i:1669768802;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebdec069b569c173cfa070778a3608ac09959d4', '147.78.47.249', 1669768804, '__ci_last_regenerate|i:1669768804;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc304a1f69a278bf3c345be9ab94dd150a991bf0', '147.78.47.249', 1669768806, '__ci_last_regenerate|i:1669768806;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecfb5bcfb9faa58b2e4a20c4b406bdc87eb1f46b', '172.105.247.100', 1669771334, '__ci_last_regenerate|i:1669771334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1cbafe4521117938f7defe884604098baf04342', '172.105.247.100', 1669771337, '__ci_last_regenerate|i:1669771337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfef0736bfa7100b246b2fced0b75e6c85a2023', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8170f8e1e7949f58cee47f5d708ffb0047f422fe', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bfcfa941ea2eea86388564f89bc581afdc30ee5', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d474138c54566bdbd6241bbb58819465eb5ff0', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ddd469d2edc5470353b0dc4ac9d01ccd28e9cf', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0126706fbe2bb12971bf9c7627a7d70551e6d721', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dfa6ba00109bd651efff449cbe99d8f358f69db', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54aa929a11b697562528bfc94edcdb11e471401', '172.105.247.100', 1669771338, '__ci_last_regenerate|i:1669771338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca9786bd7b56750e53e6adbf5ffe1310cdcfc7f', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c8fc0a4da7ebfecb36363bd083f6169763e6d0', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8843e894cfde61d8f1f68ddecf6a33b3329bd6', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edff7e0229c85cf9e08cc22b07a2fd36c8c49d37', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1e9fd4e4c4fcc0f6d7fe0ff4502a59a879e851', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d19149d04f6a7e9cb149e788ca81aa688b2da6', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e326c14d9027d085d727f94a2751571ffc518718', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8fa632085928d52cbdd98a0f633a424d9194a74', '172.105.247.100', 1669771339, '__ci_last_regenerate|i:1669771339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b6658743f663c6cf4739807b0b3f8bf5986831', '172.105.247.100', 1669771340, '__ci_last_regenerate|i:1669771340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf024ab278496788d0eaf98896d2d263efff1ea', '172.105.247.100', 1669771340, '__ci_last_regenerate|i:1669771340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a0e92c72a45ed232e31557b4a8b7fa92e8ac36', '172.105.247.100', 1669771340, '__ci_last_regenerate|i:1669771340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f673be776c030ab9aebbd3b6bc1a4d11a7cff69', '172.105.247.100', 1669771340, '__ci_last_regenerate|i:1669771340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19cb76aac9d157d6070300d52df290f2a5f007cb', '172.105.247.100', 1669771340, '__ci_last_regenerate|i:1669771340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b690eb9754c232f02c38299055a5e2704d14420d', '172.105.247.100', 1669771341, '__ci_last_regenerate|i:1669771341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b994f1a593e69873cb3e6d7d9bdd9d20303dbbde', '172.105.247.100', 1669777942, '__ci_last_regenerate|i:1669777942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9832a07b21e7c3fbc15a9186e75d9440041bcfee', '172.105.247.100', 1669777943, '__ci_last_regenerate|i:1669777943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a2266b1f490ee1213f51bbb22bfb009b31c2d3', '172.105.247.100', 1669777943, '__ci_last_regenerate|i:1669777943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48167ef34ef2a4a7801edb3317553d6142c9d90e', '172.105.247.100', 1669777944, '__ci_last_regenerate|i:1669777944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2143fe819e0aa44a6203c7e0649142c3fc869792', '172.105.247.100', 1669777944, '__ci_last_regenerate|i:1669777944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a867366baa648f7e96e6f7e040ffc6c9ed00d282', '172.105.247.100', 1669777944, '__ci_last_regenerate|i:1669777944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d64ed3f488667bb9a93bfd245d2a606de9a8a339', '172.105.247.100', 1669777944, '__ci_last_regenerate|i:1669777944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc0de077007adeea209e50a13a9b3578be5a626', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6907385b6f8778ff87f1a70fe1b84ddf62b2c1', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12441ebfeabbc6eb496b6409beccc7fde0925f4', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d30a69a293b40354335b9d8388c1c7d65bb3af', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c0472bb98bfe2e0bc1b341286c83ec64b95821', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c62e5bc6c2f126b3757393a7833115b3b8b4056', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cf84297f9c0241510f3d14ddd62807daa45a2d7', '172.105.247.100', 1669777945, '__ci_last_regenerate|i:1669777945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8398678ace6d26f9c32054f58a33955285d0845e', '172.105.247.100', 1669777946, '__ci_last_regenerate|i:1669777946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c0c8d98d808bb9812fc9a38692d0dc9fcffc6ab', '172.105.247.100', 1669777946, '__ci_last_regenerate|i:1669777946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acee9c4ce35ca8e9b3569af881afaeb3fb6997a7', '172.105.247.100', 1669777946, '__ci_last_regenerate|i:1669777946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1922af5178c77cf648d8335232b3b928526e1b8e', '172.105.247.100', 1669777946, '__ci_last_regenerate|i:1669777946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bed5f3b82b24b5db5068f9710d3e76e80024bb9e', '172.105.247.100', 1669777946, '__ci_last_regenerate|i:1669777946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22f574000866c669eb2e874c4675782ff024d519', '172.105.247.100', 1669777947, '__ci_last_regenerate|i:1669777946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d050ead739734a23a4c83cf142a7f809c08139', '172.105.247.100', 1669777947, '__ci_last_regenerate|i:1669777947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3840157f8c32fc9c25b5f708ca7e7c3d0dfa6453', '172.105.247.100', 1669777947, '__ci_last_regenerate|i:1669777947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c48a36c91d7c17cda31afc316dfe41eeab7d05d', '172.105.247.100', 1669777947, '__ci_last_regenerate|i:1669777947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e226d46857c959b2fb495852993368d07577840', '172.105.247.100', 1669777948, '__ci_last_regenerate|i:1669777948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('580f53eac20f43bfbb49495f17935ceb7f86b9eb', '45.120.39.90', 1669783664, '__ci_last_regenerate|i:1669783664;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669723568\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8e1ea1757405019ebd44b5d00115f7e3c63e8a', '45.120.39.90', 1669784342, '__ci_last_regenerate|i:1669784342;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669723568\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669783752;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b45c1984b35e94726115825f7b8dda90e5012f9', '172.105.247.100', 1669783938, '__ci_last_regenerate|i:1669783938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f6e692780736574cc71c5f4a2e999d62e0a60e', '172.105.247.100', 1669783939, '__ci_last_regenerate|i:1669783939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1ff00671c7558f0c42bd43ba6ea5b2ceb9ce0e', '172.105.247.100', 1669783939, '__ci_last_regenerate|i:1669783939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58867658c40e1381bde3691d6dcb56bb1a63e2fa', '172.105.247.100', 1669783939, '__ci_last_regenerate|i:1669783939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebef89ec1c0073e290765a0ee98df8301f8ef6dc', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d373ac40e0ad85504357e33265eed9139aecd008', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fdfb93aadbb72b44bed12c96138e07c30466b50', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f657d5f23966384348b98499bf99fb97ae6ec6', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a0fd61d6606ae5db761b9de005426662e6cf3cd', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28379196d1791432ad61072dcbdb4b0fbac72656', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4979d2a919bd570dec30ce6c89e7e558e549f7', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba69d8f2c29ca35d092dee7af9f235bc635126db', '172.105.247.100', 1669783940, '__ci_last_regenerate|i:1669783940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80f03642a0ac78622ac824e9c8339b1dcee0cd7', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319fe47f50996fe31df5b1a7e5c373f075c1a31d', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050ae8af28986b15201fa76dd1133e99e86d089c', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d61793e7a0a7817454f1ca9e8c0cc4795bf161b1', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17320fb38d5d0ef64a104e9e89721649bda944b', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c27e47d20ae391fc9c69a443077249637e991d', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431360826b6efdd181cac66f7877ff2cba8ff50d', '172.105.247.100', 1669783941, '__ci_last_regenerate|i:1669783941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7860173a1266c0e793e7da289b54fbbaa8cee2e7', '172.105.247.100', 1669783942, '__ci_last_regenerate|i:1669783942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4abbb13bdee62a1eb19653a3a7186238f2665147', '172.105.247.100', 1669783942, '__ci_last_regenerate|i:1669783942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc6ca18f3e6f80167153ca123873b2dd30f2fd5', '172.105.247.100', 1669783942, '__ci_last_regenerate|i:1669783942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741744ee257252ba1c29bdeb42fbee107dd6fcd9', '172.105.247.100', 1669783942, '__ci_last_regenerate|i:1669783942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86417c353d7fbbc2ec1f8baf479d891a277891ed', '172.105.247.100', 1669783943, '__ci_last_regenerate|i:1669783942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('636c1aaf36ea058d94b4fe2b7763c487887053cf', '45.120.39.90', 1669786980, '__ci_last_regenerate|i:1669786980;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669723568\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669784357;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bee5761e2fcfbcba3f50bf33e1ea96931fd172f', '147.78.47.249', 1669785284, '__ci_last_regenerate|i:1669785284;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2949a3d4e93ceabdf527513a95b5d550b46f5d2', '147.78.47.249', 1669785286, '__ci_last_regenerate|i:1669785286;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f1e57ee38a2f346962134da5a14951a8a46b81', '147.78.47.249', 1669785288, '__ci_last_regenerate|i:1669785288;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fa574134afa297cb20f62676cb1fecdac51ec6', '45.120.39.90', 1669793821, '__ci_last_regenerate|i:1669793821;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669723568\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669787031;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461a71ada27ab924039822efa0bdff36cae41590', '172.105.247.100', 1669790557, '__ci_last_regenerate|i:1669790557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ea71fc0b20f14da528e5dc4b99451a05a83aff', '172.105.247.100', 1669790557, '__ci_last_regenerate|i:1669790557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99d6834843fb5f39ed75f5807c1851f817424c19', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b795671873f072f6cd19d035627035589bf365e9', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e26c86945787352ce4248aba05f4c0b81ddbb5e', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13cfd345503aa160d8f6970318576584ec439510', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbad354032c9500d54cb0e3101238a247a5a79b', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8179cc5e2bd8b88b7264ca4cbc3105972ae22c', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67d5580bc39c4581f6e32f0e6e76f462e1e1ebe', '172.105.247.100', 1669790558, '__ci_last_regenerate|i:1669790558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('915751455757980a20cddcbbb3f560fbb3bc074f', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def4e80f0c16c52c676ba30c02405db95a86257b', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b2df76a80e4808db69f059de0820afcb0df55c5', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca857a722632f0960eed78410ce72ac6e3576c5', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2beceb0702d18817dafb0acab9e982560445f6ad', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9957dcaeb1b62f432841d3414a1e349420f9c75a', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc559624a05f65a77e07d78d55842c01a2f55eb4', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8c1fd358b12afac76701ca88b2d89faa4194f0', '172.105.247.100', 1669790559, '__ci_last_regenerate|i:1669790559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67ff7c1b747747d6eab37858c2993d34fb80a4e', '172.105.247.100', 1669790560, '__ci_last_regenerate|i:1669790560;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcbb0cd1ad948cd8ead23b999156316d43ca2df7', '172.105.247.100', 1669790560, '__ci_last_regenerate|i:1669790560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124e8878b738a5ce7c8242b2a28a7aaaab5ce562', '172.105.247.100', 1669790560, '__ci_last_regenerate|i:1669790560;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28b8493ccfe5127d2930972eba7e72fea155cf9', '172.105.247.100', 1669790560, '__ci_last_regenerate|i:1669790560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d18a0f7862cc1c00c49e396ce1b80736cb276b7', '172.105.247.100', 1669790560, '__ci_last_regenerate|i:1669790560;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d4cd0e6fd788bc6bb73eedaa60875ca8881a9bc', '172.105.247.100', 1669790561, '__ci_last_regenerate|i:1669790561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6351450ab8092ee7ff4e56c0212eecb398b13b18', '172.105.247.100', 1669790561, '__ci_last_regenerate|i:1669790561;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb1e9e100b94acaaed4d1dfac13ac98d815e975', '198.235.24.147', 1669792073, '__ci_last_regenerate|i:1669792073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef8bba90e4b79fe07f2768e5bcc3f7e1e02cf0b', '205.210.31.13', 1669793107, '__ci_last_regenerate|i:1669793107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb105e558d2ae8caf0c3233f382287de6c5ec59', '45.120.39.90', 1669794618, '__ci_last_regenerate|i:1669794618;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669723568\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669793821;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b26f393af3c9c38850e35db59dfad65d2a2584', '45.120.39.90', 1669794621, '__ci_last_regenerate|i:1669794618;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669723568\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669794621;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97a13a7ca2dfa7fe553bdf60513f184ff9257b6', '172.105.247.100', 1669797153, '__ci_last_regenerate|i:1669797153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5787116247834999e747a4ad269411f4f0df9ad', '172.105.247.100', 1669797153, '__ci_last_regenerate|i:1669797153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49731cc6aba63521756a3aa3bfd36052fa5b1932', '172.105.247.100', 1669797154, '__ci_last_regenerate|i:1669797154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708f79e3c1166270c1695dd4792650f501abc213', '172.105.247.100', 1669797154, '__ci_last_regenerate|i:1669797154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e54e9ac808e63badfc186ad60cabd8c8add667f', '172.105.247.100', 1669797154, '__ci_last_regenerate|i:1669797154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ef539c7ad152e33850316f936ebc7634bc98072', '172.105.247.100', 1669797154, '__ci_last_regenerate|i:1669797154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3caa82eb28381b5621571ebbb083661b53d590', '172.105.247.100', 1669797155, '__ci_last_regenerate|i:1669797155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc83a8e8add142f542e3599214d23a710f44be2', '172.105.247.100', 1669797155, '__ci_last_regenerate|i:1669797155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90bfd65c314baa7758befd5c34772f0cdc85cd5e', '172.105.247.100', 1669797155, '__ci_last_regenerate|i:1669797155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54af8719cb0e91e89eb7240ace809f194832183b', '172.105.247.100', 1669797155, '__ci_last_regenerate|i:1669797155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76606247701840e3805b0ed078f13549cbf5ea2', '172.105.247.100', 1669797155, '__ci_last_regenerate|i:1669797155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4191a2ac88eb39683439a30598aadaf09875d38f', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac8b6faf1fed1a97b232f841d483e9715f4d0ba', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed43cd8bfb66f67b4b8efd79452035f9eb4518d7', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3101154d98677cca2ba497b960faf5baa4954c', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfde99a681bfc4bc7b30e7211e375136e59a128f', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91404a61935abea8db5372070d0abcf3034cccb', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41144ba1b23fbff3e59ab80a1235dbc5bbbe0ab6', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5593ffd6a3b459706a7a09dd01ab265f8c1a4f35', '172.105.247.100', 1669797156, '__ci_last_regenerate|i:1669797156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896f1ce6c94c45e48ae6887689f1695b273fd431', '172.105.247.100', 1669797157, '__ci_last_regenerate|i:1669797157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e51565de58bbe1ebcb1b3ad1e5f1cfe9efc1ac', '172.105.247.100', 1669797157, '__ci_last_regenerate|i:1669797157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16cd55aa72df000e03b985fd9a9a538bff43de0', '172.105.247.100', 1669797157, '__ci_last_regenerate|i:1669797157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc43e3debdab932c25ab9e1a2f827fbd1b800ac3', '172.105.247.100', 1669797158, '__ci_last_regenerate|i:1669797158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5b65ae0d8c173dbff1b23ac267d7cc89cecf4e', '172.105.247.100', 1669797158, '__ci_last_regenerate|i:1669797158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d648bdcd74fde3e2262d88ac18fb5b64b3bec66', '172.105.247.100', 1669803746, '__ci_last_regenerate|i:1669803746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7650a7515aeffa3bfdf329a2db1d078f06364b26', '172.105.247.100', 1669803746, '__ci_last_regenerate|i:1669803746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42dc7bc04961adad758f1fee4f2aadfc8ae0fee3', '172.105.247.100', 1669803747, '__ci_last_regenerate|i:1669803747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7caebd540f295f6b7fea8cdf33b5165b4dd9a05c', '172.105.247.100', 1669803747, '__ci_last_regenerate|i:1669803747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bddc9c7adea9bf57c53ff98c8b1f1ac2763eeaca', '172.105.247.100', 1669803747, '__ci_last_regenerate|i:1669803747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f96405de417c79511384162fe25fc25b4a369545', '172.105.247.100', 1669803747, '__ci_last_regenerate|i:1669803747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016c1a8348e4b6fa4d2fb7aeba6aeff6f0c2b5ba', '172.105.247.100', 1669803748, '__ci_last_regenerate|i:1669803748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306f937ba6cbf2dc72c2d786c1b788e1eecff10b', '172.105.247.100', 1669803748, '__ci_last_regenerate|i:1669803748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4adf1f9231186de42ccef54d9f969dd528329dd1', '172.105.247.100', 1669803748, '__ci_last_regenerate|i:1669803748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbcbf5f2a7a3a76a1d296966c2d43b7a11d5987c', '172.105.247.100', 1669803748, '__ci_last_regenerate|i:1669803748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a944c81792bc462e582bcbab060df658bdd6d03', '172.105.247.100', 1669803748, '__ci_last_regenerate|i:1669803748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbf80c3916544147468775b9454833456794f2fe', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc79aaf8bc969f23cbcd0da3f639094e231f1214', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ff278410400fa378822d021c47dd894bfdf4ec', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea0ced7ee6baebca8dc40c8c57591867be850f7', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23e124867a59daec42f028e74b933982da4c75f', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90d8c54dbc29c2ed062c28b9a61629f013bf69a', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a7af246a60082ef6f0e0d6e42f77a3739761b0', '172.105.247.100', 1669803749, '__ci_last_regenerate|i:1669803749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd3fed863ac09ac45e8319038279cf7adf17000', '172.105.247.100', 1669803750, '__ci_last_regenerate|i:1669803750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eba770d532c7288a7f0b539f649fa41ff144fc1', '172.105.247.100', 1669803750, '__ci_last_regenerate|i:1669803750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316e8cd00a0886a5a730d5fba76d21e83c9b58fc', '172.105.247.100', 1669803750, '__ci_last_regenerate|i:1669803750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc6357a08847772f9eaea49b8068fce3c1af2240', '172.105.247.100', 1669803751, '__ci_last_regenerate|i:1669803750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0c0a090d1a7c684deb2040bccc07ece40695cd', '172.105.247.100', 1669803751, '__ci_last_regenerate|i:1669803751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc090dd45bb8d0c695e6bd0597d034dbbe2edef', '172.105.247.100', 1669803751, '__ci_last_regenerate|i:1669803751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85bafae730a872fe8b6475e3dc2d73b582ecea8', '45.120.39.90', 1669805176, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6a146bb4846e14e877b2766ade9ed3218ed580', '45.120.39.90', 1669806949, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669806949;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669783358\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669806945;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6816ff963b3fb02a9db7abe60961aa0c6e04b147', '45.120.39.90', 1669807029, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669806949;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669783358\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669807001;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a599dd55ba3a5660149b626dcb07afa706601aad', '172.105.247.100', 1669810345, '__ci_last_regenerate|i:1669810345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb13c82b829e1385f19fa5cb91548e5b8f14d8e', '172.105.247.100', 1669810345, '__ci_last_regenerate|i:1669810345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f813ccacc036dee9eed912952e407d6f2d03d295', '172.105.247.100', 1669810345, '__ci_last_regenerate|i:1669810345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71035aa33b229f4da2c25236fae48856f3be4096', '172.105.247.100', 1669810345, '__ci_last_regenerate|i:1669810345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65430312507462f43fed734c99a27ab36db8f7a0', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae044b9dbbba50c209f49c02254435005a5216d', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807c20919be6bda75b7b4f16f822a7cdecfb2c8b', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67571b185ad401f43630b95bc93d3a2993468645', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbebb46777aacff6b9f58bf42a07141d984778f5', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a6aec79ff8bdd96c5120ec36b87538ce14a5f7', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f309ec7302d35ba0c27d781f419f6dc9c971708', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3305b68e16a497ba894a9336c17b65f03c69c2', '172.105.247.100', 1669810346, '__ci_last_regenerate|i:1669810346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2f7f1545b48393a5e76cdd7a21ac91b5311510', '172.105.247.100', 1669810347, '__ci_last_regenerate|i:1669810347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d3d953301d91ea45668bb8130ee635612f82e8', '172.105.247.100', 1669810347, '__ci_last_regenerate|i:1669810347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e32fa026b545d33d6698e2627313b9b99aa3c3', '172.105.247.100', 1669810347, '__ci_last_regenerate|i:1669810347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46409671969154ff0f7b523a73079ced3e1d1fd', '172.105.247.100', 1669810347, '__ci_last_regenerate|i:1669810347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a55ead6cbcb827fa08d4613452f847bef0e6033', '172.105.247.100', 1669810347, '__ci_last_regenerate|i:1669810347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273e89ccde9a11aeb444e30c6f51eb09a4c06876', '172.105.247.100', 1669810347, '__ci_last_regenerate|i:1669810347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420e8899f946878b68414bb799bc26beb2eb5e66', '172.105.247.100', 1669810348, '__ci_last_regenerate|i:1669810347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e1c104c8d35bd773cc5449a4759e513d1d25eb', '172.105.247.100', 1669810348, '__ci_last_regenerate|i:1669810347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917dcdc3bf0880f3a43170799a4565e559d4c226', '172.105.247.100', 1669810348, '__ci_last_regenerate|i:1669810348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af8f0fe3be144fea7fadb13374703189e5d3f8f', '172.105.247.100', 1669810348, '__ci_last_regenerate|i:1669810348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea9eaecf21c039f8558aea194654b17cbb0dc6c', '172.105.247.100', 1669810348, '__ci_last_regenerate|i:1669810348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa266ef965aefa539515f728074cc7a7c0ae1655', '172.105.247.100', 1669810348, '__ci_last_regenerate|i:1669810348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a484784d2fa9346e2f325144a82558161cfa6a85', '116.204.230.19', 1669813277, '__ci_last_regenerate|i:1669813277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9cbb307e717d9f51b6128c0ba115b04485093e', '172.105.247.100', 1669816345, '__ci_last_regenerate|i:1669816345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7873a9ebb0d81df31acf4005e0fb29da207c905', '172.105.247.100', 1669816346, '__ci_last_regenerate|i:1669816346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50ac3206c52a9ad536208bc4043adcc1b40a85d', '172.105.247.100', 1669816346, '__ci_last_regenerate|i:1669816346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1daf741aab5ce524e310b34089016b82220b6dac', '172.105.247.100', 1669816346, '__ci_last_regenerate|i:1669816346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df517328c1d6f9573b7d2b52d619a800fcac881e', '172.105.247.100', 1669816346, '__ci_last_regenerate|i:1669816346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d54ceb78b0a18039f5735a0ac562e4e175bd99', '172.105.247.100', 1669816347, '__ci_last_regenerate|i:1669816347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04841ebeebee9809957ba99e944e51bb5f167164', '172.105.247.100', 1669816347, '__ci_last_regenerate|i:1669816347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab78d10d1f5db6afc34cf8ff3a56434c5b342ec8', '172.105.247.100', 1669816347, '__ci_last_regenerate|i:1669816347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cdcb534569f06d33ba8b6d9625db12e7e77ec14', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c84b8364f9e75d9278194404cefc56dc849aa70', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8855e10d4420750009a1b5977ffba91c861d2481', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c4e9984f04bc25d15960c77c0b3e79ca3f02e0', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838a8f1e00e002829cb3274ea21d1988d4841aae', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07442fcb4ae7c8689ab9d3f4d20668daf72a3bfe', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4578bbc1fd271771066ff8f2b9ae054eae83fda', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07947384d2c38f579a16722c3389869c17feb9cd', '172.105.247.100', 1669816348, '__ci_last_regenerate|i:1669816348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826be337c1e12525202f855f8985dcadf17ed950', '172.105.247.100', 1669816349, '__ci_last_regenerate|i:1669816349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b5531d4f1163d4e13b600b05678187ec3b099e', '172.105.247.100', 1669816349, '__ci_last_regenerate|i:1669816349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0721865d54d4c1c4e037331749db5660bbba3f4b', '172.105.247.100', 1669816349, '__ci_last_regenerate|i:1669816349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d735832eb19b79cda3ce85e3e52289a6624d9a', '172.105.247.100', 1669816349, '__ci_last_regenerate|i:1669816349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa445a0113aef1e788e96546d02aa1e93e93eaf0', '172.105.247.100', 1669816350, '__ci_last_regenerate|i:1669816350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7549e63ddaff73f8746c857cf5ae6850ddef7f', '172.105.247.100', 1669816350, '__ci_last_regenerate|i:1669816350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08efed7ab2d68df3cea085b6b8475274d253fcfb', '172.105.247.100', 1669816350, '__ci_last_regenerate|i:1669816350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c42803a6580ce43cdc7d89a00fb76df96e6208', '172.105.247.100', 1669816350, '__ci_last_regenerate|i:1669816350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe652436493ef713dbc86887ddb04d26b15b7f2', '45.120.39.90', 1669817496, '__ci_last_regenerate|i:1669817496;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669805225\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669817464;register_id|s:3:\"265\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2022-11-30 10:48:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f4669bc269c9541a54cfad9c86e1bca70dee8a', '45.120.39.90', 1669817509, '__ci_last_regenerate|i:1669817496;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669805225\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669817508;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947beee2710fed201a0ceb34f390ad49efa7fb7b', '172.105.247.100', 1669822346, '__ci_last_regenerate|i:1669822346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31bc96153e029da3fb94e5ff51ac44e45fe61d32', '172.105.247.100', 1669822346, '__ci_last_regenerate|i:1669822346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d6d6e7a8f305183a15a4f4d15f4c0360177344', '172.105.247.100', 1669822346, '__ci_last_regenerate|i:1669822346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc1418f20062bc3159e30ab2aa47556164db1c9', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f758c6a52f62d63e0ad587a2f1fad2ce06b4431c', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f650f312dcc4326d9b0151908ad5132fc967a1', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a030449df01960a7b111d3bd15a7a2756641886', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae7e1a867e4d31b016ab269220ff0f1e0a3720e', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9378126f72a8f932426c5e650185885ae21d6847', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da17ff25fa181ebf8b8078d4f396f3c2abe9dbb3', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299e6c9db7d227f334763a331a21f435b5749c9c', '172.105.247.100', 1669822347, '__ci_last_regenerate|i:1669822347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ad88a263fddb19b08c03454b68c5bcdc37ab8b3', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8327911599d87237abc45947525f3104184f8d', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d03f071fd3e1391d92e359cecda8164d239e110', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1c168595138edaab10c181a59e5198e2b5e3a40', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ef5045ca6f647754e955994c852cc704a82198', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ade249cc8a16d6ffd2e288428e2a2271f857f8a', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0e90b0e9931e5c9bd806040d696d4106773d9e', '172.105.247.100', 1669822348, '__ci_last_regenerate|i:1669822348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018ab171a1341f6678e8ea88159e107e312f09a7', '172.105.247.100', 1669822349, '__ci_last_regenerate|i:1669822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27d76aa986832ab9459f21fcada972a5d95caa7', '172.105.247.100', 1669822349, '__ci_last_regenerate|i:1669822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32b0b7a3fd4d894433bb65cb23cdc3569c459ce', '172.105.247.100', 1669822349, '__ci_last_regenerate|i:1669822349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbcd3207483c45899d1c4590f5e3f1d2d055848', '172.105.247.100', 1669822349, '__ci_last_regenerate|i:1669822349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a842b74559abb9267e48a4fa058aa96f28fb508e', '172.105.247.100', 1669822349, '__ci_last_regenerate|i:1669822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03137198dd6b16155f2fcb4f9e1eafc669a6adf6', '172.105.247.100', 1669822349, '__ci_last_regenerate|i:1669822349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fab426fbc4d84ec3a84c2ce7b2bac33d7712f15', '35.233.62.116', 1669822932, '__ci_last_regenerate|i:1669822932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f8868eed97f3f70be9228166a2d79fea589ceb', '34.77.127.183', 1669822933, '__ci_last_regenerate|i:1669822933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c92e56efab64fa9c51ca3caad9577a1e0ab3deb', '172.105.247.100', 1669828339, '__ci_last_regenerate|i:1669828339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cd960acdfdacc53b55a2a65fa9bd10ffba0021', '172.105.247.100', 1669828339, '__ci_last_regenerate|i:1669828339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fa5ca1100095b277258623a026f636cc89d94f', '172.105.247.100', 1669828339, '__ci_last_regenerate|i:1669828339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818fb09fee25e3e6a5c5adaa5166602b7c4008b9', '172.105.247.100', 1669828339, '__ci_last_regenerate|i:1669828339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483c10c4e405d5c5f036355a70248e357369da7d', '172.105.247.100', 1669828339, '__ci_last_regenerate|i:1669828339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d948dfbd7ffb4a45e2564f251272b076858b0c06', '172.105.247.100', 1669828339, '__ci_last_regenerate|i:1669828339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bda1499a319ce018f050c14e53ccf570496d816', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5613424e33bfea9341f5ca7d4cf1aaa3f3d144fe', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88d11d0c0e2a61e496b4286890b3b0ce51381b22', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d0b4e00e5be3b7598c132bfec21ff43ee6155e', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f75e23d1ceb7ee9fa1d21b54dddb9fb1e30a7f', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950228728bab2384fa0e43eba4453181743e0785', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9417d47a1cb048845b5186d8dbb06fb07a6f10', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c099a6f135063b44e66f635cc8783a4f4882a25', '172.105.247.100', 1669828340, '__ci_last_regenerate|i:1669828340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f27b2ceaa0a4fc9f7a440819751dab760aea27a', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9901cb28751dbb4f0452bb5b09e2e36585d80487', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7173c666e4be230d0165c6a619a0af33ae9b919', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4796ccf275be397e73ab8fd6e9ecbfffe321d0b5', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772024c2acf58a670cbc1645544c8d956500f627', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9783b6a39219693732d47ee61180f33e66fb1933', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb0b5b41a069261eb63bbb8b5efdb0787a8496d', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984042c22c384bd956a31ae74d20a0c0d9816769', '172.105.247.100', 1669828341, '__ci_last_regenerate|i:1669828341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b11f9297a6ee02b2477d6f4552bda7205026e32', '172.105.247.100', 1669828342, '__ci_last_regenerate|i:1669828342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bff3d8ab28927b9e81fc9ce008eaff6889ed89b', '172.105.247.100', 1669828342, '__ci_last_regenerate|i:1669828342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec0adb4b6cadb047ed4d30dcadf07601d89413f3', '172.105.247.100', 1669834337, '__ci_last_regenerate|i:1669834337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f2064a6afb9f00b784f6d2f0039d5e70caf8f3', '172.105.247.100', 1669834338, '__ci_last_regenerate|i:1669834338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c5598c8545c1527240e4bb3d288d76f07bbc32', '172.105.247.100', 1669834338, '__ci_last_regenerate|i:1669834338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713b88b8b7c80d1a996ecc20f70830c10d1eae04', '172.105.247.100', 1669834338, '__ci_last_regenerate|i:1669834338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ea2a8e71e3b582eb61e7f0da8442ea16c610cf', '172.105.247.100', 1669834339, '__ci_last_regenerate|i:1669834339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b287f8e2f858488b2554f155890f51466438640', '172.105.247.100', 1669834339, '__ci_last_regenerate|i:1669834339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78590aebbd1484886354bc8aa81a17a12086055b', '172.105.247.100', 1669834339, '__ci_last_regenerate|i:1669834339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a226c39e50bd03a85e765e0cbde706636c5bc37', '172.105.247.100', 1669834339, '__ci_last_regenerate|i:1669834339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3207106f6a0b5922d409a306beb0bfeb14f675', '172.105.247.100', 1669834340, '__ci_last_regenerate|i:1669834340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1691aac99e01e0c917235eb33121312fd7ff6193', '172.105.247.100', 1669834340, '__ci_last_regenerate|i:1669834340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552452224c98ff043fb15c37a0822f6bebbfb1e9', '172.105.247.100', 1669834340, '__ci_last_regenerate|i:1669834340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02d4d86c96bfe98e2cedfc00a700b3086cad3a7', '172.105.247.100', 1669834340, '__ci_last_regenerate|i:1669834340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b491040a7cdb6f6e9384185d32b1abb1bae85c', '172.105.247.100', 1669834340, '__ci_last_regenerate|i:1669834340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc81ec718aa2ce3f933283f644caf7ed54ae9fac', '172.105.247.100', 1669834341, '__ci_last_regenerate|i:1669834340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b4379be98b01867bae66191330140adce13a2c', '172.105.247.100', 1669834341, '__ci_last_regenerate|i:1669834341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc9834cdc92260a90088dcba2bb7f4477da7250', '172.105.247.100', 1669834341, '__ci_last_regenerate|i:1669834341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c905d64d5c4b8a267f8912b6fcb7f7197319637', '172.105.247.100', 1669834341, '__ci_last_regenerate|i:1669834341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47708eb24460098f1f2b67cb70ee7b0fc870cbab', '172.105.247.100', 1669834341, '__ci_last_regenerate|i:1669834341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c068bc3e96686465710dcc05547ef0bf937545ba', '172.105.247.100', 1669834342, '__ci_last_regenerate|i:1669834342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb539fef8a652bd7f23a9767783f8109d83a00b8', '172.105.247.100', 1669834342, '__ci_last_regenerate|i:1669834342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd8fbc3f2bb40fdda8f928a563da3a0a6d527a76', '172.105.247.100', 1669834342, '__ci_last_regenerate|i:1669834342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccdd7ce6ec30b9b14beb7683782f8f460b5cefa9', '172.105.247.100', 1669834342, '__ci_last_regenerate|i:1669834342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f659ec4abe94bc0c0e92a0e4682772ea2197a73c', '172.105.247.100', 1669834343, '__ci_last_regenerate|i:1669834343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c195fd772cdbedb2e5834b01a7800f2ce6f9de3b', '172.105.247.100', 1669834343, '__ci_last_regenerate|i:1669834343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2755cb8ec2d3a6365350e696d8321205b7c170', '172.105.247.100', 1669840333, '__ci_last_regenerate|i:1669840333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47c662c10c0e7b4b90c5007dd05884e398a3f97', '172.105.247.100', 1669840334, '__ci_last_regenerate|i:1669840334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4316bb86c4d641397aa6b00e11a1c323996b9055', '172.105.247.100', 1669840334, '__ci_last_regenerate|i:1669840334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a397195b10a0c62f817837686d07109db9a4baf4', '172.105.247.100', 1669840334, '__ci_last_regenerate|i:1669840334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3720fee36600178eb34221cb7465d4c31dacf289', '172.105.247.100', 1669840335, '__ci_last_regenerate|i:1669840335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa962da2367965d671b3afb2486134d34660090', '172.105.247.100', 1669840335, '__ci_last_regenerate|i:1669840335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('820001c3b7ed5ff709a1f8970f397c58a3d73d97', '172.105.247.100', 1669840335, '__ci_last_regenerate|i:1669840335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba1ebca4d00e80c427ac820fa0a2b064b728cda', '172.105.247.100', 1669840335, '__ci_last_regenerate|i:1669840335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd9bafc53b39e2def25b12feea17058c11e11e0', '172.105.247.100', 1669840336, '__ci_last_regenerate|i:1669840336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d82d3c7e14019eb342f4dee416a19c3e8c03d4', '172.105.247.100', 1669840336, '__ci_last_regenerate|i:1669840336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc548f75b03c6e63f283a59a7516b1a9fca40fa', '172.105.247.100', 1669840336, '__ci_last_regenerate|i:1669840336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5071c919f9aa7da7e96ce0907030011b16c98dba', '172.105.247.100', 1669840337, '__ci_last_regenerate|i:1669840336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a380f0f80aeb79cbf6c49bd61c61dc59ce63bdf6', '172.105.247.100', 1669840337, '__ci_last_regenerate|i:1669840337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f85c18399754247bfad7e01146a14451aa5c1a', '172.105.247.100', 1669840337, '__ci_last_regenerate|i:1669840337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2ea10fe3594db32a84c6b0a43e446ee9d5925b', '172.105.247.100', 1669840337, '__ci_last_regenerate|i:1669840337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55bb2babfd7a57e38c8e39a959f2730b68630c58', '172.105.247.100', 1669840338, '__ci_last_regenerate|i:1669840338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d65ce84d2a81c6e188afc867634972027333fbd', '172.105.247.100', 1669840338, '__ci_last_regenerate|i:1669840338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b344ed5ebdaf2e420515d3a23f7055cd340c0f', '172.105.247.100', 1669840338, '__ci_last_regenerate|i:1669840338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c05185dec574dd5b161561b1ea95732ad3831a', '172.105.247.100', 1669840338, '__ci_last_regenerate|i:1669840338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa2d7dc67fd6f4e274f07d18f6486d799194c91', '172.105.247.100', 1669840339, '__ci_last_regenerate|i:1669840339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b3956682e0524662c7f279cfce4b91fea0a261', '172.105.247.100', 1669840339, '__ci_last_regenerate|i:1669840339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e991c97cb1e67a4761d50f13341f3d04f9f277e', '172.105.247.100', 1669840339, '__ci_last_regenerate|i:1669840339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8396f53c2c1a672a59e5463c21baf792dd414c7f', '172.105.247.100', 1669840340, '__ci_last_regenerate|i:1669840340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1a34047a65f1f21e33d3cf65752ac9fba23d83', '172.105.247.100', 1669840340, '__ci_last_regenerate|i:1669840340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e6686beac3dd2dc84d009316a062325fc45652', '172.105.247.100', 1669845741, '__ci_last_regenerate|i:1669845741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4b909dae58b5e5c2aff32f7b7246439ac3a655', '172.105.247.100', 1669845741, '__ci_last_regenerate|i:1669845741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3aa1d9b782fb85af1cc7f04ca591821792428c', '172.105.247.100', 1669845741, '__ci_last_regenerate|i:1669845741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27cf183a93a20be98113aaeb2214a860b4ccb16b', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0504a4e231cddd98240886cfffb8631b3037ef1', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0045d896583c2739b5bf583ca4ea7624c59a2011', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a330851df2c9f86e500bdd201d9186625c706d98', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9a6d4cff2b16ad1e47ea56d15480c266b32eb0f', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de41e8e963e554f5bcb9da7f905e1f9a1f42ccba', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ee5ccb9fc6e866db7c988761090e9d1a4a8b5d', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1fbbbcdfaa7ea39b7b9a4e687edc1ad0b13c63', '172.105.247.100', 1669845742, '__ci_last_regenerate|i:1669845742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66d5234cedcc684076ede8cc542f346f2583440', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f1aece7e78bf1fb6d351dcebf33f1c5a4c46f23', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edbdb8ddfd7b968a8d83ebd73d004fd8d77bbfa4', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b4518bd8a4e2db2ada2136a08b4208db0a7c1b', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07fb62534348afaf0060b32c2405dfabfc49ed18', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aec2af05f6bb8279e25c962fe9a4673ef915507', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30130075ed9fcdff2f707fb08ebd1ba66a5b09f6', '172.105.247.100', 1669845743, '__ci_last_regenerate|i:1669845743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c125d1907e10c7646aff72e6c620b8a7da6106a0', '172.105.247.100', 1669845744, '__ci_last_regenerate|i:1669845744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901c990ab09758299f0df3de8ac46e052b1e0596', '172.105.247.100', 1669845744, '__ci_last_regenerate|i:1669845744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35509a871613ea92ac2145f3676d426da907eb7b', '172.105.247.100', 1669845744, '__ci_last_regenerate|i:1669845744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a9ceb95ffdd516b06695df34f49e5be87459b0', '172.105.247.100', 1669845744, '__ci_last_regenerate|i:1669845744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa20a9fb690fa40faa7aa1ce3bb6f21bb4e0c78', '172.105.247.100', 1669845744, '__ci_last_regenerate|i:1669845744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d078395639460b603ed7b78856a60c5a7f7e0a79', '172.105.247.100', 1669845744, '__ci_last_regenerate|i:1669845744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ed06c25133d7e2734b15992ab0c93cd6ad72da', '172.105.247.100', 1669851747, '__ci_last_regenerate|i:1669851747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd754161220e6c90e4b141fc11c6847dd5501d4b', '172.105.247.100', 1669851747, '__ci_last_regenerate|i:1669851747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f952c50899a757127c6a1537189266e928406f9f', '172.105.247.100', 1669851747, '__ci_last_regenerate|i:1669851747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a34bddff0cf31e63e1921a0c49dc9dd3ed17b2a', '172.105.247.100', 1669851747, '__ci_last_regenerate|i:1669851747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6884eb68e99860f95980b5151f63aa0b2f6cf8c', '172.105.247.100', 1669851747, '__ci_last_regenerate|i:1669851747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbf024845eca14fdafa6d2400bd0180e9727c1c5', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d96d108e7c69cd6ac08fd01bee10b5465672ac1a', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6cebef1a381275f100598d34bebd0be83fc8d4', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55dd8eb3266d991367ac29be1c6588acd4bf38dc', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7528f96b2b54f786bbbf164d58dcb2124a5597b8', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a649031a5399cea5eb0566e79a9d31d12fdbacb', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c415838e83dcc8d4f48b6b66a63f2461c87380ab', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279d3b7957725477668dfca2ccee5acb64b0811a', '172.105.247.100', 1669851748, '__ci_last_regenerate|i:1669851748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39ebd17cbf979f6f90ff404f4a35426d0f615eb', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a40ed9a68646233b1c50e2f811fcede1b2043e', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df77c0b426bb8368eafd645b313376ef12f42b0a', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088dd394deaf2399fdb97a5f6f67b910026a5b4c', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a531ad11dad32ab6b03e147b2405eeebf0c02565', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239701148ecf250d6a356b8b9d441ffad48df9fa', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b993764f47bbceda9c4ae45580076ed9ade6b33', '172.105.247.100', 1669851749, '__ci_last_regenerate|i:1669851749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfe92030547328f936bd411cec2a57b600feb43', '172.105.247.100', 1669851750, '__ci_last_regenerate|i:1669851750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1c7402b45253164deab356977241e26e8b2b76', '172.105.247.100', 1669851750, '__ci_last_regenerate|i:1669851750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe59f0a6bffe56d147c1f4f9319041cbd4949c9', '172.105.247.100', 1669851750, '__ci_last_regenerate|i:1669851750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04f708db4dca36fab9bded1a27cbb21f685be13', '172.105.247.100', 1669851750, '__ci_last_regenerate|i:1669851750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2cd1cd825874e8c3a2e27bdd37b84ec3af9883', '172.105.247.100', 1669857737, '__ci_last_regenerate|i:1669857737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da1b6f13935b2ffe278bc10e69164216cd51b19', '172.105.247.100', 1669857737, '__ci_last_regenerate|i:1669857737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec9ac7b59422d52db198c5c3a87ab0bd544efb1', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f47b967b6dcb314eb18e66a8e5d7cbd0a82195', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a600f9889daca845c84cf53f26e9a0bdd2d030', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e19f312befbc75e6259253cdbb27d7dc2144824', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df9bf2c008e9ecff8e0ba45b2fe48b0b6530800', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71e4df9530aeab824bccfae6da384d004097b87', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93236109d46fda7e27a6c09cf3f5ead34fdcb689', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2d963d168a97322b55ea7fe2bf89dcbcc22859', '172.105.247.100', 1669857738, '__ci_last_regenerate|i:1669857738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5295c84358b7d36cf2e4648655b7e330da27e796', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8752023a9644e0f7506ca9fd2f864314aa96a3a8', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4217fb8e07698d54ceab6d6bdd59515f3f7571b6', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef566350440ea547b951558535f220a92d51aaa', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa9a037739df0c9e7e3f66ebcdcac7b0a4699029', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09631a820a228e991d45038c75a875f1e7eda92b', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598ef9901d77cdfcb8de5fc2d263c19d93bc3f48', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dd0263c0e26684c3cdff5710898d8d8ce7acd6', '172.105.247.100', 1669857739, '__ci_last_regenerate|i:1669857739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7eefe986009cb7c99fb12b5737ca16488ffdf7', '172.105.247.100', 1669857740, '__ci_last_regenerate|i:1669857740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4e283d83dec9774c70f734fc36558889ed29bb', '172.105.247.100', 1669857740, '__ci_last_regenerate|i:1669857740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d837371b71fb82af8f112db99cbf6e74b3ac41', '172.105.247.100', 1669857740, '__ci_last_regenerate|i:1669857740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add03b0f801a13dea3a32c14ae46ed46d3931f0e', '172.105.247.100', 1669857740, '__ci_last_regenerate|i:1669857740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784eb022382fd6259b9b662ee6722f6f46da87c5', '172.105.247.100', 1669857740, '__ci_last_regenerate|i:1669857740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee31f83027be9b598a2c8736c543aed9f5596ae9', '172.105.247.100', 1669857740, '__ci_last_regenerate|i:1669857740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6b7c574aaae588927ae4dd751882e314d2330c', '172.105.247.100', 1669864351, '__ci_last_regenerate|i:1669864351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f394ba6a61b919c4b5bf5ce8509a0af3cc433cd1', '172.105.247.100', 1669864353, '__ci_last_regenerate|i:1669864353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da79d71cb6ed2072c8720710e8da3d3fe58a1488', '172.105.247.100', 1669864354, '__ci_last_regenerate|i:1669864354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f3a491ca7ce13245013f56ad39761b8200a1867', '172.105.247.100', 1669864354, '__ci_last_regenerate|i:1669864354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf5041d3563ee9002ac13dc0c67905142b41aa6', '172.105.247.100', 1669864355, '__ci_last_regenerate|i:1669864354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1117a21ba4a7e05b752b60c325c42ca01deaa7e', '172.105.247.100', 1669864355, '__ci_last_regenerate|i:1669864355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c16401bfd9085a245df8927fad6a2ac13208e8', '172.105.247.100', 1669864355, '__ci_last_regenerate|i:1669864355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0b8958c4b64311ae32c305afcf5dd926197949', '172.105.247.100', 1669864355, '__ci_last_regenerate|i:1669864355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2d8dbd1e4c0a334475b818ccfb57e66533959a', '172.105.247.100', 1669864355, '__ci_last_regenerate|i:1669864355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff4effe020cb21ed018d08cd3ef56f84c251ec0', '172.105.247.100', 1669864355, '__ci_last_regenerate|i:1669864355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d9c24591790ed4ecd3484ead967dcd17674427', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22e4cf7a1894d399552b7102efe9dc79ea8b897', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7322a3d5a092ed200913f268c64b7b69f3b8ed94', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157bc4ee9317b0d2f58a960802bffb44ac2ad1d3', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60446748df7969790270a34089eeb5877aceba38', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1832a1148021d33a3e155451587b8108553d4cb1', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42cee46df23c481150c8da9b29e0acd96f323243', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f49d97180740e2755260448e787d21ab119bfe', '172.105.247.100', 1669864356, '__ci_last_regenerate|i:1669864356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831b470d89c2dfb046ed585acf15aee588616b09', '172.105.247.100', 1669864357, '__ci_last_regenerate|i:1669864357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe1798f693b00a72499c83700e2f92f11b01575', '172.105.247.100', 1669864357, '__ci_last_regenerate|i:1669864357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa7e64720c467d1e26262ce9c57d2c5e1735f86', '172.105.247.100', 1669864357, '__ci_last_regenerate|i:1669864357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81c112a613862ded891a8122c6e6365a1bab421', '172.105.247.100', 1669864357, '__ci_last_regenerate|i:1669864357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7891a92214f00fb24c76023f0927bc88ec0d5024', '172.105.247.100', 1669864358, '__ci_last_regenerate|i:1669864358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8839aec45d13686def217ef59d2f82e24d1257df', '172.105.247.100', 1669864358, '__ci_last_regenerate|i:1669864358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210e610c1124e95594cae6e45000079306a25420', '45.120.39.90', 1669869903, '__ci_last_regenerate|i:1669869903;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669817203\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669869896;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ccdf78650f2d1492d72108f17a1afcd0ca567e', '45.120.39.90', 1669870262, '__ci_last_regenerate|i:1669869903;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669817203\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669870262;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe79d15299075039e5e7de07b5b2c52c531f8e0', '172.105.247.100', 1669871541, '__ci_last_regenerate|i:1669871541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694ae8d176dd4ea40231f832bc629501ae949796', '172.105.247.100', 1669871541, '__ci_last_regenerate|i:1669871541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2680f3d940f538214c9c6f8b31c8078c184bdfd3', '172.105.247.100', 1669871541, '__ci_last_regenerate|i:1669871541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54af7ce0a623b7cce03689633c104e662d4ee24b', '172.105.247.100', 1669871541, '__ci_last_regenerate|i:1669871541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('359dec3c58de65ccb3956d4cb8ddbf34dfff0869', '172.105.247.100', 1669871542, '__ci_last_regenerate|i:1669871542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727a394c4b0962111d1b480989678cf91461e45a', '172.105.247.100', 1669871542, '__ci_last_regenerate|i:1669871542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c03c92b7f3e83d4c377449d81e2c07848ab7ef1', '172.105.247.100', 1669871542, '__ci_last_regenerate|i:1669871542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fddf6e575fd5c86bd72b22725c89ddb743a6ebf', '172.105.247.100', 1669871542, '__ci_last_regenerate|i:1669871542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4000f9169c64ab7c7971d70c59ebe57831a063c4', '172.105.247.100', 1669871543, '__ci_last_regenerate|i:1669871543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c134ded49e72c790a5b2fd037eac0802593cdada', '172.105.247.100', 1669871543, '__ci_last_regenerate|i:1669871543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7e7c090af4873628213ab0f868b8ff3377535b', '172.105.247.100', 1669871543, '__ci_last_regenerate|i:1669871543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f706ce5b7bd773d9fddfafce5b8b77f6e941d9', '172.105.247.100', 1669871543, '__ci_last_regenerate|i:1669871543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f10be2ff51332e89c5afbe0f8f5adcee128d85a', '172.105.247.100', 1669871544, '__ci_last_regenerate|i:1669871544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf49613ec1ecf3175c3a3dad956706636ddc6929', '172.105.247.100', 1669871544, '__ci_last_regenerate|i:1669871544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e951489509a6a781e0b33e4bf6c89bd3e0bc6c57', '172.105.247.100', 1669871544, '__ci_last_regenerate|i:1669871544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a4b945fb7cca77ef8eef359b58330aa60579f5', '172.105.247.100', 1669871544, '__ci_last_regenerate|i:1669871544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1622cae18f3e44244569e77a8511e2edceacb84', '172.105.247.100', 1669871544, '__ci_last_regenerate|i:1669871544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a31fd17df4adf01ec9ed9c1806c9148cf345b9', '172.105.247.100', 1669871544, '__ci_last_regenerate|i:1669871544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f04da0756186428c564e3c6d2e4dff3a7bab940', '172.105.247.100', 1669871545, '__ci_last_regenerate|i:1669871545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ca7527b7b38ef9468bd431ade0be4ffa8188ae', '172.105.247.100', 1669871545, '__ci_last_regenerate|i:1669871545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15405ea95016a5272928eed866ff9146cfb32cd', '172.105.247.100', 1669871545, '__ci_last_regenerate|i:1669871545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257a9447b315102562e2f9609fbcda0da32ffca0', '172.105.247.100', 1669871546, '__ci_last_regenerate|i:1669871545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1583ffd9c4d720d2d2e7637d71dd0e2b4f2b7932', '172.105.247.100', 1669871546, '__ci_last_regenerate|i:1669871546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0332cc55d24d4f84167f28c6856eba7bf3436b34', '172.105.247.100', 1669871546, '__ci_last_regenerate|i:1669871546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5639e31766c9b7cf2996a7b3ba9e3b520158a0af', '172.105.247.100', 1669878148, '__ci_last_regenerate|i:1669878148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3f6d2f3a547ddf69e30b6bd1916934954a88ffa', '172.105.247.100', 1669878148, '__ci_last_regenerate|i:1669878148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f08cabaf0125b20c95609ec8d07647861a0762c', '172.105.247.100', 1669878148, '__ci_last_regenerate|i:1669878148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6974cc76e0b38dc4e317d838ae810c45f8be569', '172.105.247.100', 1669878148, '__ci_last_regenerate|i:1669878148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d8bebd986d9d009bccae7368addcd083a4df30', '172.105.247.100', 1669878148, '__ci_last_regenerate|i:1669878148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f86b477d9a71f66e81405b3ee68d9df4c0a2da6', '172.105.247.100', 1669878148, '__ci_last_regenerate|i:1669878148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6df5a6dc7f4c01f50d080d201a9861a54275af', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb901d0be0e0d0dbe6a961a497cb3e3cd016e8b9', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de41888e333bd89e90d7af67c3673b4595b9f84a', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab23242573005652bd336058f3f945d8d333985d', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84dd441230d5c21d2e86c213aa6677ae5c4a4e0a', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6742d6afd0c494cda9e90b07ab0ae4ba188835', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e4137c14616be4b417a7be20cbc9e57b3575cc7', '172.105.247.100', 1669878149, '__ci_last_regenerate|i:1669878149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566fa7c319abf7955d464122b147b6ae6dcd97f0', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f571bb7becbeacf997ff54c936e700a98ab2b329', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334d0a48fb80603cd7f97f1b086914c65e241c5c', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea8fd9a1550050db5304bac7a7192c79fc31aca', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72783065473c90ca57703044ab86fedf6c07652a', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea44ebb1cae6db45e8e09593d4f097bdbcb730e1', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9134d3a5ca758ec2952b8800f949d3f79084547c', '172.105.247.100', 1669878150, '__ci_last_regenerate|i:1669878150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97612a2096a486b50454790741ececcdbef94e4d', '172.105.247.100', 1669878151, '__ci_last_regenerate|i:1669878151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d372c8c8799f2b263db5fe6e3254e8587d676d', '172.105.247.100', 1669878151, '__ci_last_regenerate|i:1669878151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b225d077cca80ae61f772bc9875c5faa4a5c8626', '172.105.247.100', 1669878151, '__ci_last_regenerate|i:1669878151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37d8c821c7bbbd60c408fd7c0ebabfc1de2e7035', '172.105.247.100', 1669878151, '__ci_last_regenerate|i:1669878151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4abcb768d6ebe1061e81af7bb9bf0caadfa611', '172.105.247.100', 1669884743, '__ci_last_regenerate|i:1669884743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d023a4a01175c6b477bde97957cae2c4f5b3166', '172.105.247.100', 1669884743, '__ci_last_regenerate|i:1669884743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e229080762e37dec1a75e0edd01268a572a81f', '172.105.247.100', 1669884743, '__ci_last_regenerate|i:1669884743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c95049ecd32017e64e92d9f7304dc54981129ebc', '172.105.247.100', 1669884743, '__ci_last_regenerate|i:1669884743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2878a1a5ef86a09d4db7f4636917360ad7af174e', '172.105.247.100', 1669884744, '__ci_last_regenerate|i:1669884744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4a10620adfac99883840e8a6f01fbc95caa980', '172.105.247.100', 1669884744, '__ci_last_regenerate|i:1669884744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b720aadfc82c60f886423acf9623913d5547fa7', '172.105.247.100', 1669884744, '__ci_last_regenerate|i:1669884744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c30f83892899bbfdf74e6cc3b0ded1d113f974', '172.105.247.100', 1669884744, '__ci_last_regenerate|i:1669884744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02dd17c819abfcb6941c1b247f6301ea7290fbd3', '172.105.247.100', 1669884745, '__ci_last_regenerate|i:1669884745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62356be040757339473f0d69ad3276b0416f5759', '172.105.247.100', 1669884745, '__ci_last_regenerate|i:1669884745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb6d859c8ca804fc3813e5809210bf5730ad17f', '172.105.247.100', 1669884745, '__ci_last_regenerate|i:1669884745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('225b2b40f1840fa2db3ac4ce7b6bdcff2955816f', '172.105.247.100', 1669884746, '__ci_last_regenerate|i:1669884746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844ba34dd2a63749397bef87d50eb9aa84ec11ff', '172.105.247.100', 1669884746, '__ci_last_regenerate|i:1669884746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d85cb1a6a644ac7d7c5d7baed8e4532a4c193bb', '172.105.247.100', 1669884746, '__ci_last_regenerate|i:1669884746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d0e891e397a2709a390d91041f7be34dde1239', '172.105.247.100', 1669884747, '__ci_last_regenerate|i:1669884747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0a4febcb00a653dd264bba0231536b2518cbf8', '172.105.247.100', 1669884747, '__ci_last_regenerate|i:1669884747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5230f28353caf5cd76d3926a553dd74ab5ea7332', '172.105.247.100', 1669884747, '__ci_last_regenerate|i:1669884747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9d7c3403a41972461fe9e7cce445629e8993c0', '172.105.247.100', 1669884747, '__ci_last_regenerate|i:1669884747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6fca5bdac523b2576dad9eebe1de1a374d30729', '172.105.247.100', 1669884748, '__ci_last_regenerate|i:1669884748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f1cff9b78b6ce708e219aed61f57973fd01d0e', '172.105.247.100', 1669884748, '__ci_last_regenerate|i:1669884748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461dc6c78a128ad17210b27a8e877eb58fef6be1', '172.105.247.100', 1669884748, '__ci_last_regenerate|i:1669884748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40c6f08edc2b3b6fc5eca12e52bcab5e45e8d70', '172.105.247.100', 1669884749, '__ci_last_regenerate|i:1669884748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d156d372e5977c2bbf1561bc2024fea282a16414', '172.105.247.100', 1669884749, '__ci_last_regenerate|i:1669884749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8f60b818dd3d213bc8957592c8ceacbe13f31d', '172.105.247.100', 1669884749, '__ci_last_regenerate|i:1669884749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37d76e942e07142bc4a61a6c5e2f5f05b29dd70f', '37.111.219.140', 1669887578, '__ci_last_regenerate|i:1669887578;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669868911\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669887513;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22abd10c32f09a0824ec98c34a11c1084b547d55', '37.111.219.140', 1669887985, '__ci_last_regenerate|i:1669887985;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669868911\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669887513;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0484b2cd21759e63ef976100ebb0cab7c9e1df6c', '37.111.219.140', 1669888088, '__ci_last_regenerate|i:1669887985;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669868911\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669888087;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f14c06f1631713e8af111ed585ea9615c59da2', '172.105.247.100', 1669890141, '__ci_last_regenerate|i:1669890141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ea54812f8577b2bdb9b4102a7fe93414ebec32', '172.105.247.100', 1669890142, '__ci_last_regenerate|i:1669890142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952153cb660507aabda09c0fc642055c49fd7bce', '172.105.247.100', 1669890142, '__ci_last_regenerate|i:1669890142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243e74d1aebeb861f1efaa3b91af1a09a832a028', '172.105.247.100', 1669890142, '__ci_last_regenerate|i:1669890142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5a505c1d32b6e0fd11768d38ff266f3179caac', '172.105.247.100', 1669890142, '__ci_last_regenerate|i:1669890142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c041f9888e02e7996fd3f30dd027af0eb2fc6955', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c428ead2ec98ff1319f01775f41729c3fb12eef4', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526fed7a7e7a5f5e377b190bfd69cea81c831bb1', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb6b9c39ed8dab3d40cb358f62284c47a062a29', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3850feae240d5ef261f6e150537f74b45dafac', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee5da6cd6b22c1baf3a3e87e08329e0e722f9db', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3283a4d81d69f2213f83163f8b81ffc1f66a1bba', '172.105.247.100', 1669890143, '__ci_last_regenerate|i:1669890143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a844f0d3ca43b1563a08dc2f940561f28be71bee', '172.105.247.100', 1669890144, '__ci_last_regenerate|i:1669890144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef961dde735eb8f5a906451c6293cd0231a6ca4b', '172.105.247.100', 1669890144, '__ci_last_regenerate|i:1669890144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc33c91443af95478025189261acd4874f945ba', '172.105.247.100', 1669890144, '__ci_last_regenerate|i:1669890144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ff54285b03285f2cf4f2682acab75ec8df7b00', '172.105.247.100', 1669890144, '__ci_last_regenerate|i:1669890144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd872ed60b2a1faf0fe1d8417171cd1dc6e1204', '172.105.247.100', 1669890144, '__ci_last_regenerate|i:1669890144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01594fa3f816d803a14a91860d6a31e046a7eb13', '172.105.247.100', 1669890144, '__ci_last_regenerate|i:1669890144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141fc509e53a0d74ee785891d2e77926915febdd', '172.105.247.100', 1669890145, '__ci_last_regenerate|i:1669890145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be525fa16f93bb8cf3dead365c5a1eea93660c60', '172.105.247.100', 1669890145, '__ci_last_regenerate|i:1669890145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd23ab0849854c8865d0f9a7ccaae3b88dde781', '172.105.247.100', 1669890145, '__ci_last_regenerate|i:1669890145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2dc456358640e64ae2eb280be9df26a66c323f', '172.105.247.100', 1669890145, '__ci_last_regenerate|i:1669890145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e87214cc1c2b1f3a1d461e321ed221d446e6de', '172.105.247.100', 1669890146, '__ci_last_regenerate|i:1669890146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8360bf6a978a48739cee221ff2507105816783e6', '172.105.247.100', 1669890146, '__ci_last_regenerate|i:1669890146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a049f4a13a985384a0d7c88c2bfba060c06b23', '172.105.247.100', 1669894853, '__ci_last_regenerate|i:1669894853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25b62e40b6047b3915d076e783e7abd36f6c2df', '172.105.247.100', 1669894856, '__ci_last_regenerate|i:1669894856;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e61117abf1614cc3ae851a9df82f98854f833a', '172.105.247.100', 1669894856, '__ci_last_regenerate|i:1669894856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a52291dd2ca523b30849be3d4a862ddca936154', '172.105.247.100', 1669894856, '__ci_last_regenerate|i:1669894856;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89302155d7c535d77520841567685cd4b849eaca', '172.105.247.100', 1669894856, '__ci_last_regenerate|i:1669894856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62511b4b73633369d71be1979f31eba8756e27f0', '172.105.247.100', 1669894857, '__ci_last_regenerate|i:1669894857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f5f5b6d6294ac2fa03d086c15e335a8557607d', '172.105.247.100', 1669894857, '__ci_last_regenerate|i:1669894857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386ccb767ef42745eff57585afb3a83a6165687a', '172.105.247.100', 1669894857, '__ci_last_regenerate|i:1669894857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa275ed473fab06dd0a9f7ef22c97c8d991707ad', '172.105.247.100', 1669894857, '__ci_last_regenerate|i:1669894857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f969e5418993f695c5c47bf7b97ff85144109670', '172.105.247.100', 1669894857, '__ci_last_regenerate|i:1669894857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58279dcc84ae4c2a1bf2fa9168a65db595fb352', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac076f0321bf987ad4c07e196aad7dc43a167008', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d06b490731f11372c6d4311f7c2e5347dbc9b3', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('089bf7a513da336884d995a5b192758bdadd4613', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ad84b79c49969d4edf5de3870a4eff7766eb87', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed6a8f51cbd2035c03419d986a024d60dd4f260c', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc765aeb24ca7d716f15db047a49b5ada4d1d994', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d99731f5f5d611ee20cdb25cf253fb70ba7ff5', '172.105.247.100', 1669894858, '__ci_last_regenerate|i:1669894858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ed9d69b3cad8133c83f10e0bce14e805c4ddff', '172.105.247.100', 1669894859, '__ci_last_regenerate|i:1669894859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c13f544c4853a6ca3cfb745ff94b9c21c55145', '172.105.247.100', 1669894859, '__ci_last_regenerate|i:1669894859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cfe30242f73cf4adffadc5244478c8cc35224a', '172.105.247.100', 1669894859, '__ci_last_regenerate|i:1669894859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4628feeb5bb5c23d00753e3446d5b5c6714594bc', '172.105.247.100', 1669894860, '__ci_last_regenerate|i:1669894860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9626ae734b4ea5012d12ae65223c87a445cd8a', '170.187.184.242', 1669894860, '__ci_last_regenerate|i:1669894860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403612f7ef3ecea9e455056ccf44df02874bedb7', '172.105.247.100', 1669894860, '__ci_last_regenerate|i:1669894860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b24e85f394281a2b93c970655997b8731c7272', '172.105.247.100', 1669894860, '__ci_last_regenerate|i:1669894860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56338224f1ebddcbaacfe83bf2ed64ad78a24170', '170.187.184.242', 1669894861, '__ci_last_regenerate|i:1669894861;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8abd66a3e6a8ad3a590df39df2c0a15f185454aa', '170.187.184.242', 1669894861, '__ci_last_regenerate|i:1669894861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e3c2cfbb8a74252fdb47e91c4b81140cbd6b386', '170.187.184.242', 1669894861, '__ci_last_regenerate|i:1669894861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('199c4043d9d871576878481b651e9b2c45a429d1', '170.187.184.242', 1669894861, '__ci_last_regenerate|i:1669894861;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac356bd6325d01bbacb2f20bd03942f5a6a949c7', '170.187.184.242', 1669894861, '__ci_last_regenerate|i:1669894861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bcd6b19ec56c6e27bbe14ece75f854d4f24a6cc', '37.111.219.140', 1669899863, '__ci_last_regenerate|i:1669899863;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669886942\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669896310;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb2a223a1c5768d966982d638e088032868fd67', '116.204.230.19', 1669897061, '__ci_last_regenerate|i:1669897032;requested_page|s:5:\"admin\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1669633061\";last_ip|s:13:\"119.30.39.184\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6b9d9ebf258b682b3e18dbe69020c64a32883a', '203.76.223.4', 1669897034, '__ci_last_regenerate|i:1669897034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c51f14fa9be6d8dd353eed14618827eb946eaceb', '172.105.247.100', 1669899150, '__ci_last_regenerate|i:1669899150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0113a115421f766da2ae2c0fe6cc3a11846004', '172.105.247.100', 1669899150, '__ci_last_regenerate|i:1669899150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91453bb292696f63cba8d264e45efcdb123735ca', '172.105.247.100', 1669899150, '__ci_last_regenerate|i:1669899150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1744cfd2f05b666e09ba58804c3253b472925d30', '172.105.247.100', 1669899150, '__ci_last_regenerate|i:1669899150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e2d869704b72d30d4c5e40491cec3f6f34fc2e', '172.105.247.100', 1669899150, '__ci_last_regenerate|i:1669899150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14fcc87c631aaeb63d29b9c1a229061ee1afa643', '172.105.247.100', 1669899150, '__ci_last_regenerate|i:1669899150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e079e5ead195c3fd4f241dee1e8156c524ab228', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79505e589b48bd6c367357bdecdf37ac0f1c52c4', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47565fd14af4aeb942f9cc22b300d7412f5e8e5', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b32ee90f31114ec9fe16cb2b4be45d3c2da322', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8edf617eeb478327017af9afd065a0465101de', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c557ce5085fdd393bcf328ad3cdcc0512087a761', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f132867a30bad458fdff81e18fd4a005a65b055', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed13099f0e7b04fdcc1f0a309409b79588086a79', '172.105.247.100', 1669899151, '__ci_last_regenerate|i:1669899151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0fd9dfb2e53f271780163223ed27ee7b89a55a', '172.105.247.100', 1669899152, '__ci_last_regenerate|i:1669899152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b898c4764d5b7b069e8e54f3f55115e6eb9178e9', '172.105.247.100', 1669899152, '__ci_last_regenerate|i:1669899152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4977df74a29a8fd1cec7d0429c9f2d9a3f79c07f', '172.105.247.100', 1669899152, '__ci_last_regenerate|i:1669899152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8e3db11af808b395bdd3e8936953ccba3c8f5c', '172.105.247.100', 1669899152, '__ci_last_regenerate|i:1669899152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f09c35dfeaa7de11d10759615515c106a3e6ef8', '172.105.247.100', 1669899152, '__ci_last_regenerate|i:1669899152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a657123bb1f078620bb117c8bf664ce590822d37', '172.105.247.100', 1669899152, '__ci_last_regenerate|i:1669899152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca71ebf78cd20ae93e295affddf622160c39f3f9', '172.105.247.100', 1669899153, '__ci_last_regenerate|i:1669899153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ddd0962ed108f7caf7717416535073e38ce02fb', '172.105.247.100', 1669899153, '__ci_last_regenerate|i:1669899153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaeb7bf2757ad22833430b48ad20ab1f9ebdc162', '172.105.247.100', 1669899153, '__ci_last_regenerate|i:1669899153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514455155089edeb8ff29d253cc05e44ad44a9be', '172.105.247.100', 1669899153, '__ci_last_regenerate|i:1669899153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b47cc221ddb3eb2c3bb35cbae1478504b33363', '37.111.219.140', 1669904419, '__ci_last_regenerate|i:1669904419;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669886942\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669899879;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76fc62a9a5d7a0fa6fa8351701c73aa1b43fad4', '37.111.219.140', 1669906053, '__ci_last_regenerate|i:1669906053;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669886942\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669904450;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d094e6d28f4edb9efce7466afa85173621aec2', '37.111.219.140', 1669906609, '__ci_last_regenerate|i:1669906609;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669886942\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669906594;register_id|s:3:\"266\";cash_in_hand|s:10:\"14970.0000\";register_open_time|s:19:\"2022-11-30 20:11:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71c8375d27ce709431bfecad3f281a2c19f37fd', '172.105.247.100', 1669906332, '__ci_last_regenerate|i:1669906332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c85ec0ce3f495fba24226d8be2516f3f516600d', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a393c67265ffd1daf1055122a5f9833b90f9eec', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9413afb74eaeea8bd7b291ed6a06e3edb694e17a', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4006ea760bf823f26f45c2bf081c4d86c2be23e', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71fd4351546bc33cea778152157949d2a098ca65', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8463f555d0a8e9990b34930d90f6e5c16850a0', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d709f87208f638e6d63fac20d9da268a2510369b', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89485431c7f73c79e7b48187a6fe91bf7db6424b', '172.105.247.100', 1669906333, '__ci_last_regenerate|i:1669906333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b762b04ea6274c090717aeafb4a59bf56bfb9e16', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e027054fcfabf170cefa9e137d2655b3e4d0c3', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dbac479aeb8988285ee57ebdac82c123c24211', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cbed3fa3431d5002c86a92b93f62a83ece94228', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c7fe07dce223176e54eb94133169770efa701d', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4d882513a8c41b2c315551b6ad674c1b2277959', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07a2975b014c8f4a7101fa9cb992b0984fbb8c6', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da55d9dc64bf05412b22b6d809e13ca502d3b85d', '172.105.247.100', 1669906334, '__ci_last_regenerate|i:1669906334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1bfb7ee8a81bba60c567ab7e95bd17c9fc22051', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85f53a24e31b3f4ba8b1f26527dc71c9723a91f', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5f163e36e90735064bdc55f91bef30bd125b22', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253390b1b87e6a7eeeeaa6f2d86fba6833c547d8', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47f3af57443a911594b00f09ed9d741b81103c9', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b94e8608f1e4f6c61d2417cab31f3c303f467822', '172.105.247.100', 1669906335, '__ci_last_regenerate|i:1669906335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e95b46abf64252b1a7fd6d2072a77c4062763c43', '172.105.247.100', 1669906336, '__ci_last_regenerate|i:1669906336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daeffa8db767d791ffad1d2d7dbd81c0c7ce42fc', '37.111.219.140', 1669906671, '__ci_last_regenerate|i:1669906609;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669886942\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669906671;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb42b2c9047632d4eb0ce30e5702eed2ab0c589', '172.105.247.100', 1669912929, '__ci_last_regenerate|i:1669912929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e906be25c53fcc0019018978a8597bb279fe4f', '172.105.247.100', 1669912929, '__ci_last_regenerate|i:1669912929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17089a97028c68ecb7320e6aae9ca3bdcdbbf84b', '172.105.247.100', 1669912929, '__ci_last_regenerate|i:1669912929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeadcc0c04d3dae24caaed05f76b0995ad7b9ff5', '172.105.247.100', 1669912929, '__ci_last_regenerate|i:1669912929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323328cb9e7a8b07d24a78f1cab06c974f7f694d', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515735e2d5e34edfc61b2a1c52005f351c11563b', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eec6c8e720c09e4177be481ea28314108a6603a', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d3e2bf0f51062c8e9e70c5e3187a950ddc3e4d', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908621860e78e3775620fd74a96bfbd0d651a059', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b17bc36fb08fbb91f5617dcf54575559ea9df87', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d7e8191348242cbc93467b93b3118543c5fb01', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf8c556223b96739c50bcc4c3c10bb7af14571fb', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e38dfa62e538f988724f8f6916555451b2dea12', '172.105.247.100', 1669912930, '__ci_last_regenerate|i:1669912930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1168508eff8821d5515a9ee7b776f649ad69a2', '172.105.247.100', 1669912931, '__ci_last_regenerate|i:1669912931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16df7685b27ce369da6df611abcb536a9a93b1a0', '172.105.247.100', 1669912931, '__ci_last_regenerate|i:1669912931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('180f201333683b7014c276c6b0a17d8a6b34f800', '172.105.247.100', 1669912931, '__ci_last_regenerate|i:1669912931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ab10f264dba8257d9a8d4af1726f64e5232a7c', '172.105.247.100', 1669912931, '__ci_last_regenerate|i:1669912931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ce207cd9daea3ca685e20b2a1b5241e7f70a09', '172.105.247.100', 1669912931, '__ci_last_regenerate|i:1669912931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa807e6b32395c9d76a8d886be9170fca3f9781', '172.105.247.100', 1669912931, '__ci_last_regenerate|i:1669912931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c17547798af67e3f2b79165d9bc69c771cce2c', '172.105.247.100', 1669912932, '__ci_last_regenerate|i:1669912932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38d4b6c20607fd3f838633f72c257e7686146ba', '172.105.247.100', 1669912932, '__ci_last_regenerate|i:1669912932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('225257e2c741065761fc48990bd8848f821a7740', '172.105.247.100', 1669912932, '__ci_last_regenerate|i:1669912932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41680496029d1bbba626ff2318d082059b285e7', '172.105.247.100', 1669912932, '__ci_last_regenerate|i:1669912932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4173fa68f62999f066dc099c3444d562d4bbe2be', '172.105.247.100', 1669912932, '__ci_last_regenerate|i:1669912932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('820dfba20e1c22e623a10fa6a17fc9d97284be3f', '172.105.247.100', 1669919528, '__ci_last_regenerate|i:1669919528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b143876a3cc486bd2d101edcb46279db2e7f7df', '172.105.247.100', 1669919528, '__ci_last_regenerate|i:1669919528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07a2ff95d97a6491daaba7381aecd2452299073', '172.105.247.100', 1669919528, '__ci_last_regenerate|i:1669919528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb66001b52b2a607ed321c803aada0812bbddb95', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87dfc7ff9a2a14f3a3f2477ecea56475de63b6fc', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953cf16bcb49ad0dce514e30cc042b9e31400f86', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2165f596cd28f148f2cd3bb290aeb106e2e571', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7beb9a2a517f19fcd664df4c772640b4370c0d7f', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bbaf28218546395593ab9a505e6e0e39bd2feb', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee1ad98e8eb0ec5018a0ce03106b9844e8de1d88', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930c01565f7605afd978a9ec7437a8ac5dfd4a38', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf9805a94e1879186552f6398c7dee1f62d70f2', '172.105.247.100', 1669919529, '__ci_last_regenerate|i:1669919529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f65a40dfd898f987247f6c590a2c17dfab93271', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb3a8bc551a752a42effceef001b9811e34e1ac', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ecdc1fef61977e79e646847a3c539f4c58f8022', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a2c20357ce8fb339a814d6d797d78523fd45c2', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f36c39c5dc4474e0142f7e62be235c22f58a4f5', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ab530a22e08e9bf2ae22d231c670445ac0838e', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b61171f6361b672398d1ab2cd1c648c5b1e05f2', '172.105.247.100', 1669919530, '__ci_last_regenerate|i:1669919530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('743679078e4ab3e8b342cc9267d912cf5e948b49', '172.105.247.100', 1669919531, '__ci_last_regenerate|i:1669919531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca87f9b59f5b1bc220d92fc4948e5c9a647be28', '172.105.247.100', 1669919531, '__ci_last_regenerate|i:1669919531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb963614ecaa2cca40861deb52ecabefd6a4ee9', '172.105.247.100', 1669919531, '__ci_last_regenerate|i:1669919531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2329fe2ddd0b3345e3cf722e77b227ee7d632d51', '172.105.247.100', 1669919531, '__ci_last_regenerate|i:1669919531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685f6bda9afe8f690c063b44bb569f31d24f1e52', '172.105.247.100', 1669919531, '__ci_last_regenerate|i:1669919531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96872d4b6ec4c66f0a51705316138997112ade42', '162.142.125.210', 1669922655, '__ci_last_regenerate|i:1669922655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735d02e492e2875df4d54e066d8b5418545f9198', '162.142.125.210', 1669922655, '__ci_last_regenerate|i:1669922655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b609e63b4029ac535d6aeabc5328ea3badb7c53', '162.142.125.210', 1669922655, '__ci_last_regenerate|i:1669922655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3736dc612c38b3c48c0c00cbfff6553b3554a43', '162.142.125.210', 1669922655, '__ci_last_regenerate|i:1669922655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a00ea332952ef545f4747221c03b1424eb4a413', '162.142.125.210', 1669922656, '__ci_last_regenerate|i:1669922656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f74afb4ec64e3af3b2b1d8abe62caed8fb885c', '162.142.125.210', 1669922656, '__ci_last_regenerate|i:1669922656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7ba9515846043e1f6ff5a6c3132622b5ff4db6', '162.142.125.211', 1669922886, '__ci_last_regenerate|i:1669922886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a118ca406594038a2e50cf12d43d4015a49739d3', '162.142.125.211', 1669922887, '__ci_last_regenerate|i:1669922887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d95e45be181f7744b6c9ffa88ee639e571edd2', '162.142.125.211', 1669922887, '__ci_last_regenerate|i:1669922887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d07dc1adf614b17f0495079d35949c467d4bf7', '162.142.125.211', 1669922887, '__ci_last_regenerate|i:1669922887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce7fb1b4654b160e73b09f2739d94bcf249843c', '162.142.125.211', 1669922887, '__ci_last_regenerate|i:1669922887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec376447867bbc1f6f5a24714490e6e87bf74f24', '162.142.125.211', 1669922888, '__ci_last_regenerate|i:1669922888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3edd581ab55ab9fce5fc85e6e071fb31602c0414', '172.105.247.100', 1669926122, '__ci_last_regenerate|i:1669926122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb846023869b79068e95ed06e7d70bd429d4a4d4', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cdbb964f420b04ec74b44509bb75bab893a6072', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cecdb9197a0d927d2ce2703733e41c6d6170fa1', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e69ca4144d5ed5f29013dd8b2989ac13cc188d5', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706b078716aab0d06c99f5cb296db7a4ff6cea98', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcaf9e828fae9f6875b67844d8a3f31760e32e4e', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95f909692108d73f8191cbdea8b88dc665cafaa', '172.105.247.100', 1669926123, '__ci_last_regenerate|i:1669926123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90299dd561232cf6d3d52b10128b9649912b92a', '172.105.247.100', 1669926124, '__ci_last_regenerate|i:1669926124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e1ea31cd86ed10b60dc5ee0ec89ef1d082973a', '172.105.247.100', 1669926124, '__ci_last_regenerate|i:1669926124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1da93f3fe90f28f13ba096ba192795f127d46c', '172.105.247.100', 1669926124, '__ci_last_regenerate|i:1669926124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b3dbec0aba76e075f4a3ac61f7ae8a38d86fa5', '172.105.247.100', 1669926124, '__ci_last_regenerate|i:1669926124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e91a2d1dc4614e5e490a17b93bc85a56687f555', '172.105.247.100', 1669926124, '__ci_last_regenerate|i:1669926124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65ec34ae856ddd43918245bce7706534b424683b', '172.105.247.100', 1669926124, '__ci_last_regenerate|i:1669926124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ca94e028773ea03eaa9fb0680f553254b19075', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5817b688869855cd7c07015330b9b8802252b73', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efaa2800e83f60ed47383e1430493963ce568614', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d30a3f85357935f8530036502acac6e9865809e', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ae7f47da301965d1cd2319785f22355b95cb1d', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb6f6b627eeba7d6f2e2e7a2353d5aa29a53b793', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd77217885fb57016275bcb15a5a56e91cc8bae', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9c57bab4fb42facd2fb4dc7f9e5a7ba3520a18', '172.105.247.100', 1669926125, '__ci_last_regenerate|i:1669926125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb2e3bcd3df35fdbc4b9ef869ddda6e56c1901c', '172.105.247.100', 1669926126, '__ci_last_regenerate|i:1669926126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fff8e49d706fa69bdb01b27a8a20a43f33774ad', '172.105.247.100', 1669926126, '__ci_last_regenerate|i:1669926126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e970c6e13a9c95198374666a89a65eb8286c0b9', '2.57.122.218', 1669930603, '__ci_last_regenerate|i:1669930603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445f94659055312eb509ce44d745a81afd03a3de', '2.57.122.218', 1669930603, '__ci_last_regenerate|i:1669930603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e72eefb9f19c50e8415ddf23465d3bef58c5f4', '2.57.122.218', 1669930603, '__ci_last_regenerate|i:1669930603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c341f7505192a7000112dfac57e8baf9690a96e6', '2.57.122.218', 1669930603, '__ci_last_regenerate|i:1669930603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869a3e9c463a38b10bf76a749e15e6fc7bcbf35f', '2.57.122.218', 1669930603, '__ci_last_regenerate|i:1669930603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69340643beb69aa549a342dc81b5273b8dce17b9', '2.57.122.218', 1669930604, '__ci_last_regenerate|i:1669930604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e48128462eee3cff0cd55c806ad13f814936182', '198.235.24.13', 1669942612, '__ci_last_regenerate|i:1669942612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0872a0b96dec9e728a94e21ff08ea95db2c105', '87.236.176.95', 1669957242, '__ci_last_regenerate|i:1669957242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d020e3c4797b92a295aab27b8e4b09cca0268f', '87.236.176.95', 1669957254, '__ci_last_regenerate|i:1669957248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb12f14161ea1d90ae81752d38272942dbba976a', '45.120.39.90', 1669962335, '__ci_last_regenerate|i:1669962335;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669896301\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669957518;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed9d7bb52184b12cf55a12a4e36f4e6231c9196', '116.204.230.18', 1669960745, '__ci_last_regenerate|i:1669960745;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669462622\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1d120b98b8234c5bbbff3e2b28c43ede50e233', '116.204.230.18', 1669960906, '__ci_last_regenerate|i:1669960745;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669462622\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"MEF4V89wWxfTa260lnKP\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc72e35f77a25920839c7e545d93c7f574cf2385', '45.120.39.90', 1669963016, '__ci_last_regenerate|i:1669962335;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669896301\";last_ip|s:14:\"37.111.219.140\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669963016;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ba0c8c73b056c68a7509c87e607ecbaf15b31a', '116.204.230.18', 1669968566, '__ci_last_regenerate|i:1669968565;requested_page|s:14:\"admin/products\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac16a46d0b39be21e07338301473b3101a70918', '45.120.39.90', 1669971683, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3e8651ec0d04a336f878c91b8b192ec19c55f2', '45.120.39.90', 1669971683, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096eb96db8e9daca77069df64044ef6e2777ce2f', '45.120.39.90', 1669972080, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669972080;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669972070;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b28e79428ee795231fc74a77d2538b3268682d7', '45.120.39.90', 1669971685, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ec97691ab196ee5e9cb1735b5b48a7b447156a', '45.120.39.90', 1669974714, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669974714;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669972172;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94df2043b8b5362643efc222a951caece186db4', '45.120.39.90', 1669978817, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669978817;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669978813;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c71f213c44ed4e3865ff8bc4cc8b68ca8c2ba63', '45.120.39.90', 1669981678, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669981678;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669978817;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65bd99bbd3146b6f345086740b70fd0366352427', '172.105.247.100', 1669981299, '__ci_last_regenerate|i:1669981299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79feb14d68a959cb9997b9f101f9e760fe2d5ea2', '172.105.247.100', 1669981299, '__ci_last_regenerate|i:1669981299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b8db9706f921c1e4e55f9cdc3dea831683e6054', '172.105.247.100', 1669981300, '__ci_last_regenerate|i:1669981300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53c8810392fdd08184375a1339c01e076ca6dd8', '172.105.247.100', 1669981300, '__ci_last_regenerate|i:1669981300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca1cb808555dcfccf788f459d176933059dfaf24', '172.105.247.100', 1669981300, '__ci_last_regenerate|i:1669981300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('855e231c43e6fa32fa85c7ca35b56a7d6297fcc2', '172.105.247.100', 1669981300, '__ci_last_regenerate|i:1669981300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8056d14339a6cf05740a81cbb99fa5fc55cc65', '172.105.247.100', 1669981301, '__ci_last_regenerate|i:1669981300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de2911e79e2cf4ad00acde93e6c2cd2b7571ab7', '172.105.247.100', 1669981301, '__ci_last_regenerate|i:1669981301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d022a442108ba8356c59194039769e046fe2b2b', '172.105.247.100', 1669981301, '__ci_last_regenerate|i:1669981301;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf449d275a51535b571821381fd88efcfcb9b26', '172.105.247.100', 1669981301, '__ci_last_regenerate|i:1669981301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006f862192a6672e132c36db54178e049309cb27', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5afcc55b70c58aab54f129f9d551470ecd9670b6', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('051c8afb444a66b106dfbd714cbc32b61d4fc65d', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c21986ec05d4eb2a5930067279cee738631955', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8c96fd4788b669cf62f4d05f93b94cfd4c000a', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736f6b4117214318b98544857aaae903ae3b85fc', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87dde94e0b82023f2f96f95036c7850a420d12c8', '172.105.247.100', 1669981302, '__ci_last_regenerate|i:1669981302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b2f8c9b5364bda7c08b9bada7193a36afe9ac8', '172.105.247.100', 1669981303, '__ci_last_regenerate|i:1669981303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ce7c434ec06c35a4fb4814d7090d772178c0ea', '172.105.247.100', 1669981303, '__ci_last_regenerate|i:1669981303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0902281926b5c6a1040ea40c79910ff666750f50', '172.105.247.100', 1669981303, '__ci_last_regenerate|i:1669981303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c6900c4e0c5251f65545b4d324b2d0a2b56af0', '172.105.247.100', 1669981304, '__ci_last_regenerate|i:1669981304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df673b39f2c6512642122f9c99865987736dab4', '172.105.247.100', 1669981304, '__ci_last_regenerate|i:1669981304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbdc5cb5fb77debcad6990a28c6a9b37d7b20ac', '172.105.247.100', 1669981304, '__ci_last_regenerate|i:1669981304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4fdea909f10eec9eb49ab4dd8916f6fbf201ef', '172.105.247.100', 1669981304, '__ci_last_regenerate|i:1669981304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3481a5f94e4aaacb3fb1e5379f236d906fc60a08', '45.120.39.90', 1669982314, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669982314;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669981709;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc3a5a4c8092764b699ee8bd7d0d373fe221172', '45.120.39.90', 1669985170, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669985170;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669982433;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26df73f70b2fd0d102e561ae1b92c0dd3a4cb9ce', '86.19.16.134', 1669984095, '__ci_last_regenerate|i:1669984095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b2f64005f643e996538533e2d52e5c1772a108', '86.19.16.134', 1669984097, '__ci_last_regenerate|i:1669984097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad5ed3ecc47ecd0692593745ab31527c9b3b08e', '86.19.16.134', 1669984098, '__ci_last_regenerate|i:1669984098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0098e2ed0586d42af52c241a34c19eaac7608556', '86.19.16.134', 1669984098, '__ci_last_regenerate|i:1669984098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4551b736d6c6e2eaf91d89aaaa16ba5d1ac198ba', '86.19.16.134', 1669984098, '__ci_last_regenerate|i:1669984098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a68478fc6cc4c3146102b35350ff2c95405a321', '86.19.16.134', 1669984099, '__ci_last_regenerate|i:1669984099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ecb58ba971ca3919a80afeeb1aa3f8ae7a600b', '86.19.16.134', 1669984099, '__ci_last_regenerate|i:1669984099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754e970b3be3be5ebb906bc07e16ec37779d99e2', '86.19.16.134', 1669984099, '__ci_last_regenerate|i:1669984099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea816d15de0cfe5b76ceee1f8d7c0cfde655747', '86.19.16.134', 1669984100, '__ci_last_regenerate|i:1669984100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac31f2c56a5cdb29c280a2e29cb97441bbee4df9', '86.19.16.134', 1669984100, '__ci_last_regenerate|i:1669984100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74ba8690f5eed55282b0fe4d4dfef0f4aae4a2d', '86.19.16.134', 1669984101, '__ci_last_regenerate|i:1669984101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a791e4f27bf2c02d8481feb03cbd5f93e2bea5c', '86.19.16.134', 1669984101, '__ci_last_regenerate|i:1669984101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beac82382b4dfbd4c1d2bf552cb328f0d68289f5', '86.19.16.134', 1669984101, '__ci_last_regenerate|i:1669984101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde0938483c9cf4c9cf12056964b48c7c576a313', '86.19.16.134', 1669984102, '__ci_last_regenerate|i:1669984102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7270f45efef715f00ffae73810c8ae631a2826e1', '86.19.16.134', 1669984102, '__ci_last_regenerate|i:1669984102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed449abcd27529dd81b91a3ac80b889670836971', '86.19.16.134', 1669984102, '__ci_last_regenerate|i:1669984102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9643fb046618dcee0254a28859437cb1a5a586', '86.19.16.134', 1669984103, '__ci_last_regenerate|i:1669984103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55e44214c5fbbabd4934e35979b6f6887c79eea', '86.19.16.134', 1669984103, '__ci_last_regenerate|i:1669984103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550eeb561663cce43f8df2548c0e2f15748bf148', '86.19.16.134', 1669984104, '__ci_last_regenerate|i:1669984104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3c3637a8fc2f112994742097ea5264960cbd25', '86.19.16.134', 1669984104, '__ci_last_regenerate|i:1669984104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb5bcf03d9c594a6c3aab7e9bdd7e11e612e89d', '86.19.16.134', 1669984104, '__ci_last_regenerate|i:1669984104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9902603095e4237b522fc7b0a5988103d83f74bb', '86.19.16.134', 1669984105, '__ci_last_regenerate|i:1669984105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0495996a9ba7658f0f807a280e7e83fb96506b09', '86.19.16.134', 1669984105, '__ci_last_regenerate|i:1669984105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2e2a521d4cdfd150d0d2d2c89bf899eeed26811', '86.19.16.134', 1669984105, '__ci_last_regenerate|i:1669984105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb107f6f287065234b89cbcdae27bcccf7eee074', '45.120.39.90', 1669987125, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669987125;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669985229;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34a22e03d54ca227cdb0377b7caf164223e7e44', '45.120.39.90', 1669987553, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669987553;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669987539;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8d988d47f065930e344fbb49bceb1c65589940', '45.120.39.90', 1669988394, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669988394;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669987820;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a107f12e8faa5a54c1d828c3ec557782cb7c14', '172.105.247.100', 1669987887, '__ci_last_regenerate|i:1669987886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193aa79b26ee6807d7449969bbd91e71fbc34ece', '172.105.247.100', 1669987887, '__ci_last_regenerate|i:1669987887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8172d3bece6c469a0a7213509e3f55b1e50d20', '172.105.247.100', 1669987887, '__ci_last_regenerate|i:1669987887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e1eab87e4897e19b6ad9e4112ddc8edfc53e54', '172.105.247.100', 1669987887, '__ci_last_regenerate|i:1669987887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62672ae3bb0d364715ea356c3fc054d61c791c47', '172.105.247.100', 1669987888, '__ci_last_regenerate|i:1669987888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5b6d4faf62a61fef8a5e4a4a26d8453b14d995', '172.105.247.100', 1669987888, '__ci_last_regenerate|i:1669987888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ef4f60232cf95ab77cae89bdbc4b9618bd4173', '172.105.247.100', 1669987888, '__ci_last_regenerate|i:1669987888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4823dec3eb0b144702364e8ff84f0c2684f1cb0d', '172.105.247.100', 1669987888, '__ci_last_regenerate|i:1669987888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a562af6c4a21565dbed858d94bd6d45cc72cb89', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee28e2900dd4ed611460b8b560370a67433d426', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783c5f0a0f7714a9a2474ab1719cfd5c611c6935', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bf753670335ffe01788b29400e1f7484a64034', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0e1f75cecc2e60238d4d3b8f8f5e8ddc71f302', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77bce3d5dfc32c252c651dd3c362244b5e5759e', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f7d9e089db1f9897b4e7b86700638a3b0c4646a', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240f3e0b1b689be30bd7c56cc6801ebb898574c7', '172.105.247.100', 1669987889, '__ci_last_regenerate|i:1669987889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0eb29d9248fbcd3d99fd1738ef7681c45c6536', '172.105.247.100', 1669987890, '__ci_last_regenerate|i:1669987889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13448e32c1f821df954821357e976c330d00da86', '172.105.247.100', 1669987890, '__ci_last_regenerate|i:1669987890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0651604e8d12f5fa9c375472faa06bce29bc4ad8', '172.105.247.100', 1669987890, '__ci_last_regenerate|i:1669987890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4997d4f86fdd6803d26759a562099a9039546995', '172.105.247.100', 1669987890, '__ci_last_regenerate|i:1669987890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f354ce1dd5231bf0acf189801c48a101f4c0c247', '172.105.247.100', 1669987890, '__ci_last_regenerate|i:1669987890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa0d84f66a8d84fa4373fda03dcef0ab7d71579', '172.105.247.100', 1669987891, '__ci_last_regenerate|i:1669987891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1774c8fe08ea0adacd2279a35960ae991bd3a0bc', '172.105.247.100', 1669987891, '__ci_last_regenerate|i:1669987891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac9462b39678bc2c86881e0e2a2715362240acb', '172.105.247.100', 1669987891, '__ci_last_regenerate|i:1669987891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e24c703a4f47d993817a64bf266b508a0e72e45c', '116.204.230.18', 1669988486, '__ci_last_regenerate|i:1669988486;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669960420\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ac135733f23ef0dcdc9d37fe70f0c175b0c4d40', '45.120.39.90', 1669989064, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669989064;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669988528;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27404f6e96cc7a56646121b7ad05b3e615dde3e', '116.204.230.18', 1669988491, '__ci_last_regenerate|i:1669988486;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669960420\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb057625de50fdd7fb83b0bbd560c3127b48a7e', '45.120.39.90', 1669989414, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669989414;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669989306;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623d6ce1f2f2c0b26efe7f2200cec1496e3aef57', '45.120.39.90', 1669990566, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669990566;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669990551;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64a5dc862551923fc0ce96a46756c6d2321773b7', '45.120.39.90', 1669990964, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669990964;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669990874;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae5204b140631e51d36a621aa3d18572fd7edeb', '45.120.39.90', 1669991511, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669991511;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669990981;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e697df88bc770aef7d4fdacf52fe1fb74f357f4', '101.68.211.2', 1669991247, '__ci_last_regenerate|i:1669991247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57dedf45a412f705e1f304be97963973ff842abe', '101.68.211.2', 1669991284, '__ci_last_regenerate|i:1669991284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2ed2bdbac0bd41ff0b5b3644ab54c1bc282f73', '101.68.211.2', 1669991317, '__ci_last_regenerate|i:1669991317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92b65bbb6ec5925fee8ba4fc565194472ff94253', '101.68.211.2', 1669991360, '__ci_last_regenerate|i:1669991360;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53cb97048ce69f463e77c813392a8cdc159ef3c5', '101.68.211.2', 1669991468, '__ci_last_regenerate|i:1669991468;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2645424d0d27cae88cccc5b01dbbe65ffd80a0be', '101.68.211.2', 1669991499, '__ci_last_regenerate|i:1669991499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0c4c6765f45af9ab6a40ebb1df3522ed7acc32', '45.120.39.90', 1669992250, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669992250;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669991538;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0c82c871dfb1297541e6a4646f8360f1926916', '101.68.211.2', 1669991527, '__ci_last_regenerate|i:1669991527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c7c233397951e21231bdd6c9b4b95914896e84', '101.68.211.2', 1669991550, '__ci_last_regenerate|i:1669991550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87c15612d480ec22e5af72176fa084cbf31a1c3', '101.68.211.2', 1669991550, '__ci_last_regenerate|i:1669991550;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a599b226e940e093606ea55bfd12a9d4861d641', '45.120.39.90', 1669994800, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669994800;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669994795;register_id|s:3:\"267\";cash_in_hand|s:9:\"5290.0000\";register_open_time|s:19:\"2022-12-01 20:57:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60624dd0968fdbd5b93ae646bcf131429955b4d3', '172.105.247.100', 1669993282, '__ci_last_regenerate|i:1669993282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27fd4c320050673a6ad740809b5c72a2d2f874f', '172.105.247.100', 1669993282, '__ci_last_regenerate|i:1669993282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc978a03f276d4ca1cacc7f30b1e6d76366e9626', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c07055dbe893d3c0e9eb05df6962c79e42cb4b', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a203d565fd1d29702ea10acec53c06589431e89', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3d9aa6c535bbd55b27767d5ef9812b1a31ae3d', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d160aec9d836dac6e078a93496fdccfcd2207351', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78777e7b405528f5854904b9eb3bef8d1a5ba424', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8dcb32ce169dc03a74c38040b9d99742ec41004', '172.105.247.100', 1669993283, '__ci_last_regenerate|i:1669993283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dfad2531c5c4e171fd2d09f4d0e0dfea0682931', '172.105.247.100', 1669993284, '__ci_last_regenerate|i:1669993284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7accbd7cfcd0c7b3a174f01c70f381bfa413de', '172.105.247.100', 1669993284, '__ci_last_regenerate|i:1669993284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b62e0ad8a74e780a18ae47c3326f7b9b4a3113d', '172.105.247.100', 1669993284, '__ci_last_regenerate|i:1669993284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7bd756f8cab64e9382117b28f3505901dd9eb7', '172.105.247.100', 1669993284, '__ci_last_regenerate|i:1669993284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ec5f8c7e5dffa3f598e533e2bd4117ff4f767e', '172.105.247.100', 1669993284, '__ci_last_regenerate|i:1669993284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57085776d3af0b47eb4202eeb10f205ba1ca038a', '172.105.247.100', 1669993284, '__ci_last_regenerate|i:1669993284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314857b2183c3060c939cd726642d773c11baebc', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39bc12cc57bfbaf14414a9c4166f310d3ad127a2', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1483239b602385f9fef908384e294ce0938f736', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0648278d07b1013b0c9790fe39ef9bf88ddc2df', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e392b8e4e7dca4b1fecaed4b8a6038684b4e128a', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c04408ec4088ea56c392303a45f698abfa63a9', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e06d5beed65503f7c253d4198bf6802a0da7dd', '172.105.247.100', 1669993285, '__ci_last_regenerate|i:1669993285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02e9b19a9060787f74b72d7d21c47b5f3d149f2', '172.105.247.100', 1669993286, '__ci_last_regenerate|i:1669993286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbe742e0b9a15259fe2dcc71e1722b8e45802fa', '172.105.247.100', 1669993286, '__ci_last_regenerate|i:1669993286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5358b6473244c545a8cfdf03ed2e3b6aa41cabf8', '45.120.39.90', 1669995026, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1669994800;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669957469\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1669995025;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa50b4405b11e3fe29666aa3d7797c8ce6964167', '205.210.31.144', 1669996747, '__ci_last_regenerate|i:1669996747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9e6f5dbc816bee96677daf4ed1203cf807d705', '172.105.247.100', 1669998087, '__ci_last_regenerate|i:1669998087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0b84f5bded14f4cb767472077936060b0c7f97', '172.105.247.100', 1669998087, '__ci_last_regenerate|i:1669998087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ce87925617274829bd07bebcf73282b2f821cc', '172.105.247.100', 1669998088, '__ci_last_regenerate|i:1669998088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01459e37d70d9cb170d7380527793a2831afbd3', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e797d78ac12ed2cd6014c581dd42ec3734292e54', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403d13f6e9a6eaec90a776dd323178d856d34dac', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0387689edc1fa4bb7d76aa6ae55ef36919ddc8f', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e5624f38944f5575065b2776c816e61a83cc96', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ee8ff07f162bc2ed3a0623482bb74d61f7e96f', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a29a3cf9657ef4875635550a7db4a510a95f8d', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b734b14fd24382c4c717ade3f5f9516c707b4c9e', '172.105.247.100', 1669998089, '__ci_last_regenerate|i:1669998089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cded6a026ef4cbb8599023f5aea08de905592d12', '172.105.247.100', 1669998090, '__ci_last_regenerate|i:1669998090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201cb0766f4c2dc0c7ea4ce1f8ff102c60d1eeda', '172.105.247.100', 1669998090, '__ci_last_regenerate|i:1669998090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b0b851fcf9a875fe206767ee8931ceb1113a58', '172.105.247.100', 1669998090, '__ci_last_regenerate|i:1669998090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c99065b741f08f7cf709a05a458a3416b1e9990', '172.105.247.100', 1669998090, '__ci_last_regenerate|i:1669998090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660fb13324ef3c3cad19a702f881d64fec475b19', '172.105.247.100', 1669998090, '__ci_last_regenerate|i:1669998090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4fac378352209e6721667b075bb503c7e3b2ec5', '172.105.247.100', 1669998090, '__ci_last_regenerate|i:1669998090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366a6697b08bc3b4193a57b9157ab1c1b901ff0e', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3af432dcf1617bde932bfffc3413a14d288ffc', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a6cb45a9ccaa13c305431284e50d75116d49ee', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b7c28cae3a26b4e6d6943af5cbcf269b601d69', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2392c4bf4bc979e8a531b255a50efa748660df', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6d171b0964a4e2466891e50175dfc90d6e847c', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee953bdb20d76392cf22521dd7c3a1fa8fd0cea8', '172.105.247.100', 1669998091, '__ci_last_regenerate|i:1669998091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77eb4b47029bd38944131439df223638f8b2854', '116.204.230.18', 1670044262, '__ci_last_regenerate|i:1670044262;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669987918\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716f497c5303a0b9f6d8101adc2356375f6dd66c', '37.111.217.126', 1670044667, '__ci_last_regenerate|i:1670044667;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73cea2258bc43d5da6c5154491db251b875eeb0', '172.105.247.100', 1670044216, '__ci_last_regenerate|i:1670044216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a49f6a5ec715af7538c2a7f43b2b374ac4f35c', '172.105.247.100', 1670044216, '__ci_last_regenerate|i:1670044216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece39d3e1912d9e899dad2e3fee0f60eb65e96a8', '172.105.247.100', 1670044216, '__ci_last_regenerate|i:1670044216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40af2ef9055b4c2443717a63028439c5ded9126', '172.105.247.100', 1670044216, '__ci_last_regenerate|i:1670044216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bafc473bd3aac00e4d07042b94545feab5921eb2', '172.105.247.100', 1670044216, '__ci_last_regenerate|i:1670044216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c933e28ffb0d4f004b694d422dfb4b8bde17d1', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c36220ae9741e26b6d889c0d4db716cd3ace49', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f99d2ccf3bad6b2c66ef6b31edef7d5595517f08', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c10e26b81d82e6dd3bd6923ac362e75b945d6c', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3590c6f96ad0f5e2d73c41fb0a72a0b75105d79b', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf28156e44ae3adb826525c781ce0480dc933eb', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f876a4ae05cb4157018105cd612f95365a1d6e5', '172.105.247.100', 1670044217, '__ci_last_regenerate|i:1670044217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba797345a1947fb3fc5faff79bb5e23000de977', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5aa1fd0fc000adac1809fe5f95ea601b25ec4fa', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95edd05de0243b15c73d395bcf4c8e8655df302e', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2a266880b8684b0542c2cb75a118b18aaa3a3e', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ef76827c7e8b981a4b4b848c4bc1ceda299489', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195753c8de92baa7d2eab2d612a083637fe7053c', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc472fe984d87149b6bf976036a22a2e0ad1242', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c86dd0e0a3dda71e70109384112891e44c8f66f', '172.105.247.100', 1670044218, '__ci_last_regenerate|i:1670044218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb20f82cd17274151d943f6328ad4395c7785b22', '172.105.247.100', 1670044219, '__ci_last_regenerate|i:1670044219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70774d9a14d43ccf52c86d03d6455ee812d1c9be', '172.105.247.100', 1670044219, '__ci_last_regenerate|i:1670044219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d797c118eb0a25ecb44b8524fc592f6a09f68081', '172.105.247.100', 1670044219, '__ci_last_regenerate|i:1670044219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557fb9accef49e3c5581bcd00c7bd9968f6191eb', '172.105.247.100', 1670044219, '__ci_last_regenerate|i:1670044219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7ba6123f266ad5c050867455ffa993a1dc850c', '194.195.243.80', 1670044222, '__ci_last_regenerate|i:1670044222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2877343f46699f77cfbb72651ccd4b51dffb6908', '194.195.243.80', 1670044223, '__ci_last_regenerate|i:1670044223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bd3b1b337b90d33ed2a0715625d0a1f50e6ce91', '194.195.243.80', 1670044223, '__ci_last_regenerate|i:1670044223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79278d73f7acd18286e4d70d93f3f54e9d97a07', '194.195.243.80', 1670044223, '__ci_last_regenerate|i:1670044223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1195cd4292d49e469e5c88f5414035e002788bd4', '194.195.243.80', 1670044223, '__ci_last_regenerate|i:1670044223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336f91966ed106d67f560e5b14cc0dd758207aed', '194.195.243.80', 1670044223, '__ci_last_regenerate|i:1670044223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c276ec32dea4d3b53bfd16735774a2e76eb08837', '116.204.230.18', 1670044366, '__ci_last_regenerate|i:1670044262;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1669987918\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"rSRQ08qiNpMbnYymGVTw\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f03ada1be1f72f264993ca42e0cd49147c6300', '37.111.217.126', 1670048616, '__ci_last_regenerate|i:1670048616;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669971782\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670044701;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44621684a9377cefc95c85abf965fb0176e464a3', '31.222.203.2', 1670047289, '__ci_last_regenerate|i:1670047289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c96a9a7b1b5a222104b08abbaf5cbfcafba45f', '31.222.203.2', 1670047290, '__ci_last_regenerate|i:1670047290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd06989a325eaac7dcbdac5f9e183868d55d0d7a', '31.222.203.2', 1670047290, '__ci_last_regenerate|i:1670047290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72bfc5f56013497ffb15bc7ea3098810cca86bed', '31.222.203.2', 1670047290, '__ci_last_regenerate|i:1670047290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d2303c8586a79b9a82f08243f76f73bf7b89268', '31.222.203.2', 1670047290, '__ci_last_regenerate|i:1670047290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3edc2985dc9169bea0fbef94e74a59f8785ed7b7', '31.222.203.2', 1670047290, '__ci_last_regenerate|i:1670047290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b1e5fc56e0620bd6af916b5a69742ae16b71d0', '37.111.217.126', 1670048620, '__ci_last_regenerate|i:1670048616;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1669971782\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670048620;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13fc0002fe2148ea450a7db8c06ca2996209c8cc', '31.222.203.2', 1670049088, '__ci_last_regenerate|i:1670049088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f2019c7ffee55351a86d26470efed25f574ec3', '31.222.203.2', 1670049088, '__ci_last_regenerate|i:1670049088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d608cab38530e22b031ceb66675d84aca2cc8dc', '31.222.203.2', 1670049088, '__ci_last_regenerate|i:1670049088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97cf9420f8abed7acbe2036d8455b8b0bc2d25cc', '31.222.203.2', 1670049088, '__ci_last_regenerate|i:1670049088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21d6af591d32e0a682e7881ef0c400f78c69c34', '31.222.203.2', 1670049088, '__ci_last_regenerate|i:1670049088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0078f6ac51d536a8cde1ec1e34fd1efd3a8387', '31.222.203.2', 1670049088, '__ci_last_regenerate|i:1670049088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae09bb349a5ad86a11dfb98ccee75ea07e340f8', '172.105.247.100', 1670050309, '__ci_last_regenerate|i:1670050309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ed9655c11cf87ceee750df43393f0373d477e2', '172.105.247.100', 1670050309, '__ci_last_regenerate|i:1670050309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6f398e7f93662e27252ba8775d58641c2dedcc', '172.105.247.100', 1670050310, '__ci_last_regenerate|i:1670050310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42e77a287db091d5585726303b0a459c5703e092', '172.105.247.100', 1670050310, '__ci_last_regenerate|i:1670050310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef53a13cb060a2977e1836f9f9073c31c85f5e9', '172.105.247.100', 1670050310, '__ci_last_regenerate|i:1670050310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901c9ba60595c61a744456d546d1942a6f99a6eb', '172.105.247.100', 1670050310, '__ci_last_regenerate|i:1670050310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbdd2c7f998c720ba38ed0eff13eddc3aeb5863', '172.105.247.100', 1670050311, '__ci_last_regenerate|i:1670050311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4737e1487e915e8a9e138fd4b93bd2435e862d', '172.105.247.100', 1670050311, '__ci_last_regenerate|i:1670050311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca328b0f6439389ec8ba1cb0f656ad23de09541', '172.105.247.100', 1670050311, '__ci_last_regenerate|i:1670050311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c9e512f31abee6e4ec2369bdb876a8c7383910', '172.105.247.100', 1670050311, '__ci_last_regenerate|i:1670050311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f4848bd690e9e200119658b1a9663630fa35c0', '172.105.247.100', 1670050312, '__ci_last_regenerate|i:1670050312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb53c4157e6b3b141dab510252c0489b2d570af4', '172.105.247.100', 1670050312, '__ci_last_regenerate|i:1670050312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e394451e06dbfd7ba70bd038944c08e6d8c500d', '172.105.247.100', 1670050312, '__ci_last_regenerate|i:1670050312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad979c7b14b6549345101dac2e1a7c9bafbf8a94', '172.105.247.100', 1670050313, '__ci_last_regenerate|i:1670050313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6127fe5fdd162cdabfac604ed9247694430a19c3', '172.105.247.100', 1670050313, '__ci_last_regenerate|i:1670050313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39d43ab922887f8fb6c54868ed640ec5a1412e8', '172.105.247.100', 1670050313, '__ci_last_regenerate|i:1670050313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1f160bc8d71b98c28edc123ddb0c54b08f1af2', '172.105.247.100', 1670050313, '__ci_last_regenerate|i:1670050313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ef4504db0a2fcb5ba6223e915665541443220c', '172.105.247.100', 1670050314, '__ci_last_regenerate|i:1670050314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ccae396921bae69d416505048ecadee6ecf8fa', '172.105.247.100', 1670050314, '__ci_last_regenerate|i:1670050314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d3237fd5b733e77616575091b8f1ad31e9351e', '172.105.247.100', 1670050314, '__ci_last_regenerate|i:1670050314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae82f284fad8d956792d75f55b31fa82ca9ceb9', '172.105.247.100', 1670050314, '__ci_last_regenerate|i:1670050314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc3a85f13aedc203d4d865478d9760f5130e85f', '172.105.247.100', 1670050315, '__ci_last_regenerate|i:1670050315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5047d9bdaad6ec23ab4639ca125b8e1f36ef7909', '172.105.247.100', 1670050315, '__ci_last_regenerate|i:1670050315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a96440309bb788780e1be188fc31cc6aabe916b', '172.105.247.100', 1670050315, '__ci_last_regenerate|i:1670050315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8dbac537692cb9220a4db9f01cd88c7784f1a4', '198.235.24.6', 1670050414, '__ci_last_regenerate|i:1670050414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a76faa6888d3f379a4c9cdfa94b51370e8af9c', '205.210.31.180', 1670050629, '__ci_last_regenerate|i:1670050629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d60854e40c29f53548901bd3a210fac03d5f2b', '31.222.203.2', 1670050881, '__ci_last_regenerate|i:1670050881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0795533e9e559fb7ed2d058092f2ec041b18e768', '31.222.203.2', 1670050883, '__ci_last_regenerate|i:1670050883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c8c21d09e00a9cf6c66bcc7a9f88734f795331', '31.222.203.2', 1670050883, '__ci_last_regenerate|i:1670050883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a36c3a0827a419fa15eecec9d9ac50bfd487db', '31.222.203.2', 1670050883, '__ci_last_regenerate|i:1670050883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff19243fb4ea545324433c94fe901b03afd240b', '31.222.203.2', 1670050883, '__ci_last_regenerate|i:1670050883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7c614e52e19019cf2033aa39d00e4946ef88c5', '31.222.203.2', 1670050883, '__ci_last_regenerate|i:1670050883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b2a0d95677ef853dafe4417cc3724076d33b12', '31.222.203.2', 1670052686, '__ci_last_regenerate|i:1670052686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee83c4a09230e88b6a257f34657bbea8bb909859', '31.222.203.2', 1670052686, '__ci_last_regenerate|i:1670052686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea402e5f9f25f6837c820ded78ec1383d8dac549', '31.222.203.2', 1670052686, '__ci_last_regenerate|i:1670052686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ade4884d3b057deb44c497be04888319c27db6', '31.222.203.2', 1670052686, '__ci_last_regenerate|i:1670052686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d565bfbd6f57ce5891d470d02670eff22554580a', '31.222.203.2', 1670052686, '__ci_last_regenerate|i:1670052686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75429f16b7d830687b235f57607fcb17056daca', '31.222.203.2', 1670052686, '__ci_last_regenerate|i:1670052686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bea187ac0622c8b00ec0dc8c405ea7a9413c9fa', '31.222.203.2', 1670054483, '__ci_last_regenerate|i:1670054483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6660e611c81d528dc04aedf93ea1eb4966b24a3b', '31.222.203.2', 1670054485, '__ci_last_regenerate|i:1670054485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d206fc9e4cd95720354712879c76eb934820b2', '31.222.203.2', 1670054485, '__ci_last_regenerate|i:1670054485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5670aff3ddfdd218f6f6ad2f96a452c53a243e5a', '31.222.203.2', 1670054485, '__ci_last_regenerate|i:1670054485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5911e4d79a4c18fa2dc5fc89076baabd572a1d', '31.222.203.2', 1670054485, '__ci_last_regenerate|i:1670054485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a641bf2912c106e0271064f1a1392fa2d5c2f3db', '31.222.203.2', 1670054485, '__ci_last_regenerate|i:1670054485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2090cf921a844e2a3de49930f4bdea48341ca28b', '31.222.203.2', 1670054751, '__ci_last_regenerate|i:1670054751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ec8f30239ece5087c1e38851a19a44cbb93c4b', '31.222.203.2', 1670054751, '__ci_last_regenerate|i:1670054751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d20c420c4470f9fbd5cfc4bb53b7ff40553130', '31.222.203.2', 1670054751, '__ci_last_regenerate|i:1670054751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a168fee5d55dd9be2b68865f59ee52c81d2e93a', '31.222.203.2', 1670054751, '__ci_last_regenerate|i:1670054751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805c5bbd572910c7f86cd27f4b17338d91610d3b', '31.222.203.2', 1670054751, '__ci_last_regenerate|i:1670054751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4f3a3221d001ba66958451ddad1356784a4639', '31.222.203.2', 1670054751, '__ci_last_regenerate|i:1670054751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b935765b53ed63e6c4ccdc08469e2e169d5f0f4', '172.105.247.100', 1670056321, '__ci_last_regenerate|i:1670056321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d4d75962c4d2d985b444cefb9f609d3e599d1f', '172.105.247.100', 1670056321, '__ci_last_regenerate|i:1670056321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ffc2510f7b1e0d1ed49ac66ea62420b0ca06d4b', '172.105.247.100', 1670056321, '__ci_last_regenerate|i:1670056321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1462761e94c683ac0235739d688df94589d4186c', '172.105.247.100', 1670056321, '__ci_last_regenerate|i:1670056321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('555350c3929b274e5eefc3902efc6a406fc72acc', '172.105.247.100', 1670056322, '__ci_last_regenerate|i:1670056322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7efb9903af185a0f39a7771be874493601a79feb', '172.105.247.100', 1670056322, '__ci_last_regenerate|i:1670056322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52dbc864eed315cf6533813bb8aec10c7f616da2', '172.105.247.100', 1670056322, '__ci_last_regenerate|i:1670056322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfcccc3aaec90508c33872313469ee92ed8bced', '172.105.247.100', 1670056323, '__ci_last_regenerate|i:1670056322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4225ea7eae45880012ed5b7848a61d6e0339e5f2', '172.105.247.100', 1670056323, '__ci_last_regenerate|i:1670056323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c722b5c7ca9fc47a01e4553a3fbfae6f159f88d9', '172.105.247.100', 1670056323, '__ci_last_regenerate|i:1670056323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1154a8301721596d2c80db80ed3e9cd1ecc02714', '172.105.247.100', 1670056323, '__ci_last_regenerate|i:1670056323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9a285a75be82e201bf0296235f3206058bd89b', '172.105.247.100', 1670056323, '__ci_last_regenerate|i:1670056323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7bad70012ecb7b3c9405a16d70db52a260a65e3', '172.105.247.100', 1670056324, '__ci_last_regenerate|i:1670056323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8c3e35e721b3d9f61157a36e558ccdf594985e', '172.105.247.100', 1670056324, '__ci_last_regenerate|i:1670056324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1fba76987d9447751d64e38774e128d58c169b', '172.105.247.100', 1670056324, '__ci_last_regenerate|i:1670056324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf14e94ea565fa870149b0b15f6769578685776', '172.105.247.100', 1670056324, '__ci_last_regenerate|i:1670056324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6772b3c86a4074898cea71707eb64f61dff56bf', '172.105.247.100', 1670056324, '__ci_last_regenerate|i:1670056324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f5cdf5ef897e4a8c53b838950d3cc65057a5e9c', '172.105.247.100', 1670056325, '__ci_last_regenerate|i:1670056324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1e15dd678e72bbd5d1ea96899b55e861363100', '172.105.247.100', 1670056325, '__ci_last_regenerate|i:1670056325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0efbc2ce3ebd9859edc07cdcf2f0caa3f2a2b0bc', '172.105.247.100', 1670056325, '__ci_last_regenerate|i:1670056325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb5cdec588111bf53b344efc9c3b351fed612be', '172.105.247.100', 1670056325, '__ci_last_regenerate|i:1670056325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de61a1999c5837e78f70184521260f1da649f0a', '172.105.247.100', 1670056326, '__ci_last_regenerate|i:1670056326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa783b7cc5ebc1afe7f04c1032f12f96c5d5b7a', '172.105.247.100', 1670056326, '__ci_last_regenerate|i:1670056326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df5518150c34ab6911f4bdb5092839bd5a6884d', '172.105.247.100', 1670056326, '__ci_last_regenerate|i:1670056326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61e8a6cf7fb134993490b243233f78c65a6613e', '31.222.203.2', 1670056564, '__ci_last_regenerate|i:1670056564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8270ca5777796dd22f0bd3cbf2263515d4ba4ff7', '31.222.203.2', 1670056564, '__ci_last_regenerate|i:1670056564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8fa1f44b3fb7028da20f22b83cf10a00758a2e1', '31.222.203.2', 1670056564, '__ci_last_regenerate|i:1670056564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e40d4b3bcccc0bc65bece2dbe8074b9c943ee53', '31.222.203.2', 1670056566, '__ci_last_regenerate|i:1670056566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8290fe55c48945709700f3736ff92b9cc34a15b8', '31.222.203.2', 1670056566, '__ci_last_regenerate|i:1670056566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce5037c181aeb62d01e392293e809c2bb84d3a4', '31.222.203.2', 1670056566, '__ci_last_regenerate|i:1670056566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e90c54e0a949518898cbcb957ff35d874973b2f', '31.222.203.2', 1670058363, '__ci_last_regenerate|i:1670058363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf9012a3295f5fb8a1687765ca644b14f2872d3', '31.222.203.2', 1670058365, '__ci_last_regenerate|i:1670058364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ff842e77b0ede84fef954674c89c62f04a67bf', '31.222.203.2', 1670058365, '__ci_last_regenerate|i:1670058365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7dcdb351d019392346d2e85dfa8644e3db3d4de', '31.222.203.2', 1670058365, '__ci_last_regenerate|i:1670058365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390cd41c70ea33c13ed43445fdd20bbdbb5fc049', '31.222.203.2', 1670058365, '__ci_last_regenerate|i:1670058365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5d0d81c85df94d96eb39dbf36ccab9b81ae4db', '31.222.203.2', 1670058365, '__ci_last_regenerate|i:1670058365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee59d96f99d87ab531271bba443bedea3cdc791c', '31.222.203.2', 1670060161, '__ci_last_regenerate|i:1670060161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2b48b762104176e147fd470b3a5a35dfde05e8', '31.222.203.2', 1670060161, '__ci_last_regenerate|i:1670060161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeebf7de15b96fc7b1d747b7420b2436b3cb5019', '31.222.203.2', 1670060161, '__ci_last_regenerate|i:1670060161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b09a2403f93ca29243bb6ae1f48b9016f632e19', '31.222.203.2', 1670060162, '__ci_last_regenerate|i:1670060162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110070d7756653a516804b58769f47aacfb848c9', '31.222.203.2', 1670060162, '__ci_last_regenerate|i:1670060162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4445f14e3c07bb207ce3543a989cb67517c571d', '31.222.203.2', 1670060162, '__ci_last_regenerate|i:1670060162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26807a255cdf92a0969d4375e1fecf97104964ec', '31.222.203.2', 1670061966, '__ci_last_regenerate|i:1670061966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e68e7ca8d375f1209cac1a55f0260f5fa3574b1', '31.222.203.2', 1670061967, '__ci_last_regenerate|i:1670061967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8bd4c571232b8609ee1dd31f128fdf272fd58e', '31.222.203.2', 1670061967, '__ci_last_regenerate|i:1670061967;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683f13f72b88016dc36f1eb9e8773ec3ce20da16', '31.222.203.2', 1670061967, '__ci_last_regenerate|i:1670061967;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa03a896121702c777d5fa22f81b2dbdf686d706', '31.222.203.2', 1670061967, '__ci_last_regenerate|i:1670061967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054acef83a54b83bc896a014ba023c76531cccf2', '31.222.203.2', 1670061967, '__ci_last_regenerate|i:1670061967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d74ce5343b09d93737faaed0bde162a38b7c31fe', '172.105.247.100', 1670062311, '__ci_last_regenerate|i:1670062311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef72fff6b9ec6cf02d6f3dd689f76f3d9b0453a', '172.105.247.100', 1670062312, '__ci_last_regenerate|i:1670062312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d8c42c9c82d3e665e761a98dcd51ab83aa3db0', '172.105.247.100', 1670062312, '__ci_last_regenerate|i:1670062312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b38a4168ff0f27c4a8f0543a661a964b402827', '172.105.247.100', 1670062313, '__ci_last_regenerate|i:1670062312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd8229b31769997482eaa5f052ceb0d14653eab', '172.105.247.100', 1670062313, '__ci_last_regenerate|i:1670062313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45198b1042ac50bf7ba338622e31790eb37d2a6', '172.105.247.100', 1670062313, '__ci_last_regenerate|i:1670062313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251dbee63a0733ae0f4f8303204565a83a3f9a1d', '172.105.247.100', 1670062313, '__ci_last_regenerate|i:1670062313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3d014ab4cc883514876dbd034cc5b523460dfe', '172.105.247.100', 1670062313, '__ci_last_regenerate|i:1670062313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d21891ed6b5cbb74674e475dc12a7521614ee41', '172.105.247.100', 1670062313, '__ci_last_regenerate|i:1670062313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45077c3a311d7ce130c9db588460b2c23e2dd2fa', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4bb9cada4ae654bdf154eb4d32bbc7b0516c73', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c72bcd6f4c973751f5f2e4265b1163a5620d72', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822ef7384e551cd5647a15f929526d854d91ff5d', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509da6ce333272d0bb6532cc7adcd851d6111645', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c554459074b17ee7a1b5038245d0b4634bb432', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f047b044dda47b7d9de9ab222d53ec852edc590c', '172.105.247.100', 1670062314, '__ci_last_regenerate|i:1670062314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed37ce70babffc639ff7569d521752f89c4ab349', '172.105.247.100', 1670062315, '__ci_last_regenerate|i:1670062315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2e68720671650803e274ea4f1381a2877b5ca0', '172.105.247.100', 1670062315, '__ci_last_regenerate|i:1670062315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb915fcc7133bc36289c2ce6ef8292d2101c407', '172.105.247.100', 1670062315, '__ci_last_regenerate|i:1670062315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d92421d5fc5586acf6d5b7e5bde3ca6498ea97d', '172.105.247.100', 1670062315, '__ci_last_regenerate|i:1670062315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('262940f33f4f956347008824c2e1779df54ee587', '172.105.247.100', 1670062315, '__ci_last_regenerate|i:1670062315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db7bfddde9c381bf645ccb820f401068f7862cd', '172.105.247.100', 1670062315, '__ci_last_regenerate|i:1670062315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0c1f97ec93d7aae1fd9fcacb2e794866bff330', '172.105.247.100', 1670062316, '__ci_last_regenerate|i:1670062316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b7ae61dd3fe9f726e1e3f549c4156f6033a124', '172.105.247.100', 1670062316, '__ci_last_regenerate|i:1670062316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51fa5898fa8b276c26af5d6eb9057acaaaf769df', '31.222.203.2', 1670063760, '__ci_last_regenerate|i:1670063760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('944d3a10e7c5cd48f9d4de485443632c06559255', '31.222.203.2', 1670063760, '__ci_last_regenerate|i:1670063760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e617d294c5758f8dd3666608f28685e7abe692', '31.222.203.2', 1670063760, '__ci_last_regenerate|i:1670063760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec67b52f91b1095a83b8ae333b0356dd7dd404c2', '31.222.203.2', 1670063763, '__ci_last_regenerate|i:1670063763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5c79743a70c7fd81183483476cf3d051d67a34', '31.222.203.2', 1670063763, '__ci_last_regenerate|i:1670063763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a00b80078445edf02ff4d46e87ac933f5d7d4c1', '31.222.203.2', 1670063763, '__ci_last_regenerate|i:1670063763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cabbced021cad217ea0b987fe09cba974312e0ab', '31.222.203.2', 1670065562, '__ci_last_regenerate|i:1670065562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71e4d987d5a40bbb397e4387e53f43bacf1e29f', '31.222.203.2', 1670065562, '__ci_last_regenerate|i:1670065562;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977c4b97d532c870117e055cbb6700f9641768b0', '31.222.203.2', 1670065562, '__ci_last_regenerate|i:1670065562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4692ca0aa3812518c7786d2b7fb54a55cf8147b', '31.222.203.2', 1670065564, '__ci_last_regenerate|i:1670065564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56704ec842c457a9dfede122198241cd5ea3eef', '31.222.203.2', 1670065564, '__ci_last_regenerate|i:1670065564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0c08bcab39516fb69e04e6831e68c57148dfcd', '31.222.203.2', 1670065564, '__ci_last_regenerate|i:1670065564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab5cec63609418362c1c6cd8df94f78af8b5469', '45.120.39.90', 1670069657, '__ci_last_regenerate|i:1670069657;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670066907;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dc79ec53848638418e7bd76635673bb918c937', '31.222.203.2', 1670067365, '__ci_last_regenerate|i:1670067365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271d8bf799c0a979f06f40305d4f9e8ecc26a61b', '31.222.203.2', 1670067365, '__ci_last_regenerate|i:1670067365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88a85ab3f99c8ba26deb0812664f7bac7873122', '31.222.203.2', 1670067365, '__ci_last_regenerate|i:1670067365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7d1c208b62180897357158888867fd06601627', '31.222.203.2', 1670067367, '__ci_last_regenerate|i:1670067367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9593557a969852a000b690512f3bf2520d9e00bf', '31.222.203.2', 1670067367, '__ci_last_regenerate|i:1670067367;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1089c8d59b7306a8bf7abc9f0e5fb4bf830842', '31.222.203.2', 1670067367, '__ci_last_regenerate|i:1670067367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87a41483666f60f07313ab110cc96fab232bffe', '172.105.247.100', 1670068313, '__ci_last_regenerate|i:1670068313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee4187cd4ea4e8be03dda2f3a0c60b860c4256a', '172.105.247.100', 1670068313, '__ci_last_regenerate|i:1670068313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d6ae441c1228dea6a92a9c2e4b7bfb2a8745728', '172.105.247.100', 1670068313, '__ci_last_regenerate|i:1670068313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f26b18079b013292f754dbd5d7d6612d1f6818', '172.105.247.100', 1670068314, '__ci_last_regenerate|i:1670068314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6d695487584cf1591169ca61cb7523b59223c3', '172.105.247.100', 1670068314, '__ci_last_regenerate|i:1670068314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3959060a84318d360baaa0c6e7eb0d174d91d504', '172.105.247.100', 1670068314, '__ci_last_regenerate|i:1670068314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53cbeb5a0eb17e7c4c3455c6f2f12942e2a957d2', '172.105.247.100', 1670068314, '__ci_last_regenerate|i:1670068314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27564c194a4175dfb38591128f507f8957472174', '172.105.247.100', 1670068315, '__ci_last_regenerate|i:1670068315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276f192c063681801ae2a73fc7165d59ec0de51f', '172.105.247.100', 1670068315, '__ci_last_regenerate|i:1670068315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce4b68f968bb2addccdbdec0143586ca8fb7dfd', '172.105.247.100', 1670068315, '__ci_last_regenerate|i:1670068315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d4a9a50ee877d9396725e510c0afe72a2bf404', '172.105.247.100', 1670068315, '__ci_last_regenerate|i:1670068315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3146deddb215fdaf53a66a4d3bd060bc4641d8', '172.105.247.100', 1670068315, '__ci_last_regenerate|i:1670068315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c239cfe52544dbd7cd26acdf41b0de016bf9175', '172.105.247.100', 1670068315, '__ci_last_regenerate|i:1670068315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d335603cb8240296da3aad065417233651e34a1', '172.105.247.100', 1670068316, '__ci_last_regenerate|i:1670068315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9cfd6c3cd38757bbf601057a8d1a2a3bba93c3', '172.105.247.100', 1670068316, '__ci_last_regenerate|i:1670068316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf55c0b7ddeca5a6667de1629e01dfd3106e58d', '172.105.247.100', 1670068316, '__ci_last_regenerate|i:1670068316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72aa16b4e24c24fa291e3e6bcd19d3a161ef82da', '172.105.247.100', 1670068316, '__ci_last_regenerate|i:1670068316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37695e065d368e707118e9560f43b6a00ee63c7c', '172.105.247.100', 1670068316, '__ci_last_regenerate|i:1670068316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20624ed03d99b4a47a24e9f887fcb6be8c0f7122', '172.105.247.100', 1670068316, '__ci_last_regenerate|i:1670068316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e743017f9a5c697da21dc1d8b26b8f4bd34efe', '172.105.247.100', 1670068317, '__ci_last_regenerate|i:1670068317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e9202189faa35bc004c1a2ede84098c403be65', '172.105.247.100', 1670068317, '__ci_last_regenerate|i:1670068317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6a7e007ac9f41b7421950eea9c5ec981c641ef', '172.105.247.100', 1670068317, '__ci_last_regenerate|i:1670068317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91649adc5d82c07210aae41d2ac169e1c4579e30', '172.105.247.100', 1670068317, '__ci_last_regenerate|i:1670068317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5d0e322aecca3b7edddeda8aba4d6fa8d38553', '172.105.247.100', 1670068318, '__ci_last_regenerate|i:1670068318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b30bba161da502588e3cdb39c41ae180cd26354', '31.222.203.2', 1670069163, '__ci_last_regenerate|i:1670069163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6578204abc3e47543f14f20df2ba5d31e199a422', '31.222.203.2', 1670069164, '__ci_last_regenerate|i:1670069164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79405c195e76d748d1d898617f62609c9c8059b1', '31.222.203.2', 1670069164, '__ci_last_regenerate|i:1670069164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2847e54615d4e0e8241b43210eda8d052b85d2d5', '31.222.203.2', 1670069164, '__ci_last_regenerate|i:1670069164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5054100950757bca6635368f18b6df7a32c69b77', '31.222.203.2', 1670069164, '__ci_last_regenerate|i:1670069164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34047fb6d23fa2cf571ff3dffb1f6bdc35fe926a', '31.222.203.2', 1670069164, '__ci_last_regenerate|i:1670069164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4475c2085cd64757013c4cd70c449386e3b4453e', '45.120.39.90', 1670069958, '__ci_last_regenerate|i:1670069958;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670069954;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe4b37fd2758f39ed5fb52da9d1c2b2913f75b2', '45.120.39.90', 1670070813, '__ci_last_regenerate|i:1670070813;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670069992;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f9038cce63e6c85d4b1c5a55bab8e6c53e1e12', '45.120.39.90', 1670072171, '__ci_last_regenerate|i:1670072171;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670072161;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e0297d9da862d95b78210111ada3186a9dd911', '31.222.203.2', 1670070961, '__ci_last_regenerate|i:1670070961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92f0b342d0cbe312e89eb13348b67b57fa628c4', '31.222.203.2', 1670070961, '__ci_last_regenerate|i:1670070961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23dd7126156f7f040dcd7e77f6e4e4fffddbb112', '31.222.203.2', 1670070961, '__ci_last_regenerate|i:1670070961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efe69bc7c3bce54e887045393a545f66f14a926f', '31.222.203.2', 1670070963, '__ci_last_regenerate|i:1670070963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55abe07f9bcff76cd5ec31ae817b23bb5d1cb2d7', '31.222.203.2', 1670070963, '__ci_last_regenerate|i:1670070963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee527c02105f91b79708423e36332d046d1cdae', '31.222.203.2', 1670070963, '__ci_last_regenerate|i:1670070963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0178e1ccaad4408e71983602ff7347f0d0834af8', '45.120.39.90', 1670074033, '__ci_last_regenerate|i:1670074033;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670074030;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb33ad6338d3e555bd27713312311e7756401cbb', '31.222.203.2', 1670072760, '__ci_last_regenerate|i:1670072760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7909dc9d268cee28876cc333e63af3982a67e6be', '31.222.203.2', 1670072760, '__ci_last_regenerate|i:1670072760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66b6c9b252deff62a3aa463f779edfb068e9a6e', '31.222.203.2', 1670072760, '__ci_last_regenerate|i:1670072760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f636aed18cf9841e18b8bf94d4f578fef400b6ce', '31.222.203.2', 1670072761, '__ci_last_regenerate|i:1670072761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5866c75b93ef06423a2e8f9f5594f3f68958d1', '31.222.203.2', 1670072761, '__ci_last_regenerate|i:1670072761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af01d5a227e2d8b7cfb2751b2333aecc71aaedd', '31.222.203.2', 1670072761, '__ci_last_regenerate|i:1670072761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94984858dbae3e6f5a400d97ffff6cd115eec80', '45.120.39.90', 1670074421, '__ci_last_regenerate|i:1670074421;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670074033;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32973d5d3abf60a61b77583e79ffee9c21fbf240', '54.74.31.209', 1670074249, '__ci_last_regenerate|i:1670074249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b710ac78cbaa2160cd9350b2632919d5ead90606', '45.120.39.90', 1670074766, '__ci_last_regenerate|i:1670074766;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670074516;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90eb6f2087c0912d5b778191d35648f33879e697', '31.222.203.2', 1670074563, '__ci_last_regenerate|i:1670074563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8489498db415f3091abf82c4505ab9bc31546869', '31.222.203.2', 1670074564, '__ci_last_regenerate|i:1670074564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f536c5623e1d9022332238c1de12ec96e52615', '31.222.203.2', 1670074564, '__ci_last_regenerate|i:1670074564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846051df88e5c597e57ce9add2aa619b672b5357', '31.222.203.2', 1670074564, '__ci_last_regenerate|i:1670074564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c255b41906dec2fdb1c89afd4551779c2c5597a3', '31.222.203.2', 1670074564, '__ci_last_regenerate|i:1670074564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4898a473f390929d1402b361633986d1c2b8412b', '31.222.203.2', 1670074564, '__ci_last_regenerate|i:1670074564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7efc4d0d7722b74ed352b5acd9bdc592d74ada66', '198.235.24.135', 1670074637, '__ci_last_regenerate|i:1670074637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e728261387a1c98412ce72433fbb8f00c2c008a4', '198.235.24.135', 1670074638, '__ci_last_regenerate|i:1670074638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caabccf12b0d48ca43291a34e64f9b9417ed7199', '198.235.24.135', 1670074638, '__ci_last_regenerate|i:1670074638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52deb4685268e584e87a88b4e712028e4972d590', '45.120.39.90', 1670075415, '__ci_last_regenerate|i:1670075415;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670074963;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba71415e1c75d060364fee67b3274896bc81658b', '172.105.247.100', 1670074912, '__ci_last_regenerate|i:1670074912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f4f0070f3212f8215b019d4e19e23fce7a34ff', '172.105.247.100', 1670074912, '__ci_last_regenerate|i:1670074912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336b4c33c07a521d0fd4821ba7d98eec7dff9b09', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e92a58f15d51cc0a63daa8406092c734c925f799', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7407d112af207aa6675a90916461bf798e136aae', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3243ecee549e538e846b943a92c2762ca7837956', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e923380e86f11a4abf6a307f5d6caa0f3cc3e51', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3f10aaa1ca8bc9c837ddd16ed336260070568f', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47b0fae63f79e8f1a93fdbce0eaf74a82ddfec4', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e856bb83cff3531a46c6e3d542bcc14c3394baf', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8693c124f8c6eb7ae88b1203f0603a78b00a0911', '172.105.247.100', 1670074913, '__ci_last_regenerate|i:1670074913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7826a81416ffd098c9119da6cdd162645cbb47', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b48eb2f84eefe00f538b6b2bc42be9d6665d1b', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b67579a34e994c6c31cc7a05e2d1dac52a6c1e', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e530ec32f7afe34c5d62e72e1bd5752fe41b8056', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79b55fbd1d897a467ff90eaa66880014c9b3e42', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56709a80f349cfdfcb93c20b4b1d87b1dafb862', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d2e3efbbe6f98268cd06892b96948133c99058', '172.105.247.100', 1670074914, '__ci_last_regenerate|i:1670074914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105105c0acbdb563dbf788f0a3cdfc7937d60059', '172.105.247.100', 1670074915, '__ci_last_regenerate|i:1670074915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd1f0275a9e74302bcf7eb02d2334eef576715f', '172.105.247.100', 1670074915, '__ci_last_regenerate|i:1670074915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025a24f9f92f0601f801131e941e72706fca4380', '172.105.247.100', 1670074915, '__ci_last_regenerate|i:1670074915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7e3aeca1867cbb812d9882903d8cd7a48c4bdd', '172.105.247.100', 1670074915, '__ci_last_regenerate|i:1670074915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec7b134d672a10d201f3cbe957afb8bbdf68681', '172.105.247.100', 1670074915, '__ci_last_regenerate|i:1670074915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd761fcd866180cc5164320e6917ae097e3062f4', '172.105.247.100', 1670074915, '__ci_last_regenerate|i:1670074915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e225d70fdeb5753bd409eb0fdc7cb265d01fec22', '45.120.39.90', 1670075821, '__ci_last_regenerate|i:1670075821;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670075614;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9afb0484efc77dcff83de976f3fb94b539f78ca8', '45.120.39.90', 1670076959, '__ci_last_regenerate|i:1670076959;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670076013;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad09cbbc7a5301e23a372ee56870ea3b3fee26c', '31.222.203.2', 1670076361, '__ci_last_regenerate|i:1670076361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d56215b6c8f76f06c04e46cc5dd63f10f11d9f0', '31.222.203.2', 1670076361, '__ci_last_regenerate|i:1670076361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb14bd4287887ccb87264fdfe1cfe47bdb6bd74', '31.222.203.2', 1670076361, '__ci_last_regenerate|i:1670076361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812ac6802215313d61d83109e17c4295003a342d', '31.222.203.2', 1670076361, '__ci_last_regenerate|i:1670076361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9934858d432615d5217daed23c267ec1f8d07cd8', '31.222.203.2', 1670076361, '__ci_last_regenerate|i:1670076361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf62c0b84ffd6b551967bd60021d5be8a049adb', '31.222.203.2', 1670076361, '__ci_last_regenerate|i:1670076361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c1d350ea676444c4fc6efeb4ddf397ccac168c', '37.111.217.126', 1670078005, '__ci_last_regenerate|i:1670078005;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670077261;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18ae73ad5acc448a4e3491dcfc4be261e85b0ef', '37.111.217.126', 1670080236, '__ci_last_regenerate|i:1670080236;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670080227;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bd6a183c555c789b18ff3b5affd31b9d6c7bae', '31.222.203.2', 1670078162, '__ci_last_regenerate|i:1670078162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7df547a0fa38e1fca696348bffec4cd30ec7841', '31.222.203.2', 1670078164, '__ci_last_regenerate|i:1670078164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7799446a7935877e071fc15f1b3bf35f3db60dd', '31.222.203.2', 1670078164, '__ci_last_regenerate|i:1670078164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317d56a22c3199828bf0d3243ef5fa76c0164f74', '31.222.203.2', 1670078164, '__ci_last_regenerate|i:1670078164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d271ac2dc95a98d3c479390e9b6738db9baf21bc', '31.222.203.2', 1670078164, '__ci_last_regenerate|i:1670078164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b2f7b68fb67e9b8e4c25559b62af94f9a099ab', '31.222.203.2', 1670078164, '__ci_last_regenerate|i:1670078164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2d0f83e5eeb0d1161117320176396a5f491059', '31.222.203.2', 1670079961, '__ci_last_regenerate|i:1670079961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd2f6377111a1d0f888dd8b58320b2143263c0d', '31.222.203.2', 1670079961, '__ci_last_regenerate|i:1670079961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b4b094122791b5e47205cf35278484f6c3e2ae', '31.222.203.2', 1670079961, '__ci_last_regenerate|i:1670079961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ec7cc43a4f181a0bf451156362d0f5e81808ba', '31.222.203.2', 1670079961, '__ci_last_regenerate|i:1670079961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ad085d2a37b9de1fed9998e7636e4b5e159fdd', '31.222.203.2', 1670079961, '__ci_last_regenerate|i:1670079961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33675895a345cd1bb3fdea49c65b111ab1e5beef', '31.222.203.2', 1670079961, '__ci_last_regenerate|i:1670079961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db206675d4e4882abbf652417d7ffc08adccd120', '37.111.217.126', 1670080562, '__ci_last_regenerate|i:1670080562;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670080554;register_id|s:3:\"268\";cash_in_hand|s:9:\"4890.0000\";register_open_time|s:19:\"2022-12-02 21:30:25\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f71e21b5d79d78aaebc8888a5df4d6c251c620', '172.105.247.100', 1670080308, '__ci_last_regenerate|i:1670080308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d65a5e98d6b0681abb93a02f71ef1aad8ecd72', '172.105.247.100', 1670080308, '__ci_last_regenerate|i:1670080308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f3ce6bd65d57b9f606e2d7b3d57a35ad57f279', '172.105.247.100', 1670080309, '__ci_last_regenerate|i:1670080309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cceea77243d0122e9952cdd6af5666831acac7e7', '172.105.247.100', 1670080309, '__ci_last_regenerate|i:1670080309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5986c3b073fa92b8a7ee93756977db55a7f35d', '172.105.247.100', 1670080309, '__ci_last_regenerate|i:1670080309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8770f4b48332560fdacd455ef815c489765c81c4', '172.105.247.100', 1670080309, '__ci_last_regenerate|i:1670080309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7826afcc17cedb9e5f4a276b8da90d8500114562', '172.105.247.100', 1670080309, '__ci_last_regenerate|i:1670080309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9481b5e0928dffbc649b8ebed3a9c920092db388', '172.105.247.100', 1670080309, '__ci_last_regenerate|i:1670080309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e57f20cd97b588e30adb7f9c59f3bf19740b71', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a1ee98b599b56b34248149d545506c79524107', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1bc68fc773a1b148c56d6224821b0531f3aac9', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4188eafd4f76671a9059c1a562699fef00b08fa2', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277e2ce5c01102dd532707f9cb695f2ad13c1999', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6666d446df03dae9322c68256b837059973cca4c', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1c985dca2d428688a984eeef579ba53c1c1006', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48546398a89ceda09def8d8f98188954ebbd4c3d', '172.105.247.100', 1670080310, '__ci_last_regenerate|i:1670080310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3554be2628ea3af004276555bcd43d67757a0d25', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7971622c7c851fd66a176d3fec15f5317892d0d9', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5f7e1aa8c721f39f9815048d813ee15c1f97e8', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481841730899a39ceea57fe6c6fb62f50a2c2b93', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154910f29f3b701f92f7fb8533b4630c97345c84', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5adac178eee38409b10dbae89546de756f0c3b84', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59097ebafe34f9de059efb7fdc52c333707cb380', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e58316431ee8259bce6bea31d735adba85bc91', '172.105.247.100', 1670080311, '__ci_last_regenerate|i:1670080311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de19aae7ce3f9a8f5668b5f30f115704167ff8d', '37.111.217.126', 1670080581, '__ci_last_regenerate|i:1670080562;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670044667\";last_ip|s:14:\"37.111.217.126\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670080580;register_id|s:3:\"269\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-12-03 21:16:20\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201c8dbd04305d53fe9c81d25b296155c4b22d50', '31.222.203.2', 1670081764, '__ci_last_regenerate|i:1670081764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ba68868a5978e14e7875db4753ad457e8d0815', '31.222.203.2', 1670081765, '__ci_last_regenerate|i:1670081765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b815fc1b660b9b40f518220ef1872ad1984d4028', '31.222.203.2', 1670081765, '__ci_last_regenerate|i:1670081765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d8aad5e7a87f75bbb958c8b7a77802bb1fadc6', '31.222.203.2', 1670081765, '__ci_last_regenerate|i:1670081765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0aaa28baef2b5c782f43e7d84bd1308f0a87e0', '31.222.203.2', 1670081765, '__ci_last_regenerate|i:1670081765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07eece0d5cba815317b6c0cb8c8de6d7cc2bc9cd', '31.222.203.2', 1670081765, '__ci_last_regenerate|i:1670081765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9712377ba0d03b1b8677da7d0a5bdd4fbed460', '31.222.203.2', 1670083563, '__ci_last_regenerate|i:1670083563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09afd32fa61d7ad6b0ad05abf8eafbc41f441941', '31.222.203.2', 1670083564, '__ci_last_regenerate|i:1670083564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50a71bfed96beda7b4ac247431be7d6ec818923', '31.222.203.2', 1670083564, '__ci_last_regenerate|i:1670083564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c388f6f9922a526309bd7b7e7657ef6d9b32bc', '31.222.203.2', 1670083564, '__ci_last_regenerate|i:1670083564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb2c2ce257dc03e7b6ab4bbafabb61f1476f6c8', '31.222.203.2', 1670083564, '__ci_last_regenerate|i:1670083564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cf15d33dbb8a4b90c7bd28a5c96425ec86b20e', '31.222.203.2', 1670083564, '__ci_last_regenerate|i:1670083564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21749e4ca9b24ea085acc331af124ea75a68899c', '172.105.247.100', 1670085111, '__ci_last_regenerate|i:1670085111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd2ab1b24383f2db297ce34b0883b2c491b6d4a', '172.105.247.100', 1670085113, '__ci_last_regenerate|i:1670085113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2e37d9ce15d16ddb63c1ac6b705294f7c2d70e', '172.105.247.100', 1670085114, '__ci_last_regenerate|i:1670085114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3e1d0a67bc4f75987c6147b6ac57836cce6dd7', '172.105.247.100', 1670085114, '__ci_last_regenerate|i:1670085114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ed4fa054a6ef80f9e3d03ba3309bf4812e6668', '172.105.247.100', 1670085114, '__ci_last_regenerate|i:1670085114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7900ecbff6d2cba61c15c3cc25138149ad7a540', '172.105.247.100', 1670085114, '__ci_last_regenerate|i:1670085114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77230779c3e64cc0a59caed4c878e29698897dd8', '172.105.247.100', 1670085115, '__ci_last_regenerate|i:1670085115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('233d4f195e6842ed2f962bdcef5edd46480e1275', '172.105.247.100', 1670085115, '__ci_last_regenerate|i:1670085115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed5b41fcbc9849c9e1911e9ff9976137ca9e911', '172.105.247.100', 1670085115, '__ci_last_regenerate|i:1670085115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885012e2b3073e4318cc46e436356955fa254982', '172.105.247.100', 1670085116, '__ci_last_regenerate|i:1670085116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a75a139310cb54ed7f6fa97cb1daee89ffe402', '172.105.247.100', 1670085116, '__ci_last_regenerate|i:1670085116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('365d10c9f58322837a222be338de728c6bc33666', '172.105.247.100', 1670085116, '__ci_last_regenerate|i:1670085116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a64e88f0dc8413f46f37a33bd9447c9ffdd8a2', '172.105.247.100', 1670085116, '__ci_last_regenerate|i:1670085116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212749295a59ef97aa25623fbb8db0a6678ff71a', '172.105.247.100', 1670085116, '__ci_last_regenerate|i:1670085116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce2d259c05b6be8705b8171fb74697cb5d0bbd9', '172.105.247.100', 1670085116, '__ci_last_regenerate|i:1670085116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36e8b6619fa3e493628a3b5c0b0fec8e6f0cb4a', '172.105.247.100', 1670085117, '__ci_last_regenerate|i:1670085116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f75f292a06d19850a044dac6b5c9137e078ad36f', '172.105.247.100', 1670085117, '__ci_last_regenerate|i:1670085117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffdc87477e4e3eafbf18813c96289176ec223714', '172.105.247.100', 1670085117, '__ci_last_regenerate|i:1670085117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c75ca9044e9ae50fb7b78300e0e5c83bbed803a', '172.105.247.100', 1670085117, '__ci_last_regenerate|i:1670085117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2998e0174aab213c6f90623d0f1bc92ae789206', '172.105.247.100', 1670085118, '__ci_last_regenerate|i:1670085117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a42f657770e75719ab99351a43c941f170d90e9', '172.105.247.100', 1670085118, '__ci_last_regenerate|i:1670085118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9cdccdeaa80c2ffd51306791737c98a87b627c', '172.105.247.100', 1670085118, '__ci_last_regenerate|i:1670085118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a40619e20e98fdbe414c26708a977227740a26', '172.105.247.100', 1670085118, '__ci_last_regenerate|i:1670085118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c829da79c6a477b086c0e9e4fb4da1b17a78c3c', '172.105.247.100', 1670085119, '__ci_last_regenerate|i:1670085119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714fd9fec46e9e517316e11aff0de1a021bb7af4', '31.222.203.2', 1670085363, '__ci_last_regenerate|i:1670085363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13aa844ba3e7d2fe181f474de236eccd092134d7', '31.222.203.2', 1670085364, '__ci_last_regenerate|i:1670085364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9b9ea7617e38e0a1019c88c5f41935e0de532f', '31.222.203.2', 1670085364, '__ci_last_regenerate|i:1670085364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9927cd782fc6457169b0a6d402c730f6f29595c8', '31.222.203.2', 1670085364, '__ci_last_regenerate|i:1670085364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb16705bf5ac3108d8d650eba0c749a9793db6a1', '31.222.203.2', 1670085364, '__ci_last_regenerate|i:1670085364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8568787362d6ab1f98a64c911126da7005abab', '31.222.203.2', 1670085365, '__ci_last_regenerate|i:1670085364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae873e5ab626a3fc1f3b8e33724f174810ba4ed', '31.222.203.2', 1670087159, '__ci_last_regenerate|i:1670087159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d940f94a34152b5f3839bf9e280c59a0d0c4e2', '31.222.203.2', 1670087159, '__ci_last_regenerate|i:1670087159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e59344652b8c0194c2ac69c53e4ea7002e15eaac', '31.222.203.2', 1670087159, '__ci_last_regenerate|i:1670087159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79425f1cbe8dde2a4ea8be02a13df231dd17ea43', '31.222.203.2', 1670087161, '__ci_last_regenerate|i:1670087161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421ce9acdaa3c86b62893b41ef9adbef9ad4731c', '31.222.203.2', 1670087161, '__ci_last_regenerate|i:1670087161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d397e10cf71afc5e6574cacdbfab918916f71f96', '31.222.203.2', 1670087161, '__ci_last_regenerate|i:1670087161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf86c226373a7b5c0f360408febbb0be596f477', '31.222.203.2', 1670088959, '__ci_last_regenerate|i:1670088959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcabc32102aa0233795ed4b6a7b4dc1cc01699a3', '31.222.203.2', 1670088959, '__ci_last_regenerate|i:1670088959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f20eeb3cb283646cda56add3d06442b3155dd1d', '31.222.203.2', 1670088959, '__ci_last_regenerate|i:1670088959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cead466018c6c9439dc98999ba2dc774865abdc1', '31.222.203.2', 1670088960, '__ci_last_regenerate|i:1670088960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ea850400851980206bde22fb8b28a09fd23a75', '31.222.203.2', 1670088960, '__ci_last_regenerate|i:1670088960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235a01e22f7dcd664ac34ac01c9086c369623e5f', '31.222.203.2', 1670088960, '__ci_last_regenerate|i:1670088960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f55be0a435700f6a31dea1668514e019d01a67', '172.105.247.100', 1670089914, '__ci_last_regenerate|i:1670089914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818b1f5bcfc57e0fa595a460b92b4481c272421a', '172.105.247.100', 1670089915, '__ci_last_regenerate|i:1670089914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba98494e6b4bf6814e8a6b2f8257e7062e4d449c', '172.105.247.100', 1670089915, '__ci_last_regenerate|i:1670089915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f44d7fe584cad3a85dd426cfa8b02d04548ee8', '172.105.247.100', 1670089915, '__ci_last_regenerate|i:1670089915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48fbbf8851ec702c8c7c62d2187413b0d23e7e35', '172.105.247.100', 1670089915, '__ci_last_regenerate|i:1670089915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b66c9b4946fd3ef37bea1fd9d932597e5ffd91', '172.105.247.100', 1670089915, '__ci_last_regenerate|i:1670089915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb5fdc654ee90c98c91c85fddce8220f2d2a5a74', '172.105.247.100', 1670089915, '__ci_last_regenerate|i:1670089915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb87c29aa25151b09628694f94ce7fee0e2ec92a', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aab7791c084c10e37b178d968e775fe23d20a4c', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1bff413db0d1be148f3def52da1e60865bbbda', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150c1a6972cffb87e8f71b525d0e1e02870d7aa4', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0247e70c23d4a44b9fb1e4004601488253920201', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce95073b3e5dfa781fcdbbae504c2ad1f9f3428', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202935fb2a2fd5545ab31657b1bc470f89ae217f', '172.105.247.100', 1670089916, '__ci_last_regenerate|i:1670089916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655aff174716dc41536a38b81e606d98b4cde6d7', '172.105.247.100', 1670089917, '__ci_last_regenerate|i:1670089916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f24f6e9aad60814376d6f6d067500d0959ba5a', '172.105.247.100', 1670089917, '__ci_last_regenerate|i:1670089917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72df06c131660febdce9e22a88a7ede3199aad46', '172.105.247.100', 1670089917, '__ci_last_regenerate|i:1670089917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69483750610ff8045f7b1b23b87b884557fe1d5', '172.105.247.100', 1670089917, '__ci_last_regenerate|i:1670089917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6ca6ee97ce4bf9363941d07da018738f7071fa', '172.105.247.100', 1670089917, '__ci_last_regenerate|i:1670089917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc426f82bfc896587d8864aaf2618aedc7554e59', '172.105.247.100', 1670089917, '__ci_last_regenerate|i:1670089917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dd1edf241032fe01b45bc642e2afdbccd8233c6', '172.105.247.100', 1670089918, '__ci_last_regenerate|i:1670089918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0e3e0005bacd257931c0e346a19353c1f85441', '172.105.247.100', 1670089918, '__ci_last_regenerate|i:1670089918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3621cd9cdd85a177cc0251979b39602d14fd513', '172.105.247.100', 1670089918, '__ci_last_regenerate|i:1670089918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('242c92fcb61e02266d6e367548caec87307d0a2b', '172.105.247.100', 1670089918, '__ci_last_regenerate|i:1670089918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a62d4b7d70102ae89bd7f7400004d0847b0c1c6', '31.222.203.2', 1670090758, '__ci_last_regenerate|i:1670090758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5395327efa5195c8a33fbdef29b9271a372a8283', '31.222.203.2', 1670090759, '__ci_last_regenerate|i:1670090759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21dc8d1483c7a73939670fcd57bf6805c7ed332d', '31.222.203.2', 1670090759, '__ci_last_regenerate|i:1670090759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8c11e28a48b3af95ae77d8f8df8493f56c0ba1', '31.222.203.2', 1670090759, '__ci_last_regenerate|i:1670090759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39492be8f05718cf6acbd3954731499e63dd086a', '31.222.203.2', 1670090759, '__ci_last_regenerate|i:1670090759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d708e55793a45efb218a663fc1e21f1e973b190', '31.222.203.2', 1670090759, '__ci_last_regenerate|i:1670090759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af371411a4ceea2fd45c2d95df2a94868c4abe27', '31.222.203.2', 1670092566, '__ci_last_regenerate|i:1670092566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c9b0683b2ebc6fcf7de5c367d5bef99edddf04', '31.222.203.2', 1670092566, '__ci_last_regenerate|i:1670092566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db50ff216a50addadd919521aa06ae49fca6fb19', '31.222.203.2', 1670092566, '__ci_last_regenerate|i:1670092566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e3ea886f9e1e153abd8064c1107c1c97d17f37', '31.222.203.2', 1670092566, '__ci_last_regenerate|i:1670092566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a554cc009fc2f2d98759bef0f4ed2bbc4d8012c', '31.222.203.2', 1670092566, '__ci_last_regenerate|i:1670092566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb186489cdd6bcc6aaf0a0d0dca97dd304d2e1e', '31.222.203.2', 1670092566, '__ci_last_regenerate|i:1670092566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063c3d79e321ca830278f72ab31db825c5020455', '31.222.203.2', 1670094338, '__ci_last_regenerate|i:1670094338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd33dbf2248e64ac7b7059bb09a7b5043ce8853d', '31.222.203.2', 1670094340, '__ci_last_regenerate|i:1670094340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a1035657af819cd46ef9784950ad247b7cb692', '31.222.203.2', 1670094340, '__ci_last_regenerate|i:1670094340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0d487af34a1769beed815c0ddfd06188730115', '31.222.203.2', 1670094340, '__ci_last_regenerate|i:1670094340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcfc45bce3b526cc043c4e07328f1e990503430e', '31.222.203.2', 1670094340, '__ci_last_regenerate|i:1670094340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e9e3c6ec22fbe0d88c7589b48f70b9a5fa5903', '31.222.203.2', 1670094340, '__ci_last_regenerate|i:1670094340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353597bd3b405b26a40e977dc37113841954082b', '172.105.247.100', 1670094707, '__ci_last_regenerate|i:1670094707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b1fc2e903a5ee50375499ecb20dd6e1d34a16c', '172.105.247.100', 1670094709, '__ci_last_regenerate|i:1670094709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fcfd5ff78cbc2c4ca8d03ac89fe47a860b6cbe', '172.105.247.100', 1670094709, '__ci_last_regenerate|i:1670094709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98af71f63fd6a6ca942fbb99fb8ca97d9ef37d24', '172.105.247.100', 1670094710, '__ci_last_regenerate|i:1670094710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61af91038665dbfb621bdf9f795459b5800fcd82', '172.105.247.100', 1670094710, '__ci_last_regenerate|i:1670094710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b641ee6a725cdcb2b6cdea8c0f45dc845fb43a09', '172.105.247.100', 1670094710, '__ci_last_regenerate|i:1670094710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a907fb217c250166f18d9e3bb97372988710bd0', '172.105.247.100', 1670094710, '__ci_last_regenerate|i:1670094710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1490f9f199114066422a0ca787795d15642647', '172.105.247.100', 1670094711, '__ci_last_regenerate|i:1670094711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c690f7c44937ad630213e67e0b56ae5e7c9a9890', '172.105.247.100', 1670094711, '__ci_last_regenerate|i:1670094711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369711eb6317ab5f4a9e810eaf79dfbd4f440d22', '172.105.247.100', 1670094711, '__ci_last_regenerate|i:1670094711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf6ec2ea31818dea1c433444c1974615c4ad3aa', '172.105.247.100', 1670094711, '__ci_last_regenerate|i:1670094711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6da709432b34f38045b3d8da987839f4bfe7036', '172.105.247.100', 1670094711, '__ci_last_regenerate|i:1670094711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb8c1a1f25f7e075ef5d2b0f482e6b89b639301', '172.105.247.100', 1670094712, '__ci_last_regenerate|i:1670094712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eca9844ffa8eba3a9b61b9beeadfbc98b617d3c', '172.105.247.100', 1670094712, '__ci_last_regenerate|i:1670094712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b190e8bef6853413a0a37faa7f205ab31910773', '172.105.247.100', 1670094712, '__ci_last_regenerate|i:1670094712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28a2ce65905d1be6208bbb73456a66d5a830fc2', '172.105.247.100', 1670094712, '__ci_last_regenerate|i:1670094712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519a196f3ced9557997c9caef76ab266fe632a77', '172.105.247.100', 1670094712, '__ci_last_regenerate|i:1670094712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91b96c7eb6568bbc7ff34e8df82274b4042e490', '172.105.247.100', 1670094712, '__ci_last_regenerate|i:1670094712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88ec8258757209e6518074a32cf31cfbbd5bfaa', '172.105.247.100', 1670094713, '__ci_last_regenerate|i:1670094713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6da80365b7141829b1eec301a9753ca22373ff6', '172.105.247.100', 1670094713, '__ci_last_regenerate|i:1670094713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2849879a6a6c951f961dced78a48b29bdd6c31a5', '172.105.247.100', 1670094713, '__ci_last_regenerate|i:1670094713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da7d253ee451b43e49448a95fbcae663613ac8a', '172.105.247.100', 1670094713, '__ci_last_regenerate|i:1670094713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d4c430a1b32ab424118916c198531e9aff0af5', '172.105.247.100', 1670094714, '__ci_last_regenerate|i:1670094714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da724fdd74ae163778004df075a86615a1c16127', '172.105.247.100', 1670094714, '__ci_last_regenerate|i:1670094714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a3973fb52da0cdba0b045accd12c982414106c', '31.222.203.2', 1670096141, '__ci_last_regenerate|i:1670096140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1861f5f4cdf6a948aa454c786764066e90bea86e', '31.222.203.2', 1670096142, '__ci_last_regenerate|i:1670096142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ca605bfd243adddda98c019ac02d9281ee1709', '31.222.203.2', 1670096142, '__ci_last_regenerate|i:1670096142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423c85bba3bf636f880b5fe75f0b7288cd1fd4dc', '31.222.203.2', 1670096142, '__ci_last_regenerate|i:1670096142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f4d5786b9333821bd84b982d371cb454ee2902', '31.222.203.2', 1670096142, '__ci_last_regenerate|i:1670096142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc537e7856654cc3420c8d6a2ac7f220ed35a659', '31.222.203.2', 1670096142, '__ci_last_regenerate|i:1670096142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc451e2d74b9340e2c6f81c1d003aefd0d93a6c', '31.222.203.2', 1670097941, '__ci_last_regenerate|i:1670097940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19e60833a3bdb68ce452af2afd81a6f6247d3eca', '31.222.203.2', 1670097941, '__ci_last_regenerate|i:1670097941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587ba5dd6caaa6419199f95d4de15f54c09c3ac4', '31.222.203.2', 1670097941, '__ci_last_regenerate|i:1670097941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a0f27063cb199cb7779c9c6bd6f304c47ea8d5', '31.222.203.2', 1670097941, '__ci_last_regenerate|i:1670097941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc63900d7bc1e693c2d3a2662fff29772649cfa8', '31.222.203.2', 1670097941, '__ci_last_regenerate|i:1670097941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b278003df545c2405bc07807453091137df939ff', '31.222.203.2', 1670097941, '__ci_last_regenerate|i:1670097941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be958b85bc6234eb57670c94267519aff3c30b12', '31.222.203.2', 1670201912, '__ci_last_regenerate|i:1670201912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28948c70f6bebfd35406c2264d698a128f0d67f5', '31.222.203.2', 1670201913, '__ci_last_regenerate|i:1670201913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e2360bf7feb4070b002dcf577599ec202ae0d9', '31.222.203.2', 1670201913, '__ci_last_regenerate|i:1670201913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e11d3d8d66965ebc5f916538437cd640cb4a439', '31.222.203.2', 1670201913, '__ci_last_regenerate|i:1670201913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4194a5c765ca821061d395f466cbdc026166fe6e', '31.222.203.2', 1670201913, '__ci_last_regenerate|i:1670201913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d4ae552add08caa07c66a1a9be3921431cd176', '31.222.203.2', 1670201913, '__ci_last_regenerate|i:1670201913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da228ebc4d409f7f9d9638b202f1c5282792a8f', '172.105.247.100', 1670203307, '__ci_last_regenerate|i:1670203307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e302ec988c45172ff2bb0c5c722b286a7c50ba', '172.105.247.100', 1670203307, '__ci_last_regenerate|i:1670203307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d620bc86edcc9ffb9da7dfcf6662c26910e45de5', '172.105.247.100', 1670203308, '__ci_last_regenerate|i:1670203308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d6db63db7a8f0a79b98b4e34cfd2a26d2257481', '172.105.247.100', 1670203308, '__ci_last_regenerate|i:1670203308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5160823a6bb1af609404a0a4739a2f7553997457', '172.105.247.100', 1670203308, '__ci_last_regenerate|i:1670203308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809619d21e72da59631d84bdb9e41df4a641c03c', '172.105.247.100', 1670203308, '__ci_last_regenerate|i:1670203308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be98fdf7c6d83e5cffa29be34b868f66aa10987', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ba4ed6d7374736f8afbb4a939bb57fd0e7b17f', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d003c89604b4eb0db04c9d3f0ef4fcaadaec6f4', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d3388291a409e2c68b6269df6ca6bae824123b', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8df680442505bea09b4194e63341eb84da2930', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b6b8baf6560136ca8c784f0229535adfb648ac', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec3f9cf4c8552267d2d4f4495a0991e5a2ebd8c', '172.105.247.100', 1670203309, '__ci_last_regenerate|i:1670203309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c35b85c1624b6cf24465ddbeaefab25d12bf98', '172.105.247.100', 1670203310, '__ci_last_regenerate|i:1670203309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa9770ca2e2de1d59a90b655250e533845601d5', '172.105.247.100', 1670203310, '__ci_last_regenerate|i:1670203310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1b7c02b24d9a33ff019d89b0bdc92db4502b4d', '172.105.247.100', 1670203310, '__ci_last_regenerate|i:1670203310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a2e93ec8f39650c94a80e862673091ba1ab9be', '172.105.247.100', 1670203310, '__ci_last_regenerate|i:1670203310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29d26058e788eb9e1a779a210218c571a7eff4d', '172.105.247.100', 1670203310, '__ci_last_regenerate|i:1670203310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1129824d7941e0831c0330f3d3ad3c5a265ac27', '172.105.247.100', 1670203310, '__ci_last_regenerate|i:1670203310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8097322311ba4cfce0caf7a11c45b784975f90c', '172.105.247.100', 1670203311, '__ci_last_regenerate|i:1670203311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43af5f37a4de93c8793ddaa785a1332b31f117f8', '172.105.247.100', 1670203311, '__ci_last_regenerate|i:1670203311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('284472c8dac3975df4eb51bcd3d1081082119073', '172.105.247.100', 1670203311, '__ci_last_regenerate|i:1670203311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467b968804e8e55613cdef5c0bc849d16502162e', '172.105.247.100', 1670203311, '__ci_last_regenerate|i:1670203311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e03fc27ddd25a322061b4751d99316e1c036329', '172.105.247.100', 1670203312, '__ci_last_regenerate|i:1670203312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd85d776e5a7e5ddc989bf0e6e16f455e88d335', '170.187.184.242', 1670203313, '__ci_last_regenerate|i:1670203313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea091f18eecfbde32b90ab639f9dd5891614a907', '170.187.184.242', 1670203316, '__ci_last_regenerate|i:1670203316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8caf08a9301bdc2833a411c39d09bda02845d1b', '170.187.184.242', 1670203316, '__ci_last_regenerate|i:1670203316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d16c68791df2f54286a5b16e19076235fa0851e', '170.187.184.242', 1670203316, '__ci_last_regenerate|i:1670203316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4121f832c124bbaf8725249a1d5ebefb0335ace2', '170.187.184.242', 1670203316, '__ci_last_regenerate|i:1670203316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa07320ababc365d51d46d562e803d0373ddf564', '170.187.184.242', 1670203316, '__ci_last_regenerate|i:1670203316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01665f6897dde30755d99024f4b565efec9b03b', '31.222.203.2', 1670203704, '__ci_last_regenerate|i:1670203704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b424c802a4055e147ca8ea2b851c50538f6a189c', '31.222.203.2', 1670203704, '__ci_last_regenerate|i:1670203704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('117360073639777ab0f29c6a4666d378141f3eb9', '31.222.203.2', 1670203704, '__ci_last_regenerate|i:1670203704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b1c5f61cb0ccbb33421c39c76796850f411bcd', '31.222.203.2', 1670203704, '__ci_last_regenerate|i:1670203704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb201b850af64edb18ffe4ab79a0f51cd231cb4f', '31.222.203.2', 1670203704, '__ci_last_regenerate|i:1670203704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32f3121530c5714cef4e2cff6cfdd50fec8a703', '31.222.203.2', 1670203704, '__ci_last_regenerate|i:1670203704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1906e89004d6feb33c2575d9e8b92670f25545', '31.222.203.2', 1670205494, '__ci_last_regenerate|i:1670205494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79963d5721db1b1fa7048b6b7e57284900699ac', '31.222.203.2', 1670205495, '__ci_last_regenerate|i:1670205495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c95a6b28a8b361b2660d09503c52d968ee54b22', '31.222.203.2', 1670205495, '__ci_last_regenerate|i:1670205495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca9ba8e4c76caa4fbf06188b05a632e3d5c6bfa', '31.222.203.2', 1670205495, '__ci_last_regenerate|i:1670205495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd28aec6eaf589af45bc34298deb7a5b1f095a8', '31.222.203.2', 1670205495, '__ci_last_regenerate|i:1670205495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8ac9f1686f0a0b4c82299c9b81f6a8fb41d6d5', '31.222.203.2', 1670205495, '__ci_last_regenerate|i:1670205495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db21bffe19a1bff137e2bede829f187fa26da0c4', '198.235.24.164', 1670205810, '__ci_last_regenerate|i:1670205810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f9180e43b4bb6dd62a7d805bcd87393b497f97', '198.235.24.164', 1670205812, '__ci_last_regenerate|i:1670205812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5555f4c432235364d599e7ff1674734ee351a8f', '198.235.24.164', 1670205812, '__ci_last_regenerate|i:1670205812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6220e504793dc0f2c71d187819a7e2a23d1063c9', '31.222.203.2', 1670207297, '__ci_last_regenerate|i:1670207297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ac9816065b1923efe6efe73f6b736e67f17d5b', '31.222.203.2', 1670207297, '__ci_last_regenerate|i:1670207297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047a64331e58092e7474e0a915ae49a2309536c5', '31.222.203.2', 1670207297, '__ci_last_regenerate|i:1670207297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7d8635ccc284f056d581b8793696b5239fe104', '31.222.203.2', 1670207298, '__ci_last_regenerate|i:1670207298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea28d52c245e5350c3e4b2a914fc555f7b083282', '31.222.203.2', 1670207298, '__ci_last_regenerate|i:1670207298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f567a67f384ecb102657f2fc1f5fb09b064fa1b', '31.222.203.2', 1670207298, '__ci_last_regenerate|i:1670207298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87329d6197aa1bbdb9bf0668f1a31e7f59e39f39', '172.105.247.100', 1670208720, '__ci_last_regenerate|i:1670208720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48d9892233f865e14446120a1f563310ae446de', '172.105.247.100', 1670208720, '__ci_last_regenerate|i:1670208720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2e5a71cc7bf6cb0824f0204043ab61aaac3efbd', '172.105.247.100', 1670208721, '__ci_last_regenerate|i:1670208721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8739416caa500490874f84a41ce1c32dbb9c4d2c', '172.105.247.100', 1670208721, '__ci_last_regenerate|i:1670208721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60aed2f312014519b44d3a00f07164f3feddd2b', '172.105.247.100', 1670208721, '__ci_last_regenerate|i:1670208721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('578df13bb47bad81a37578bb2e5fa07a5834b631', '172.105.247.100', 1670208721, '__ci_last_regenerate|i:1670208721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab16f5f84ba9bbb933a2c5987b3960087feaf11', '172.105.247.100', 1670208721, '__ci_last_regenerate|i:1670208721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239a9750b6282fc1a094bf21cb1fb42098bcfb4e', '172.105.247.100', 1670208721, '__ci_last_regenerate|i:1670208721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('677044fa94df346bb517af9241c65068cfa40f00', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83baae7d9e4bc9e85b5c5f22a22d134afcb02878', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80629f2a4eb0cdadc85f6ceed35e1ba7e56eea3', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de1dc2dd497105a3e1378edbd94c5be4b4ac05c', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9841bb6f6b214857fb732c966b82d128dce057', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ed22f01bb94249ced0ddd1dd4effc955237a91', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6268da61609afea20054d5efb7918b540cd9fc3', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d92f24cc04623d7e8352d6e7e7bc0a6b60be28', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('086d6ffb35a69653e5d06451c9a2b800ad97bfd0', '172.105.247.100', 1670208722, '__ci_last_regenerate|i:1670208722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719c60c12c5a0de885b149c5cd0dba4d3570a54d', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9dfb6a54f24ab8ab4ab90bd59d1ba85d9796473', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fb68a80c005a18c793096916213dbb906d5005', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a61151f92dfd005ad59c88cfe48bf98d2536b7', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b90416d2db5702842302bd51b980494fdc96f9', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3cde3de73b7d583dcef0046849c7c50a7a15f5', '172.105.247.100', 1670208723, '__ci_last_regenerate|i:1670208723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe88e1e0bd4d598af18fc2da3c0cfb0516ee6eea', '172.105.247.100', 1670208724, '__ci_last_regenerate|i:1670208724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de22b96b7eca0d869377a8f5b6c58d7f891c8974', '31.222.203.2', 1670209111, '__ci_last_regenerate|i:1670209111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e85f14dfff98c43b77852e3e007c67d4684ba5', '31.222.203.2', 1670209112, '__ci_last_regenerate|i:1670209112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74af869d9fbe336ae8e79609471ad26b7f15c1ff', '31.222.203.2', 1670209112, '__ci_last_regenerate|i:1670209112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff4e482d05842d58732523be9d1650eb1c42c4e', '31.222.203.2', 1670209112, '__ci_last_regenerate|i:1670209112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662f41b09b3642c3baa14235f397f60dfb90d4cb', '31.222.203.2', 1670209112, '__ci_last_regenerate|i:1670209112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03e999f5c0b5bc2ac90f480093a38cfeb7510c4', '31.222.203.2', 1670209112, '__ci_last_regenerate|i:1670209112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88fc03606897513b97665cbde1f01a802c4048a', '31.222.203.2', 1670210918, '__ci_last_regenerate|i:1670210918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb858aa412025fb681c9c2ac9d406131c5eca9d8', '31.222.203.2', 1670210919, '__ci_last_regenerate|i:1670210919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a81e5138b9a001962ebcdd9040db6b25d6c74d', '31.222.203.2', 1670210919, '__ci_last_regenerate|i:1670210919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e16f62671288254126eeaeb5c0182e6f7431849', '31.222.203.2', 1670210919, '__ci_last_regenerate|i:1670210919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c208febe50c11f761bd896548e2c09985232cb0', '31.222.203.2', 1670210919, '__ci_last_regenerate|i:1670210919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('453ab163a6148c03312aaa9a4253bb9f8cda060b', '31.222.203.2', 1670210919, '__ci_last_regenerate|i:1670210919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba5e3f44ffc1acd9c90371bba0177943659ad349', '31.222.203.2', 1670212680, '__ci_last_regenerate|i:1670212680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3812cda499c5d7dcc1bbe95225cdfdc510041da0', '31.222.203.2', 1670212680, '__ci_last_regenerate|i:1670212680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f7d80fee57f613cfc36cb9afaf19fe592360c4', '31.222.203.2', 1670212680, '__ci_last_regenerate|i:1670212680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fcef6723c95361d375f83fb2226f99578af718e', '31.222.203.2', 1670212680, '__ci_last_regenerate|i:1670212680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637b12cc9ed1d89c8f6573bfbfd47b2da8464915', '31.222.203.2', 1670212680, '__ci_last_regenerate|i:1670212680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b702f8941adc02d7165f24309519ca49bd7d801', '31.222.203.2', 1670212680, '__ci_last_regenerate|i:1670212680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49cc35fdde8e1ebdca23482549ceefd2a44c6570', '172.105.247.100', 1670214106, '__ci_last_regenerate|i:1670214106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65659a854cee82784964e4674cd9355273b62db4', '172.105.247.100', 1670214107, '__ci_last_regenerate|i:1670214106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0500c10328bcacba210d30a003eca1e3675054d7', '172.105.247.100', 1670214107, '__ci_last_regenerate|i:1670214107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f443a7cc0ac42264dcfff773645b4251f882853f', '172.105.247.100', 1670214107, '__ci_last_regenerate|i:1670214107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c593dd5404df82a65e30eb7d86f8f1d0437ca331', '172.105.247.100', 1670214107, '__ci_last_regenerate|i:1670214107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eedf85effcb3818add14ef64382707798276674', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4610222beb422dab0ef4de4ff33751a8b8cacdb5', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca3554eb17c8ae7ec8cf836147aa5383bb28ba4', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2699266528c4b74ca1f0cb3c7e93c0ad66202df', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0231d3717df46ace2cabab6b04330dd8ab1278', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183636dc062a229c2d7cf581f6e853a86849a8d9', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2225095cb7aceca0558b0102a5af6d795617f2', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b8b015ed0a5806e8b87083404c4398eff4c85df', '172.105.247.100', 1670214108, '__ci_last_regenerate|i:1670214108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f1bc62df03f3c8aa770e2eecd44c548e16fd28a', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45454a69ff09bc421751acfb7920ff84a1fabd86', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70a53965a3f723c46aee6f628425c600d9d3858', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9ac0da34d2cc12dc9ab508cd871dc683c167c9', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f47b36deb09a92b246a06aafa643b6cee0dcad', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e59e91d97079cf91845ef39e78f781aa3cb220e', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1432ec4fb4a146e35ebcc814b0c8fd672212f017', '172.105.247.100', 1670214109, '__ci_last_regenerate|i:1670214109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10c65a65cec59d5b269c977884f03d231d9a590', '172.105.247.100', 1670214110, '__ci_last_regenerate|i:1670214110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1189017c84b43d471a84fd1866f80d6a6e3f4c6', '172.105.247.100', 1670214110, '__ci_last_regenerate|i:1670214110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7bb70d0af3340c8ee7867429edfdcc457f0137', '172.105.247.100', 1670214110, '__ci_last_regenerate|i:1670214110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3f0ac16caf6c5b9049b13f1a1e122d5cdd63db', '172.105.247.100', 1670214110, '__ci_last_regenerate|i:1670214110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261e60874c17414f9c8241464ab9f13da59bad0e', '31.222.203.2', 1670214475, '__ci_last_regenerate|i:1670214475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d268678c4d95b330bbae7a99dbe578690368be9', '31.222.203.2', 1670214475, '__ci_last_regenerate|i:1670214475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd29ce59f3334aaa167407a002ea498da199a00', '31.222.203.2', 1670214475, '__ci_last_regenerate|i:1670214475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ae0eae424b0e986d3d8f0256d8a11cee84d7c5', '31.222.203.2', 1670214475, '__ci_last_regenerate|i:1670214475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d722d47f74e1fcaa11f4abb49c7d07e41d83bf', '31.222.203.2', 1670214475, '__ci_last_regenerate|i:1670214475;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa4b6c03ddccd2093dd9a19a9d32c98b283ddab', '31.222.203.2', 1670214475, '__ci_last_regenerate|i:1670214475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4e3a2240c934ee48862c69b5e745e11e89f319', '45.120.39.90', 1670215946, '__ci_last_regenerate|i:1670215946;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670066873\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670215918;register_id|s:3:\"269\";cash_in_hand|s:9:\"4920.0000\";register_open_time|s:19:\"2022-12-03 21:16:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c007026f844027d480223b605d2b5804293903bc', '45.120.39.90', 1670217004, '__ci_last_regenerate|i:1670217004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670066873\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670216027;register_id|s:3:\"270\";cash_in_hand|s:9:\"4560.0000\";register_open_time|s:19:\"2022-12-05 10:53:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7ceb9b01bce1da5008af65816ab0807bf37c13', '31.222.203.2', 1670216254, '__ci_last_regenerate|i:1670216254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd012aea60414a01f8db1d04541825aafdcfc022', '31.222.203.2', 1670216254, '__ci_last_regenerate|i:1670216254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed86b10fa8a5a805d01fb0aeac916a10d03b13a4', '31.222.203.2', 1670216254, '__ci_last_regenerate|i:1670216254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf595ff883c91a6d136c9caf705a67031a566824', '31.222.203.2', 1670216256, '__ci_last_regenerate|i:1670216256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f86f1a661ae884abfc9a8e5f5d07be62cc155a5', '31.222.203.2', 1670216256, '__ci_last_regenerate|i:1670216256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1515fdac3d86cd5029298067a3919520b4653132', '31.222.203.2', 1670216256, '__ci_last_regenerate|i:1670216256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cdb694cccb74210c44a7d98d7a794bf0bf647df', '45.120.39.90', 1670217005, '__ci_last_regenerate|i:1670217004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670066873\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670217004;register_id|s:3:\"270\";cash_in_hand|s:9:\"4560.0000\";register_open_time|s:19:\"2022-12-05 10:53:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab6d5422a47bb13eafa51554738377622b91f72', '31.222.203.2', 1670218088, '__ci_last_regenerate|i:1670218088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b0ea9d5a8d61b7be67caa6601bc5a7823072d4', '31.222.203.2', 1670218089, '__ci_last_regenerate|i:1670218089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d6257414febb331dd80d0955b4f8c97a252532', '31.222.203.2', 1670218089, '__ci_last_regenerate|i:1670218089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d5b10716d4a4e29ba25c84f923c1340db79c91', '31.222.203.2', 1670218089, '__ci_last_regenerate|i:1670218089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a48c42dd64374774a4d4070baab8c2985afa15', '31.222.203.2', 1670218089, '__ci_last_regenerate|i:1670218089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ccd9a8a386389d543e2ff771e09a3ae29696e06', '31.222.203.2', 1670218089, '__ci_last_regenerate|i:1670218089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb66af02ee9baf82bae9d7adea533c043499e67', '172.105.247.100', 1670219510, '__ci_last_regenerate|i:1670219510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86619ad9e0afa4372d798d828ef78cca360681af', '172.105.247.100', 1670219510, '__ci_last_regenerate|i:1670219510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4626a9c19e505c0f8034b548b135bd05317dd2bd', '172.105.247.100', 1670219510, '__ci_last_regenerate|i:1670219510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ebb45a84bacf531fc23a8116734cb0785702baa', '172.105.247.100', 1670219510, '__ci_last_regenerate|i:1670219510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aee2c050a4cbcb035fe451e03ce2ee2284293cf', '172.105.247.100', 1670219510, '__ci_last_regenerate|i:1670219510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e882dd3ce6f953e13e8119fbee4c6c48b15f3f', '172.105.247.100', 1670219510, '__ci_last_regenerate|i:1670219510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06240dbe4ec11cc19f53ff4b3a887920155d67bd', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f23201d33143d0925617fa3ce3dd0490549775', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cbc11e0b0ce21a956dd50d2ae17b580562a5def', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5756da31720af862eb3ce432ee6c10f12edc9a1', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9213947bc3ef56028b6493b7e90d9d5b62feb686', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bff0d5f55eabbcdd4ad325f4bdd23d27d2b7548', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dfc34ed77f1ea23279d3ab333b87314dd77f07', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdee61ebd45fae31e0f5a6f477b535c8bbddf782', '172.105.247.100', 1670219511, '__ci_last_regenerate|i:1670219511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624ac20bb96d59965520103ec245216e3705e0ab', '172.105.247.100', 1670219512, '__ci_last_regenerate|i:1670219512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db1c5936594244fd6fdfb8a41fe6692490ac7efb', '172.105.247.100', 1670219512, '__ci_last_regenerate|i:1670219512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f944b1a150e2cdff8958b1a917368fb3e6a6ed1', '172.105.247.100', 1670219512, '__ci_last_regenerate|i:1670219512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7e8cd34427b138bd6686080ca5dbc3f6f76f16', '172.105.247.100', 1670219512, '__ci_last_regenerate|i:1670219512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18970ba6ff7c856fd3a1860499fce54a1e757ab7', '172.105.247.100', 1670219512, '__ci_last_regenerate|i:1670219512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e326a100e8409b3e71eb7e07319836031207d1df', '172.105.247.100', 1670219512, '__ci_last_regenerate|i:1670219512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ef33fd2ea2dd1169524e3aa1b61aac27b64e58', '172.105.247.100', 1670219513, '__ci_last_regenerate|i:1670219513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79ce5514aefdf8f166423343b838c4e0fefbd7b', '172.105.247.100', 1670219513, '__ci_last_regenerate|i:1670219513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4cedb8a98900bd26d66c740dabf032db2b8b2c7', '172.105.247.100', 1670219513, '__ci_last_regenerate|i:1670219513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96aa32fda9facdeb3d6d358ad637f5a07db42ec7', '172.105.247.100', 1670219513, '__ci_last_regenerate|i:1670219513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bfecbcd9af5b15c9cac2f4f64031bb6486cbc46', '31.222.203.2', 1670219880, '__ci_last_regenerate|i:1670219880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214a413b033a71051fc11d1743691d9b85ea2fb4', '31.222.203.2', 1670219882, '__ci_last_regenerate|i:1670219882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0465d87fba609d2a8afb4154d8708a16e325b4b', '31.222.203.2', 1670219882, '__ci_last_regenerate|i:1670219882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a162b99e5772b0f1127e899d39508aea509342d', '31.222.203.2', 1670219882, '__ci_last_regenerate|i:1670219882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cc3fa502216db88c8783635779b79b2d9bd370', '31.222.203.2', 1670219882, '__ci_last_regenerate|i:1670219882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e12f3ad3d1b71cfcf33921feaefb1e48be0e6ed', '31.222.203.2', 1670219882, '__ci_last_regenerate|i:1670219882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6aabf1e4e3afeaa4910e9883bffbdcc93e165b0', '31.222.203.2', 1670221689, '__ci_last_regenerate|i:1670221689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752ba0a3c58ec5a647f179d7463d98cee03e838e', '31.222.203.2', 1670221689, '__ci_last_regenerate|i:1670221689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76df7265f8508e4e86b136976862271937fcfc67', '31.222.203.2', 1670221689, '__ci_last_regenerate|i:1670221689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f33b865248a40983255641bb11bcf1fab336a07', '31.222.203.2', 1670221690, '__ci_last_regenerate|i:1670221690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950d55ae385ad0c463f0763ea1889b3b43e0b70a', '31.222.203.2', 1670221690, '__ci_last_regenerate|i:1670221690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0966eaaa203b87f23013cbc4057b7a342c7fba13', '31.222.203.2', 1670221690, '__ci_last_regenerate|i:1670221690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42f901abb1ce59f719484ab2defa344ba2d54f6', '31.222.203.2', 1670223485, '__ci_last_regenerate|i:1670223485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae05b5a2dbbe9ae3d78c276da7ecc43439e73142', '31.222.203.2', 1670223485, '__ci_last_regenerate|i:1670223485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc77b4c9ff509cfe7431269c95b124eed9ced7e', '31.222.203.2', 1670223485, '__ci_last_regenerate|i:1670223485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac4ffb777b153d9ee71de11b1a08c1949b86c6a', '31.222.203.2', 1670223487, '__ci_last_regenerate|i:1670223487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965aa244f0ea17322efa59b78e955e7d579f606c', '31.222.203.2', 1670223487, '__ci_last_regenerate|i:1670223487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd16c395c557343590f12c1a3c7834625d193411', '31.222.203.2', 1670223487, '__ci_last_regenerate|i:1670223487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8ad600e070c62bb637861e252730ebe22c342b', '172.105.247.100', 1670224912, '__ci_last_regenerate|i:1670224912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02db4714d32e8e0d29e78cbd80f7ec4f40b8615', '172.105.247.100', 1670224914, '__ci_last_regenerate|i:1670224914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a49c56e1d52d6501c46ac98950cd03c7be9e995', '172.105.247.100', 1670224914, '__ci_last_regenerate|i:1670224914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f941036ad793846f44ba7cc1fdfbcf5586778ad3', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec412e7915659c13f4c429b31b40311a8feb98b', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021290da6ec2388a482d7d1f38b98dac3e4df112', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1231fd93d015c9b19f70a0220d39e755608c5ee3', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ec2f7c2bb66993922e1ed0ffd4cf52f60dedc8', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad83b65bce888df93307722d079dd8b46c7d659', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d40e95c9a98b90ca23ebf4f0ac79978e2f1646', '172.105.247.100', 1670224915, '__ci_last_regenerate|i:1670224915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8b8ad452d380d1e303da0bea6e0be90181fb66f', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5fde256287abb45420fcea928fb504ff2df2ce', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0a884a2c8adc36e199e417e6c4e4c85939bf29', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c18c79a260db3d024b019d86b928c2efff8e75', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759706c28c98412197d9fa9d2dd576a873edec49', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21114540827bd16ff52f85837f0d3a5b9e59f781', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d260ee9008f6033883228a29f7e443f4a2a10a2', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc4893aaa8b29e1ff63a447d08e8d1b292fba607', '172.105.247.100', 1670224916, '__ci_last_regenerate|i:1670224916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8461553f81d938da108d43f4f1b1527cd164d3e8', '172.105.247.100', 1670224917, '__ci_last_regenerate|i:1670224917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa3a53b8cca02fb3665f3bd0ae4836b66ad6623', '172.105.247.100', 1670224917, '__ci_last_regenerate|i:1670224917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df8e74e8528d874fa9ab53841be930b5e897593', '172.105.247.100', 1670224917, '__ci_last_regenerate|i:1670224917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a98dbc8f6c9c4ed88e10e25f7bb26ebd3c6922e', '172.105.247.100', 1670224917, '__ci_last_regenerate|i:1670224917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ddbe4c5848c91d833fb9f3b108b2c4cb76e6f8', '172.105.247.100', 1670224917, '__ci_last_regenerate|i:1670224917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a0239907a95bd3bf5b1c29f55dab3133ea9e39', '172.105.247.100', 1670224918, '__ci_last_regenerate|i:1670224917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5759f119b3a5c1fbe540d77124c9181e8cdeb5', '31.222.203.2', 1670225268, '__ci_last_regenerate|i:1670225268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed6a3fc0d5c0d967daffae4c514f9b982f770b3', '31.222.203.2', 1670225269, '__ci_last_regenerate|i:1670225269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7545b235a3daea0a35ba770ab24ce9ee0203c8', '31.222.203.2', 1670225269, '__ci_last_regenerate|i:1670225269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4087618ebf5069d2b711f6581f27bb1612ef3353', '31.222.203.2', 1670225269, '__ci_last_regenerate|i:1670225269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf3c11d80aa33ef57721d779eae3a525a00643c9', '31.222.203.2', 1670225269, '__ci_last_regenerate|i:1670225269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540dff58b896d9d4c7b2a2c80e20ff260c1bfe12', '31.222.203.2', 1670225269, '__ci_last_regenerate|i:1670225269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7dd86b51f1e2e551deff6078f0ae88104b580c', '31.222.203.2', 1670227003, '__ci_last_regenerate|i:1670227003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c890cc0fb382c2af6364c18574f7686dab58ece2', '31.222.203.2', 1670227005, '__ci_last_regenerate|i:1670227005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c815704889e0b653560f16b62101d7cc2f4cb627', '31.222.203.2', 1670227005, '__ci_last_regenerate|i:1670227005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70877d4a0f11f3b2fb7ab859a79d7f012a4b7c21', '31.222.203.2', 1670227005, '__ci_last_regenerate|i:1670227005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f9e25332a0e9be3f25793f0eaf4ed2aa6c1ca1', '31.222.203.2', 1670227005, '__ci_last_regenerate|i:1670227005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7335ff46ca87fb97199469914049794cd4e20b', '31.222.203.2', 1670227005, '__ci_last_regenerate|i:1670227005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156af8c46d83105b3a734c692abf6b69b7407b5a', '45.120.39.90', 1670227274, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80cb4be9da316307820669a1eee93b65dda70aa6', '45.120.39.90', 1670227573, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670227481;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670215648\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670227573;register_id|s:3:\"270\";cash_in_hand|s:9:\"4560.0000\";register_open_time|s:19:\"2022-12-05 10:53:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9b4aee2fe2233538e34ef0e5d03b2c550854e1', '31.222.203.2', 1670227315, '__ci_last_regenerate|i:1670227315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9457d1f6fb088edf8df69172c4dff7a08846135', '31.222.203.2', 1670227318, '__ci_last_regenerate|i:1670227318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45735459e69807b22d81625eb691646fb810bb97', '31.222.203.2', 1670227318, '__ci_last_regenerate|i:1670227318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e4d0888d1ea6872c3287ded6e7e2ffcbe633ac', '31.222.203.2', 1670227318, '__ci_last_regenerate|i:1670227318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a5d2abeafe81c92810bfc56dee05a47c45e5b5', '31.222.203.2', 1670227318, '__ci_last_regenerate|i:1670227318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9c0eef21c23d38a8436d818ffb1fc1e8dbc50f', '31.222.203.2', 1670227318, '__ci_last_regenerate|i:1670227318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b86cc6a14731aaa7325b02df8a9b218d34b840d', '31.222.203.2', 1670229126, '__ci_last_regenerate|i:1670229126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3450ac116ecd117657a550d5ea3e98117d26337', '31.222.203.2', 1670229126, '__ci_last_regenerate|i:1670229126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969e3cc945b76c07a217ebee5aef9944c77b29b4', '31.222.203.2', 1670229126, '__ci_last_regenerate|i:1670229126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('940d7bf6a589c9b8e351135e896227ee550f91c4', '31.222.203.2', 1670229126, '__ci_last_regenerate|i:1670229126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20a8c08446af3bafe37d2a7ebf70e5ccc5c37e1', '31.222.203.2', 1670229126, '__ci_last_regenerate|i:1670229126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe5052b28c3791bfe73bac54e2a5b0db61af50b', '31.222.203.2', 1670229126, '__ci_last_regenerate|i:1670229126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d4e93449fe0d3d4a23142e1afa73b3a9f0ba52', '172.105.247.100', 1670230914, '__ci_last_regenerate|i:1670230914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34926e485c03660e8c5f3f9e9e649f41a8f305a3', '172.105.247.100', 1670230914, '__ci_last_regenerate|i:1670230914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a1352a21ff5c2e20b4596d54f6953949030ac3', '172.105.247.100', 1670230915, '__ci_last_regenerate|i:1670230915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08ca0dc8570a12a166d4b1a7580bb17b070868d', '172.105.247.100', 1670230915, '__ci_last_regenerate|i:1670230915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e44dfdebfe0f47622ecf618e12e9aec510222cd8', '172.105.247.100', 1670230915, '__ci_last_regenerate|i:1670230915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218a6b1e391719b6f7c6df813dce4c2e2540a4d8', '172.105.247.100', 1670230915, '__ci_last_regenerate|i:1670230915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa50036ff145f9f59aa683a19a44640ccba304f', '172.105.247.100', 1670230916, '__ci_last_regenerate|i:1670230916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683c2c15bf0e699fe7e17d22df0a58ef1f282c87', '172.105.247.100', 1670230916, '__ci_last_regenerate|i:1670230916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46348ab138c7acc9f7a8d0f4823bbf3d925b0dbb', '172.105.247.100', 1670230916, '__ci_last_regenerate|i:1670230916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd384fe2bb6b23e9da25a52f14542687daf7c27', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343cca098c7395772e320351a6d367936545115a', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902c14fa2d0165e56ecaef100faf5e9ac74fd0f8', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ecde57164679d22512e4817e4b1191f1e15458', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a266a059633bc5ff81297f1fb2bde15b86677f4', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a113e21672282938dbabac8d0ebcfba91dfddfb', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e74edaa1286f53eaf9bbd3c18547804550e058', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4527f740f8eaf920053bfb72f9340960a4dd4cf8', '172.105.247.100', 1670230917, '__ci_last_regenerate|i:1670230917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7afa3695f54d374db2d85038dcf602cd91330be', '172.105.247.100', 1670230918, '__ci_last_regenerate|i:1670230918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fdf504dba2c741c07ad9853408f346a2e2d160e', '172.105.247.100', 1670230918, '__ci_last_regenerate|i:1670230918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c385bda6e51577029fa5b358163b3ac5a60861c', '172.105.247.100', 1670230918, '__ci_last_regenerate|i:1670230918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea55bd3ecfa15fef5165d895ad11ee8b3227794d', '172.105.247.100', 1670230919, '__ci_last_regenerate|i:1670230919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8562adce60928123142ba617172de317977796', '172.105.247.100', 1670230919, '__ci_last_regenerate|i:1670230919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed12bc7ec337d07c28c40d4c6fcf5aea5fe64549', '172.105.247.100', 1670230919, '__ci_last_regenerate|i:1670230919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30110f44d7e4340afc0b39b3d0ca7c2ec6db3c8b', '172.105.247.100', 1670230919, '__ci_last_regenerate|i:1670230919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc7ab6352481670d0b8beebef7d140ede7985de', '31.222.203.2', 1670230924, '__ci_last_regenerate|i:1670230924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2295fd4e9c8ddad524a17c780cc9ad082d3587', '31.222.203.2', 1670230924, '__ci_last_regenerate|i:1670230924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eaa8aef2bc02e7b3c4deaa0add32a124d3b07ad', '31.222.203.2', 1670230924, '__ci_last_regenerate|i:1670230924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132acfd237f45acc400b248bf8d64fbfdf789f80', '31.222.203.2', 1670230924, '__ci_last_regenerate|i:1670230924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd9879773668971402a023f6b3d11455cefd0c5', '31.222.203.2', 1670230924, '__ci_last_regenerate|i:1670230924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe6f7dba962a52fc40f1664d9bfbd2e5b65a313', '31.222.203.2', 1670230924, '__ci_last_regenerate|i:1670230924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777e3f16f8be5e7e580223c77e6878112c409f90', '31.222.203.2', 1670276226, '__ci_last_regenerate|i:1670276226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0337a5b99dfe25c03ef7f0dbc0e46f6c263a4e5', '31.222.203.2', 1670276226, '__ci_last_regenerate|i:1670276226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5370cb0b34d1fdb476d9ac773cdcb749e552053c', '31.222.203.2', 1670276226, '__ci_last_regenerate|i:1670276226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f9f21761a48bb2c2ab590b91810b3fd9a75bab', '31.222.203.2', 1670276227, '__ci_last_regenerate|i:1670276227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad7e77b12898d2a2fcdc08dab653c4d3355d391', '31.222.203.2', 1670276227, '__ci_last_regenerate|i:1670276227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f491f6db95dbbf703548493213ed86bb6ed9c34c', '31.222.203.2', 1670276227, '__ci_last_regenerate|i:1670276227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f214ca2184667f4f90d0917d13cb916fac0acd3', '205.210.31.30', 1670276863, '__ci_last_regenerate|i:1670276863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18ea2ca7e6bd0cef99dd7e0a8f5b958df7aff177', '31.222.203.2', 1670278002, '__ci_last_regenerate|i:1670278002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098fb08e4cd1edae37f47cb81ea8e13fcce8d835', '31.222.203.2', 1670278004, '__ci_last_regenerate|i:1670278004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084004df6f9fcd00b967cdfc04793c85ef2eb1df', '31.222.203.2', 1670278004, '__ci_last_regenerate|i:1670278004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8bec90c97adae4be0700b05ac911cb1545d058', '31.222.203.2', 1670278004, '__ci_last_regenerate|i:1670278004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9118178ba35d9809edd29a0a5f88f02316d59e2', '31.222.203.2', 1670278004, '__ci_last_regenerate|i:1670278004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9232dbeacbfc079c484bb557a4227cbdbc78c5b', '31.222.203.2', 1670278004, '__ci_last_regenerate|i:1670278004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc81831e44be3a3e42458c0ecb1e498696e925b3', '31.222.203.2', 1670279766, '__ci_last_regenerate|i:1670279766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a81479234ebcf950a235f80075cedf113e299cb', '31.222.203.2', 1670279766, '__ci_last_regenerate|i:1670279766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323ead722d3c8a5d6b36b0cc040a821685f648d6', '31.222.203.2', 1670279766, '__ci_last_regenerate|i:1670279766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28055e520d7808d8c084e52b9e0c0e6543198fa8', '31.222.203.2', 1670279766, '__ci_last_regenerate|i:1670279766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55a06f777dd318b3c094120fea63a5013f16af9', '31.222.203.2', 1670279766, '__ci_last_regenerate|i:1670279766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c01c6f5bf879d0749a34170eb0dc72f096cccb', '31.222.203.2', 1670279766, '__ci_last_regenerate|i:1670279766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd597c88831e1f377620bdcb3416bb1ce691e8a', '172.105.247.100', 1670280109, '__ci_last_regenerate|i:1670280109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65149afabab0d75e2c066e1bdcd09142310bded6', '172.105.247.100', 1670280109, '__ci_last_regenerate|i:1670280109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85c7740a1b3f3c3612d2c3d5eee920724566a0a5', '172.105.247.100', 1670280109, '__ci_last_regenerate|i:1670280109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fda78707043a61619a9a35a27862d7e71ab10c6', '172.105.247.100', 1670280110, '__ci_last_regenerate|i:1670280109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b47bf7e944fd6a71192afa4928cd8c3a4f7eeee', '172.105.247.100', 1670280110, '__ci_last_regenerate|i:1670280110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f858d384fa729b74eaa60f33b28dcdeedd889e', '172.105.247.100', 1670280110, '__ci_last_regenerate|i:1670280110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba25a9639482e2c32d7e27deecc0c8014461a89', '172.105.247.100', 1670280110, '__ci_last_regenerate|i:1670280110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d39a83eb60d9f252873e3bba9f235ee7633cb5d', '172.105.247.100', 1670280111, '__ci_last_regenerate|i:1670280111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a443c7044da9ecb44ccb9802653db5e71d58d609', '172.105.247.100', 1670280111, '__ci_last_regenerate|i:1670280111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7257ea17a63e09850bb345c2a152d7a09c7bdf', '172.105.247.100', 1670280111, '__ci_last_regenerate|i:1670280111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408651b462b4b474e60a5c48a360817d0fead1ba', '172.105.247.100', 1670280111, '__ci_last_regenerate|i:1670280111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4839a9fe82f27ee8c87939516cb588511a0bb730', '172.105.247.100', 1670280112, '__ci_last_regenerate|i:1670280112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bb591a3461621625e02c42ef7954c9367618e7', '172.105.247.100', 1670280113, '__ci_last_regenerate|i:1670280113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cea063dae7b2888102c8bd053bf679c55ad8062', '172.105.247.100', 1670280113, '__ci_last_regenerate|i:1670280113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c088ddfc72cb2c30e6611469e659a74473a3527', '172.105.247.100', 1670280114, '__ci_last_regenerate|i:1670280114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f08acfa8fbecb3361a90fca28cf35acd9f07faf', '172.105.247.100', 1670280114, '__ci_last_regenerate|i:1670280114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('426c0561b07eda114692b1548b6899b137c4745a', '172.105.247.100', 1670280114, '__ci_last_regenerate|i:1670280114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0640ffc63c8ec35a30aa0c2ff66c38ec3183ab4', '172.105.247.100', 1670280114, '__ci_last_regenerate|i:1670280114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f31fcdb6a7467d52332496d3d03feefa67fcf5', '172.105.247.100', 1670280115, '__ci_last_regenerate|i:1670280115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e6180a98cc5cb5ed1a6933a2e378366ee4e716', '172.105.247.100', 1670280115, '__ci_last_regenerate|i:1670280115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb58dce55831f6f9e525b2ca06ffff9217cc670', '194.195.243.80', 1670280115, '__ci_last_regenerate|i:1670280115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f714f37779b21565941e78a39b55f9ce5fbb7493', '172.105.247.100', 1670280115, '__ci_last_regenerate|i:1670280115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b290a03153923661cefdbd36924b71c57b9851d3', '172.105.247.100', 1670280115, '__ci_last_regenerate|i:1670280115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c769efd85ef822354d7997ea21b5322d6d63f4', '172.105.247.100', 1670280116, '__ci_last_regenerate|i:1670280116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('580d8277bdcdba9b0f5699db97c3887e3ff763c8', '172.105.247.100', 1670280116, '__ci_last_regenerate|i:1670280116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2012b3e1669dbec672a1581bcddd51ab9117531', '194.195.243.80', 1670280117, '__ci_last_regenerate|i:1670280117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f181ebfebaa9b2d7d5ed3cdf5c6d26b0f1b2649', '194.195.243.80', 1670280118, '__ci_last_regenerate|i:1670280118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('993b58652c53292438a18661130a4aba28e80dde', '194.195.243.80', 1670280118, '__ci_last_regenerate|i:1670280118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2268b24ba4f0916c5c1771604e100c1209286645', '194.195.243.80', 1670280118, '__ci_last_regenerate|i:1670280118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b612e2a9a4dee9a687daf50f200e16396aea7a6', '194.195.243.80', 1670280118, '__ci_last_regenerate|i:1670280118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d73767121b9fd0ae7f24f637b5c9c4b206eb1631', '31.222.203.2', 1670281552, '__ci_last_regenerate|i:1670281552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7302d791ef4b70501c3bb35d2fc4629091916583', '31.222.203.2', 1670281554, '__ci_last_regenerate|i:1670281554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057df908a9ed6756766bb9bcd062876105bd794a', '31.222.203.2', 1670281554, '__ci_last_regenerate|i:1670281554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ded3148336e5c91c3272dff76ea43aaa34ca924', '31.222.203.2', 1670281554, '__ci_last_regenerate|i:1670281554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688a58c10efd9c80c4da2236dbc342f21c6e5085', '31.222.203.2', 1670281554, '__ci_last_regenerate|i:1670281554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb89e2627159bf31970f2ec3e2524daaba1b31d5', '31.222.203.2', 1670281554, '__ci_last_regenerate|i:1670281554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d780b6f39cb234dc4accdedc03412f24289f8b4a', '31.222.203.2', 1670283367, '__ci_last_regenerate|i:1670283367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6dc73a3c3c19c2be696d3c2045d123185b3a84f', '31.222.203.2', 1670283369, '__ci_last_regenerate|i:1670283369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d369abfb3fd08014c5fa0751356718de5c058e77', '31.222.203.2', 1670283369, '__ci_last_regenerate|i:1670283369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa586357c906bfdb1f8a5c8b41d7803050b5e4c9', '31.222.203.2', 1670283369, '__ci_last_regenerate|i:1670283369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02977941cafc3fb82b34ce7dd22ec94305b27827', '31.222.203.2', 1670283369, '__ci_last_regenerate|i:1670283369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077959c58c58c401a9dc4c4d20d47957088d3900', '31.222.203.2', 1670283369, '__ci_last_regenerate|i:1670283369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939f8f9ce7084a81fa9c9262fd624da0d442a831', '172.105.247.100', 1670284924, '__ci_last_regenerate|i:1670284924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc3f58c89fcd4a595a2756948b2bafe2df2eb29', '172.105.247.100', 1670284925, '__ci_last_regenerate|i:1670284925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1d83c01f82b9129033eb78bacf7b92f46374a8', '172.105.247.100', 1670284927, '__ci_last_regenerate|i:1670284927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d81513df22dacbeddc079efc48cc467d286d590', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1055e3b18971f082f279283a556eb6534d635b6b', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f44239caab7085805c3e81592f26a1c5616f7fc', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3c6f84df51e7efc247b01da5dd70e39fb6ede8', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fdecbc00cc1d8ff693901ae1cd8c4498f392038', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83bc7dde1775f42a614292281c2ea0f4d958f076', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946ef21609552038d7c88786a0fb6347a6098d4f', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e344f45f98d58b7c89a412b394fe30a13d9920', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5582424a52b9ccf10fda0e427039ab063494b8', '172.105.247.100', 1670284928, '__ci_last_regenerate|i:1670284928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9512839aa075a33a596f4f1381f050b8ef7e0f', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('226d166c8ca78f39bdb071264afb9d3d92e13822', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964ff0928fe039ccbb033a42d3659c8c597f6b79', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd08512c08e7670a2b7d710732d67e460b3a90b1', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81c69a904e78efaafc76971695fd10f18f8227a', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c5ba07285dc86ed33e9fde79f889953ecd58be', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5943949d3896860711b13024b8977e233763ca', '172.105.247.100', 1670284929, '__ci_last_regenerate|i:1670284929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d269984bad30b0a5c5db7ca1e463765c5e53fbfb', '172.105.247.100', 1670284930, '__ci_last_regenerate|i:1670284930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6068be74f43d69999c3ace8de4cb7e8993892c62', '172.105.247.100', 1670284930, '__ci_last_regenerate|i:1670284930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3fc243df2e4337c7a0c8863f3dd78d3d5965ce1', '172.105.247.100', 1670284930, '__ci_last_regenerate|i:1670284930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d569102a1af74684f556d74f332147c253c15dd', '172.105.247.100', 1670284930, '__ci_last_regenerate|i:1670284930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f76e82868927aea8e04bc4955cda90bb59f871', '172.105.247.100', 1670284930, '__ci_last_regenerate|i:1670284930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a9cdc81bbd30c7a84fb3f594be3f3278af3a26', '31.222.203.2', 1670285158, '__ci_last_regenerate|i:1670285158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6397cf6bc4c2dd91f974bfa9da1e103f46a2d440', '31.222.203.2', 1670285159, '__ci_last_regenerate|i:1670285159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f14495564c27a8cab6fbb07d8f1fdb3d2fd519d', '31.222.203.2', 1670285159, '__ci_last_regenerate|i:1670285159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc76e907fd00731b28269a11a78a68d9cc897c82', '31.222.203.2', 1670285159, '__ci_last_regenerate|i:1670285159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3edde727b0de7ab53b5e6d495cd6fc04e9eced1', '31.222.203.2', 1670285159, '__ci_last_regenerate|i:1670285159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95853378b64bfa2babe16ad7757dc216346d396', '31.222.203.2', 1670285159, '__ci_last_regenerate|i:1670285159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e27551050694c8a30652a8773301b52f693e9d2', '31.222.203.2', 1670286953, '__ci_last_regenerate|i:1670286953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a354f9d5ec716e7f9220237a006ef75e4414492', '31.222.203.2', 1670286955, '__ci_last_regenerate|i:1670286955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc63bc59e6612bc856f51826c4ca3472ee770bb', '31.222.203.2', 1670286955, '__ci_last_regenerate|i:1670286955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63e3ac94704f6eedbf00948493d35d8b2aad067', '31.222.203.2', 1670286955, '__ci_last_regenerate|i:1670286955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5b8bd6a7aa58c0a064d504964eb35475ddc050', '31.222.203.2', 1670286955, '__ci_last_regenerate|i:1670286955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aeafac6b1c714d203cda5cddc1853037fbcb47f', '31.222.203.2', 1670286955, '__ci_last_regenerate|i:1670286955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ba21a63324db91b43d9b8424f02bf4c49946b0', '31.222.203.2', 1670288779, '__ci_last_regenerate|i:1670288779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e408d59ad10e791a405dd10a07022210ccec9538', '31.222.203.2', 1670288781, '__ci_last_regenerate|i:1670288781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d22d7f8171c2343c4f29f9659c5c0009e26dfe', '31.222.203.2', 1670288781, '__ci_last_regenerate|i:1670288781;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ff1048cda64df430533fbdbf3c7d13e7bfad46', '31.222.203.2', 1670288781, '__ci_last_regenerate|i:1670288781;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f83c55c7b616ebcbd5d3ce00f6f86bc4c7ad0a', '31.222.203.2', 1670288781, '__ci_last_regenerate|i:1670288781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0f6741847d62fbedcdbf6f899f831481f8f80c', '31.222.203.2', 1670288781, '__ci_last_regenerate|i:1670288781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8802f243b4675d2108e5b91a9d47122809d6ff82', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ad9152b7cd1ad1b3b9d53c54e75c91b441e8fb', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6c24623e1c08ea33e2f9111414d66477060b0b', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21e41331f1da6a4b26f1659e83efcaeed4b14f7', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cda64ecb4cb1f85e462713ef666013d04e76eab', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16927034bec97c7ef9e6062c6853e5cd50e35fa', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66872639cf36e9539f5a82de17c6398393b7606', '172.105.247.100', 1670289713, '__ci_last_regenerate|i:1670289713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c10feb8554649205645c8ed7ff9b5f3dfcd3f2', '172.105.247.100', 1670289714, '__ci_last_regenerate|i:1670289714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be372ac225ba551ae5196b52de5d0cdae518aff', '172.105.247.100', 1670289714, '__ci_last_regenerate|i:1670289714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed266d8b00179c626725adacb9b1256e70ba2c1', '172.105.247.100', 1670289714, '__ci_last_regenerate|i:1670289714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f2a6db8258d5a07f259de352614ce1a4f8e4c6', '172.105.247.100', 1670289714, '__ci_last_regenerate|i:1670289714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18a3525853331a79c373183308f1a905987996aa', '172.105.247.100', 1670289714, '__ci_last_regenerate|i:1670289714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a3821667a86c755f5e7d2aab819e97d2293bde', '172.105.247.100', 1670289714, '__ci_last_regenerate|i:1670289714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c699b1841575f283cfef68fad4ef5f2dd838dbbb', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5780d2b653db7f7df96a2b59e8f51579b328a22', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd68c62cf2ac1889d3b8a4e12c671fb382fa2bd3', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a1d155d506555193814a6ddad616fc2b76f782', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c031b01afe92c4c0fdcac89acadf6f0af4b556db', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8072cb31bca3a1a8e17e057883556c19581da19a', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3335305ef49d3e43565955c64519f292a863dfdf', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956c8c46665c853943db5c7ec7b64a9c7995f55d', '172.105.247.100', 1670289715, '__ci_last_regenerate|i:1670289715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369d566c2981963ec9aa436b9852a0d8587e9c9d', '172.105.247.100', 1670289716, '__ci_last_regenerate|i:1670289716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5c9370d6d0b96432cf670b5cd822c257ad2e1f', '172.105.247.100', 1670289716, '__ci_last_regenerate|i:1670289716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa875bdb19e0bda5c8ed11f8e71846aa91960be', '172.105.247.100', 1670289716, '__ci_last_regenerate|i:1670289716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49adfb4f0b0d42ae1ab0e184370a2a9d593b2676', '31.222.203.2', 1670290578, '__ci_last_regenerate|i:1670290578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00216cc44ac1f6df55a923b6c7714848aad785ce', '31.222.203.2', 1670290578, '__ci_last_regenerate|i:1670290578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5229e4bca4eff63e2e2fcd79ad5ef055f0df13c', '31.222.203.2', 1670290578, '__ci_last_regenerate|i:1670290578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302303933ccffe3f835e1c47ec7d988a5a75f673', '31.222.203.2', 1670290578, '__ci_last_regenerate|i:1670290578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81a66e620ae1493354ff5d603f7120309784d85', '31.222.203.2', 1670290579, '__ci_last_regenerate|i:1670290579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d077fecabcbde11fe9040ebd40bcfb298fef3b1', '31.222.203.2', 1670290579, '__ci_last_regenerate|i:1670290579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b38bfaf1e966b126ff968fc49b78719aa65aefe', '198.235.24.45', 1670291740, '__ci_last_regenerate|i:1670291740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4d74fe7ad96ab06c4044d2b5a7df1aae62a2b6', '31.222.203.2', 1670292328, '__ci_last_regenerate|i:1670292328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4c3944cc63d3ba2bbd7dc82046965c8921fdb9', '31.222.203.2', 1670292330, '__ci_last_regenerate|i:1670292330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74344ff152c31774c5bef63dd1b727a65978a0e', '31.222.203.2', 1670292330, '__ci_last_regenerate|i:1670292330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea367903ad4aade9cfceed424db401419c8d4193', '31.222.203.2', 1670292330, '__ci_last_regenerate|i:1670292330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('762ca8bfcef609904f0ae786454a3642bc001786', '31.222.203.2', 1670292330, '__ci_last_regenerate|i:1670292330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f92ed9105f5bbd9045cce36d78094caeb8e96a2', '31.222.203.2', 1670292330, '__ci_last_regenerate|i:1670292330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf25d5bedc616e3b2c630c0f4bc202cac66b80f', '31.222.203.2', 1670294174, '__ci_last_regenerate|i:1670294174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d2c60feee6b55385b6c8176f0fcd15eed4627f', '31.222.203.2', 1670294176, '__ci_last_regenerate|i:1670294176;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5580dbbf7b520198804fdeb7c1f17a548d8c7b', '31.222.203.2', 1670294176, '__ci_last_regenerate|i:1670294176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f2889034fa9c20cf80ecb40ae2ae7ee9a0bb34', '31.222.203.2', 1670294176, '__ci_last_regenerate|i:1670294176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e4ac291e55d8926e630f4a26630d8a054ba285', '31.222.203.2', 1670294176, '__ci_last_regenerate|i:1670294176;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8d9519941c1853a53314a6222b035dc5b2e19c', '31.222.203.2', 1670294176, '__ci_last_regenerate|i:1670294176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b17edd645b4c1fedef238e2599853d2748e8d53', '172.105.247.100', 1670295112, '__ci_last_regenerate|i:1670295112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c25d4c75edf7569843d11da59e74d31fc589ff', '172.105.247.100', 1670295113, '__ci_last_regenerate|i:1670295113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846da8c3779e79b4b5dabfeb3e21da05c92c3426', '172.105.247.100', 1670295113, '__ci_last_regenerate|i:1670295113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833bf66d63a1a2c6a65837d94a24c03a5aa154f0', '172.105.247.100', 1670295113, '__ci_last_regenerate|i:1670295113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dae9d1ea4026903b8c74f06b7b7ec8fd46fbe5', '172.105.247.100', 1670295114, '__ci_last_regenerate|i:1670295113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4471e2f311490eae8f5d43c0fe12b332a0a5af7e', '172.105.247.100', 1670295114, '__ci_last_regenerate|i:1670295114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e68bd7465935db4bd8f1478d2ad4e776e6603c', '172.105.247.100', 1670295114, '__ci_last_regenerate|i:1670295114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3ecc6857ed87ec87b4715c7829ab48e9b019ab', '172.105.247.100', 1670295114, '__ci_last_regenerate|i:1670295114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18a5fa7a7c08888914e1ded34fbd409b3f50256', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091905672864497e8b73c99ec2c7f6c6dcd2dc33', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157102e6f5e140f4dd1ded69249e42aa806026db', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb43ebff22792360b4d18fec208451f7215cb8e6', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db6a590094731dded39996b0c757167894dbfc7', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73058a7c264b54bc54a707d22dd52504d8a198e3', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03aa6b42c06a9647520684d78b97606f6507237', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd3f5e8d439ec4b9d58aa61c22e7720c2a2f540', '172.105.247.100', 1670295115, '__ci_last_regenerate|i:1670295115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c9113cf403f64d4a5643940db49e9bb8378b83', '172.105.247.100', 1670295116, '__ci_last_regenerate|i:1670295116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b0220f58b359541df5d5273c5e579fa697811a', '172.105.247.100', 1670295116, '__ci_last_regenerate|i:1670295116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81da57da1134792d53505c1cc5f3fdcf50c5323a', '172.105.247.100', 1670295116, '__ci_last_regenerate|i:1670295116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01acc03ca1d7e379df92046c9148d499e716efea', '172.105.247.100', 1670295116, '__ci_last_regenerate|i:1670295116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f362ef0360033714dc259c55d925abc4e3a97ad', '172.105.247.100', 1670295116, '__ci_last_regenerate|i:1670295116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c792659fd0055f7a7766f5ecc7e86125dc9f62', '172.105.247.100', 1670295117, '__ci_last_regenerate|i:1670295117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7464657aeed6a058e5e9daca2061cbbcb8cba30b', '172.105.247.100', 1670295117, '__ci_last_regenerate|i:1670295117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab23c9db82ea1efdd99a2e2d0c32c2968bcd288', '172.105.247.100', 1670295117, '__ci_last_regenerate|i:1670295117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('248e4092ee290e3af1cb830d26acc723a0ef650c', '31.222.203.2', 1670295957, '__ci_last_regenerate|i:1670295957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5d49fd09a8566eb73f1e963ce8f7ad2e4807ab', '31.222.203.2', 1670295959, '__ci_last_regenerate|i:1670295959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e27d91097b053ed4df5fdc34082ac0382c1c443d', '31.222.203.2', 1670295959, '__ci_last_regenerate|i:1670295959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56093a6ee2fc0e308069e5cad1ca6a95682b6588', '31.222.203.2', 1670295959, '__ci_last_regenerate|i:1670295959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d628bac9fb3bd874ea19d120a4d03177aeeebf46', '31.222.203.2', 1670295959, '__ci_last_regenerate|i:1670295959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0379aefdba7b9f900abf873a3912339a8505f0f1', '31.222.203.2', 1670295959, '__ci_last_regenerate|i:1670295959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626d097e0c7b67335fda16854be6ef2c67db60d5', '31.222.203.2', 1670297768, '__ci_last_regenerate|i:1670297768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4a45f36e21e0bf4a02fc30bd820130ad442564', '31.222.203.2', 1670297770, '__ci_last_regenerate|i:1670297770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c914770ea36e86a1c37d9c7c9c66e9b59771bdb6', '31.222.203.2', 1670297770, '__ci_last_regenerate|i:1670297770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3ef790c047e694f81acd372a90195780a3097a', '31.222.203.2', 1670297770, '__ci_last_regenerate|i:1670297770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02cec593fa76e0dd11ba265ff70123a808d8017', '31.222.203.2', 1670297770, '__ci_last_regenerate|i:1670297770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62456a955e6650f7cbb32ad741f23152a8f77ea2', '31.222.203.2', 1670297770, '__ci_last_regenerate|i:1670297770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c0e1854705ceebf4719f1a085c6ebaae1f6687', '31.222.203.2', 1670299575, '__ci_last_regenerate|i:1670299575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc231190cff00737f5ff175f130f9448f1bb335', '31.222.203.2', 1670299575, '__ci_last_regenerate|i:1670299575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90c6e3d9d22a6a8277ab7cd382d537b8c5f1314', '31.222.203.2', 1670299576, '__ci_last_regenerate|i:1670299576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5780c1fd59fa8283202d431491bf4c6921c01cf', '31.222.203.2', 1670299576, '__ci_last_regenerate|i:1670299576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448c3e69f0a773e02ad9becc6b136e6cdfe41b02', '31.222.203.2', 1670299576, '__ci_last_regenerate|i:1670299576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab82d9e820754f5d6a4444ba7ad01d3774c41c8', '31.222.203.2', 1670299576, '__ci_last_regenerate|i:1670299576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51242eb948703c08fbb3a9c339f7817a672e9f55', '172.105.247.100', 1670299912, '__ci_last_regenerate|i:1670299912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ef30d45e813ce026e4844d26b2e416fc785187', '172.105.247.100', 1670299913, '__ci_last_regenerate|i:1670299913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a88d8c20891b2d73a7b4017ad8dd05c9ec92ee0d', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed69379339ad751eeb3137f92cb7090e91aeb2d', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2ff769b8715ff22e19cb5dee4ac3e255369f2f', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0217214cc5f20ab8c9e6840765ab3c19c1b4503', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c4995c831dc007522610b0b6ee4908c2598893', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6858bd33ba468895a65a72b16f478db5f7678a94', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65e978d8dc0b451631560c654f96a21c9fbfbd6b', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbfe0de98afa2ca00f5aee0172afe08240a7aa3b', '172.105.247.100', 1670299914, '__ci_last_regenerate|i:1670299914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b85135040d5c607cf01f1264d77744bfaf3ba15', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92efd4d574a151f1fd0a24a24d4026511601bab1', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf8bdd2e197c77eb1200a738a29032404adeb73', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a6f0c5849ad3e18391676c603341eaebe3efe91', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0b1bb0857ef4648fa2d88dd0deaa0e926e92a4', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4413213a1aa91787d39db38146f5fa9f0132a06e', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd0e8c37fd4a8700cf5984a1e58731cdd292ee4', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61226df992044e5585841932ab805f075045709', '172.105.247.100', 1670299915, '__ci_last_regenerate|i:1670299915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8de770e32a4038e543ffe68bf83acf799f369de', '172.105.247.100', 1670299916, '__ci_last_regenerate|i:1670299916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e7cfca44be393f3617d4f2b92e182712f1feed', '172.105.247.100', 1670299916, '__ci_last_regenerate|i:1670299916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a28e7c22589ecc984d310c614e3ef134261baca', '172.105.247.100', 1670299916, '__ci_last_regenerate|i:1670299916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('870b2e59951108ede9c3445d2d7e51fb7e7756b5', '172.105.247.100', 1670299916, '__ci_last_regenerate|i:1670299916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3abd4c76dff55427ca01693b1f3c1b154b0b734', '172.105.247.100', 1670299916, '__ci_last_regenerate|i:1670299916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb4452ecfc7544613d9356a6fc717f8cf292e71', '172.105.247.100', 1670299917, '__ci_last_regenerate|i:1670299916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca9e4bc01cf360dd324f3c9f5afbed9105d0cb6', '31.222.203.2', 1670301369, '__ci_last_regenerate|i:1670301369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c024370090940d341dbf4e0bbc217e0c02cbb1', '31.222.203.2', 1670301369, '__ci_last_regenerate|i:1670301369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42fbb6c1af895ebe9cd11a327068e05c4386ae1d', '31.222.203.2', 1670301369, '__ci_last_regenerate|i:1670301369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530146afd0afeb3f353d7fcb490aa068639eacb9', '31.222.203.2', 1670301371, '__ci_last_regenerate|i:1670301371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf294ff9ec1c53d8664907f5f4fa41475fca1d85', '31.222.203.2', 1670301371, '__ci_last_regenerate|i:1670301371;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c09d2c680d247fb77b691291bc6f6f4404ed7a4', '31.222.203.2', 1670301371, '__ci_last_regenerate|i:1670301371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c39b745b1783bb206e02f6f6ac5fd81a0f9a8e1', '198.235.24.130', 1670301858, '__ci_last_regenerate|i:1670301858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804aae84797337d411fc3766990fdcad82c2dda7', '116.204.230.18', 1670303087, '__ci_last_regenerate|i:1670303087;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670044125\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797d9e335cab21432956037c149978d787bc0e5e', '116.204.230.18', 1670303472, '__ci_last_regenerate|i:1670303472;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670044125\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3e9f9553f8640b7e22a60f2c6bced197f3324e', '31.222.203.2', 1670303176, '__ci_last_regenerate|i:1670303176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b3a62761b8b6d128056cae09c8f84bc93697375', '31.222.203.2', 1670303178, '__ci_last_regenerate|i:1670303178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd719177a519e373a5b4b2a14651d390c2e908e', '31.222.203.2', 1670303178, '__ci_last_regenerate|i:1670303178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5884a69e2ce0d48df77cd579170276997aa075e8', '31.222.203.2', 1670303178, '__ci_last_regenerate|i:1670303178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('920a2ffe5b164e0eb24f10ba32fab405ca0c6875', '31.222.203.2', 1670303178, '__ci_last_regenerate|i:1670303178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630e6d0b11a6ae43ef4cc6c479cc1534f253c62a', '31.222.203.2', 1670303178, '__ci_last_regenerate|i:1670303178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e4309d71b9781cf0d182e2af81604943362cdb', '116.204.230.18', 1670303889, '__ci_last_regenerate|i:1670303889;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670044125\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ee6c9698e6acf1e91b69e05a85eb7d9d7ceb76', '116.204.230.18', 1670303955, '__ci_last_regenerate|i:1670303889;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670044125\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"mgQ1RwKhkqleWXi5HMIf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('853b9c93d6a1e5f137fb588ec4db0df35e5e1579', '172.105.247.100', 1670304109, '__ci_last_regenerate|i:1670304109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7753036bb6e7a5ae4863b64a41c4dfd1e94a504e', '172.105.247.100', 1670304110, '__ci_last_regenerate|i:1670304110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21940c6800e9fe3b7ffb90767d79b1c6cee5cd5', '172.105.247.100', 1670304110, '__ci_last_regenerate|i:1670304110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685104473bc13151396714081b4cb9a1654215cf', '172.105.247.100', 1670304110, '__ci_last_regenerate|i:1670304110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df869a59cdb2c5b77a23563993841a39b13416b3', '172.105.247.100', 1670304110, '__ci_last_regenerate|i:1670304110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bda1acf93b36aca0f0630fae28245d2c3521f8', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550a10bdd030adb14b0c6bbc03a6549838c8381e', '172.105.247.100', 1670304110, '__ci_last_regenerate|i:1670304110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6f6e02c86b47967aa7e77e83c20f9ec4d58c4c', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ae9c398a7a3f473a21aa348620f1daf31ebe0c', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06c0401cb3e59bb16a44bed796180e63dcbe321', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6915700ff85d8278ebc3e864d269d6a33e23e02d', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd7097afd068bd8fcf565a314bfce579a3a97e4', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c82376ecb5a01e83310abf7f231c3c4f58aadf0', '172.105.247.100', 1670304111, '__ci_last_regenerate|i:1670304111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab432ab8227c269813f5188afcb06a85a9e14716', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddeaeca24071da21982c4043d44e78a2066147f', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2e04495f59adec3aa5159734a48e05c9a0a17d', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2249871607b3609e6cff2365c07522b5c2c9ae23', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e79be663b8aa33f3065e610883c65b731cf931c', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202a18c7bc5e5022c74de4b2392da7276bf6a898', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bb908f7266fa6256dfb5bacc4deac08c99ae0d', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8750bd01fceab051c062ff7049e237abf70b755', '172.105.247.100', 1670304112, '__ci_last_regenerate|i:1670304112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a4e27aca1857752cf37e1a2cfc2b50b5d08e2ee', '172.105.247.100', 1670304113, '__ci_last_regenerate|i:1670304113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e61a4d51f6a9e7f8805fe987d1fbdcee5a10aa', '172.105.247.100', 1670304113, '__ci_last_regenerate|i:1670304113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc6973fd9354e443271c74bfb004495768cb896', '172.105.247.100', 1670304113, '__ci_last_regenerate|i:1670304113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912d2c2b5744ca7f817694e48be6d32edb7f3617', '31.222.203.2', 1670304969, '__ci_last_regenerate|i:1670304969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52de8eeb1c8340889b97516aa06f65b65a5b8a81', '31.222.203.2', 1670304971, '__ci_last_regenerate|i:1670304971;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0aeaaa4522c0dbfca8d532914bed7512df2b48', '31.222.203.2', 1670304971, '__ci_last_regenerate|i:1670304971;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffefc81f6ea769f7681b0f6108c9fb713e9d207b', '31.222.203.2', 1670304971, '__ci_last_regenerate|i:1670304971;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d39ef589fd23b7269eb222e364b7369ba8e4520', '31.222.203.2', 1670304971, '__ci_last_regenerate|i:1670304971;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4a5b9134758e2a59bf3fd117aeef7052a0fdbd', '31.222.203.2', 1670304971, '__ci_last_regenerate|i:1670304971;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d7e3ce2058d684d774735eb705fd4452d55475', '45.120.39.90', 1670307626, '__ci_last_regenerate|i:1670307626;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670307620;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d862908c2b9cdb072aef8618f053f74ee015397', '31.222.203.2', 1670306750, '__ci_last_regenerate|i:1670306750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de715ad2da6d7ddccd5fe2464521ba170ec84807', '31.222.203.2', 1670306752, '__ci_last_regenerate|i:1670306752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d0d3d25ff4239eb29b86ea8dfe3cc9f69462e3c', '31.222.203.2', 1670306752, '__ci_last_regenerate|i:1670306752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1c87a021d5c0574a0c86f55325edc7e1e206a3', '31.222.203.2', 1670306752, '__ci_last_regenerate|i:1670306752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd799a9d28387fdef98ff540780bcd909110bb6', '31.222.203.2', 1670306752, '__ci_last_regenerate|i:1670306752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79480d679238ee9baa6fb54e06727398ff2dc11e', '31.222.203.2', 1670306752, '__ci_last_regenerate|i:1670306752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4271bef4900679cf79b85dbbf6a0a95a26bcfe9d', '45.120.39.90', 1670311647, '__ci_last_regenerate|i:1670311647;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670307843;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ceb1da75c931209a4abed79ca1eb60079ec879', '31.222.203.2', 1670308579, '__ci_last_regenerate|i:1670308579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2649c72f235139fc5fbf573b3c25f9c1623bc111', '31.222.203.2', 1670308579, '__ci_last_regenerate|i:1670308579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4112cf93225e488b372ede6455789d79974ca08e', '31.222.203.2', 1670308579, '__ci_last_regenerate|i:1670308579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0180d10c651d2f2f1a68a64684914ef8419bfdd3', '31.222.203.2', 1670308580, '__ci_last_regenerate|i:1670308580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b1a416cc3fc89462d6245c40f7f0c77d607bda2', '31.222.203.2', 1670308580, '__ci_last_regenerate|i:1670308580;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e40c7e773eec462e2ef22c16499d01beaab6c36', '31.222.203.2', 1670308580, '__ci_last_regenerate|i:1670308580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f994175e6f3c3cfa92d4b44268a85e41a06630c3', '172.105.247.100', 1670309517, '__ci_last_regenerate|i:1670309517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c978ef9f23765a18f7c4c18b570325e196a0e89a', '172.105.247.100', 1670309517, '__ci_last_regenerate|i:1670309517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3430c41999eabb4bb7d7628f94ba3de697022d9', '172.105.247.100', 1670309518, '__ci_last_regenerate|i:1670309518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a7cf8545e9341420546de1085762a1cbff09f7', '172.105.247.100', 1670309518, '__ci_last_regenerate|i:1670309518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d3a7435721c0db53a5fd591e591b399022bc92', '172.105.247.100', 1670309518, '__ci_last_regenerate|i:1670309518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d353b95965bedc3ceb9b1bd0eac33a54499f65ae', '172.105.247.100', 1670309518, '__ci_last_regenerate|i:1670309518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002f0309e7c59b315d171b452d1cde6ea2282c40', '172.105.247.100', 1670309519, '__ci_last_regenerate|i:1670309519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2f0f360495451f3703787211d7b15d4d357dae', '172.105.247.100', 1670309519, '__ci_last_regenerate|i:1670309519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e839e817914824726910cf35e82f493b593ca6', '172.105.247.100', 1670309519, '__ci_last_regenerate|i:1670309519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0af239fb2245f8526a54bd94b7f94b86d58f7d1', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f449d5dd2f6f80ce9f47361516d20037630b925', '172.105.247.100', 1670309519, '__ci_last_regenerate|i:1670309519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bfd5e8b02d1cbad3b140764598faf836f36cc9', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f08aabfbea7408c9dac84c90dd525eff645ba9f', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db7ebcffad7af86c3ebe4d99d601095b28819bcc', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d0a70376d4ed0ad862efb62997a288440615ed6', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6348f751afe1af54f5d8f968a0a9839793e8b7c6', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9afb8d353e80e09aaf8c4cc24e141fe9791f2dd7', '172.105.247.100', 1670309520, '__ci_last_regenerate|i:1670309520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4597cd1834062734cd8f2beb099137a9ad9069', '172.105.247.100', 1670309521, '__ci_last_regenerate|i:1670309521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('335b6657634dd67095d343590720d63dff8adb11', '172.105.247.100', 1670309521, '__ci_last_regenerate|i:1670309521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1ca7ed66db1c585dc22551f36a9f16a3c9a6c7', '172.105.247.100', 1670309521, '__ci_last_regenerate|i:1670309521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94ad29b62a6fa669dbc98199783336126efd8b9', '172.105.247.100', 1670309522, '__ci_last_regenerate|i:1670309522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efc7069a3dc361c726b6c19428d78e0f4ba5027', '172.105.247.100', 1670309522, '__ci_last_regenerate|i:1670309522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d0cd9a7d5718e75f5c0a6a1260dda3fa31de59', '172.105.247.100', 1670309522, '__ci_last_regenerate|i:1670309522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f5544d02fbb707e36395617801ad3a9d819a76a', '172.105.247.100', 1670309522, '__ci_last_regenerate|i:1670309522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d41b3465668c785de59d36b565bd7d74e6e75db0', '31.222.203.2', 1670310373, '__ci_last_regenerate|i:1670310373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e097f486bba376f49e6edecc83154852d1576b3', '31.222.203.2', 1670310375, '__ci_last_regenerate|i:1670310375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68957ba3d1a6a93c144f440dfb4f6fe02c5f977f', '31.222.203.2', 1670310375, '__ci_last_regenerate|i:1670310375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4302aac25d5759491fd9bbc2e6267511540cbe1d', '31.222.203.2', 1670310375, '__ci_last_regenerate|i:1670310375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f13d5d8a75cdb2c9bb29908334703df73a87c91', '31.222.203.2', 1670310375, '__ci_last_regenerate|i:1670310375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0142149ff83d57a13ab62573efacc40f40fc46f5', '31.222.203.2', 1670310375, '__ci_last_regenerate|i:1670310375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7317ffda90647f800d0ec44e39ce877a7586912d', '45.120.39.90', 1670315574, '__ci_last_regenerate|i:1670315574;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670315557;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8db2fe3e7243121cc554931f91295696b98168c', '31.222.203.2', 1670312190, '__ci_last_regenerate|i:1670312190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce63fc1182e1ce6d3489cf031142c703f76b6780', '31.222.203.2', 1670312190, '__ci_last_regenerate|i:1670312190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d2315ee76921ed9f7a226cff24d64b8a3ffb0c', '31.222.203.2', 1670312190, '__ci_last_regenerate|i:1670312190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e164067acef22ac300cb3c3d33ebd63e4b38c169', '31.222.203.2', 1670312190, '__ci_last_regenerate|i:1670312190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0fb4ea7016f65f7a7114bf84e50b96a0ee2bd94', '31.222.203.2', 1670312190, '__ci_last_regenerate|i:1670312190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35516a28143b6fc4b253ae19ed6c11dbb66a355b', '31.222.203.2', 1670312190, '__ci_last_regenerate|i:1670312190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63817a92110335f6d00f59b5b742454f91fe85c', '31.222.203.2', 1670313720, '__ci_last_regenerate|i:1670313720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f16a78ebdb39831685202470fbc85a06fbbb5f2', '31.222.203.2', 1670313721, '__ci_last_regenerate|i:1670313721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b72d6970fa3da04856dd1fe2940a258cdd67e9f', '31.222.203.2', 1670313721, '__ci_last_regenerate|i:1670313721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1804ce6a63d53c4e76b6a6ec5d5c9c40465291', '31.222.203.2', 1670313721, '__ci_last_regenerate|i:1670313721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dfb22877322822eb56e3cd1b4463829db3603ac', '31.222.203.2', 1670313721, '__ci_last_regenerate|i:1670313721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b20e5c3d4393f5aebec0797462ee1c3a37493c', '31.222.203.2', 1670313721, '__ci_last_regenerate|i:1670313721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa6d00f7d3e07be4d4b6143b58873f2f09de6b3', '172.105.247.100', 1670314921, '__ci_last_regenerate|i:1670314921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295e27a36f576f828e0471f4bf498025f5f7b276', '172.105.247.100', 1670314923, '__ci_last_regenerate|i:1670314923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2568c4e18afa8c55cf4ab44dba04010c50977b9', '172.105.247.100', 1670314923, '__ci_last_regenerate|i:1670314923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddfa1513fca85eb452650ec6566620b9db86bf71', '172.105.247.100', 1670314923, '__ci_last_regenerate|i:1670314923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de3d950bda7fa282f8d120937e472338ba62543', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cce2bbff6eab76a11b02031b0e9ba60c7d115fb', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12ebaaeed28bc791269126a1d81db9ad61b53c2', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641a892fd0e6b8d6c566f7ea096a5b9cb02de253', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a58b8be26c582c08e996f49fb492ad75fecfe2', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d9609860e581c6785944ffdaed205a8dd25ec6', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726ee355a2094f43b26b0a505e010b6e72301344', '172.105.247.100', 1670314924, '__ci_last_regenerate|i:1670314924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883712df3967a907aa00d122b536242074676d15', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3c134538a67cac816c7e67c57e304594bf5887', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8546e064b0839599e32eebfee4e8ced2dcd4eef5', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f51c9cd4cf3e888d1d188925c7d263dace66c9a', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9006aaa4d20ab175c52c02ad4b91fac0d46a7b52', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3506c2ce9178c05e7bde55717f3f90df907dd1a9', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ae3dc0557f4aa09daee36a744c176e76b7d3ef', '172.105.247.100', 1670314925, '__ci_last_regenerate|i:1670314925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a195a1517bbf1cdd411c6304c5f316105019bbb0', '172.105.247.100', 1670314926, '__ci_last_regenerate|i:1670314926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de88e0c85aa7aed626f04a8b98a17a3814dc3d4', '172.105.247.100', 1670314926, '__ci_last_regenerate|i:1670314926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6c61bbfc570b9c1d0cc059be7f5dc9a40c828a', '172.105.247.100', 1670314926, '__ci_last_regenerate|i:1670314926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7316abe7c91b16f53244b7ea448a5f827ae5941f', '172.105.247.100', 1670314926, '__ci_last_regenerate|i:1670314926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('578abff46a4ab6678a46b4602128014851bfec59', '172.105.247.100', 1670314926, '__ci_last_regenerate|i:1670314926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e645f9051cfb8b36ab436a371128d83e418c81e1', '172.105.247.100', 1670314927, '__ci_last_regenerate|i:1670314926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc0c76ebe29a3f785328fc5bf22930c9f93e81f', '31.222.203.2', 1670315528, '__ci_last_regenerate|i:1670315528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca413971b5beeaea937ba8d79902cb71844d7c44', '31.222.203.2', 1670315530, '__ci_last_regenerate|i:1670315530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7476dda837f3765b973db20f0fea101301a419f5', '31.222.203.2', 1670315530, '__ci_last_regenerate|i:1670315530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ee81acaa87015017f1786ca189558a96daf80b', '31.222.203.2', 1670315530, '__ci_last_regenerate|i:1670315530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('768dda2937463000637b31648f8970ca07ffe555', '31.222.203.2', 1670315530, '__ci_last_regenerate|i:1670315530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ca9fca1d3f2c0954b59e773aa758838cf28d2f', '31.222.203.2', 1670315530, '__ci_last_regenerate|i:1670315530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900cb10e198d275227ff8ff106aea9f79d4c9326', '45.120.39.90', 1670316112, '__ci_last_regenerate|i:1670316112;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670315578;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21e4a662d6afefab814c16cc1053e2424a965849', '45.120.39.90', 1670320572, '__ci_last_regenerate|i:1670320572;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670316118;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2dfaa6d15a77b39d561d718db6a9647a53c4b1', '183.136.225.44', 1670316420, '__ci_last_regenerate|i:1670316420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e87d9b5496796549fa71bf196b2369f8912c6f', '183.136.225.44', 1670316432, '__ci_last_regenerate|i:1670316432;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c642176f678f6faa36ec07d378a119269f86c428', '183.136.225.44', 1670316444, '__ci_last_regenerate|i:1670316444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4b6d4c49b0b73ba2b182521dc2353c1f2c93e5', '183.136.225.44', 1670316446, '__ci_last_regenerate|i:1670316446;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02085851ad1c1775e1bd39a711a1a19cafaa8193', '183.136.225.44', 1670316447, '__ci_last_regenerate|i:1670316447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d4804690b327e173c8b5392c289d53595b9eae', '183.136.225.44', 1670316448, '__ci_last_regenerate|i:1670316448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6561c8fdcac5de3896d2bfcf7295c359c6496c92', '183.136.225.44', 1670316449, '__ci_last_regenerate|i:1670316449;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2dddf789c5173b8eb82cba6e84e420099e849c', '31.222.203.2', 1670317320, '__ci_last_regenerate|i:1670317320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ab6b45aa2b56460aff383862a5885f048ad892', '31.222.203.2', 1670317320, '__ci_last_regenerate|i:1670317320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c361d133e7502f31fc945068d4ddb70b7b8191d4', '31.222.203.2', 1670317320, '__ci_last_regenerate|i:1670317320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ff9818d6506bebe6dff7187466efc76848032b', '31.222.203.2', 1670317320, '__ci_last_regenerate|i:1670317320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff5a541f6996dcb2132d9fdfbbb6a921505b9a79', '31.222.203.2', 1670317320, '__ci_last_regenerate|i:1670317320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b3b674d54d139924e4839154c5dc0c48ebdf88', '31.222.203.2', 1670317320, '__ci_last_regenerate|i:1670317320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b7477a89dfcf48a7f739592b607750c220754c', '31.222.203.2', 1670319131, '__ci_last_regenerate|i:1670319131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e745be9ef6c91fe23332f710fa74bd19bc07ce6', '31.222.203.2', 1670319131, '__ci_last_regenerate|i:1670319131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfab5de292494e0d760ce55598d53fb5f71834a1', '31.222.203.2', 1670319131, '__ci_last_regenerate|i:1670319131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c79d2c8522a223067ac21ff5addc3585f2f439', '31.222.203.2', 1670319131, '__ci_last_regenerate|i:1670319131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ce8d8640b69bdb751c949ab4e6728243c74b3b', '31.222.203.2', 1670319131, '__ci_last_regenerate|i:1670319131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9927364d3fd7d6266e5685d0bb08047a733657a', '31.222.203.2', 1670319131, '__ci_last_regenerate|i:1670319131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ddef398e7e129a0d7fd64ce708803e67561764', '172.105.247.100', 1670320311, '__ci_last_regenerate|i:1670320311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d21b25c689ac9a8711ac836a56057570c201f7', '172.105.247.100', 1670320311, '__ci_last_regenerate|i:1670320311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189ebea64cbc61852f29e6a7c9f1fead9ec4e790', '172.105.247.100', 1670320311, '__ci_last_regenerate|i:1670320311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c972168f615462fa62359370465c2dc425fd3e27', '172.105.247.100', 1670320311, '__ci_last_regenerate|i:1670320311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bd4016aeb186fe3cc0ed4d7438f75772fe3ef1', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f98d1ac692bfa94b3b80ce033ba83c1b610d06c', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f4cd416f834d073a7ce7a866527ebd26ff52de', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb35b57c68c61dfed2d5b6f1383de212918832a6', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8533af696edde1fb0d86291cc613e6ede5b5662', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb3987e0adb727a902066258b9c8903a1d73225', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea6c2f704d7efe784672348bd7f3cdb7e284150', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1da98faf498a85dea776ac53bba502399ef1d28', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99255310f9b19300c3d57fc20f321945e001c22e', '172.105.247.100', 1670320312, '__ci_last_regenerate|i:1670320312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a38d7a72b2cad0ce7b911c6f9d82df281569d0', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ecb4dcf4a92e75b278176105cad3c8a4220856d', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d9489a620fe7c6eb0f8305b02d4e6b647a2c7df', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5a04ab82891abbcb5b0eb2647ba16384897ab6', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7194ca095afed1aea681bdf3211283ba40650b53', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b75f72bace76752743995943b0044d808d227d07', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc003be50168f858a62929c30731c8dcbe009031', '172.105.247.100', 1670320313, '__ci_last_regenerate|i:1670320313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5690057a6c4d373cea612de6925f065c5cfd2c7', '172.105.247.100', 1670320314, '__ci_last_regenerate|i:1670320313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a694b118c81406f000ff38e8f5882ad47b9f187', '172.105.247.100', 1670320314, '__ci_last_regenerate|i:1670320314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f29933b2d122a73907a491020b7f138a681074', '172.105.247.100', 1670320314, '__ci_last_regenerate|i:1670320314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6091d6fb9ed1e6bf266e69899795f1ac6d810e44', '172.105.247.100', 1670320314, '__ci_last_regenerate|i:1670320314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346ebf255828a725cd74dc388ecd35bab210fa3d', '45.120.39.90', 1670322171, '__ci_last_regenerate|i:1670322171;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670322114;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a45bd9e0c0032d1dc08cefdb55412a621b7155', '31.222.203.2', 1670320927, '__ci_last_regenerate|i:1670320927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf0437e8057e2a38c9fb8e1198a7e998073da21', '31.222.203.2', 1670320929, '__ci_last_regenerate|i:1670320929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41247425c778fcfcf1e809ea2e0afe2b86f9a69', '31.222.203.2', 1670320929, '__ci_last_regenerate|i:1670320929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d86fbf67d6e1ef37add9442e0235b8213d7760d', '31.222.203.2', 1670320929, '__ci_last_regenerate|i:1670320929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70859f52a284331783ff699e612c8803a3f29802', '31.222.203.2', 1670320929, '__ci_last_regenerate|i:1670320929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ac8d0c7dbb0da9056f700f42bf831f6e9259f7', '31.222.203.2', 1670320929, '__ci_last_regenerate|i:1670320929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f17059241db6c7d6f3145071734626fe546ae6', '45.120.39.90', 1670324274, '__ci_last_regenerate|i:1670324274;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670322171;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7526a7fa9246c38dfed43a10b9a26ca8f7168cd2', '31.222.203.2', 1670322724, '__ci_last_regenerate|i:1670322724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc40dba8ad606e9ff805f925664dbfb4d13ec76', '31.222.203.2', 1670322724, '__ci_last_regenerate|i:1670322724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956905b84a69c954422fe3cbbeacb78e8763f331', '31.222.203.2', 1670322724, '__ci_last_regenerate|i:1670322724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727889203886d2709c6127cbbf9fa9298a5d1dbe', '31.222.203.2', 1670322724, '__ci_last_regenerate|i:1670322724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cc5fdba7a076573fd148b0db624602e764f0ff', '31.222.203.2', 1670322724, '__ci_last_regenerate|i:1670322724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8f99cec44c837b43676a36930a4c8c360a7134', '31.222.203.2', 1670322724, '__ci_last_regenerate|i:1670322724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d6d81ad53280b3ab91f3c7179fdfd4f10d3ce6', '45.120.39.90', 1670325015, '__ci_last_regenerate|i:1670325015;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670324506;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c691453e53b8195ae6a82d07bae7d4451063216', '31.222.203.2', 1670324530, '__ci_last_regenerate|i:1670324530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af01b5be96c4d990ff7ef5bf0e1fd8977cd8e6c8', '31.222.203.2', 1670324530, '__ci_last_regenerate|i:1670324530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b49b9c1a6fb5f20ec794d6b97d9192e7d7588ced', '31.222.203.2', 1670324530, '__ci_last_regenerate|i:1670324530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a813e42717558fff5251086c8d1b08ecffb323e', '31.222.203.2', 1670324530, '__ci_last_regenerate|i:1670324530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e86d883a1e8427b90325827fd376465ffa35e2a', '31.222.203.2', 1670324530, '__ci_last_regenerate|i:1670324530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e174f87e3a894cf24bf90ed9e1aef61ef7a11dcc', '31.222.203.2', 1670324530, '__ci_last_regenerate|i:1670324530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df578d3ccfe59a5423b95555c1292716187aff77', '45.120.39.90', 1670326106, '__ci_last_regenerate|i:1670326106;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670326015;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671ce268a5f2f67c6672c5b153587ea095a2e892', '172.105.247.100', 1670325715, '__ci_last_regenerate|i:1670325715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcc3796a5a9768c028509ef9eecf8189598bf36', '172.105.247.100', 1670325716, '__ci_last_regenerate|i:1670325716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5191a77e9115f7a2fc58d0b552c0172975ac0f0e', '172.105.247.100', 1670325716, '__ci_last_regenerate|i:1670325716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4469b7d41358827017e08b12f92310b0d7cc19e', '172.105.247.100', 1670325716, '__ci_last_regenerate|i:1670325716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4452f33c664ef1cd1fe3d75e811fa13ac85a628d', '172.105.247.100', 1670325716, '__ci_last_regenerate|i:1670325716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76dc6d9cfabdb0cf089828922ffbc38330b6452', '172.105.247.100', 1670325717, '__ci_last_regenerate|i:1670325717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a091595b938b53a93c514b53b4113de02cf6da7d', '172.105.247.100', 1670325717, '__ci_last_regenerate|i:1670325717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5900ae35069b7b8e145bcf609827ed0624f3c00', '172.105.247.100', 1670325717, '__ci_last_regenerate|i:1670325717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38e0a14418dd3194b7c3dfa2ff35b212716d66c', '172.105.247.100', 1670325717, '__ci_last_regenerate|i:1670325717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a5789d8000f41f8f9923549e9bc6765df0f3fc', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fcbc416293774a71a18bc43ef13606f5d1be135', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faff02e20fde29d31f6b4b41698b55ec3430c551', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c517384f960d0225e4c02e11d87f8a7ffe4d8d', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f86359a4a1f3be11446e961209943938468ed7f', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a2d826827899050b39364e810e5a7d69b3f2c4', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e36f98922afc33453ba51c27d88c1a3981a25b', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf7f95f452ef8a141e0fe70190c49f0739aa40a', '172.105.247.100', 1670325718, '__ci_last_regenerate|i:1670325718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0b730e927e6d4611debddab8cb6a72091e51b1', '172.105.247.100', 1670325719, '__ci_last_regenerate|i:1670325718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125c9986c2591ffa0261f471695bb248a7b2f351', '172.105.247.100', 1670325719, '__ci_last_regenerate|i:1670325719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d0f996a04c03a606c4ee6be9525d61c19246e7', '172.105.247.100', 1670325719, '__ci_last_regenerate|i:1670325719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb88f03ff3839ddd9237563bc1254fe93e05ed0d', '172.105.247.100', 1670325719, '__ci_last_regenerate|i:1670325719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('253de6ce6e56e62dbfa38dea80391e5325147cf7', '172.105.247.100', 1670325720, '__ci_last_regenerate|i:1670325720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8cf820f8f42cd21b544a49adf26fed8f6f54c03', '172.105.247.100', 1670325720, '__ci_last_regenerate|i:1670325720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9491c54fbc777834c66d0b822a8b14112259f858', '172.105.247.100', 1670325720, '__ci_last_regenerate|i:1670325720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5a1d26b379670b9c361474503f85499a6b7a41', '45.120.39.90', 1670326502, '__ci_last_regenerate|i:1670326502;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670326106;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af19c74ef6d92585a2036e98f710c22494ecc4c', '31.222.203.2', 1670326319, '__ci_last_regenerate|i:1670326319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf222077cccdb7715b89a902bae75efdca91202', '31.222.203.2', 1670326321, '__ci_last_regenerate|i:1670326321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e563dcc491c955088e3655d8adb0d132138267', '31.222.203.2', 1670326321, '__ci_last_regenerate|i:1670326321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8131e5538f865742ee10450b4a852a78917f6d7', '31.222.203.2', 1670326321, '__ci_last_regenerate|i:1670326321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e596461a3b45b2fc983d9fff68e9e6e992abb14a', '31.222.203.2', 1670326321, '__ci_last_regenerate|i:1670326321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eebe81edcf5549be8ab25238d1abaa3c855f491', '31.222.203.2', 1670326321, '__ci_last_regenerate|i:1670326321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4a906b934e372965a78654abfe4fa28d8dd95c', '45.120.39.90', 1670327401, '__ci_last_regenerate|i:1670327401;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670326723;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47997b8b366bb8c584701fb677b495d2bb170b49', '45.120.39.90', 1670332987, '__ci_last_regenerate|i:1670332987;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670332974;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0722ed5b9a26e48442fd523ddc798c96fd12d58', '31.222.203.2', 1670328133, '__ci_last_regenerate|i:1670328133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ed5dd1a4d24f15b7c10cfb626f19cf2888972f', '31.222.203.2', 1670328135, '__ci_last_regenerate|i:1670328135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490af0f9259f8de9a1c0cc1a0a5a6ae5d032a977', '31.222.203.2', 1670328135, '__ci_last_regenerate|i:1670328135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b021243a22578b77cb474f678764b476c0d276', '31.222.203.2', 1670328135, '__ci_last_regenerate|i:1670328135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2579980f0130998017d507d382f2f26bbc5b5018', '31.222.203.2', 1670328135, '__ci_last_regenerate|i:1670328135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b419bcf2c11b3ee8f1a9f5a1f3339acc6f52e468', '31.222.203.2', 1670328135, '__ci_last_regenerate|i:1670328135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba80b84b27ea71c75c3cd5fc8137c3d49ba7e28', '31.222.203.2', 1670329927, '__ci_last_regenerate|i:1670329927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1554786dd6543dd3b7edc89080e1ea917691fad', '31.222.203.2', 1670329927, '__ci_last_regenerate|i:1670329927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7588894b415cd6ece2addecd87e12fc528a32443', '31.222.203.2', 1670329927, '__ci_last_regenerate|i:1670329927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911f45bf7513c6812dd346d5fb5b19e1f97df5ce', '31.222.203.2', 1670329927, '__ci_last_regenerate|i:1670329927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de9c7a68a60db40f1adf7fca1f96a4a6e783419', '31.222.203.2', 1670329927, '__ci_last_regenerate|i:1670329927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191fb4ef9ce9e16b44cb463fae49b899706c0734', '31.222.203.2', 1670329927, '__ci_last_regenerate|i:1670329927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524a2b7c45896cebadefa242263be4ea8d019519', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bc266419cd9d03924ea3d039cf281139036cf6', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029fc52e488847be79eb9949756cb76aeff96414', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e8b9000697581ca55255f10f7e5ad74caab4d4f', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07083bdb8f80167bf424008c2ff229f12e4387d2', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be32fd4bb7ac9ff91883596b55f09802051017c3', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f612992da571789ca9c0e270511e99dd672bd9b', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff1a5e75d48b43d1300fc9cc874a7212152e849e', '172.105.247.100', 1670331108, '__ci_last_regenerate|i:1670331108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('300baaf5ac0c6302229139fa508b5950b8874b69', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791e8693f5dae5958daf59d89d633ae1301f42d3', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af306e6e4f2c3ea218684ee77fbd020773ae28ea', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5756a7b2a0cbe939ee1265c10f49688b2429594', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f5ccbd0844b3323ad11967ea258710637d2909', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021463eb0f1fff7c3cbb3de0c74a874d7fed6b7f', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773d43a896a22125ee9e872e72f9f9b540064cfc', '172.105.247.100', 1670331109, '__ci_last_regenerate|i:1670331109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83c9bb3c8f6bbc3a22793ff783e023b844ad1691', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236786d68e34853cb4d3cb777e0f0871b967a46b', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889c4040e0e1e49ba9abc551b080faded52a4db1', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfebb432ea26a2827b4a96332a66fae05d8eaa7', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('facd641d806f4a5189981286a28cf1f4cf4a501a', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba11c60e021b7d36cf06304b20dfdbe8378e9bf', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12eebb8233f2e3fd9fc3ff3997c727f61991bfa7', '172.105.247.100', 1670331110, '__ci_last_regenerate|i:1670331110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7535cebea3ce64ebf98bb48ef1fdffc3d4d818a', '172.105.247.100', 1670331111, '__ci_last_regenerate|i:1670331111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa4ec7942ef5f8fb75df5132ec258a568ff6357', '172.105.247.100', 1670331111, '__ci_last_regenerate|i:1670331111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d0a33037d4f5a7eef1c548ac13b08cf2294d6f', '31.222.203.2', 1670331725, '__ci_last_regenerate|i:1670331725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f555fd4f056faf686a9aa688dfe7b2193847d0be', '31.222.203.2', 1670331727, '__ci_last_regenerate|i:1670331727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c427cc5ed31fd85db7d423073b34cb3d4f569d3f', '31.222.203.2', 1670331727, '__ci_last_regenerate|i:1670331727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6263132dde96732dd11dfcc6e91b6837eaec580b', '31.222.203.2', 1670331727, '__ci_last_regenerate|i:1670331727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08b57a7571e409fa3595fab717004c107219538', '31.222.203.2', 1670331727, '__ci_last_regenerate|i:1670331727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbd4f949f680f3b57f7e37bd29fe38cabdf4dd9', '31.222.203.2', 1670331727, '__ci_last_regenerate|i:1670331727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797516fab279053a691e9da600230f4136353e23', '45.120.39.90', 1670333571, '__ci_last_regenerate|i:1670333571;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670333035;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff823d6f78eef65f46871857f04c2df7aa0c5221', '31.222.203.2', 1670333524, '__ci_last_regenerate|i:1670333524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6294f687da200201c037d2ab43beb6a721f00a2', '31.222.203.2', 1670333524, '__ci_last_regenerate|i:1670333524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6116b13cedcf5a6e2fcbcc8a3f0e1c28d740cb', '31.222.203.2', 1670333524, '__ci_last_regenerate|i:1670333524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6af475e35ec1429039590b4c246e4ae490d0057', '31.222.203.2', 1670333524, '__ci_last_regenerate|i:1670333524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51294b379bacf22269549050d3ff648702dd1eff', '31.222.203.2', 1670333524, '__ci_last_regenerate|i:1670333524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7078f0d5f7ae78f758e24ab6c6e566f33235f44a', '31.222.203.2', 1670333524, '__ci_last_regenerate|i:1670333524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afc552b5f92aeb2b81a0e813c28b4212b33e834', '45.120.39.90', 1670335665, '__ci_last_regenerate|i:1670335665;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670333586;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc34de3cfab3b51d02befda1a0eb6d2bd5e67850', '31.222.203.2', 1670335336, '__ci_last_regenerate|i:1670335336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348e585069eacab2a04ee5465145cfaacb3da79e', '31.222.203.2', 1670335338, '__ci_last_regenerate|i:1670335338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11b1e877874e10654abdb48132218c460ce752b', '31.222.203.2', 1670335338, '__ci_last_regenerate|i:1670335338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd8749d11cc971785169732b8b70c808f67c079', '31.222.203.2', 1670335338, '__ci_last_regenerate|i:1670335338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14717783caff0651f40532ac1e11f164094c3e26', '31.222.203.2', 1670335338, '__ci_last_regenerate|i:1670335338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db17acfedf421153cf9600b345021d28c6148a7', '31.222.203.2', 1670335338, '__ci_last_regenerate|i:1670335338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3382d8660ab17f18ae2bbed4c25e6eaf3f37b18b', '45.120.39.90', 1670336003, '__ci_last_regenerate|i:1670336003;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670335998;register_id|s:3:\"271\";cash_in_hand|s:9:\"5900.0000\";register_open_time|s:19:\"2022-12-06 12:02:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e80d555a42abf5deed442783597a7d171ce79254', '45.120.39.90', 1670336029, '__ci_last_regenerate|i:1670336003;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670227490\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670336027;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03dfb61e5d968658913fc15157fba156d16afcc', '172.105.247.100', 1670336515, '__ci_last_regenerate|i:1670336515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('280513a978c1ed442b485c276baf85e6c8ed13dd', '172.105.247.100', 1670336515, '__ci_last_regenerate|i:1670336515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1d323fe84d0b7821925bad4611ab9777ea37a2', '172.105.247.100', 1670336515, '__ci_last_regenerate|i:1670336515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b70d2135a3ee1552a8891e5aa4b6d0830ec36b', '172.105.247.100', 1670336515, '__ci_last_regenerate|i:1670336515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e32b0bfa556c1c86d25a1962c5f69360851b78', '172.105.247.100', 1670336516, '__ci_last_regenerate|i:1670336516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1ddf4b990a0274abc057c4bb1b56608c7fef72', '172.105.247.100', 1670336516, '__ci_last_regenerate|i:1670336516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b4f38cfef82a596af343c6e904e794693e871a', '172.105.247.100', 1670336516, '__ci_last_regenerate|i:1670336516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6693939a469d7fdf211df945717af208f011fa80', '172.105.247.100', 1670336516, '__ci_last_regenerate|i:1670336516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9195ada551eb2f08522985eb5ce6787e61acbda9', '172.105.247.100', 1670336517, '__ci_last_regenerate|i:1670336517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e43624e1ed2cf6c86fc7f8d0ca27cf99b1f073', '172.105.247.100', 1670336517, '__ci_last_regenerate|i:1670336517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc783ee739d79c3c8c72346ae5ed531398c8bd0', '172.105.247.100', 1670336517, '__ci_last_regenerate|i:1670336517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c448ab7415820d1fd391756e32e847b5f682746', '172.105.247.100', 1670336517, '__ci_last_regenerate|i:1670336517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333ded62e8d9d27e23cad3cc4a331869a83fc684', '172.105.247.100', 1670336517, '__ci_last_regenerate|i:1670336517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbdadd3271990937262872340b08b6069e82bbc', '172.105.247.100', 1670336518, '__ci_last_regenerate|i:1670336518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583437c5350708ac9f0b8a3256166c8da35beade', '172.105.247.100', 1670336518, '__ci_last_regenerate|i:1670336518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cce8f6eddf06b16ca5b5eacd758397fc748a34', '172.105.247.100', 1670336518, '__ci_last_regenerate|i:1670336518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b2a78e63ba190352a815cba36a09ea9c73215f7', '172.105.247.100', 1670336518, '__ci_last_regenerate|i:1670336518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8bf1fd1c512efac137cc4836cdf9b1931c8924e', '172.105.247.100', 1670336518, '__ci_last_regenerate|i:1670336518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340a87feae214284922d3673009438de41184b3a', '172.105.247.100', 1670336518, '__ci_last_regenerate|i:1670336518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd01788e014027dec45af9d84bbf41a7b5caa603', '172.105.247.100', 1670336519, '__ci_last_regenerate|i:1670336519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb91c6d8d5b9b92394fd5c756f2f63bafb868cd', '172.105.247.100', 1670336519, '__ci_last_regenerate|i:1670336519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241cdc25dd3533cd63b3731ea2ff82095a194b20', '172.105.247.100', 1670336519, '__ci_last_regenerate|i:1670336519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289bd4bc9d2704e1a4ba5ce519815275bdba3ff1', '172.105.247.100', 1670336520, '__ci_last_regenerate|i:1670336520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c8227fea565ca678b1b01da6ef986860f7d562', '172.105.247.100', 1670336520, '__ci_last_regenerate|i:1670336520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc891b6c0e7c6ae3d973411ec195b28d47738103', '31.222.203.2', 1670337123, '__ci_last_regenerate|i:1670337123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4438ab47a6707edd33c99310215c7279bb39163', '31.222.203.2', 1670337125, '__ci_last_regenerate|i:1670337125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0dd45791dd6dcf344026aefce42f2e1c3ba580d', '31.222.203.2', 1670337125, '__ci_last_regenerate|i:1670337125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d912dda51445b8d60e067d54aac7397aa67562d', '31.222.203.2', 1670337125, '__ci_last_regenerate|i:1670337125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596590f8590ff56a5f146d3ab95d296e157c1b4d', '31.222.203.2', 1670337125, '__ci_last_regenerate|i:1670337125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ee1a488f46f79815aa70624133ac0eb361ad13', '31.222.203.2', 1670337125, '__ci_last_regenerate|i:1670337125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3648ca22967b3c1f07bd66902b70cbfb0c2997fa', '31.222.203.2', 1670338929, '__ci_last_regenerate|i:1670338929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d5b391488c8d01bd7bb924cd9063bb670ea6d3', '31.222.203.2', 1670338929, '__ci_last_regenerate|i:1670338929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99301cbb8e0480efe9aa2a41f397b65dfa77066', '31.222.203.2', 1670338929, '__ci_last_regenerate|i:1670338929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a8b9a36a1468eeef261b53b47d004cb462cf6f', '31.222.203.2', 1670338931, '__ci_last_regenerate|i:1670338931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8132340e2c7bb9087a2fb691b3c51c98dfd3e028', '31.222.203.2', 1670338931, '__ci_last_regenerate|i:1670338931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b89d05b39833fbf1ac98b0ae5098eb25074f79', '31.222.203.2', 1670338931, '__ci_last_regenerate|i:1670338931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9304efa2f185b234d98a4be0db5545505413effc', '31.222.203.2', 1670340727, '__ci_last_regenerate|i:1670340727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc2da1b22b3ff5f462343634267d756d851160ea', '31.222.203.2', 1670340727, '__ci_last_regenerate|i:1670340727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad183681c3a42f18408c732ff0d550089262bd8', '31.222.203.2', 1670340727, '__ci_last_regenerate|i:1670340727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fecfd6f97ae6319cbcd41288e64d40398cc0b07', '31.222.203.2', 1670340727, '__ci_last_regenerate|i:1670340727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf046752f9b1b004420c080a0d185cde51d0a76', '31.222.203.2', 1670340727, '__ci_last_regenerate|i:1670340727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd216aa36c5eb578598e347b4fc253359cb4efd', '31.222.203.2', 1670340727, '__ci_last_regenerate|i:1670340727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb44e79416d1e6fcadae082efd1321395b1a8957', '172.105.247.100', 1670341917, '__ci_last_regenerate|i:1670341917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2123343b58483576413038ad682340435d665382', '172.105.247.100', 1670341918, '__ci_last_regenerate|i:1670341918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69664b36be2394bde81faa634950fa681e5154d2', '172.105.247.100', 1670341918, '__ci_last_regenerate|i:1670341918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40cd81c8e12302e3428615adc05e688530cd6e2f', '172.105.247.100', 1670341918, '__ci_last_regenerate|i:1670341918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb86ac2cb69368940be5f6b5ffe84e10b35c8b6', '172.105.247.100', 1670341918, '__ci_last_regenerate|i:1670341918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23712713019c9ef4066e375d0233063443ae6f3d', '172.105.247.100', 1670341918, '__ci_last_regenerate|i:1670341918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6652e12888935af3ece636ff489a8643477b6cb3', '172.105.247.100', 1670341918, '__ci_last_regenerate|i:1670341918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef401c6dcb9c658fcd1d271a3e12bf953910312b', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed57ee72d0339d9ab03eb5a4f83307b03877fd5', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e604b2eafbd19f7e034bcf5a4027924538764d16', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e28308926f0b5ef2b5cf72f3c000e500414a59c', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3caee1b34571b553c08c98d99a7bc0a483913f6b', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffef455db832039ee8bae64b38f77dcb159341eb', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca1af0b46d56b483c8de18a22d52d381c1d16d4', '172.105.247.100', 1670341919, '__ci_last_regenerate|i:1670341919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0466f595418d097b3cb833852773d7dfd1dc4ec6', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('055ed39908bcf1a86049925dadae0793a8d22884', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eafc9e4ac260fe8af1c64610c8512cbfa110357', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7aa22449dc441330a9399d72c9bae5f8b233b1b', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34907e3bce88a89c1d975c1769df8cc69f9fb86', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50cab889da34aa3ea1e3aec86eecb4a858833a2', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8de936d10e6cb72bf8ec4bba0be0e5a8ac52bb6', '172.105.247.100', 1670341920, '__ci_last_regenerate|i:1670341920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff86115bc8bf77d673e4883eaefb223975f91e43', '172.105.247.100', 1670341921, '__ci_last_regenerate|i:1670341920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4aeff8c1238aa0968bf374a00e3f2ab7c6c4d9c', '172.105.247.100', 1670341921, '__ci_last_regenerate|i:1670341921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d814b3547eef2d8485c40bece8663d705c264315', '172.105.247.100', 1670341921, '__ci_last_regenerate|i:1670341921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b7a45e633e54422a2ef147c63e1feb5694b26e', '31.222.203.2', 1670342529, '__ci_last_regenerate|i:1670342529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eed81d2c9cff8095e31b35c694fb9f8835e7539', '31.222.203.2', 1670342529, '__ci_last_regenerate|i:1670342529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c2abb8f75dce081b77a559fe25d1c7e6fefb90', '31.222.203.2', 1670342529, '__ci_last_regenerate|i:1670342529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a505c454b8f5f2c56ea1f92a153e96eeda8ced1e', '31.222.203.2', 1670342529, '__ci_last_regenerate|i:1670342529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3ccf34115faa0ac822a080fa989b38f77ca6e4', '31.222.203.2', 1670342529, '__ci_last_regenerate|i:1670342529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10641e1fceefcaa70a56900848ef88e071a078b', '31.222.203.2', 1670342529, '__ci_last_regenerate|i:1670342529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfda7474031f0b9b7dfdec7a0f5aae6e1c2b48a8', '31.222.203.2', 1670344330, '__ci_last_regenerate|i:1670344330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00e72b54d4f203987cc6e0d577bf9dd9a68bac9', '31.222.203.2', 1670344332, '__ci_last_regenerate|i:1670344332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a43efc821f581c46dfe6d7ce216dbd6b4133a10', '31.222.203.2', 1670344332, '__ci_last_regenerate|i:1670344332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7eeb4552278cb8c2fa0ad8f479bb09cb556ba01', '31.222.203.2', 1670344332, '__ci_last_regenerate|i:1670344332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06881a914577c44b025f9e5fa20a5d23b8c1220a', '31.222.203.2', 1670344332, '__ci_last_regenerate|i:1670344332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d14996fe3caea23fd11f64b22ad14dbb70a551f9', '31.222.203.2', 1670344332, '__ci_last_regenerate|i:1670344332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f1d048523f41e1c82d67f9a8c0928990d3c87a', '31.222.203.2', 1670346231, '__ci_last_regenerate|i:1670346231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab48706ed8293edc0ac185f7c50d7772ca32c2b', '31.222.203.2', 1670346231, '__ci_last_regenerate|i:1670346231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825393a9cbedd839a05dc1c412bfd82978d8159d', '31.222.203.2', 1670346231, '__ci_last_regenerate|i:1670346231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9786d2845981f94b1e0f4aeb3c145073a705a8c1', '31.222.203.2', 1670346233, '__ci_last_regenerate|i:1670346233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('767f0614029ca1867d8dc1befff24cb78cd23d98', '31.222.203.2', 1670346233, '__ci_last_regenerate|i:1670346233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0794cd8fac7ede974e3d26a42f6d616adcf5285d', '31.222.203.2', 1670346233, '__ci_last_regenerate|i:1670346233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f37606d471b5dab53b941b4ec22f58de73aacd', '172.105.247.100', 1670347316, '__ci_last_regenerate|i:1670347316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d295d9480f5449721baa5a7c36bbc2c5e3030f3', '172.105.247.100', 1670347317, '__ci_last_regenerate|i:1670347317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad3326013fc0b10fa2c0a4bfa173d82e5ce09e6', '172.105.247.100', 1670347319, '__ci_last_regenerate|i:1670347319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e87ea6ed49105ded598cf3f75419a6a0285057', '172.105.247.100', 1670347319, '__ci_last_regenerate|i:1670347319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d1727217371e74073697bff118c853d6165880', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ad8394b7a6bd3fcc7f8a05520be75e02909096', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('175241a7947e3857831c9b1032a7db46977e750d', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff955487d85eb616792a0684cf15080bae80917', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721a2168b45673b68723ab85e959e86063bcd6d6', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fdc491ab42416c4e3378ce1f89158a912fb120a', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef38c460ba43b81a2eda83fc6ed5acbb88154fab', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b5d2f3b49b2cd6292e498406ed5e11b666d5b0', '172.105.247.100', 1670347320, '__ci_last_regenerate|i:1670347320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d92505601973063e75e1f7e2f09eb8c2e75bb4', '172.105.247.100', 1670347321, '__ci_last_regenerate|i:1670347320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0524758e3bfe39f7db22954272f6f25370a9a9e4', '172.105.247.100', 1670347321, '__ci_last_regenerate|i:1670347321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77b4abcdf7c2d4fa32e0b49c2e70c1029cf98928', '172.105.247.100', 1670347321, '__ci_last_regenerate|i:1670347321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a02a4a8a6c8107ad98cd9a7103ad1ae237b54c7d', '172.105.247.100', 1670347321, '__ci_last_regenerate|i:1670347321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc1e9ee6c6e00676297837fec3b98f0ad006251', '172.105.247.100', 1670347321, '__ci_last_regenerate|i:1670347321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('573a158e4cb9063d1a3d188207afba56123d884e', '172.105.247.100', 1670347321, '__ci_last_regenerate|i:1670347321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17eb5274b9551343af2dea2f620cfeb6c7a8b5b', '172.105.247.100', 1670347322, '__ci_last_regenerate|i:1670347321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b95efe02e1230842da2e8b959d67202878a71c', '172.105.247.100', 1670347322, '__ci_last_regenerate|i:1670347322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6a29b96af6effc4f2f8dee1e0afbd2959442c6', '172.105.247.100', 1670347322, '__ci_last_regenerate|i:1670347322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6ee5ad7c1a7d9dc262baa057a255459467e04b', '172.105.247.100', 1670347322, '__ci_last_regenerate|i:1670347322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794ca66ba69286a6ba9a11357d01553e7ccdb601', '172.105.247.100', 1670347322, '__ci_last_regenerate|i:1670347322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d74d000260b9916825337d9ce5960592e4264f1', '172.105.247.100', 1670347322, '__ci_last_regenerate|i:1670347322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1005defc0bbed8c8f6beb26a08ff7ae0d472d143', '31.222.203.2', 1670347986, '__ci_last_regenerate|i:1670347986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32055f3f42816f583bc9407395eed8d485c66a9', '31.222.203.2', 1670347988, '__ci_last_regenerate|i:1670347988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f5572dc6af4379f559b15282b348b312e5d718', '31.222.203.2', 1670347988, '__ci_last_regenerate|i:1670347988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be85e2fade48060d6241ecf5eccc0e5aac59ff6', '31.222.203.2', 1670347988, '__ci_last_regenerate|i:1670347988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c881eccbfa925a45a8c942e7e93e4168e1e7b3', '31.222.203.2', 1670347988, '__ci_last_regenerate|i:1670347988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc55c0c8ff37e8ab05a718cf3d3ec6f965c69d8', '31.222.203.2', 1670347988, '__ci_last_regenerate|i:1670347988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167268193ad257cf45aa94c56a098c5487cd99c4', '31.222.203.2', 1670349795, '__ci_last_regenerate|i:1670349795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b4312ca5e735e94ae2fb77c07b1ab6ac4317e9', '31.222.203.2', 1670349795, '__ci_last_regenerate|i:1670349795;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c14162d26554265731e64e96bc72e25c686c20a', '31.222.203.2', 1670349795, '__ci_last_regenerate|i:1670349795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1715f08d37bf4bcf45148328b4e91aad4a17c3', '31.222.203.2', 1670349796, '__ci_last_regenerate|i:1670349796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9753518481914b9278988dd64b82e58447d3e573', '31.222.203.2', 1670349796, '__ci_last_regenerate|i:1670349796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b96417cfa019596d57c5fc2f8083228e93cbb9', '31.222.203.2', 1670349796, '__ci_last_regenerate|i:1670349796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84df54717653ee9518ff58dd049fbc282c58966', '31.222.203.2', 1670351608, '__ci_last_regenerate|i:1670351608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1e19a8bd8ccd29552022d005f219f565b62df1', '31.222.203.2', 1670351610, '__ci_last_regenerate|i:1670351610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b501ca8418a4efcacecdc1a0333726cf0d4540', '31.222.203.2', 1670351610, '__ci_last_regenerate|i:1670351610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0d35c993af5f7bed53e47ef578c061f47c9a8f', '31.222.203.2', 1670351610, '__ci_last_regenerate|i:1670351610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a3bcd63e680028bbee0cb0094ed5c9ea2e7993', '31.222.203.2', 1670351610, '__ci_last_regenerate|i:1670351610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae88f5e88fdefb35903f9a73192b887aff1ecbb5', '31.222.203.2', 1670351610, '__ci_last_regenerate|i:1670351610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24443dcb9a042f699899c3d71d5e52b10e2b3224', '172.105.247.100', 1670353315, '__ci_last_regenerate|i:1670353315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061d086bc8ac614e498057e5b7812a7cdda2658c', '172.105.247.100', 1670353316, '__ci_last_regenerate|i:1670353315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60ebe08c155218fbe428f503c3d5e7e7bba253c', '172.105.247.100', 1670353316, '__ci_last_regenerate|i:1670353316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025bba804e227d73723dcfda60526b427605c8b8', '172.105.247.100', 1670353316, '__ci_last_regenerate|i:1670353316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1519f02d17cbfb7138c2b31af6fc7558e107029c', '172.105.247.100', 1670353316, '__ci_last_regenerate|i:1670353316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5621115bd5ad8bd0f6496b74ba96134c82376727', '172.105.247.100', 1670353316, '__ci_last_regenerate|i:1670353316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40405a1a0173582a794f46cf9b0865e74cfa640', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb997e27d6d795f4f705a60718eaa900be5f937', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d814f1671eb9b6104ea1ac812a05e46de44f2403', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('217706787369b490ed2b3881665a01304d041ec0', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399bb82cfdaab20ea9270ea6a381b84369d06789', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4bd1b2d4ed0be49c0728e42adcdc685b496c1c', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a5e4184ffd8116f696191ccb893070ce336d90', '172.105.247.100', 1670353317, '__ci_last_regenerate|i:1670353317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6e17d73efb8e90c723ab4a18bc6ec4d042cbc5', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ebea8e1ab808e43f6034f0d68f59c60fc6c5cc', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb9f04262e06183d92fd2648192f9f8730dfb2e', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9542fb5b7ee137e20b0b70fc841aff31b4560ce7', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('753578abae362a624de390b42709567b1addfbdd', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd8dbd722ca4b900ef38f4ee2eed1c8a7a72f1e9', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f4e25f0b9ce320996480252c2866f5b8e59cc98', '172.105.247.100', 1670353318, '__ci_last_regenerate|i:1670353318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4762de8365fc9d1304f615f74a724db698ccd898', '172.105.247.100', 1670353319, '__ci_last_regenerate|i:1670353319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cd2fcf500d5df784884194119c14131f25fb5d', '172.105.247.100', 1670353319, '__ci_last_regenerate|i:1670353319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5a03a817b5ac15e6c83b54652a9f1517ed4f75', '172.105.247.100', 1670353319, '__ci_last_regenerate|i:1670353319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16834d90bb45d37dacec4662573323f2a249a54', '172.105.247.100', 1670353320, '__ci_last_regenerate|i:1670353320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e7ef1e609c4155d02c9ba3640ba4676073c5fc', '31.222.203.2', 1670353380, '__ci_last_regenerate|i:1670353380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee974751a24d1b39fe8ad4af5f67670e406929a', '31.222.203.2', 1670353382, '__ci_last_regenerate|i:1670353382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6a6878a5b8e3054e5cdaf34b3bb8dc73d50dc5', '31.222.203.2', 1670353382, '__ci_last_regenerate|i:1670353382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0fe078494412204b66a68895a00cd6612c311a', '31.222.203.2', 1670353382, '__ci_last_regenerate|i:1670353382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2fd715d972d55e4fcc3380dbeaf141a35c0bf0', '31.222.203.2', 1670353382, '__ci_last_regenerate|i:1670353382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9486cbf836f606c91ec40872482782c9f2107431', '31.222.203.2', 1670353382, '__ci_last_regenerate|i:1670353382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad58963c45ca043105a8617675a9333d9ca53cd', '31.222.203.2', 1670355213, '__ci_last_regenerate|i:1670355213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ab81376948d3aad4db80c59e4bfbf4b38ecae0', '31.222.203.2', 1670355213, '__ci_last_regenerate|i:1670355213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d306fccbf8ef38367f6d414f9f8e3600a1fecbb', '31.222.203.2', 1670355213, '__ci_last_regenerate|i:1670355213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb6ffcf773d10ce7f512e4bf5a44fc778b8982f', '31.222.203.2', 1670355213, '__ci_last_regenerate|i:1670355213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae1bfa033e328a6119a939679c333a565563de90', '31.222.203.2', 1670355213, '__ci_last_regenerate|i:1670355213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ef1b8d33a00b91c99b9dc0f9c98c6e92a9ace2', '31.222.203.2', 1670355213, '__ci_last_regenerate|i:1670355213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5410895cbdb61e33ad4b441f745e188d31694805', '31.222.203.2', 1670356997, '__ci_last_regenerate|i:1670356997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a037de27871130c26924f9a10fffbf046bf57536', '31.222.203.2', 1670356997, '__ci_last_regenerate|i:1670356997;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('297efaa6c6e1a960032b83db28c6977b9f1ba7c2', '31.222.203.2', 1670356997, '__ci_last_regenerate|i:1670356997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fdbe0f6e9d3c7b233f1ac517b643d4808d0444b', '31.222.203.2', 1670356998, '__ci_last_regenerate|i:1670356998;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ec0ab1cb63d929ac746b35cec095b2bfb9234a', '31.222.203.2', 1670356998, '__ci_last_regenerate|i:1670356998;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419effc3ba142f5a3d4415a532fb05de09be4d08', '31.222.203.2', 1670356998, '__ci_last_regenerate|i:1670356998;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44bb6654c012f08b4fd89f42f875d796d0353427', '172.105.247.100', 1670358108, '__ci_last_regenerate|i:1670358108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1422b14a8a62676995ff342e3b1a77820a406139', '172.105.247.100', 1670358111, '__ci_last_regenerate|i:1670358111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3331e7e6ab2a7d38126af0c87fa88e192a88b0', '172.105.247.100', 1670358111, '__ci_last_regenerate|i:1670358111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0820bc76ae59314b1604f3b877e7ff8c914ac296', '172.105.247.100', 1670358111, '__ci_last_regenerate|i:1670358111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c73b3eea9e1a126cae34af2245fb16e92cba7d', '172.105.247.100', 1670358111, '__ci_last_regenerate|i:1670358111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db47d962d3e2e2a3508ed6e0b251ecc4040281f', '172.105.247.100', 1670358111, '__ci_last_regenerate|i:1670358111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740b312bfee4fc9ffc248a770aa2968b586ffcd4', '172.105.247.100', 1670358111, '__ci_last_regenerate|i:1670358111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da4ed2fc320e9ca6e22d7f7d9610b2e12ac9348', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5d05c4b0d50d8fc5e52494096da996644da0f6', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3af9a820915e8cbc4121e9dd5ad64cf0f0d6ce', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6272312067a9eba8a7fe641dda8746f82df26d4', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4316dda51db58ca898c551cd439bef01e5aadb13', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266ca23713c788cbcf85d4af6d01d6a6e5d3457a', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ea8e8325e7dcd4dc7ccf5f0cbab4c4145d5c5f2', '172.105.247.100', 1670358112, '__ci_last_regenerate|i:1670358112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924912db3a3ad15fa33a0be2b35af99799158ba8', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df14f141eff249f3b6374d020b71edd5aacb2e17', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe427671e3c26523f980bf94c2d3bf79f141648', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b39228751563d6a8c436648aa3b9eefc9c7420', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758ebd11fff804c9201f35e72c86db3a21549e9e', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0e397c65af4bd71d222d63a41e14d179a3b15a', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f1113e87c20333c4ba0a1c4b66c7c7e374243b', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964e675269b0a34d98d4d886a4c0d5ea937f0447', '172.105.247.100', 1670358113, '__ci_last_regenerate|i:1670358113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3546c694366ad5b80227924347bcc64d3b339ed', '172.105.247.100', 1670358114, '__ci_last_regenerate|i:1670358114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c67b52051a3e56e2780ca4d58e5ce081c78102', '172.105.247.100', 1670358114, '__ci_last_regenerate|i:1670358114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160cde15acd5a3b2c48060822cdd82c38db67085', '31.222.203.2', 1670358809, '__ci_last_regenerate|i:1670358809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317bd0ded8f314584e9f3dbcd168782d9a82e6ec', '31.222.203.2', 1670358811, '__ci_last_regenerate|i:1670358811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ff43e863dd770a6ebe053bf21a2846de63e795', '31.222.203.2', 1670358811, '__ci_last_regenerate|i:1670358811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd33221ef8bce107c9e9c2c8c9d9fedc7ead241', '31.222.203.2', 1670358811, '__ci_last_regenerate|i:1670358811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac758ad27e9d3e1f7657826fd1c75823a611dbce', '31.222.203.2', 1670358811, '__ci_last_regenerate|i:1670358811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed511b9a08bb2df779dba6642cfe8b595716873', '31.222.203.2', 1670358811, '__ci_last_regenerate|i:1670358811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8f22eb66b7f5c3203432564fdd071a90263fc9', '31.222.203.2', 1670360616, '__ci_last_regenerate|i:1670360616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b01116bbe0afd86242365131aad9d95bdcf0359', '31.222.203.2', 1670360617, '__ci_last_regenerate|i:1670360617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65bff024564b6d9dacacf9b8e2130b00a69c4e36', '31.222.203.2', 1670360617, '__ci_last_regenerate|i:1670360617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adc66ebef78050f7bf22478742dc36e36adfb1a', '31.222.203.2', 1670360617, '__ci_last_regenerate|i:1670360617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ccff1d9471c6252869185b9579dc33ef6104087', '31.222.203.2', 1670360617, '__ci_last_regenerate|i:1670360617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799f68feb828e1d3e87101aab24bbce1395f546f', '31.222.203.2', 1670360617, '__ci_last_regenerate|i:1670360617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fae6a3fb1f205c3c4fdaf1a4ac7b81c09ecb242', '31.222.203.2', 1670362411, '__ci_last_regenerate|i:1670362411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cada8c0d73405cef323f81ba81aa6ae3ae8700e', '31.222.203.2', 1670362411, '__ci_last_regenerate|i:1670362411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08099678d807b0b4a9b13a7322088e2327ad2c95', '31.222.203.2', 1670362411, '__ci_last_regenerate|i:1670362411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f5a0e86433296e32e91bc4df4ffe3790832946', '31.222.203.2', 1670362411, '__ci_last_regenerate|i:1670362411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e1999dca1b79c207418f82b6dc249c2978e9bb', '31.222.203.2', 1670362411, '__ci_last_regenerate|i:1670362411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039c06842ed2746a412dcd8613873b4c025c300c', '31.222.203.2', 1670362411, '__ci_last_regenerate|i:1670362411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4c1ebdc7e841aa877e90b3de4c032547a2f403', '172.105.247.100', 1670362906, '__ci_last_regenerate|i:1670362906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710835ed6403d39f56cd60ffe6a96da45026a68d', '172.105.247.100', 1670362908, '__ci_last_regenerate|i:1670362908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aba8ffc63b1838efdf0eb4048296f46b30c93d8', '172.105.247.100', 1670362908, '__ci_last_regenerate|i:1670362908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6726e93069c46554281385fdf060b01369431f', '172.105.247.100', 1670362908, '__ci_last_regenerate|i:1670362908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fcd8ce7be48728224ece5d2279caf0bcc80db54', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d2a9a7388a23da2c31bf2e6e75db3b843a052a', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622a190a7594b3c001f3153f2dab9d6ff891b491', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614a00fc7f861c46c408f7c691499a8abed7433f', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6362cc75f639527f060ef23d5159f621832a06d', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8436a8f0db71952fc303bd81bfcda8eb90e8fbd1', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702ef6a0cc3b320be2584a3dbcb612676132c185', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5fcdbc268761b0f91b01990de08d165e747a40', '172.105.247.100', 1670362909, '__ci_last_regenerate|i:1670362909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8113faf61a9fba22cfeb74521ce6da53253fb1de', '172.105.247.100', 1670362910, '__ci_last_regenerate|i:1670362910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18f49c75a0d20c4f5f3b3afb7ea031d64e3a714', '172.105.247.100', 1670362910, '__ci_last_regenerate|i:1670362910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('120ae720542deada5057e982f365839cbaeff97b', '172.105.247.100', 1670362910, '__ci_last_regenerate|i:1670362910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4ed01b0019310f7cc9f22afd61e8240645343c', '172.105.247.100', 1670362910, '__ci_last_regenerate|i:1670362910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa5a3920807fea53770347d501fd1d637414cb0', '172.105.247.100', 1670362910, '__ci_last_regenerate|i:1670362910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('412a0deec19c76531b04d565325d23c504b467c6', '172.105.247.100', 1670362910, '__ci_last_regenerate|i:1670362910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf5b1e837119eff1c3f777a5ef0887d886fe366', '172.105.247.100', 1670362911, '__ci_last_regenerate|i:1670362910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0191ddd7be01effc11d25e43b33a534eddd99e5', '172.105.247.100', 1670362911, '__ci_last_regenerate|i:1670362910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b47717475650e4f8404e5163fdbcc84b6b5fdd', '172.105.247.100', 1670362911, '__ci_last_regenerate|i:1670362911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('864a6fcd6d0998329021edaf9b04305eb71da536', '172.105.247.100', 1670362911, '__ci_last_regenerate|i:1670362911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1800c865297380a0ac1de893930ecaab30e8066e', '172.105.247.100', 1670362911, '__ci_last_regenerate|i:1670362911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a48c9a4278ccb4d2a578e6289099d7bc9051b2', '172.105.247.100', 1670362911, '__ci_last_regenerate|i:1670362911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadadba4e5e15e44d54433ac690a2eaa56fa7a9e', '31.222.203.2', 1670364202, '__ci_last_regenerate|i:1670364202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9321fcf3ccaa980955fc5225f0af22dc6e48d35', '31.222.203.2', 1670364202, '__ci_last_regenerate|i:1670364202;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec89da476bcf3dac80304d307cbbe0a313cbff6', '31.222.203.2', 1670364202, '__ci_last_regenerate|i:1670364202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3a224c4fd77aaa6fc608fabbf4a04ce0a75170', '31.222.203.2', 1670364203, '__ci_last_regenerate|i:1670364203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d173dc3a69d16e51c1b836c46d67c1d17d381ccb', '31.222.203.2', 1670364203, '__ci_last_regenerate|i:1670364203;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0635942a41878ce1d023d32361a76f5f367c22dc', '31.222.203.2', 1670364203, '__ci_last_regenerate|i:1670364203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff20e38bedf6b161d95e4e0af276121a70ea812', '31.222.203.2', 1670366024, '__ci_last_regenerate|i:1670366024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c33912dd0214f7ba8800eefb7f4dcdaf6a8f48cb', '31.222.203.2', 1670366024, '__ci_last_regenerate|i:1670366024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c88f9cef324256cffbdfbab63493f28eb7fa66', '31.222.203.2', 1670366024, '__ci_last_regenerate|i:1670366024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79377b7d2d593ea1153b081a9005a57644df858', '31.222.203.2', 1670366024, '__ci_last_regenerate|i:1670366024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f172893561363dffa219ce9770bc58d86b78df', '31.222.203.2', 1670366024, '__ci_last_regenerate|i:1670366024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5af23078d8110a5608d0d2350eef235a56e648', '31.222.203.2', 1670366024, '__ci_last_regenerate|i:1670366024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569fb863c5ae681c698f2c092651471fe068f866', '31.222.203.2', 1670367782, '__ci_last_regenerate|i:1670367782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c9156f6db32ef561725965f49f18e21e9f45b07', '31.222.203.2', 1670367782, '__ci_last_regenerate|i:1670367782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88496e0d5e1c60e78fda2f33aea4dede714eed9f', '31.222.203.2', 1670367782, '__ci_last_regenerate|i:1670367782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d823a23d2dbb79ff10a2b7c8b021a082bcc4133', '31.222.203.2', 1670367783, '__ci_last_regenerate|i:1670367783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd9859e8cb1d7d843b27fae1714963c34b44c236', '31.222.203.2', 1670367783, '__ci_last_regenerate|i:1670367783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d95d0af8a29a4edac90cda843b809d0df3cb646', '31.222.203.2', 1670367783, '__ci_last_regenerate|i:1670367783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45ed3e78105a2084ddc398ddf765948318f75bc', '172.105.247.100', 1670368312, '__ci_last_regenerate|i:1670368312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d742d3199e9247965bf38577719b7c7ce0294cb', '172.105.247.100', 1670368312, '__ci_last_regenerate|i:1670368312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50203848e5a2a9dddb86c65f436c5f841539a6b', '172.105.247.100', 1670368312, '__ci_last_regenerate|i:1670368312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2245facade5b3f3000f0b53e05fd2f60a2ffd3b', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2b3a82dbb23b4446e63c2ed6ef4344c60cc4d4', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0995d974ecfaa5b46f57bdd291e571841b70cfcf', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06d6ea2304e8ec196cd0dbe65ee04b8416281e4', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43b1f7d19c33a0280e5296945f82ace3758defd', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9838d8ed6a6122665b2bc6cffce5c2cfe90ac3a', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84764f80bf0584e2ad0a76a476112d02c3634925', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1b8b4186e5dc2f9dfd17a63a501609955be92c', '172.105.247.100', 1670368313, '__ci_last_regenerate|i:1670368313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05325b5ec9caf540b46db112a49b1db5797aea97', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb820750733a136e95a41a5668280874d76dad07', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09403f308f9facbd426b752b669a92f952c028de', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84524249010c3019cd4ac598d7c1d29d498af558', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66367305600268619067569c97cbd807d344be5f', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3b3c6ace1b603627ab7856f763a489d5a18389', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f34d773c32bae0ee512c6bc0d61d7c3408725e', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3abbf5320d012a55240d2b5c69bdfd2090e28c', '172.105.247.100', 1670368314, '__ci_last_regenerate|i:1670368314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8d00a47922d3a93a17a3b9895e3bc9729c85f6', '172.105.247.100', 1670368315, '__ci_last_regenerate|i:1670368315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dccbedc96d4c696ee5c80ca5c1c93133b9a8fee', '172.105.247.100', 1670368315, '__ci_last_regenerate|i:1670368315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6f3003cafa43908280a9620ebd1e27dc104027', '172.105.247.100', 1670368315, '__ci_last_regenerate|i:1670368315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ba0a85125d65f53ea89b359b164e42aebe437c', '172.105.247.100', 1670368315, '__ci_last_regenerate|i:1670368315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f6ce0511c9351758306364fdecc6d3ca32ca6a', '172.105.247.100', 1670368315, '__ci_last_regenerate|i:1670368315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf696a002c1a9ec0571b1208054ee09575485497', '31.222.203.2', 1670369606, '__ci_last_regenerate|i:1670369606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c5c5864836c5e649d0e38a31bce4bafd1f3dcd', '31.222.203.2', 1670369606, '__ci_last_regenerate|i:1670369606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60deebc36cc8946d033042f472cfa5b25b04e870', '31.222.203.2', 1670369606, '__ci_last_regenerate|i:1670369606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7050b3ec7a623eb2c257d60c4bbcfcdc021ca5', '31.222.203.2', 1670369606, '__ci_last_regenerate|i:1670369606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dee4a4bf747157f65cb996faccc2666bbcde636', '31.222.203.2', 1670369606, '__ci_last_regenerate|i:1670369606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ae45c0d36987b933407197ceca843ae7853560', '31.222.203.2', 1670369606, '__ci_last_regenerate|i:1670369606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88066417377dc3693fd1cc881411f394af9d1bf8', '31.222.203.2', 1670371409, '__ci_last_regenerate|i:1670371409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af5a2f17d66f74fdcd0b44a7f037c876a80eaf1b', '31.222.203.2', 1670371410, '__ci_last_regenerate|i:1670371410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ed7f0509852b738aed835ea2465c5ab318529b', '31.222.203.2', 1670371410, '__ci_last_regenerate|i:1670371410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5b020c7ea1764dd6549c92dc7dd9785795b241', '31.222.203.2', 1670371410, '__ci_last_regenerate|i:1670371410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98cc745a4f00a0697c957eeeb281da695a101c51', '31.222.203.2', 1670371410, '__ci_last_regenerate|i:1670371410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097926a4a7cbd8fbff44fa114ebbabf778cfb6c9', '31.222.203.2', 1670371410, '__ci_last_regenerate|i:1670371410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31f4276396d404c2ce884a3167a6ad3675ca89c', '31.222.203.2', 1670373197, '__ci_last_regenerate|i:1670373197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77ff6d8f596a0a1d2a12c140eefa9e46c2be7cb', '31.222.203.2', 1670373199, '__ci_last_regenerate|i:1670373199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce196c0158a1cfb92bd89eaaaa32d8fa2648e713', '31.222.203.2', 1670373199, '__ci_last_regenerate|i:1670373199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac38355682aaef3eda9a056027bdae98ffc08e41', '31.222.203.2', 1670373199, '__ci_last_regenerate|i:1670373199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274e97da4070b9d85851d345473fdf4c5bd2fc0d', '31.222.203.2', 1670373199, '__ci_last_regenerate|i:1670373199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a5d222ad13ddc68df18570aa868a6439bef0b4', '31.222.203.2', 1670373199, '__ci_last_regenerate|i:1670373199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cab9baf9acebac65e9cf6bcfe874bdd2264054', '172.105.247.100', 1670373711, '__ci_last_regenerate|i:1670373711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c42e8bb1e927caf7e6961734e9ca47dc6f8d35e', '172.105.247.100', 1670373712, '__ci_last_regenerate|i:1670373712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ba16891ef0bbc3e6a6c2a9c9c6c5f239be41bc', '172.105.247.100', 1670373712, '__ci_last_regenerate|i:1670373712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b9c65c944cf88610ab08df4dfe5c9b765ded3b', '172.105.247.100', 1670373712, '__ci_last_regenerate|i:1670373712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7c9ddac26f8cf33742abc0501cc5c3989a7b2a', '172.105.247.100', 1670373712, '__ci_last_regenerate|i:1670373712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64364084ea1e4cde350ea3f3d3001a45c1a63cb', '172.105.247.100', 1670373713, '__ci_last_regenerate|i:1670373713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea2a5631a4da300c002f26be20fee843ad5df57', '172.105.247.100', 1670373713, '__ci_last_regenerate|i:1670373713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09004c62ab0fd52ca262880010e5de568d28674', '172.105.247.100', 1670373713, '__ci_last_regenerate|i:1670373713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc8e454e9f5bcb984bf6e0f26ec20ba7d02c5ad', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02623391157de800dcf5de3b2e2f49ffd89df60', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b8cc1de09ab25a080c4946ae00a13c0d95ecae', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8034583a96dcc6d6ba031301e89c1b8e67f371', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1617570d4f12b02fd21d3614742e2420581cdc', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cfbc6e53a78f475e55e48491d7a056bf7feba15', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fff1e8490f0dc97f95e66a663859d2deb1493c05', '172.105.247.100', 1670373714, '__ci_last_regenerate|i:1670373714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64432ff14eb0fba8fec972856bf33956f48f2814', '172.105.247.100', 1670373715, '__ci_last_regenerate|i:1670373714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f5e5d123cfe7bb1edf6c5e84e21d6f2b1aa87d', '172.105.247.100', 1670373715, '__ci_last_regenerate|i:1670373715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a0684e25c7138a799019f22ad7cb0ed4a44aba', '172.105.247.100', 1670373715, '__ci_last_regenerate|i:1670373715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14e1c39b2f2df754caf1b7088e3fb4b3c1ef811', '172.105.247.100', 1670373715, '__ci_last_regenerate|i:1670373715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85e367224abe928ce168370502dc32041b10340', '172.105.247.100', 1670373716, '__ci_last_regenerate|i:1670373715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae7302288b4917a564d68f98dca906b9083ebf3', '172.105.247.100', 1670373716, '__ci_last_regenerate|i:1670373716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1e6b54ce381155a374d98c59e3a558eeb5c9dd', '172.105.247.100', 1670373716, '__ci_last_regenerate|i:1670373716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346952811867260d9f1466fbd076f6b4fb449a2f', '172.105.247.100', 1670373716, '__ci_last_regenerate|i:1670373716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('992c684e68282dbacf80f3d061cae51c42074fc5', '172.105.247.100', 1670373717, '__ci_last_regenerate|i:1670373717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace348ad5064608e0d327c7318e6370ed4f08006', '31.222.203.2', 1670375009, '__ci_last_regenerate|i:1670375009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd05734d6d3e1cfe1fed4a591b951992d1c8148f', '31.222.203.2', 1670375009, '__ci_last_regenerate|i:1670375009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0adef220e3697904d358bae745a7d19819ec157', '31.222.203.2', 1670375009, '__ci_last_regenerate|i:1670375009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69dadd70b1377bbaff9e5e43b43e98448104300', '31.222.203.2', 1670375009, '__ci_last_regenerate|i:1670375009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcdec367d832ed4be35a7f43ce158a66cf6d047', '31.222.203.2', 1670375009, '__ci_last_regenerate|i:1670375009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71be38f0e9cf385f44d1acc1e0a2556bc799074', '31.222.203.2', 1670375009, '__ci_last_regenerate|i:1670375009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1f4f709a368a5865436bac7ca3613ece55ed9b', '34.240.163.117', 1670376275, '__ci_last_regenerate|i:1670376275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36945a8eda99461366764693bd769ea3753a7808', '34.240.163.117', 1670376277, '__ci_last_regenerate|i:1670376277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373ce738cf73b43fca24100efec917d9dea44406', '34.240.163.117', 1670376278, '__ci_last_regenerate|i:1670376278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aa23e512c9d7943045200ca47cc99d3b19ac2d5', '31.222.203.2', 1670376803, '__ci_last_regenerate|i:1670376803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9c2c245a853930b98bbd72c931670b94cca850', '31.222.203.2', 1670376805, '__ci_last_regenerate|i:1670376805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59ed130f07aa371a5c8c124d07609eff9a8a531', '31.222.203.2', 1670376805, '__ci_last_regenerate|i:1670376805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e859b559cb6cc944a5a2d2fc97b21399859e1dc6', '31.222.203.2', 1670376805, '__ci_last_regenerate|i:1670376805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa321255e9e8a0d56aad9e2b4fe1de2f45b7d109', '31.222.203.2', 1670376805, '__ci_last_regenerate|i:1670376805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a528b59ab82ccc9c5f9db3288d5a46950b5bdc83', '31.222.203.2', 1670376805, '__ci_last_regenerate|i:1670376805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f3cd4441b845a3d0a261fee05b7e113cde342d', '52.212.207.94', 1670377973, '__ci_last_regenerate|i:1670377973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd20ac4923ff234b4cd1ed5da36729b57636ac29', '31.222.203.2', 1670378583, '__ci_last_regenerate|i:1670378583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7704d59938eebf6da05cf090ba0764a7dcac31b1', '31.222.203.2', 1670378583, '__ci_last_regenerate|i:1670378583;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a153dc270cad6bb0132294ec5182668efdf41a1', '31.222.203.2', 1670378583, '__ci_last_regenerate|i:1670378583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6faa91423b66b76961ce94342b7dfc4b2d073a00', '31.222.203.2', 1670378584, '__ci_last_regenerate|i:1670378584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c03ca8f26cdcc457cf5bab6dfef6c9327edfa2', '31.222.203.2', 1670378584, '__ci_last_regenerate|i:1670378584;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20be55cd7d9662cc4bb96bb12092ea1da8afc7b3', '31.222.203.2', 1670378584, '__ci_last_regenerate|i:1670378584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2eb7145ea4a30134b80add6485108b481f559a5', '172.105.247.100', 1670379119, '__ci_last_regenerate|i:1670379119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e89b3d40581db2b2bb4c192f07be63922fa5c5ae', '172.105.247.100', 1670379119, '__ci_last_regenerate|i:1670379119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a26bc15a42b092275bbb9f46587273bede3911', '172.105.247.100', 1670379119, '__ci_last_regenerate|i:1670379119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7575f3431a3b6229410ad3fb861720c525b3da5', '172.105.247.100', 1670379120, '__ci_last_regenerate|i:1670379120;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa75fff75fdff66eb7161d8063201f8546ffdabf', '172.105.247.100', 1670379120, '__ci_last_regenerate|i:1670379120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86100877f3f34e7cb5e9e91d60c013291c47db0', '172.105.247.100', 1670379120, '__ci_last_regenerate|i:1670379120;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0d0f138c0d73127bbeeb9f05d74e8149ca10f9', '172.105.247.100', 1670379120, '__ci_last_regenerate|i:1670379120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc4176b1833fc1667ddab68cda63febf10a8bfc', '172.105.247.100', 1670379120, '__ci_last_regenerate|i:1670379120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f529a6ccdf9701b450ac44f9ba9621c56c6c6f6', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9216c42ceb5bd37248f3c5f8b3b32eff893f797f', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca5cfe3e87ef5ac4578ed064c5a8e0f1c9eefd6', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d909003b83b7707ecf53a67fe3bde0d80d436013', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2867723ddc2df6249a4c4182d9e3a65b8b8b4124', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29af2dcb2843d0ebf82cbace1503d24426b8fddb', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f7fe679155f6024b9037b4cf2e41da88b0a59ed', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eef07a23f630b81e55f5150f0909cd1c9450121', '172.105.247.100', 1670379121, '__ci_last_regenerate|i:1670379121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433ad3f330edd4dd42ed0b2c097991c93a76997b', '172.105.247.100', 1670379122, '__ci_last_regenerate|i:1670379122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36d42728fc62bcf4a8d6d594d59dcb74db95a34', '172.105.247.100', 1670379122, '__ci_last_regenerate|i:1670379122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95631ba517c600302e6d64d2f86497cba7a1f6d', '172.105.247.100', 1670379122, '__ci_last_regenerate|i:1670379122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9fe22e46734807e8f1d602e48b6e1f4828a91f8', '172.105.247.100', 1670379122, '__ci_last_regenerate|i:1670379122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6699d03b30a3867a2de0937bd0d5102f7e59982', '172.105.247.100', 1670379122, '__ci_last_regenerate|i:1670379122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('745d1b01e34a9df271a5f54d8da44fa59cdac6b0', '172.105.247.100', 1670379123, '__ci_last_regenerate|i:1670379123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c109f9cda10507bce9823e3e89e03167d5bc80e3', '172.105.247.100', 1670379123, '__ci_last_regenerate|i:1670379123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9779db578cfc3f4c9993fc4550ca78d3fff267ee', '172.105.247.100', 1670379123, '__ci_last_regenerate|i:1670379123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab58ec8873cf56ce7401d1c5d2995c8a5bf167a', '31.222.203.2', 1670380393, '__ci_last_regenerate|i:1670380393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1405f937cb440fae8d834b63656ca98b48fa6f9', '31.222.203.2', 1670380395, '__ci_last_regenerate|i:1670380395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc37433076735dde7b5e01a2b1547459f4b11f2', '31.222.203.2', 1670380395, '__ci_last_regenerate|i:1670380395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01a0fceb3e69de7aa8459c0823cd3a6ff73362d8', '31.222.203.2', 1670380395, '__ci_last_regenerate|i:1670380395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2a95c9a67fbe1939ae69a11c0abe6ef38bd73f', '31.222.203.2', 1670380395, '__ci_last_regenerate|i:1670380395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab8f6271eb8c8d7d078e0c7ff6b560e038d630c', '31.222.203.2', 1670380395, '__ci_last_regenerate|i:1670380395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655c087a64636d94c2d20c398be66f4d3caf289e', '31.222.203.2', 1670382163, '__ci_last_regenerate|i:1670382163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f1813b2623cb9fc13dab43857d469b257bf50d4', '31.222.203.2', 1670382163, '__ci_last_regenerate|i:1670382163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aedd1a3fb203ee6a64143da63d9cf8a5444dbb1', '31.222.203.2', 1670382163, '__ci_last_regenerate|i:1670382163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a82c87169773d99a091f1b61784d695f30d83b', '31.222.203.2', 1670382163, '__ci_last_regenerate|i:1670382163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d3ed37e72bb85773d9dbff22142053f603a329', '31.222.203.2', 1670382163, '__ci_last_regenerate|i:1670382163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952c5e18b3df5dcc8803d39dcf6a5cc695169364', '31.222.203.2', 1670382163, '__ci_last_regenerate|i:1670382163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df569d23d5b8118444416e5bd9401c9a14820a8', '31.222.203.2', 1670384004, '__ci_last_regenerate|i:1670384004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3f62af3748b02d861a766159f60db794ecd034', '31.222.203.2', 1670384004, '__ci_last_regenerate|i:1670384004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124e1537356659fb378929f526eded42d0fac840', '31.222.203.2', 1670384004, '__ci_last_regenerate|i:1670384004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14129e5940cffc27d99d66a6a7e98d6c286570f8', '31.222.203.2', 1670384004, '__ci_last_regenerate|i:1670384004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fade9fb1eb07b197b143aceea1f581603f56ecde', '31.222.203.2', 1670384004, '__ci_last_regenerate|i:1670384004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b95b334074ba1b147f6eaa96452f8adb4ebe38', '31.222.203.2', 1670384004, '__ci_last_regenerate|i:1670384004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da88bfa6e3b3b9dc6b02c88ab959e81bf587152b', '172.105.247.100', 1670384510, '__ci_last_regenerate|i:1670384510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91dcd9246d76db2d87b9ab8520a90155e42b105d', '172.105.247.100', 1670384512, '__ci_last_regenerate|i:1670384512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbbaef2b90adc13e402985b94de1e408e6c70ca3', '172.105.247.100', 1670384512, '__ci_last_regenerate|i:1670384512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f4555df8c9f94f932da4f893855f901ea00f39', '172.105.247.100', 1670384512, '__ci_last_regenerate|i:1670384512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5f5a7c70bbacc8abe6815fc1415d3144547b73', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ca709480ad16e1ca273d9a9a533fae1d781aed', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a012748e6608f6196e0ba2aeb2889fd53460f1', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b32efdcebb549e08a41bbeafe7d6b95210bbdc', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3e5c714416196da98cf569cc69ac8b7a653d32', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8db0f989ea0235eb080ca80c33d81b72cbdb6e7', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a24b84632fb5ac02c7865e7db2ec38e62558bd', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902237a4355c164b888861e319c7169a36150784', '172.105.247.100', 1670384513, '__ci_last_regenerate|i:1670384513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e25225979ebb9e9489eab045a1a44aecfd905d2', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e69fccd046b422299d1daac5cb371340119f78', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5489e4bd5503097b45c764b5e936cc063fef1f2d', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400625832c32226e634fbaef91b35ab11160c5f2', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d411238aa1090c3fde8404a99d64e6c6bb67041', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431634450a58faac4412ebf226af1952ed539be9', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f350011f75f8cd64666ee8ec2664e35ae8186c73', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aca3b2b7190b89d78a67ddac3b50800b7915687', '172.105.247.100', 1670384514, '__ci_last_regenerate|i:1670384514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf8cfdb73d7dc61652f2b2f4e95a1e0cd2873b9', '172.105.247.100', 1670384515, '__ci_last_regenerate|i:1670384515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19cfc06a2c7e663813fc265fa7926c767af3505', '172.105.247.100', 1670384515, '__ci_last_regenerate|i:1670384515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7225866b014c685873b9302358bbb66ab0755031', '172.105.247.100', 1670384515, '__ci_last_regenerate|i:1670384515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1daf9645234b1dd29e51deab622fbff24aa5e3bd', '172.105.247.100', 1670384515, '__ci_last_regenerate|i:1670384515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbeb7f4effd47c09ec7219005150bc28d34f85d', '205.210.31.46', 1670384661, '__ci_last_regenerate|i:1670384661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865b0101feddceb118a57e8305494682797fba56', '31.222.203.2', 1670385768, '__ci_last_regenerate|i:1670385768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434a3cb50c6f3db9cae6d61d590ca1008f9fad05', '31.222.203.2', 1670385768, '__ci_last_regenerate|i:1670385768;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e5b57a2d5bd5eb38208f55d4acc07219ab61bc', '31.222.203.2', 1670385768, '__ci_last_regenerate|i:1670385768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4b96644323875afc21015ebd68b0faea00e512', '31.222.203.2', 1670385768, '__ci_last_regenerate|i:1670385768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9dc7fcb2b0743713d64175be0a3a6292e2b45c', '31.222.203.2', 1670385768, '__ci_last_regenerate|i:1670385768;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8cf62e33963494f50040e9624815ecbb7ca353', '31.222.203.2', 1670385768, '__ci_last_regenerate|i:1670385768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6130aa341640e9092766316cb8d4c935b0d1ea56', '45.120.39.90', 1670387519, '__ci_last_regenerate|i:1670387418;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670306324\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670387477;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15169cfc534dc6da849044de8c0af133a7ade3d8', '31.222.203.2', 1670387606, '__ci_last_regenerate|i:1670387606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285b8d12a8c76a27deb4a24978225fb2bb7013ef', '31.222.203.2', 1670387608, '__ci_last_regenerate|i:1670387608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a95eebb2f60089d98f25348f43fc9d3165af2cf', '31.222.203.2', 1670387608, '__ci_last_regenerate|i:1670387608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0da0ad48c464a160aa3666d6c90e3db1f667376', '31.222.203.2', 1670387608, '__ci_last_regenerate|i:1670387608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac2d4f2681992b9f156729a61a433b78915b159', '31.222.203.2', 1670387608, '__ci_last_regenerate|i:1670387608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5bbea3e1d2b65335fc44d625ee3b5962349ca42', '31.222.203.2', 1670387608, '__ci_last_regenerate|i:1670387608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd07e45e71c6dddcd7752e1cf576e5968c9f1f5', '31.222.203.2', 1670389406, '__ci_last_regenerate|i:1670389406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79de6ac74df36d54f80c8518951f7905e5d64633', '31.222.203.2', 1670389408, '__ci_last_regenerate|i:1670389408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d0de69d763d4c3a970a32aeade58127090462b', '31.222.203.2', 1670389408, '__ci_last_regenerate|i:1670389408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10c629b2b6986e2cf07e5bd2a4afedb738fe23f', '31.222.203.2', 1670389408, '__ci_last_regenerate|i:1670389408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb3c17de298e1d5187f6d13815bc3e722b71e7d', '31.222.203.2', 1670389408, '__ci_last_regenerate|i:1670389408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b771574ad65d5af63e64260d0040ecc754aee665', '31.222.203.2', 1670389408, '__ci_last_regenerate|i:1670389408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2722bd0d46679eab5de5aee0d24ab157016cf39e', '172.105.247.100', 1670390516, '__ci_last_regenerate|i:1670390516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f625a1ad06428c06137d5c69d87cf15ae52a7c3d', '172.105.247.100', 1670390518, '__ci_last_regenerate|i:1670390518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0031f75cf2745eb0fb5a89486277b6f5a3569aa', '172.105.247.100', 1670390519, '__ci_last_regenerate|i:1670390519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a5168adcfcb2b74993b8291dfea17600320f2b', '172.105.247.100', 1670390519, '__ci_last_regenerate|i:1670390519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba128dcea1cb0093aacea2aef2bffb936fd1818', '172.105.247.100', 1670390519, '__ci_last_regenerate|i:1670390519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43f29f297a3679d5250083deecb96d5fbc54441', '172.105.247.100', 1670390519, '__ci_last_regenerate|i:1670390519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1be501571046a8f3f7b60891711bdfa412302f', '172.105.247.100', 1670390519, '__ci_last_regenerate|i:1670390519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68df3a29a992fc9a9bcc8e3f8f38056a091828f1', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88b57eb344dc4073a6f67b0659940b73ad55816', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545c061fde59ffc45cb0b1cb972a4964abfb2878', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f13150474011b7257f0e8db545e9aebbda02ce', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37469412972aaf74279d3accb58a67fa7fda8541', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b5fbece6de4b9c59a9d2ec878d9376ba64ab40', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f841294ef37866b2b5dd491bee16ee46aca19d1', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773e72e326e567caf645de746d008ed546a4fcd6', '172.105.247.100', 1670390520, '__ci_last_regenerate|i:1670390520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe5bc372589ec6dc3178304e6b291f0ac8bca54', '172.105.247.100', 1670390521, '__ci_last_regenerate|i:1670390521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d80e3886be1ad4a218e2912cbd283dcbe36a66c', '172.105.247.100', 1670390521, '__ci_last_regenerate|i:1670390521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df4edaaf5d52963d329af002216a2e5ea4db8bc', '172.105.247.100', 1670390521, '__ci_last_regenerate|i:1670390521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ea9dd3f931c92ae4c9d02af8eb0c61813d9dc65', '172.105.247.100', 1670390521, '__ci_last_regenerate|i:1670390521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('410a5c767b6b64f7caa2b7306403f48dba83ca98', '172.105.247.100', 1670390521, '__ci_last_regenerate|i:1670390521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb431f498ac1dbbba66016b63f5faddf4fb25a7', '172.105.247.100', 1670390521, '__ci_last_regenerate|i:1670390521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690d8851c0c9eea7c2365e40e219782c98df27b2', '172.105.247.100', 1670390522, '__ci_last_regenerate|i:1670390522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd13f2d45159846ca49943fcade16fe1ffa15bfb', '172.105.247.100', 1670390522, '__ci_last_regenerate|i:1670390522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecfc1c338398911389d60e309cee67f9bb262f77', '172.105.247.100', 1670390522, '__ci_last_regenerate|i:1670390522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b60997d27ca5a01236e2beebc8de3893decccdfa', '31.222.203.2', 1670391164, '__ci_last_regenerate|i:1670391164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db2cd052bc52a00d43404b7c699327d080349ba', '31.222.203.2', 1670391166, '__ci_last_regenerate|i:1670391166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a921fce6c6273d78767b390eb6fc74d8a771f0', '31.222.203.2', 1670391166, '__ci_last_regenerate|i:1670391166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d6e55717bb7c79b70cd8082ecc47596a80b374', '31.222.203.2', 1670391166, '__ci_last_regenerate|i:1670391166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ba225392f4cd363176e2439e510095b2c78aca', '31.222.203.2', 1670391166, '__ci_last_regenerate|i:1670391166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86b64ecbe26872489c24cadbd7b2704dd485e91', '31.222.203.2', 1670391166, '__ci_last_regenerate|i:1670391166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d468836ca641f27c32ca96a498c6fa0669a8ef', '31.222.203.2', 1670393003, '__ci_last_regenerate|i:1670393003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8a7b0deebc0d745466c25f7d35ebf72fbbf76f', '31.222.203.2', 1670393003, '__ci_last_regenerate|i:1670393003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03dfacc0622f6fe85fbb844fa03ee7d72099a7f1', '31.222.203.2', 1670393003, '__ci_last_regenerate|i:1670393003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07be3965cc4304ee7b08222069c3f5ea5824d684', '31.222.203.2', 1670393003, '__ci_last_regenerate|i:1670393003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d281afa9f3e32e43add8715617e29dd105ae67db', '31.222.203.2', 1670393003, '__ci_last_regenerate|i:1670393003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fe6daa377e7795957be9892333fa8f2557c95d', '31.222.203.2', 1670393003, '__ci_last_regenerate|i:1670393003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caae65ad24f11ec1580505307d762ebaa7ffd413', '31.222.203.2', 1670394785, '__ci_last_regenerate|i:1670394785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d9b3b62b8f911837ad352bc0cc68ca4ab62d98', '31.222.203.2', 1670394787, '__ci_last_regenerate|i:1670394787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601f21ce167832e6020698499491f58122ab3549', '31.222.203.2', 1670394787, '__ci_last_regenerate|i:1670394787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6680d2e59141ef8c570f9a23f2b548278c391e7b', '31.222.203.2', 1670394787, '__ci_last_regenerate|i:1670394787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8490830366989eef4dc317bc8e3f63c176f918', '31.222.203.2', 1670394787, '__ci_last_regenerate|i:1670394787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7446655ad14e6c8f24773cf6b1b89db4233dbc83', '31.222.203.2', 1670394787, '__ci_last_regenerate|i:1670394787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23603c7ba0511748bbb6cbafd130dd210fcf05f', '172.105.247.100', 1670396510, '__ci_last_regenerate|i:1670396510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239961abb9887003926f7329a259af71697e4aea', '172.105.247.100', 1670396511, '__ci_last_regenerate|i:1670396511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c07ed3f15134efb163be00aa9f42b640305c8e', '172.105.247.100', 1670396511, '__ci_last_regenerate|i:1670396511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b921f7546baf174ccf2ef167b363c92fe4fb77d0', '172.105.247.100', 1670396511, '__ci_last_regenerate|i:1670396511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8772979096ebad76c585599818d10b7c0d2bac74', '172.105.247.100', 1670396511, '__ci_last_regenerate|i:1670396511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1daf48960236bb7e3f620e82642156ad356aa1dc', '172.105.247.100', 1670396512, '__ci_last_regenerate|i:1670396512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e3e9302650cef546fe68173dbcfeb476f545fb6', '172.105.247.100', 1670396512, '__ci_last_regenerate|i:1670396512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936ac49e93772fa02902c593134acbf6fbd33dbc', '172.105.247.100', 1670396512, '__ci_last_regenerate|i:1670396512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d31368e29d19db227e610b6f3d50b8873e65ea', '172.105.247.100', 1670396512, '__ci_last_regenerate|i:1670396512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e027b531cc016e3af471e5119f141de548aabff1', '172.105.247.100', 1670396512, '__ci_last_regenerate|i:1670396512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7f9dcdaf91a8f068be030bef04a3390d943cb8', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e26b31daad3ceb598ca42446f356437d7400382', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990db69739fa9b68ebcd85d7e31e504e694be943', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f60250a3407e41f1f9085edb07858c2495f0bc6', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db29f4380efbe1435ac0b0eb7fd60868f63fc3e', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3d4eb68fad1486ab1ba6321a3413a368c12626', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3472103c628661a11142df65dca9b6b0d09acd0a', '172.105.247.100', 1670396513, '__ci_last_regenerate|i:1670396513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e9a8036b58f7d67818da9d6623154cf446513e', '172.105.247.100', 1670396514, '__ci_last_regenerate|i:1670396513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d6d30c3a39f0ad19a677ab1114aa954d2ffc22', '172.105.247.100', 1670396514, '__ci_last_regenerate|i:1670396514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5a332d327512996013c4a0b81aa59d4e70c651', '172.105.247.100', 1670396514, '__ci_last_regenerate|i:1670396514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f3bb022b5ac5489305596ecff4df2ff1b4d0d5', '172.105.247.100', 1670396514, '__ci_last_regenerate|i:1670396514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e127d6a9d098067d9116cffbeb26dfd77a45e6ac', '172.105.247.100', 1670396515, '__ci_last_regenerate|i:1670396515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('175cdf78e2d634a110d426d5a27e2ab88a406383', '172.105.247.100', 1670396515, '__ci_last_regenerate|i:1670396515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b5b46625b349bdcc5e993b2260a5780b122907', '172.105.247.100', 1670396515, '__ci_last_regenerate|i:1670396515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984d199695a0a48f8103fc4833703e9e7e9ea4d6', '31.222.203.2', 1670396590, '__ci_last_regenerate|i:1670396590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c36149cd7a1d598edc7b1f4d31eab079b68faff', '31.222.203.2', 1670396592, '__ci_last_regenerate|i:1670396592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37d68d0516836a329adf22dabd526264fcc23959', '31.222.203.2', 1670396592, '__ci_last_regenerate|i:1670396592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0112b884ad1d62ce0c9e0e7edc9c439f299376', '31.222.203.2', 1670396592, '__ci_last_regenerate|i:1670396592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b931a6ef63bf23602aa11cecac7b658922d014cc', '31.222.203.2', 1670396592, '__ci_last_regenerate|i:1670396592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('453c3993e7350160f43348f98c818405d9e30c83', '31.222.203.2', 1670396592, '__ci_last_regenerate|i:1670396592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320ffb31a485156445307744b5fe2eb62dba7186', '31.222.203.2', 1670398397, '__ci_last_regenerate|i:1670398397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b67d29e02d5358ef6018c11df5d58231e59d900', '31.222.203.2', 1670398399, '__ci_last_regenerate|i:1670398399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26cf1499b792b7e0722349a91cc926008d94f0a8', '31.222.203.2', 1670398399, '__ci_last_regenerate|i:1670398399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b0339f28cfaa510223b155996b1b6906b0b5c6', '31.222.203.2', 1670398399, '__ci_last_regenerate|i:1670398399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a59da522013a543c09df14bce2fe46fb085a269', '31.222.203.2', 1670398399, '__ci_last_regenerate|i:1670398399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4338242f1e22a92db220e39b195abce1491cf70', '31.222.203.2', 1670398399, '__ci_last_regenerate|i:1670398399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c3a6ba5ac77f1b7d4e95cbe6a922d03e64decc', '31.222.203.2', 1670398680, '__ci_last_regenerate|i:1670398680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c25d4389bf14a88e51985648aad1628b714c7b', '31.222.203.2', 1670398680, '__ci_last_regenerate|i:1670398680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25d344eb17c992e742381a45cb8f6d53d79ef04d', '31.222.203.2', 1670398680, '__ci_last_regenerate|i:1670398680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6324952acfb7f0d85223076d48d71fc21a8e663', '31.222.203.2', 1670398681, '__ci_last_regenerate|i:1670398681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b333bf239bcab578f51c27a094cb0dc23ae083', '31.222.203.2', 1670398681, '__ci_last_regenerate|i:1670398681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e413c13c37747df6eca49003f82167d10cab2c56', '31.222.203.2', 1670398681, '__ci_last_regenerate|i:1670398681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60a0c0240b892d64925cbf35f7a55119a25f2ff', '205.210.31.30', 1670399269, '__ci_last_regenerate|i:1670399269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54aa681f002aca439d8d509aa1c0fabf3c9bb6e8', '31.222.203.2', 1670400199, '__ci_last_regenerate|i:1670400199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048925132a809ff5fec73280b1a612ecbb21f737', '31.222.203.2', 1670400199, '__ci_last_regenerate|i:1670400199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69639a20e1988fa81b782ab2aeb7d04469ccde27', '31.222.203.2', 1670400199, '__ci_last_regenerate|i:1670400199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed106af6dcc05cfc2dc899b54f3e4694ffa852d2', '31.222.203.2', 1670400199, '__ci_last_regenerate|i:1670400199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75bf1ff8a4c4e07e676f98a9ace6ec13263009d', '31.222.203.2', 1670400199, '__ci_last_regenerate|i:1670400199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6f5362c1e8a2b4a79448bb67d88d937b25ffdf', '31.222.203.2', 1670400199, '__ci_last_regenerate|i:1670400199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fa7aaec789e83051b670d6242b2fe8419425b0', '45.120.39.90', 1670407911, '__ci_last_regenerate|i:1670407911;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670387427\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670400748;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff1ea4fe28ad7fccf177c5495bed2194b83df2b4', '172.105.247.100', 1670401912, '__ci_last_regenerate|i:1670401912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('810a3f40404c891d8b3bb96937fc62362f2fe42a', '172.105.247.100', 1670401912, '__ci_last_regenerate|i:1670401912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2738259336236f41cae2695e189cf95d7c8f8b1', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c167b66f4178ad39c5a435b1f9df6b1628f666', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb35534ae5412b882d9754ffb3fe8dec9161c4c', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b50067f9737f4edd82f33723fd05be30f494c6a', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6dea17ca575c6ee440e30125a7fb5a32d11d0d', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af870b4df1e51a2a0f033aca7e0978ea21436dc3', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e51878701897a1977e71206f637360a87b8ab7d', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d5ebae5708138583c6d2dcc0f16c739b984073', '172.105.247.100', 1670401913, '__ci_last_regenerate|i:1670401913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41f3e0859351b1c0a5a85502a327455b5cb0108', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5263a2ad5deab5151d60dec0e4a5fe527374bfde', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea2775ec8f4ca5c18778a0476e485cde6923cbd4', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1889ddefaaea182e02233411f9b46032c7aa27', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6e5607b10a0a3ef2d8ca5ad20f84b172025adb', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a86711139e96915a860109dbc0a790a8d49e61', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27aaecddc034e56e6717a5f291dbfef6750216f5', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d978b4e8ad0eb3a7853d7805b328be979cce39', '172.105.247.100', 1670401914, '__ci_last_regenerate|i:1670401914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7346df0c813f725bf527d6a9626c5cfcc65254a4', '172.105.247.100', 1670401915, '__ci_last_regenerate|i:1670401915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c09761d337ebd4f46a0725c9dc3474bca0a1bb0b', '172.105.247.100', 1670401915, '__ci_last_regenerate|i:1670401915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03034f9b04eccff3331274223cb6875385200e0', '172.105.247.100', 1670401915, '__ci_last_regenerate|i:1670401915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae8d996d6392baed81c47e4806c64372ddda5b6', '172.105.247.100', 1670401915, '__ci_last_regenerate|i:1670401915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66967e0806bae9155169d0f1dce7a1bad7ae2920', '172.105.247.100', 1670401915, '__ci_last_regenerate|i:1670401915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d5943e85f5e108e72defd43f6599d0abaf526f', '172.105.247.100', 1670401915, '__ci_last_regenerate|i:1670401915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2a0b434ff0c491e4cc4f6dd8b1cce95d6b1c41', '31.222.203.2', 1670401993, '__ci_last_regenerate|i:1670401993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9fd4433f0c52fa2d7523546b35247dd9ec1922', '31.222.203.2', 1670401993, '__ci_last_regenerate|i:1670401993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65866f0b2643b1e0f28199e9ee724eee9705a057', '31.222.203.2', 1670401993, '__ci_last_regenerate|i:1670401993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229c9142038eb5c489c407e116cf7945a643a1c1', '31.222.203.2', 1670401993, '__ci_last_regenerate|i:1670401993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee2d107f09ed9bc2fecc85e0d2b3489ac63ccaf', '31.222.203.2', 1670401993, '__ci_last_regenerate|i:1670401993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b51a2291a0f9a795f399336284190337e9001e', '31.222.203.2', 1670401993, '__ci_last_regenerate|i:1670401993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f586fb60a7a54d2a6b3eb9f5ef5ae81c21d702', '31.222.203.2', 1670403805, '__ci_last_regenerate|i:1670403805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f40831f77a41c946c7e4588a1d8a7a1e16dcb0', '31.222.203.2', 1670403807, '__ci_last_regenerate|i:1670403807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49536d7cc71202793bd47ba51609261bc0c8a798', '31.222.203.2', 1670403807, '__ci_last_regenerate|i:1670403807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830bf770846826b5d32414c04c1166220e02b9b8', '31.222.203.2', 1670403807, '__ci_last_regenerate|i:1670403807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6642aba19bff2cf7bc369ff29aff93c88cd860df', '31.222.203.2', 1670403807, '__ci_last_regenerate|i:1670403807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c539ea596be07a34c2b507f6d921ec17841e48c', '31.222.203.2', 1670403807, '__ci_last_regenerate|i:1670403807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06458bc137a44ffde46c615736a75f704ae4f5b', '31.222.203.2', 1670405575, '__ci_last_regenerate|i:1670405575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2f01fe96d5e0bbeb68a88121885d804f7d34f5', '31.222.203.2', 1670405577, '__ci_last_regenerate|i:1670405577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74003cca4f94e5744124f2bc740da688ea1edd52', '31.222.203.2', 1670405577, '__ci_last_regenerate|i:1670405577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd3e71aa5bcd77af360b36f07abbebbf48d89f4', '31.222.203.2', 1670405577, '__ci_last_regenerate|i:1670405577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e5823ddf87ce94901aeee9f84be3256a10b57f', '31.222.203.2', 1670405577, '__ci_last_regenerate|i:1670405577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c392be34215a64dff504e8870e8dea76cb2f12e', '31.222.203.2', 1670405577, '__ci_last_regenerate|i:1670405577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f187ea646b42696f14ad81d489c1b9df30005b50', '172.105.247.100', 1670406114, '__ci_last_regenerate|i:1670406114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983540a94a45d6df2c97933384be42f4399ab1a3', '172.105.247.100', 1670406115, '__ci_last_regenerate|i:1670406115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8a2e13a2b19aa24991a5015c7940c0de8e9c49', '172.105.247.100', 1670406117, '__ci_last_regenerate|i:1670406117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3b3fddfe6b1c407421b83dfd0a07f18bc82384', '172.105.247.100', 1670406117, '__ci_last_regenerate|i:1670406117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20274dbec88f159c6232af6fcd4328592789f727', '172.105.247.100', 1670406117, '__ci_last_regenerate|i:1670406117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357930207c0bfeab8a55eb383ff35c322a9fa540', '172.105.247.100', 1670406117, '__ci_last_regenerate|i:1670406117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c57c4c4a4cdbadb09cb492d746720666d00b31a', '172.105.247.100', 1670406117, '__ci_last_regenerate|i:1670406117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b6287a881cff982402d519b91fddffba6571d1', '172.105.247.100', 1670406117, '__ci_last_regenerate|i:1670406117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5960901178cdbcd04b101e49e211b987a7d7160c', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d2b79941e30295dfafc12713ee737166cd333d', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0ee12c89823577b8314620bae145bf8c934ae12', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da199bfe4b0bb5065fde1bdcb202e83b1d41db4', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb170dec281cac3282a0fcf9c3d9c168e230753', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f56df0f9e74e65fc2259ac633eaa283c65aafdeb', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e8ee2d513e8e82312a3a1a3ca6cb48c2c1062d', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859d4146446e8c3ae72311b145b5e59eb092a9e3', '172.105.247.100', 1670406118, '__ci_last_regenerate|i:1670406118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d8df852f3ba3f7569623a37a525ca4f4a85a0a', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01c41887139a0f770d8ed36e37e81e892d1dd38', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb352c097c8257c2ed50f41fea587d8f9bb46929', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53181353f717f76467c705969da2659381316387', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f92509908dd973f4a44867a869a42b78ad6464f', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1ccd9b88d802e1b3328dfe29665a22873a9eb5', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01b059062a2acd6e79f16922bc42d8b27d3ed59', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8299853a65b127342a1e2f1970f47223f261ae', '172.105.247.100', 1670406119, '__ci_last_regenerate|i:1670406119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61c14bbf4c368d27b3cdca0c22402560a770ae6', '205.210.31.147', 1670407196, '__ci_last_regenerate|i:1670407196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8401388fab507a87dab6b48132a9692507c35923', '31.222.203.2', 1670407325, '__ci_last_regenerate|i:1670407325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cfa2c88a512ccf5400c60e77273683b4cac30e', '31.222.203.2', 1670407325, '__ci_last_regenerate|i:1670407325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8356cbe678b7ef0f7c63e3316a899995967ddf', '31.222.203.2', 1670407325, '__ci_last_regenerate|i:1670407325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd976e9bfd6e27df8ec81a23f324b806184b644', '31.222.203.2', 1670407325, '__ci_last_regenerate|i:1670407325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40b366b928c2d7c5af5ecb827a670330bef2572c', '31.222.203.2', 1670407325, '__ci_last_regenerate|i:1670407325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f783ad3dd2e176ab81cdb2e68df6e86d398894c1', '31.222.203.2', 1670407325, '__ci_last_regenerate|i:1670407325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0808ce3e4987889d16e659f26ee9bea39826812', '45.120.39.90', 1670412943, '__ci_last_regenerate|i:1670412943;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670387427\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670407911;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0731c858446c8378194b37bf3d406ea23351a665', '31.222.203.2', 1670409121, '__ci_last_regenerate|i:1670409121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0f0d1ea6f6b1b5a93b682f786937aa70068b4b', '31.222.203.2', 1670409121, '__ci_last_regenerate|i:1670409121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2e1a7afea1964968d214e66d69f12d48f34c33', '31.222.203.2', 1670409121, '__ci_last_regenerate|i:1670409121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295d934291ab482ec2aa8d00374ea493554fa36c', '31.222.203.2', 1670409121, '__ci_last_regenerate|i:1670409121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5630ddba4dfc65089b62eaa15d0ed0704435fe69', '31.222.203.2', 1670409121, '__ci_last_regenerate|i:1670409121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c9ca9e3242b59d4add89dae0b4617ef70d8f485', '31.222.203.2', 1670409121, '__ci_last_regenerate|i:1670409121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2dd521452862f2922982f589de7fd1b1cf691f', '31.222.203.2', 1670410924, '__ci_last_regenerate|i:1670410924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21bb71166fa626df394e7b36886669a7dd8f27a', '31.222.203.2', 1670410926, '__ci_last_regenerate|i:1670410926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba4a4106e663381ebb652b5cfab674ffb4c7f0f', '31.222.203.2', 1670410926, '__ci_last_regenerate|i:1670410926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a8edbd86bf190fd88857f9ec8b2dde1671afd1', '31.222.203.2', 1670410926, '__ci_last_regenerate|i:1670410926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c303021f704b53ee52133149d93247cd84ffed', '31.222.203.2', 1670410926, '__ci_last_regenerate|i:1670410926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d63520ef2a76f987951eaa25ac61ad697a5c69', '31.222.203.2', 1670410926, '__ci_last_regenerate|i:1670410926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13c8ae2bd9cb70bc0c2ed7d26d1cdb0e592597a2', '172.105.247.100', 1670411509, '__ci_last_regenerate|i:1670411509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97899a949ae265568776d08680a20614779a778b', '172.105.247.100', 1670411509, '__ci_last_regenerate|i:1670411509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773e0e05f36df796089d121aee69acdd39cf56c8', '172.105.247.100', 1670411509, '__ci_last_regenerate|i:1670411509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d807b600bc27457ea9140feb8eb240e5511cb1ca', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f253876bc1e62245b0328d8186806a2bb5976b', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c8c246575b6902cef25782c10d994db653ddfe', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8abda1c1f964fe3e4ceeaeb04bc3f21110d511a8', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7404ea852cd8dfa9831618dd6cec5d4b3c98c458', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a96d77445b74bb0b7bd421952bf8131c136d9b', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a1bd9e050179ff4b29ca67a59fce577c2bd428', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570f9c675fe35d23e96e8e8f65b95a07d657456f', '172.105.247.100', 1670411510, '__ci_last_regenerate|i:1670411510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568eeee9c13c0129761694de4e630da93170bf79', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd90bfc4e639c70c2b69d7147f820ee05fe348cf', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78faa8ec9c1dc15c8043018e57a8b56bb60071a3', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac6641ea5e96b8c1baa40754680ff58c65502f1', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31d419e2bf17042a9ce1641707551d658d08cd9', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863f04235e10a19112514a3e49b9453f184b92e3', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40ffef813bdeab9964a506e5952f06108d4d106', '172.105.247.100', 1670411511, '__ci_last_regenerate|i:1670411511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bb3bd13d8c28af8106744b11be72f93079f115', '172.105.247.100', 1670411512, '__ci_last_regenerate|i:1670411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c812dce5561142e038daee6978fc82e149723f60', '172.105.247.100', 1670411512, '__ci_last_regenerate|i:1670411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48c67f02f071d5bd542a852fc8f3c6b66f28168', '172.105.247.100', 1670411512, '__ci_last_regenerate|i:1670411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4586411b23e272d218d6267cde62b229f251f4c', '172.105.247.100', 1670411512, '__ci_last_regenerate|i:1670411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c7845a870be34c3b6e586382c150664195722f', '172.105.247.100', 1670411512, '__ci_last_regenerate|i:1670411512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5596f9aacb9788a67e99b608b69f529d2f155fa8', '172.105.247.100', 1670411512, '__ci_last_regenerate|i:1670411512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8fa7e1fb66972f9edcb8110823d33e962c9b4c', '31.222.203.2', 1670412724, '__ci_last_regenerate|i:1670412724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6097764c2d672057da9051093d82c395bc5745', '31.222.203.2', 1670412724, '__ci_last_regenerate|i:1670412724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c226ea964f3d3d48070f0cf2d25947dea138cdb', '31.222.203.2', 1670412724, '__ci_last_regenerate|i:1670412724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189b95bb4b8088f42ecc06895184f7a7a82b45d0', '31.222.203.2', 1670412724, '__ci_last_regenerate|i:1670412724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e4848530b5307c9e74d253336a1c677ed3192b', '31.222.203.2', 1670412724, '__ci_last_regenerate|i:1670412724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed711aaa301cf3877aa045bc3f4ba977dc4cdc59', '31.222.203.2', 1670412724, '__ci_last_regenerate|i:1670412724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1896b5f9a20133eb9d4ca66911522caa7286244e', '45.120.39.90', 1670416947, '__ci_last_regenerate|i:1670416947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670387427\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670412943;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546fe917a6aca8e759af833fcff7272efbbb95d5', '31.222.203.2', 1670414526, '__ci_last_regenerate|i:1670414526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b3d8d646ae9baf0638629a6f35d086b80e9d45', '31.222.203.2', 1670414526, '__ci_last_regenerate|i:1670414526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c4217ca05667ff5e4992108d460fc4cc909464a', '31.222.203.2', 1670414526, '__ci_last_regenerate|i:1670414526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568e3bf180f62afeb6c38f8f25bc0c9d645c23ae', '31.222.203.2', 1670414526, '__ci_last_regenerate|i:1670414526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8761e9958984ba65a02394bb85a49643007a781', '31.222.203.2', 1670414526, '__ci_last_regenerate|i:1670414526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1988a6d093dcec50302eb979694ad1958a9baa', '31.222.203.2', 1670414526, '__ci_last_regenerate|i:1670414526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3846a83853fb81bcb1768883cf50e491b814398c', '31.222.203.2', 1670416324, '__ci_last_regenerate|i:1670416324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae6df4e5307f17507fe189523732005888077a9', '31.222.203.2', 1670416325, '__ci_last_regenerate|i:1670416325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e40203f0ce04d4057dca851c084b21d19c8b6d16', '31.222.203.2', 1670416325, '__ci_last_regenerate|i:1670416325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c57f4f434ca79e6abca5aae174f32e161a3601b', '31.222.203.2', 1670416325, '__ci_last_regenerate|i:1670416325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1921835d005facfc633af23b36e09bddeb6f47a9', '31.222.203.2', 1670416325, '__ci_last_regenerate|i:1670416325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a42fb31a6ed2fd5e0a5789802955d70e4b9e857', '31.222.203.2', 1670416325, '__ci_last_regenerate|i:1670416325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394c4673cbf54b69bd1da9a4ce34651fe6fe1268', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('855335b2a441dd575e9f4e2a1503295a6f364ec3', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c509d0d54400306a34a35afcd44ab020f8258f', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b09fd5de707cdabd8670bbe558fe8c898d87fa', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560b7b8dcd143b272cb1a289edda019a7a0d23d1', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59994e585d0be2ddc6959e6da3adfa6a9c18722', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29da778b3d1e3399e725af09b23decaed3dfd19', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1baf06be1ef31ae22a0be6fa59d409d084ea4c', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0958820089ee473196c8d5cff8de48aaeab22b5', '172.105.247.100', 1670416913, '__ci_last_regenerate|i:1670416913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2380e4b85287927e8e7c602e921b2808c1f49574', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e356273a3f90bbfecf6d83f83b50396aff3a9e81', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad3d79f54fb97fe4942a332a97c181f3f3a17687', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a96fd5066231c7903df595dcced08cc94d9863', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8465f5321cffc79c356532a86a1b5dca2acaec8', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435b307688f627352a99cef3b0f412a8a85e0133', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5419b1200fbcba6114f0e89ded8fca803d49a73', '172.105.247.100', 1670416914, '__ci_last_regenerate|i:1670416914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5076501f00bb28acc41c080c96c4a0ae6cd02960', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5bffbaf1ae771e2109a646f6a42b087503a2ac', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc6c666a148365c7969180bd7004bd0ae561582', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25ed5ec6769647a4761fedde2258537ebe9f612', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4eab19a2b6a5a051cda76d8e9bafb2338ea47d0', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40185294147a6e1bff4f52163b4d1f75e3af843b', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7048ecc74e9da13ba38c309c184f5e725ce53581', '172.105.247.100', 1670416915, '__ci_last_regenerate|i:1670416915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646fd62c5a99a331065dc135643bec7b8a1e8820', '172.105.247.100', 1670416916, '__ci_last_regenerate|i:1670416915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c5c8aa35110b6b7077ffc826e2db4784279e30', '37.111.218.208', 1670416984, '__ci_last_regenerate|i:1670416947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670387427\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670416984;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2064ac13523f6d41077ad7110edb189bd801326e', '31.222.203.2', 1670418123, '__ci_last_regenerate|i:1670418123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8db5e4473997780e66bd8f6b6ca9b22dd2e9ce2', '31.222.203.2', 1670418125, '__ci_last_regenerate|i:1670418125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36fa11b8599e68a67a47fef93b5da0f84f159500', '31.222.203.2', 1670418125, '__ci_last_regenerate|i:1670418125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b23847eccd3d1fb3135e9c30e38c8ce8f254fc6', '31.222.203.2', 1670418125, '__ci_last_regenerate|i:1670418125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1762ce205268cf07b9ac5a099fcfa80f057a53', '31.222.203.2', 1670418125, '__ci_last_regenerate|i:1670418125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d474d62e01f75e57cbb8e3cd54832aca024c0c8', '31.222.203.2', 1670418125, '__ci_last_regenerate|i:1670418125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19dcd9e9635939d68000f54552cd550dc88e67d5', '31.222.203.2', 1670419925, '__ci_last_regenerate|i:1670419925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e225f8f2815f300e6a6c0a437731240574f4d7', '31.222.203.2', 1670419926, '__ci_last_regenerate|i:1670419926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35569ef6bb87ede994b8eb9b2576a7f2cf76bb29', '31.222.203.2', 1670419926, '__ci_last_regenerate|i:1670419926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8c6439113786aea0b0c6fd2ba6fb283edba41c', '31.222.203.2', 1670419926, '__ci_last_regenerate|i:1670419926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ccb40ba8040f7419a42d8b3a190e1930615aaa3', '31.222.203.2', 1670419926, '__ci_last_regenerate|i:1670419926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2808e2d7d1c6d2ac02f47b239f35f999faada91d', '31.222.203.2', 1670419926, '__ci_last_regenerate|i:1670419926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239db2e46297180a63d94f40f1b9c5b373170431', '31.222.203.2', 1670421729, '__ci_last_regenerate|i:1670421729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab51a800f73c824a342d1523b915f7415c33402', '31.222.203.2', 1670421729, '__ci_last_regenerate|i:1670421729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da948ba00dd6da25c197430ec5a7c3073dde142', '31.222.203.2', 1670421729, '__ci_last_regenerate|i:1670421729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113d82a1290f88eeeaef8c33b78edf13f2dbf3e9', '31.222.203.2', 1670421730, '__ci_last_regenerate|i:1670421730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c733a9d818e6c578e664dc1d310f72669b5c3496', '31.222.203.2', 1670421730, '__ci_last_regenerate|i:1670421730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ade5e8f8038cc27935fa514391643a75ae4fd6', '31.222.203.2', 1670421730, '__ci_last_regenerate|i:1670421730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf04b7b34db56c57b6ede7b7b9570e4c2db3ce2', '172.105.247.100', 1670422309, '__ci_last_regenerate|i:1670422309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0490a266e87329d95775024ebb3601406805a82', '172.105.247.100', 1670422309, '__ci_last_regenerate|i:1670422309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f8955e76612ef6ac7ad4e61277ea2dbab64f7e', '172.105.247.100', 1670422309, '__ci_last_regenerate|i:1670422309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68625cb5c37d99d65de45eead3c34d01f3c053c0', '172.105.247.100', 1670422310, '__ci_last_regenerate|i:1670422310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c689a8951cd52ffcc6f4bbeead9c9e751588ce', '172.105.247.100', 1670422310, '__ci_last_regenerate|i:1670422310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01a612126c2e875788492fae27360f74be3e9c8a', '172.105.247.100', 1670422310, '__ci_last_regenerate|i:1670422310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1229ae4f18456cb916602f98a90afee15fa9f3c3', '172.105.247.100', 1670422310, '__ci_last_regenerate|i:1670422310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34a598f703cd7bb96879eca35c374c709baa4829', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a691e6676ea5a4cc27a4895b2b1ff5e661c8fb6', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b02b8ba361543717b2bc9f494f3995cac58715', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d668d989020a3dea437c14074dc76fd016bede', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c0c2562bc16fe1a3e9e63fd9f89ad732180b8f', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe256e768443594988bd1fe396c140335492984', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433e8b750b720bad4c325b8a9d5963591fd321b9', '172.105.247.100', 1670422311, '__ci_last_regenerate|i:1670422311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d03253ee2e6992fd2ceb21f62c7524c5466e910', '172.105.247.100', 1670422312, '__ci_last_regenerate|i:1670422312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca7a7f73f312e3e3d5a721ab7646bf6a6d68d751', '172.105.247.100', 1670422312, '__ci_last_regenerate|i:1670422312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ac9539bbe98d249ef3c0b2a58eb4ef085b49d2', '172.105.247.100', 1670422312, '__ci_last_regenerate|i:1670422312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd03384bbc8b33d5445499c8013a0685e433b8ca', '172.105.247.100', 1670422312, '__ci_last_regenerate|i:1670422312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9772bf4597716913b129a308a1429f86ff0650c', '172.105.247.100', 1670422312, '__ci_last_regenerate|i:1670422312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf273ac03c85f140bbc43b8a1ec711bd158f64ad', '172.105.247.100', 1670422312, '__ci_last_regenerate|i:1670422312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b973343241aaf9777d409d628d51f02bbe7890a', '172.105.247.100', 1670422313, '__ci_last_regenerate|i:1670422313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07483f1051a1f22038eeffa279511eab97c5a6de', '172.105.247.100', 1670422313, '__ci_last_regenerate|i:1670422313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8c003e2e7fa4fd1f8984f66a122edd1b59b983', '172.105.247.100', 1670422313, '__ci_last_regenerate|i:1670422313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167bbd7c7fed372462f4a7f4a3f574937bf13bb3', '172.105.247.100', 1670422313, '__ci_last_regenerate|i:1670422313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f82b40176707c3bac69e9d4403095fcba5d99e', '31.222.203.2', 1670423526, '__ci_last_regenerate|i:1670423526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e802f48c9fb12ea604b25d5b493d4152cae0f765', '31.222.203.2', 1670423527, '__ci_last_regenerate|i:1670423527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8a437861a57bcd96e30d54c336919dd48fba9c', '31.222.203.2', 1670423527, '__ci_last_regenerate|i:1670423527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353f268d858c913aeeb232b0b454b62c5d6ee221', '31.222.203.2', 1670423527, '__ci_last_regenerate|i:1670423527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831a986a32f4394b2920f1457543ce6af7a08841', '31.222.203.2', 1670423527, '__ci_last_regenerate|i:1670423527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae82307212c481cb9d399c8005e3c8334ff95bd', '31.222.203.2', 1670423527, '__ci_last_regenerate|i:1670423527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31d8e8071be36179e51e8c52e9d69edeb401733', '31.222.203.2', 1670425327, '__ci_last_regenerate|i:1670425327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb6e3c75f3ea90c2d248627ff1b0989631b45f1', '31.222.203.2', 1670425327, '__ci_last_regenerate|i:1670425327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f236f45d021ec9fe7ca724a78baf3a7adabbc38e', '31.222.203.2', 1670425327, '__ci_last_regenerate|i:1670425327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10414d7080d606c83003bb1f8e2aedffd183d286', '31.222.203.2', 1670425328, '__ci_last_regenerate|i:1670425328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d9f2f4943c628a5853966409c857bc60f21ffa', '31.222.203.2', 1670425328, '__ci_last_regenerate|i:1670425328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44a9e0f530098ec5f4c3274c3e8cb3f5719537b', '31.222.203.2', 1670425329, '__ci_last_regenerate|i:1670425328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6dd8ce361eb664af931c62c03ab666148a9622', '31.222.203.2', 1670427135, '__ci_last_regenerate|i:1670427135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b63555ab56cd982657a5e1d63ef3ff818acb98', '31.222.203.2', 1670427136, '__ci_last_regenerate|i:1670427136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7994050d8a304b9f00b653c901b2a7f092beb5b', '31.222.203.2', 1670427136, '__ci_last_regenerate|i:1670427136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8cbcd6aa796974aeae3571caeb5cb83180ce326', '31.222.203.2', 1670427136, '__ci_last_regenerate|i:1670427136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2e66498e2c53f3cb8a672892904bf67179a248', '31.222.203.2', 1670427136, '__ci_last_regenerate|i:1670427136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0806df61756e633610e52430149a7d52b0608387', '31.222.203.2', 1670427136, '__ci_last_regenerate|i:1670427136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d9bbf8a82b6d799e5a92a0aebc2147d9be16a5', '172.105.247.100', 1670427715, '__ci_last_regenerate|i:1670427715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59bf7ede832dd06abae04d66d3673ca92f4f8b0', '172.105.247.100', 1670427715, '__ci_last_regenerate|i:1670427715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11174b37b0a10f07db7b1422bc7361f213d9da40', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69de31c4a12728683f137425a48f3f34b27d27a9', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3250e3959e5131a5a60fcfd0bfe5209f985a0ceb', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b125c8ec01cdc40f2405311485e2d4af14096a83', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc52f76f36b217c65ce899bb1938b27110c13d34', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b234196044742c99a429aa4f05c0d1b4a28f148', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4186ad2dacc141b21425d31440ef2c185457baa', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeab0c9bf7a594d2aedd7146b2a565fa6ccab95a', '172.105.247.100', 1670427716, '__ci_last_regenerate|i:1670427716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccdd6fff52f122502d484a433cff67665f08d6c8', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd1b0db1f610eb6c9627bcfaefed95f222d1937', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd4c8fe839c763d4d6775f84949540b10c3e164a', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f7cf18fa4b9cf1ae7f173252443908c797c514', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49adf589d6ab266057ca98419b98577e27e2f73', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba8124c9a2330c2a09418241aed28c66bd6aff2', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29b93308b47c0105f21e1a4f755483c50a816d3', '172.105.247.100', 1670427717, '__ci_last_regenerate|i:1670427717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e090f331377828556528a877c4a07406c5ee3738', '172.105.247.100', 1670427718, '__ci_last_regenerate|i:1670427717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03773575cbd0fa952a8968c637b3c8660f755ba6', '172.105.247.100', 1670427718, '__ci_last_regenerate|i:1670427718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ce18aa4b2dc96c921b401967eb7d2101c4bde1', '172.105.247.100', 1670427718, '__ci_last_regenerate|i:1670427718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ef4bad091581b6fbf1f82a4338ee9ff2477ffa', '172.105.247.100', 1670427718, '__ci_last_regenerate|i:1670427718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd90179cbd5493add2e47cd7a04c52b5988c264', '172.105.247.100', 1670427718, '__ci_last_regenerate|i:1670427718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662b531a6567006ca594f47598b310d944f30c2e', '172.105.247.100', 1670427718, '__ci_last_regenerate|i:1670427718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3930f0300cd89abd705438ab5db51542aa87c2', '172.105.247.100', 1670427719, '__ci_last_regenerate|i:1670427718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('116f3de5ebe4d31d477ba9d72f1db6e7abdbec69', '31.222.203.2', 1670428923, '__ci_last_regenerate|i:1670428923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df531c377b1545f9cd1d7effe966f5ab45df0ed0', '31.222.203.2', 1670428923, '__ci_last_regenerate|i:1670428923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c842f1c17f98824951a81aa5d1c5011c4a87493d', '31.222.203.2', 1670428923, '__ci_last_regenerate|i:1670428923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ebc71d19537e0be000ede0d60132f5888b1c1b', '31.222.203.2', 1670428925, '__ci_last_regenerate|i:1670428925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23221f535fb160d50daf9e61a7b9d682b76490c7', '31.222.203.2', 1670428925, '__ci_last_regenerate|i:1670428925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d5b94a5f2408c88da22a4667644010a0e6380d', '31.222.203.2', 1670428925, '__ci_last_regenerate|i:1670428925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f97c4ed85ef4067d8ad44c09a91e98710af75d', '31.222.203.2', 1670430725, '__ci_last_regenerate|i:1670430725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72bae0ea3b9793938f9602f62019a31692479c22', '31.222.203.2', 1670430726, '__ci_last_regenerate|i:1670430726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f66ce9ff56b9007b7add5b836d06f8d89ad5836', '31.222.203.2', 1670430726, '__ci_last_regenerate|i:1670430726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74495a57839058707675abe2049d0c9ab9ca56a5', '31.222.203.2', 1670430726, '__ci_last_regenerate|i:1670430726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0640b2f16e92ffdbfa55c7f082780111ea9988fc', '31.222.203.2', 1670430726, '__ci_last_regenerate|i:1670430726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0301d8e391175cba2f253331e8ada5a8ea45ff8', '31.222.203.2', 1670430726, '__ci_last_regenerate|i:1670430726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509f69987614b5b9b4e82c4b69c8605c4e235d4d', '172.105.247.100', 1670431913, '__ci_last_regenerate|i:1670431913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce06c683046d2abfbefb7c1802dc9304e3b0bf3', '172.105.247.100', 1670431914, '__ci_last_regenerate|i:1670431914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672e0a2d765059c07d77721f120cfb0b9cd17fe3', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a7a796be277a70ac691e9277f7f94d084eaaf6', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f99ddc4c888571720a9e11787bbf49d21fdf3799', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b06ef2518946d761fe948c621b099d8fe2f40a', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08405d72b6276e66e88e8512afba0126ecaa8538', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('851163eb9cbbec21adf69ca45a13e2834891da89', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eaea2880cb9793b86caaaadcf8e62eab88536b9', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50bb68d1f02e580a68dc436dc76a73c369b40835', '172.105.247.100', 1670431916, '__ci_last_regenerate|i:1670431916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a4d5c312303a08534df13a4424709295f57663', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1c3d9475c14699f04f9ddba362be222c7823a1', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ad3cd2f9f688103e80d8c0f0ac2289043b3ca5', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd51d6fb3f2cd3f289e9f14880698c37885bf56', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705c10e8f92fdbe316f7f6d4b063a4aebb5cebbe', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c51d531e2a18722ab329c46071da82905707be', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6654c7f0efdf02683a78e01c6a201583de4111a', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb21e1ef436d9a3ccf801073299fa650ed5a1b8d', '172.105.247.100', 1670431917, '__ci_last_regenerate|i:1670431917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2375d01ce7391022d0313884c05198be767bac', '172.105.247.100', 1670431918, '__ci_last_regenerate|i:1670431918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa092e5e24a054c8fa553d10b0641afdaeecb337', '172.105.247.100', 1670431918, '__ci_last_regenerate|i:1670431918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('915a1fed527ad2557d0e8239140ac1a5eff6d4f0', '172.105.247.100', 1670431918, '__ci_last_regenerate|i:1670431918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c534e6143ba8dcaaf8b0cd00450f6a8686da80', '172.105.247.100', 1670431918, '__ci_last_regenerate|i:1670431918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb09d271dda980d0c6d179a2b46bfa9a6d663fd', '172.105.247.100', 1670431918, '__ci_last_regenerate|i:1670431918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1648b7a06a1cd770d8349b95bc8fa8866d68cf73', '172.105.247.100', 1670431918, '__ci_last_regenerate|i:1670431918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8f06f83ee8f74aa9bc272ad0f8b8f6603c435b', '31.222.203.2', 1670432530, '__ci_last_regenerate|i:1670432530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fe3e182db57db28a01ef910593973816fe123c', '31.222.203.2', 1670432530, '__ci_last_regenerate|i:1670432530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f4ccdbb093db9ba27a03d64eb33c8d907aea17', '31.222.203.2', 1670432530, '__ci_last_regenerate|i:1670432530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b017b99d517f3f085199876db2a4122d1816582e', '31.222.203.2', 1670432530, '__ci_last_regenerate|i:1670432530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d5b4f2a12aae151a77f39f1f61d4094d5b06a1', '31.222.203.2', 1670432530, '__ci_last_regenerate|i:1670432530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c96ec523678b5c26640bbb03765afe52ec6012', '31.222.203.2', 1670432530, '__ci_last_regenerate|i:1670432530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06571c673862b93d9352609c6e1fc988dc28b8d', '31.222.203.2', 1670434325, '__ci_last_regenerate|i:1670434325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e972b7432e47cb3a3426eba7c8db1100f11f1e', '31.222.203.2', 1670434326, '__ci_last_regenerate|i:1670434326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a314f5cbf2bb41e057b1a9cd33f592cbe51e1c', '31.222.203.2', 1670434326, '__ci_last_regenerate|i:1670434326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22b668e6b9cbe307b286783203feaeec5ed3074d', '31.222.203.2', 1670434326, '__ci_last_regenerate|i:1670434326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c886a10ac4db8d2d28eed311d52d2e1a6a9c10a3', '31.222.203.2', 1670434326, '__ci_last_regenerate|i:1670434326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65d0b7472293a77a88ec8a71f9acf34adb5b1b7', '31.222.203.2', 1670434326, '__ci_last_regenerate|i:1670434326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84fce19abcf0dba3180a40b54a32eb193cdc335e', '5.254.62.54', 1670435390, '__ci_last_regenerate|i:1670435390;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14fecf3d80f8544150e37fa322950681e4339f16', '5.254.62.54', 1670435392, '__ci_last_regenerate|i:1670435392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff3070591cf25f01300332ba4b1870e5132369c', '5.254.62.54', 1670435394, '__ci_last_regenerate|i:1670435394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc4fa07ffc4fc35bbd816360f435582c5a331db', '5.254.62.54', 1670435394, '__ci_last_regenerate|i:1670435394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28bfabaeadb0e0cca3862af2824a7f2fb3425970', '31.222.203.2', 1670436123, '__ci_last_regenerate|i:1670436123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c442c89230751bd3311adbaab08a50ba54d78c', '31.222.203.2', 1670436123, '__ci_last_regenerate|i:1670436123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640e08d8a50cab8b6294d7654b7127a1fb6390a0', '31.222.203.2', 1670436123, '__ci_last_regenerate|i:1670436123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81288b1467c095cefaa1a0c913a72d03c42fc3f5', '31.222.203.2', 1670436124, '__ci_last_regenerate|i:1670436124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ae34a80fed54109d53893144f5ac8a2c39fb94', '31.222.203.2', 1670436124, '__ci_last_regenerate|i:1670436124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ff79491052fd8639ad65d05ff1e843cbddaeab', '31.222.203.2', 1670436124, '__ci_last_regenerate|i:1670436124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840a71d3d37a2c5ce0417b1293a1e68a6ab3b1ce', '172.105.247.100', 1670436708, '__ci_last_regenerate|i:1670436708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0c514acb6371129b63b072e64cad0434f2fd10', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06327a26ad332d96ecba385b7b6f8825d9ba3f20', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1bcd3f44653cc5e5249d180667bdfea9c4b53d6', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17f8661bd5148369aee29c07ad9f9e5689591f4', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c0049432d48cb82269e865cba1c1f1aa4a3080', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e737a6928776c3cde2f7501fc4c0b6341ea9921', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e4e1b989fc14277e472e0e1ce6176bf0d29b10', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6fb62286d54f180619be17b77eecc7ff4bd9db5', '172.105.247.100', 1670436709, '__ci_last_regenerate|i:1670436709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7eb3795c0890b3be19832ed5e603c09cd015ca', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7221e54e413f87dd7234e8a47c04f15348576cdf', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e0fb3712f9d256adcd7e4359cae1ada5c1cc61', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b149837f60c8e9b02e2b01f600dd66a09205a3aa', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70a5b53ee872e0989adf4474dad9ab10228d3433', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e31844990946594ee85caa477416039ded1b45', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bbfa620eab687a5e95b5a96159836596480db9', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486c3d33e5302c6b777a82d7e00a43b9778b6215', '172.105.247.100', 1670436710, '__ci_last_regenerate|i:1670436710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ef02b6bfce843098878f51f318c30e4ada84b7', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8afdca1eba91fa07ef5fa56ccd567fad3ea8a2', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09ec0fa56002d971c5bdaf75daa7686be96be79', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20e330b7cfd087bf5286266bfa6f52c72c3c241', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf809add417d6f0b845ad8f753d9bf4aabcd071a', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e482268aaf4463b481c50d43bd6076fe1f1856', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffbafdad73e60c4572328597f76f4f844b1b4fb4', '172.105.247.100', 1670436711, '__ci_last_regenerate|i:1670436711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7377d1e570b6937f7c92b6c55c54e6ca6f9a732a', '31.222.203.2', 1670437924, '__ci_last_regenerate|i:1670437924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752f6f8329d325253720b0bc5be24a8e0efd7fbe', '31.222.203.2', 1670437924, '__ci_last_regenerate|i:1670437924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8c55e79d368fe7c631069c8c74996bb6b36350', '31.222.203.2', 1670437924, '__ci_last_regenerate|i:1670437924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784e8733ef8a6c079d45d5d379b69a47127bf097', '31.222.203.2', 1670437926, '__ci_last_regenerate|i:1670437926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844f7a4931b92324505a320a82ad0757dfdc5083', '31.222.203.2', 1670437926, '__ci_last_regenerate|i:1670437926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf93ab6079014adf6314cc01365ca732182b1b0', '31.222.203.2', 1670437926, '__ci_last_regenerate|i:1670437926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf152850000c289d1c17a4ba20bc0dd52c3fa160', '31.222.203.2', 1670439724, '__ci_last_regenerate|i:1670439724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ddb2d4a8ba64f3cbb2f2725d483e32af8f7bf85', '31.222.203.2', 1670439725, '__ci_last_regenerate|i:1670439725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004c9f2f6e3edcf42831461555c0d2d093efc61a', '31.222.203.2', 1670439725, '__ci_last_regenerate|i:1670439725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031bf1e15ac9761f8d87a372692bb7bc5f7a7892', '31.222.203.2', 1670439725, '__ci_last_regenerate|i:1670439725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af03349643e0ea6445c25934ef2a2a4951b4477', '31.222.203.2', 1670439725, '__ci_last_regenerate|i:1670439725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6eac311118c13476e0ad29a531bd06a5b82f227', '31.222.203.2', 1670439725, '__ci_last_regenerate|i:1670439725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de50e11fddf8e404ce4e6f64e660990dcb99ae9', '31.222.203.2', 1670441521, '__ci_last_regenerate|i:1670441521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b6e27f9a61d05d176124250aa7b49277e4c085', '31.222.203.2', 1670441522, '__ci_last_regenerate|i:1670441522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ddc66b87524fa3d8f2c2ad1fe85fae373814dac', '31.222.203.2', 1670441522, '__ci_last_regenerate|i:1670441522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a384d7a7cdf5f1e70d89d4bd22da13c4e1f08280', '31.222.203.2', 1670441522, '__ci_last_regenerate|i:1670441522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f0558d9943f461f5b878e21383e94b334deb13', '31.222.203.2', 1670441522, '__ci_last_regenerate|i:1670441522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78228e4e56cb885e58b2249670697f3e097fb5c5', '31.222.203.2', 1670441522, '__ci_last_regenerate|i:1670441522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0324687bea6ed04f3ac4841cb1aaa6792f1d244', '172.105.247.100', 1670442109, '__ci_last_regenerate|i:1670442109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb1f30175bc7daee01727f3c5384611cb2533fd', '172.105.247.100', 1670442109, '__ci_last_regenerate|i:1670442109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac6ce3f92ecccef7131bd4f40757057de922925', '172.105.247.100', 1670442110, '__ci_last_regenerate|i:1670442110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4308270d08b41c1959af98924a75849762462856', '172.105.247.100', 1670442110, '__ci_last_regenerate|i:1670442110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2cf30b128675fe87c44f1e74ab7f00370fad88', '172.105.247.100', 1670442110, '__ci_last_regenerate|i:1670442110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7670e838813cd4e7b502efd796a9a98d344e0169', '172.105.247.100', 1670442110, '__ci_last_regenerate|i:1670442110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b13ea6fada163cbcf3226f439a8007c8c5aa99', '172.105.247.100', 1670442111, '__ci_last_regenerate|i:1670442111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5154c55e36d503d5e6fb349c82cbae1eb8e63fb', '172.105.247.100', 1670442111, '__ci_last_regenerate|i:1670442111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51716800790e658611f165c1889e5a749e2fcec2', '172.105.247.100', 1670442111, '__ci_last_regenerate|i:1670442111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d46537eb2c9943bd246503312fbad153860eb8', '172.105.247.100', 1670442112, '__ci_last_regenerate|i:1670442112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06505733422a9968d8859a3dd9fc03e57b2fed5', '172.105.247.100', 1670442112, '__ci_last_regenerate|i:1670442112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a7957deb0efcfa86957ae5601911cf9b5ffe8a', '172.105.247.100', 1670442112, '__ci_last_regenerate|i:1670442112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2925b4e9b937a82996838b34a70806cb41c5af00', '172.105.247.100', 1670442112, '__ci_last_regenerate|i:1670442112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de903164ff90c87321929ae9aa143a8871855ad', '172.105.247.100', 1670442112, '__ci_last_regenerate|i:1670442112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeaee577360d04295930def2949efff5680dbadb', '172.105.247.100', 1670442112, '__ci_last_regenerate|i:1670442112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('940107ff3fa1aeadbcc6b00935da8d961759a50f', '172.105.247.100', 1670442113, '__ci_last_regenerate|i:1670442112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f68f48ac5c7a7eda76bf0a18965ecb3a6da60d', '172.105.247.100', 1670442113, '__ci_last_regenerate|i:1670442113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224d67c80657f81f407da1d4b6b426cdddf9b432', '172.105.247.100', 1670442113, '__ci_last_regenerate|i:1670442113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54bfb997da07864348a1e01a8f85a5bf8ddd824', '172.105.247.100', 1670442113, '__ci_last_regenerate|i:1670442113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f179fc6f0ccd8c6693997d86e465b4720c1b79a', '172.105.247.100', 1670442114, '__ci_last_regenerate|i:1670442113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46f867ba9a24faf36f3d164ce716d1611d8f2f0', '172.105.247.100', 1670442114, '__ci_last_regenerate|i:1670442114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f6c6f24655429e176c2c7ffadb94aa86c2b035', '172.105.247.100', 1670442114, '__ci_last_regenerate|i:1670442114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ff086e60b34da1c47f77dd31f91a9bea9e6458', '172.105.247.100', 1670442114, '__ci_last_regenerate|i:1670442114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faea83c998bfd2cf89389d4bf68109f43e142e22', '172.105.247.100', 1670442115, '__ci_last_regenerate|i:1670442115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3733ce83369f753a33417c99ad04b611e4b521f7', '31.222.203.2', 1670443326, '__ci_last_regenerate|i:1670443326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d756a1010ae9ff3b99cfcb8ebdd5734e29542e31', '31.222.203.2', 1670443326, '__ci_last_regenerate|i:1670443326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8933e7740a745d10a0c9ca68fc177b7d50914169', '31.222.203.2', 1670443326, '__ci_last_regenerate|i:1670443326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd50fb4afd2df45fa14d7d8f927085291dabdf1', '31.222.203.2', 1670443326, '__ci_last_regenerate|i:1670443326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30198263cd31ac711e9c3770fef0d305ed5affa3', '31.222.203.2', 1670443326, '__ci_last_regenerate|i:1670443326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d20a5e9e860373c12c080f78814caa7e323bc0f', '31.222.203.2', 1670443326, '__ci_last_regenerate|i:1670443326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10d5fa732d8a0414b1eee096695fddd86cfdf06', '31.222.203.2', 1670445125, '__ci_last_regenerate|i:1670445125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d247f2ed2231c60826144aa9a1c327740582a539', '31.222.203.2', 1670445125, '__ci_last_regenerate|i:1670445125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bc258129db15755cc3f643c16512b2f3ed453c', '31.222.203.2', 1670445125, '__ci_last_regenerate|i:1670445125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6fc073259df7432cfca8ea126e2f2be8a520b3a', '31.222.203.2', 1670445126, '__ci_last_regenerate|i:1670445126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47bc6a02c028fd6eaa3a76399b0b72d5529cd34b', '31.222.203.2', 1670445126, '__ci_last_regenerate|i:1670445126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574b6be3c4499bbff67709b1508267b84f959f14', '31.222.203.2', 1670445126, '__ci_last_regenerate|i:1670445126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d9b785ae4b1e8417489674298f0e897a0b69d44', '172.105.247.100', 1670446907, '__ci_last_regenerate|i:1670446907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c79f80e3b330f5569c3abe050ead7a7c6f9c860', '172.105.247.100', 1670446907, '__ci_last_regenerate|i:1670446907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54502f646014acce7c348317994ffb031a74c652', '172.105.247.100', 1670446907, '__ci_last_regenerate|i:1670446907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3115945154278d38dbb369695c8555d71f3562', '172.105.247.100', 1670446908, '__ci_last_regenerate|i:1670446908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448e60982cf263dbd55226e13674a6b7f2135aaa', '172.105.247.100', 1670446908, '__ci_last_regenerate|i:1670446908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155ca3f3135deadf6694ad051ef69f9e78880799', '172.105.247.100', 1670446908, '__ci_last_regenerate|i:1670446908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e324a909727afb3c40aac20331442b70ca23dc8', '172.105.247.100', 1670446908, '__ci_last_regenerate|i:1670446908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15378dfca6ced9eab3efb3508a60e9c93afeb4fb', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7a5a65569310a24bbf663971b9f8f8a8d67ef9', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839d3bcd77b5715596d304af65c05ccd15b1fa53', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afa0c40aef77af362a9c43a2289286d48c401f9', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab56e7cab14d7fcc9b46e5e78288164d6669cb2c', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c49c110b4b9d0c123e7fb9081a40c02da5824b35', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16cf98d093c917655f470e78ccffc654e2ce936', '172.105.247.100', 1670446909, '__ci_last_regenerate|i:1670446909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601ace097ce0a15ea4ca9a35b83853d4d1addee6', '172.105.247.100', 1670446910, '__ci_last_regenerate|i:1670446910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9ab04a8fc864cdf5e86370c5d807d1969a8cf3', '172.105.247.100', 1670446910, '__ci_last_regenerate|i:1670446910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a666ee694c3df8357e094cd91cc2ddd7473df37', '172.105.247.100', 1670446910, '__ci_last_regenerate|i:1670446910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2226aa1d77e6176f8d644cc5507ee158ca13f521', '172.105.247.100', 1670446910, '__ci_last_regenerate|i:1670446910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0933b5583e40ebc76aca2c861826d5059e530833', '172.105.247.100', 1670446910, '__ci_last_regenerate|i:1670446910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fafdb2dcb7f2de9d24ac747bdfd3cc243091c8e', '172.105.247.100', 1670446910, '__ci_last_regenerate|i:1670446910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef66868e48bae1c59af1319e19114b13ef91443a', '172.105.247.100', 1670446911, '__ci_last_regenerate|i:1670446911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae63c96dedaaaebf4b9584a1e19013c103ea1c7', '172.105.247.100', 1670446911, '__ci_last_regenerate|i:1670446911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a37a037e02bb41e0492598c3a4575f9b3548ca8', '172.105.247.100', 1670446911, '__ci_last_regenerate|i:1670446911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc3363eba2b62c1211138f471e4e8dd1d650890', '172.105.247.100', 1670446912, '__ci_last_regenerate|i:1670446911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d04550ebeb521ee57ca0dfcfbc6439edb260be5', '31.222.203.2', 1670446926, '__ci_last_regenerate|i:1670446926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472dc09cc4aca70b05a2c84c92cbb63a0912150f', '31.222.203.2', 1670446926, '__ci_last_regenerate|i:1670446926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e624f71d339b097b06aadebaef048220761b3a7a', '31.222.203.2', 1670446926, '__ci_last_regenerate|i:1670446926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f305170ed4943b5caca3e3489167d566f777e4', '31.222.203.2', 1670446928, '__ci_last_regenerate|i:1670446928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71033b3afbb388f3d67bfd05876ec70243fb02c', '31.222.203.2', 1670446928, '__ci_last_regenerate|i:1670446928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4334dbc8afe5350a68629b602ddd9be4cab2614', '31.222.203.2', 1670446928, '__ci_last_regenerate|i:1670446928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72bdb34aebd76a04d7764a3dae3c97c57c8ab6f', '31.222.203.2', 1670448725, '__ci_last_regenerate|i:1670448725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6971ed4b896419683547bcbbd9f5405c2a637c', '31.222.203.2', 1670448725, '__ci_last_regenerate|i:1670448725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3df753b6f96ccc958271fdff94d850d7d7a994', '31.222.203.2', 1670448725, '__ci_last_regenerate|i:1670448725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6862891a26ada9b1387b6da732318656f50839', '31.222.203.2', 1670448725, '__ci_last_regenerate|i:1670448725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aeb4e61452c2b090899ec07477598e245a9bda4', '31.222.203.2', 1670448725, '__ci_last_regenerate|i:1670448725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e9df9aac1f75a652ff0db3c972c6ab2c9b96fb', '31.222.203.2', 1670448725, '__ci_last_regenerate|i:1670448725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6b28263fd3ef402cb2067c91b9878f511e9316', '31.222.203.2', 1670450521, '__ci_last_regenerate|i:1670450521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed6a2183c2bf26d1b2d542b19279470ffc24e69', '31.222.203.2', 1670450523, '__ci_last_regenerate|i:1670450523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae20a4270b4812e76d2a9d1b2ef5d096853d824a', '31.222.203.2', 1670450523, '__ci_last_regenerate|i:1670450523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd17c1e2f1716bc22dde0ace92bd258eea979fb2', '31.222.203.2', 1670450523, '__ci_last_regenerate|i:1670450523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6efe1a822e3da603235733fd45033d7b6baac0e8', '31.222.203.2', 1670450523, '__ci_last_regenerate|i:1670450523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('872f1e5bc7d0ea670e4202b3de7f17373e7b04a0', '31.222.203.2', 1670450523, '__ci_last_regenerate|i:1670450523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19060aac9f1a577685f0d5533af6e49db3721b12', '172.105.247.100', 1670451716, '__ci_last_regenerate|i:1670451716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4124b1f32619b7b14c08b3277b639d0b8ee6bc', '172.105.247.100', 1670451716, '__ci_last_regenerate|i:1670451716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc3cd1fbf2bc100fe47b88e576ce75665bf8bd2', '172.105.247.100', 1670451718, '__ci_last_regenerate|i:1670451718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93dff994f407e0e7616f0c4daa799d9e5d89c774', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6989cc085a46245169df439473d119ed9db490', '172.105.247.100', 1670451718, '__ci_last_regenerate|i:1670451718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e27a3d4b3bdd4dd9b0e2aae2051ca532d9058a', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520c1ada2b698c7860da59bf89ec96a3786ab44b', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06dd8b3e2671b41f3b65c6a040acf867fe773c4b', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3743a61ef839dad1f9914b691470f7ac097d30', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad368e0774b6d767b073176116df72ad89b2c56', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fd5bff6ff6504d3661ae1e446c7ecb47d6b650', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b55bad93028d02b933e91328923bcea2a740e58', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca0e33a3dc0080540071bd3d497b20f445e349b', '172.105.247.100', 1670451719, '__ci_last_regenerate|i:1670451719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83d4e6b7de428be5566d8ae4145af6d6a2c2fae', '172.105.247.100', 1670451720, '__ci_last_regenerate|i:1670451720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c0af5fcc3cf2edcc4ebb16510c14f602ac73d6', '172.105.247.100', 1670451720, '__ci_last_regenerate|i:1670451720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5845536b6f24bf3bf09cf293f4fd6e7af5aaea68', '172.105.247.100', 1670451720, '__ci_last_regenerate|i:1670451720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93ea84f437d748ea0db516f8f92a5f2e93e031a', '172.105.247.100', 1670451720, '__ci_last_regenerate|i:1670451720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfbbace7aeab22e87c43b947b8be9d52c709c2d', '172.105.247.100', 1670451720, '__ci_last_regenerate|i:1670451720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7110d2372456bc9139a566d8075c1cc1d12ead', '172.105.247.100', 1670451720, '__ci_last_regenerate|i:1670451720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38783e02e3b6378ca92f445b57f09f1edccae8f7', '172.105.247.100', 1670451721, '__ci_last_regenerate|i:1670451720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f51818a3e18aa590de3a5eb1c608e249e497a07', '172.105.247.100', 1670451721, '__ci_last_regenerate|i:1670451721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ffdc119d8c224cd9639e40db0c0d8befce3bb9', '172.105.247.100', 1670451721, '__ci_last_regenerate|i:1670451721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a90bfa2bf06ef5def8ea3c413346d18e8bdf13', '172.105.247.100', 1670451721, '__ci_last_regenerate|i:1670451721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1e9d6c13226c44eb8a8a3bbbbeb93357819336', '172.105.247.100', 1670451721, '__ci_last_regenerate|i:1670451721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba8999a2aa311365448350871349e7c2ab2ea97', '31.222.203.2', 1670452317, '__ci_last_regenerate|i:1670452317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a50c0820c79c9d13e3f627efdcfc15aeaf8325', '31.222.203.2', 1670452319, '__ci_last_regenerate|i:1670452319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f956f328685f8c90637146cb03782626c77fcb56', '31.222.203.2', 1670452319, '__ci_last_regenerate|i:1670452319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8f7275be7e7359f5c0c65b4cbb461813c8e495', '31.222.203.2', 1670452319, '__ci_last_regenerate|i:1670452319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f127796dcba6bd1b13d3716d8d7c2b7d407b0fe2', '31.222.203.2', 1670452319, '__ci_last_regenerate|i:1670452319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a56ddc71661087cff0797e49d4da0549f4016aa', '31.222.203.2', 1670452319, '__ci_last_regenerate|i:1670452319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7a7e15a2a9d68344390fd74040881c618790bf', '31.222.203.2', 1670454128, '__ci_last_regenerate|i:1670454128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b331280bba71962d971da97e022a5a2711a2abe', '31.222.203.2', 1670454129, '__ci_last_regenerate|i:1670454129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0675632936520b4aed2bfd168b4229196077bcb', '31.222.203.2', 1670454129, '__ci_last_regenerate|i:1670454129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbf027c46b010e8473a2175b168aa9b43411bc1', '31.222.203.2', 1670454129, '__ci_last_regenerate|i:1670454129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6479534e155ea1cd6e7d7ac5f7668ca21c5612e9', '31.222.203.2', 1670454129, '__ci_last_regenerate|i:1670454129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4a853fce5c8f38069dd0543020795468e4ee3c', '31.222.203.2', 1670454129, '__ci_last_regenerate|i:1670454129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c37c706ccbb6e6ff93918cd88cb72cdcf07a4b0', '31.222.203.2', 1670455918, '__ci_last_regenerate|i:1670455918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab3f5bff99c4792e51d4f40533be08939abbb21', '31.222.203.2', 1670455919, '__ci_last_regenerate|i:1670455919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d821c934795a59710d0e8d4264e200464a1bafcf', '31.222.203.2', 1670455919, '__ci_last_regenerate|i:1670455919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffcc0f5f9200705f16665d0ba89d87c8d2c3838f', '31.222.203.2', 1670455919, '__ci_last_regenerate|i:1670455919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601f5d9e4d9083c97f71e78a84fc621c29ad9740', '31.222.203.2', 1670455919, '__ci_last_regenerate|i:1670455919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f794c0a801a2ea5181e1f703d8c4db7f5342ac', '31.222.203.2', 1670455919, '__ci_last_regenerate|i:1670455919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56fe689a0ff42afd2bf9430dfc09c3e60e50bee', '172.105.247.100', 1670457108, '__ci_last_regenerate|i:1670457108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7073a01e7fb67772363f95f6ed2ee17ef22a6d50', '172.105.247.100', 1670457110, '__ci_last_regenerate|i:1670457110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd31b2af061c492efb9e377114c30a9cb6a3fcf', '172.105.247.100', 1670457110, '__ci_last_regenerate|i:1670457110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa5865d79816b2fa0bbabe4f0d2d4caf15efb1e4', '172.105.247.100', 1670457110, '__ci_last_regenerate|i:1670457110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c089966eb13a6e1df40833c556502d82ee135e', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e625d192a1a4fbef6b8a18ae9f74ceb10690e21a', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d39ac479dd52c660bfc3f5a3ea8af5e7eda9ef82', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d72a63c2503d352e39e9821c104f654463149e3', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97febb3597e1c852947a159a13cf2b9119c1752', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55891f0b46cbfa7b4c11a3699b583a1800272c7', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41114900db67e7fffdc0eb5ffdb500144d8e217', '172.105.247.100', 1670457111, '__ci_last_regenerate|i:1670457111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb647b84f8b49822c5df355abfcb8d750fac223', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53149c2880060363424ecb3da96c5e73342c641b', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db0d43fc6e527f0882f9a30b2d8f52a708c4c50', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf1c10eadb8be258f73e8027e13bb7098004707', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899555af2817347f3a6b7cf1b224594b1791cfbe', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd954f5eea165d4383ad602d298d0575e3e30169', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40382a246992f686e7ae65a17203765c9c001a00', '172.105.247.100', 1670457112, '__ci_last_regenerate|i:1670457112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83488db73edbc98e88cee6043d3b5eee918b2452', '172.105.247.100', 1670457113, '__ci_last_regenerate|i:1670457113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e3adf93875564d0a345d73e21b7bc0b90260c2b', '172.105.247.100', 1670457113, '__ci_last_regenerate|i:1670457113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b4e529fd25b4b8ede35ed74897062552b72509', '172.105.247.100', 1670457113, '__ci_last_regenerate|i:1670457113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a6897e63f88e2d16d9d2ba371962a7b0e9275a', '172.105.247.100', 1670457113, '__ci_last_regenerate|i:1670457113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53512be18f07ebdb30426c58c8bab31fa67d35f8', '172.105.247.100', 1670457113, '__ci_last_regenerate|i:1670457113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96aa63ac6287b664d27e21af7c401773fe933d06', '172.105.247.100', 1670457114, '__ci_last_regenerate|i:1670457113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d74b01bac072a8dd259282d7f9e69d87369699', '31.222.203.2', 1670457721, '__ci_last_regenerate|i:1670457721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13c733f833155ef0fbd08b5e9db2b17bfa6a056', '31.222.203.2', 1670457721, '__ci_last_regenerate|i:1670457721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0e303241663896b9984b9709d1f593ed892f40', '31.222.203.2', 1670457721, '__ci_last_regenerate|i:1670457721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373a40214d6252cf92bb1a9a827650e59768e02d', '31.222.203.2', 1670457723, '__ci_last_regenerate|i:1670457723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176b30abe0731517cffcbfa00c5323ef180672da', '31.222.203.2', 1670457723, '__ci_last_regenerate|i:1670457723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e23306cff5cc2ab70115b2581a3306122f06cc', '31.222.203.2', 1670457723, '__ci_last_regenerate|i:1670457723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e9292cb6f1a0b44086457ae02943432df314a8', '31.222.203.2', 1670459521, '__ci_last_regenerate|i:1670459521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952929e4f0496c68b127ca2fe616b61a88617f97', '31.222.203.2', 1670459523, '__ci_last_regenerate|i:1670459523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53fc135d665e607704d7adfcdad3fdb410acb67a', '31.222.203.2', 1670459523, '__ci_last_regenerate|i:1670459523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604411a1fe4f421b2c3fa329fb90ca4cdb373194', '31.222.203.2', 1670459523, '__ci_last_regenerate|i:1670459523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8bb61463e529fb5683f36dd63feced8a127f09', '31.222.203.2', 1670459523, '__ci_last_regenerate|i:1670459523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c33e8db7caf8f781231e028277819cd47011c48', '31.222.203.2', 1670459523, '__ci_last_regenerate|i:1670459523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d932af6cb354a6bc53327bd2fb3b9396fdc2628d', '31.222.203.2', 1670461319, '__ci_last_regenerate|i:1670461319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dd55a682ef66fba6c17b89afe04891aee0cb3f', '31.222.203.2', 1670461319, '__ci_last_regenerate|i:1670461319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917c10ab00a0015ed051bb1deea23c504147c434', '31.222.203.2', 1670461319, '__ci_last_regenerate|i:1670461319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531c9ff7c35b30a79e98da500e1205d0ecef5b46', '31.222.203.2', 1670461322, '__ci_last_regenerate|i:1670461322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46d1bbc238663c06f6d82f3baa8b5ab96d16ec71', '31.222.203.2', 1670461322, '__ci_last_regenerate|i:1670461322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfa69236301d53b5c62ac8c93be8f7f0aae7b5c', '31.222.203.2', 1670461322, '__ci_last_regenerate|i:1670461322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c95825e693d7e2d4966a0491d0d80c527685a1', '172.105.247.100', 1670461933, '__ci_last_regenerate|i:1670461933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3383b7d6e2378f639a5854359b52617ca4a5da04', '172.105.247.100', 1670461933, '__ci_last_regenerate|i:1670461933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47b10f91d33cd1af0c44404fe9bc8b306fe6635', '172.105.247.100', 1670461934, '__ci_last_regenerate|i:1670461934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6bbd185fa1ed03dbb011621bf2c4d3dcd05b09', '172.105.247.100', 1670461934, '__ci_last_regenerate|i:1670461934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1b5df4648b04344e645b31888340084d6ef4a1', '172.105.247.100', 1670461934, '__ci_last_regenerate|i:1670461934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5c7a30185a68b5ca5efa1c5c3ba8e273da01f9', '172.105.247.100', 1670461934, '__ci_last_regenerate|i:1670461934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9096c4f9c5a179f2f6ca2f8c18d2e5cbb2c9495', '172.105.247.100', 1670461934, '__ci_last_regenerate|i:1670461934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f234d5e1554b54227ce9dbc91a976da205d47dd7', '172.105.247.100', 1670461934, '__ci_last_regenerate|i:1670461934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9c037a2a3862827725ae7fbcf4cffa5051e696', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36075a0bd2a993236ec7555e37124fc41a03238', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8925a62e8e146de5778373e235d7f18021ac6cfd', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f1d789c208d5ed4731fb0f64a59530525b5cb0', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cc93c7972f52ccf60cb928f79cdae9de21d067', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b331c9d6d7d4823261b1f128d28cc3cf6cd2397', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d32a0ccb1d447f4ebd225f96ce90526290abcf7b', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da5d78fb902a0db6daed40e93c51c8e0c13f0ce', '172.105.247.100', 1670461935, '__ci_last_regenerate|i:1670461935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdbd3d3f5a805ad393059a9569ed495137620802', '172.105.247.100', 1670461936, '__ci_last_regenerate|i:1670461936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1a74b44d56a0c9864ad55683a4c7921179d693', '172.105.247.100', 1670461936, '__ci_last_regenerate|i:1670461936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('137bdd9dd2b0b05cd22b20302fe108674e7528d5', '172.105.247.100', 1670461936, '__ci_last_regenerate|i:1670461936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b809b9974495931d5f03502605de45a04bf35bc0', '172.105.247.100', 1670461936, '__ci_last_regenerate|i:1670461936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('464fbb065953f91262a8ec3f103bfa5cc547551e', '172.105.247.100', 1670461936, '__ci_last_regenerate|i:1670461936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a32a64306bf5c44d1a1cff9ee608f6d0697d4d41', '172.105.247.100', 1670461936, '__ci_last_regenerate|i:1670461936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1810b56e25bfde03a2c92735e3c966a074298971', '172.105.247.100', 1670461937, '__ci_last_regenerate|i:1670461936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd4ba4c8df47871ca62f1dd9c47a4b16beb9c75', '172.105.247.100', 1670461937, '__ci_last_regenerate|i:1670461936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e4184f52f2606125346969a377f30b3c867fef', '31.222.203.2', 1670463119, '__ci_last_regenerate|i:1670463119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4787258e2f13471a3feaeb167918537b087f19', '31.222.203.2', 1670463119, '__ci_last_regenerate|i:1670463119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05600af5786685e47d81e8fea742e4a95d1e232', '31.222.203.2', 1670463119, '__ci_last_regenerate|i:1670463119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18bbb02f771d1edc22e873c46e411e13179952d', '31.222.203.2', 1670463119, '__ci_last_regenerate|i:1670463119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f81b8197e3d820c37f38d42e8d42b1e01e4086', '31.222.203.2', 1670463119, '__ci_last_regenerate|i:1670463119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1adf0d0979263e0f933fdd7377e6298e1271fdbf', '31.222.203.2', 1670463119, '__ci_last_regenerate|i:1670463119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9479b3870c2e02ced9ef7d959448de3ff85e6381', '31.222.203.2', 1670464924, '__ci_last_regenerate|i:1670464924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a3935e3cbf91c60543452785535086383645fc', '31.222.203.2', 1670464924, '__ci_last_regenerate|i:1670464924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a551b4190d333fdc4c5b206328a5cf514a0acd', '31.222.203.2', 1670464924, '__ci_last_regenerate|i:1670464924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54448c0b86e644190df375dd5c2a126ff31504f2', '31.222.203.2', 1670464924, '__ci_last_regenerate|i:1670464924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67bf134d0fcb0972d5751521cfb810a0a58b2e17', '31.222.203.2', 1670464924, '__ci_last_regenerate|i:1670464924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65eb7d6ed2174c065630ac402def6a3cff9de5a1', '31.222.203.2', 1670464924, '__ci_last_regenerate|i:1670464924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c7f1f9f012a80893809d2a4eb3234237d586de3', '31.222.203.2', 1670466721, '__ci_last_regenerate|i:1670466721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7dc722b9d496951d2af20b4c0305fda4022a343', '31.222.203.2', 1670466721, '__ci_last_regenerate|i:1670466721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe60ffa67967a23a20f1beaf955f1e858074a6b2', '31.222.203.2', 1670466721, '__ci_last_regenerate|i:1670466721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1f0e4c3f1ec32a6857550ef1ab72984a644b93', '31.222.203.2', 1670466722, '__ci_last_regenerate|i:1670466722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42404afb07b6b5f8bf231775007e7b685a7371a2', '31.222.203.2', 1670466722, '__ci_last_regenerate|i:1670466722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c40a70628608859f247067e400ed5e7a16c00d', '31.222.203.2', 1670466722, '__ci_last_regenerate|i:1670466722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0611cefa4fa24c704f6fd549572b4330f889542d', '172.105.247.100', 1670467313, '__ci_last_regenerate|i:1670467313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf762a21497128ff6208f2da6fc9799ab15812fe', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4adaa6a7cf4a6ea0bb84f67fa6db6e8f9480408', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42b9ac36127f056e1593b5f3523710df707a8bf', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f518de332a049c66500f645cb09a45b724553554', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d61eb39dde9c99d7c8d07eb020623c194cb1fa85', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44930576d9ccae90bbbde1bb05fd8e573d6599fd', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc74bd833fdc63cf6328d01c0d059d24763a8d3c', '172.105.247.100', 1670467314, '__ci_last_regenerate|i:1670467314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f157812ecf14b49d3f7d8e50139559af3ffe184f', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c057ded1b99ee948d64749b50f6809e6c77719', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01cea1f16cb765cd015aa5915e1cecbf8bda8014', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3500215a295ed158e5331cc9f73665704ef30e1', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd5b5a7da2da0f545c463071425e5d132bac4c9', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d34fd11e9e8bd5d12f044154372653abdf79ec8', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba18b57b2f17f32d01c14113a19829b7a3ca4271', '172.105.247.100', 1670467315, '__ci_last_regenerate|i:1670467315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08f9336eeb3184b3a03b563557337353504f342', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f86e4463bf10fa445b2699066c4e5c01c2c3ad', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0c8b357f2d4700ee1e27cf9b375fe3d4a1d467', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b6529198aa418cb3d451278da27771053d1764', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012ce6a48219f2d9f373ed9ef27d5a175cb0538c', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998bb076f6cc2fb9d1b391a1da81847fc2867280', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46da6cee089a7fa39a2c7f8e09b92a22ecf6e115', '172.105.247.100', 1670467316, '__ci_last_regenerate|i:1670467316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e60bd8f2263c165bad5f55b43aa8a6b4c7ca6c', '172.105.247.100', 1670467317, '__ci_last_regenerate|i:1670467316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600da85f9f5c759d69228b1827cab0a5ca9de98d', '172.105.247.100', 1670467317, '__ci_last_regenerate|i:1670467317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a7e62d15bc211cf6d8fed6ca3dc3e3513a0397', '31.222.203.2', 1670468520, '__ci_last_regenerate|i:1670468520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13280298b46c1fd60530c4ae66b5751556756476', '31.222.203.2', 1670468520, '__ci_last_regenerate|i:1670468520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7aada05044bc911ad500553e1643b3a19f654a', '31.222.203.2', 1670468520, '__ci_last_regenerate|i:1670468520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6e43befa7f3e93976309d771ac88e89d61fbc15', '31.222.203.2', 1670468521, '__ci_last_regenerate|i:1670468521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42a914aa61098387fe5520e89be38b6c239a984', '31.222.203.2', 1670468521, '__ci_last_regenerate|i:1670468521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e987a5b9ea00a61fbcf5a427234e354876a08dc', '31.222.203.2', 1670468521, '__ci_last_regenerate|i:1670468521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e44dd3b6d8cc26688e41e47528ed4e728df8cd', '31.222.203.2', 1670470318, '__ci_last_regenerate|i:1670470318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dbfdd2c92936262bdcdfdbba62f244228aa2652', '31.222.203.2', 1670470320, '__ci_last_regenerate|i:1670470320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72bf18b83d5a8efe9819c8428230d418422caa0', '31.222.203.2', 1670470320, '__ci_last_regenerate|i:1670470320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e00903dfc89c8775ee6233b42091ff9e362c5f', '31.222.203.2', 1670470320, '__ci_last_regenerate|i:1670470320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957a3d3b42005066bfb0f2d37ec714d6be5c7b21', '31.222.203.2', 1670470320, '__ci_last_regenerate|i:1670470320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b544a8de545dd8e15bbbda4297f01a5911a0c5e4', '31.222.203.2', 1670470320, '__ci_last_regenerate|i:1670470320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07407a5c9e4552d09dee799e6f8b6c9b24606e82', '87.236.176.19', 1670471715, '__ci_last_regenerate|i:1670471715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8a693c3775b47fe802c50d733a7e05b0a6afa1', '87.236.176.19', 1670471715, '__ci_last_regenerate|i:1670471715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ce17c5f3bab6a2f9feaaedb5c9b5c123ca35af', '31.222.203.2', 1670472131, '__ci_last_regenerate|i:1670472131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce53af9270abed08dd5b5bdbd3dfeb2095f0b6e', '31.222.203.2', 1670472133, '__ci_last_regenerate|i:1670472133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd59c07f0e72641cc74f704bc2ab37edd669b26f', '31.222.203.2', 1670472133, '__ci_last_regenerate|i:1670472133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61dad592535ee302b156ca1b0b86d1c3e98048f6', '31.222.203.2', 1670472133, '__ci_last_regenerate|i:1670472133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe0735af70ad4e39e86fbfd876d7db10102e2b7', '31.222.203.2', 1670472133, '__ci_last_regenerate|i:1670472133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad15a2d193c2c3124931cb884e0c2df2c8ade93', '31.222.203.2', 1670472133, '__ci_last_regenerate|i:1670472133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad94c1a8ace55b82636d69e8afedbe079d46ec5d', '172.105.247.100', 1670472722, '__ci_last_regenerate|i:1670472722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2024c3b9ff2fd77004d10cc463315ec4823f1b', '172.105.247.100', 1670472723, '__ci_last_regenerate|i:1670472723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbf070ab7dbb48bd0cfbfcb309e298805136b32a', '172.105.247.100', 1670472723, '__ci_last_regenerate|i:1670472723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a0e851fd6314050dc469737f940d872e09de85f', '172.105.247.100', 1670472723, '__ci_last_regenerate|i:1670472723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9400c0670a89dce9b2592eb98bd58eae059fbe03', '172.105.247.100', 1670472723, '__ci_last_regenerate|i:1670472723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1e77c636ec5189059fab0c43427e780638bf31', '172.105.247.100', 1670472724, '__ci_last_regenerate|i:1670472724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41e902e5de36b9af5c0cb7d8723d73c6f453beb', '172.105.247.100', 1670472724, '__ci_last_regenerate|i:1670472724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc8ac97c8f54ac241f1e4bb72d012241591e3303', '172.105.247.100', 1670472724, '__ci_last_regenerate|i:1670472724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2600bcacded5c0cda7ff9b1e3e93857e6a523783', '172.105.247.100', 1670472725, '__ci_last_regenerate|i:1670472724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f08f6c3fa15b13d1293ace4b9259850cd7632d4', '172.105.247.100', 1670472725, '__ci_last_regenerate|i:1670472725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d1148923eb3d8bc2b964303ea8b622d48b7fed', '172.105.247.100', 1670472725, '__ci_last_regenerate|i:1670472725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046f85969341e654f27bb0fc6559de6cb370d128', '172.105.247.100', 1670472725, '__ci_last_regenerate|i:1670472725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6323f1037acbb05dfc942e9aca9577c80c0a97a1', '172.105.247.100', 1670472725, '__ci_last_regenerate|i:1670472725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2946499d9d1132b764ab55b2129cd5edcc2fe8', '172.105.247.100', 1670472725, '__ci_last_regenerate|i:1670472725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd108644913033e97d9ba45d72fe71a124dc51a7', '172.105.247.100', 1670472726, '__ci_last_regenerate|i:1670472725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74bb55b346e1090088ea1f0f205386741a0e68c', '172.105.247.100', 1670472726, '__ci_last_regenerate|i:1670472726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc3b14e2b46227b8e2dbe08ec58af3fda19a839', '172.105.247.100', 1670472726, '__ci_last_regenerate|i:1670472726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f8235d863dce1d4a1e137345c8309f07f89cf9', '172.105.247.100', 1670472726, '__ci_last_regenerate|i:1670472726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a138d3f8413964d1013f704471ea37efc8f1359', '172.105.247.100', 1670472726, '__ci_last_regenerate|i:1670472726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34568efe175288510b17837a5e14c9429edb09b8', '172.105.247.100', 1670472727, '__ci_last_regenerate|i:1670472726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac23d3eed941209ebc1483eee9d01cfd08c5ca4', '172.105.247.100', 1670472727, '__ci_last_regenerate|i:1670472727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('960c0e83d938db9f0c82aee472d36487ab15b07c', '172.105.247.100', 1670472727, '__ci_last_regenerate|i:1670472727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9849bf688c6e63bee3c6c257fc690ad44578e59c', '172.105.247.100', 1670472727, '__ci_last_regenerate|i:1670472727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276a8327456a15d3e04edadf984d92b6c0c963ea', '172.105.247.100', 1670472728, '__ci_last_regenerate|i:1670472728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19522fcc18bc14a7c96c5a8163c44dfeb60653d', '45.120.39.90', 1670474035, '__ci_last_regenerate|i:1670474035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b019d5e59664aa3f3a189da5721b1467b59e6f0', '31.222.203.2', 1670473929, '__ci_last_regenerate|i:1670473929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba39532efb6d25823e127791f7278ac64df0c48', '31.222.203.2', 1670473929, '__ci_last_regenerate|i:1670473929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1841cd93dfc21238b7eabf7496d2ec5a8841e8', '31.222.203.2', 1670473929, '__ci_last_regenerate|i:1670473929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1de6297d1d888843a18c313e6c8e39cffb06391', '31.222.203.2', 1670473929, '__ci_last_regenerate|i:1670473929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d666e7becce5c0bf5a8388cf780f8663bce503', '31.222.203.2', 1670473929, '__ci_last_regenerate|i:1670473929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8e13a81a2d98c58635059e4947631dfcc4cd0c', '31.222.203.2', 1670473929, '__ci_last_regenerate|i:1670473929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9291e34199e26e762de048b3837bf0c7180b707e', '45.120.39.90', 1670474477, '__ci_last_regenerate|i:1670474477;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670474040;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c36d397dc1c67638f7f1643f1400e9b18dea33', '13.42.101.126', 1670474116, '__ci_last_regenerate|i:1670474116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84df0e6146c5186bbf4eb6610537d5a4deb09b8', '13.42.101.126', 1670474152, '__ci_last_regenerate|i:1670474152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2473fa9f34aadb7ca4b84725694461c8d7eae1', '13.42.101.126', 1670474265, '__ci_last_regenerate|i:1670474265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a57e41ccee82cbde4ea7c220373e01630c8ba8', '13.42.101.126', 1670474280, '__ci_last_regenerate|i:1670474280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7195b405221c896e8cb0afa06686c6fcaf6410', '13.42.101.126', 1670474284, '__ci_last_regenerate|i:1670474284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a6e578868ab91c7ae7f8650ad79ceec8c662ed', '13.42.101.126', 1670474287, '__ci_last_regenerate|i:1670474287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1881249ca6c4fc4d6432fcb42093f9f866ed8aa', '13.42.101.126', 1670474291, '__ci_last_regenerate|i:1670474291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b3677b23551f21d8615299806286d45a8ddf90', '13.42.101.126', 1670474295, '__ci_last_regenerate|i:1670474295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d4a4d5fc115127f6f9f4e8fd1d6d65ba2957732', '13.42.101.126', 1670474298, '__ci_last_regenerate|i:1670474298;error|s:115:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>http://pos.recallgreen.com.ibilling.xyz\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39de2c604a403260165b2decb7d2eccf4c1a5dc0', '45.120.39.90', 1670475868, '__ci_last_regenerate|i:1670475868;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670475859;register_id|s:3:\"272\";cash_in_hand|s:9:\"4040.0000\";register_open_time|s:19:\"2022-12-06 20:13:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb90e47b01eac9f73ce1b564e47cf00e20bbff03', '31.222.203.2', 1670475723, '__ci_last_regenerate|i:1670475723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714dd310e21b6b07cf9b3bae8b271f5c26182910', '31.222.203.2', 1670475724, '__ci_last_regenerate|i:1670475724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4fecd818743a617cf05d02197901792b11d8624', '31.222.203.2', 1670475724, '__ci_last_regenerate|i:1670475724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b287406f61d9721f2b49f9e056e806d33ad719', '31.222.203.2', 1670475724, '__ci_last_regenerate|i:1670475724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cba56317d83f07b8d212125c245e25d07962027', '31.222.203.2', 1670475724, '__ci_last_regenerate|i:1670475724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8cab75feadf7a121dca7b0f0756417fda30e2d', '31.222.203.2', 1670475724, '__ci_last_regenerate|i:1670475724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9f9f53b35aff8e09b4e308419e23cc4babb73e', '45.120.39.90', 1670480289, '__ci_last_regenerate|i:1670480289;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670475934;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe2f784abba4f9378a1df6561de9f773e396dadd', '172.105.247.100', 1670477516, '__ci_last_regenerate|i:1670477516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f20f09f99fa3bc2aa99a83afc96e9ae1d23979e', '172.105.247.100', 1670477516, '__ci_last_regenerate|i:1670477516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a093cda2310a5206bba4bd01b91c00cabf6f18f6', '172.105.247.100', 1670477516, '__ci_last_regenerate|i:1670477516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54eec1a0d3da41401ef589d6c7de3c11734f202a', '172.105.247.100', 1670477516, '__ci_last_regenerate|i:1670477516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877992f651eab30010fa07ff3441c59d761bc17e', '172.105.247.100', 1670477517, '__ci_last_regenerate|i:1670477517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03bf52216db994c0b494126ec36b87ad372efb6d', '172.105.247.100', 1670477517, '__ci_last_regenerate|i:1670477517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a682dfd0b6c773d31f54535b2e000cfe24ca983', '172.105.247.100', 1670477517, '__ci_last_regenerate|i:1670477517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13cf4b558fc51e3726fa996353164b3532acfc9d', '172.105.247.100', 1670477517, '__ci_last_regenerate|i:1670477517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc7c1edbffa93ef7544a849de430eb61755a19e', '172.105.247.100', 1670477518, '__ci_last_regenerate|i:1670477518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2fe882b51be93b74e2bb02e03c3d833e4c2007e', '172.105.247.100', 1670477518, '__ci_last_regenerate|i:1670477518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4b0479bfab9303fa1227575a5414d80367c2e0', '172.105.247.100', 1670477518, '__ci_last_regenerate|i:1670477518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3659664d0b00893f1e1c02a315b33c1f70f6b63', '172.105.247.100', 1670477518, '__ci_last_regenerate|i:1670477518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517e8f62e3dc5ce8059c92643a5b50de816be03a', '172.105.247.100', 1670477519, '__ci_last_regenerate|i:1670477519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e73ca9617c4de75c5dfece97518051d467181a', '172.105.247.100', 1670477519, '__ci_last_regenerate|i:1670477519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b233ec05ddbdd21e437de129bbd4d497469f79', '172.105.247.100', 1670477519, '__ci_last_regenerate|i:1670477519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e7c0418d93ad34f5c77b719bb4539c3fa06ea9', '172.105.247.100', 1670477519, '__ci_last_regenerate|i:1670477519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7781daa7831c8561507d86af7e26b9b52d4688', '172.105.247.100', 1670477519, '__ci_last_regenerate|i:1670477519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05307b5a795578a046ce6df0d264aaa9569b1f2b', '172.105.247.100', 1670477519, '__ci_last_regenerate|i:1670477519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1838f1ac4ae1111213c1963190c4d4626e7c08', '172.105.247.100', 1670477520, '__ci_last_regenerate|i:1670477520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5f8bc6080113d69e00482bab286ee126ea61b7', '172.105.247.100', 1670477520, '__ci_last_regenerate|i:1670477520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79190b8c3d9d103f1f24909bc0f7e9ff90d6499a', '172.105.247.100', 1670477520, '__ci_last_regenerate|i:1670477520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42dd5a2b1c69f9cf2b158d89ed5df1a6f33a2956', '172.105.247.100', 1670477521, '__ci_last_regenerate|i:1670477520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1020b7935155d6ec4494622ee3ee59f8b64d47', '172.105.247.100', 1670477521, '__ci_last_regenerate|i:1670477521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e78ed14b1bce50a0e6c8253d937ea9dbef1dbc0', '172.105.247.100', 1670477521, '__ci_last_regenerate|i:1670477521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f4dfd7c4ffde8c77c1c27414b74d362c28b7a6', '31.222.203.2', 1670477531, '__ci_last_regenerate|i:1670477531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f6958c6639192c6282876a699075153945782c', '31.222.203.2', 1670477533, '__ci_last_regenerate|i:1670477533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb7698b72e539a5c53844377ce2be3dc7070350', '31.222.203.2', 1670477533, '__ci_last_regenerate|i:1670477533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dd4895ff7ad64ec8717da4d6f445c8dddf3eef6', '31.222.203.2', 1670477533, '__ci_last_regenerate|i:1670477533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b6e6071e9b3c8540e9dacacbce2ce77bd1871a', '31.222.203.2', 1670477533, '__ci_last_regenerate|i:1670477533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23606f16461f20383a5f3bd01ce77a1523d94f8f', '31.222.203.2', 1670477533, '__ci_last_regenerate|i:1670477533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df9e8c55101b696563ec1dbbb5fed0d25ffa9ee', '31.222.203.2', 1670479329, '__ci_last_regenerate|i:1670479329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2bac5a1e22418aaf91cff308718825aa17308e2', '31.222.203.2', 1670479331, '__ci_last_regenerate|i:1670479331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249506c8917395f9f7f1e05ac1c7c65302e3bb47', '31.222.203.2', 1670479331, '__ci_last_regenerate|i:1670479331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7070db78af7c01549d9e02a4fc240122c222d09', '31.222.203.2', 1670479331, '__ci_last_regenerate|i:1670479331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a555b5a4d3daae550b6aa108cd93eb30391c6442', '31.222.203.2', 1670479331, '__ci_last_regenerate|i:1670479331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9001bb752cda0586af657a81c14f056947af5e3f', '31.222.203.2', 1670479331, '__ci_last_regenerate|i:1670479331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785ad9c20ee5a7c490593dc53a0816bd01ce42ec', '45.120.39.90', 1670482053, '__ci_last_regenerate|i:1670482053;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670480375;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1e5af5a200df1d2e0019f16f30c439be9c4843', '31.222.203.2', 1670481126, '__ci_last_regenerate|i:1670481126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf55d2d5aae55cc33ff7130a0153bc6fd489b65', '31.222.203.2', 1670481127, '__ci_last_regenerate|i:1670481127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd114df2c364deba038b8c08746c7d65e6383357', '31.222.203.2', 1670481127, '__ci_last_regenerate|i:1670481127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a916cf89e076af03e26a215dbb35174e8b35104', '31.222.203.2', 1670481127, '__ci_last_regenerate|i:1670481127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7764e37a5bccc540274383c12f65de8d0a51e43', '31.222.203.2', 1670481127, '__ci_last_regenerate|i:1670481127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e0bf552946ec2b1142adc3fdc6be06c560da06', '31.222.203.2', 1670481127, '__ci_last_regenerate|i:1670481127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd818d5b8383bd9218ad8d1e18d96910755ad47', '172.105.247.100', 1670481700, '__ci_last_regenerate|i:1670481700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9c2cfc6ed7cace1a06e4d651c21d8385c88783', '172.105.247.100', 1670481701, '__ci_last_regenerate|i:1670481701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e40aec6d2d93175c926681c247562ea3a4b75ae', '172.105.247.100', 1670481701, '__ci_last_regenerate|i:1670481701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ad468fc1d0644637c0a957e02eac4d11c3e6848', '172.105.247.100', 1670481701, '__ci_last_regenerate|i:1670481701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a61f5e2333358067128a5a054cf1c2dcfc20a6', '172.105.247.100', 1670481701, '__ci_last_regenerate|i:1670481701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea86cfabf3a9538e4d6495a4af000f36cc60795', '172.105.247.100', 1670481702, '__ci_last_regenerate|i:1670481702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f75da6ea49859c85a5c6fe865d5a34a69fbf6d', '172.105.247.100', 1670481702, '__ci_last_regenerate|i:1670481702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ff275f75fc4aaae9e1656f63637e38955d9490', '172.105.247.100', 1670481702, '__ci_last_regenerate|i:1670481702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9160930789ae3296cb6d9440caba5fee569eb654', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108b12c894c59b736d4793a10a4600ef2d96e448', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd0c207da986d1f5f0af61d0704c44a2d927804d', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70464f06204abd9ef3e53682b1b78118979789e0', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fcc3a10dd1990f11aa1304c951e6b5f0ee4aa29', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0db82bfdba4909a48a5d0919e776bd5f87ef5ad', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9872dfce518ab1833bbeead2fe20595ae071fba8', '172.105.247.100', 1670481703, '__ci_last_regenerate|i:1670481703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c984b83f3ae80a3f5dd7bfa2843b2b8c068360', '172.105.247.100', 1670481704, '__ci_last_regenerate|i:1670481703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52da18b301072e769cfaa71eb088b99e12431e29', '172.105.247.100', 1670481704, '__ci_last_regenerate|i:1670481704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1290d36ded874e73ce0e089e621d1bf4d6fdca4', '172.105.247.100', 1670481704, '__ci_last_regenerate|i:1670481704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5067e7bdb459fdcf8777543c04acd7f254e559c1', '172.105.247.100', 1670481704, '__ci_last_regenerate|i:1670481704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0a1a5923c67039d938dffc9fc193cb3daedbd7', '172.105.247.100', 1670481705, '__ci_last_regenerate|i:1670481704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d647cdee31caca1287583432f28bd74107df32d', '172.105.247.100', 1670481705, '__ci_last_regenerate|i:1670481705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9fa46e7197eb03a3a0f1a94c4b05553b4528e3', '172.105.247.100', 1670481705, '__ci_last_regenerate|i:1670481705;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b4becfecbd9be2f6855ebf822887cdf7ada856', '172.105.247.100', 1670481705, '__ci_last_regenerate|i:1670481705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d438a7ae788366bc8c05847e9637b5a416a07e87', '172.105.247.100', 1670481706, '__ci_last_regenerate|i:1670481706;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5768523433305f140083ea8f4dcff39bd7c80de4', '45.120.39.90', 1670486963, '__ci_last_regenerate|i:1670486963;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670482186;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18d1af9c8d3c5b5fbb05238efdbd79edaa05f1a', '31.222.203.2', 1670482931, '__ci_last_regenerate|i:1670482931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d516668c14ddf87e6d30cd6a5b54c339f09fbb2d', '31.222.203.2', 1670482931, '__ci_last_regenerate|i:1670482931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73566dc0f032fe89f4307aedd4d7a04aab4627eb', '31.222.203.2', 1670482931, '__ci_last_regenerate|i:1670482931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db918eafcba23cf01d7c9d675247dbfd2e6455e', '31.222.203.2', 1670482931, '__ci_last_regenerate|i:1670482931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a0b574996f61339dcddb315829cc9f52c718db', '31.222.203.2', 1670482931, '__ci_last_regenerate|i:1670482931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a2babbbd01935464cf92293ff57649007862ec', '31.222.203.2', 1670482931, '__ci_last_regenerate|i:1670482931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8259e47afb65b1b3c5f3d8e669a7e599a774887', '31.222.203.2', 1670484730, '__ci_last_regenerate|i:1670484730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce85c9ef2d37da1f965214c5f87dfc287551227e', '31.222.203.2', 1670484731, '__ci_last_regenerate|i:1670484731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b50f6d1fa62d05827ffb6d4bd8e9043a1be042', '31.222.203.2', 1670484731, '__ci_last_regenerate|i:1670484731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d866768916fe591e055eb43ebcefffeee0ebbdd', '31.222.203.2', 1670484731, '__ci_last_regenerate|i:1670484731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522b7466fc2269fbb6b6f27991a165e6502745d1', '31.222.203.2', 1670484731, '__ci_last_regenerate|i:1670484731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ec90c5b1fe5c5db71adac0019be345dd3e07c5', '31.222.203.2', 1670484731, '__ci_last_regenerate|i:1670484731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819fc3c6bcf0a482a1d20e86d09cdfded1f96e8b', '31.222.203.2', 1670486531, '__ci_last_regenerate|i:1670486531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f966d1c365e2f3796a6c6db2b69e557676dbc5ab', '31.222.203.2', 1670486532, '__ci_last_regenerate|i:1670486532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff85862b3baf930a758555aeea90e214461419e', '31.222.203.2', 1670486532, '__ci_last_regenerate|i:1670486532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390210ce53dda97f034028a9b39d57e5ab960384', '31.222.203.2', 1670486532, '__ci_last_regenerate|i:1670486532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fa4e335475f69489a9ca684b3a159c5f12b76c', '31.222.203.2', 1670486532, '__ci_last_regenerate|i:1670486532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980d78d4362a0c4c4997353042916a78b9242d7c', '31.222.203.2', 1670486532, '__ci_last_regenerate|i:1670486532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2abdad45b12d51ff39a4259319e77d66180bc9f', '45.120.39.90', 1670488709, '__ci_last_regenerate|i:1670488709;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670488678;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0fd3e6f958bc3712d2bf2f61b46177e3de1ce25', '172.105.247.100', 1670487106, '__ci_last_regenerate|i:1670487106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916a626e76e750bc36cbe06c999c7d53129caf0d', '172.105.247.100', 1670487106, '__ci_last_regenerate|i:1670487106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1372a18774ceafa5e3fe8a0ec06518d3677fec82', '172.105.247.100', 1670487106, '__ci_last_regenerate|i:1670487106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcb8820e79c27b5f3d67a83d6893b0375a9ca33', '172.105.247.100', 1670487107, '__ci_last_regenerate|i:1670487106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd2f7eb291c5a63385c22d2fa4e1fad1ccc6c3d7', '172.105.247.100', 1670487107, '__ci_last_regenerate|i:1670487107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a46192c540f3774032666620ea0b8fdb26661c', '172.105.247.100', 1670487107, '__ci_last_regenerate|i:1670487107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3768952941dded1b637fd0492f4fb6c6f2fab9', '172.105.247.100', 1670487107, '__ci_last_regenerate|i:1670487107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04046ca8655b8b9e400e312f7a42b8905804a3d2', '172.105.247.100', 1670487108, '__ci_last_regenerate|i:1670487107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf67650e106da38f4bc79160d7e9d65c187b7a07', '172.105.247.100', 1670487108, '__ci_last_regenerate|i:1670487108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf3342bd9206d3b23234b10084ff2cf0e342fa4', '172.105.247.100', 1670487108, '__ci_last_regenerate|i:1670487108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bce8d005b85c7b17855de62cf806e8f79623f22', '172.105.247.100', 1670487108, '__ci_last_regenerate|i:1670487108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5862b5bd167c12c074a91af362a1eb07de0030d6', '172.105.247.100', 1670487108, '__ci_last_regenerate|i:1670487108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3f94a02c556a19b615e247dbc83a6adc8596b0', '172.105.247.100', 1670487109, '__ci_last_regenerate|i:1670487109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf8c2d15c6280d830e9131f414b9d3082f40c475', '172.105.247.100', 1670487109, '__ci_last_regenerate|i:1670487109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ecd728ac6dd01033c59ee1633e061b513996ce7', '172.105.247.100', 1670487109, '__ci_last_regenerate|i:1670487109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cf1c2cc9247330c9702d25faf378e6e2def9f3', '172.105.247.100', 1670487109, '__ci_last_regenerate|i:1670487109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d6af4622f4c65243cf64deaa87c235b9224e97', '172.105.247.100', 1670487109, '__ci_last_regenerate|i:1670487109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f233de749dc3f85b28501e602d05cda37a0240d', '172.105.247.100', 1670487110, '__ci_last_regenerate|i:1670487109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a5223a8fd55c035062dae792c43b8aebe8e6ad', '172.105.247.100', 1670487110, '__ci_last_regenerate|i:1670487110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a4db1d4c653128d930d7e69cbea00ea2ed59fe', '172.105.247.100', 1670487110, '__ci_last_regenerate|i:1670487110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3073e7dc3dab58e1010abf12dcebf6db12d14f75', '172.105.247.100', 1670487110, '__ci_last_regenerate|i:1670487110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06271115c8efa380bfa086e3ffe50b295def4a91', '172.105.247.100', 1670487111, '__ci_last_regenerate|i:1670487111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532ef75a839761e773f397923602b3e310c3d343', '172.105.247.100', 1670487111, '__ci_last_regenerate|i:1670487111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29d18685b97f1e5cf513a5226be3a4a585f8fc1', '172.105.247.100', 1670487111, '__ci_last_regenerate|i:1670487111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c380077140a69c4c4343e6db737d213bb7d726', '31.222.203.2', 1670488328, '__ci_last_regenerate|i:1670488328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507126892aa951442fc9290645e0f68ab0a563d8', '31.222.203.2', 1670488328, '__ci_last_regenerate|i:1670488328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff67cde111d529288b50c3f3367bf8d5daffe48', '31.222.203.2', 1670488328, '__ci_last_regenerate|i:1670488328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc7fa37f3b41fa91d460e0410baa2fdea19496a0', '31.222.203.2', 1670488330, '__ci_last_regenerate|i:1670488330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c593e33d80735742d00208f0a37a5874397b5cde', '31.222.203.2', 1670488330, '__ci_last_regenerate|i:1670488330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e3108c52343be8b78b660df85d99eb0a806aa64', '31.222.203.2', 1670488330, '__ci_last_regenerate|i:1670488330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557aa2507f95efe348e259f8247bc25597d3684a', '37.111.219.53', 1670491708, '__ci_last_regenerate|i:1670491708;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670488709;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf86035e2144de5eeb5a0b52f769a078c90b268', '31.222.203.2', 1670490132, '__ci_last_regenerate|i:1670490132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2de1f22974abf89d3fc9585dad960ca677acd6', '31.222.203.2', 1670490133, '__ci_last_regenerate|i:1670490133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8042bdcd44e9aac8feda2b199b46498a0de2bb51', '31.222.203.2', 1670490133, '__ci_last_regenerate|i:1670490133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f627a421e07d78153ccfbf17ccfa44eed50fb054', '31.222.203.2', 1670490133, '__ci_last_regenerate|i:1670490133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41047de6d4ffc27a0686c3648710d26b9497de1', '31.222.203.2', 1670490133, '__ci_last_regenerate|i:1670490133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfddf319955e8dd738b693befd10c59d122647b9', '31.222.203.2', 1670490133, '__ci_last_regenerate|i:1670490133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c2a83143e2ef142fdbf917a8b6004a31c6fbebf', '45.120.39.90', 1670493699, '__ci_last_regenerate|i:1670493699;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670491734;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9373075490bfc40ce8ce81a1c50fe44dd5fc26f', '31.222.203.2', 1670491935, '__ci_last_regenerate|i:1670491935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adf7073c9fd03040201df6939fb5f389691163b', '31.222.203.2', 1670491937, '__ci_last_regenerate|i:1670491937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1cc38962c10e477550497886e5214c37b19546', '31.222.203.2', 1670491937, '__ci_last_regenerate|i:1670491937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaec6bb15e1dfd53b199a54dc0a5b22330f9e098', '31.222.203.2', 1670491937, '__ci_last_regenerate|i:1670491937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663cf67a7a72364a029e5c7a8035f38f2ef85363', '31.222.203.2', 1670491937, '__ci_last_regenerate|i:1670491937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4caa06fba4e21a783f476db68b93f56c1300429', '31.222.203.2', 1670491937, '__ci_last_regenerate|i:1670491937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e61c81e7fd5590babd66085ce2d4ece6108a5ba', '172.105.247.100', 1670492504, '__ci_last_regenerate|i:1670492504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6770e0194ed2085125d1ff38b6f621638e15b75a', '172.105.247.100', 1670492504, '__ci_last_regenerate|i:1670492504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09eae1e0197c05b77d3ead9e9c8f2cd15c4a8eb', '172.105.247.100', 1670492504, '__ci_last_regenerate|i:1670492504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79bf74b7a0aa891c7d51c14a91f55af7af6cbabe', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f232f59402e01cf8a14945bf8b90b69a6a3c065e', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ade011aeecec5b5c119052e8ce95071ed78a15', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81448ed309c60a9703882c6fcaafe5fef4e10aff', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3e4a1ef4529c3dc85ce7b1f1c7f88554bd7ae9', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf4a81407825ce62247bcfd20c1e1722591ee30', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373f26ea4ffecfdea7caeabebc2a31e65367b292', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3e2dc0ba2a88a9836e1f467efa09b1e1de652d', '172.105.247.100', 1670492505, '__ci_last_regenerate|i:1670492505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f80a6885dc85b03b6deb0bda40f1e62f106b7cb', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6c8bafde0edd072400458a2fbfb76958d6964e', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a298d38a56997d7e65c894e99f505b4be5f2dc', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be791b86ee4c404e05c9165972aa2a22e989e73d', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db39b17a6bdb987c94de33f5cce1d774934c174', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e654951c4b7937185a09dc657622bc2d78d5bc58', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5cf21e7808ac52297963c93159c983bb4a2f4d0', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10981b1f60ae9355ff890667247a77fdacb91d4e', '172.105.247.100', 1670492506, '__ci_last_regenerate|i:1670492506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328b6afdf184737c0473fce69654d64951e3f36f', '172.105.247.100', 1670492507, '__ci_last_regenerate|i:1670492507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d37d1f075ab19a11f8e5bed504114f8fb49946', '172.105.247.100', 1670492507, '__ci_last_regenerate|i:1670492507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a6cae476a9551cdf2265a7133998162f199793', '172.105.247.100', 1670492507, '__ci_last_regenerate|i:1670492507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946d178822331e3b5839e00c680a8632b0f19b03', '172.105.247.100', 1670492507, '__ci_last_regenerate|i:1670492507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38399ea9e589fdff1571e8a3cfc6ed70a986036', '172.105.247.100', 1670492507, '__ci_last_regenerate|i:1670492507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a5f105400d00148ba5da140c69ada6b4de3b5c6', '45.120.39.90', 1670498225, '__ci_last_regenerate|i:1670498225;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670498220;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9dc6556674f75dc8d0c902b7f5fd3138dcebac7', '31.222.203.2', 1670493728, '__ci_last_regenerate|i:1670493728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0694f50322d7cfb0f86198f950f2c3718581ea', '31.222.203.2', 1670493730, '__ci_last_regenerate|i:1670493730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cac67ed07b7c43b402cfd73b91b999798096d5', '31.222.203.2', 1670493730, '__ci_last_regenerate|i:1670493730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d82a7026ab295862895d3a827df40f722627f61', '31.222.203.2', 1670493730, '__ci_last_regenerate|i:1670493730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53663f174201d60b2006090ce0dc607a4ec1af8e', '31.222.203.2', 1670493730, '__ci_last_regenerate|i:1670493730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd841fe05738a79f18eacc79baf8f6a8916b407', '31.222.203.2', 1670493730, '__ci_last_regenerate|i:1670493730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dda62820d17923cdb0ecfa26edf76cf3ec07e90', '31.222.203.2', 1670495529, '__ci_last_regenerate|i:1670495529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de0861440e840cccdcfe79517a9a7b15a2267ed', '31.222.203.2', 1670495530, '__ci_last_regenerate|i:1670495530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6527ed52181b4d0e10d2d300e08c8d08900ddbd9', '31.222.203.2', 1670495530, '__ci_last_regenerate|i:1670495530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564704b9217b38fe16b6eace947b01971c4cc7a8', '31.222.203.2', 1670495530, '__ci_last_regenerate|i:1670495530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feba62086e957f5d0b571bbeec3315a66c03adba', '31.222.203.2', 1670495530, '__ci_last_regenerate|i:1670495530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee88ad8dcedcb283e6a2a9e6499347e6a2122ab', '31.222.203.2', 1670495530, '__ci_last_regenerate|i:1670495530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ae50033758bd690220a9b848aeca668385c225', '31.222.203.2', 1670497333, '__ci_last_regenerate|i:1670497333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6853f04a263d71f82fc453e0dda9061864d6f12b', '31.222.203.2', 1670497335, '__ci_last_regenerate|i:1670497335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f4daa11b18f1d7b1a68c21b77538679852b41a', '31.222.203.2', 1670497335, '__ci_last_regenerate|i:1670497335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e83574e8e9cb5ba3c63eef2bca6fc3aee2cf7ea', '31.222.203.2', 1670497335, '__ci_last_regenerate|i:1670497335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f65769df0e36385a0b8f90e47645bfce7f9f139', '31.222.203.2', 1670497335, '__ci_last_regenerate|i:1670497335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82505ba228b9b9aae948a8918a3a0cf60ad61d7f', '31.222.203.2', 1670497335, '__ci_last_regenerate|i:1670497335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f050812f8b9024756d91e61571f88d57d9e858e', '172.105.247.100', 1670497909, '__ci_last_regenerate|i:1670497909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a892cd84ef9b94b1e0629b0ab7dd639dd7dd03d8', '172.105.247.100', 1670497909, '__ci_last_regenerate|i:1670497909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d712d1b0edae215fbcd1ab53de70a54777ce8546', '172.105.247.100', 1670497910, '__ci_last_regenerate|i:1670497910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20f5c79c9cb4c3edcd6de63fad897302570e90a', '172.105.247.100', 1670497910, '__ci_last_regenerate|i:1670497910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab03513ea3a8ea5e6f54f70a0b6d796bc3c44475', '172.105.247.100', 1670497910, '__ci_last_regenerate|i:1670497910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189f5c8ddeede01bc8c579beeee0e98e5d6af63b', '172.105.247.100', 1670497910, '__ci_last_regenerate|i:1670497910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723e2dc7779c21065867e35b04d8a4dd3516a30e', '172.105.247.100', 1670497911, '__ci_last_regenerate|i:1670497911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ed078087ae4ee8fc9d9b4831b897b37b998aa0', '172.105.247.100', 1670497911, '__ci_last_regenerate|i:1670497911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058190c997d6e9bcea952b15f58570d4f4605fbc', '172.105.247.100', 1670497911, '__ci_last_regenerate|i:1670497911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9acbff9513c307eebdf520f345f71700e47823bf', '172.105.247.100', 1670497911, '__ci_last_regenerate|i:1670497911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a882db958f99a1ca544c1664488fc8c7bd2129f', '172.105.247.100', 1670497911, '__ci_last_regenerate|i:1670497911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d92967d18455282ed29de7c40c7d1edaa4f2e4', '172.105.247.100', 1670497912, '__ci_last_regenerate|i:1670497911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85cedf91128b0f3ca51ebf69b5135b23d5b3c641', '172.105.247.100', 1670497911, '__ci_last_regenerate|i:1670497911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430c5f27426d0f5e30a9929877933bb8612690cd', '172.105.247.100', 1670497912, '__ci_last_regenerate|i:1670497912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('071efc57cffe0c430ca308ae79b3e4a004fd5f58', '172.105.247.100', 1670497912, '__ci_last_regenerate|i:1670497912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff8051adccb660e7511b2210c04e76d05392f4ba', '172.105.247.100', 1670497912, '__ci_last_regenerate|i:1670497912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb5414fd44dd6235a8c2c6a3ee49904c4b219be', '172.105.247.100', 1670497912, '__ci_last_regenerate|i:1670497912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14455563f88c025508a8388d419d96be14f9e4b0', '172.105.247.100', 1670497912, '__ci_last_regenerate|i:1670497912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2765913e5fca51018b773e52ea8ae96d7fd6bc68', '172.105.247.100', 1670497913, '__ci_last_regenerate|i:1670497913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da26fe1bc1c2254aab974c431bc34325f94a31a5', '172.105.247.100', 1670497913, '__ci_last_regenerate|i:1670497913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db9fa183ed88b950f931a9ea800d12c2a3a0709', '172.105.247.100', 1670497913, '__ci_last_regenerate|i:1670497913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e340289678f179266b65619c58f7a7ca972feb', '172.105.247.100', 1670497913, '__ci_last_regenerate|i:1670497913;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa01e69a4a92ef47004db6211ca1a3fe7c8f391', '172.105.247.100', 1670497914, '__ci_last_regenerate|i:1670497914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9819d68f67880de2bed21350bc78b1f16f3cf0f4', '172.105.247.100', 1670497914, '__ci_last_regenerate|i:1670497914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6188d45e3a1b12a53d7e81502424ac4485896603', '37.111.219.53', 1670503695, '__ci_last_regenerate|i:1670503695;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670503691;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b848e330ef4c38562ba50befea84920ac2ff709', '31.222.203.2', 1670499135, '__ci_last_regenerate|i:1670499135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d061a42b5a58647a592285f082e266660bb6d8d', '31.222.203.2', 1670499135, '__ci_last_regenerate|i:1670499135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6e96b91a7828f2d77f05236cb490faf2f7d53b', '31.222.203.2', 1670499135, '__ci_last_regenerate|i:1670499135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4462d69f8313411bfbdea2cd92b21fe2863a679', '31.222.203.2', 1670499136, '__ci_last_regenerate|i:1670499136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a21dd1fb9ac709fd428ed4196a648a48b52e37', '31.222.203.2', 1670499136, '__ci_last_regenerate|i:1670499136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9af0705fe57407d063bc9f19f4fbee1b5461ede', '31.222.203.2', 1670499136, '__ci_last_regenerate|i:1670499136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f6f7078fc37b52bbd16c2d90a4692020257636', '31.222.203.2', 1670500930, '__ci_last_regenerate|i:1670500930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219e49dd7fba6d6245e63389dfc1ad59f91c7587', '31.222.203.2', 1670500932, '__ci_last_regenerate|i:1670500932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96e7a55bb8fb7dd0f94af0cdc9755a97b4d3f45', '31.222.203.2', 1670500932, '__ci_last_regenerate|i:1670500932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba05fe464b8b125b6882ddbbd17f27970b3e65fc', '31.222.203.2', 1670500932, '__ci_last_regenerate|i:1670500932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427e571a6729940da9492feca47be02debc6c1d8', '31.222.203.2', 1670500932, '__ci_last_regenerate|i:1670500932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce7320d84d5e4258ec9d2579b9ee575e0bb99e03', '31.222.203.2', 1670500932, '__ci_last_regenerate|i:1670500932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d4461e4f62d6563757f341cbed7794314892f3', '172.105.247.100', 1670502115, '__ci_last_regenerate|i:1670502115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd26df4398b7001bc4379a374d05facd55dad9b6', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25621377c0d3e15caed622a7293825eacf8dea43', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24af7a1924946891625257ed28970c60717beb9', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9b6ae11f162157ac4f4b9c7e7afc184276b174', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c095ea5090a88c7a553e2e8c4e460a606eb028b3', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299c41785bf648c6ae3d118a659b07fa341e1449', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25948b15c4fc59303f39f755e0f497035e04f1d2', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3ec482156a41d0b104a80332450b3a7af6496a', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c37ba664186d368e19b349c4c35daef72909a2', '172.105.247.100', 1670502116, '__ci_last_regenerate|i:1670502116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff1d8d0a7ed50f4800174565393a27c0f21b63fd', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946c8c47d0c46b67d4882e2092a9dd707ea96600', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72b0dd6ff480babc1cd66f5e92ad48b0a978cbc', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f0fd94d0d668223111b5b499aeef8caf1452b1', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e515f0803bcb1a9ad6762731420a7c58ff9097', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b509f021e6a0c95b7aaa8e6c7454621d016d0fa', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7699d25527f8cd619d37e47289647d5bc524ad21', '172.105.247.100', 1670502117, '__ci_last_regenerate|i:1670502117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e66afb68fad54e48f939fd57a637d035848b9f', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da18cc1aba09dbbcfbd5c527edb5f53bb57b6db', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b103919a331efd4cd275aaf1c6fa4fb7758749f', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c5e3ba5a7255d4b45c48b2325f0ef88f56c835', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7987af8be75a92fccb843b0e4de52146bea90be3', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45ceeb15da6950d4c78c16f2f2082a54ee0e74a', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e096cb99dbab52833ce97faefa836cd0b76ff1', '172.105.247.100', 1670502118, '__ci_last_regenerate|i:1670502118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('391ad3c5f3b468764c345c665e3112907c0a06c3', '31.222.203.2', 1670502733, '__ci_last_regenerate|i:1670502733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea2b3498092ce646cd3e620e6cd161711e3a2206', '31.222.203.2', 1670502733, '__ci_last_regenerate|i:1670502733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62b52e2be324719d5c2638b12f2838b3fd9764c7', '31.222.203.2', 1670502733, '__ci_last_regenerate|i:1670502733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f47c0fd2017d69d4aea0b25505ee6e30c2833f0', '31.222.203.2', 1670502733, '__ci_last_regenerate|i:1670502733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312a1210798b3715baa73a5d8ce7af1b26d6b4ae', '31.222.203.2', 1670502733, '__ci_last_regenerate|i:1670502733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9cfc0b954ac4bd692e0a1f58c23716312f0af3', '31.222.203.2', 1670502733, '__ci_last_regenerate|i:1670502733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ea273f6b4ceab2b1bc6c51e4f8ac662d77fa69', '37.111.219.53', 1670507067, '__ci_last_regenerate|i:1670507067;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670503696;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f82fd70cbfde11b995bc8e537fad964a59c93f5', '31.222.203.2', 1670504528, '__ci_last_regenerate|i:1670504528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8daa6153e600f422beea11ec3b8eb2eb3cbfee34', '31.222.203.2', 1670504530, '__ci_last_regenerate|i:1670504530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8d24a3e98695de72e172d4dcaf20c1f1912f5e', '31.222.203.2', 1670504530, '__ci_last_regenerate|i:1670504530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37ce72b25e1bd05a58e2e999156f152740c4a68', '31.222.203.2', 1670504530, '__ci_last_regenerate|i:1670504530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e0bfa5b575930a3dd6f50f07b7d33389efed75', '31.222.203.2', 1670504530, '__ci_last_regenerate|i:1670504530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2705f4413d8d16f4d0e48bdccba03da0995a5326', '31.222.203.2', 1670504530, '__ci_last_regenerate|i:1670504530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320b112641a5842f864efbd411aeb105410253c8', '31.222.203.2', 1670506345, '__ci_last_regenerate|i:1670506345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1fd878386da2e4e08a7f0d839678e8ba0becbc', '31.222.203.2', 1670506345, '__ci_last_regenerate|i:1670506345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1452a8b4f6b6b23c4210389151ef4f71f00603c3', '31.222.203.2', 1670506345, '__ci_last_regenerate|i:1670506345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90bf3d4f5268fea0e44d78aaf3374e956020d183', '31.222.203.2', 1670506346, '__ci_last_regenerate|i:1670506346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52670b2acfd4a5f34ddcc397cbe58e2d97d8a422', '31.222.203.2', 1670506346, '__ci_last_regenerate|i:1670506346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d5b372dc4634e8c7655b544abf32caf79df937e', '31.222.203.2', 1670506346, '__ci_last_regenerate|i:1670506346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('504755367a58e2fe9811374b5ca9036a3373154d', '37.111.219.53', 1670508192, '__ci_last_regenerate|i:1670508192;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670507366;register_id|s:3:\"273\";cash_in_hand|s:9:\"7610.0000\";register_open_time|s:19:\"2022-12-08 11:05:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bff2a0d885adecaea3f69821dbd9686d73d5157', '172.105.247.100', 1670507511, '__ci_last_regenerate|i:1670507511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3388721e2e7183832cda1619a4f609a6f1570ddc', '172.105.247.100', 1670507512, '__ci_last_regenerate|i:1670507512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6f10b2c512aca5e8f55d4eefc677b419e9e9c0', '172.105.247.100', 1670507512, '__ci_last_regenerate|i:1670507512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ad7d13fde1fb0557065d166963b9013a16af51', '172.105.247.100', 1670507512, '__ci_last_regenerate|i:1670507512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e220263e2f5db1b32058ec331dd30233dbb702', '172.105.247.100', 1670507512, '__ci_last_regenerate|i:1670507512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe11752dff5e2be6de6b0aad20ad7e8bfe6fdacd', '172.105.247.100', 1670507513, '__ci_last_regenerate|i:1670507513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8de33e6efe781d7274068b5492caba9dcf5644', '172.105.247.100', 1670507513, '__ci_last_regenerate|i:1670507513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be7c2560d6e8edd84cf39cfbc967be978447c09f', '172.105.247.100', 1670507513, '__ci_last_regenerate|i:1670507513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ecbf98030cd2a2da59914c50dc664fa4d4bf7f4', '172.105.247.100', 1670507514, '__ci_last_regenerate|i:1670507514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea1ac3bfd847573b011c264525b6f9690355eceb', '172.105.247.100', 1670507514, '__ci_last_regenerate|i:1670507514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95235f9b9bc460ff9f521b62ffc08ff494ee1cf', '172.105.247.100', 1670507514, '__ci_last_regenerate|i:1670507514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1104d13bb21025b829dad5a6b9d4603d5c565b82', '172.105.247.100', 1670507514, '__ci_last_regenerate|i:1670507514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7466532abd6787946b81f09940674ddfea1f0c', '172.105.247.100', 1670507514, '__ci_last_regenerate|i:1670507514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e8c02fc70835b47052e3377c0a1d8db307ee2f', '172.105.247.100', 1670507514, '__ci_last_regenerate|i:1670507514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3e022d43131c0fbdc4204d1ceef97367059a02d', '172.105.247.100', 1670507515, '__ci_last_regenerate|i:1670507515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d881919c103a32c1c78ff72887323ad7f4d3f3', '172.105.247.100', 1670507515, '__ci_last_regenerate|i:1670507515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279b5f932d595005c8378843b046739cd0cc084e', '172.105.247.100', 1670507515, '__ci_last_regenerate|i:1670507515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09fba97b96ae90ed33312b84e85078dcdea9cb12', '172.105.247.100', 1670507515, '__ci_last_regenerate|i:1670507515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5790850c7a62f0e5fa7bf885b29776628fad9232', '172.105.247.100', 1670507516, '__ci_last_regenerate|i:1670507516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e6a7cabcf2cf1a356967d28fe70396e8908869', '172.105.247.100', 1670507516, '__ci_last_regenerate|i:1670507516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6db2d5809d6b423c04ae4fcb95381ac0bbe6f1', '172.105.247.100', 1670507516, '__ci_last_regenerate|i:1670507516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114b0d847bbc8ab07718c3c9c91020ca7d50005c', '172.105.247.100', 1670507517, '__ci_last_regenerate|i:1670507516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fdfac3c8f0da3e3686f29b370e185f63277db16', '172.105.247.100', 1670507517, '__ci_last_regenerate|i:1670507517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef757b93c6fd273c60f183b8aab80617f7e136d6', '172.105.247.100', 1670507517, '__ci_last_regenerate|i:1670507517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3b1c9b6557e75305ecde1f0d90c05e68cb0bc0', '31.222.203.2', 1670508181, '__ci_last_regenerate|i:1670508181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4104d142e34634590f84c9bf4584aa411ad730d6', '31.222.203.2', 1670508183, '__ci_last_regenerate|i:1670508183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a209e85ad7591bd0fddb728eeac160d295fdaaae', '31.222.203.2', 1670508183, '__ci_last_regenerate|i:1670508183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901c0f32562e297010a9464864839d58abd4afd6', '31.222.203.2', 1670508183, '__ci_last_regenerate|i:1670508183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30db3ed01aadca1bf2f7cb4b67e458055bac5ec', '31.222.203.2', 1670508183, '__ci_last_regenerate|i:1670508183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4451d3efbc0d6cf44bd6913f01e7a9d4459024a', '31.222.203.2', 1670508183, '__ci_last_regenerate|i:1670508183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a658fd3d92d0ed89f0f0281e3679cdffee410c', '45.120.39.90', 1670510495, '__ci_last_regenerate|i:1670510495;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670508417;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8395f637fcfa14e385ab7f164b3727191e336fb5', '31.222.203.2', 1670509978, '__ci_last_regenerate|i:1670509978;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0d8f7c6302def42d3292f0651a2445580c298f', '31.222.203.2', 1670509980, '__ci_last_regenerate|i:1670509980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4c2332293db927f1012ef3380bd063474ab5680', '31.222.203.2', 1670509980, '__ci_last_regenerate|i:1670509980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d0b7b0e11b6c29d3eb52fdde85ec242a26f636f', '31.222.203.2', 1670509980, '__ci_last_regenerate|i:1670509980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f62471f29407ec82e742d6295562720eb3b7c0d1', '31.222.203.2', 1670509980, '__ci_last_regenerate|i:1670509980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c4de7b450ff6f8f0ecb70357d84f3dc16c036d', '31.222.203.2', 1670509980, '__ci_last_regenerate|i:1670509980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a17bf984f30fe83deb32752176dfc772b5af4b9', '45.120.39.90', 1670510594, '__ci_last_regenerate|i:1670510495;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670400637\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670510594;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064db75d1be52bf02dfb4acf8ae5c2edc6e6c144', '172.105.247.100', 1670511712, '__ci_last_regenerate|i:1670511712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d600e98c5f3c1ebca6aaf9c34071916437eeccd2', '172.105.247.100', 1670511712, '__ci_last_regenerate|i:1670511712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5924ac11fe20263ede946d3ad40dcc2fe004acfc', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca8f36cb86a3a1fc69f57833346b893ad2337bf', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6293e38f9fc99933c613eca6c5fd48cfd9c27703', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c2c3224a99b8e84d55b6b58fdb603b48220f1f', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3cac078997c340a82b1e1f892ed93a496c7f46', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377e8c033db8bb86843352aba1050c04198a5c41', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b833d9e72292a5a9a46e5f3cec341425ab099a3d', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f73b45af526091fcb93208432bfa4a3fbefbe01', '172.105.247.100', 1670511713, '__ci_last_regenerate|i:1670511713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36fa14e9d1c5e9e98a75821226cf0d20953f757', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b514353dd0a73f213e395c8a38ac09f2f549443', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2ecd7bfee7e54855334dfba777d5ecf1ea1df4', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2c5411085de5e223a8abe0025e819a3bdb81c1', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4dd8c6cd88185346218aae359f351d0d6d59bc7', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aea906e4182635de5b6d5a16e424ac4669dca9d', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cd15987aea59f2a511782e3638625a3c15d76d', '172.105.247.100', 1670511714, '__ci_last_regenerate|i:1670511714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac0f5ab7e984549cdfe1e65307dc5cb6a39d9dc', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d4fb22785eaacb1f047e539b4b5b31f439681b', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91dfd8c25eeaa6a153abf60127cf9ea433613896', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000303963e6e05a143c6058c7742ec2540d6e397', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3849141e856b8dc444e374fb1559c85083919123', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d324fd8124d4c122c036d815a9afd5ac44aa7060', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4c7c1d4a18237417d4abe4bf620c761140def3', '172.105.247.100', 1670511715, '__ci_last_regenerate|i:1670511715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e02bba3a314afaa83471326b23ee5abb31d7e2', '31.222.203.2', 1670511775, '__ci_last_regenerate|i:1670511775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc1de625503ed3fff22cd86b4712f6801a54fba', '31.222.203.2', 1670511778, '__ci_last_regenerate|i:1670511778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('689159e232a1401284b5fcb4e98a819876ccdc4e', '31.222.203.2', 1670511778, '__ci_last_regenerate|i:1670511778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5cdcd60b1e37fe4a7bb9775c3660601705d94f', '31.222.203.2', 1670511778, '__ci_last_regenerate|i:1670511778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d1238bd874efd128186e28a838951091707d2b', '31.222.203.2', 1670511778, '__ci_last_regenerate|i:1670511778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb24b2c99c60decaeff3e9bc9f5c1ec8903444c', '31.222.203.2', 1670511778, '__ci_last_regenerate|i:1670511778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3d872f1855d044cbe2e91f31e1d65612bbae75d', '31.222.203.2', 1670513605, '__ci_last_regenerate|i:1670513605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af896961985061c2563271855ac27b1777e3a394', '31.222.203.2', 1670513605, '__ci_last_regenerate|i:1670513605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6148af80e7606f264eefd1f9c55e305751db23b', '31.222.203.2', 1670513605, '__ci_last_regenerate|i:1670513605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1130b3a59c72e787defce3c1d3d6fe4cd4e3cce2', '31.222.203.2', 1670513605, '__ci_last_regenerate|i:1670513605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b7a3acc737abfc115e201aebcabede758c8908', '31.222.203.2', 1670513605, '__ci_last_regenerate|i:1670513605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb1ed5979151a325d89fbbbf60f81da346675a0', '31.222.203.2', 1670513605, '__ci_last_regenerate|i:1670513605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8a8e3de1c7e624d1f4493572b7776e5e969808', '31.222.203.2', 1670515412, '__ci_last_regenerate|i:1670515412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c60d2a962b3c7a4d93211c6eef8baf9d91b66c', '31.222.203.2', 1670515412, '__ci_last_regenerate|i:1670515412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a65f67d9a7a98f3c94a6d02a7b50a51e42327c', '31.222.203.2', 1670515412, '__ci_last_regenerate|i:1670515412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c185ac1a2f8085e0a7b43edb92e535fe11177ce6', '31.222.203.2', 1670515412, '__ci_last_regenerate|i:1670515412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5052d1bfd8cd6c501ad59f779f4e00747df1d9a8', '31.222.203.2', 1670515412, '__ci_last_regenerate|i:1670515412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7366edffb47a386b496192fe16b48eca1d2334b', '31.222.203.2', 1670515412, '__ci_last_regenerate|i:1670515412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf4765db8eede540c7b367969de4cd74e32b0fe', '172.105.247.100', 1670517110, '__ci_last_regenerate|i:1670517110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260bd01fc514b28093b0a754ec2719d716fbddf5', '172.105.247.100', 1670517110, '__ci_last_regenerate|i:1670517110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94929e4a453e86c40452fbe6df42ca8f209627d', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb9220d348805592f50998bcc2af28c40e15f22', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c5b62c6ce3bfa9cd4b44a8594095632b5f599e', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf281b3563319d90a13d4c8fc14ab42961fb747', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a98f28e9ea36ceb83789a035bc9714068396472', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22bad581e2d679f07e5528c4fde4b97697d0b5c0', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6b989e1e1f8405f00e628896b14d00ee70ed73', '172.105.247.100', 1670517111, '__ci_last_regenerate|i:1670517111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febdb16af0d3b490a13f9e69cca216299df7a0c5', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab52c176eae4fa12f38bbb697dd6be607b233097', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323f335260bd65c52ad98384b012d36d31091f37', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed24728310eeb33192c736ceaeaec9f9a1bc0fe3', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc2942547099798b029856fbb58ff95a5f9d673', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e513aaba77dbcde1ca61eaec6d2de48bc947b17b', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38de73d9c293361edbb5ebce7c7b84d1252d7c12', '172.105.247.100', 1670517112, '__ci_last_regenerate|i:1670517112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc264226b7cae6cd75a4d5b8e41223005314b436', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8752cb148829747417f185b6bce6657a7b27c3e', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0009a403eb3c84d1b0bf3c2a905341c70727c6', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364ea5b00a30f9af49d9473c251a7957e7bcf309', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a412505840a6cd4d175adcf9c8277f15f6f8bd', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0c90e7a771009ed9cad5cec0e63ac2eae7bbde8', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed32547fa5354da71d6089b7f2577e82b541db02', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d279ad26f6f1248794c67eaf5ac3d0fb995afa0', '172.105.247.100', 1670517113, '__ci_last_regenerate|i:1670517113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324cb9abad1b9759274139cf70406be5fc47d3a9', '31.222.203.2', 1670517216, '__ci_last_regenerate|i:1670517216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07709402bf1b856d1c7d9bec3d0160f99765a0f6', '31.222.203.2', 1670517216, '__ci_last_regenerate|i:1670517216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8899839e89439a13d5a86e22f02f38e0f880df1a', '31.222.203.2', 1670517216, '__ci_last_regenerate|i:1670517216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97aa5b31eb6771f0f7aa34cb09a563173b61a9c7', '31.222.203.2', 1670517217, '__ci_last_regenerate|i:1670517217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4319dc82945ef3ea319be8c463988653a1d6446', '31.222.203.2', 1670517217, '__ci_last_regenerate|i:1670517217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d996b39829145cb6812b406a63b3b8baa1ede60', '31.222.203.2', 1670517217, '__ci_last_regenerate|i:1670517217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee6ea45b241039bd42e7051ed39a5a01935eac9', '31.222.203.2', 1670519002, '__ci_last_regenerate|i:1670519002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c9ce264fd7290ff13a2b79124dde8d3b06d1b1', '31.222.203.2', 1670519002, '__ci_last_regenerate|i:1670519002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bbe08f87afa2cf964accab1a6e5fc986f064e38', '31.222.203.2', 1670519002, '__ci_last_regenerate|i:1670519002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37deca4c4b2ab9dbe0991c68aab567caa2b49a37', '31.222.203.2', 1670519003, '__ci_last_regenerate|i:1670519003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8acfb2589ef4340dcb6e1e44dbd9a92a23e8f59', '31.222.203.2', 1670519003, '__ci_last_regenerate|i:1670519003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ca328010df552eda557a42839e82a8e7a8acc2', '31.222.203.2', 1670519003, '__ci_last_regenerate|i:1670519003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf2e7058ef09d71d21d3714dda033c76a70a75d', '31.222.203.2', 1670520820, '__ci_last_regenerate|i:1670520820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b04b177de3b342b29047a920731c60129bb36ec3', '31.222.203.2', 1670520823, '__ci_last_regenerate|i:1670520823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70684b973835a4f149674edf6cec67f2d30744de', '31.222.203.2', 1670520823, '__ci_last_regenerate|i:1670520823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9a27e01a8635afcef8b1b6013f2dd4d8037f00', '31.222.203.2', 1670520823, '__ci_last_regenerate|i:1670520823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765d9349709b2731ad91256d3ce2f87872cb39a3', '31.222.203.2', 1670520823, '__ci_last_regenerate|i:1670520823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb929bcf71062f5e80a9b8d3df7556294afc0b12', '31.222.203.2', 1670520823, '__ci_last_regenerate|i:1670520823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca6b6094e474a9f6851585a00c07e27dc98aaa8', '31.222.203.2', 1670522589, '__ci_last_regenerate|i:1670522589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42660b4689c7d3866678e4fb1baa9e5d8b7671f', '31.222.203.2', 1670522592, '__ci_last_regenerate|i:1670522592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1a3a8fe8d77f44f462369baf8a0e5bdb30d6fb', '31.222.203.2', 1670522592, '__ci_last_regenerate|i:1670522592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31923cc57bdc15e909c83453e49eef0b4f1bd531', '31.222.203.2', 1670522592, '__ci_last_regenerate|i:1670522592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487524e4014a96ef52c4934650cbc1f61778090b', '31.222.203.2', 1670522592, '__ci_last_regenerate|i:1670522592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0651c8d0e6135efbaf0c962da4d14ed5b41609', '31.222.203.2', 1670522592, '__ci_last_regenerate|i:1670522592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b5c08624ab132477c290d480b409dffe1e9ce0', '172.105.247.100', 1670523110, '__ci_last_regenerate|i:1670523110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6014ba38267c1389a7ad5b0f4c3b2c1ba599abd9', '172.105.247.100', 1670523110, '__ci_last_regenerate|i:1670523110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a89226bee99c2553037bb17b632533fe3694635', '172.105.247.100', 1670523110, '__ci_last_regenerate|i:1670523110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9fb47cf88fad47ada471a262490a51e38af2a22', '172.105.247.100', 1670523111, '__ci_last_regenerate|i:1670523111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26e0ed43f719d4e1b070451d74660134f8f338e1', '172.105.247.100', 1670523111, '__ci_last_regenerate|i:1670523111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355c4392ce5769ebbe94037add0495163e4e0881', '172.105.247.100', 1670523111, '__ci_last_regenerate|i:1670523111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae46de9c50f575264364da792948cbdc877e5814', '172.105.247.100', 1670523111, '__ci_last_regenerate|i:1670523111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00955d5b3e46c2082634ba85f2039d5931261cf6', '172.105.247.100', 1670523112, '__ci_last_regenerate|i:1670523112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c0b8fa6c98dc0b252735b53285b8c878d71948', '172.105.247.100', 1670523112, '__ci_last_regenerate|i:1670523112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94dee8c13de092ffe5fb251ebe3b5b27f64aa921', '172.105.247.100', 1670523112, '__ci_last_regenerate|i:1670523112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d108cd663a9399d59afe4c8fa5bf3bb501a6c1fe', '172.105.247.100', 1670523113, '__ci_last_regenerate|i:1670523112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538c7496531507ce352b2fd9143c696458595b6b', '172.105.247.100', 1670523113, '__ci_last_regenerate|i:1670523113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce45f9a53b0613ef5a89658e8731d17dfa3e67f4', '172.105.247.100', 1670523113, '__ci_last_regenerate|i:1670523113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419135527935c3825eaf53c885bce595ddd9e2e7', '172.105.247.100', 1670523113, '__ci_last_regenerate|i:1670523113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11363657ab25011ff8c55e3f7ca2bf4de9b3f8a4', '172.105.247.100', 1670523113, '__ci_last_regenerate|i:1670523113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74bd35da46c88eae08b54f84b983ea1693c5015c', '172.105.247.100', 1670523113, '__ci_last_regenerate|i:1670523113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d39d80b218b61c3d5fb1ab38e5a59ec9e92977', '172.105.247.100', 1670523114, '__ci_last_regenerate|i:1670523114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5167ab0e6b00b2fa138d4f65536c295c5d01a4', '172.105.247.100', 1670523114, '__ci_last_regenerate|i:1670523114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2302c0f90d403443f2f8aa6194a404f6002ce233', '172.105.247.100', 1670523114, '__ci_last_regenerate|i:1670523114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7cab5269c5a94c0c44102f423ec632bb734216', '172.105.247.100', 1670523114, '__ci_last_regenerate|i:1670523114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e87b378db88a8d905a00b846609e1653a2d292', '172.105.247.100', 1670523115, '__ci_last_regenerate|i:1670523115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a8adb4064e66e357130724a8f2fe29d01f2ce6', '172.105.247.100', 1670523115, '__ci_last_regenerate|i:1670523115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5261c6cec5010845f3a2308669a2bd916b7cd02', '172.105.247.100', 1670523115, '__ci_last_regenerate|i:1670523115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89bb774b706c33f93246888da02604216593970d', '172.105.247.100', 1670523116, '__ci_last_regenerate|i:1670523116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400dcd61e5885ee38d2b8ff584463d83f0d581cc', '31.222.203.2', 1670524412, '__ci_last_regenerate|i:1670524412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fca64c19820287b788b3dcae1d08a6e68842502', '31.222.203.2', 1670524414, '__ci_last_regenerate|i:1670524414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91b3b7cdbc9c6feeaa7256c80cb626c20301e31', '31.222.203.2', 1670524414, '__ci_last_regenerate|i:1670524414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32e6ecb81479e131456a85dc342700d206fa9dbf', '31.222.203.2', 1670524414, '__ci_last_regenerate|i:1670524414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fab2d49c66af7250fbf22144139637f15ad97f4', '31.222.203.2', 1670524414, '__ci_last_regenerate|i:1670524414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d184dd420308d71987c0374238cd5c17c6b994', '31.222.203.2', 1670524414, '__ci_last_regenerate|i:1670524414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3ad8bbd6a3d5ed35be847e520f85ac877bd935', '31.222.203.2', 1670526201, '__ci_last_regenerate|i:1670526201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33da2cb8f83d60ff1960dc3ee1562d1c37f14446', '31.222.203.2', 1670526202, '__ci_last_regenerate|i:1670526202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de72542cadf01b7963fcbc189d1d89a65418d79', '31.222.203.2', 1670526202, '__ci_last_regenerate|i:1670526202;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abe5cdb44ab84a29b2c8844af8444c797c76103', '31.222.203.2', 1670526202, '__ci_last_regenerate|i:1670526202;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('209ae225247ad39c3e40501bdd93dde7ac4e611d', '31.222.203.2', 1670526202, '__ci_last_regenerate|i:1670526202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430eefe8c940e9531dd04d0d5e1421c3b8f71c56', '31.222.203.2', 1670526202, '__ci_last_regenerate|i:1670526202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ebd7f3b13da1ea1d2a23ca51cf36c4f40c029b', '172.105.247.100', 1670527307, '__ci_last_regenerate|i:1670527307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86650582f44b7d6d8474e049768a064366a08e12', '172.105.247.100', 1670527307, '__ci_last_regenerate|i:1670527307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccaeb5edd121b84975750f61be4c7d9256f281cb', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e05be3b4e7ff17d8cb7b41e3bddb09d1daa1026', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd4af31ec58d004a5eab4c84d0975fa557a5907', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63c6afb24da48e45b0a7bcf194e48aff2fcafaa', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92054bc9329c5eb2f59b15d366ca5fa843a31cde', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af163c3072dfcd5b23a4794d88c5d4272927a7f', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b8def5e552c211adb61276d1aa4e357be41513', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c15cdf215218bb9cb25ec0f8d3c3ede06c22c2', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4424da29c448e5a27a551d67650cfd702d776696', '172.105.247.100', 1670527308, '__ci_last_regenerate|i:1670527308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10891eab7af3782bd1cc33a4b81e5d89f3295e1', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a9d2efeb47b944e490c9fd56a91bf7a3b8cbbc', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f737b239a5ec44da684fef838dfa86e398c2d2', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a7a4323d4b40ed273ffe279bdff6f19778a3d3', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6fb1f50651cff518f29566a7abd26255c717b09', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0397fa74c215c82ff49eb9feb5250a46e5bc545', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c7a2af1229f78636c545e492f1dabb77027a99', '172.105.247.100', 1670527309, '__ci_last_regenerate|i:1670527309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de9efd17a00377c4b8e304b439cd5ccc0c4021d', '172.105.247.100', 1670527310, '__ci_last_regenerate|i:1670527309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ab937e17bbb50ea443e7949ec28a685764a0f6', '172.105.247.100', 1670527310, '__ci_last_regenerate|i:1670527310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be0c54c5aa8f2a530ae3e073443a1c8827fe5873', '172.105.247.100', 1670527310, '__ci_last_regenerate|i:1670527310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1327ed6a413e50535d570f012cd3d6118222b4', '172.105.247.100', 1670527310, '__ci_last_regenerate|i:1670527310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09eb99ed97ce22aa209be399b0b45a365d77ac94', '172.105.247.100', 1670527310, '__ci_last_regenerate|i:1670527310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1679b73eb82e52d6dbff9497a96f6bb9902bbf9', '172.105.247.100', 1670527310, '__ci_last_regenerate|i:1670527310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dd36c3c8b6a32a7497daa5002485bdf0da08dc', '31.222.203.2', 1670528014, '__ci_last_regenerate|i:1670528014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f5d0369e4587424c7e79c317d499ff04f5489e', '31.222.203.2', 1670528016, '__ci_last_regenerate|i:1670528016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4601e987f98c15284a1d09a86d0d4129f21b21e2', '31.222.203.2', 1670528016, '__ci_last_regenerate|i:1670528016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a903f668933206c2094695f93434912a011b46', '31.222.203.2', 1670528016, '__ci_last_regenerate|i:1670528016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a498d3c96bf9c540b79373e303eb5201bb0ba8', '31.222.203.2', 1670528016, '__ci_last_regenerate|i:1670528016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec4335a6a7f79d46ded411108906d240076cbfb', '31.222.203.2', 1670528016, '__ci_last_regenerate|i:1670528016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('768e66fb21dff8a025cecd672612a978bccdf868', '162.142.125.10', 1670528419, '__ci_last_regenerate|i:1670528419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d4b93799b35f3590dfd91ded75701231d03a82', '162.142.125.10', 1670528420, '__ci_last_regenerate|i:1670528420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe7052dc9410f0d8ff8df9a0db97d33d5a76914', '162.142.125.10', 1670528421, '__ci_last_regenerate|i:1670528421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550aa0bcaaa3d8bb75fc0f61e2099188ac644b3e', '162.142.125.10', 1670528422, '__ci_last_regenerate|i:1670528422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b765e6e41c6a8cebacc6ed6a0575212c62b3b075', '162.142.125.10', 1670528422, '__ci_last_regenerate|i:1670528422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8601e703ecea495679181e823dbe85eba2edcc0', '162.142.125.10', 1670528422, '__ci_last_regenerate|i:1670528422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b272c9156518f49666730dab1d8ef5fa88ba1107', '31.222.203.2', 1670529776, '__ci_last_regenerate|i:1670529776;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e037cb50d2ff76d3170e6673f5e1d5cbdd8ad0', '31.222.203.2', 1670529776, '__ci_last_regenerate|i:1670529776;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8112d5037ccf94688f6c5dcff183d62d65f598f', '31.222.203.2', 1670529776, '__ci_last_regenerate|i:1670529776;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc7ca10216f74bc07aa83ac98300ee7c0a0c975', '31.222.203.2', 1670529777, '__ci_last_regenerate|i:1670529777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a45482775b002120da000b1b0a3f82f62e72511', '31.222.203.2', 1670529777, '__ci_last_regenerate|i:1670529777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93939d51b075a5abb2eb3129e2cb990066dc1a9', '31.222.203.2', 1670529777, '__ci_last_regenerate|i:1670529777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a1a2e372dce52d9eb6fdaeab2ebec8c3177bd46', '31.222.203.2', 1670531606, '__ci_last_regenerate|i:1670531606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2bdd286d91fe1a4399f1de8950893d7e4964ca', '31.222.203.2', 1670531608, '__ci_last_regenerate|i:1670531608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cdd3457e7fcbb690c155ada8138005a7cdaf384', '31.222.203.2', 1670531608, '__ci_last_regenerate|i:1670531608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15696f94cde687695e3a49938ccbbd259c3b2edf', '31.222.203.2', 1670531608, '__ci_last_regenerate|i:1670531608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6d5c13a9e7d6154e8cfdda7513e42116ae7da8', '31.222.203.2', 1670531608, '__ci_last_regenerate|i:1670531608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1272a5e90249cc46f7542d9061f8fae5bf73bfb', '31.222.203.2', 1670531608, '__ci_last_regenerate|i:1670531608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4dd06e3c79828d38a22ecd305a51a7016e9c37', '172.105.247.100', 1670533309, '__ci_last_regenerate|i:1670533309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18fdfb3ce10ee012ece31c9249f6fb73342573f6', '172.105.247.100', 1670533309, '__ci_last_regenerate|i:1670533309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd463cd3e2c4b6915eab4de5d7dc7179c95012c', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fcb9bdb969d76ebdf8773675bc36485ec18a9b3', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4d77ec1363c99488e0b59137bf673888b209b3c', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a055e5e8a340761cd62a4251bfaad3c752a2256', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d54b474582dfe7f74d16e715245ce328645aee', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d5adc9f249faa22c464748b67867bceb155e03', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf70fac3fa14c9af2f1fff140cacd5d2a2be7f39', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c50c4405ba80467e3b91ace5672d9bb35d3d91b', '172.105.247.100', 1670533310, '__ci_last_regenerate|i:1670533310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a69a9e1af5fafbef70978646893325d0b8bda39', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12adc676c5ae860a7aa00f1134564010e618d682', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('567220054723aef943cf66212977e2a99314f449', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5745d938550d2df93d5b235444869ad8db91579', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031ad434dcc45e8c0aa5481ace468097f4a606e5', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1498d5729cbcd4a5f7060134b64d0196e1f2ab8f', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cac21da786080d92e2a490261fd9b3e574574ce', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84dd21666f6325f84c64e225ddbccf072c7d00fb', '172.105.247.100', 1670533311, '__ci_last_regenerate|i:1670533311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6fb478682ec18ec802995e7f0c25d96a80cbe8', '172.105.247.100', 1670533312, '__ci_last_regenerate|i:1670533312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc29038f319d9e63c52a28624a4503caaa304527', '172.105.247.100', 1670533312, '__ci_last_regenerate|i:1670533312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e241afb58004dd8bd7a8471945bf4f15d78ec84', '172.105.247.100', 1670533312, '__ci_last_regenerate|i:1670533312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64a8cba10b8526b7df5c46ac23a8f8b6b8bb4ecc', '172.105.247.100', 1670533312, '__ci_last_regenerate|i:1670533312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e6b1af10ed994dc2a31e8f58482a29e46d5410', '172.105.247.100', 1670533312, '__ci_last_regenerate|i:1670533312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8253b7e9c26c447bfc898507991643cbf82c47', '172.105.247.100', 1670533312, '__ci_last_regenerate|i:1670533312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e071b90e1886f79c860af4b3348db00de5dea9', '31.222.203.2', 1670533408, '__ci_last_regenerate|i:1670533408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb477eb53edad0b2a57cc07ac7f9616a239ecce7', '31.222.203.2', 1670533408, '__ci_last_regenerate|i:1670533408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ede7ffaf782699122625ab32948c914fdb5f5bf', '31.222.203.2', 1670533408, '__ci_last_regenerate|i:1670533408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e8e2b2db6da8712e9d8f4d00c6e74d8b2ebc7c', '31.222.203.2', 1670533408, '__ci_last_regenerate|i:1670533408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8503b02c2f12ef7736e4ee882648740753e67c', '31.222.203.2', 1670533408, '__ci_last_regenerate|i:1670533408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f302a72843f0a35fff56ea86bcc2cabc427d269e', '31.222.203.2', 1670533408, '__ci_last_regenerate|i:1670533408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e32012665323edb4a78ecc6f7915f8e6ca786591', '31.222.203.2', 1670535220, '__ci_last_regenerate|i:1670535220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ed4762653347e798fd338e5e8d41b545e471bc', '31.222.203.2', 1670535222, '__ci_last_regenerate|i:1670535222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfb84f53ebb9a5fb01b5dc7dabc4ae9a939b71b', '31.222.203.2', 1670535222, '__ci_last_regenerate|i:1670535222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5716b20f3af11431cad71a3cd9654009a148826', '31.222.203.2', 1670535222, '__ci_last_regenerate|i:1670535222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c244ed081055623b408cbbbefcf0407983bd84c', '31.222.203.2', 1670535222, '__ci_last_regenerate|i:1670535222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773c60acee2b71183a5a1273aa1901c610a0ef74', '31.222.203.2', 1670535222, '__ci_last_regenerate|i:1670535222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47fc4f1588ceaae47c8240c898828600ea53e5d', '31.222.203.2', 1670537015, '__ci_last_regenerate|i:1670537015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42272670274e8f66c32c83cd5d5a093dd37d1f46', '31.222.203.2', 1670537017, '__ci_last_regenerate|i:1670537017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727517686a0b9df88892fc45efd2db31414d9a48', '31.222.203.2', 1670537017, '__ci_last_regenerate|i:1670537017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c72755cc4d1194525a1425ec48e73aaea962db4', '31.222.203.2', 1670537017, '__ci_last_regenerate|i:1670537017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e76bad7decdf035df7adc10662e7fbbde1db45', '31.222.203.2', 1670537017, '__ci_last_regenerate|i:1670537017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9679b19a5ae47241e5711954e7f00eb42645d48f', '31.222.203.2', 1670537017, '__ci_last_regenerate|i:1670537017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ffbe3999ca4014b79b0c8a864d69a5d1567520', '172.105.247.100', 1670538109, '__ci_last_regenerate|i:1670538109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d972c16d353990d1d52a328b5697f05d370114', '172.105.247.100', 1670538109, '__ci_last_regenerate|i:1670538109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cf08b6ce783ff9957b3739aff0c97296d34c54', '172.105.247.100', 1670538109, '__ci_last_regenerate|i:1670538109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7eb65945ec1ea4817c6f4a128ca1483230871f2', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11460ccddb2a56bced09e42f2a36aaa835bbe6d0', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae0b5115749ffe8cd26f581739fb6c8f3cf0223', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6450c7fb366c9b6b0c08d3d365ad4d409446618d', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9966148a1d3b316828ec7a679ec5d56f834da3a0', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04541c47e33b9762979fcc22c634e6d2e293a461', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc0ea514dcd9624ff1264d3c5de2f16852fc4ae', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f942d3da30bf04e1620f32d1db813597bbc05fa', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9b7009085df8327b94b19d760756600b1a56f1', '172.105.247.100', 1670538110, '__ci_last_regenerate|i:1670538110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6215d3df56d74e9a9c28f2d587a0a0d8e6c5af5', '172.105.247.100', 1670538111, '__ci_last_regenerate|i:1670538111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('322cebea5383757c48baa6ca1be05b42105de6f8', '172.105.247.100', 1670538111, '__ci_last_regenerate|i:1670538111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6f02b9bd7f43ab4b50c0ef36d2ad900778c2f0', '172.105.247.100', 1670538111, '__ci_last_regenerate|i:1670538111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab4bbc235009ac61b43cbbb6742fc83cc2e8db4', '172.105.247.100', 1670538111, '__ci_last_regenerate|i:1670538111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41c390a7ee63f9f48c8dd2da367391b34366ea0', '172.105.247.100', 1670538111, '__ci_last_regenerate|i:1670538111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524455fb82e887b1018b8c21c6914811f7842298', '172.105.247.100', 1670538111, '__ci_last_regenerate|i:1670538111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf97d4d60ecb7c9caa8efe7709a2f3dec19f452', '172.105.247.100', 1670538112, '__ci_last_regenerate|i:1670538111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf5293a2078e1af69ca0dbf0065c705ef705319', '172.105.247.100', 1670538112, '__ci_last_regenerate|i:1670538112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a9bf5579acc49949928fd97d8984edb045d1de', '172.105.247.100', 1670538112, '__ci_last_regenerate|i:1670538112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16141c296a349dff2516f6ddd48a13bd362ecc0a', '172.105.247.100', 1670538112, '__ci_last_regenerate|i:1670538112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bd2dbd7f6b81731df9c5bdb303eef92e4b789f', '172.105.247.100', 1670538112, '__ci_last_regenerate|i:1670538112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('126acb42ce5ddf02e1c630b3159626f68116e70c', '172.105.247.100', 1670538112, '__ci_last_regenerate|i:1670538112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5890ff97d722be1343edfe38e4f8dcf01a7dfd97', '31.222.203.2', 1670538816, '__ci_last_regenerate|i:1670538816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396a20bf9bda585c6910a6827829822df554dc8d', '31.222.203.2', 1670538818, '__ci_last_regenerate|i:1670538818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a246974c2e07da7b396331964349734eaf6123ea', '31.222.203.2', 1670538818, '__ci_last_regenerate|i:1670538818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8bc6ac4e4afaa5126eba37d103ffba24435e7d4', '31.222.203.2', 1670538818, '__ci_last_regenerate|i:1670538818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48dedccbf11db80ee0e2a5cc28df4483656cbdef', '31.222.203.2', 1670538818, '__ci_last_regenerate|i:1670538818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d6da47a335d09ec828e39a3e026214bd8b4b275', '31.222.203.2', 1670538818, '__ci_last_regenerate|i:1670538818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df14ade6768be9e617ac29562c95acfec632673b', '31.222.203.2', 1670540625, '__ci_last_regenerate|i:1670540625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ef571c407923c2f98a70d50a1b21fe7aed9f32f', '31.222.203.2', 1670540627, '__ci_last_regenerate|i:1670540627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ea95a142d2cb0c56940eae548efcf58b1efe85', '31.222.203.2', 1670540627, '__ci_last_regenerate|i:1670540627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4c640984204769da04a50070263b420283f2da', '31.222.203.2', 1670540627, '__ci_last_regenerate|i:1670540627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44777f3e08b95a1259b2f21a57f4e99de9f4d88', '31.222.203.2', 1670540627, '__ci_last_regenerate|i:1670540627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12aec7f7542f825e1e51245eab1c353a8a08aa0c', '31.222.203.2', 1670540627, '__ci_last_regenerate|i:1670540627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c7346fea66429bc5f7c79aa709a569362b7e10', '31.222.203.2', 1670542391, '__ci_last_regenerate|i:1670542391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841bc230fab8775b018cfd2758d1d815bf007464', '31.222.203.2', 1670542392, '__ci_last_regenerate|i:1670542392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4bb200bbf615e25896e4e78775ec27f70449619', '31.222.203.2', 1670542392, '__ci_last_regenerate|i:1670542392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6b4041686e2c3150f05228271569e9631f299e', '31.222.203.2', 1670542392, '__ci_last_regenerate|i:1670542392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fcbb264e8fc4593554e46f12f48dd4b15884720', '31.222.203.2', 1670542392, '__ci_last_regenerate|i:1670542392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59948cbadced54474f891853ddf4850e191c60ed', '31.222.203.2', 1670542392, '__ci_last_regenerate|i:1670542392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe644b53efd143d8a1368eabed63842aac27570', '172.105.247.100', 1670543506, '__ci_last_regenerate|i:1670543506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a873a0ed2ad9c5f4cddc1f94661f4ebe4171881c', '172.105.247.100', 1670543506, '__ci_last_regenerate|i:1670543506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ab715fb556337c470bb4dddeab1c51c8bfeed6', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d4dc34b8592508e325347da619b110ffcebf956', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a600aee4350b951e787694d32f5f8e1b97b47be', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0fb98305706ca65d8caef52a46e8aafe59d585', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878089ab8bd7a7eca74f4f069e5e0678df993c1b', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5ecbc9b2ab45c047e611deb43000021a4ceaef', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d40f60e71d59002c443ec83dcf593e1e9c34d26', '172.105.247.100', 1670543507, '__ci_last_regenerate|i:1670543507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5a7b18dd1cbd905104598b399f7a73464b551a', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115578d06ac373343c1d5170a8b28cf1ece86ae2', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d2bfa36741f79fe23575ae4d9d2422715b1bf7', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c212fcb7cb6fde7ad5d7dcbd8c205429601b9d87', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86400f0f09363d49f66776646c2ced646bfe9c88', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c2d41e858e2bb881f96799ebff743b75669ce0', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0680625c8d99120b12ee79077689545b1de397a9', '172.105.247.100', 1670543508, '__ci_last_regenerate|i:1670543508;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ccc446fa935f4228c0907e3400243872c1b114', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8874b133fb0dfc040c1d69b2407a1a08003a8b', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d42d1d6cade498f01b657a58c33fd4a429600f', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034bdc50dc950fda949c3aa284f1f47a85af3bc7', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('725451b6f86bf3c9b5e59c34d1b1c1f9d40f076e', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b2349dbf2dfb7b6045fad7a3ba26979c3baf1a', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4716a88f862415104c35844af5ba3ac6dd5c0a67', '172.105.247.100', 1670543509, '__ci_last_regenerate|i:1670543509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431f9aabc7889c667a72b49f160edddb632b276d', '172.105.247.100', 1670543510, '__ci_last_regenerate|i:1670543509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c969e7bdb44a3dbaa73bae85c37b677b98e613', '31.222.203.2', 1670544205, '__ci_last_regenerate|i:1670544205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b72304d2c2d8e44d9a6fac35b8eace4577dd477', '31.222.203.2', 1670544208, '__ci_last_regenerate|i:1670544208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776743690f0d031564e83ef34c03928384d85f3d', '31.222.203.2', 1670544208, '__ci_last_regenerate|i:1670544208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beafc4a9da5d36c1462a66a148846837c23162e8', '31.222.203.2', 1670544208, '__ci_last_regenerate|i:1670544208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9440f73d9460573779d1a70a7fe44eea72e6373', '31.222.203.2', 1670544208, '__ci_last_regenerate|i:1670544208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9428cf105b7b057839a7d85b24707104f8954848', '31.222.203.2', 1670544208, '__ci_last_regenerate|i:1670544208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604b64e39e99baf70904798452342af88eb56175', '31.222.203.2', 1670546026, '__ci_last_regenerate|i:1670546026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('268178b047ecd0fa36a874fadefe61a4659ad414', '31.222.203.2', 1670546027, '__ci_last_regenerate|i:1670546027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aae4c571f06d31a7e0ab2a404018f9b0c657601', '31.222.203.2', 1670546027, '__ci_last_regenerate|i:1670546027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce6757cb685f9a58fcbd65badf267385a3b6aff', '31.222.203.2', 1670546028, '__ci_last_regenerate|i:1670546028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d102bfc944c025c75410e2a26df4efe411af1218', '31.222.203.2', 1670546028, '__ci_last_regenerate|i:1670546028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eacb335d53d10a484bdbfa5a9d250d58237bfcb', '31.222.203.2', 1670546028, '__ci_last_regenerate|i:1670546028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d806decd67a48f06bd759ac3e4f7bf1b47b12101', '31.222.203.2', 1670547820, '__ci_last_regenerate|i:1670547820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01e60b5ea656a9645ea0eea627b2e8a427146d3', '31.222.203.2', 1670547822, '__ci_last_regenerate|i:1670547822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b91fe75b9e2b14f13613217a91b08ce549a63f9', '31.222.203.2', 1670547822, '__ci_last_regenerate|i:1670547822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3040f0407dc510ca97997c70f4912d9115fe42d2', '31.222.203.2', 1670547822, '__ci_last_regenerate|i:1670547822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfaacbc557a8db392e4298d30489b4b7cfa78662', '31.222.203.2', 1670547822, '__ci_last_regenerate|i:1670547822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb57d368c22485b4bb9a4552433eb29678847abd', '31.222.203.2', 1670547822, '__ci_last_regenerate|i:1670547822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27aa47a37e1bfc2cf89802f992d6810796e7148e', '172.105.247.100', 1670548305, '__ci_last_regenerate|i:1670548305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fd9f47d5b7abdc97cf1b0e57cbe932d24f31c1', '172.105.247.100', 1670548306, '__ci_last_regenerate|i:1670548306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6fdaafeb0244275fa1e36b55595890be76fb29', '172.105.247.100', 1670548307, '__ci_last_regenerate|i:1670548307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f09dffd378900a8701c465f04bd7f0d81b72dd', '172.105.247.100', 1670548307, '__ci_last_regenerate|i:1670548307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b848416da540d84c23a60408e806e828c822f2', '172.105.247.100', 1670548307, '__ci_last_regenerate|i:1670548307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e341ddadc5fb085ae593ad6abc3c7041987ae5c', '172.105.247.100', 1670548308, '__ci_last_regenerate|i:1670548308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5f83f402e4519764428038bb783d48e9329ea1', '172.105.247.100', 1670548308, '__ci_last_regenerate|i:1670548308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdaf708b7779787745e5b8378c8ac0e14787d44b', '172.105.247.100', 1670548308, '__ci_last_regenerate|i:1670548308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ae80d91376201725b54ff402aa7d8f4357787e', '172.105.247.100', 1670548308, '__ci_last_regenerate|i:1670548308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1ace463eca51db677a15fbc185e3aada6200d7', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d8c810c57b1a2b64646e04311f197e34ed421d7', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462ba6a9b01b6a1a1cd75b8ba973b3f7c72d135d', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c99877bbe730253cdf15f064b21e73047f29e2', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6938971dbb43d338f72036b7802599923002f9', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4803ee92362fa0f80ddc2032c634534293c7ac9b', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d486cbdd51f2d2db5efdb3771a1a9a80b6680905', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2e946ebdfa5e15d377ba921475a37d4317381e9', '172.105.247.100', 1670548309, '__ci_last_regenerate|i:1670548309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2cf203ef2bcfe99973a792502c04bb327fd3f3', '172.105.247.100', 1670548310, '__ci_last_regenerate|i:1670548309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('293c9ef715bd9c421ea0103439e7ef902837fc1d', '172.105.247.100', 1670548310, '__ci_last_regenerate|i:1670548310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994837296e2ac069028ad09327e73c384f2b7372', '172.105.247.100', 1670548310, '__ci_last_regenerate|i:1670548310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37be607ab62c8066d39432b5b9865007d205f085', '172.105.247.100', 1670548310, '__ci_last_regenerate|i:1670548310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21734d8fc66018a3012b57b02999ba5251b5f657', '172.105.247.100', 1670548311, '__ci_last_regenerate|i:1670548310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d10282b1d92364306860f6b6e38a666bd6df7ab', '172.105.247.100', 1670548311, '__ci_last_regenerate|i:1670548311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cdfd545eb3b03f92a0e6bf2eba5a71c16fbabc', '172.105.247.100', 1670548311, '__ci_last_regenerate|i:1670548311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5d0f99b57f4e3b189213397d82988268e3ff49', '31.222.203.2', 1670549636, '__ci_last_regenerate|i:1670549636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48d810daf79df5a6e02dfd3b269d3e105188a17', '31.222.203.2', 1670549638, '__ci_last_regenerate|i:1670549638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1994ac4dd4594af0a0d44102c5c1167d89615f', '31.222.203.2', 1670549638, '__ci_last_regenerate|i:1670549638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c34d7fc404ac15590cb84df4d88b463865526e', '31.222.203.2', 1670549638, '__ci_last_regenerate|i:1670549638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2647411e13472ce7321440b511d9e758cafe97b8', '31.222.203.2', 1670549638, '__ci_last_regenerate|i:1670549638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493c036b74eded87e38c3e54a19c9b70de4beef3', '31.222.203.2', 1670549638, '__ci_last_regenerate|i:1670549638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311193baf1099d4db97b96152e7d4a9ea1b43c1b', '31.222.203.2', 1670551415, '__ci_last_regenerate|i:1670551415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1a4d9198670e9c416a4d983a44925bc135651e5', '31.222.203.2', 1670551417, '__ci_last_regenerate|i:1670551417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f7af9ae018eac051f827367d7fd943bfad7428', '31.222.203.2', 1670551417, '__ci_last_regenerate|i:1670551417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('553757e396ba6ed239ab2ac529fc01938da7c98c', '31.222.203.2', 1670551417, '__ci_last_regenerate|i:1670551417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99371db92f2cfbdd04c8a8fe1707b0c8bc7786e1', '31.222.203.2', 1670551417, '__ci_last_regenerate|i:1670551417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a21e945143d780a54f18092a2756762c34c454', '31.222.203.2', 1670551417, '__ci_last_regenerate|i:1670551417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a7669f54479c33791251cc471386ecc85d97408', '172.105.247.100', 1670552513, '__ci_last_regenerate|i:1670552513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae95860e8bc7a8f3b52d3dd0f76229bdae103cde', '172.105.247.100', 1670552514, '__ci_last_regenerate|i:1670552514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2163ef17dba16d9df0205cb8d6e71ac5747bc827', '172.105.247.100', 1670552514, '__ci_last_regenerate|i:1670552514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b20a56b0b6e8e6a0db19e817ce8b5495e6af06', '172.105.247.100', 1670552514, '__ci_last_regenerate|i:1670552514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af954c8761a7b1d90b6f2d6275f251104838103', '172.105.247.100', 1670552514, '__ci_last_regenerate|i:1670552514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79afe52c29a9ffff6b1a95be28b74ad479066fb6', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a312139b27d92e1797cd0fbde81fd4f50d066b5e', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b462cd42205c03f0fb48d201ef44b5f0dea35d24', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86837c0c1d73ea28627243fe9088f270d1641227', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c671c096bd61d1e172beb6c9efe96e5a61086cae', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f990f9da9aff78161ef63c6c6fdc017f67595b', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485cb670049ca2e3fcd79ac493124b91ab56d083', '172.105.247.100', 1670552515, '__ci_last_regenerate|i:1670552515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709a80201077aa11dd190a2c19efdd69d52a3810', '172.105.247.100', 1670552516, '__ci_last_regenerate|i:1670552516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6107b7ecb4bfd02439492fd83210c450da7a48', '172.105.247.100', 1670552516, '__ci_last_regenerate|i:1670552516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f9b29a4e36db7628e3be019ec4f6e4824580ef', '172.105.247.100', 1670552516, '__ci_last_regenerate|i:1670552516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59c9177f8cad728bf1ce3d5f34dc26cd8cf6833', '172.105.247.100', 1670552516, '__ci_last_regenerate|i:1670552516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53734b697a7d54a45ffb724732e19d84034e29f6', '172.105.247.100', 1670552516, '__ci_last_regenerate|i:1670552516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ec8bc07dfe91e0a9afaad9c4a8a32bde7cc685', '172.105.247.100', 1670552516, '__ci_last_regenerate|i:1670552516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405e0cc5cca05e37f80745d950057c1ed8f8db18', '172.105.247.100', 1670552517, '__ci_last_regenerate|i:1670552517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393cf40cafd3a783554ad05e0b67cd7006e99151', '172.105.247.100', 1670552517, '__ci_last_regenerate|i:1670552517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed6184a239f195cb9648b51ca3cfd97d384bc67', '172.105.247.100', 1670552517, '__ci_last_regenerate|i:1670552517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2eba9d942631a7b3c0c26518548ade3c5fe7e10', '172.105.247.100', 1670552517, '__ci_last_regenerate|i:1670552517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b717b66ec5524434c3ae8369c54b5d511a4bb9f8', '172.105.247.100', 1670552518, '__ci_last_regenerate|i:1670552518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f007fd4ef314c270fc9ee27381a1fd954b3651a', '172.105.247.100', 1670552518, '__ci_last_regenerate|i:1670552518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('610331a6396e03267a7f4bd358ac9e42592496c5', '31.222.203.2', 1670553202, '__ci_last_regenerate|i:1670553202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5e1a73c121de8b9d8a1723318b83dc7ca7230f', '31.222.203.2', 1670553204, '__ci_last_regenerate|i:1670553204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f318e299187b96a54317433c5f0288d4995e7a', '31.222.203.2', 1670553204, '__ci_last_regenerate|i:1670553204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e102bcb96c5aee5f69258d267c94bcc8c989bf1', '31.222.203.2', 1670553204, '__ci_last_regenerate|i:1670553204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6354fa3c327aa4c63b21f89e8ae414ed459e4b', '31.222.203.2', 1670553204, '__ci_last_regenerate|i:1670553204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a271d910fbeb4dd11fc51f2518db29067b482f9', '31.222.203.2', 1670553204, '__ci_last_regenerate|i:1670553204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0196cab5a91b8d430f3e523aa91b4a11968bd44e', '31.222.203.2', 1670555028, '__ci_last_regenerate|i:1670555028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8890136dd9cf4afdf7231a8dda132acdc5aa7c5', '31.222.203.2', 1670555028, '__ci_last_regenerate|i:1670555028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c61fc144413a74aa63091cd0f50d46fe38a71a1c', '31.222.203.2', 1670555028, '__ci_last_regenerate|i:1670555028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6516cd58ba9ad897b4f08e5c111e742ab70694f', '31.222.203.2', 1670555029, '__ci_last_regenerate|i:1670555029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed07936e44189c1c60e4a0142eb41ac9b95745ca', '31.222.203.2', 1670555029, '__ci_last_regenerate|i:1670555029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3101f78414ec1467d1e64f49bc184f7ebc80807', '31.222.203.2', 1670555029, '__ci_last_regenerate|i:1670555029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84ea73bbcc33dda7d5b120c5c7ca4ff0f1c00d8', '31.222.203.2', 1670556818, '__ci_last_regenerate|i:1670556818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ac2671342ef34a104330b1ddc3ca6b7d5a79b6', '31.222.203.2', 1670556820, '__ci_last_regenerate|i:1670556820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d37c70ad3cf3e900e6605da7b4e64bc0fed17e', '31.222.203.2', 1670556820, '__ci_last_regenerate|i:1670556820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ed1cbbaf858e2862aca1a4cb4c04e851af08b5', '31.222.203.2', 1670556820, '__ci_last_regenerate|i:1670556820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a654073d68fbdf6185626810618fbc23a1b750', '31.222.203.2', 1670556820, '__ci_last_regenerate|i:1670556820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af8c026b637103e26ad7a5848b4e1753198c6c7', '31.222.203.2', 1670556820, '__ci_last_regenerate|i:1670556820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e089df0d30e05a50b2f97e61a0174e20fec3196', '172.105.247.100', 1670557916, '__ci_last_regenerate|i:1670557916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b88d6fdcb4e73f3916fe402626a44a1d98cf30', '172.105.247.100', 1670557916, '__ci_last_regenerate|i:1670557916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aabd57a72d3ff8f15607534146f1abe09d8ed1b2', '172.105.247.100', 1670557916, '__ci_last_regenerate|i:1670557916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26645d83636eab933a56ebd7ed724a0bfd8b95a2', '172.105.247.100', 1670557917, '__ci_last_regenerate|i:1670557917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('444c8a8a163df5ab9fc4a50dead5510f0387871f', '172.105.247.100', 1670557917, '__ci_last_regenerate|i:1670557917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e2235ffa5c84fe613084cb8c4c6420c3e7b472', '172.105.247.100', 1670557917, '__ci_last_regenerate|i:1670557917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d3afa8e4f5a18881c348945226c4ee837d5180', '172.105.247.100', 1670557917, '__ci_last_regenerate|i:1670557917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be19e58626c2f5f4a5c6c0815e7790294f6ce9c2', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b49f1d87c661aaf1bb833f619b634707312c59f8', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd86a11c37f3d94b00294b35adc917b928d78bb2', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97a86d657ff72841fd88d995752a20a510f545e', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554ee6956ad1169f62fc0fe2c7b5df4b950ba556', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876aa5ae296dddb0ecd4576139c73bf24132857a', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41fbc7e058796b228f86ac192207030b741a9b5', '172.105.247.100', 1670557918, '__ci_last_regenerate|i:1670557918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33eaf7e68ad65614ba731d88fd7fa9701d0da8da', '172.105.247.100', 1670557919, '__ci_last_regenerate|i:1670557919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b327522af379d392874e1d9486ca00af58842897', '172.105.247.100', 1670557919, '__ci_last_regenerate|i:1670557919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66890802d022958622f87938bedf1389424f2ad9', '172.105.247.100', 1670557919, '__ci_last_regenerate|i:1670557919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a7c64ca24b4a8fc5495fe13377b5446d047221', '172.105.247.100', 1670557919, '__ci_last_regenerate|i:1670557919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a890713f3e21948d789c73fbaa225c65a2437b', '172.105.247.100', 1670557919, '__ci_last_regenerate|i:1670557919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f653ea228460d6ce6cce43b3eb5772e5cc551d64', '172.105.247.100', 1670557919, '__ci_last_regenerate|i:1670557919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4406a848ad85dd879ca2e5c68db6b96c085109', '172.105.247.100', 1670557920, '__ci_last_regenerate|i:1670557920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e798ff144b26469c41a37e6e777bee90a3d123', '172.105.247.100', 1670557920, '__ci_last_regenerate|i:1670557920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2efbf9609302b68150454ced9c433776371722', '172.105.247.100', 1670557920, '__ci_last_regenerate|i:1670557920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a40eb7a98002f43434945dace1ce5a3b58d8d2', '172.105.247.100', 1670557921, '__ci_last_regenerate|i:1670557920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc32cf44e05eb54124bf11f33684ed97beb3740d', '198.235.24.153', 1670557972, '__ci_last_regenerate|i:1670557972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893f8010f7d1a4591f8ee98c4aaef235f0769291', '31.222.203.2', 1670558619, '__ci_last_regenerate|i:1670558619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c4463540edfeef1e94678f7305964313604d76', '31.222.203.2', 1670558621, '__ci_last_regenerate|i:1670558621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5d1ffe2d3e6ba673e4d43f684f11384b8d8f7f', '31.222.203.2', 1670558621, '__ci_last_regenerate|i:1670558621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d28706655496fca52f75bc2ca000d8576824cbb', '31.222.203.2', 1670558621, '__ci_last_regenerate|i:1670558621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c36444290f6c0726d14683b18cd53bf8d97827ce', '31.222.203.2', 1670558621, '__ci_last_regenerate|i:1670558621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba648e9f43cab169d9e844843fb9afa87d16c134', '31.222.203.2', 1670558621, '__ci_last_regenerate|i:1670558621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21348ebab298b2190b4bc9355e1096122bb3684', '31.222.203.2', 1670560400, '__ci_last_regenerate|i:1670560400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288665259fb1bb11e177232dd4c0f31d0805e89d', '31.222.203.2', 1670560402, '__ci_last_regenerate|i:1670560402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83be18e7c07516097b8cd4b47ac3d932139b971', '31.222.203.2', 1670560402, '__ci_last_regenerate|i:1670560402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d063769e2a0c87f45e1cf3daa52d60847bb44e3', '31.222.203.2', 1670560402, '__ci_last_regenerate|i:1670560402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce487518d03274549f1c7393422c609567ffb012', '31.222.203.2', 1670560402, '__ci_last_regenerate|i:1670560402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde63f6e199917d55e27329d94536bcd78e521ad', '31.222.203.2', 1670560402, '__ci_last_regenerate|i:1670560402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f5207781bf75d7ea9b24dce1a21d4d632b87e5', '45.120.39.90', 1670569094, '__ci_last_regenerate|i:1670569094;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670569078;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4bfa5cb1bfa504b4f0bece622888c04e145ae2', '31.222.203.2', 1670562212, '__ci_last_regenerate|i:1670562212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36decc48b1f385cf0c44bac106b7754bceb654e', '31.222.203.2', 1670562214, '__ci_last_regenerate|i:1670562214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc2c28054ae71525f7b3fca7fa9027f313e3323', '31.222.203.2', 1670562214, '__ci_last_regenerate|i:1670562214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ece38bc07bd46295f3362a411a23dc88835cdba', '31.222.203.2', 1670562214, '__ci_last_regenerate|i:1670562214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('072782114c1d3a55cb8c93444a89a457e7e7ee6b', '31.222.203.2', 1670562214, '__ci_last_regenerate|i:1670562214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e20140337d02e0ab75e68c22cccfad7c13dfaf', '31.222.203.2', 1670562214, '__ci_last_regenerate|i:1670562214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0664d0b88bab0c8d436e016f4a72a994c726b4', '172.105.247.100', 1670563314, '__ci_last_regenerate|i:1670563314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb06992c228c0d258388c0a0f6b4c8bd28595266', '172.105.247.100', 1670563314, '__ci_last_regenerate|i:1670563314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102dbcb79ce5f5c8c730560ba35901b914033c12', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d572aed1873cb99f776308b67068e068488cc336', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748cbb9d23e1d2da4d938912f8759e6e5d55c90e', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('233cf828b331055d979fbaa2b48741f823efaf82', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d2a4d6cc02ac47e1f75c50819a6b3b1e602007', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84a7dbb0ac822d289ffd7d0ec3202e74e7abd4d', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70401d26ef74f2b4b4566286d18f4d64ed4bdec', '172.105.247.100', 1670563315, '__ci_last_regenerate|i:1670563315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edebedfea8ee861460b0e98cf61cb809a7df98f', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('debb835893879224af684a864af6940192e647ca', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c6589e6a5e0712f2e1a4db0ecb173b5656cc15', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a3bf7970f450b062d00ce150c7449e9275b2ad', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('743955147cae794d808ea8a25b7800b4a5c3241b', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082b06e406667912db6de84bb03a9f99575f786e', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb47f0205163b48d72ddba7d14b33e5c42b9bda', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3fffeca29f492766e95dea75ea05262c5c1c0b', '172.105.247.100', 1670563316, '__ci_last_regenerate|i:1670563316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700775e78e8ea919d974e65b056943e61a65e027', '172.105.247.100', 1670563317, '__ci_last_regenerate|i:1670563317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b40583111577ebd6c7d9fe8ade203ba91a3b30', '172.105.247.100', 1670563317, '__ci_last_regenerate|i:1670563317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150d2fb77613e3a2558d77fb0fa8b4c05993fea8', '172.105.247.100', 1670563317, '__ci_last_regenerate|i:1670563317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0280553b5d44ac12340302099212232578b8ef74', '172.105.247.100', 1670563317, '__ci_last_regenerate|i:1670563317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441f3a3f0928a86104b8f990ad3724063fffddbb', '172.105.247.100', 1670563317, '__ci_last_regenerate|i:1670563317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d757951fa98bbe1554f98827170a1ee9d38af665', '172.105.247.100', 1670563317, '__ci_last_regenerate|i:1670563317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99fb1f185f0b8b37b15e434ecfad351cd83f85d', '172.105.247.100', 1670563318, '__ci_last_regenerate|i:1670563318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc1c5887707f772d9684a19b4b18ea360f84f8e', '31.222.203.2', 1670564037, '__ci_last_regenerate|i:1670564037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11702466669d8233dbb9410ec368fa86752be55a', '31.222.203.2', 1670564037, '__ci_last_regenerate|i:1670564037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd05a9bac58679184d331e18b06ae2e6ea48541', '31.222.203.2', 1670564037, '__ci_last_regenerate|i:1670564037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e8011cb5edf8b8d4da9518bfad919eac4b99ab', '31.222.203.2', 1670564037, '__ci_last_regenerate|i:1670564037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5b6fd5695ba94b19ef6350497322a925c322c2f', '31.222.203.2', 1670564037, '__ci_last_regenerate|i:1670564037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f19784f74d82f8cbee3b649b247fceef9f5766', '31.222.203.2', 1670564037, '__ci_last_regenerate|i:1670564037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2379a93243dea2248fb3dee407c666c54dbc6c', '31.222.203.2', 1670565825, '__ci_last_regenerate|i:1670565825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a33d434957526cc31f4af289c06451673dd832', '31.222.203.2', 1670565825, '__ci_last_regenerate|i:1670565825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ef95e5877ffc632587ff5a92ef3dc5ed28b4c1', '31.222.203.2', 1670565825, '__ci_last_regenerate|i:1670565825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c09ecd14979fd2a7878164ead5a51229605e4bb6', '31.222.203.2', 1670565825, '__ci_last_regenerate|i:1670565825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbf7bc28e9a108ed411ab90796f67b0f3aa57ea', '31.222.203.2', 1670565825, '__ci_last_regenerate|i:1670565825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87df2df85cf549e8d403cbc2ff62a1a32f716d3', '31.222.203.2', 1670565825, '__ci_last_regenerate|i:1670565825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc915fe90a93cf79f4bfadd5815033a3d98c9e0', '172.105.247.100', 1670567517, '__ci_last_regenerate|i:1670567517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d66ba68c0c27c1fba727f1630fcae646319402', '172.105.247.100', 1670567517, '__ci_last_regenerate|i:1670567517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26530621782898a0242a13a8f0c192fa9e1cdea5', '172.105.247.100', 1670567517, '__ci_last_regenerate|i:1670567517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abec32aada76c5e1ad9b03a4f12042a9c4258b95', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0699c707aa30f04f905114dcc503595820ea51ed', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020ed94c4990ba52f71e8bf83cc9ae7045dbacc1', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990f83f97391088aae0accde0a3a016308f4ff16', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a9079160faaa2d9e021c0473ea768eb3ae17a0', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e5b3ae604ebc44620b57e74f13e56fbb16ef5f', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d6ed03e5e73c30bec091345b221d7f3a77e17d4', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401f22ce11359f4b69e4ddbc75a55e3dfa63310c', '172.105.247.100', 1670567518, '__ci_last_regenerate|i:1670567518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8556b64decdb7451b4e572bae35e624975159bcd', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea1f14589bd0f08fafd7dea14b51b7c77918f70', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d158d834190f31028661dd498e3b3252b91ba2', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d445222776b97b1b050c66803a8d3a7824ea1c9', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57d08977d042be58d3b85c2344b71ed85036e325', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a417439b13ba2c84895cc13adff13541725278f', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f91b5c911dd07303619e5d3e67ed84c3749075', '172.105.247.100', 1670567519, '__ci_last_regenerate|i:1670567519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63674c3ad520f6c787cadcf8bfe3dd18b299882', '172.105.247.100', 1670567520, '__ci_last_regenerate|i:1670567520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4059779d603d00a909e954256c9f55787e27ec4', '172.105.247.100', 1670567520, '__ci_last_regenerate|i:1670567520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9132697927ff2cd1fa404b1320c0039eba71fa', '172.105.247.100', 1670567520, '__ci_last_regenerate|i:1670567520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01003f5ee8cbf0e3a6a8c4599fcbc62078673c51', '172.105.247.100', 1670567520, '__ci_last_regenerate|i:1670567520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694189e50a4079e6affaea2c445818bc0b9bc43c', '172.105.247.100', 1670567520, '__ci_last_regenerate|i:1670567520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99fa83a2767ff5790ca3ad28acc6a40204c695bb', '172.105.247.100', 1670567520, '__ci_last_regenerate|i:1670567520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31b3d6243fd429daa9e8539cd518bce709000e27', '31.222.203.2', 1670567608, '__ci_last_regenerate|i:1670567608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff81d641a3b07e9c2acc7b2d6eddfc49bc42e7d2', '31.222.203.2', 1670567610, '__ci_last_regenerate|i:1670567610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9870c92e4e3c05be220572ebdda90483b908077', '31.222.203.2', 1670567610, '__ci_last_regenerate|i:1670567610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7589bf59dd45eec0d638072fe75d470c491f2fef', '31.222.203.2', 1670567610, '__ci_last_regenerate|i:1670567610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e945528362bb99d1844545e5e42ea456c6f3ff8f', '31.222.203.2', 1670567610, '__ci_last_regenerate|i:1670567610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4034fc4388155ca05aca9a39b76f21448f4661', '31.222.203.2', 1670567610, '__ci_last_regenerate|i:1670567610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('135b3b30544657ad410cc864765c37211a42938a', '45.120.39.90', 1670574035, '__ci_last_regenerate|i:1670574035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670569194;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d617f83713d52fd89cb07cb55d12bb3a63d062', '31.222.203.2', 1670569423, '__ci_last_regenerate|i:1670569423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e0578dfe73caede570c25d17d2297039d3c629', '31.222.203.2', 1670569424, '__ci_last_regenerate|i:1670569424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2585e8be9486af9015cbaf18de66e6e16354f340', '31.222.203.2', 1670569424, '__ci_last_regenerate|i:1670569424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4deea4fe7aa39f714e36af906dc92ccbe4f046', '31.222.203.2', 1670569424, '__ci_last_regenerate|i:1670569424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05df0aed5a7abf2e4be492e134cd7da39df16ff', '31.222.203.2', 1670569424, '__ci_last_regenerate|i:1670569424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4acbd3fae9461de34f8e7ccc2ac799981bff10', '31.222.203.2', 1670569424, '__ci_last_regenerate|i:1670569424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c275e50aca6c6aad7097cde57f200cbf79ee9ebe', '31.222.203.2', 1670571135, '__ci_last_regenerate|i:1670571135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b117d7a41443eb0dcd8dbb00cee9f949ea2f93ec', '31.222.203.2', 1670571135, '__ci_last_regenerate|i:1670571135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438b375ccbaadee9a42c62e7f4ee8bacc87ec3c0', '31.222.203.2', 1670571135, '__ci_last_regenerate|i:1670571135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888dd0a518e52dc1e82e7372139ffa836df0439f', '31.222.203.2', 1670571135, '__ci_last_regenerate|i:1670571135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a61743752ef11723c0f3ab3c5c7237427f60a29c', '31.222.203.2', 1670571135, '__ci_last_regenerate|i:1670571135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d0610d3dab00ed258eaca30215fc75d1a820ae', '31.222.203.2', 1670571135, '__ci_last_regenerate|i:1670571135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9302a0b405cda7b2a6c7835fbc3aa17f514ace', '31.222.203.2', 1670572935, '__ci_last_regenerate|i:1670572935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a244232f8dbd388467662a2d391456e67af57a', '31.222.203.2', 1670572937, '__ci_last_regenerate|i:1670572937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8b7c1360d8185fa317a649831abb98ec39e8df', '31.222.203.2', 1670572937, '__ci_last_regenerate|i:1670572937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839e8c96a7f601a77298c43d635f8f5f9cf9687e', '31.222.203.2', 1670572937, '__ci_last_regenerate|i:1670572937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa6064e629530b1f7a8350200e54cb1eed04fb0', '31.222.203.2', 1670572937, '__ci_last_regenerate|i:1670572937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab51c1c60a4d3561df142286baf3eda39144d22', '31.222.203.2', 1670572937, '__ci_last_regenerate|i:1670572937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00eb2c40aba95825546107a52f8460ef229ed78c', '172.105.247.100', 1670573515, '__ci_last_regenerate|i:1670573515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbf4df54b337c7e69bbfaa8756dbb17cf80f351', '172.105.247.100', 1670573516, '__ci_last_regenerate|i:1670573516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad2db1045b212217f0951973878997a6985d177', '172.105.247.100', 1670573517, '__ci_last_regenerate|i:1670573517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652de2462ac9c2ea0a4548c5f7c7948ce169030c', '172.105.247.100', 1670573517, '__ci_last_regenerate|i:1670573517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea46fd87811296cf4a5e8b3080932de604796d6', '172.105.247.100', 1670573518, '__ci_last_regenerate|i:1670573518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7996dbedf508c6ad69db1386afa4dece90fe8c', '172.105.247.100', 1670573518, '__ci_last_regenerate|i:1670573518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea8a556471d6f46ea922dc12ba38271a99840454', '172.105.247.100', 1670573518, '__ci_last_regenerate|i:1670573518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4189adce2e216387822054225e2b9aee20a91d5b', '172.105.247.100', 1670573518, '__ci_last_regenerate|i:1670573518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d35ecb3a9e47708bfb915aa302902882a74050', '172.105.247.100', 1670573518, '__ci_last_regenerate|i:1670573518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa35f0aa92a85e1943fb4217d20a75a16066ae3', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b77b17f97ebdc9061d50d1a351014c002f3be9b', '172.105.247.100', 1670573518, '__ci_last_regenerate|i:1670573518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eca32615940b491f8d68fc94f4c95e9393c96ae', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6f03700d93f03bf0a75fe930dbedd0b0054f72', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f584c3ba3a99aec01109be09fee2cf3a2ae0f9a', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4780fecf7d9086d4ca48cabc9f40a057903869a8', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7592173c0c66179e6a666bd15e33191a22f4ed33', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ba7f42a75cff74ad9ed6660cca456691d55d806', '172.105.247.100', 1670573519, '__ci_last_regenerate|i:1670573519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379765b67d891343f691afb41f479cac800bf5ea', '172.105.247.100', 1670573520, '__ci_last_regenerate|i:1670573519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc76abb3abc0227d7a67c95320bc56ae3fa5bb46', '172.105.247.100', 1670573520, '__ci_last_regenerate|i:1670573520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0203be542fed53222966a0fcb759550a6a48390', '172.105.247.100', 1670573520, '__ci_last_regenerate|i:1670573520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f94e12a2c079f64c1172498b75b5bb94216c385', '172.105.247.100', 1670573520, '__ci_last_regenerate|i:1670573520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f13f668052425a777bc0af835c4a48c0497402', '172.105.247.100', 1670573520, '__ci_last_regenerate|i:1670573520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75b5ce02e1c64b1f887003cd9cfea89abbe9217', '172.105.247.100', 1670573520, '__ci_last_regenerate|i:1670573520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215ae36e34f2a61068db12f95fba8ba3359a93ba', '172.105.247.100', 1670573521, '__ci_last_regenerate|i:1670573521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b871bbcd81b18ef711e24f8078c54d663a7d99', '45.120.39.90', 1670574862, '__ci_last_regenerate|i:1670574862;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670574076;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce312601ca4d5a6556de7b05650eb865f563972', '31.222.203.2', 1670574733, '__ci_last_regenerate|i:1670574733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d2f19a7a21a5e4aa1ef144330e872fe64ac9c8', '31.222.203.2', 1670574733, '__ci_last_regenerate|i:1670574733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3e6256e22396f8f75a282a1fedb59a1c027b88', '31.222.203.2', 1670574733, '__ci_last_regenerate|i:1670574733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0037cacf97f665454db8e646d92fe4ff22db7eb6', '31.222.203.2', 1670574733, '__ci_last_regenerate|i:1670574733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918b62ece992ea76031b5e2d36a75856cce30539', '31.222.203.2', 1670574733, '__ci_last_regenerate|i:1670574733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('272661763750e176603cccb92db5af1162219225', '31.222.203.2', 1670574733, '__ci_last_regenerate|i:1670574733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff5915c08b5e4d8aa908872ac7bf9a4393a26dd', '45.120.39.90', 1670577879, '__ci_last_regenerate|i:1670577879;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670574862;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b18e17db59bbf2d47bf32e3901e432894b9cc3', '31.222.203.2', 1670576535, '__ci_last_regenerate|i:1670576535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36fc2e92f84ab9986fc0d6e13a0a2b73f643ebf2', '31.222.203.2', 1670576537, '__ci_last_regenerate|i:1670576537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0be385ceb23f41b2903a71afcdbdfab5842baaa', '31.222.203.2', 1670576537, '__ci_last_regenerate|i:1670576537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66dab5b3a7433c26b6b0b036a7ba74ccd37e2e17', '31.222.203.2', 1670576537, '__ci_last_regenerate|i:1670576537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93d14cd2fbbbc76efc4c59ac00146b3897685be', '31.222.203.2', 1670576537, '__ci_last_regenerate|i:1670576537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ccd54cad8c776d4064cfb1c8279abb742c0b7f', '31.222.203.2', 1670576537, '__ci_last_regenerate|i:1670576537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3145ea29cd5819d87b26c4e2eae16d4c086b9d3', '45.120.39.90', 1670580856, '__ci_last_regenerate|i:1670580856;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670577900;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80cd07a5035941fe09650ef3ecc57cd6e3b7f2e5', '172.105.247.100', 1670578317, '__ci_last_regenerate|i:1670578317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0232dea0e66286cc7841333096b2530d8b4475ca', '172.105.247.100', 1670578318, '__ci_last_regenerate|i:1670578318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8514f2b98806f5db12941f4222eec339bf59d1ec', '172.105.247.100', 1670578318, '__ci_last_regenerate|i:1670578318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c3ef50258a728b45578a5f22aa39d1ddaf7cb7', '172.105.247.100', 1670578318, '__ci_last_regenerate|i:1670578318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d7d5f40ff7611fc1f31e2bbc78b0041754dfba', '172.105.247.100', 1670578319, '__ci_last_regenerate|i:1670578319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1065026efb795ca528e4506ee915d1942261500e', '172.105.247.100', 1670578319, '__ci_last_regenerate|i:1670578319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0adb3f2269b5f15ef2ce4c22cdaf48eca8dae7', '172.105.247.100', 1670578319, '__ci_last_regenerate|i:1670578319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba3fff6c65d241dd4a1b5edaa68857df6410917', '172.105.247.100', 1670578319, '__ci_last_regenerate|i:1670578319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3757e56987a05804f0801e7f32f299e529458c70', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda9ddb172e1795c9cf3001b63a32c97fa210bbf', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d03fda6372324571039f6cc8ee71022022ba35e', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dec3d19a9b944369f59277b19e84d49c58c93e3', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55672b8da56b02e068d07db963340b25c2044f05', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8c12863a1eb6fd25b17daecbd4aa9f0e0431a7', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629339aa05ca19a227c1b17ae981217e0fa6a210', '172.105.247.100', 1670578320, '__ci_last_regenerate|i:1670578320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c569d9395845898f28994519f595509443833b70', '172.105.247.100', 1670578321, '__ci_last_regenerate|i:1670578321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ff266081231fa6c6426dd2053c013c5db089c4', '172.105.247.100', 1670578321, '__ci_last_regenerate|i:1670578321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a72c6dfa8b3f758d9a0475dabfc474bd0083b81', '172.105.247.100', 1670578321, '__ci_last_regenerate|i:1670578321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a264ecd08a8b41fc3223db6a6a9e34ed31e1ea82', '172.105.247.100', 1670578321, '__ci_last_regenerate|i:1670578321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f9ce319e36ec6d4386f718c8ee07b035a430852', '172.105.247.100', 1670578321, '__ci_last_regenerate|i:1670578321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723023e3b66adac03808e70901f82f86727a4841', '172.105.247.100', 1670578322, '__ci_last_regenerate|i:1670578322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7aa0dfe4d711458ae8157deb29a63eb80810de', '172.105.247.100', 1670578322, '__ci_last_regenerate|i:1670578322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3eb8a8003b7a7414476d8edae12c989355e16c5', '172.105.247.100', 1670578322, '__ci_last_regenerate|i:1670578322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7097704c1cf6d2da66c4815447ee941c336cc8f7', '172.105.247.100', 1670578322, '__ci_last_regenerate|i:1670578322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e343edbb543c2100e914742244d38bbb98219596', '31.222.203.2', 1670578332, '__ci_last_regenerate|i:1670578332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a97640f77f95c9ee35abeddc15059aeb4be8ee8', '31.222.203.2', 1670578334, '__ci_last_regenerate|i:1670578334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314738fcbcfb8320a4f18661e5071f5cd1867f25', '31.222.203.2', 1670578334, '__ci_last_regenerate|i:1670578334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e41ad7acce79a8c93eea2fb1012212377ef5df8', '31.222.203.2', 1670578334, '__ci_last_regenerate|i:1670578334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1872c41815a9f8087cc0c4d7333100dcf8397982', '31.222.203.2', 1670578334, '__ci_last_regenerate|i:1670578334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967c178aa2cd05bfac489d7e6cf022161a867c46', '31.222.203.2', 1670578334, '__ci_last_regenerate|i:1670578334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4199d3dd6dee7e73992810b9297ba11405a5c7', '31.222.203.2', 1670580131, '__ci_last_regenerate|i:1670580131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0af12b011e3361529538e21a07afe6422c262e7', '31.222.203.2', 1670580133, '__ci_last_regenerate|i:1670580133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e93584a5ab6a98d4d8220bf90d17640457f316f', '31.222.203.2', 1670580133, '__ci_last_regenerate|i:1670580133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a175eda8a70d693cc0596b14423ae8647b59b13', '31.222.203.2', 1670580133, '__ci_last_regenerate|i:1670580133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c867773a6d7a853a5b028eb3be5aee9f3c038889', '31.222.203.2', 1670580133, '__ci_last_regenerate|i:1670580133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94db0528cfb6225a73a5e773860380b7730c7710', '31.222.203.2', 1670580133, '__ci_last_regenerate|i:1670580133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15fcf5799bae2d485e92593c16c41305893f827c', '45.120.39.90', 1670588121, '__ci_last_regenerate|i:1670588121;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670588090;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020302eddc63286e6d3ce01d4818378aa9c35a23', '31.222.203.2', 1670581932, '__ci_last_regenerate|i:1670581932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fe915dd0d8c0fe7c460cb85afbc0f2f028109a', '31.222.203.2', 1670581934, '__ci_last_regenerate|i:1670581934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d83a4282a89ec109d567d361e14032311ada45', '31.222.203.2', 1670581934, '__ci_last_regenerate|i:1670581934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274c2611ea5894ee7a5b4649a474bf7604837a17', '31.222.203.2', 1670581934, '__ci_last_regenerate|i:1670581934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e37e1127373909f56c71f59d0a3a0877a19fbeb', '31.222.203.2', 1670581934, '__ci_last_regenerate|i:1670581934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485fc47207d2ae849d5f50469ed3724d72c21e1d', '31.222.203.2', 1670581934, '__ci_last_regenerate|i:1670581934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3963c2499dd46d7b80ae750d3b2778177426841', '172.105.247.100', 1670583108, '__ci_last_regenerate|i:1670583108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca43f111bf7d356c093a87549c150ffb54c68df7', '172.105.247.100', 1670583111, '__ci_last_regenerate|i:1670583111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2429fb6635af66223afe5195c6a356c30e80fb2d', '172.105.247.100', 1670583111, '__ci_last_regenerate|i:1670583111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acdf2795eff7e64accb92951d7fcd0901273bbc5', '172.105.247.100', 1670583111, '__ci_last_regenerate|i:1670583111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1571c9c3ba0b92f0d13a34bebcecb25a30de0912', '172.105.247.100', 1670583111, '__ci_last_regenerate|i:1670583111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9755750627b76fb21b62942836973f3a768f9b28', '172.105.247.100', 1670583111, '__ci_last_regenerate|i:1670583111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15cf41ebf4d8f29357d05c9da2265a9114de8dc6', '172.105.247.100', 1670583111, '__ci_last_regenerate|i:1670583111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d204135447cb926fb3e0e541b22353550dd385', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799b02d1115f278de3226ae777f236a026307d7d', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('667e00439fe6cfc8100c8ce20be74c2098eaf888', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e522b5c22f6dbd127ad16bd63577b20d093fe09', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e865a553421128080e01ff5087aa13b5606f072d', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc17f2a080c40e6c2cdb7b8db0d2aafe30b7e09', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d40d19b084a2273ac2dac4422ac7028c894980e', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f1bc7886da4cf7c93d51b826838df0e8a90b4a', '172.105.247.100', 1670583112, '__ci_last_regenerate|i:1670583112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4287419eef13332a40000647aa082be5fa105169', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f34b20fede8d77b9e14ace0dff12dcc457a76e27', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6406b0920b0f18a7bcb69f1315345468dbe964ba', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de58e680fbad3366c88ba77ea7ba6305bcd9d1d8', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ca342df4df3d0ad00d81c960afec53ed0125e32', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1535df644ac99594dd1dce220114f4e3af0365c', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e575a3476956263e6518b6ab3a886099c0076a10', '172.105.247.100', 1670583114, '__ci_last_regenerate|i:1670583113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c23d43358dbb53b6089fe8f3fccadf986e6f3c', '172.105.247.100', 1670583113, '__ci_last_regenerate|i:1670583113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc816b680b12f49bbcaec0f795324434fce7d3e', '172.105.247.100', 1670583114, '__ci_last_regenerate|i:1670583114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0a3da5f961b72218caf3e2fed771ce22b65fec', '31.222.203.2', 1670583737, '__ci_last_regenerate|i:1670583737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc87be71a13112710b232eafe7570c8cae73131', '31.222.203.2', 1670583739, '__ci_last_regenerate|i:1670583739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ee34036ee21f8655f8b50746a92d24512161c7', '31.222.203.2', 1670583739, '__ci_last_regenerate|i:1670583739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eadcacfb5cb8e7a4ceebbda14dda27d46381fd2', '31.222.203.2', 1670583739, '__ci_last_regenerate|i:1670583739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7789e838ae69bd48dbbada5723878454a68e17', '31.222.203.2', 1670583739, '__ci_last_regenerate|i:1670583739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df1286cb8088999633b979305e5b0bcd59c44a1', '31.222.203.2', 1670583739, '__ci_last_regenerate|i:1670583739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c4fec44f0c1d83484daa90116ffa497f42e640', '198.235.24.133', 1670584659, '__ci_last_regenerate|i:1670584659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc21999b34d08e10438830fbe67da63a1679763d', '31.222.203.2', 1670585534, '__ci_last_regenerate|i:1670585534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8271b655e8f58ec98302e697dbbc554acfa2d8c6', '31.222.203.2', 1670585536, '__ci_last_regenerate|i:1670585536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046263702650ce6a2ffbbe59056fdaa77b4ae8a1', '31.222.203.2', 1670585536, '__ci_last_regenerate|i:1670585536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82ee055f5409914756bf1ea3cdfdb556f9a469c', '31.222.203.2', 1670585536, '__ci_last_regenerate|i:1670585536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d24bf7973dbcfa9475cd5e9528b1027b28070f47', '31.222.203.2', 1670585536, '__ci_last_regenerate|i:1670585536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2943a79399e42b97cdbc136c3f0c75d60c7723', '31.222.203.2', 1670585536, '__ci_last_regenerate|i:1670585536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9742276458beecbd344bdc26f51d5bc402cbfd01', '31.222.203.2', 1670587341, '__ci_last_regenerate|i:1670587341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b90e026daa3d29a3cfcaee7656c1634e64b196', '31.222.203.2', 1670587343, '__ci_last_regenerate|i:1670587343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74abf1d1bb9c5101cb6951a3f202e62beb7dc9b', '31.222.203.2', 1670587343, '__ci_last_regenerate|i:1670587343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9179156893b110f2a151beee940079dfe4e1227', '31.222.203.2', 1670587343, '__ci_last_regenerate|i:1670587343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9047120ba3e89c1f1bc513d61912685b455bf1', '31.222.203.2', 1670587343, '__ci_last_regenerate|i:1670587343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f22801c26fb8d06912c55353dbba6a3e475a5f4', '31.222.203.2', 1670587343, '__ci_last_regenerate|i:1670587343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19684880f7a35e2d9db5088cfc7f4083609e1de7', '172.105.247.100', 1670587929, '__ci_last_regenerate|i:1670587929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0546c6ac9c00508baca2883523a197e1350d3c', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18a41b2a0090bd82ab82279e196f2e972f2713d8', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5288c584a15346e007ba0ce273bca427eab3e114', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a16f06509e67b6df88808b824a6f6e936ec368c3', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889f8778b521aa1a63db287ce25129b204a594bb', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e915b8d8920482072ac8879bcfae93e8cc619f56', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d802e38ad73ffbc6fe01b8dd01ea6ce7a36beb4', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a45a126d1b4e7278518b37534e644ec909d0613f', '172.105.247.100', 1670587932, '__ci_last_regenerate|i:1670587932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30621677ad29fedd8201d39565b74314a45b967e', '172.105.247.100', 1670587933, '__ci_last_regenerate|i:1670587933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b18ce7ae928bdebdc0f10aaca3d7dedfe67284', '172.105.247.100', 1670587933, '__ci_last_regenerate|i:1670587933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e08e2ffcb86948c926ade057b6fd8fa982aa475', '172.105.247.100', 1670587933, '__ci_last_regenerate|i:1670587933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b1eea383ced6c3ae8f08d98ff84906c6e87506', '172.105.247.100', 1670587933, '__ci_last_regenerate|i:1670587933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f052b99757dd09ea53759474527c0400bcd9d610', '172.105.247.100', 1670587933, '__ci_last_regenerate|i:1670587933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba984d57f9f097aedca8d20b8ca236a2eacb06d', '172.105.247.100', 1670587933, '__ci_last_regenerate|i:1670587933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d561b489df6801fc4ac45c0ca5e7dfe2f5759d6e', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902d2c2b02a161e7b60d9bae23ae652f1f72b9b3', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89ef6cda6e3855cb92b66a2948a9189f375460e', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f9571d06149c82978d134249d51459aa6078c5', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b514c9436fd48c300b6a29525ee52434985f3036', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20bfefe572bce715fc622fa1869c40906c8a8e49', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a47e85b68d269bf177082da56df028e0a981acf', '172.105.247.100', 1670587934, '__ci_last_regenerate|i:1670587934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4841842a54ef6ed8de4278e377b79d3606902a55', '172.105.247.100', 1670587935, '__ci_last_regenerate|i:1670587935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6931f79d6a702edbec047cffe58fe24ab24e75', '172.105.247.100', 1670587935, '__ci_last_regenerate|i:1670587935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d73071da216a777e6658dd6f30085d5e56011d', '37.111.219.182', 1670588467, '__ci_last_regenerate|i:1670588467;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670588186;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c757dc8c95aa5617f0d1b4a28062b85cddbdba', '37.111.219.182', 1670589066, '__ci_last_regenerate|i:1670589066;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670588557;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46785d56bf5bde24b5431c45351dfb8af00b9e4d', '37.111.219.182', 1670590132, '__ci_last_regenerate|i:1670590132;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670589675;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7075b7d070c0278cc27fb169653b704c88f59836', '31.222.203.2', 1670589144, '__ci_last_regenerate|i:1670589144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f177a9fd8ed8016d3eeb75322eb302eebb46ffb', '31.222.203.2', 1670589144, '__ci_last_regenerate|i:1670589144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec826481fb14ce11323fb1cd0d3294bbb05868ee', '31.222.203.2', 1670589144, '__ci_last_regenerate|i:1670589144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e9c1261deb87ee0e6e0d355293ec70b52d39c8', '31.222.203.2', 1670589144, '__ci_last_regenerate|i:1670589144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844652975f50cd98e3d1a6b0f02bcbce0844c24e', '31.222.203.2', 1670589144, '__ci_last_regenerate|i:1670589144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66cbf38678126cdae8cdaa7f4bd6a53c025626fe', '31.222.203.2', 1670589144, '__ci_last_regenerate|i:1670589144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb24c74a1cdeee93f2a6b3ee734580731d8b5195', '37.111.219.182', 1670590564, '__ci_last_regenerate|i:1670590564;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670590132;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e009294c277f9cfe2b14af0091eae45afa4b43', '37.111.219.182', 1670591167, '__ci_last_regenerate|i:1670591167;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670590819;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431a2c6c518131a49ce21470913c64fc140fb622', '31.222.203.2', 1670590941, '__ci_last_regenerate|i:1670590941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b9086fccb1f5abb66ee6cdd6dc18160de638b08', '31.222.203.2', 1670590942, '__ci_last_regenerate|i:1670590942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c990d838d96089fd389fd6f6f1d7426faf7d851f', '31.222.203.2', 1670590942, '__ci_last_regenerate|i:1670590942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39aad792eafa76c185d6baa84d7afae0d6a5b849', '31.222.203.2', 1670590942, '__ci_last_regenerate|i:1670590942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d662655a3fbbea8450202a4aac052de718621865', '31.222.203.2', 1670590942, '__ci_last_regenerate|i:1670590942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4264f5558fbbd0f5daced6766945791caf2b380f', '31.222.203.2', 1670590942, '__ci_last_regenerate|i:1670590942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f48dcbb66e78442f3063be288f51b87a1267e16', '37.111.219.182', 1670591511, '__ci_last_regenerate|i:1670591511;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670591235;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd8f7920f3a29f279bc8519a6ddf7cb2ffbc7dd2', '37.111.219.182', 1670591913, '__ci_last_regenerate|i:1670591913;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670591553;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdbb8c7f7fbfa2692b26ad9172f4d3f23164c8cc', '37.111.219.182', 1670594039, '__ci_last_regenerate|i:1670594039;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670594038;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5764ec7714a0f203917b24a47c481c3f2402d7e3', '172.105.247.100', 1670592112, '__ci_last_regenerate|i:1670592112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6044748355183ee87c3509bf188eb7512a6961', '172.105.247.100', 1670592112, '__ci_last_regenerate|i:1670592112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8488f782c01c0b97378207aeb1ae9a9c59b4bdc2', '172.105.247.100', 1670592112, '__ci_last_regenerate|i:1670592112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109e88e3d001bc5462a70c627d44de8be1f16915', '172.105.247.100', 1670592112, '__ci_last_regenerate|i:1670592112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c18687b5cbf592af68def0470184ff2c52b8ac', '172.105.247.100', 1670592112, '__ci_last_regenerate|i:1670592112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a24604a75271fca7605ec676f1a5c845105688', '172.105.247.100', 1670592113, '__ci_last_regenerate|i:1670592113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d402b45d6bd4b13f1c48c633cbb81ff39e79c9', '172.105.247.100', 1670592113, '__ci_last_regenerate|i:1670592113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6700a07e913c7327425f3563751a69e83cde27fa', '172.105.247.100', 1670592113, '__ci_last_regenerate|i:1670592113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d18c46989fa89c0d08f3d674a010cf07e990c56', '172.105.247.100', 1670592113, '__ci_last_regenerate|i:1670592113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9952703ea524ffbd283c65c51d3057f707a2125c', '172.105.247.100', 1670592114, '__ci_last_regenerate|i:1670592114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ce12488ba4f7ef562e1c8f1412f95bd1d37710', '172.105.247.100', 1670592114, '__ci_last_regenerate|i:1670592114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a868cf18070269af1557a6b2defbfa83fe8f6d8', '172.105.247.100', 1670592114, '__ci_last_regenerate|i:1670592114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63bdeb345e75b12dd570ac7f5058412ffdd9434d', '172.105.247.100', 1670592114, '__ci_last_regenerate|i:1670592114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b31b5bf3fe1e263151d884baaf6fd55b930819e', '172.105.247.100', 1670592115, '__ci_last_regenerate|i:1670592114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aafc3c6db4824051347ff858d71cb06ce811f975', '172.105.247.100', 1670592115, '__ci_last_regenerate|i:1670592115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3747943fa1a158a88a9f126c2d28f42395ce6b7c', '172.105.247.100', 1670592115, '__ci_last_regenerate|i:1670592115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534f4327291ea944c26d5f3818eb4146b996035d', '172.105.247.100', 1670592115, '__ci_last_regenerate|i:1670592115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1a678e2a2b64e3245d2202c266e7c0a2eab0b5', '172.105.247.100', 1670592115, '__ci_last_regenerate|i:1670592115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f11b1ce312f4339eebe72bba7a9718db4a54b1c', '172.105.247.100', 1670592116, '__ci_last_regenerate|i:1670592116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92add0d35f25ade67dfa78e7caf6cd39a5765ee2', '172.105.247.100', 1670592116, '__ci_last_regenerate|i:1670592116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876cf749e65c75b90048d696fcfb84ea8e0d7eb5', '172.105.247.100', 1670592116, '__ci_last_regenerate|i:1670592116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3063c56217d09585acad574a2ff2d47ddbfa5757', '172.105.247.100', 1670592116, '__ci_last_regenerate|i:1670592116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31857f1c3357abb32d44d027940e1dbae0d16312', '172.105.247.100', 1670592117, '__ci_last_regenerate|i:1670592117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9ecb5bf38c4777f5b7c0c29802ab1e4540b6a4', '172.105.247.100', 1670592117, '__ci_last_regenerate|i:1670592117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e388179fffb224d35b311ec7940db4f2f3b7b5', '31.222.203.2', 1670592735, '__ci_last_regenerate|i:1670592735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f117c0c8a25aee0350be2a79ad54e3fae8363162', '31.222.203.2', 1670592735, '__ci_last_regenerate|i:1670592735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3623559b9938b12eb1cecc91de6abcd851796e8b', '31.222.203.2', 1670592735, '__ci_last_regenerate|i:1670592735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da0e89fcef0bab6a29105ae41dfd4a0a7dc3be0', '31.222.203.2', 1670592737, '__ci_last_regenerate|i:1670592737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c3142b273be36c2c2481a49c2b11ed8b6ad503', '31.222.203.2', 1670592737, '__ci_last_regenerate|i:1670592737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb640362a1174c7697076ca76e6cdb2be6c31ae4', '31.222.203.2', 1670592737, '__ci_last_regenerate|i:1670592737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f5aa07c646cfb4ee9167c9b405ff2ae665b2c6', '37.111.219.182', 1670596411, '__ci_last_regenerate|i:1670596411;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670596406;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db030f89af5debfe0a7d3e7a10bcdd5a89fc08c', '162.214.112.164', 1670594420, '__ci_last_regenerate|i:1670594420;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632519ec6e2e7bda7573de93291556ce7a21ebb2', '31.222.203.2', 1670594533, '__ci_last_regenerate|i:1670594533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49a2459743977726dbecd66d8c6f19c945ee7ba', '31.222.203.2', 1670594533, '__ci_last_regenerate|i:1670594533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac75a1254a4b58ebb456946e529cb36b78f11fa0', '31.222.203.2', 1670594533, '__ci_last_regenerate|i:1670594533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb90a333ae3be87763b5460713096641ce681a5', '31.222.203.2', 1670594533, '__ci_last_regenerate|i:1670594533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92861ec803cbc8ce7cbab99dd6c91040e16436f0', '31.222.203.2', 1670594533, '__ci_last_regenerate|i:1670594533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce7fc7ea9bdb190596e0e77da436c5d314859fd', '31.222.203.2', 1670594533, '__ci_last_regenerate|i:1670594533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2bb13a9c95fa9a7393995dde8d20a0e321b86f', '198.235.24.56', 1670596042, '__ci_last_regenerate|i:1670596042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1e04c3e5507430cb62c041a3cfed2b39697a09', '31.222.203.2', 1670596344, '__ci_last_regenerate|i:1670596344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22f4454554bf1b2a94329c507828568e2f03bc7', '31.222.203.2', 1670596345, '__ci_last_regenerate|i:1670596345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d685b8805fd7aad7d55c68a2810b3b5956603872', '31.222.203.2', 1670596345, '__ci_last_regenerate|i:1670596345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3cac311c936555c7db1aa72537a2356a0e19ccb', '31.222.203.2', 1670596345, '__ci_last_regenerate|i:1670596345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a45cdce27d1920177d4aec11cce6ca265601d1', '31.222.203.2', 1670596345, '__ci_last_regenerate|i:1670596345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb75e083cfcdde969e17ab0478728e8eed88a10b', '31.222.203.2', 1670596345, '__ci_last_regenerate|i:1670596345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908269d1f31be708a1e9f9627ff888dbee53a3ee', '37.111.219.182', 1670597381, '__ci_last_regenerate|i:1670597381;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670596411;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f5e1fe54639537ae2c19431130518312da6c0a', '37.111.219.182', 1670597941, '__ci_last_regenerate|i:1670597941;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670597935;register_id|s:3:\"274\";cash_in_hand|s:9:\"4200.0000\";register_open_time|s:19:\"2022-12-08 20:06:52\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d273a3b5f0b9da80fb5a913fb0e58525d1dd74e', '172.105.247.100', 1670597512, '__ci_last_regenerate|i:1670597512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d3dfd080b4310cfd3e6ef58d2ec4dd1d490cdc', '172.105.247.100', 1670597512, '__ci_last_regenerate|i:1670597512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9896c4787032c949ca967bcd0165883847272af7', '172.105.247.100', 1670597513, '__ci_last_regenerate|i:1670597513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed9e30377f7a0bd0785e47ac59df6e1210acbd0', '172.105.247.100', 1670597513, '__ci_last_regenerate|i:1670597513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30729f3cc8f01329b3989d6177fb3a7fe85205a7', '172.105.247.100', 1670597514, '__ci_last_regenerate|i:1670597514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f892d55ee6bd70ce18fe44a9114b3300f6687810', '172.105.247.100', 1670597514, '__ci_last_regenerate|i:1670597514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07383bfd59942c607677ab42f6174e3b3ae128d', '172.105.247.100', 1670597514, '__ci_last_regenerate|i:1670597514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e17cedef2a6eec86108a786e3e669de6889c8d', '172.105.247.100', 1670597514, '__ci_last_regenerate|i:1670597514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84f77bb405c1eb7bcfd53b3aec61325030a2921', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7882cebedc29df9fb79f81b60fbb85867e445d79', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796c6a431bb253dc314dcfbac7a31c023b3f5e98', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d13518ba33d75afc0a3e8556bd665832ffd1b24', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e29cd8dc6decfb29d24c76cf70906f99c154ad6', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53dfee2f988965fa63f8b1e73071e2d60c2394e1', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da19c22254fee2cb3d93f9209dceb0f096ebcf5', '172.105.247.100', 1670597515, '__ci_last_regenerate|i:1670597515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b740b097e0b594e2682b1e24854112d02e100c37', '172.105.247.100', 1670597516, '__ci_last_regenerate|i:1670597515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f639f40e8ad81faaa16b416074f76eadc6e5e5', '172.105.247.100', 1670597516, '__ci_last_regenerate|i:1670597516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('085f0f0556ce0c376575bc1fc7c976f001d6f2df', '172.105.247.100', 1670597516, '__ci_last_regenerate|i:1670597516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40726884d5bf62d407b67ad785506c09354508eb', '172.105.247.100', 1670597516, '__ci_last_regenerate|i:1670597516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de085d80e6e49f6deacf06da31470dcd3dd350e6', '172.105.247.100', 1670597516, '__ci_last_regenerate|i:1670597516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a624d303f930248df9cfc5b798daefb2c4400bf3', '172.105.247.100', 1670597516, '__ci_last_regenerate|i:1670597516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40df0b9e466b8cfaefc176417268d40392f795b0', '172.105.247.100', 1670597517, '__ci_last_regenerate|i:1670597517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7480d5df85c108af8e90331d9d7d65ebbce2b87', '172.105.247.100', 1670597517, '__ci_last_regenerate|i:1670597517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da1b92f3e040e0bf8f21114b6d456c96558bba7', '172.105.247.100', 1670597517, '__ci_last_regenerate|i:1670597517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4ca45ca395704a3933c0f928a1cdb6bfbb2b90', '37.111.219.182', 1670597966, '__ci_last_regenerate|i:1670597941;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670473334\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670597966;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dab56ea20e7026dfefc724dc16bfc7222b707c', '31.222.203.2', 1670598141, '__ci_last_regenerate|i:1670598141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a92e3fa0a6dc054bc78b06350c602a14f4aa5a8', '31.222.203.2', 1670598143, '__ci_last_regenerate|i:1670598143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07bc72417438d2b6ec45f68054044b8d6e5c94e', '31.222.203.2', 1670598143, '__ci_last_regenerate|i:1670598143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b95627d620cec7255e41bb1d2a05beb9d22f26e', '31.222.203.2', 1670598143, '__ci_last_regenerate|i:1670598143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4464396b68fa73eb8ceffac8482f8968d1c0cd0c', '31.222.203.2', 1670598143, '__ci_last_regenerate|i:1670598143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a9fae3ab954b21ad406f29ca5e78ee7d79b368b', '31.222.203.2', 1670598143, '__ci_last_regenerate|i:1670598143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b947092ce887f6559c0eadf8ae2636de389d10b7', '31.222.203.2', 1670599936, '__ci_last_regenerate|i:1670599936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d690799193ed419ef65ae8fa254d24873bd573', '31.222.203.2', 1670599937, '__ci_last_regenerate|i:1670599937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1d90e7b3cda316ffb4016c9d109e1a1e009608', '31.222.203.2', 1670599937, '__ci_last_regenerate|i:1670599937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0adff5d5eda8b81357dbf340e201d8dac11477', '31.222.203.2', 1670599937, '__ci_last_regenerate|i:1670599937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf3039ee5e3c1763616fbaf6cfeececc4e6ea52', '31.222.203.2', 1670599937, '__ci_last_regenerate|i:1670599937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6385b9b69baefa45cf73b3a2b4267525d579cac2', '31.222.203.2', 1670599937, '__ci_last_regenerate|i:1670599937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb583240c0ed0a373e13d85b11901af957df2646', '31.222.203.2', 1670601743, '__ci_last_regenerate|i:1670601743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f6f4c353d3086e99129e80bc796bdf9cc35451', '31.222.203.2', 1670601743, '__ci_last_regenerate|i:1670601743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934548443600ea65a64b6fb57d442af6c38199b6', '31.222.203.2', 1670601743, '__ci_last_regenerate|i:1670601743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959b41413c81bb4212edfcb0ffa706a241cfa0bb', '31.222.203.2', 1670601743, '__ci_last_regenerate|i:1670601743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e31eb561a75710e51ddd489efb61b77ed6ca7b6', '31.222.203.2', 1670601743, '__ci_last_regenerate|i:1670601743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72bb14ae5c2d1ade584abe8014751137fa949b58', '31.222.203.2', 1670601743, '__ci_last_regenerate|i:1670601743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8afc71f4628d966361c08da2106786c3587075aa', '116.204.230.26', 1670602376, '__ci_last_regenerate|i:1670602313;requested_page|s:25:\"admin/reports/daily_sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1669897039\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bddb09d7b7b94c3b879925c93f8932f32b30fb01', '172.105.247.100', 1670603512, '__ci_last_regenerate|i:1670603512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0fa02463bcd3f60ac77bc5a961d46d0b2db396', '172.105.247.100', 1670603513, '__ci_last_regenerate|i:1670603513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d06703fb1ff3e5189c767ebbcaec8a991b67cb', '172.105.247.100', 1670603513, '__ci_last_regenerate|i:1670603513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4163d20a77642a1712e9a587f992852d27d92fe', '172.105.247.100', 1670603513, '__ci_last_regenerate|i:1670603513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58fe60a19c6da5d5cfac936ea31e95fe42d084ae', '172.105.247.100', 1670603514, '__ci_last_regenerate|i:1670603514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74b3e44c4b2952cb12f1a0a9a9b5272bfbb4041', '172.105.247.100', 1670603514, '__ci_last_regenerate|i:1670603514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f12ea98870f0e1b37d23307fb81a4ea82241a69', '172.105.247.100', 1670603514, '__ci_last_regenerate|i:1670603514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cba41fde0e4e35cba19c2f8e0184627945f666e', '172.105.247.100', 1670603514, '__ci_last_regenerate|i:1670603514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15e46abd75b7a992bdd6c74f4c4b7f795275ad4', '172.105.247.100', 1670603514, '__ci_last_regenerate|i:1670603514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8f49faf549de13505b580dcabdf97268962a37', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33360b8458bca9384bcbbc6b253a6b7ea9f724dd', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7828f6ea7d29ec1d6c33e11f4ff8e81056cb6380', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350827d6736dc8dd3ad4744ee3329076140bb39d', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a51ccdf82465bb6bfe0a48f0baa0542f32fb8a9', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2975201cb5148b828d0da355f4f5536e2d9944', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c473ec74ec4651fb57385e93ee489452dafab9', '172.105.247.100', 1670603515, '__ci_last_regenerate|i:1670603515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95bfe7bea88fcfd58966014a2b94b426d7ff927', '172.105.247.100', 1670603516, '__ci_last_regenerate|i:1670603515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3198d792cdc1e6828062094290e8387810691cb9', '172.105.247.100', 1670603516, '__ci_last_regenerate|i:1670603515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60f7f95003c47f4a3dd9f7a8679f6906063d446', '172.105.247.100', 1670603516, '__ci_last_regenerate|i:1670603516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc3dc17f09e5fa864c75c145911b9281a7d1d39', '172.105.247.100', 1670603516, '__ci_last_regenerate|i:1670603516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc40b9f2560af801c37a8274461a3afe42fbadf3', '172.105.247.100', 1670603516, '__ci_last_regenerate|i:1670603516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b0a868dbb10e70ea7a447376de3e6b8b36ae048', '172.105.247.100', 1670603517, '__ci_last_regenerate|i:1670603517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8c667faf0d7a8cff4b67dcb006c85db0afbe0e', '172.105.247.100', 1670603517, '__ci_last_regenerate|i:1670603517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba866a5489b930d1785d91a69baad4919749094', '172.105.247.100', 1670603517, '__ci_last_regenerate|i:1670603517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51a426525e2c8f511a77aa53181f531c6079294', '31.222.203.2', 1670603546, '__ci_last_regenerate|i:1670603546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80e86ab94e257215be6e7c801dc13ceb8d871c36', '31.222.203.2', 1670603548, '__ci_last_regenerate|i:1670603548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e8f4b7356194cb0251d76116748b2d005dbbe8', '31.222.203.2', 1670603548, '__ci_last_regenerate|i:1670603548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('855b4d50aec23ed8862598afeed090dc6cce0a35', '31.222.203.2', 1670603548, '__ci_last_regenerate|i:1670603548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80bc5c874d47bf0c99aaa8fa49718702d3ee0101', '31.222.203.2', 1670603548, '__ci_last_regenerate|i:1670603548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9dd64e16fe0bf18ebefeb0934821ad95bcce4a', '31.222.203.2', 1670603548, '__ci_last_regenerate|i:1670603548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b73df61483982c1b37f0881679f327aff13c930', '31.222.203.2', 1670605336, '__ci_last_regenerate|i:1670605336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56638b97222e994ffc9c7641f655679dc846eceb', '31.222.203.2', 1670605336, '__ci_last_regenerate|i:1670605336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ff4af7a2a0e5c09a8dc6bea067f5fd2cff2a90', '31.222.203.2', 1670605336, '__ci_last_regenerate|i:1670605336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140e36d148e56a6f74ecdd6982f82e74a6bdfb94', '31.222.203.2', 1670605338, '__ci_last_regenerate|i:1670605338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fda0cfd1808dea6d83d7dd674d072386de9694ed', '31.222.203.2', 1670605338, '__ci_last_regenerate|i:1670605338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa094ebff574df64cee8f4e28bdcbb9cf9cc98f3', '31.222.203.2', 1670605338, '__ci_last_regenerate|i:1670605338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5259a67315beb86d0d9e3a1d33cb2739f59b8047', '31.222.203.2', 1670607130, '__ci_last_regenerate|i:1670607130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d656ec60c700c6c6396c35de76a74e472a03af3', '31.222.203.2', 1670607130, '__ci_last_regenerate|i:1670607130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9befd43a1918ed0f931ff6445899dc18ba31fc4', '31.222.203.2', 1670607130, '__ci_last_regenerate|i:1670607130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b360f7aae1c05e0234562ad1ee31360f68dc0d7', '31.222.203.2', 1670607130, '__ci_last_regenerate|i:1670607130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3579e7908f11adb4b0254ac8bede94e7d1b107', '31.222.203.2', 1670607130, '__ci_last_regenerate|i:1670607130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8692e5780fa29d5389386313b7bcd29d60aa5b7a', '31.222.203.2', 1670607130, '__ci_last_regenerate|i:1670607130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e9f6987be579d4d7b5e4743b66fbd20538f668', '172.105.247.100', 1670608311, '__ci_last_regenerate|i:1670608311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fea3ee2500d146900095b0e063ed8c905dfa9d2', '172.105.247.100', 1670608311, '__ci_last_regenerate|i:1670608311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88a427c4e06e5219ed347c972f7874a6119b961', '172.105.247.100', 1670608312, '__ci_last_regenerate|i:1670608312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35442550b14b284455abb8a48e056e323cfeae5', '172.105.247.100', 1670608312, '__ci_last_regenerate|i:1670608312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e9f250b69232f35069bebea63c4ab52fb8cbc9', '172.105.247.100', 1670608313, '__ci_last_regenerate|i:1670608313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281221d7ca6b9aa698698fba0cc50fcefda15776', '172.105.247.100', 1670608313, '__ci_last_regenerate|i:1670608313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b31cdfb7f43edb02aa9fa2cda2d9ecf25442c4e', '172.105.247.100', 1670608313, '__ci_last_regenerate|i:1670608313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88fa8b6e4656ef13e61a0c700b4678034a0a425', '172.105.247.100', 1670608313, '__ci_last_regenerate|i:1670608313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22b06506ca87b812ce439ad4acc0e017122e335e', '172.105.247.100', 1670608313, '__ci_last_regenerate|i:1670608313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e211326c2ff4ee3a37dff4d9c8a775e99a64f9', '172.105.247.100', 1670608314, '__ci_last_regenerate|i:1670608313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cacc3f08b75dc562cf334c35078e89873b70b19', '172.105.247.100', 1670608314, '__ci_last_regenerate|i:1670608314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ebc0f9c9280f3738294c567729423bbd9232f53', '172.105.247.100', 1670608314, '__ci_last_regenerate|i:1670608314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ad0bf9edd98a8f9a91c85828ab0d3cbaa1e136', '172.105.247.100', 1670608314, '__ci_last_regenerate|i:1670608314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff946a2b8bf14546513f1fd5c0b1f81c0272098', '172.105.247.100', 1670608314, '__ci_last_regenerate|i:1670608314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b342f8d830b92a3f04298628fbe95343f4cebbd', '172.105.247.100', 1670608314, '__ci_last_regenerate|i:1670608314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e854bc923ff7677dee1770900dd8235dfcf14ada', '172.105.247.100', 1670608315, '__ci_last_regenerate|i:1670608315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058029fce4d8e6aca2a7f939e9242919e0f68947', '172.105.247.100', 1670608315, '__ci_last_regenerate|i:1670608315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e81782c93732344f829b73afa699319a5a517a', '172.105.247.100', 1670608315, '__ci_last_regenerate|i:1670608315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f9b48cc8e27457e32ab358f59299cce7af68ea', '172.105.247.100', 1670608315, '__ci_last_regenerate|i:1670608315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a566bd4f2ac26e64bf3535a819b2e14a2628ab4f', '172.105.247.100', 1670608315, '__ci_last_regenerate|i:1670608315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc12b5363875f9ad4e59a24a4d29469be3fc370', '172.105.247.100', 1670608315, '__ci_last_regenerate|i:1670608315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad6db5bfe0a3347f838a6c6656dae11531c41a0', '172.105.247.100', 1670608316, '__ci_last_regenerate|i:1670608316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70db5b5a43a24db4294d3a8fdcd39763730a2a25', '172.105.247.100', 1670608316, '__ci_last_regenerate|i:1670608316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865e643f31c431091ce2153c4458a94363b5bd9d', '172.105.247.100', 1670608318, '__ci_last_regenerate|i:1670608317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4517509d6e160362ca67aae8fcb8f7f62cda12', '31.222.203.2', 1670608941, '__ci_last_regenerate|i:1670608941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d8a27d476177812508977c13a84b3af2344745', '31.222.203.2', 1670608941, '__ci_last_regenerate|i:1670608941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750ecf95f12a0eee8ea690f48d293908b1ed1322', '31.222.203.2', 1670608941, '__ci_last_regenerate|i:1670608941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d29337920d493214af6832e898b18d76483b0b', '31.222.203.2', 1670608943, '__ci_last_regenerate|i:1670608943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121d13452588d12c475d34ce3cbf3ec0ea38dbbe', '31.222.203.2', 1670608943, '__ci_last_regenerate|i:1670608943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac10d28f4006a88ab33758642c3b457ede98000', '31.222.203.2', 1670608943, '__ci_last_regenerate|i:1670608943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d796822686567c407f718a54002d511b93a5cabe', '31.222.203.2', 1670610735, '__ci_last_regenerate|i:1670610735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612dc68d7311e1a29af70c11991fe2b0d0009ed8', '31.222.203.2', 1670610737, '__ci_last_regenerate|i:1670610737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05a2512b1447cedeedcb93f96ee3a38bd561767', '31.222.203.2', 1670610737, '__ci_last_regenerate|i:1670610737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ef5b62117258a124fe4b8bb9e75ddeb0272779', '31.222.203.2', 1670610737, '__ci_last_regenerate|i:1670610737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4dbb73826cdd16eafd82332450524d3c3e13f17', '31.222.203.2', 1670610737, '__ci_last_regenerate|i:1670610737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2682790b6693d91e9249b1e349ed2284604b5ce4', '31.222.203.2', 1670610737, '__ci_last_regenerate|i:1670610737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4524495494406721b742458103fe710208b621bb', '31.222.203.2', 1670612534, '__ci_last_regenerate|i:1670612534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c51a40432e5bafdc72034a5c483de5a6b35164f', '31.222.203.2', 1670612534, '__ci_last_regenerate|i:1670612534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8726832190fef9f218885f4e52ca5cbabadff1', '31.222.203.2', 1670612534, '__ci_last_regenerate|i:1670612534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaceb98680ad15069d26455858f42ff68b14898d', '31.222.203.2', 1670612534, '__ci_last_regenerate|i:1670612534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a14e22d1456f97571d36551b31b2bc9641e752d1', '31.222.203.2', 1670612534, '__ci_last_regenerate|i:1670612534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343e9474cf61a1e7d630a622f96429e0a8c93e1a', '31.222.203.2', 1670612534, '__ci_last_regenerate|i:1670612534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756a5740c7e6732d65a79b9046335a5a06572bad', '172.105.247.100', 1670613108, '__ci_last_regenerate|i:1670613108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4689cea31257d78f1999d836a4883e940f7dc5d4', '172.105.247.100', 1670613108, '__ci_last_regenerate|i:1670613108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8248b067e674a5ef927dfcafc9f0c7f6ef0aa7e5', '172.105.247.100', 1670613109, '__ci_last_regenerate|i:1670613109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1dca0c2c3609631e0962a9e2582875c5d3b446f', '172.105.247.100', 1670613109, '__ci_last_regenerate|i:1670613109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c228ba53be8e7c9f7e93d63c2c47a6dadbec106', '172.105.247.100', 1670613109, '__ci_last_regenerate|i:1670613109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('544a6374536c5af568b15a6315e2ea5e1b64ece6', '172.105.247.100', 1670613109, '__ci_last_regenerate|i:1670613109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0172f957e210f160b5515f364922eb4f5c8a7f', '172.105.247.100', 1670613109, '__ci_last_regenerate|i:1670613109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a812763978d4f00ea934edb81e0909371d9a81fe', '172.105.247.100', 1670613109, '__ci_last_regenerate|i:1670613109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0e7ea452ced7a244a155333acb8380c37ae57a', '172.105.247.100', 1670613110, '__ci_last_regenerate|i:1670613110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53d95ac468087552bd8c7b886674cc1e92e9a74', '172.105.247.100', 1670613110, '__ci_last_regenerate|i:1670613110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f54e74a44e9a531124aff515c5d3b3b3aef07b', '172.105.247.100', 1670613110, '__ci_last_regenerate|i:1670613110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ae03a0ccd8c4c81b2e0503f1f795ad8d25b88d', '172.105.247.100', 1670613110, '__ci_last_regenerate|i:1670613110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc033387b96382f9f51966091ba688d8eafccb2', '172.105.247.100', 1670613110, '__ci_last_regenerate|i:1670613110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8860a84e54ecd334e1a8e5f9e33d300594b6b55f', '172.105.247.100', 1670613110, '__ci_last_regenerate|i:1670613110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a196ca25ab59de27be7c4703315b3dbe98a6d96', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276b785e8e606eaa0f52a933b4982e5db0e60682', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eef04a0ef669eecfae783971dcec29ed19eb1b9', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e946d2f0cb7304a543507ba83e11a3595905da83', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ee9a8d290a2bbff038474da659ff8519d39b7c', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb84cb802f9a9f4eef63ecfe3277934e11c14a99', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503d3441b4335f5131475653fd1ac6c2957d2e45', '172.105.247.100', 1670613111, '__ci_last_regenerate|i:1670613111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce556a4370dc830defd10b02e6852d8e9a73050a', '172.105.247.100', 1670613112, '__ci_last_regenerate|i:1670613112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a894e80b0a589fb25e79a5a50c385898948d0bc', '172.105.247.100', 1670613112, '__ci_last_regenerate|i:1670613112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7318e7d6daedc216b23a77c6673863d5e9d24789', '172.105.247.100', 1670613112, '__ci_last_regenerate|i:1670613112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6555fdb3e193789a6d6dcf70f38e8da51f2b7fff', '31.222.203.2', 1670614341, '__ci_last_regenerate|i:1670614341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b9e7e7cbbe2cb58a9314c8cfd85d2e6abb654c', '31.222.203.2', 1670614341, '__ci_last_regenerate|i:1670614341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4173bb11665713e43e494506c7726990f820d72', '31.222.203.2', 1670614341, '__ci_last_regenerate|i:1670614341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88b8febc50ec080746ba16c11c8d0b1bf57f11f', '31.222.203.2', 1670614341, '__ci_last_regenerate|i:1670614341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b6e14fef8e5967dfe79e443dd304f96a97d8da1', '31.222.203.2', 1670614341, '__ci_last_regenerate|i:1670614341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e0c3ff5c6ab899dd412f357dc5a7e9dacabab2', '31.222.203.2', 1670614341, '__ci_last_regenerate|i:1670614341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ba1359f09b958ec98588a288c12594f6a34d2a', '31.222.203.2', 1670616130, '__ci_last_regenerate|i:1670616130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6081772291293e36b3b20ff30d6a120de9aa8d', '31.222.203.2', 1670616131, '__ci_last_regenerate|i:1670616131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4686be0669ae27620b85b9f0d12857dc196acf', '31.222.203.2', 1670616131, '__ci_last_regenerate|i:1670616131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92364cecf20b53fdbf16550600a67c302f528c02', '31.222.203.2', 1670616131, '__ci_last_regenerate|i:1670616131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bebd306e210b05dc6b1b2a3d0b2d6427d7d1aba', '31.222.203.2', 1670616131, '__ci_last_regenerate|i:1670616131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d218995db6a4b9c806a0ee614eb96edd6e37d9', '31.222.203.2', 1670616131, '__ci_last_regenerate|i:1670616131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b126dc2bd356f52082398d5d439e6fdbcd672eb6', '172.105.247.100', 1670617311, '__ci_last_regenerate|i:1670617311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a729e7e9d87b3d77c429f869d2204804daa09f', '172.105.247.100', 1670617311, '__ci_last_regenerate|i:1670617311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d454ecfc6bedc49f73e10f50f5dd3e2d7faa6a', '172.105.247.100', 1670617312, '__ci_last_regenerate|i:1670617312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1357b150a76d255e184512bddf3b4834abed20', '172.105.247.100', 1670617312, '__ci_last_regenerate|i:1670617312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2db31e84f48dcc65373cabe022c8d528923f4d5c', '172.105.247.100', 1670617313, '__ci_last_regenerate|i:1670617313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55aebe9c4391757525bcce8c1895ec5690d8f736', '172.105.247.100', 1670617313, '__ci_last_regenerate|i:1670617313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3631738ad31e5fb35e99c799cf935c9cc83bf1', '172.105.247.100', 1670617313, '__ci_last_regenerate|i:1670617313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5ef6a66cf9b2ce2b2f18d5436fe1d16ca5563e', '172.105.247.100', 1670617314, '__ci_last_regenerate|i:1670617314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38bf1f5fddf7eb52e8dfa4a6f7a98fec6909f493', '172.105.247.100', 1670617314, '__ci_last_regenerate|i:1670617314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('516da8bd0e0756d8fb19526f66664a76c93e8ac4', '172.105.247.100', 1670617314, '__ci_last_regenerate|i:1670617314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9671a638549319dc7857f4e7ab6784e7601a357', '172.105.247.100', 1670617314, '__ci_last_regenerate|i:1670617314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6d2364b3983569814739abb62834f74d0c1daf', '172.105.247.100', 1670617314, '__ci_last_regenerate|i:1670617314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70af1533f3e4134afe87366b4184b03ad998645', '172.105.247.100', 1670617314, '__ci_last_regenerate|i:1670617314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c93b37df673766792cc00d0c16c0dc4e74f2428', '172.105.247.100', 1670617315, '__ci_last_regenerate|i:1670617315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d16a99ea4759b20129375b12aeb1a6f435ea35', '172.105.247.100', 1670617315, '__ci_last_regenerate|i:1670617315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e4190eb29d83b1f0620ac07735807bf06c566a', '172.105.247.100', 1670617315, '__ci_last_regenerate|i:1670617315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42137ffb1f24d0fb25c9f5ba1b00301fbf37d922', '172.105.247.100', 1670617315, '__ci_last_regenerate|i:1670617315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ad79e7e0e52ba26dbb8dcb18417e6702270f76', '172.105.247.100', 1670617315, '__ci_last_regenerate|i:1670617315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8176c1adf50ba077b53d1faedb360eec95e044d8', '172.105.247.100', 1670617315, '__ci_last_regenerate|i:1670617315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a884e8545586559299bc69532206f9bcc410649', '172.105.247.100', 1670617316, '__ci_last_regenerate|i:1670617316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0199f608cd611b9d1ef9e64ea5290e7443f7cede', '172.105.247.100', 1670617316, '__ci_last_regenerate|i:1670617316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c7201f77f3094e12feedbb6a8461c204456ad5', '172.105.247.100', 1670617316, '__ci_last_regenerate|i:1670617316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66c9ee523f104875a1822d372c0712b9f908d01', '172.105.247.100', 1670617317, '__ci_last_regenerate|i:1670617317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a49de887c6bb19859c4251df159b457efd85e9', '172.105.247.100', 1670617317, '__ci_last_regenerate|i:1670617317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f669d1e32e84208d7d5d8cee51c27a3edfb6e6b2', '31.222.203.2', 1670617941, '__ci_last_regenerate|i:1670617941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa44db6b0f888ee897d6b9868b7d145ded717a82', '31.222.203.2', 1670617941, '__ci_last_regenerate|i:1670617941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43d35ba3cdcdd1eeb48e26447e064949912e612', '31.222.203.2', 1670617941, '__ci_last_regenerate|i:1670617941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d01c3b945b4f9d4e16db31cb94804fa73ed3644', '31.222.203.2', 1670617941, '__ci_last_regenerate|i:1670617941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995a50a67f5cbee834a7a610ef0a96ba9b0fc2d3', '31.222.203.2', 1670617941, '__ci_last_regenerate|i:1670617941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc59cba99f7921ad72804d905da9eb9d1b0fdf2', '31.222.203.2', 1670617941, '__ci_last_regenerate|i:1670617941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1c751b8aa76bb9b102d65960de6bf1c9ecd044', '31.222.203.2', 1670619728, '__ci_last_regenerate|i:1670619728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef219ea551fc37f5613cebcef27515c540d7661', '31.222.203.2', 1670619730, '__ci_last_regenerate|i:1670619730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33145b24c68c07885f4ae19aa0a1f279659c4fa2', '31.222.203.2', 1670619730, '__ci_last_regenerate|i:1670619730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed80b93864cbb4cd86e75f6f945b0ccc318fc0b9', '31.222.203.2', 1670619730, '__ci_last_regenerate|i:1670619730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15eef95480518016fbe8274cb174e46d8d7e3709', '31.222.203.2', 1670619730, '__ci_last_regenerate|i:1670619730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc6c96a420e4c653c94348175d4bbb89e353401', '31.222.203.2', 1670619730, '__ci_last_regenerate|i:1670619730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1d9e531cb6eb53e7e6a6faca3106ead9e3a3e6', '31.222.203.2', 1670621538, '__ci_last_regenerate|i:1670621538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea782d0e52892a0061445b6bd00810a98fdb50d', '31.222.203.2', 1670621539, '__ci_last_regenerate|i:1670621539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f33f0ca6be1c8000a95a937510202d8e4fcfa8', '31.222.203.2', 1670621539, '__ci_last_regenerate|i:1670621539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba7091a41900f264686781e520871623b2a7e2a', '31.222.203.2', 1670621539, '__ci_last_regenerate|i:1670621539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02bc380147b70ba82953c1a16688c014b7f4498', '31.222.203.2', 1670621539, '__ci_last_regenerate|i:1670621539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342ee6256f62e611c66aa0a2c5810fa5632f0d4d', '31.222.203.2', 1670621539, '__ci_last_regenerate|i:1670621539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30c22f5d1f86914305efd4324f755a6ad14dc1f', '172.105.247.100', 1670623313, '__ci_last_regenerate|i:1670623313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b876dff0f4717dafb7c01980170a322458f757', '172.105.247.100', 1670623313, '__ci_last_regenerate|i:1670623313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4bf59c2c8bab8d12e8db7cbd6c21513242d485', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6051c7b9f66ca9b00f768a9cb841d647caa976', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe35d02c66d729f4578949ec473b4569721eb87', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b324d487d90d3a0309535762c464fb1a5068db14', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa558bdb0d0a17614eb7b1384a3941829fd5666', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e48f7a1d26f5ff4295549c17dd4a70dbe0ca3b5', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('287ac4eaa41fd531cfc24d8064cefbe75e001851', '172.105.247.100', 1670623314, '__ci_last_regenerate|i:1670623314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c3ce8dcc4d53a841eee89e9ba4d20fd8c2669c', '172.105.247.100', 1670623315, '__ci_last_regenerate|i:1670623315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd74188f3ccba75803574acfc31b4962b8749f7', '172.105.247.100', 1670623315, '__ci_last_regenerate|i:1670623315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab910e8f5b990ffa980aa1738e72dbdef6f058d', '172.105.247.100', 1670623315, '__ci_last_regenerate|i:1670623315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98701f4aa04e33feffb011d07e9d5ecf5aa91d11', '172.105.247.100', 1670623315, '__ci_last_regenerate|i:1670623315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a3fe15900e1a1df6c7a51f72045b9cbe7135b7', '172.105.247.100', 1670623315, '__ci_last_regenerate|i:1670623315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1e4d00617a4599383a9be874d5c10ce0845029', '172.105.247.100', 1670623316, '__ci_last_regenerate|i:1670623316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8937d6bede6d664299a147c525a909c1b23c9f47', '172.105.247.100', 1670623316, '__ci_last_regenerate|i:1670623316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fce84f41f42b166dfd3b8b968e829a9bccefd7e', '172.105.247.100', 1670623316, '__ci_last_regenerate|i:1670623316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c2355768115fae75a7a8aedee7929b442fa148', '172.105.247.100', 1670623316, '__ci_last_regenerate|i:1670623316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f933eae8505201660d4d08c31775e43d778ddc1', '172.105.247.100', 1670623316, '__ci_last_regenerate|i:1670623316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5cd0e38e4f3fb109c2bc224dc19a88b1cd636c', '172.105.247.100', 1670623316, '__ci_last_regenerate|i:1670623316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b7d68717b86377eb74ec49dcba58e574015fe5', '172.105.247.100', 1670623317, '__ci_last_regenerate|i:1670623317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3140f9e06153b427002a7aa56fe06cd3cf211c27', '172.105.247.100', 1670623317, '__ci_last_regenerate|i:1670623317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b58c2955394c43fa770b11d91cab6e2e3b740c3', '172.105.247.100', 1670623317, '__ci_last_regenerate|i:1670623317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862b7c4c639bde66a57f9b47942688d634b69e94', '172.105.247.100', 1670623318, '__ci_last_regenerate|i:1670623317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a35145d5ad8f0d589bb5dd88dbdabedc63ba4bb1', '31.222.203.2', 1670623333, '__ci_last_regenerate|i:1670623333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fc6919af1af552ed9c5cbc7eb037630e6bc8c5', '31.222.203.2', 1670623335, '__ci_last_regenerate|i:1670623335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946e228fd936354afd345f2e01720ba3a83cf35e', '31.222.203.2', 1670623335, '__ci_last_regenerate|i:1670623335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('001854e8cde7dcca20d0f556054fa3df390b37e7', '31.222.203.2', 1670623335, '__ci_last_regenerate|i:1670623335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a72b9820b8392d38fea85cb668b87b22746119', '31.222.203.2', 1670623335, '__ci_last_regenerate|i:1670623335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4b41f5e064a8bf03ca5ed94b10b154968cec01', '31.222.203.2', 1670623335, '__ci_last_regenerate|i:1670623335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5ecfeabddd6b145cdefed8545d5640136fc6d5', '31.222.203.2', 1670625133, '__ci_last_regenerate|i:1670625133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e4f7131b44b9de22478e49786feb6cb7b6a084b', '31.222.203.2', 1670625133, '__ci_last_regenerate|i:1670625133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d29103625763b7d2f74327fd71af978d7b24ed1', '31.222.203.2', 1670625133, '__ci_last_regenerate|i:1670625133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce122cd4bc53e6d450ea50f78a302d29dc2e6cf', '31.222.203.2', 1670625134, '__ci_last_regenerate|i:1670625134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1be943db198660c02b375047a7a64b31585c0b7', '31.222.203.2', 1670625134, '__ci_last_regenerate|i:1670625134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc55caa8769c5cbf34d7bfac50416dada582ab7', '31.222.203.2', 1670625134, '__ci_last_regenerate|i:1670625134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2d799a2d3426f1c32d1b85a9d7e3ca463a45da', '198.235.24.56', 1670626589, '__ci_last_regenerate|i:1670626589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69079fb84222e1a3550fc55d847caf059adb5a24', '198.235.24.56', 1670626591, '__ci_last_regenerate|i:1670626591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800988a74037f3f068f0ebb88faada26c2b66ddd', '198.235.24.56', 1670626591, '__ci_last_regenerate|i:1670626591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2ff43c7e09c1c850ea5238f9e419c1a3df2b4c', '31.222.203.2', 1670626929, '__ci_last_regenerate|i:1670626929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee22c14557e977c3f2311c97780acd1c0be9599d', '31.222.203.2', 1670626929, '__ci_last_regenerate|i:1670626929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68da10fff7e24e76b140de854dcc9a4647457eb6', '31.222.203.2', 1670626929, '__ci_last_regenerate|i:1670626929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5cc63a926bb325a88ee6fc4ea61fdc6e6c024d', '31.222.203.2', 1670626932, '__ci_last_regenerate|i:1670626932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717922b9a31e4228518710c91eb0d135d71246a6', '31.222.203.2', 1670626932, '__ci_last_regenerate|i:1670626932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2409d9e9168b5c3b0f0b8d3b3a5bb48b78eb3f80', '31.222.203.2', 1670626932, '__ci_last_regenerate|i:1670626932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e724a408ae966fa2fe545b773b308e672767df98', '172.105.247.100', 1670628108, '__ci_last_regenerate|i:1670628108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b45ec11db87aa05233dbd2853669dcf3b8f52e3f', '172.105.247.100', 1670628108, '__ci_last_regenerate|i:1670628108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea083b33d33226352d044acd11376f6146bc0caf', '172.105.247.100', 1670628108, '__ci_last_regenerate|i:1670628108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86eb0b460bfdf927ebb9511e05340dbfea041f0', '172.105.247.100', 1670628108, '__ci_last_regenerate|i:1670628108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b658ee7468a3ff4c3872fbfe78da0d95e4861fb4', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b5535de54f1360671220aff90dbf3d319fdda7', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340afb6e1bfcdf99400d559f3fd82b8fd6754351', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54cf8a5848497818ac77e27a1969ba5de701ea56', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4199e3e98247fe9107319c62fc4445311b66ef63', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a56999bbc385df3253516522f527ba841970a4', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a9be939833ea646b8ca1e5043f94e3e8bc9760d', '172.105.247.100', 1670628109, '__ci_last_regenerate|i:1670628109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f2ef132a88527ff2af2c7da8dfb88d5ba46413', '172.105.247.100', 1670628110, '__ci_last_regenerate|i:1670628109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e002ee612d4a01671fdc2daeb68feed8092352fa', '172.105.247.100', 1670628110, '__ci_last_regenerate|i:1670628110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d303b1a16570934f6ba5858b9ef86d4a453d42cc', '172.105.247.100', 1670628110, '__ci_last_regenerate|i:1670628110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbffe466e9a9078c025586093bb48870ebaf4f01', '172.105.247.100', 1670628110, '__ci_last_regenerate|i:1670628110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a74ff5de438e7f92d428f2b2d8b808250fbf0ee', '172.105.247.100', 1670628110, '__ci_last_regenerate|i:1670628110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fddf6111f8b54f3ef72144036509f7a21ebe887', '172.105.247.100', 1670628110, '__ci_last_regenerate|i:1670628110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b375fd08316460c6eb8555236568eeca02de65', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b93ffa1a5800dae01566791e087314fc885664', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a452dada7b4a4d247dccae6f9052891ff69dfe61', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4caddecfb86386fcb7bfab45d3fe97cb09332f49', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2959f05ca2fbf6a76eeda905a40aa88e68cd79be', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ccb8252ff600fe4bf92df650f63d5582532563', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91564f03d84cfa64a82c3b898289d11fc92bb95', '172.105.247.100', 1670628111, '__ci_last_regenerate|i:1670628111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa809e2ed1514b83503a11944d2f46ba036ad294', '31.222.203.2', 1670628735, '__ci_last_regenerate|i:1670628735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73559b690cd20189d9eb52effae61a081fe9df7f', '31.222.203.2', 1670628737, '__ci_last_regenerate|i:1670628737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f9c1f9f0691f3c33103e53fad84245120062d5', '31.222.203.2', 1670628737, '__ci_last_regenerate|i:1670628737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4c89d5e300d92e9d48af5b6af5818338815485', '31.222.203.2', 1670628737, '__ci_last_regenerate|i:1670628737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84902ec6dcee00d37fcaf0d65ecdf438424e7642', '31.222.203.2', 1670628737, '__ci_last_regenerate|i:1670628737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e38d4ec8fe67ce0be7289b2bf71ccf6fb40e457', '31.222.203.2', 1670628737, '__ci_last_regenerate|i:1670628737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91011d9e2172ae6833b4f28290fd23d932eb383', '31.222.203.2', 1670630532, '__ci_last_regenerate|i:1670630532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5695a52b473e30c84ad1404d7ea4ad96df97a30c', '31.222.203.2', 1670630532, '__ci_last_regenerate|i:1670630532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae6ede0567a7cd36db2c5db1237031de3ea5b9f', '31.222.203.2', 1670630532, '__ci_last_regenerate|i:1670630532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4fa61d6aedef42f74e383926c9ba10d1b9619b7', '31.222.203.2', 1670630532, '__ci_last_regenerate|i:1670630532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7483a2793a2f60c58842946473bd2bb2418401ef', '31.222.203.2', 1670630532, '__ci_last_regenerate|i:1670630532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce4dc05188dc2a80b992d186086cf112b5ce142', '31.222.203.2', 1670630533, '__ci_last_regenerate|i:1670630532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5162ccfe34beaaf265946b829f2bcb044b66a991', '103.101.225.11', 1670630864, '__ci_last_regenerate|i:1670630864;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8889c28cda849cfa778bca42f44da2243d7493', '103.101.225.11', 1670630865, '__ci_last_regenerate|i:1670630865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e472b5771f44eaa56e95ccde76f0a1f3eca5710', '103.101.225.11', 1670630865, '__ci_last_regenerate|i:1670630865;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ecbe46c027d630fe99b8f9cf701e1eb782522c', '103.101.225.11', 1670630866, '__ci_last_regenerate|i:1670630866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5238598143fb143831d056ed5b0597629c209c6', '31.222.203.2', 1670632350, '__ci_last_regenerate|i:1670632350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79441727e731dac4cd1c7970cf237a70fe3e0fe3', '31.222.203.2', 1670632350, '__ci_last_regenerate|i:1670632350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9f41c1d328e2ef503a0916bfeb5baf1b4dbbe2d', '31.222.203.2', 1670632350, '__ci_last_regenerate|i:1670632350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('228c70fcbad6f8cb97a742bc1d936512e7328694', '31.222.203.2', 1670632350, '__ci_last_regenerate|i:1670632350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e00c1d91221637c4798982de6262eea94f2c6b', '31.222.203.2', 1670632350, '__ci_last_regenerate|i:1670632350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d3bf78413be4c8b02eef7a56981628a854ade7', '31.222.203.2', 1670632350, '__ci_last_regenerate|i:1670632350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9bb03a73a939b6281f2c45eb8ac76ee7e74e268', '172.105.247.100', 1670633510, '__ci_last_regenerate|i:1670633510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076f9dd0952b2ed6fab9e7beb950b62ee166c5f6', '172.105.247.100', 1670633510, '__ci_last_regenerate|i:1670633510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd019a2361f617b449633ff5c0e2cc0a293ccef', '172.105.247.100', 1670633512, '__ci_last_regenerate|i:1670633511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8392695481698b30f31ddf3130e0016fd65756', '172.105.247.100', 1670633512, '__ci_last_regenerate|i:1670633512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf70ee26ee89c36c792906b9bdae51248afae7ae', '172.105.247.100', 1670633512, '__ci_last_regenerate|i:1670633512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6064d0b8378a1f9c59423b46c1cec7449d756e26', '172.105.247.100', 1670633512, '__ci_last_regenerate|i:1670633512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca8b63a49a678689e52d3aec92c746abc5d0602', '172.105.247.100', 1670633513, '__ci_last_regenerate|i:1670633512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb5871853ee5442f89291ec7d613db8ab635cdf', '172.105.247.100', 1670633513, '__ci_last_regenerate|i:1670633513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2f98057dc6b67106bca7ae964275deea638015', '172.105.247.100', 1670633513, '__ci_last_regenerate|i:1670633513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9058be0b8d62f7d2d1e553e0571dd49cacb36d84', '172.105.247.100', 1670633514, '__ci_last_regenerate|i:1670633513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696a16a7a9073df3db909b316d944cf80fcfc8db', '172.105.247.100', 1670633514, '__ci_last_regenerate|i:1670633514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f03fac209eb145c41ceead16f5f81d94ee27c5a', '172.105.247.100', 1670633514, '__ci_last_regenerate|i:1670633514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102d9331c49bf9363409b40b45291df178236c79', '172.105.247.100', 1670633514, '__ci_last_regenerate|i:1670633514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6a6ca6f676a0ce9791d880c7db381bfef4a770', '172.105.247.100', 1670633514, '__ci_last_regenerate|i:1670633514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc217f49d7dc055e01213dc71b23cc4b695d89d', '172.105.247.100', 1670633514, '__ci_last_regenerate|i:1670633514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2ca37c0d2e0c94e00f6758a3f86b423c07d9be', '172.105.247.100', 1670633515, '__ci_last_regenerate|i:1670633515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c77b6d900eb8a60aba3297997d870f7a1eca257', '172.105.247.100', 1670633515, '__ci_last_regenerate|i:1670633515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525e7245271ad0892819dac0c95265b17c0817c3', '172.105.247.100', 1670633515, '__ci_last_regenerate|i:1670633515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4700e65ba56a32a566db47ad67d7fd6baaf2c10e', '172.105.247.100', 1670633515, '__ci_last_regenerate|i:1670633515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e91056bc1bc421296ef7e2624e570fc251feb6', '172.105.247.100', 1670633516, '__ci_last_regenerate|i:1670633515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255b57d41c4fcedf80b887a9d1f140adeab2bb3b', '172.105.247.100', 1670633516, '__ci_last_regenerate|i:1670633516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7517efb0e5cbebd261b1c5f37933ba788b413a86', '172.105.247.100', 1670633517, '__ci_last_regenerate|i:1670633516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d02d7416d7049b5d4a4a7f2011efa28ce368f9', '172.105.247.100', 1670633517, '__ci_last_regenerate|i:1670633517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2f33d6e7572154cdda34d5f9f30f83d8df84f7', '172.105.247.100', 1670633517, '__ci_last_regenerate|i:1670633517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4720047b9f44bb36e9add17dbafa1a113fca24a', '31.222.203.2', 1670634222, '__ci_last_regenerate|i:1670634222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438d71d7ed8eed32d0cf483ed02ed2b55fbbdd06', '31.222.203.2', 1670634224, '__ci_last_regenerate|i:1670634224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c4dbcfc68dadba994f06ff2467f34dce0bbd295', '31.222.203.2', 1670634224, '__ci_last_regenerate|i:1670634224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1043351d241cf8b415a6b6dbfbb80d8a66aadeb6', '31.222.203.2', 1670634224, '__ci_last_regenerate|i:1670634224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a59eb339547e816c109a14810b0c789a1a3537f', '31.222.203.2', 1670634224, '__ci_last_regenerate|i:1670634224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd037996885c575bab62dec3e20f54dcac00bc2', '31.222.203.2', 1670634224, '__ci_last_regenerate|i:1670634224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8958776ae54aa4cf9a7e19ff9c608cc5107671', '31.222.203.2', 1670636005, '__ci_last_regenerate|i:1670636005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f4f6f92fb83152bc10787ec6a2617e2493bf0a', '31.222.203.2', 1670636005, '__ci_last_regenerate|i:1670636005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96793fbb94958152c5f9c83a464d6e5ca8f4d5bc', '31.222.203.2', 1670636005, '__ci_last_regenerate|i:1670636005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84d402bb4af779fdadf7d124b081c0a919e5373', '31.222.203.2', 1670636005, '__ci_last_regenerate|i:1670636005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a340c72955b6225730895960e29c1d32a84cb723', '31.222.203.2', 1670636005, '__ci_last_regenerate|i:1670636005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba9ad6ab4cbb5de784257c2cd689973b47df83d', '31.222.203.2', 1670636005, '__ci_last_regenerate|i:1670636005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97b6815f5e3e2339831e645474f031b61cef9da', '31.222.203.2', 1670637820, '__ci_last_regenerate|i:1670637820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9dce690d59304e0177b49ebdcb184c1b3c5fc60', '31.222.203.2', 1670637820, '__ci_last_regenerate|i:1670637820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5089fc01d936e9cb5abf093bafa275f739ea21bd', '31.222.203.2', 1670637820, '__ci_last_regenerate|i:1670637820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44411755e86d8a797ae7e3fe14fae57769564a2d', '31.222.203.2', 1670637822, '__ci_last_regenerate|i:1670637822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8b457db661d0df527a595d9debd2d333b2be8c', '31.222.203.2', 1670637822, '__ci_last_regenerate|i:1670637822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77bc8de5a3bdea4d83416ed1fc762b8adb2223d4', '31.222.203.2', 1670637822, '__ci_last_regenerate|i:1670637822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b110bfe5370565dc6992e4e078073c2f65f9fc4e', '198.235.24.176', 1670637996, '__ci_last_regenerate|i:1670637996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ad11b03d3167c1536710a13014de9137cf20c7', '172.105.247.100', 1670638905, '__ci_last_regenerate|i:1670638905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f43d045c8bb7af1f6dc6db7c1092ed8207cbb499', '172.105.247.100', 1670638905, '__ci_last_regenerate|i:1670638905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65260826226a584488fbc73c027cc26b24be2481', '172.105.247.100', 1670638906, '__ci_last_regenerate|i:1670638906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a3b651503bc1f8410a2c4f508efd6a3cdc498a', '172.105.247.100', 1670638906, '__ci_last_regenerate|i:1670638906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4e50d667683ee1e642a99fed0b8945a28a6028', '172.105.247.100', 1670638906, '__ci_last_regenerate|i:1670638906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d941aee38047d165201d07baa4cf2eebc2b53865', '172.105.247.100', 1670638906, '__ci_last_regenerate|i:1670638906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0201e025e5156944acecf7dab48abc4bf7d20317', '172.105.247.100', 1670638907, '__ci_last_regenerate|i:1670638907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82fede32760f177d31dfd816a43fcc2f0d1173e3', '172.105.247.100', 1670638907, '__ci_last_regenerate|i:1670638907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e97b5bdb6fab22a19c68cdca6700dce7dd138a', '172.105.247.100', 1670638907, '__ci_last_regenerate|i:1670638907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae34bfcd391ee33565c3445900077bafa6e1d4a', '172.105.247.100', 1670638907, '__ci_last_regenerate|i:1670638907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a923f213ffdc3f72f02e619605235bdfba08509e', '172.105.247.100', 1670638908, '__ci_last_regenerate|i:1670638908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5148c5705252938fc3aea40522af7b2766c163', '172.105.247.100', 1670638908, '__ci_last_regenerate|i:1670638908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc0fee8737697d4b9a6915cb13cab5092435c34', '172.105.247.100', 1670638908, '__ci_last_regenerate|i:1670638908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8e4b49390be84a483d84301cf35d52e7d0b2be', '172.105.247.100', 1670638908, '__ci_last_regenerate|i:1670638908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5d06939b492754ce6076aed1fb90bcd67d2191', '172.105.247.100', 1670638909, '__ci_last_regenerate|i:1670638908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b178bca2e5f5b2d610a55f5ecf415d8529298599', '172.105.247.100', 1670638909, '__ci_last_regenerate|i:1670638908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5d246cec2a2b63160b3262fa370c155e17fe2d', '172.105.247.100', 1670638909, '__ci_last_regenerate|i:1670638909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b04cefaefe616a55a3df6140e2f5561ea3205b38', '172.105.247.100', 1670638909, '__ci_last_regenerate|i:1670638909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd912d142b12c3e8dd9489a98844abe6e986b46', '172.105.247.100', 1670638910, '__ci_last_regenerate|i:1670638910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff307771d72c7a37363d899edb09b72fe1ca6a6', '172.105.247.100', 1670638911, '__ci_last_regenerate|i:1670638910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a55366b0142b39cdceaced604cf144df76b9e4d', '172.105.247.100', 1670638911, '__ci_last_regenerate|i:1670638911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d3d6828838005799d342f212bcb808ebc3f3f0d', '172.105.247.100', 1670638911, '__ci_last_regenerate|i:1670638911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddba3c5af0819e9ba7b5a6939a9ec3b6917f9d98', '172.105.247.100', 1670638912, '__ci_last_regenerate|i:1670638912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0afb751ca98eee755f32d6a8a18356904613664', '172.105.247.100', 1670638912, '__ci_last_regenerate|i:1670638912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8617710e33d53f6e74af1d9dde92ac76eadcd777', '31.222.203.2', 1670639620, '__ci_last_regenerate|i:1670639620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cfb2fd9756971783b710b05b679f4c469743c7d', '31.222.203.2', 1670639622, '__ci_last_regenerate|i:1670639622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15c34bcc48a417b32f8cd2af3c19ef4b6ba32b2', '31.222.203.2', 1670639622, '__ci_last_regenerate|i:1670639622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e142d8fe81b5ba636f49e384dbc256ea2bcd84a', '31.222.203.2', 1670639622, '__ci_last_regenerate|i:1670639622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7e523a8d6b65a01284f9033fdb39030db70850', '31.222.203.2', 1670639622, '__ci_last_regenerate|i:1670639622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9b37675593b2a35a96fc688ac18c7d0b5c1d56', '31.222.203.2', 1670639622, '__ci_last_regenerate|i:1670639622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2746592d7106f0e00d9f20d1984238b3798c934', '31.222.203.2', 1670641396, '__ci_last_regenerate|i:1670641396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918c1f1d8079406d370b5ebb7a4d2505ca576b2d', '31.222.203.2', 1670641396, '__ci_last_regenerate|i:1670641396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07178296a7369ca5770ab01f7353a64861d8653', '31.222.203.2', 1670641396, '__ci_last_regenerate|i:1670641396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac9d1fc33b0c4607ec9a57ffe325ffe525b38eee', '31.222.203.2', 1670641396, '__ci_last_regenerate|i:1670641396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff86a6379964bdd7af8185f4b29f598538d839d', '31.222.203.2', 1670641396, '__ci_last_regenerate|i:1670641396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21264c7d5ed9ad3c393d175ed6f81913d8d5775', '31.222.203.2', 1670641396, '__ci_last_regenerate|i:1670641396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89940c8fcbc4c3625dac71fb14c8356eeefba934', '31.222.203.2', 1670643206, '__ci_last_regenerate|i:1670643206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb6bb5c66d3e7498c6c3f5dd0371e457badf735', '31.222.203.2', 1670643208, '__ci_last_regenerate|i:1670643208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7e961abf5eaaec12da518c0054915066bc2b4c', '31.222.203.2', 1670643208, '__ci_last_regenerate|i:1670643208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c916db8c4bc12d4377198377f7df471fdd16797a', '31.222.203.2', 1670643208, '__ci_last_regenerate|i:1670643208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f9a2de25e218c035836b2dd1261abbc3ea9fa2', '31.222.203.2', 1670643208, '__ci_last_regenerate|i:1670643208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('093d7211ce362ada969b35232eb1f0c4363b6ee7', '31.222.203.2', 1670643208, '__ci_last_regenerate|i:1670643208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f668155dd5694f612141fefc02b6911df2458d', '172.105.247.100', 1670643714, '__ci_last_regenerate|i:1670643714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8179acf312665fe2c52c3d2012c9bcf0ab131f27', '172.105.247.100', 1670643715, '__ci_last_regenerate|i:1670643715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d593b7f74bb7addf31d5f53bb0b4c65972a74b', '172.105.247.100', 1670643715, '__ci_last_regenerate|i:1670643715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6045295daefa7e6dbe0946c903858275e872455', '172.105.247.100', 1670643716, '__ci_last_regenerate|i:1670643716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e1b9e3555252a9f6b6195ffb040257625be4084', '172.105.247.100', 1670643716, '__ci_last_regenerate|i:1670643716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbd36bbc90d61113f247b3e8e9144eb17703595', '172.105.247.100', 1670643716, '__ci_last_regenerate|i:1670643716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24135612ffd99b24aae87048f32877305f39a392', '172.105.247.100', 1670643716, '__ci_last_regenerate|i:1670643716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821ec2edbb82cf6422ed052ac31c4295a3d47ae8', '172.105.247.100', 1670643716, '__ci_last_regenerate|i:1670643716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d0c7f05dfcd92c5ec30d13450152d2c7d2a340', '172.105.247.100', 1670643717, '__ci_last_regenerate|i:1670643717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4dd78899d772c23e71ea7fd934a545e95512ea5', '172.105.247.100', 1670643717, '__ci_last_regenerate|i:1670643717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8787af8d08ee6f782ea2064fbd9b7bf136ee8fd', '172.105.247.100', 1670643717, '__ci_last_regenerate|i:1670643717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f77c56a4fd9de9b78d74ced92bc735e9b2714db', '172.105.247.100', 1670643717, '__ci_last_regenerate|i:1670643717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25f636a35e6d72efaa5c9b4fa4922130dde8483', '172.105.247.100', 1670643717, '__ci_last_regenerate|i:1670643717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab17c7e74a1ed57476a8fb8816219b746fefc87', '172.105.247.100', 1670643717, '__ci_last_regenerate|i:1670643717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a12a061b12076b2eee0cd99af34cffb3cd2e9e', '172.105.247.100', 1670643718, '__ci_last_regenerate|i:1670643718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb2801b7954513a2f9107c79a7c2cfebd5e6885b', '172.105.247.100', 1670643718, '__ci_last_regenerate|i:1670643718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260e2a8c231330dcf26ef5b0943a5323c1836c9a', '172.105.247.100', 1670643718, '__ci_last_regenerate|i:1670643718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2189f4c8b19ef4f909a29bbf07f272cf6279e89', '172.105.247.100', 1670643718, '__ci_last_regenerate|i:1670643718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d238544914eb855e000a9db8411e5362c83a46', '172.105.247.100', 1670643718, '__ci_last_regenerate|i:1670643718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89202a08799c75f1901acc5ca618518aa52c7132', '172.105.247.100', 1670643719, '__ci_last_regenerate|i:1670643718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b590e9989748dd1902855f16afed714f078d4097', '172.105.247.100', 1670643719, '__ci_last_regenerate|i:1670643719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93392505a33c8fbe00091250f6e4f13f0d78bc77', '172.105.247.100', 1670643719, '__ci_last_regenerate|i:1670643719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b0eda65059538c6d6e58c6866d6a0476441634', '172.105.247.100', 1670643720, '__ci_last_regenerate|i:1670643720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c303b772cdd7a098101d88c48723103346658b75', '172.105.247.100', 1670643720, '__ci_last_regenerate|i:1670643720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2076013bca4cbb95bfdc7fbdc52c9144f9ccc7bb', '205.210.31.164', 1670644212, '__ci_last_regenerate|i:1670644212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff675a94a37ccf0cb15e799649c189dcf30f3f46', '31.222.203.2', 1670645020, '__ci_last_regenerate|i:1670645020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3d35fd8147ab22f1cca33f720ca189b76c3871', '31.222.203.2', 1670645020, '__ci_last_regenerate|i:1670645020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a40ad780e31ec7a86e08be81e62dd449b22d64', '31.222.203.2', 1670645020, '__ci_last_regenerate|i:1670645020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f7ea10ea476efe4c5cb9a65fe21ed262d8db57', '31.222.203.2', 1670645021, '__ci_last_regenerate|i:1670645021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229ea65ca1d7cc0cf811a4da625554090bbb152a', '31.222.203.2', 1670645021, '__ci_last_regenerate|i:1670645021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6092a2f97f783b7763a5e9a59e124d5509258c', '31.222.203.2', 1670645021, '__ci_last_regenerate|i:1670645021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd6dd0905199ba8dadffdb189bea41b775da0ab', '31.222.203.2', 1670646813, '__ci_last_regenerate|i:1670646813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38560be6036489f7b35d615f9cd0050db3057498', '31.222.203.2', 1670646815, '__ci_last_regenerate|i:1670646815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea02ab465ff8652fb2ad28a44128ad6a32c9f7b0', '31.222.203.2', 1670646815, '__ci_last_regenerate|i:1670646815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe43b5556f514965008ff744b5533ffed5f1218a', '31.222.203.2', 1670646815, '__ci_last_regenerate|i:1670646815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e2e4d61c1587dfcb9ccfb6b4390066d76ab15e', '31.222.203.2', 1670646815, '__ci_last_regenerate|i:1670646815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f200f1b4f271209071208136210e226ee28cd4e', '31.222.203.2', 1670646815, '__ci_last_regenerate|i:1670646815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78370ef26cdc92ec8921f689a03a48f6cdc7fbf9', '45.120.39.90', 1670647876, '__ci_last_regenerate|i:1670647876;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670560875\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670647220;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e948bc459a8c2ed5cc0ec1e25ad2aaa5d24e9a5b', '45.120.39.90', 1670648457, '__ci_last_regenerate|i:1670648457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670560875\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670647966;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d20ab302c712eca3ccc59e381ec2d5d8e4f9ab', '45.120.39.90', 1670648457, '__ci_last_regenerate|i:1670648457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670560875\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670648457;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd52762dd10222ea59ffdb391609704f4125bfb', '172.105.247.100', 1670648516, '__ci_last_regenerate|i:1670648516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850be278a3babffd3e0bde94d4e6d780d674b892', '172.105.247.100', 1670648517, '__ci_last_regenerate|i:1670648517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0018f4f04e8ce79d5ce900d17f34ae98d5690dc', '172.105.247.100', 1670648517, '__ci_last_regenerate|i:1670648517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f374f6d6309b6927f138b23db1dcc7ca70fce1cf', '172.105.247.100', 1670648517, '__ci_last_regenerate|i:1670648517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af92b152f54fc7dcf49be2caf3b1454d4edef5a', '172.105.247.100', 1670648518, '__ci_last_regenerate|i:1670648518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aefdb8917b15fc82b70d5cf9d2de94495c4ac206', '172.105.247.100', 1670648518, '__ci_last_regenerate|i:1670648518;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd254987e380853606d45b3b85f6086de081f1c8', '172.105.247.100', 1670648518, '__ci_last_regenerate|i:1670648518;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c0dd431f840649982bb8339f99709f3f32d6ec', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc314b656163fa5365c1d4daad91dc83b6a999c', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e154598ac4bcee735183bb5e11e954e348ab25', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('506842ac4a76b28c5171bf002f9ff741a76deec3', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c5a0fcb126aa6328b2d714656cc41558aa9629', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8e6f2d3766d168bd8bb2a7fe41a1a1167cb8ba', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a9ced275a379bb64dda19f558535751fca4bfe', '172.105.247.100', 1670648519, '__ci_last_regenerate|i:1670648519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048b5d03e30da7f96cae17528d8306c54cb3659c', '172.105.247.100', 1670648520, '__ci_last_regenerate|i:1670648520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a79482c57a29c8ef556c339f452c6a0a61005b9', '172.105.247.100', 1670648520, '__ci_last_regenerate|i:1670648520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fb2b30d60d4b5555ac61ce4eed1dad207624b7', '172.105.247.100', 1670648520, '__ci_last_regenerate|i:1670648520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ab9909ce555162c04ca61d644f37fcc84841f6', '172.105.247.100', 1670648520, '__ci_last_regenerate|i:1670648520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05c74a37ad863aa545f39d0f2aab6e480e344f1', '172.105.247.100', 1670648521, '__ci_last_regenerate|i:1670648521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbac6a05a096ec39d3972564b1a974a7298973df', '172.105.247.100', 1670648521, '__ci_last_regenerate|i:1670648521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440627140ec7ef349828e8eeba6caf5487639481', '172.105.247.100', 1670648521, '__ci_last_regenerate|i:1670648521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446aab68159789e4558b1e02585f37795509e80f', '172.105.247.100', 1670648521, '__ci_last_regenerate|i:1670648521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27a1ac275420278639ca2d4dafd0008fb945acd', '172.105.247.100', 1670648522, '__ci_last_regenerate|i:1670648522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6668c8bed0e27ff4b5bdb52a0a5f1fb6c5fb36b', '172.105.247.100', 1670648522, '__ci_last_regenerate|i:1670648522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a022663517eeca2cba0b86151754817c0cae800b', '31.222.203.2', 1670648562, '__ci_last_regenerate|i:1670648562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d2a67f97cbcab33d4865a3c3fdd30feb4cc6a0', '31.222.203.2', 1670648562, '__ci_last_regenerate|i:1670648562;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17e134514db765ca3078e302c266b404d93c1cf', '31.222.203.2', 1670648562, '__ci_last_regenerate|i:1670648562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1906c3d691e976ba9862391f3ae30873146162b8', '31.222.203.2', 1670648563, '__ci_last_regenerate|i:1670648562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6521b74b11f512346f30086f30165c63cb84463', '31.222.203.2', 1670648563, '__ci_last_regenerate|i:1670648563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68cf72a38d12cfd3456d8cb1427611bb0f96b85e', '31.222.203.2', 1670648563, '__ci_last_regenerate|i:1670648563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde73059d0ed0c3beef0ab74cb43031a64beae76', '31.222.203.2', 1670650419, '__ci_last_regenerate|i:1670650419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5511b13f94a70e58a11a2f2a4724a29d50dd4a8', '31.222.203.2', 1670650419, '__ci_last_regenerate|i:1670650419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6769822dce6f7008f49f41a4dcfb30c53dc02bbf', '31.222.203.2', 1670650419, '__ci_last_regenerate|i:1670650419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83312649a41585c61a7ea690d910e247d3addedc', '31.222.203.2', 1670650419, '__ci_last_regenerate|i:1670650419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166bc609b1345b8bb8e3ae92462b8f9c10cc95f2', '31.222.203.2', 1670650419, '__ci_last_regenerate|i:1670650419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3adeffa12d72ef4b0816807c86152b4ff8b4fe', '31.222.203.2', 1670650419, '__ci_last_regenerate|i:1670650419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e6171bff4376e7229a92d4daa83516d6081490', '31.222.203.2', 1670652219, '__ci_last_regenerate|i:1670652219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192b129b42657d82afab89c55d175016efb17b8e', '31.222.203.2', 1670652221, '__ci_last_regenerate|i:1670652221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da4895576cfe5b5736cdb2b92d1c387fa2aef69', '31.222.203.2', 1670652221, '__ci_last_regenerate|i:1670652221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b141d5c08c14506da6421bd71ce2219fdb428efa', '31.222.203.2', 1670652221, '__ci_last_regenerate|i:1670652221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98daf0ff68aa70bdd03a3595074684f7286b3ff8', '31.222.203.2', 1670652221, '__ci_last_regenerate|i:1670652221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c65d0576acc8b09ccc4466b3e3faca2f59d9c15', '31.222.203.2', 1670652221, '__ci_last_regenerate|i:1670652221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1506118c12c080d2b9be21e56904a05c3920876f', '172.105.247.100', 1670653309, '__ci_last_regenerate|i:1670653309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8118ef2acb8fe4d2526c688dab67e01d7b1912', '172.105.247.100', 1670653310, '__ci_last_regenerate|i:1670653310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfd0d56fb937c6251e988e2d1215b711d0ac69d', '172.105.247.100', 1670653310, '__ci_last_regenerate|i:1670653310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e11ddf2dc007dfe2e89227ec7c4a81ad83e138', '172.105.247.100', 1670653310, '__ci_last_regenerate|i:1670653310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8fb7618e6f4b3e07d650121d49694f89aa6e51', '172.105.247.100', 1670653311, '__ci_last_regenerate|i:1670653311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8385024e8a9f78ab31af57d0f9896de55fc6c0cf', '172.105.247.100', 1670653311, '__ci_last_regenerate|i:1670653311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee957b9bc71841d713894a33ecadd880f3d2e2e8', '172.105.247.100', 1670653311, '__ci_last_regenerate|i:1670653311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fbe3ad557202423c44a45416ddd19a50327cd03', '172.105.247.100', 1670653312, '__ci_last_regenerate|i:1670653311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ba0c231d5e81fbd42224bb4f57b214b095447e', '172.105.247.100', 1670653312, '__ci_last_regenerate|i:1670653312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c494639d43e27f53505811ab7fb40d87c18d23d', '172.105.247.100', 1670653312, '__ci_last_regenerate|i:1670653312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18aa5959ad4bd1b2525e08d6fed6e4e7908532c3', '172.105.247.100', 1670653312, '__ci_last_regenerate|i:1670653312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9cac861227200907a2a8ebb5ca29d9af5d5c114', '172.105.247.100', 1670653312, '__ci_last_regenerate|i:1670653312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e1287a2582c0b7ef84c124f1d36f372c76f859', '172.105.247.100', 1670653313, '__ci_last_regenerate|i:1670653313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8c9fb6f25aadde7a152268c97493b12c542a4d', '172.105.247.100', 1670653313, '__ci_last_regenerate|i:1670653313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87af1430d7f2d292baef03beb828f8eb6c615741', '172.105.247.100', 1670653313, '__ci_last_regenerate|i:1670653313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510052977ef80450954f422721fc28c7a3658fbe', '172.105.247.100', 1670653313, '__ci_last_regenerate|i:1670653313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918e0224913a82e4640585b6705fe10edc12d328', '172.105.247.100', 1670653313, '__ci_last_regenerate|i:1670653313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1621c059f7b62899460dd4dbb55ac29c27d5dd0e', '172.105.247.100', 1670653314, '__ci_last_regenerate|i:1670653314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d21ee7dfc9351d821ae7051848687811acb3544', '172.105.247.100', 1670653314, '__ci_last_regenerate|i:1670653314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd4c68aa0eed22aae1ea165961f2764e16a7768', '172.105.247.100', 1670653314, '__ci_last_regenerate|i:1670653314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7343c344e5523de3a169b1e5eb49902f561db4d', '172.105.247.100', 1670653315, '__ci_last_regenerate|i:1670653315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c095464c07561d105d8577ff981f0579e3900165', '172.105.247.100', 1670653315, '__ci_last_regenerate|i:1670653315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045240acb700f34cf768629af0018717f677e187', '172.105.247.100', 1670653315, '__ci_last_regenerate|i:1670653315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a312ad8e741059d43a26f5632ca15d0d02195d', '172.105.247.100', 1670653316, '__ci_last_regenerate|i:1670653315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c1015e1b29f10d4824f39acacbd79b577901f16', '31.222.203.2', 1670654023, '__ci_last_regenerate|i:1670654023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d50812ad23f42f6db2b469541f9926dfdad4014', '31.222.203.2', 1670654024, '__ci_last_regenerate|i:1670654024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c7078ca286e01e56fc5ade139e61ba873b1866', '31.222.203.2', 1670654024, '__ci_last_regenerate|i:1670654024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('babb1cd7468f772e29d3405200c005445da2c79e', '31.222.203.2', 1670654024, '__ci_last_regenerate|i:1670654024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740666d3539256f2b5cd09416f67db71f5ad383a', '31.222.203.2', 1670654024, '__ci_last_regenerate|i:1670654024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c568cfd930990540d3f59f66c71725b8c22882', '31.222.203.2', 1670654024, '__ci_last_regenerate|i:1670654024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd204b3373b821d75934d449a53ba9e92c4649a1', '31.222.203.2', 1670655775, '__ci_last_regenerate|i:1670655775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c67de80c1fa3c0835b29529518ce52152f53887', '31.222.203.2', 1670655777, '__ci_last_regenerate|i:1670655777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec77d0b1ce433d7170c9f6bb4c85f6582f2bcfcb', '31.222.203.2', 1670655777, '__ci_last_regenerate|i:1670655777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1a7cd08e4b0f242e27d846ca72efabc46501a8', '31.222.203.2', 1670655777, '__ci_last_regenerate|i:1670655777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b582d8b4ae73782b4b956ac64c1d1b18c1e8266', '31.222.203.2', 1670655777, '__ci_last_regenerate|i:1670655777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d1b800ba06445746edd4c74f205f68b063273a', '31.222.203.2', 1670655777, '__ci_last_regenerate|i:1670655777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ffc5eed0066f7bdf62fd5abff37ccd2cb4fa6c7', '31.222.203.2', 1670657569, '__ci_last_regenerate|i:1670657569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05cab1017936d16b82dbbaddb4e073122a7678d3', '31.222.203.2', 1670657571, '__ci_last_regenerate|i:1670657571;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a2d67f1b1f854963c5e02852bb7c0b7bdb611c', '31.222.203.2', 1670657571, '__ci_last_regenerate|i:1670657571;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418fa7f38d28b3f617eb9b913f6ab2a7d2c84fe5', '31.222.203.2', 1670657571, '__ci_last_regenerate|i:1670657571;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6922b9694ed0e7363cc96ad94f957758f32c15fd', '31.222.203.2', 1670657571, '__ci_last_regenerate|i:1670657571;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450cd8644bed5fdd30bd4e32f344b44bf793433e', '31.222.203.2', 1670657571, '__ci_last_regenerate|i:1670657571;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679cb05d7321649356c9626603c0f6c0656b4f82', '172.105.247.100', 1670658110, '__ci_last_regenerate|i:1670658110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e361493208fb2bc7eb75e49e9d9f94c7db83cf0f', '172.105.247.100', 1670658111, '__ci_last_regenerate|i:1670658111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d73c9313658c72fe473d39334592e9f48985ee', '172.105.247.100', 1670658111, '__ci_last_regenerate|i:1670658111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b68bb58193e93e944fe07b200ff398ee821a69f', '172.105.247.100', 1670658111, '__ci_last_regenerate|i:1670658111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74a22ed35abfe68812d4c52d9e132432137e8b5', '172.105.247.100', 1670658111, '__ci_last_regenerate|i:1670658111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe6ffa4be3f9bde193ef271158d87524b3e12dff', '172.105.247.100', 1670658111, '__ci_last_regenerate|i:1670658111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c741a279bb4d9c3c5c11b68dca2475a35734161d', '172.105.247.100', 1670658111, '__ci_last_regenerate|i:1670658111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b713fa176a21f8512529d7ae80cb818ae06e44cd', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a75435b7909f279192bb6da8ef4ca70c7bc496b', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ba9505b52b2d835e7926dfa62f666ddde02a56', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1adc85a215fc95ec7d8d014d6b1bfb8ed1e34b81', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5437f10b4eff1fd50fd392d69c984e9fe4f02dd', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc52ad1cf99b74a8cfb80eeaf2f0371d824556d', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c3ebca22e9b63e814d030e1949c26b91e411c1', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcc7920d53c73e3111e30ffe3861b7a47e5e465', '172.105.247.100', 1670658112, '__ci_last_regenerate|i:1670658112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c734741533504d872e5d22e4d2014a459d78f8', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed0ade73a5a27ccb0f7ea4490d4d5362f7477ed', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98217184d906a50558a2aac75af6f23d062f437', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ef5dba159ac9a01942acd6a3c9862e582751789', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3459278e95cb9401ab2ee59a5f75c7f6f1e811e', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27e2dfe662617491ab6bd8252a9bd8d17382901', '172.105.247.100', 1670658113, '__ci_last_regenerate|i:1670658113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6143a8ef24f6ce9b8274accd37a2a6838f1e584b', '172.105.247.100', 1670658114, '__ci_last_regenerate|i:1670658114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10455fe70c6659c2383ce61758502f4eb2a0c76b', '172.105.247.100', 1670658114, '__ci_last_regenerate|i:1670658114;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea84adcb194040706f14c885afab0b7dbfc6530', '172.105.247.100', 1670658114, '__ci_last_regenerate|i:1670658114;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9d28052c86d39abab415014f35817c3700e553', '31.222.203.2', 1670659392, '__ci_last_regenerate|i:1670659392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7336bfc429d6cfd4df53731d1f89b3e38b8ba982', '31.222.203.2', 1670659395, '__ci_last_regenerate|i:1670659395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f49da9a82ab3d63c208b3932827dd87dc1d8f08', '31.222.203.2', 1670659395, '__ci_last_regenerate|i:1670659395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f23f745207b7f57f0352c6d54f536b55cf7347', '31.222.203.2', 1670659395, '__ci_last_regenerate|i:1670659395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11915895344c159f0dcb95170bdded8a0bdf369', '31.222.203.2', 1670659395, '__ci_last_regenerate|i:1670659395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c577a1ca660329807f31563fa98a1449da0f51d9', '31.222.203.2', 1670659395, '__ci_last_regenerate|i:1670659395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2fe18188844d949dcc3a2c9076dca1076e5ba3', '31.222.203.2', 1670661212, '__ci_last_regenerate|i:1670661212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442a40c19f7611dc655a8f9758de1635325bee85', '31.222.203.2', 1670661214, '__ci_last_regenerate|i:1670661214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3924ce9f3ea217d13a6cd3bf6d35212683f11d91', '31.222.203.2', 1670661214, '__ci_last_regenerate|i:1670661214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd55a6faae9fc46e7d4ed101921ed2e8f789aea4', '31.222.203.2', 1670661214, '__ci_last_regenerate|i:1670661214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c0b5aeba83fc1ad45e35c8980934c736f97005', '31.222.203.2', 1670661214, '__ci_last_regenerate|i:1670661214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2ab3c0be90a89a427bebf61a6e53f110581a8a', '31.222.203.2', 1670661214, '__ci_last_regenerate|i:1670661214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8048393bec66f4ea683e26884f38656dccc12a2d', '198.235.24.6', 1670661304, '__ci_last_regenerate|i:1670661304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1ba248c4413cfe34df27c12f8aa5ca60076997', '205.210.31.15', 1670662728, '__ci_last_regenerate|i:1670662728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d713638a35895ac5eaa7e908a0b7adb90113b62', '205.210.31.15', 1670662729, '__ci_last_regenerate|i:1670662729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97adcc859ba1ac3d266c5f7166590ea9b1750360', '205.210.31.15', 1670662730, '__ci_last_regenerate|i:1670662730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9434eb6f8a2e4a92a88fb187762270ee5e772d9d', '172.105.247.100', 1670662914, '__ci_last_regenerate|i:1670662914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e67571a7af01557ab918ad11a5dd149920e78e', '172.105.247.100', 1670662914, '__ci_last_regenerate|i:1670662914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2608c069fbdbf77513b65fc1cf70f25098912877', '172.105.247.100', 1670662915, '__ci_last_regenerate|i:1670662915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372cda38cae0cdbfad27b15b57a85e326960363f', '172.105.247.100', 1670662915, '__ci_last_regenerate|i:1670662915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bcf669db2b6e61eb0dd18599e844fcbeb5dd2d', '172.105.247.100', 1670662915, '__ci_last_regenerate|i:1670662915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f6e1e423b3565613084f571f151fa5c66b1a99', '172.105.247.100', 1670662915, '__ci_last_regenerate|i:1670662915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e6378c981cabe6a96c06173302c53efef8c535', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c7a1620dbed9ef59f7cdc5b2ee5ee8ddfc31a9', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f442182267a170ee55fb25d644bf2506129fad7', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e6db87db33f7d5955142384761c2eb85d22173', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b7c57b4b23b3c8f865efb1e3981c59fb9557b4', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0da25b63d357578ea27ac3116f21c6d14398c90', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0606d6e5e2ed3d9193c4f91cfd20735a2063f59', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8367a46a458e3e0794ebd9cc11f795c4fa72411', '172.105.247.100', 1670662916, '__ci_last_regenerate|i:1670662916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665606905cc79cf17b2b80781e59f842acb9520c', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a533bac6dd90e8706df2b468173c98cefa1a78', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df2fc9351b90e8f96dabc6ff7230c82ca0e484f', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99304767f8b92ab0bd8e1474866016b017592b2a', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8b310850c531969d8f7c81082bce615d7d755e', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9f1e834008f0b07f86ac37d37f863beb909d0a', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579027921e5288c7ee1759691028d99067f5566f', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6791e69e7eb6053b4dd52dbeabbcab20d9438f9e', '172.105.247.100', 1670662917, '__ci_last_regenerate|i:1670662917;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e9c53ebbf361bb0e19373563c85077b96ad8a7', '172.105.247.100', 1670662918, '__ci_last_regenerate|i:1670662918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80bcffc307e00d27d5e19ce4b9fa6ccd1da7e0ea', '172.105.247.100', 1670662918, '__ci_last_regenerate|i:1670662918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d49013940c2ae824508327ed6ae7144e210172', '31.222.203.2', 1670662967, '__ci_last_regenerate|i:1670662967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1fd626160d3dc9bf1ba9f5630aa68e12f40856', '31.222.203.2', 1670662967, '__ci_last_regenerate|i:1670662967;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7468786230e158e7bed1b59eb0db8356a7d4e50e', '31.222.203.2', 1670662967, '__ci_last_regenerate|i:1670662967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bcd92c5896c4158042bb88f9d3c070730ff2016', '31.222.203.2', 1670662969, '__ci_last_regenerate|i:1670662969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a60e2afdf5f2fec8807b27f04879c95e60618e', '31.222.203.2', 1670662969, '__ci_last_regenerate|i:1670662969;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37ebcc6336b6c9c86519b61d7c27f8aa6435b0f', '31.222.203.2', 1670662969, '__ci_last_regenerate|i:1670662969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a7e97d3d4a0a0d4c8f19f3ff727bf0231860f0', '31.222.203.2', 1670664798, '__ci_last_regenerate|i:1670664798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08021176629e8c02e53056a2606da41aab376ce', '31.222.203.2', 1670664800, '__ci_last_regenerate|i:1670664800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be47867fbfeb93c590a8a823dd68732da18eb7bc', '31.222.203.2', 1670664800, '__ci_last_regenerate|i:1670664800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff77a0f1d7cb3544547669ba0b54236f711b05d', '31.222.203.2', 1670664800, '__ci_last_regenerate|i:1670664800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5095faffb8a321f53f33f4e6f032098b7eb117', '31.222.203.2', 1670664800, '__ci_last_regenerate|i:1670664800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27b7a107fa45e186b6b9e3c27707401c2ab5da8', '31.222.203.2', 1670664800, '__ci_last_regenerate|i:1670664800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad04c2c22c54f512d57628311143cc7349270c46', '198.235.24.163', 1670665980, '__ci_last_regenerate|i:1670665980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6091e127ce12b258b649976bff2b4d6f842a8f59', '198.235.24.163', 1670665981, '__ci_last_regenerate|i:1670665981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c12ec7c227d4f37d4f6d6479dceb4f079022406', '198.235.24.163', 1670665981, '__ci_last_regenerate|i:1670665981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17cb4ec7c0d8a7977baddcdc92109a16b5b1c7c3', '31.222.203.2', 1670666594, '__ci_last_regenerate|i:1670666594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82f166a931a903858f7b08fd8ed958077d820b7', '31.222.203.2', 1670666596, '__ci_last_regenerate|i:1670666596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40cc541568da752913a752ad7feae0771980d3d', '31.222.203.2', 1670666596, '__ci_last_regenerate|i:1670666596;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a2061ee8edf40d053ddd586e0810d593da8c4b', '31.222.203.2', 1670666596, '__ci_last_regenerate|i:1670666596;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47be7e41329b7edb63b0846faeecc81c9eca808', '31.222.203.2', 1670666596, '__ci_last_regenerate|i:1670666596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f1fcd3e3527774c8c6cbaabf3e2cd555764198e', '31.222.203.2', 1670666596, '__ci_last_regenerate|i:1670666596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb38ecca993b3300af88e474c4f6de80639680c1', '172.105.247.100', 1670667705, '__ci_last_regenerate|i:1670667705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c094d071f51b0070d916415f5a14614f803b20', '172.105.247.100', 1670667705, '__ci_last_regenerate|i:1670667705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de0e70e5439ac1d843fc98fe74ca7efdf6c5520', '172.105.247.100', 1670667706, '__ci_last_regenerate|i:1670667706;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3df36e867954d76b05cd82d83546fa7ebfc9eb', '172.105.247.100', 1670667706, '__ci_last_regenerate|i:1670667706;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8fd8a4f982ddbb3c398ee4e29674d970f635b17', '172.105.247.100', 1670667706, '__ci_last_regenerate|i:1670667706;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0659aa9e5abacdec58a2b085b260912cd64cd501', '172.105.247.100', 1670667707, '__ci_last_regenerate|i:1670667707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cf3eaa0ed041c22fff8477e6356a6eab803051', '172.105.247.100', 1670667707, '__ci_last_regenerate|i:1670667707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd6e0fce8df6fda38964bfce486082493416a52', '172.105.247.100', 1670667707, '__ci_last_regenerate|i:1670667707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ada173178674e82e01a95df1d976e5c9a2a186', '172.105.247.100', 1670667707, '__ci_last_regenerate|i:1670667707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4daf77697fd1f3776c402e24ec1e6a25685ef103', '172.105.247.100', 1670667708, '__ci_last_regenerate|i:1670667708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b939f0a8e136f22b9e4c5682acec788d671f32', '172.105.247.100', 1670667708, '__ci_last_regenerate|i:1670667708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b59f6088698748068e5934c39fbcc07d78e9f8ad', '172.105.247.100', 1670667708, '__ci_last_regenerate|i:1670667708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31988cf301ad58ad4cf8a2afc69af1b6f77dee3', '172.105.247.100', 1670667708, '__ci_last_regenerate|i:1670667708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f5173cde711a86f05bea80bcbf917221139e10', '172.105.247.100', 1670667708, '__ci_last_regenerate|i:1670667708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7fc23f9bd2d3c6b6c30cbf1aad904eb3c7291ef', '172.105.247.100', 1670667709, '__ci_last_regenerate|i:1670667708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab51483a7f1857463166070ae4273f8012213fa', '172.105.247.100', 1670667709, '__ci_last_regenerate|i:1670667708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3037b641b434326bf9dab4d4aa9db5da009e64f9', '172.105.247.100', 1670667709, '__ci_last_regenerate|i:1670667709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1691fb1f420fb06b41566bc6a0464e66d2539637', '172.105.247.100', 1670667709, '__ci_last_regenerate|i:1670667709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89db8b6507b503a5c7936a981e22a9479fdb3da6', '172.105.247.100', 1670667709, '__ci_last_regenerate|i:1670667709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ecac5e2ae2ae50b42d5b00fa183766327b80d25', '172.105.247.100', 1670667710, '__ci_last_regenerate|i:1670667710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0928be87e49891e08827b98ce75aad3b67aff3ff', '172.105.247.100', 1670667710, '__ci_last_regenerate|i:1670667710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec7f4a89469f33eaf650b46b97e20a4f74a099e', '172.105.247.100', 1670667710, '__ci_last_regenerate|i:1670667710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cda9748b23f5e1c99c57cc4ad0584e2b3a66131', '172.105.247.100', 1670667711, '__ci_last_regenerate|i:1670667711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75f4852b14dffe974d24a316f8e18376e4728d5', '172.105.247.100', 1670667711, '__ci_last_regenerate|i:1670667711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c23730e35417d9d8e04cd6597975e532410f373', '31.222.203.2', 1670668396, '__ci_last_regenerate|i:1670668396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b687e208c70a11a118cf4108babccd64eceea6', '31.222.203.2', 1670668396, '__ci_last_regenerate|i:1670668396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4cd5c5b21d6b773f59b30bc28534c4ab647c11', '31.222.203.2', 1670668396, '__ci_last_regenerate|i:1670668396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654ef24e65e547673a9ebed6ea8718fc3944f64c', '31.222.203.2', 1670668397, '__ci_last_regenerate|i:1670668397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2a6de893ee64f3bb6db4ddb7f0d775513bd1fa', '31.222.203.2', 1670668398, '__ci_last_regenerate|i:1670668398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febc17e3ca8f73625d72500668f91343fe95d158', '31.222.203.2', 1670668398, '__ci_last_regenerate|i:1670668398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e540180504ce900eff0d343483c94d3d2797b5', '31.222.203.2', 1670670219, '__ci_last_regenerate|i:1670670219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2681337c1994052f77bb28c2752bd83aaaf74b', '31.222.203.2', 1670670221, '__ci_last_regenerate|i:1670670221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98650862e0e1c054ffc1e0e07483db2f13453442', '31.222.203.2', 1670670221, '__ci_last_regenerate|i:1670670221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe7c4cf36c6cf6f7e5eefdf027d1a020d6c2d05', '31.222.203.2', 1670670221, '__ci_last_regenerate|i:1670670221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9179166571209fc39a9fac35cbae5dfe24c04cbf', '31.222.203.2', 1670670221, '__ci_last_regenerate|i:1670670221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef051e295d886414d07871ddd35fa8f9b989ced', '31.222.203.2', 1670670221, '__ci_last_regenerate|i:1670670221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45261f7d455c6f66aebf2c698fdc1083dcf9b9bd', '45.120.39.90', 1670670972, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4615c8dd2a9946c4895ad9238a562351db52f4bd', '45.120.39.90', 1670670972, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf8914e79b94327449c7a63d4c689ef3762d360', '45.120.39.90', 1670676180, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670676180;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670647213\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670676172;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ab23fb4d9ba9a8271c17dfeb4e85eafe5676e6', '31.222.203.2', 1670672042, '__ci_last_regenerate|i:1670672042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e567331473ab2cbb7028dc4d2fedd3303698524', '31.222.203.2', 1670672042, '__ci_last_regenerate|i:1670672042;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dbf9ac36c4a26f5d340764dce9da3a0ca1f7b0f', '31.222.203.2', 1670672042, '__ci_last_regenerate|i:1670672042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f18204de83808f07dc8396d2b024231f963d7a', '31.222.203.2', 1670672042, '__ci_last_regenerate|i:1670672042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8141d3e3a52979ab60ab276563d3305c12361525', '31.222.203.2', 1670672042, '__ci_last_regenerate|i:1670672042;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5651bc7ea9e7e6cb3eec919923b10a60bd2ab9', '31.222.203.2', 1670672042, '__ci_last_regenerate|i:1670672042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378243fe1e0e5aac5e10559609eee8ecbfddce3e', '209.141.32.113', 1670672058, '__ci_last_regenerate|i:1670672058;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844d3210f15c8a17a1123cb1a27d6bde7b8b58b2', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df52452bb33d2d1d68866c1cf250467acc26d715', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67fff5a18e8b79dacd08a81cd66bf72754b66faf', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b1b5304a13b49ab56f92a84b75e8a76206e37c', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c360fa2e988d655d7bce28c87399d13efa4650e8', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9ee35057a53c7a8d039a51ce9c3bca8208f49f', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d9f19a918b3107600da917c9a200fee7d1d9930', '209.141.32.113', 1670672059, '__ci_last_regenerate|i:1670672059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d2435f3f2f8ee1becfa9de115318729ebbda265', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4387c63e4bf537d990f7c8f3f6c7b1ff20f262d2', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b614ee9fd74113bbb0ed8e7250defef9f7262f0', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03b8581ca542a454041d365219775e07552c17e', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622098c6ff5fc2fccc4644c7f598c83df736d929', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659bbd2d0cae5e1135b7c8a82b8595204aebb2ca', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c75c0940fa3031770f4859477cfc17e7e11c85', '209.141.32.113', 1670672060, '__ci_last_regenerate|i:1670672060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d182d9c135684c57d5996b70de34f8bcc54cae83', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b67e6e3654fae01b7c5921e7a237b0ccfb4b3c4', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfed7b2687b0dc878e328021d8645c546b93f461', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7343f28daf6273dd67cce99169e86bb22205c0aa', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0f9e81b5514b8f54c0b44eb5f2d935a47c470c', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7b75445d87c7f968596fcb0dc39cb0a9fbfd4c', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45504b4efac843493c7025c7d237cc727103310d', '209.141.32.113', 1670672061, '__ci_last_regenerate|i:1670672061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b22e317bc2ee5e4d3022de58200326651bc150a', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c30ae0935c20b0fed5ff5b38ef905733acb102', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5786441672ca1dd200a99ca1759eb0b5e51958', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6465902f9f25e2f9a019fc9bf18db3ed734894e0', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79dbfe54da330e1b1668209375d6baf2b423d88', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c713198ef63e555d8e95b8c051cb1accdea49fc1', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3736b80a4212e2968461d0163630ca80f1d49f98', '209.141.32.113', 1670672062, '__ci_last_regenerate|i:1670672062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0450005274c269e2e8174bf2698704854a14f533', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0cc3f7b9fdc2772221369c56ce92b4b2bc5a4bf', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84dc60c0c2c098e623acd759c1268a2a3ee64ea', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecab63307a568871c5662cd8b5f4790641eeff31', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83f09bd741ad544d9243f3400ab4e09cefe4268', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067a83b993bbb7bb51f64141e6a5cdd8e3d1674c', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ae0f899ca6c181e59eee71452a50fcf02466a7', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1077001f9ef67d56fbca06469e63fe499865d46', '209.141.32.113', 1670672063, '__ci_last_regenerate|i:1670672063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79d4db0e69301cf21e996047d7840691a063056', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530c96ac3e5ca419a6704d71337254ed4f23002c', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2a7c8912188f30bfbd2a9a76902ccfc307ff7d', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1034225e7115eb102fbf89f43ab04ddaa506acf4', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('905eb03b1129e8b24952068a7b79099558493498', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54f1346e44a402bbdc27bf892a6e292f51a97c3', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05182c0183fb82e91dcd77a788d1bb081dff973d', '209.141.32.113', 1670672064, '__ci_last_regenerate|i:1670672064;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78a2395008312aec3720c7b9ec123ec10adcb4f', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ecf7370b673b00bd647e40d5618eeff53b1f423', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb41f976976869ac3d10626d9ae61e869e6d6a7', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc6581617d80fd7c3aa0165c52dcfa28e58314a', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62414a9f88a1a7bc1c7d8dbfdc1c15f0304d145b', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866a6c39f2282d93f421e152e2418968136af6e7', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c5069a8f449defbd6ebe6adac65fd736e25119', '209.141.32.113', 1670672065, '__ci_last_regenerate|i:1670672065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03799ff9c9665a9bd10849491904764625138d7', '209.141.32.113', 1670672066, '__ci_last_regenerate|i:1670672066;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9862022345a58a45e71184c50b2fac0fc92b468', '209.141.32.113', 1670672066, '__ci_last_regenerate|i:1670672066;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b171869326a6ab172744da083bc2b4353d95825b', '209.141.32.113', 1670672066, '__ci_last_regenerate|i:1670672066;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acca257db1c3bbe1bc48ef45e22752fdf3608a43', '209.141.32.113', 1670672066, '__ci_last_regenerate|i:1670672066;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e277eae86017d077168320d36e4ea12fc99cdb2', '209.141.32.113', 1670672066, '__ci_last_regenerate|i:1670672066;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235a1567347b85e717827c3a80307dffe9a2a101', '172.105.247.100', 1670672508, '__ci_last_regenerate|i:1670672508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd1a869ec5177a9fa2f7685dbe2f917aade6d47', '172.105.247.100', 1670672510, '__ci_last_regenerate|i:1670672510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ee1bd3eb7e7d8c2d0dd09751aaa500fdd9080f', '172.105.247.100', 1670672510, '__ci_last_regenerate|i:1670672510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa866f3364901b717f873721d19fe5a0abd58678', '172.105.247.100', 1670672510, '__ci_last_regenerate|i:1670672510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a969dc340e8a22a61917c5e0c53bfcebd49c0124', '172.105.247.100', 1670672510, '__ci_last_regenerate|i:1670672510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ce47282dc8261f75962b587f6ddb1f3639296a', '172.105.247.100', 1670672510, '__ci_last_regenerate|i:1670672510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32c03dc9ba5e8c64434221ad45d238ffd5e3a22', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d987df6a00e3b83f5f9ff23b891d5328d8e5eaa0', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac9c7e7ef43ff454f32596b8a63a6bc6ddc56e4', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99027b77ebd30f3473ee75243c6ccd090f0a3471', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afbefb73c2d2ab89ec635aeefecc96ca705bd55c', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f06677d8fd76ea0e587584ff49c466d8d7451a', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b79108e9b7099427ffbe12e3c797e8333114cd', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea13e3a7c56bbd73d6ea11ed41729c8de656ebaf', '172.105.247.100', 1670672511, '__ci_last_regenerate|i:1670672511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0639403930da659f6f823edec3a927dfe4508c', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77d7a3e2557f937506e7409f3b23a66895ebc14', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4738250b01b1ae55c38b8675dc2860d54bcdb0', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb963187fab919ec121ad9052ddb2f895a35b6b1', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1af9b1a7b434a1923029b00f84e89d8f02811fd', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5dd02ef0f7a6156ff31c994ab17be5e79149a75', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bcf9f011d08ad511145fb7b4cb38c3f123f234d', '172.105.247.100', 1670672512, '__ci_last_regenerate|i:1670672512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc5a70b923db02fb3cb96e66c878869cf6260f8', '172.105.247.100', 1670672513, '__ci_last_regenerate|i:1670672513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('677b30878eb18e90783bdcb584ec3ae30af55557', '172.105.247.100', 1670672513, '__ci_last_regenerate|i:1670672513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f713cbb905a585238fceea5d66193b7139227b10', '172.105.247.100', 1670672513, '__ci_last_regenerate|i:1670672513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb7d1780ae9f8684073124d2b7baa63cd0ecfff', '31.222.203.2', 1670673793, '__ci_last_regenerate|i:1670673793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae9b699bb0a85deb5dd47479d5f3cfee4c4d5cf', '31.222.203.2', 1670673793, '__ci_last_regenerate|i:1670673793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45140190f55f6f148f54a0804b5660aaba06802e', '31.222.203.2', 1670673793, '__ci_last_regenerate|i:1670673793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2d448f6e05f88ade66b1bda74b6f7a5d7f0ea5', '31.222.203.2', 1670673793, '__ci_last_regenerate|i:1670673793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e196d05dad871185b66af1e7f0d34b006eac27c', '31.222.203.2', 1670673793, '__ci_last_regenerate|i:1670673793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2c259ba613b29ed3257a06c5f61dda41122313', '31.222.203.2', 1670673793, '__ci_last_regenerate|i:1670673793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5ec9098f2c1e2db73d4d809d0f42ba75bbf951', '31.222.203.2', 1670675627, '__ci_last_regenerate|i:1670675627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac8583eb2e62688ad4b773645d55f7b0f521bff', '31.222.203.2', 1670675629, '__ci_last_regenerate|i:1670675629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6145393fbbcf8cd2554e6c48d99460d058e9bc', '31.222.203.2', 1670675630, '__ci_last_regenerate|i:1670675629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799768727c13f122e0490cd19482a041c7a7bf5c', '31.222.203.2', 1670675630, '__ci_last_regenerate|i:1670675630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671f2727464a4e1101f5e82603eab319cbc486be', '31.222.203.2', 1670675630, '__ci_last_regenerate|i:1670675630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805fe973e1e172a8028aaa9e2ad9c2cd709e54ec', '31.222.203.2', 1670675630, '__ci_last_regenerate|i:1670675630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6887ccaf246c0413a5f70d87d249b5bb97ce415', '45.120.39.90', 1670676528, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670676528;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670647213\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670676181;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b547032861418dd03efab510a8db5c3b548537', '45.120.39.90', 1670679726, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670679726;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670647213\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670676557;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8c7f3850e966d0ce8f568f146bb5de46b7c736', '172.105.247.100', 1670677316, '__ci_last_regenerate|i:1670677316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3473210f130a9f09595784ac3b48bc9c7ff383eb', '172.105.247.100', 1670677316, '__ci_last_regenerate|i:1670677316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215228fd3ae6fb88a03f67d4f1b4a281a7171e4d', '172.105.247.100', 1670677316, '__ci_last_regenerate|i:1670677316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5011b4cb313cbbe87d2237e78b4ba1d41b1976c', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c4b34c2be6385262782727bf6b8ad891d76319', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d1e2aecfee9276fc5bb05c7ccfa50fccafc510', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2aacad4d2f171ba05f396fb8779d672761df63', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61cac70000d98ae05877da812cd8bbc30ba6f877', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c0c236bdb21cec82fd1af6aa7cb0e63afab790e', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8602baa353ee10f829bc0720d946a95410f04e', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07336a3830ac0d40e934a87d5c79d2326280ce6', '172.105.247.100', 1670677317, '__ci_last_regenerate|i:1670677317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff4a4dff63cbd1989606c2623e67bf3838a338d', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a35dd27d94bdc6239c474e3ad0cc9b704ed26cd0', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd03b09c66a1817ac25deeb77fe55e53a48767b2', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85fe724ed68915f74e0b8ba621ddc78b85cfced', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aadf2f28e9368799233d6afc9eeffe32b231185', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92614bd2d8181622effc997e0362f2cd1fa53c6', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaccb5c3870e32651c1a3d9da2532e40bcedd9ea', '172.105.247.100', 1670677319, '__ci_last_regenerate|i:1670677318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e128a4a3fb43903ee1fc6f69eee6cee3dc9ee5', '172.105.247.100', 1670677318, '__ci_last_regenerate|i:1670677318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c0201599c0915e96832b509e24782d39a8620f', '172.105.247.100', 1670677319, '__ci_last_regenerate|i:1670677319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f88d62ac202f3011f44710bca1f8bc3365ab849', '172.105.247.100', 1670677319, '__ci_last_regenerate|i:1670677319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3232f24e006081d85358b67aa129bcf531eb2443', '172.105.247.100', 1670677319, '__ci_last_regenerate|i:1670677319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289bf32fcc8654eece0c45f9e7168d819b6fd2a7', '172.105.247.100', 1670677319, '__ci_last_regenerate|i:1670677319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0073ac1964fb627c652e2db647e9c75ebcb28780', '172.105.247.100', 1670677319, '__ci_last_regenerate|i:1670677319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97d64306e424438bbd6047e183515cb0cd75a20', '31.222.203.2', 1670677372, '__ci_last_regenerate|i:1670677372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a104a264daa4b126b1c68ba36b080642daabd50a', '31.222.203.2', 1670677374, '__ci_last_regenerate|i:1670677374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45c019da458c694992449fcc7334d7e5c477efb', '31.222.203.2', 1670677374, '__ci_last_regenerate|i:1670677374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b96bad6226c9189e28155b282d61cb0401795df', '31.222.203.2', 1670677374, '__ci_last_regenerate|i:1670677374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19f7e48a462009feb4a84fac692810cb2c1be41', '31.222.203.2', 1670677374, '__ci_last_regenerate|i:1670677374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9c25ebc8ae19f038d5be0964da0986d2e64e38', '31.222.203.2', 1670677374, '__ci_last_regenerate|i:1670677374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3cd7bb5f648ce3f6dad3483399bbe315738ee1', '31.222.203.2', 1670679221, '__ci_last_regenerate|i:1670679221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66782b49086e0b2056438c1f202acf3c8be180ab', '31.222.203.2', 1670679223, '__ci_last_regenerate|i:1670679223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa8fdfce851c1a6982d575e9beceba6b6f5f69a', '31.222.203.2', 1670679223, '__ci_last_regenerate|i:1670679223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd58b03cf948be1b1fe8cd25601664f94552fcd', '31.222.203.2', 1670679223, '__ci_last_regenerate|i:1670679223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b672927243882b0412c4feeedd6080274ec4172f', '31.222.203.2', 1670679223, '__ci_last_regenerate|i:1670679223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8871d987159c16043104ac62a5b15520ea1dcf14', '31.222.203.2', 1670679224, '__ci_last_regenerate|i:1670679223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa91d398dff5056357a06a5dc21b5fe91525c8a', '45.120.39.90', 1670682368, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670682368;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670647213\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670679779;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f255e7661506735a00ee92112ed39584f7ceec79', '31.222.203.2', 1670680987, '__ci_last_regenerate|i:1670680987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47481439e83334f4d44530d94bc1e4313229e7d9', '31.222.203.2', 1670680989, '__ci_last_regenerate|i:1670680989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462d034124eca83b04f54a37981de9da7394a609', '31.222.203.2', 1670680989, '__ci_last_regenerate|i:1670680989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194953585711c1c9ad84e6abcee4e7aedace11b6', '31.222.203.2', 1670680989, '__ci_last_regenerate|i:1670680989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e671bcad7f9ccbb4a428e7f9238850615baa6235', '31.222.203.2', 1670680989, '__ci_last_regenerate|i:1670680989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8def5558e8ab34fbe0d6a557ffd7e1f318f117b7', '31.222.203.2', 1670680989, '__ci_last_regenerate|i:1670680989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6d6545e9258c0d817123494462f5fc010c3991', '172.105.247.100', 1670682105, '__ci_last_regenerate|i:1670682105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e57c9495433f05bee376f03473bd18c9a4f264e', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb374511bc0642a30ad77de500164763a51121bd', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3c1418e408e0a3af447605eeba22f08c14bc21', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a3fc2b7ba9bcced664d40f33038470aea2e161', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91291ae55af12596c9e4a79376493865c43ddec3', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1159daf4f23572a334acbcececb70752f57f0a5', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b251b5ffc67dc303eb80bd1f24f8e888b5349e8', '172.105.247.100', 1670682106, '__ci_last_regenerate|i:1670682106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44eb0596d88d1582bf48b215f631a5b8e4f34bf4', '172.105.247.100', 1670682107, '__ci_last_regenerate|i:1670682107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250741775f107029473f3e9cea69a12aacc782b4', '172.105.247.100', 1670682107, '__ci_last_regenerate|i:1670682107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c77728599e5a6e828243431e92e5bdc574e7cb', '172.105.247.100', 1670682107, '__ci_last_regenerate|i:1670682107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd1c718973033aa2a7386a0c67868f9d80f6367', '172.105.247.100', 1670682107, '__ci_last_regenerate|i:1670682107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c578640c5c4d20e3bfad7876d55c6feb4eb1afc3', '172.105.247.100', 1670682107, '__ci_last_regenerate|i:1670682107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f27f93c91b2188cac6791b1e6ecb0999cd3f57c', '172.105.247.100', 1670682107, '__ci_last_regenerate|i:1670682107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e1d9565adb42ef713b2adda4fbe0fda39abc69c', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3630cad8cc8a79c7cafc30b2b7c97d712cb32e9', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5880fee8e2532f93d7fc59908141a602854fc31', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c747b430041ec2bc17b4f943c09173b2032842', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a540e60baa6a71f37450b9d7b053cb8297c2793', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6dcf90f7b09c3df138eaa7371fba609328eec00', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707ac29a9e4c03a77b13a5fb692d950392402242', '172.105.247.100', 1670682108, '__ci_last_regenerate|i:1670682108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97ada906784db2647328cda0971b4984ed7e7fb', '172.105.247.100', 1670682109, '__ci_last_regenerate|i:1670682108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1453c543db186a4d75454b11acb370ffc641ed98', '172.105.247.100', 1670682109, '__ci_last_regenerate|i:1670682109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d41b7f7d5190703ea85ee195655279a518c09b8', '172.105.247.100', 1670682109, '__ci_last_regenerate|i:1670682109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c595c05738b8fe014c603fac0a14c6d566850d', '45.120.39.90', 1670683440, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670683440;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670647213\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670682368;register_id|s:3:\"275\";cash_in_hand|s:9:\"7570.0000\";register_open_time|s:19:\"2022-12-09 20:59:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8d8306a67543767ddf268c31de2b34068877ee', '31.222.203.2', 1670682832, '__ci_last_regenerate|i:1670682832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c45be3f45487bcbc51ae9d4500722adf024289f', '31.222.203.2', 1670682834, '__ci_last_regenerate|i:1670682834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0814c8f5291065a45313925280942815779415ca', '31.222.203.2', 1670682834, '__ci_last_regenerate|i:1670682834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd304f461f0958941b43f72c08f93ea484b9d1dd', '31.222.203.2', 1670682834, '__ci_last_regenerate|i:1670682834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65fc055219c35f3d294f2fdf7e8ed7af985a71b', '31.222.203.2', 1670682834, '__ci_last_regenerate|i:1670682834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ab53fd277f82a701429fe167758977f6606de6', '31.222.203.2', 1670682834, '__ci_last_regenerate|i:1670682834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('625d4f3b37984838f48a72bab7c07d1f6e1f718a', '205.210.31.55', 1670683041, '__ci_last_regenerate|i:1670683041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3463bfcf798563468342f4d2dbbbb10078d67f10', '205.210.31.55', 1670683042, '__ci_last_regenerate|i:1670683042;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a409b7363df998dc63e5fc4fa0536afedfbe03', '205.210.31.55', 1670683042, '__ci_last_regenerate|i:1670683042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a21ec2b932de1f3bb164ff426d14651d7c6190c', '45.120.39.90', 1670683551, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1670683440;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670647213\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670683550;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e298a418184efb7cd4342032d95fb18c7d85fc4', '31.222.203.2', 1670684592, '__ci_last_regenerate|i:1670684592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042a77f2732e292b8df7b25c9b52bbecce6ba954', '31.222.203.2', 1670684592, '__ci_last_regenerate|i:1670684592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a26e28df0738b45e49ae037d2ba07381f09fd43', '31.222.203.2', 1670684592, '__ci_last_regenerate|i:1670684592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9215399365bda5c758e83cf93e3f9bf8d977a153', '31.222.203.2', 1670684592, '__ci_last_regenerate|i:1670684592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b31ace0d8aa97d5b77893977a9ebcabc31ce065', '31.222.203.2', 1670684592, '__ci_last_regenerate|i:1670684592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b857ac3054f109e8c72ecb9da2478a28fc5cac0b', '31.222.203.2', 1670684592, '__ci_last_regenerate|i:1670684592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a67f9503fa8df43133c6a2192acb412d3ca58d0', '31.222.203.2', 1670686406, '__ci_last_regenerate|i:1670686406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41c647ba3c85e4ca5d1330222c99a8c61518bd9', '31.222.203.2', 1670686407, '__ci_last_regenerate|i:1670686407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e983f3d7f3a7c5a18174ed81064050ead6690274', '31.222.203.2', 1670686407, '__ci_last_regenerate|i:1670686407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce39af04a0061b24a3988033dc0697da8ed6af55', '31.222.203.2', 1670686407, '__ci_last_regenerate|i:1670686407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc17fd35ed519427d862cb0587adde6587ad683', '31.222.203.2', 1670686407, '__ci_last_regenerate|i:1670686407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2af753bb9296e5ed801c30c316def3cc34e3f2', '31.222.203.2', 1670686407, '__ci_last_regenerate|i:1670686407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11048f5af3ad6d492f20ba7cec1aea8e30fdae4e', '172.105.247.100', 1670686904, '__ci_last_regenerate|i:1670686904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb553039d21a001c091d90cb26af79e44a7d8e8', '172.105.247.100', 1670686904, '__ci_last_regenerate|i:1670686904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3839eb790188c23a51ae6b54c1dac0661a34b0', '172.105.247.100', 1670686904, '__ci_last_regenerate|i:1670686904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0927a2d6298bd0fa904bed802cd652c51caff27', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956393cb799125a68b316738bfef09548532aca6', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e539b876e261b8025c5590e17ebcd29dd33dfa2', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1268f9d53ea8162f06fae3fa839ac8f5a894d8f5', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe5d25b467244fe04cb3cd0a021b358e0ba2d8e', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47a7b43094972b98cabd7c0053ffaa2d68bcbf3', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19abce95afc65a451e86c68b6e9cb98faba6262b', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6752062de5a7ad7bff10703331fb182789ff5fd', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64deba2c49ade7cb026ac705ec75a82fb1d59bf1', '172.105.247.100', 1670686905, '__ci_last_regenerate|i:1670686905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc293b42c62bf3ec581f56b2bd5108f853dd595', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20de46ceb60a69a9c453feba736ea923d73f108', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0d24111fcebc04847a6d69f230cbd51e85cefa', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d20f2a364e85b5e322203d5f85d5205f899e4b1', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea065983f820117dcf680df551c13d358f44ca3', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e065736816422a3cd2e89968f9b71bebcccafe', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1df2869bfaa8d6f185ee8cc53f6e4763e9ec25f', '172.105.247.100', 1670686906, '__ci_last_regenerate|i:1670686906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb2bcfe311a8c7be5a5f08245c23e4c090dc608', '172.105.247.100', 1670686907, '__ci_last_regenerate|i:1670686906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a773016f33814791ba332a575e42be18b497f064', '172.105.247.100', 1670686907, '__ci_last_regenerate|i:1670686907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad2bd8f0883b8ff84ea3821d3246dc9327d679d', '172.105.247.100', 1670686907, '__ci_last_regenerate|i:1670686907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1f2dc9ca5c8b47ac70c5ddc52a8e952d300641', '172.105.247.100', 1670686907, '__ci_last_regenerate|i:1670686907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb8ab011b41bfddbff0123892b81b2ccf343c8c', '172.105.247.100', 1670686907, '__ci_last_regenerate|i:1670686907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e1b850676ce8c914bb8352f9e5f5e61b14433c', '31.222.203.2', 1670688237, '__ci_last_regenerate|i:1670688237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be41ce37cb2e3934e09cb6714ac5cbde34b25e7', '31.222.203.2', 1670688239, '__ci_last_regenerate|i:1670688239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39386250cda0e7ae47552e8331056bda63ef12aa', '31.222.203.2', 1670688239, '__ci_last_regenerate|i:1670688239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3087a147c2cc1e5091a609df80ca6be2049de27b', '31.222.203.2', 1670688239, '__ci_last_regenerate|i:1670688239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496ab10941f32b34a70046f6f2f821496a1d6ce3', '31.222.203.2', 1670688239, '__ci_last_regenerate|i:1670688239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb77ca9c6377fae5a8672376bc4d3babd28b8cb', '31.222.203.2', 1670688239, '__ci_last_regenerate|i:1670688239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a59fccd72a85b6b35bccb35d3c78578e761fd1f', '198.235.24.6', 1670688811, '__ci_last_regenerate|i:1670688811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af2f47213de0decf5dbd025c8ae1dbfe63b0c36', '198.235.24.6', 1670688813, '__ci_last_regenerate|i:1670688813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5f4ca3e3eae8866fd26275ae240bbfefea6163', '198.235.24.6', 1670688813, '__ci_last_regenerate|i:1670688813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e86769a0396deedd569ff6aba96b1007395280', '31.222.203.2', 1670690016, '__ci_last_regenerate|i:1670690016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29493998245aa9815bf9ac7b247f3189b9b1000', '31.222.203.2', 1670690016, '__ci_last_regenerate|i:1670690016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c9c2fdcdfcc930de4c1c6de87378fcdf97d816', '31.222.203.2', 1670690016, '__ci_last_regenerate|i:1670690016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76437b2b86658f6ddb398b7b84c8fdb290f70e03', '31.222.203.2', 1670690016, '__ci_last_regenerate|i:1670690016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e2a5f691b3589f5315cfd2c88d750eebcf560b', '31.222.203.2', 1670690016, '__ci_last_regenerate|i:1670690016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2c7007c4452beab399e26fb370f4e8e1d609a5', '31.222.203.2', 1670690016, '__ci_last_regenerate|i:1670690016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15c97815db3a68923fca69caf6a3490babefd48', '172.105.247.100', 1670691107, '__ci_last_regenerate|i:1670691107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a62f45849224ca549e7337d1691b9717567ac82a', '172.105.247.100', 1670691107, '__ci_last_regenerate|i:1670691107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b3375871b694ac8b84084a06c872f69069b282', '172.105.247.100', 1670691109, '__ci_last_regenerate|i:1670691109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ec8631a25c3ce6b6a28761ae831026eb8edba3', '172.105.247.100', 1670691110, '__ci_last_regenerate|i:1670691110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27b72f3cd414697a9d21cff30c51e091722c9c3', '172.105.247.100', 1670691110, '__ci_last_regenerate|i:1670691110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9704caf0f66d00eecd0836490e6271d3fc18dd2b', '172.105.247.100', 1670691110, '__ci_last_regenerate|i:1670691110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734f4a6d2e54c196a6e0d24e0f5151d8b6d89440', '172.105.247.100', 1670691110, '__ci_last_regenerate|i:1670691110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6987b3ff4093531d9086dc6063b4149bb29646', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05b60a995c0ac6554e031a9d5c72c742d2d20da', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3166c7e2fc67ffb7fa30913646ed9b680a32016', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76f2f45120addffd62907d59ea9dc1288d566de', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9fbc590a84f83812ac5c7613f7f3414b7a543e', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5bbd326cd61e585b6a0ffa0137a9d15a47e3b3c', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef6a3e891cc487c7e4c988a75852aeba434504ce', '172.105.247.100', 1670691111, '__ci_last_regenerate|i:1670691111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9869d3b37baf974f41a2bd09c4600701ce91b6c', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f75cf688365dd4f426e83143004ef692167c68', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ffcfa492c7d9d2e3c3881ef3dee30d7bee0e507', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9794df9040f15b166553fa5c0dca5c826013f12d', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff56e6d57be870bba5dbe35cdf48a29cbda8b063', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfb791b213e74e0f11e21db36139ae00a97c71c', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfce5184c596d295011920734ac6c94325784832', '172.105.247.100', 1670691112, '__ci_last_regenerate|i:1670691112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f170e0df804a10d58fae7a65cfebeda5f304955', '172.105.247.100', 1670691113, '__ci_last_regenerate|i:1670691112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be54b789f62af35916537096c0e2d97d6be919d3', '172.105.247.100', 1670691113, '__ci_last_regenerate|i:1670691113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec8505389f1d716f84421a6b46d1b316d5acb96', '172.105.247.100', 1670691113, '__ci_last_regenerate|i:1670691113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1b962c10052507c06e3163798fb8128c19134d', '31.222.203.2', 1670691792, '__ci_last_regenerate|i:1670691792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec224e51785a69472f29aade14214c37efc1af15', '31.222.203.2', 1670691794, '__ci_last_regenerate|i:1670691794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc91e37ed09c35f19914ca484f9ff50d545c80d', '31.222.203.2', 1670691794, '__ci_last_regenerate|i:1670691794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b65b6bf3cad79c00d7fe35b59e5b80ea31524b', '31.222.203.2', 1670691794, '__ci_last_regenerate|i:1670691794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4952f194c30bbbfa1aaba6aa4fa7283d9508dc9', '31.222.203.2', 1670691794, '__ci_last_regenerate|i:1670691794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52695de18e1acc270ed6a33c55aa921d517a3e2c', '31.222.203.2', 1670691794, '__ci_last_regenerate|i:1670691794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89749eff74afabdff7fbfa0f86104a40e08d89f', '31.222.203.2', 1670693534, '__ci_last_regenerate|i:1670693534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f3b09776f587a60c93e2502612f58dfc495fab', '31.222.203.2', 1670693534, '__ci_last_regenerate|i:1670693534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d2608d1dd9a11a8e1217f8c2c4b4b8080bf030', '31.222.203.2', 1670693534, '__ci_last_regenerate|i:1670693534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0296683fb89e3e14288b21d582bca48376d8484a', '31.222.203.2', 1670693534, '__ci_last_regenerate|i:1670693534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7dabc9f6d2aada9316f0bc2b6311b0b96d8f80', '31.222.203.2', 1670693534, '__ci_last_regenerate|i:1670693534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('368d4c34a2a214f7e69b1e238cc29cf88d086c76', '31.222.203.2', 1670693534, '__ci_last_regenerate|i:1670693534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861d049817d1dcf1d5b29cd96530ad39191c291a', '31.222.203.2', 1670695333, '__ci_last_regenerate|i:1670695333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8605f2d970136fb7383781cba903efa5a75fb8a9', '31.222.203.2', 1670695335, '__ci_last_regenerate|i:1670695335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e3c35bf38a587e2cedcb08c218f965bfc7f22b', '31.222.203.2', 1670695335, '__ci_last_regenerate|i:1670695335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3515d589f5e465f44ad47d04774ae3aebb903af', '31.222.203.2', 1670695335, '__ci_last_regenerate|i:1670695335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961dfdf9a34b16a83c32b90d94702c29403bb628', '31.222.203.2', 1670695335, '__ci_last_regenerate|i:1670695335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b44bb7cfe2e1704e3d85c0ddb24c677da861ef4', '31.222.203.2', 1670695335, '__ci_last_regenerate|i:1670695335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36374b6a5f4aa3349d2db68ad97f7613cdf60f43', '172.105.247.100', 1670696503, '__ci_last_regenerate|i:1670696503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cdc559c877574234e7a6384c542e82c7626e5a', '172.105.247.100', 1670696504, '__ci_last_regenerate|i:1670696504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e86c010cc8bd1b059e26e772abafa9810f1a57', '172.105.247.100', 1670696504, '__ci_last_regenerate|i:1670696504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab97f3f941d27becf3cf9171f3bd23ee53a66ae', '172.105.247.100', 1670696504, '__ci_last_regenerate|i:1670696504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c082007a43460b4c427ab6c315b6d6f5fff7a3d7', '172.105.247.100', 1670696504, '__ci_last_regenerate|i:1670696504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbacafd2a6ea958259bddfefb0e8676b1c16ba2b', '172.105.247.100', 1670696505, '__ci_last_regenerate|i:1670696505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5543d7f7ee570206808903ed0fa7c38acfa881', '172.105.247.100', 1670696505, '__ci_last_regenerate|i:1670696505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50abad54049b995c5c0ae0cd3484ba6edfa6a232', '172.105.247.100', 1670696505, '__ci_last_regenerate|i:1670696505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4321b3363d1cff6376a7a3479c6c04a1de0ec3', '172.105.247.100', 1670696505, '__ci_last_regenerate|i:1670696505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094cd2549d2b57ff854cb9bd2793fafe6a856777', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e390623d313469a3a9b90297dcb7c2a9e40212', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dece591a0373f84c2c8482ed616967f88321ac5c', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89971155fb556bca0319ef812308f19077832a68', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59225642aa61486fd90294f70141b150229f358a', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3588797df65ee8dc084e8fc663594b3e88658f6', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24eadaab1633d5530cd4f4b2e2f69f7a9041d1e', '172.105.247.100', 1670696506, '__ci_last_regenerate|i:1670696506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e087284cda83ba056b3c6c29d1df465fdc8981c', '172.105.247.100', 1670696507, '__ci_last_regenerate|i:1670696507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f632b7f1e576d515f298bc5e6967dbd219d23d', '172.105.247.100', 1670696507, '__ci_last_regenerate|i:1670696507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dcddf6731b0ec021bf0afec2f198170c9d77250', '172.105.247.100', 1670696507, '__ci_last_regenerate|i:1670696507;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b016922af464d88dd58f85864e4fe3d1e0a4f4f', '172.105.247.100', 1670696508, '__ci_last_regenerate|i:1670696507;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782d309d86b2676aff1937012844b453e1c533d5', '172.105.247.100', 1670696508, '__ci_last_regenerate|i:1670696508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061224f172651507b296c41b43d351eebcc849a4', '172.105.247.100', 1670696508, '__ci_last_regenerate|i:1670696508;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c51af40ca3ec6bfec014eef721b7cf3d4086afd4', '172.105.247.100', 1670696508, '__ci_last_regenerate|i:1670696508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f21497a8e3e4c11455f40d8de2632b2bb48604f', '172.105.247.100', 1670696509, '__ci_last_regenerate|i:1670696509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c55957fc69fa8578f21b49e48a4ee45bb200c0', '31.222.203.2', 1670697141, '__ci_last_regenerate|i:1670697141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5968341393eb10658800af8eddf699615e8050cc', '31.222.203.2', 1670697141, '__ci_last_regenerate|i:1670697141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ec32bf0ac1df000bc3e1ad84ba323f6a3bd3e2', '31.222.203.2', 1670697141, '__ci_last_regenerate|i:1670697141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5be55c552833231402ef4b5bf31258135e2b61', '31.222.203.2', 1670697141, '__ci_last_regenerate|i:1670697141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27af7e6bbafbfa29bd93fae57265505a57d001cb', '31.222.203.2', 1670697141, '__ci_last_regenerate|i:1670697141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80a61d97ef585f3dd65948112a20cc8a963c848', '31.222.203.2', 1670697141, '__ci_last_regenerate|i:1670697141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3973e86e6726f9de579db8f6b9e320323c0f716f', '31.222.203.2', 1670698931, '__ci_last_regenerate|i:1670698931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('199753e2126e685654fef3bba96616b841712eca', '31.222.203.2', 1670698933, '__ci_last_regenerate|i:1670698933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e3f7052732c824536a0a30c778f34550a18762', '31.222.203.2', 1670698933, '__ci_last_regenerate|i:1670698933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a994f9117e613b0a73ca532c0f3c9e97f52ba397', '31.222.203.2', 1670698933, '__ci_last_regenerate|i:1670698933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8c36b2062ee8688f5fbb184dd0d584c9dd2c8e', '31.222.203.2', 1670698933, '__ci_last_regenerate|i:1670698933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183c443bfdf8308661d8ac35c093095d0ee09af8', '31.222.203.2', 1670698933, '__ci_last_regenerate|i:1670698933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a74e43431a0a41eedbad68948fda2b21536b9eee', '31.222.203.2', 1670700732, '__ci_last_regenerate|i:1670700732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b718b2898a05e24f22e8868588c1762b782d005d', '31.222.203.2', 1670700734, '__ci_last_regenerate|i:1670700734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf6d3d54b81ed7a22df255ffe46996486f618f9', '31.222.203.2', 1670700734, '__ci_last_regenerate|i:1670700734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239726d96a5a2c4e979cb3226d8db2d0c1ea9deb', '31.222.203.2', 1670700734, '__ci_last_regenerate|i:1670700734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e54696aee905dbee8032d647089257335c6d681', '31.222.203.2', 1670700734, '__ci_last_regenerate|i:1670700734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671a4f714d0c7dcd308403f90056521cc7ea8d45', '31.222.203.2', 1670700734, '__ci_last_regenerate|i:1670700734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967b8f2611c251937db323708f38b643c4f385ed', '172.105.247.100', 1670701902, '__ci_last_regenerate|i:1670701902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf97c3d0d7bf768050ae9ad5e96ed61ed0b04398', '172.105.247.100', 1670701902, '__ci_last_regenerate|i:1670701902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33b35cc9b7c49d50aa7ea67220872ecc33b4d67', '172.105.247.100', 1670701902, '__ci_last_regenerate|i:1670701902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ded19517ffe6a4cd5d5371d9517c70b92f6f04f4', '172.105.247.100', 1670701902, '__ci_last_regenerate|i:1670701902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fee437b2af69112bef591f5186c27a3649f4914', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd321d25e6c74ad8e0a73a0a374499b16cabd3f7', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e28334552038a2b290be009f4ce1332dce56ed', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4104e979bb5e841ddd05a3b0ce03997ef87a5741', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19829dedbec3810161b667aa0d0d6e36f0c6a165', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aea001103eab8ee124f95f8115528c9e9fa49a67', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad32c8acfff2f79294b0c745d5b5fe2498d27a0', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189e809aadf5dbe4761d18ef6e50d3e36e40f041', '172.105.247.100', 1670701903, '__ci_last_regenerate|i:1670701903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d752a57b1b4d331491f164e2e999134549fffdc5', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('715e248ddd40ae65099c064dc06940912ab06d7f', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338ef063e723d12e8842d2c3ca2ef2179a8a04d2', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c316015265f3854b6f86795bd2258e1efe2f3b', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e709d958322c76bb5e0f9ef064bb4a07fa138f25', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81fb015177ef3b429c665f36cd007ce1ba8301c', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060b10e72b30c14b59d1c94bdcb7f47493d6e2c5', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338602fca5809afcf0936b6cca367916651b887f', '172.105.247.100', 1670701904, '__ci_last_regenerate|i:1670701904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ca4288d8ceb3d28f417e9742860db7a9311e6b', '172.105.247.100', 1670701905, '__ci_last_regenerate|i:1670701905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3998e77f187b5eeb9fd101c8aa65c982cdd8dde', '172.105.247.100', 1670701905, '__ci_last_regenerate|i:1670701905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8d1411abb8de3559773eca89574ff32dd79022', '172.105.247.100', 1670701905, '__ci_last_regenerate|i:1670701905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af91e4a8651e61d08014565ef96ff9f9799bec9d', '172.105.247.100', 1670701905, '__ci_last_regenerate|i:1670701905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffead170d3d60d5eb1361ee2948a938a820d8afc', '31.222.203.2', 1670702529, '__ci_last_regenerate|i:1670702529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7b3db63016fe88d6734dc79fc2810d65b78efc', '31.222.203.2', 1670702529, '__ci_last_regenerate|i:1670702529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1ac46ce645fde8e31d5099dadabfaec27f2b08', '31.222.203.2', 1670702529, '__ci_last_regenerate|i:1670702529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af29448655eb1619942a9fa8e4a196e1d6dda9f', '31.222.203.2', 1670702529, '__ci_last_regenerate|i:1670702529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015e4c8247b670405940e6bf6cd22154cd4a39fa', '31.222.203.2', 1670702529, '__ci_last_regenerate|i:1670702529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb42403cc3a39e2f5c4c36f3c0c332f0a21bcf1', '31.222.203.2', 1670702529, '__ci_last_regenerate|i:1670702529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed800864aa0a5a6e39e6dee3e2aab87a0de2ec50', '31.222.203.2', 1670704332, '__ci_last_regenerate|i:1670704332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aecf784e7505c2b1e8f2c8cb6aeacd970cd8e91', '31.222.203.2', 1670704334, '__ci_last_regenerate|i:1670704334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e4f1fa38d1db758b6c4d128bf258201d87e933b', '31.222.203.2', 1670704334, '__ci_last_regenerate|i:1670704334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8dadf8891c9c3c8f9c8f0f8cd80b264d7c580c', '31.222.203.2', 1670704334, '__ci_last_regenerate|i:1670704334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd23bf24aff81d0c2700434a300c93526e10b07b', '31.222.203.2', 1670704334, '__ci_last_regenerate|i:1670704334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405da56d924f86930acaeee4a50584a14bd1b107', '31.222.203.2', 1670704334, '__ci_last_regenerate|i:1670704334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb4b61fd0d911d12f08b63b30837aa6175f3560', '31.222.203.2', 1670706131, '__ci_last_regenerate|i:1670706131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640a4c6e765462b52b0de76347a496c2e0c9dc2b', '31.222.203.2', 1670706133, '__ci_last_regenerate|i:1670706133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e58cc25d45d29270ef288845ecce08206500fcb', '31.222.203.2', 1670706133, '__ci_last_regenerate|i:1670706133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c867d7918f1aecc263fd53ad2356935292b7eb6', '31.222.203.2', 1670706133, '__ci_last_regenerate|i:1670706133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592e29761d4cfb53ae024bd46a8f786790fb4d51', '31.222.203.2', 1670706133, '__ci_last_regenerate|i:1670706133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffedd8a00f51b98c8a45979f09a2bec2c613aa1c', '31.222.203.2', 1670706133, '__ci_last_regenerate|i:1670706133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8763364da5619b6d14474241fb0b53dbbb424f9', '172.105.247.100', 1670707302, '__ci_last_regenerate|i:1670707302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('417eaa2c4e55cd7f68533a5457dd11c537467938', '172.105.247.100', 1670707303, '__ci_last_regenerate|i:1670707302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0384cbe1134d5001c3e2f590dbc678c86dcbfba3', '172.105.247.100', 1670707303, '__ci_last_regenerate|i:1670707303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1545663ccdae41c1025dc15e65dfb38fc44231b0', '172.105.247.100', 1670707303, '__ci_last_regenerate|i:1670707303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94de994e00ca110d3ccb41d08d4c2fa3764a541', '172.105.247.100', 1670707303, '__ci_last_regenerate|i:1670707303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1169cc30e8d7b1a22591c4a5f9a42a5984632968', '172.105.247.100', 1670707304, '__ci_last_regenerate|i:1670707303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f64e7c9efdb20131ac13f18bb3deea5b3d9c78d', '172.105.247.100', 1670707304, '__ci_last_regenerate|i:1670707304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f6f21bd8851e572f090f5f136cb77a561b5da8', '172.105.247.100', 1670707304, '__ci_last_regenerate|i:1670707304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109d41932fdbbfb40f1af32140a82d2562de1f4f', '172.105.247.100', 1670707304, '__ci_last_regenerate|i:1670707304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075ef6ebd762f81c4278fe3ca9f786a2e73651d7', '172.105.247.100', 1670707304, '__ci_last_regenerate|i:1670707304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('781721804904fb7741563c701620169245453e2e', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4502f97d3f2dfba0782da062016a9b7015ff312d', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81661581b30141cd608db0ebbca39d0d19ab7386', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe94d42b4b95937321343964b551284b1ca9b9d', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('269ab5e3c0f9f1b41a2b0ec58b9c8144815e055f', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a20a130b02bf33b3930cf31fcec7b810eb10c6', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707649f7ccf5aa3fa00d5d9616478ad3bc811739', '172.105.247.100', 1670707305, '__ci_last_regenerate|i:1670707305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe3ed6d4159c2be53c684038548309cf58d4e54', '172.105.247.100', 1670707306, '__ci_last_regenerate|i:1670707305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d865a6259ea5e9b07bac0c0c3d4f8b35b6b744', '172.105.247.100', 1670707306, '__ci_last_regenerate|i:1670707306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6caa2cddc811e7438c42381024ca66bcfef4f935', '172.105.247.100', 1670707306, '__ci_last_regenerate|i:1670707306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a27e9ec04946e52d7524c5ccc7f16382a377886', '172.105.247.100', 1670707306, '__ci_last_regenerate|i:1670707306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('576552c2fe3954279b7ef266dc4e5d7295011c49', '172.105.247.100', 1670707307, '__ci_last_regenerate|i:1670707307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbd8c654a6ee720aad8dc24a058d9fd891e2bfa', '172.105.247.100', 1670707307, '__ci_last_regenerate|i:1670707307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7132c29a432d93429fe1b0a2e4cb517ff4b143f', '172.105.247.100', 1670707307, '__ci_last_regenerate|i:1670707307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4d235d18b3ee30fc93921e1397cc7726818159', '31.222.203.2', 1670707930, '__ci_last_regenerate|i:1670707930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b6be678548027262b316af1120c10352eedad8', '31.222.203.2', 1670707932, '__ci_last_regenerate|i:1670707932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11494ae33ef9d6963fc9c65db262c7cc25f4d615', '31.222.203.2', 1670707932, '__ci_last_regenerate|i:1670707932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd41a5c6ac9291bf56904ce6e5653a9fc3fdaeff', '31.222.203.2', 1670707932, '__ci_last_regenerate|i:1670707932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc871ed0af5bf9e543e467a6afcece9e63d67a1', '31.222.203.2', 1670707932, '__ci_last_regenerate|i:1670707932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e3ef9bf39f9228fe2c2abcdcf63c3ca5bfe8db', '31.222.203.2', 1670707932, '__ci_last_regenerate|i:1670707932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b9cc4eb7a4ff80c521aa15304a0b601a073648', '31.222.203.2', 1670709731, '__ci_last_regenerate|i:1670709731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070a1bdba1228bd8a59a8060b6929da5a3368616', '31.222.203.2', 1670709733, '__ci_last_regenerate|i:1670709733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfc06d7b7fe4dba3fe13c916afeea3279a8d380', '31.222.203.2', 1670709733, '__ci_last_regenerate|i:1670709733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2fe243764894cb1405f1fb350b014e199948fc', '31.222.203.2', 1670709733, '__ci_last_regenerate|i:1670709733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62cc987eea1987f4fcb3f480b8be77259a0eb223', '31.222.203.2', 1670709733, '__ci_last_regenerate|i:1670709733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b8da5b07cb3368a5b3f6db41dfab4817b0533b', '31.222.203.2', 1670709733, '__ci_last_regenerate|i:1670709733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a3dadd085db1e19d794f95cb59f2bb6022442c', '31.222.203.2', 1670711529, '__ci_last_regenerate|i:1670711529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f752beb16bde33b42b5008178fb2f7e71f5fe639', '31.222.203.2', 1670711531, '__ci_last_regenerate|i:1670711531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7630ae3e20ef7315f829f51473ca5a4760ecebe', '31.222.203.2', 1670711531, '__ci_last_regenerate|i:1670711531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8645bc81718005b74fa80dc08322a5ec6bbcafe8', '31.222.203.2', 1670711531, '__ci_last_regenerate|i:1670711531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('173c9e237ff3debf9cc05ac6c692f528eafa2d1d', '31.222.203.2', 1670711531, '__ci_last_regenerate|i:1670711531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100e111a49e3c0f511e48411fd9daff9e1c60d10', '31.222.203.2', 1670711531, '__ci_last_regenerate|i:1670711531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119911b5cd99d9550fd99e87362e55d2ab9f8978', '172.105.247.100', 1670712102, '__ci_last_regenerate|i:1670712102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2154245b2069ddf1ec39993842fd9435c21b64f4', '172.105.247.100', 1670712102, '__ci_last_regenerate|i:1670712102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ec4e79ddeb6f826b3266cd340cda6234ec1c50', '172.105.247.100', 1670712102, '__ci_last_regenerate|i:1670712102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8b3e72c393d3b480146446c1836813c6e68c03', '172.105.247.100', 1670712102, '__ci_last_regenerate|i:1670712102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca18736336a2648d7863a593ef99b2b315ebb8e6', '172.105.247.100', 1670712103, '__ci_last_regenerate|i:1670712103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f68f35dbab4c36ba827eb0c02dab0b47104d84', '172.105.247.100', 1670712103, '__ci_last_regenerate|i:1670712103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5719c9092f8efcce963ff327fe47c53cf94c1681', '172.105.247.100', 1670712103, '__ci_last_regenerate|i:1670712103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a16a0009f56cf5b931455a3468d6e95fece2d6e5', '172.105.247.100', 1670712103, '__ci_last_regenerate|i:1670712103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e1abafbead727925e708fe85536ec995bef07d', '172.105.247.100', 1670712104, '__ci_last_regenerate|i:1670712104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d0276a83f03c33cbdaefd92b8583cdcbcfa8c5', '172.105.247.100', 1670712104, '__ci_last_regenerate|i:1670712104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1931b541485a4b4fffa0c15949b76cd47c29ecba', '172.105.247.100', 1670712104, '__ci_last_regenerate|i:1670712104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18ad9e1d06c7c18fdaae397cd54420ff403ebed4', '172.105.247.100', 1670712104, '__ci_last_regenerate|i:1670712104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b570589bc445a1eb34564982670288bec050e6f', '172.105.247.100', 1670712104, '__ci_last_regenerate|i:1670712104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a0c2bc09ad3836080417fbb5a4657435f4d78c8', '172.105.247.100', 1670712105, '__ci_last_regenerate|i:1670712105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d608ffc5fbc83510f5990e782f0cff826d83489', '172.105.247.100', 1670712105, '__ci_last_regenerate|i:1670712105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1bd90be472255075960bd26bf7f60a7301cea4', '172.105.247.100', 1670712105, '__ci_last_regenerate|i:1670712105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ecde75fa7863b527fe85991e89ddc25af06103', '172.105.247.100', 1670712105, '__ci_last_regenerate|i:1670712105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43bd6b7fa65a0ba22eab944897b4618845ec2ee4', '172.105.247.100', 1670712105, '__ci_last_regenerate|i:1670712105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7962aa4641e7b1fd10b1456f52a1f3957bf73c60', '172.105.247.100', 1670712106, '__ci_last_regenerate|i:1670712106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec677b91b545e258d208b24e0cf2a7c64536d65c', '172.105.247.100', 1670712106, '__ci_last_regenerate|i:1670712106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6814e13ed163125938c0c1980ae981204bb07f1a', '172.105.247.100', 1670712106, '__ci_last_regenerate|i:1670712106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f0a6d4501d004aeec9840a74e0fe98dd5df404', '172.105.247.100', 1670712106, '__ci_last_regenerate|i:1670712106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfffaee70a9964961e3b3aa7d851bac69ecd7e7', '172.105.247.100', 1670712107, '__ci_last_regenerate|i:1670712107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae54a13c2f4c1e2fa10b650dc3e92cf9d76798e2', '172.105.247.100', 1670712107, '__ci_last_regenerate|i:1670712107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4843663021015b53e79f6864665690c37dd7129', '31.222.203.2', 1670713325, '__ci_last_regenerate|i:1670713325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a8928e077f0ef566fb82c318501792c7b57912', '31.222.203.2', 1670713327, '__ci_last_regenerate|i:1670713327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8520519717a00e0d6fbe3b9a52cb23692e260f', '31.222.203.2', 1670713327, '__ci_last_regenerate|i:1670713327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835fcbcc1e0e124bfb2bb979513c7101528f8070', '31.222.203.2', 1670713327, '__ci_last_regenerate|i:1670713327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146c75829b49fa615e51d49939e0e4470750c234', '31.222.203.2', 1670713327, '__ci_last_regenerate|i:1670713327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9ffde653c8022db0517d80fb79d8dcd01cb109', '31.222.203.2', 1670713327, '__ci_last_regenerate|i:1670713327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f957f85802c496a1c26057dcc73a55a76476d754', '31.222.203.2', 1670715134, '__ci_last_regenerate|i:1670715134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff77b12d60159f098c14e8fd0ffaf14686c432d', '31.222.203.2', 1670715136, '__ci_last_regenerate|i:1670715136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3645a2ed4b19cd05bf34da6850203bd258df23e', '31.222.203.2', 1670715136, '__ci_last_regenerate|i:1670715136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50d6e67ae22ee158a75d64f43cfb1992b794a48', '31.222.203.2', 1670715136, '__ci_last_regenerate|i:1670715136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f7323fea86bc75edea1f7a980c6789dc4b7dcf', '31.222.203.2', 1670715136, '__ci_last_regenerate|i:1670715136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db1b5238a9e2c5a68100c8124333a209f4b5f34', '31.222.203.2', 1670715136, '__ci_last_regenerate|i:1670715136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd70147918eda597a61784d1ccc0f7bdbf50cb3d', '31.222.203.2', 1670716927, '__ci_last_regenerate|i:1670716927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fa03de8cc59096fcbe0e94c1cba02f4374467f', '31.222.203.2', 1670716930, '__ci_last_regenerate|i:1670716930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa4ea14c1d3224094e2f71b87eb31f4366a97db', '31.222.203.2', 1670716930, '__ci_last_regenerate|i:1670716930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419c61ce88154fc182ef18b20b3741570a0436f3', '31.222.203.2', 1670716930, '__ci_last_regenerate|i:1670716930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be02a91f5637df7ff43a4ddb3d39b137f797bf69', '31.222.203.2', 1670716930, '__ci_last_regenerate|i:1670716930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3d32ae230eac03b2a3e3315a7361411c271fd7', '31.222.203.2', 1670716930, '__ci_last_regenerate|i:1670716930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f18cabb8d4dd901c35a36b1155129f56025ccf7', '172.105.247.100', 1670717508, '__ci_last_regenerate|i:1670717508;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c02a3618084729b0cf32c85ce11a34f957f63b7', '172.105.247.100', 1670717509, '__ci_last_regenerate|i:1670717509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8892e269da6bbd3e9f5ff598988c9d27e9bdc6ba', '172.105.247.100', 1670717509, '__ci_last_regenerate|i:1670717509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('246ffe55996bc3dc2a66040d4f2abeb006027afe', '172.105.247.100', 1670717509, '__ci_last_regenerate|i:1670717509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa47c3721bc3141c86eddb2e4da58d5c02554c9', '172.105.247.100', 1670717509, '__ci_last_regenerate|i:1670717509;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8caef2fc4ad28e9da20bed534dd2fe0229aaa0', '172.105.247.100', 1670717510, '__ci_last_regenerate|i:1670717509;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12bf1c9d97dbfdcf644a26f445250e49b93c60dc', '172.105.247.100', 1670717510, '__ci_last_regenerate|i:1670717510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b02cacd5ec4dbef9a7ef7587e6d4a66c7fd552', '172.105.247.100', 1670717510, '__ci_last_regenerate|i:1670717510;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f7e3573bd5281c582b476a147cf68e09d3a40d', '172.105.247.100', 1670717510, '__ci_last_regenerate|i:1670717510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b77bd88be2bae9053000d9415e0ad057d57d24', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efecbac2d7dab6ae04a5f7f489a117e394da4380', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e306943d73a311b0a169a19e032452ce24691b', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('993d9642dfdaca7f3353da5cb333efc451d7c533', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686d76225c952da13061aee2768dc179bc2814da', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa84fab321b3225d990f192b3a02b1390e6708d', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c065c0f991a227eee52fa6ee8d560f79cd97e34c', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87c83dc3ceb742fbe255631e90955a104d2508b', '172.105.247.100', 1670717511, '__ci_last_regenerate|i:1670717511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a41912c0a8cc0457d5733c7c1ab521384f826f', '172.105.247.100', 1670717512, '__ci_last_regenerate|i:1670717512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe5026ffc123008ba84092962bd51ea3bd4bba2', '172.105.247.100', 1670717512, '__ci_last_regenerate|i:1670717512;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985be0807c16fabb00a60589e9176014c5df0e65', '172.105.247.100', 1670717512, '__ci_last_regenerate|i:1670717512;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e128bce009502e6d6264cf91c6e0391eab3fa167', '172.105.247.100', 1670717513, '__ci_last_regenerate|i:1670717513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5106819393e9b064c2363dcb80c83f4f61315a1', '172.105.247.100', 1670717513, '__ci_last_regenerate|i:1670717513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edca40e4be9d48e1664c4469b3766a60484ef204', '172.105.247.100', 1670717513, '__ci_last_regenerate|i:1670717513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9fd1ccd1c1119f00f5afa5459793024215fe58', '172.105.247.100', 1670717513, '__ci_last_regenerate|i:1670717513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26465589b0b3466600c64db9b7117de9de9db56', '31.222.203.2', 1670718727, '__ci_last_regenerate|i:1670718727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5d1ad9de381dea635e0f126b895daec0f8211d', '31.222.203.2', 1670718729, '__ci_last_regenerate|i:1670718729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd92f0878c3f3d251ab672fdc81af39e36f55811', '31.222.203.2', 1670718729, '__ci_last_regenerate|i:1670718729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023deb5c8dc0f4a6904a2232d72459a4f7c11469', '31.222.203.2', 1670718729, '__ci_last_regenerate|i:1670718729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85ef791d8aa4de2783a9dd9aae1919453c1eeb3', '31.222.203.2', 1670718729, '__ci_last_regenerate|i:1670718729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc35866ccb545f362bf7d8d661bed96abb7b2a51', '31.222.203.2', 1670718729, '__ci_last_regenerate|i:1670718729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12e3b09c01ee8fee1619c2722ec3348d99ece36', '31.222.203.2', 1670720534, '__ci_last_regenerate|i:1670720534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b5815cc97ae361a7ad9c8d79a1700dc3760f61', '31.222.203.2', 1670720536, '__ci_last_regenerate|i:1670720536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fc64b27a81a4b7c8aa9f1d4a769387f76fee4c', '31.222.203.2', 1670720536, '__ci_last_regenerate|i:1670720536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9491b801341a597630d5a733a6e1e76a997d4f4b', '31.222.203.2', 1670720536, '__ci_last_regenerate|i:1670720536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da52b013b808c4ba51a4f9fb6152b857e635c2ab', '31.222.203.2', 1670720536, '__ci_last_regenerate|i:1670720536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbead4345ac213d738bfc5e8114cd4b3d9a5db9', '31.222.203.2', 1670720536, '__ci_last_regenerate|i:1670720536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9b412966fb585e761f370cef05a6881605cc4e', '31.222.203.2', 1670722349, '__ci_last_regenerate|i:1670722349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3442cbe232187649de0390c16ddca36a9199c3', '31.222.203.2', 1670722351, '__ci_last_regenerate|i:1670722351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6baa47a8a539365561e17594c7aae5bce7d792', '31.222.203.2', 1670722351, '__ci_last_regenerate|i:1670722351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87466d6b4e5f6b86ff33c1c0863e8ac4d6ee03f5', '31.222.203.2', 1670722352, '__ci_last_regenerate|i:1670722352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490d098fe04f11852df2581d2f6e057edb5ad99c', '31.222.203.2', 1670722352, '__ci_last_regenerate|i:1670722351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ace799b0619e797dec78c463532a8bcd60c6d1', '31.222.203.2', 1670722352, '__ci_last_regenerate|i:1670722352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e66bd9171a679e58d4d9db475791e532812f771', '172.105.247.100', 1670722906, '__ci_last_regenerate|i:1670722906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a56e5e1aff9b35d6e082de034b1d46b1a0241ce', '172.105.247.100', 1670722907, '__ci_last_regenerate|i:1670722907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcab390d2142cbc2e96e2ff11c40dc90783bc0a3', '172.105.247.100', 1670722907, '__ci_last_regenerate|i:1670722907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b996ce2a8f9c12b8571495ac96296519cde5bb0', '172.105.247.100', 1670722907, '__ci_last_regenerate|i:1670722907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6aaac7ac6716ad76108d5f4b6047eb017e7098', '172.105.247.100', 1670722908, '__ci_last_regenerate|i:1670722908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d45d04cf43efa4360b219f190fac5dd5aa0b467', '172.105.247.100', 1670722908, '__ci_last_regenerate|i:1670722908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142383017777e302c2c308265a596f8667119f0c', '172.105.247.100', 1670722908, '__ci_last_regenerate|i:1670722908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a9241cefc2fbcf69e2096e390acc41496af9b6', '172.105.247.100', 1670722908, '__ci_last_regenerate|i:1670722908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2eae00b9ad315419073071a0d9d3c4d03c8047', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618bef73cd263427c1cad8c3e9c9c9ddf9481755', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46e9f5f032b3fa38d7b3e56cf772ef76470dd84', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728397eb045b33bb8e316a88a8bf62f9506e1dec', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('681de99922d83ec87b5b1175c0409e5d12480916', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d73bb505c14d1f0089f295624f8cf0e77dd8a62', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba571b403b0f88edf0dfe91f8aa80fad84706a6', '172.105.247.100', 1670722909, '__ci_last_regenerate|i:1670722909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8523453b7f9b46e2de8a307f75dba5bda215cdc', '172.105.247.100', 1670722910, '__ci_last_regenerate|i:1670722909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e61a1615896469d734b6b5960de7adcfd6bd6ce', '172.105.247.100', 1670722910, '__ci_last_regenerate|i:1670722910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c28abcbcf14dece13a7bd7c85371d668e2948a13', '172.105.247.100', 1670722910, '__ci_last_regenerate|i:1670722910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7c11363b963c08c4a84d3dfec7ec5a745dd47fc', '172.105.247.100', 1670722910, '__ci_last_regenerate|i:1670722910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f76470fdf8281ef72433482ccb2916b843528b', '172.105.247.100', 1670722911, '__ci_last_regenerate|i:1670722910;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274d7093c438849ff3cb6f49cceac4db913f7117', '172.105.247.100', 1670722911, '__ci_last_regenerate|i:1670722911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f6756b08d2e8f7e8ba0734d87e8782b8db86d8', '172.105.247.100', 1670722911, '__ci_last_regenerate|i:1670722911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188258fea9c3ec7ff91bc879b09391c77d788f00', '172.105.247.100', 1670722911, '__ci_last_regenerate|i:1670722911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c5c88b47a4c5b2fb41d44364fd036155cfdf189', '172.105.247.100', 1670722912, '__ci_last_regenerate|i:1670722912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c4550de30021eea08c70dceeb4f7b7f7a026ac', '198.235.24.184', 1670722938, '__ci_last_regenerate|i:1670722938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b6516e7041bfe790de3814b8f4c257934efedf', '198.235.24.184', 1670722938, '__ci_last_regenerate|i:1670722938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c77d8ce4e7c7129b5f0619a084ee765bb736683', '198.235.24.184', 1670722938, '__ci_last_regenerate|i:1670722938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94c014ff26a0c32e5a97da2a099f6bf37b85738', '31.222.203.2', 1670724140, '__ci_last_regenerate|i:1670724140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e763c78cedd3398eab3acf315d3d3d4a4dc1018', '31.222.203.2', 1670724142, '__ci_last_regenerate|i:1670724142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d1c455e46248facd9761f668970456f6b9ec84', '31.222.203.2', 1670724142, '__ci_last_regenerate|i:1670724142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba385ea048d17b43c5bea91cfea49ee6bd8632a9', '31.222.203.2', 1670724142, '__ci_last_regenerate|i:1670724142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2336dced60c04a92381dbda781642f8b262e6bcb', '31.222.203.2', 1670724142, '__ci_last_regenerate|i:1670724142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f422169d031de8e5d0afcb1bf7316432e89b22a6', '31.222.203.2', 1670724142, '__ci_last_regenerate|i:1670724142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf0023f86b1be52de200f2a1eff77ce2fd9e5670', '31.222.203.2', 1670725950, '__ci_last_regenerate|i:1670725950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892ad60ffedef282c73b8f8041e18ff76124af95', '31.222.203.2', 1670725950, '__ci_last_regenerate|i:1670725950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1781b53812f627cbd0d0db51aa32b9524c6ace', '31.222.203.2', 1670725950, '__ci_last_regenerate|i:1670725950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc34e30f6f377807885648257415157e810648f', '31.222.203.2', 1670725950, '__ci_last_regenerate|i:1670725950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a5116fd59b2e5f15c252ad96df22232acf4a7f', '31.222.203.2', 1670725950, '__ci_last_regenerate|i:1670725950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdf2c153257d2e2aeeed621650f86819c3af185', '31.222.203.2', 1670725950, '__ci_last_regenerate|i:1670725950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c56717f4fa16a8608b2661e442567d90cb3d0a26', '31.222.203.2', 1670727759, '__ci_last_regenerate|i:1670727759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d91e8c157b0c4d1a048d31689fd3f2787350a1a', '31.222.203.2', 1670727761, '__ci_last_regenerate|i:1670727761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4dc342446cb13825636e02275639ea761f755d', '31.222.203.2', 1670727761, '__ci_last_regenerate|i:1670727761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6f7c64604c4bc7d64ecae369cc7836cfe3f361', '31.222.203.2', 1670727761, '__ci_last_regenerate|i:1670727761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06281fb6909c9f814db27d042339198e35c1a536', '31.222.203.2', 1670727761, '__ci_last_regenerate|i:1670727761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ef7bb3bf42f447c4e6a93226e835cf8e79b488', '31.222.203.2', 1670727761, '__ci_last_regenerate|i:1670727761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8ddd42893ab1b92b810607701ed1aed2fb7c08', '172.105.247.100', 1670728314, '__ci_last_regenerate|i:1670728314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f48c6618c23200368ea4668f569a4800910bf4', '172.105.247.100', 1670728314, '__ci_last_regenerate|i:1670728314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6a9423e82b284559ce7a095edbdd40435b4d23', '172.105.247.100', 1670728314, '__ci_last_regenerate|i:1670728314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51323b2f249a541e94e55680847b267f035fd789', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffef72075ff4667da8c4705406c9861528379e21', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3068880433a70f922cf8f87c082087556e22d5b', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c06123d6eba1bbe436be412c247e82778b202a', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07a3ee2553e02da08bf04f53addfedc200054c3', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7575354a1ea5f6a77cc182c27568ed1a510746a2', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad0cef41390727fbeff941dcae613af18ee75a5e', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6cc140d3c13b2fb3c056905cf7324eeaa5c277', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38f7b978ad6521389cf44a702819efe01ab0a59', '172.105.247.100', 1670728315, '__ci_last_regenerate|i:1670728315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17eeb866c59874643c1005d7db64d3008788546', '172.105.247.100', 1670728316, '__ci_last_regenerate|i:1670728316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6abcf1b3a42c9ad697619ec3a875118a31b3f7', '172.105.247.100', 1670728316, '__ci_last_regenerate|i:1670728316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d6fd444dd4f008a8c99a2acee6113ff19fb4f8', '172.105.247.100', 1670728316, '__ci_last_regenerate|i:1670728316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce28f4f64c4bcee13470c1affb454482ae302a6f', '172.105.247.100', 1670728316, '__ci_last_regenerate|i:1670728316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4553c9e29bc1ab678a8c1566e4275d655f30f650', '172.105.247.100', 1670728316, '__ci_last_regenerate|i:1670728316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff78cac7759b3e35930783d3ca1a438cbc0e925', '172.105.247.100', 1670728316, '__ci_last_regenerate|i:1670728316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1391fc2179227ee36b992fb75edfa416afbc47a', '172.105.247.100', 1670728317, '__ci_last_regenerate|i:1670728317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19092c6006de66b5070a890c4ebba49f0b1caab0', '172.105.247.100', 1670728317, '__ci_last_regenerate|i:1670728317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29346faaa3d49fd31f8b71eaf640cd0dd28627f', '172.105.247.100', 1670728317, '__ci_last_regenerate|i:1670728317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f0f850b0a07d57e89d6fc9ec65f35f5cce1720', '172.105.247.100', 1670728317, '__ci_last_regenerate|i:1670728317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3b396dc802c950f13737514c5243bb91e9e347', '172.105.247.100', 1670728317, '__ci_last_regenerate|i:1670728317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2acaf91f6eb4fe0c8bb75371baad3bcdbd60c670', '172.105.247.100', 1670728317, '__ci_last_regenerate|i:1670728317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688c27f88a702eeac6e511bec42f6a375eeaf2e8', '31.222.203.2', 1670729552, '__ci_last_regenerate|i:1670729552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e992d6194cedfc2066e13b733ede09904bce300f', '31.222.203.2', 1670729554, '__ci_last_regenerate|i:1670729554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5151dae15397a619a2e6253f8e78819008c17e05', '31.222.203.2', 1670729554, '__ci_last_regenerate|i:1670729554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b215470b7b9a705b7bb3289c9ceace247fabdce', '31.222.203.2', 1670729554, '__ci_last_regenerate|i:1670729554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4eece0b9d41545aa170322fbdacba1abd4272d7', '31.222.203.2', 1670729554, '__ci_last_regenerate|i:1670729554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56cce8ab52809d88a4f0bafbc94e07a0c9c65f3', '31.222.203.2', 1670729554, '__ci_last_regenerate|i:1670729554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662fe8a9c0faf8bbb60c3b8e014c513f6cf197a5', '31.222.203.2', 1670731369, '__ci_last_regenerate|i:1670731369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2904c865f732535db7ea147dbf9694ac1ace17d', '31.222.203.2', 1670731369, '__ci_last_regenerate|i:1670731369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3923022a0c7beeaee75ce445280b84b977cc3111', '31.222.203.2', 1670731369, '__ci_last_regenerate|i:1670731369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808f6f56a54f9250bf83553d248a9ef16c085101', '31.222.203.2', 1670731369, '__ci_last_regenerate|i:1670731369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad0d2646116deeed9d7d54739e32257597127fc', '31.222.203.2', 1670731369, '__ci_last_regenerate|i:1670731369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8239bb962ed374adc55b38a26eacc914ac36a80', '31.222.203.2', 1670731369, '__ci_last_regenerate|i:1670731369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2766dadac7c5a5ae2c18454967626e9187ba9de', '31.222.203.2', 1670733206, '__ci_last_regenerate|i:1670733206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e431c45d25516b4c7842d4bb2534cd036f1a3816', '31.222.203.2', 1670733208, '__ci_last_regenerate|i:1670733208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e80eb9d5937079f6930df8e567759cecb1cd420', '31.222.203.2', 1670733208, '__ci_last_regenerate|i:1670733208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e335538d6c8fe7c3500ac69c2009c82a675fd3b', '31.222.203.2', 1670733208, '__ci_last_regenerate|i:1670733208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef07c60a5a3fd359a36ce48830de37fe8ae6baa4', '31.222.203.2', 1670733208, '__ci_last_regenerate|i:1670733208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2492ab655e452446f683436a8bf94276dc12bcbe', '31.222.203.2', 1670733208, '__ci_last_regenerate|i:1670733208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020f7f433b82f62a35bfa5749dcba44071e530bd', '172.105.247.100', 1670733709, '__ci_last_regenerate|i:1670733709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8872de635e30ef2c0a27b75a5b3b28f1d8c3ef7b', '172.105.247.100', 1670733711, '__ci_last_regenerate|i:1670733711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12a1e72f619d9b8dc287a356d47b0495746a420', '172.105.247.100', 1670733711, '__ci_last_regenerate|i:1670733711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88ad34aaca4caed37631db59b8e4715ef2e07f4', '172.105.247.100', 1670733711, '__ci_last_regenerate|i:1670733711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae75de98d29775de918b7ce6a58dfeb852cc15c', '172.105.247.100', 1670733711, '__ci_last_regenerate|i:1670733711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c252e344290226874586412414756c200ab6fe', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a49a92a3462af7f0f77cedd85c6a7688147150', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16cad6da88b28dabc8130fa275c8560aa03e451e', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74c86d364ac495f6256c1feaad67e5a74af3c104', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cfafd3a4606bf8c2f741d8d1a69eebb62d85a15', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('786ecdc812263f44238711e045616774cc4f6207', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a157a6e916ca1216cb03e732ad95324315413e0', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a7900da86c8ed5efde5691b545553db2e08bf0', '172.105.247.100', 1670733712, '__ci_last_regenerate|i:1670733712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519ab764a00e83173ea07f7b1b0fe3277ce29c09', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542c4a1ad6f431cf51f0a79b50363322a99513f3', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7711ba6d1ca294063f23f0431f6654bbcd3372', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1089a5962d2fb7ff2f34e83d0bec304d13de399a', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ac0ada715026cfe6c15fb710186d29de2682c9', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f62d176d15c0b0994c8ec64942574fb050dcb0', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f56e9efb3ec10c5a0c1bb06ff58416ab3e88dc', '172.105.247.100', 1670733713, '__ci_last_regenerate|i:1670733713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93c01f6701e4828eab61dda15c20286f0df3ebe1', '172.105.247.100', 1670733714, '__ci_last_regenerate|i:1670733714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668562ec82f1f99c246465dc8836cba860677b13', '172.105.247.100', 1670733714, '__ci_last_regenerate|i:1670733714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162b71e459604bab4fa89c5829c4c59daf52a4af', '172.105.247.100', 1670733714, '__ci_last_regenerate|i:1670733714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c81eb453fca41d900c7aa4971a2da951f53022', '172.105.247.100', 1670733714, '__ci_last_regenerate|i:1670733714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aabd47797b9eaa55dd904cbc6e41771fd36256e', '45.120.39.90', 1670739705, '__ci_last_regenerate|i:1670739705;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670671034\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670734157;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7ebef5db5a19f303eee64113b888d7c8a50d53', '31.222.203.2', 1670735014, '__ci_last_regenerate|i:1670735014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a4caaaf2045c8c9d9358cc89a414bfcc6d139b', '31.222.203.2', 1670735014, '__ci_last_regenerate|i:1670735014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c723c6f255a3d35f9dc727abfa0471028cb5e2b', '31.222.203.2', 1670735014, '__ci_last_regenerate|i:1670735014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14eb3565e011423094b646a6ec4f67739e4fa6bf', '31.222.203.2', 1670735014, '__ci_last_regenerate|i:1670735014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d872f0f226b665b4239b499ec4ce3c1a093e55', '31.222.203.2', 1670735014, '__ci_last_regenerate|i:1670735014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d87e61ad067da1ba70d0c39f0f1e205945f7f9a', '31.222.203.2', 1670735014, '__ci_last_regenerate|i:1670735014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b74ec3cda9d4485e52e63e5a93808e001f38db3', '31.222.203.2', 1670736782, '__ci_last_regenerate|i:1670736782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af40c7e76ec63aea337fd0e3bce30e433c1cbe04', '31.222.203.2', 1670736782, '__ci_last_regenerate|i:1670736782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fb7652956af74abfb09a0267d993b6976238d62', '31.222.203.2', 1670736782, '__ci_last_regenerate|i:1670736782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef9dab46e933bdf134b5be3a09e5572f79f0e8c', '31.222.203.2', 1670736782, '__ci_last_regenerate|i:1670736782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69092d5ecba13d2b5625ff829ae48fca30e85dff', '31.222.203.2', 1670736782, '__ci_last_regenerate|i:1670736782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70efca3ceb3a0e392689da970ef6684157d9184', '31.222.203.2', 1670736782, '__ci_last_regenerate|i:1670736782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d44fdb73dabb284966cd34105c22ac8deda1dd', '116.204.230.25', 1670738462, '__ci_last_regenerate|i:1670738462;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670302640\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3298a2b3abff7dd2cd1d68cc390578cbd8d33ec', '116.204.230.25', 1670740074, '__ci_last_regenerate|i:1670740074;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670302640\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65af558a9052d0638eeba6a6bb5c3b5f8285bcfb', '31.222.203.2', 1670738613, '__ci_last_regenerate|i:1670738613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad44720116af2f4554e44298ae17fbed6bb7c3d5', '31.222.203.2', 1670738613, '__ci_last_regenerate|i:1670738613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1234e303f8a482513a7d40c737155d044ecd1fd', '31.222.203.2', 1670738613, '__ci_last_regenerate|i:1670738613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b663f09a4201acc6e5cca3ac2bef4deab5fccc', '31.222.203.2', 1670738613, '__ci_last_regenerate|i:1670738613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a53ab1c01ed1e3aa7b17c3ca781c745fb745db9', '31.222.203.2', 1670738613, '__ci_last_regenerate|i:1670738613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76746e5691dfc0a690f28558d1a8596b2374a089', '31.222.203.2', 1670738613, '__ci_last_regenerate|i:1670738613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6dcd1fa924d49651ddfbf5b43f0aebc2e8b10e', '172.105.247.100', 1670739105, '__ci_last_regenerate|i:1670739105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ec4392333f6622fabda3db9da5a1e139179e85', '172.105.247.100', 1670739106, '__ci_last_regenerate|i:1670739106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e234a34c353af7496022470a4082e64d4f320b8b', '172.105.247.100', 1670739106, '__ci_last_regenerate|i:1670739106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c29247be1128a6fa30fae2840ac24e40d2ddbc2', '172.105.247.100', 1670739106, '__ci_last_regenerate|i:1670739106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1627b1131a18708867806675d7029070ba973e5', '172.105.247.100', 1670739106, '__ci_last_regenerate|i:1670739106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165972b775be63ab616d0aa329150c53d131ecac', '172.105.247.100', 1670739107, '__ci_last_regenerate|i:1670739107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6dba747abef015d769ae1da6564d8f5faf9df7', '172.105.247.100', 1670739107, '__ci_last_regenerate|i:1670739107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912ad5078544c3ce793cbfd3e0ef2150ab501024', '172.105.247.100', 1670739107, '__ci_last_regenerate|i:1670739107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4020948b11e922ca07a0c052e24fba52b0f4594', '172.105.247.100', 1670739108, '__ci_last_regenerate|i:1670739108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c80e684c5736055d67100dceef959648b5ed716', '172.105.247.100', 1670739108, '__ci_last_regenerate|i:1670739108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6e06bd04c6f927c499aff730b912e8b50e7190', '172.105.247.100', 1670739108, '__ci_last_regenerate|i:1670739108;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17eedfee4836e9cb83b142999a8dc1267073b5a2', '172.105.247.100', 1670739108, '__ci_last_regenerate|i:1670739108;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21b2acb83181acee29eef297b08474841345f1c', '172.105.247.100', 1670739109, '__ci_last_regenerate|i:1670739109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7925729b5ea325ed375ea9e083f5deabdd8aacba', '172.105.247.100', 1670739109, '__ci_last_regenerate|i:1670739109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1486792c9d4426f5b315148a39ba1209a8e1963', '172.105.247.100', 1670739110, '__ci_last_regenerate|i:1670739110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76dafce9a8326d82d6b05d59ffb20aebda9a63f', '172.105.247.100', 1670739110, '__ci_last_regenerate|i:1670739110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a6579e3298563189f1809870b59471633ac042', '172.105.247.100', 1670739110, '__ci_last_regenerate|i:1670739110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82d04ccbc157b12db8b2708d355afed5858fae9', '172.105.247.100', 1670739110, '__ci_last_regenerate|i:1670739110;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947f7849950215e23e05bc8034d83cfb113acb88', '172.105.247.100', 1670739111, '__ci_last_regenerate|i:1670739111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da1022fbdc623542dc2b0b68d1eaf3cba4ecdac', '172.105.247.100', 1670739111, '__ci_last_regenerate|i:1670739111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb50e0ea9a2cbf9082b56fdf1ceb5740b4b619ea', '172.105.247.100', 1670739111, '__ci_last_regenerate|i:1670739111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b33d43dc1a46318ae42af8d3d902877273dcfe', '172.105.247.100', 1670739111, '__ci_last_regenerate|i:1670739111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0334dd34c36eddb4cecf41b68b785fab2823dc70', '172.105.247.100', 1670739112, '__ci_last_regenerate|i:1670739112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ea9ec44df65286a8e61ead19e99bcb8fccfb9e8', '172.105.247.100', 1670739112, '__ci_last_regenerate|i:1670739112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7c3c4f99282323a3d5271897447207957817b1', '37.111.219.90', 1670744947, '__ci_last_regenerate|i:1670744947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670671034\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670739846;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f794d7cc1c01f9cadf267d2c286e7bdcb9a2d1e0', '116.204.230.25', 1670740528, '__ci_last_regenerate|i:1670740528;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670302640\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148feb0cfabb5fb26004fafd4b148c676fb8bf2f', '31.222.203.2', 1670740407, '__ci_last_regenerate|i:1670740407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada3af4c7e05c15456fa44a28d015bc692e838e9', '31.222.203.2', 1670740407, '__ci_last_regenerate|i:1670740407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24397fcd304f429b945346a61b58e0e0174a81bf', '31.222.203.2', 1670740407, '__ci_last_regenerate|i:1670740407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5524a2612bea802a385470641ac1b72058231c16', '31.222.203.2', 1670740407, '__ci_last_regenerate|i:1670740407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07129d770a4c46dcd995843ffd7e407759102c6d', '31.222.203.2', 1670740407, '__ci_last_regenerate|i:1670740407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0167be1f38c9948d53c96771b694c0931f370a79', '31.222.203.2', 1670740407, '__ci_last_regenerate|i:1670740407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7944a5f970d3901412e643ce3259dd5bffce5795', '116.204.230.25', 1670740528, '__ci_last_regenerate|i:1670740528;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670302640\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64162a3fe3f09860ebf7e299f907b1534ad1512', '31.222.203.2', 1670742178, '__ci_last_regenerate|i:1670742178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f905be79fca49f8a4d9fea1022e6df7955063f', '31.222.203.2', 1670742178, '__ci_last_regenerate|i:1670742178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba887a47dfdf70680250fed12885c36744bcc70a', '31.222.203.2', 1670742178, '__ci_last_regenerate|i:1670742178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783f4bf4acdbf0a66db067e842176531f584f948', '31.222.203.2', 1670742178, '__ci_last_regenerate|i:1670742178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a7adef84e9a154232be043c8118f0ef016cdd1', '31.222.203.2', 1670742178, '__ci_last_regenerate|i:1670742178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('732fb4b47b8fefafefd3148047f04e6dd6ad0d20', '31.222.203.2', 1670742178, '__ci_last_regenerate|i:1670742178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6190e20e9cefac7c68fce2bac04a34493dd932ce', '31.222.203.2', 1670744036, '__ci_last_regenerate|i:1670744036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6ed0da677bca3b32cc9001079b42175ae7c2e1', '31.222.203.2', 1670744037, '__ci_last_regenerate|i:1670744037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714cdcc7fcd83234e9d9dacebc6326ee1ae9c187', '31.222.203.2', 1670744037, '__ci_last_regenerate|i:1670744037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5baa92513268bcc340a175c8722735c100e7ef2', '31.222.203.2', 1670744037, '__ci_last_regenerate|i:1670744037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa7df9cafeba130fa5cbb6d58fbb02b5a63d79d', '31.222.203.2', 1670744037, '__ci_last_regenerate|i:1670744037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657b08daa483282860a71f3f14ec81bd2bd36894', '31.222.203.2', 1670744037, '__ci_last_regenerate|i:1670744037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae92118593107beaad17fa4ced5c110498aaaac', '172.105.247.100', 1670744510, '__ci_last_regenerate|i:1670744510;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0229334be45981a6098e6668ec72198ef10e9b', '172.105.247.100', 1670744511, '__ci_last_regenerate|i:1670744511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d5859653157568d185b9a5463b0ebd0d15c1a0', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf510ec49119e3ef3b935cd4c398b1c8d40d5a15', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d84f5e195975a3a51763c459a4613da773cbc8', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47bb620af71e33cd0e3389244011307b832190e4', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f0625babcb5bb0ca4b7efb7c4574a8c9898c38', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b22df001ba771e41a3bdea3ae87c7b464f3810', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f72c80b2c9259559d3b061427709cfc62767be3', '172.105.247.100', 1670744513, '__ci_last_regenerate|i:1670744513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d99df2a8ca80870c34fee79794762c5d81bb43ae', '172.105.247.100', 1670744514, '__ci_last_regenerate|i:1670744514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e15ca79ee4986513ce5d72e4f8ba571b159cf4e', '172.105.247.100', 1670744514, '__ci_last_regenerate|i:1670744514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac3e25b3deba34070c5aefdd17f80fcd5b7e7de', '172.105.247.100', 1670744514, '__ci_last_regenerate|i:1670744514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8126e0d077aefef49a7e3627d18a84da844b03f', '172.105.247.100', 1670744514, '__ci_last_regenerate|i:1670744514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d3576287f35dad0ee68d01e3ea0b9f31e00a03', '172.105.247.100', 1670744514, '__ci_last_regenerate|i:1670744514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82e8b066289a25bcc5102e74f12882d3d0e43ad3', '172.105.247.100', 1670744514, '__ci_last_regenerate|i:1670744514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b17533119bb3c828ab1dea353796e320a4a4535', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e1caea996f9fcb4c5cb2a1a0a05bff9ebb1527', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac856fe4c5e2c442791df70748616a2aac14cd30', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed3e733973febc6bd3ba26a070e6ebb253fd944', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5097464def52fad082fd9e215905b61affddba0', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a10642183bf9b99197c2f74e03977ee14e63d9', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e2db9bd6d232a2de32c00186e15f1d9683165c5', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec5315e9e7d2d5c83ff41cda9acfa31582243934', '172.105.247.100', 1670744515, '__ci_last_regenerate|i:1670744515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c856736722cca4cfd35002c75d83c991227d75', '172.105.247.100', 1670744516, '__ci_last_regenerate|i:1670744516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f466c3b2de98e8a431beb24a33d475b67bb5e8dd', '37.111.219.90', 1670744996, '__ci_last_regenerate|i:1670744947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670671034\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670744996;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179cda8576d819a7d3a4f8df259a2afdb127d664', '31.222.203.2', 1670745784, '__ci_last_regenerate|i:1670745784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7369a18338b81eb5e787c9f1df1bdbd78f7cf730', '31.222.203.2', 1670745784, '__ci_last_regenerate|i:1670745784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc3dbc6a66d6364233c5fbb29d5c29be1a76e49', '31.222.203.2', 1670745784, '__ci_last_regenerate|i:1670745784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1681657d6cf7a4c0963ae6e0874ae9ffbf014fa3', '31.222.203.2', 1670745786, '__ci_last_regenerate|i:1670745786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a702413d866b88e18ac0f585377ea2dab338435', '31.222.203.2', 1670745786, '__ci_last_regenerate|i:1670745786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c39d780518cb809b5297804c8ea1fdfabfc351b3', '31.222.203.2', 1670745786, '__ci_last_regenerate|i:1670745786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f790809626ef64b04eeecd0d26cf468723393a8c', '198.235.24.52', 1670745984, '__ci_last_regenerate|i:1670745984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fee5513cf84887c09cf8e5fb1ddbd07cd3aa206', '198.235.24.52', 1670745985, '__ci_last_regenerate|i:1670745985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75da6f892ed9439f939c0035b0f23eff097bd45e', '198.235.24.52', 1670745985, '__ci_last_regenerate|i:1670745985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8951c86ed9d4758c1e0108c6f4b2ade581c335', '31.222.203.2', 1670747598, '__ci_last_regenerate|i:1670747598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5913a8a3755a8e9d9b78bca4664874c59f2bc9', '31.222.203.2', 1670747600, '__ci_last_regenerate|i:1670747600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67fa22332a3ed0c617830fb74c2d58c3107707b1', '31.222.203.2', 1670747600, '__ci_last_regenerate|i:1670747600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e51ff466ae5096249bf7606e8903631b776861e', '31.222.203.2', 1670747600, '__ci_last_regenerate|i:1670747600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3323d47fd27bb3b69c03d68f7a857adcef2c0c20', '31.222.203.2', 1670747600, '__ci_last_regenerate|i:1670747600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602a6fd1f0ab3676961eaacaaf531367522de2d4', '31.222.203.2', 1670747600, '__ci_last_regenerate|i:1670747600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d8d5d9cc489ff93840f2afda11aa2674b01c58', '31.222.203.2', 1670749368, '__ci_last_regenerate|i:1670749368;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e0ce78ae3f67dbaf2f055506fb2c7fe265d592', '31.222.203.2', 1670749370, '__ci_last_regenerate|i:1670749370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5892bd860597d8c8a4e2695480d9153896eec919', '31.222.203.2', 1670749370, '__ci_last_regenerate|i:1670749370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6810358301c33833bfddb0b9ba55c59f52559dcc', '31.222.203.2', 1670749370, '__ci_last_regenerate|i:1670749370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cfe56bc8b4e214c8bec30c6a92c48726a05a68', '31.222.203.2', 1670749370, '__ci_last_regenerate|i:1670749370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb5b731a2990009faf767ffb72e91bf7feb63ef', '31.222.203.2', 1670749370, '__ci_last_regenerate|i:1670749370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265036de039957db81e4ea06af00e5f1de8f21d5', '172.105.247.100', 1670749906, '__ci_last_regenerate|i:1670749906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2d5376b286598c67d07322c2eec3d5406fb169', '172.105.247.100', 1670749906, '__ci_last_regenerate|i:1670749906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11fe9db6cc1dffceae9d1c9ae063a69cf109bf6e', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('013fabe060a7c65a5e8562aa073d6508c7bab939', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310688fe61130293fc6361eec25d17dd472a19b6', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9ff25893634eef138607be2f6977e283a4141e', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8a9d85b6cff890c229c5d5c41d46b25c8c41b4', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12c37372986825ce1f3536244fa41947b1f868a', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19fad12191ab03e8516ad0cc2dcf94fbd243103b', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26aa684265c75d173b946ba90500f7b6a1e13651', '172.105.247.100', 1670749907, '__ci_last_regenerate|i:1670749907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf9ea71b8bf55039f972d44767b94a15686e45c', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc82daaf9699528c90500cf5e51b97811e82743', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974b2c67dc8e6cf4349b7bb7e1b461130d3514a5', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9496ed675bd16bebe00e1a7988b9ae7828fac3ea', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5eb3cea683501851f2347fcbdf7eb744514daf1', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2664bbd59bbcf6aea01302f7b55d689c135eae0a', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749908;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1360dcd7f08933d3b0dc53f8aa1a12cfc377f5dc', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19577f7a79f2024906650f924322cbd854dbd8b', '172.105.247.100', 1670749908, '__ci_last_regenerate|i:1670749908;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f13f21ee47945c63916622c952390bd543d386a', '172.105.247.100', 1670749909, '__ci_last_regenerate|i:1670749909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fb401ab432bbf3c806124bc21d57e47feb8ed8', '172.105.247.100', 1670749909, '__ci_last_regenerate|i:1670749909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1624680443b84c5e2f540b304ab46b720941e2c4', '172.105.247.100', 1670749909, '__ci_last_regenerate|i:1670749909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8a8eafeebd5dcb4d5d3fa6f9bc2e300f904ffb', '172.105.247.100', 1670749909, '__ci_last_regenerate|i:1670749909;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbfd1c3bea3e445c0d467b5ed3f676f1b0e5d28', '172.105.247.100', 1670749909, '__ci_last_regenerate|i:1670749909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8f76cd596be3ef653336b8a57bd53b9e12d58f', '172.105.247.100', 1670749909, '__ci_last_regenerate|i:1670749909;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33088bb3cdf12a3e33e8bb9a656a66180417db22', '31.222.203.2', 1670751202, '__ci_last_regenerate|i:1670751202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def2e867a02c8b8701e3dd50a0422b335bfe1eae', '31.222.203.2', 1670751204, '__ci_last_regenerate|i:1670751204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1b634b43e44324bafeadfcfb26278bdcd55cd5', '31.222.203.2', 1670751204, '__ci_last_regenerate|i:1670751204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea48679dd90f039f36b61fbce69daaf8a20ab722', '31.222.203.2', 1670751204, '__ci_last_regenerate|i:1670751204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe91a4aaa39cf9a476efa68ae7a63dbde1e38cc1', '31.222.203.2', 1670751204, '__ci_last_regenerate|i:1670751204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72127d7a20f498b8de16e2c76aed760cfd194d35', '31.222.203.2', 1670751204, '__ci_last_regenerate|i:1670751204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a40ea84dd13f9cda737d280fb733614a2c123d', '37.111.219.90', 1670754946, '__ci_last_regenerate|i:1670754946;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670752407;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5297dc02fb7693715810ff512d0c2e7d5657d802', '31.222.203.2', 1670752988, '__ci_last_regenerate|i:1670752988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('786130e5983ae4f6054a34fd1e1e9c1069443fac', '31.222.203.2', 1670752990, '__ci_last_regenerate|i:1670752990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f9ef52b6ed5ae8553f890b02a295c6c5c3b9b5c', '31.222.203.2', 1670752990, '__ci_last_regenerate|i:1670752990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9cc2b5b270d60d767d1941d44075e3daa77e56', '31.222.203.2', 1670752990, '__ci_last_regenerate|i:1670752990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a64c90550fc1f64614bd79b729720cbacc462b', '31.222.203.2', 1670752990, '__ci_last_regenerate|i:1670752990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a56caa31bbab55c28178902d04816a3730152e', '31.222.203.2', 1670752990, '__ci_last_regenerate|i:1670752990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f269ec48514e47aab1f2a391b6a710ebcdd5b146', '31.222.203.2', 1670754811, '__ci_last_regenerate|i:1670754811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15a9728414a6f614efc40fdeb332d27362ee9e9f', '31.222.203.2', 1670754813, '__ci_last_regenerate|i:1670754813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da57792ff72e9a9ceb5f1805408b8e508c3ffd6b', '31.222.203.2', 1670754813, '__ci_last_regenerate|i:1670754813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7547aed127d2f51f6ee4eeecf379f78b503902e', '31.222.203.2', 1670754813, '__ci_last_regenerate|i:1670754813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a612c04444911194123079391a9d6d31e039f4', '31.222.203.2', 1670754813, '__ci_last_regenerate|i:1670754813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91619e5ebc08bad5652170e3216693d911679d7', '31.222.203.2', 1670754813, '__ci_last_regenerate|i:1670754813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fee75ef4b8feb43d1f35d9e3613bae34a2b58f', '37.111.219.90', 1670756949, '__ci_last_regenerate|i:1670756949;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670756941;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ef48a2f170c8086cc4a6747d1085c6f7907e94', '172.105.247.100', 1670755309, '__ci_last_regenerate|i:1670755309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b308c0e61c51ff596aa129f85e52e82e9f77dc69', '172.105.247.100', 1670755310, '__ci_last_regenerate|i:1670755309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5101857a54351fa1506a0bf4ef8b7aa9b586f73a', '172.105.247.100', 1670755310, '__ci_last_regenerate|i:1670755310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12303f61abfc4fc909d6e54dae22aa91b558b54', '172.105.247.100', 1670755310, '__ci_last_regenerate|i:1670755310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e321a14f5aac43fedc413378178e30574ef28530', '172.105.247.100', 1670755310, '__ci_last_regenerate|i:1670755310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca857690ee7e8fa3aea3a2d044648cddd795b93', '172.105.247.100', 1670755310, '__ci_last_regenerate|i:1670755310;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240ebe8b9615ea4ace8ac368646c18a08bd4e544', '172.105.247.100', 1670755311, '__ci_last_regenerate|i:1670755311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf9a93e53e5017f51c107097a93b7295ff233b3', '172.105.247.100', 1670755311, '__ci_last_regenerate|i:1670755311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62990653bbfba4266372cb1b9734ba76d095a324', '172.105.247.100', 1670755311, '__ci_last_regenerate|i:1670755311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25305504d867269ac7707bbad9c64fb9fc04aef8', '172.105.247.100', 1670755311, '__ci_last_regenerate|i:1670755311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c545503822d7326516ecd0d2cc3ae244d62766', '172.105.247.100', 1670755311, '__ci_last_regenerate|i:1670755311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c912721d991a8c71d8e990f2237afe2b537052', '172.105.247.100', 1670755311, '__ci_last_regenerate|i:1670755311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ec303a131e8e8be0ba9f2d58ab550b7ea5591f', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f8efddae16dd12b17e8b6c3137c1faa3bfe882', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae86625aff928b2ee6d3c19a1c82d98942a8724', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae70659c988dd28c3068b7e10773ca3718dc1e35', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b372da91eddcc3c5054e5b39a00c86042344d8', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4426607458d0f1d7a5c762f30944e917c4462b8', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c24ed6eeef3b6ccf9fcb006404030c53338041', '172.105.247.100', 1670755312, '__ci_last_regenerate|i:1670755312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21b9b544d2526d84c8136c29bf380b53f6fccea', '172.105.247.100', 1670755313, '__ci_last_regenerate|i:1670755313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369ac4d25963e8720778f3a30cff75d01f3e6e59', '172.105.247.100', 1670755313, '__ci_last_regenerate|i:1670755313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393b0bf4e5e768d521fb44e77ebd154f9d365e35', '172.105.247.100', 1670755313, '__ci_last_regenerate|i:1670755313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f5f4d1a63f872a5ea4249158b9693a0d70bbb7', '172.105.247.100', 1670755314, '__ci_last_regenerate|i:1670755313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a51395f1dbe827d7454e14e7a1dccf37c389f1f', '172.105.247.100', 1670755314, '__ci_last_regenerate|i:1670755314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16f7051535934fdee61e33541ec8935fb90fe42', '31.222.203.2', 1670756606, '__ci_last_regenerate|i:1670756606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb8f6625164f103538145e37370fd473a00523c', '31.222.203.2', 1670756608, '__ci_last_regenerate|i:1670756608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265bf9a39b9f703cd3710d79dcdf0114fc77e64f', '31.222.203.2', 1670756608, '__ci_last_regenerate|i:1670756608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a495d8d7309114acd1fcdceb40fce2bbbbb47b', '31.222.203.2', 1670756608, '__ci_last_regenerate|i:1670756608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3927008d58c5b572f1239a34d631eecb4ebf7ab', '31.222.203.2', 1670756608, '__ci_last_regenerate|i:1670756608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06fcd24c338b3038131cc5c35833e948d0bf1950', '31.222.203.2', 1670756608, '__ci_last_regenerate|i:1670756608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65cbeb7dd55036322b61d191ac06495a01e8b15b', '37.111.219.90', 1670758302, '__ci_last_regenerate|i:1670758302;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670756949;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf36c74b2e9aaffcb68874b62379d1fea66b070c', '37.111.219.90', 1670758914, '__ci_last_regenerate|i:1670758914;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670758539;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b60abb328ad5b7cbf1bae81a354ca68717bfe1', '31.222.203.2', 1670758414, '__ci_last_regenerate|i:1670758414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa88542ccebd9b9bb7d91e35355fc80869a4232f', '31.222.203.2', 1670758416, '__ci_last_regenerate|i:1670758416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dad68973b1b45c779c5139b2244100a93c9ca20', '31.222.203.2', 1670758416, '__ci_last_regenerate|i:1670758416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ccb30b719d52b2a7f5bd14328977c4d0c3b841', '31.222.203.2', 1670758416, '__ci_last_regenerate|i:1670758416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc037a44eaf0509dd14c904748886e1fab913960', '31.222.203.2', 1670758416, '__ci_last_regenerate|i:1670758416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6814a7e22aa36af856fd3a09938626f810d9c83', '31.222.203.2', 1670758416, '__ci_last_regenerate|i:1670758416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb1874496fccb52cb67d6d7d4925a426360e834', '37.111.219.90', 1670760056, '__ci_last_regenerate|i:1670760056;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670758943;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bcfafbaaf3e62d694e0df0ab32835e3de50663', '37.111.219.90', 1670761854, '__ci_last_regenerate|i:1670761854;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670760320;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0048c2548e0b9f3aecce7581d5a9b3635a087bb', '31.222.203.2', 1670760192, '__ci_last_regenerate|i:1670760192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82c7bcaf19435d8d21e11bdda5bc1293729211f', '31.222.203.2', 1670760194, '__ci_last_regenerate|i:1670760194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2450d5acd1cbf332d553e7d57813d339b54ec0', '31.222.203.2', 1670760194, '__ci_last_regenerate|i:1670760194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4a7fb075a10c968bdec961751f9ccbdb7ee5b37', '31.222.203.2', 1670760194, '__ci_last_regenerate|i:1670760194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fa81e1d49901af664c015b17b20eca51aa2343f', '31.222.203.2', 1670760194, '__ci_last_regenerate|i:1670760194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1944d8d8bf1e1488b64f8733f0e4039bbd21bfc6', '31.222.203.2', 1670760194, '__ci_last_regenerate|i:1670760194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c0a215590529acb5388ab9cfd52bea7e76ddebb', '172.105.247.100', 1670760705, '__ci_last_regenerate|i:1670760705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eadf66459a16bc3f19c0c945ffc2031294d5cdea', '172.105.247.100', 1670760705, '__ci_last_regenerate|i:1670760705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8cf1de286dbd17357e292e4bdf989e29d06de9a', '172.105.247.100', 1670760706, '__ci_last_regenerate|i:1670760706;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73bd1ada3237144abcc17c6b53a7ff1e5f078a66', '172.105.247.100', 1670760706, '__ci_last_regenerate|i:1670760706;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7846b38e56895f4aff9005cc23dd0aa0f83889e', '172.105.247.100', 1670760706, '__ci_last_regenerate|i:1670760706;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c3c0fba460483edf205625f472458e051dedf5', '172.105.247.100', 1670760706, '__ci_last_regenerate|i:1670760706;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6eb827f8ffe1bb8663cfb3f746378acbd0608c5', '172.105.247.100', 1670760707, '__ci_last_regenerate|i:1670760707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4277ec5ce8328c09c2ea06dd38a46ae308990a', '172.105.247.100', 1670760707, '__ci_last_regenerate|i:1670760707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc6bd2aab2ef591b9f6f5f2a45ceebd642e906b', '172.105.247.100', 1670760707, '__ci_last_regenerate|i:1670760707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a14acbdb87c8dc93550d1ff081b4cc482aa6026', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d226cafd6d13faa2b4d3b0838fd767e4163b81dd', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebabd78392cbd7f1b0ae813e3aac00a3bba26d0', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2e7cd1bc894f247b2ac74cf3986d3888c05f7f', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb202ca6a69db6f925da48fde92512c5e4f5a711', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529d02095872a4200e5c90f5a47561c72e7904ce', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb9d7e9669cd9909fdbbd9637d88e5c95d531b9', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66794f62529c03649d4484ca068c732958b4ebc', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('053ccc9237e277eeb17af0c0775699e0a49d9b96', '172.105.247.100', 1670760708, '__ci_last_regenerate|i:1670760708;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e62156d896172b7a86bf6acf35ab81ac19de6b', '172.105.247.100', 1670760709, '__ci_last_regenerate|i:1670760709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdeed8b6ec02071c9466a2d39530dba88cb56ebf', '172.105.247.100', 1670760709, '__ci_last_regenerate|i:1670760709;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e294ae25af5d09bf710592c4997ca9b6a115821', '172.105.247.100', 1670760709, '__ci_last_regenerate|i:1670760709;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecdf920c2518747be2f6c6432505532d33250dcc', '172.105.247.100', 1670760710, '__ci_last_regenerate|i:1670760710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e381eba12f8b3f8247a939b5e4d5e1d1b3cbbb', '172.105.247.100', 1670760710, '__ci_last_regenerate|i:1670760710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba9fe07c88a60ddfd2d151e23977e3489cd598f7', '172.105.247.100', 1670760710, '__ci_last_regenerate|i:1670760710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a09f0c26214aa2ca6f8ba2ce27b1e7c1819e3a', '116.204.230.25', 1670761680, '__ci_last_regenerate|i:1670761680;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670738017\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589c36ba638cc9b4831062af1d1f3394819d8299', '116.204.230.25', 1670761992, '__ci_last_regenerate|i:1670761992;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670738017\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9401f98e7b4c9c35de0337b9d3563cb3f1995464', '37.111.219.90', 1670762194, '__ci_last_regenerate|i:1670762194;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670761908;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e0cbef3316d54b9772852c7ed7007e4ee49d6b', '31.222.203.2', 1670761980, '__ci_last_regenerate|i:1670761980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76780a17ed3754cfb2f1519fa12b6245da3db2a', '31.222.203.2', 1670761983, '__ci_last_regenerate|i:1670761983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c6bf05232569bb228ab0612da5b6e4c16a8917', '31.222.203.2', 1670761983, '__ci_last_regenerate|i:1670761983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d4964bee82cf539fee622d9f0bfcf92514139f', '31.222.203.2', 1670761983, '__ci_last_regenerate|i:1670761983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68c5a16df7085984e2cdb51c428d0d55fa12071', '31.222.203.2', 1670761983, '__ci_last_regenerate|i:1670761983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b328b554e97f8d284fb0197809fd0a376798862', '31.222.203.2', 1670761983, '__ci_last_regenerate|i:1670761983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ad7171d7074f3a80f658a5c021e8ba5fe85b53', '116.204.230.25', 1670763188, '__ci_last_regenerate|i:1670761992;__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670738017\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2fd0077c2dcac72c64c8bba90c4dae5122bb4b', '45.120.39.90', 1670762992, '__ci_last_regenerate|i:1670762992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670762986;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b488b6007f8b0779746b17bdb982ccd7910d9a0', '45.120.39.90', 1670763949, '__ci_last_regenerate|i:1670763949;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670762992;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f5fc861bd43fd7b8a9c6577aacd8adfa1e40ab0', '31.222.203.2', 1670763765, '__ci_last_regenerate|i:1670763765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ea76feac28ce5647f99fa185af1551d0d3c69a', '31.222.203.2', 1670763767, '__ci_last_regenerate|i:1670763767;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb7cd665967882b8c578a13b986440188ea53e7', '31.222.203.2', 1670763767, '__ci_last_regenerate|i:1670763767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155d67d3e25cc0b44c15fe861faad30a90c1de80', '31.222.203.2', 1670763767, '__ci_last_regenerate|i:1670763767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d6a3c15954022101aea38d3066a88950b9f60c', '31.222.203.2', 1670763767, '__ci_last_regenerate|i:1670763767;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702f3582c2bf97735fb3e510499317be56b17b46', '31.222.203.2', 1670763767, '__ci_last_regenerate|i:1670763767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b114a15b87e75a44ce4ce86dc3434d4d88775de1', '37.111.219.90', 1670764286, '__ci_last_regenerate|i:1670764286;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670764247;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8900c78d97aa063c6324a105fcdd7392c91cade', '45.120.39.90', 1670765706, '__ci_last_regenerate|i:1670765706;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670764421;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d508455edc06ad9c830dbc3490c7bb79237056', '31.222.203.2', 1670765605, '__ci_last_regenerate|i:1670765605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc0d9cd6bd639a70b5a0da8fc78cd4dce171998', '31.222.203.2', 1670765607, '__ci_last_regenerate|i:1670765607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb4447ed5ec75e2a7c68629838c368bf5f9fb31', '31.222.203.2', 1670765607, '__ci_last_regenerate|i:1670765607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50600e3bf6666cedc0e3aedcb5a327f9eadc7da5', '31.222.203.2', 1670765607, '__ci_last_regenerate|i:1670765607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfcbbf52f691d8b6c7fe6664895d0b8a4c67f876', '31.222.203.2', 1670765607, '__ci_last_regenerate|i:1670765607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218633d8e3a7b1084a700b9f926cd7c7d59fe375', '31.222.203.2', 1670765607, '__ci_last_regenerate|i:1670765607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f70389134584170272740fed73cbca8e8a017e', '45.120.39.90', 1670766577, '__ci_last_regenerate|i:1670766577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670765706;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7a91426403110c03fa43999ce95ab97609c50c', '172.105.247.100', 1670766101, '__ci_last_regenerate|i:1670766101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172d96275e3f2404e492907a1360fe67fc972d2a', '172.105.247.100', 1670766101, '__ci_last_regenerate|i:1670766101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5054e5bfb59ae4a33d7d15b356c16ff5421be619', '172.105.247.100', 1670766101, '__ci_last_regenerate|i:1670766101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8552b158a35238321330f3f55353ff4832c9c8f', '172.105.247.100', 1670766102, '__ci_last_regenerate|i:1670766101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4059942ad8515fb122f436e7cfc827e910c20abe', '172.105.247.100', 1670766102, '__ci_last_regenerate|i:1670766102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86efa16bd047075d48480a4380b0d73e43c94938', '172.105.247.100', 1670766102, '__ci_last_regenerate|i:1670766102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c4f2b10e8e79d551909efa3e9bf74818fe5b23', '172.105.247.100', 1670766102, '__ci_last_regenerate|i:1670766102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15971e0db0ace50520e83564a0aa091074bdb6fb', '172.105.247.100', 1670766103, '__ci_last_regenerate|i:1670766102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b3af0a2506a3b298bb05bf4f8aff73a91f3a7b', '172.105.247.100', 1670766103, '__ci_last_regenerate|i:1670766103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7f1daa8aa456daa24dda4e872f6765249b9374', '172.105.247.100', 1670766103, '__ci_last_regenerate|i:1670766103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e2fa92ebf03cc6c693197679ec7632949141659', '172.105.247.100', 1670766103, '__ci_last_regenerate|i:1670766103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8361bdaea16de555d1da76988c3009c7256dff5', '172.105.247.100', 1670766103, '__ci_last_regenerate|i:1670766103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea972e77d9f47aa6827a7b4d74a60fddac5e2475', '172.105.247.100', 1670766103, '__ci_last_regenerate|i:1670766103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509ed4c8d9d97de573886947d792636cf331070e', '172.105.247.100', 1670766104, '__ci_last_regenerate|i:1670766104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b87f5ee87a53acb4af2667cf3bebca848d5af4', '172.105.247.100', 1670766104, '__ci_last_regenerate|i:1670766104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1650fda2bf94c20ac970756540255b15c17e4c', '172.105.247.100', 1670766104, '__ci_last_regenerate|i:1670766104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1c1c4c06ca0dfc60f5038285a01dcc79e8321a', '172.105.247.100', 1670766104, '__ci_last_regenerate|i:1670766104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c747540e7aafbf8e535d2d7aec44358d25fcabfc', '172.105.247.100', 1670766104, '__ci_last_regenerate|i:1670766104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b59015d01343313d783fda25b32048f44fe85e', '172.105.247.100', 1670766105, '__ci_last_regenerate|i:1670766105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8e6a6f0eac5ba47798cbccbc5235d9000c3bf0', '172.105.247.100', 1670766105, '__ci_last_regenerate|i:1670766105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b60010a348b3ad57e8c4c6ced2e89e82a303e214', '172.105.247.100', 1670766105, '__ci_last_regenerate|i:1670766105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4253c95c64399ac8e836b0bc36b9a7fa01fde12', '172.105.247.100', 1670766106, '__ci_last_regenerate|i:1670766105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57073165fc1f03962020e64ab4749a7375e0301e', '172.105.247.100', 1670766106, '__ci_last_regenerate|i:1670766106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630ae7f3cddb99e4ded906450cbca5cb65fcd671', '172.105.247.100', 1670766106, '__ci_last_regenerate|i:1670766106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60af68da88bc143ef2699a91037c535cb7bd39c3', '45.120.39.90', 1670767318, '__ci_last_regenerate|i:1670767318;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670766696;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc31360fb457b90592d031812af1cacede23fc9d', '45.120.39.90', 1670769008, '__ci_last_regenerate|i:1670769008;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670767424;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('387d5d2655b28877c87689b060a8b8c9b45026e5', '31.222.203.2', 1670767385, '__ci_last_regenerate|i:1670767385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7182ae50f739d0911a33944a5ebe433061ff1d18', '31.222.203.2', 1670767385, '__ci_last_regenerate|i:1670767385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a0a772ffed13f12b52ac1ced1c66a3fd01ac8b', '31.222.203.2', 1670767385, '__ci_last_regenerate|i:1670767385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c7d6207d0964795e9b8027cab3453dd8219f97', '31.222.203.2', 1670767385, '__ci_last_regenerate|i:1670767385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f100572cc5e11c716431e0d0b32de2e225ce5bb2', '31.222.203.2', 1670767385, '__ci_last_regenerate|i:1670767385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eecba229b37d2c379e109cf062ba81b06161159', '31.222.203.2', 1670767385, '__ci_last_regenerate|i:1670767385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8486b64ef1c3d2b2562aa28f0d259a68345bd31', '45.120.39.90', 1670769609, '__ci_last_regenerate|i:1670769609;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670769599;register_id|s:3:\"276\";cash_in_hand|s:9:\"4120.0000\";register_open_time|s:19:\"2022-12-10 20:45:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b104ad148e516db7740dc7fa4d02d70a78470c', '31.222.203.2', 1670769210, '__ci_last_regenerate|i:1670769210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7b82ce6a500a3e63b5f8ab2178c387ab6a5d5f', '31.222.203.2', 1670769211, '__ci_last_regenerate|i:1670769211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba2737c776f7f61bf0ca2ae51e436005d8a4a20', '31.222.203.2', 1670769211, '__ci_last_regenerate|i:1670769211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27daf2fe5b473ebeac2f0d58552f8a623ac68d1', '31.222.203.2', 1670769211, '__ci_last_regenerate|i:1670769211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1d162b8b9f23dd4009e6203ccac0c07cc60cfd', '31.222.203.2', 1670769211, '__ci_last_regenerate|i:1670769211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891a442190c25c9d38be0dbf3f9374395769f7e0', '31.222.203.2', 1670769211, '__ci_last_regenerate|i:1670769211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700574ff07305055e157df559ae692196a3da081', '45.120.39.90', 1670770390, '__ci_last_regenerate|i:1670770390;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670770279;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537e16cf0c6df3e70fe86e44755f49fc1cfdd561', '45.120.39.90', 1670770391, '__ci_last_regenerate|i:1670770390;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670734144\";last_ip|s:12:\"45.120.39.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670770391;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701cedaae2de5355d2dd4ca4ba016b12efe01b71', '31.222.203.2', 1670770988, '__ci_last_regenerate|i:1670770988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5999a4944b6927ff084dbbcd0edc7dffb2cc77', '31.222.203.2', 1670770988, '__ci_last_regenerate|i:1670770988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7d9c73770575fab176402d479671b7d8ab372b', '31.222.203.2', 1670770988, '__ci_last_regenerate|i:1670770988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67a27725c8075bec5ce630aa6dca4da2f8860218', '31.222.203.2', 1670770989, '__ci_last_regenerate|i:1670770989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('590cb95c712f644c35d42d71533499a4074a6eaa', '31.222.203.2', 1670770989, '__ci_last_regenerate|i:1670770989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18865d6015a3edd4737ac3363da3b36d6e340db2', '31.222.203.2', 1670770989, '__ci_last_regenerate|i:1670770989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0e4534d61cb6e732bc857eb73740b5edc77685', '172.105.247.100', 1670771502, '__ci_last_regenerate|i:1670771502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45ad6244664e119a3b0e7eff544f69b69d81cb5', '172.105.247.100', 1670771502, '__ci_last_regenerate|i:1670771502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0041550c261b5b8be519f41d21a75e8f9c631321', '172.105.247.100', 1670771502, '__ci_last_regenerate|i:1670771502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef12ecd7c7398d3ed4b3182d712eac4ab7fc45b8', '172.105.247.100', 1670771502, '__ci_last_regenerate|i:1670771502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9428820353d01eb40d7fecb1da6f7ea4313916f', '172.105.247.100', 1670771502, '__ci_last_regenerate|i:1670771502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85255b098e2b252e64dcf683c6cc311de32c6d14', '172.105.247.100', 1670771503, '__ci_last_regenerate|i:1670771503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ebf8e48e94384789242f7bdb477a93c5a60bd4', '172.105.247.100', 1670771503, '__ci_last_regenerate|i:1670771503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a86232ec423861177c7ffa77e426f9eb10e9948', '172.105.247.100', 1670771503, '__ci_last_regenerate|i:1670771503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b66d23e8dd81bb5a8822a43a128be1ad07c607', '172.105.247.100', 1670771503, '__ci_last_regenerate|i:1670771503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983ab9e930c82a0a9657298d2b9634238f71917f', '172.105.247.100', 1670771503, '__ci_last_regenerate|i:1670771503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3b6be2a2f90ff9ca8c13929b8e6b1951932c8a', '172.105.247.100', 1670771503, '__ci_last_regenerate|i:1670771503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291be6267fc8076240b7dd13992dad9112b6a219', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df6ca5bbb5ee378838965879603c9c221636c38', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf960d3fba5a224008e96bcee5b7a861cd131987', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00bd69f8c275b3583d06f2993b1fc2c249ae75cc', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34bbb7509b063692f44a97a4377e7cc7bb3af28', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8fae7912091f777b0a4b465c55c67d53833c06e', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8853b9d36a3cb18ba0b1285114f7f8814c40b7ef', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5bd55cf51c132eeaf8a87c5eb653d8285edfad', '172.105.247.100', 1670771504, '__ci_last_regenerate|i:1670771504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f28505fbdd177c7ad50f9cb20e769489950669', '172.105.247.100', 1670771505, '__ci_last_regenerate|i:1670771505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b97fefe9034190556fe1e1ccbf15ce9405814ae', '172.105.247.100', 1670771505, '__ci_last_regenerate|i:1670771505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da118d0c8af49205bec14ad792a804196fcdc750', '172.105.247.100', 1670771505, '__ci_last_regenerate|i:1670771505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e23dcb70508ecc1d49218bd8e5ecc95a6a04fe29', '172.105.247.100', 1670771506, '__ci_last_regenerate|i:1670771506;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48723d0556fbe7899f76cebb1cf0c3255f2eb3db', '172.105.247.100', 1670771506, '__ci_last_regenerate|i:1670771506;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e59907fcb5c5167042d353d54a7edc34d277f60', '31.222.203.2', 1670772788, '__ci_last_regenerate|i:1670772788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('402166b95064cc33f5327c397651a27e069247aa', '31.222.203.2', 1670772788, '__ci_last_regenerate|i:1670772788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394fda3f741dea9479d592600d58ba30056cdfb9', '31.222.203.2', 1670772788, '__ci_last_regenerate|i:1670772788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c038cbbaacd7e364b9dbe54634867279c546fb', '31.222.203.2', 1670772789, '__ci_last_regenerate|i:1670772789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644cc2839992b0dc9940382c136af78716ccb169', '31.222.203.2', 1670772789, '__ci_last_regenerate|i:1670772789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc866e36db7156fb02b826893bf816f16b69665', '31.222.203.2', 1670772789, '__ci_last_regenerate|i:1670772789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f8072fa62250c80a6b1e9b4ac09fbd86a55af9', '31.222.203.2', 1670774611, '__ci_last_regenerate|i:1670774611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5975d5e4f8d432e9e429395dbe301d367fe3eb', '31.222.203.2', 1670774613, '__ci_last_regenerate|i:1670774613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6fca81f8b42e9b1558d0905cd0421f75a4395c', '31.222.203.2', 1670774613, '__ci_last_regenerate|i:1670774613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf492da14976ebcfc486f90ca6e9271140c67b8', '31.222.203.2', 1670774613, '__ci_last_regenerate|i:1670774613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550724b7f0e30b63230c0235706b33be50a35df3', '31.222.203.2', 1670774613, '__ci_last_regenerate|i:1670774613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9f5ea9df469358806eb558b16d41fd7d5647fb4', '31.222.203.2', 1670774613, '__ci_last_regenerate|i:1670774613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec430f29589c797c460e76810713449cdcae1c0', '31.222.203.2', 1670776408, '__ci_last_regenerate|i:1670776408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2160888f69d7b61cf037b8c8af75b59bb90e60a7', '31.222.203.2', 1670776409, '__ci_last_regenerate|i:1670776409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fd37f24574707cf52f4ea0eaf9ec92b5ff1122', '31.222.203.2', 1670776409, '__ci_last_regenerate|i:1670776409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0734349e12d00c4bd31c4f376e5e166ba26553b3', '31.222.203.2', 1670776409, '__ci_last_regenerate|i:1670776409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab158040faeee636d3294c443c49d7e1ef846ef', '31.222.203.2', 1670776409, '__ci_last_regenerate|i:1670776409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84d0c72ad5e806854042ba7243b4f94148ffbf0', '31.222.203.2', 1670776409, '__ci_last_regenerate|i:1670776409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1358e63140a3b496a64d63ce2c712aedf1950ec', '172.105.247.100', 1670776901, '__ci_last_regenerate|i:1670776901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa935eaf470e11e636da09822a13f63411f58fb1', '172.105.247.100', 1670776901, '__ci_last_regenerate|i:1670776901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1632b870899c7cf3aaea2cd4e8b17c7bf9e2826b', '172.105.247.100', 1670776901, '__ci_last_regenerate|i:1670776901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4d9fd48e36504267f120da878494af01a43a73', '172.105.247.100', 1670776901, '__ci_last_regenerate|i:1670776901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eafdefe65afd9f8f1875df49412fdd782c26c58', '172.105.247.100', 1670776902, '__ci_last_regenerate|i:1670776902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebdfde3fc55022b43675ae7c23b7f90b452f369', '172.105.247.100', 1670776902, '__ci_last_regenerate|i:1670776902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bddb84e2f0bb47d1ee96853ef6aeb1ad599204d3', '172.105.247.100', 1670776902, '__ci_last_regenerate|i:1670776902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cabe7340e1ca6b6f348c7c70a916693ee369778e', '172.105.247.100', 1670776902, '__ci_last_regenerate|i:1670776902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58914b95d9ca18a1a6e07f90bcb491922ae803ab', '172.105.247.100', 1670776902, '__ci_last_regenerate|i:1670776902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1955b8549f7cd49492ecbf66a04a43c0858134ae', '172.105.247.100', 1670776902, '__ci_last_regenerate|i:1670776902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e25c215aac1fa1c19534e625c341d8b55e1bdb', '172.105.247.100', 1670776903, '__ci_last_regenerate|i:1670776903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8155957ea423c78a0d9c8e1d026373a6b4c3af', '172.105.247.100', 1670776903, '__ci_last_regenerate|i:1670776903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8a9dc0b33178e7013969e3005255d94e70a158', '172.105.247.100', 1670776903, '__ci_last_regenerate|i:1670776903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b49965dd47608188f585e767f52bfdedd1deaf8', '172.105.247.100', 1670776903, '__ci_last_regenerate|i:1670776903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('decf12d9a4ddcba575d8a476830e416b92b96f06', '172.105.247.100', 1670776904, '__ci_last_regenerate|i:1670776903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c259abf691e54f7474318ba72f242762b65b62bf', '172.105.247.100', 1670776904, '__ci_last_regenerate|i:1670776903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b4cca491fce9772b6772dd1760fd383e7b116f', '172.105.247.100', 1670776904, '__ci_last_regenerate|i:1670776904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006a99d4ef32a76f6e28b8e5bf12fa4ce82be65c', '172.105.247.100', 1670776904, '__ci_last_regenerate|i:1670776904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('019cb51ab89901583a80156103ec076c9709a6ab', '172.105.247.100', 1670776904, '__ci_last_regenerate|i:1670776904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967680ce203e0d6b67902ab8db46ccad6fd02149', '172.105.247.100', 1670776905, '__ci_last_regenerate|i:1670776904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fdbad1afd3c0bf06daf90098b514c18bf7a8d8b', '172.105.247.100', 1670776905, '__ci_last_regenerate|i:1670776905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05104449e46f6dfcde200f3b2abedd9d05c75e38', '172.105.247.100', 1670776905, '__ci_last_regenerate|i:1670776905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c4e67ea79fa8ba1a252b4ecd01707a3e801950', '172.105.247.100', 1670776905, '__ci_last_regenerate|i:1670776905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73d5d62852cb23eb5fceb4552534e40261e8529', '172.105.247.100', 1670776906, '__ci_last_regenerate|i:1670776906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f78a0b6324cd4bf81b049f4c5c0557f908a5574a', '31.222.203.2', 1670778212, '__ci_last_regenerate|i:1670778212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8aabdb884c94e03fd1baa55588be8bc82a5e68b', '31.222.203.2', 1670778213, '__ci_last_regenerate|i:1670778212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a648e4e733d6d313a95112b2851037c39c44539d', '31.222.203.2', 1670778213, '__ci_last_regenerate|i:1670778212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec5d3d7d50acbf804ceeb94f6add3b62ef1b13a', '31.222.203.2', 1670778213, '__ci_last_regenerate|i:1670778213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3760cbdb5e5244f8eff7f08112953a8f0be04a8c', '31.222.203.2', 1670778213, '__ci_last_regenerate|i:1670778213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a6525f14b3e05d61c6db4baad9a37e667624c7', '31.222.203.2', 1670778213, '__ci_last_regenerate|i:1670778213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed72e27da3a1f3410976f82dac1ef35096d8dc5', '194.163.132.194', 1670779189, '__ci_last_regenerate|i:1670779189;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ee0840a6e4ffcf155bcc60ed3f6830d9eaa6c4', '194.163.132.194', 1670779189, '__ci_last_regenerate|i:1670779189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae50cf9415f0061a45d2543168a41789a14b138', '194.163.132.194', 1670779190, '__ci_last_regenerate|i:1670779190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e220b9abf96d78df973d6e2482bfa06ba24b80ee', '194.163.132.194', 1670779190, '__ci_last_regenerate|i:1670779190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33ce1758fca0baafc3fdac99a4bcf4af26293d22', '31.222.203.2', 1670780012, '__ci_last_regenerate|i:1670780012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ea316d3df4974c1b6b9f65a9c560f643bd0382', '31.222.203.2', 1670780014, '__ci_last_regenerate|i:1670780014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1982a094f79ecde74695b759390c042bff670b2e', '31.222.203.2', 1670780014, '__ci_last_regenerate|i:1670780014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39cbc4695e344961c12d16746a29a676077b849d', '31.222.203.2', 1670780014, '__ci_last_regenerate|i:1670780014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99304f8c4a761cdaa34479eb126ecd3e6409e258', '31.222.203.2', 1670780014, '__ci_last_regenerate|i:1670780014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3bbae016711cd738a4465477a843cd34359efb1', '31.222.203.2', 1670780014, '__ci_last_regenerate|i:1670780014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80496e11c1569a3e6fc0ae18e7a6df69dcd7a9be', '31.222.203.2', 1670781796, '__ci_last_regenerate|i:1670781796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5e48c5a5cdbeb5f3e4a09c3c982d5ff207be32', '31.222.203.2', 1670781798, '__ci_last_regenerate|i:1670781798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8daab21226f661a6641c9055b019d7bd1f5c296', '31.222.203.2', 1670781798, '__ci_last_regenerate|i:1670781798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c547fa647cbf615ecf55616350fc88f807f879bf', '31.222.203.2', 1670781798, '__ci_last_regenerate|i:1670781798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f717529f9a43171cc19a01dc367a10eb6b4112c', '31.222.203.2', 1670781798, '__ci_last_regenerate|i:1670781798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9243e78dae5e36eb29643a8c873f8f3bb1ff98d2', '31.222.203.2', 1670781798, '__ci_last_regenerate|i:1670781798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03ea522a9056c7bd7519d3b5b79b12b82e461c3e', '172.105.247.100', 1670782311, '__ci_last_regenerate|i:1670782311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b5244ad45d391d53ef38919f07b9f1c9e69705', '172.105.247.100', 1670782311, '__ci_last_regenerate|i:1670782311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb4e62e61979dea0abbbbae1e4ebfdf11d46fbf', '172.105.247.100', 1670782314, '__ci_last_regenerate|i:1670782314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c46462c0ad3d5a55996066307365cfba4bd02b0', '172.105.247.100', 1670782314, '__ci_last_regenerate|i:1670782314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f4dd7d05cb717b2a59df0849f6cef48bb112ea', '172.105.247.100', 1670782314, '__ci_last_regenerate|i:1670782314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b93167e4064e684145bb05406bdd55960dd61f', '172.105.247.100', 1670782314, '__ci_last_regenerate|i:1670782314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15443ffce8cccbf21b2f126c76734f8940bd7ff4', '172.105.247.100', 1670782314, '__ci_last_regenerate|i:1670782314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e260e814ef7410904cc7d69f36abae20ccac2253', '172.105.247.100', 1670782314, '__ci_last_regenerate|i:1670782314;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41b6e5dc760c69104b944f6962627f41be70390', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2ce300bfbcfba1bd04b5366e68d6b92093b16d', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14b571ecd9d8ddf5a61a21c9af8d216096d39bf8', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949b215e05a4bba305df953e77aec45c958a0465', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c954ff408e837b54a409200873f523b2e888230', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcdedd2960a7d69398ed0c27d1c6e4cb82bf9854', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bafae5a93a9f8066524e206f7a1afd462f01df79', '172.105.247.100', 1670782315, '__ci_last_regenerate|i:1670782315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cafb44db025488e23f7ede11a8bfbc5abfe4e5e', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782315;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9bd0f286b806220428e5b2aed15829dcd580d4', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43999cb16d87d3e476b9a86888dbbb064510e66', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0c27b8f2e476430621051b813888bd12aa49ca', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230056e85b1bfac184531178b1927d56ee2d274e', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c95e6cebf432b0fc6fd4dd29ad334f35f37e9d16', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635e9d231725e8ed8d1324c4f302c0cb38b17d5e', '172.105.247.100', 1670782316, '__ci_last_regenerate|i:1670782316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef017aba2bb2434d16f1795a0e3a077c93fe794', '172.105.247.100', 1670782317, '__ci_last_regenerate|i:1670782316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d95514527b2361fff2f909c29b5b3045e5d7cc', '172.105.247.100', 1670782317, '__ci_last_regenerate|i:1670782317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f947089ea8e2cef3397e2b9e9d641ad4e92b0896', '31.222.203.2', 1670783591, '__ci_last_regenerate|i:1670783591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e60351cb9abf521e90d98acc960bb08722e1b9', '31.222.203.2', 1670783591, '__ci_last_regenerate|i:1670783591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f0f9dcc371ac34692d47b880953236049ecaff', '31.222.203.2', 1670783591, '__ci_last_regenerate|i:1670783591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90839ebde5ef20b0ad87afe58fbea9672eadcbe1', '31.222.203.2', 1670783591, '__ci_last_regenerate|i:1670783591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfe626fd256f6e637207bce850a00309d9ef40c', '31.222.203.2', 1670783591, '__ci_last_regenerate|i:1670783591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f8607cfffd28d690b59f4d92058187ea24af4c', '31.222.203.2', 1670783591, '__ci_last_regenerate|i:1670783591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4eb3664822b1d21303a1033b5dae31bed13efd7', '31.222.203.2', 1670785413, '__ci_last_regenerate|i:1670785413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d16bf12466378b93b59ed683406a24c05b45a1', '31.222.203.2', 1670785413, '__ci_last_regenerate|i:1670785413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d689ce7d5f6302f9ae8fe04d2096ccd27d1dd5', '31.222.203.2', 1670785413, '__ci_last_regenerate|i:1670785413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00779b6711306ec54af6ab0c3deb441e568698ab', '31.222.203.2', 1670785413, '__ci_last_regenerate|i:1670785413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054200b5741c92cfe430e68ffd6c17317d9c1d20', '31.222.203.2', 1670785413, '__ci_last_regenerate|i:1670785413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8c9fb8e097a3527f6c16a474b9aa9c86b6ab7b', '31.222.203.2', 1670785413, '__ci_last_regenerate|i:1670785413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82d0d5f326e2ffdc6cf06e1116bf002f5f79d6c', '31.222.203.2', 1670787206, '__ci_last_regenerate|i:1670787206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7efa2729411a4fd2b17560b65b599f3e54ad2dd7', '31.222.203.2', 1670787206, '__ci_last_regenerate|i:1670787206;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea62c293eb5885d4817a6cc16d6af5c8031dcc79', '31.222.203.2', 1670787206, '__ci_last_regenerate|i:1670787206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0595cafaea7c156d19f898bb5d76edd6908e81e', '31.222.203.2', 1670787207, '__ci_last_regenerate|i:1670787207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b2a7825f73e8a677af0f8e295c0d0da411f74a', '31.222.203.2', 1670787207, '__ci_last_regenerate|i:1670787207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f988d7654393eaa52ada7c7a0f8523c33832002', '31.222.203.2', 1670787207, '__ci_last_regenerate|i:1670787207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1604461bb35bc8499cc868dc98e26de710e529', '172.105.247.100', 1670787700, '__ci_last_regenerate|i:1670787700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56826e14bf01b202cfb110569a516e9e89e0a11', '172.105.247.100', 1670787700, '__ci_last_regenerate|i:1670787700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbea70e50ce0709c63fa61653078843802f2cea', '172.105.247.100', 1670787701, '__ci_last_regenerate|i:1670787701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da1fdf284314ac288d2fe795b18727b7667c7ace', '172.105.247.100', 1670787701, '__ci_last_regenerate|i:1670787701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd63cd74ecb120a164018be5016a89af0dae903e', '172.105.247.100', 1670787701, '__ci_last_regenerate|i:1670787701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79870ffacd1a2bb8c7c8cf719e826db37062a47', '172.105.247.100', 1670787701, '__ci_last_regenerate|i:1670787701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eaddaa5a3106c70ec645bda413077a7e57db3f1', '172.105.247.100', 1670787701, '__ci_last_regenerate|i:1670787701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6e95ff4e0d30db9ac66de65c8bda44a96476ae0', '172.105.247.100', 1670787701, '__ci_last_regenerate|i:1670787701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4de88b88b9975a63c4c4b0219c550b139c4fcc9', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068e511e59e5402e86a8ef7256ed7f4506f676df', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643d31c7eabd92af715a9f014604a4a4f9541e03', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2adf14f49ef48468e890062dcff7597d531ec341', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27570b578d3dce8dc549010fa503c88d67be66da', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4a7757b2e7703210c7c0925c84515b6df8e9bb', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2ad2e7361ed7efebecfcf522dcb75750f997c8', '172.105.247.100', 1670787702, '__ci_last_regenerate|i:1670787702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71ed35fc501b120e81bebe1186a3cd38510bbc0', '172.105.247.100', 1670787703, '__ci_last_regenerate|i:1670787702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87cf892789335bfccf584460aaa65e7ed227a76', '172.105.247.100', 1670787703, '__ci_last_regenerate|i:1670787703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7dcdbb2b3ea14c79b5cfb2ffeb8d968a43f902', '172.105.247.100', 1670787703, '__ci_last_regenerate|i:1670787703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b5a383a6c64bedf97773f23ff3ec7299710df8', '172.105.247.100', 1670787703, '__ci_last_regenerate|i:1670787703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2948105ece4a360762495567e5d0c83478a490f5', '172.105.247.100', 1670787703, '__ci_last_regenerate|i:1670787703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18dab0c0834aa301e7d722f90651e45fd18c4b9', '172.105.247.100', 1670787703, '__ci_last_regenerate|i:1670787703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f50645fee1b9cb48c1af47d46b6b144d96e194', '172.105.247.100', 1670787704, '__ci_last_regenerate|i:1670787703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09ae3bdeb2bbe32193b38b2725a931bce6cd160', '172.105.247.100', 1670787704, '__ci_last_regenerate|i:1670787704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719f31490e8e57475d06c332f6b6e9f0f64236bd', '172.105.247.100', 1670787704, '__ci_last_regenerate|i:1670787704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd0ec3633f5362d5215d02b6c926c9ced20a19b', '31.222.203.2', 1670788923, '__ci_last_regenerate|i:1670788923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff31b6877c0fe2684b2d2ee933d6926899299ac7', '31.222.203.2', 1670788925, '__ci_last_regenerate|i:1670788925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f5e8fdbde18c230df87303286e06be49ac1d69', '31.222.203.2', 1670788925, '__ci_last_regenerate|i:1670788925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7257105ca85bc9222f1e29195502d2384650b1e', '31.222.203.2', 1670788925, '__ci_last_regenerate|i:1670788925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c2516632fe67e5da309cfc06f6949810ff0cea', '31.222.203.2', 1670788925, '__ci_last_regenerate|i:1670788925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81874749152a7e820c7a86109ff7d8212290551b', '31.222.203.2', 1670788925, '__ci_last_regenerate|i:1670788925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde73303cb806179758dcaa011606e0d66dec937', '167.94.138.46', 1670790539, '__ci_last_regenerate|i:1670790539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a8ffd453d6d6af216e83c51fa1f522157054d6', '167.94.138.46', 1670790539, '__ci_last_regenerate|i:1670790539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b6b9a660917876eaeae39f511a390fadc5dc49d', '167.94.138.46', 1670790539, '__ci_last_regenerate|i:1670790539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8fe2e700b99524223b5c2a4c91577b6e2512953', '167.94.138.46', 1670790539, '__ci_last_regenerate|i:1670790539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c5c42f2b6591d1654b2cb8108eb4c95a759109', '167.94.138.46', 1670790540, '__ci_last_regenerate|i:1670790540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015053c816210d06c39ca2614f9b003b041805a0', '167.94.138.46', 1670790540, '__ci_last_regenerate|i:1670790540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe9655d71c7ca73c0e08a487000e2c15cc4f4fc', '31.222.203.2', 1670790721, '__ci_last_regenerate|i:1670790721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('890dea39d0c4c780f838323e287164e2b7cb029e', '31.222.203.2', 1670790721, '__ci_last_regenerate|i:1670790721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2293ec7ba3db15b6196af4d510ffa4ff7589f5c', '31.222.203.2', 1670790721, '__ci_last_regenerate|i:1670790721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e749086ac898ee4ffa740fa59d1cbe9b02822b95', '31.222.203.2', 1670790722, '__ci_last_regenerate|i:1670790722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983acec0bb8811e61848c95a51acd6079264ccd7', '31.222.203.2', 1670790722, '__ci_last_regenerate|i:1670790722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7512aa8a933bb00df51c322469c2f2965db642', '31.222.203.2', 1670790722, '__ci_last_regenerate|i:1670790722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3da66768efe0de321fb7e928e183828fce28127', '31.222.203.2', 1670792521, '__ci_last_regenerate|i:1670792521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a5b58279db62678ac328af17832b34480f4d3fb', '31.222.203.2', 1670792521, '__ci_last_regenerate|i:1670792521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9bc2514fa03251d871d044b14c05fc59020e25', '31.222.203.2', 1670792521, '__ci_last_regenerate|i:1670792521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c5e96c0e9447655f2b41434aefb07a47e03ca6', '31.222.203.2', 1670792522, '__ci_last_regenerate|i:1670792522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22afa4b0217d69053d4c914af045d97b4725bdf3', '31.222.203.2', 1670792522, '__ci_last_regenerate|i:1670792522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e852a6cd616510dd8bfecf63b3c3da37da719931', '31.222.203.2', 1670792522, '__ci_last_regenerate|i:1670792522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235b0eb92ff11cf7c099ee0e2ff5e7654a4b1dd4', '172.105.247.100', 1670793096, '__ci_last_regenerate|i:1670793096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325474594b7ec71c3e2933ee9d8299c09afed1cc', '172.105.247.100', 1670793096, '__ci_last_regenerate|i:1670793096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e871ca4bfb971a313c559da6f1f0b5bc79489675', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f6e19a128795303cdca288a8c70a6cf2313133', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6a31ba157cad0bff6ea1ddea0ec0afd676e42c', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b32b7c225126ebd6f24e5a8a9edcc01562780b', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa794f265885d72308f068cddd83f87947effd0', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6029d19fe6540efec3728912586fb6ddc02935c', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c08655dd9cfc54da46fc03fb2e4c5c7b8cbc735', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1100ee366d57c8e33cf491ddc28ef9aaabcd43', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff09a99844a1a9ee916dbc0fd4b11c829537d89', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40b5eba25c68f4922b1d38a34b46423a164763aa', '172.105.247.100', 1670793097, '__ci_last_regenerate|i:1670793097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a18bdb200532719086887ab8459a7fba0a8b525', '172.105.247.100', 1670793098, '__ci_last_regenerate|i:1670793098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb7c7466a7488328b3cf2b6794a0339ead8ac38', '172.105.247.100', 1670793098, '__ci_last_regenerate|i:1670793098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b5aa7f4ba477caabf5b0dcd2b2138f984c1d67', '172.105.247.100', 1670793098, '__ci_last_regenerate|i:1670793098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f38c79c5ce636a9266a6ebba4d2959b8341e0ec', '172.105.247.100', 1670793098, '__ci_last_regenerate|i:1670793098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca86620c1bfedbbd5467a1e44e2c70620b45078', '172.105.247.100', 1670793098, '__ci_last_regenerate|i:1670793098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1500f067a374c01b7ae0cf10034de357046e77f', '172.105.247.100', 1670793098, '__ci_last_regenerate|i:1670793098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b0b14ebd6ff4b0239c60525051789f7716b335e', '172.105.247.100', 1670793099, '__ci_last_regenerate|i:1670793098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260cd4073717c1e45e526f8c685abf7666729c6a', '172.105.247.100', 1670793099, '__ci_last_regenerate|i:1670793099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807b5d3438e99fd22531aead36fbceb8969e7e44', '172.105.247.100', 1670793099, '__ci_last_regenerate|i:1670793099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8be727f824bbec65bb6954c42ea27a9ca28697e', '172.105.247.100', 1670793099, '__ci_last_regenerate|i:1670793099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af7d56eb180805172e3b6208ec489d304447a326', '172.105.247.100', 1670793099, '__ci_last_regenerate|i:1670793099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb497d5b1bd4d57a45f39e06c3b621ec9190b12', '172.105.247.100', 1670793099, '__ci_last_regenerate|i:1670793099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5414f6942729d0ec30ca2ea786daf947a7b6683', '31.222.203.2', 1670794320, '__ci_last_regenerate|i:1670794320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ad2a919982c338cc54c32437937c716e3a1963', '31.222.203.2', 1670794322, '__ci_last_regenerate|i:1670794322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5642347f7daba02b2cf37c20b3a02f0f40eb6cc7', '31.222.203.2', 1670794322, '__ci_last_regenerate|i:1670794322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d7fca76cfacc977438f1d195fe2780b55a4b0b', '31.222.203.2', 1670794322, '__ci_last_regenerate|i:1670794322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d488fba6d47b43210da7d1df464baee96aed691c', '31.222.203.2', 1670794322, '__ci_last_regenerate|i:1670794322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0d70001c492bbe40f849abbe6d1176777dc23b', '31.222.203.2', 1670794322, '__ci_last_regenerate|i:1670794322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b61c28a229e7dc0d934bd9ade406b4a71a5a00', '198.235.24.15', 1670794718, '__ci_last_regenerate|i:1670794718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9530eab1eebd377f1ba521f23ec9aad8479f1046', '198.235.24.15', 1670794719, '__ci_last_regenerate|i:1670794719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf129fb33519237e9e2315e1bd31ebd5b60fb193', '198.235.24.15', 1670794719, '__ci_last_regenerate|i:1670794719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124439babf76d95e1126f02b7b425468ca270660', '31.222.203.2', 1670796127, '__ci_last_regenerate|i:1670796127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d275f00445452219c86d102ac8cc1dd2bcdaccd8', '31.222.203.2', 1670796127, '__ci_last_regenerate|i:1670796127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc0a8441c6cb4564d3f264305386b87952e52422', '31.222.203.2', 1670796127, '__ci_last_regenerate|i:1670796127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de28fb2a5926dc5aa3c15ef3803bc22cde7b11c', '31.222.203.2', 1670796128, '__ci_last_regenerate|i:1670796128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89bad76306aed3f9220d6cedd7b3ab34621f8e11', '31.222.203.2', 1670796128, '__ci_last_regenerate|i:1670796128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1ad34b5743555a7f3cbed388b92b95d3ec78ea', '31.222.203.2', 1670796128, '__ci_last_regenerate|i:1670796128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0db5917d9c882c2fac641d3a40bf5cb1b226127', '31.222.203.2', 1670797920, '__ci_last_regenerate|i:1670797920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700ba30639d528ac3a685c88e087e9aa34bc4dfb', '31.222.203.2', 1670797920, '__ci_last_regenerate|i:1670797920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a331ff3a767a2361a144d6dfa5df23861d82438b', '31.222.203.2', 1670797920, '__ci_last_regenerate|i:1670797920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c159bb68cd2c9a7ebe5fd80f3a81c4439a6b15a3', '31.222.203.2', 1670797921, '__ci_last_regenerate|i:1670797921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0024a49f2d4c50970e61080428cc91a4f6ff3d7a', '31.222.203.2', 1670797921, '__ci_last_regenerate|i:1670797921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1753b59c7c48fe3a4635fee641a5420f45ad09b2', '31.222.203.2', 1670797921, '__ci_last_regenerate|i:1670797921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f66beddd282a3e3a5f06e5db5a513b3994a057', '172.105.247.100', 1670798495, '__ci_last_regenerate|i:1670798495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea9149643d2ad355e222c930a51a6cd287e3036', '172.105.247.100', 1670798495, '__ci_last_regenerate|i:1670798495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b26745511facbfb2cf1332c2a23bc4f271513a3a', '172.105.247.100', 1670798496, '__ci_last_regenerate|i:1670798496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76cbade8d078f007b249c99097a5d09d7f3ef723', '172.105.247.100', 1670798496, '__ci_last_regenerate|i:1670798496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e0185cbb1b84f807d69064e6b1e9adee9dd94f', '172.105.247.100', 1670798496, '__ci_last_regenerate|i:1670798496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1a19dc77a8859d91c131ad8ed4165f9d234a95', '172.105.247.100', 1670798497, '__ci_last_regenerate|i:1670798497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652613716bf596458eae23ed9ea5bf13521e3650', '172.105.247.100', 1670798497, '__ci_last_regenerate|i:1670798497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bf398dbed6168dea085ca64123c6c5fd6c4ddc', '172.105.247.100', 1670798497, '__ci_last_regenerate|i:1670798497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c075366e5df4584c30121687e6448ec5bed8ec', '172.105.247.100', 1670798497, '__ci_last_regenerate|i:1670798497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005e5dbc8948b0adbe6c1ba107ee3d9ef1b2f8f4', '172.105.247.100', 1670798497, '__ci_last_regenerate|i:1670798497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fefdd9076ef12f94a1d758409bc671503e2db86b', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36316b1ab600bd097f88d3762149dc890d8ad233', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf7d262c3cf7a39f5874f40e90acf61ec07bcbb', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b951141cd4eb06ddcbce89e15ca4ac84d0bebf77', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc1d3978fc055e785c39c377a6606f497de940c4', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba657f927b9986693446be758a37ba5257ff1d44', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('473a7bc89daaeee51571d60b16aa3d94617718bf', '172.105.247.100', 1670798498, '__ci_last_regenerate|i:1670798498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5abbbb0bd6eb08474998b799982847737b4d18b2', '172.105.247.100', 1670798499, '__ci_last_regenerate|i:1670798498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d7b09722089b23e0c56d568fabe0b8cbf5563c', '172.105.247.100', 1670798499, '__ci_last_regenerate|i:1670798499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f6e2a0e12479dd7e4468cdec2727f80b3b196a', '172.105.247.100', 1670798499, '__ci_last_regenerate|i:1670798499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('875b84aaf13a4bce67f95811e890c9846d6f6ea4', '172.105.247.100', 1670798499, '__ci_last_regenerate|i:1670798499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb777acbaf155a0f6e086050c834d891adff6f5', '172.105.247.100', 1670798499, '__ci_last_regenerate|i:1670798499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2879d095b41a515d836a1bef958b0235357419b0', '172.105.247.100', 1670798500, '__ci_last_regenerate|i:1670798500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6675f3f7c7310df8ce8d2516cc40dbc9b78342a9', '172.105.247.100', 1670798500, '__ci_last_regenerate|i:1670798500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4778453e3ef696d2077cf744409b911c23152d91', '31.222.203.2', 1670799715, '__ci_last_regenerate|i:1670799715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cd221dfce5f1546c0bf0a5c6643e53a268c24f', '31.222.203.2', 1670799718, '__ci_last_regenerate|i:1670799718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75edb0de556a61e933def8ead645efc4577406cf', '31.222.203.2', 1670799718, '__ci_last_regenerate|i:1670799718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec0e07e8db5f6e769694042f2ea7a8412a5bff58', '31.222.203.2', 1670799718, '__ci_last_regenerate|i:1670799718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc1975baca66e9158a22eb2b053bcc15a4571dc', '31.222.203.2', 1670799718, '__ci_last_regenerate|i:1670799718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca34bca326316bb0fe91bf347b9e36f8fc02e722', '31.222.203.2', 1670799718, '__ci_last_regenerate|i:1670799718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d78c630d9deeef7ead0d44f99646cf2882cce71', '31.222.203.2', 1670801514, '__ci_last_regenerate|i:1670801514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9649452814d27876d67ee05234e85e99dc344535', '31.222.203.2', 1670801517, '__ci_last_regenerate|i:1670801516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dead7702eb09898329594ba4bd07146e7130e341', '31.222.203.2', 1670801517, '__ci_last_regenerate|i:1670801517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf40a169d384e2c1c29b37306e18dfffe4e8e4fe', '31.222.203.2', 1670801517, '__ci_last_regenerate|i:1670801517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('127794b73330667464bbf4625ca3aeeb3c95f355', '31.222.203.2', 1670801517, '__ci_last_regenerate|i:1670801517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af7c5c0c856ed46ed374a8cfae1298671e49ab7d', '31.222.203.2', 1670801517, '__ci_last_regenerate|i:1670801517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f606592d034a23a8a712cfb8ab27cc8161781cf4', '31.222.203.2', 1670803326, '__ci_last_regenerate|i:1670803326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ffe2550ba8a8cd9c423bda8b09c507942f81626', '31.222.203.2', 1670803326, '__ci_last_regenerate|i:1670803326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1665806c61bf87520067866da61389d181df1eb', '31.222.203.2', 1670803327, '__ci_last_regenerate|i:1670803327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb2c5843d3ee46a32c717e4a7f30d84e6d6d315', '31.222.203.2', 1670803328, '__ci_last_regenerate|i:1670803328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af5664f321830ca09406224414cb1c09ff3ab45', '31.222.203.2', 1670803328, '__ci_last_regenerate|i:1670803328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734f63d193c46bf00bddd8e33706285d6cdd3957', '31.222.203.2', 1670803328, '__ci_last_regenerate|i:1670803328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3b58edfe8be76c0671330695321bf4f372ec66', '172.105.247.100', 1670803903, '__ci_last_regenerate|i:1670803903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4615ec90fabeac1008f2aef234e91b0ac4adcfc', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3d907a5540ff51e0809206ccd61363c2c7402f', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50cbddf9603d94711682c03ffdfca969c1ccba5', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbba125e517b59d3913dc39ff8a57fe3fe7caa70', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cc287d2a95a8f623ed46db6ab56db690e27181', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b287ad555ce1b634d9dab3bb233dab2a42aec46', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c227ae2386d3ac9c0e3100b545f8dececc0588', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32bc4186bedb9fe718f81bd3a2929c9054ab683', '172.105.247.100', 1670803904, '__ci_last_regenerate|i:1670803904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2380a392f631a4768c1c46a6cda3059ac559008f', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0774bdc92d62b7622d75ee12c6ad291eebce7ec6', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f5c00f618ae14b1d0402794d6cb18eec4a7ebb', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4f21e6de797c47fd620112b94cbcdf8ac9991b', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034c06465f3e6655d9be6c6e24d2d9607a7a62a8', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e71d8c172f71999cb46556549c3b755be6b33732', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353deacedf739082f66c7660e7226b954e0f1304', '172.105.247.100', 1670803905, '__ci_last_regenerate|i:1670803905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17196f7ae6610e6d3c26a4f9ec664465c8449edc', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812f0d5c381b27ebc5b970aa546086ab7a35ef56', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1ee0f587c0094b6a3d44d8dca31f0d186e58a7', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7916073d3aa02e5e6c28b70e6b2fc079a88e4d88', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79b1591cba7e2331070e3e599fe8c33210a3281', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bceb912689737779bf913dd3e4c944f3196db097', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c9a92e7ab2e9991bc45f1d3152df80547b4a76c', '172.105.247.100', 1670803906, '__ci_last_regenerate|i:1670803906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ba5ef1ffcd8f3adbdcbc3c366896531bf8452a', '172.105.247.100', 1670803907, '__ci_last_regenerate|i:1670803907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a83306d8497ad3154a59b3deb1dfc4492c832c1', '31.222.203.2', 1670805122, '__ci_last_regenerate|i:1670805122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ee04dfdbca284ec9fdb4f1b35458272f96cb34', '31.222.203.2', 1670805122, '__ci_last_regenerate|i:1670805122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397986d8a14d92dde1c183f562a5e6a4d90ca9a5', '31.222.203.2', 1670805122, '__ci_last_regenerate|i:1670805122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd3072cd34c1bf8101af939223cc451c650fa52', '31.222.203.2', 1670805122, '__ci_last_regenerate|i:1670805122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6e3d2fd978665ad152cc922ba8f063a9fb35b5', '31.222.203.2', 1670805122, '__ci_last_regenerate|i:1670805122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8548eb5be3cecbeadf1cadab1ae73b1b7cd9f3c2', '31.222.203.2', 1670805122, '__ci_last_regenerate|i:1670805122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c93fbd5d4b4e06a8633dc2c57bea3f76f1f6b3', '31.222.203.2', 1670806920, '__ci_last_regenerate|i:1670806920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982de632431c8e836ff28d3ff7ff82a9d11d9200', '31.222.203.2', 1670806921, '__ci_last_regenerate|i:1670806921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20eac5ccf3d2b95bb47e9362037cbaa91f17c3fb', '31.222.203.2', 1670806921, '__ci_last_regenerate|i:1670806921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86ead1e57bbfcdac1acceeca57b95905930b8428', '31.222.203.2', 1670806921, '__ci_last_regenerate|i:1670806921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d1450b363b669393d4405c54fddabcce99427f', '31.222.203.2', 1670806921, '__ci_last_regenerate|i:1670806921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70ab29e6734d7599fc3a581e2cd4965bc78d0f2', '31.222.203.2', 1670806921, '__ci_last_regenerate|i:1670806921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9c624b3f5426bc8f15031671d7bf49cc208a5d', '31.222.203.2', 1670808725, '__ci_last_regenerate|i:1670808725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3645877b5e78748cdde92c87ebfccac84637db96', '31.222.203.2', 1670808725, '__ci_last_regenerate|i:1670808725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f35a82eafd75fdcba15c9068f6ce23ef42a96ac', '31.222.203.2', 1670808725, '__ci_last_regenerate|i:1670808725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cdc7ae0c1736ae4648248d3b12ed6fb83cba5b', '31.222.203.2', 1670808725, '__ci_last_regenerate|i:1670808725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201bfd0755b9bab6f6d3ecaa9dd0a2f58a18dc48', '31.222.203.2', 1670808725, '__ci_last_regenerate|i:1670808725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('298c3dc217e5aa19a4b9aafb46208ec666cd26d7', '31.222.203.2', 1670808725, '__ci_last_regenerate|i:1670808725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c26944bbaa8e1c328f706d0fde0cad4e59dd39', '172.105.247.100', 1670809302, '__ci_last_regenerate|i:1670809302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a02d9b0f0a746acb037430b90ef5886333042c', '172.105.247.100', 1670809302, '__ci_last_regenerate|i:1670809302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59101882c6f8ab6ba13b0c82cdbcf47a4f5077eb', '172.105.247.100', 1670809302, '__ci_last_regenerate|i:1670809302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b77bc16c3964cf6a86e5e4b9c36baec4ab69c2', '172.105.247.100', 1670809303, '__ci_last_regenerate|i:1670809303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e35350bb6a2d379113669327de0fb4651343e3', '172.105.247.100', 1670809303, '__ci_last_regenerate|i:1670809303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ed504678dbb5dc8be843d872a8a8168db8809d', '172.105.247.100', 1670809303, '__ci_last_regenerate|i:1670809303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28336fbcd277cc73ef56d5f5683b39e4f15523e9', '172.105.247.100', 1670809303, '__ci_last_regenerate|i:1670809303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66fbf1e2d55ac9f5a23cd0ae1f2d6d5baa0d03f2', '172.105.247.100', 1670809303, '__ci_last_regenerate|i:1670809303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3e0b1405a1ad0f86f162acad208771f33d0ca94', '172.105.247.100', 1670809303, '__ci_last_regenerate|i:1670809303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d943e513080b97e92cfedde81b051b656f97ca', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5295fca10487560a3e75e6931d2e70e8c17a2b', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74bcb51f45aeeffae96e81628ad70aed72d7df38', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d729b422ba052dc340ab68d6757120a753aaf88', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c5c5b66314ea67d724d05fc04368978cac8308', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b388c7ffdadcc9c915c49a1bc0db32b71ef93c67', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b59cc73a4dae873924ac8e964d619922a4c2c0', '172.105.247.100', 1670809304, '__ci_last_regenerate|i:1670809304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7878f44b910309875b8e7cc2d9782eefea71038', '172.105.247.100', 1670809305, '__ci_last_regenerate|i:1670809305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd85a374b0e6f3238496ef33514a214bd321b1fb', '172.105.247.100', 1670809305, '__ci_last_regenerate|i:1670809305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed482511d74483f80142c43ef0336a9db3127c72', '172.105.247.100', 1670809305, '__ci_last_regenerate|i:1670809305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be35a090c7acf0261fbe29c4161a1df42ca1537', '172.105.247.100', 1670809305, '__ci_last_regenerate|i:1670809305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b04fa25ede4bc53b65b2905566923c61851afd7', '172.105.247.100', 1670809305, '__ci_last_regenerate|i:1670809305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5667769a3c6428fd0fe79b808ff3ba1f347956', '172.105.247.100', 1670809305, '__ci_last_regenerate|i:1670809305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ed7ecad37107a22c80c551d22fbfbeb09d2bf9', '172.105.247.100', 1670809306, '__ci_last_regenerate|i:1670809306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7350fdbb3b799d801eb35185c0f846a588ec280', '172.105.247.100', 1670809306, '__ci_last_regenerate|i:1670809306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54073ef0839ce20ff9c313a1e27b9400a412a4dd', '31.222.203.2', 1670810530, '__ci_last_regenerate|i:1670810530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f36173c6054051612abbe91b60714771fccabfb', '31.222.203.2', 1670810530, '__ci_last_regenerate|i:1670810530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf33d2cba87afef1c9bbce747f342828133eaed5', '31.222.203.2', 1670810530, '__ci_last_regenerate|i:1670810530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38bc38736a35610b67c9b09631fcc7e1da099d08', '31.222.203.2', 1670810530, '__ci_last_regenerate|i:1670810530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc619bea60ea161e489354823dd0234b66f4a90', '31.222.203.2', 1670810530, '__ci_last_regenerate|i:1670810530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e021f465673dc46830a6aa784ec0bfeb0cd2fa', '31.222.203.2', 1670810530, '__ci_last_regenerate|i:1670810530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31663f54ce08b256825ee30e0eff9f3bdb34b694', '31.222.203.2', 1670812316, '__ci_last_regenerate|i:1670812316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603254c1d9e41bc2c4bf6988f34ba410612b925e', '31.222.203.2', 1670812316, '__ci_last_regenerate|i:1670812316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81bbc3ce6a1be4cd692db7461210bfa70c73bbb3', '31.222.203.2', 1670812316, '__ci_last_regenerate|i:1670812316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60edb675a9bf312cef2aa4517350df8957fa1eb7', '31.222.203.2', 1670812317, '__ci_last_regenerate|i:1670812317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08c11135fd287686e2f1463b265b84034e3c82f', '31.222.203.2', 1670812317, '__ci_last_regenerate|i:1670812317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bcb53e98f4ff808263bff45b03f2803fc5a0425', '31.222.203.2', 1670812317, '__ci_last_regenerate|i:1670812317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('436077bf76262e51f38d705c13593351349c7b0c', '31.222.203.2', 1670814124, '__ci_last_regenerate|i:1670814124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6394e0df2f370e797a8c8d00785f5d027fda78f', '31.222.203.2', 1670814124, '__ci_last_regenerate|i:1670814124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5840c315415031f312158079c1884b6330407b', '31.222.203.2', 1670814124, '__ci_last_regenerate|i:1670814124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd4cfca48fd463b604e9bf2b56f9d18515fb71c', '31.222.203.2', 1670814125, '__ci_last_regenerate|i:1670814125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2347f692ee92ee87d86ac986f1fc07e3ef564cfb', '31.222.203.2', 1670814125, '__ci_last_regenerate|i:1670814125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c157505dae19c5e35f6ead44aff494592fc825a', '31.222.203.2', 1670814125, '__ci_last_regenerate|i:1670814125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c86779739dad354845c3cecba156d46550fabf', '172.105.247.100', 1670814697, '__ci_last_regenerate|i:1670814697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a84d5a19f3ea507ae3371aba469bafe7aa8a461', '172.105.247.100', 1670814698, '__ci_last_regenerate|i:1670814698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90772151c5b264d97815625d10d3ce2126d10e8b', '172.105.247.100', 1670814698, '__ci_last_regenerate|i:1670814698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a5d7570153287d0d9363cdc09a8238917137dd', '172.105.247.100', 1670814698, '__ci_last_regenerate|i:1670814698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a65365d0bf21cc0a1c8218bf72d29141df66a91', '172.105.247.100', 1670814698, '__ci_last_regenerate|i:1670814698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8453e4e5f012048ba8dd6b7eff9f589cfcef5dc8', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe6ff7ca40d7f77e529de67e973496ce995f9f1', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399dec2652902739b7c2015731615c7bb670299f', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad40627e11be55dacb03f1e4666b92e643b641bd', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12cf5a66f8f72fcc4d949b7b6ba3589a054740be', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8444345449c8561dffad52d9953a56a8904e67bf', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20bee852473bd5c8fc478b85104b9a99538e5c96', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e070678673e581d4f851c70f27a72d76bcadcb', '172.105.247.100', 1670814699, '__ci_last_regenerate|i:1670814699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60169efd5b26ddc9b9ddaea06fb399e134c7f207', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3c3b804ac2265e9f35c83a002006f1be2afe27', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45fc67a4497f68f6fdb9e2feb0626ae662d5c940', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac232d25d61a8ef165c65629afbc8c2353268abc', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892dda9227b625eac486096598ca04e05ed8130f', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e2b88a9bf0a7e6e6ef50be92d62e0e9f8a2f9d', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d17ac134fd58c366b517d30e73aefe1365b8220', '172.105.247.100', 1670814700, '__ci_last_regenerate|i:1670814700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a834fcf926874bf3752cab91c01df44ad79cfd52', '172.105.247.100', 1670814701, '__ci_last_regenerate|i:1670814701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebb43ad60c3ca7227645838106d1866929f9d58', '172.105.247.100', 1670814701, '__ci_last_regenerate|i:1670814701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb6a34d1cda36609a7f7c503c8926794ab4c34ad', '172.105.247.100', 1670814701, '__ci_last_regenerate|i:1670814701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab71e3b2912acf4d93a2174ab726f1f3f3fb4df9', '172.105.247.100', 1670814702, '__ci_last_regenerate|i:1670814701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f137fbd4c3e16388e2b5d42757f64128cc0f66af', '31.222.203.2', 1670815922, '__ci_last_regenerate|i:1670815922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22dcbdfe9324630319821980671edc8864e0dcb1', '31.222.203.2', 1670815924, '__ci_last_regenerate|i:1670815924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be202969fc4daa375c6a2ebc89183b87e7f41a1a', '31.222.203.2', 1670815924, '__ci_last_regenerate|i:1670815924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c3de8848aad3e4fdaf74844922f31eada46723', '31.222.203.2', 1670815924, '__ci_last_regenerate|i:1670815924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4316dd3331b23cc93d8801ca2e724c1f8460d5', '31.222.203.2', 1670815924, '__ci_last_regenerate|i:1670815924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f8fc2d6ecab3d15bf153b4bf561ec70bfe6258', '31.222.203.2', 1670815924, '__ci_last_regenerate|i:1670815924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21ffa510bb2dae4e5b5ddfb4677f197e368206b', '31.222.203.2', 1670817724, '__ci_last_regenerate|i:1670817724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d86a947a7bc01207b137e78784f6cb99c36a85', '31.222.203.2', 1670817725, '__ci_last_regenerate|i:1670817725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc938c509ce78fc0f5e47dd58f40b929d7ee71c2', '31.222.203.2', 1670817725, '__ci_last_regenerate|i:1670817725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d054fd9d6dcc7aeeca6df7350e187d7247307742', '31.222.203.2', 1670817725, '__ci_last_regenerate|i:1670817725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec330f1f0ba7f0fbb2e9119ce24f319715413b5f', '31.222.203.2', 1670817725, '__ci_last_regenerate|i:1670817725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a58af409c4c20b08fc9495d701815fbb14e54a', '31.222.203.2', 1670817725, '__ci_last_regenerate|i:1670817725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31138eaa223c917e0701e44b44b1f43294ac5b5', '31.222.203.2', 1670819520, '__ci_last_regenerate|i:1670819520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f6b3c2bc9e2ca409964b16a881071f38c8e4c6', '31.222.203.2', 1670819522, '__ci_last_regenerate|i:1670819522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41e7ff525fee7390fbaad24280d1808b48b3cfdf', '31.222.203.2', 1670819522, '__ci_last_regenerate|i:1670819522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b83d8ab3b076e020079975ea0352528b50017f9', '31.222.203.2', 1670819522, '__ci_last_regenerate|i:1670819522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca87d582042554d90b13ceb28b9ca12143026a8f', '31.222.203.2', 1670819522, '__ci_last_regenerate|i:1670819522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce8197d3b069ed6c8abec79880eef8d5e5c0021', '31.222.203.2', 1670819522, '__ci_last_regenerate|i:1670819522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60884252005ee6507a9881d8225422f09fd2ad76', '116.204.230.25', 1670819804, '__ci_last_regenerate|i:1670819793;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670760794\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd9841a93f2f96729137098ab61b9f55eae2f1d', '172.105.247.100', 1670820091, '__ci_last_regenerate|i:1670820091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fafa94f0861c850b83c5bbbeb4ddb39b95a20c4c', '172.105.247.100', 1670820092, '__ci_last_regenerate|i:1670820092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66f4f5607aa2bc54d944366bfe4ae876d99230c', '172.105.247.100', 1670820092, '__ci_last_regenerate|i:1670820092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be960ab5707c90c7c4b4ea40015f51d8137241c2', '172.105.247.100', 1670820092, '__ci_last_regenerate|i:1670820092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11593c36f03a620c03c19837310113fd1064df3b', '172.105.247.100', 1670820093, '__ci_last_regenerate|i:1670820093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34cccecd59f8ebf4c7bdbac5d0ad242c9598dd84', '172.105.247.100', 1670820093, '__ci_last_regenerate|i:1670820093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b45b1d24573d21f251579e3df78eb83c92f88048', '172.105.247.100', 1670820093, '__ci_last_regenerate|i:1670820093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1d501a5ff6376d41b740d42888289418831a6a', '172.105.247.100', 1670820093, '__ci_last_regenerate|i:1670820093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15cb5612e7a57e30e3dd65a9a795f85a8b06d566', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35671c24e16188f7f3eba181cddab71290197c8a', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f026101037666106926896d04339163948022438', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13aec8720b7ae3338771a14f9497dae48d2b53df', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20bce2e11fd8ead129f540cbbc47084a72a8d7ad', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9db26650e18f773dfee9f95059df05f49ab5688', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70dd11992dfb522a14d59470964d53f78ab2e19', '172.105.247.100', 1670820094, '__ci_last_regenerate|i:1670820094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487ab079d31cd82d5e3f62ff70a6df1bb920ad99', '172.105.247.100', 1670820095, '__ci_last_regenerate|i:1670820094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90382cb634abc7f4ba876a9ce5bcb25a99709d09', '172.105.247.100', 1670820095, '__ci_last_regenerate|i:1670820095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae811cf0390ac85d2e328ada1b530b6539efd9ef', '172.105.247.100', 1670820095, '__ci_last_regenerate|i:1670820095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d6839b8680607981b2c2c9e725f780b41f9c27', '172.105.247.100', 1670820095, '__ci_last_regenerate|i:1670820095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bf41eed5991528c73af7490d9496d7fe90573d4', '172.105.247.100', 1670820096, '__ci_last_regenerate|i:1670820095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6233f4c7705593882cab4466dd0377c19c05d4', '172.105.247.100', 1670820096, '__ci_last_regenerate|i:1670820096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97cf080ce7ae52dadca466930efd398dbeb91a3c', '172.105.247.100', 1670820096, '__ci_last_regenerate|i:1670820096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd3ca4bc2338b855f547774c3a87bde22e645b6', '172.105.247.100', 1670820096, '__ci_last_regenerate|i:1670820096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f409526ffa7169081f9bc0209c44bb91d42b7438', '172.105.247.100', 1670820097, '__ci_last_regenerate|i:1670820097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962821a882cd6c4a53a405887411d1cfd26eeffe', '31.222.203.2', 1670821328, '__ci_last_regenerate|i:1670821328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7347e399efa5c54762aeda421671e64e722f5d6e', '31.222.203.2', 1670821328, '__ci_last_regenerate|i:1670821328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d9cf8c64890b46bb3fb01d0798c1a822097d3cc', '31.222.203.2', 1670821328, '__ci_last_regenerate|i:1670821328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('022bed57ced0b66ae090cd0644392dd9f1f4d534', '31.222.203.2', 1670821328, '__ci_last_regenerate|i:1670821328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acef4f2096d93fe0264c3b516c45658fcf503c93', '31.222.203.2', 1670821328, '__ci_last_regenerate|i:1670821328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1150d679db8c43008f6c36ebb1dad91fd3819488', '31.222.203.2', 1670821328, '__ci_last_regenerate|i:1670821328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f33e4e6bc0dd9c90f4a760596cb5e8a9cb2b58', '31.222.203.2', 1670823134, '__ci_last_regenerate|i:1670823134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40239e9f602db1888b02002a8302804f7f284fb', '31.222.203.2', 1670823135, '__ci_last_regenerate|i:1670823135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a90d32336a6ee3d30dd2f062a3653ec25a45db', '31.222.203.2', 1670823135, '__ci_last_regenerate|i:1670823135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71f0e098fd7f33ec056b935a6d78a9e2ae1b9f7d', '31.222.203.2', 1670823135, '__ci_last_regenerate|i:1670823135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40443ae09f184d96d22ae3198e327954ec91145a', '31.222.203.2', 1670823135, '__ci_last_regenerate|i:1670823135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57e7f16734cec5082632c01766c9e77ed6eed618', '31.222.203.2', 1670823135, '__ci_last_regenerate|i:1670823135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc061055ce861bfa18f61019be745ef5446b4846', '37.111.218.240', 1670824020, '__ci_last_regenerate|i:1670824002;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670752388\";last_ip|s:13:\"37.111.219.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670824020;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c5f72eb6fdd6fddfd883feb86652a596d2ce81f', '31.222.203.2', 1670824921, '__ci_last_regenerate|i:1670824921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecca992ab6bca4118f57d010760cf845653449d1', '31.222.203.2', 1670824921, '__ci_last_regenerate|i:1670824921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23d4e1fab24fe24c76d39cbd6b0d478b2426ddf', '31.222.203.2', 1670824921, '__ci_last_regenerate|i:1670824921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3f74165608fa28a797e75bc60e0206ab4a015c', '31.222.203.2', 1670824921, '__ci_last_regenerate|i:1670824921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d3f73473fff254c8a41c205f29eaa6e8403abc', '31.222.203.2', 1670824921, '__ci_last_regenerate|i:1670824921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e179c575236534de3985f87adcfdb28705c48239', '31.222.203.2', 1670824921, '__ci_last_regenerate|i:1670824921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11d18d8da0ba46d974acb8db007896e0231591e', '172.105.247.100', 1670825497, '__ci_last_regenerate|i:1670825497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2619e4f17f32bba0811a9db12db15f572abd213b', '172.105.247.100', 1670825498, '__ci_last_regenerate|i:1670825498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343dbaade8eb050ff41d36db4d5863d59a57d964', '172.105.247.100', 1670825498, '__ci_last_regenerate|i:1670825498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b52f9a129aef3f86080b924f574370f655631e3', '172.105.247.100', 1670825498, '__ci_last_regenerate|i:1670825498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640112a37142f97708b14ccfe4bde6f02ae2104a', '172.105.247.100', 1670825498, '__ci_last_regenerate|i:1670825498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca442dae4bbaa21dcd1cc2595e2632f9bddc23f', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38764c8f37d36f777e8133f976e0e438ab630ee', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71f5ea1a82ec63299559dbdbf8ac5a990786eb62', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8414fe8b9db55f97f817896076db2ecc5de659f', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5393d9557dd91dc9bfedb0ecaeae9bd8520aab23', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c852dd8f1395e905b426339f57b977449e675ec', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dda1a660d9433549e853fed14f59ea164ec2e94', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db2bfc7bb9016386af54ca1d40b563b6cc688d5', '172.105.247.100', 1670825499, '__ci_last_regenerate|i:1670825499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b4b1b3c58d9f04feb7a31297991068dfc6cab4f', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8b62ef13b149973786bf45b6559ec82bca275c', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ed66fa20ed7b85f87217b0936a41ff050ef25d', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae645b9f04582b20072fbd89a502c204e5b4b3b', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9283bd2aec5f3374585c4093ce271c0932c1bd0d', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df015136856b37fb49a943657a7cc62c91d5332', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc8bc082e76f74e50017a15861fcb15c9b2c340', '172.105.247.100', 1670825500, '__ci_last_regenerate|i:1670825500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47dce44b09741525c0bfbc745f44abce7ff84483', '172.105.247.100', 1670825501, '__ci_last_regenerate|i:1670825501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c54da10e04e691a9893e178c1623bfa23e4a93a', '172.105.247.100', 1670825501, '__ci_last_regenerate|i:1670825501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ad4b828d02a4180eda7b1fe386601004ff3f80', '172.105.247.100', 1670825501, '__ci_last_regenerate|i:1670825501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('071b72c8fd185ebb73193661b1bba0908b9035d0', '172.105.247.100', 1670825502, '__ci_last_regenerate|i:1670825501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c501eabd42cebf844ff4ce26463e01125eaab2fb', '31.222.203.2', 1670826723, '__ci_last_regenerate|i:1670826723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a9271cea54aef4b7eb8ffc8aff7d89921567ce', '31.222.203.2', 1670826723, '__ci_last_regenerate|i:1670826723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec9a044582a512f02b2cf96a3ef60a16bb8cd88', '31.222.203.2', 1670826723, '__ci_last_regenerate|i:1670826723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('244f238e9b1199a8eebe4b0cad327f1550fee757', '31.222.203.2', 1670826724, '__ci_last_regenerate|i:1670826724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b985389d891e1074bae56e5aa32bed1c07d0aa64', '31.222.203.2', 1670826724, '__ci_last_regenerate|i:1670826724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c44605f2820f08dd2caebbfcb211e71527d8154', '31.222.203.2', 1670826724, '__ci_last_regenerate|i:1670826724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f278a9ac834e62392ccf631b7b4f3bdaaae9696a', '116.204.230.25', 1670829606, '__ci_last_regenerate|i:1670829606;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670819797\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48cf4212a71fab337e2966a74522ee4f72c0272', '31.222.203.2', 1670828523, '__ci_last_regenerate|i:1670828523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b8865f05cb41eb745338f3684909a8272e05d1', '31.222.203.2', 1670828523, '__ci_last_regenerate|i:1670828523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764d4026d290f5f6422150967a072da3d396f1c8', '31.222.203.2', 1670828523, '__ci_last_regenerate|i:1670828523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84f6e972ecfcf7e0c6cde439c52f41942f8c018', '31.222.203.2', 1670828523, '__ci_last_regenerate|i:1670828523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9094e3796094e6a117751854519b37637587b748', '31.222.203.2', 1670828523, '__ci_last_regenerate|i:1670828523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a09e425866f05c0e6529d58c473a70b0a8ff93', '31.222.203.2', 1670828523, '__ci_last_regenerate|i:1670828523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda9063ad88f538faaa17da230076643e26d2db7', '116.204.230.25', 1670829982, '__ci_last_regenerate|i:1670829982;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670819797\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"RqjUwhM8GFVZ4ODlfbdI\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c03b31fba5a2298f94a3433124a10ff3f4a92f9', '116.204.230.25', 1670829982, '__ci_last_regenerate|i:1670829982;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670819797\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"RqjUwhM8GFVZ4ODlfbdI\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f6880e75832d63d2cce57269382b378b0ce76a', '31.222.203.2', 1670830349, '__ci_last_regenerate|i:1670830349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3b79fd32c30b8816bb9878a7d3f5738361db51', '31.222.203.2', 1670830349, '__ci_last_regenerate|i:1670830349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccff06c02890116b906a6a39eab1c314157e338', '31.222.203.2', 1670830349, '__ci_last_regenerate|i:1670830349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4fdc36bbe6cbedb47ca7c1436228bffff61936a', '31.222.203.2', 1670830350, '__ci_last_regenerate|i:1670830350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57855ef5ed270d18aef338c0112a4bd20491e7d3', '31.222.203.2', 1670830350, '__ci_last_regenerate|i:1670830350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72c7a3435e9ebf9eff57c66d897b46baa38f63b', '31.222.203.2', 1670830350, '__ci_last_regenerate|i:1670830350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4927f6ea698c8136f38a77d6333257019af8814', '172.105.247.100', 1670830889, '__ci_last_regenerate|i:1670830889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89345b49dbd559518788222e1d5f3d429d6c9f0', '172.105.247.100', 1670830890, '__ci_last_regenerate|i:1670830890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f00254e09a45e264407b1b0851c978d17f8607', '172.105.247.100', 1670830890, '__ci_last_regenerate|i:1670830890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e63c1985d651a040051af99a7cadecb12a6c3c9', '172.105.247.100', 1670830890, '__ci_last_regenerate|i:1670830890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57dd0a7556a7d26386609f95fd3aef89b1d8f2e3', '172.105.247.100', 1670830890, '__ci_last_regenerate|i:1670830890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fc2f44f92b143832b97621f5f2ebbc51aac590', '172.105.247.100', 1670830890, '__ci_last_regenerate|i:1670830890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be5f5b475630ffaa8d36a1dff00c44aabaf3583', '172.105.247.100', 1670830890, '__ci_last_regenerate|i:1670830890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6252fd6914cbed97824f0579e5987834f55083', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a7b574209470cf57bca1f2bb903167c12ecfb60', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4447331d590217993765e7befc98aa24063a63e1', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae44f32fa7b81541f01c7c4437e935508041423e', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c3630ec11dc0a3299c9e4700f258aa5fa5203b', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd5f510f53e4bd741662d3a803514a53d11fa34', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1230e2acdbfa69cda22d21f5baf0e532f5b825ec', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aa74a11a1230045e59dc7ddec597a5f00da84b0', '172.105.247.100', 1670830891, '__ci_last_regenerate|i:1670830891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44729a9e8d0a25edbff417c5519a9d5136c6929', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a06154a280d70694ae79e3f3c2f90f44e625fe', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6521fadc0699a580b068b117afb93051e26877f', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530a307a788c8df4146ce4d4783f69600009f72c', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09e818c1744ba2c549d86443ab01add50bd2b73', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c1578cb2c435fc1db93fe60b1f30079ab6660c', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4fda04b7479f1b50e137296b469d9cd9a9190f1', '172.105.247.100', 1670830892, '__ci_last_regenerate|i:1670830892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75d6966f87a61c6e426cd5e574ea162298ef20e', '172.105.247.100', 1670830893, '__ci_last_regenerate|i:1670830893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09a90a948bb140e4935ba340f30c5cbcf978abe', '172.105.247.100', 1670830893, '__ci_last_regenerate|i:1670830893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51feab97b40c40f2d99a89f15cd1336603182215', '31.222.203.2', 1670832146, '__ci_last_regenerate|i:1670832146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15953e58721ff1f642e11a16b5c5f8bab586e24e', '31.222.203.2', 1670832146, '__ci_last_regenerate|i:1670832146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344f6d422ddabc59d843167928b3469c6b1fda52', '31.222.203.2', 1670832146, '__ci_last_regenerate|i:1670832146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a1b986da3ade4dee1b1f98d3cc90ea7914eefb', '31.222.203.2', 1670832146, '__ci_last_regenerate|i:1670832146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44e2fb03eb5999281eaa49f4451b3dd76ca019a1', '31.222.203.2', 1670832146, '__ci_last_regenerate|i:1670832146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7bf8529fb634d7e543290fc41ebe924f0e1dfb', '31.222.203.2', 1670832146, '__ci_last_regenerate|i:1670832146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a4f653c28def4daf35d2ace029ff6b9e9917fdf', '37.111.218.240', 1670832773, '__ci_last_regenerate|i:1670832773;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670824010\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670832768;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('defb7479fbc6ab6633de2e8f2346842c79885c91', '37.111.218.240', 1670837099, '__ci_last_regenerate|i:1670837099;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670824010\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670835705;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b0f41a72de8869a1ecdd30c48532c903c5c73c', '31.222.203.2', 1670835726, '__ci_last_regenerate|i:1670835726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c1bcd6a69941a6f70dcc5abb6d64b4cd6cd32d', '31.222.203.2', 1670833922, '__ci_last_regenerate|i:1670833922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37793066050b8b1496815a2f340db8c01ed444a1', '31.222.203.2', 1670833924, '__ci_last_regenerate|i:1670833924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42572adfe9551f47b83945ee0d6b0370e5ea7df', '31.222.203.2', 1670833924, '__ci_last_regenerate|i:1670833924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eedc4314643f9c4c2231a0866622cfb1c36b8ab', '31.222.203.2', 1670833924, '__ci_last_regenerate|i:1670833924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b54a03278da3e6ae70c5ba6c8c21ddb5de858b', '31.222.203.2', 1670833924, '__ci_last_regenerate|i:1670833924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4339c221c125ca82b4250fd51cbdeee115ddecc3', '31.222.203.2', 1670833924, '__ci_last_regenerate|i:1670833924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c86acd7e4279d4c49473ddac8ba478081bb5fbd', '37.111.218.240', 1670835702, '__ci_last_regenerate|i:1670835702;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670824010\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670835694;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba067aad54ce15f749fff0c2c1324f4fbe59450', '31.222.203.2', 1670835726, '__ci_last_regenerate|i:1670835726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc04f204a793e899af50a57bc7ec544f06e57508', '31.222.203.2', 1670835726, '__ci_last_regenerate|i:1670835726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc4b59bb9697db4c7c07915812bad510d863820', '31.222.203.2', 1670835726, '__ci_last_regenerate|i:1670835726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('506819a94f12d49c5d3535358203988e809f78d4', '31.222.203.2', 1670835726, '__ci_last_regenerate|i:1670835726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd17c5f9ec0a0db97771e986c0a94ab7a228fd18', '31.222.203.2', 1670835726, '__ci_last_regenerate|i:1670835726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e24131036d0500f65661f2bb7805aefe903995b8', '172.105.247.100', 1670836893, '__ci_last_regenerate|i:1670836893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88837faa62f95f5de18fa4ffe1c70efd62854812', '172.105.247.100', 1670836896, '__ci_last_regenerate|i:1670836896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1f65d12f274f9ded95c2f0aee158f875ab31d1', '172.105.247.100', 1670836896, '__ci_last_regenerate|i:1670836896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a7b9e98decbb2a3d3c41608752ace3d1843fa3', '172.105.247.100', 1670836896, '__ci_last_regenerate|i:1670836896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f2b06467be94eccee8f7ca81171898e92d9af6', '172.105.247.100', 1670836896, '__ci_last_regenerate|i:1670836896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fc4374bc0ed65524799c7d2ef229bc97109a19', '172.105.247.100', 1670836896, '__ci_last_regenerate|i:1670836896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ccbe1071cc75478b3ca1993d64811306980fec9', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc7d9cb63cd8c2175b4a4547ff977515570d031', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d80234bde1b86a562f2cee999dab40eb37f3f1e', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eeb443688482e898539718b1dcd372774ededfb', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345d1c4ac4b71872ccc4149c68cc1154c9a10f43', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13cc0caee89f0f6f0fa0f488de83500687c7a29f', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c556d85d7ee8a89e9d763e8aa6fbfb71104e430', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54785decc77957c1c39ed5fe59b02b3447860ac', '172.105.247.100', 1670836897, '__ci_last_regenerate|i:1670836897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae16a5d5bad40ae6d21536f372d2deb3a92b40d', '172.105.247.100', 1670836898, '__ci_last_regenerate|i:1670836898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b20f3ac6f2d2e2a19adbd1fc4765fe9b8eebe9', '172.105.247.100', 1670836898, '__ci_last_regenerate|i:1670836898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4aafdd594fc709e104e3afe916cc28a951bbff8', '172.105.247.100', 1670836898, '__ci_last_regenerate|i:1670836898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60af9acda27a60f61e3fc38e6ffe2a2aa73710ee', '172.105.247.100', 1670836898, '__ci_last_regenerate|i:1670836898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b9246c5cf79deb13273843308ff8901c33bd04', '172.105.247.100', 1670836898, '__ci_last_regenerate|i:1670836898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d94ec03d1b800b0b5f1847b46fc8aea15f3168', '172.105.247.100', 1670836898, '__ci_last_regenerate|i:1670836898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33697e3ab2b8258d060edcbe1d4bb06cb64647bc', '172.105.247.100', 1670836899, '__ci_last_regenerate|i:1670836899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16c13e19f86f8971a378bf9be9a3cd22e329357', '172.105.247.100', 1670836899, '__ci_last_regenerate|i:1670836899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed0b2a68be2859fa27961c33fe347d9746dac12', '172.105.247.100', 1670836899, '__ci_last_regenerate|i:1670836899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b4af08c22a01335575b467acdf0dea04a24cff', '172.105.247.100', 1670836899, '__ci_last_regenerate|i:1670836899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7082a74f3879c8615e12780a743effe662217a85', '37.111.218.240', 1670838015, '__ci_last_regenerate|i:1670838015;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670824010\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670837105;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fcca68af152f2f80310c57943096dee22ac17ea', '31.222.203.2', 1670837538, '__ci_last_regenerate|i:1670837538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333e311ee72b8426e97c12f2fb07e43d88ccfaba', '31.222.203.2', 1670837538, '__ci_last_regenerate|i:1670837538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288580a303838ac6344c2cdb55a49573415d85f7', '31.222.203.2', 1670837538, '__ci_last_regenerate|i:1670837538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3809ad45df7cbfc48d46ee69a46735208509582', '31.222.203.2', 1670837540, '__ci_last_regenerate|i:1670837540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac07d38a8de94aff6f4744dcf560f6b3f1cb286e', '31.222.203.2', 1670837540, '__ci_last_regenerate|i:1670837540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24086143fdb614c0c9d905128e73ff30a64cce9c', '31.222.203.2', 1670837540, '__ci_last_regenerate|i:1670837540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108d6e64d2cf17fab243bf8cef48c16674305904', '37.111.218.132', 1670844630, '__ci_last_regenerate|i:1670844630;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670824010\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670838033;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('578c4d2b451253ab9a7a994127f5a847b39aa831', '31.222.203.2', 1670839325, '__ci_last_regenerate|i:1670839325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200e40d9ebcf99bf8d782c2384d2f828b3e7b228', '31.222.203.2', 1670839325, '__ci_last_regenerate|i:1670839325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b6b4ae1d10e33a1ffdcf4580cffd8e46f4d073', '31.222.203.2', 1670839325, '__ci_last_regenerate|i:1670839325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7b7374dfebd8f878ab1d96dad09fe01686358d', '31.222.203.2', 1670839325, '__ci_last_regenerate|i:1670839325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe215fc065fc767f7b2aa3ce5dc14705985e879', '31.222.203.2', 1670839325, '__ci_last_regenerate|i:1670839325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad135b3d351be6973be9a2f8feeae7c4db4606c9', '31.222.203.2', 1670839325, '__ci_last_regenerate|i:1670839325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a798aa1a30a4e966144c452603506466cc0ca374', '31.222.203.2', 1670841125, '__ci_last_regenerate|i:1670841125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef169f393df850337bf9e98fb0534cdaf01660d', '31.222.203.2', 1670841127, '__ci_last_regenerate|i:1670841127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6981953e871ad4033aae9d5faf64b5c18ff0d226', '31.222.203.2', 1670841127, '__ci_last_regenerate|i:1670841127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f85f7b7396e49b3e0db0867f8e7151f830d68c0', '31.222.203.2', 1670841127, '__ci_last_regenerate|i:1670841127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d9efc1ca2c923e5ecd9b40a8d5a856238036cb', '31.222.203.2', 1670841127, '__ci_last_regenerate|i:1670841127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd9e144b1def4f3f85336156074ef78337d40c9d', '31.222.203.2', 1670841127, '__ci_last_regenerate|i:1670841127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff450d84444c7ac0fe8ed65dc33dcacf1f0f7b2d', '172.105.247.100', 1670841693, '__ci_last_regenerate|i:1670841693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ef0f3be6d1b5c3effcad03fe12131c309acba2', '172.105.247.100', 1670841694, '__ci_last_regenerate|i:1670841694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592491088c71ba2f8859351ce6364d1c9ba31642', '172.105.247.100', 1670841694, '__ci_last_regenerate|i:1670841694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12b373769a4e4f2efe4d1729bc306f634df212b', '172.105.247.100', 1670841694, '__ci_last_regenerate|i:1670841694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5655c94a72ecbf715cd4372095c7a9e9ecf0a7', '172.105.247.100', 1670841694, '__ci_last_regenerate|i:1670841694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42158ed12d35e43d2edb6e529ed822c2ae81aa6d', '172.105.247.100', 1670841695, '__ci_last_regenerate|i:1670841694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56192872ba0d6ad293ea4ba3362531e71ec173f2', '172.105.247.100', 1670841695, '__ci_last_regenerate|i:1670841695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5488df3b6f0f238eec2fae39f538bf2fea297f', '172.105.247.100', 1670841695, '__ci_last_regenerate|i:1670841695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97720ec552ca18a8eedf1e74cff61b408edee06', '172.105.247.100', 1670841695, '__ci_last_regenerate|i:1670841695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0d8bc33a9b9817cb32b841130b91861bd05e27', '172.105.247.100', 1670841695, '__ci_last_regenerate|i:1670841695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db2820b4ef32f6bf29edf4298f3c80a799b7c2e2', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f860895837ebc5fcc91fca237c3b7292c0bccdc', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c74f0cbe14580952169707d0bd507fcb5745150c', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145f53c5c284c18c10c74c58c5631072d7c98c5b', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4158fff55096aab4de75fd4593e31a90eb2087', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42f0917e648712f0916d37c1a798035a86255b4', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef689f286470bce74c51fd00bddc719325a17b9e', '172.105.247.100', 1670841696, '__ci_last_regenerate|i:1670841696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd63c54a6304c1df84753dde4526b330c4ecfc0', '172.105.247.100', 1670841697, '__ci_last_regenerate|i:1670841696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09b19878cc73737893f2dc0bd60674b55ef2285', '172.105.247.100', 1670841697, '__ci_last_regenerate|i:1670841697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1663c6959993ba2fd7ee769da31e330ce7ce7d3e', '172.105.247.100', 1670841697, '__ci_last_regenerate|i:1670841697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb64030c365e60d0b243cccf6d3997ca579c477', '172.105.247.100', 1670841697, '__ci_last_regenerate|i:1670841697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165c0c4a61f94153562e598263c00fac22c0fbef', '172.105.247.100', 1670841698, '__ci_last_regenerate|i:1670841698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c9d8ff8bb6b43af302bd4f3e6076dc1ee19e074', '172.105.247.100', 1670841698, '__ci_last_regenerate|i:1670841698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cd77c731d6fea3020fcdf78ae477d03b18211f', '172.105.247.100', 1670841698, '__ci_last_regenerate|i:1670841698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e92997d74f08a6b986607f0e5a84975ae158d784', '31.222.203.2', 1670842927, '__ci_last_regenerate|i:1670842927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4dedb0f4e939d1448b33bfa4354da598833099c', '31.222.203.2', 1670842927, '__ci_last_regenerate|i:1670842927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa081331231fbdb4d58a160b067ba89fe8b4aff', '31.222.203.2', 1670842927, '__ci_last_regenerate|i:1670842927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2286dbdfc3a8286af41633dc3981f6e99f209ba4', '31.222.203.2', 1670842927, '__ci_last_regenerate|i:1670842927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf98e850031da362cf58e61cf326a0619776146', '31.222.203.2', 1670842927, '__ci_last_regenerate|i:1670842927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0e389d09e902a3e868985a560238fa65d8b087', '31.222.203.2', 1670842927, '__ci_last_regenerate|i:1670842927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('351ab2d140c9c99b9df40bcbddc9d8e08733e544', '37.111.218.132', 1670845252, '__ci_last_regenerate|i:1670844630;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670824010\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670845252;register_id|s:3:\"277\";cash_in_hand|s:9:\"3000.0000\";register_open_time|s:19:\"2022-12-11 20:40:38\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e9f976820bbaf70f992c07dc414dbd2e73439a', '31.222.203.2', 1670844729, '__ci_last_regenerate|i:1670844729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdbbc5e961347c2b6ae29c0d6cfc070d5891ac31', '31.222.203.2', 1670844731, '__ci_last_regenerate|i:1670844731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d79d656894f8085c3b3ee5680b58e0b15ca2aef', '31.222.203.2', 1670844731, '__ci_last_regenerate|i:1670844731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66118ee0fb2744a1f286c38defacd22def36ac8', '31.222.203.2', 1670844731, '__ci_last_regenerate|i:1670844731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d19f327ffa0e7360aa9e723e38883375647a2a', '31.222.203.2', 1670844731, '__ci_last_regenerate|i:1670844731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9add2c5e1a3e02249b500d536a55e1030cbd1981', '31.222.203.2', 1670844731, '__ci_last_regenerate|i:1670844731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21abfda4974a3e8b170d5a35ebfbab029419b3bb', '172.105.247.100', 1670846499, '__ci_last_regenerate|i:1670846499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cbfa5604644427716d64640806cc885515490f', '172.105.247.100', 1670846499, '__ci_last_regenerate|i:1670846499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc04c97cb1730af4d5226152caf7d5a4786f391', '172.105.247.100', 1670846501, '__ci_last_regenerate|i:1670846501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba46858d6cc66994d436cd815e1fc67577fd2d9', '172.105.247.100', 1670846501, '__ci_last_regenerate|i:1670846501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67712c71ed4b1681dc946b68f0745b01b31e2e31', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca77c6da53ee8469953df093a7cbc2e0054df6f4', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5653afc5b53f98d5b0f43d458d1a75c587402e79', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2085e10d468705b7cf4ca544ca3f6534b2237232', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6c36e10965fa69ffc503110e65aeb9bfc36f5b', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7916accc51be0706329fd97de71ac5a2fb9db6', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830323929dac4585a96b13701427f6cedb2a365b', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ceeb95be623150daa2f8d256777a25370210dd1', '172.105.247.100', 1670846502, '__ci_last_regenerate|i:1670846502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f67b6df3f8068c56a7a92053545b7a317b04a1c', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce06bb8ea899f75ce556c7819e03ee1e65e495a', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb928b92f53492dc06e06f7f046a97eb4c98b3c', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6a62921e61b17d1bcb28d6e14549e83c2ca375', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d6b2c55b9759155c97a65829e8557108feb1dba', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae087884fbfb9d7cdcde36938f7fedf007a10896', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f9208e32925e236cc82518437e394c1b53270a', '172.105.247.100', 1670846503, '__ci_last_regenerate|i:1670846503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160b99420371c4d3288325359dd5974089ce1886', '172.105.247.100', 1670846504, '__ci_last_regenerate|i:1670846503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff97da990085e1808584b8b6d19854018e29f2e', '172.105.247.100', 1670846504, '__ci_last_regenerate|i:1670846504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a73d5978f009e7cbbe1495f30e3193c21e9d7b', '172.105.247.100', 1670846504, '__ci_last_regenerate|i:1670846504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d953c247e09bfecdfd2d4856a4df1b4b162c18d1', '172.105.247.100', 1670846504, '__ci_last_regenerate|i:1670846504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d046cb0a7beebca2acb92403ce9215da5480e28', '172.105.247.100', 1670846504, '__ci_last_regenerate|i:1670846504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fead0794ecc7c0ecfb1a8c9d2b98f530096e479c', '31.222.203.2', 1670846523, '__ci_last_regenerate|i:1670846523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829376ddd5b817737de6cb3242edfe8fc003db6d', '31.222.203.2', 1670846523, '__ci_last_regenerate|i:1670846523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462724d3eb9d9c6dde1eeeeb48cb28c97dd37ef6', '31.222.203.2', 1670846523, '__ci_last_regenerate|i:1670846523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42541fbc36246fd90a7fbb1182537c676259319d', '31.222.203.2', 1670846523, '__ci_last_regenerate|i:1670846523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42afc111b69094edd684a46512f7a21d2aff9fa4', '31.222.203.2', 1670846523, '__ci_last_regenerate|i:1670846523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92dd243ad9077d82903440d772c80cf7c7d10cd8', '31.222.203.2', 1670846523, '__ci_last_regenerate|i:1670846523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef708fba22d8facfcdc7b0475e284a4cf5de968', '31.222.203.2', 1670859133, '__ci_last_regenerate|i:1670859133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d98afe7112104e4008ea9a3d919ba23863ffd4', '31.222.203.2', 1670859135, '__ci_last_regenerate|i:1670859135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac03a4efd4a3e9873c1e47a77cb5c90875e19fca', '31.222.203.2', 1670859135, '__ci_last_regenerate|i:1670859135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('625b0891321293b62135a7bd6d46cb62bcf06fb2', '31.222.203.2', 1670859135, '__ci_last_regenerate|i:1670859135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44bd7d0d0988f8d93fbe29a3d328acfe1ed88b1', '31.222.203.2', 1670859135, '__ci_last_regenerate|i:1670859135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3071b2b9585de21fcaa86ced0935295070546176', '31.222.203.2', 1670859135, '__ci_last_regenerate|i:1670859135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8cb728f93fc1b8f7de94ce0549b44c380dcd72c', '172.105.247.100', 1670860893, '__ci_last_regenerate|i:1670860893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51e07b36899a60393d7f6690d0691e2a64d9e4f', '172.105.247.100', 1670860893, '__ci_last_regenerate|i:1670860893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff2417770988ad3cb3d9ba0dfa95fd238144dca', '172.105.247.100', 1670860895, '__ci_last_regenerate|i:1670860895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea9baf61a8a04aea89175e8de64da8cb821580d4', '172.105.247.100', 1670860895, '__ci_last_regenerate|i:1670860895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4c3c130dd7e398877218ee6b8c400814973946', '172.105.247.100', 1670860895, '__ci_last_regenerate|i:1670860895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcc44bc6832230391a00d99277f6819b31f681c', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fadc4fecdc669cd483c96cfa2efdd16fb4c83cc5', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448bb2cfad316ef329f77b86c841d755b56c7688', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bad7ee1f545a1b17490ba48240e6101ab2bc90a', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3803d8cf3186bae4fdc4db2b0ae5c465b0f42ceb', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eced9be6695aed461da1c0ef7f1872d8f1da9ce', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a043dedca1d298737412e69e9c8ddfabeb304660', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6217a7f3d6af02e3fccbb8278600b700dd146ca', '172.105.247.100', 1670860896, '__ci_last_regenerate|i:1670860896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d2ea107b6e411a77302d1312d89eb4d55e9ccf', '172.105.247.100', 1670860897, '__ci_last_regenerate|i:1670860897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc4354c50a83939bee2a791f79ed595faf6cff4', '172.105.247.100', 1670860897, '__ci_last_regenerate|i:1670860897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d196b07c46ea5b483bbd2b171ffc1ac5784e57', '172.105.247.100', 1670860897, '__ci_last_regenerate|i:1670860897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1aa30a833d2c09efa7981b82f0c2e8b17e49e5', '172.105.247.100', 1670860897, '__ci_last_regenerate|i:1670860897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3cee48ac645419423aa69fe7b0da13ef4a2e6ac', '172.105.247.100', 1670860897, '__ci_last_regenerate|i:1670860897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff2b5247702d63f51eb2fcac1c1806033c78f15', '172.105.247.100', 1670860897, '__ci_last_regenerate|i:1670860897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74dfa49703c997583e459e9219c9c820be7a919b', '172.105.247.100', 1670860898, '__ci_last_regenerate|i:1670860897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688e08f6bb903f4debae3a8a6621dbfebcb3230a', '172.105.247.100', 1670860898, '__ci_last_regenerate|i:1670860898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc183302b75e4f9359c2709850f024bdc7d18b6', '172.105.247.100', 1670860898, '__ci_last_regenerate|i:1670860898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a090e3ab820b64fe0145bebb4bfa991d30126c8', '172.105.247.100', 1670860898, '__ci_last_regenerate|i:1670860898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dae61e40f2342cacce92f8a6ea9dc1042dc30f7', '172.105.247.100', 1670860898, '__ci_last_regenerate|i:1670860898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('795fd4f73b4fd3dd1002b2fe89472eda487ce6bb', '31.222.203.2', 1670860925, '__ci_last_regenerate|i:1670860925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63a45bb51ae17f92ac6d78b27cda98abe4254c28', '31.222.203.2', 1670860925, '__ci_last_regenerate|i:1670860925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d997eb0ec2f92dea466f27c8d8f51762b8ac965', '31.222.203.2', 1670860925, '__ci_last_regenerate|i:1670860925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88578c48f136d7b2edf638f4410ea0253634a3fc', '31.222.203.2', 1670860927, '__ci_last_regenerate|i:1670860927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff965d0e46da995937d99b1dfa80d5e0fe3e206', '31.222.203.2', 1670860927, '__ci_last_regenerate|i:1670860927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efafd534d3788a7120059ee65a9919fc7486a2bc', '31.222.203.2', 1670860927, '__ci_last_regenerate|i:1670860927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ac091f4c45403a2ef6ad96bc3463892ec260f7', '31.222.203.2', 1670862730, '__ci_last_regenerate|i:1670862730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b240562ba92bf6fb3aa98bb6e83cb60be6e4f7b', '31.222.203.2', 1670862730, '__ci_last_regenerate|i:1670862730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2767fdf3aad3b30bc364a3f89f5e8abe4f130ac', '31.222.203.2', 1670862730, '__ci_last_regenerate|i:1670862730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b962846c83726857484b59068e99f3735dfc72', '31.222.203.2', 1670862731, '__ci_last_regenerate|i:1670862731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a4228626e7a286ab9610c0a036737414dea0cf', '31.222.203.2', 1670862731, '__ci_last_regenerate|i:1670862731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f522bb1f2193ff1477d3819f0381c6aaab318618', '31.222.203.2', 1670862731, '__ci_last_regenerate|i:1670862731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9e3ede758ced6edac48b3bfd9dce83714249f5', '31.222.203.2', 1670864525, '__ci_last_regenerate|i:1670864525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ccf74d59e2b189a69b88f8ce92d23100138e7f', '31.222.203.2', 1670864527, '__ci_last_regenerate|i:1670864527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('512c3030eec674a6b339dd52795de800c21a416a', '31.222.203.2', 1670864527, '__ci_last_regenerate|i:1670864527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13dd0dd2c655e09258f24ae806f703722aef8aba', '31.222.203.2', 1670864527, '__ci_last_regenerate|i:1670864527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88a4e7ac4aa725fb0b31059f2156c1c7169889e4', '31.222.203.2', 1670864527, '__ci_last_regenerate|i:1670864527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8bb705580079fb4d884294de290f77b22783e37', '31.222.203.2', 1670864527, '__ci_last_regenerate|i:1670864527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4edc9bae55c9fbce3b718f078d91a5728cfafc', '172.105.247.100', 1670865089, '__ci_last_regenerate|i:1670865089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d0840ca9fd7f40b39e281c8d7c4af8ffcd2b5de', '172.105.247.100', 1670865091, '__ci_last_regenerate|i:1670865091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf107e9d3717a414c620f2846df226a21773ab4', '172.105.247.100', 1670865092, '__ci_last_regenerate|i:1670865092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce2194a0224a9213f514e33f7d72e4429b9b495', '172.105.247.100', 1670865092, '__ci_last_regenerate|i:1670865092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0651e71dc4bb90df38fd06d0b0a8d17cd37903f8', '172.105.247.100', 1670865093, '__ci_last_regenerate|i:1670865093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d037132bda02489b5d263520db68a81f1e1ece', '172.105.247.100', 1670865093, '__ci_last_regenerate|i:1670865093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b05b23d6c2cb77d7ed077a45d8691519a6d2b45', '172.105.247.100', 1670865093, '__ci_last_regenerate|i:1670865093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b0aa1b0b201014e571c9e0705f37061eea2d5c6', '172.105.247.100', 1670865094, '__ci_last_regenerate|i:1670865094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e5cb77e8826c0042259722d2fc76b512039822', '172.105.247.100', 1670865094, '__ci_last_regenerate|i:1670865094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf481a5a30a79d81e2c21a3d758173ca822cdef', '172.105.247.100', 1670865094, '__ci_last_regenerate|i:1670865094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e719382e92bd4e33c5891983533fe7fb2ec9c1', '172.105.247.100', 1670865094, '__ci_last_regenerate|i:1670865094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4a5620b9a0476a327adf84f0982270a4472e9b', '172.105.247.100', 1670865094, '__ci_last_regenerate|i:1670865094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9efff82cc3243fc95cefc11dc7ef9c7b6f374b2', '172.105.247.100', 1670865094, '__ci_last_regenerate|i:1670865094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('680ef1b5510ca4ace3cd93dfd1c5591f73879bd1', '172.105.247.100', 1670865095, '__ci_last_regenerate|i:1670865094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063a56dd7c3e448eeb107f0fbfb8d18535083776', '172.105.247.100', 1670865095, '__ci_last_regenerate|i:1670865095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30c413d3189c465abfce412b7e8c633a0d16e2f', '172.105.247.100', 1670865095, '__ci_last_regenerate|i:1670865095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2937e687134dbfdc15f80a8f45d5b2c6cb31c28a', '172.105.247.100', 1670865095, '__ci_last_regenerate|i:1670865095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58708a0e8d5ca6e17ea27810953f8aee19034e9e', '172.105.247.100', 1670865095, '__ci_last_regenerate|i:1670865095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4448366a4d3e918cc8f42c1d3f7a84d26368597c', '172.105.247.100', 1670865095, '__ci_last_regenerate|i:1670865095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c32737cf98d0f29b7a9a8c90277739519cbf792', '172.105.247.100', 1670865096, '__ci_last_regenerate|i:1670865095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe98c0b00aed8c9fdcc19c572e75c72bcb88ba4', '172.105.247.100', 1670865096, '__ci_last_regenerate|i:1670865096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0cb85ad5b98e423b404878274fee4403be4722a', '172.105.247.100', 1670865096, '__ci_last_regenerate|i:1670865096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73548876f64d88bf778bc328e5f4807d7eb4de7', '172.105.247.100', 1670865096, '__ci_last_regenerate|i:1670865096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765c429688389b02b68fae0b331a7e954b33b380', '172.105.247.100', 1670865097, '__ci_last_regenerate|i:1670865097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd8ac930b125beabe1124eccd231d26f34e3915', '31.222.203.2', 1670866336, '__ci_last_regenerate|i:1670866336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1dfc258e564060f7efa7dc71e68fcffba3a3b1', '31.222.203.2', 1670866338, '__ci_last_regenerate|i:1670866338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514119c76bbc4c886d4716a37ad74cd7ebeea77f', '31.222.203.2', 1670866338, '__ci_last_regenerate|i:1670866338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9089b98fa7cb80a7340e6eda1462311fedc876e5', '31.222.203.2', 1670866338, '__ci_last_regenerate|i:1670866338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2101785c6a5df4b812618a1909ff6e3e3a6719', '31.222.203.2', 1670866338, '__ci_last_regenerate|i:1670866338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8434c799c5acebc3e8ef1028037bffc7fac874ba', '31.222.203.2', 1670866338, '__ci_last_regenerate|i:1670866338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81a0ee10b46d8f47afe5388b73033639c3742fd', '31.222.203.2', 1670868141, '__ci_last_regenerate|i:1670868141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9aa8487dfcd7d573d28902acc4c267c79129d99', '31.222.203.2', 1670868141, '__ci_last_regenerate|i:1670868141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2370fe8e7a874d6c71c284cf576f5f4da3100581', '31.222.203.2', 1670868141, '__ci_last_regenerate|i:1670868141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35934b88708441741ca5e35f0c98054c1164952', '31.222.203.2', 1670868141, '__ci_last_regenerate|i:1670868141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('305a8ba0a9819eabb4a2f4746e1f331ffae33151', '31.222.203.2', 1670868141, '__ci_last_regenerate|i:1670868141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c40a32c6c84bf914be2ae457939c22066bfe86f', '31.222.203.2', 1670868141, '__ci_last_regenerate|i:1670868141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401f9502aca48690137e62fc2fa5ae8e7f0358b8', '31.222.203.2', 1670869935, '__ci_last_regenerate|i:1670869935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a93868ccbbbe3fc41a9350065d95f67eb41f32', '31.222.203.2', 1670869935, '__ci_last_regenerate|i:1670869935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba6da5c269cc854e4aee2b896fd12f500cf8d76', '31.222.203.2', 1670869935, '__ci_last_regenerate|i:1670869935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178147f692fd3b5029bb4a3a730bac7e25f2c009', '31.222.203.2', 1670869935, '__ci_last_regenerate|i:1670869935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cebe82dae6fbd23fd103f11e6b0a85c952835376', '31.222.203.2', 1670869935, '__ci_last_regenerate|i:1670869935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522ac9a97f47b754cc273dcc5e685c0d65fe571b', '31.222.203.2', 1670869935, '__ci_last_regenerate|i:1670869935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97d18ccbb68b2d6d3d9606af80870a828a506d6', '172.105.247.100', 1670871090, '__ci_last_regenerate|i:1670871090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09280f56f2a8c81cbfc4302e144bf2f5bdc522e7', '172.105.247.100', 1670871090, '__ci_last_regenerate|i:1670871090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637c04150c839bac8a9b9e7f6eb1e546c93613ac', '172.105.247.100', 1670871090, '__ci_last_regenerate|i:1670871090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906b136e4835244efe5ff7ba4bf67ff33fcab7c6', '172.105.247.100', 1670871091, '__ci_last_regenerate|i:1670871091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4987cac37c52ab33bb566b8a6bf9bf13b088e96d', '172.105.247.100', 1670871091, '__ci_last_regenerate|i:1670871091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e382932a4a470433dcc1a98095e86282697df4', '172.105.247.100', 1670871091, '__ci_last_regenerate|i:1670871091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e452227ef4abfe63d87a84e25ac8cd8deba4abf', '172.105.247.100', 1670871091, '__ci_last_regenerate|i:1670871091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac3f55e6b9d28c21a0a4f794b80bbe72aa30bf8', '172.105.247.100', 1670871092, '__ci_last_regenerate|i:1670871092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce7973e97f3c47fbd6faf19a02bdbfb0412bd8f4', '172.105.247.100', 1670871092, '__ci_last_regenerate|i:1670871092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7a25cfb24df9369d4d2a26bab7501f6c8758f4', '172.105.247.100', 1670871092, '__ci_last_regenerate|i:1670871092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('270df49c6126141819447a0dd66593b5bef16bdd', '172.105.247.100', 1670871092, '__ci_last_regenerate|i:1670871092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bcb45752c7d615e86e72665ea98993cf7a285e', '172.105.247.100', 1670871092, '__ci_last_regenerate|i:1670871092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e14bc6d5eda7e3d6b5c89623881e37eaff16441', '172.105.247.100', 1670871092, '__ci_last_regenerate|i:1670871092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ffe234e484202be7697389a0023c1bea4f721f9', '172.105.247.100', 1670871093, '__ci_last_regenerate|i:1670871092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16891fd4192fa4b2ec94e42326d73a48dc9c042b', '172.105.247.100', 1670871093, '__ci_last_regenerate|i:1670871093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca79a481076d2df9ad2ce6a9ac88c5d33a3769be', '172.105.247.100', 1670871093, '__ci_last_regenerate|i:1670871093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7b6abeed3db3dc412e09eb1f29af1867a749f8', '172.105.247.100', 1670871093, '__ci_last_regenerate|i:1670871093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb84f1d6ba13f3ee81822f898b9394d8f180ccc1', '172.105.247.100', 1670871093, '__ci_last_regenerate|i:1670871093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3527d6debd4c9a763f3af85428171ff9f0ca6c1', '172.105.247.100', 1670871093, '__ci_last_regenerate|i:1670871093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e248bdbf8c79711f59ca41037b556291052fd1', '172.105.247.100', 1670871094, '__ci_last_regenerate|i:1670871093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf4bf2334d4155594ee1ee75fbb0b1df1109c23', '172.105.247.100', 1670871094, '__ci_last_regenerate|i:1670871094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff590f8b2bd0e612fecdb753cdfd67b43d911652', '172.105.247.100', 1670871094, '__ci_last_regenerate|i:1670871094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bace6c9f11b0d058f52489d3ceef69c105591608', '172.105.247.100', 1670871094, '__ci_last_regenerate|i:1670871094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf513b7f475215d5d69e795572a937647975f7f0', '172.105.247.100', 1670871095, '__ci_last_regenerate|i:1670871095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d97df0f4c7fd4ad4a0308bbec3a33b684e794e5', '31.222.203.2', 1670871722, '__ci_last_regenerate|i:1670871722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a22d76e3806aabc60b0fa7f13b8d86a79ef3285d', '31.222.203.2', 1670871722, '__ci_last_regenerate|i:1670871722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369fd9d25a9a8cd148cdc1329382c51f5af1350d', '31.222.203.2', 1670871722, '__ci_last_regenerate|i:1670871722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45fdcdd5caad27b9e01dfa1169085ff9fc70d47', '31.222.203.2', 1670871722, '__ci_last_regenerate|i:1670871722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343afbe4da6447d20a240ecf5632d4405ecddad5', '31.222.203.2', 1670871722, '__ci_last_regenerate|i:1670871722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f484a716deb7b9c8e30d7c527f67166291aaae', '31.222.203.2', 1670871722, '__ci_last_regenerate|i:1670871722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c313e75c3d04e97dfd8ad13dcd94f144176cc9ec', '31.222.203.2', 1670873531, '__ci_last_regenerate|i:1670873531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e89b1e85b504a1c7ac365318a5da245d8025ee7', '31.222.203.2', 1670873531, '__ci_last_regenerate|i:1670873531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc20d11b803d50c8bd8ce0e2bbcbb851176d72ab', '31.222.203.2', 1670873531, '__ci_last_regenerate|i:1670873531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d0ff4446838f876c8e6367e3a19daf96273312', '31.222.203.2', 1670873533, '__ci_last_regenerate|i:1670873533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723ab821e9438e414152abd8c0ad38ef4ce3b013', '31.222.203.2', 1670873533, '__ci_last_regenerate|i:1670873533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c4775769ef24d156db943915350a661966c670', '31.222.203.2', 1670873533, '__ci_last_regenerate|i:1670873533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d73ca6454587248980384e80f7fa3b1eda13620', '31.222.203.2', 1670875326, '__ci_last_regenerate|i:1670875326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97de6065afff254205d33d8bca3df68f55a51b9b', '31.222.203.2', 1670875328, '__ci_last_regenerate|i:1670875328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901c38ac7352f2dfba454a9e2093648cffd44d53', '31.222.203.2', 1670875328, '__ci_last_regenerate|i:1670875328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e319f4ebfc3c95029a625d4e605fda3536b0b18e', '31.222.203.2', 1670875328, '__ci_last_regenerate|i:1670875328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5303538135a0d942be4c617e3dff41a1f489a1', '31.222.203.2', 1670875328, '__ci_last_regenerate|i:1670875328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf74b182b18c176602e56cb48ec2754062be70ad', '31.222.203.2', 1670875328, '__ci_last_regenerate|i:1670875328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c50a0d72128fafe340e8a9df3fd1eeef4ccaf9', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fb8576059d393378a38d610a6972b1c99a4ed5', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ca04500c8d2db4f12af98be60425168a2dab1d', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311b62999d84bfb20bd981d9f5f1422b6033fc28', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ae845449a975f18078762aadad1670f988438d', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408f28ade813920bd61f4539db7bbd2fc7c8d9a2', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8873df24682eb0923f48dd982ce32d712f44063', '172.105.247.100', 1670875890, '__ci_last_regenerate|i:1670875890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708376fd4eac83445831b51970492a5e847c8301', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6605d70b1396c9d8b259203540f7955145bf7a6a', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f89ef1ab160b3399f16e7ce4fc97191b9d6ef6da', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3310d13d7c5a242f091ef91ed807049fbbba83', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038e5953d3cdd1257eafbf15102f24a888c5833b', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e800d34cb765bd7fe0658ee0aa8d5a3a8c86627b', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e263f09f41bfb90d976925be9daa9cc64527237c', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082752b7a2344374fd99a0362f7d8600540030cf', '172.105.247.100', 1670875891, '__ci_last_regenerate|i:1670875891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e085ddfdf75a78a4a43fc4ab6c3049e6b84241', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06cc0ebea40c4700f1145a71a5c562566e39a3a6', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3610bfba69bb0022e73bd5731ae2ce4739421718', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f632f1134cfddc92322b88d93db6725a2f63a8', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45e6474f8c0fbe64af4d295279264babe083298', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97ba3eff39d4a6f48166db4f7a76fd92217cf59', '172.105.247.100', 1670875892, '__ci_last_regenerate|i:1670875892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8a60ecf39edd7f80bb92e12ad2edc329e00ae6', '172.105.247.100', 1670875893, '__ci_last_regenerate|i:1670875893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5070685667f959f28aa23ae0c6cf9ce428e0610', '172.105.247.100', 1670875893, '__ci_last_regenerate|i:1670875893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d1a25c758c0376fb1092e870f7cf1f332d9266d', '172.105.247.100', 1670875893, '__ci_last_regenerate|i:1670875893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2ba5ae6916a0be22322ce09911b4f04cc35824', '31.222.203.2', 1670877129, '__ci_last_regenerate|i:1670877129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86b11e94035d5d7703d9e6b5563892004862626', '31.222.203.2', 1670877131, '__ci_last_regenerate|i:1670877131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8279918e8a3e8209927ba3d601326839491f4d0e', '31.222.203.2', 1670877131, '__ci_last_regenerate|i:1670877131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe6132de4522ba96d12b4c588c687b8901cd577', '31.222.203.2', 1670877131, '__ci_last_regenerate|i:1670877131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8e0196b51669788bae20d17fb80fedf99a3d9d', '31.222.203.2', 1670877131, '__ci_last_regenerate|i:1670877131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7b8866eddc9f0195479e6689de40592b0e132f', '31.222.203.2', 1670877131, '__ci_last_regenerate|i:1670877131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1714db5ae58d0b9b8fd23f94fe0fc047c6257455', '31.222.203.2', 1670878930, '__ci_last_regenerate|i:1670878930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3fa6ceb93ea7239105c98cee14fe98108ca8236', '31.222.203.2', 1670878932, '__ci_last_regenerate|i:1670878932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73898bebed841805ca55555e8f1aabcdc84d4d04', '31.222.203.2', 1670878932, '__ci_last_regenerate|i:1670878932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925130bb248a1802bd2120758ecee9443130e085', '31.222.203.2', 1670878932, '__ci_last_regenerate|i:1670878932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f5161355a4f14f90c1c592050fae8efdcea15e', '31.222.203.2', 1670878932, '__ci_last_regenerate|i:1670878932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28da3742b5570a7cd8f5a1939590eb15a29e2a7', '31.222.203.2', 1670878932, '__ci_last_regenerate|i:1670878932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807b15b7a6dd37cd2dcd531d47aa1c8adf45433b', '172.105.247.100', 1670880692, '__ci_last_regenerate|i:1670880692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4d9ea259e43ee83e0a66d8b054ef48e97d876e', '172.105.247.100', 1670880692, '__ci_last_regenerate|i:1670880692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef91050dd8d41e60b48fd1ef3a2cab9be39bc43a', '172.105.247.100', 1670880692, '__ci_last_regenerate|i:1670880692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe41f8105d90631d8573525308147998cc8135a0', '172.105.247.100', 1670880692, '__ci_last_regenerate|i:1670880692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dce93215caa9ed5a746810eec1e62e1903357ee', '172.105.247.100', 1670880693, '__ci_last_regenerate|i:1670880692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7d9be8af105de4cba261782ce9f0a13d5ddb8f', '172.105.247.100', 1670880693, '__ci_last_regenerate|i:1670880693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca49317a57dc371eff76fd983a4f7cd7548ba9d3', '172.105.247.100', 1670880693, '__ci_last_regenerate|i:1670880693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6b87ed6de276d90cf1c643644f82b8385eab70', '172.105.247.100', 1670880693, '__ci_last_regenerate|i:1670880693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14483346df65ef57f96d96d41eb201e58a845ff6', '172.105.247.100', 1670880694, '__ci_last_regenerate|i:1670880693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2399dc5c007039c13268808d33eca1f6552ed75', '172.105.247.100', 1670880694, '__ci_last_regenerate|i:1670880694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2615dc201d5ecbf62d63d353a3eba15bf1a369', '172.105.247.100', 1670880694, '__ci_last_regenerate|i:1670880694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b8c6cec89c2d6d0930956bd09184753e8ccb26', '172.105.247.100', 1670880694, '__ci_last_regenerate|i:1670880694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a0ebcbdc4844b7fe5e52c8f7cf8ce6b1c7931b', '172.105.247.100', 1670880694, '__ci_last_regenerate|i:1670880694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a61b569dce30aa6b44b8ff75c2a5af0a28909d', '172.105.247.100', 1670880695, '__ci_last_regenerate|i:1670880695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0902cf78b000719130704dcceabe45e104eb99', '172.105.247.100', 1670880695, '__ci_last_regenerate|i:1670880695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f927cb99db1149db1bb4b26640bde0ce139657c', '172.105.247.100', 1670880695, '__ci_last_regenerate|i:1670880695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d71c3dae20b01279f0924985b84778fbfae09af', '172.105.247.100', 1670880695, '__ci_last_regenerate|i:1670880695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db92393db2c314c592c160566792071a65f7241a', '172.105.247.100', 1670880695, '__ci_last_regenerate|i:1670880695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a4faca5bac59e9dc97a7968386e074664fe9c7', '172.105.247.100', 1670880696, '__ci_last_regenerate|i:1670880696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cea07da44bc43331a48eb060bdc09e683cdd249', '172.105.247.100', 1670880696, '__ci_last_regenerate|i:1670880696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b53af1146041472c307a6e97bdba0a756e49ce', '172.105.247.100', 1670880696, '__ci_last_regenerate|i:1670880696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf117d8ae435195e2df5a6dca3ba67e9e3c550e', '172.105.247.100', 1670880696, '__ci_last_regenerate|i:1670880696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34877b453524c2eb608454c4944607b73a32c546', '172.105.247.100', 1670880697, '__ci_last_regenerate|i:1670880697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e97dc267e4557add4c578fef29ffb0a9b1203af', '172.105.247.100', 1670880697, '__ci_last_regenerate|i:1670880697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828f7972bd313fa6f544d302c69184498ec92f81', '31.222.203.2', 1670880733, '__ci_last_regenerate|i:1670880733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d454483565f2372ff656314a829f8f462d867047', '31.222.203.2', 1670880733, '__ci_last_regenerate|i:1670880733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e53cc22fa9494d8473efbdd80c360921700f4e', '31.222.203.2', 1670880733, '__ci_last_regenerate|i:1670880733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bebbe9c968c93c951759e77ac8a58e884fb1148', '31.222.203.2', 1670880733, '__ci_last_regenerate|i:1670880733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a949d4bfda3fe3c01c2856957ee2455ab1c1d801', '31.222.203.2', 1670880733, '__ci_last_regenerate|i:1670880733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379454a5b6501d31330f73ab773c98ea70dca364', '31.222.203.2', 1670880733, '__ci_last_regenerate|i:1670880733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c9aab7e0f918dbd8e48c1f74ae012a3dd73ce9', '31.222.203.2', 1670882527, '__ci_last_regenerate|i:1670882527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00412c500a3571189b139964700dfdb8acd56b93', '31.222.203.2', 1670882529, '__ci_last_regenerate|i:1670882529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf1f20c5115bf84859f6aaf048c15049778f1a4', '31.222.203.2', 1670882529, '__ci_last_regenerate|i:1670882529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f920d58ec3f136c444e105e11f3bc8507877fa2e', '31.222.203.2', 1670882529, '__ci_last_regenerate|i:1670882529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10471683df608404a4bdda5d90669d47d564ac07', '31.222.203.2', 1670882529, '__ci_last_regenerate|i:1670882529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca27b670a5b8268e4a66908cb43d00f877266811', '31.222.203.2', 1670882529, '__ci_last_regenerate|i:1670882529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68235e5499ad3c78a9414cca84d7b592e048f97', '31.222.203.2', 1670884324, '__ci_last_regenerate|i:1670884324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4d9804c37f7e80050a2e5f6519ede73d36a749', '31.222.203.2', 1670884326, '__ci_last_regenerate|i:1670884326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542f979873084e9c43ca9c2cbee48f2d8b8bd048', '31.222.203.2', 1670884326, '__ci_last_regenerate|i:1670884326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf25c91e40b2edbfd1d0b9bb223e0ca88d6ac45', '31.222.203.2', 1670884326, '__ci_last_regenerate|i:1670884326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97846a3170f20f1a1705a1e5058854fa217b677f', '31.222.203.2', 1670884326, '__ci_last_regenerate|i:1670884326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8f5c4f9dd761e3a3a4b6a8ad0a354fe980ab93', '31.222.203.2', 1670884326, '__ci_last_regenerate|i:1670884326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409a16ba934dc0e0add85715616772a24042f8dd', '172.105.247.100', 1670885492, '__ci_last_regenerate|i:1670885492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15b52170799632f73f41f029564c3e2686682ff', '172.105.247.100', 1670885494, '__ci_last_regenerate|i:1670885494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddafac865578e06f4e8b1d4e25206ff9af369ad1', '172.105.247.100', 1670885494, '__ci_last_regenerate|i:1670885494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4f70b0522ba178f72727a0a5c6774dfb0bee24', '172.105.247.100', 1670885494, '__ci_last_regenerate|i:1670885494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9b2952ccc67f23f736fadb91e82c6bfe3533a8', '172.105.247.100', 1670885494, '__ci_last_regenerate|i:1670885494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907aec7b62800c08651f0caf2dfaad0c924751eb', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b9917c9fc8890cb2a98c750f239096405b7349', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3ce85404619b18f9a2969a25b29c261a8086a2', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80e6ed7d8a344a5c3165dad5517a8ae60f490836', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266c2d7d8bfb93341d1303552f6cba8ce5c181c7', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f20db0e3d52d34832f878f2ec75de0f1ba2307a', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7fbe2e9932823b674c6bee66374d05d1ef15a6', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e45b39dbcf42837cd415f735d097c89425f413', '172.105.247.100', 1670885495, '__ci_last_regenerate|i:1670885495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10efb20176a0968e97864c8d1b0e20970276e4f6', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de55740b4760ce94aa106d6a21793d46e847c064', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('787ae9e03bd16d6ac102b8150f68210450509e5b', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092cd83759d47fd7e85dddc7980ee6a6f8e153f2', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd8649317805f783c83ef5d7c1ce078452ac61d', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46204271088345f176159ca365c72ded5c11dfa7', '172.105.247.100', 1670885496, '__ci_last_regenerate|i:1670885496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('594d27e5bca0a526c66af28c077bf2e0b795f578', '172.105.247.100', 1670885497, '__ci_last_regenerate|i:1670885497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db724e8a6c5a817214b8b1d1b55b37dc0cfaa5c4', '172.105.247.100', 1670885497, '__ci_last_regenerate|i:1670885497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69dc1c71f84991f7bc176510f507b25e5677f764', '172.105.247.100', 1670885497, '__ci_last_regenerate|i:1670885497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b7834323e97920ff05d4d23200464bb3a5e9ff', '172.105.247.100', 1670885497, '__ci_last_regenerate|i:1670885497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca55df76768de76683364651e0d6ddee0945152', '172.105.247.100', 1670885497, '__ci_last_regenerate|i:1670885497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16612f34a2d0b136435314247af486ebecf2f6c6', '31.222.203.2', 1670886132, '__ci_last_regenerate|i:1670886132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a1b3553531b3257c94bc1fe6d89f297fe41490', '31.222.203.2', 1670886132, '__ci_last_regenerate|i:1670886132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c74ee02e412da1466c7cf5b2cc5a82455382dee', '31.222.203.2', 1670886132, '__ci_last_regenerate|i:1670886132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8860703c125ffed57f2be811c4d766f132a3df', '31.222.203.2', 1670886132, '__ci_last_regenerate|i:1670886132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4dbe7e2a385f37669b937ccd01a40acbc021554', '31.222.203.2', 1670886132, '__ci_last_regenerate|i:1670886132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ca8931d867a7043088e6cdcadc11ebc988ed05', '31.222.203.2', 1670886132, '__ci_last_regenerate|i:1670886132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa4e1ada7ce220a0c18f3616ccedf1eb8890b7c', '31.222.203.2', 1670887931, '__ci_last_regenerate|i:1670887931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53374561e60f47b80149fbd72d46b08b0086f756', '31.222.203.2', 1670887933, '__ci_last_regenerate|i:1670887933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363ea88b6a1f22a80ef032c34679ba8453d49ca7', '31.222.203.2', 1670887933, '__ci_last_regenerate|i:1670887933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91279d4f1baa5859a845a85a2e414c52ed679df0', '31.222.203.2', 1670887933, '__ci_last_regenerate|i:1670887933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283365cb4fa82b27b2c81e29e16cfd757bf85717', '31.222.203.2', 1670887933, '__ci_last_regenerate|i:1670887933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcf3e4504587455e45ee5670f3d9529a55db6e4', '31.222.203.2', 1670887933, '__ci_last_regenerate|i:1670887933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d03a320f7b3985eb454d2e4b16b1853551a614e', '31.222.203.2', 1670889733, '__ci_last_regenerate|i:1670889733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80de4833c0a62e2f9b5abacee2f445cf871e9b3a', '31.222.203.2', 1670889733, '__ci_last_regenerate|i:1670889733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015547bcf0a8b66dd3c111af47d4ec5f07ce8449', '31.222.203.2', 1670889733, '__ci_last_regenerate|i:1670889733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e01301d0f8ae54622bf89803b21b5e40b7f354', '31.222.203.2', 1670889735, '__ci_last_regenerate|i:1670889735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c778a495297a35b885a83730c967e10aa09821', '31.222.203.2', 1670889735, '__ci_last_regenerate|i:1670889735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ff848cafe1a5c0d64b75d9e44516a4aa3e4e9a', '31.222.203.2', 1670889735, '__ci_last_regenerate|i:1670889735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ae489319b56ff5395865a014369066175ff39c', '172.105.247.100', 1670890292, '__ci_last_regenerate|i:1670890292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866d7ea6969ab23351d1abc5b9f33e7ae781b502', '172.105.247.100', 1670890294, '__ci_last_regenerate|i:1670890294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92cb52d4e8458855c87ea309e4f89bb613f7e5b0', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca667babcd5ce6197b15a65a77f41918a1de1bbd', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c74978c9ec0eeea7ee7316572f4eb6389b8a124', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9242634a2d6c17e3466fe83b2016ca4764702336', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8e307de0411508f0e41ab45323f50ddfa150f0', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3992027cd8e817c41f051784e98c70e77679fc', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3373ec97e1884c4c504f507d435e23fd8b7e7b90', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710913ffc055433ba996939abceec58fbdc39e37', '172.105.247.100', 1670890295, '__ci_last_regenerate|i:1670890295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d124b4813bcd0acf3708ccdc37df495091421c8d', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a6ba7b28b70fa6bee9013a3bab226a724c90c1f', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b3fded8d95f03f73c3102137b0b0c17097bd5e', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d210532a4af85a5029c581b5988ad382e9c2a57e', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95bfb769969d3cf33f70e35dd1ad8f79eb3605e0', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51880bc2a53390205cad3df85316cba1c1ea4c31', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e14bdbb14b887447be7ad1b69cec874ebcf5077', '172.105.247.100', 1670890296, '__ci_last_regenerate|i:1670890296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142bd718ee888d533f0a62f648220a34bb006723', '172.105.247.100', 1670890297, '__ci_last_regenerate|i:1670890297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f759e797f059ffe30db8fe1913ebfb08a7bfe291', '172.105.247.100', 1670890297, '__ci_last_regenerate|i:1670890297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2922a5bafe790a43e7a5ddd2aaa2d4146e76e9c', '172.105.247.100', 1670890297, '__ci_last_regenerate|i:1670890297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3d08754c23c355ee08947c31304a9ec6caf7be', '172.105.247.100', 1670890297, '__ci_last_regenerate|i:1670890297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b5352e1293c5788e37c5014ba68cc5e860be60', '172.105.247.100', 1670890297, '__ci_last_regenerate|i:1670890297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7cebd08c580b6b4bc97e7825af468028ab01d3', '172.105.247.100', 1670890297, '__ci_last_regenerate|i:1670890297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffee9cad0b1bc81b4f257525a6c4081be5d2feb6', '172.105.247.100', 1670890298, '__ci_last_regenerate|i:1670890297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70849f991d97e83ec38600c380035ad3e99b57af', '31.222.203.2', 1670891528, '__ci_last_regenerate|i:1670891528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('101a459d5b3dc5efd63e6607decca1fdb3413d4b', '31.222.203.2', 1670891528, '__ci_last_regenerate|i:1670891528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7d450e0684d98cfdf86ce0802ba7e493e46472', '31.222.203.2', 1670891528, '__ci_last_regenerate|i:1670891528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c61d63821988949ee3aa37cbc18c085ddab595', '31.222.203.2', 1670891530, '__ci_last_regenerate|i:1670891530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eebb5314d27ef75642f1d5e39cfd3145929386e4', '31.222.203.2', 1670891530, '__ci_last_regenerate|i:1670891530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cee4c8f35ca2291b7e8bef90a268ccca01ca824', '31.222.203.2', 1670891530, '__ci_last_regenerate|i:1670891530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a38aa385f8ee071d4b4874b5669f53c0b95c6f', '31.222.203.2', 1670893324, '__ci_last_regenerate|i:1670893324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6e7f1f6639af37c8cda5c0177e80dbdaf0be10', '31.222.203.2', 1670893325, '__ci_last_regenerate|i:1670893325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6d30d1c77b2a023602ffab549c35e245ad96be', '31.222.203.2', 1670893325, '__ci_last_regenerate|i:1670893325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed10f08024541855cf6ee6a9e023966715a63e7a', '31.222.203.2', 1670893325, '__ci_last_regenerate|i:1670893325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d324c2573145c886509c7a1ecf7585fcc4632280', '31.222.203.2', 1670893325, '__ci_last_regenerate|i:1670893325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd733b32605888a8c1622367e19bc0290ed58077', '31.222.203.2', 1670893325, '__ci_last_regenerate|i:1670893325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc9894dc9cc7665f67017a08f43a91192376b7b', '172.105.247.100', 1670895090, '__ci_last_regenerate|i:1670895090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ac519602d2671692c4cc5b3aafc812f7ee268d', '172.105.247.100', 1670895090, '__ci_last_regenerate|i:1670895090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b546a725a6fea75c2d6306cb3930d8c040924c4', '172.105.247.100', 1670895090, '__ci_last_regenerate|i:1670895090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0718aeea5e3860c7f55d8552e1201f7b47fa939', '172.105.247.100', 1670895091, '__ci_last_regenerate|i:1670895091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c1eab9387f919ae04f6fd531df05dc31217082', '172.105.247.100', 1670895091, '__ci_last_regenerate|i:1670895091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc230304d7f29d2fbedfe9ad7337f961e3f9997', '172.105.247.100', 1670895091, '__ci_last_regenerate|i:1670895091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7101796808d56efeffc8e325920d7324ec6209f8', '172.105.247.100', 1670895091, '__ci_last_regenerate|i:1670895091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355ead63fdcbf23767d389c4c069c3af77f29592', '172.105.247.100', 1670895092, '__ci_last_regenerate|i:1670895092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2bff2819cc5fadfc358e686ef7d1cf6dd972875', '172.105.247.100', 1670895092, '__ci_last_regenerate|i:1670895092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a1f5e60da4bf1028722a7c8f6b2da23e1d4ade', '172.105.247.100', 1670895092, '__ci_last_regenerate|i:1670895092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5c06203d555bf6264117445ccb49cd7d285881', '172.105.247.100', 1670895092, '__ci_last_regenerate|i:1670895092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d1bbc1fde44e660efd61dc52b4da44b55618fcf', '172.105.247.100', 1670895092, '__ci_last_regenerate|i:1670895092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc13630a37d2fa32f0b9a1fb57b6757e085ff2b', '172.105.247.100', 1670895093, '__ci_last_regenerate|i:1670895093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17be6c9baf8cf4bdb251f1e9a667deb65b80efe', '172.105.247.100', 1670895093, '__ci_last_regenerate|i:1670895093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97335af083de17312e82472ec23bbe87270d0deb', '172.105.247.100', 1670895093, '__ci_last_regenerate|i:1670895093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f96d28411eeb9a33a6dd56ee460ffa05f519dd4a', '172.105.247.100', 1670895093, '__ci_last_regenerate|i:1670895093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5163c0a9a155dec0588243370b4323768bcaf0', '172.105.247.100', 1670895093, '__ci_last_regenerate|i:1670895093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8559f1dd05ab0aad2e99f0899d796c541c94db3', '172.105.247.100', 1670895093, '__ci_last_regenerate|i:1670895093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('422cdd9cf677008f6c5e96d908b8c2d3e916baf7', '172.105.247.100', 1670895094, '__ci_last_regenerate|i:1670895094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59615803075467fec5552cb392f2736c86fe45a5', '172.105.247.100', 1670895094, '__ci_last_regenerate|i:1670895094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb609e79d9bba284ddffd3fdc08c7d395d7fbb64', '172.105.247.100', 1670895094, '__ci_last_regenerate|i:1670895094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc5b0f9163f17ba6ab1266f4a7c992db146c944', '172.105.247.100', 1670895094, '__ci_last_regenerate|i:1670895094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f967ca31a412c4f859c909b3a01cfe3c60cd28f1', '172.105.247.100', 1670895095, '__ci_last_regenerate|i:1670895095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3edb943e5d5a6cacccc8403e60bdf17c98db6cd', '172.105.247.100', 1670895095, '__ci_last_regenerate|i:1670895095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291d1ac07239250df95c3c382f6660fcd95b7b11', '31.222.203.2', 1670895125, '__ci_last_regenerate|i:1670895125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a8de40aeb25058b6716f09c4f3d1c1ee241f15', '31.222.203.2', 1670895127, '__ci_last_regenerate|i:1670895127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c426ba8f45eed5785e2fee314db8a3693f6c7d8', '31.222.203.2', 1670895127, '__ci_last_regenerate|i:1670895127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c20594fbedfb7bcc5e88686b59a28853047d5ae', '31.222.203.2', 1670895127, '__ci_last_regenerate|i:1670895127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9bea53a9649e4db671e0107954b94ebcd6ed99', '31.222.203.2', 1670895127, '__ci_last_regenerate|i:1670895127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a48118996f260ba7eb5d14e7bd5309b646d7a32', '31.222.203.2', 1670895127, '__ci_last_regenerate|i:1670895127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e38942edaa9d13ccefa02325b1c8ddf91f7f6b', '31.222.203.2', 1670896931, '__ci_last_regenerate|i:1670896931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb77edb53e9b1d5b0204c78e6f2739abcdc8b14e', '31.222.203.2', 1670896931, '__ci_last_regenerate|i:1670896931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e8dfd92422717a66d825c0514c212bba421190', '31.222.203.2', 1670896931, '__ci_last_regenerate|i:1670896931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f948c95f4702a5776dab98eeb4496746182cf6', '31.222.203.2', 1670896931, '__ci_last_regenerate|i:1670896931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c722b484dc85d2a06a65b06d15fbc8bc24ad45', '31.222.203.2', 1670896931, '__ci_last_regenerate|i:1670896931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4569e91931bae0ceefa6192e4eb05879777daa9', '31.222.203.2', 1670896931, '__ci_last_regenerate|i:1670896931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26441e4924fccc01e2bcdf70cf0d204b62c97e00', '31.222.203.2', 1670898728, '__ci_last_regenerate|i:1670898728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec3c58af090461784398bd238614782c71032ca', '31.222.203.2', 1670898730, '__ci_last_regenerate|i:1670898730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b41076753b6254c6859ee687938f887d80ab46', '31.222.203.2', 1670898730, '__ci_last_regenerate|i:1670898730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe9164256fb073fa35d5265c62eee6fd44aa688', '31.222.203.2', 1670898730, '__ci_last_regenerate|i:1670898730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bea5e2dd2757f11b06363cc6c92cc9eec5c836', '31.222.203.2', 1670898730, '__ci_last_regenerate|i:1670898730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca4b4f1d02bca956cf11242f75a77a6579fe03f', '31.222.203.2', 1670898730, '__ci_last_regenerate|i:1670898730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d60143c44dc6cd996efd923379c7eb44af01694', '198.235.24.170', 1670899019, '__ci_last_regenerate|i:1670899019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a15d056e5d1251bb042c81485e240684694fb4', '172.105.247.100', 1670899890, '__ci_last_regenerate|i:1670899890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b2d1b2d3689cd2937ff9a0203242f0bd144024', '172.105.247.100', 1670899891, '__ci_last_regenerate|i:1670899891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1246318e2c2853b1ce8fe6946d07ac27f5d0d953', '172.105.247.100', 1670899893, '__ci_last_regenerate|i:1670899893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d8948c0610f48712af9bc38baf7b9c045b8949', '172.105.247.100', 1670899893, '__ci_last_regenerate|i:1670899893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a920a50f90843f4399be63dec29d9e3ddcb68d1', '172.105.247.100', 1670899893, '__ci_last_regenerate|i:1670899893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586957c01a1f3b5a752b876db5f6ae9a7c3f191b', '172.105.247.100', 1670899893, '__ci_last_regenerate|i:1670899893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2303f5b9b2602bc38be8574d069e3026ada95e5a', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0f4af92e28b505cc2452bc7fe62a9421d84d3a', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7feb2599b6f95b8ac403c0709fa6f853e1f23952', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78314f8c6d8df51d205188eb8496681db25ded3', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7142a691d690858bf8f665ede854e859e831599', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077935cd1dff717a92c79e16a9a8de854a5378ba', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e4e6daeca004b821fd4cfb1551082b2f43dc91', '172.105.247.100', 1670899894, '__ci_last_regenerate|i:1670899894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c7cd47218926bd5a9bb192c027e3e8ef08d213', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614a51c6afcc68905926ef6f491762405821eca4', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad88cef28a680e049d9949813ae6ae231d9c3566', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a78ee67f9de72a8a019458eef0ab0ca6f593df', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44bf9d0cbdb544ddfcd76e59d4f2651a2ac44903', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434bb91131621a5d13bd2004376a700b5e24bf5c', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f7e42134e7ae20db72aad0357f5d706b94a745', '172.105.247.100', 1670899895, '__ci_last_regenerate|i:1670899895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c88a70279a4f03dca1eeb68520989544740efe3', '172.105.247.100', 1670899896, '__ci_last_regenerate|i:1670899896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b4c0699175725c629821dbd1e13886aa4a2f84', '172.105.247.100', 1670899896, '__ci_last_regenerate|i:1670899896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df904403d444fbe3d7bcc385697971a3606d38c', '172.105.247.100', 1670899896, '__ci_last_regenerate|i:1670899896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b02727e571338f268a7e32a97047aaa0aaea22', '172.105.247.100', 1670899896, '__ci_last_regenerate|i:1670899896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ba83718d81cc8e04fbebb5a8cd35358b2de8a6', '31.222.203.2', 1670900528, '__ci_last_regenerate|i:1670900528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e14a5db34c0fb88cfced78467330ae565ac1e79', '31.222.203.2', 1670900530, '__ci_last_regenerate|i:1670900530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c537f45911591c26af40b7b3599e1de295e25779', '31.222.203.2', 1670900530, '__ci_last_regenerate|i:1670900530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab52ab1204e5796a14a4ad2fca2038f61984545b', '31.222.203.2', 1670900530, '__ci_last_regenerate|i:1670900530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dafde2e2a2489d338a248eb1407e1306315c135', '31.222.203.2', 1670900530, '__ci_last_regenerate|i:1670900530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b82e844cb19aabd976a102eda034cf9319ea2c7', '31.222.203.2', 1670900530, '__ci_last_regenerate|i:1670900530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cace1a60841477f449a3f2c8a22a273897aee8ae', '31.222.203.2', 1670902327, '__ci_last_regenerate|i:1670902327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39135d3f8ec457ff26f8bd041b5f9f375faf31e2', '31.222.203.2', 1670902327, '__ci_last_regenerate|i:1670902327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07974fb11ac46f26b882244e3d261301ab003cbe', '31.222.203.2', 1670902327, '__ci_last_regenerate|i:1670902327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16eaa19fdfc15bc20ad35a94372e7440a4b15314', '31.222.203.2', 1670902327, '__ci_last_regenerate|i:1670902327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2395c7ab3ff75bde25824853e698ceb8bbcc297a', '31.222.203.2', 1670902327, '__ci_last_regenerate|i:1670902327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8418d7934fd49bab048544a5bf2436d0e7bf43', '31.222.203.2', 1670902327, '__ci_last_regenerate|i:1670902327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a0bdbc9c97b78df114ee76d21ed1132b061d729', '31.222.203.2', 1670904137, '__ci_last_regenerate|i:1670904137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b04fd4e3ad15c4100e065aacfeb35f4a96352a1', '31.222.203.2', 1670904137, '__ci_last_regenerate|i:1670904137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643cd2870a1b11e2064af115d4e6eee699ac2284', '31.222.203.2', 1670904137, '__ci_last_regenerate|i:1670904137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05278d3576d978825c781feb25925c7c94d9d1b8', '31.222.203.2', 1670904137, '__ci_last_regenerate|i:1670904137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd78cf943ce12ac63e9cf19bf1674157278b0a4', '31.222.203.2', 1670904137, '__ci_last_regenerate|i:1670904137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b62476ff217d205254a4196b84741be8da912bc', '31.222.203.2', 1670904137, '__ci_last_regenerate|i:1670904137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6c48bf355298d0d727cd8a61d5f04497c8ad3f', '172.105.247.100', 1670904689, '__ci_last_regenerate|i:1670904689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a31cff47d42203a4bb4a0367cc1f816c096df5', '172.105.247.100', 1670904689, '__ci_last_regenerate|i:1670904689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba745780ddf243d0d2b103a6a692d6434bf2b79e', '172.105.247.100', 1670904691, '__ci_last_regenerate|i:1670904691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383893a66cc19b123148fb717ec1de05498a6dc3', '172.105.247.100', 1670904691, '__ci_last_regenerate|i:1670904691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa68aceb285ab534d11800d4b53b64332f89f0ea', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf9d3b6c5aef01b1eb3351318124dd3aca6b479', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c5aa377be66af9fafa278e74cd221f31228dbe', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb74b1c1f14636e924f3dbd2de0a47b5d653e4a4', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6140e0c571040f139c741021665a44f3a90e86b7', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692f0591fe19833d2435abae6d057500f672adba', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3afd1482acaf0624f19e20b720fb7a2a591b5e51', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be94c7ca09b06003be621d71595f70e93c3babb', '172.105.247.100', 1670904692, '__ci_last_regenerate|i:1670904692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22765fd9572bb1d59b3ac6bade61ce9def4d9cdd', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33dcb9f63e974e0fab9d49f54209b5c82c350ab6', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a125a0b9f3c8a8b009ac2cf73e2e7ac3f7f45c8', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f252052d8a8f1b05bdca13e55f8d6a8e6b88a81d', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('351f8401bd7e895165a84b3e9917e484c4adf2a8', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c18b9fd5a23d3a78ede225c37a72bff9874cb4', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd2cc31fceadddd475051489b65a4cf98205ee0', '172.105.247.100', 1670904693, '__ci_last_regenerate|i:1670904693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7ab4ff00593e0df446c2decc88eeb25ce0aa8f', '172.105.247.100', 1670904694, '__ci_last_regenerate|i:1670904694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4c8c3dd75e6663acd6b75f7dd8ae9481f9cedd', '172.105.247.100', 1670904694, '__ci_last_regenerate|i:1670904694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeea375f318b081ebde7253cb1b60bd1110ec2b1', '172.105.247.100', 1670904694, '__ci_last_regenerate|i:1670904694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2cd6782bddf423d30edea6278f29c5344aa8a3', '172.105.247.100', 1670904694, '__ci_last_regenerate|i:1670904694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf024c4593a0b2d0a50650d2cfadfa809df5efc0', '172.105.247.100', 1670904694, '__ci_last_regenerate|i:1670904694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01224dcc987d6703ad3d4ed65ae6355476886c4', '31.222.203.2', 1670905925, '__ci_last_regenerate|i:1670905925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5139b1e4e959304fee5fe00c4e5ee3249cbb931b', '31.222.203.2', 1670905925, '__ci_last_regenerate|i:1670905925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf46921726757ebcaaf5a26790e081f037e0cb2', '31.222.203.2', 1670905925, '__ci_last_regenerate|i:1670905925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018830bf83a7cf254b8ed8436d8736cbddd19ec7', '31.222.203.2', 1670905925, '__ci_last_regenerate|i:1670905925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803f49b6557e4b29ffcab03233350898767aa585', '31.222.203.2', 1670905925, '__ci_last_regenerate|i:1670905925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae701f6644efcac5dcf25543ffd7866245e0da90', '31.222.203.2', 1670905925, '__ci_last_regenerate|i:1670905925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec3e2d0cd7ede216bb4ae71a0077e8e6e427cd3', '45.120.39.89', 1670915639, '__ci_last_regenerate|i:1670915639;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670832444\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670915594;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255cbfb41ff8cfbb21cf3eeec0e193c0ea20a47c', '31.222.203.2', 1670907724, '__ci_last_regenerate|i:1670907724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68596ada175dea0c891e5a653ffeb4d14e7b5a5a', '31.222.203.2', 1670907724, '__ci_last_regenerate|i:1670907724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b143625bdbabccb83e6bcfda9e8a879734a1e6', '31.222.203.2', 1670907724, '__ci_last_regenerate|i:1670907724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185f49f3f548ee7e5162a0bbd3fffce188dc4a5c', '31.222.203.2', 1670907724, '__ci_last_regenerate|i:1670907724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1050cca388adc5bf39c1be98d9dea3a10e56b0f5', '31.222.203.2', 1670907724, '__ci_last_regenerate|i:1670907724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bae741bbeee5617f5f58b487451370112bde5c', '31.222.203.2', 1670907724, '__ci_last_regenerate|i:1670907724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('127dbfc2b6757567070cf1b89be8b4eba40175cc', '172.105.247.100', 1670909495, '__ci_last_regenerate|i:1670909495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37d5fbbb3f8eb2b738d1bb51cefd101ef515bce', '172.105.247.100', 1670909496, '__ci_last_regenerate|i:1670909496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4ebc3f1f8bcd1ae3d3e43e634f4643fddf3ced2', '172.105.247.100', 1670909496, '__ci_last_regenerate|i:1670909496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b184da9310d9674ea7b546654ca1869b9bdf5cd', '172.105.247.100', 1670909496, '__ci_last_regenerate|i:1670909496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0b7d35a7d3664dceb7640ad84c36f163ebe7c1', '172.105.247.100', 1670909496, '__ci_last_regenerate|i:1670909496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dd39afc6952504839aa12725f1483e3ee8d2ceb', '172.105.247.100', 1670909497, '__ci_last_regenerate|i:1670909497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f5a8b76a0842cb448f2abe29f8017773019f18', '172.105.247.100', 1670909497, '__ci_last_regenerate|i:1670909497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6a718993e4ea18c887c4612406159565ccc1d2', '172.105.247.100', 1670909497, '__ci_last_regenerate|i:1670909497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839a96da6c15279d4b56ba6b254069d2d2892413', '172.105.247.100', 1670909497, '__ci_last_regenerate|i:1670909497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23064039e63655a654a5eca655339b65d9775dcf', '172.105.247.100', 1670909498, '__ci_last_regenerate|i:1670909498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0866e9f055e4341790f7690a733de69e6bf07a', '172.105.247.100', 1670909498, '__ci_last_regenerate|i:1670909498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5adf12d8b13d9394a3906a645049f5fd2944600', '172.105.247.100', 1670909498, '__ci_last_regenerate|i:1670909498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30849295c17452b0a44bf10ff44dd96bdec5acc', '172.105.247.100', 1670909498, '__ci_last_regenerate|i:1670909498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8530b8e41607dcca8d9567aa6830981cf4e7f706', '172.105.247.100', 1670909499, '__ci_last_regenerate|i:1670909498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5155a8dea7238bf04a904401d58e66f7fea28f4c', '172.105.247.100', 1670909498, '__ci_last_regenerate|i:1670909498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79e041debc0fe7fe316920de03f16b80f125147', '172.105.247.100', 1670909499, '__ci_last_regenerate|i:1670909499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e6df34182750637226fe40b689ec1b87112a17', '172.105.247.100', 1670909499, '__ci_last_regenerate|i:1670909499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9688a65baac4b88a6f11ab479536b5642bc4a15', '172.105.247.100', 1670909499, '__ci_last_regenerate|i:1670909499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b31f21d48f81d7bca08cd421d775add343a6c6', '172.105.247.100', 1670909500, '__ci_last_regenerate|i:1670909500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e8da9d31c5e1a2e2f3868bf2187d7589347e41', '172.105.247.100', 1670909500, '__ci_last_regenerate|i:1670909500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbae9fa9367492c98b822069dd4efddf0d792785', '172.105.247.100', 1670909500, '__ci_last_regenerate|i:1670909500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46e388bd7d3d1f2308377d40405ce9ea7f8b631', '172.105.247.100', 1670909500, '__ci_last_regenerate|i:1670909500;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c4f886e437a67b479b5e949939015d934dcc1e', '172.105.247.100', 1670909501, '__ci_last_regenerate|i:1670909501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3d626aca289d07a0bf2aa6909655fcdef494a6', '172.105.247.100', 1670909501, '__ci_last_regenerate|i:1670909501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feebd891e5c9efb6e148418207d8f737011002ad', '31.222.203.2', 1670909541, '__ci_last_regenerate|i:1670909541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a83be263edb04d5dd66b70b086dd85848841900', '31.222.203.2', 1670909543, '__ci_last_regenerate|i:1670909543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2762d716fd0884ca0d57249bedf7da842806fa', '31.222.203.2', 1670909543, '__ci_last_regenerate|i:1670909543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27fd847cd9a4cba7fe99f8236363602bbca9d16f', '31.222.203.2', 1670909543, '__ci_last_regenerate|i:1670909543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d3d1a1e8b706f461b3eb1c97fd38f65a682229', '31.222.203.2', 1670909543, '__ci_last_regenerate|i:1670909543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96db80da68b3def0176a434225b1165c89fa0261', '31.222.203.2', 1670909543, '__ci_last_regenerate|i:1670909543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a408c9893177756addc98794c293841a74693e8', '116.204.230.25', 1670911581, '__ci_last_regenerate|i:1670911581;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9eef583a9ef10bbc7eaa73d3d48a73cda6a2711', '31.222.203.2', 1670911325, '__ci_last_regenerate|i:1670911325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231701b1223dadf967260fe2364bf362f696410c', '31.222.203.2', 1670911326, '__ci_last_regenerate|i:1670911326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f703c1b7376c759bbba44afc0b8b7489e4ed2eab', '31.222.203.2', 1670911326, '__ci_last_regenerate|i:1670911326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b680b6d2fd464be721d29ab98fc7e4de386ae1', '31.222.203.2', 1670911326, '__ci_last_regenerate|i:1670911326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d64e95cd0aca259fe897e90d572bf7845b83f1', '31.222.203.2', 1670911326, '__ci_last_regenerate|i:1670911326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a61e9f2dea69b8648a53a3948ed824348a9f436', '31.222.203.2', 1670911326, '__ci_last_regenerate|i:1670911326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf61e1900233a71ce07b2d1ffc8d060c098723f', '116.204.230.25', 1670911917, '__ci_last_regenerate|i:1670911917;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670911789;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2beb8181c60a960766c98079d235cdfc667fbd7a', '116.204.230.25', 1670912400, '__ci_last_regenerate|i:1670912400;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670911917;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55907bdd6b712566eb378619576a2c5b5653badf', '116.204.230.25', 1670912735, '__ci_last_regenerate|i:1670912735;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670911917;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a12f00dd072ba05605b9debb9c4de188b172636', '116.204.230.25', 1670913128, '__ci_last_regenerate|i:1670913128;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670913081;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3b9324086dade81ae930a438fa982a81041529', '31.222.203.2', 1670913121, '__ci_last_regenerate|i:1670913121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('436ccc3266abf17bee6f5ebb56395b10b1e247e8', '31.222.203.2', 1670913124, '__ci_last_regenerate|i:1670913124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a39e7e9bc425aa04662030aafaede4e60aea21', '31.222.203.2', 1670913124, '__ci_last_regenerate|i:1670913124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7331d8f98d1c2621bfe233eff81344ed9b78c37b', '31.222.203.2', 1670913124, '__ci_last_regenerate|i:1670913124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced6fa87d5e4a7a7a5442ece38ebd3e0eb934da2', '31.222.203.2', 1670913124, '__ci_last_regenerate|i:1670913124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c825c0a09b4f313a79d36cc38ee4dc21c7730a', '31.222.203.2', 1670913124, '__ci_last_regenerate|i:1670913124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19410d00d3c076a6a42840d3b4376ed649293153', '116.204.230.25', 1670913460, '__ci_last_regenerate|i:1670913460;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670913081;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";user_csrf|s:20:\"wHMhO8DUXrVLiIB17234\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488153b23fc394625632a00aabfb044edb053b18', '116.204.230.25', 1670913460, '__ci_last_regenerate|i:1670913460;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670827493\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1670913081;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";user_csrf|s:20:\"wHMhO8DUXrVLiIB17234\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea44dc6de6ca2a22aa2b22a4b6b97c4396eb4fbd', '172.105.247.100', 1670914293, '__ci_last_regenerate|i:1670914293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c006a91114cd8b06574341accae7867365783127', '172.105.247.100', 1670914294, '__ci_last_regenerate|i:1670914294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37bdf4eb668c6ada459bebdab4ec13d381bf4ae7', '172.105.247.100', 1670914294, '__ci_last_regenerate|i:1670914294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb57518ee5568221f1fb7279c88d4d20f44ef80b', '172.105.247.100', 1670914294, '__ci_last_regenerate|i:1670914294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7420746e0c1627fd91752392b617682610e45686', '172.105.247.100', 1670914294, '__ci_last_regenerate|i:1670914294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b335c8db563dc2195dacc3a0f0934b774a90745', '172.105.247.100', 1670914295, '__ci_last_regenerate|i:1670914295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407a61ff41f14b0c66e336a63c01e987e872416c', '172.105.247.100', 1670914295, '__ci_last_regenerate|i:1670914295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56081fc464a7ef2550f9ffa79ecac9927c6e543c', '172.105.247.100', 1670914295, '__ci_last_regenerate|i:1670914295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c462b0ddb96d947a306871a37a5d187aee76657', '172.105.247.100', 1670914295, '__ci_last_regenerate|i:1670914295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf93f79c54ca01f8546b72570327159e871fc34', '172.105.247.100', 1670914295, '__ci_last_regenerate|i:1670914295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca4ced8e8338fd2b1f041bef28b5a5a64aa300b', '172.105.247.100', 1670914295, '__ci_last_regenerate|i:1670914295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d630118439531d91395814285690ad9d28b151', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19af659bef21f16642d6a60d0bafe045eaa51d2d', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba0cc6d36a68c6a1275131f15ab35c767440a76', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98a5727eed273e8224165b56519d319539e0ec5', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fbb2cbe141534c79aacaf4f9c23b32b13e5a1e8', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac4d36b4bde5c38f42b9292a8e653d4ae5fa7cf', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f500aaae79fb3a14317ba6b87331ea68c9ac9732', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27dd08364937ff8408a0e59ad94cfc7af253d369', '172.105.247.100', 1670914296, '__ci_last_regenerate|i:1670914296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf3f606904e9a72d0ec09ccf49f1366f5ba5443', '172.105.247.100', 1670914297, '__ci_last_regenerate|i:1670914297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c54661eb9f29dd8a8591f1d28353627637bd205', '172.105.247.100', 1670914297, '__ci_last_regenerate|i:1670914297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11952c788b9f57afde2d631f5e133cc1b51c36ba', '172.105.247.100', 1670914297, '__ci_last_regenerate|i:1670914297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8fc0226e13291af4ebe6b7618410d995c2c7ccc', '172.105.247.100', 1670914298, '__ci_last_regenerate|i:1670914298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba999ac08244b5d0adcb83977890dee1dfd1031', '172.105.247.100', 1670914298, '__ci_last_regenerate|i:1670914298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cacdd9be7ca8774493fad65fad456f54b3b61ae', '31.222.203.2', 1670914924, '__ci_last_regenerate|i:1670914924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc63ee9a7976896014188b1360644839f9ec5483', '31.222.203.2', 1670914925, '__ci_last_regenerate|i:1670914925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d27d79139030407c4a000369c330e069ffdda8', '31.222.203.2', 1670914925, '__ci_last_regenerate|i:1670914925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79634a201e074b17649320654091dd26fb582237', '31.222.203.2', 1670914925, '__ci_last_regenerate|i:1670914925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7366050d27fc7950f247ee7b05b7ee966a03e34b', '31.222.203.2', 1670914925, '__ci_last_regenerate|i:1670914925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bee069abdce7b431892246520ac74ce62c7474e', '31.222.203.2', 1670914925, '__ci_last_regenerate|i:1670914925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3248c540207f5f2604a8dd6ba42f39b4e0ce6133', '45.120.39.89', 1670915640, '__ci_last_regenerate|i:1670915639;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670832444\";last_ip|s:14:\"37.111.218.240\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670915640;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f992a6d64fbede99cc0717231f0be9f3ea645f8e', '31.222.203.2', 1670916722, '__ci_last_regenerate|i:1670916722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b58ef54cf1bd3beafbfc9db4505ede9212876bf', '31.222.203.2', 1670916722, '__ci_last_regenerate|i:1670916722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c227d1290e6d01c59b29fd46179e2a5e0e6d119e', '31.222.203.2', 1670916722, '__ci_last_regenerate|i:1670916722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846919543b6ae559891d784286072020b4ceb332', '31.222.203.2', 1670916722, '__ci_last_regenerate|i:1670916722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3d661ab9d05095aabf0712f31f944b7f9e841c', '31.222.203.2', 1670916722, '__ci_last_regenerate|i:1670916722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f02335c4caae139cc999dbb73f6a4531266449', '31.222.203.2', 1670916722, '__ci_last_regenerate|i:1670916722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c97f505ca72ee803377a928a9c5ea8bfcf55f0e', '31.222.203.2', 1670918528, '__ci_last_regenerate|i:1670918528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c573a3e30fd5a1c4310a07d53ac100927bd940', '31.222.203.2', 1670918529, '__ci_last_regenerate|i:1670918529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b9e6c230048dcf3539536bf45f5ebf1891e5e5', '31.222.203.2', 1670918529, '__ci_last_regenerate|i:1670918529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf243389d79d6ffbd6e5eb933e0fb83c5c7fc0e', '31.222.203.2', 1670918529, '__ci_last_regenerate|i:1670918529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3009ac77f892d7748a1657763471793df8859319', '31.222.203.2', 1670918529, '__ci_last_regenerate|i:1670918529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e272f6962f338bee8780097052f6546b2234e9', '31.222.203.2', 1670918529, '__ci_last_regenerate|i:1670918529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6e93d7c8bcaac8c0404a06a60496aba3a43cca', '172.105.247.100', 1670920303, '__ci_last_regenerate|i:1670920303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c95496b2fc413447b7eda5451ff4bd49d12d240', '172.105.247.100', 1670920304, '__ci_last_regenerate|i:1670920304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20def428d6c7a129d242598e60df80a49a4462e7', '172.105.247.100', 1670920306, '__ci_last_regenerate|i:1670920306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378b9f48801116df050ff846e211b27459e62722', '172.105.247.100', 1670920306, '__ci_last_regenerate|i:1670920306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5a0103e38f6a5802d3eee897d148e9fb2ef7d0', '172.105.247.100', 1670920306, '__ci_last_regenerate|i:1670920306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b116064e48266a87d50421d78f12b4dd800cff9b', '172.105.247.100', 1670920306, '__ci_last_regenerate|i:1670920306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3b24e8e4fa1cac9e118d83b537596391bf89d0', '172.105.247.100', 1670920306, '__ci_last_regenerate|i:1670920306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('677225cf7499b2f8bc27b9a7bc385d8c61c16242', '172.105.247.100', 1670920306, '__ci_last_regenerate|i:1670920306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59a62ea6769604ee0069dabb4c0e4bf2989ed04', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4271184df665436cca1e703136a18b02a7b375c', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9b56c42976156bc56ba249c6c935a9cfef6f15', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf34a6b5dcdf58d42955db0bf36e8e973d1113aa', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063ead78e0dd6bf6ef0c0e5b96a5fd8687a46506', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47abbee45f79d2a0495b8eeb3c4cdc88acbb08f7', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4faa9e96f027f4515fe64553a8edbf3773152522', '172.105.247.100', 1670920307, '__ci_last_regenerate|i:1670920307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923e19916275eddf37c4465d79e7f47e1a54087b', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920307;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a6ff059671d07b93e73e17e5c8cb945b136fbf', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c522774149a6523c48452fcc94ca1c4754f84a', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b2de005f1b6b3a69838948a66fd0903a14cf8a', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1737e0c96ad6896a90447580a3cb5a6103328a06', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a5212fa20aa001a923e6de118681012ed168e5', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('227dc426b2762caf08026a054c2b4aabd9ff33a3', '172.105.247.100', 1670920308, '__ci_last_regenerate|i:1670920308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8c0a7ed31b5f97c04bea42be182d81f6b2c284', '172.105.247.100', 1670920309, '__ci_last_regenerate|i:1670920308;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a9b1dec748935f16acf0083e8bb8bb51c0a19d0', '172.105.247.100', 1670920309, '__ci_last_regenerate|i:1670920309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d224d563c5cfe8d5985514dd6a182a00903a2d4e', '31.222.203.2', 1670920327, '__ci_last_regenerate|i:1670920327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b39566f283dc6fbd3c70ec50302c07b9763d48', '31.222.203.2', 1670920328, '__ci_last_regenerate|i:1670920328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d3fe6b1dcd2ef3c75090793b67debf0a84134d', '31.222.203.2', 1670920328, '__ci_last_regenerate|i:1670920328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a94f27b8b6519b63cd29f3d7d2a2fb73b033e593', '31.222.203.2', 1670920328, '__ci_last_regenerate|i:1670920328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea41d6118b6c2a88673b46056f9170cf364f81a', '31.222.203.2', 1670920328, '__ci_last_regenerate|i:1670920328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eae6e4cb3389b6c114e161a991864b2672b5410', '31.222.203.2', 1670920328, '__ci_last_regenerate|i:1670920328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7afc08eb9f7cef12827dc20e8ade2648eeed39f3', '31.222.203.2', 1670922131, '__ci_last_regenerate|i:1670922131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7625aa62d5ac7e08a11835cef27754163da66701', '31.222.203.2', 1670922131, '__ci_last_regenerate|i:1670922131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3983e51ea7fb7c654e0abffd0f9e217f90b3e717', '31.222.203.2', 1670922131, '__ci_last_regenerate|i:1670922131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379ff43731ef79048bdd03f306ceb4f600bc3f8a', '31.222.203.2', 1670922131, '__ci_last_regenerate|i:1670922131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c87b2af2761fbaec57bcf9383771c31680144b', '31.222.203.2', 1670922131, '__ci_last_regenerate|i:1670922131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f9e646bf82886450f5b8973e1327e1bbd3579e0', '31.222.203.2', 1670922131, '__ci_last_regenerate|i:1670922131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c94198135196cfb02c4eb831fe1b0f98129746f', '31.222.203.2', 1670923931, '__ci_last_regenerate|i:1670923931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c0500f821f57a7ba302d2b57cfe5409a3fb025', '31.222.203.2', 1670923933, '__ci_last_regenerate|i:1670923933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012fec161ab7bd255399493134e4fb2297a18266', '31.222.203.2', 1670923933, '__ci_last_regenerate|i:1670923933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff94bc657bb752c7983a708160dbaee06fbe2f7e', '31.222.203.2', 1670923933, '__ci_last_regenerate|i:1670923933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba5fc4f8fb690799a5f8b3c554c5f0520a362d7e', '31.222.203.2', 1670923933, '__ci_last_regenerate|i:1670923933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1613487fd9476a7d79935e0b4799a0d10a87409', '31.222.203.2', 1670923933, '__ci_last_regenerate|i:1670923933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73345a56014a2f02969d8dd7352da701c8e2fe47', '172.105.247.100', 1670925083, '__ci_last_regenerate|i:1670925083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ff25a4db21f1d3b2e9a8b239846c5a8fe08408', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd66fa84422a7fd1fd23565e8817473813b8e23', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655e47d1d23c78289b60d8e14f3c46d5d208c2c3', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5634dd2bdbc1513d98a0d8c60b153a5fddf469b9', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575f199d4ba66a435698f0d6aade3f8be965074c', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48654ddc249f44470d3ceff9518b5b0962b9772c', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6595e59e66a95b2a8695bb9fe40b2a906b3faf78', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5394975966c78bf63663c0526efdfdcb8330790', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8312ee854449832cbaccbf932c88f500a166d9b', '172.105.247.100', 1670925084, '__ci_last_regenerate|i:1670925084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad03a19b98ce9c5be20071e38e5e60d7a6722aec', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f87f802d1232abc9677858925e4a81052c958a7a', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed5dba9a15dbd178504bcdb70ec3f3c03c127f0', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3adb14d3453c567c5f6b3c44c91a54584291677e', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c7bdcae34b0fad987e9cc2f11f48f39d064ce4', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3c7c8d2541ce9e536ebc322541d00e5d8449026', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a8247e67ea173ce051fc2647822a0900c3b94d', '172.105.247.100', 1670925085, '__ci_last_regenerate|i:1670925085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb8385885b31755f2f2059837e1c7cd4eb2fd64', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858df8959dfaac1f6dcce0414c0cb75a3fd7a6fc', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04445c2f3950c2a885433cb84fef456d99fc84c2', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc2c3edcfe12be31ba810db02858701531283569', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37b179006a33f19f132a4ea61e11ddfb4c61903', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b463fdc0250eb0991933551f89332058ff6df049', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('066894e4bface621218a716e29cc32174b0cabed', '172.105.247.100', 1670925086, '__ci_last_regenerate|i:1670925086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0fe5d4ef4a3eef10511c57326999bd6aac5f8dd', '45.120.39.89', 1670926099, '__ci_last_regenerate|i:1670926099;requested_page|s:23:\"admin/pos/open_register\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670907264\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670925858;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c78480e4b701bc79acbc6a6db2e6dbdff387d8', '31.222.203.2', 1670925721, '__ci_last_regenerate|i:1670925721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb95edf2dbf1ea01eb73f0b71ab3478d6a7f7c81', '31.222.203.2', 1670925723, '__ci_last_regenerate|i:1670925723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60ac8aa7267cc0be6736f6c923591c3a7ac07fb', '31.222.203.2', 1670925723, '__ci_last_regenerate|i:1670925723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7e5680983d2e687a9a65b5edd67cfbea040729', '31.222.203.2', 1670925723, '__ci_last_regenerate|i:1670925723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed1e85ada97d80d1b3a0ed15056e3a113b4d02a', '31.222.203.2', 1670925723, '__ci_last_regenerate|i:1670925723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075256a5625f60313d75335c7b9cc0968075e90f', '31.222.203.2', 1670925723, '__ci_last_regenerate|i:1670925723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195e9b3ebf0833889be61bd839034b03dcb64c40', '45.120.39.89', 1670930298, '__ci_last_regenerate|i:1670930298;requested_page|s:23:\"admin/pos/open_register\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670907264\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670930230;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42cd0f2d1cafd57117f19ffd5d2b0eefacf6285b', '31.222.203.2', 1670927525, '__ci_last_regenerate|i:1670927525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f498460136cad211348de9a995d46f71982cbc57', '31.222.203.2', 1670927527, '__ci_last_regenerate|i:1670927527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1472b86ced16ad16461b7fce0eb838cb878d0006', '31.222.203.2', 1670927527, '__ci_last_regenerate|i:1670927527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e82ebc1b3328eac719a5335d64dee2374e2618', '31.222.203.2', 1670927527, '__ci_last_regenerate|i:1670927527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f073a17da2f9c4db6341539b5e5187681a68619c', '31.222.203.2', 1670927527, '__ci_last_regenerate|i:1670927527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c6c05e071c38cd853f4e9f4202e27144876b1f', '31.222.203.2', 1670927527, '__ci_last_regenerate|i:1670927527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369f036b6f9c6ce83074a422fd879c3937cfbb77', '31.222.203.2', 1670929323, '__ci_last_regenerate|i:1670929323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecafb399e65febaae0b9a4f175334b930c177662', '31.222.203.2', 1670929323, '__ci_last_regenerate|i:1670929323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ea70b744ceb66f2cae4a3b4f38271b4ce50ad5', '31.222.203.2', 1670929323, '__ci_last_regenerate|i:1670929323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9dad1fef43478e0869b83a0d0b36662f8596de', '31.222.203.2', 1670929324, '__ci_last_regenerate|i:1670929324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb3f503624d11e43793fe087d5acc39c76d6b6e', '31.222.203.2', 1670929324, '__ci_last_regenerate|i:1670929324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de0cf8e0db6a767bccba1389741c3d51b77be1a3', '31.222.203.2', 1670929324, '__ci_last_regenerate|i:1670929324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dbd10eaf6667fc14e4d31561bdaf8609bf00578', '116.204.230.18', 1670935810, '__ci_last_regenerate|i:1670935810;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670911278\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c18abdf311c9a6939b47505975cc8be677b2ec1', '172.105.247.100', 1670929890, '__ci_last_regenerate|i:1670929890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266782af8c9e8c567c9b3348b1f769f8816a1180', '172.105.247.100', 1670929890, '__ci_last_regenerate|i:1670929890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faba0bcbbb52ff3e7ca1f1c57bfa5cc1b5037961', '172.105.247.100', 1670929890, '__ci_last_regenerate|i:1670929890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13c5d87ce2162646873e835529cb11ccd0b0d83a', '172.105.247.100', 1670929891, '__ci_last_regenerate|i:1670929891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c95bf18e78392906f4fa2d28223f86fb592234', '172.105.247.100', 1670929891, '__ci_last_regenerate|i:1670929891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a211df384d1b67bec667ceb8c004a102ff91a78', '172.105.247.100', 1670929891, '__ci_last_regenerate|i:1670929891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736a64d0fd18471c7993c9cad38cfa6fd4cf79cd', '172.105.247.100', 1670929891, '__ci_last_regenerate|i:1670929891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e9e4a6960f1752bec17e0ebbffb746ade314cd', '172.105.247.100', 1670929892, '__ci_last_regenerate|i:1670929892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15df80bef6793915394f5caef854a4b57985f2e7', '172.105.247.100', 1670929892, '__ci_last_regenerate|i:1670929892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7589aad86523daf6041ff3732fa98d78ab6cc69', '172.105.247.100', 1670929892, '__ci_last_regenerate|i:1670929892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('890db24777ccb49bec6991a191158c29658829bf', '172.105.247.100', 1670929892, '__ci_last_regenerate|i:1670929892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6fed4ece5ad12d819a40d584fb46147c3265995', '172.105.247.100', 1670929892, '__ci_last_regenerate|i:1670929892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe1e067dd495aac3c943ee541500ae0526f56a8', '172.105.247.100', 1670929892, '__ci_last_regenerate|i:1670929892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806e8a4b659c22cfd6952aa1ef472ce335435262', '172.105.247.100', 1670929893, '__ci_last_regenerate|i:1670929892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b144c33b4bcce6c1b147d5c925c99be8031e83e', '172.105.247.100', 1670929893, '__ci_last_regenerate|i:1670929893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912e0ff394d67f6b7c3af025dfdbd11569468465', '172.105.247.100', 1670929893, '__ci_last_regenerate|i:1670929893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6af68dd63f6045c427462353b2b44f8df5c0a28', '172.105.247.100', 1670929893, '__ci_last_regenerate|i:1670929893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5443dde952bfc7ef813d6b680a1b3d7bbf03d3c', '172.105.247.100', 1670929893, '__ci_last_regenerate|i:1670929893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445be18cc07788fbe8cd5ad6ef9c6bac1ea79779', '172.105.247.100', 1670929893, '__ci_last_regenerate|i:1670929893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee490e8c3ebbebbbe3c203184b10172302df63fc', '172.105.247.100', 1670929894, '__ci_last_regenerate|i:1670929894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63cca2b1f5fe0be112db8ce2bbbb9d581c760bb', '172.105.247.100', 1670929894, '__ci_last_regenerate|i:1670929894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0278734ed00c6f008d541a949a202e78b589be31', '172.105.247.100', 1670929894, '__ci_last_regenerate|i:1670929894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1597981dd1d35330b9c6bb654ad75496f291c308', '172.105.247.100', 1670929894, '__ci_last_regenerate|i:1670929894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88def950ff29fd2dd56429cfc50a773df97d1b8', '172.105.247.100', 1670929895, '__ci_last_regenerate|i:1670929895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21daad8f5ba8f602dcf83470dd388b17baf6ee5a', '45.120.39.89', 1670931806, '__ci_last_regenerate|i:1670931806;requested_page|s:23:\"admin/pos/open_register\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670907264\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670930298;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb88be40fbd0bb2162946ba3bc0ad427e29c3075', '31.222.203.2', 1670931125, '__ci_last_regenerate|i:1670931125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26288cbe7ad15bd49a7ae644e8a983dea40e0378', '31.222.203.2', 1670931127, '__ci_last_regenerate|i:1670931127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8336a9f8397fc5966308dd5b95b3a76b96879a5', '31.222.203.2', 1670931127, '__ci_last_regenerate|i:1670931127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e2954821897f806ce7500fd4fb6042927ac7f1', '31.222.203.2', 1670931127, '__ci_last_regenerate|i:1670931127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e4bbb75bc1a5cfe83d186a27c903de055099ac6', '31.222.203.2', 1670931127, '__ci_last_regenerate|i:1670931127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75de768bcd21a17bf96dabf18926d832547fbe8', '31.222.203.2', 1670931127, '__ci_last_regenerate|i:1670931127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81c0ddd8adc7b435126fbe7017e2d6295790825', '45.120.39.89', 1670932874, '__ci_last_regenerate|i:1670932874;requested_page|s:23:\"admin/pos/open_register\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670907264\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670932851;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3b35281a042a281961d7ea305159c7f71bc255', '45.120.39.89', 1670932875, '__ci_last_regenerate|i:1670932874;requested_page|s:23:\"admin/pos/open_register\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670907264\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670932875;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12437ac33e080cff029cb77119996ced1eaa67e8', '31.222.203.2', 1670932930, '__ci_last_regenerate|i:1670932930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11becd752912fe45de5fc8b1df26b2b2cc2496c', '31.222.203.2', 1670932932, '__ci_last_regenerate|i:1670932932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70c8d67dbe42bf743d57d97b1182d2507124c16', '31.222.203.2', 1670932932, '__ci_last_regenerate|i:1670932932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d233c6a6dac1494ac6505590ef44b1f52a2d62', '31.222.203.2', 1670932932, '__ci_last_regenerate|i:1670932932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db2e3d5e6aa15246c7344ace2bbdf387a4c0137', '31.222.203.2', 1670932932, '__ci_last_regenerate|i:1670932932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3c8d734d508ecf168ce2ab4502a87e1657d90d6', '31.222.203.2', 1670932932, '__ci_last_regenerate|i:1670932932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a9eaf62c56eb6bcf2b0fd8e70f700f4b547b93', '31.222.203.2', 1670934730, '__ci_last_regenerate|i:1670934730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e63ae811f8bbf6a0a97e3094fb9e2c2e747378', '31.222.203.2', 1670934732, '__ci_last_regenerate|i:1670934732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1148f8fa6c43c07de244a0ba0791764811589337', '31.222.203.2', 1670934732, '__ci_last_regenerate|i:1670934732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34160deabf5ea1577c5661e1faaff9f04b783e33', '31.222.203.2', 1670934732, '__ci_last_regenerate|i:1670934732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('011dac0a1fbf0829da263e9ea4523c58d75eff5a', '31.222.203.2', 1670934732, '__ci_last_regenerate|i:1670934732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cdcae5ccf8e8fdece8031dafaff5323a83ab633', '31.222.203.2', 1670934732, '__ci_last_regenerate|i:1670934732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d2e2c3954e613fda61ed14b6db27acf3bbbdb5', '101.68.211.2', 1670935187, '__ci_last_regenerate|i:1670935187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e96a8026d861de8e359e7d997be287f78b2420f', '101.68.211.2', 1670935190, '__ci_last_regenerate|i:1670935190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20aeee09ae32cadb2ca3075091b317e6af0402ee', '172.105.247.100', 1670935288, '__ci_last_regenerate|i:1670935288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb1ea0b3e90a1b4615c1724c29a8630c606a56d', '172.105.247.100', 1670935290, '__ci_last_regenerate|i:1670935290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390f44b9091c53112df11de6b3b5069f01e8d679', '172.105.247.100', 1670935290, '__ci_last_regenerate|i:1670935290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903d4745aa5b2e734a564c55e76e629ee2e0bcb4', '172.105.247.100', 1670935290, '__ci_last_regenerate|i:1670935290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4099745a72b5c6ff6ca7a0cca8a7fee06dcc4cfc', '172.105.247.100', 1670935290, '__ci_last_regenerate|i:1670935290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2914b191c346b36301034761cbf71403dd6232', '172.105.247.100', 1670935290, '__ci_last_regenerate|i:1670935290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdaacce293c00dbfe051d3cd39e07d3e7d435151', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf5b4d23a9921027a8fb4723278a5ca65f68dd6', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a467805d6b8c0cc969e0889afacd5fd96a9ae5', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e38013b4c3389d92ed572ab6a307e469bf1e2d', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4226fc2a18124e6fe3f2df27287ce3dc514613ad', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a496ea26ea85cfa0b2c6b4ce32a2abd1c358f6f', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aea0ce81c998bc25c7d3341c46c37e2ca23b041f', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141dd02c71fdbdcb421cd6628718d927282d5581', '172.105.247.100', 1670935291, '__ci_last_regenerate|i:1670935291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec576bb6982dbe5227e2d9a825388ea1f263529', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d062ac0d6d3e63abd6cd44fa513a6290fdcc5be', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67922c82623fe1fe2969f63e920aaadb78fd7be3', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed7d698848f2933534340fca636906be60be278f', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b5a2c9ca623524c68103512a7e458655b0cf16', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85164392141e77b6a6b2ced6e8727f334ad9f8b0', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67a241c9909d3815469092a00106fcb848ea100', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c365b456e128a7ba094ac4c62a9a5ccd8c61f61e', '172.105.247.100', 1670935292, '__ci_last_regenerate|i:1670935292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b213cd338b6fba70be3264256b3a389cc715111b', '172.105.247.100', 1670935293, '__ci_last_regenerate|i:1670935293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1749aa4cf526aec721049b2533d1387ca57fb5a1', '172.105.247.100', 1670935293, '__ci_last_regenerate|i:1670935293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9e1ff76428b94d32cb6bc3af8c4e23b8d3e62d', '101.68.211.2', 1670935303, '__ci_last_regenerate|i:1670935303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1697da35b2fe41f315aca658a75495e790ea4ccb', '101.68.211.2', 1670935306, '__ci_last_regenerate|i:1670935306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1376cac6f684a297e525ff6883e933bf8f64a3b2', '101.68.211.2', 1670935307, '__ci_last_regenerate|i:1670935307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('387b3c6b1ab84ed2faea922076fb9550f15d4150', '101.68.211.2', 1670935308, '__ci_last_regenerate|i:1670935308;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('090966c484aa818c2c9d62468a322e61626815c3', '101.68.211.2', 1670935309, '__ci_last_regenerate|i:1670935309;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b1d83638467027f1dd7cc0ac919971d57c2601', '180.163.220.68', 1670935347, '__ci_last_regenerate|i:1670935339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7cd97f23abd9245ae26a8bec19f7f126167d276', '101.68.211.2', 1670935389, '__ci_last_regenerate|i:1670935389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d0e49c96e66cc3ab01c01cd1e4fba68b8d5783c', '101.68.211.2', 1670935390, '__ci_last_regenerate|i:1670935390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247b3146f5641555fb31a306943420e3655272e0', '101.68.211.2', 1670935434, '__ci_last_regenerate|i:1670935434;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ecdc50eda39986ea08ac2503be5a5b0ed4437b', '101.68.211.2', 1670935477, '__ci_last_regenerate|i:1670935477;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02619f91eff0f4e501cfd2af580cb64a2aeb815c', '116.204.230.18', 1670939911, '__ci_last_regenerate|i:1670939911;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670911278\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5019873301cc0a1d86be7f0dbba68c8d1488ec', '31.222.203.2', 1670936531, '__ci_last_regenerate|i:1670936531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d083f1a9cda2781b7a10743a2abe2695f51d886', '31.222.203.2', 1670936533, '__ci_last_regenerate|i:1670936533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7015e5f2c3afe328a8ca0fca2a7621846e023777', '31.222.203.2', 1670936533, '__ci_last_regenerate|i:1670936533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96b2508632a4bfcc6de588680e309a682e04ed4', '31.222.203.2', 1670936533, '__ci_last_regenerate|i:1670936533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b638174826abb2feb9c040f75e63175c97c15f', '31.222.203.2', 1670936533, '__ci_last_regenerate|i:1670936533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b008b68200a9bd40405d2e24a58f14e7b0dd40ef', '31.222.203.2', 1670936533, '__ci_last_regenerate|i:1670936533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c91cd2978f963f322bad460b1233778b303a93', '31.222.203.2', 1670938325, '__ci_last_regenerate|i:1670938325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0dcf797bd652f53bb7a8cb0eb4fe079e65d0cc', '31.222.203.2', 1670938325, '__ci_last_regenerate|i:1670938325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8214f75b64d54c60746fbf82887d970ee824b2da', '31.222.203.2', 1670938325, '__ci_last_regenerate|i:1670938325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf125bddfaaf6d437cf96ea4850cf835cdd3038', '31.222.203.2', 1670938325, '__ci_last_regenerate|i:1670938325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea236dc86b4a9494b80cc7c94e27320a26b68011', '31.222.203.2', 1670938325, '__ci_last_regenerate|i:1670938325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef214f7b75f93b79bd3d4fd19f5658cf2f6fbbb', '31.222.203.2', 1670938325, '__ci_last_regenerate|i:1670938325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e68c4c16d4594999998cca94aaf291bba2147a', '116.204.230.18', 1670939919, '__ci_last_regenerate|i:1670939911;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670911278\";last_ip|s:14:\"116.204.230.25\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5cd5d1b49edd2dba1607b6e0cfb9fa65d5236b7', '172.105.247.100', 1670940089, '__ci_last_regenerate|i:1670940089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4506f60451f866d85baa0f2aacecbb9590644e5f', '172.105.247.100', 1670940090, '__ci_last_regenerate|i:1670940090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e61e44ee169a8701781a70ea948ac010d118332', '172.105.247.100', 1670940090, '__ci_last_regenerate|i:1670940090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c2a1a23fecc249d93ed5360340a2d0eb2a4a1b', '172.105.247.100', 1670940090, '__ci_last_regenerate|i:1670940090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94aab11820d9e427655db57db65c5c974c772cd', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e444c3b811fcfadfe6389d11f45e91f67c7b61', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e40e5f11fad71b223563404f7c8b2438dc3b8c0f', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514c063ed08e13ba32279fd0093c01be5ebe184d', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f14fcb05a856f145d44b61e179af8eea67b6fc3', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37976796f642db914c637923a4aa8912781c205d', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ede3022e40590a12dae6717156ecc28ce76234', '172.105.247.100', 1670940091, '__ci_last_regenerate|i:1670940091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1839b28c71c6f9819ab9cdaefb3997b8325520', '172.105.247.100', 1670940092, '__ci_last_regenerate|i:1670940092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848ae206f982679a36c27d83bd88c7ba1b97083c', '172.105.247.100', 1670940092, '__ci_last_regenerate|i:1670940092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25723a749009ebd8f6454ddaa5bffd99bc844285', '172.105.247.100', 1670940092, '__ci_last_regenerate|i:1670940092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cf18d20e59c077fd647fe98060969f9968146b', '172.105.247.100', 1670940092, '__ci_last_regenerate|i:1670940092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59baddbc25ffb90e491e6544a352e71f42f5b5e8', '172.105.247.100', 1670940092, '__ci_last_regenerate|i:1670940092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03ba947a8749c25d7df6d57b642c4288cc474732', '172.105.247.100', 1670940092, '__ci_last_regenerate|i:1670940092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3b5e82d67379640f003a1c46a55c0a88dc16ac', '172.105.247.100', 1670940093, '__ci_last_regenerate|i:1670940092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e7fc4ac64262bc3bb8994f1f91b7323f5e072d4', '172.105.247.100', 1670940093, '__ci_last_regenerate|i:1670940093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8349dcb284d933a411d40a6bf34a4b187efc37', '172.105.247.100', 1670940093, '__ci_last_regenerate|i:1670940093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e310c2b3d38334fbc0203e754d334e1c28f2b1', '172.105.247.100', 1670940093, '__ci_last_regenerate|i:1670940093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ffc9bcfac7b71352d11a4d3346a1551334ac92', '172.105.247.100', 1670940093, '__ci_last_regenerate|i:1670940093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f4d62653b1dd39656c746a7a1f8a7ddef06acd', '172.105.247.100', 1670940093, '__ci_last_regenerate|i:1670940093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd03faee9f967a6dca47afa2bf354b66f656e70f', '172.105.247.100', 1670940094, '__ci_last_regenerate|i:1670940094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4055dc3ee801ca6e1d16df1fd14bf43ae77f088', '31.222.203.2', 1670940127, '__ci_last_regenerate|i:1670940127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54cf2a383db14f3f6c125cc0aee0ed59e59b9f23', '31.222.203.2', 1670940128, '__ci_last_regenerate|i:1670940128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f6362e5095dfc17eac83605425a9f9159b12843', '31.222.203.2', 1670940128, '__ci_last_regenerate|i:1670940128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae107e8845e4bc620a5b950733edd42d73e73bcb', '31.222.203.2', 1670940128, '__ci_last_regenerate|i:1670940128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e161debaf271fdfbd1cba7e4cbbc39bc3c6df3', '31.222.203.2', 1670940128, '__ci_last_regenerate|i:1670940128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b765c3e4b8e575f6e014269ba4d936cfdec4afa', '31.222.203.2', 1670940128, '__ci_last_regenerate|i:1670940128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9a9b82436aad61c3c3c0d9d9d5a6cc0b24edac', '45.120.39.89', 1670940566, '__ci_last_regenerate|i:1670940400;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670925667\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670940566;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12dee2adfa5c27dc7960d76608fecd4079a81020', '31.222.203.2', 1670941923, '__ci_last_regenerate|i:1670941923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13727eff8029e58e8af987196bad67673f086d0', '31.222.203.2', 1670941923, '__ci_last_regenerate|i:1670941923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7101d32d4b1145a3fc47350052ef763c51f57745', '31.222.203.2', 1670941923, '__ci_last_regenerate|i:1670941923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258084980006ebb0001e80467998d7e59bee3725', '31.222.203.2', 1670941923, '__ci_last_regenerate|i:1670941923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90ca77d5d0636bb0689aa7d657151b30f9fb9b4', '31.222.203.2', 1670941923, '__ci_last_regenerate|i:1670941923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf76b39038aca164b5395c1ce76f9ce13f42903', '31.222.203.2', 1670941923, '__ci_last_regenerate|i:1670941923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1161dac16df83268b9a4f5ed76eb229ad1ed17', '205.210.31.146', 1670943242, '__ci_last_regenerate|i:1670943242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7267115f904077ed9954c7582f22801a6235e030', '31.222.203.2', 1670943729, '__ci_last_regenerate|i:1670943729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ba47382700546fc011295df40a6381d391aac7', '31.222.203.2', 1670943731, '__ci_last_regenerate|i:1670943731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e264825a097524b148e2cc441943331c45d468', '31.222.203.2', 1670943731, '__ci_last_regenerate|i:1670943731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9148cb9c81caed800a6c65c01eac4b9fea23f8', '31.222.203.2', 1670943731, '__ci_last_regenerate|i:1670943731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c10c6136843773544d3fcc3e9a1b8f52cdf3cc9', '31.222.203.2', 1670943731, '__ci_last_regenerate|i:1670943731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f69a774dd11bca66f47ddd3411c5704451eebf8', '31.222.203.2', 1670943731, '__ci_last_regenerate|i:1670943731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8df3668443a7315019029c7a2afa0c3270fa61', '172.105.247.100', 1670944890, '__ci_last_regenerate|i:1670944890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5385e49424f88d8b29d7d24cec4c618f9c0646', '172.105.247.100', 1670944891, '__ci_last_regenerate|i:1670944891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06eb360d90db476f061dda71f8140764109a00c2', '172.105.247.100', 1670944891, '__ci_last_regenerate|i:1670944891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49de8b5fb7fb1e369b90bbabca1571d17ad49764', '172.105.247.100', 1670944891, '__ci_last_regenerate|i:1670944891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623057f4e0e6c8b6fc1ce7e05ad98b10ca9d133c', '172.105.247.100', 1670944892, '__ci_last_regenerate|i:1670944892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34c13c0dfc63f15f62c51668d91c4a0eb44224d', '172.105.247.100', 1670944892, '__ci_last_regenerate|i:1670944892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e916494a764af9f0be6f56c8d82c0b43ba40f684', '172.105.247.100', 1670944892, '__ci_last_regenerate|i:1670944892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c336b0b04e5be98eb954feb5eab87b0c3436d2', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f4cdec28e8e3a337921b6c1f4f5d9098f5fb2dc', '172.105.247.100', 1670944892, '__ci_last_regenerate|i:1670944892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c190f2c0e43b3957398c818274498b6a47c773cb', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d195dcba2b8f9b98a6cabcbaed1a53d2124c5ba', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21228968abbb17247fafa1260365366e6cb83422', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3989079e0be07c8d8c3bd77abb73edf8738e35', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66330ab4e541ee7b0b6e4ef62e280e596ed05807', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92949bbec5bb4939076933491c88828f8ac29d9e', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61bb429ad5b6f225e6f3e8c2b0b34761183ed61a', '172.105.247.100', 1670944893, '__ci_last_regenerate|i:1670944893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68cd0a00c223af8fec47778159ccce1b4977b9ba', '172.105.247.100', 1670944894, '__ci_last_regenerate|i:1670944894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb29adde4d1721e6ccbbbb367095ddd7b3bf8c0', '172.105.247.100', 1670944894, '__ci_last_regenerate|i:1670944894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41a266bc864b76beed12ea0d7a91f939f85c387', '172.105.247.100', 1670944894, '__ci_last_regenerate|i:1670944894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a03e35390815885b6e4c404271eec09d5c4c31', '172.105.247.100', 1670944894, '__ci_last_regenerate|i:1670944894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0263057bedb9634b4d095c4be170d794d6d54f0', '172.105.247.100', 1670944894, '__ci_last_regenerate|i:1670944894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc831162dad5e013c3ea86c439048156ef30bfb3', '172.105.247.100', 1670944895, '__ci_last_regenerate|i:1670944894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e314ba9dbb939484bb600d0dac6bb1a9345db6', '172.105.247.100', 1670944895, '__ci_last_regenerate|i:1670944895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0309f5c8b2aec29c095263a463625976da97eacc', '172.105.247.100', 1670944895, '__ci_last_regenerate|i:1670944895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad154d0e07a680759ebb8af3354adf1cbab71779', '31.222.203.2', 1670945526, '__ci_last_regenerate|i:1670945526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22d8ed9aad252f69241b9a883c2b8c2f5a2bac0', '31.222.203.2', 1670945526, '__ci_last_regenerate|i:1670945526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a623ec2e90ed072b54c88bc26d4fe3cb12cfe4', '31.222.203.2', 1670945526, '__ci_last_regenerate|i:1670945526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a297d833cf48557cb0158e418ce4da66cb4f874', '31.222.203.2', 1670945526, '__ci_last_regenerate|i:1670945526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f6a130173568c8908198cebb3d540cc22ff8fc', '31.222.203.2', 1670945526, '__ci_last_regenerate|i:1670945526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe1ced53f9a34071ae9521f557542c6d332adb5', '31.222.203.2', 1670945526, '__ci_last_regenerate|i:1670945526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b820708c6035e1869309f7677674ddd9668e09a', '31.222.203.2', 1670947333, '__ci_last_regenerate|i:1670947333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c55703996acd03a190ba71ff6b492b4cb177f46', '31.222.203.2', 1670947333, '__ci_last_regenerate|i:1670947333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40594686d993a91d8228bccd6e9f92dbba207eea', '31.222.203.2', 1670947333, '__ci_last_regenerate|i:1670947333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da84cbd999bea526bd068b5a050b592b44374e6', '31.222.203.2', 1670947333, '__ci_last_regenerate|i:1670947333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbafc00461d3062c6dcca41625f07cfd3c4df85', '31.222.203.2', 1670947333, '__ci_last_regenerate|i:1670947333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c12d1d83451d1e855785d7c3d63ecb59d1b7a29', '31.222.203.2', 1670947334, '__ci_last_regenerate|i:1670947334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b196fc38e15846637f56828bdb73ed42777ff4', '31.222.203.2', 1670949127, '__ci_last_regenerate|i:1670949127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f04cb85d7dc19cebde0e14902e37f1fcfcfb7f0', '31.222.203.2', 1670949129, '__ci_last_regenerate|i:1670949129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97d56f5843ec296554f832d705fb06e780266c2', '31.222.203.2', 1670949129, '__ci_last_regenerate|i:1670949129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15c90f098fbbaaef1db7704f8df47def1a8858e', '31.222.203.2', 1670949129, '__ci_last_regenerate|i:1670949129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d38fc96c4ca11b89453526d3145e776175d4637', '31.222.203.2', 1670949129, '__ci_last_regenerate|i:1670949129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77b27aa940968bb487416d799c1f49f80812a6c', '31.222.203.2', 1670949129, '__ci_last_regenerate|i:1670949129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b4b41ea6900e344aef9b85466feaedb6e2a409', '172.105.247.100', 1670949691, '__ci_last_regenerate|i:1670949691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866c93ef9db09d7facb340e9d4ad286985684ca6', '172.105.247.100', 1670949692, '__ci_last_regenerate|i:1670949692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848b8af8eeca09c090994baaa37e9f6186fa70b0', '172.105.247.100', 1670949692, '__ci_last_regenerate|i:1670949692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05e47df0398fda06857be3df2c83dd4d9a988c5', '172.105.247.100', 1670949692, '__ci_last_regenerate|i:1670949692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163424514c477d9ffd9ff3dba04dda1e2cded0e0', '172.105.247.100', 1670949692, '__ci_last_regenerate|i:1670949692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('680b939dc1e754b409eb7967b2171503c61da2c7', '172.105.247.100', 1670949693, '__ci_last_regenerate|i:1670949693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1863cc3718064591233cc9e1d073387fc27647d7', '172.105.247.100', 1670949693, '__ci_last_regenerate|i:1670949693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c0dff771bd8d4a3a6c234fefd45d36ce0f6441', '172.105.247.100', 1670949693, '__ci_last_regenerate|i:1670949693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1de6f6563077c005e2fb70e9f3616b05f4ae7f9', '172.105.247.100', 1670949694, '__ci_last_regenerate|i:1670949694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd906720459df05af30eca151ff61bc8ebb4e89b', '172.105.247.100', 1670949694, '__ci_last_regenerate|i:1670949694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66573d290fe2c2d5654eec0b72dbe42699211a1', '172.105.247.100', 1670949694, '__ci_last_regenerate|i:1670949694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31520e8e49c10be05db8144ce484b30ccd3a182', '172.105.247.100', 1670949694, '__ci_last_regenerate|i:1670949694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc89c7696ee711ac84e3b776ae1e859f815571f9', '172.105.247.100', 1670949695, '__ci_last_regenerate|i:1670949695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('304e25a96ced78a5144feaf5190738a2b42732e8', '172.105.247.100', 1670949695, '__ci_last_regenerate|i:1670949695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530695cc81ec1ce76216338535b84a6a51f0ee53', '172.105.247.100', 1670949695, '__ci_last_regenerate|i:1670949695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc5eb9335b9cf732e2722bf2d754b7e4db552e4', '172.105.247.100', 1670949695, '__ci_last_regenerate|i:1670949695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eccb9dc47d44d0dfb2047197060921ae510d9c55', '172.105.247.100', 1670949695, '__ci_last_regenerate|i:1670949695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece3cc25b471181a5a13a129dcfabfc4dee9e2a4', '172.105.247.100', 1670949696, '__ci_last_regenerate|i:1670949696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0760402bd6b053e24a1220e05efa2320699426d3', '172.105.247.100', 1670949696, '__ci_last_regenerate|i:1670949696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f16bddfdf30f55669ff32024610e7c178b7fb0', '172.105.247.100', 1670949696, '__ci_last_regenerate|i:1670949696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80159da4fec2d2ba062f782320c21012108c0947', '172.105.247.100', 1670949697, '__ci_last_regenerate|i:1670949697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('368cc3276e6ce7c955e93e886d2295c8c378c130', '172.105.247.100', 1670949697, '__ci_last_regenerate|i:1670949697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5ca6185b2b03d97292a15c893ca4f2cf4ca9af', '172.105.247.100', 1670949697, '__ci_last_regenerate|i:1670949697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a101762fe7372af22d233d22c2b547f2c200469', '172.105.247.100', 1670949697, '__ci_last_regenerate|i:1670949697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f838b76be4d86ebe98fb059372ab21955e1ae091', '31.222.203.2', 1670950933, '__ci_last_regenerate|i:1670950933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27451111b81b363597971a9889bb79d276d3bd6', '31.222.203.2', 1670950933, '__ci_last_regenerate|i:1670950933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaccf87621af3dd8322162767e3d79f0346c3043', '31.222.203.2', 1670950933, '__ci_last_regenerate|i:1670950933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f2ad935351bc149fbf12fc5822dd6cd790a5e1', '31.222.203.2', 1670950933, '__ci_last_regenerate|i:1670950933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff46cc7de3df3bce5e06545d972ec9449cb193d', '31.222.203.2', 1670950933, '__ci_last_regenerate|i:1670950933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b295ccb729453e61aac5f52aa7445e9861eb1d7', '31.222.203.2', 1670950933, '__ci_last_regenerate|i:1670950933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76e8c526b938971632e31f3e0ed6dc9bfcc49e1', '31.222.203.2', 1670952730, '__ci_last_regenerate|i:1670952730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd13c33384c7894b7d4fab63fb7442a5d0b0ccb', '31.222.203.2', 1670952730, '__ci_last_regenerate|i:1670952730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c4e9840745ebaf771e44f47c1fb8bde2ac94ad', '31.222.203.2', 1670952730, '__ci_last_regenerate|i:1670952730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c100b217fcb30ea3958bc002dfb5aaf0b9c1b8', '31.222.203.2', 1670952730, '__ci_last_regenerate|i:1670952730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9008e0e7dfa8abd8a52bab1607dfa0ebcb698b', '31.222.203.2', 1670952730, '__ci_last_regenerate|i:1670952730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63535d404d8b7a28629a1eb5411252a1ce48c5f', '31.222.203.2', 1670952730, '__ci_last_regenerate|i:1670952730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('609dd888cc4a42c50d641f582fcaf6452ade27df', '172.105.247.100', 1670954490, '__ci_last_regenerate|i:1670954490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a4035880b701f6beb04507e9798816a10379fb', '172.105.247.100', 1670954491, '__ci_last_regenerate|i:1670954491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d5b71bae20125a0eb5dfe9b9757cd5c71fe0d7', '172.105.247.100', 1670954491, '__ci_last_regenerate|i:1670954491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c28795f4375a2df47d3c74e5b562111a18b7faa', '172.105.247.100', 1670954492, '__ci_last_regenerate|i:1670954492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433212445a879500b4eab854d46198071268e92e', '172.105.247.100', 1670954492, '__ci_last_regenerate|i:1670954492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69afc7b71723f9dd2013b14c9c6d73c1b0e6186', '172.105.247.100', 1670954492, '__ci_last_regenerate|i:1670954492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65715b0f2e67f2ab92c35460e9044c0f63e88d05', '172.105.247.100', 1670954492, '__ci_last_regenerate|i:1670954492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd144aef88cec9faf46d96381bbadaebaef677f', '172.105.247.100', 1670954492, '__ci_last_regenerate|i:1670954492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c625b1294a4ff7ade82fabe3db974b03fded99d4', '172.105.247.100', 1670954492, '__ci_last_regenerate|i:1670954492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3010513a4640a910f298ef6b982fd0508a5e80', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f4f637d5014145bafd008df480bd87000a1ad93', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdf29a7265a5c6009f9d13f925d62754df348f6', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cba9dfd6f1c4e88ac707b2d5b1d07968fc4cff', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18404d97032f9ab84c770541d06f793ae6e1fac5', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c2a9de7791852b2153a73d52a46669b92d335c', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06aa1886672ea39c6480ae2d684effdd767e2c6', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22da4814113b94cdaa846649aeacfac033c1f59d', '172.105.247.100', 1670954493, '__ci_last_regenerate|i:1670954493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394a3a2b7c8a9cc166e57ada078a09210831ccff', '172.105.247.100', 1670954494, '__ci_last_regenerate|i:1670954493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b752668f592efa47ed9ef228bd17199d3b4e0c', '172.105.247.100', 1670954494, '__ci_last_regenerate|i:1670954494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6fcd44fbe6abbe107489036de281f2c516c6cc', '172.105.247.100', 1670954494, '__ci_last_regenerate|i:1670954494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd92f7b6bb81ff5dcd1d84c9f8e439d41873c704', '172.105.247.100', 1670954494, '__ci_last_regenerate|i:1670954494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fff835313bd8742a4fd7a8e299e28dd163675ce', '172.105.247.100', 1670954494, '__ci_last_regenerate|i:1670954494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce683d659c6514450c0f23eeb3b1467d5498154', '172.105.247.100', 1670954494, '__ci_last_regenerate|i:1670954494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f488bdfa8a4d687dcf615d97e9ed19472c1e7ca', '172.105.247.100', 1670954495, '__ci_last_regenerate|i:1670954495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d12767772c881e778d0862c1c53a7701e2f88da', '31.222.203.2', 1670954531, '__ci_last_regenerate|i:1670954531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400defd0091dfe52f441db28696a26a1793cd728', '31.222.203.2', 1670954532, '__ci_last_regenerate|i:1670954532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb5843348f96ff0af016994713ab7217de394633', '31.222.203.2', 1670954532, '__ci_last_regenerate|i:1670954532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39044ea425af96f2bce27e28cb8a6cb5fd6004dc', '31.222.203.2', 1670954532, '__ci_last_regenerate|i:1670954532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2263c87b69dfe3914fb9e718764fdb4632bfe8', '31.222.203.2', 1670954532, '__ci_last_regenerate|i:1670954532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34fd48d044fba03e62e5d6e900e70b468356b83', '31.222.203.2', 1670954532, '__ci_last_regenerate|i:1670954532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12dcfddefef394048330739dfcb8338242483b2', '31.222.203.2', 1670956330, '__ci_last_regenerate|i:1670956330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264a6ecd6ebdaa5b08f7b2a8e439a16ffc644fb6', '31.222.203.2', 1670956330, '__ci_last_regenerate|i:1670956330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75896228d2718f08b4828ec5a916eabefa1054a0', '31.222.203.2', 1670956330, '__ci_last_regenerate|i:1670956330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721ea8d6f1cb210a8c99d461644f298bfa03d52a', '31.222.203.2', 1670956330, '__ci_last_regenerate|i:1670956330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e860c6757632b44e8ff619a26ea3cd3bf8066b97', '31.222.203.2', 1670956330, '__ci_last_regenerate|i:1670956330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10a91ede753fccd034b823cf3da4f23d80b74cc', '31.222.203.2', 1670956330, '__ci_last_regenerate|i:1670956330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d1c02c91128675ce5dcb3662c087e1b5fd9a7f6', '31.222.203.2', 1670958123, '__ci_last_regenerate|i:1670958123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a531815cf97eefc850b832e025722169ff185fca', '31.222.203.2', 1670958125, '__ci_last_regenerate|i:1670958125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44306c99ca6847336425d4eb1006f0ec10695ee6', '31.222.203.2', 1670958125, '__ci_last_regenerate|i:1670958125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb9312c8ff2c77f3badb7faf901438375f4fc04', '31.222.203.2', 1670958125, '__ci_last_regenerate|i:1670958125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b663c5e331ccdc0242bb93c9a155381b5bf4971', '31.222.203.2', 1670958125, '__ci_last_regenerate|i:1670958125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c3b7445fd3bf5388a8b46c81fd71d47c98c169', '31.222.203.2', 1670958125, '__ci_last_regenerate|i:1670958125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01b7bdcef962af2e7eb5533f7eafca1e036c503', '172.105.247.100', 1670959894, '__ci_last_regenerate|i:1670959894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef2a46505f07c83b00a61aa7f42c59744990a6e0', '172.105.247.100', 1670959894, '__ci_last_regenerate|i:1670959894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca313f1dc876efde5925e6ebf1363f1f628acc4', '172.105.247.100', 1670959896, '__ci_last_regenerate|i:1670959896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6020724497247afbcbdd3e489067abde654f92', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8f96de6e23b75544b99e726482d20ad0332a0f', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8421b617c80a007bee9969d0a990ae1674f929ea', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac309943dcc59b10614178c39af60a350daf15e1', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37a39f57b8221f2a488c82907949f68add816fd9', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c786ae32ea9d31bb4f2537813e5d71666b49f16c', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189127f93521ca9d7fe20673dc8771456a80a33a', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3dd241513d15bed602c33eef186b4d98086018', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77816300a5cf22a1bdd8fff668e4913318ab523e', '172.105.247.100', 1670959897, '__ci_last_regenerate|i:1670959897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20775974cd1298394328f27579f987926302a180', '172.105.247.100', 1670959898, '__ci_last_regenerate|i:1670959898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ebcbe5c0210166dc83af6e4b74f0ff073eacde', '172.105.247.100', 1670959898, '__ci_last_regenerate|i:1670959898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c76293b7b5ad83473f837fb084931cc80c570f2', '172.105.247.100', 1670959898, '__ci_last_regenerate|i:1670959898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74a439214f47f766dee18a722fdd9f3f42f8849', '172.105.247.100', 1670959898, '__ci_last_regenerate|i:1670959898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f25c1ce12d2514bc148b3da8488e0bd20e325e', '172.105.247.100', 1670959898, '__ci_last_regenerate|i:1670959898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f67540a20a0756efb94b0bd90c6ea2b1dd888f7', '172.105.247.100', 1670959898, '__ci_last_regenerate|i:1670959898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15b3bcb0076fcb1c7ae0652fb9d6ea388fc4ffa', '172.105.247.100', 1670959899, '__ci_last_regenerate|i:1670959898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad5db9707261dbdafc7b5dfee28b394c68c9c51', '172.105.247.100', 1670959899, '__ci_last_regenerate|i:1670959899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b35245c79f487aa9ad6815af0f5e6adc7955eb', '172.105.247.100', 1670959899, '__ci_last_regenerate|i:1670959899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad346ffcb777a62dcff6b9fd0421ebc67c45bf2', '172.105.247.100', 1670959899, '__ci_last_regenerate|i:1670959899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e98741907a40cb5d090e8f3c42a1931cd3541f', '172.105.247.100', 1670959899, '__ci_last_regenerate|i:1670959899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ef9d2ed5042b4405e77898dfcfaa9ff31c6858', '172.105.247.100', 1670959899, '__ci_last_regenerate|i:1670959899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc96d5ce3f120b0ec009493b4c07f8d4b0bb3fd', '31.222.203.2', 1670959930, '__ci_last_regenerate|i:1670959930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e2b4ecd225dad3adf69bee48807d6994a81c09', '31.222.203.2', 1670959930, '__ci_last_regenerate|i:1670959930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2051cbe450034f9b2c83c12852c6401c7bfbdba', '31.222.203.2', 1670959930, '__ci_last_regenerate|i:1670959930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2a6f1023a37134e3e9d599ee5e53757f520c7d', '31.222.203.2', 1670959930, '__ci_last_regenerate|i:1670959930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('633cf29f7a7c00229993941c6e806b7dee96860d', '31.222.203.2', 1670959930, '__ci_last_regenerate|i:1670959930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a84885f9d528b0f83221d6d7e5e9f51705dbcc', '31.222.203.2', 1670959930, '__ci_last_regenerate|i:1670959930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6a2941ede99e19b10ac21aeb5cc3d03902154f9', '198.235.24.130', 1670961414, '__ci_last_regenerate|i:1670961414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623cbe79327a1fe39249c8a2831255f1933f8bb4', '31.222.203.2', 1670961727, '__ci_last_regenerate|i:1670961727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5bb5208eec3088b08748a9624fc95c602c58e4a', '31.222.203.2', 1670961729, '__ci_last_regenerate|i:1670961729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e359d90d56bdd85d3db018a7f337eaa8aef3b06f', '31.222.203.2', 1670961729, '__ci_last_regenerate|i:1670961729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f233382dbc60c35b73cccb5dcf7faff00d2a618', '31.222.203.2', 1670961729, '__ci_last_regenerate|i:1670961729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05dd88af70fa2b878c2a2fd1e3e8a0081688a153', '31.222.203.2', 1670961729, '__ci_last_regenerate|i:1670961729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c595760cacf128ce13d5da9234adbcee534aceca', '31.222.203.2', 1670961729, '__ci_last_regenerate|i:1670961729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600fea7b28687ba46113e894e64ac6d49ca2392a', '31.222.203.2', 1670963522, '__ci_last_regenerate|i:1670963522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f656cb94d4a9da29d19cf80b98e51f98900726', '31.222.203.2', 1670963524, '__ci_last_regenerate|i:1670963524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97aec10b10d5e1f698be2740581706f9f7090395', '31.222.203.2', 1670963524, '__ci_last_regenerate|i:1670963524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fba5cc14dca6af38cd811320f1e83bb9e2dff0d', '31.222.203.2', 1670963524, '__ci_last_regenerate|i:1670963524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14880c4cc727d2ef7b87ca4ec5962f3253539c2', '31.222.203.2', 1670963524, '__ci_last_regenerate|i:1670963524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842cd5749191ec0a78e65d4ed5a31b095c1f4570', '31.222.203.2', 1670963524, '__ci_last_regenerate|i:1670963524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1880c347706d6593b956b132bbdb1090a8f843', '172.105.247.100', 1670964691, '__ci_last_regenerate|i:1670964691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000993ce29313334475599906927ecbd51ae5661', '172.105.247.100', 1670964691, '__ci_last_regenerate|i:1670964691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dfe988fda7c25af04df6d1eca41441c05239d3e', '172.105.247.100', 1670964691, '__ci_last_regenerate|i:1670964691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818141e61f3490d5fc278be8863efd07f44462de', '172.105.247.100', 1670964691, '__ci_last_regenerate|i:1670964691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fae052ba68ae6543e3fb3009b9ed3f429eb15f6', '172.105.247.100', 1670964691, '__ci_last_regenerate|i:1670964691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac85893cfe0e69566f062aa9ab44a2387605a682', '172.105.247.100', 1670964691, '__ci_last_regenerate|i:1670964691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1738996e6e0d80458fb4c037292822c2568fdb17', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c0cd8edb2369219bfbf7f7cbfd84590ea43a20', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e7ff110ec5e1f07bc054d360e890d63e6e27dc', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381901c3a1ce3cd5e005bbb4b54a4ba6450b54c2', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff6dfc012cf8170e142e59160466e8c871f612c', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7299d05b1da223aee0a1fbbe64154d1159a4a742', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46c0ed1c36628f5919bbd16ab605da36c9c3b5e', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4bac550df9ae4728dcf360bc888b76c4575366', '172.105.247.100', 1670964692, '__ci_last_regenerate|i:1670964692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd66e4d2b4ec366b12aa1d35697e711b05f1c97', '172.105.247.100', 1670964693, '__ci_last_regenerate|i:1670964693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e812f90015805b1e0c3e0124e8e9f4376d440ee7', '172.105.247.100', 1670964693, '__ci_last_regenerate|i:1670964693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5883c199de0a3d1b6a32389ff35d07c2ccee82', '172.105.247.100', 1670964693, '__ci_last_regenerate|i:1670964693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd6b5fd9d49e32cf92bd4866c8f04d98d28b4ec', '172.105.247.100', 1670964693, '__ci_last_regenerate|i:1670964693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f26787e8bd56e6627c3978b7ea301df352c3ca9', '172.105.247.100', 1670964693, '__ci_last_regenerate|i:1670964693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbaae252662866463dfe61187ffe30dd0ce71319', '172.105.247.100', 1670964693, '__ci_last_regenerate|i:1670964693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6256747589bf9eb9edafe4f81d6d9ccd72612653', '172.105.247.100', 1670964694, '__ci_last_regenerate|i:1670964694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d09ccb64757e575e7a23656e1767a4adb9773b', '172.105.247.100', 1670964694, '__ci_last_regenerate|i:1670964694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fcaec91d9a7b9616f4a33f4182fa13da30a9fe', '172.105.247.100', 1670964694, '__ci_last_regenerate|i:1670964694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729fb2f24f151476f049c574611d3802eee8f990', '172.105.247.100', 1670964694, '__ci_last_regenerate|i:1670964694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3186367ad7a468cec6a59a4524c015574681320e', '31.222.203.2', 1670965324, '__ci_last_regenerate|i:1670965324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5295b38af0e767b006f260c29d963db1613f8b95', '31.222.203.2', 1670965324, '__ci_last_regenerate|i:1670965324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0d0cfe9f8f68e4c14739f3a3623ad627b47b0c', '31.222.203.2', 1670965324, '__ci_last_regenerate|i:1670965324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ea9f89bddb3951fc425b5a2f3d9e236a1fd6f4', '31.222.203.2', 1670965324, '__ci_last_regenerate|i:1670965324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457c7e94607b497e06396b9249e111d8970b69ab', '31.222.203.2', 1670965324, '__ci_last_regenerate|i:1670965324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af67ff109a101719e132f2eb86f8f232808dfd9', '31.222.203.2', 1670965324, '__ci_last_regenerate|i:1670965324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f827e5aa652bea3a3de1ca218db8ce5017f165c3', '31.222.203.2', 1670967115, '__ci_last_regenerate|i:1670967115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b7c39c846d23a721a6ae9e8c546e7ab01cd55c1', '31.222.203.2', 1670967117, '__ci_last_regenerate|i:1670967117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a962c96c17586449faa059c46622d377bc3b7a13', '31.222.203.2', 1670967117, '__ci_last_regenerate|i:1670967117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea4cc660c37e96120ef40b8cf8c7356117044c2', '31.222.203.2', 1670967117, '__ci_last_regenerate|i:1670967117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d79be07dc1faa13e8c888764ff77061b5aac37', '31.222.203.2', 1670967117, '__ci_last_regenerate|i:1670967117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7255437d434bfb907f909340d3a13da9e0df166', '31.222.203.2', 1670967117, '__ci_last_regenerate|i:1670967117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a297091053cb9f18519edaaba3e4b5c41321cd80', '31.222.203.2', 1670968923, '__ci_last_regenerate|i:1670968923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a4f0131459255db2893b7e2cca16fa2b6d46a4', '31.222.203.2', 1670968923, '__ci_last_regenerate|i:1670968923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb04462076c690931a0e2127a7b61e2b180fbcb', '31.222.203.2', 1670968923, '__ci_last_regenerate|i:1670968923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321d123d4066ad680a23d61f35f4069ee4252c61', '31.222.203.2', 1670968923, '__ci_last_regenerate|i:1670968923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b5ab7ef1929781e77cd1fe83b60d64d22f7e95', '31.222.203.2', 1670968923, '__ci_last_regenerate|i:1670968923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc63d2bb58d0d8957c860f62a04bd5def2e41f8c', '31.222.203.2', 1670968923, '__ci_last_regenerate|i:1670968923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562940cd224602a8db8f8a4df08de9f8de28a5ce', '172.105.247.100', 1670969492, '__ci_last_regenerate|i:1670969492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51fddb9581421d471177678d4ada72748f5fe1fa', '172.105.247.100', 1670969494, '__ci_last_regenerate|i:1670969494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0700ffc88e51f93710b65ee898ebea86c539d650', '172.105.247.100', 1670969495, '__ci_last_regenerate|i:1670969495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd432426dfd2feda9e59cf57dcdcc050052e59b', '172.105.247.100', 1670969495, '__ci_last_regenerate|i:1670969495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b917f6f4e0aa81a1e0a0636432c3718fcb0852ed', '172.105.247.100', 1670969495, '__ci_last_regenerate|i:1670969495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86785b644ab554f8fc84d2375b200327731b9ae9', '172.105.247.100', 1670969495, '__ci_last_regenerate|i:1670969495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9772a35ffca4aeaf4848ddffdb5f27b574894694', '172.105.247.100', 1670969496, '__ci_last_regenerate|i:1670969496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1b6ed0a2eed7260299dc3ac5d68da465ec23e5', '172.105.247.100', 1670969496, '__ci_last_regenerate|i:1670969496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1774957eb6fc694d58648281ccd3b0bd958b6d45', '172.105.247.100', 1670969496, '__ci_last_regenerate|i:1670969496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceaeb88c8e950840f7fb8b9fa039c7114aa054c2', '172.105.247.100', 1670969496, '__ci_last_regenerate|i:1670969496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d080e42eba6f1280d8f094568172f8687a497457', '172.105.247.100', 1670969496, '__ci_last_regenerate|i:1670969496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a34bc488fbfa4ef9c1eac19e29bb3742ea84f4', '172.105.247.100', 1670969496, '__ci_last_regenerate|i:1670969496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f579b1216bf557af5a7cc4a19c214ee31404e4aa', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b61ccac2f7436c837b693c2dd793abdcf7021f', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42a300af48ebe9a42e5c5d1948962456c223011', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddf309aa73d9528bc3af6202f65def48023d456', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a16c24c1b2ae89a840a2481536f69318a63a433c', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d06f8ac58fc05ab64a297ae10b3bbb4ea4439d4', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a75bbe0b620c6dfae359f52343776c6238ef8ef', '172.105.247.100', 1670969497, '__ci_last_regenerate|i:1670969497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdab2bbf1393131589f02d7e21c33925282c846b', '172.105.247.100', 1670969498, '__ci_last_regenerate|i:1670969497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1109531346b4c86ac78485226f5dcedff5a7ca6f', '172.105.247.100', 1670969498, '__ci_last_regenerate|i:1670969498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52abc726f9f31c59def68c34ea55437688d0c9c3', '172.105.247.100', 1670969498, '__ci_last_regenerate|i:1670969498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36744261c99acdd81d31a54ebb4c8c5f57addc11', '172.105.247.100', 1670969498, '__ci_last_regenerate|i:1670969498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408980518cc29a5a0697dabe224b508a4609af37', '172.105.247.100', 1670969499, '__ci_last_regenerate|i:1670969499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1cb0d81050d766c4aec7109b451b86ce37c1a09', '198.235.24.45', 1670969666, '__ci_last_regenerate|i:1670969666;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8536acd48e795db7f5ddda99180c38bda0e881fd', '205.210.31.184', 1670969892, '__ci_last_regenerate|i:1670969892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3044bdc09b0f93452f9509ba2e6b41e2ee0bdb', '31.222.203.2', 1670970725, '__ci_last_regenerate|i:1670970725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a64a6e142e5e8e98d54f2193281385171893429', '31.222.203.2', 1670970727, '__ci_last_regenerate|i:1670970727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1a9cfdb53b1ce63922d058d77cf4849082fdbb', '31.222.203.2', 1670970727, '__ci_last_regenerate|i:1670970727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980c99b6cf8a13178f13f9746ebf2f0b9b8a3feb', '31.222.203.2', 1670970727, '__ci_last_regenerate|i:1670970727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('248e5c35aaae288d7db884c2b38682c0c7788e95', '31.222.203.2', 1670970727, '__ci_last_regenerate|i:1670970727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27665e52ebb202c38ebd055c3d2883464cb7024', '31.222.203.2', 1670970727, '__ci_last_regenerate|i:1670970727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41171731c7f32c400ecc98370a86c90d8e9dd075', '31.222.203.2', 1670972530, '__ci_last_regenerate|i:1670972530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c61d0741d5bf0d107aba156507eea8aa7cae0b9', '31.222.203.2', 1670972530, '__ci_last_regenerate|i:1670972530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc9cb17d25142745ec39d79131cb386c57652d6', '31.222.203.2', 1670972530, '__ci_last_regenerate|i:1670972530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36249972cb8acaa19d5a1f8fa5ce88418cff9f0f', '31.222.203.2', 1670972530, '__ci_last_regenerate|i:1670972530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f496e06d016cded79879908be9b24031bac078d5', '31.222.203.2', 1670972530, '__ci_last_regenerate|i:1670972530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb438e27cc6ea42b05183b32ce11451d138a5daf', '31.222.203.2', 1670972530, '__ci_last_regenerate|i:1670972530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299fb5815997bc6a5af0017453bd909d6fa4a604', '172.105.247.100', 1670974293, '__ci_last_regenerate|i:1670974293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e421675f8865516d1cb558375eeb67c663a79e7f', '172.105.247.100', 1670974293, '__ci_last_regenerate|i:1670974293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc35290b37c390be6df2eed864a3079d5f9b35a1', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ba292ab4607a381fdd2747e1dffcf79713f1b9', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103e427757d126c4b0d715d1d31bcc2693e36d29', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05da97731e345c3354cbeb3b479088769045210d', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471c804d6ae4524f945f842db620d02fb9bec1ec', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d3617e3566dd7dc1df4b210d0cae17949cf5de', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44703d569b7a29357418ef9d486bdf95cd2054db', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e1599c786e9c30256f0eb876306c9fb5f29327', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d003d25b38081603f3e5cf884c3c843a7fa4ea6b', '172.105.247.100', 1670974294, '__ci_last_regenerate|i:1670974294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b10ee3c1ab7d698f323c81ccd50cea504e9ef6', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be13f1972b489dab329f2c393bb2de260e6fa07', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d2b196973a12cbd7c78d25e4f40f291c36b9068', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c17881c5caeab3ab9f7637f4e3c45c45477a5d9', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53098623e788ed99f826476a37581080b0fcefe', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183cc8ddfd772366fdddfa995b82184a2577658d', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888312b1550aedcd2f0767d0394e4b0c70be90bf', '172.105.247.100', 1670974295, '__ci_last_regenerate|i:1670974295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9223439c9c98ea0c790ecbdfb39a5b777c587e2', '172.105.247.100', 1670974296, '__ci_last_regenerate|i:1670974296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66200c62538bde33d6da1f818792ae32099d2465', '172.105.247.100', 1670974296, '__ci_last_regenerate|i:1670974296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd460e714f5411c06c3fab884f291146ddca7656', '172.105.247.100', 1670974296, '__ci_last_regenerate|i:1670974296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e211160d0c546199a3666b845e40d8e0fc1c66b', '172.105.247.100', 1670974296, '__ci_last_regenerate|i:1670974296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b43b950264a98a47ca46214519d3ffc15fc61b', '172.105.247.100', 1670974296, '__ci_last_regenerate|i:1670974296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('591dec77cd1d780b6578c9ab9c41cad56614cd37', '172.105.247.100', 1670974297, '__ci_last_regenerate|i:1670974296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d428ce9f2453e5991a351f5df963786caa53cff3', '31.222.203.2', 1670974321, '__ci_last_regenerate|i:1670974321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa987aa5436eaed9fb0757178f57ae3079acf058', '31.222.203.2', 1670974323, '__ci_last_regenerate|i:1670974323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e25c3eaee179893f7baea19095f0cc841d65614', '31.222.203.2', 1670974323, '__ci_last_regenerate|i:1670974323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc790e98faa74ee53dcb95cb1d1487c65b213a14', '31.222.203.2', 1670974323, '__ci_last_regenerate|i:1670974323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6219442af44db9a47dfa52b79274f9fca25a6ef', '31.222.203.2', 1670974323, '__ci_last_regenerate|i:1670974323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55e57f69c03f00c01d363caa5d626ad0a5a9434', '31.222.203.2', 1670974323, '__ci_last_regenerate|i:1670974323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b5af354c913a89dd0d6678edb6346fbffb9d12', '31.222.203.2', 1670976122, '__ci_last_regenerate|i:1670976122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3de34e0e9f43c8e03e199ade4a5b9cee42d9299', '31.222.203.2', 1670976124, '__ci_last_regenerate|i:1670976124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a61d454d6feb6e7c8e46a8b1baf6d796cc6b61c', '31.222.203.2', 1670976124, '__ci_last_regenerate|i:1670976124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa281755cb2234d48d151cf8556985c5b08cafe', '31.222.203.2', 1670976124, '__ci_last_regenerate|i:1670976124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877817bd0421ce9b826a8c14e5fc4f072559b4a4', '31.222.203.2', 1670976124, '__ci_last_regenerate|i:1670976124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04e673014248893a50328f669dd4d431974130b', '31.222.203.2', 1670976124, '__ci_last_regenerate|i:1670976124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5613deb9dd2902482c818f76452f1a66c4963b4f', '31.222.203.2', 1670977925, '__ci_last_regenerate|i:1670977925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e95548ce67189f5208285fac0d9f5e09a66e3441', '31.222.203.2', 1670977927, '__ci_last_regenerate|i:1670977927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37620686004cb67acdc9cbfdae6f9f406592ac21', '31.222.203.2', 1670977927, '__ci_last_regenerate|i:1670977927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8a13e0ae8658f079a7aa027264ca2ffb39c95f', '31.222.203.2', 1670977927, '__ci_last_regenerate|i:1670977927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf57b9b0cd808840fedaed194feb586d96fc0e1', '31.222.203.2', 1670977927, '__ci_last_regenerate|i:1670977927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30e9f12c7a655527575254b480a3cac90a991ed', '31.222.203.2', 1670977927, '__ci_last_regenerate|i:1670977927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db9d330a8ff4637438b73cc18f789da158cc2921', '172.105.247.100', 1670979091, '__ci_last_regenerate|i:1670979091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4abdbbb4a368809d69af4ddd3615e52eb2bdb5c3', '172.105.247.100', 1670979092, '__ci_last_regenerate|i:1670979092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f51b203e36f90ddb75528f78427135885f7333d9', '172.105.247.100', 1670979094, '__ci_last_regenerate|i:1670979094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8efa4f38e8e443cb3b58dcedc4a5e8810e18194', '172.105.247.100', 1670979094, '__ci_last_regenerate|i:1670979094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e908ecba3ee15c6ecc42a2196544882e45c80fa4', '172.105.247.100', 1670979094, '__ci_last_regenerate|i:1670979094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17595e52d03d2964f42f0cd60698540257d4434f', '172.105.247.100', 1670979094, '__ci_last_regenerate|i:1670979094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f9621d05bad73f42f3b1c5a82c48518a23295d7', '172.105.247.100', 1670979094, '__ci_last_regenerate|i:1670979094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae36a3dcb3ef63d5a9dab1724cf9408cede87a91', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7187df9f17f8ec4d75ad43151e55d9af842c009', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091f733756c61f22b7f72b22b3da4e4ada4b798e', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1360ec0899360dd1b9692e9df46efae899202b', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cca864a98b7bb5772069aca92c28f5f0311ff07', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74331712b987f485b9cb1eaeec095e058712b9c5', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d9921cc2e25faca5247bc3080369431205cdc6', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336f3253fd9ddecd8b401b3bc04eff0aa0cbed3b', '172.105.247.100', 1670979095, '__ci_last_regenerate|i:1670979095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a2943d8dde850e29ca285505d48925a8472ba4', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1def69001a19c5096c92ae5b85dd059e136d999', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241c0662e4f3ddda5559f8f50c6c7b03d2618612', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a461103d5ff807022a45f2d0f73ec6a184b2629', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c63f1ae3d97c928415b2bfb2adda27544f07843', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14800e455d477597a0b22ec7144d06622b0947fb', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81dcdafb841589cecf9bce611f1c33aefed5dcc', '172.105.247.100', 1670979096, '__ci_last_regenerate|i:1670979096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981c9771b2a025fbc620944298a68bca2503b7ce', '172.105.247.100', 1670979097, '__ci_last_regenerate|i:1670979096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c90b24291155a079962426b16feec4f9e3ceda', '172.105.247.100', 1670979097, '__ci_last_regenerate|i:1670979097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299105383e4f2e93875f5e0faf66cf28c57a7945', '31.222.203.2', 1670979723, '__ci_last_regenerate|i:1670979723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7a8815f82723a4e5cf5c02178c26a3a9b91747', '31.222.203.2', 1670979723, '__ci_last_regenerate|i:1670979723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5859621e85bda3270089b42384fa87d361f2a517', '31.222.203.2', 1670979723, '__ci_last_regenerate|i:1670979723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60fe5a22243da1a8993cba91743ca942ff8b500', '31.222.203.2', 1670979723, '__ci_last_regenerate|i:1670979723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88e730d30f6add90810cace36d3ddda88d5e32b', '31.222.203.2', 1670979723, '__ci_last_regenerate|i:1670979723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c790a89906f2c419f586c59ee8fe689e32f48921', '31.222.203.2', 1670979723, '__ci_last_regenerate|i:1670979723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a7094815243e7a6877f97a1c2a36857c7b76728', '31.222.203.2', 1670981519, '__ci_last_regenerate|i:1670981519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0179e0a6c96f06d14a6c6c6248c0fa71fe31d50', '31.222.203.2', 1670981521, '__ci_last_regenerate|i:1670981521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adce9aff254d7a7ab6f202690c31d9dba5cae7bd', '31.222.203.2', 1670981521, '__ci_last_regenerate|i:1670981521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a2b26db92cbad596aa4bbc6e40159d8a101055b', '31.222.203.2', 1670981521, '__ci_last_regenerate|i:1670981521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7e9a0beca1c7d57f5d03335e2b8ab7f00657c6', '31.222.203.2', 1670981521, '__ci_last_regenerate|i:1670981521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7842e744c954157a000efaddf6e53371bca8ab', '31.222.203.2', 1670981521, '__ci_last_regenerate|i:1670981521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb6114424739a236215e24fe1ab66040081f5aa', '198.235.24.147', 1670981869, '__ci_last_regenerate|i:1670981869;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9022dc8ec3ba2cbd5228897927b46d1a76394970', '31.222.203.2', 1670983322, '__ci_last_regenerate|i:1670983322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccfaccec9fd13628dfc666d86564be2bd1ecf9e9', '31.222.203.2', 1670983324, '__ci_last_regenerate|i:1670983324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3c47ee6cbf8b30cc457b8e8afacf48083a9431', '31.222.203.2', 1670983324, '__ci_last_regenerate|i:1670983324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e0374965771b87ab3f174e257db82dfbf5b322', '31.222.203.2', 1670983324, '__ci_last_regenerate|i:1670983324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456e73c459be46428296a277ff28f55eca20437a', '31.222.203.2', 1670983324, '__ci_last_regenerate|i:1670983324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e2952d8822b92096fde17b97e4085e0372fe92', '31.222.203.2', 1670983324, '__ci_last_regenerate|i:1670983324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2a85a9fe0d705591a81be86cc65694f22e1a6a', '172.105.247.100', 1670983886, '__ci_last_regenerate|i:1670983886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235dfb7b8ebfc895260b460024c1e4377efa8e1a', '172.105.247.100', 1670983887, '__ci_last_regenerate|i:1670983887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6276dfc764601750100ee1c6c1ae941086c233c8', '172.105.247.100', 1670983887, '__ci_last_regenerate|i:1670983887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc18cbae4495d6f812a02e2ccbc01d991a77f0bc', '172.105.247.100', 1670983887, '__ci_last_regenerate|i:1670983887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec0fc368565a2320f2e6c41a85c21c21c938c6a1', '172.105.247.100', 1670983887, '__ci_last_regenerate|i:1670983887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51fd3263c49a592284aefb361f0940f5cf983e61', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a169113357d45579f2f2fe4f93159f6ff8bd05e4', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93998e9b1acc8aa40832ecac8ceb2aee99fa0ed', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4368492f83cfbc9d81fc0c1d76f100916e2633d0', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29a1617f37de3618a7e181701325112fc8a18838', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6b2ae3eb119ee81048637884beaff92d65bd7d', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3ecbc764dfc0bb9db41e830542851a9a14f69c', '172.105.247.100', 1670983888, '__ci_last_regenerate|i:1670983888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8e7fd3192488f3d600762439f0b2e81c7e7bc9', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d27522a4674f19d4b1e8115839f6ecffa2ba33', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('834d30bb180a4385a3bb95370976ff2a35d147f3', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff38939fc57fd05d3f2c7730bd50be9eb6d9685', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59965546b447f0607a84f87ce9c2f3aad429acfd', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57dcf91c909460127b1ab43366833445762d2b54', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ca60985e9fdee762270f6b1cdd4cc55b37c816', '172.105.247.100', 1670983889, '__ci_last_regenerate|i:1670983889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd41724634a8d2d30dd7170591dac27fe58b738', '172.105.247.100', 1670983890, '__ci_last_regenerate|i:1670983890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb580d60142b9e79824a1ebe1403a4c46eeb635', '172.105.247.100', 1670983890, '__ci_last_regenerate|i:1670983890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71593838e66126986d5ecf8f6581ed43b8bd446a', '172.105.247.100', 1670983890, '__ci_last_regenerate|i:1670983890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ea5e9db36c33ca426669ccb57a8d3d0326cb07', '172.105.247.100', 1670983890, '__ci_last_regenerate|i:1670983890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e4d8bbb9f11231503085598212cfc2876fc312', '172.105.247.100', 1670983891, '__ci_last_regenerate|i:1670983891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728d91c66bf286ee2cfe654dacc7326f52a9fa37', '31.222.203.2', 1670985123, '__ci_last_regenerate|i:1670985123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fc9eb52558ab2d777cccd829bab92ab0101ebd', '31.222.203.2', 1670985125, '__ci_last_regenerate|i:1670985125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16118fdc8a20146910634af6fdb13d2e897d1497', '31.222.203.2', 1670985125, '__ci_last_regenerate|i:1670985125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829e6a0fa317415c86a76abfa9ceefdd285ada6c', '31.222.203.2', 1670985125, '__ci_last_regenerate|i:1670985125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29d95fbbfec971d672d75687b25b4e8af49633c', '31.222.203.2', 1670985125, '__ci_last_regenerate|i:1670985125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a1fd1a496af58078c1dd33c6ff439fd5612b94', '31.222.203.2', 1670985125, '__ci_last_regenerate|i:1670985125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a98e7fcfbec1d7489dc404b1d1acf571c15cdd3', '198.235.24.167', 1670986689, '__ci_last_regenerate|i:1670986689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac6787ab39d31ee252e85fba8f2ff6ab683c4d2', '31.222.203.2', 1670986936, '__ci_last_regenerate|i:1670986936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee4d67118b3fcdc0f137d7baae4b9b086b9fc61', '31.222.203.2', 1670986938, '__ci_last_regenerate|i:1670986938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f4811ba4db0ff90e3247edbebd52843cbfd1cfc', '31.222.203.2', 1670986938, '__ci_last_regenerate|i:1670986938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5293ebd3b939cab952ce666e4903fa2a18f00a', '31.222.203.2', 1670986938, '__ci_last_regenerate|i:1670986938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35656e16603a9aa817ee8cd1d92ffb5545593225', '31.222.203.2', 1670986938, '__ci_last_regenerate|i:1670986938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada78813e1a14e6f8bae104540de8a5f6faa3d27', '31.222.203.2', 1670986938, '__ci_last_regenerate|i:1670986938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5ff7aafeea3bcaec7d2c979499a4a28ded92ef', '205.210.31.44', 1670987149, '__ci_last_regenerate|i:1670987149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c94023858e39c9b9fe33446efe5672cdcb92ab', '172.105.247.100', 1670988689, '__ci_last_regenerate|i:1670988689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981736e32702f31cc06a2f42dca59801cf56408c', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb09b771915d8e947cb79f17b96ad33e24b9770', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4fa0209ab52bed2a1033e8c39bbd348ca39f4ea', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97e4134b50087a0eae280c1eb5fbc86a13c0f25', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edfc55bfd27076bf2d6d6acbb7a90f7548686ab', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b99959a43b6de552d6bb5ca7b6af03e12766f85', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595f69de513573ef469e4256ded3cb0556999c9a', '172.105.247.100', 1670988690, '__ci_last_regenerate|i:1670988690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82c2ecefc25edab0ec0279783a5d7a7ad673000', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91257085272cab05ea3e1c184001f39fb8dfafe', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b652567018581876d63a91e6cdd455013a59438e', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1d266d201ed6fe0e1107afbb974248462da83e', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac08509d55324457d37e5202c6671206e3d56fb', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d029d503ea73ef382475be14568b4d4ea962e350', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546c32754df15728db417717805638282095fd14', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710ac72a9ae554f95b69a9ec2759416c1d6f169c', '172.105.247.100', 1670988691, '__ci_last_regenerate|i:1670988691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271cc9292348336d5f68cddab5ad91c7d1e1fef4', '172.105.247.100', 1670988692, '__ci_last_regenerate|i:1670988692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('944ba4012e5a190a3bfc0df07887f0bb38fc591e', '172.105.247.100', 1670988692, '__ci_last_regenerate|i:1670988692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05eda9847ab95d1ba81cd547a5561e1bd4bc0e2a', '172.105.247.100', 1670988692, '__ci_last_regenerate|i:1670988692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85c2fe639cb028b8840d31c57120680f1ac3e66', '172.105.247.100', 1670988692, '__ci_last_regenerate|i:1670988692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0502c11a92bab29c35f505ed595656efb232f65c', '172.105.247.100', 1670988692, '__ci_last_regenerate|i:1670988692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d1c4cb1c6fb2fa93dceef5821a1eb995388249', '172.105.247.100', 1670988692, '__ci_last_regenerate|i:1670988692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276c96629fc3a09f900e7ea08a9b5af80f946e41', '172.105.247.100', 1670988693, '__ci_last_regenerate|i:1670988692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a596679ac5b482a83d3dc73d0895c8e7e140dea4', '172.105.247.100', 1670988693, '__ci_last_regenerate|i:1670988692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c9c38cd1d18140e53e690e1658eee1025ca4c4', '31.222.203.2', 1670988725, '__ci_last_regenerate|i:1670988725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad937211c88ddce4d897c3cb43e41a21ed1e1903', '31.222.203.2', 1670988725, '__ci_last_regenerate|i:1670988725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d359c64aa65defd4d41ee14443521437ec3f35', '31.222.203.2', 1670988725, '__ci_last_regenerate|i:1670988725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30fc87957b7c22f62af7a6a6c4c843df4b25f96c', '31.222.203.2', 1670988725, '__ci_last_regenerate|i:1670988725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3fd0c5ba80e5cc5ce3394ce68d1f92e4896e3a', '31.222.203.2', 1670988725, '__ci_last_regenerate|i:1670988725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764df1ac18c239f9f9778f74d8b1d4d138f9a64d', '31.222.203.2', 1670988725, '__ci_last_regenerate|i:1670988725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b8b5b72f594f0426a41be3fc4f7e14936bbbd5', '31.222.203.2', 1670990523, '__ci_last_regenerate|i:1670990523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9668d5c51869dcc5173678360bdb4cc02057ba', '31.222.203.2', 1670990523, '__ci_last_regenerate|i:1670990523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc84ecc610cd4cd5e60e6e3d1a1a0ae6c7377dd8', '31.222.203.2', 1670990523, '__ci_last_regenerate|i:1670990523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a35bd577c317e1373bfee9b5520541cb305323c', '31.222.203.2', 1670990523, '__ci_last_regenerate|i:1670990523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a06cdeef46affb4e008686f4948097d7676efb10', '31.222.203.2', 1670990523, '__ci_last_regenerate|i:1670990523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed835f9b3b7c7ba53a36c5a6177138c3ab673ec', '31.222.203.2', 1670990523, '__ci_last_regenerate|i:1670990523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1df0587f2fc72f8ded9c2a1fa7bf7afa82105a4', '31.222.203.2', 1670992321, '__ci_last_regenerate|i:1670992321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1acf511d95548e7076bb31120cb62aca791e08', '31.222.203.2', 1670992321, '__ci_last_regenerate|i:1670992321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77eeea3435a87bf9a79c35e009a4d51a2f345af5', '31.222.203.2', 1670992321, '__ci_last_regenerate|i:1670992321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9e6934be43b2caa6dff7581a1a69f7b4d4851e', '31.222.203.2', 1670992321, '__ci_last_regenerate|i:1670992321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2921502e434ba946f0b3295587f88958bc892864', '31.222.203.2', 1670992321, '__ci_last_regenerate|i:1670992321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb711befd53725838b7a15e9b60e6aa4502b55ea', '31.222.203.2', 1670992321, '__ci_last_regenerate|i:1670992321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09beadac66d7ae83f4f01c77d51f150720019e5', '172.105.247.100', 1670993488, '__ci_last_regenerate|i:1670993488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af9aafc1615bb36b508abc3ca7feb65f5d7a7aea', '172.105.247.100', 1670993488, '__ci_last_regenerate|i:1670993488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8fee804340e70cec5a98dc70071d14580f31c9e', '172.105.247.100', 1670993488, '__ci_last_regenerate|i:1670993488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb3dbdd636450693d7b57514028ed4f0b9af20a', '172.105.247.100', 1670993489, '__ci_last_regenerate|i:1670993489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9b8c87cb19dd059bbefd85d25e2011fd287a0c', '172.105.247.100', 1670993489, '__ci_last_regenerate|i:1670993489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c0589b87fbabb484a64ebec9408784e44d7b24', '172.105.247.100', 1670993489, '__ci_last_regenerate|i:1670993489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295c0c0f731e1d3796b73de8aa727a724aed731d', '172.105.247.100', 1670993489, '__ci_last_regenerate|i:1670993489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e7940580658560e60189d697aaa898f53b59fe', '172.105.247.100', 1670993489, '__ci_last_regenerate|i:1670993489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eddf4177e1337542b314dac8b86fd8e748b07206', '172.105.247.100', 1670993489, '__ci_last_regenerate|i:1670993489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5790a8361c3303c4453cb3079fce88010bfc5bb4', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('864615380569e6460e183e1a75ee924cc0f68477', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd385dba61cdd49fc8b80005be78013554cd8893', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be5aade2edce9b636639de10f370280daf2cbc42', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb87ac00231dcf0fd99a2b54b5e124660ec49aa0', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f879ec5243de736a3ae13e9e2a0233b19831bef', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab04cd7ef1a09dda72555c6ed0f2c04f84829a95', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b48550bd78dc0f75561feb84d1147fc472a7d1', '172.105.247.100', 1670993490, '__ci_last_regenerate|i:1670993490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7fa53d9adc28610adac8aafa541bf464e615451', '172.105.247.100', 1670993491, '__ci_last_regenerate|i:1670993491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01813637e6188db89ae1174b708e2e78ab84aec9', '172.105.247.100', 1670993491, '__ci_last_regenerate|i:1670993491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cebdd9918922f9cc430ad2de851ff801d130f7', '172.105.247.100', 1670993491, '__ci_last_regenerate|i:1670993491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bfe505606a65deef40cf94fc446dd81c414af3', '172.105.247.100', 1670993491, '__ci_last_regenerate|i:1670993491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37e000b9642cd39e673ca95a05103861764036b', '172.105.247.100', 1670993491, '__ci_last_regenerate|i:1670993491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09846e2293281af05fc76e92e4f25666f6a8935', '172.105.247.100', 1670993491, '__ci_last_regenerate|i:1670993491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56122893b7de46b95fe8c07f164a5734c0f2f183', '172.105.247.100', 1670993492, '__ci_last_regenerate|i:1670993492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4342deffcafa31ec44e0d7ef046fd3a80e297883', '45.120.39.89', 1670994357, '__ci_last_regenerate|i:1670994357;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670940410\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670994353;register_id|s:3:\"278\";cash_in_hand|s:9:\"3880.0000\";register_open_time|s:19:\"2022-12-13 10:57:27\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2a632ee911f2f796fb3e2e84dd659ef28c542c', '31.222.203.2', 1670994121, '__ci_last_regenerate|i:1670994121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428b3f26c70c59ebf6c5fe3738ed87c106a7251c', '31.222.203.2', 1670994123, '__ci_last_regenerate|i:1670994123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f45d9e185dbddcd9d0a4bae3827dcf0bc934576', '31.222.203.2', 1670994123, '__ci_last_regenerate|i:1670994123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033b4fa18cee45a303384a5f697d7b9e6777b923', '31.222.203.2', 1670994123, '__ci_last_regenerate|i:1670994123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78718ed38f727e5af18875c4a8f0be817b48981', '31.222.203.2', 1670994123, '__ci_last_regenerate|i:1670994123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fe43d5ba4ddc81b9a5e31d61e6163704559a4a', '31.222.203.2', 1670994123, '__ci_last_regenerate|i:1670994123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3031436eb62dcd3dce9ba50f23ec8c527d398a', '45.120.39.89', 1670998631, '__ci_last_regenerate|i:1670998631;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670940410\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670994434;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76bdf141f532a16bfa15303bb7d4165b299af203', '31.222.203.2', 1670995922, '__ci_last_regenerate|i:1670995922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebf611bb071b9d748d5c6b02a5b8755ee6e1bf2', '31.222.203.2', 1670995922, '__ci_last_regenerate|i:1670995922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf864fadbf0d28991a02d4fa6dbd6069f1d2526', '31.222.203.2', 1670995922, '__ci_last_regenerate|i:1670995922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d39c9d8c1296090f491cc7c40339507534c7030', '31.222.203.2', 1670995924, '__ci_last_regenerate|i:1670995924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477a4259c620df54209dddd009565e66e8a99baa', '31.222.203.2', 1670995924, '__ci_last_regenerate|i:1670995924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76471438d544e741946130a3b343ee327e7afd16', '31.222.203.2', 1670995924, '__ci_last_regenerate|i:1670995924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('329ab69c0c8b9623e3f33b00416b14644b5e455d', '172.105.247.100', 1670997712, '__ci_last_regenerate|i:1670997712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66f70f40a50b18960579a39b1cf87b25298aa5a', '172.105.247.100', 1670997712, '__ci_last_regenerate|i:1670997712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6e6bd7c67e18d6e049329087b2b34a01b7130b', '172.105.247.100', 1670997712, '__ci_last_regenerate|i:1670997712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4318f25a880cdae603d8add4da446f9d94321a0b', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('454f1c907eddcac36a8ec97a9af6c1c5763229b9', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab1919ae2c96a31570c6ce80b4ee048c1be183c', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92963b8410f8ec7e90df7c217e63050f8053b904', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30672403477dd17fa4110f4f2b0f0c86f105b51', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1eaa70ff9f75c526e595eee04334fe279eac746', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4090fda6640ca0f419ef3ee7dc985e4a5c1f85d', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3cafe6cadba44ed00842cf218326e043e93c8de', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a651fdfd625aaf74d6faad4ec6a83e54072303ab', '172.105.247.100', 1670997713, '__ci_last_regenerate|i:1670997713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4380ae1cb7493e546a90e1ba3e52ff6e5dfcd97c', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4700f80efe8d6987f52a00db55b42221a6adfa', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72e6b4ff2df642eba7c613086a8994c06a526b5', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7259e95406759932502c3bea2b76ec2c6886a4e4', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa884f1000576dc007f6b9f678e00a777cc79e9', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45176ae089461894c19c626dc89797833c39f969', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4919efd10263cd4e21f844fce7b9f6e07258fa8f', '172.105.247.100', 1670997714, '__ci_last_regenerate|i:1670997714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa7f024f284aeea0bb139b64d0905706a54268dd', '172.105.247.100', 1670997715, '__ci_last_regenerate|i:1670997715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb86da4b890273f6ed9635fac9b061df8be9ada', '172.105.247.100', 1670997715, '__ci_last_regenerate|i:1670997715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84efc77618cc0973983d78dacec06a3d93133d1d', '172.105.247.100', 1670997715, '__ci_last_regenerate|i:1670997715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6c8aa439b10f2bcdca97dfde1c180a582f9f89', '172.105.247.100', 1670997715, '__ci_last_regenerate|i:1670997715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e39e18281849c3afab70c65fa1990c57ac3a263', '172.105.247.100', 1670997715, '__ci_last_regenerate|i:1670997715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8e4399b5a9ecaa6ab4cde8aa9b698c6cd4146a', '31.222.203.2', 1670997724, '__ci_last_regenerate|i:1670997724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0aeefaebc44811e8397f82f8619ce6b644d0fe1', '31.222.203.2', 1670997726, '__ci_last_regenerate|i:1670997726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5604ad625626f1191775961bdf6622e5a9bcee', '31.222.203.2', 1670997726, '__ci_last_regenerate|i:1670997726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb36296aa0b1038895dfeb3908fe3a6c8d49364', '31.222.203.2', 1670997726, '__ci_last_regenerate|i:1670997726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a061750b9823ce4fa616755c7684f2d53bd51e81', '31.222.203.2', 1670997726, '__ci_last_regenerate|i:1670997726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90469671dc8c3128df25812732c0394586b84cb0', '31.222.203.2', 1670997726, '__ci_last_regenerate|i:1670997726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a69be013a336d2b8cb407191ada9b5b9f1fc225a', '45.120.39.89', 1670999729, '__ci_last_regenerate|i:1670998631;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670940410\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1670998645;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";hidden1|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670dc2ca566d81db868ab17cb5b0b70bc3897b74', '51.159.99.249', 1670998842, '__ci_last_regenerate|i:1670998842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7dc6374338ba494c466fc4bd9f4ccfdea52bff', '51.159.99.249', 1670998842, '__ci_last_regenerate|i:1670998842;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24c59c62f4ac19608a090228abddf9f6c7487f5', '51.159.99.249', 1670998842, '__ci_last_regenerate|i:1670998842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('babda2f30507a73d70ca4ff09f93472782336efc', '31.222.203.2', 1670999520, '__ci_last_regenerate|i:1670999520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505b8f6041282c95d3761da69effbd881cc1f246', '31.222.203.2', 1670999522, '__ci_last_regenerate|i:1670999522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cfc0638fd9956260f33c0cf28ba03b09df11b7c', '31.222.203.2', 1670999522, '__ci_last_regenerate|i:1670999522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59255d3034564afaed244ff09ee91a945f5a5c4', '31.222.203.2', 1670999522, '__ci_last_regenerate|i:1670999522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2745e9bce579ce3c365459eafb5c38c15f7a5417', '31.222.203.2', 1670999522, '__ci_last_regenerate|i:1670999522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63e058b3d71497f28d3233aefa462bdaac928a2', '31.222.203.2', 1670999522, '__ci_last_regenerate|i:1670999522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fc695a0d1e082a56fb5b686f79019f1790a3ba1', '31.222.203.2', 1671001321, '__ci_last_regenerate|i:1671001321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069809345617867295605b05424698e1c58fd628', '31.222.203.2', 1671001321, '__ci_last_regenerate|i:1671001321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba8f756e55300e64989fd1c5a34cd0d4a50e09d', '31.222.203.2', 1671001321, '__ci_last_regenerate|i:1671001321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6bb4c48716c3408ecad28dd782c327f84a28c30', '31.222.203.2', 1671001321, '__ci_last_regenerate|i:1671001321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2289764ef566f4636270b1c4ff48f4cf041fc3', '31.222.203.2', 1671001321, '__ci_last_regenerate|i:1671001321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4543ab3b40a43b29f6d3d7a71241d476c587dd', '31.222.203.2', 1671001321, '__ci_last_regenerate|i:1671001321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf9ed8b6cba79223b0cd2d40492511eb3585ef8', '172.105.247.100', 1671002491, '__ci_last_regenerate|i:1671002491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc4107dba85a0b3f3a503d6580ada55248099fc', '172.105.247.100', 1671002491, '__ci_last_regenerate|i:1671002491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2bd7900d97cd54a0d730b99d72dc55dd9097f39', '172.105.247.100', 1671002491, '__ci_last_regenerate|i:1671002491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7f295faff9529944d25d8d7c5cb3cbc2eda8a1', '172.105.247.100', 1671002492, '__ci_last_regenerate|i:1671002492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e7d40fb5fdf13cad39f08bb72ac19fe6f0897a', '172.105.247.100', 1671002492, '__ci_last_regenerate|i:1671002492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30313f4f65f9be5d343066b299faa37d91e26fb', '172.105.247.100', 1671002492, '__ci_last_regenerate|i:1671002492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a380c3d5a8bc0886c5fe3ad3889975c9083e50', '172.105.247.100', 1671002492, '__ci_last_regenerate|i:1671002492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba10103718ef6f9a489e35462208447feea89d36', '172.105.247.100', 1671002493, '__ci_last_regenerate|i:1671002493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500293c3c60d9538193c5fc770e40d021c67dd45', '172.105.247.100', 1671002493, '__ci_last_regenerate|i:1671002493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c90d8dc02bfef84646eae1e9273e0132f0b23e', '172.105.247.100', 1671002493, '__ci_last_regenerate|i:1671002493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4129ba1999815e0741e9a95d5189c7d640fa33ca', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883d7908a711b62148ba82e33309cb7eb28b9d7a', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0275f1c9883193c3acdc355f44550822b3e299f', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a031dd2c264f6d45fd43591b31442755d3abb7d0', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ca1e8b24257c403443d7e4d6da5f196d2552da', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('926a0a1340d900f3cc6716c1dc347584dc6ef124', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b70caed3bf99d63e5218b8cb90d5e87ccf45329', '172.105.247.100', 1671002494, '__ci_last_regenerate|i:1671002494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d19485490240c3918d5ef0137eb653325b43a8', '172.105.247.100', 1671002495, '__ci_last_regenerate|i:1671002495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165129a63514d630ec17648d30461fa5a74c24e9', '172.105.247.100', 1671002495, '__ci_last_regenerate|i:1671002495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d9a57769c4fccc4f2a862ef42634f4c777d94a', '172.105.247.100', 1671002495, '__ci_last_regenerate|i:1671002495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1a7ad6c0d215e229b14c3d1e90f7f9cea5ab86', '172.105.247.100', 1671002496, '__ci_last_regenerate|i:1671002496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb66552fdb76d4c34ccbf35c22d170e5070fd613', '172.105.247.100', 1671002496, '__ci_last_regenerate|i:1671002496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0445e94cd3c27c41ea43f69fa23e6f5834a5896', '172.105.247.100', 1671002496, '__ci_last_regenerate|i:1671002496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('867c197e7ff24d0787a496fc83e81ca64f5d6f58', '172.105.247.100', 1671002496, '__ci_last_regenerate|i:1671002496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bea8522627a180b6c2dd97ffca02e78e7d0b492', '31.222.203.2', 1671003120, '__ci_last_regenerate|i:1671003120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ea2a8950e1b410e6a4730c11c985e193047d7b8', '31.222.203.2', 1671003120, '__ci_last_regenerate|i:1671003120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c51fd5013dc1d57b3193a57b592305ef40170f9', '31.222.203.2', 1671003120, '__ci_last_regenerate|i:1671003120;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b992d722753dbd0f06a53856480e7f9d6eb0d9ad', '31.222.203.2', 1671003120, '__ci_last_regenerate|i:1671003120;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593b90c887bf1d38d71cb29bf94d3ed44e27bf63', '31.222.203.2', 1671003120, '__ci_last_regenerate|i:1671003120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd11123c08cc39c420a0a038f16900f9361d87c1', '31.222.203.2', 1671003120, '__ci_last_regenerate|i:1671003120;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5a6a2f3ec0cd9dde3061d36808ed632c9cdd79', '31.222.203.2', 1671004926, '__ci_last_regenerate|i:1671004926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac9191957c1d4fd9f8d61e41c4be8e7d43185c3', '31.222.203.2', 1671004928, '__ci_last_regenerate|i:1671004928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b408b1df32c11b9c2f45db9123ad69d719ec5c', '31.222.203.2', 1671004928, '__ci_last_regenerate|i:1671004928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876ce61506b696476176bbea042a2024fcba6ccd', '31.222.203.2', 1671004928, '__ci_last_regenerate|i:1671004928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7040e702e90877d8ea602cb4f303de1982b20c2e', '31.222.203.2', 1671004928, '__ci_last_regenerate|i:1671004928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c7d5eaedad675b8f83e767e36c485f00e0f6810', '31.222.203.2', 1671004928, '__ci_last_regenerate|i:1671004928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9de3d1451d8cdb7c118d1719dd527d0d131d3fe', '31.222.203.2', 1671006729, '__ci_last_regenerate|i:1671006729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185aad466d27840c29fd0242f5b3d0fb124e7584', '31.222.203.2', 1671006729, '__ci_last_regenerate|i:1671006729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b338b4d24e00a0b3c058d09e9a06f6b6044cfdc6', '31.222.203.2', 1671006729, '__ci_last_regenerate|i:1671006729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea46e67d4c74da6ca88c54f5a54b255ef57fe56', '31.222.203.2', 1671006729, '__ci_last_regenerate|i:1671006729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('628da3fa262a91bfd15fa1cb242555e71367b061', '31.222.203.2', 1671006729, '__ci_last_regenerate|i:1671006729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d343f80169587caf877d6d218a9c5dfa244dd3e', '31.222.203.2', 1671006729, '__ci_last_regenerate|i:1671006729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d972b048b02ddfab84701392a709a4f8bd5a30', '45.120.39.89', 1671013174, '__ci_last_regenerate|i:1671013174;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671007610;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5f7d1ab249814acddf9c4c618d83f9db6a95d4', '172.105.247.100', 1671007885, '__ci_last_regenerate|i:1671007885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d552e7deba6b08d3686b54c629baa21815b4de3', '172.105.247.100', 1671007885, '__ci_last_regenerate|i:1671007885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff8e00faea7d16561dd9db6ceac89db6735bec4', '172.105.247.100', 1671007886, '__ci_last_regenerate|i:1671007886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e830cf69ca6e24daeace60b3b62ecee40e71032d', '172.105.247.100', 1671007886, '__ci_last_regenerate|i:1671007886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a261a16a345a6ca62cba5de0670c10d397164e5', '172.105.247.100', 1671007886, '__ci_last_regenerate|i:1671007886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c21ad0a748eb0a58607ce7f8736efc1c91d98d', '172.105.247.100', 1671007886, '__ci_last_regenerate|i:1671007886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55a21146a60042badd0ed482eeff742676fde4b', '172.105.247.100', 1671007887, '__ci_last_regenerate|i:1671007887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9813a3f723b181c1a5de7c7155a827c48d8d2b25', '172.105.247.100', 1671007887, '__ci_last_regenerate|i:1671007887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8276c989718cb84ea15b783306eee7ce307d1b09', '172.105.247.100', 1671007887, '__ci_last_regenerate|i:1671007887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38b0f6abcd022497458de643f146b173cddd47e', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814bd33908f06b8f331f365008aab34658befb00', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a686e5aa04055ce7553f04a1cc39d8907c78e3', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7caff6444396c942fe4ac1539ca65ecf84286135', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3d27589e641806e829cb53fbb5b3dbafe1f116', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41dffea580afba4fbe3cb3fdf2c854c7915dacb', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73188d02a12b7e6caa350759681e727ef16e7d56', '172.105.247.100', 1671007888, '__ci_last_regenerate|i:1671007888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d092da7f928c998049ffbe12a6f9fe5277570f0c', '172.105.247.100', 1671007889, '__ci_last_regenerate|i:1671007889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c30f1fb1768c5f58ecabebf7ebe899b430890e', '172.105.247.100', 1671007889, '__ci_last_regenerate|i:1671007889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca456ba1ced7d98fbf7aed4d3423f3950c375ca', '172.105.247.100', 1671007889, '__ci_last_regenerate|i:1671007889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c171122bfe4e687dbb457ed833c7f52a7d42b1', '172.105.247.100', 1671007889, '__ci_last_regenerate|i:1671007889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ed58b029ed76c0f72e5edf507afd9afd6245bc', '172.105.247.100', 1671007890, '__ci_last_regenerate|i:1671007890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1327d6b491033a52110b2d4794654ded919e600', '172.105.247.100', 1671007890, '__ci_last_regenerate|i:1671007890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36aeb3b50bb666ccbaafcac888d142368500e6d5', '172.105.247.100', 1671007890, '__ci_last_regenerate|i:1671007890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073be8d5a4695f4420b6b9762c2319d61dbecc9d', '172.105.247.100', 1671007891, '__ci_last_regenerate|i:1671007890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8523b3fb18f9ac287f2360ce7f65295c732e75ad', '31.222.203.2', 1671008522, '__ci_last_regenerate|i:1671008522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44fee312143350d765bb89a6283ccdc126b0b43', '31.222.203.2', 1671008524, '__ci_last_regenerate|i:1671008524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129e13f5e2a8843c48c7d50b7acb346a7eae42d2', '31.222.203.2', 1671008524, '__ci_last_regenerate|i:1671008524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b555f0155b9b8debd085ffe0e59c8d157dba701', '31.222.203.2', 1671008525, '__ci_last_regenerate|i:1671008525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b99d9585cce9ebdceab0fe9086d6e7c07fe286', '31.222.203.2', 1671008525, '__ci_last_regenerate|i:1671008525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6079f243b1af883c3628fdbb191efad81e15e91', '31.222.203.2', 1671008525, '__ci_last_regenerate|i:1671008525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8962a5bfce9eda8b827a83023a11006dd3d9ed62', '31.222.203.2', 1671010321, '__ci_last_regenerate|i:1671010321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7fef7097c98db68a5bb29fe267ee4b5beb493c', '31.222.203.2', 1671010321, '__ci_last_regenerate|i:1671010321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29523d4446cfd9961e35b200f5b62d6cc4178e76', '31.222.203.2', 1671010321, '__ci_last_regenerate|i:1671010321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24eab07982422da904365890ec38f6707f0af0b6', '31.222.203.2', 1671010321, '__ci_last_regenerate|i:1671010321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3dbf2b154174a5817cf136fe6cc33ac3a8aa540', '31.222.203.2', 1671010321, '__ci_last_regenerate|i:1671010321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733cafb5591eb081e3e1768fe9b83c7c651b9767', '31.222.203.2', 1671010321, '__ci_last_regenerate|i:1671010321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5d211094042c12df8024d6966608167aff4cb6c', '31.222.203.2', 1671012124, '__ci_last_regenerate|i:1671012124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de95958f75356c629170dcc853c08f75fee6ff5', '31.222.203.2', 1671012125, '__ci_last_regenerate|i:1671012125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a71ae9d88f72ccbaca31dc2604a6fbf493bc8df', '31.222.203.2', 1671012125, '__ci_last_regenerate|i:1671012125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871c4295e0091aa8cc7eb1e2b987870c98d08d4d', '31.222.203.2', 1671012125, '__ci_last_regenerate|i:1671012125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8af304b059803a650d51e79678ac725e52185d', '31.222.203.2', 1671012125, '__ci_last_regenerate|i:1671012125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70672196a3964731d689419ae9b0a17a099d0f27', '31.222.203.2', 1671012125, '__ci_last_regenerate|i:1671012125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfdaec62c7f82fc305cb6de4a51dfd6256765a2', '172.105.247.100', 1671012685, '__ci_last_regenerate|i:1671012685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234663c3c57419680edd64481691b147b3d1bfb8', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06399158aab70933c906e058be8a9dc8a85d75eb', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58ae29555d10a73f879e37ed1722447fc433d1d', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1634da4c01b4e0d80106d7c5db37d2fc7a0c0c', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeaf14176c77fab1d0a011fe3c163a33ce1d42cf', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4cb5cc7ca0028f05798451689be6d3de54f79a', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07ed1619cac24fc1c40330d1a1ccdacbc98a60b', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a4c5e117fb5ca6542b7ad6727393f51d3da03c', '172.105.247.100', 1671012686, '__ci_last_regenerate|i:1671012686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edfd20ded2c35f9c448ad331444cc510aaf11c36', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc456f19aac3a25a48a130988e367ebac1c5ea6d', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32fdf7bcf5c5a4aff292f19ce29ffc391d117de4', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4c36b442d5259b5ab313fbb35ac9ca0eb62989', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c403f932603f072cf86926580b9ce2ac68af86', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d91f923dc2a73f4b3d7dc432c8bdb768fb178dc', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('280069aaa178538096c33579aae751caf5082e97', '172.105.247.100', 1671012687, '__ci_last_regenerate|i:1671012687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8599c0d494643b72703799282ac030405ed97cf', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6387437880d0c9f63c3d7c2f5de788a4695d50e0', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952f5f477d8683c04a5a67d6cdabff66ed433ada', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b78497a54640b430f06203c4a587a7d0761f9b31', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05a54598ab6077507efc2cead8c51269568026f', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82d93b2d5a4c824af3b8dfbc824cafd7d184acb', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3e1a538634d0c78bcf8b959a313179546067a5', '172.105.247.100', 1671012688, '__ci_last_regenerate|i:1671012688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4a758bc6d28e97f688f947d8b6d527ea5fe62f', '172.105.247.100', 1671012689, '__ci_last_regenerate|i:1671012688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f48c219c72c6bcea9fed3f4d5014b125b798df', '45.120.39.89', 1671013704, '__ci_last_regenerate|i:1671013704;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671013684;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6adedd44d2b25f94ed6cf257aac70dbb2305061', '45.120.39.89', 1671015717, '__ci_last_regenerate|i:1671015717;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671013747;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8e2d2db458aeca30ab3e34ecab6a0b7e589ae92', '31.222.203.2', 1671013946, '__ci_last_regenerate|i:1671013946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab4e5dcd829f851e6325d9115697cf11a4d746e', '31.222.203.2', 1671013948, '__ci_last_regenerate|i:1671013948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c338bad8817d59bd426ff8cd1a3c52e3e47b7ed6', '31.222.203.2', 1671013948, '__ci_last_regenerate|i:1671013948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15303eec55b7ab576153d282a2b6ae05b9195c28', '31.222.203.2', 1671013948, '__ci_last_regenerate|i:1671013948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc70702db98f1ec9ff7137c2ee2390fc901a7c2b', '31.222.203.2', 1671013948, '__ci_last_regenerate|i:1671013948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08d00e576ae1b9b09184f48f2d55c31b9b91f6c', '31.222.203.2', 1671013948, '__ci_last_regenerate|i:1671013948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ccba4b888bad2fce6fd0b994f0f602743557041', '45.120.39.89', 1671019777, '__ci_last_regenerate|i:1671019777;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671016001;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5792dcf286622b184fa255d711b226b9d98509', '31.222.203.2', 1671015722, '__ci_last_regenerate|i:1671015722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a129fea9d8f18a86a6e25b62b9209ce72354844', '31.222.203.2', 1671015722, '__ci_last_regenerate|i:1671015722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb0bfdaded8a192b026874af9810eb57cdc1eb2', '31.222.203.2', 1671015722, '__ci_last_regenerate|i:1671015722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc90476a85b6f61f8cba0dbca46a76f61da4347', '31.222.203.2', 1671015723, '__ci_last_regenerate|i:1671015723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409a86263c156a2bfce65111d9dc1651238bfc57', '31.222.203.2', 1671015724, '__ci_last_regenerate|i:1671015724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a66f4763332ac771e5ac312c7ecc348ecb13f63', '31.222.203.2', 1671015724, '__ci_last_regenerate|i:1671015724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e3c114e70071ecd95357b339c6b26971bba246', '172.105.247.100', 1671017491, '__ci_last_regenerate|i:1671017491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c8012a115db3351b534fc460e977e38b8fdbb4', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4355f0e155f566c5afa2365c7db3ffa03ef41a', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b55a16fcba0f19948f6355bcb707b0737184f2', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75577f3c4bc476b0964bfd0961d926abb408bcb', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e24dd33ba4d4cc19d7f26d74bf69a567cf4a16', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d143018162e47fa1b7c40c18245abb019f516c', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b0ae4642632a8ad915438fd83bd5a9568ea9a5', '172.105.247.100', 1671017492, '__ci_last_regenerate|i:1671017492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd359dc84941d2d872f36a691cef1d98cd1db9e', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd26cf35860c78f47343e00a6faec53ef29583f', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd921b0ce053ea7a559d82e146b139eca253d4e', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aab26c58034c98c9d3f2c841de4f923ab8efb2b', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de60544d15ef0b9bb1724b1f0a3af6dbb7e351b', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1bbd4d9e2bb6a6caf4734ba71311d56d74b445c', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4e373d14709700998aaed8e4621d13f3bd6ade', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476353511f9cf598ee891c8b532d037f87294d10', '172.105.247.100', 1671017493, '__ci_last_regenerate|i:1671017493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e86d08d4b9df95b23fa68e57173ca954934d33', '172.105.247.100', 1671017494, '__ci_last_regenerate|i:1671017494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee64bc960374b2ef990094f9ab10852fa87c0ee', '172.105.247.100', 1671017494, '__ci_last_regenerate|i:1671017494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae6913e4c62a3e097b33d7a43e5a054e1c6f509', '172.105.247.100', 1671017494, '__ci_last_regenerate|i:1671017494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df6e32ab8723bb5d668fec6fda4ca94b1b0e103', '172.105.247.100', 1671017494, '__ci_last_regenerate|i:1671017494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff87747d3ae669ac934674d43704b8a34baafcdb', '172.105.247.100', 1671017494, '__ci_last_regenerate|i:1671017494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edbf6df38fba3eaec2ed77d34772214e59e32e06', '172.105.247.100', 1671017494, '__ci_last_regenerate|i:1671017494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d23fd9f7da810f6773735d81f053fa99dc7514', '172.105.247.100', 1671017495, '__ci_last_regenerate|i:1671017495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bad8e119b36cafd4f3f3d2c851f8efe98498329', '172.105.247.100', 1671017495, '__ci_last_regenerate|i:1671017495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c139aa89af0e12571da779273c59bfe92a284260', '31.222.203.2', 1671017525, '__ci_last_regenerate|i:1671017525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e89563acb9ce67e4cf780d5a3662ed1485a75e95', '31.222.203.2', 1671017527, '__ci_last_regenerate|i:1671017527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96945b6cf68d401d84554428fc55c7dcbe138ab9', '31.222.203.2', 1671017527, '__ci_last_regenerate|i:1671017527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c823df1083a139d1ac61ca15ecc6240ae6bc8d', '31.222.203.2', 1671017527, '__ci_last_regenerate|i:1671017527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88c27a6bc6a948c05529e6748f86912faaef3dd', '31.222.203.2', 1671017527, '__ci_last_regenerate|i:1671017527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f759ffce9451b39d614a947e53544bbb53d6ec', '31.222.203.2', 1671017527, '__ci_last_regenerate|i:1671017527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('058256e048f3acf1adc98969bcee88390373e91b', '31.222.203.2', 1671019329, '__ci_last_regenerate|i:1671019329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad43281239f7f0aa59f7aacb2620dc34bc3072b', '31.222.203.2', 1671019329, '__ci_last_regenerate|i:1671019329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da119b19657da431b0c9432b395f80a8c2a1ef6', '31.222.203.2', 1671019329, '__ci_last_regenerate|i:1671019329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34be25a01b0d03362d4d0aa115f7c7e50476add3', '31.222.203.2', 1671019329, '__ci_last_regenerate|i:1671019329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e7699ab56a591b8f8490336c5453a2f2b334f3', '31.222.203.2', 1671019329, '__ci_last_regenerate|i:1671019329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20421a80c900e342a3b8ac59cf9a6ed1626ddc29', '31.222.203.2', 1671019329, '__ci_last_regenerate|i:1671019329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9200522411bfefc9e6952d9b89a594785f92c9f2', '45.120.39.89', 1671025603, '__ci_last_regenerate|i:1671025603;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671020038;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdb39e6340b55c8b9f81c85103d4bdbd176bbb2', '31.222.203.2', 1671021119, '__ci_last_regenerate|i:1671021119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18a0031f0f5d3398c4adb8800e90bc5aaf22804c', '31.222.203.2', 1671021121, '__ci_last_regenerate|i:1671021121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3632cbde05469f9c71d5c49ad5e7efb04d838b', '31.222.203.2', 1671021121, '__ci_last_regenerate|i:1671021121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521eac4928a3f53d6ae685d9e9b2b95a179e7208', '31.222.203.2', 1671021121, '__ci_last_regenerate|i:1671021121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9636cd67feee9224dfabbacc036fff3000ffe0b9', '31.222.203.2', 1671021121, '__ci_last_regenerate|i:1671021121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2225dc2555dab6c82d70961a1ab0d67345ee139', '31.222.203.2', 1671021121, '__ci_last_regenerate|i:1671021121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8315296225fa977b72673b4fdfa211d68d1cc3dc', '172.105.247.100', 1671022294, '__ci_last_regenerate|i:1671022294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc2b5b939687a8743a9ca3764683f4f92dbd030', '172.105.247.100', 1671022297, '__ci_last_regenerate|i:1671022296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f21032a0b43ecd86bc662f3094c2182b2ce1c2b', '172.105.247.100', 1671022297, '__ci_last_regenerate|i:1671022297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6a8167e7a36a16258cb5d415eb29a8eeb340f6', '172.105.247.100', 1671022297, '__ci_last_regenerate|i:1671022297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e50d7566ab897b7b68382b988ce0e0f2e389f0', '172.105.247.100', 1671022297, '__ci_last_regenerate|i:1671022297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cae90550afdad6fff713f48366ac0ad89bee5a4', '172.105.247.100', 1671022297, '__ci_last_regenerate|i:1671022297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa23fcb20d053d0103cae966030c873c758c8ed', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf70d88c95f340d2d971893c30a96f3da4e6cafa', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd824817a584db14fa52c811c098a447986e6d2', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4a4deaa3fb47fd7794765d8fe7baccc13b989e1', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0940e652c4c2fad5049ed339e6675ac3b7ad8c5', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9771137a91285581dc9b36241a7d73834f5a92', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c032e0fa229c45456a513097ddcf273d731057', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e46a39af512aa2aa070384252e12c3d0792a5f18', '172.105.247.100', 1671022298, '__ci_last_regenerate|i:1671022298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67edaf421a0fce1e054549f8e5c338a407b117e', '172.105.247.100', 1671022299, '__ci_last_regenerate|i:1671022299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40722df9e5f6a203318ff6ea41fe10ff2529b9b', '172.105.247.100', 1671022299, '__ci_last_regenerate|i:1671022299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b16ad4191a00f4b6dbc3414d287d6ccfa07460', '172.105.247.100', 1671022299, '__ci_last_regenerate|i:1671022299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a2e81e3a09b34b0870980a9273020ad1a5ab13', '172.105.247.100', 1671022299, '__ci_last_regenerate|i:1671022299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583814959cf6eba51810873aa06a390088bcac22', '172.105.247.100', 1671022299, '__ci_last_regenerate|i:1671022299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee9ba52127c142590714e745e2f6bccd6365a94', '172.105.247.100', 1671022299, '__ci_last_regenerate|i:1671022299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb631239eb635a12e9109f99d99534a475b7e045', '172.105.247.100', 1671022300, '__ci_last_regenerate|i:1671022300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03741f3b4d693403b32a8c3b27ba910bf08cd0d0', '172.105.247.100', 1671022300, '__ci_last_regenerate|i:1671022300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff126286e539ecec0bde965b3504f83c385f66b', '172.105.247.100', 1671022300, '__ci_last_regenerate|i:1671022300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7c9fec59d44ef4bff478de8896ddb44adf9433', '172.105.247.100', 1671022300, '__ci_last_regenerate|i:1671022300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377226d4e30de21165b13d2aa9a947557f48a1f9', '31.222.203.2', 1671022922, '__ci_last_regenerate|i:1671022922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f250af546df7eba68d3ccd51bae29aee11e6196', '31.222.203.2', 1671022922, '__ci_last_regenerate|i:1671022922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f054bde8ea3807fa15cf4ef289d47aa747e7a4d', '31.222.203.2', 1671022922, '__ci_last_regenerate|i:1671022922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bda598d353aafb65af0d2e6cbdd7d7983702594', '31.222.203.2', 1671022922, '__ci_last_regenerate|i:1671022922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03ee99ca41fe2b9a9453dcdacbca2750df8083d2', '31.222.203.2', 1671022922, '__ci_last_regenerate|i:1671022922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff6d53edde8d2663e45a593989e7503bd7feb95', '31.222.203.2', 1671022922, '__ci_last_regenerate|i:1671022922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80648d8a7eaf3f2531648047ba0bb38e4e37148', '31.222.203.2', 1671024729, '__ci_last_regenerate|i:1671024729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('120dc1adff1cec3be2dbd0a9cab7e9c4c889afac', '31.222.203.2', 1671024729, '__ci_last_regenerate|i:1671024729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887dfabe13e01ec86e3fb5b2dbf3f4bd9f963a36', '31.222.203.2', 1671024729, '__ci_last_regenerate|i:1671024729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71177a22aba30887e5f04ef08fb553657a9061ac', '31.222.203.2', 1671024729, '__ci_last_regenerate|i:1671024729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1415401a0872c1157c074c733d07824a13c77e0', '31.222.203.2', 1671024729, '__ci_last_regenerate|i:1671024729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5056d2bd6d352bebc94bc3d1d8531a89ef99ae', '31.222.203.2', 1671024729, '__ci_last_regenerate|i:1671024729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ecfad4219daf6f364f33b20324523a92c68088', '45.120.39.89', 1671026324, '__ci_last_regenerate|i:1671026324;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671026319;register_id|s:3:\"279\";cash_in_hand|s:9:\"2840.0000\";register_open_time|s:19:\"2022-12-14 11:06:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959edc298c766dc9a7c24b05ba9feaf4e0c0f8d7', '45.120.39.89', 1671026349, '__ci_last_regenerate|i:1671026324;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1670993959\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671026349;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81427876e588448c20260c1f269fd9748233a4d', '31.222.203.2', 1671026525, '__ci_last_regenerate|i:1671026525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485c7a76b306afef7c5988cced24d47771c3b415', '31.222.203.2', 1671026525, '__ci_last_regenerate|i:1671026525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ca268b173fb6d2537a9f2142b7e91687553df1', '31.222.203.2', 1671026525, '__ci_last_regenerate|i:1671026525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc526e712a21f0ec5875dfae4db9a8930ce03005', '31.222.203.2', 1671026525, '__ci_last_regenerate|i:1671026525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f618d645684d634ff460857614f3fbe94bb003', '31.222.203.2', 1671026525, '__ci_last_regenerate|i:1671026525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e356ddf6bcfb1b5f061afb721df6914244a56d79', '31.222.203.2', 1671026525, '__ci_last_regenerate|i:1671026525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94d3a04a90ef8d5e269a925428c5782fc163245', '172.105.247.100', 1671027092, '__ci_last_regenerate|i:1671027092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49b65d4e4686dc4c1be4528ef0c0eca5f34755a', '172.105.247.100', 1671027092, '__ci_last_regenerate|i:1671027092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552bfcb86f29e18c7b00ac323cc334a39f8bac12', '172.105.247.100', 1671027092, '__ci_last_regenerate|i:1671027092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d417446a0aef96227725e2b3a1b0c31ceb52d8e', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772a9833b6ebeb9eb0734ef95a076620ccbe83fb', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396b3d7efcf6c1c76556dd7c4f9b602717946e53', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0642523e512fcc3fdfdcd342c408901b92bd171b', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ad49473c7b2893065e79e0fb76942cebb57b01', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e8526ae62831996e92aa4e7e450265568097e5', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39256566ff7ce4ef4e1a29f163dd230909de639c', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748f4431873c3ca3aefd91717f1e049ce9b45aa6', '172.105.247.100', 1671027093, '__ci_last_regenerate|i:1671027093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34575b0928e2caeb99e2772e9af423c54f6e7f7', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6930d031d91323adb355c18d5716ac9522bbe924', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('860bcffc17512388c5a8e8d4c9ae9f6258218d73', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2aa6872e213b56be92759a7675ba347384bae9', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fe0994ad7e7e8f06acc7154e47f12a8c5f5f2f', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a069c8f1e4c2735b24a7777651f9c4b33a778dab', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07286f3d441bd17890131ae698c612a048df31e4', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0294830305d728005d6d8ab73a3118d7887ef01a', '172.105.247.100', 1671027094, '__ci_last_regenerate|i:1671027094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8df17c07d5794b6154aa913658d77fa3ee50f5', '172.105.247.100', 1671027095, '__ci_last_regenerate|i:1671027095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dec1095db5de0be2a28f5252e23e1fd1b4dec12', '172.105.247.100', 1671027095, '__ci_last_regenerate|i:1671027095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee26e9875e660ef008cda89357e4e83a400a06e5', '172.105.247.100', 1671027095, '__ci_last_regenerate|i:1671027095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d53a62b38859c6e6ec85e6712ce48d0feaf433f', '172.105.247.100', 1671027095, '__ci_last_regenerate|i:1671027095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad47fe6d746fe45a164638e4ced7330e52a4a371', '172.105.247.100', 1671027096, '__ci_last_regenerate|i:1671027095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035e3fa0b317bc1582d205679add4b58fd2c9d99', '31.222.203.2', 1671028330, '__ci_last_regenerate|i:1671028330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e893eecbed2f8c053f44ce40b43a3263f87065', '31.222.203.2', 1671028332, '__ci_last_regenerate|i:1671028332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db10abc0a1f69ed22e0b7478f436f5623e5a08c0', '31.222.203.2', 1671028332, '__ci_last_regenerate|i:1671028332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0c56bb76e93187c950bba9db56b464aa70d938', '31.222.203.2', 1671028332, '__ci_last_regenerate|i:1671028332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d971fdea3a92a250a9f156bc72b9c7e9e52407f2', '31.222.203.2', 1671028332, '__ci_last_regenerate|i:1671028332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99593b40f44935d0692c9cb94e4ab272444eda9', '31.222.203.2', 1671028332, '__ci_last_regenerate|i:1671028332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3e9716b767dec8e6c9e0d7346e9b4e8f62a5a5', '31.222.203.2', 1671030142, '__ci_last_regenerate|i:1671030142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c4d220d811a68b85c8ede90f4284aaa1c14956', '31.222.203.2', 1671030144, '__ci_last_regenerate|i:1671030144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebed658edfbb2d891fd8b599722586c2309c1728', '31.222.203.2', 1671030144, '__ci_last_regenerate|i:1671030144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a23f0a8313f5c3d0857a44e766dc33f43471249', '31.222.203.2', 1671030144, '__ci_last_regenerate|i:1671030144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58589c355d395f7a9e4d9212044ad2e64711eef7', '31.222.203.2', 1671030144, '__ci_last_regenerate|i:1671030144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5bb20bd1b4a7b9e6ba3327778704f68e8aebfbc', '31.222.203.2', 1671030144, '__ci_last_regenerate|i:1671030144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a7f865d6207f5c3a3d06fd9e29cd7a079a790f', '172.105.247.100', 1671031890, '__ci_last_regenerate|i:1671031890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908b515d9643d3b65939afb25963664183bc857e', '172.105.247.100', 1671031890, '__ci_last_regenerate|i:1671031890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60312da44b7366ae8f012fcc072babbddbcc58d1', '172.105.247.100', 1671031890, '__ci_last_regenerate|i:1671031890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f34a50f38f565366675824446d517ee169db9c', '172.105.247.100', 1671031891, '__ci_last_regenerate|i:1671031891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfecad755e07c220ba8ec1c427e57d84d4535751', '172.105.247.100', 1671031891, '__ci_last_regenerate|i:1671031891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1360d5da2ef300f3fe416c6ef1ae89b3e3dbaee6', '172.105.247.100', 1671031891, '__ci_last_regenerate|i:1671031891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de117ea3cd05d90530e5ee7b43e3aaf3fb0e213b', '172.105.247.100', 1671031891, '__ci_last_regenerate|i:1671031891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3f8a679861e6bdaaafbd623c82742a0a59e408', '172.105.247.100', 1671031892, '__ci_last_regenerate|i:1671031892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('506be6fd9cf13d3136dc1ddaf278e5fc17aca097', '172.105.247.100', 1671031892, '__ci_last_regenerate|i:1671031892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d233760bb6330f48336f77c95c8174fcfd17df23', '172.105.247.100', 1671031892, '__ci_last_regenerate|i:1671031892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bdb123c18008ef007a1190572bdafa8031045ae', '172.105.247.100', 1671031892, '__ci_last_regenerate|i:1671031892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3488c84497d94d51f00bd5c982b5c5de3baf7a', '172.105.247.100', 1671031892, '__ci_last_regenerate|i:1671031892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a314be3776c24ea953d91e528217b28dfdc963dc', '172.105.247.100', 1671031892, '__ci_last_regenerate|i:1671031892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd85ebe0a5d6f496c299f33800b26445de7e68b', '172.105.247.100', 1671031893, '__ci_last_regenerate|i:1671031892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a160f1812b5dbcac13bd5d31eaf827f1b3bb1c', '172.105.247.100', 1671031893, '__ci_last_regenerate|i:1671031893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154dd5a2850ad0f60cf7eba71dde1c7d48ac2662', '172.105.247.100', 1671031893, '__ci_last_regenerate|i:1671031893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7298cdaa7c5cee726de2ae77eb5de157911ae05e', '172.105.247.100', 1671031893, '__ci_last_regenerate|i:1671031893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b59cef0825db1812687d08fb553949adaf9251b3', '172.105.247.100', 1671031893, '__ci_last_regenerate|i:1671031893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6aec5ab3ad1bc443a03dab3b3f187fb6f35b88', '172.105.247.100', 1671031893, '__ci_last_regenerate|i:1671031893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9704646a66006b80a47763bae636efdd4d862444', '172.105.247.100', 1671031894, '__ci_last_regenerate|i:1671031893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f43b303d4cf25d8734118f009ed0f36d14c29dd', '172.105.247.100', 1671031894, '__ci_last_regenerate|i:1671031894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961c8aa245e304c10e97ad7f407ca7d424a29152', '172.105.247.100', 1671031894, '__ci_last_regenerate|i:1671031894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d9b7566c9eeedcdadf6c7094decc07d547fe23', '172.105.247.100', 1671031894, '__ci_last_regenerate|i:1671031894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8804c3a12796a030c18c3661d07f63420168114', '172.105.247.100', 1671031895, '__ci_last_regenerate|i:1671031895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c253a268d4840339a574fe8d728b659c37b6eb4f', '31.222.203.2', 1671031928, '__ci_last_regenerate|i:1671031928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3385e55337a7c706ae5f48bc98fa6442c61a3b95', '31.222.203.2', 1671031930, '__ci_last_regenerate|i:1671031930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c40cbde77d0b7b49c05c4e0d7cd4bb5181109f4', '31.222.203.2', 1671031930, '__ci_last_regenerate|i:1671031930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d67510f029538f80098eb5fb3c8b9c417b6835', '31.222.203.2', 1671031930, '__ci_last_regenerate|i:1671031930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df0e83bc18f6c7873dbc4f42f99b710b1c4dfd6', '31.222.203.2', 1671031930, '__ci_last_regenerate|i:1671031930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31766be8925af0a3d44bc3f04fe6c44c883136ce', '31.222.203.2', 1671031930, '__ci_last_regenerate|i:1671031930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be51cdbc42d57013c79a5a58e76c32c25b53fc82', '31.222.203.2', 1671033733, '__ci_last_regenerate|i:1671033733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc29130e0008d4214f996fd4a46dc3e705a498e', '31.222.203.2', 1671033735, '__ci_last_regenerate|i:1671033735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeed405ac859c2db88bce0f864dd2d7484bd85cc', '31.222.203.2', 1671033735, '__ci_last_regenerate|i:1671033735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe43cf0a08393461aa2ba560ee909a53c9ff3f8', '31.222.203.2', 1671033735, '__ci_last_regenerate|i:1671033735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53fb485993259506b21479d6415ed24243eff273', '31.222.203.2', 1671033735, '__ci_last_regenerate|i:1671033735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c34fe59dc681d6ce395bcad35771675fd1415f7', '31.222.203.2', 1671033735, '__ci_last_regenerate|i:1671033735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377ec2f054f89715380665e22393d3036c45b8f6', '31.222.203.2', 1671035533, '__ci_last_regenerate|i:1671035533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c99a9b2dc9cf346f43f9b3dcb40d3669d57715b', '31.222.203.2', 1671035533, '__ci_last_regenerate|i:1671035533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3219aed024d315786ce2890809e995093df74976', '31.222.203.2', 1671035533, '__ci_last_regenerate|i:1671035533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000821c95981e3bff5028024c8e066130a922b6d', '31.222.203.2', 1671035533, '__ci_last_regenerate|i:1671035533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f598bbbccef23450e61a2e823c7aa57000bfc3', '31.222.203.2', 1671035533, '__ci_last_regenerate|i:1671035533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f9ed50d09ddd7aaa992b672ff41d98ad0f27c4b', '31.222.203.2', 1671035533, '__ci_last_regenerate|i:1671035533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420ca3c44ceca176d11f9eeb4c8b69c35bb24a2d', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0103811e8bc1f86e51520537fd84083b5bb9c890', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0334b690f7c744fa3777d114d4c9b83300c94075', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92f3484d5215e8c9fa90e2a8d5bbac85a4cff78', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cddc9cfa5b270d9f19a3b669c6d50310c953cd4c', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726f1519e8555887c41c427b9f3a6930cddafe66', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0489bc72026815fe973508a122c9add757b12a0a', '172.105.247.100', 1671036690, '__ci_last_regenerate|i:1671036690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e641f27cfba816d6912d5732310e1ddfae2c30', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4651f3335bf8d161dca81fe98cf137c22515eaa9', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b60d488dbbdc5b609fb1aed030cfb335595eaf', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c4c4a4ac37f70ff1307694270e7f11cf60d6f41', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71257eefab34a1375c2572170db2e75615fbf7e9', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79af413b705f5af8c78cd86609c2353111c947c0', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62a3817b0b6ff3a1e8c79a7431894230b2c2d80', '172.105.247.100', 1671036691, '__ci_last_regenerate|i:1671036691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a727b75f6eac0d932291695ae054f68911a7779e', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3694a4e12f0bd70ba8efea9341b078d8ffceee1', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35525f200419b05a1591acfac7fca9494fa13f8', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5477034a7b263f23a7fd6f5c4842527e976d6746', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291d9baf2a982d9b002cfd0b6840315c46bac0f5', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a928524766989da4da84e775e18c7953a225b8d6', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d4c77a11a285dc0f995f4916009fe28cc83276', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d4a273e87feba14acfd6ac96a51c11a3e3cc61', '172.105.247.100', 1671036692, '__ci_last_regenerate|i:1671036692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41e8006da1ca2f12c3a31864f7b857429d96f3d5', '172.105.247.100', 1671036693, '__ci_last_regenerate|i:1671036693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602e48b0c871af27fd18e363230d287b3144e5f2', '172.105.247.100', 1671036693, '__ci_last_regenerate|i:1671036693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d818cb26769b8e8bb3ae88b0beb456d787322b3e', '31.222.203.2', 1671037329, '__ci_last_regenerate|i:1671037329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0454f81d5dccd25753e41957bc6cf5b099ab24b2', '31.222.203.2', 1671037329, '__ci_last_regenerate|i:1671037329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c35e194c738f29e9ca44f06acf1841a4dd7b98c', '31.222.203.2', 1671037329, '__ci_last_regenerate|i:1671037329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e6dd40524fa2cc934d3d691decd4348708539c', '31.222.203.2', 1671037331, '__ci_last_regenerate|i:1671037331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bfcbadef225f315c0b6ed0175d525189425ab28', '31.222.203.2', 1671037331, '__ci_last_regenerate|i:1671037331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce77db3e2147f5e5e2e83e2e7d92a4069f8e3b0', '31.222.203.2', 1671037331, '__ci_last_regenerate|i:1671037331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c85ebf65fca1c2b86adfcd2649963190270a5c9', '31.222.203.2', 1671039132, '__ci_last_regenerate|i:1671039132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856344419328988b9834f93b374a4e70776b821c', '31.222.203.2', 1671039132, '__ci_last_regenerate|i:1671039132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79aafd6789e015cf211e3f1605c161e597c04933', '31.222.203.2', 1671039132, '__ci_last_regenerate|i:1671039132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d53cbf0754326b33d88bbdbc0386b14caf6736', '31.222.203.2', 1671039132, '__ci_last_regenerate|i:1671039132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3758b57f5b3c4eb26ba35331a906e8df4585f18', '31.222.203.2', 1671039132, '__ci_last_regenerate|i:1671039132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17eae18cd051f639a5f107ab90dba62ef3dd7ebf', '31.222.203.2', 1671039132, '__ci_last_regenerate|i:1671039132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5b0cf61128cd5c923b6d25d22a69a1b467ec0f', '31.222.203.2', 1671040933, '__ci_last_regenerate|i:1671040933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fc1ba099d6b2a81994ef1730eff4feeb69d1b14', '31.222.203.2', 1671040933, '__ci_last_regenerate|i:1671040933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba885f4a5769c86b4df0188f8b112ac58708ea3', '31.222.203.2', 1671040933, '__ci_last_regenerate|i:1671040933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e45acddf62fc856cf9d5151ac7b0d0b257d3cd8', '31.222.203.2', 1671040933, '__ci_last_regenerate|i:1671040933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3acf43d4f3297fdea9fdbec30c3b2798e97a0e1', '31.222.203.2', 1671040933, '__ci_last_regenerate|i:1671040933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64a3abf854402ac623a07c4b4a413554cf8c4dad', '31.222.203.2', 1671040933, '__ci_last_regenerate|i:1671040933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8077af32f4f06920ed0866c565766c313d63c4b4', '172.105.247.100', 1671041488, '__ci_last_regenerate|i:1671041488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291a0bbb82d8187f9b3cd32cf5846a44e31f5d2b', '172.105.247.100', 1671041488, '__ci_last_regenerate|i:1671041488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3fb51a48591a29c71c50020fe4f1a65c7643e6', '172.105.247.100', 1671041489, '__ci_last_regenerate|i:1671041489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dabb5767fa8aab6e9fa4cf18a71cd59862e6467', '172.105.247.100', 1671041489, '__ci_last_regenerate|i:1671041489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd20b4d56531758d7b66c06c93294987ca94730', '172.105.247.100', 1671041489, '__ci_last_regenerate|i:1671041489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668db41c80e4bb8d63c9e255f110e14d650a6c3d', '172.105.247.100', 1671041489, '__ci_last_regenerate|i:1671041489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e35c7132dc854245a815149a547a677ad7f6ee4', '172.105.247.100', 1671041489, '__ci_last_regenerate|i:1671041489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185042c58b12d6d87ad6458bae9fb0c463e8e14f', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93321ee37329a178cecc81cfdd720ffe7821084', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bc97d47953a8e51a1c65dce5ed18d484392e5a', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcbde2a8122a8b08dfedbb399b23adbe08dd543', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d20606de1e6dd58255ce9b9fcfe33f15cf2f577', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf8c471b482443ac4408ca7662022ccebfb6841', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542611dc3124976f7ccbbfb1eea11b24e269d232', '172.105.247.100', 1671041490, '__ci_last_regenerate|i:1671041490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a8eee01a19315ee3b94e894098f4149722cf16', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb711a525873f85f8d4d8ef0e11623e8b6ffd903', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b28536d99132c6e52bd3504ddb7694770a6a7d', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2f3e1a59fcd39149bd857cf4b2bbee2b123e1d', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7358254f8a1d789b47be45db3c17f71b00c5904', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b4a5a67881850c2211fe20d3c0524b3d5600d8', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82bf6207cbee0b662f1a128e572f91af59f52012', '172.105.247.100', 1671041491, '__ci_last_regenerate|i:1671041491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a263891896e1c2066a6f99324ac65ccfb4ffec18', '172.105.247.100', 1671041492, '__ci_last_regenerate|i:1671041492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06aad2c56d15d6d9fdda1cff42c95f2388b576b6', '172.105.247.100', 1671041492, '__ci_last_regenerate|i:1671041492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b10d50adb649985f538a39aacf07e1b4d2071b5e', '172.105.247.100', 1671041492, '__ci_last_regenerate|i:1671041492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaeb7dbe887771c00f5578ff57337aa23f37e7e6', '31.222.203.2', 1671042732, '__ci_last_regenerate|i:1671042732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e0f04ff73807a819fcfeb1a473b7770c66a020b', '31.222.203.2', 1671042732, '__ci_last_regenerate|i:1671042732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa97343374a4eaa301b9b92c50468b3fdf0af5b', '31.222.203.2', 1671042732, '__ci_last_regenerate|i:1671042732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450d8af4826a61d8b899f2fe64266eb938292c72', '31.222.203.2', 1671042732, '__ci_last_regenerate|i:1671042732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daca37f8c707bbc6a18b7d06955cf491ac782b51', '31.222.203.2', 1671042732, '__ci_last_regenerate|i:1671042732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab63a4845b613c132c0f4b86f75ab52e5f8d544', '31.222.203.2', 1671042732, '__ci_last_regenerate|i:1671042732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28c8e999f773e47520578c6ab2f4dfd02b63d84d', '31.222.203.2', 1671044529, '__ci_last_regenerate|i:1671044529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e86fa88868cafa2275271585f670879fa4b2ac', '31.222.203.2', 1671044529, '__ci_last_regenerate|i:1671044529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586a944ee86c6c78d1d22ea5cb29cd4e379e2b79', '31.222.203.2', 1671044529, '__ci_last_regenerate|i:1671044529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e843989bb62262fae3ca76d75859f5d2b8911caa', '31.222.203.2', 1671044529, '__ci_last_regenerate|i:1671044529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a94286064399d9712dd124a117940020f09388', '31.222.203.2', 1671044529, '__ci_last_regenerate|i:1671044529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961b80fe2d0524f2317245178edf2968ca6c8f69', '31.222.203.2', 1671044529, '__ci_last_regenerate|i:1671044529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8087208c6174aed67efde530271627f7ff115603', '172.105.247.100', 1671046290, '__ci_last_regenerate|i:1671046290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8b08813a59446f6336eaf8b874c4ac7ae4c6740', '172.105.247.100', 1671046290, '__ci_last_regenerate|i:1671046290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7283766884bbda45607ebd035e39f4d6a7de8716', '172.105.247.100', 1671046290, '__ci_last_regenerate|i:1671046290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067c7d6074581f312fd9c82a6da92fc005c7af4e', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6442e417ac136617a421814aefdd86b3c999882a', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a88f448220b649aaaf8053b6a4f9b0edcdcc0141', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c41d19eb70f48984e31cd4a0a3cebbcaace158', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639fdec3929714c65e5b3888c7eb3b7b63f6e0bb', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6997fed3a515d545916a887c8d832f0184fa77', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16678fa572efcbf8b8ed4df723cb3284bb4a7678', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d212810bc5afd038c41c15c9b3859fe26bc17f', '172.105.247.100', 1671046291, '__ci_last_regenerate|i:1671046291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3dd93133026752ed823618c99cbd73a41e86ff', '172.105.247.100', 1671046292, '__ci_last_regenerate|i:1671046292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08396a868a18a406b72727cb6019434c49ca21b', '172.105.247.100', 1671046292, '__ci_last_regenerate|i:1671046292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c546d4696c814b928aaf20004b91ac8feecd8b7', '172.105.247.100', 1671046292, '__ci_last_regenerate|i:1671046292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf0404d1ca331eab432c98ddfd2d5ec03d9f1ce', '172.105.247.100', 1671046292, '__ci_last_regenerate|i:1671046292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca8c1da419f2b9d41910e55ea521f1ac0b553e9', '172.105.247.100', 1671046292, '__ci_last_regenerate|i:1671046292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8a477a64ee014caf7e0cd6f669bea18b06b237', '172.105.247.100', 1671046292, '__ci_last_regenerate|i:1671046292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5176b5671a4438c508f4e1b405ba76f250a631c8', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31daaf2f7f697e6860a338158ad4c1d17058ab61', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccd98c69263646c27a8ba2a1209f27a41719452', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bb1f7f544721f1067b995db40adb6299666a0f', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2da010067c509ee33abde4c18df838e093a7a2', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d291030774f195a703f8b44f3f402105d50624', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a8e448d4073c5e5a6e070508fc088dc8fa36b9', '172.105.247.100', 1671046293, '__ci_last_regenerate|i:1671046293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08cb85f1ae1630952e1f2ba50103ea39c5e638e', '31.222.203.2', 1671046331, '__ci_last_regenerate|i:1671046331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626a63dc24ae64cfcc84d4836f6434abab37b65a', '31.222.203.2', 1671046333, '__ci_last_regenerate|i:1671046333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d522e8518e9b2526bc9d4974a8386828dab53fe', '31.222.203.2', 1671046333, '__ci_last_regenerate|i:1671046333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2653d97c564a28ca5e81b5d3aea69b7d621c70de', '31.222.203.2', 1671046333, '__ci_last_regenerate|i:1671046333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf676b3e6adeabc7983705b96b47f844a5a231f', '31.222.203.2', 1671046333, '__ci_last_regenerate|i:1671046333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3810d5e264356f458b178d45b55e0bfe21f7097', '31.222.203.2', 1671046333, '__ci_last_regenerate|i:1671046333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2b305c2be9de05320f0e655dd329836a5c1996', '31.222.203.2', 1671048129, '__ci_last_regenerate|i:1671048129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa7d386d0e9f19bc12f9cf10cad1a937b82b4da', '31.222.203.2', 1671048129, '__ci_last_regenerate|i:1671048129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c411dd99cc3d09a9a637a14f15c4ae0cc8077f6d', '31.222.203.2', 1671048129, '__ci_last_regenerate|i:1671048129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0fbcd59211df2242038d7bac5449282b8792f34', '31.222.203.2', 1671048130, '__ci_last_regenerate|i:1671048130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c058523acf03714fddfe747089890a6bd03116', '31.222.203.2', 1671048130, '__ci_last_regenerate|i:1671048130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1023e1d4ee297d8b727f68e1b0a6871ef45a855d', '31.222.203.2', 1671048130, '__ci_last_regenerate|i:1671048130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1fc8a2de88764c06717bed1e0385a411bc53ed', '31.222.203.2', 1671049925, '__ci_last_regenerate|i:1671049925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2651ea23e0eead2c6095d47b3fdeae3e2e06a30', '31.222.203.2', 1671049927, '__ci_last_regenerate|i:1671049927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af648fba5057a41d38ef42c54db4488df34389b', '31.222.203.2', 1671049927, '__ci_last_regenerate|i:1671049927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21310dc102f401016de8c0115cc91472f1c5341d', '31.222.203.2', 1671049927, '__ci_last_regenerate|i:1671049927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b429ffe718134d22bd85f169dac6253d6a40cde6', '31.222.203.2', 1671049927, '__ci_last_regenerate|i:1671049927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006361b5d94632010148a9d6c1234e7d38530813', '31.222.203.2', 1671049927, '__ci_last_regenerate|i:1671049927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e704294968b2f9bee655158ac7f694f1d8717a5e', '172.105.247.100', 1671051082, '__ci_last_regenerate|i:1671051082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b988f5f786cf007deabf51c7ed85f8ee1c2731', '172.105.247.100', 1671051083, '__ci_last_regenerate|i:1671051083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8585fb7461bb95435037c1eb619f00ccdc93a4a8', '172.105.247.100', 1671051083, '__ci_last_regenerate|i:1671051083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23dc80c34e5f88baacf2a61fcd71ad67d3a41d5', '172.105.247.100', 1671051083, '__ci_last_regenerate|i:1671051083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ece690deec7f65df7ee04e232396ae9ffdc03ca', '172.105.247.100', 1671051083, '__ci_last_regenerate|i:1671051083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7eb22da616f3027b38a10e6e0b79d25d880675c', '172.105.247.100', 1671051084, '__ci_last_regenerate|i:1671051084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1cb876fe1b5cdfd524ed461e17e77888fd225f', '172.105.247.100', 1671051084, '__ci_last_regenerate|i:1671051084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa4e45768ca88b3d8dee915d007c4501965f725', '172.105.247.100', 1671051084, '__ci_last_regenerate|i:1671051084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e935352d697f1c97d5339e20586d229977a8896d', '172.105.247.100', 1671051085, '__ci_last_regenerate|i:1671051085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b543832e4a77b25e0427b0f22817fc842a2699', '172.105.247.100', 1671051085, '__ci_last_regenerate|i:1671051085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b42b2c7e1a9edc85c6dcef38d53bd6b897e9194', '172.105.247.100', 1671051085, '__ci_last_regenerate|i:1671051085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3135b3b77adc0bfc835cb21f0634de2cead922a3', '172.105.247.100', 1671051085, '__ci_last_regenerate|i:1671051085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c535f5bef61db4449f4eb37bc8255b717c726a5', '172.105.247.100', 1671051085, '__ci_last_regenerate|i:1671051085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbcb4ad5724a13069c7edf8751ae4295af063f6a', '172.105.247.100', 1671051085, '__ci_last_regenerate|i:1671051085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6dc885590dd6a0ebde973814ba39c3b43db6b99', '172.105.247.100', 1671051086, '__ci_last_regenerate|i:1671051086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8810292caceae0e1a80181dc4f4f3b174a0cd5', '172.105.247.100', 1671051086, '__ci_last_regenerate|i:1671051086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a4b016bf9a7ab4fed5bb2de331d50c8002d552', '172.105.247.100', 1671051086, '__ci_last_regenerate|i:1671051086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('246f558112d20f74b6f128f735cac8c8cea2c708', '172.105.247.100', 1671051086, '__ci_last_regenerate|i:1671051086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48fda95197a9925a5d3578095c415f451626ebca', '172.105.247.100', 1671051087, '__ci_last_regenerate|i:1671051087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729d0f451a36193c0f4bd023f3e4a6d1ddd301c6', '172.105.247.100', 1671051087, '__ci_last_regenerate|i:1671051087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8cc5017b44e36419421f274371d58d6413619f', '172.105.247.100', 1671051087, '__ci_last_regenerate|i:1671051087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3993ab58e186335e3aa9e115a17bb7eba735044c', '172.105.247.100', 1671051088, '__ci_last_regenerate|i:1671051087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e566c45c7419ccfee149beeb119c209ca0fe1b', '172.105.247.100', 1671051088, '__ci_last_regenerate|i:1671051088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41b49c08b9e78e448fbe1b0434faaf854153ad3', '172.105.247.100', 1671051088, '__ci_last_regenerate|i:1671051088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ec0f592131a88d439d28b312261361b459bde9', '31.222.203.2', 1671051730, '__ci_last_regenerate|i:1671051730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72377f9e3ad890f9691893faaac7381fc26b04c8', '31.222.203.2', 1671051730, '__ci_last_regenerate|i:1671051730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fb531de0c00051693492a71e110af1279fcdf31', '31.222.203.2', 1671051730, '__ci_last_regenerate|i:1671051730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6868e738746938abe30391b47dfac88b791fd43', '31.222.203.2', 1671051730, '__ci_last_regenerate|i:1671051730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dad47be91e7f9542daa6aca437dff65f02de2d', '31.222.203.2', 1671051730, '__ci_last_regenerate|i:1671051730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53bec62f758896dda2ec8d66c3ee0993f3e4b02', '31.222.203.2', 1671051730, '__ci_last_regenerate|i:1671051730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e3258ec239cdd3b4da9da00ddfddd257a0b1854', '31.222.203.2', 1671053522, '__ci_last_regenerate|i:1671053522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14b644d8e73e14794d297945b31abe61b21c8850', '31.222.203.2', 1671053524, '__ci_last_regenerate|i:1671053524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1225ae0b40779a8b5de30f720bbcd8219734ee', '31.222.203.2', 1671053524, '__ci_last_regenerate|i:1671053524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbe512c2e802a296bf182b20760771d9dc322fa', '31.222.203.2', 1671053525, '__ci_last_regenerate|i:1671053524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6cc510de95aaa5df4634d9eee8d31e9515a558e', '31.222.203.2', 1671053525, '__ci_last_regenerate|i:1671053525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7349e784d63528ddf0d7d2bfff429e3faca8847c', '31.222.203.2', 1671053525, '__ci_last_regenerate|i:1671053525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccece6688b78ad1e697e8cbbee28242f4d1ba90f', '31.222.203.2', 1671055331, '__ci_last_regenerate|i:1671055331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0988728574334a21a8ac9322311e6a56e366cd', '31.222.203.2', 1671055331, '__ci_last_regenerate|i:1671055331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca23c223bd124b681cc0c0cb81220f2d8a1155ab', '31.222.203.2', 1671055331, '__ci_last_regenerate|i:1671055331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba94a3bcf79b6977a87aac8115e4c0c21a87fb55', '31.222.203.2', 1671055331, '__ci_last_regenerate|i:1671055331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ac5971615780a76d3ab6d7fa4c703cb9b3199a', '31.222.203.2', 1671055331, '__ci_last_regenerate|i:1671055331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f087b8c09641bebcd7a47ced4c0c4b240ca8cfb5', '31.222.203.2', 1671055331, '__ci_last_regenerate|i:1671055331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7533b96d9bc7d3504c964c55c26015fcb855596d', '172.105.247.100', 1671055888, '__ci_last_regenerate|i:1671055888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2c6168ac25e0f7417bc621bc6f2251cf959795', '172.105.247.100', 1671055888, '__ci_last_regenerate|i:1671055888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e48b0990c25d5cc7c325b4296eb674a6e58298', '172.105.247.100', 1671055888, '__ci_last_regenerate|i:1671055888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f16d245468e672d26c930dc0db768e461e04711', '172.105.247.100', 1671055889, '__ci_last_regenerate|i:1671055888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91dc18fd3dcaaca6d6816e9bbb1afc90bc71f0bb', '172.105.247.100', 1671055889, '__ci_last_regenerate|i:1671055889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924f430b108f481915c92e0cae699c0ab6f58160', '172.105.247.100', 1671055889, '__ci_last_regenerate|i:1671055889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b8fd59c6ed2eb573f86c6bf4ea134974a517cf', '172.105.247.100', 1671055889, '__ci_last_regenerate|i:1671055889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce195cc3d932b56a444bd6faa953cd1c57526690', '172.105.247.100', 1671055889, '__ci_last_regenerate|i:1671055889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ab03086d5111a68ddded56dd019be2c83c7c0c', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3dbf66731abfc6a7823c07a055629f51ccb478f', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce4b5e4f124e6bb871447412efd3eadc97b1da2', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08412cd3246cf2cb79aabda8f5edc07b0aec1d1f', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc7321ecce7c28a42ae4b43c298b8e2eef494175', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f297cb5a72fd9c4b4f183645ba90bcd5cba9259', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38460c082356d826f10de3b15c88bf5c1d96f952', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e6eb8841853276b0699f985284b5234c9fceb9', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fdf4ea724e80181552f17cd45f0aa04c90ec2da', '172.105.247.100', 1671055890, '__ci_last_regenerate|i:1671055890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee6b97aeda679fae3b618c79fff429fa19e48e7', '172.105.247.100', 1671055891, '__ci_last_regenerate|i:1671055891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f21702190894193bdc942bc9114a5928cd98f8', '172.105.247.100', 1671055891, '__ci_last_regenerate|i:1671055891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('280c62532876cd146e577eee8d93f1dee647d663', '172.105.247.100', 1671055891, '__ci_last_regenerate|i:1671055891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dabcc8ad88b98a2b221be1a964dd89b3e46b71d', '172.105.247.100', 1671055891, '__ci_last_regenerate|i:1671055891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82776af167e4b1d11b7d91ae096e64852f686d4b', '172.105.247.100', 1671055892, '__ci_last_regenerate|i:1671055891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6e1d4cb30f7a241bc7423efa6e23107023b82d', '172.105.247.100', 1671055892, '__ci_last_regenerate|i:1671055892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a00fa6b7006564351dea2f9b0dbb373fd133ac', '172.105.247.100', 1671055892, '__ci_last_regenerate|i:1671055892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502aa1ccdc2c03737c9630a528070c88367f0fd8', '31.222.203.2', 1671057132, '__ci_last_regenerate|i:1671057132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c71e3df9edbc678d7cb5a2e90aae47b81795dbc', '31.222.203.2', 1671057134, '__ci_last_regenerate|i:1671057134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55465735a25c278c300ce6776d0efae3c1f7f70', '31.222.203.2', 1671057134, '__ci_last_regenerate|i:1671057134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c1cb46cbe36471974d941cfd48874419e08d89', '31.222.203.2', 1671057134, '__ci_last_regenerate|i:1671057134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fbd55320f985f5b6d43f62233fa03b3f7ebfd42', '31.222.203.2', 1671057134, '__ci_last_regenerate|i:1671057134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd4aa07b5d6741470589fd7615a6a58eff3e54e', '31.222.203.2', 1671057134, '__ci_last_regenerate|i:1671057134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56654ad2d8a5f85d2123cbeb2faf1f44a49a5ad0', '31.222.203.2', 1671058939, '__ci_last_regenerate|i:1671058939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b71f0ea20034d3137bb6ee12863ccb25c18bef4', '31.222.203.2', 1671058940, '__ci_last_regenerate|i:1671058940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b26753ae4139ca0ac2a72b6e07a8492da88dbcb8', '31.222.203.2', 1671058940, '__ci_last_regenerate|i:1671058940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178ddaa53e737c5fae3b3cbcfbe4cdfe0dc10948', '31.222.203.2', 1671058940, '__ci_last_regenerate|i:1671058940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7464c8b3b38d94335e3454f108224f127125d4d7', '31.222.203.2', 1671058940, '__ci_last_regenerate|i:1671058940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588673be09099c52d95be0a9d38dcc86ed5aa76b', '31.222.203.2', 1671058940, '__ci_last_regenerate|i:1671058940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc4960f04d12bc136f926b1dd0d7d726006566c', '192.145.236.202', 1671060545, '__ci_last_regenerate|i:1671060545;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fd4cdcf037a30aff3742dffc0806655fa561d1', '192.145.236.202', 1671060546, '__ci_last_regenerate|i:1671060546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec9093f6c5aabd249a184731544f54b0890f6b8', '192.145.236.202', 1671060548, '__ci_last_regenerate|i:1671060548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4944acc10a1ea2602bd30a440750acefc30d2d0d', '192.145.236.202', 1671060548, '__ci_last_regenerate|i:1671060548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deecfb992e698556b8b0759a9f4951185c039d43', '172.105.247.100', 1671060684, '__ci_last_regenerate|i:1671060684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4f383e184269bd79c7fa3cb9ff0ad325844359', '172.105.247.100', 1671060684, '__ci_last_regenerate|i:1671060684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c3f469a6d58f2d31c1e5acdd02c93508869ad5', '172.105.247.100', 1671060686, '__ci_last_regenerate|i:1671060686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f808a653fdd7bf438ad4c3340612e90e7d5c0a', '172.105.247.100', 1671060686, '__ci_last_regenerate|i:1671060686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eddfd81853a62c2aec5ea9ed4df20c2c9f8af83', '172.105.247.100', 1671060686, '__ci_last_regenerate|i:1671060686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a64d82cee71a88ca3376acf1163812b5865005', '172.105.247.100', 1671060686, '__ci_last_regenerate|i:1671060686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317cd30c427c3083c90a0bfaa6a3f3e083b8d047', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33aff499ee5190f1bfae5823dc630b35d216ddda', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c911558bf908afbb05a16465f6448c088a63de25', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fab904624520ba3724441f54767b9e482847283', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d163233aba6e46ef3d20ab4bf1de4bd24039455d', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5515b753315f12c5006aba993100380fed9f49ef', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b82b1b9e87416d685460a39a301046c50b9bb4', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72125603f44439b64b2656d6317c83a353f6ee7e', '172.105.247.100', 1671060687, '__ci_last_regenerate|i:1671060687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f57f51e1a3dfc9d790dfc618587e007bfc89f8', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8afdacd09460e17473055af529279f55aa5959', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0e30b5bc409acaac42066756665065d3b1425b', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1f1917bb5aabf678ff542adeaa9539cf6f6f72', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc6e6147d816681e99f77ef623fe9dc369d968e', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f79810957b9ba4f1816180f086436046b1b0b7d', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85de2b762849b5e465bcd4fce644a495a8a00460', '172.105.247.100', 1671060688, '__ci_last_regenerate|i:1671060688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c44feffc5feeecbb84c22ddba0286a9c86b9119', '172.105.247.100', 1671060689, '__ci_last_regenerate|i:1671060688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c06f540420aeca8ce0b74641de80ce45e19b6e5', '172.105.247.100', 1671060689, '__ci_last_regenerate|i:1671060689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a403ead12f3c62760c7ad33d797973a474523cba', '172.105.247.100', 1671060689, '__ci_last_regenerate|i:1671060689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ed0150d4f7059c37c0d016058038bbf676a6b5', '31.222.203.2', 1671060727, '__ci_last_regenerate|i:1671060727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83518b6a4f0ccae63b4c47d274f93e508f21d63', '31.222.203.2', 1671060729, '__ci_last_regenerate|i:1671060729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56bf2b359de5e06350332ea389d7c8a1fd6852c2', '31.222.203.2', 1671060729, '__ci_last_regenerate|i:1671060729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3419b74635c7cd8a8149ba46ee3b287ab9e90c4a', '31.222.203.2', 1671060729, '__ci_last_regenerate|i:1671060729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ccc47ed9ce0e52e65df72dcf384aacb7edd858c', '31.222.203.2', 1671060729, '__ci_last_regenerate|i:1671060729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28f63ca43b259e2feb37fd966d4600bdecb51e3', '31.222.203.2', 1671060729, '__ci_last_regenerate|i:1671060729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8625732757092f931149623d60017188217ec44', '31.222.203.2', 1671062531, '__ci_last_regenerate|i:1671062531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ef785f1fc5daf43c15f09679f604d387847ebc', '31.222.203.2', 1671062533, '__ci_last_regenerate|i:1671062533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54aae921973813d66455d033e3eedfc21d171d72', '31.222.203.2', 1671062533, '__ci_last_regenerate|i:1671062533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac6b368880577813cc60db701983bbe2020e581', '31.222.203.2', 1671062533, '__ci_last_regenerate|i:1671062533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae3282bb736704cbea76d3fc507b10410c9a15e', '31.222.203.2', 1671062533, '__ci_last_regenerate|i:1671062533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc6bcbb3f83bcd957a3f1e15b820b2cc6273498', '31.222.203.2', 1671062533, '__ci_last_regenerate|i:1671062533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606ead9755dde175b314e952b141e64282f777e5', '31.222.203.2', 1671064330, '__ci_last_regenerate|i:1671064330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36787bff522a32fd347195e6ee2a3776067982ff', '31.222.203.2', 1671064330, '__ci_last_regenerate|i:1671064330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6389ae36b48ae1e4d0072cc6d80785447a1d5d0', '31.222.203.2', 1671064330, '__ci_last_regenerate|i:1671064330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114ab623581bbc2b12562435a2993c7376c3e00b', '31.222.203.2', 1671064331, '__ci_last_regenerate|i:1671064331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd58b5b74a70b90b18df23d064426016e5e2a964', '31.222.203.2', 1671064332, '__ci_last_regenerate|i:1671064332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069e65816d333581d2babecb686a7efdd9adf406', '31.222.203.2', 1671064332, '__ci_last_regenerate|i:1671064332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37fa299aed10fbd9d8430a7e1d6fd6f8bc63be8', '172.105.247.100', 1671065482, '__ci_last_regenerate|i:1671065482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add0b9526e69c36e892cf9eb17aa0652ea24673b', '172.105.247.100', 1671065482, '__ci_last_regenerate|i:1671065482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14fd8bf9143d01a296b22df8a1eac75d3702b99e', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efff941253fe9a10951709576b249fd1e525a62a', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b338b9a1372097a9b4c5a762ad8fc49a6c4ce0f3', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a489814ce39b185f773725e48f34b61484352e86', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd36d3c738b79ddb873ac45e7fb58c4922dccf35', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cab9fa88b622569eec3536135483cc603db701c', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0417b280cd336d9ef2d742b582ce0a75a71b81c3', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e34863d2a14fc806a509aae0b5193c969788764', '172.105.247.100', 1671065483, '__ci_last_regenerate|i:1671065483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18c7b1241fb7a792afba15805bbd78dbf91694a', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf1eb4183592f07124169ea0e5fa63130e3b14f', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374c5d80dd3de3264d83be23ae3cd97ae99b2bde', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cfbafdd08d3011105fe4089dfb17d6f51894e5a', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d66217a1356b4f4504d7feecb000641ae2efa2', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be8319990d61bc46e6bde3fdd28f612a8ef4694', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a16a88c59a1e9dfe03993e127cdf0ec7df5c7b', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c66106de7f2b9917477ab8daf21c763da664400', '172.105.247.100', 1671065484, '__ci_last_regenerate|i:1671065484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cef5a4e6df63c922dea61c0fcdd03f18b4bb529', '172.105.247.100', 1671065485, '__ci_last_regenerate|i:1671065485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c4f236f677339271942fcf637c481e1b83a9a97', '172.105.247.100', 1671065485, '__ci_last_regenerate|i:1671065485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e557ba7bb45a9c92e630a0dd5d98e80a4e6078aa', '172.105.247.100', 1671065485, '__ci_last_regenerate|i:1671065485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e44cf8ae0dca9679a7e289dbd20a29692b01f650', '172.105.247.100', 1671065485, '__ci_last_regenerate|i:1671065485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4ab337d7fe3a506899b06124589185b90da036', '172.105.247.100', 1671065485, '__ci_last_regenerate|i:1671065485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebcc41ce35ce8ad2808cc809087cc19dbc0197c7', '172.105.247.100', 1671065485, '__ci_last_regenerate|i:1671065485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27bb45ed86122e2f91d766eeb0715bcc106c2395', '31.222.203.2', 1671066129, '__ci_last_regenerate|i:1671066129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314cf705fd4d6880c768ccba45e588574f033fdb', '31.222.203.2', 1671066131, '__ci_last_regenerate|i:1671066131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d781d0f33dede1d3ff5883c03d841d0832293141', '31.222.203.2', 1671066131, '__ci_last_regenerate|i:1671066131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ba1f3d40cc0f6d0634afbead7e9ebce75b9e9d', '31.222.203.2', 1671066131, '__ci_last_regenerate|i:1671066131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7938c9dc1701c76b809d0cd855f5af2f4146343b', '31.222.203.2', 1671066131, '__ci_last_regenerate|i:1671066131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a868970b53c08cc435f08111c908ed4873970ef', '31.222.203.2', 1671066131, '__ci_last_regenerate|i:1671066131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf17b87ccffddb8a3f9eb0264b0d3b79df962e2', '64.225.48.208', 1671066494, '__ci_last_regenerate|i:1671066494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a22dd4d810885845cb590ecaa2bd7bb438ede079', '31.222.203.2', 1671067929, '__ci_last_regenerate|i:1671067929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2651c75026c5d653d1f2fb5c5f77e015b75912ca', '31.222.203.2', 1671067929, '__ci_last_regenerate|i:1671067929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69fd9fb5ce2090f9a3f2706214cc7e84c207666', '31.222.203.2', 1671067929, '__ci_last_regenerate|i:1671067929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c088afa2573780e1096badae04af3333a83d7e99', '31.222.203.2', 1671067929, '__ci_last_regenerate|i:1671067929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60cd01eb8eb4655cd986e75498cf3238c674c719', '31.222.203.2', 1671067929, '__ci_last_regenerate|i:1671067929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a2cbb6b8ca38d16c569d34a1d194bbed645927', '31.222.203.2', 1671067929, '__ci_last_regenerate|i:1671067929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45488eeabd4c96e0a7e950329f1df7e2263db3d9', '31.222.203.2', 1671069729, '__ci_last_regenerate|i:1671069729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf85d8ee746edfdcdbc4710d403802030a3db61', '31.222.203.2', 1671069731, '__ci_last_regenerate|i:1671069731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84158ad250484ff908354775114ee4c59ae9a61d', '31.222.203.2', 1671069731, '__ci_last_regenerate|i:1671069731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f9883ef5d37b9216229db141e19cf023bae4cb', '31.222.203.2', 1671069732, '__ci_last_regenerate|i:1671069732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43401d62fe741df8ad8a7af7f80b71a33d5b399', '31.222.203.2', 1671069732, '__ci_last_regenerate|i:1671069732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a1375f997a4e505b464e012183278b402a0c5b', '31.222.203.2', 1671069732, '__ci_last_regenerate|i:1671069732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96cb728062a51d2120ee59cee279c235e6574a0e', '172.105.247.100', 1671070284, '__ci_last_regenerate|i:1671070284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620328012ff1f7b03bc2d1c3010ea079ddf084ad', '172.105.247.100', 1671070286, '__ci_last_regenerate|i:1671070286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce0053d001ca8f8013131113635beedd39c964f', '172.105.247.100', 1671070288, '__ci_last_regenerate|i:1671070287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713dd5d145055702b875f37c4d2d219f36585ae7', '172.105.247.100', 1671070288, '__ci_last_regenerate|i:1671070288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9168960635b4327114c846c5b6f5a34de2306aff', '172.105.247.100', 1671070288, '__ci_last_regenerate|i:1671070288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e399a6de94abe8503c4e0f81fe51100940d147', '172.105.247.100', 1671070288, '__ci_last_regenerate|i:1671070288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b141b566fbe8d16220a927a5fa84cd51c11c2d04', '172.105.247.100', 1671070288, '__ci_last_regenerate|i:1671070288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e59995e3c2c73b913d2031b4215305d8213d271', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df26a4628ee7e1348404c67de84bb08e7ec3044e', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7569fd00b3a589ccb87ca8d409eb0bd20a6bebd5', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a286e458202307c1ab6234175a1eda113df1a12', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44203cc80a2e4ca873520d5d1fb9f696b5f04e1', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691b339a1adc2233e442bf072f5ae4334177d16f', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05dd4c83e4884f29299f2e9966d0b2ae870770dd', '172.105.247.100', 1671070289, '__ci_last_regenerate|i:1671070289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74134133f7bfbc4abdbdf4e1fa9a3cbe288224f0', '172.105.247.100', 1671070290, '__ci_last_regenerate|i:1671070289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9fdd1174fd38c8b6c282748c465be3d58fe55c0', '172.105.247.100', 1671070290, '__ci_last_regenerate|i:1671070290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d582c4e18e6a5d55832146227c2663dffc434af', '172.105.247.100', 1671070290, '__ci_last_regenerate|i:1671070290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f2f43590403c292aea42debd4615535b0266749', '172.105.247.100', 1671070290, '__ci_last_regenerate|i:1671070290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60577efe1319b4ccabc028132c37cd9ed3689b00', '172.105.247.100', 1671070290, '__ci_last_regenerate|i:1671070290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a43c71b4287a034be5be86cb7cce2a64bbfe5d19', '172.105.247.100', 1671070290, '__ci_last_regenerate|i:1671070290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c6b50ecfd96a30a6c5b6bbd76d27842c427afe', '172.105.247.100', 1671070291, '__ci_last_regenerate|i:1671070291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cae60e7ce0ba82d73c588da74eee81c4326329', '172.105.247.100', 1671070291, '__ci_last_regenerate|i:1671070291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4cab3f5641f28ea030ec87d82ca391d50f5ed4', '172.105.247.100', 1671070291, '__ci_last_regenerate|i:1671070291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21d8d242d5da5b160b889cc2f110f570fd944d8', '172.105.247.100', 1671070291, '__ci_last_regenerate|i:1671070291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('282aed7c25bbde1a77169ecede1bbc50e1385cdf', '31.222.203.2', 1671071533, '__ci_last_regenerate|i:1671071533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7002d19fe4ea566193468d36eca600166b8c9a7a', '31.222.203.2', 1671071533, '__ci_last_regenerate|i:1671071533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a415b87989d3983d31879542b7c3b54176f22a', '31.222.203.2', 1671071533, '__ci_last_regenerate|i:1671071533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1bc9afb8029a6013c7d9e6cce1249d7506d0ac9', '31.222.203.2', 1671071533, '__ci_last_regenerate|i:1671071533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34de6ec408640a2ef6fb60f5c65c1d057f573e3f', '31.222.203.2', 1671071533, '__ci_last_regenerate|i:1671071533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf113b71cc48eb9ad8b6cd187b67df04f239249', '31.222.203.2', 1671071533, '__ci_last_regenerate|i:1671071533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae37ecf566f4496c4883505d351d5da0605ab18', '31.222.203.2', 1671073329, '__ci_last_regenerate|i:1671073329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73dda32f8994011d40f959c608e0d8fcd987dedc', '31.222.203.2', 1671073331, '__ci_last_regenerate|i:1671073331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd957613868b48bf20b4162bbf797dfacbb66677', '31.222.203.2', 1671073331, '__ci_last_regenerate|i:1671073331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65159dbcab273f20170f33882ee90b9c91b3c20e', '31.222.203.2', 1671073331, '__ci_last_regenerate|i:1671073331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ffff268705305e4beccadca616da8d5beab8d1', '31.222.203.2', 1671073331, '__ci_last_regenerate|i:1671073331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f78399286873f7e0a0f1c3cd47faf163d8ab32', '31.222.203.2', 1671073331, '__ci_last_regenerate|i:1671073331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f6046e83ec1b4dd353b0650d9a21ff60b0634e', '172.105.247.100', 1671074500, '__ci_last_regenerate|i:1671074500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a88ead13e5d5a888b70e139bdc3d2642f15cd34c', '172.105.247.100', 1671074501, '__ci_last_regenerate|i:1671074501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('676e35a67c1fa82770ed1ded61e071c7c3f80230', '172.105.247.100', 1671074501, '__ci_last_regenerate|i:1671074501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102ec1952fdbfffbf109d04355b590ae2b67b65e', '172.105.247.100', 1671074501, '__ci_last_regenerate|i:1671074501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e780754b8a5278941f44d437ec726600f4de99da', '172.105.247.100', 1671074502, '__ci_last_regenerate|i:1671074502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a735f0aeaad82750e0543b9a38803819a5142e', '172.105.247.100', 1671074502, '__ci_last_regenerate|i:1671074502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e588c97efe39b55ebfa475d3dd42919b0b78bdf', '172.105.247.100', 1671074502, '__ci_last_regenerate|i:1671074502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb76317f87f99ee9e77550842f780775088485ff', '172.105.247.100', 1671074502, '__ci_last_regenerate|i:1671074502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb70e4c0fd1baf07d2ab8212eaf869d36e48ac13', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab8933d495843353d7ca52f173c907f3afcd4fa', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4992a52ac996de55c2a702ffe8371072c28f423f', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04266e0b7a46c7e20962195b3f563e4716290399', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3457e7106d0748099a332541feb36e01c02596c5', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3acad41559e8e605a1c2350efa03172e8e87a2', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45c22fb2b9690471ac6be25b1969d4473430570', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffff32c31dd70d4c9834b8687fbe5e567c067722', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd91b18b178dd7b6264da05ca53d012d05d90f1', '172.105.247.100', 1671074503, '__ci_last_regenerate|i:1671074503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e96a50efac115d9973595416916ec94dd3a029', '172.105.247.100', 1671074504, '__ci_last_regenerate|i:1671074504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e88799cf75426061684eb7adee8c144abe7ef5', '172.105.247.100', 1671074504, '__ci_last_regenerate|i:1671074504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5996e3769a0358b42bfab99c5205d22d749f6688', '172.105.247.100', 1671074504, '__ci_last_regenerate|i:1671074504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de3f11a3e644398037159701370cb8fa9b0f4f2', '172.105.247.100', 1671074504, '__ci_last_regenerate|i:1671074504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cde8792e989220593eeb598ee2d72df43025fd5', '172.105.247.100', 1671074505, '__ci_last_regenerate|i:1671074504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8bbbdb4011132841041cd2dc7163daafe9080c', '172.105.247.100', 1671074505, '__ci_last_regenerate|i:1671074505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502edb3ddc4258454c7c67d56027942a53b01763', '172.105.247.100', 1671074505, '__ci_last_regenerate|i:1671074505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f998f9aaa76cae201f76ddc86589e4e6c8c49007', '31.222.203.2', 1671075129, '__ci_last_regenerate|i:1671075129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb3f9c4e676fddfed187a57ffbe3d8e2b8ea224', '31.222.203.2', 1671075131, '__ci_last_regenerate|i:1671075131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e180b1ad4fdfa31a72a2aaf6daf86ec50215140', '31.222.203.2', 1671075131, '__ci_last_regenerate|i:1671075131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83897aa11528d6693b87cb3f8a30bf84a8a8693e', '31.222.203.2', 1671075131, '__ci_last_regenerate|i:1671075131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1950841f661e720b9931963232ca6ac2dd907a7', '31.222.203.2', 1671075131, '__ci_last_regenerate|i:1671075131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b7d8f25a5282466030673bfba10dc401f75461', '31.222.203.2', 1671075131, '__ci_last_regenerate|i:1671075131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e831374e90ce8a544afd792a6b5c6ddac269051f', '31.222.203.2', 1671076933, '__ci_last_regenerate|i:1671076933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b42c525f82a8c536de95704c5e3eb444145baa5', '31.222.203.2', 1671076935, '__ci_last_regenerate|i:1671076935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ffa37f92d950379c4ecc0d16895cb0ca63a541', '31.222.203.2', 1671076935, '__ci_last_regenerate|i:1671076935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7e94f02d10428ff6b63c54ad83567803aa9ed7', '31.222.203.2', 1671076935, '__ci_last_regenerate|i:1671076935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214362ad8069fdfadee2348aa4fe122c40556d4a', '31.222.203.2', 1671076935, '__ci_last_regenerate|i:1671076935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63ad8cfffbb79f25de5106746c2e49331eac1b8', '31.222.203.2', 1671076935, '__ci_last_regenerate|i:1671076935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9520ce6a68507ec80054f355dd629bb51833924', '104.131.67.31', 1671077034, '__ci_last_regenerate|i:1671077034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bfb1cdcdd9513e6c3cb6a682d5a2c5dd14bb20', '31.222.203.2', 1671078728, '__ci_last_regenerate|i:1671078728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0ee4fe0ca2d58c419bbf2bccded8e199699ed1', '31.222.203.2', 1671078730, '__ci_last_regenerate|i:1671078730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a87f18f813f338453ab200593e29c6ca1d7aa24b', '31.222.203.2', 1671078730, '__ci_last_regenerate|i:1671078730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a2056de45e565dc294c71ab6cee0ecbe795196', '31.222.203.2', 1671078730, '__ci_last_regenerate|i:1671078730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918e0d2f18e40c107e82df239a4154afb7075c78', '31.222.203.2', 1671078730, '__ci_last_regenerate|i:1671078730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52a754da2af5a7d9e0e8b146d72eb3c925fa931', '31.222.203.2', 1671078730, '__ci_last_regenerate|i:1671078730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c114fea1dd23342b56ea7c129e3173fef4d8a827', '116.204.230.18', 1671079584, '__ci_last_regenerate|i:1671079512;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1670929700\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5dcd92b432e96f94169b21512a1e08787afc0fd', '104.236.1.244', 1671079560, '__ci_last_regenerate|i:1671079560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2be1b638a320d34051da9b9e016fbbb34d0116b', '172.105.247.100', 1671080488, '__ci_last_regenerate|i:1671080488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb2b5ff3aeec37b75a8e1804da9c248661a44de', '172.105.247.100', 1671080488, '__ci_last_regenerate|i:1671080488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e0239acd21dd71e413bf8eff391cade3558bd0', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f73755e740e1a274ec3e2e809f00ea4abf32583', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758ea98f32e81b7a68d12139122688de60e6f2c3', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09772018bcd9c392ab94a1f62c9ebf774481e03b', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db36bf2bde363e41ceeef26b92ef7744495ddb3a', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d69946af0a43c1444d1c24732fa9d1c5d20a681', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cd21edf8fbf6c19b3cb764374df99dd8aab1e0', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6d50c6ab96c98b3d1226efa2412b0972fd7383', '172.105.247.100', 1671080489, '__ci_last_regenerate|i:1671080489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd9bbf62dde8fb28a9a468e60de3e0cab0ba8af', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dffe1005e8faf20124275dcae1d6e8b089d5cc5', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ac8b59608a8532e373a3ad8244c5d589bc6b40', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f1884d7f6de069818a0e5c7d42a721e5e48031', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1e19560982079d9afc7f5afdb2ad35877a1da1', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5343fab7b446e7d009c78946d2205c9ceb05d7ce', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a54b2059260fd652be2ab3ae6f143ac5fcd3c8', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed13184ddd7b28428d1c4647495d165015ad4be', '172.105.247.100', 1671080490, '__ci_last_regenerate|i:1671080490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383fd1f9978f5a8a2030a6f9b8b65dc2a8537556', '172.105.247.100', 1671080491, '__ci_last_regenerate|i:1671080491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11eb40a9a90ef5083c9a7444d72a461d2de0118', '172.105.247.100', 1671080491, '__ci_last_regenerate|i:1671080491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba18c9915ec6909a4a2b1ed9a469008f4e0a819', '172.105.247.100', 1671080491, '__ci_last_regenerate|i:1671080491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef61f14e0a8ddbee6e579f8f8866861de62a3fa2', '172.105.247.100', 1671080491, '__ci_last_regenerate|i:1671080491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607010c06cc0654a479cb410b6c4cb0987fcfdd9', '172.105.247.100', 1671080491, '__ci_last_regenerate|i:1671080491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95673585424037b9fba8f16642a34ae1842eb523', '172.105.247.100', 1671080491, '__ci_last_regenerate|i:1671080491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf67fc9fb39e4e1761893c1f69120167c95ab8d9', '31.222.203.2', 1671080526, '__ci_last_regenerate|i:1671080526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c316a2d10496e16452c95be6b67850302bfd45ca', '31.222.203.2', 1671080528, '__ci_last_regenerate|i:1671080528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c446f74904dacb463086ecd3bc7d1f5e2ae84e', '31.222.203.2', 1671080528, '__ci_last_regenerate|i:1671080528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2b9d2b6e1645b9bce97d2561209f0f2020e21e', '31.222.203.2', 1671080528, '__ci_last_regenerate|i:1671080528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a63be6721c1977f445b4fadbd283f801100a9f', '31.222.203.2', 1671080528, '__ci_last_regenerate|i:1671080528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe15800d587304b2847f9b5d45c859f4bac327c', '31.222.203.2', 1671080528, '__ci_last_regenerate|i:1671080528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48d23cb32ea852ce4a45244f457df57593b095b', '45.120.39.89', 1671080988, '__ci_last_regenerate|i:1671080988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671007600\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671080796;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ce050b361df2d3d14345c1eeb44332b944eb6f', '45.120.39.89', 1671082107, '__ci_last_regenerate|i:1671082107;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671007600\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671081167;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80aac30721e1c642f1110b780acfe9b5fc266f0', '45.120.39.89', 1671082917, '__ci_last_regenerate|i:1671082917;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671007600\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671082913;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a282d66203c971219ed9f5ec729eda8e942ac381', '31.222.203.2', 1671082330, '__ci_last_regenerate|i:1671082330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67db6d1ed310d201530f69d5a64e34793b05e38b', '31.222.203.2', 1671082332, '__ci_last_regenerate|i:1671082332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6577887670d5810920d015b84c38550428cfff3a', '31.222.203.2', 1671082332, '__ci_last_regenerate|i:1671082332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a013fe4668833f057e48f3ea18cab91eb4fef5', '31.222.203.2', 1671082332, '__ci_last_regenerate|i:1671082332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa204632c94bbdaa9d0b2bc0855d15d45bf53650', '31.222.203.2', 1671082332, '__ci_last_regenerate|i:1671082332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc9a9f17714839097373b21dcd357645d9c19af', '31.222.203.2', 1671082332, '__ci_last_regenerate|i:1671082332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e80aa9b2ac7c97d560c6aef539c11c2f3cc6bbc1', '45.120.39.89', 1671084975, '__ci_last_regenerate|i:1671084975;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671007600\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671082917;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeeb36e206b38db4510c5a8aa4c9c2c71e7d7c5c', '104.131.64.232', 1671083579, '__ci_last_regenerate|i:1671083579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73b9d7c765943ef16ee160adf992170634892840', '31.222.203.2', 1671084133, '__ci_last_regenerate|i:1671084133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0af32766cfa252c4f1b1889da0d4283597d29fb', '31.222.203.2', 1671084134, '__ci_last_regenerate|i:1671084134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661bf1776aa924c4f492c4dac6f7109b1bbefe64', '31.222.203.2', 1671084134, '__ci_last_regenerate|i:1671084134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3cce3f00e14742627d99554c7dae263894b66f', '31.222.203.2', 1671084134, '__ci_last_regenerate|i:1671084134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8641461c99dc88436f5b535d6fd83dcb4bc2a849', '31.222.203.2', 1671084134, '__ci_last_regenerate|i:1671084134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7689e5ef446cdc8f22364e55e02948420c11fb69', '31.222.203.2', 1671084134, '__ci_last_regenerate|i:1671084134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b8e2c6c818d2dee8c8ac4ae3ed1c486d11f0a3', '45.120.39.89', 1671084976, '__ci_last_regenerate|i:1671084975;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671007600\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671084975;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533394b8c6529336e5184a3cef9685bba3c0a8e5', '172.105.247.100', 1671085291, '__ci_last_regenerate|i:1671085291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b59eba3b5e121e0dfe6f629804b1fd71ef5ac12', '172.105.247.100', 1671085291, '__ci_last_regenerate|i:1671085291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8194901c8c82ed235a222639049085f06e415b32', '172.105.247.100', 1671085292, '__ci_last_regenerate|i:1671085292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c741e9808e21374a2a984258aece45af195052b', '172.105.247.100', 1671085292, '__ci_last_regenerate|i:1671085292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09b45317a159008c11311bf43bd2ee7cd5733f6', '172.105.247.100', 1671085292, '__ci_last_regenerate|i:1671085292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1392defd257cca43939788dedddf14c1d6d5abce', '172.105.247.100', 1671085292, '__ci_last_regenerate|i:1671085292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a74688409e4bd827f79c5ae3b12f7de5ee26d9', '172.105.247.100', 1671085292, '__ci_last_regenerate|i:1671085292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a39e025c108a3320ea7ee7407ae224763909738', '172.105.247.100', 1671085292, '__ci_last_regenerate|i:1671085292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c378e6c03b4933a4969b99e7bd67d554d4a0d300', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca1c373c39aa5d81fc6e667efb105d0c3de1e3b', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec060680e62e72ebd9a84608f26d4c7d96c95e0', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6136825b1f446980d1658fb225b7be89de2f01', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4aa75f42499ef3a18e40486943c6041409294d', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659208055dc1388d813f752eb0bf4e89d825572c', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad0b619eff16bdb158507bcc6e37dce3e672cf83', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a626f84957fb0ffc275e948fcdeca52ef8dcda', '172.105.247.100', 1671085293, '__ci_last_regenerate|i:1671085293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f5de8c1dfd8d8680b1b0ad8a26f59a12edd1f4', '172.105.247.100', 1671085294, '__ci_last_regenerate|i:1671085294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49c889dadbee30c370163f6d6abd7b607490552', '172.105.247.100', 1671085294, '__ci_last_regenerate|i:1671085294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4397db977b2db17dfebd4e26b58ef85dd835bb', '172.105.247.100', 1671085294, '__ci_last_regenerate|i:1671085294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f205bc582054e4caf0ca652d3287e5a3c190d82', '172.105.247.100', 1671085294, '__ci_last_regenerate|i:1671085294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b6b249e2b4bdf55f1eee6b3cc6bbef70dea1c8', '172.105.247.100', 1671085294, '__ci_last_regenerate|i:1671085294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce27055141bc9279493a02d0feb9a4d78e2f168', '172.105.247.100', 1671085294, '__ci_last_regenerate|i:1671085294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a25bcb6e785eb986498b1dd7b6b29469abbec0', '172.105.247.100', 1671085295, '__ci_last_regenerate|i:1671085295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2321631b3f7dd4d2edace6022f59ecf396b5bcf7', '172.105.247.100', 1671085295, '__ci_last_regenerate|i:1671085295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de0f0bea312a65f4decd0b4f6973f172517a47c7', '31.222.203.2', 1671085931, '__ci_last_regenerate|i:1671085931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d3d04d2b35fb6648dd82af4ac03b83aced94be', '31.222.203.2', 1671085932, '__ci_last_regenerate|i:1671085932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3a728037980e1a0b4f0eda9fddaa08357011db', '31.222.203.2', 1671085932, '__ci_last_regenerate|i:1671085932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c49b812d00724f9e86dd5865061c1cb0ee29f1', '31.222.203.2', 1671085932, '__ci_last_regenerate|i:1671085932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40d9ecf7a401f2a0e161fad1f94c10e98b57562', '31.222.203.2', 1671085932, '__ci_last_regenerate|i:1671085932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb6888c43596a89932025c8ea3a4914e8e9e6ca', '31.222.203.2', 1671085932, '__ci_last_regenerate|i:1671085932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dbe4278abdeed251c3ed5e50cd5daa5552d2175', '31.222.203.2', 1671087730, '__ci_last_regenerate|i:1671087730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097f780dc690225f42bda329e79d39e06d0d9de3', '31.222.203.2', 1671087730, '__ci_last_regenerate|i:1671087730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f219437c1a5e9954ff22e646d0c012e28ab54a2', '31.222.203.2', 1671087730, '__ci_last_regenerate|i:1671087730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476507fbcf668089c55ce54231a464dd663fe077', '31.222.203.2', 1671087730, '__ci_last_regenerate|i:1671087730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76edd36b1630faa70a96a03698ed42082cfec162', '31.222.203.2', 1671087730, '__ci_last_regenerate|i:1671087730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8cabae90266593ab54c7fd8ca46e8b0356a3ea1', '31.222.203.2', 1671087730, '__ci_last_regenerate|i:1671087730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8896784a8ffb01940362be83ab9858014b247320', '31.222.203.2', 1671089534, '__ci_last_regenerate|i:1671089534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3660360428dd0f03b6317ed7b8980d76e719b5dc', '31.222.203.2', 1671089536, '__ci_last_regenerate|i:1671089536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a01461627f22f1d1db2c743297c244f07301079', '31.222.203.2', 1671089536, '__ci_last_regenerate|i:1671089536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a575be619852206cd82a2557aa58581624858bc2', '31.222.203.2', 1671089536, '__ci_last_regenerate|i:1671089536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('410371d871b79bd3cb4ab0a015714d807b719040', '31.222.203.2', 1671089536, '__ci_last_regenerate|i:1671089536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde1e5a6b4955921bd0e62b269a10b762155e06d', '31.222.203.2', 1671089536, '__ci_last_regenerate|i:1671089536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39294401bd9a37ee0d9089b998b0759b0e6b128', '172.105.247.100', 1671090090, '__ci_last_regenerate|i:1671090090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b3ccbd4422e1214a99d4192a2bb5d6bc9bf667', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1df88a44c1cd3c14e75dbce6fbff6c00b84a46', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb8d2fd184454adae578c1ce565e61eca5ff4f7', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb800de9f781b9624e9f4d9e5f9b97735f1f551', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f84c7336d695583f8c3741363c66500a07920e1', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003d6593150c5de046903cb29b39b795ca858fd1', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03275fea5c5a1a7306e5f89b50085130fab1b075', '172.105.247.100', 1671090091, '__ci_last_regenerate|i:1671090091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fddd33cc5fc36eb8c31c547835f8c48a65661f8', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3051cec9df2a6288c19605fd3002c6d3eaf0ef', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60dce3a436a0d8d840a6ec3617ab9006affc8245', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa6c1a21d2de323cb01a7bc2d508c4b431d4460', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c212c9812e0f3c0d9c29d1b9280cda78bc2f78d4', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29a7c46f6e8c9116060fa5ca6e505b2c57c5836', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1812a2706cfb08a82701e19d0721aa9bea4eb9ae', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1869c499dc1cf8caf70cdb436154b297fc7a7292', '172.105.247.100', 1671090092, '__ci_last_regenerate|i:1671090092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79866536b6c352511966ad34cba96f33fd9e591f', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2405198716e0c6934efc6fbe6c2a81f23efe22', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eafd18009d2990277df28e83043a409e7231d3cb', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f0eb5c27316474110241038a8783f22bb5fb58', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38dc3efee7a5c743847fa7ddebe6d9813909827', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ac95091a357276aa7461411f10b77f669dca87', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfecc36cac4e24ca1a42eea976839aaec3c708d6', '172.105.247.100', 1671090093, '__ci_last_regenerate|i:1671090093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f39a32cc424133068ffaa0331f7334575fc49a9', '172.105.247.100', 1671090094, '__ci_last_regenerate|i:1671090093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56eb625eeed031bcd961fa3c46752b2a8a9ced8e', '31.222.203.2', 1671091331, '__ci_last_regenerate|i:1671091331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e8e20a56a706720d9c38066d73054524fd2fed', '31.222.203.2', 1671091331, '__ci_last_regenerate|i:1671091331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371f4a4b1ad4a2d6097320ce2f71e808981e6cdd', '31.222.203.2', 1671091331, '__ci_last_regenerate|i:1671091331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1256792390aefa37240a1b00fb43cce7eff2483', '31.222.203.2', 1671091332, '__ci_last_regenerate|i:1671091332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab852b8278074529bfcc0b39689d89ec2ffc39b9', '31.222.203.2', 1671091332, '__ci_last_regenerate|i:1671091332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66887e4f09a56b984a9ce69308a91bc8e126702e', '31.222.203.2', 1671091332, '__ci_last_regenerate|i:1671091332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1035f1b26158b6f62b457abb37a900a225728842', '45.120.39.89', 1671094244, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671094244;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671092316;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3231d26762a20be7a8a3f4e9dab062cdefc7ec87', '45.120.39.89', 1671092249, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3b6cb7bc31c511f48b8bdddc6a80b432fe2175', '31.222.203.2', 1671093134, '__ci_last_regenerate|i:1671093134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9cccbad308cadc2ed2c30203653267c48f7a2c', '31.222.203.2', 1671093135, '__ci_last_regenerate|i:1671093135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd7c6d724d20873cd07ea345d7044f7a8a6ca3f', '31.222.203.2', 1671093135, '__ci_last_regenerate|i:1671093135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519a5f974b75ff0689aaaacb9493576241d26eaa', '31.222.203.2', 1671093135, '__ci_last_regenerate|i:1671093135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a15d8216a4ccf465c339f10b579a29a5b9375e', '31.222.203.2', 1671093135, '__ci_last_regenerate|i:1671093135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d19973e0bb09720b96e5a6e1fd6b5039db7b952', '31.222.203.2', 1671093135, '__ci_last_regenerate|i:1671093135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ddad3f80530877b99b415345c673c3466b36af', '45.120.39.89', 1671097408, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671097408;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671097392;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d4cda1b6837b695c407f590173e56fc1e4d495', '172.105.247.100', 1671094890, '__ci_last_regenerate|i:1671094890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34bdc91e3d7a217ee66ffa3fcb62169c991e813c', '172.105.247.100', 1671094890, '__ci_last_regenerate|i:1671094890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563849deded05d03d05d7fd1a1ad2bd55f51662b', '172.105.247.100', 1671094891, '__ci_last_regenerate|i:1671094891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1610565e6694e00cd03f40ede0b144f08e4fb900', '172.105.247.100', 1671094891, '__ci_last_regenerate|i:1671094891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee3c405dab7abde528730ed4667e7389069537c', '172.105.247.100', 1671094891, '__ci_last_regenerate|i:1671094891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b43bb2a5a4a03547d75972c4110ba26e0e8b54c5', '172.105.247.100', 1671094891, '__ci_last_regenerate|i:1671094891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9784d9872b10ffc629c832cf7ae8c31181245f2d', '172.105.247.100', 1671094892, '__ci_last_regenerate|i:1671094892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747519375843213fae15a0e64222d3f14845a66b', '172.105.247.100', 1671094892, '__ci_last_regenerate|i:1671094892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d8ebc03be0d7f48546db5f986957337c15a96c8', '172.105.247.100', 1671094892, '__ci_last_regenerate|i:1671094892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404d9e83b865ebfd71e33629388c63df66b427b2', '172.105.247.100', 1671094892, '__ci_last_regenerate|i:1671094892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0989a0d0c4b4416f9bb2fa15923530318cc9fd01', '172.105.247.100', 1671094893, '__ci_last_regenerate|i:1671094893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a14d9238f8133cc501f143d00e53b53e0829be', '172.105.247.100', 1671094893, '__ci_last_regenerate|i:1671094893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1c6ebba697086d01a75e43121ef9f8d86aaa6e', '172.105.247.100', 1671094893, '__ci_last_regenerate|i:1671094893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ccd3bb325eb3b43b12f66dfb1d9df6fb393798', '172.105.247.100', 1671094893, '__ci_last_regenerate|i:1671094893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9195427062e245f5aaeb6cf753834a6e3f45dede', '172.105.247.100', 1671094893, '__ci_last_regenerate|i:1671094893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc82a71c4fd7b050615ed2a754245cbfeecaf681', '172.105.247.100', 1671094893, '__ci_last_regenerate|i:1671094893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('616b76bf2a97ab82f922ee004ef1004819284d8f', '172.105.247.100', 1671094894, '__ci_last_regenerate|i:1671094894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0f448752e35c36518c6eecb680eaac2b56b7644', '172.105.247.100', 1671094894, '__ci_last_regenerate|i:1671094894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e7a7f927b81c3aed970ee8147f5b6afdb7c574', '172.105.247.100', 1671094894, '__ci_last_regenerate|i:1671094894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('591f0f71a3a97f6c155a1b161bd36739051b5d14', '172.105.247.100', 1671094894, '__ci_last_regenerate|i:1671094894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5d2d182327a1d8dd5c14402c3fa578c42b389b', '172.105.247.100', 1671094895, '__ci_last_regenerate|i:1671094895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79cf8be760e7a8b599400d94daf5a058987c88f8', '172.105.247.100', 1671094895, '__ci_last_regenerate|i:1671094895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa065bd9a4624196a36cb7bbc2587db4659bfc54', '172.105.247.100', 1671094895, '__ci_last_regenerate|i:1671094895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0ef308cf7121f64bedeac52cfe498a7dd249b2', '172.105.247.100', 1671094896, '__ci_last_regenerate|i:1671094895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d3d41fb12a3efa09d122fffd91bfa8e83ddaed', '31.222.203.2', 1671094931, '__ci_last_regenerate|i:1671094931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0387ebf332112d14b7b78b2c5d5f1ee9acadb57d', '31.222.203.2', 1671094933, '__ci_last_regenerate|i:1671094933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('664770fe949c7fd83605a8d00c598d2237c498f7', '31.222.203.2', 1671094933, '__ci_last_regenerate|i:1671094933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42b2b3d565d483867d307bc27a5ce79ca415ddb', '31.222.203.2', 1671094933, '__ci_last_regenerate|i:1671094933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503b0a77111f32f601653ea6f05aa534aa93b039', '31.222.203.2', 1671094933, '__ci_last_regenerate|i:1671094933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6152112663864e73f639e30b72abc317039e50f', '31.222.203.2', 1671094933, '__ci_last_regenerate|i:1671094933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eca8acbcb536a4267057ff9d074209407aec3c1', '31.222.203.2', 1671096731, '__ci_last_regenerate|i:1671096731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81556883cacf0156b1c8b5597e0e4bff57753179', '31.222.203.2', 1671096731, '__ci_last_regenerate|i:1671096731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021b7d1c9589e7d5fd242c1c69027c1da50b9d99', '31.222.203.2', 1671096731, '__ci_last_regenerate|i:1671096731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f556ae39cd103016cd71319369d366c4454439f', '31.222.203.2', 1671096732, '__ci_last_regenerate|i:1671096732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3570185efc586ac1325c3fdd1ff1591ef91eb94a', '31.222.203.2', 1671096732, '__ci_last_regenerate|i:1671096732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650fcff719745f78eb56ee483bddd023099b2120', '31.222.203.2', 1671096732, '__ci_last_regenerate|i:1671096732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5691801bc2b9d9cccd1b1c7634187a5e36b259a1', '168.235.94.202', 1671097341, '__ci_last_regenerate|i:1671097341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a3ef6b341e266227164ff2b1bbcebea8e9bafa5', '45.120.39.89', 1671098724, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671098724;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671098718;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9ce2d958c8df6d96062a773b7c7cbf031f008a', '31.222.203.2', 1671098528, '__ci_last_regenerate|i:1671098528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0b4912cbd100c114d6b6631afc2441fdd356e8', '31.222.203.2', 1671098530, '__ci_last_regenerate|i:1671098530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c1149002298d377424c4949dc4ea027e447f41', '31.222.203.2', 1671098530, '__ci_last_regenerate|i:1671098530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d2c60afddcd02bfd03d91dbe43a06284fe7128', '31.222.203.2', 1671098530, '__ci_last_regenerate|i:1671098530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3536c9e86c25d8429bf98e316abb2fb868ffc2', '31.222.203.2', 1671098530, '__ci_last_regenerate|i:1671098530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a1f432165da2142eaaa3107ed7b6c83af65282', '31.222.203.2', 1671098530, '__ci_last_regenerate|i:1671098530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4389e725b4bb2ec3fbe884fa435f12abedc200eb', '45.120.39.89', 1671101645, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671101645;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671098724;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b25e74bddf77b0523949766dbf2637209f0a424', '172.105.247.100', 1671099684, '__ci_last_regenerate|i:1671099684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357781b92994e139b533dd16e95cc0c165a28a73', '172.105.247.100', 1671099684, '__ci_last_regenerate|i:1671099684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785a954f8bc7814b02b77b693e5c30a7b4448887', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4386ab66b4c6ca959d95073a03144427016b7707', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcfe0e2d88c1159c371cec7ffcd5da0c64657efd', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b9fdaeba7caac8f1e824c599cdb42f0d6bd9db', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30beee723f5904f5f78eb27d2271b25de83168fc', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d962230c2212c166d6403ed5f1c69290d28d5506', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee08c97ec38f92a0e55c654724fea864334edfe', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99dea43fa498813ea2a713ba532a42e06cf2c51', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff21c7904713156f42709e723b1bc920ff00319', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad28eaedab9591197d9764373775817851240d2', '172.105.247.100', 1671099685, '__ci_last_regenerate|i:1671099685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b72e76728fd69c45ecbe714e47509d9a46c661', '172.105.247.100', 1671099686, '__ci_last_regenerate|i:1671099686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a6410fbc9287fb5e5d87d8d099c7885c18404f', '172.105.247.100', 1671099686, '__ci_last_regenerate|i:1671099686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271fea1293f9a8ac1e6418b718af12a88e436557', '172.105.247.100', 1671099686, '__ci_last_regenerate|i:1671099686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a371c88cfd04b08e5b0ddacb15e0567d1847ef49', '172.105.247.100', 1671099686, '__ci_last_regenerate|i:1671099686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015e65dcfc8b17a6285ec9c318629260e3a4f2f7', '172.105.247.100', 1671099686, '__ci_last_regenerate|i:1671099686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2281bd8b633ff52751ed03c6b5f212a0e53093db', '172.105.247.100', 1671099686, '__ci_last_regenerate|i:1671099686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563cc59beab8a68bcb6c610da5a132188e06397e', '172.105.247.100', 1671099687, '__ci_last_regenerate|i:1671099686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ec0eabde4be18aae42e2a3177b804cac9abd04', '172.105.247.100', 1671099687, '__ci_last_regenerate|i:1671099687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f13b7b271e2457036d191fcdc839de6984024d', '172.105.247.100', 1671099687, '__ci_last_regenerate|i:1671099687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb93fffb907a887b2082a4616044d2125b89db47', '172.105.247.100', 1671099687, '__ci_last_regenerate|i:1671099687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec77f252f0c81a45992145cf015b81266d563347', '172.105.247.100', 1671099687, '__ci_last_regenerate|i:1671099687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7652319bb536c2fa84e73ad5df353510011df81', '172.105.247.100', 1671099687, '__ci_last_regenerate|i:1671099687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0395cc6f9081decb3113ff0dd64abbb4dd95fc45', '31.222.203.2', 1671100340, '__ci_last_regenerate|i:1671100340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c682e7d38ac7da42baf713c9089b1c6a48deab1e', '31.222.203.2', 1671100342, '__ci_last_regenerate|i:1671100342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd136b9fea4eeaf6652a4eec5a4c8335123dcbc', '31.222.203.2', 1671100342, '__ci_last_regenerate|i:1671100342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dffa677cef357d1869c1490f5ae3943e85b4d7', '31.222.203.2', 1671100342, '__ci_last_regenerate|i:1671100342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aceac973efb681dd87985ab6b87314f75550dc9', '31.222.203.2', 1671100342, '__ci_last_regenerate|i:1671100342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f047dd8903a089f32215d94d05e4b4d77360f9', '31.222.203.2', 1671100342, '__ci_last_regenerate|i:1671100342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1e613eaab317084e8758366a03ec0b3fbb52bd', '45.120.39.89', 1671107678, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671107678;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671107625;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0cce95a638028d659ab8653b8072d277cd8ac01', '31.222.203.2', 1671102142, '__ci_last_regenerate|i:1671102142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214ba93e78548890a3d6e393e769de1f4e266d7d', '31.222.203.2', 1671102142, '__ci_last_regenerate|i:1671102142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819df444016a5122922231b017a595ee2c8a7dc4', '31.222.203.2', 1671102142, '__ci_last_regenerate|i:1671102142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e671adb16567d10105c939561df0c85302849ca6', '31.222.203.2', 1671102142, '__ci_last_regenerate|i:1671102142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b03f0f0336b1d6055e8138f446d488748ffdd4', '31.222.203.2', 1671102142, '__ci_last_regenerate|i:1671102142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfea816021eb5c3888ab3cb0bfdb459a2d011d6', '31.222.203.2', 1671102142, '__ci_last_regenerate|i:1671102142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bfb5a5af77e711ba28687e28c41979d05eec0d6', '31.222.203.2', 1671103941, '__ci_last_regenerate|i:1671103941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ad81cafbc169c054c9617b79d085fbc15deafb', '31.222.203.2', 1671103941, '__ci_last_regenerate|i:1671103941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b80b3e353c6ca8f7cdfc0121dbaf58edcfc8770e', '31.222.203.2', 1671103941, '__ci_last_regenerate|i:1671103941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d810c82d919ed60ad91d3bfddfcc08ff93f06ab', '31.222.203.2', 1671103941, '__ci_last_regenerate|i:1671103941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1722e61509b56f1286f0d8ad80d947e84a00d8c0', '31.222.203.2', 1671103941, '__ci_last_regenerate|i:1671103941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('625477a297319aecbb65e1cac4b4413a93cc075e', '31.222.203.2', 1671103941, '__ci_last_regenerate|i:1671103941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06fb4322a3f350c39ebf645407ebdca19a39a2c0', '172.105.247.100', 1671104487, '__ci_last_regenerate|i:1671104487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee968751a340b2ec1aeb297519bb0fbca7801fa', '172.105.247.100', 1671104487, '__ci_last_regenerate|i:1671104487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8434572e0254884166ef3c2e8d9247001dc92223', '172.105.247.100', 1671104487, '__ci_last_regenerate|i:1671104487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f36161b1d94813e657eef64a6dd07f5ebf11ee6', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba7b632df8b41dfa67f3e5f4bae1564a0818e3c', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2bde6b3945901b350925d7dfee3252ae1e39ab', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6359f2be9766f22dcd9709bac45110138d679dd8', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99a365b42e16fe6f358b218d6cf8c030e07e995', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd0d3a2117366389f75f2e661248df7b12d307f', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e1680b2e9456b9227140dd9ccdd676c8c087c4', '172.105.247.100', 1671104488, '__ci_last_regenerate|i:1671104488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f367160bbeee714494b41a4e2f21025ecf3b10f', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981bd7cf12a37859ab6941e911eded44b4b59c1d', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b73f13ab2e4fde2da1aa14b951f89b2ce8db21e', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94badb799ee4b834cc9048c2e30d01b06d2d1594', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ca11e2e9e11eb2349174a4c7f672fe4a6697ce', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5324375a2f838c94443933ebce9ba482112ea303', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a8a98a199f129ab66e381669e8eff7de7c446af', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a73a0859720b7dc8a7610ae911a27e9a580edf5', '172.105.247.100', 1671104489, '__ci_last_regenerate|i:1671104489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e826ad9046e5845f2b5c8426277636e0255f6c4', '172.105.247.100', 1671104490, '__ci_last_regenerate|i:1671104490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06bdb6c2c0ed083401c38ec9e4b1f49aa2fdcd15', '172.105.247.100', 1671104490, '__ci_last_regenerate|i:1671104490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fcb458fdab96fba900fae12f3af8654e2c6add2', '172.105.247.100', 1671104490, '__ci_last_regenerate|i:1671104490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8970e5b27a5db8917cabec0f121605283463b0f', '172.105.247.100', 1671104490, '__ci_last_regenerate|i:1671104490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c9dcc9101cb458a234c3018f80f04eb2805c4ac', '172.105.247.100', 1671104490, '__ci_last_regenerate|i:1671104490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6dd036517f46245df453096c5ac0090471f4f9', '172.105.247.100', 1671104491, '__ci_last_regenerate|i:1671104491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2233c91f02592b991ef5715b4cda7f7d0f61699', '31.222.203.2', 1671105730, '__ci_last_regenerate|i:1671105730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744c9c85b3706d47295bf66c914120a0d8873d44', '31.222.203.2', 1671105732, '__ci_last_regenerate|i:1671105732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea846266382e5b3e75775535c73f4241944d7ab2', '31.222.203.2', 1671105732, '__ci_last_regenerate|i:1671105732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092c41a5c4d27c138aea958a6ca7d11a01471819', '31.222.203.2', 1671105732, '__ci_last_regenerate|i:1671105732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14f5adf558dc14710cf85318f901513f0d407c21', '31.222.203.2', 1671105732, '__ci_last_regenerate|i:1671105732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dcda271780cd003f8c810ceff93bc3af2d0e16a', '31.222.203.2', 1671105732, '__ci_last_regenerate|i:1671105732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73096f2c1b54794c46f42d657c5d48f332cd4edb', '31.222.203.2', 1671107535, '__ci_last_regenerate|i:1671107535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630e940bac831e6378e6834578dca93540edac4f', '31.222.203.2', 1671107537, '__ci_last_regenerate|i:1671107537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292a48217557eef1547e37d0067411c32b2e0084', '31.222.203.2', 1671107537, '__ci_last_regenerate|i:1671107537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e67a431054dbaec334bc0ad22c8513e774e0694', '31.222.203.2', 1671107537, '__ci_last_regenerate|i:1671107537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb987b43e4755e0bfc03f16e9652a9fb997ce20', '31.222.203.2', 1671107537, '__ci_last_regenerate|i:1671107537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439bb4e11eb20fa4d8a39d2fd5e1b34390ffe58a', '31.222.203.2', 1671107537, '__ci_last_regenerate|i:1671107537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602d44230f9de82ea5b4c25a6a4d2deb9d774073', '45.120.39.89', 1671110612, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671110612;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671107678;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6489f1f9d9b30a553d6056c7aa84be19da20bc', '172.105.247.100', 1671109292, '__ci_last_regenerate|i:1671109292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e64042749675eb5a55aa709d258eca2c4610a4', '172.105.247.100', 1671109292, '__ci_last_regenerate|i:1671109292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14b403dd629e19ef110b2d2fd1ca57ba4f8bd41f', '172.105.247.100', 1671109294, '__ci_last_regenerate|i:1671109294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d72cc95156e25e39888e527cc1e078c0aa455a83', '172.105.247.100', 1671109294, '__ci_last_regenerate|i:1671109294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405856790dd5852ae807117987d862a28a3eae45', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2531b7946a9a9d924bb56f91e9804adcf2d6bfd', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ad6415c736b33724b04aeb08f83a159df6de96', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06050e42d557af5c850dd5b6cb353ce2f7f7f242', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196e3c738676ea6d176c8c9f2da2da49c772d84e', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9ec9244205f7fe2b9d6b163d7ebdd516738dc2', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad903834ff44940b6a003ce73fe00e43aaaeab9', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd650b652c44f71cb327137592069cc39f9832d1', '172.105.247.100', 1671109295, '__ci_last_regenerate|i:1671109295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fea9bb0a4d76675d8114fa80c9fbab972d075ba', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81650c2c66b42ce4e86e1f67aa42f8a5b5f89d9', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372ed433cb3d54db64febeee0d0136b91a215485', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb9efa0e1ba5b68cb7a7a2b6d7d4715ce3ed4c20', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1459ebf05cfcc66d7670a0fc4224e32a7dbae87c', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145ab66c4e83f0aa17b921082d68e124afcd0745', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a15f5a83ebcba79f707c2605ead162aca73faf', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c81a7aa70cd9ed99f41fc6d72c2a58f983b29d07', '172.105.247.100', 1671109296, '__ci_last_regenerate|i:1671109296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f139caa998d5476545257318254f75efbe6ce3', '172.105.247.100', 1671109297, '__ci_last_regenerate|i:1671109297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7de16f1cc6ab82d9e757d7d345b6e0f1e4469ff', '172.105.247.100', 1671109297, '__ci_last_regenerate|i:1671109297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47d5ff036e89240eb6a52699b9e002caf4ea668', '172.105.247.100', 1671109297, '__ci_last_regenerate|i:1671109297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cec3d3fb8f05be04b80b78db0bc135cdc5f5bd6', '172.105.247.100', 1671109297, '__ci_last_regenerate|i:1671109297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96675b114cf46f74cf3898bed96efb340a8f5017', '31.222.203.2', 1671109335, '__ci_last_regenerate|i:1671109335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d81f3de603ba76cb11dc918c48a7e0ef43663af5', '31.222.203.2', 1671109335, '__ci_last_regenerate|i:1671109335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8820e920c583bdcd47856820fd4b1a89b361503', '31.222.203.2', 1671109335, '__ci_last_regenerate|i:1671109335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6d8ee742c2e15f1bca5e64ae23151b5104801c', '31.222.203.2', 1671109337, '__ci_last_regenerate|i:1671109337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ef2cd70ad32596e71c30a2f3ca5de2c0aad82a', '31.222.203.2', 1671109337, '__ci_last_regenerate|i:1671109337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4de639a42ce6d45036f87eabc2e87ee1899bb05', '31.222.203.2', 1671109337, '__ci_last_regenerate|i:1671109337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('556f17a516fb82f84330207b54a9f4eeb379b99c', '45.120.39.89', 1671111202, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671111202;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671110705;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197a94c19184756f372405091345720237db49da', '31.222.203.2', 1671111136, '__ci_last_regenerate|i:1671111136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b880625b3aed1f49bcf2b01e6f39f29a146157dc', '31.222.203.2', 1671111136, '__ci_last_regenerate|i:1671111136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dfa4de854b592e7dddf448b12fca71c8d78ada1', '31.222.203.2', 1671111136, '__ci_last_regenerate|i:1671111136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc51a1f0ba429087399fa071d08bfd93748a50af', '31.222.203.2', 1671111138, '__ci_last_regenerate|i:1671111138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcb327509abd76da05ae7512ec2e442014d7803', '31.222.203.2', 1671111138, '__ci_last_regenerate|i:1671111138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4be63c9c3a31b181b333633251e3013a0adb401', '31.222.203.2', 1671111138, '__ci_last_regenerate|i:1671111138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e218a8004dffe8e93224e04d2d1e0cdc810d675', '45.120.39.89', 1671115522, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671115522;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671114600;register_id|s:3:\"280\";cash_in_hand|s:9:\"5230.0000\";register_open_time|s:19:\"2022-12-14 19:59:04\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420fa5940ca233ad6161db24f69278046d186e1c', '31.222.203.2', 1671112935, '__ci_last_regenerate|i:1671112935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b94c0b367b3fa7a3c439a8676b1b7ce18bbc9ad', '31.222.203.2', 1671112936, '__ci_last_regenerate|i:1671112936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374fed381150f2913ca0134c5667c728cb766572', '31.222.203.2', 1671112936, '__ci_last_regenerate|i:1671112936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7babcf5df356294210e040370d047e714aa0d47c', '31.222.203.2', 1671112936, '__ci_last_regenerate|i:1671112936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c33cfc26b087a2277fdaf1ef1bbdd5147ea3f15', '31.222.203.2', 1671112936, '__ci_last_regenerate|i:1671112936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ec59aa6b9bde31776599fd0e83f139d5820897', '31.222.203.2', 1671112936, '__ci_last_regenerate|i:1671112936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212bfa58db8f287a7a2309f8411680e1621f37b2', '172.105.247.100', 1671114089, '__ci_last_regenerate|i:1671114089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a6dedf8a29f6821bb207695700c40a6e9e37ac', '172.105.247.100', 1671114090, '__ci_last_regenerate|i:1671114090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b584eb879452fb1ef29ea713d00c20e5a5e6f851', '172.105.247.100', 1671114090, '__ci_last_regenerate|i:1671114090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f7a897c8a0de118361bef3ef17b07a61d4202b', '172.105.247.100', 1671114091, '__ci_last_regenerate|i:1671114091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955fa425dc99b4741e6967190e32692f5e5377c0', '172.105.247.100', 1671114091, '__ci_last_regenerate|i:1671114091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d3d2fac2c55bdca1b5420587b992772167f9e7', '172.105.247.100', 1671114091, '__ci_last_regenerate|i:1671114091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a6427113aaed121fb9faf74de8fbde478c5936', '172.105.247.100', 1671114091, '__ci_last_regenerate|i:1671114091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c086ec42f7b72a0e8afa4706a85b14cef87a3fd2', '172.105.247.100', 1671114091, '__ci_last_regenerate|i:1671114091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45cd50c63da89f6e60ffebb62598c9aaa218cbfe', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7ca90b3299b7d34876c307640b173dd4332f3c', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485a57d419ad1e3189e42d43d3c5381fe4304731', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01dd354aec056f4917bf54fc1f9377ba76f96d4', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c2c090e3bceb459c26f65599708f0389e56777', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1395b717df562423defd38e27382434f88e424d', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c29a24d38bc7a6b09a9e275787a46a1029ffc9', '172.105.247.100', 1671114092, '__ci_last_regenerate|i:1671114092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d19648bddc09d9bcecdf90fddaea761e278448', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b7f040eb9a889f79e430de4e9413974a01af14', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc25872345060f37c604a8b2eccec028d00896f', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6585dcad397fa359516724c910e80423c52aa94', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a16f4454106a1a00443cf932305e4f3f45e6f0d', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0800759136639582d9cd2f52548b76d9263e8ac2', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c00027db7ace5567d92b74154634f9652bee0f', '172.105.247.100', 1671114093, '__ci_last_regenerate|i:1671114093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31b240514174612452c17b0ed35ae3739d038db', '172.105.247.100', 1671114094, '__ci_last_regenerate|i:1671114094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b3dbec244a00fdc72229f337c6aeef0a0fc91e', '172.105.247.100', 1671114094, '__ci_last_regenerate|i:1671114094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6437ed56b567d19c25670083322d961887aaf38a', '31.222.203.2', 1671114735, '__ci_last_regenerate|i:1671114735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55fc283ea2936bd22a0ddbf78bc72e587fb58ad4', '31.222.203.2', 1671114735, '__ci_last_regenerate|i:1671114735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ea5cd45c31a9192db326f04416317484820573', '31.222.203.2', 1671114735, '__ci_last_regenerate|i:1671114735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a2e18ec214c5994d401e3e5c6ebaca7dead83f', '31.222.203.2', 1671114735, '__ci_last_regenerate|i:1671114735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0398a7d03baf7a598d31911249e557066660a00', '31.222.203.2', 1671114735, '__ci_last_regenerate|i:1671114735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca7f9c2edc0b9ec4d4f9b465b8f607b1b2da48f', '31.222.203.2', 1671114735, '__ci_last_regenerate|i:1671114735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eac6429e943250bd6555707dc58ca7cce83d159', '37.111.217.149', 1671115558, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671115522;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671080579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671115557;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db99388e678d50e0e3dd5dee43e719aae64e5474', '31.222.203.2', 1671116537, '__ci_last_regenerate|i:1671116537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e2fc71cfcdc60fc5985e220291849987fa1de9', '31.222.203.2', 1671116538, '__ci_last_regenerate|i:1671116538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f0b1882201ad6be53ddadd6f29cc0816230c508', '31.222.203.2', 1671116538, '__ci_last_regenerate|i:1671116538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13f749256c554a53c95b2b06384156e6ec70e89', '31.222.203.2', 1671116538, '__ci_last_regenerate|i:1671116538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8016b92dec00ac380d7506ac1d70cbb0aeefab0', '31.222.203.2', 1671116538, '__ci_last_regenerate|i:1671116538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8745137791d2bf88a6f9c020155c4b590ac20ac', '31.222.203.2', 1671116538, '__ci_last_regenerate|i:1671116538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1075eabae92c5cc7a42452c3087ba5e4d7d612a6', '31.222.203.2', 1671118336, '__ci_last_regenerate|i:1671118336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ccb1dbccf245aa704838974c9bb33c452f7326', '31.222.203.2', 1671118337, '__ci_last_regenerate|i:1671118337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84464fe9b87f9fb731fce1f18a463d2518790b9', '31.222.203.2', 1671118337, '__ci_last_regenerate|i:1671118337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d857a00fa54637741ce3d9970210c0e3398637df', '31.222.203.2', 1671118337, '__ci_last_regenerate|i:1671118337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399ddda4f57b644c960bf1693fa2849be5e6409b', '31.222.203.2', 1671118337, '__ci_last_regenerate|i:1671118337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d139a6e9d3c70b05b5749de1df9bfdf1b1ea3f3', '31.222.203.2', 1671118337, '__ci_last_regenerate|i:1671118337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b4fe301a10a464d3ceba953715f025c779237c', '172.105.247.100', 1671119490, '__ci_last_regenerate|i:1671119490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5c65d5c87234b779dc1720a16e626cbccc8138', '172.105.247.100', 1671119491, '__ci_last_regenerate|i:1671119491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23bf745ce858be4cb9325c348ed8c0fc274fc8e', '172.105.247.100', 1671119492, '__ci_last_regenerate|i:1671119492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3f6d944c073ff2f1d3a08b1ad7ae184ffbdf8b', '172.105.247.100', 1671119493, '__ci_last_regenerate|i:1671119493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0d5652f02b54e86e9b409de25ed1253622b3b8', '172.105.247.100', 1671119493, '__ci_last_regenerate|i:1671119493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471864dbd1c13ac2b7bc5d4a5d3ea03e228184d0', '172.105.247.100', 1671119493, '__ci_last_regenerate|i:1671119493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caeceaada58592da622641156cdb852736a7a29e', '172.105.247.100', 1671119493, '__ci_last_regenerate|i:1671119493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be0e422c8eff14b6e5167e2ed42dc1fb5fc5b70', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3209577fc162870f99df50e72428d311405d5dde', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8724b8c4e23b735337cc23c63e26d83ef004807', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ab994d87b34ad0990b8b6f1e4313b548e66ff4', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2689bb55cafa48c9288b82e84412e662bbeb2c', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba2077672d92a958cb45df0906cc0bb5cfde64a', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec067e0a9cfdbae1483a61b853036ebd865d911e', '172.105.247.100', 1671119494, '__ci_last_regenerate|i:1671119494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d598789f72a7cbb610c00bc5f21ed0772fb71a', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3077550e8089b2b13fdd184c07f347e90ea3a6bb', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327d5a25876d2c5c382126e6a7c8bea6112acde6', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15cdf8386ec4e64711e959996d6afa0940c05aa', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2850a34c03a88b3025b3d53ef40238457f6b3012', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718813f930ccb1a1af7816409071d02c6effe51a', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461663d19575e5d8e792906dbc580f9cdaaaffcf', '172.105.247.100', 1671119495, '__ci_last_regenerate|i:1671119495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a94e56d588aa67500720aae139f657ef01d6349', '172.105.247.100', 1671119496, '__ci_last_regenerate|i:1671119496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd4ced9d2838d7e36377a6696ceb63357bb5fd6', '172.105.247.100', 1671119496, '__ci_last_regenerate|i:1671119496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3ee1e26201b347e743f9260f7e85d171fc23fe', '172.105.247.100', 1671119496, '__ci_last_regenerate|i:1671119496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3851a6e03bad4bb4496bad3d4029f9c118fbd38a', '31.222.203.2', 1671120133, '__ci_last_regenerate|i:1671120133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf46ba2677f59e252a73de6c8b512bcd9d9f07d8', '31.222.203.2', 1671120133, '__ci_last_regenerate|i:1671120133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2a59a80ea7a0fb41c935ce26d4dfd6f725944b', '31.222.203.2', 1671120133, '__ci_last_regenerate|i:1671120133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e6839a53272d754801ca592c9a8b851758e744', '31.222.203.2', 1671120134, '__ci_last_regenerate|i:1671120134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05803ddefec12f1ed15ee5d875bbf9ccd3dde82', '31.222.203.2', 1671120134, '__ci_last_regenerate|i:1671120134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c31cadd59ad639a239dace7ff22389c83c4e621', '31.222.203.2', 1671120134, '__ci_last_regenerate|i:1671120134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c25f40d51c7b5540e5d4fd7a61834e5fa7c2f7', '31.222.203.2', 1671121938, '__ci_last_regenerate|i:1671121938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b58a06baa3ce2a5118e07b5f7c77d0738a7970', '31.222.203.2', 1671121938, '__ci_last_regenerate|i:1671121938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b17d66ffae8fcce8092142b14cf8e385e8b764', '31.222.203.2', 1671121938, '__ci_last_regenerate|i:1671121938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a8103b816941e05ef23e74abbaf16a99ac9a7c', '31.222.203.2', 1671121939, '__ci_last_regenerate|i:1671121939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e258343da925c45332d78fc6e71f29c42f3fc96e', '31.222.203.2', 1671121939, '__ci_last_regenerate|i:1671121939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da714e90086919b8ecfbc4373a12d2e4eb4016d', '31.222.203.2', 1671121939, '__ci_last_regenerate|i:1671121939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a885625b4d626268252d1841eb510da3a9cbda0c', '31.222.203.2', 1671123738, '__ci_last_regenerate|i:1671123738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7278af876a800a1107eb9196be29343f5664bac8', '31.222.203.2', 1671123738, '__ci_last_regenerate|i:1671123738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa4476a95dd92334695cb584364fef076916576', '31.222.203.2', 1671123738, '__ci_last_regenerate|i:1671123738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd158ea544cc97cbbdefac7eda79a9d0489d845e', '31.222.203.2', 1671123740, '__ci_last_regenerate|i:1671123740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfec9bd2982f3b53f7788eeec1572d42e2b28c94', '31.222.203.2', 1671123740, '__ci_last_regenerate|i:1671123740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a3c334f4b3649d0c36b72e5e51299dfae0b9059', '31.222.203.2', 1671123740, '__ci_last_regenerate|i:1671123740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20e8355d35bc6108ce3856f77d9ba3ab4fa8348', '172.105.247.100', 1671124292, '__ci_last_regenerate|i:1671124292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263e63c927ece3e62495d2637aaf9795ad022e4b', '172.105.247.100', 1671124293, '__ci_last_regenerate|i:1671124292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1acc60dfc53fa0625f15a5fdb1ee879fd634e7b5', '172.105.247.100', 1671124293, '__ci_last_regenerate|i:1671124293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f12e78372e3efe01264254e655f2c782698762', '172.105.247.100', 1671124293, '__ci_last_regenerate|i:1671124293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418dc790f787f6bdaa422af404b58d6e0646b430', '172.105.247.100', 1671124293, '__ci_last_regenerate|i:1671124293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16aba9f88274a6bb4498bfdf336a53f750ad8e56', '172.105.247.100', 1671124293, '__ci_last_regenerate|i:1671124293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e788a7a5c20cffa19cf056073322b1395a4cae', '172.105.247.100', 1671124294, '__ci_last_regenerate|i:1671124294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396d308ad8c1f23cab2a81b10e74a0d484e4184d', '172.105.247.100', 1671124294, '__ci_last_regenerate|i:1671124294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d73f42cd37c7ed271d31219bde0ca827394695d', '172.105.247.100', 1671124294, '__ci_last_regenerate|i:1671124294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30969c913e075c159fa10909eef619a97bb5441', '172.105.247.100', 1671124295, '__ci_last_regenerate|i:1671124295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560aa0ea232c8f1660bfc0e05c33ed063b653d75', '172.105.247.100', 1671124295, '__ci_last_regenerate|i:1671124295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8ee61a8c12b094a675db4a56929a106e953890', '172.105.247.100', 1671124295, '__ci_last_regenerate|i:1671124295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e0037a0f09f52c912f76abf61874a942142943', '172.105.247.100', 1671124295, '__ci_last_regenerate|i:1671124295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522ad3febf8daaa41efac7eb351b430f163c92e8', '172.105.247.100', 1671124295, '__ci_last_regenerate|i:1671124295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d2c3f3a5f878c5483ffd1dc9be00c5f1b1fae2', '172.105.247.100', 1671124296, '__ci_last_regenerate|i:1671124296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd287077fdcbed82bea734a91e43e3e64c5d1b20', '172.105.247.100', 1671124296, '__ci_last_regenerate|i:1671124296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff7b4359e909e6026dbc12c117cb5c2cd440b97', '172.105.247.100', 1671124296, '__ci_last_regenerate|i:1671124296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23bbd3130ec93c75c45f79f1d1a931ff65531a9d', '172.105.247.100', 1671124296, '__ci_last_regenerate|i:1671124296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0d30937366649addcb494c6ac8a3aaa4cf1e0f', '172.105.247.100', 1671124297, '__ci_last_regenerate|i:1671124297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70f9280294789e228ea862a4ef40015327c4988', '172.105.247.100', 1671124297, '__ci_last_regenerate|i:1671124297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1311db3adb2c6e278ce08fb8d6c6903f5602ce', '172.105.247.100', 1671124297, '__ci_last_regenerate|i:1671124297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a880f49d4c1255df0ea7e88df33d053b2a9a3e', '172.105.247.100', 1671124297, '__ci_last_regenerate|i:1671124297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5798a959272530c2e7d2ca898839b51619a16259', '172.105.247.100', 1671124298, '__ci_last_regenerate|i:1671124298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('788167e1b68b95a4367c64ca261b389de1de5855', '172.105.247.100', 1671124298, '__ci_last_regenerate|i:1671124298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad268311a11e4aef451f6a9116397d2c8f33e70e', '31.222.203.2', 1671125537, '__ci_last_regenerate|i:1671125537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1379a7a9752971240dc71a8f3896862532d50ac', '31.222.203.2', 1671125537, '__ci_last_regenerate|i:1671125537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854c1828fad573a4c45a0d58de43dcd256471469', '31.222.203.2', 1671125537, '__ci_last_regenerate|i:1671125537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af778ed9d0a7098a97981c13bb89c113707b1ae7', '31.222.203.2', 1671125537, '__ci_last_regenerate|i:1671125537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e89ad3c8fd6ad5a73087438baa989e257f04d86', '31.222.203.2', 1671125537, '__ci_last_regenerate|i:1671125537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0d7d0b65c024a974995c496cb1cc73bebd1b13', '31.222.203.2', 1671125537, '__ci_last_regenerate|i:1671125537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e684b33cc5a63286f834d893e8b9e83e9fbcc7', '45.59.126.220', 1671126683, '__ci_last_regenerate|i:1671126683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3404b8aa72bf9fb65c8cc289537a37297a52ba12', '31.222.203.2', 1671127335, '__ci_last_regenerate|i:1671127335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e2e5f02087011201d54ab25feb47a98940b341', '31.222.203.2', 1671127335, '__ci_last_regenerate|i:1671127335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5f6656e6837409ee6d3c44bb34605f51e11546', '31.222.203.2', 1671127335, '__ci_last_regenerate|i:1671127335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4688fe8615fae0f0bc98adbf2122c71289e0cb', '31.222.203.2', 1671127336, '__ci_last_regenerate|i:1671127336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9d0467ea2e9e6c810e224c84e4f69a4780c7aa', '31.222.203.2', 1671127336, '__ci_last_regenerate|i:1671127336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aeb94b3a5b3823716d5776d698d0dbcf3c6aa12', '31.222.203.2', 1671127336, '__ci_last_regenerate|i:1671127336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186fb4a668db196cac5d0804a0a5b17ced0c9f8a', '172.105.247.100', 1671129092, '__ci_last_regenerate|i:1671129092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab3aae78b26e46d9efeb9b4686752e16903b413', '172.105.247.100', 1671129092, '__ci_last_regenerate|i:1671129092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c86a8cc5c421b0f5a03f9e429dfdd8ecbcf05ab', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7745fba4ee4fa3d89557451b3cdf0fe27a0d8d56', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8293b285e61c23641cb083da745d52bcf1dab5', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52414f52e31ad0579c3cbf507ebb03e5b43388d1', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8b5e4921cd9363e0af41c22d235d2411fcc56d', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54219072c57f727ce3298d614bfb6251e45d33f', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7a81fb73271aefe368c9b122c924467f46e80e', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b2bf669772958542bac0013935facfa13a1b05', '172.105.247.100', 1671129093, '__ci_last_regenerate|i:1671129093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472af50f2be4f7756e68d84125d9f8db37dc38aa', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f880ad4e807de6c01fd739bef038451e0632a15', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0fda302dcb453a099f478e2a5cddae39263982', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e475a7920580048a4915700718c417e9484b3ed', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('585a8515cc897575d27ce9fb32e99cdc98485739', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f8a074fc323f3dfa1e5d272b0a74362734faeb', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e27712ff5d52cd20abab3a3227e85e71d3a29f70', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604baec46d0035af4b543ad79cc9ce3f1f62c2bd', '172.105.247.100', 1671129094, '__ci_last_regenerate|i:1671129094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b833cb68c3617b3a65498d67d4d703cc5f99638', '172.105.247.100', 1671129095, '__ci_last_regenerate|i:1671129095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83cd2ea78215d34df335d50121f22e91a18fa95b', '172.105.247.100', 1671129095, '__ci_last_regenerate|i:1671129095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961bc187b3eb69503217751629672592079aec79', '172.105.247.100', 1671129095, '__ci_last_regenerate|i:1671129095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f034d481715a9af2c0742fc2f1d8a836d24df4', '172.105.247.100', 1671129095, '__ci_last_regenerate|i:1671129095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c127e1a75a796647f1165f8a738b9a01cf8d38', '172.105.247.100', 1671129095, '__ci_last_regenerate|i:1671129095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8951377ed816912dd3bef1cce3ae05000e82fd15', '172.105.247.100', 1671129095, '__ci_last_regenerate|i:1671129095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce232193d96d0ff215675e37048a140332921e7', '31.222.203.2', 1671129133, '__ci_last_regenerate|i:1671129133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9804e79e8e837112b337209d0e64893187aef2f', '31.222.203.2', 1671129134, '__ci_last_regenerate|i:1671129134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b49d650ab726997a23288747a78bfdda05771ff', '31.222.203.2', 1671129134, '__ci_last_regenerate|i:1671129134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4c1284f2805fc6f493aa6a9d5ad49fef53ce1a', '31.222.203.2', 1671129134, '__ci_last_regenerate|i:1671129134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae10c64e0a298fd9d4499a9bf402c5c3d103a3ec', '31.222.203.2', 1671129134, '__ci_last_regenerate|i:1671129134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f209bfccf8df718751792332a059fdf81697ffc', '31.222.203.2', 1671129134, '__ci_last_regenerate|i:1671129134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5a4d9232e1cf04abae463ae2b98e112f605c0e', '31.222.203.2', 1671130934, '__ci_last_regenerate|i:1671130934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c38ef0d101ba4143b78c25c84d8693f170cf1cc', '31.222.203.2', 1671130934, '__ci_last_regenerate|i:1671130934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2fed90b1e402da9cfbd7488d5754c82513424a0', '31.222.203.2', 1671130934, '__ci_last_regenerate|i:1671130934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0cd4e9ae37d1ac90a8e7d7f5429ec37ba9c990', '31.222.203.2', 1671130935, '__ci_last_regenerate|i:1671130935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10bbc9c73173134f5605084df3e4fa301e077c1', '31.222.203.2', 1671130935, '__ci_last_regenerate|i:1671130935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1633dc69db9d50fd791788cf807891aa422dc4d7', '31.222.203.2', 1671130935, '__ci_last_regenerate|i:1671130935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a818648e13e3607a5c6749cb17cb646fe0c3a47', '31.222.203.2', 1671132740, '__ci_last_regenerate|i:1671132740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d018f54a024b21a2b7f0b398f846399917949e5', '31.222.203.2', 1671132740, '__ci_last_regenerate|i:1671132740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91daadc11933ab30ab93c68a96cb5abd1c1b14e8', '31.222.203.2', 1671132740, '__ci_last_regenerate|i:1671132740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0811b2581dddee21afd79df1b10223b8eaa1b311', '31.222.203.2', 1671132741, '__ci_last_regenerate|i:1671132741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d620d02a02fb485b6ac0bb17ce94eae9ed639e1a', '31.222.203.2', 1671132741, '__ci_last_regenerate|i:1671132741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54c9ea19c847a4cf8001a30565c1b505f6cb9e2', '31.222.203.2', 1671132741, '__ci_last_regenerate|i:1671132741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380e319559bd7aa2f9e0c77a444d3167d1b1d889', '172.105.247.100', 1671134496, '__ci_last_regenerate|i:1671134496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66fd97079dc28df0f15aab7579cc6f0d5cc3f7ed', '172.105.247.100', 1671134496, '__ci_last_regenerate|i:1671134496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c290976c01e65bb831505f090ddb139355e160', '172.105.247.100', 1671134496, '__ci_last_regenerate|i:1671134496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccd1dd55afa2bed52fd93e87c832a04f72d1298', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e1c12c63f377460f333db8b4c4ea8d41a29784', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d5c03c9fcc2c90e50f85961a1a8e9e08d81b6b', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1f6eb245453f8c16020e7bee6ff552aa4adaef', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89af30805ef4babdffd3ac90c9aec6c7fed8d2b0', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d27a340f64fb53b35d70687498347b091624f33', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24752fad166890f41f7844f48e1f2e0f4969628', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cb71f0595585bc6267002067565e5d434f8bb4', '172.105.247.100', 1671134497, '__ci_last_regenerate|i:1671134497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a8e22170692959d537827370b30203a09af1ca', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbef301af00b814cb933d365c33c0f2cee8feb56', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408a77a0367193bf3f98ce43b92ec675517601a4', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd575533df8f748f6fe384efa389390929fc089', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86a39037eb0f99ffd862452e1521c14257a17cf', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ceaa653d73905d3c5a0de9ba8eb02dbfa052d4', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b91fceb24250bdb9f603d1d42881b49cc8177fc', '172.105.247.100', 1671134498, '__ci_last_regenerate|i:1671134498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a06299992a13903681cb54cf40583dc3c8508de', '172.105.247.100', 1671134499, '__ci_last_regenerate|i:1671134499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9abe539a2eee48590c60edec8ac947a9b9510f2', '172.105.247.100', 1671134499, '__ci_last_regenerate|i:1671134499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b192d76e2adee9026abb43f293490fa0b2c65e70', '172.105.247.100', 1671134499, '__ci_last_regenerate|i:1671134499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7129b269081a701c9063b69f0d58b4f046f3dacb', '172.105.247.100', 1671134499, '__ci_last_regenerate|i:1671134499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9669857fdd49f1b864dcb5a26934886e5518ec13', '172.105.247.100', 1671134499, '__ci_last_regenerate|i:1671134499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c170fa66ff5f4da71896d7b6faf1e6736ffacf', '172.105.247.100', 1671134499, '__ci_last_regenerate|i:1671134499;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069e1f4f175c58d56634c470cd032abb1eacba1d', '31.222.203.2', 1671134529, '__ci_last_regenerate|i:1671134529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6bc961ac02ae52aeeec952dea2b723c51d4d97', '31.222.203.2', 1671134529, '__ci_last_regenerate|i:1671134529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee3f88ab3f413b25ee522418d28463868c5070f', '31.222.203.2', 1671134529, '__ci_last_regenerate|i:1671134529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbad7f0df4e1eeace7580e3dcd6b09dd27cc007e', '31.222.203.2', 1671134529, '__ci_last_regenerate|i:1671134529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec81c53915812914ca02b3ac4de01c23fd9d32f6', '31.222.203.2', 1671134530, '__ci_last_regenerate|i:1671134529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f0ccc6b2159aa1cf94f9ffc17964609967ac75', '31.222.203.2', 1671134530, '__ci_last_regenerate|i:1671134530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4348a38d1552785f6cb0ba9b230076730d9d0c13', '31.222.203.2', 1671136336, '__ci_last_regenerate|i:1671136336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe8f42d70bbc32c7cbc6353ac357458aa2b5776', '31.222.203.2', 1671136336, '__ci_last_regenerate|i:1671136336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dbbd31a61fa5ad6ba6b16f2a1e81250b3a38a59', '31.222.203.2', 1671136336, '__ci_last_regenerate|i:1671136336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('680d16e3dd01c8e08f6b46557404f489687cdac6', '31.222.203.2', 1671136336, '__ci_last_regenerate|i:1671136336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8a85a0eef99178822f962321d4b7d4c53cda22', '31.222.203.2', 1671136336, '__ci_last_regenerate|i:1671136336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c40aae6e9082d00e7e6621ec0a5b139d9b0e71', '31.222.203.2', 1671136336, '__ci_last_regenerate|i:1671136336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d6ba7e41d0af713c3b3ea090146b45f57b1191', '31.222.203.2', 1671138133, '__ci_last_regenerate|i:1671138133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa7eeb3919011f18f18ee4192ade2d484cf5023', '31.222.203.2', 1671138133, '__ci_last_regenerate|i:1671138133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b998c79af28a63e40d8a6776e534e2ceeeea94f3', '31.222.203.2', 1671138133, '__ci_last_regenerate|i:1671138133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785d5fc3bee2b0f93181d66e6349fe16584f7acb', '31.222.203.2', 1671138134, '__ci_last_regenerate|i:1671138134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23eb1e32d3408bd46d10134d54b9a527cc85ba08', '31.222.203.2', 1671138134, '__ci_last_regenerate|i:1671138134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc72ef50102691fe8b1221a210a97a39b6f7aca', '31.222.203.2', 1671138134, '__ci_last_regenerate|i:1671138134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d283a6a721fa99a8f513d1c56c977b68a102b6c2', '172.105.247.100', 1671139286, '__ci_last_regenerate|i:1671139286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28aca804147f6256a4a7b6435dc37c02055de88e', '172.105.247.100', 1671139286, '__ci_last_regenerate|i:1671139286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc58dad68616d04b543577ad164786d82a66c73', '172.105.247.100', 1671139286, '__ci_last_regenerate|i:1671139286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27157e180c1fd8948efa4e924fc330a5f491b7d5', '172.105.247.100', 1671139286, '__ci_last_regenerate|i:1671139286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ff1846779eb3ce0672443339219b356d2d97d4', '172.105.247.100', 1671139286, '__ci_last_regenerate|i:1671139286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae4f1c14bf996c511cf601b3babeb63556b1696', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429a1d73b72828341452515efb1982597b3f693d', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12388d011d0edd8fc58e357a5fcecf9ab33d8bae', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76113aed192d188f6dc0ece73f6319d3aa9d941', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907bb64d7de383eb99f91b4522ade175f24f6baf', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176e7dba9d8bb63fbb662a81e0944b8b7610856f', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527a3de4a49821ef7805fec44bea610771740917', '172.105.247.100', 1671139287, '__ci_last_regenerate|i:1671139287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb8f44064a80686af53eb494588b32703d7c4ed', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da2ff118387a5b1acf7c0bec3279f1c19b8bbd5', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f444ee96f8aab2eaa27ff0bec69800e0385339c', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be67616bcc4e05768b0aa35c9d5654b202454d41', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4029e8ccfcf1246c4a659599936b09e51b74aef', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71382b4e3d3d8fbdc10ef09863ce0bb8f4db2d21', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b066a997e0c5f4c6797f8e836567cfafe44f613e', '172.105.247.100', 1671139288, '__ci_last_regenerate|i:1671139288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07a37884ee2e119a6a557d10bae0c940eaa041a', '172.105.247.100', 1671139289, '__ci_last_regenerate|i:1671139288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c98b0b1cf3de543057eef30a6e26b8bcd96a48', '172.105.247.100', 1671139289, '__ci_last_regenerate|i:1671139289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d342f9218525280d817ec7f9ee4881fbaf322f36', '172.105.247.100', 1671139289, '__ci_last_regenerate|i:1671139289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f157f74532cd9989aeaf689242faff40ae5c2ac7', '172.105.247.100', 1671139289, '__ci_last_regenerate|i:1671139289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd4b9983214d0a26bdcaa2812afa70c5e63b515', '172.105.247.100', 1671139289, '__ci_last_regenerate|i:1671139289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be5e56aa0e3e043853314e53b8d097d4a4914f7b', '31.222.203.2', 1671139936, '__ci_last_regenerate|i:1671139936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afafe879c95400139a21996f195e6fe43acf629', '31.222.203.2', 1671139936, '__ci_last_regenerate|i:1671139936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d07e5684c87f125ef1679f0ad7c9a3a9b990aee', '31.222.203.2', 1671139936, '__ci_last_regenerate|i:1671139936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084b35ce9f549cc542768214b85b11a6b83ae76d', '31.222.203.2', 1671139937, '__ci_last_regenerate|i:1671139937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8eec1e7f80283254a5d8173aa5e70b61f321d8', '31.222.203.2', 1671139937, '__ci_last_regenerate|i:1671139937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbed4d52a8ac040752334d5420b70b4315ded6bb', '31.222.203.2', 1671139937, '__ci_last_regenerate|i:1671139937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64112cb58b69c7c2558fa700ef4205a6ed2c827', '31.222.203.2', 1671141735, '__ci_last_regenerate|i:1671141735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ccd613ccb206c56482ac4ccfdacd28e1fc316f', '31.222.203.2', 1671141735, '__ci_last_regenerate|i:1671141735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afec64426c0bf93bb4a59c6a36f8113947446815', '31.222.203.2', 1671141735, '__ci_last_regenerate|i:1671141735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4841a1980fc284b3d1c67dc5fc55556fc4b5e83b', '31.222.203.2', 1671141736, '__ci_last_regenerate|i:1671141736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4190528e6b94f7aafa8e5894f1183e63b887183e', '31.222.203.2', 1671141736, '__ci_last_regenerate|i:1671141736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306840906f97544444957a8f8751c0123ff6eb0a', '31.222.203.2', 1671141736, '__ci_last_regenerate|i:1671141736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cacccbba4146bfbd62ed2f47f1da2a9e75d9699', '31.222.203.2', 1671143542, '__ci_last_regenerate|i:1671143542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f89955a63740cd8479a172323c8fe6d757160933', '31.222.203.2', 1671143542, '__ci_last_regenerate|i:1671143542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a23bb292ce69bbee0fc38bedd4060740ce52c26', '31.222.203.2', 1671143542, '__ci_last_regenerate|i:1671143542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f37c5d85e30eec9391df43502caca9537240997', '31.222.203.2', 1671143543, '__ci_last_regenerate|i:1671143543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4442988251dfe9ddbe049df42b24b225834fc8', '31.222.203.2', 1671143543, '__ci_last_regenerate|i:1671143543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4523f3401d67f9b77e51203d45c6c3848777c1', '31.222.203.2', 1671143543, '__ci_last_regenerate|i:1671143543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08da0be2ffe02d55f39cde1100017203b3096e6f', '172.105.247.100', 1671144086, '__ci_last_regenerate|i:1671144086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bfc9ba52b213cb49751602b1ae2fc9414ec1e9', '172.105.247.100', 1671144086, '__ci_last_regenerate|i:1671144086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41aed774b90c767602092cc49c8e90f87a446430', '172.105.247.100', 1671144086, '__ci_last_regenerate|i:1671144086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a75ccfe50e832751e3935fea39678ab3f7cbce2', '172.105.247.100', 1671144087, '__ci_last_regenerate|i:1671144086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbd78a9c008aa4d27a8eb58667fe8c0da78fa49', '172.105.247.100', 1671144087, '__ci_last_regenerate|i:1671144087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063bb31dfe64b15fe7cb0aa4c4bf66535a0e34e0', '172.105.247.100', 1671144087, '__ci_last_regenerate|i:1671144087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c382921f75e0e8060122021b5a09186ef9794eea', '172.105.247.100', 1671144087, '__ci_last_regenerate|i:1671144087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f015e49b1a9bbf90bfc11270e92385eb1999db', '172.105.247.100', 1671144088, '__ci_last_regenerate|i:1671144087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da65c6d888fe8baa73c792fbfb091258b3cbbbd', '172.105.247.100', 1671144088, '__ci_last_regenerate|i:1671144088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5720a174e62315b400a80b1b5a88acf46beb96', '172.105.247.100', 1671144088, '__ci_last_regenerate|i:1671144088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4192413c437ac7824e543804184d1ffbc3e98c6f', '172.105.247.100', 1671144088, '__ci_last_regenerate|i:1671144088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6d31034be482e3271f9783f7513f9538fb8702', '172.105.247.100', 1671144089, '__ci_last_regenerate|i:1671144089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e454262193a600239c6ef84c96e4c5fc0c10fa8', '172.105.247.100', 1671144089, '__ci_last_regenerate|i:1671144089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65a56fec2d083ea4c145bf9be405a759181639c', '172.105.247.100', 1671144089, '__ci_last_regenerate|i:1671144089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599620d580b66831f528a727d262ffd6261d2b13', '172.105.247.100', 1671144089, '__ci_last_regenerate|i:1671144089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14cd5191e7e921aeb5631cd1f5755192dfe03a5e', '172.105.247.100', 1671144090, '__ci_last_regenerate|i:1671144089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de915edbc24230415724433736324b491c3ac48', '172.105.247.100', 1671144090, '__ci_last_regenerate|i:1671144090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b8f6c9464e05db5f30f1ddc16701c8b8753575', '172.105.247.100', 1671144090, '__ci_last_regenerate|i:1671144090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f846709416dab7a077bdb840d230535b1f0a21', '172.105.247.100', 1671144090, '__ci_last_regenerate|i:1671144090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360f964e1466e6deef24877546b1b084dc27f412', '172.105.247.100', 1671144091, '__ci_last_regenerate|i:1671144090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8de7b67039239398d173a4cdfd55c7058820bd4', '172.105.247.100', 1671144091, '__ci_last_regenerate|i:1671144091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5905c89524494ffcdd67d4fed6e0850f66d292f', '172.105.247.100', 1671144091, '__ci_last_regenerate|i:1671144091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ef533d00edd8629a9b8e5a677b76c0dde5f62a', '172.105.247.100', 1671144091, '__ci_last_regenerate|i:1671144091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7b7369d64fd2a727a9bfe0bf67e76b005994a3', '172.105.247.100', 1671144092, '__ci_last_regenerate|i:1671144092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ce2bfd780b2ce8164c3d12816728781002160a', '31.222.203.2', 1671145332, '__ci_last_regenerate|i:1671145332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee1991497521d536b3f786250266f77df141bb05', '31.222.203.2', 1671145332, '__ci_last_regenerate|i:1671145332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa16a09f38f8fd81b238b3225c81037a6576ce0', '31.222.203.2', 1671145332, '__ci_last_regenerate|i:1671145332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a06ec2b193e7e9ebeae0acb09aa700770b81518d', '31.222.203.2', 1671145333, '__ci_last_regenerate|i:1671145333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35a2dda07f49c72a3d021449bdb54a7ab94f160', '31.222.203.2', 1671145333, '__ci_last_regenerate|i:1671145333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('544179b4b5deec4ddfa1559a580ee443073b1339', '31.222.203.2', 1671145333, '__ci_last_regenerate|i:1671145333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f87f851d1558b00a214278a26696715ff8772557', '31.222.203.2', 1671147130, '__ci_last_regenerate|i:1671147130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f3c3909870d51865f56516e6029b75f3999d8f', '31.222.203.2', 1671147132, '__ci_last_regenerate|i:1671147132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dca024bce4a30d11b8a0717a9f5a3e0d33d150f', '31.222.203.2', 1671147132, '__ci_last_regenerate|i:1671147132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5671ebde05fa7ca64fa6aac2a24bed805765c961', '31.222.203.2', 1671147132, '__ci_last_regenerate|i:1671147132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62993133122b8d9873d05ed113cf5954c8fb71e0', '31.222.203.2', 1671147132, '__ci_last_regenerate|i:1671147132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e549e9c87f67223e1ebe783acd1bb0fe086594b2', '31.222.203.2', 1671147132, '__ci_last_regenerate|i:1671147132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05435955d2bf6bfddfc06a4aa06a29296f96048', '172.105.247.100', 1671148898, '__ci_last_regenerate|i:1671148898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d3c05610207a8dc159ca5bd9b16440582736ee', '172.105.247.100', 1671148899, '__ci_last_regenerate|i:1671148899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5670ee9e7e21cba5976779789f3a3e953d05d358', '172.105.247.100', 1671148899, '__ci_last_regenerate|i:1671148899;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebc403b332ef40b3fba50121ae0341517d02032', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2b00b360d7725614a33a49c7ed1e3bdd79ba32', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58e69c2bb9bcb34980bb1ff3d79fd80f505fff0', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121cb6db0660b9d7550eee0ff7a9911d3f0dc7ba', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5019c96be907c4eaa51fcb27730df0954c5a30', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde0a0e8eca4be5aeaa8a10a0cabc7ba96cb2c44', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac673aa2a1de40447b2a1755e64d75c4fea9ead7', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdebc92d7823a9fe76cad975f79030884cf51f60', '172.105.247.100', 1671148900, '__ci_last_regenerate|i:1671148900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99d4f204055c6df5dd48bfacfa754dcd70ce869', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f3718dc6eb28b2c497e46f38c5d19c1566ef50', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2fa1ee1a69942a1ebe64498f06a875cb4ce57d', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71ebc948327b02e758b0b1b5396d7a3502b5893', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90e73b70a0dfc089b10822f14ed12bbe36da96d', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0776ef06130336bc2aed03dbff46c82573b6b159', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d06df541963b5d58126f9300f46490253fbd62', '172.105.247.100', 1671148901, '__ci_last_regenerate|i:1671148901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa98df5b6a6c40b26991e2b3f68055555da9c49', '172.105.247.100', 1671148902, '__ci_last_regenerate|i:1671148902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd644c593457e424601d7140141e85ae5d49815', '172.105.247.100', 1671148902, '__ci_last_regenerate|i:1671148902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd45d698a323b46e8403d519e4f5179af11fd5c', '172.105.247.100', 1671148902, '__ci_last_regenerate|i:1671148902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ed55bd20c30e8f3ac8938451683d2b3e4245a8', '172.105.247.100', 1671148902, '__ci_last_regenerate|i:1671148902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5c5c25345d69ba1785bb80b09f0b74e1d6ce23', '172.105.247.100', 1671148902, '__ci_last_regenerate|i:1671148902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e9541ad6eb4279534b9aa0bc866ac0c479f67c', '172.105.247.100', 1671148902, '__ci_last_regenerate|i:1671148902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f875650f90dd6dc5ba12d55bffe962891cee22c8', '31.222.203.2', 1671148937, '__ci_last_regenerate|i:1671148937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be21849915e715d8eff93a52c14e4d29ce25d83', '31.222.203.2', 1671148937, '__ci_last_regenerate|i:1671148937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17837c5b5f76a8965cd6a9100c7aa4067fdbf6a8', '31.222.203.2', 1671148937, '__ci_last_regenerate|i:1671148937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162232d274581dfa62a529c967825da21d17720c', '31.222.203.2', 1671148939, '__ci_last_regenerate|i:1671148939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4758f7858deb1706a78e3bf5e8d56f66832ea3e0', '31.222.203.2', 1671148939, '__ci_last_regenerate|i:1671148939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73119c2065b396664d41d0ad31d254933ac158a', '31.222.203.2', 1671148939, '__ci_last_regenerate|i:1671148939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed346facae636da0399bf8d692573b1d9fef8b0', '31.222.203.2', 1671150735, '__ci_last_regenerate|i:1671150735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c9c9d1e2307105066262513f80342b37847718', '31.222.203.2', 1671150735, '__ci_last_regenerate|i:1671150735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b43c4b89449fb74d601a8733618a9dbfb5afd2fe', '31.222.203.2', 1671150735, '__ci_last_regenerate|i:1671150735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae80bdfa1ff1db4b2d9c645490fbbe371451126', '31.222.203.2', 1671150736, '__ci_last_regenerate|i:1671150736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319f72b684d36aa2703bafc46e74fa4b48e9e61e', '31.222.203.2', 1671150736, '__ci_last_regenerate|i:1671150736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277c019467c427bc667912107278d241944afad9', '31.222.203.2', 1671150736, '__ci_last_regenerate|i:1671150736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b95c7462ca90d21b8b5baf9f8efe368c35f918', '31.222.203.2', 1671152533, '__ci_last_regenerate|i:1671152533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a173f240d03c59dca9e2f9aa1e28438b134a3e2d', '31.222.203.2', 1671152533, '__ci_last_regenerate|i:1671152533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1bd3de93eada40cc1accf25892ad73ffaa0f8e1', '31.222.203.2', 1671152533, '__ci_last_regenerate|i:1671152533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d71d9ade59d36af8c9a49159904042752467b13', '31.222.203.2', 1671152533, '__ci_last_regenerate|i:1671152533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a061dc1920fbcf26c04865cbab413f56bf19f0c', '31.222.203.2', 1671152533, '__ci_last_regenerate|i:1671152533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9911acea640fa83188b94c80676c9f2038124c78', '31.222.203.2', 1671152533, '__ci_last_regenerate|i:1671152533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece3dff87debadc6191a9e9238d012ca209909cc', '15.204.137.236', 1671153455, '__ci_last_regenerate|i:1671153455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395c9073f09613007524e95d8759122190b93c02', '172.105.247.100', 1671153696, '__ci_last_regenerate|i:1671153696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0bd9d680decdaa34e83198d9dec88b70ba9d6cc', '172.105.247.100', 1671153697, '__ci_last_regenerate|i:1671153696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('190c6923340d4bf362b5b623b3d9a6bf638dbdd8', '172.105.247.100', 1671153697, '__ci_last_regenerate|i:1671153697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe1b5770f065f7b1f681fce43ecb0899f7d8afb', '172.105.247.100', 1671153697, '__ci_last_regenerate|i:1671153697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d923a18a7acf2155fe4b4a2a405e6f5d11ea7a', '172.105.247.100', 1671153697, '__ci_last_regenerate|i:1671153697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ecee56ae880f26bc0e8be2103bc23d9a2d41062', '172.105.247.100', 1671153697, '__ci_last_regenerate|i:1671153697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836658b77aa62d3e48172d865a32de1eb499f078', '172.105.247.100', 1671153698, '__ci_last_regenerate|i:1671153698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a36a42077027711fd2ebbcfd044263cfcf06ca7', '172.105.247.100', 1671153698, '__ci_last_regenerate|i:1671153698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5430b9b39ddf409d6351e856eaf3065e8326fdc2', '172.105.247.100', 1671153698, '__ci_last_regenerate|i:1671153698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26339292217e7bbfe3762467779afe6e85e5ca7e', '172.105.247.100', 1671153698, '__ci_last_regenerate|i:1671153698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7212e2befbf7efef53b042da0dd5fc73501ab8c5', '172.105.247.100', 1671153698, '__ci_last_regenerate|i:1671153698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5afe57d8882d71118435f4a26b78215dd1bcdc', '172.105.247.100', 1671153698, '__ci_last_regenerate|i:1671153698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e2b059dc83f85aafb01229892eb94bdfe5997f', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c409b5840bb540d47f6e6dcbbe618969d2756776', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975f70624cafcfff06b5ac1b0849204d00b15274', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20bf0e8ec303cd0aef976671008bd9960fdd0c0f', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4055199957e59fa20c558b6286dbe3ea554eda28', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd29949676352e4ec0939a2d764f7c798f07c84a', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9727ba5b23d020ad21b6f79140d5d18493a5214a', '172.105.247.100', 1671153699, '__ci_last_regenerate|i:1671153699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a36fcecb3d9b392a2280071cd161d5024d4256', '172.105.247.100', 1671153700, '__ci_last_regenerate|i:1671153700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdeb791e35a9e5533a6634ef0ef3d3dced82f3ad', '172.105.247.100', 1671153700, '__ci_last_regenerate|i:1671153700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b8245a758debd701e417fe14fa3959c31171b5', '172.105.247.100', 1671153700, '__ci_last_regenerate|i:1671153700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1caded48efdd90b132123cc5d62619d5d912af94', '172.105.247.100', 1671153701, '__ci_last_regenerate|i:1671153701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ecd8c1d079ea6ef3fc1e71c10e47cbc42d3cbc', '172.105.247.100', 1671153701, '__ci_last_regenerate|i:1671153701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9231873bb76471fcc0b4a64f7bea189cdd64220', '31.222.203.2', 1671154339, '__ci_last_regenerate|i:1671154339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dca81060ae4a6efc344b066e101344a35326fe3', '31.222.203.2', 1671154340, '__ci_last_regenerate|i:1671154340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254e31adb518d9ee68bb6166ebfdec7d583bd974', '31.222.203.2', 1671154340, '__ci_last_regenerate|i:1671154340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96006e3a7c94e6e560f7f2a8b3eb814d4de254e3', '31.222.203.2', 1671154340, '__ci_last_regenerate|i:1671154340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48054b2962af6fd634c244512cc2560f7b6b2bdc', '31.222.203.2', 1671154340, '__ci_last_regenerate|i:1671154340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb02ed389a58813a09b3001c850195f9305578a0', '31.222.203.2', 1671154340, '__ci_last_regenerate|i:1671154340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe31898d4c61d9cee78f9a60857daa38af6c47d7', '31.222.203.2', 1671156139, '__ci_last_regenerate|i:1671156139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fec15ff9fe7622bd4d4cd60bd81492a6a0b571', '31.222.203.2', 1671156139, '__ci_last_regenerate|i:1671156139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a79138ae5b311703181617a792b3984069354f', '31.222.203.2', 1671156139, '__ci_last_regenerate|i:1671156139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94510d4ea14917c5c25b15ded73377a09b933be6', '31.222.203.2', 1671156139, '__ci_last_regenerate|i:1671156139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8de89482cde23e145f16bc364617e057a083e6', '31.222.203.2', 1671156139, '__ci_last_regenerate|i:1671156139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9701b2c8939cb3f8ae14dddd7d060519f1c181a', '31.222.203.2', 1671156139, '__ci_last_regenerate|i:1671156139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1a5a6a6ac13c73b3788f015c6650bdc1311311', '31.222.203.2', 1671157936, '__ci_last_regenerate|i:1671157936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cf8b2babe8c943fb42b007f76f0b1b51e6ca7c', '31.222.203.2', 1671157937, '__ci_last_regenerate|i:1671157937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64451e8ae5cfc83f1831126b54ee27a1459bc6a2', '31.222.203.2', 1671157937, '__ci_last_regenerate|i:1671157937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32e6a56f57b16481a4fde76c1c513a82fd42558', '31.222.203.2', 1671157937, '__ci_last_regenerate|i:1671157937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f345012dceb90a00cd95ab19b4da260171cfa166', '31.222.203.2', 1671157937, '__ci_last_regenerate|i:1671157937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eeb2eef0a7226ce0458d62887d801d52ddbd013', '31.222.203.2', 1671157937, '__ci_last_regenerate|i:1671157937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922c3238892747729f09ff0d6d01080b058ed9fe', '172.105.247.100', 1671158495, '__ci_last_regenerate|i:1671158495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2bc8d84c7716a72ebb71abc625d82643da7c6c1', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b97a01d6d3cb28204bbae830ff985e448ec17a9', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b2cb2d5d7461339f905fdf831c4c811e33e162', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af179735e9ad369f480df97700f7a2ed8022d95', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651e98b9468eccd46bfd9512d3a991ee36f00ca0', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae3e15cf8814f01f4309e917dd91dfb8ce929ab', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa4b0a6534c00a3b8a699ab1eae0ac2c9dce46a1', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a243f67c091ee8c817e98d8d6c9e51b2b5d967', '172.105.247.100', 1671158496, '__ci_last_regenerate|i:1671158496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2939b6bf1c7803cdf9f918a9f3d80983f87065d', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8951fe2f7b65c386584527a71fdcf8d277537f', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ddc005a7b10dc929b7d6df4bde1fe7681cf3d6', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('786f782d9e2ca09692fb60816b2a875996098a51', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1028f7fca60e7efafd6bdec6c259918fe8d6c4fa', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a4fc27bd3d6eeaf8e4a05d54cda8ac764c83d2', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832c7d6831df83c7e102ccdccaaa01afce840da8', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2c1273eb9b8f16088f29e92ca13a2a8883f98a', '172.105.247.100', 1671158497, '__ci_last_regenerate|i:1671158497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6e84aaac9add31e0a84dcb4d34c43e3f1dc695', '172.105.247.100', 1671158498, '__ci_last_regenerate|i:1671158498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146e23bd36c0ed29ce62772f65f0433773181c98', '172.105.247.100', 1671158498, '__ci_last_regenerate|i:1671158498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755e964c96f0c1b2a37f452d3d3ef2b8e9e7183f', '172.105.247.100', 1671158498, '__ci_last_regenerate|i:1671158498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad0dccc365ecaca3eac994f1fb431522d4dec6e', '172.105.247.100', 1671158498, '__ci_last_regenerate|i:1671158498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6672ee852586d76f30eb39d35ab9d09074d5bd4', '172.105.247.100', 1671158498, '__ci_last_regenerate|i:1671158498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5011691d495361be8facb8aaf9d280cd0ac9d69b', '172.105.247.100', 1671158498, '__ci_last_regenerate|i:1671158498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5b858717bafd2a935da4f94e6d8af910b0efc4', '172.105.247.100', 1671158499, '__ci_last_regenerate|i:1671158498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63772f72e6eacc8723a6a3f9b1c6ee7676a5573b', '31.222.203.2', 1671159737, '__ci_last_regenerate|i:1671159737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91333555e84513aa446f1148395d733a439eafd', '31.222.203.2', 1671159738, '__ci_last_regenerate|i:1671159738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b50dba3a2b723e9ec88a7460aeab486edc34b97', '31.222.203.2', 1671159738, '__ci_last_regenerate|i:1671159738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f7296fa965ad944191812cdecd390067aeefb4', '31.222.203.2', 1671159738, '__ci_last_regenerate|i:1671159738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f92a6bc85e5b239c108c603e39cdf1eb92dc839', '31.222.203.2', 1671159738, '__ci_last_regenerate|i:1671159738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074f07111101be2d6ac318eb11edb20caf0d4c8b', '31.222.203.2', 1671159738, '__ci_last_regenerate|i:1671159738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ebcd09f991bfa2ca1486e80f82b7c84421a8a5', '31.222.203.2', 1671161531, '__ci_last_regenerate|i:1671161531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33af58c697eae65120b52ae4a2cd280f059a7356', '31.222.203.2', 1671161531, '__ci_last_regenerate|i:1671161531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('730a75a713c686aae6584c6cb008cd9f41147567', '31.222.203.2', 1671161531, '__ci_last_regenerate|i:1671161531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f483dd940dd537aed83051a8f10578c2386e65f', '31.222.203.2', 1671161533, '__ci_last_regenerate|i:1671161533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff76533a663f653ebe52a8a74e661925188d179', '31.222.203.2', 1671161533, '__ci_last_regenerate|i:1671161533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec93c925ee3f1a71e6ba9a5d8e3904510727a24', '31.222.203.2', 1671161533, '__ci_last_regenerate|i:1671161533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709dedae2aaaca18ff03c7829ba37c41635b3aa8', '172.105.247.100', 1671163292, '__ci_last_regenerate|i:1671163292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e8b41261082867c17f58f5a1807f5a65434258b', '172.105.247.100', 1671163292, '__ci_last_regenerate|i:1671163292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28a10a00ad07dcbf283cfeec058e2b330aef5cd', '172.105.247.100', 1671163292, '__ci_last_regenerate|i:1671163292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84ec548c579cb313ec64c002b5967f172a00518', '172.105.247.100', 1671163292, '__ci_last_regenerate|i:1671163292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2381f0ffa7b9732b179e42b67ea8a0441f3b26', '172.105.247.100', 1671163292, '__ci_last_regenerate|i:1671163292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f6afb344f430ebc7323a415980b6e389201301', '172.105.247.100', 1671163292, '__ci_last_regenerate|i:1671163292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7886fbbb5d77af9da2a0a38adeb0e519181c9f', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66b34e7476faf08911bc5fa50b29186de4d1b4c', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82bdc1ae1bc9cb432fcec62d32e8e08edc4daec', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30dee930f00cb2f0d361b7d6fb4bb6c80abc9ee2', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b84929589bbb02dc9eb47ef4038dffffc003b65', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315bab370a64f3ee72147f9414c5b46424d078a2', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca404961ca87e9cb9c3f669eb8a5310e3d5c45b', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ef1f83585eb98fbc66faa0990010bdabca241a', '172.105.247.100', 1671163293, '__ci_last_regenerate|i:1671163293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758044994688d9fe666b108d77d0e98169bdd3db', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088fe228d811e431199b6234509d7d09207a5cd9', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f4fbb54d0a2a3e658a620dba72f719741cf5b84', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29b71ebaaafe2dadc49fb97be02d425be1ae4a4', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9619b449092bafe6ebfdd444053319257aa81076', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ed5a6d8e11a76f9e7646e0dc4767e5a4789657', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93988a7b2a1856bf1d34275f1ecf0df3ff02d854', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d197191ebb9de4444fc54f678403c8bb7ec5be', '172.105.247.100', 1671163294, '__ci_last_regenerate|i:1671163294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e1988eb6d703168d20b7cc76bcc557628d577d', '172.105.247.100', 1671163295, '__ci_last_regenerate|i:1671163295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e44bf2b9129c9601ca1012cc709a2ea7647d9845', '172.105.247.100', 1671163295, '__ci_last_regenerate|i:1671163295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec301d4f50ae42ea33905b813cd38ac1881b04e7', '31.222.203.2', 1671163333, '__ci_last_regenerate|i:1671163333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecefe68aad60e1cae1a78dbd2d89f10e169512c2', '31.222.203.2', 1671163333, '__ci_last_regenerate|i:1671163333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8ada1bf167c9c6dcecf2faad03c30a66d987da', '31.222.203.2', 1671163333, '__ci_last_regenerate|i:1671163333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb47aa928aba6d5c4dd586a086f8d84053e61021', '31.222.203.2', 1671163334, '__ci_last_regenerate|i:1671163334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d74235ad9a260ec3ea1498424d97a40709e8b8', '31.222.203.2', 1671163334, '__ci_last_regenerate|i:1671163334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720f5033b27ad0b1fe5f6221ff84f5fd684c2510', '31.222.203.2', 1671163334, '__ci_last_regenerate|i:1671163334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0f1e1f8dbc8edafe6aaf41b949a380b4508e23', '87.236.176.62', 1671165061, '__ci_last_regenerate|i:1671165061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7df4f7c91450811ba48a58162727ddaf4ecb47', '87.236.176.62', 1671165067, '__ci_last_regenerate|i:1671165061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700abaf316af7cf00bbccbbf86f3e65dcc2ca59c', '31.222.203.2', 1671165133, '__ci_last_regenerate|i:1671165133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e1e9cffa3c66458f43bd54a9fb9f4c9b6ebc2a', '31.222.203.2', 1671165133, '__ci_last_regenerate|i:1671165133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337c1a4a90bf583aea594d5edff78e8c6967e978', '31.222.203.2', 1671165133, '__ci_last_regenerate|i:1671165133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b1b25421388cf5e16fa2d18ca7bf13967486ab', '31.222.203.2', 1671165133, '__ci_last_regenerate|i:1671165133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909ed94e47fbe5447e9d42791862dec91a789ab1', '31.222.203.2', 1671165133, '__ci_last_regenerate|i:1671165133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9350922a8af8e615199baca238960b4fe011790c', '31.222.203.2', 1671165133, '__ci_last_regenerate|i:1671165133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01465c2650c3cbbcdd7da88c03bc0e8cda3cd53a', '116.204.230.18', 1671165604, '__ci_last_regenerate|i:1671165604;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671079584\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"gJsrGOSMiWe09UkLRcIx\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b16ceeaec5eca2df317a72714df05c0c4246ed5', '116.204.230.18', 1671168177, '__ci_last_regenerate|i:1671168177;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671079584\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"5nB1xQEw4M8TIaJhFPYf\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5940f0b607506971c7ed4b29bdc87da76cb00aea', '45.120.39.89', 1671166704, '__ci_last_regenerate|i:1671166704;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d993b0ccda6001f724ce970e30750a9cdeac01', '45.120.39.89', 1671175196, '__ci_last_regenerate|i:1671175196;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671171535;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76170bb586ef051ca33e38e61aff524af36aac6', '31.222.203.2', 1671166941, '__ci_last_regenerate|i:1671166941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f46f1a8c7fdffa8a1f154254340377400388ca7', '31.222.203.2', 1671166943, '__ci_last_regenerate|i:1671166943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fbd2035b5e3c34cc7fccc11b0cc387db4cd53a2', '31.222.203.2', 1671166943, '__ci_last_regenerate|i:1671166943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0db8e2500fa97c387b580e4c74a479b3aea989', '31.222.203.2', 1671166943, '__ci_last_regenerate|i:1671166943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7e9ffb663a44817af081fae4dbfafc33f745df', '31.222.203.2', 1671166943, '__ci_last_regenerate|i:1671166943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43449b12993e04b0b3ac425ead20dd161b8fbcde', '31.222.203.2', 1671166943, '__ci_last_regenerate|i:1671166943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb8827b6f8e94d3a7487d033ba68683aef68360a', '172.105.247.100', 1671168097, '__ci_last_regenerate|i:1671168097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba7e14ca679a9a085c2dea33b2dee9747a14787', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac3668ce56ace83c9278d331bf97ce09534e8f9', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71df791ba0bb2ae0b483a331edfd04211f2b189', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e4a98741753316ac5342a5bffd0e24eac3de0d', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5fdcacfcece5a66faff4e1376555ce4f604991', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('294f1a00e9618b41d14170bbdec9b8863a1d6e18', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14a9898cff29d4db3bb4c81900ed5bb522dc408', '172.105.247.100', 1671168099, '__ci_last_regenerate|i:1671168099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46805470729b81184ba68d427b435443521e6575', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b5001f7fabd1542ad427d3afd27079efc34c7d', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2627e9e1f34bd8c13db9950ffd11e50263ad15bd', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2ae76af37a81dcb22b3bdff9247fc180fb5855', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4628457bb699bda2e9b7459d2a0a4d139dc5de', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907e2bd4d0f481230fee14d65a0303ceef959c39', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8f4232f9f78c7c40c189d75fe1bf51bff6f0c8', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62da52399f56024339d0f3960557c719b054bc8', '172.105.247.100', 1671168100, '__ci_last_regenerate|i:1671168100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b83975b6768cd4f358e02559998e87a558553070', '172.105.247.100', 1671168101, '__ci_last_regenerate|i:1671168101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f10093679637ac0519f2594958d5c0be5de87b', '172.105.247.100', 1671168101, '__ci_last_regenerate|i:1671168101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5935ac036469f60234158b04037bffcd75fff96', '172.105.247.100', 1671168101, '__ci_last_regenerate|i:1671168101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fdfdc4743e0c14b4824f5c4538ed1017c6b8d86', '172.105.247.100', 1671168101, '__ci_last_regenerate|i:1671168101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6faa1a8f46e482caffea0b839f908e5e35f5083', '172.105.247.100', 1671168101, '__ci_last_regenerate|i:1671168101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a071ba72dfecc089def2f96c790e49d3b1d8056', '172.105.247.100', 1671168101, '__ci_last_regenerate|i:1671168101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0b964a95902c7f547c9a684bfe23dc8064f182', '172.105.247.100', 1671168102, '__ci_last_regenerate|i:1671168101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637f15f7e7e47c2b395bc1b0cec0ce7cad5001e4', '172.105.247.100', 1671168102, '__ci_last_regenerate|i:1671168101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817352e3e715b6f96acf96ad6fd5ea234f234c7c', '116.204.230.18', 1671168504, '__ci_last_regenerate|i:1671168504;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671079584\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pj4kDceRvwEAigZ3xbn6\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a379b5d6d07f5877e9f1f04b5f575382baca8f53', '116.204.230.18', 1671172276, '__ci_last_regenerate|i:1671172276;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671079584\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pj4kDceRvwEAigZ3xbn6\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea108da25189843575c3a9d5aec7340b68e450c', '31.222.203.2', 1671168739, '__ci_last_regenerate|i:1671168739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8a6482f9afc3298c81a69aaf4c8dd340eae5e9', '31.222.203.2', 1671168740, '__ci_last_regenerate|i:1671168740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85427f790a1e9cdccf9451894108e29133cba9e1', '31.222.203.2', 1671168740, '__ci_last_regenerate|i:1671168740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa19d10f40a12a6772b7dd2f7b955e10faf8627', '31.222.203.2', 1671168740, '__ci_last_regenerate|i:1671168740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2240d48428a17cff604ebd050ff020de096e72a2', '31.222.203.2', 1671168740, '__ci_last_regenerate|i:1671168740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4db8571c84ddfae4ef5f3a61c680d451ecac776', '31.222.203.2', 1671168740, '__ci_last_regenerate|i:1671168740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a88fcdadef9b713d1a37729ba00d5fc023c70c9', '31.222.203.2', 1671170536, '__ci_last_regenerate|i:1671170536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efca1dfcf5b6a067dd3d7c75de3a0b146a51be37', '31.222.203.2', 1671170536, '__ci_last_regenerate|i:1671170536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd616e6692a6e36da91c3ab001a6759046091db3', '31.222.203.2', 1671170536, '__ci_last_regenerate|i:1671170536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6f487f25b0d2712899878412d51109bbd6a55e', '31.222.203.2', 1671170538, '__ci_last_regenerate|i:1671170538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21be16d32cd9e32cf3acba66f5d4de625be95f69', '31.222.203.2', 1671170538, '__ci_last_regenerate|i:1671170538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052fc5f5e87fafb213a274b8307f00fe54c536b1', '31.222.203.2', 1671170538, '__ci_last_regenerate|i:1671170538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2ce1c8642454610c364818dd433b72b205c896', '116.204.230.18', 1671176346, '__ci_last_regenerate|i:1671172276;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671079584\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pj4kDceRvwEAigZ3xbn6\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bf71ef8140940d366e8af91c5a7095d5474dbd', '31.222.203.2', 1671172340, '__ci_last_regenerate|i:1671172340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f15d7703a1d5e3240c5290bcf96739ce459c5c', '31.222.203.2', 1671172340, '__ci_last_regenerate|i:1671172340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2abbfafc7e95b063cdd1691c974f5d3b7e9e49e', '31.222.203.2', 1671172340, '__ci_last_regenerate|i:1671172340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb5316dc6f605d1d4e1bd93e80cab3f4c795886', '31.222.203.2', 1671172341, '__ci_last_regenerate|i:1671172341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4e773972065b3bcde9c2d992316024b36cea04', '31.222.203.2', 1671172341, '__ci_last_regenerate|i:1671172341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404f82eab2ce030c0050a5bf1d40f52aece81eac', '31.222.203.2', 1671172341, '__ci_last_regenerate|i:1671172341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1d55daa29fe5f0fa2779263e6308cdb6df1ca8', '172.105.247.100', 1671172890, '__ci_last_regenerate|i:1671172890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38286cb515bc6046cdeddc37a4f2783562ca8299', '172.105.247.100', 1671172891, '__ci_last_regenerate|i:1671172891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa13ae1f8b38d610b1ef366f20952f6e716bc51', '172.105.247.100', 1671172891, '__ci_last_regenerate|i:1671172891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9d7bd36802a006fab270720e75afcb81a37cb1', '172.105.247.100', 1671172891, '__ci_last_regenerate|i:1671172891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214e91f81858dd27d60fc03bdf7f4dceec57e902', '172.105.247.100', 1671172891, '__ci_last_regenerate|i:1671172891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f79622bd29c76dfaaddd842cf01f6fb8d9cc4086', '172.105.247.100', 1671172892, '__ci_last_regenerate|i:1671172892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d954e9c7a43e26b85a4c3be4f279a6fd5eee39c', '172.105.247.100', 1671172892, '__ci_last_regenerate|i:1671172892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1fdeb29feca05cc245360d1d3329af6c2243ab6', '172.105.247.100', 1671172892, '__ci_last_regenerate|i:1671172892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027fede858ad72ce9721b63a109433b682f3022f', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbeeab5520b4368ae1964a22605cb5a381b89a39', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e19aaf928c28fd2ccc4db328d6a3b9b6350607f', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e7936b968e86d0620e7b27ca7d8fa108aa1bb5', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552a119403aff2ef94735143d3c152c5d48e5eb7', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ad1a7b309e3979bf2abd4605d9d47e7a6963d2', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1d87e9cb2483fba0ac67c453904fea6c336300', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90198e8958aec422de92128ed401dea08787cd8', '172.105.247.100', 1671172893, '__ci_last_regenerate|i:1671172893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1ef427afbe6483acc553069978ef202bb2279f', '172.105.247.100', 1671172894, '__ci_last_regenerate|i:1671172894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f7bce26cd395a67863ff3e9cdfd7370556d0d2', '172.105.247.100', 1671172894, '__ci_last_regenerate|i:1671172894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ceb33d6e0d9857f3c70f2893f6d42964c3e1025', '172.105.247.100', 1671172894, '__ci_last_regenerate|i:1671172894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f293b6bd5e434b0746daa5f8a3e92ea8b6bd0993', '172.105.247.100', 1671172895, '__ci_last_regenerate|i:1671172894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2447c1f7925e0fe3a9e79feb3fbb873d35f80f16', '172.105.247.100', 1671172895, '__ci_last_regenerate|i:1671172895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c91b3bad628750b06612f3c42126ea4b37c937d', '172.105.247.100', 1671172895, '__ci_last_regenerate|i:1671172895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9251f33767ff237a5de68071f532a1a433435603', '172.105.247.100', 1671172895, '__ci_last_regenerate|i:1671172895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c3719086c1626028a19500cc17207c3d79b784', '172.105.247.100', 1671172896, '__ci_last_regenerate|i:1671172896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3973c69a9be22a65bbc4453fe293a1bf3538f4a', '31.222.203.2', 1671174135, '__ci_last_regenerate|i:1671174134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132b5c36d2124c52747b6299718bda54fd738c4a', '31.222.203.2', 1671174135, '__ci_last_regenerate|i:1671174135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa3bbbc3379c9aeadb9c96b949799d2dfe8c78b', '31.222.203.2', 1671174135, '__ci_last_regenerate|i:1671174135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ffb5d9d33bc8b308cfbec94cd9d17eaeb16af64', '31.222.203.2', 1671174135, '__ci_last_regenerate|i:1671174135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c030389a5d86df9bc1ec5a72d254afee44e8b4ec', '31.222.203.2', 1671174135, '__ci_last_regenerate|i:1671174135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4264085197f5e3817763d565c1fcf64211989e6', '31.222.203.2', 1671174135, '__ci_last_regenerate|i:1671174135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02014f51f02398e202576108f5537cf16b20c961', '198.235.24.60', 1671174499, '__ci_last_regenerate|i:1671174499;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9004166b42fb8fb6e1b305336af485c4797d3c5', '37.111.219.215', 1671175879, '__ci_last_regenerate|i:1671175879;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671175362;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b06db96bc44460e5a5bf5e73ec1b3b7a468958', '45.120.39.89', 1671176976, '__ci_last_regenerate|i:1671176976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671175899;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c83a6c51120eb8fc58989b33f5cb330f6a35a3e', '31.222.203.2', 1671175938, '__ci_last_regenerate|i:1671175938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a5fc2733ef0f1f07e1a13717eece1bcf8a0f05', '31.222.203.2', 1671175938, '__ci_last_regenerate|i:1671175938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50d562656efbfc1509f21a6242ab2095f3366d1', '31.222.203.2', 1671175938, '__ci_last_regenerate|i:1671175938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8995158e521c806803c78990820bbccb4d2195b0', '31.222.203.2', 1671175938, '__ci_last_regenerate|i:1671175938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef94d38c92bd10f0456d063f64c4da0f378df4b4', '31.222.203.2', 1671175938, '__ci_last_regenerate|i:1671175938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5a51184dd36984770a0cf3dc0760b649ebdeb7', '31.222.203.2', 1671175938, '__ci_last_regenerate|i:1671175938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16effd9d0e54b12c7f415f5113f42ddcb0c70111', '45.120.39.89', 1671177506, '__ci_last_regenerate|i:1671177506;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671177082;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44f8187de9081638c258474d393f390b70de3cd', '45.120.39.89', 1671178791, '__ci_last_regenerate|i:1671178791;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671178784;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc32bc6927165c38372da25432187cd8b66810f', '172.105.247.100', 1671177695, '__ci_last_regenerate|i:1671177695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a311b200c10ca472527e6584404887465c2ebe', '172.105.247.100', 1671177696, '__ci_last_regenerate|i:1671177696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4776f6f0037acdfbec6ef0755dc6b1e6f141f50b', '172.105.247.100', 1671177696, '__ci_last_regenerate|i:1671177696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00fb116381300abde2a1996c1fc7f5bd2553932c', '172.105.247.100', 1671177696, '__ci_last_regenerate|i:1671177696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4c2033f863258e1131b5b52f81d2e2854255b9', '172.105.247.100', 1671177696, '__ci_last_regenerate|i:1671177696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f96adf13780ac8a951b2defaa6c1129a316a7e40', '172.105.247.100', 1671177697, '__ci_last_regenerate|i:1671177697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82182ccacbb2e8b1634363ea7139ee2fd069cc05', '172.105.247.100', 1671177697, '__ci_last_regenerate|i:1671177697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63df9dc9e841c4001b502914e1ea1403725531c', '172.105.247.100', 1671177697, '__ci_last_regenerate|i:1671177697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f09f74329a54e8fce040f0a5193ab588eb5f6c6', '172.105.247.100', 1671177697, '__ci_last_regenerate|i:1671177697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0984ddf282dacb84c7485455b28d6120f1e5f5af', '172.105.247.100', 1671177697, '__ci_last_regenerate|i:1671177697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2e2dd9959ef2e2133f16de37f7902ec6acb0d0', '172.105.247.100', 1671177697, '__ci_last_regenerate|i:1671177697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e73d93a5cd2e66acf04c4ae16941e360e67cf02', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a29dbdb18dd244e10baed98125041759712757d', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64573cc3868e20c66e9cf63c301df78ef2054117', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0666e1cab1cdabc5b27f6164dc6d7d2a39d71101', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41da6dce1948c2d04b621e5c3b7691b2c8408ae', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579e298197bcfd5ac74e82461e6f409ffac9fd9f', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050693cd1ecbf43d066270ce6159b78935a767f2', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0cef3060829a0a5c1574d398b5f83e326019ba', '172.105.247.100', 1671177698, '__ci_last_regenerate|i:1671177698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cad3b7f44f4ec6707fe26f7292a0e178e05859', '172.105.247.100', 1671177699, '__ci_last_regenerate|i:1671177699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bae9e6a01775826928a958dbc41ee1f126c5044', '172.105.247.100', 1671177699, '__ci_last_regenerate|i:1671177699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6b2d6d7116d8ab934828fa84bfbc85aad9f868', '172.105.247.100', 1671177699, '__ci_last_regenerate|i:1671177699;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7f2dc794a58dc6042da9920d6ee742a0d8bf28', '172.105.247.100', 1671177700, '__ci_last_regenerate|i:1671177700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88e0018b3423260a1e8602c6c460d4868c12f6c', '172.105.247.100', 1671177700, '__ci_last_regenerate|i:1671177700;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1323c75a9732643b29f973951f4a3659e3f65f', '31.222.203.2', 1671177735, '__ci_last_regenerate|i:1671177735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbc91c288e7f8d5afa349adb9b370d41228ee81', '31.222.203.2', 1671177735, '__ci_last_regenerate|i:1671177735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7700592b96642978e1b88a178b1ebbe9899f0050', '31.222.203.2', 1671177735, '__ci_last_regenerate|i:1671177735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5464f7db8add2960c82e32395014ee329b20723d', '31.222.203.2', 1671177737, '__ci_last_regenerate|i:1671177737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96bce7f5272b3f72560a3b23f42bfda2fa413946', '31.222.203.2', 1671177737, '__ci_last_regenerate|i:1671177737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7bc2a3f4b882093a1ffdc0d1acd9968f5aff543', '31.222.203.2', 1671177737, '__ci_last_regenerate|i:1671177737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0585c440ecef17fd3a7b0cdc55d3cc52173dbef8', '45.120.39.89', 1671180804, '__ci_last_regenerate|i:1671180804;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671178792;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb8a2926ee49e4447fe00669785d4c8a0d2a690', '31.222.203.2', 1671179537, '__ci_last_regenerate|i:1671179537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e89b98e82b09b7e639caf9d1d61714cf8b5b06f', '31.222.203.2', 1671179537, '__ci_last_regenerate|i:1671179537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d2ed95fd314beeabe1eb4e7358ae03fc3fc646', '31.222.203.2', 1671179537, '__ci_last_regenerate|i:1671179537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff5cf4f6310afb248f8490c22b1a196702d0804b', '31.222.203.2', 1671179540, '__ci_last_regenerate|i:1671179539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f569658221a539b0133967c565b91c5303ff24', '31.222.203.2', 1671179540, '__ci_last_regenerate|i:1671179540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e450f11dc4e35da040bf0899315eb9dcc795ea', '31.222.203.2', 1671179540, '__ci_last_regenerate|i:1671179540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23620a61a6afd860707f8d1546468b933ddd33c5', '37.111.218.116', 1671180823, '__ci_last_regenerate|i:1671180804;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671092288\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671180804;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2af3b2c1c15f33ba67e84db9ab4c03502e3b9e2', '31.222.203.2', 1671181340, '__ci_last_regenerate|i:1671181340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4d9272a9f8a7dc065ee43ad41713bd3dc8ace1', '31.222.203.2', 1671181340, '__ci_last_regenerate|i:1671181340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2b2a4473b1c6305a53eec51ee312ef08d15560', '31.222.203.2', 1671181340, '__ci_last_regenerate|i:1671181340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543504f55e2a66e4d4d38937d88cf85ec3b21939', '31.222.203.2', 1671181342, '__ci_last_regenerate|i:1671181342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1142727f9b6d64ca8cfcff588e55797423f61145', '31.222.203.2', 1671181342, '__ci_last_regenerate|i:1671181342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f30a728bf80afbce5dbbbc96c1497032946de26', '31.222.203.2', 1671181342, '__ci_last_regenerate|i:1671181342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ace0bd65fd36d2a9c45d90e440da50be61328dc', '198.235.24.136', 1671182322, '__ci_last_regenerate|i:1671182322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81a0211e6e9702efacdc798cdc9341fe577e7e3', '172.105.247.100', 1671182492, '__ci_last_regenerate|i:1671182492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad946ad7eac1af33d6cd5131d6e7fb0146758a9', '172.105.247.100', 1671182492, '__ci_last_regenerate|i:1671182492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5672c6e25e7715ff763950e9f2be6dd3324cad', '172.105.247.100', 1671182492, '__ci_last_regenerate|i:1671182492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f759ce58d92156aa4ed21be41985146cfe8f046a', '172.105.247.100', 1671182493, '__ci_last_regenerate|i:1671182492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568e719b42a3dec39b7a3429a51be6b24aaa6d5a', '172.105.247.100', 1671182493, '__ci_last_regenerate|i:1671182493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cfb1d97d064eb9f237136a46061f12be36d06fd', '172.105.247.100', 1671182493, '__ci_last_regenerate|i:1671182493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50e17437740d8fe69adf0beed5f389b82568bf9', '172.105.247.100', 1671182493, '__ci_last_regenerate|i:1671182493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8292768a5e6045d63d9624a3d610cac74b5eb79', '172.105.247.100', 1671182494, '__ci_last_regenerate|i:1671182494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d285142a0ab788f1d85ae4540b5c39265be12150', '172.105.247.100', 1671182494, '__ci_last_regenerate|i:1671182494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7042912e47dbd50effe5dc7526da9610dc75897a', '172.105.247.100', 1671182494, '__ci_last_regenerate|i:1671182494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8bfa45841e6dfaaf2629d306bf14b3bba2f3683', '172.105.247.100', 1671182494, '__ci_last_regenerate|i:1671182494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750dda1a42b6ecfa855119bcd0053c336bd6baef', '172.105.247.100', 1671182495, '__ci_last_regenerate|i:1671182495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a605d12423138b22dc3d19fee41fa443fb4124b9', '172.105.247.100', 1671182495, '__ci_last_regenerate|i:1671182495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59375c4ab8a40597af8bce907ff503f2eef024ad', '172.105.247.100', 1671182496, '__ci_last_regenerate|i:1671182496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbaf2047ccb5465a4d1184ee55a1395080b9bde0', '172.105.247.100', 1671182496, '__ci_last_regenerate|i:1671182496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb765e845e1deb3062909f092a50bbf856d7e9d', '172.105.247.100', 1671182496, '__ci_last_regenerate|i:1671182496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3592678158a0cc4c06f29a04e906c19a5d68f7', '172.105.247.100', 1671182496, '__ci_last_regenerate|i:1671182496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75d2380b5d871372c88cf4611b279ad9f4db516', '172.105.247.100', 1671182497, '__ci_last_regenerate|i:1671182497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ca3fc26dc253bb90eb1a0d707e0809a03f765f', '172.105.247.100', 1671182497, '__ci_last_regenerate|i:1671182497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9d7efcc1cd81472dd149285880df5b515303d6', '172.105.247.100', 1671182497, '__ci_last_regenerate|i:1671182497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50975f351b8a64394ebcf52082ad965a9d34579', '172.105.247.100', 1671182497, '__ci_last_regenerate|i:1671182497;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c504de8357c9eb083b1c9c5188f577b9932edeca', '172.105.247.100', 1671182498, '__ci_last_regenerate|i:1671182498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2148080912895944b3950443bc6cab03cf782215', '172.105.247.100', 1671182498, '__ci_last_regenerate|i:1671182498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74fb1e9f483a08a11a38af879ce72f21327cf84', '172.105.247.100', 1671182498, '__ci_last_regenerate|i:1671182498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c676f5f8bd7acfcc13570e55303d2ae1e91e99f', '31.222.203.2', 1671183135, '__ci_last_regenerate|i:1671183135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3de55cb13ef25678c8d61d78e95ec7b16021c88', '31.222.203.2', 1671183135, '__ci_last_regenerate|i:1671183135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd467f1c56302f580e8fb14ade959efb8ea587d', '31.222.203.2', 1671183135, '__ci_last_regenerate|i:1671183135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c0396cd502100775c0845415e959b5c59ecb43', '31.222.203.2', 1671183135, '__ci_last_regenerate|i:1671183135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7fb4ef6416a1515a04b28c7d87ae7a730fc709', '31.222.203.2', 1671183135, '__ci_last_regenerate|i:1671183135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a026de4fd1180dc1b23036de8518f44eb2890a', '31.222.203.2', 1671183135, '__ci_last_regenerate|i:1671183135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbaf1ec8ff2275d044aba26237bd7283dba4b6a8', '31.222.203.2', 1671184934, '__ci_last_regenerate|i:1671184934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b919bae9e98500acc160dbcb110d62d446dc023e', '31.222.203.2', 1671184934, '__ci_last_regenerate|i:1671184934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde26ae7f387c302e1a19734a2f595e99329e415', '31.222.203.2', 1671184934, '__ci_last_regenerate|i:1671184934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca6ebd85a6ba4726cd52a638671f09407940008', '31.222.203.2', 1671184937, '__ci_last_regenerate|i:1671184937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc878ec15fc4f1f15397bb28253cbda4803db9d9', '31.222.203.2', 1671184937, '__ci_last_regenerate|i:1671184937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3db7975824a5163b0cb99c4185d08a5de37148', '31.222.203.2', 1671184937, '__ci_last_regenerate|i:1671184937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a17345b1d0db5edbb02f0b9e3c8ed6eaef51dd', '31.222.203.2', 1671186734, '__ci_last_regenerate|i:1671186734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21068306043adf91e1d7872f56979da87380c1c1', '31.222.203.2', 1671186734, '__ci_last_regenerate|i:1671186734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7979653315ac4c4450fd97b82d7150cc6285dbb', '31.222.203.2', 1671186734, '__ci_last_regenerate|i:1671186734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90a5642c0931e38d84b9cf96e4acb780af8860f', '31.222.203.2', 1671186734, '__ci_last_regenerate|i:1671186734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49061c02f071bd40645432283c864beaedc86f7', '31.222.203.2', 1671186734, '__ci_last_regenerate|i:1671186734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6781cdd85ea3f6c658e320917e3a2035b327abb', '31.222.203.2', 1671186734, '__ci_last_regenerate|i:1671186734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7624d066277789dea1f87e95926a36fc092ba337', '198.235.24.44', 1671187247, '__ci_last_regenerate|i:1671187247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d09c3fa9d3129b1d63d5f3cc4aacf92eacb15d', '172.105.247.100', 1671187294, '__ci_last_regenerate|i:1671187294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef9699146bc9872d7699645c77e1adc8e1fd6017', '172.105.247.100', 1671187296, '__ci_last_regenerate|i:1671187296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae30be04af253572f3ac9bff67105cbd4ac571d8', '172.105.247.100', 1671187296, '__ci_last_regenerate|i:1671187296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('746512b3bc65ddac9f17af836eb7fd2331dea069', '172.105.247.100', 1671187296, '__ci_last_regenerate|i:1671187296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf759e982f306f6f4101bea252645d768388b868', '172.105.247.100', 1671187297, '__ci_last_regenerate|i:1671187297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('badf611f40819296ec6139143af16d471e66d0f9', '172.105.247.100', 1671187297, '__ci_last_regenerate|i:1671187297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a08382729b1389e4f68e7c5a6aded17da00150', '172.105.247.100', 1671187297, '__ci_last_regenerate|i:1671187297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32a37d1ed9575778d831b40843ec694cd5312ae0', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3009975d1e35263dc18d1d3a0cad63083dc36a3', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb982de7d8fc991ce6899887e7f6217eaffcaf31', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28708295a09ca2924b9df9cd0ffda077cdac85a1', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4c8d84aa86b5ce2386ed7f090aa9c4bdcc5eca', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103e6d2f3c8b824657362cedcc3cd01f7139653d', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8cdbb876bc7e9a57a08bc308691409e4bdba29c', '172.105.247.100', 1671187298, '__ci_last_regenerate|i:1671187298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c08052175c27a1374f43c56d02e0e9d2a4d0e5e', '172.105.247.100', 1671187299, '__ci_last_regenerate|i:1671187299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850e8357bd91f9e3aac86ed136dbf7eab5f556ee', '172.105.247.100', 1671187299, '__ci_last_regenerate|i:1671187299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a279a40799ffc9c0be8ffae5775ebfad7881d5d2', '172.105.247.100', 1671187299, '__ci_last_regenerate|i:1671187299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f69c5e836174938deda1a432a149c88d25f0aee', '172.105.247.100', 1671187299, '__ci_last_regenerate|i:1671187299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('989c28d7fc531503027327486f6e72caedc953b0', '172.105.247.100', 1671187299, '__ci_last_regenerate|i:1671187299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873e1c83a81f35fc597ca510867d117b3acdd7ba', '172.105.247.100', 1671187299, '__ci_last_regenerate|i:1671187299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9992fc73df513124ed946d6bb8cba115e8ab866b', '172.105.247.100', 1671187300, '__ci_last_regenerate|i:1671187300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0085700b755062ecf7b06982643b47dfdbac3747', '172.105.247.100', 1671187300, '__ci_last_regenerate|i:1671187300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146c3e25a87a0ba18d37c87d55bb7c4d19e36354', '172.105.247.100', 1671187300, '__ci_last_regenerate|i:1671187300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c91a25c3aab9988fa15a0d3ca6bbde7f4dc17f1', '172.105.247.100', 1671187301, '__ci_last_regenerate|i:1671187300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd23566e8e21c2673895da30dd13c0feea655cc', '31.222.203.2', 1671188535, '__ci_last_regenerate|i:1671188535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2292d067202180ddeb7f5f2e18b90b9fb04712af', '31.222.203.2', 1671188535, '__ci_last_regenerate|i:1671188535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82367e0da400331a14c19275364600700e8e9293', '31.222.203.2', 1671188535, '__ci_last_regenerate|i:1671188535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d5da9ba039804653add663def1975c1ad00588', '31.222.203.2', 1671188537, '__ci_last_regenerate|i:1671188537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32d976d8b23f8ca1d40e31e6e8414d40283bcf6', '31.222.203.2', 1671188537, '__ci_last_regenerate|i:1671188537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44916ed7b93ac6339632d85367245e75a2d1d30f', '31.222.203.2', 1671188537, '__ci_last_regenerate|i:1671188537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381b0f9116f33cfea790b2e759e722109af38719', '45.120.39.89', 1671189902, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5c7edda509a07a369fd33c54f72a9ecac9ae17', '45.120.39.89', 1671189902, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('222e526f0656cf614660e833565ca1e0157b7fbb', '45.120.39.89', 1671189902, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918289b72a5817ebcfcaaf67bdd66907b7ef65c5', '45.120.39.89', 1671191124, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671191124;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671189987;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35592bb58456ad59a91703b1bf599d3b3de8ce0', '31.222.203.2', 1671190337, '__ci_last_regenerate|i:1671190337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d66608dfade9f2bceb518d0105e4235c8d753f', '31.222.203.2', 1671190339, '__ci_last_regenerate|i:1671190339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f78ad198b6ce7fb06f23fd74d530859ac48d57', '31.222.203.2', 1671190339, '__ci_last_regenerate|i:1671190339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416c528778aed57c22ffceb3b2ff212c3002b70a', '31.222.203.2', 1671190339, '__ci_last_regenerate|i:1671190339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0713c0108430f7ca2a3401a33a94352d36442898', '31.222.203.2', 1671190339, '__ci_last_regenerate|i:1671190339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fb64b0f94bf2a5f0a2ddc43f19b7a7cb4f1c2ae', '31.222.203.2', 1671190339, '__ci_last_regenerate|i:1671190339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5922c4ae0e0e01036624d919ae0aa69b69eeffb8', '45.120.39.89', 1671192616, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671192616;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671192570;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c94483c8edba3329d3a3f5624c3d8806810cb6e', '172.105.247.100', 1671192091, '__ci_last_regenerate|i:1671192091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3b74086f23ce773d43f6e8d26a7f01f21436df', '172.105.247.100', 1671192092, '__ci_last_regenerate|i:1671192092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7d2e249c50be215e3fdec5d3cebb9722c1cce4', '172.105.247.100', 1671192092, '__ci_last_regenerate|i:1671192092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0117a6477cf171d076e89eecaeaf68383611b9', '172.105.247.100', 1671192093, '__ci_last_regenerate|i:1671192093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad80cf10f3ee6e9eedc3674ccb6bb9caea1b9b1d', '172.105.247.100', 1671192093, '__ci_last_regenerate|i:1671192093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af9f348e7d7cb022d0e16c3e6e0abec8e2846b9', '172.105.247.100', 1671192093, '__ci_last_regenerate|i:1671192093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007b4c0113d489c1b655d938e1dda3ccdc0fae7f', '172.105.247.100', 1671192093, '__ci_last_regenerate|i:1671192093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d09f89c36c595aa0f80b56b3d4feba9013f7bc8', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8799b2140bb27d356cb79632eef5d264d12e93', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0a173ffabc331965d0e41b00c50bab1e33032b', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c8e7537c5ecf99d2ec98022b31be0ace529596', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5803a977be855cb71428cc8337dc4e7638ce41be', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba973de7a4bfba786aac13f48eb2ffbc97003db', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f5573fadd80d0ff83d1085ec46c82f5c6463d0', '172.105.247.100', 1671192094, '__ci_last_regenerate|i:1671192094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655ec7c27c1b61586abc0f33434e29d70412bb5c', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67399c8c9f02477439cdfea17e2fea96029a4712', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d133f07929395aa794cbbfa3bc56f79aad0a289', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da14fd15e2cdcbbb0c4be0a111c0d10cd2f6ecda', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29cfc2c32c881b38e4468f638f226f4e16dbe60e', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe24efa2248df2e695c82fa91089709e980681f', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8347d0e769189d82d824e28a49c1617d6d10a81b', '172.105.247.100', 1671192095, '__ci_last_regenerate|i:1671192095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15622513fe73d93c3fef067457e473d215f35c6', '172.105.247.100', 1671192096, '__ci_last_regenerate|i:1671192096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9802d950e12c921e619bc7400b5e5cc1b448cd3a', '172.105.247.100', 1671192096, '__ci_last_regenerate|i:1671192096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b18eaced8496300c8bac81573aed87a6d0e039c', '172.105.247.100', 1671192096, '__ci_last_regenerate|i:1671192096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8d5f694ad4a05003eab2ae57c81abdbfcab137', '31.222.203.2', 1671192136, '__ci_last_regenerate|i:1671192136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d073aa5fa85d5764e96d954f1f89e35e34b324', '31.222.203.2', 1671192136, '__ci_last_regenerate|i:1671192136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f62d741c04809cbce67e69bcea1f9dec7d20aa', '31.222.203.2', 1671192136, '__ci_last_regenerate|i:1671192136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad3fb34494690fff09d9037cf1071e5a323078a', '31.222.203.2', 1671192137, '__ci_last_regenerate|i:1671192137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c20e7ef0c54413ba5547f21ef9de1e13fb45b20a', '31.222.203.2', 1671192137, '__ci_last_regenerate|i:1671192137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53071e5996647a6ac8df56024736e437346b26aa', '31.222.203.2', 1671192137, '__ci_last_regenerate|i:1671192137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc1dfaf41771fae3b0645bacff923472b2929f8', '45.120.39.89', 1671194410, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671194410;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671194126;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79257ef0b3ebd16b9cb58f6680f003f0be03b579', '31.222.203.2', 1671193935, '__ci_last_regenerate|i:1671193935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('860305da6eb8ab15cec17e33951389f49615b383', '31.222.203.2', 1671193935, '__ci_last_regenerate|i:1671193935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2349b125d7662fbc470af420f14d27125444ebb', '31.222.203.2', 1671193935, '__ci_last_regenerate|i:1671193935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb875adc75ab6c031de918ec47982d12725f8aa9', '31.222.203.2', 1671193937, '__ci_last_regenerate|i:1671193937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934fd5e7fe9fecefa97aeadc0f4fa75ac85bade8', '31.222.203.2', 1671193937, '__ci_last_regenerate|i:1671193937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ade852b107a42691bfce0927586d66ca2d29da2', '31.222.203.2', 1671193937, '__ci_last_regenerate|i:1671193937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab53359042eda666df7700464a82f4eb770e751', '45.120.39.89', 1671194798, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671194798;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671194688;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46671748edf7bfa55f0c86cefa26585a50f3c819', '45.120.39.89', 1671197396, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671197396;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671197391;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1da8c940c4b70d0972b7d2f6b696e086cfb6d8', '31.222.203.2', 1671195734, '__ci_last_regenerate|i:1671195734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1791a9adc77e563c6979a2e786f102da6981e09', '31.222.203.2', 1671195734, '__ci_last_regenerate|i:1671195734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf384b47c544052dbdb1533bfde03d4d35b9d17', '31.222.203.2', 1671195734, '__ci_last_regenerate|i:1671195734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c159eebfe0ad01d635666619ccf1584b7b4e95', '31.222.203.2', 1671195736, '__ci_last_regenerate|i:1671195736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a69a157bdbe53a83ac333f6c3389f58b51e40b', '31.222.203.2', 1671195736, '__ci_last_regenerate|i:1671195736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de0060146b08e990edb2c0aff835475a2a0d1fac', '31.222.203.2', 1671195736, '__ci_last_regenerate|i:1671195736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85e6887260fdbcd27964a6fea68902d3407b982', '172.105.247.100', 1671196888, '__ci_last_regenerate|i:1671196888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ce55673aec62a56aad16a877a70d65f13a32dd', '172.105.247.100', 1671196888, '__ci_last_regenerate|i:1671196888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dde383fb6b932e5e65840232f3c77c0c9fa4947', '172.105.247.100', 1671196888, '__ci_last_regenerate|i:1671196888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5d3aabddb38d204450590b6a46966ee9ff27c2', '172.105.247.100', 1671196889, '__ci_last_regenerate|i:1671196889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9663d71fe21704f7206fafee24b9db5b8f25789c', '172.105.247.100', 1671196889, '__ci_last_regenerate|i:1671196889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b402c95ce0d884748ad7c352df9aa2b1f5ce0f10', '172.105.247.100', 1671196889, '__ci_last_regenerate|i:1671196889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80609fad2039ed93351429d85b2531441eb09e5', '172.105.247.100', 1671196889, '__ci_last_regenerate|i:1671196889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18de604d5160e32599099dc040b290ac6acfbb00', '172.105.247.100', 1671196890, '__ci_last_regenerate|i:1671196890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7192c49efb0c514afd634fcf3cbb90a09b45b80a', '172.105.247.100', 1671196890, '__ci_last_regenerate|i:1671196890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f73c53d9cb4afed76a5ee8f983f265477fd45bb', '172.105.247.100', 1671196890, '__ci_last_regenerate|i:1671196890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a4245837120a8c86dbeee451e191f45cf4fea1', '172.105.247.100', 1671196890, '__ci_last_regenerate|i:1671196890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5709850dd741a0aa57659b4a96853c8241eb13', '172.105.247.100', 1671196890, '__ci_last_regenerate|i:1671196890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c079f5151b9748c0a915e9f751e2a60cff774e3', '172.105.247.100', 1671196891, '__ci_last_regenerate|i:1671196891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78fc02bcba8b8723026e16e0f2b90b97d5a5bbae', '172.105.247.100', 1671196891, '__ci_last_regenerate|i:1671196891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('455b6bb5bc8abaf5ac3e84967ca31e64579b6405', '172.105.247.100', 1671196891, '__ci_last_regenerate|i:1671196891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b7e196b32a32bd485c9ecd12b7bc33ccc1fffa', '172.105.247.100', 1671196891, '__ci_last_regenerate|i:1671196891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9201f90a4f0658fb832aeb4d85cb56c0232be8', '172.105.247.100', 1671196891, '__ci_last_regenerate|i:1671196891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f3748aa73d605c8cbc163ade59b76e7c5eea4e', '172.105.247.100', 1671196891, '__ci_last_regenerate|i:1671196891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721b54909b730482358bd3b2e8fd16c3929bf14c', '172.105.247.100', 1671196892, '__ci_last_regenerate|i:1671196892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ecb25b3d6aa9f5716de515ce32510973a0d724', '172.105.247.100', 1671196892, '__ci_last_regenerate|i:1671196892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1633aacc2b56d525fb70e5fb9394986e59c5d2a', '172.105.247.100', 1671196892, '__ci_last_regenerate|i:1671196892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462dd7907aa10969f243e487bff1a4e6bf776123', '172.105.247.100', 1671196892, '__ci_last_regenerate|i:1671196892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72369be37d49f2a18a3122cc9bb2ad05c1381de', '172.105.247.100', 1671196893, '__ci_last_regenerate|i:1671196893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b48fabe119b26a5238d2703b5d62dd3492f99dc', '172.105.247.100', 1671196893, '__ci_last_regenerate|i:1671196893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31e54f2d99bed48758d27d50deb67a22157aa3f', '45.120.39.89', 1671198348, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671198348;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671197606;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c5754e6ae053d941340fcb4c56b1f753e334017', '31.222.203.2', 1671197535, '__ci_last_regenerate|i:1671197535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fe3a3a3cdf4991b98392ea8a2a4fae3f5b50f5', '31.222.203.2', 1671197536, '__ci_last_regenerate|i:1671197536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38df0904493f669f532a9dfec3f04be881be914', '31.222.203.2', 1671197536, '__ci_last_regenerate|i:1671197536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016ac79e45f003d92fef106d2f6e4c73271824bb', '31.222.203.2', 1671197536, '__ci_last_regenerate|i:1671197536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819a04cd7105579be0564f96a8831db1bdf35666', '31.222.203.2', 1671197536, '__ci_last_regenerate|i:1671197536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5cb56b7bed2bf62b16497a5594dae67c6de7fa9', '31.222.203.2', 1671197536, '__ci_last_regenerate|i:1671197536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef13f39706a12685c3ce12522f6780155fc3811a', '45.120.39.89', 1671198651, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671198651;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671198647;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a51795644db40ee55cba321dcbcfb788163dde', '45.120.39.89', 1671201173, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671201173;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671198716;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2677e164a99a8bb08b5a57929b697f89c85e5897', '31.222.203.2', 1671199339, '__ci_last_regenerate|i:1671199339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5254f4487846289258ced90685517e4d1487a7', '31.222.203.2', 1671199339, '__ci_last_regenerate|i:1671199339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4da5c83300e110b70de716d1642b947c6914ef', '31.222.203.2', 1671199339, '__ci_last_regenerate|i:1671199339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9169fc36ccb3a1f5a8bf2378a6abc433bdb5fb53', '31.222.203.2', 1671199339, '__ci_last_regenerate|i:1671199339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ed5531a476f93a082fd3a8f072fa0339782a10', '31.222.203.2', 1671199339, '__ci_last_regenerate|i:1671199339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37abb392b4bbc8eb73e190e4f0eb435af8d9bf57', '31.222.203.2', 1671199339, '__ci_last_regenerate|i:1671199339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63b06a3aa26161a3ab8c445ba2ba3be6b165a17', '31.222.203.2', 1671201137, '__ci_last_regenerate|i:1671201137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd5b5c21a3fd96f107aee8efcf06f822f0b27ae', '31.222.203.2', 1671201139, '__ci_last_regenerate|i:1671201139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5fb681c267ec6f753672153a03b126965d552c5', '31.222.203.2', 1671201139, '__ci_last_regenerate|i:1671201139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47241c95fba8fc00838379bb7f00ce0d874ea273', '31.222.203.2', 1671201139, '__ci_last_regenerate|i:1671201139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db1779f0c786f4de8277d575818864e04687c72e', '31.222.203.2', 1671201139, '__ci_last_regenerate|i:1671201139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6ca3b64c0c107799d36474118d35021cc65caf', '31.222.203.2', 1671201139, '__ci_last_regenerate|i:1671201139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5ff5d410d753782f20102ddc46c66bf15df30c', '45.120.39.89', 1671201880, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671201880;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671201464;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f93c1ec3a2d761e5f0300d59d9cf8013873dd5', '172.105.247.100', 1671201691, '__ci_last_regenerate|i:1671201691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c647210fb79dcd22eb992b7a484ddb02cefa0ddc', '172.105.247.100', 1671201692, '__ci_last_regenerate|i:1671201692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c39ea2b98cb08db9758f3571c065390fd318f1', '172.105.247.100', 1671201692, '__ci_last_regenerate|i:1671201692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee5e2ebc63034012e4083842574c506e944fc42', '172.105.247.100', 1671201692, '__ci_last_regenerate|i:1671201692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37bfb3454da9292203e9154ae482e9409ccbb583', '172.105.247.100', 1671201693, '__ci_last_regenerate|i:1671201693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad53826833bc0d2bdd28d7cec455a227dd581b0', '172.105.247.100', 1671201693, '__ci_last_regenerate|i:1671201693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9439342accd6ffb83667036f7364cf93c0a0b8', '172.105.247.100', 1671201693, '__ci_last_regenerate|i:1671201693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3d6ade3dba04ec23a023f4ff3f31d0cfe2476c', '172.105.247.100', 1671201693, '__ci_last_regenerate|i:1671201693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77350f8ccd1f80401c13ff5e4dd22e85ea06a9e4', '172.105.247.100', 1671201693, '__ci_last_regenerate|i:1671201693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8000928da6b86fd566eacdc74795ccf9e007ee8', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98020f12ce3d7fd6e2429554e25ffb0a380aeaa9', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9110953bc40e888661d2b73c8ca2a39cd706d82', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4384dd2dba6f361d4784d7aa1a644af58a0614', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62378b5a69b3a8bda3d475604f1cb3e126218276', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156cf88f366f875cb0ff369823c054b95be0c3de', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91af3c57a4095bc1547df8e7e1cd119b9753717a', '172.105.247.100', 1671201694, '__ci_last_regenerate|i:1671201694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd60c4108fcb6fcc8eb1165b24e8b9261597fd5', '172.105.247.100', 1671201695, '__ci_last_regenerate|i:1671201695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae47e82c744a129d06dd3df591864284a75ad03', '172.105.247.100', 1671201695, '__ci_last_regenerate|i:1671201695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3dadc977b47cbb78a6e12e068c1d703d483bd1', '172.105.247.100', 1671201695, '__ci_last_regenerate|i:1671201695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e54e1a075760cddb904d7efccb840c6717e1357f', '172.105.247.100', 1671201695, '__ci_last_regenerate|i:1671201695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa15bff1fa6aa568aa6f0d11dc7495e2d445e54', '172.105.247.100', 1671201695, '__ci_last_regenerate|i:1671201695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a7cbb5b460070809b78747895753011bae1518', '172.105.247.100', 1671201696, '__ci_last_regenerate|i:1671201695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb85218e65f3e553f2f16992cc34383e8255c652', '172.105.247.100', 1671201696, '__ci_last_regenerate|i:1671201696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c34c715b439ae08e7d286f5e0ee96e32b2cc25', '172.105.247.100', 1671201696, '__ci_last_regenerate|i:1671201696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1f2640bd7d817c64d040a698ca419287479a87', '45.120.39.89', 1671203138, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671203138;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671201880;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a28b71c026106ca09984dc4e8a42b0623821f4', '31.222.203.2', 1671202939, '__ci_last_regenerate|i:1671202939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45606b759b32e655d520335e59df89a863724d0', '31.222.203.2', 1671202939, '__ci_last_regenerate|i:1671202939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8d461dfb64af9d807032e8830b0de5185c18bd', '31.222.203.2', 1671202939, '__ci_last_regenerate|i:1671202939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991a6e3594665fe418c799f4cdd6081e822f01ad', '31.222.203.2', 1671202939, '__ci_last_regenerate|i:1671202939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5478034dc843815c24b02d389ddff2f330cc346e', '31.222.203.2', 1671202939, '__ci_last_regenerate|i:1671202939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('282bc5a2c4793aceaeb934aa724159001dc4c169', '31.222.203.2', 1671202939, '__ci_last_regenerate|i:1671202939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d019e9208980ab3c2d946d20519b25d8a586b061', '45.120.39.89', 1671203578, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671203578;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671203569;register_id|s:3:\"281\";cash_in_hand|s:9:\"3550.0000\";register_open_time|s:19:\"2022-12-15 20:45:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd99dc383793c8738f0110d7622108232865680', '45.120.39.89', 1671203611, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671203578;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671166135\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671203611;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f79077a44fde065d85e6595558a531e11a307f', '31.222.203.2', 1671204737, '__ci_last_regenerate|i:1671204737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4257dced0e462061742890803cccc0b09d7ac40c', '31.222.203.2', 1671204738, '__ci_last_regenerate|i:1671204738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e156b2ad5f5e2aeb34d061c91472118f952ca046', '31.222.203.2', 1671204738, '__ci_last_regenerate|i:1671204738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177abbac0826bcdd32868422970ee927fb674c43', '31.222.203.2', 1671204738, '__ci_last_regenerate|i:1671204738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add0c3f94b700f50860ed13d6e13cf6b545a5dea', '31.222.203.2', 1671204738, '__ci_last_regenerate|i:1671204738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c9106b0ee3f24d050810ef6510bba63e88285f', '31.222.203.2', 1671204738, '__ci_last_regenerate|i:1671204738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c85fb6a46ac96db426d84411426a80696f15d5f', '198.235.24.128', 1671205591, '__ci_last_regenerate|i:1671205591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925be83a566a80b7c987c95e1c94d33da2942e66', '172.105.247.100', 1671206491, '__ci_last_regenerate|i:1671206491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('867474c85c9906e6890cbca9ade44b644d44858c', '172.105.247.100', 1671206492, '__ci_last_regenerate|i:1671206492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd873c0b8be06112e497d9093cb619164daa00e', '172.105.247.100', 1671206492, '__ci_last_regenerate|i:1671206492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3383153b278d37f86ec785537e879195392277fe', '172.105.247.100', 1671206492, '__ci_last_regenerate|i:1671206492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0d155b2fd3472718699a9a548bf988390a0f34', '172.105.247.100', 1671206493, '__ci_last_regenerate|i:1671206493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8654ca61ac90bd04cf5ffbd3123568b1a8b4e07', '172.105.247.100', 1671206493, '__ci_last_regenerate|i:1671206493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7710430dabf3e6b287835d20337883bc21f0dfc9', '172.105.247.100', 1671206493, '__ci_last_regenerate|i:1671206493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d0729138cb50b990594f8f541d524d4074a857a', '172.105.247.100', 1671206493, '__ci_last_regenerate|i:1671206493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5f44c73ebef6516bdda1a0f0d546db6e53588e', '172.105.247.100', 1671206493, '__ci_last_regenerate|i:1671206493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e632f365902b4d0583cdf178835a5bc6ecf9855d', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a16f38af948cf03420a3881e0953aa0ad92bdd9', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a7c040ef98ccc93614ec53c88446dd64cf9a6f', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f8de2202b530014683035db31032a8cb271f43', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa062a9b7f4ef8935639c08c43613f807519efe', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78d2fabc75d9d15c74a8020ff3dac379a1bb2d0', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e13fb1e4d1cc74cb6544682c574464daa968410', '172.105.247.100', 1671206494, '__ci_last_regenerate|i:1671206494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1712b6a0c35fef5aa55f0407da1e22e82daa9cb6', '172.105.247.100', 1671206495, '__ci_last_regenerate|i:1671206494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a64dc180b366986411e5d4b4bb527902466eb2', '172.105.247.100', 1671206495, '__ci_last_regenerate|i:1671206495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b13543752a8714b1588fee4c5b8eba52c68788', '172.105.247.100', 1671206495, '__ci_last_regenerate|i:1671206495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0baff7bfad36e1f9a6e54a40f020e3a9bdcd4e06', '172.105.247.100', 1671206495, '__ci_last_regenerate|i:1671206495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41105ebf36c0809688f58c7db0b5b7409577f222', '172.105.247.100', 1671206495, '__ci_last_regenerate|i:1671206495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb79bcac8b8c8afb2ee170b19267550beb25c97', '172.105.247.100', 1671206496, '__ci_last_regenerate|i:1671206496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d8994abe694e5414b869f24b798dc1c45752e6', '172.105.247.100', 1671206496, '__ci_last_regenerate|i:1671206496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390062990c7997894be7b3428dad002a61109d01', '172.105.247.100', 1671206496, '__ci_last_regenerate|i:1671206496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e84f99318cfb0edbd70df8483e582c4264aafaa5', '31.222.203.2', 1671206532, '__ci_last_regenerate|i:1671206532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e4207b5339a71f5eb65c27bf0f40a695f26258', '31.222.203.2', 1671206532, '__ci_last_regenerate|i:1671206532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfdefe40dce14ab1bfee119c55410451f7fb1005', '31.222.203.2', 1671206532, '__ci_last_regenerate|i:1671206532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d7bb6dd7ecb8b0ed6143f37c3478d5a8dbb73c', '31.222.203.2', 1671206534, '__ci_last_regenerate|i:1671206534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b7d854ad8dfc67e5150893f65978e5c9b6dbb4', '31.222.203.2', 1671206534, '__ci_last_regenerate|i:1671206534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a23e18689f5a894828ad9cfcefef2af1bf2f8b', '31.222.203.2', 1671206534, '__ci_last_regenerate|i:1671206534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ec1ca43ebc76f47cec29237357eae40fde99b7', '31.222.203.2', 1671208337, '__ci_last_regenerate|i:1671208337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9126202c389e402aca4bea7064712c3424a7dd0', '31.222.203.2', 1671208337, '__ci_last_regenerate|i:1671208337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('516ec09515b5c7868060d4c2d6e24c74edeed131', '31.222.203.2', 1671208337, '__ci_last_regenerate|i:1671208337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ebb1838474228dc58ae6e5a667bd41f8170f9b', '31.222.203.2', 1671208337, '__ci_last_regenerate|i:1671208337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431de5c9ba8d78baad95a82ab2c8365ea15e3320', '31.222.203.2', 1671208337, '__ci_last_regenerate|i:1671208337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de7aede0af73011261b14c560ad42d9b78e36ce', '31.222.203.2', 1671208337, '__ci_last_regenerate|i:1671208337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e5b1be45965cc97cb5b2f9a9e3a541805dd111', '167.248.133.44', 1671209940, '__ci_last_regenerate|i:1671209940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2987e034620600ff36ecd0631ff586b2259e0d5', '167.248.133.44', 1671209941, '__ci_last_regenerate|i:1671209941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33c994d8ae7a791ea3f471f917cf5ac66ded3f87', '167.248.133.44', 1671209942, '__ci_last_regenerate|i:1671209942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('133618490a03ae345c2b7c866ea93d04ce599ade', '167.248.133.44', 1671209942, '__ci_last_regenerate|i:1671209942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce28a37debed619f6e1b448dbcdc615435aa3c1', '167.248.133.44', 1671209942, '__ci_last_regenerate|i:1671209942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c47c1950d5a02d21f659e4e32b96d8779a8ba3', '167.248.133.44', 1671209942, '__ci_last_regenerate|i:1671209942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744dbe4b5dd98fde0753841d0c60c03613bd9cc0', '31.222.203.2', 1671210139, '__ci_last_regenerate|i:1671210139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8872f3813514f1f7b48e67bc9c882e6fa8028f', '31.222.203.2', 1671210139, '__ci_last_regenerate|i:1671210139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a64ce586fc16c6bf2bf78b885e0535d338d977', '31.222.203.2', 1671210139, '__ci_last_regenerate|i:1671210139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635abe19fd2a862905ec3ef83e8dd730992a54d4', '31.222.203.2', 1671210141, '__ci_last_regenerate|i:1671210141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0be9746c914de55d9391bd33bc7f405e73a5f2', '31.222.203.2', 1671210141, '__ci_last_regenerate|i:1671210141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfc3af54f38e7c61da2d2a5fa9d4d8a35e9eac48', '31.222.203.2', 1671210141, '__ci_last_regenerate|i:1671210141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2cf0a992d2ef65a1034159b51fb080cea8d6bc8', '172.105.247.100', 1671211288, '__ci_last_regenerate|i:1671211288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6604894a5010a571e03ae5a0941634987cd8042f', '172.105.247.100', 1671211288, '__ci_last_regenerate|i:1671211288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f033b4f4ccb5a3d4dd53a9b3afda5ef37b4a79c', '172.105.247.100', 1671211288, '__ci_last_regenerate|i:1671211288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1117ac829c01b6742858807873ca9869c71323', '172.105.247.100', 1671211288, '__ci_last_regenerate|i:1671211288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b68b068b817015309d32fd50d91e7264ae6a5149', '172.105.247.100', 1671211288, '__ci_last_regenerate|i:1671211288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62789c187f6f0e1c6e1e0a2d57fff43b684234ed', '172.105.247.100', 1671211288, '__ci_last_regenerate|i:1671211288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343749dbcd003bf4c90e4899704fb6e671e42975', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c1ffe68857c020e66a3666a4d73a6e91bfaf80', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a93f6ccc0a1ae999133974e1b0fe42415500b0d', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9719decb277211e1e23c9856c2795f1b1a24baa', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b70c44e865d6ca13e0080cf264b271747da8b399', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539eb29ac69d5076a0beac4d5bbf4d911704aaf9', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d08f303b3f4374a67b912988b1a6d3fbfbf1aaa', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3645498a1acf1f1492b378eb11ce30963bb72d27', '172.105.247.100', 1671211289, '__ci_last_regenerate|i:1671211289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a17fea3cb3d8431f3d043b3807df7c6c08ee7d0', '172.105.247.100', 1671211290, '__ci_last_regenerate|i:1671211290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63077e61a230887ebb0c4feb57216a5528881b80', '172.105.247.100', 1671211290, '__ci_last_regenerate|i:1671211290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d21665cd8745fa68583462f436fded7438a02c', '172.105.247.100', 1671211290, '__ci_last_regenerate|i:1671211290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2721f65d470b97a3529f2b7f81270c30001dabac', '172.105.247.100', 1671211290, '__ci_last_regenerate|i:1671211290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c4a02a238a381f17937fe7153602ce31071c9b', '172.105.247.100', 1671211290, '__ci_last_regenerate|i:1671211290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b45bf4aa5b1910659a9d25bdbedfd2e980d9f4', '172.105.247.100', 1671211290, '__ci_last_regenerate|i:1671211290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0daf7c709b02eaa107f1224fd8217fb4601f4fb', '172.105.247.100', 1671211291, '__ci_last_regenerate|i:1671211291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06849121b074a21ec4a010648856d04fa64ccda2', '172.105.247.100', 1671211291, '__ci_last_regenerate|i:1671211291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d95a8cbd5cd5873a51d8d66177b83ecd1d579c', '172.105.247.100', 1671211291, '__ci_last_regenerate|i:1671211291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23060e455bf07df33aac43323c35c9145351c2d2', '172.105.247.100', 1671211291, '__ci_last_regenerate|i:1671211291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fefed07111fda5402cdfc3a0fd2a5b603767c55', '31.222.203.2', 1671211939, '__ci_last_regenerate|i:1671211939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f304325b7bf248f83b13b3deb313c40065b9cdf1', '31.222.203.2', 1671211939, '__ci_last_regenerate|i:1671211939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38488e6ea38fbe2387e900886e79798aecdbaa7f', '31.222.203.2', 1671211939, '__ci_last_regenerate|i:1671211939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dcf7d1bcbd839cf1788da65a2c43861162369c2', '31.222.203.2', 1671211939, '__ci_last_regenerate|i:1671211939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e24091cd03a2073f9ac432b1fc1ae10b9afbe02f', '31.222.203.2', 1671211939, '__ci_last_regenerate|i:1671211939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb593e263e6d0995f95803ecdae6de5990c0ace', '31.222.203.2', 1671211939, '__ci_last_regenerate|i:1671211939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa7b180dc1f6a748807d0892e1dd772acdad2bc', '198.235.24.156', 1671212404, '__ci_last_regenerate|i:1671212404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348398ce11a3e3f482c5a4c1e5d2a93891897b19', '198.235.24.156', 1671212405, '__ci_last_regenerate|i:1671212405;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc110a806e98f366b63330f2955293e4b0c824ac', '198.235.24.156', 1671212405, '__ci_last_regenerate|i:1671212405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f87f0357d02158bb698a2ee8a0c80d16c7e02906', '31.222.203.2', 1671213740, '__ci_last_regenerate|i:1671213740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1808f29999c540d1ddf1bb079aa64672da6a8f7', '31.222.203.2', 1671213742, '__ci_last_regenerate|i:1671213742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010ccdeb1c84cb401f33c51d46e41ddd4f04adde', '31.222.203.2', 1671213742, '__ci_last_regenerate|i:1671213742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474732de093635b92b293c7ff3dc5576f25cdc38', '31.222.203.2', 1671213742, '__ci_last_regenerate|i:1671213742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e582da4bb1f9a6d71b87b3a5f12510ede031d9f7', '31.222.203.2', 1671213742, '__ci_last_regenerate|i:1671213742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe992aafe14aea26c56dac86ac53b3db735d9df', '31.222.203.2', 1671213742, '__ci_last_regenerate|i:1671213742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721d399ac4b83241beca4b82ae36a5c1f676a6ba', '198.235.24.25', 1671214958, '__ci_last_regenerate|i:1671214958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89c708b14c3e23a39bc070584227675ca06c0c5', '198.235.24.25', 1671214960, '__ci_last_regenerate|i:1671214960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d308ecfe3e0fcdc152d2b1654dfc39ea89320bc', '198.235.24.25', 1671214960, '__ci_last_regenerate|i:1671214960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9684b92f29dfaed40299d5132df8177db7fd8a7', '31.222.203.2', 1671215533, '__ci_last_regenerate|i:1671215533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06d12b9b500a514685a075c8b88ce4e65513440e', '31.222.203.2', 1671215533, '__ci_last_regenerate|i:1671215533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5183ef4f32adc657dcb8126ddd07169e8db1f3f8', '31.222.203.2', 1671215533, '__ci_last_regenerate|i:1671215533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df2d1076bd879c1ba124f11b4b3c3f70f3957e6', '31.222.203.2', 1671215533, '__ci_last_regenerate|i:1671215533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27660ea8abb642590f64d16489a18963a8133ef2', '31.222.203.2', 1671215533, '__ci_last_regenerate|i:1671215533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe67df2aafc1e76abe548f1056c45fdef994548a', '31.222.203.2', 1671215533, '__ci_last_regenerate|i:1671215533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c390731000d0dfc691ad164306619ab053473939', '172.105.247.100', 1671216690, '__ci_last_regenerate|i:1671216690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8810e0d7e20571e09b0094fca91304f3c6506c02', '172.105.247.100', 1671216691, '__ci_last_regenerate|i:1671216691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ebbfd39e61ba43b4a0c43043e1c49825091ab7', '172.105.247.100', 1671216691, '__ci_last_regenerate|i:1671216691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32b1df13eda645f2f07ace20c613bfaf709f95c', '172.105.247.100', 1671216691, '__ci_last_regenerate|i:1671216691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c431888de059f22e9d298000c601a4de29b8027b', '172.105.247.100', 1671216691, '__ci_last_regenerate|i:1671216691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61042d3f66f25d6a850fd5a3ca59e9ddb9ee1c14', '172.105.247.100', 1671216692, '__ci_last_regenerate|i:1671216691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234036f56dea76e88f133e594a3fd08cc269602f', '172.105.247.100', 1671216692, '__ci_last_regenerate|i:1671216692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ab50649e7e54b8830978fa14ff02ba7be80a6b', '172.105.247.100', 1671216692, '__ci_last_regenerate|i:1671216692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6acc0cc0493b7f04f7035bd577430b7251f1a6f9', '172.105.247.100', 1671216692, '__ci_last_regenerate|i:1671216692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0afd9ed6635f2838f9f108923845995e1ee9736d', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d398070ee760503ca351cfe667ccedec007a31bb', '172.105.247.100', 1671216692, '__ci_last_regenerate|i:1671216692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1932381f6383fe0811fae773a5051c5431e584', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2071c5c4cdbe13c5af62779e5f328c7b67a4f178', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a49b5ca9adcd8908d5e7c545b9639f718629fee', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb92350ae64f8de0561fbace77e16de5764962b', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da47881000ef334feb3ffe6d65bb610e6deed74c', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53935093b4465dc691dd6f5eeb1a79268d21726', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3264e0e1457f8f98056655ffcda1d2628459728', '172.105.247.100', 1671216693, '__ci_last_regenerate|i:1671216693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a00b6ab4dcbf8ce2e1e215e7e2ecc78559d79f', '172.105.247.100', 1671216694, '__ci_last_regenerate|i:1671216694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92388034159503e31b913f819b86883e65f0553d', '172.105.247.100', 1671216694, '__ci_last_regenerate|i:1671216694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3ed7731dfd77f149b64195eed05313229f06c2', '172.105.247.100', 1671216694, '__ci_last_regenerate|i:1671216694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f98b04d14dbcd69cbd73dd8790370dde90602f7', '172.105.247.100', 1671216695, '__ci_last_regenerate|i:1671216694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80df7c06cfd98ff92f6ccc913d0bee351f87e201', '172.105.247.100', 1671216695, '__ci_last_regenerate|i:1671216695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b06d03e8112caa65da3c4c2d8ef2d63e2aed004', '172.105.247.100', 1671216695, '__ci_last_regenerate|i:1671216695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9edcf29ae7387b2fb0cd649cd91eef374f7c36', '31.222.203.2', 1671217335, '__ci_last_regenerate|i:1671217335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd8603a9a43f13b5d0769393194c41c7d4f2cc9a', '31.222.203.2', 1671217335, '__ci_last_regenerate|i:1671217335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee5aed197b42f8eb601d4e67ebd6fc40cf81245', '31.222.203.2', 1671217335, '__ci_last_regenerate|i:1671217335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1892af48ca0f445180dcd1997eea68a31b3c873e', '31.222.203.2', 1671217335, '__ci_last_regenerate|i:1671217335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468ed044fb32a85e1b89351161ccac2419635083', '31.222.203.2', 1671217335, '__ci_last_regenerate|i:1671217335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97279d1cf4559ba81d006d404485689c59539ac2', '31.222.203.2', 1671217335, '__ci_last_regenerate|i:1671217335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d0770feef2e5410de26c458cbc6bdcc39a048c', '198.235.24.129', 1671218633, '__ci_last_regenerate|i:1671218633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5f0403f5fefd49580b5c8abf89d9506f5894a1', '31.222.203.2', 1671219136, '__ci_last_regenerate|i:1671219136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785ab0e0f92643df272f78069ecc7f555a92e71a', '31.222.203.2', 1671219136, '__ci_last_regenerate|i:1671219136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6241273f38d8dcbf1307e482f70397ce01380d7', '31.222.203.2', 1671219136, '__ci_last_regenerate|i:1671219136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b7f09d9dacaaf3984bf5e7f2f909dfd8b5932e', '31.222.203.2', 1671219136, '__ci_last_regenerate|i:1671219136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a6d42c20c5beef6fc48c525cd31f4d4a4d6261', '31.222.203.2', 1671219136, '__ci_last_regenerate|i:1671219136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66a72accb11860bbdf8aef485f606c7e8262409', '31.222.203.2', 1671219136, '__ci_last_regenerate|i:1671219136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9792f5db4c3d3ef4aa458c4e9cc360c8a8a6c4db', '162.142.125.10', 1671220037, '__ci_last_regenerate|i:1671220037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6e1468716a127b681f3be2acf9c217945dea4c', '162.142.125.10', 1671220037, '__ci_last_regenerate|i:1671220037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c787e7146b3b7135004e3f445c1d8e4ad579d8ba', '162.142.125.10', 1671220037, '__ci_last_regenerate|i:1671220037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f369a92d63e4785fb073d8e8d0dfee3ea27c90', '162.142.125.10', 1671220037, '__ci_last_regenerate|i:1671220037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d9fb321f0954f041d9152392d41c7b26c735c6d', '162.142.125.10', 1671220039, '__ci_last_regenerate|i:1671220039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a00bd18a53369238bdb705af30a7b8682e4cd6', '162.142.125.10', 1671220040, '__ci_last_regenerate|i:1671220040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef86fd6e06e5a7e32826da7473fcaee8d19d6dc', '31.222.203.2', 1671220937, '__ci_last_regenerate|i:1671220937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44298a0d9b25185b110159d12387a73364e9e8b9', '31.222.203.2', 1671220937, '__ci_last_regenerate|i:1671220937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a255cda73a8307e542e8b36ab72bdfb6bc9ef2', '31.222.203.2', 1671220937, '__ci_last_regenerate|i:1671220937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b297a649ae3624d936aacf5a5b1be72fb50d32b2', '31.222.203.2', 1671220939, '__ci_last_regenerate|i:1671220939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7c3fbad25452b6abd9d6c393a40bcea739655d', '31.222.203.2', 1671220939, '__ci_last_regenerate|i:1671220939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cea406df0c9010c099ad000f811861108123710', '31.222.203.2', 1671220939, '__ci_last_regenerate|i:1671220939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba491e844a83ddcd55d5fd1f68679f840b03ecd', '172.105.247.100', 1671222087, '__ci_last_regenerate|i:1671222087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342dc38f090de5dc419c54d595b1fb57ff311c71', '172.105.247.100', 1671222087, '__ci_last_regenerate|i:1671222087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5ebbdf0d4f96be7661d35b39fe7301d9635a38', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d907721ab62ee56c612688ba9dfac59e530234f', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d5e6b895e74e5868fa00ddb26576f79373d4e7', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a799f0c0caf0e15d5aec6e22b4a6022f40a61590', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4687179ded56933c83ffe4ac0e1be5290adbbc', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df1de5cbc3e03f6ef5a0f850163f90b4ec18d96', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd7130db179d00f031d204e7bb2eaa8faba59b84', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1bf8b601439e8feed329fde435339a29531db8', '172.105.247.100', 1671222088, '__ci_last_regenerate|i:1671222088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a786fdb85d405831d7866fcf24eb074fe76f90c', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f301a1f96593324b604074a5cb3bdba28c2642', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896d567c2d6a03e3db3a264e76827c27443580da', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5949b2332e83bb40e4ef8a920c1c5effde551065', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e4fccf29754b5a8e2fae25cc98cbf7bea1f7e64', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d33fd29265245dfdc4a16d7de5eff0b36c69ac', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4fa686dd596cebbf0c0b3bbd921de705bd6290', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4eb90b3c6f5d11790351f421b19638e6791dedc', '172.105.247.100', 1671222089, '__ci_last_regenerate|i:1671222089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd22c54bedefc1d748144de3eb2c4b00bfae26d', '172.105.247.100', 1671222090, '__ci_last_regenerate|i:1671222090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb384818b1b3e1db16ad4986e5d3a62624fdd3f2', '172.105.247.100', 1671222090, '__ci_last_regenerate|i:1671222090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d24b8585041091b8a1caa821f6d6fbb6522b2f', '172.105.247.100', 1671222090, '__ci_last_regenerate|i:1671222090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f0f681067f80418d369c14f191608fd782fa76', '172.105.247.100', 1671222090, '__ci_last_regenerate|i:1671222090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed2cb0f7f57f8d7e1a6ca9c9daf9d3886f408dc', '172.105.247.100', 1671222090, '__ci_last_regenerate|i:1671222090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2df896a7372cc017ca288474860770dc34359d2', '172.105.247.100', 1671222090, '__ci_last_regenerate|i:1671222090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b597f6952846a6c7c00dafce364ef4b6a83fec85', '31.222.203.2', 1671222739, '__ci_last_regenerate|i:1671222739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5d0dc7674430b71ed777af70d50fea3f4ab070', '31.222.203.2', 1671222739, '__ci_last_regenerate|i:1671222739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19dbe5d84d2dc01b2b7a16e783e24e8885178b23', '31.222.203.2', 1671222739, '__ci_last_regenerate|i:1671222739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052a3e4b9ec4a6fb3f30fcb70a4afa6c967d8d99', '31.222.203.2', 1671222739, '__ci_last_regenerate|i:1671222739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e1375f5cc4e313d7260cc0df7d1d860c6ad2eb', '31.222.203.2', 1671222739, '__ci_last_regenerate|i:1671222739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d6b80d36d8af1a121c954e3b2621df3dbdab0d', '31.222.203.2', 1671222739, '__ci_last_regenerate|i:1671222739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8183a77425dee2c9ae6405afbd680f628894390', '31.222.203.2', 1671224538, '__ci_last_regenerate|i:1671224538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8154d448ae21d903ca8185cd3a52f60155473be6', '31.222.203.2', 1671224538, '__ci_last_regenerate|i:1671224538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce1f0c47ea4cade572a33b38a438b8d007516a46', '31.222.203.2', 1671224538, '__ci_last_regenerate|i:1671224538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dd88341d97cc77c37623f24b60cbae75d9cd334', '31.222.203.2', 1671224540, '__ci_last_regenerate|i:1671224540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ce3ceca93fd1139b56b4f18093ee88b7b68020', '31.222.203.2', 1671224540, '__ci_last_regenerate|i:1671224540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7f286f468c49229d2ab135e9bb405577f6f112', '31.222.203.2', 1671224540, '__ci_last_regenerate|i:1671224540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db83515b2a44ad2abb66d00bd7a8ad845206a8b1', '31.222.203.2', 1671226344, '__ci_last_regenerate|i:1671226344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a838f1c1f7a53e591ab0691b6f0ac63c026bcd9', '31.222.203.2', 1671226344, '__ci_last_regenerate|i:1671226344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9949898b11385e6b77664e31b62938d6f6b388ee', '31.222.203.2', 1671226344, '__ci_last_regenerate|i:1671226344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328a88d9d327035dd702e45b147f453f2425732e', '31.222.203.2', 1671226344, '__ci_last_regenerate|i:1671226344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0517c7fdd40fdebe5464174f3d637771e60ade70', '31.222.203.2', 1671226344, '__ci_last_regenerate|i:1671226344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29d89a766e2ab78ba509121139a8c5b5c6f1103', '31.222.203.2', 1671226344, '__ci_last_regenerate|i:1671226344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111057cc7dfd7cb58a06a292ce558d0d9f00c03d', '172.105.247.100', 1671226889, '__ci_last_regenerate|i:1671226889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dcf57173d78f04c84e1962e248f44eca977be7', '172.105.247.100', 1671226889, '__ci_last_regenerate|i:1671226889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a6952c4484ee41bce6fbe70b24160ca344891d', '172.105.247.100', 1671226890, '__ci_last_regenerate|i:1671226890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2946ec0769341f0f96c749bbc215cce0021c9f7d', '172.105.247.100', 1671226890, '__ci_last_regenerate|i:1671226890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7507ae18ea8fed99ead69dee3d6c19d1da5d3c', '172.105.247.100', 1671226890, '__ci_last_regenerate|i:1671226890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a61bb60f981b1cbff1b7b2dacbc0c6bcf588820', '172.105.247.100', 1671226890, '__ci_last_regenerate|i:1671226890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd3d379611bc709ae6ad35d6c99c3e3a33cc0c8', '172.105.247.100', 1671226891, '__ci_last_regenerate|i:1671226891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04b56dc029ac94b7d19d5be4b1a1537c3cee0f6', '172.105.247.100', 1671226891, '__ci_last_regenerate|i:1671226891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51cf55ab408e50757de85da612fc8cef5929f72d', '172.105.247.100', 1671226891, '__ci_last_regenerate|i:1671226891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0efc6bfedfea05e76009d5fa0428fef086665e3', '172.105.247.100', 1671226892, '__ci_last_regenerate|i:1671226891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a522fa63d59379238d73a579773c333b196fce79', '172.105.247.100', 1671226892, '__ci_last_regenerate|i:1671226892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0694659f37aece44ce7378c1f26ccb7aa2875e', '172.105.247.100', 1671226892, '__ci_last_regenerate|i:1671226892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b5b51b0ce5d90ba1559f57b187d3afcb6336fa', '172.105.247.100', 1671226892, '__ci_last_regenerate|i:1671226892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c451712e6368fa0f2edccdc3a9964a0bb8166a', '172.105.247.100', 1671226892, '__ci_last_regenerate|i:1671226892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86545914f9565715762dc7413767af42a35f1820', '172.105.247.100', 1671226893, '__ci_last_regenerate|i:1671226893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ca2a1ca767c9bf8dc8cafc58125e66e00b9ad7b', '172.105.247.100', 1671226893, '__ci_last_regenerate|i:1671226893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61bc09950d3fed13214612108bf5d580b6063fac', '172.105.247.100', 1671226893, '__ci_last_regenerate|i:1671226893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891421736acc0c14d579fb2b4ddc03885ad4b3bd', '172.105.247.100', 1671226893, '__ci_last_regenerate|i:1671226893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1bb0d484f6abb0c8f56a65210cbc342d11876a', '172.105.247.100', 1671226894, '__ci_last_regenerate|i:1671226894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639684e86bec6a3f879cda07757996b5b295a968', '172.105.247.100', 1671226894, '__ci_last_regenerate|i:1671226894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2d7bfd5ac515c807bb5fff2fe3f6bc2906c26a', '172.105.247.100', 1671226894, '__ci_last_regenerate|i:1671226894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee01c0aaa6b2e618cea930e84f5552f227005d0', '172.105.247.100', 1671226894, '__ci_last_regenerate|i:1671226894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e79cae41c7ef605d7fe2ebbd8dc2e83e04909d5', '172.105.247.100', 1671226895, '__ci_last_regenerate|i:1671226895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182f78580535eed932f16a46e7548f8af0754883', '172.105.247.100', 1671226895, '__ci_last_regenerate|i:1671226895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306ef89dca0df450e37027a9d28a291dfdbe8bea', '205.210.31.142', 1671227045, '__ci_last_regenerate|i:1671227045;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17dcc6f27f69e969232c8a63fdfde5b274027299', '205.210.31.142', 1671227047, '__ci_last_regenerate|i:1671227047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ff4441ca1b0b8ee6ebc535ce26b0b37babffda', '205.210.31.142', 1671227047, '__ci_last_regenerate|i:1671227047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe67dee3443510d72df0c4339001c8701a44afe', '198.235.24.35', 1671227852, '__ci_last_regenerate|i:1671227852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf4d9d932eaeddc5c188241aefff55093636728', '31.222.203.2', 1671228140, '__ci_last_regenerate|i:1671228140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31b294c3c9e5b2ebdc0c08ff8fc71eaa4febb120', '31.222.203.2', 1671228140, '__ci_last_regenerate|i:1671228140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e781a8186cbe53dae798a7e69b3b11f5a584bd1e', '31.222.203.2', 1671228140, '__ci_last_regenerate|i:1671228140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9767b05dc4ddd8a20c967878bf401a3e72901973', '31.222.203.2', 1671228142, '__ci_last_regenerate|i:1671228142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2afd0b81f525df69e4070d29298fe7f99280d7', '31.222.203.2', 1671228142, '__ci_last_regenerate|i:1671228142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c43c0f2292801486ee58cc117090e09bc24e7d', '31.222.203.2', 1671228142, '__ci_last_regenerate|i:1671228142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d04252a13b901b3a4073fddf065ebe3933c76b', '31.222.203.2', 1671229944, '__ci_last_regenerate|i:1671229944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90de3720a6b008ff56e50f9c2bdb95aa29c87f9', '31.222.203.2', 1671229944, '__ci_last_regenerate|i:1671229944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa30b2b41f252fca2b71850424ba5f810f44471a', '31.222.203.2', 1671229944, '__ci_last_regenerate|i:1671229944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87a784757cef39696f8cd9f10ebf055e1a83c2c', '31.222.203.2', 1671229944, '__ci_last_regenerate|i:1671229944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2079e100569f87652e1ddaf6c206f231f9cd33ba', '31.222.203.2', 1671229944, '__ci_last_regenerate|i:1671229944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4716a7646d42654dc546b9db7f27d3c3854073', '31.222.203.2', 1671229945, '__ci_last_regenerate|i:1671229944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd744a2fdd0986d74d58fd293b1a4993b05e1b3', '31.222.203.2', 1671231737, '__ci_last_regenerate|i:1671231737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4851a83a75d5b3359ce9d50d11e43c3deff69369', '31.222.203.2', 1671231737, '__ci_last_regenerate|i:1671231737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92aa4e144b519c177c1efe5c5ee4f4662d2570f2', '31.222.203.2', 1671231737, '__ci_last_regenerate|i:1671231737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7cf2d827999c0b32f934e4e3e0975387f69f656', '31.222.203.2', 1671231739, '__ci_last_regenerate|i:1671231739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8511962e7eaec454c9bb436ce132607690b6a712', '31.222.203.2', 1671231739, '__ci_last_regenerate|i:1671231739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68dbc35d8e61d13829f15aed775c9f8ae0ea5eef', '31.222.203.2', 1671231739, '__ci_last_regenerate|i:1671231739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec20f1a5a8847527d9d19c4951360329b9942b1', '172.105.247.100', 1671232885, '__ci_last_regenerate|i:1671232885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e184b54bfc4646f50c9a39f1e85c01266a5065', '172.105.247.100', 1671232885, '__ci_last_regenerate|i:1671232885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e143b6048d5bdad480966f998589a35d72ad9e', '172.105.247.100', 1671232885, '__ci_last_regenerate|i:1671232885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07972289435ef0abd0868ee5ad8606de6bcf8653', '172.105.247.100', 1671232885, '__ci_last_regenerate|i:1671232885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c95e4d08bd72c63f0f531d273fea21dc27a2aee8', '172.105.247.100', 1671232886, '__ci_last_regenerate|i:1671232886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f43527f56c3c5cdb95303f441733152bf0a9d1', '172.105.247.100', 1671232886, '__ci_last_regenerate|i:1671232886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2004f3d01a1c39712799537d15e0a84e9b768854', '172.105.247.100', 1671232886, '__ci_last_regenerate|i:1671232886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661390caf58dce993749931938ae5253d9c181d5', '172.105.247.100', 1671232886, '__ci_last_regenerate|i:1671232886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42008d80b0beccf87b8e3d046754220371b3630', '172.105.247.100', 1671232887, '__ci_last_regenerate|i:1671232887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf141e898ff12a8f195d6fc6597bc639642ed80', '172.105.247.100', 1671232887, '__ci_last_regenerate|i:1671232887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279251d0d173849a84a23f201713c86c9f7fa827', '172.105.247.100', 1671232887, '__ci_last_regenerate|i:1671232887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1da8149b4d90ca28184079a35483b503fc03cd', '172.105.247.100', 1671232888, '__ci_last_regenerate|i:1671232887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b24e66a89e9fd4afe53e90a99d879e7492d3f08', '172.105.247.100', 1671232887, '__ci_last_regenerate|i:1671232887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff050072782d3031b93638bbfdaa251c6c2391e', '172.105.247.100', 1671232888, '__ci_last_regenerate|i:1671232888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('259909ec3c58e51378a846ab273864c5c270adb0', '172.105.247.100', 1671232888, '__ci_last_regenerate|i:1671232888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18bf083d0de66cbdc42502ede510574a0fdf0d38', '172.105.247.100', 1671232888, '__ci_last_regenerate|i:1671232888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c52b949b802b13a26009f6f08985b26c31310b', '172.105.247.100', 1671232888, '__ci_last_regenerate|i:1671232888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7eed96164fe27f8d815d06decab963206eb8fb6', '172.105.247.100', 1671232889, '__ci_last_regenerate|i:1671232889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85576ea91304462e96b4324f3ad9d734b1ab120', '172.105.247.100', 1671232889, '__ci_last_regenerate|i:1671232889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ce5356854656b919765ba86c412c8f05b577a3', '172.105.247.100', 1671232889, '__ci_last_regenerate|i:1671232889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd7797497a0323459abf1bcd33dd158d7f86944', '172.105.247.100', 1671232890, '__ci_last_regenerate|i:1671232890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f59120a00b631575ba8c716df1da00a0f77e499', '172.105.247.100', 1671232890, '__ci_last_regenerate|i:1671232890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83385e8f795f5b6b87ce46fce9df2655ca45a4b', '172.105.247.100', 1671232890, '__ci_last_regenerate|i:1671232890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c4eb0790072e9288451c98e4f2a680b76de9ef', '172.105.247.100', 1671232890, '__ci_last_regenerate|i:1671232890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e858a5c853344791d2ed06d759d46952fb6be6', '205.210.31.170', 1671233199, '__ci_last_regenerate|i:1671233199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94f1c28778381d415c62217babcc972a7094d88', '31.222.203.2', 1671233536, '__ci_last_regenerate|i:1671233536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f19627afa3bb9f59799a57955e0ce9227498619', '31.222.203.2', 1671233536, '__ci_last_regenerate|i:1671233536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2759dd32b8f62783c447c6197a2720d28251b76', '31.222.203.2', 1671233536, '__ci_last_regenerate|i:1671233536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ea4ca73130e8d7bd3edbaa7847b1d15f852380', '31.222.203.2', 1671233538, '__ci_last_regenerate|i:1671233538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcd182ca97429264caab4d5eb327623e66c54dc', '31.222.203.2', 1671233538, '__ci_last_regenerate|i:1671233538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('761ca45c280c3f05ae2a0d12a59f32aa01a367de', '31.222.203.2', 1671233538, '__ci_last_regenerate|i:1671233538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0208d3df89ae10b03c3f8999f7cb1e1857d4c6c', '31.222.203.2', 1671235345, '__ci_last_regenerate|i:1671235345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97cea10a4a042b3bbf365f57ce7fb847fa79e286', '31.222.203.2', 1671235345, '__ci_last_regenerate|i:1671235345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83693fbe1431c599583a88ce7d60b0be3b5b997c', '31.222.203.2', 1671235345, '__ci_last_regenerate|i:1671235345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3914f04b9babd9eb1b2026cdca5ff4e5684a1fe0', '31.222.203.2', 1671235347, '__ci_last_regenerate|i:1671235347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04d6dc595ae11d0e390d5363caf3d44497ee50f', '31.222.203.2', 1671235347, '__ci_last_regenerate|i:1671235347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25add02aacc5d51733e7f723a619a07bb0044918', '31.222.203.2', 1671235347, '__ci_last_regenerate|i:1671235347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a1eba7fd25005524fcc5e9305a8259636efd90', '31.222.203.2', 1671237136, '__ci_last_regenerate|i:1671237136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23bc56959a41eee0fa86afff5b315e2e79d26044', '31.222.203.2', 1671237136, '__ci_last_regenerate|i:1671237136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ca0bf1963eb78559f78a6bd690e7d7c3fe7845', '31.222.203.2', 1671237136, '__ci_last_regenerate|i:1671237136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34688c3a57579dbb1c9e2dea67b2ebd5cbf9baaf', '31.222.203.2', 1671237138, '__ci_last_regenerate|i:1671237138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57211b7798cc6f198933a6ca135168a64d04163c', '31.222.203.2', 1671237138, '__ci_last_regenerate|i:1671237138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c8cb31ebd3c3e8c236486d403cb34716efa695', '31.222.203.2', 1671237138, '__ci_last_regenerate|i:1671237138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd708a8524d362e0c03b837d9e3abfab0177d1c6', '172.105.247.100', 1671237689, '__ci_last_regenerate|i:1671237689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c26d45f368b21a36e45dde10ad4e6211632bd8', '172.105.247.100', 1671237689, '__ci_last_regenerate|i:1671237689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caeaf3e495acdb3b7e6cd98c5429bf5c8625b569', '172.105.247.100', 1671237690, '__ci_last_regenerate|i:1671237690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964dbc640eafa5f7f72e720468d815059d69401a', '172.105.247.100', 1671237690, '__ci_last_regenerate|i:1671237690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bcea3fd31117d94fc5bdb0fbac9296535f1f381', '172.105.247.100', 1671237690, '__ci_last_regenerate|i:1671237690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd40154b841c833a435ed2bd2fdb37c6d2cb33dc', '172.105.247.100', 1671237690, '__ci_last_regenerate|i:1671237690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427a4ac9b8c36cb766800654bd8a2866a542072b', '172.105.247.100', 1671237690, '__ci_last_regenerate|i:1671237690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f4f67e9299c363ea197dcd005a93ffd249936e', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac29ca5c96de5358471bedd56100246798395eb9', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb9d425652257ac6a68992e211f90765bc63e1c', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd56ff2ca16f696d906e0f5eda7bf135316176b', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3cb9b7a4b5ee26485c94c4c2df8ee3f37bcd1e', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599ee2d2844e0d7683d3ef8a0bb2a4f857b06074', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e732c13f4ba5b7fcbda04e7bda2d925a0dad9d', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bbf4fb956abc45f598a4eefbd20715bb503c0b', '172.105.247.100', 1671237691, '__ci_last_regenerate|i:1671237691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3655b8ca4709f878fb3a9d93d7880191f0e11679', '172.105.247.100', 1671237692, '__ci_last_regenerate|i:1671237692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc946cad567cebd9a180110cfce736cd727c3786', '172.105.247.100', 1671237692, '__ci_last_regenerate|i:1671237692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c409b2b33157e4bb0d9a0eb51d418fc4338cf7', '172.105.247.100', 1671237692, '__ci_last_regenerate|i:1671237692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ac3cf7044c896fa03642cddd88eba8667fdfe4', '172.105.247.100', 1671237692, '__ci_last_regenerate|i:1671237692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fc08f0638c672fde7ed0aba9c2142eb72292994', '172.105.247.100', 1671237692, '__ci_last_regenerate|i:1671237692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87290882ce6c7a273dbac00e813ec1f5ea0042df', '172.105.247.100', 1671237692, '__ci_last_regenerate|i:1671237692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c649e070431aa7a62bb07374c76506d49a4d5819', '172.105.247.100', 1671237693, '__ci_last_regenerate|i:1671237693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38711efff41a9d921e64f54f903c30b9aba1a6fa', '172.105.247.100', 1671237693, '__ci_last_regenerate|i:1671237693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76716d0f9f576f382cb0783ab72988b521346155', '172.105.247.100', 1671237693, '__ci_last_regenerate|i:1671237693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b15acf373474fb40ea973cc259effc52167e204f', '31.222.203.2', 1671238939, '__ci_last_regenerate|i:1671238939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da018cf530638b7fffa752b3d22076cf044edeb1', '31.222.203.2', 1671238939, '__ci_last_regenerate|i:1671238939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d82bdf800d3a41491f2ce6f472b013116cb1db3', '31.222.203.2', 1671238939, '__ci_last_regenerate|i:1671238939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af030d5d1cf4c908c93274de9dc43c195f7d2677', '31.222.203.2', 1671238940, '__ci_last_regenerate|i:1671238940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b847c768338d4b500bb8eb52800242cc4a68dc', '31.222.203.2', 1671238940, '__ci_last_regenerate|i:1671238940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8b29944bf97bdbf7085cb3b7303f3da7a3dad3', '31.222.203.2', 1671238940, '__ci_last_regenerate|i:1671238940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3317bb98229cbc4907aed0e5178146b63e5377', '31.222.203.2', 1671240743, '__ci_last_regenerate|i:1671240743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a07869b60261a10bde9a546f42b4646de5c9363', '31.222.203.2', 1671240743, '__ci_last_regenerate|i:1671240743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e6cedd3edabc40722625fadf1cac9f5db66995', '31.222.203.2', 1671240743, '__ci_last_regenerate|i:1671240743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0131e92e3de7f7670f445350414484228922676d', '31.222.203.2', 1671240743, '__ci_last_regenerate|i:1671240743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6934ebb78a2838677d2d205e8f5644e9c918ae8c', '31.222.203.2', 1671240743, '__ci_last_regenerate|i:1671240743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40fc8ef80bf4607170bc4d76890b6f0c7fef833f', '31.222.203.2', 1671240743, '__ci_last_regenerate|i:1671240743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8348cedf30686741ad32fdca8161c96694cc08d6', '87.236.176.154', 1671242070, '__ci_last_regenerate|i:1671242070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef19541750b2d8eaa3ef8241274f41672cd921b3', '87.236.176.154', 1671242071, '__ci_last_regenerate|i:1671242070;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0f2e8dfd783f8cb08ab1b46c10cc36ba406fba', '31.222.203.2', 1671242540, '__ci_last_regenerate|i:1671242540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770e1e75867b3f0734db6544968f1cb73f9bb522', '31.222.203.2', 1671242542, '__ci_last_regenerate|i:1671242542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea2c3d15a48b2c6881820b8d5a29991ebc8a42d9', '31.222.203.2', 1671242542, '__ci_last_regenerate|i:1671242542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6aeccc879494f3619f2eec7507cf2ddefe4dab', '31.222.203.2', 1671242542, '__ci_last_regenerate|i:1671242542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf317ae66b886f7142c383db15e6c50bbd934bbf', '31.222.203.2', 1671242542, '__ci_last_regenerate|i:1671242542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89814b4c1a758ce49dff0c7d438a9204e333520b', '31.222.203.2', 1671242542, '__ci_last_regenerate|i:1671242542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f067b2be32db86c1917f0603883fff6371449fb', '172.105.247.100', 1671243093, '__ci_last_regenerate|i:1671243093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e665335520547d1790f5f636b9d33054a5a9d3', '172.105.247.100', 1671243094, '__ci_last_regenerate|i:1671243094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd57415b714b5eaee0bd07d003b2b79898b108ac', '172.105.247.100', 1671243096, '__ci_last_regenerate|i:1671243095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ab7bef70d9a48a2a8b51e4f51f57982daa5de2', '172.105.247.100', 1671243096, '__ci_last_regenerate|i:1671243096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf4f09bec56dedcd7da8388d932877fdc872897e', '172.105.247.100', 1671243096, '__ci_last_regenerate|i:1671243096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65de7dec0551343349555abc034232759fc04f92', '172.105.247.100', 1671243096, '__ci_last_regenerate|i:1671243096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb441694d4e9bda1f60b68803e2cdc59f463f72a', '172.105.247.100', 1671243096, '__ci_last_regenerate|i:1671243096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('645c72fca6440bd75479a33f6eee5e20ff020878', '172.105.247.100', 1671243096, '__ci_last_regenerate|i:1671243096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad5cb18365c51aa5901ed1016b38952543ec736', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb8717d0938f5d76eea8eac348535941416b35b', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a639d387038a23fe52d714607f842eb85806fcf', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1213f5d339ecd58f2e3f57edd03993d6dd98003', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bcedf42983db184dda51227891c5468dfd224a0', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229dd71464067d147c7b54ed6bb629e499c71457', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f8654b38536f005c335736ffbf6cbd0c566609', '172.105.247.100', 1671243097, '__ci_last_regenerate|i:1671243097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5000b0b612ff4b6fe006466c79734efee925bcd6', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f995e6f9bd978307a363c78dd218d5fa893fdb83', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4fd4e61c963faf577f641e98f27088bfff45bdc', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47fa940c63c75fc4aa129134e5534d98389499e0', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3e87c28a9a71db66ac1fcf240265cf1459bbf9', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d585d115c156e271327d154406e16c96a606d7e', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a147458ec56dc193161404f14290bd8cee074898', '172.105.247.100', 1671243098, '__ci_last_regenerate|i:1671243098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4181a94b2a58d5e5da7a3f57b0c5b47503b18993', '172.105.247.100', 1671243099, '__ci_last_regenerate|i:1671243099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6e5de5821673b1edb9ecfc861fd39779ba2bcd', '172.105.247.100', 1671243099, '__ci_last_regenerate|i:1671243099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8b6676194feef53deddeaf5e7136d9632b94f7', '198.235.24.162', 1671243679, '__ci_last_regenerate|i:1671243679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292d33f84042c29627dc4f85a39b6ec1927ed7f9', '198.235.24.162', 1671243680, '__ci_last_regenerate|i:1671243680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9198bbfc26f51038aadbcd4b843bf120cc7d51', '198.235.24.162', 1671243680, '__ci_last_regenerate|i:1671243680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55eda1d14f3b5cab536104832aa465b3e5bbed1', '31.222.203.2', 1671244338, '__ci_last_regenerate|i:1671244338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b60c9d46ff7701f376d6d75ecbde5737bd64f584', '31.222.203.2', 1671244338, '__ci_last_regenerate|i:1671244338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dd68f2b198eab301e0e847784e2248b8f46906', '31.222.203.2', 1671244338, '__ci_last_regenerate|i:1671244338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e7b6b6981086886628f2d9794def1c23a18dab8', '31.222.203.2', 1671244340, '__ci_last_regenerate|i:1671244340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd86a44d70abe385de46874011eb3de305302bd', '31.222.203.2', 1671244340, '__ci_last_regenerate|i:1671244340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfdf8b0778ac5e0ab18c4fac305e9a9b46670ab', '31.222.203.2', 1671244340, '__ci_last_regenerate|i:1671244340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07307a46dd94c87029f5f9899d393a546d9b6ce', '31.222.203.2', 1671246139, '__ci_last_regenerate|i:1671246139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66041cda5e3351a4ca852aed4f7ba96aa07fccb', '31.222.203.2', 1671246139, '__ci_last_regenerate|i:1671246139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa0d9d39295e79d043794ab92a1e78d701779f9', '31.222.203.2', 1671246139, '__ci_last_regenerate|i:1671246139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9335542341dda96e3b9e27edb15023f0298833', '31.222.203.2', 1671246141, '__ci_last_regenerate|i:1671246141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b74c1fe68382cc9149ed07ed4ba68f427095eff', '31.222.203.2', 1671246141, '__ci_last_regenerate|i:1671246141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a83e38975c2a4d99550fe7cbe598540327d6b9b1', '31.222.203.2', 1671246141, '__ci_last_regenerate|i:1671246141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9eee89aa2e3b2b89502dcd2c77e3ef6cd9ef07', '31.222.203.2', 1671247937, '__ci_last_regenerate|i:1671247937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17fb899f75796257e77b9619e25bf0566a2b705', '31.222.203.2', 1671247937, '__ci_last_regenerate|i:1671247937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8b9889fb2ebfbc71d162483cbcd79b5ad5ec78', '31.222.203.2', 1671247937, '__ci_last_regenerate|i:1671247937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707184151bdf2ae2cb37c3359e23eef52fc648cb', '31.222.203.2', 1671247937, '__ci_last_regenerate|i:1671247937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9f3b26ed62e2217684fc8304f975385482f674', '31.222.203.2', 1671247937, '__ci_last_regenerate|i:1671247937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad4b963c7c3d84924d194a62acec090394bd3d0', '31.222.203.2', 1671247937, '__ci_last_regenerate|i:1671247937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4e4d52797b8176155c0202fa7e1ecd250c138c', '172.105.247.100', 1671249086, '__ci_last_regenerate|i:1671249086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be61cc6b333bd586241f0d9981c990e62282dc8', '172.105.247.100', 1671249087, '__ci_last_regenerate|i:1671249087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b679454662ffa399657055989f74f7d0137a058b', '172.105.247.100', 1671249087, '__ci_last_regenerate|i:1671249087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934e5ae1ed6daef51cd9788f0bcfd515caaf1ccc', '172.105.247.100', 1671249087, '__ci_last_regenerate|i:1671249087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8fb10666d5187b0fa2e7ed2b31a4201cc82e177', '172.105.247.100', 1671249087, '__ci_last_regenerate|i:1671249087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f897093c920c002abdad6f17c340b42d1edb1463', '172.105.247.100', 1671249088, '__ci_last_regenerate|i:1671249088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa693f8837331520f9843d363c8df9262b21e3ee', '172.105.247.100', 1671249088, '__ci_last_regenerate|i:1671249088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d019b71187b0c589aee3771ccb0a6e8952aee77a', '172.105.247.100', 1671249088, '__ci_last_regenerate|i:1671249088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65daa661911555cfcf451079f3f6121efddfa07e', '172.105.247.100', 1671249089, '__ci_last_regenerate|i:1671249089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b2cb534b1eb0e20415f01299eae8f63fe2d090', '172.105.247.100', 1671249089, '__ci_last_regenerate|i:1671249089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e187d951534418fc4d663203da0bf0116d1b3c', '172.105.247.100', 1671249089, '__ci_last_regenerate|i:1671249089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ccdf25327a5efd758041a57e58afe441b4f930', '172.105.247.100', 1671249089, '__ci_last_regenerate|i:1671249089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ed3221494afbe965d6ae666eec31e238243d7d', '172.105.247.100', 1671249090, '__ci_last_regenerate|i:1671249090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7c26a194abd93940ead9a3108c2e9c1efad087', '172.105.247.100', 1671249090, '__ci_last_regenerate|i:1671249090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81030f20290bdb4da36e6bda07988ec121dc15df', '172.105.247.100', 1671249090, '__ci_last_regenerate|i:1671249090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183d9b5c7d0f17adff9be6d2fa390a295ba1f2f5', '172.105.247.100', 1671249090, '__ci_last_regenerate|i:1671249090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af68920272904bc0055be5429e78c7a1991445d', '172.105.247.100', 1671249090, '__ci_last_regenerate|i:1671249090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672476107617d15e9b4c90779794a011327ed86d', '172.105.247.100', 1671249091, '__ci_last_regenerate|i:1671249091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f883d30878e4ff1c0ffa105200a40b69e41d19', '172.105.247.100', 1671249091, '__ci_last_regenerate|i:1671249091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2709fa1e62d308f697de56de6ee7b18f081175f4', '172.105.247.100', 1671249091, '__ci_last_regenerate|i:1671249091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ede108337f5f261079f24eb877f67f6378a706c', '172.105.247.100', 1671249092, '__ci_last_regenerate|i:1671249092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dfea533d8613a33a99b174dc5453a37d97eb5c', '172.105.247.100', 1671249092, '__ci_last_regenerate|i:1671249092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5358e47b6c89e965b4addd818b3b46415be95f6', '172.105.247.100', 1671249092, '__ci_last_regenerate|i:1671249092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b83d8cfa0b8530ec36eb76993702b06a0c7afa', '172.105.247.100', 1671249092, '__ci_last_regenerate|i:1671249092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1df9d71e204b22fee0c5989744cb685c1d6e88e', '31.222.203.2', 1671249739, '__ci_last_regenerate|i:1671249739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c4e3d8cabd0f74f2d1a80f89a8b856cba8efdc', '31.222.203.2', 1671249739, '__ci_last_regenerate|i:1671249739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4d74784ff9c25edbb19670db196b222092b676', '31.222.203.2', 1671249739, '__ci_last_regenerate|i:1671249739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d5fd78cc123c3b143b3dbb40dd821e68f09c7d', '31.222.203.2', 1671249741, '__ci_last_regenerate|i:1671249741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9db3bc6a5348433f3446bf7a152bf2edf3f87e9', '31.222.203.2', 1671249741, '__ci_last_regenerate|i:1671249741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996dfee46b9535643920f5ca5f15b7172d68c65a', '31.222.203.2', 1671249741, '__ci_last_regenerate|i:1671249741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1463f950a5c1c9c4c7fa0a7b7649610ff111634', '31.222.203.2', 1671251545, '__ci_last_regenerate|i:1671251545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dcc5a689fb5359b67ef4ea0af0212d5cde0fc41', '31.222.203.2', 1671251545, '__ci_last_regenerate|i:1671251545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77385bdf71fb2b32cb8f9ff33cda823bd1522e5', '31.222.203.2', 1671251545, '__ci_last_regenerate|i:1671251545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360481a25d698c4f0ada6d379bee308070ca3ea7', '31.222.203.2', 1671251547, '__ci_last_regenerate|i:1671251547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15eb73c806e27942c9902161e40e21b238ba9c11', '31.222.203.2', 1671251547, '__ci_last_regenerate|i:1671251547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9314fad93e77eb6ba7d4a7d8d6bf0b68eb2f674c', '31.222.203.2', 1671251547, '__ci_last_regenerate|i:1671251547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdcda48b424ad514491923c9f330c246f789030', '116.204.230.18', 1671252235, '__ci_last_regenerate|i:1671252235;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671165312\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9517c93313e7a4c4b42500d34e060503ec28c5', '116.204.230.18', 1671252910, '__ci_last_regenerate|i:1671252910;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671165312\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"mHazx86hckMyqnNsFivZ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce86600f845c7ecdc01dc485fcb656854cc6602', '116.204.230.18', 1671253046, '__ci_last_regenerate|i:1671252910;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671165312\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"mHazx86hckMyqnNsFivZ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('781c43dea471160b3fa4a858098e57eb38d60ab6', '31.222.203.2', 1671253336, '__ci_last_regenerate|i:1671253336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('300229808dfa5232dde99a6c8a85f27da619e2d5', '31.222.203.2', 1671253336, '__ci_last_regenerate|i:1671253336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65de9ae9b7d17524e4fcbec23632302b0a987a9', '31.222.203.2', 1671253336, '__ci_last_regenerate|i:1671253336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5af2ffddb9cd127c4d7d032197ed72d29dc0db5', '31.222.203.2', 1671253338, '__ci_last_regenerate|i:1671253338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59a3dddcef932539f8965057b5d0cf6e7e8a608', '31.222.203.2', 1671253338, '__ci_last_regenerate|i:1671253338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f099db2d0b84edca4b8cebff58637890c9a1f2', '31.222.203.2', 1671253338, '__ci_last_regenerate|i:1671253338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf5073bf812b1576f01fe9eea3c1717c0fe7fb0', '172.105.247.100', 1671255098, '__ci_last_regenerate|i:1671255098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64367378c4a9c2f481841cf24f4d3000fdb4187', '172.105.247.100', 1671255098, '__ci_last_regenerate|i:1671255098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c645c8469f240c0f391021073272c3c67c9a6a4', '172.105.247.100', 1671255098, '__ci_last_regenerate|i:1671255098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16424ff1d3b6e13955398f943b9ae1dabb468e43', '172.105.247.100', 1671255098, '__ci_last_regenerate|i:1671255098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6a35851e2679845f831aa859d4bbd009198e50', '172.105.247.100', 1671255098, '__ci_last_regenerate|i:1671255098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ec89203f09e2f842b81564423b9bd2ee5c5851', '172.105.247.100', 1671255098, '__ci_last_regenerate|i:1671255098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0e99d8159d63ff812f107571180628f60e1328', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d11c7347b163776ec62bc83934870f3865a429', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536b3306844bb00c1dad8fb997475355a128b1ae', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31d354c378db50b0eb6cef261fe0f62628f7317', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c2a33f2b019f60f27ca5742f9917d36ece4b4f', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8200131d64b57364b7b1261ccdbb19996c136f41', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e5a7c8bec3ee26502fefe5b04c2b4166d5fd85', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986f447a3c5ac5e3ac784ac26341efa2cd983a32', '172.105.247.100', 1671255099, '__ci_last_regenerate|i:1671255099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd134c09dc2cd623b74b0ccaf20d0fd78255528e', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e475e075c31c73b1e474a784d379bf6e0f97628', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425157b75f7d419158088d0913962940e05b2928', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e864501c9c5aa83d00911064eca1d41e7ed2f1e', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b43d2dd33823b45437ecc290c2de6b6ef86e44a', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89303db1ec6dbccdef29b0793fd093eedd0b0bf', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e8b35e571aea297bcc1621a85f2ebe383c1bb99', '172.105.247.100', 1671255100, '__ci_last_regenerate|i:1671255100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b405daffc784b893a96d410d4614b419e07acc5', '172.105.247.100', 1671255101, '__ci_last_regenerate|i:1671255100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7f1d6c6b2f22d35f8f299538b0a66c94774fee', '172.105.247.100', 1671255101, '__ci_last_regenerate|i:1671255101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d01eb364cf6112481aee9ce654bf4781214ecf', '172.105.247.100', 1671255101, '__ci_last_regenerate|i:1671255101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25fbfac878cd45c38d657477f27d2a255268b7e3', '31.222.203.2', 1671255137, '__ci_last_regenerate|i:1671255137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('424926c9b94b61d60bb0bf035cf1ee050b402863', '31.222.203.2', 1671255137, '__ci_last_regenerate|i:1671255137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e1083454632259b41b9e82f1e623f0f1b71508', '31.222.203.2', 1671255137, '__ci_last_regenerate|i:1671255137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32de26b448e62ad39dd97a7c507b711081cd61e6', '31.222.203.2', 1671255137, '__ci_last_regenerate|i:1671255137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7007c45e419ee35ca4a643cad130d71f7fa508e', '31.222.203.2', 1671255137, '__ci_last_regenerate|i:1671255137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c81933e3396a4d3aa1b33bd31a86d1c2ae6625', '31.222.203.2', 1671255137, '__ci_last_regenerate|i:1671255137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8cd267740879b6c5b243bbdbe35e165c4c2722', '45.120.39.89', 1671255739, '__ci_last_regenerate|i:1671255739;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671255376;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f430223156b9eeb2da79261ce9130aedaef0219e', '45.120.39.89', 1671259576, '__ci_last_regenerate|i:1671259576;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671255376;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a770108137fbfab7bd022ad58b23b16e24416af9', '205.210.31.31', 1671256256, '__ci_last_regenerate|i:1671256256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669f001eaaeeee279dfc38301041cd16b0bdcc2f', '31.222.203.2', 1671256933, '__ci_last_regenerate|i:1671256933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d8b73f14663596abfe5569752e60ce38f1946a', '31.222.203.2', 1671256933, '__ci_last_regenerate|i:1671256933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f401329130112986ccfdc0543884db290fd2230d', '31.222.203.2', 1671256933, '__ci_last_regenerate|i:1671256933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b3c7336cfa86506c7abacc2b8fbd645a7bf70c', '31.222.203.2', 1671256933, '__ci_last_regenerate|i:1671256933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f701f6f3709a7cf7cf05b7556ffe9df7af549ca', '31.222.203.2', 1671256933, '__ci_last_regenerate|i:1671256933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75297dbc8e7ec7b53a25ad71d247d57d9af80233', '31.222.203.2', 1671256933, '__ci_last_regenerate|i:1671256933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c23a4f18f0e5f6648a04842a8e91fbe7c7c19b', '31.222.203.2', 1671258735, '__ci_last_regenerate|i:1671258735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64782b69787fa3b5a28106aeaae00f0a3db1977a', '31.222.203.2', 1671258735, '__ci_last_regenerate|i:1671258735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441df24aea70e67839d530fdcf53a77103479d73', '31.222.203.2', 1671258735, '__ci_last_regenerate|i:1671258735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62db9c6c1a28d273ec87d76fe42c48c14601ded2', '31.222.203.2', 1671258737, '__ci_last_regenerate|i:1671258737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a8e4c10291e95264fbc097e2d3c2543d1c52fc', '31.222.203.2', 1671258737, '__ci_last_regenerate|i:1671258737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd0b3e3c216ec423d0abc7aa01f81829dca4663', '31.222.203.2', 1671258737, '__ci_last_regenerate|i:1671258737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84d02e8940b78097e7cecf58a04012432bf7f91', '45.120.39.89', 1671259945, '__ci_last_regenerate|i:1671259945;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671259586;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a3843eac705c1ceb2299e1a82f672503d082c9', '45.120.39.89', 1671265873, '__ci_last_regenerate|i:1671265873;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671259972;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ea71da36f8e79530839383fe381b92123f98e6', '31.222.203.2', 1671260539, '__ci_last_regenerate|i:1671260539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6c05c921646724bf227b342eedb0dd0d3f1803', '31.222.203.2', 1671260539, '__ci_last_regenerate|i:1671260539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c61fbfcfc4f7a274a154080f44cc467cc29f7c0', '31.222.203.2', 1671260539, '__ci_last_regenerate|i:1671260539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf4d9a563c1c4b63f16ccc1807048eb898a37a9', '31.222.203.2', 1671260540, '__ci_last_regenerate|i:1671260540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6b742a2c9ddcc132955bf29a8f5de5b2a80cc2', '31.222.203.2', 1671260540, '__ci_last_regenerate|i:1671260540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fb8afaaa006dc3a9b7f37b24682b733c83e10e0', '31.222.203.2', 1671260540, '__ci_last_regenerate|i:1671260540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c6aa1d1e23988020ef06627f9b3d379f263143', '172.105.247.100', 1671261090, '__ci_last_regenerate|i:1671261090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f731f41d1500b89907ad8f5ae370e38601fb8b9', '172.105.247.100', 1671261090, '__ci_last_regenerate|i:1671261090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fae9583a617563099224f6beeb38f0f9a1dd96c', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('585cb04a306ca4510530c2c59a2fa2ab1bd20d12', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c3345b8bb970f551df5249b6d0e84f726b15c9', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2edb471d076ca2841229fdd31700a766ab77b0be', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306b2ca8058f266814ef71c0873cfa3ad284607a', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d3ea3e4cf508ba469e4fa1aec4170095dc1d69', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('736b902c097ce225e1e5f02b42b0fe095c700171', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b6e68c048935b3de2db7f58d7476c58f832680b', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c699e0fc066c66f71f23b77130ea057ef32fdb09', '172.105.247.100', 1671261091, '__ci_last_regenerate|i:1671261091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398615e137f5514e442dd450fb4dbc149777ad4e', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf5679e7a76281e1b0c4414e56d8d4da49167d3', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2015352e142e89df8c4c3c044e794658416236', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094803d61b1b52bea793a6cc64e2274731fcc57e', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432399f83bad2fa1f8675c4e3d819d85219c8330', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d3c713e31440850c5a33760b6a3b040256475b', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da61abee81a35135fbc76191899307eb04acb43', '172.105.247.100', 1671261092, '__ci_last_regenerate|i:1671261092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b455b08d3b705f5d020f2955b669d21260c567', '172.105.247.100', 1671261093, '__ci_last_regenerate|i:1671261093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148548cd74da8d1cb1b5d110ab9c5a156c0fe78a', '172.105.247.100', 1671261093, '__ci_last_regenerate|i:1671261093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050bc69f8d907f319fef4f4027807200ca1eb08c', '172.105.247.100', 1671261093, '__ci_last_regenerate|i:1671261093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f17139fdf6206c84f22ea09b483485cb4609e9f8', '172.105.247.100', 1671261093, '__ci_last_regenerate|i:1671261093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7feabca5f1f7ad8ad7f0c20c079de36f8d96f94f', '172.105.247.100', 1671261093, '__ci_last_regenerate|i:1671261093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb655c0a162be88ade571df037f1313428452e6', '172.105.247.100', 1671261093, '__ci_last_regenerate|i:1671261093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f4ce4eb70a4cd940a05215d3b42bd1586f21a2', '31.222.203.2', 1671262337, '__ci_last_regenerate|i:1671262337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a544e4c74467acb757e314be4a0d40703b6eec', '31.222.203.2', 1671262337, '__ci_last_regenerate|i:1671262337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e9eed466962bc997d6e3216575658008eba288', '31.222.203.2', 1671262337, '__ci_last_regenerate|i:1671262337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656916b73d92f1a4dfdc21370187f5903f7839ea', '31.222.203.2', 1671262337, '__ci_last_regenerate|i:1671262337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493b690f713bee4aa3715a61febbb61c66706b7a', '31.222.203.2', 1671262337, '__ci_last_regenerate|i:1671262337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afad1893302d486c8d9fc36ca85cb1200fa3bbab', '31.222.203.2', 1671262337, '__ci_last_regenerate|i:1671262337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f3544a7003bd04a863dae4899695a6fc9ed71e', '31.222.203.2', 1671264137, '__ci_last_regenerate|i:1671264137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482987ac798500ef2e52d84c5fd92aefac66edd0', '31.222.203.2', 1671264137, '__ci_last_regenerate|i:1671264137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06cb672374f832a97af4936965a8064aaedbc984', '31.222.203.2', 1671264137, '__ci_last_regenerate|i:1671264137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c62030d49496d9cf0d4841e33e12b0f53ad77a6', '31.222.203.2', 1671264137, '__ci_last_regenerate|i:1671264137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6ea88c5b50e270fb2560e6a2b6ba9d5af38b99', '31.222.203.2', 1671264137, '__ci_last_regenerate|i:1671264137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8675db45f6b3a5bbb0678884cb03548a49edb1c', '31.222.203.2', 1671264137, '__ci_last_regenerate|i:1671264137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46733342d6d13196afdb8413d535e523010827a1', '37.111.218.164', 1671270957, '__ci_last_regenerate|i:1671270957;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671259972;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4ca3bba03dae0cf045cd246c2b40e8ba32cfa9', '31.222.203.2', 1671265935, '__ci_last_regenerate|i:1671265935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f4709cf79100fe263277c071681dbd5c5cee8e4', '31.222.203.2', 1671265935, '__ci_last_regenerate|i:1671265935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f62726cb66cfbbb8092530995592bb904a4c52', '31.222.203.2', 1671265935, '__ci_last_regenerate|i:1671265935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf537aedf58eb588e98fad32ca54339e1106a433', '31.222.203.2', 1671265936, '__ci_last_regenerate|i:1671265936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae729f45f97685e913b2479c7e8e30c1cdc7727e', '31.222.203.2', 1671265936, '__ci_last_regenerate|i:1671265936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ed1d4d29c9367be0e8f26c91e28dc13a1b2ed2', '31.222.203.2', 1671265936, '__ci_last_regenerate|i:1671265936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fbcd57f0eff68d9a38760cf9fac1dde7cd3e580', '172.105.247.100', 1671267085, '__ci_last_regenerate|i:1671267085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f082f0eeb9d870d314c823a8786c755f53f8031', '172.105.247.100', 1671267086, '__ci_last_regenerate|i:1671267086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd5687d5ab7dfa969315c0dcaa90e73a904be4e', '172.105.247.100', 1671267086, '__ci_last_regenerate|i:1671267086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092959fc4d8f3b7d11dfebd7bf6444563624ffb0', '172.105.247.100', 1671267086, '__ci_last_regenerate|i:1671267086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa19c3a623a1c8e274d0450158850dcbfbbeea6d', '172.105.247.100', 1671267086, '__ci_last_regenerate|i:1671267086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4749fdd74800f991af8e87ff3c4e27a44f868d80', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a37dcfe8d225433bde24ff86bb419755ded128', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba8acb4a2f49b2fd331389b6676b9aa463595fd', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db42984860d829cc643c5a322d6b10c8745e83f', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a000af6462cd0468bed9e72b204520cb681853', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f58ca3bc0683ab6deb092ef99dca71cbb393ed5', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c436b989a318f8d3ffb50c1fc906f27230caa6fd', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995db72b8a7c12edc3f7b26a993b43270bfce352', '172.105.247.100', 1671267087, '__ci_last_regenerate|i:1671267087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87c5428ca234fc5d659bbd6890c7a0d71b9101a', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0760095e48c145a6ffc11c8d029d99d23327e2e6', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a531a582d43c85ea64826e6357235ad034dc1588', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fbe97f30fd4b1101ee344234524b530d9f93824', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6148f1633b712c6d3ff9624ba2c9e0a66af27c3', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832f935e2e98b62311a0e910b5e09fbbd05b463f', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d145c0e1a7ccc160ef3e22e87c9a659696802340', '172.105.247.100', 1671267088, '__ci_last_regenerate|i:1671267088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eae6b3c4c768ff930fdd91c11d325f238eda636', '172.105.247.100', 1671267089, '__ci_last_regenerate|i:1671267089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0923fe7261d31e1fac84afd0c830971d2b8f8209', '172.105.247.100', 1671267089, '__ci_last_regenerate|i:1671267089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e13dd3ce3fd995dec5a63f00b04216fcf5d149', '172.105.247.100', 1671267089, '__ci_last_regenerate|i:1671267089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb304744ec34774b67d92671b6897ecdb6ca7fcb', '172.105.247.100', 1671267089, '__ci_last_regenerate|i:1671267089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e314e632338d984a63beb2e516e79bd40e22dbd', '31.222.203.2', 1671267755, '__ci_last_regenerate|i:1671267755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff229c9009568d61aa4dcb7c6cc2627d66c9b61e', '31.222.203.2', 1671267756, '__ci_last_regenerate|i:1671267756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14060b5e4013ce929c67978b656d1b965119d02e', '31.222.203.2', 1671267756, '__ci_last_regenerate|i:1671267756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e4237f566a47822777f0de688ad6a665427eac', '31.222.203.2', 1671267756, '__ci_last_regenerate|i:1671267756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25d0116aa8b22a5683bd97a8de00d032536701be', '31.222.203.2', 1671267756, '__ci_last_regenerate|i:1671267756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e933b0264aa659eaa9467d60a2b54121433097', '31.222.203.2', 1671267756, '__ci_last_regenerate|i:1671267756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f64a99219e01ead840f7f58f58f64955ae0e48', '116.204.230.18', 1671269116, '__ci_last_regenerate|i:1671269102;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671251710\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b468d8acec186540be1e115e45e298a8c2cac392', '31.222.203.2', 1671269583, '__ci_last_regenerate|i:1671269583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12322e98e7258b0f31e7503355688ca03ad6dbdc', '31.222.203.2', 1671269583, '__ci_last_regenerate|i:1671269583;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d24e8c51448b09878de1cfdead5fdf74d8c0b2', '31.222.203.2', 1671269583, '__ci_last_regenerate|i:1671269583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38f4e9ca8decf171187ad328962492f6a87aec4', '31.222.203.2', 1671269584, '__ci_last_regenerate|i:1671269584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('294f7a7dd20ef6282067ecebd1bd14e08e958479', '31.222.203.2', 1671269584, '__ci_last_regenerate|i:1671269584;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c602ff97385dda4d976d17a5d77b50547117f0', '31.222.203.2', 1671269584, '__ci_last_regenerate|i:1671269584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1598fa7efc52a50cbd812e2cc44b130a5d5ae2', '37.111.218.164', 1671271909, '__ci_last_regenerate|i:1671271909;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671271037;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888db42a3671b7dc24602a4be457abb615cc7ad2', '31.222.203.2', 1671271391, '__ci_last_regenerate|i:1671271391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4203b76c607c337ac36dd8994c3310f3c8e11b1', '31.222.203.2', 1671271391, '__ci_last_regenerate|i:1671271391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee8ad475f84fa446fb3cc3e6720f1caa15e45a2', '31.222.203.2', 1671271392, '__ci_last_regenerate|i:1671271392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0e7770667d47333d51ab1948777d08d35a6ea9', '31.222.203.2', 1671271392, '__ci_last_regenerate|i:1671271392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c832d7820a29dce0e80f4aa5540e4f22c06020b', '31.222.203.2', 1671271392, '__ci_last_regenerate|i:1671271392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cb049db4feaa17562fde4edc47c3f43f4312fa', '31.222.203.2', 1671271392, '__ci_last_regenerate|i:1671271392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de1e4a6eff6dc1819ce7d5b521823494f43661e', '37.111.218.164', 1671273017, '__ci_last_regenerate|i:1671273017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671271909;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b583ab956b1f6344637fdd863e8f12743c81083', '172.105.247.100', 1671272488, '__ci_last_regenerate|i:1671272488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43d00d38a1db97f2cd6e2a13225cfb5052d68ba', '172.105.247.100', 1671272488, '__ci_last_regenerate|i:1671272488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b42aca0b76b077d5c34d9c74ea8178d8dc3b507d', '172.105.247.100', 1671272488, '__ci_last_regenerate|i:1671272488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292e9b81694c6abed2a0fd5c3f67e74d0424f766', '172.105.247.100', 1671272488, '__ci_last_regenerate|i:1671272488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db28a206e788c173087265beeda6e6e0680b7039', '172.105.247.100', 1671272489, '__ci_last_regenerate|i:1671272489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f23b4ea528f509f4bf9bae6d04f55679e4d98a0', '172.105.247.100', 1671272489, '__ci_last_regenerate|i:1671272489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1caca672be5a7533cb465fd0725d372327d7ac0', '172.105.247.100', 1671272489, '__ci_last_regenerate|i:1671272489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64687bade25cd884bfe6a6ea4ddca40c4591fda', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381b390b570d1162393126cfb09537c986ba2f52', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4530644b464a12d2ba3e34edddefe2cb6686463d', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef0f14cdf8956c24b692993543b22062eca86990', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c242eb5df52470449aa983f172c2ec0580e1fc6c', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0073420cb05f21874f45db2601bec1d52a929779', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40fa5616fb48105ed2c785a68fa5665f2f53be3', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33b981cb4eefce17fc323ec6528090fc249a1fc', '172.105.247.100', 1671272490, '__ci_last_regenerate|i:1671272490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd02dfa76d13db7ae29e21cefd08d884dba688ed', '172.105.247.100', 1671272491, '__ci_last_regenerate|i:1671272491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2f1e07a77c53f4e2f8d8b922597cab6f004ce5', '172.105.247.100', 1671272491, '__ci_last_regenerate|i:1671272491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2aeceba779deb79d389707f9c55dd87d11f0eaf', '172.105.247.100', 1671272491, '__ci_last_regenerate|i:1671272491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3ebdab8b223c42782a448908a1ce2fcfe07824', '172.105.247.100', 1671272491, '__ci_last_regenerate|i:1671272491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6efd7d679174aca9000780ed329074a142cbe5f', '172.105.247.100', 1671272491, '__ci_last_regenerate|i:1671272491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67b8c8ea3b073d05ef58888ee18f9cc81327fa4', '172.105.247.100', 1671272492, '__ci_last_regenerate|i:1671272492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d224343bd7e3f7b7d86906a7844a7ad7a1300194', '172.105.247.100', 1671272492, '__ci_last_regenerate|i:1671272492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d48aa1ada3ba7616ba33a7239d072cff3bb4274', '172.105.247.100', 1671272492, '__ci_last_regenerate|i:1671272492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e7647cf7f10b5bbe522aa2a3f94f749111d9bbf', '172.105.247.100', 1671272493, '__ci_last_regenerate|i:1671272492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3008fb0c1fb870b7c224695aafc6116e34e27152', '37.111.218.164', 1671273706, '__ci_last_regenerate|i:1671273706;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671273697;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fff16d6a08cd94955664a694793c266e5932367a', '31.222.203.2', 1671273222, '__ci_last_regenerate|i:1671273222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16eac0ae4d1099b08f103d8a7591f07b54e88d9', '31.222.203.2', 1671273222, '__ci_last_regenerate|i:1671273222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1af4657da1b9ffcc73cee0461028922d350786', '31.222.203.2', 1671273222, '__ci_last_regenerate|i:1671273222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17821429fd2fd02f8235f06283a1b1c8c380f84a', '31.222.203.2', 1671273224, '__ci_last_regenerate|i:1671273224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c433675aa843713d29f15e971751e4ecccebb1', '31.222.203.2', 1671273224, '__ci_last_regenerate|i:1671273224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a19076f29ebf0f43c7e8bf1fc2ba356a270dc8a', '31.222.203.2', 1671273224, '__ci_last_regenerate|i:1671273224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae9a56480f216d07ca885d98d06a548a1a11b90', '37.111.218.164', 1671276034, '__ci_last_regenerate|i:1671276034;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671273722;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265fa0d66587b68bb20a6277e7c9a1aa5f782742', '31.222.203.2', 1671275012, '__ci_last_regenerate|i:1671275012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abec0c48ef81c3b629af0ec7df1914c7f7028a62', '31.222.203.2', 1671275012, '__ci_last_regenerate|i:1671275012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c900e5f063fd4ff6d8bc172dd9feab06abb8e4b4', '31.222.203.2', 1671275012, '__ci_last_regenerate|i:1671275012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6c8d2fc270387366cccf9b66efd7de43b5fbc7', '31.222.203.2', 1671275014, '__ci_last_regenerate|i:1671275014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5fb57f00923c421f7fe9a76b9855e7c40f485e', '31.222.203.2', 1671275014, '__ci_last_regenerate|i:1671275014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a15ecda2a9d42d6ed774587182db8644ec8a4d2', '31.222.203.2', 1671275014, '__ci_last_regenerate|i:1671275014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763442793f4fe018dd163b45eba6fd0348f1f243', '45.120.39.89', 1671276687, '__ci_last_regenerate|i:1671276687;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671276074;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699944908d716593f11fcb2009113267f5b42943', '45.120.39.89', 1671277041, '__ci_last_regenerate|i:1671277041;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671276738;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a367725b6cb0fa36445a2bd25aefccef10f9964', '31.222.203.2', 1671276825, '__ci_last_regenerate|i:1671276825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bbc72a6298358c3e63a0bf5b72438c7c0e1e16a', '31.222.203.2', 1671276825, '__ci_last_regenerate|i:1671276825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e81a5728433ce38cc4f64f3ad5cf77aca393047', '31.222.203.2', 1671276825, '__ci_last_regenerate|i:1671276825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69be9826c5e19efe1f1bf7ab93ab385969d40df', '31.222.203.2', 1671276825, '__ci_last_regenerate|i:1671276825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ed0b405802baa396b71f1f56e1a5e1a20dde98', '31.222.203.2', 1671276825, '__ci_last_regenerate|i:1671276825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d4b65d749b13da18ae421738fab004e8809d66', '31.222.203.2', 1671276825, '__ci_last_regenerate|i:1671276825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2cf85f7c3cdf8b93980f3586e2cf85bcd96a84', '45.120.39.89', 1671277575, '__ci_last_regenerate|i:1671277575;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671277162;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5acc8546b2c804573e68ee6d5e4f89892708564e', '172.105.247.100', 1671277289, '__ci_last_regenerate|i:1671277289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('512b34c46d3254f23796f8a6f41ade9d1c47d605', '172.105.247.100', 1671277290, '__ci_last_regenerate|i:1671277289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71505dfef849e4184f6d9f20147f1bfaa5dc5724', '172.105.247.100', 1671277290, '__ci_last_regenerate|i:1671277290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7aa9da6f4b7fddef3112409ba748ebaba2dc0a0', '172.105.247.100', 1671277290, '__ci_last_regenerate|i:1671277290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26aaeb61c8c96d5ee4e1e271982ced743d019efd', '172.105.247.100', 1671277290, '__ci_last_regenerate|i:1671277290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483615d9080eb4e8530cb2e59b7665d98b9d8813', '172.105.247.100', 1671277290, '__ci_last_regenerate|i:1671277290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78220e8a32e207e9ae8fe59fffe930b64fddc87c', '172.105.247.100', 1671277291, '__ci_last_regenerate|i:1671277291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64a8f8dbe511a192264d4f41b438c1c9b22e0a16', '172.105.247.100', 1671277291, '__ci_last_regenerate|i:1671277291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7acf2b30f53e08d1d401a53711f9271070a17002', '172.105.247.100', 1671277291, '__ci_last_regenerate|i:1671277291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e59249145a37ddc9643bc6f045bed949870f3f9', '172.105.247.100', 1671277292, '__ci_last_regenerate|i:1671277292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46dc4a4bbda71b2f6d945d038d7893d4b2150991', '172.105.247.100', 1671277292, '__ci_last_regenerate|i:1671277292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f32c8cfffc9ade098ce23b6fcc51e143dea78b', '172.105.247.100', 1671277292, '__ci_last_regenerate|i:1671277292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6c201874c23f7a3644a2f9c1c3037da0b5cd3c', '172.105.247.100', 1671277293, '__ci_last_regenerate|i:1671277293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac120891003ade17566e47b66c813ebe306df051', '172.105.247.100', 1671277293, '__ci_last_regenerate|i:1671277293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01808af56c68201ab4c8cb727fe8a8164c2ca796', '172.105.247.100', 1671277294, '__ci_last_regenerate|i:1671277294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1707220b73e7944c774e09420ce3a9117b3a1c8', '172.105.247.100', 1671277294, '__ci_last_regenerate|i:1671277294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae3f70fb800070c4302938e349b01eca491ed64', '172.105.247.100', 1671277294, '__ci_last_regenerate|i:1671277294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa9c61e2dd37337fe48187f111f39bb49663ea7', '172.105.247.100', 1671277294, '__ci_last_regenerate|i:1671277294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e063cf06924c4318f8f46912cf04b268d9e2cca4', '172.105.247.100', 1671277295, '__ci_last_regenerate|i:1671277295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48fe3a314e364357d60aa6a9b223a2eb7dabfeb', '172.105.247.100', 1671277295, '__ci_last_regenerate|i:1671277295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575514b6a71888ebfddc4a69c6c7889c6db0da62', '172.105.247.100', 1671277295, '__ci_last_regenerate|i:1671277295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077432bd58f8a17f14d1f7c24bcd19e87154cf89', '172.105.247.100', 1671277296, '__ci_last_regenerate|i:1671277295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b4b26f643aac6c6d5e5934cba5491271274c8a', '172.105.247.100', 1671277296, '__ci_last_regenerate|i:1671277296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae27e855459c85dc12678e17fef0cc9b709cfafb', '172.105.247.100', 1671277296, '__ci_last_regenerate|i:1671277296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b345a9aedabc8eefe7101bdf700f7deec5f284a', '45.120.39.89', 1671278913, '__ci_last_regenerate|i:1671278913;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671277575;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fff0ed4d3642dbf1bed1ab62343b4e97d32d8a3', '31.222.203.2', 1671278599, '__ci_last_regenerate|i:1671278599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58265613ea204e8428877d64e26a336fed292f4', '31.222.203.2', 1671278599, '__ci_last_regenerate|i:1671278599;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cf57bf2547b83f935ac226819907311fadeddc', '31.222.203.2', 1671278599, '__ci_last_regenerate|i:1671278599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836e66465e40e0f01955eaea07bb3b03dff99317', '31.222.203.2', 1671278601, '__ci_last_regenerate|i:1671278601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46d0aa99593d087d21d39e1bc69eb65d93df5c65', '31.222.203.2', 1671278601, '__ci_last_regenerate|i:1671278601;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a2d90ca18f1eaa7fcb9ad62d245baced95927b', '31.222.203.2', 1671278601, '__ci_last_regenerate|i:1671278601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('022891a8db3b519682af9aa4b5334e29846dd846', '45.120.39.89', 1671279352, '__ci_last_regenerate|i:1671279352;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671279169;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86a3a7ffb9f0fd6229366cb7552bae43f62d934', '45.120.39.89', 1671282755, '__ci_last_regenerate|i:1671282755;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671279398;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5f5e6eb28a35b6f6b4a4d6ecbfb86f5c310b64', '31.222.203.2', 1671280417, '__ci_last_regenerate|i:1671280417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb90ebb567628774b46a04dd9e2ec1d07c0bb5a', '31.222.203.2', 1671280417, '__ci_last_regenerate|i:1671280417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf1558a07f239948450c6fe2046a326d392f7498', '31.222.203.2', 1671280418, '__ci_last_regenerate|i:1671280418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0339ff6e58ad7ad6751c11eea287468e0711404', '31.222.203.2', 1671280419, '__ci_last_regenerate|i:1671280419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c081d3a13c9cf71cebdf4073a13d140d828f328', '31.222.203.2', 1671280419, '__ci_last_regenerate|i:1671280419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e573b54c6e9ee132619d5a05bfdf8af1199a249', '31.222.203.2', 1671280419, '__ci_last_regenerate|i:1671280419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3788844ae40d75851b3e69e933f76adf86ec7a95', '31.222.203.2', 1671282201, '__ci_last_regenerate|i:1671282201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdef5abf3848e8edc5a92fc6298ab79d25a449a0', '31.222.203.2', 1671282201, '__ci_last_regenerate|i:1671282201;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dce2454749dec308e6b5b9bfec117c23b14da63', '31.222.203.2', 1671282201, '__ci_last_regenerate|i:1671282201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8742dd2aa8c5c0e1c1267a8304bbeffd9fc63946', '31.222.203.2', 1671282201, '__ci_last_regenerate|i:1671282201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f47c26393a7b174ce3eb3acfe1b2b006d27c43', '31.222.203.2', 1671282201, '__ci_last_regenerate|i:1671282201;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe211d122c79e01d58614660937229db649df23', '31.222.203.2', 1671282201, '__ci_last_regenerate|i:1671282201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96cfb546d2ba8d344b6c8b287e56f403aff84fd', '45.120.39.89', 1671286141, '__ci_last_regenerate|i:1671286141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671283733;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38bb624e19e42d1b75cfc33957e8da8e90d90534', '31.222.203.2', 1671284023, '__ci_last_regenerate|i:1671284023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952d313239b09766cd66ee1b333ba73609523f30', '172.105.247.100', 1671283292, '__ci_last_regenerate|i:1671283292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1eae2eb0d2378eb8b6034f0023439292b70c46', '172.105.247.100', 1671283292, '__ci_last_regenerate|i:1671283292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9a33cc25fa9b7dd3faa6b0f477ce0e151a215b', '172.105.247.100', 1671283293, '__ci_last_regenerate|i:1671283293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4912bb4c34d34e5b87aba7702620264a654211', '172.105.247.100', 1671283293, '__ci_last_regenerate|i:1671283293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f2ef11bda29f15ab5e944403a9ae4f7cb290e11', '172.105.247.100', 1671283293, '__ci_last_regenerate|i:1671283293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba74505c008198d0d21ab83681c7e7fe87ac69a', '172.105.247.100', 1671283293, '__ci_last_regenerate|i:1671283293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05345c280fa7691e36b07670adbd1c72bd63eaec', '172.105.247.100', 1671283294, '__ci_last_regenerate|i:1671283294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef36a1e46dde1a85aac495d445235012eb9d5ae6', '172.105.247.100', 1671283294, '__ci_last_regenerate|i:1671283294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c657f6cd846d19f7d2c3c534f7679ec32ef0007', '172.105.247.100', 1671283294, '__ci_last_regenerate|i:1671283294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe9673ddd9ac33c4554dff4247b97fadb1e1332e', '172.105.247.100', 1671283294, '__ci_last_regenerate|i:1671283294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc3da37a536da54356158ec61b00302f086af81', '172.105.247.100', 1671283295, '__ci_last_regenerate|i:1671283295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903ce69891a0612897634df4500b9fffaaf3d8b8', '172.105.247.100', 1671283295, '__ci_last_regenerate|i:1671283295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9323628eaecd6cb6ca459803e8eb48d02d7bc1f', '172.105.247.100', 1671283295, '__ci_last_regenerate|i:1671283295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d2c0eb41e49a216b16563626d002139d9b320be', '172.105.247.100', 1671283295, '__ci_last_regenerate|i:1671283295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d092f156e90ee2bdb88f73952f641f00d143b67', '172.105.247.100', 1671283295, '__ci_last_regenerate|i:1671283295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e953bd5ca29e55c9d5f5b5308116d798299f30', '172.105.247.100', 1671283296, '__ci_last_regenerate|i:1671283296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b7c23ddf2342afc45b3304c21732a3ce7b97ba', '172.105.247.100', 1671283296, '__ci_last_regenerate|i:1671283296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5141059e88abe025c325a00a9c13508f9e5016e4', '172.105.247.100', 1671283296, '__ci_last_regenerate|i:1671283296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8220307766205358f7e07a36f860aac7a25d7c', '172.105.247.100', 1671283296, '__ci_last_regenerate|i:1671283296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40068fcd23bc2cd02d7d0f5766c551f50bbbaddb', '172.105.247.100', 1671283297, '__ci_last_regenerate|i:1671283297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696be1340f4106cb85c371a25d52bc3a66b9dcd5', '172.105.247.100', 1671283297, '__ci_last_regenerate|i:1671283297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5050b19a5e182729cb142f167887b1dd94c5ee03', '172.105.247.100', 1671283297, '__ci_last_regenerate|i:1671283297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70087c502a38653d83ddca25d195dbf944e7b1c6', '172.105.247.100', 1671283298, '__ci_last_regenerate|i:1671283298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438fffdd861b14f5d74300f4289ffbb24ea5da9d', '172.105.247.100', 1671283298, '__ci_last_regenerate|i:1671283298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78806e6f4a0e2c5f98d63b155193cd687a79bdb', '45.120.39.89', 1671283834, '__ci_last_regenerate|i:1671283834;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"new\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671283834;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cead7ac6ce6996e6d0dd6e8ead5f3056a508370', '31.222.203.2', 1671284023, '__ci_last_regenerate|i:1671284023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b2172758d4b787c48aa501e0da739da8910fe6', '31.222.203.2', 1671284023, '__ci_last_regenerate|i:1671284023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e908c2cd300df70ebb403b7a7230e4cbfb2be250', '31.222.203.2', 1671284025, '__ci_last_regenerate|i:1671284025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62302e6a71921c58413a704afcbc9682fc2c38e1', '31.222.203.2', 1671284025, '__ci_last_regenerate|i:1671284025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddef455dc9409a26c05868e65c46ad5251847bc', '31.222.203.2', 1671284025, '__ci_last_regenerate|i:1671284025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a994bdd894a3b1d7d7fa593c7c27a8f88e9ccbc3', '31.222.203.2', 1671285794, '__ci_last_regenerate|i:1671285794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a23fe2b8865a8f4cb823db17b09604facdb53aa', '31.222.203.2', 1671285794, '__ci_last_regenerate|i:1671285794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aaef6ad7952eb7aee1f628ee16400e68e4e2003', '31.222.203.2', 1671285794, '__ci_last_regenerate|i:1671285794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800f7c4527b13c3cddf6706f89500126868ce800', '31.222.203.2', 1671285794, '__ci_last_regenerate|i:1671285794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a426b547e00379006f57d0b542c3161571f3fea1', '31.222.203.2', 1671285794, '__ci_last_regenerate|i:1671285794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b95d9ecaae70fb1f48678fd099283834ad909c80', '31.222.203.2', 1671285794, '__ci_last_regenerate|i:1671285794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73053c3da755fd8d8fa85e5fd030e138809a501d', '45.120.39.89', 1671287030, '__ci_last_regenerate|i:1671287030;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671286169;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600fec8cc5b6d6d39da98821ffb23b245b389000', '37.111.218.164', 1671287827, '__ci_last_regenerate|i:1671287827;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671287820;register_id|s:3:\"282\";cash_in_hand|s:9:\"4290.0000\";register_open_time|s:19:\"2022-12-16 21:13:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e9dbe2cd2e1a1cc364106f76dab0256c61dc80a', '31.222.203.2', 1671287627, '__ci_last_regenerate|i:1671287627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcbe6eef00f2860881e4e1403d81986be8656c7e', '193.56.29.170', 1671287165, '__ci_last_regenerate|i:1671287165;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87280b4f18f94dcaec3b97564d31b85b07e4367', '193.56.29.170', 1671287174, '__ci_last_regenerate|i:1671287174;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096c1425ff839f3c2e572d606789fa0e839990a5', '31.222.203.2', 1671287627, '__ci_last_regenerate|i:1671287627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd014962954920d84ad3fea44a94270e0c5557e', '31.222.203.2', 1671287627, '__ci_last_regenerate|i:1671287627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910c0dcc7562b53bca8e791a16761b05f8a4b830', '31.222.203.2', 1671287627, '__ci_last_regenerate|i:1671287627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f84fbbe1ea7ac8335cd6b3c530488c19a26209b', '31.222.203.2', 1671287627, '__ci_last_regenerate|i:1671287627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e4eeaea8e028ed4143891f0b6f2dede33d0cdf', '31.222.203.2', 1671287627, '__ci_last_regenerate|i:1671287627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d570c4561b18f705adb277fd2a7214e0a7e32de9', '37.111.218.164', 1671287856, '__ci_last_regenerate|i:1671287827;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671189952\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671287856;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44244572590a450a3a4b35a06ca548f3f8c8e90b', '172.105.247.100', 1671289290, '__ci_last_regenerate|i:1671289290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ab8ebd2d6e2cf7d0a90fc807981d91d2ddea74', '172.105.247.100', 1671289292, '__ci_last_regenerate|i:1671289292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be85470322f085c56028a7e852e39e3ad6a60bb', '172.105.247.100', 1671289293, '__ci_last_regenerate|i:1671289293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f92f55a673eb4b5d2c52c4d2bcb8ce052d6c2aaa', '172.105.247.100', 1671289293, '__ci_last_regenerate|i:1671289293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7212acfd0c90af0fafd652f272e08c9977a8a5db', '172.105.247.100', 1671289293, '__ci_last_regenerate|i:1671289293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037d85e18c7b4971f8e7f310c1cc403c89b274e2', '172.105.247.100', 1671289293, '__ci_last_regenerate|i:1671289293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc363a27289e68c64fc11f25d416d53f71983bb2', '172.105.247.100', 1671289293, '__ci_last_regenerate|i:1671289293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f23b87755f532619da8378020513ac18d06158', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daafd7c59458eee0c2613dcd6fcb74fb10274b9d', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236b65b59e8a5b5bb01e9bc31eb2eea3443fea25', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b612a7ec72c586f1f4104a322606fd898937a5', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc28835d41ab2ea84cefc477134d1d639e466f71', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05c25601ea157cdc964bf7a174d3570132e870e', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6904a230ae8e2531c04bc16ced7df0e9d1cd5eee', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d9cc4148516022dc81a9262f0d7f2e7b312a86', '172.105.247.100', 1671289294, '__ci_last_regenerate|i:1671289294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a00844db93207f719830797d5d9109199a3b4b2', '172.105.247.100', 1671289295, '__ci_last_regenerate|i:1671289295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1159e3d76c034fc525b2ca2e5bb866e87cdc57', '172.105.247.100', 1671289295, '__ci_last_regenerate|i:1671289295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81495188344c4c1f3aeeed49e84753597d4d7789', '172.105.247.100', 1671289295, '__ci_last_regenerate|i:1671289295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feccbb3e2e7df110c7c82f5826d8a77b4fe74ff1', '172.105.247.100', 1671289295, '__ci_last_regenerate|i:1671289295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2dd909feff96252abd1bdda9b3c4f58dd236224', '172.105.247.100', 1671289295, '__ci_last_regenerate|i:1671289295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29a09eb7a4ea39df9f9f4bb58f4964bc437a3dc', '172.105.247.100', 1671289295, '__ci_last_regenerate|i:1671289295;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3bbd63054f9790e2ee0f21aba11caeb1b29bfd', '172.105.247.100', 1671289296, '__ci_last_regenerate|i:1671289295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371bf6a164da4275016e99308e9d9ea41d7e76e7', '172.105.247.100', 1671289296, '__ci_last_regenerate|i:1671289296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70ad5f6b5eda108d369ef056678d67c6a76c678', '172.105.247.100', 1671289296, '__ci_last_regenerate|i:1671289296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd9dee58ef3d690b423e198f352d50b219bc752', '31.222.203.2', 1671289394, '__ci_last_regenerate|i:1671289394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377c8c042f641e87e412c0f440f94c07052e1d9f', '31.222.203.2', 1671289394, '__ci_last_regenerate|i:1671289394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4efa93f4e7703de3fcd7942559b401dfaaaa4e', '31.222.203.2', 1671289394, '__ci_last_regenerate|i:1671289394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d91d274f68c55fee60d04a194c7fe027fa425c6', '31.222.203.2', 1671289394, '__ci_last_regenerate|i:1671289394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a61b2645abe83ad7b32c51f1f684e27444af16', '31.222.203.2', 1671289394, '__ci_last_regenerate|i:1671289394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3112245c48cc6a395e587db795ca3da7659fe5', '31.222.203.2', 1671289394, '__ci_last_regenerate|i:1671289394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee386a8e9a089f2fcc95e31e5fba423dc846cd1', '177.55.124.62', 1671290290, '__ci_last_regenerate|i:1671290290;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5074b86c0e8b15f21244b873356526ad575990', '177.55.124.62', 1671290290, '__ci_last_regenerate|i:1671290290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b032f07d112f3f3a1e5516e6fb6f9a0bf7cb49', '177.55.124.62', 1671290291, '__ci_last_regenerate|i:1671290291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05584119916e449f496cb147299bd9a449d34a09', '177.55.124.62', 1671290291, '__ci_last_regenerate|i:1671290291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1746590a88f35eb00c3a4de2841dbabdd09a6e15', '31.222.203.2', 1671291221, '__ci_last_regenerate|i:1671291221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b30d093a044785e17bf6af87235fd743398698', '31.222.203.2', 1671291221, '__ci_last_regenerate|i:1671291221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0617fb377c53922a3e97be51e204989d387e1562', '31.222.203.2', 1671291221, '__ci_last_regenerate|i:1671291221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e208c5e8af10e06f04d7a10161480de50323b3d', '31.222.203.2', 1671291221, '__ci_last_regenerate|i:1671291221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6eb0e239047e0f8f1854b0e7e76aed47a72b72f', '31.222.203.2', 1671291221, '__ci_last_regenerate|i:1671291221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bafd6ac6f1cd2b2a9acbf0062a9333be328016d', '31.222.203.2', 1671291221, '__ci_last_regenerate|i:1671291221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f090a9726bd8f13a357d6acbd2e5d9a08f946f66', '31.222.203.2', 1671293024, '__ci_last_regenerate|i:1671293024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733e1b94b69debac606af185ddf2df3aeb6c58ea', '31.222.203.2', 1671293024, '__ci_last_regenerate|i:1671293024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad623eef07eda5b00d0dede59a2e98ef2ad68c38', '31.222.203.2', 1671293024, '__ci_last_regenerate|i:1671293024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76739abc722d2af0b46f3d5a4b0863730b88d71', '31.222.203.2', 1671293024, '__ci_last_regenerate|i:1671293024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0afb21298a4a6d4c238e6b83765550cf85fc4b', '31.222.203.2', 1671293024, '__ci_last_regenerate|i:1671293024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df4a166f8195314cf42315da4337698e2a0e945', '31.222.203.2', 1671293024, '__ci_last_regenerate|i:1671293024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19cbd3087c2d26f19964723b6551582203bf2bc0', '172.105.247.100', 1671294683, '__ci_last_regenerate|i:1671294683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60ae4e0bd96cdee032589135b2545059df7fc87', '172.105.247.100', 1671294683, '__ci_last_regenerate|i:1671294683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40576184704100a5bc73dafb6d5c5b5c940dafde', '172.105.247.100', 1671294684, '__ci_last_regenerate|i:1671294684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9dd4989a798ef6a6d75bd0d32a31c963aaf3c9', '172.105.247.100', 1671294684, '__ci_last_regenerate|i:1671294684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1006f98290bf5aaaf0e894410f712b0d64fe9546', '172.105.247.100', 1671294684, '__ci_last_regenerate|i:1671294684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec548cd4f5a53e06eb305c5c03b920ba684f75e6', '172.105.247.100', 1671294684, '__ci_last_regenerate|i:1671294684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('594d0ba02cff2ae09c8d13b7b59326a4e9d34c65', '172.105.247.100', 1671294685, '__ci_last_regenerate|i:1671294685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32584557cdb5a280033ecf44394a842742561009', '172.105.247.100', 1671294685, '__ci_last_regenerate|i:1671294685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f9fc896d7b38c113539a2aa18ba90e32d7def2', '172.105.247.100', 1671294685, '__ci_last_regenerate|i:1671294685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4330a7e7cdf59ac4d0be010538e7152117eaffc1', '172.105.247.100', 1671294685, '__ci_last_regenerate|i:1671294685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def8f6e3f19266f8b11a4eac25d70a28df19a7ae', '172.105.247.100', 1671294685, '__ci_last_regenerate|i:1671294685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b9ed0f29a7df5e05ab35398f307ac551409718', '172.105.247.100', 1671294686, '__ci_last_regenerate|i:1671294686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fd0c3ff9a0eb93e988948c35c2607edc82c9ae', '172.105.247.100', 1671294686, '__ci_last_regenerate|i:1671294686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9493c476b1708d1e186d9ea339b4911c7a755a6d', '172.105.247.100', 1671294686, '__ci_last_regenerate|i:1671294686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2077e1a281518405e012702b17a4db1eb8dd31', '172.105.247.100', 1671294686, '__ci_last_regenerate|i:1671294686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8596f5de5e97055ba33304e606a8c02ff438c1', '172.105.247.100', 1671294686, '__ci_last_regenerate|i:1671294686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aab542f20a62561231304b5bf9b710446da91dc', '172.105.247.100', 1671294686, '__ci_last_regenerate|i:1671294686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b843ff31b76de643a625c48144e9f9a530fbca', '172.105.247.100', 1671294687, '__ci_last_regenerate|i:1671294687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba378705f8f4b18310327314396a4967bc961ab', '172.105.247.100', 1671294687, '__ci_last_regenerate|i:1671294687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d47177b4f407adda10e957c2b44031e56757cc', '172.105.247.100', 1671294687, '__ci_last_regenerate|i:1671294687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec088a4c85db5ce4e149b430bca3835ca8aa554', '172.105.247.100', 1671294688, '__ci_last_regenerate|i:1671294688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea15bedaa6416077ce07c6b8f35c79b6a8c498f6', '172.105.247.100', 1671294688, '__ci_last_regenerate|i:1671294688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c977d39893556601355368b034e21a7a09a29b40', '172.105.247.100', 1671294688, '__ci_last_regenerate|i:1671294688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9690877c0ee50e6ec187f97f7822e38c612694c', '172.105.247.100', 1671294688, '__ci_last_regenerate|i:1671294688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('055efb2e8e26ec11ed372c044ac470497c5b668a', '31.222.203.2', 1671294817, '__ci_last_regenerate|i:1671294817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0970dc7725b108671a07036a6eaf59de05e4350', '31.222.203.2', 1671294817, '__ci_last_regenerate|i:1671294817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d41116bf7c7c7e2d1e605dbc9067e3dd684d594', '31.222.203.2', 1671294817, '__ci_last_regenerate|i:1671294817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d6175eb4c87d14d1b7e47a384cd820f077913a', '31.222.203.2', 1671294817, '__ci_last_regenerate|i:1671294817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb6364078c03b84f74cc4ba64245afa6fc740d4', '31.222.203.2', 1671294817, '__ci_last_regenerate|i:1671294817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('473e8018d0e50f931b7bd14a6b717ae218595d18', '31.222.203.2', 1671294817, '__ci_last_regenerate|i:1671294817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1778933f57a60f44660fa04a23816d3973456983', '198.235.24.36', 1671296162, '__ci_last_regenerate|i:1671296162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a453314101500b08eb4bd138323a2c28959baa01', '198.235.24.36', 1671296164, '__ci_last_regenerate|i:1671296164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4664a077008f05787ca299d46120b6087f2fd08', '198.235.24.36', 1671296164, '__ci_last_regenerate|i:1671296164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9910f9bd35fcd29cef569cb9ceab3f60ac98de0', '31.222.203.2', 1671296618, '__ci_last_regenerate|i:1671296618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86977f3af8c95ff7dd07773a9a128d473159f058', '31.222.203.2', 1671296618, '__ci_last_regenerate|i:1671296618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2f91361048d66be4b7e14fe2251dd52f94b836', '31.222.203.2', 1671296618, '__ci_last_regenerate|i:1671296618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100fec5c8afded269a65d5d58925b5e7d762e7e2', '31.222.203.2', 1671296620, '__ci_last_regenerate|i:1671296620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ad36e773e4424f9dc39aabb7a3da3f8971fbdd', '31.222.203.2', 1671296620, '__ci_last_regenerate|i:1671296620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1083a5f7bf50066a675cb157496c9fd702bab3f0', '31.222.203.2', 1671296620, '__ci_last_regenerate|i:1671296620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a432c3b5d46f5d4e519f549591ca0525aa2ef79', '205.210.31.183', 1671298251, '__ci_last_regenerate|i:1671298251;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f95a3c5773051bf74e80486e0c34f7d38ff0e98', '205.210.31.183', 1671298252, '__ci_last_regenerate|i:1671298252;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd39de3b72104f0c8773ad73a825e025a149c50a', '205.210.31.183', 1671298252, '__ci_last_regenerate|i:1671298252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86aae0cc226e2de560ec70af840a7f0b9402111b', '31.222.203.2', 1671298421, '__ci_last_regenerate|i:1671298421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cecc1904a8b09528aa722b689142c004f924e95', '31.222.203.2', 1671298421, '__ci_last_regenerate|i:1671298421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c761c753864cbded93ac5db9afedd5e5bcef35d3', '31.222.203.2', 1671298421, '__ci_last_regenerate|i:1671298421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4996ad4e9f9f9fc74777a8bae3d1adfc9f425c36', '31.222.203.2', 1671298421, '__ci_last_regenerate|i:1671298421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ab38c7b91dd94303bc40aceb1cc6c8cf48e96d', '31.222.203.2', 1671298421, '__ci_last_regenerate|i:1671298421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4d9d4ed9f036d7f5f5bf845cc00acd727c2f4e', '31.222.203.2', 1671298421, '__ci_last_regenerate|i:1671298421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83ef65fda636b906c1f5469b603a506bb4022a7', '172.105.247.100', 1671299488, '__ci_last_regenerate|i:1671299488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277c12eba45b613a7153a1a9f2b97e35b366f314', '172.105.247.100', 1671299488, '__ci_last_regenerate|i:1671299488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77466ae961d7f640ffdabddc8a6b54e82cea297c', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64571ff997ce750f3563658f88639dba3040f2cd', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21ca2fd203ab0714bbc19edd4e51daf8ef9beea', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d41131dc7b6f9252082cf5d67b1625b8eda053a', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939aab187413f721e5bb6ab505be15fc43ffd476', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d517d82367ed1600c5919a4dc4787ec010b26e15', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c152fb1b3b20ecffc374c003cb20be0d49730d', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d64b57405a950fae3451e0385542a82e844b4a3d', '172.105.247.100', 1671299491, '__ci_last_regenerate|i:1671299491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3964846532b4ddde59675874debd519516c284e6', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6c08b13e1e5c04fdb99d378679301419c1892b', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ff6aee1ae7a252454747c04f110968baee6309', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789bb5ed3139232cc9513ef4fb8dadee1d5954a7', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a347d02cc83f65aff75526bde1dc72d4f672e6b', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e128e44d5a732d9232f7ca6a3a7e7023ef7b822', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce7a23441ebd0eec36e6d6b32e30fb650b8c3825', '172.105.247.100', 1671299492, '__ci_last_regenerate|i:1671299492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5d6e87a1ceae7013c75a6b7080135d00c96d04', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb46d8dd18d8b4609cf3cb2d2a1d8deb4abc1812', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bdbc4897c7d6191b4e397b24c3d118dee5c09d0', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0397d43aa55e550112cc5a39afdbd80e68dcdc', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389529de7c2639e6d0a72afc988b7d8074db0b09', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b10329435d0422c9474a5fbd673b2768f23989d', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f54f49ccfb2c06314ee6c8f0ff10e0e26f36ec4', '172.105.247.100', 1671299493, '__ci_last_regenerate|i:1671299493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53ac4c9b17773e6d2181ff12f86ecd1dc953a9a', '31.222.203.2', 1671300218, '__ci_last_regenerate|i:1671300218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7980316471ba332fbc333320dc59b58d2d98d525', '31.222.203.2', 1671300218, '__ci_last_regenerate|i:1671300218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe17495c7a162e50b06921495f8987ec48747e18', '31.222.203.2', 1671300218, '__ci_last_regenerate|i:1671300218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c143a98d85de00c4fa25d2dfe3676d9b24a17f4', '31.222.203.2', 1671300218, '__ci_last_regenerate|i:1671300218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77239041be22e869df1f99144589b3c5de49e4fd', '31.222.203.2', 1671300218, '__ci_last_regenerate|i:1671300218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3258d007a6372cecd87361940f2533366c3f89c3', '31.222.203.2', 1671300218, '__ci_last_regenerate|i:1671300218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2fa8615818a08903e93c68062db809a8d6eb642', '31.222.203.2', 1671302022, '__ci_last_regenerate|i:1671302022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587ad6446e7f490348e0a6bfb4a694c8def2a4af', '31.222.203.2', 1671302022, '__ci_last_regenerate|i:1671302022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16f7bc9a59166c11401bee6b27ad34102306bd2', '31.222.203.2', 1671302022, '__ci_last_regenerate|i:1671302022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a222d7cf0e1f3c8abd119783bf3464d6daa5ac59', '31.222.203.2', 1671302024, '__ci_last_regenerate|i:1671302024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67501007fa8c781720d9dcf46d0a03bee084e2b9', '31.222.203.2', 1671302024, '__ci_last_regenerate|i:1671302024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d9a8289bc0f8ccf1bcd02ccf5a0661990cc5bb', '31.222.203.2', 1671302024, '__ci_last_regenerate|i:1671302024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367af6890e369fc34021ab26bee7449592c021fe', '31.222.203.2', 1671303817, '__ci_last_regenerate|i:1671303817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f796e73c7767082f4aee3413fad2a5ba48b130bb', '31.222.203.2', 1671303817, '__ci_last_regenerate|i:1671303817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83fa036f2ed06d3ee93bbc0541ab8088efedcd3f', '31.222.203.2', 1671303817, '__ci_last_regenerate|i:1671303817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b539c527971db63db2120c90ab703a1950f465', '31.222.203.2', 1671303819, '__ci_last_regenerate|i:1671303819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e25e77e03e538aa8cb519416be759526369d15f', '31.222.203.2', 1671303819, '__ci_last_regenerate|i:1671303819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef18f50802b20f6521cc2409f964fda25d26d3aa', '31.222.203.2', 1671303819, '__ci_last_regenerate|i:1671303819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f95ef691a29290722a1fba736463607fe789a2c', '172.105.247.100', 1671304284, '__ci_last_regenerate|i:1671304284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e060ada4b02b9316e8407ce0f6b6ab0426953c', '172.105.247.100', 1671304284, '__ci_last_regenerate|i:1671304284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39ed1df2c06560972e513aadddb9b0fcfdf1603', '172.105.247.100', 1671304284, '__ci_last_regenerate|i:1671304284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5dbd647ac36043707be076a5f69774b42f294b', '172.105.247.100', 1671304284, '__ci_last_regenerate|i:1671304284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c966f600466e82bc4afd0a0f5e5f8e94d8bc23', '172.105.247.100', 1671304284, '__ci_last_regenerate|i:1671304284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('152b7649151ac7c48032929cb6117b22a3b47bda', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21137b54fdd66db71b6766f95622aba7c5da0275', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983ef6061dfdaaa8d15ee1f0ab1160df3e4e5af7', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cd8d7f1557ac8ad0ce6320243252b1afcb92e1', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3ba351c469303ad8f481f6d4d23b999e260ad4', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06402177214857a8c5f192ec8575b018aed96e89', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372d70e36f88bf3cfc2ab69eb68b6b67041ced41', '172.105.247.100', 1671304285, '__ci_last_regenerate|i:1671304285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a6fd906bd54b8a3cfb3f1c2512c745b002af46', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbcb3dcb03b2c9e179d49ad89d929e6fbe3b961', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c13f812afc2211256d62cb73a2e4fdb0cc3022', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd15f0e7a515bdedfde329fe88177bf0b718619', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c162b6eaa1f9dfbd882eb30d127441f993ab5183', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f61df1bf222d8eefb4a676bd4fa050209fe6af', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e1f666c6ff9046ab6aa6ef7907bee19814bdc6', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194399c637e8926bdd564e6973b5ae02328fa415', '172.105.247.100', 1671304286, '__ci_last_regenerate|i:1671304286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113ae92617201ca9721c71b6fce55d8947868554', '172.105.247.100', 1671304287, '__ci_last_regenerate|i:1671304287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b437b04cfad747bb52ee008ec9b4030a54f610', '172.105.247.100', 1671304287, '__ci_last_regenerate|i:1671304287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('022adbbd7757829b78dcc9653c3d399f7cb7c251', '172.105.247.100', 1671304287, '__ci_last_regenerate|i:1671304287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495df79c93419a4a8dd7395208975bfdca2499bd', '172.105.247.100', 1671304287, '__ci_last_regenerate|i:1671304287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed741f09da4aa444443b517c460defde890e461', '31.222.203.2', 1671305623, '__ci_last_regenerate|i:1671305623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7c75a39f7fbe5ab51fb9e597fb0905d1a57e6d', '31.222.203.2', 1671305623, '__ci_last_regenerate|i:1671305623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3ea389dde1c81200a37e802ec52d6022ea8c56', '31.222.203.2', 1671305623, '__ci_last_regenerate|i:1671305623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d856c7f55e39b8a6865a84948ce7eb7c5af0c1a3', '31.222.203.2', 1671305624, '__ci_last_regenerate|i:1671305624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bb8b7cded2bb3c92534345e3f1bea7ac932645', '31.222.203.2', 1671305624, '__ci_last_regenerate|i:1671305624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0336de55dd731cf0e82114fba0fbe5c724bfd0b6', '31.222.203.2', 1671305624, '__ci_last_regenerate|i:1671305624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c8a209a153b97f2525b000b1546880bb9b6b17', '31.222.203.2', 1671307401, '__ci_last_regenerate|i:1671307401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c2f7bcd4f40edab97d402ff966ec042b1046bc', '31.222.203.2', 1671307401, '__ci_last_regenerate|i:1671307401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7207400e180a854996f1f7f2efedbd263b650c28', '31.222.203.2', 1671307401, '__ci_last_regenerate|i:1671307401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6fe37a96e662a026e6e56e1d30129b1a6e342c0', '31.222.203.2', 1671307403, '__ci_last_regenerate|i:1671307403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276ee62b9c65861e2dbc17887869411c16c8bbb0', '31.222.203.2', 1671307403, '__ci_last_regenerate|i:1671307403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3dc7b8d8d537ed9ad18790b0b788bd2e7e67223', '31.222.203.2', 1671307403, '__ci_last_regenerate|i:1671307403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f2f046e22307a40f5023d66b558a75093d602b9', '172.105.247.100', 1671309083, '__ci_last_regenerate|i:1671309083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf6f0a4f23e42f048cded3d8f1f1ecdd744b4b5f', '172.105.247.100', 1671309084, '__ci_last_regenerate|i:1671309084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321b76f2fead9d62e38c97bdd4d06ab7d1e4d575', '172.105.247.100', 1671309084, '__ci_last_regenerate|i:1671309084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9dccbaae26d9f1c8ac65a37f7518fa7405839a', '172.105.247.100', 1671309085, '__ci_last_regenerate|i:1671309084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04eae398085b79cfd2c61e9513694ec3983f8faa', '172.105.247.100', 1671309085, '__ci_last_regenerate|i:1671309085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a7b2ba66116acb0573081e0534dc9123bbf2d8', '172.105.247.100', 1671309085, '__ci_last_regenerate|i:1671309085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82bb5b3024be31d424d686415e7a4eb19cbb1e63', '172.105.247.100', 1671309085, '__ci_last_regenerate|i:1671309085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25500a3d66968e9dc5acf47280f08a9f42bd27ad', '172.105.247.100', 1671309086, '__ci_last_regenerate|i:1671309085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb77ccfbf57ff1ce0e293ada18a621557e0f55d0', '172.105.247.100', 1671309086, '__ci_last_regenerate|i:1671309086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e470a4cfdda44e04d90825f100365bb4e05e235', '172.105.247.100', 1671309086, '__ci_last_regenerate|i:1671309086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b8364298677c3cd1f90e707e650df66d17932e', '172.105.247.100', 1671309086, '__ci_last_regenerate|i:1671309086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3d151d9bc35dd733a2ba15ea61ae4359d68eb2', '172.105.247.100', 1671309086, '__ci_last_regenerate|i:1671309086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd60ae576c65e2b87027bec3a05adf8d6594370', '172.105.247.100', 1671309086, '__ci_last_regenerate|i:1671309086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435b5088dfd0fdad0862fe5c3a77e950dec18a8b', '172.105.247.100', 1671309087, '__ci_last_regenerate|i:1671309087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e5a0bec72bd8171de1a46bb85899b1bcdbcd4a', '172.105.247.100', 1671309087, '__ci_last_regenerate|i:1671309087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1570de953548f802b8b3242e8780aaf36a9ed3e', '172.105.247.100', 1671309087, '__ci_last_regenerate|i:1671309087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e069a6774776e32d968d995941fe02f087a0e4c9', '172.105.247.100', 1671309087, '__ci_last_regenerate|i:1671309087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc63205c377e3bc827e0554d2928456ac9956d9', '172.105.247.100', 1671309087, '__ci_last_regenerate|i:1671309087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b326bd8a6c69ca8a778aa7753847e52bfa000e', '172.105.247.100', 1671309088, '__ci_last_regenerate|i:1671309088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec6c6f4092d42d26c5063dc63aedb108f3d2310', '172.105.247.100', 1671309088, '__ci_last_regenerate|i:1671309088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25de9e7d10a31fbe64999a50ffcbdb73719a76f3', '172.105.247.100', 1671309088, '__ci_last_regenerate|i:1671309088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4030821d942acb2a0100939c745e8ba7d02151db', '172.105.247.100', 1671309088, '__ci_last_regenerate|i:1671309088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d0e5a35875b8a726ec846127712a8fb7fa3a54', '172.105.247.100', 1671309089, '__ci_last_regenerate|i:1671309089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4216b663b5b4c22741c4aaf21820783672b5b6', '172.105.247.100', 1671309089, '__ci_last_regenerate|i:1671309089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f57a95ef41efd3598686276a775fc9005304f69', '31.222.203.2', 1671309223, '__ci_last_regenerate|i:1671309223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a87ba2e371d8138cee86c71b47b405d5f2bb5a7e', '31.222.203.2', 1671309223, '__ci_last_regenerate|i:1671309223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bf27ef5f49ae48a2f758e2d1b6069a2158b332', '31.222.203.2', 1671309223, '__ci_last_regenerate|i:1671309223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01ec48ed595140f41ccc6b11a9440c14ecf9d56', '31.222.203.2', 1671309225, '__ci_last_regenerate|i:1671309225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5caa0e06f5ff3f308c84f50c19bbb7f311411a46', '31.222.203.2', 1671309225, '__ci_last_regenerate|i:1671309225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20014866497c17d6bdadf9d5e5face7013c67b1', '31.222.203.2', 1671309225, '__ci_last_regenerate|i:1671309225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925c348e0b9a30ef8993b94047605ba1f5b4df2f', '31.222.203.2', 1671311015, '__ci_last_regenerate|i:1671311015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ae83d0ddabab0e2fe6018cd6ccc534894efe9c', '31.222.203.2', 1671311015, '__ci_last_regenerate|i:1671311015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25aac0a50ec9629c8fd7587319b9f3d22bab38d5', '31.222.203.2', 1671311016, '__ci_last_regenerate|i:1671311016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a123cb63b71c0e39a024d49aedadc7008205fce3', '31.222.203.2', 1671311017, '__ci_last_regenerate|i:1671311017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bf7045ae68ba6ca3805f1ef5edc5fd9e734313', '31.222.203.2', 1671311017, '__ci_last_regenerate|i:1671311017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4d287c8f999858b297694b2cddf6efc3fb52c3', '31.222.203.2', 1671311017, '__ci_last_regenerate|i:1671311017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420f3bc497965c40f53c1d267dc2768c5d8e8441', '31.222.203.2', 1671312821, '__ci_last_regenerate|i:1671312821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355a56460e5b41a72737429b38bf0f8c2def9fee', '31.222.203.2', 1671312821, '__ci_last_regenerate|i:1671312821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2974099b9de241779554bc3cb46e9ee0e0845a3', '31.222.203.2', 1671312821, '__ci_last_regenerate|i:1671312821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf49e759f6988132e301ec95d38200d98d5e77ac', '31.222.203.2', 1671312821, '__ci_last_regenerate|i:1671312821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d37d7b93ed6cf9e536e7799385f76d37541cab', '31.222.203.2', 1671312821, '__ci_last_regenerate|i:1671312821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73743f37165031ed7fce63ca76c27874477bc30c', '31.222.203.2', 1671312821, '__ci_last_regenerate|i:1671312821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045c7f9d2828ced9ace1f6d73acf5d27853ffbf1', '172.105.247.100', 1671313883, '__ci_last_regenerate|i:1671313883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1e4f8de3a51a602e1a6a2bbf4e68268ef77850', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80eb111614e13b48dee330a84af197cac7d29aee', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c564eadbe59506478d1fe9a5c3ef8359be86add1', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d36ff2415932c491ffa551da76f1dd4824b77a2', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f54aec12b48941b42a921f3cbed47ad52968577', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592f772a5ec56343251161a3de48153d373c2999', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a49f0285ae9249e21bfcfa32f9bc2e1816a28c7', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('059120e41ffbbcdd0967d867f5fa31b7a97a0aae', '172.105.247.100', 1671313886, '__ci_last_regenerate|i:1671313886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3632199ff09ecd04d009e2172984f1f4c10e1f', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396aa168b4d207984dc90c0b589d0a526678b246', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eeb08a05fd52b0e6e3e47d18e44776f6a3304fb', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e4f37329bedd4d6ab4d90db968fe457ab1c65f', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c308e4b3d72c9f58e59553c17673a0852a887db', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2dd720c6667b7ab40108eca0fc508c20818b09', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34719027a03ce43c41733e3f80efbd729ac6a287', '172.105.247.100', 1671313887, '__ci_last_regenerate|i:1671313887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a92d92003e7f499b4fb7e4532c4e6b3b7ab8488', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8c6ad58c2610764cfe72edebea3a9fab1f1cb5', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9119040316fa9857c07cd10562d900dca532ac4', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60cdd7625356b4ad8244cfc4d11038c8573d648', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522ea06e076b0d9af73091279ffc06b5308a156d', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('297be0ebb0bcc545f3869c99811bdc8394e6e7c4', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57ccb8fa4146b1cb51f0c26d64648f445d9e8e2', '172.105.247.100', 1671313888, '__ci_last_regenerate|i:1671313888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('267ade732cc51b6c8e3cc059973305662de57c29', '172.105.247.100', 1671313889, '__ci_last_regenerate|i:1671313888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01cbdcfcd9f5e62edcb286b9506e72a620b503f', '31.222.203.2', 1671314618, '__ci_last_regenerate|i:1671314618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721cf9d0acfafd17fc282515016050fb4e683f76', '31.222.203.2', 1671314618, '__ci_last_regenerate|i:1671314618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d55e899afe0a9394698a3ae7e50f3bcd19a43f', '31.222.203.2', 1671314618, '__ci_last_regenerate|i:1671314618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3418c3486bc3dc1cb9f0014c9eaf4f623a3b6a', '31.222.203.2', 1671314620, '__ci_last_regenerate|i:1671314620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe55f36a1667122913e8fab11cea4676fbbbdfd', '31.222.203.2', 1671314620, '__ci_last_regenerate|i:1671314620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65ede45b3975e387f1cf40f2cf123d4f538270d8', '31.222.203.2', 1671314620, '__ci_last_regenerate|i:1671314620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fa80f45b62d6a985fce99b59ede8f228dca340', '31.222.203.2', 1671316436, '__ci_last_regenerate|i:1671316436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94ae35d1970b2c6fd5f580feb10690a365b9d6f2', '31.222.203.2', 1671316436, '__ci_last_regenerate|i:1671316436;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e11c5466de7b0f511a89e91b14618ffc1a2266', '31.222.203.2', 1671316436, '__ci_last_regenerate|i:1671316436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d986d31c9d570cade619eb1f85e3c3acec7efed', '31.222.203.2', 1671316438, '__ci_last_regenerate|i:1671316438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4c202d38fb058b15d3aa08782998ef773757eb', '31.222.203.2', 1671316438, '__ci_last_regenerate|i:1671316438;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd459cd8f8ea537e1bb901dd8a55d4216030acd5', '31.222.203.2', 1671316438, '__ci_last_regenerate|i:1671316438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716ef7f94433e236aaf9e3119f845929abfc6148', '31.222.203.2', 1671318197, '__ci_last_regenerate|i:1671318197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc75b28892c49e91e33b7134969fa8595030992', '31.222.203.2', 1671318198, '__ci_last_regenerate|i:1671318198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b18e401800e2794b5b3c5ddc108717115522cd7', '31.222.203.2', 1671318198, '__ci_last_regenerate|i:1671318198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae10ad6647d09f8f885af14c07c04a448a5c72e', '31.222.203.2', 1671318198, '__ci_last_regenerate|i:1671318198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63ac18af5f3cbdf40f4f0041394c6a90b235336', '31.222.203.2', 1671318198, '__ci_last_regenerate|i:1671318198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74180103769b6e7cf3a5f6295ac8ce7f6b75273', '31.222.203.2', 1671318198, '__ci_last_regenerate|i:1671318198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d037d6c8bfb78d2e64f6708fdfc4fcba500ddc', '172.105.247.100', 1671318693, '__ci_last_regenerate|i:1671318693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8789b0214e52ec38777920561e6c3440d20206f3', '172.105.247.100', 1671318695, '__ci_last_regenerate|i:1671318695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8e84bc22d84eee50a01e165eb3972eb5ba7ff1', '172.105.247.100', 1671318695, '__ci_last_regenerate|i:1671318695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e00cfbe9f46d583e57a1f6436379c6766d45cc', '172.105.247.100', 1671318695, '__ci_last_regenerate|i:1671318695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887ad33abe4c73c20d8be9107005f8dea3009018', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac8412809763a8a0bd0fc2b4aba3c040c8f42d9', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be38f55b0d63277943a889fb02c1b83a516867c', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade29c571becd8fc339577d60f13a697ab6f7481', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ff966f7eebbf385c779c39e8728d5929bc5928', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169fd3b9f75723bcf83baa0b874679a29234cc63', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3761b9341f955a0c45692c2e6429d3e8eabd96a5', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43620784f5828a28f1697463045b289547764a00', '172.105.247.100', 1671318696, '__ci_last_regenerate|i:1671318696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eef4130984cdb3e4680f736d7bab7cbc893457d', '172.105.247.100', 1671318697, '__ci_last_regenerate|i:1671318697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c83085eb3866bdff76ff84004452f1dc09d598', '172.105.247.100', 1671318697, '__ci_last_regenerate|i:1671318697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41e7c0b17838ebce76eab079443b86556f61e88', '172.105.247.100', 1671318697, '__ci_last_regenerate|i:1671318697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d62364db9c29f3a4a9365f1a2319c25665f8ba', '172.105.247.100', 1671318697, '__ci_last_regenerate|i:1671318697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aec406a87fd476303ee7b2431328a65285c92f7', '172.105.247.100', 1671318697, '__ci_last_regenerate|i:1671318697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486ae8ff53220b11cd3469d2c337a1ea512ad608', '172.105.247.100', 1671318697, '__ci_last_regenerate|i:1671318697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c69863d9cb99c61cafbf79c7333e7ba468966f', '172.105.247.100', 1671318698, '__ci_last_regenerate|i:1671318697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2faa74c30c980bd7b78adcf87e1b26597d09e1', '172.105.247.100', 1671318698, '__ci_last_regenerate|i:1671318697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('960e6dfbe1a25f6b53ce645487d416a04d84465c', '172.105.247.100', 1671318698, '__ci_last_regenerate|i:1671318698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06bdad28457ebf88c0602cd56fcab961d5f0931b', '172.105.247.100', 1671318698, '__ci_last_regenerate|i:1671318698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8055a93f9d02f6e97c75c90d740ba64478424c6', '172.105.247.100', 1671318698, '__ci_last_regenerate|i:1671318698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f3596cfc620d26d8be42679f9ec982a158d59d', '172.105.247.100', 1671318698, '__ci_last_regenerate|i:1671318698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82c2e9005bb2d5d080b7f5c94001caf63618977', '31.222.203.2', 1671320026, '__ci_last_regenerate|i:1671320026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d5f09253798dff7ec8fece0f8f9bf438205994', '31.222.203.2', 1671320026, '__ci_last_regenerate|i:1671320026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c050be6d077ccd99c00e29d3f18185618fc6e57', '31.222.203.2', 1671320026, '__ci_last_regenerate|i:1671320026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe0cb0384995794e5dec0a1dbc3ac9f1d519eac', '31.222.203.2', 1671320027, '__ci_last_regenerate|i:1671320027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a157ce420502fd1a2218354afcc24935d7ac97', '31.222.203.2', 1671320027, '__ci_last_regenerate|i:1671320027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac06394c8637bbf0b0cfa1beeb579580422ec53b', '31.222.203.2', 1671320027, '__ci_last_regenerate|i:1671320027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273b7ae1b516260eb3b3f929e753d5ce555d36b8', '31.222.203.2', 1671321823, '__ci_last_regenerate|i:1671321823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1e6ab7913b2b1047bdbf839788bfd138295384', '31.222.203.2', 1671321823, '__ci_last_regenerate|i:1671321823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d3f822fb91693229255f102ba2d9c63607f96c', '31.222.203.2', 1671321823, '__ci_last_regenerate|i:1671321823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28d05b81edec90e30b1d8e9a68d5b60cb12d07a', '31.222.203.2', 1671321824, '__ci_last_regenerate|i:1671321824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84ac745a9ae3a4270e70015a98972ad813063b0', '31.222.203.2', 1671321824, '__ci_last_regenerate|i:1671321824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b17bbb2ebe6db44f340294e751f9540e338a2fb', '31.222.203.2', 1671321824, '__ci_last_regenerate|i:1671321824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('951519a064e7161ee101cb288e8ec097bbed4996', '172.105.247.100', 1671323487, '__ci_last_regenerate|i:1671323487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff88b577d2aa46644b9ad302093aebb17d6a0d1b', '172.105.247.100', 1671323487, '__ci_last_regenerate|i:1671323487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea57eb797c99c9401bf693afeac714ffb6641415', '172.105.247.100', 1671323488, '__ci_last_regenerate|i:1671323488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a001ca3901ea528d33072a60b35dee8209557eae', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc720cab50e0236e19c6bc618b26c40b0a055c7', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34888de0e86e0c4361904ef754011c3a6b83e077', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('349ef0ede68e7f09bde34aa5a06e7917492ec2bc', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4edd0c9a29cbd116110319fea21e641511c7c0b7', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('216fab1dcf0b23a1efbb5309755eab8af04915bf', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b591b70b3532092d67e46ccac41c6d0057e52c95', '172.105.247.100', 1671323489, '__ci_last_regenerate|i:1671323489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d62b24f3fb6e75f90888f3ac409e12296235ed', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a72fba652ba3527ba5615b9cba97be24446842b', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f67cc22d8f4e3695782475c38082edafe4bb90b5', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c9caa246c99cdc8df4e83afff5bd1e6db0c59a4', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa024fa57a151226f4a93d2e0671ef31bae2e83a', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a773b9bbfbf385a6cf2607efb9c3d8278fb8a0aa', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7486bcaf4a46802c7807dabcbd3fd8429a7adede', '172.105.247.100', 1671323490, '__ci_last_regenerate|i:1671323490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b543d05407fe1528b8eb0d8b480b6f0191734f22', '172.105.247.100', 1671323491, '__ci_last_regenerate|i:1671323490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f734dbf8f2a281a4819d825718cfd4d3b17d0438', '172.105.247.100', 1671323491, '__ci_last_regenerate|i:1671323491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e5515cc0e64ef3031ffddfc56aa14da3b560fe', '172.105.247.100', 1671323491, '__ci_last_regenerate|i:1671323491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b2044d78a4db0b7de7c02a0633afca33839314', '172.105.247.100', 1671323491, '__ci_last_regenerate|i:1671323491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a498328b7afaba9294997e69ffdfb738ffd9eee6', '172.105.247.100', 1671323491, '__ci_last_regenerate|i:1671323491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8524f9bb277bbab61929c7264b4542bbc05636c2', '172.105.247.100', 1671323491, '__ci_last_regenerate|i:1671323491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdbb16928717ee7dc2e5997b9fbb8e1c2314527', '172.105.247.100', 1671323492, '__ci_last_regenerate|i:1671323492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab7888e6f614502c7d987a8fa24811d969f524e', '31.222.203.2', 1671323627, '__ci_last_regenerate|i:1671323627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b40ee837a761962a3b2ee863802fcd35ca019a', '31.222.203.2', 1671323627, '__ci_last_regenerate|i:1671323627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383fe5a7dfbb9c8eec4fd50c1ac152fce5bc7aa7', '31.222.203.2', 1671323627, '__ci_last_regenerate|i:1671323627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13dd72f64087f2892ee6c986e138e43b3755dd70', '31.222.203.2', 1671323627, '__ci_last_regenerate|i:1671323627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd988f5efd7a9e9b360dc115e179341fe620a2d', '31.222.203.2', 1671323627, '__ci_last_regenerate|i:1671323627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f11e75b29a4cbcb15a031bbf31143cdaed7c9104', '31.222.203.2', 1671323627, '__ci_last_regenerate|i:1671323627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b144b54c04b1a33036360a47578d5f875b75542', '31.222.203.2', 1671325418, '__ci_last_regenerate|i:1671325418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2558efc82770999665bee801410b04338238a8a1', '31.222.203.2', 1671325418, '__ci_last_regenerate|i:1671325418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06cf17433a07c508945bd2f51c57511b722d1dc2', '31.222.203.2', 1671325418, '__ci_last_regenerate|i:1671325418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48c1f4a45c1121443e5a8348ce9ba0bf8905028', '31.222.203.2', 1671325420, '__ci_last_regenerate|i:1671325420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daefc189a31055ef3f9a32f407d044d3af71556d', '31.222.203.2', 1671325420, '__ci_last_regenerate|i:1671325420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc4790d113f7b6c58aa69e47683b3ce883a0b42', '31.222.203.2', 1671325420, '__ci_last_regenerate|i:1671325420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95c09f5fdf475e3794483ef1d753c9f3470a109', '31.222.203.2', 1671327220, '__ci_last_regenerate|i:1671327220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae119362ef015b9ffe61b9cfca67121293eff25', '31.222.203.2', 1671327223, '__ci_last_regenerate|i:1671327223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509b333470d95efe54a2025e619bc906d4a5f803', '31.222.203.2', 1671327223, '__ci_last_regenerate|i:1671327223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b62f084c9c0cf456c4ecce7c8ff28babeef05d3', '31.222.203.2', 1671327223, '__ci_last_regenerate|i:1671327223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a56b9a93d7abffc10e9e79a40f7cc989219f2f', '31.222.203.2', 1671327223, '__ci_last_regenerate|i:1671327223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154724175a81573d512cd790f09437cddc59fd7d', '31.222.203.2', 1671327223, '__ci_last_regenerate|i:1671327223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10adf7a332075e390e0eee4b4ee4de710cb66402', '172.105.247.100', 1671328284, '__ci_last_regenerate|i:1671328284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f079cdf8ee008a4d734565d97ae07c62f52c86', '172.105.247.100', 1671328284, '__ci_last_regenerate|i:1671328284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3035b951cb2612b6c61b6b8b6042e660da12af2', '172.105.247.100', 1671328284, '__ci_last_regenerate|i:1671328284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557cd19edc76e382de2f521430a6314038c1c7a9', '172.105.247.100', 1671328284, '__ci_last_regenerate|i:1671328284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8034fbba55e63135effa0d3da37122935566222f', '172.105.247.100', 1671328285, '__ci_last_regenerate|i:1671328285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3569784ffe54dfc9ac8159c5414bd49775a6fbf1', '172.105.247.100', 1671328285, '__ci_last_regenerate|i:1671328285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e4890f9e9c037843be0b4d890650e3d6ea5b65', '172.105.247.100', 1671328285, '__ci_last_regenerate|i:1671328285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e670b10083537762b1a409654e02833abed19360', '172.105.247.100', 1671328285, '__ci_last_regenerate|i:1671328285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e5dc2df796cfbaa0eb8be6fa21e8c477d182e7', '172.105.247.100', 1671328286, '__ci_last_regenerate|i:1671328286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d00599d1963413bcbde84e375b4977205336545', '172.105.247.100', 1671328286, '__ci_last_regenerate|i:1671328286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97754004c0ab0f8e4366476bfde89e33c2dda8fc', '172.105.247.100', 1671328286, '__ci_last_regenerate|i:1671328286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee63d06b73db31b7c0d008b70748908ddbbbb629', '172.105.247.100', 1671328286, '__ci_last_regenerate|i:1671328286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ee8d19efe4b22e22ff047a2c1fbc1743c01ad8', '172.105.247.100', 1671328286, '__ci_last_regenerate|i:1671328286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d641cfb5b475fe9661b4a581b4f41debedadf3', '172.105.247.100', 1671328287, '__ci_last_regenerate|i:1671328287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5895974e9f9da9bbef9d06aa495d8b40ea755b0', '172.105.247.100', 1671328287, '__ci_last_regenerate|i:1671328287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62dd334ccbc408072fc80ae220a7137e42d1e61', '172.105.247.100', 1671328287, '__ci_last_regenerate|i:1671328287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6ceedb6be52c6dc353308859a995f171e265de', '172.105.247.100', 1671328287, '__ci_last_regenerate|i:1671328287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672f8fdb5308f93979aff4dfbcce0203eae1bcae', '172.105.247.100', 1671328287, '__ci_last_regenerate|i:1671328287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40edc97d62f87bb257908383ce8750ff96d2a1c8', '172.105.247.100', 1671328287, '__ci_last_regenerate|i:1671328287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89fbe46ddf90338b8e0faca4136c6f0611a522e3', '172.105.247.100', 1671328288, '__ci_last_regenerate|i:1671328288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83a7fab05acae06491a14f3648771ce125d629aa', '172.105.247.100', 1671328288, '__ci_last_regenerate|i:1671328288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af271b790e31ad0ed7316a5312f74bb87020d398', '172.105.247.100', 1671328288, '__ci_last_regenerate|i:1671328288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ae56d7de7371c743aa022638db7dee4bdbcf95', '172.105.247.100', 1671328289, '__ci_last_regenerate|i:1671328289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c28d0e18d1b6f360951e7dde8645f5b567f28d9', '172.105.247.100', 1671328289, '__ci_last_regenerate|i:1671328289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47cbf6a18e831bfb6f0cb727cc83511fc6e0a686', '31.222.203.2', 1671329023, '__ci_last_regenerate|i:1671329023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1adab8224be33d981948cc264336f2cf659d15', '31.222.203.2', 1671329023, '__ci_last_regenerate|i:1671329023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9acd648c66081d1d3ca684a1e99a8c4f01e45a9e', '31.222.203.2', 1671329023, '__ci_last_regenerate|i:1671329023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc2d8bd26d85220b1117dbba49bd16cf7ac0a70', '31.222.203.2', 1671329023, '__ci_last_regenerate|i:1671329023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dff07af278f855505b9d9a97da18b079fa4a89b', '31.222.203.2', 1671329023, '__ci_last_regenerate|i:1671329023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0d7910a7f01d12effed6aad210bba9048a61d9', '31.222.203.2', 1671329023, '__ci_last_regenerate|i:1671329023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7980c6c416362bebe2c390c84eb4216c0dadbd1f', '31.222.203.2', 1671330815, '__ci_last_regenerate|i:1671330815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa76455d9de7152a514299d4b7263f0b08903e87', '31.222.203.2', 1671330815, '__ci_last_regenerate|i:1671330815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727a8d1181518301f6b89cd6ec80ed750376491a', '31.222.203.2', 1671330815, '__ci_last_regenerate|i:1671330815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd37a37c1c836c9f11f8813aa4f9ff53250ef30', '31.222.203.2', 1671330817, '__ci_last_regenerate|i:1671330817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a7f9aef8e46ca4691937684a7931f652ee3202', '31.222.203.2', 1671330817, '__ci_last_regenerate|i:1671330817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194200159488e778cef0243ea8922b33cba4f24f', '31.222.203.2', 1671330817, '__ci_last_regenerate|i:1671330817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398584d43889d5c6e4a6330ac56c9ffcc4e61c31', '31.222.203.2', 1671332622, '__ci_last_regenerate|i:1671332622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f2a234b97f068cacc76f1eab6c11b8fbb52b86', '31.222.203.2', 1671332622, '__ci_last_regenerate|i:1671332622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4172347e8deae22c11eb3a53cca9b7589daea81a', '31.222.203.2', 1671332622, '__ci_last_regenerate|i:1671332622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13d408367de4bab51bd83fe9e2639869a4afee0', '31.222.203.2', 1671332624, '__ci_last_regenerate|i:1671332624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f354a256aaff028f0659c64f196c6ced50e5ed1', '31.222.203.2', 1671332624, '__ci_last_regenerate|i:1671332624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c019b3fcc7646675e606ff3ab5446838b2a1193e', '31.222.203.2', 1671332624, '__ci_last_regenerate|i:1671332624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648c25da1584301d688d6a8f9eaaf37b32130f09', '172.105.247.100', 1671333080, '__ci_last_regenerate|i:1671333080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003fedcd7e19853cc5fa7ee2bb6ad9af8efea2d5', '172.105.247.100', 1671333080, '__ci_last_regenerate|i:1671333080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63ff3597b3a9457544560bd94c07c34958f39d4', '172.105.247.100', 1671333081, '__ci_last_regenerate|i:1671333081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a22ee48e61d0b9fb2e620f371f3a61517be1ff', '172.105.247.100', 1671333081, '__ci_last_regenerate|i:1671333081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb97009c05a0381ad5e40eda1d629fcbddc7c4e6', '172.105.247.100', 1671333081, '__ci_last_regenerate|i:1671333081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e4efc948c9475e4508e005191f2f3a77e88b5b', '172.105.247.100', 1671333081, '__ci_last_regenerate|i:1671333081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e0846ea8e1a8ded1bd512582c7f5ef102bdc00', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d609a575d913e4835ee0c9317daef3f8dcafa696', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c27806d14328106468f0be97f2024f87994364', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46ad0446b1287f0f56ec9db87c9873ec66c8c44', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423d820be570cb01556ef0951d1620a4a632f765', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210f021d67f4640d4b34c9876f79c861f7864ba6', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214444ace4f8b02ac953c102f00c0179164ff358', '172.105.247.100', 1671333082, '__ci_last_regenerate|i:1671333082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a1927d54632dafb2513006030a2b590977e6a6', '172.105.247.100', 1671333083, '__ci_last_regenerate|i:1671333083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5abf4d13b3af3ded8b46390fc3316f8e84e3e599', '172.105.247.100', 1671333083, '__ci_last_regenerate|i:1671333083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7a10e37c61fdb0af196c3b280dc2dbe3ce1839', '172.105.247.100', 1671333083, '__ci_last_regenerate|i:1671333083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3065141c2198c7999341d51d3c93710130123301', '172.105.247.100', 1671333083, '__ci_last_regenerate|i:1671333083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f3de6453b72839438b7dc094308032158b610b', '172.105.247.100', 1671333083, '__ci_last_regenerate|i:1671333083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef57cc3197b09fe08eb061dfbd48c41459ce9c4', '172.105.247.100', 1671333083, '__ci_last_regenerate|i:1671333083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b8e2ae232206effb3a8f90a64e9a3b2507dc4e', '172.105.247.100', 1671333084, '__ci_last_regenerate|i:1671333084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eecda99936d65b940630e05983a641567af19b50', '172.105.247.100', 1671333084, '__ci_last_regenerate|i:1671333084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb4950c2248e85e6dc6aa1b8f66bb0a350c22dc', '172.105.247.100', 1671333084, '__ci_last_regenerate|i:1671333084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e1c5a64f7f3347e42a322996887e5a7539f670', '172.105.247.100', 1671333085, '__ci_last_regenerate|i:1671333085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032f6bb090ced485d710697a25c4b979e15cd597', '172.105.247.100', 1671333085, '__ci_last_regenerate|i:1671333085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675a499a926b10bf0ebf1d55d131e6a3ac653dda', '31.222.203.2', 1671334426, '__ci_last_regenerate|i:1671334426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c26a903332d82bf10c74ea37a638f4fbdf758797', '31.222.203.2', 1671334426, '__ci_last_regenerate|i:1671334426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e94f6706eef073e77cc4d0fe85cfd9a977808af', '31.222.203.2', 1671334426, '__ci_last_regenerate|i:1671334426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15707a7ba76b64069a469adbd1665d40965a52de', '31.222.203.2', 1671334426, '__ci_last_regenerate|i:1671334426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa4e2551402ffb5b5730bf82b29b557fbd34fe7', '31.222.203.2', 1671334426, '__ci_last_regenerate|i:1671334426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58032c37c79cc81bcc4c5feec8973d13e8bd5355', '31.222.203.2', 1671334426, '__ci_last_regenerate|i:1671334426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('824526d5fbe85d1eceaa9f9287c979dea7dbb5b6', '31.222.203.2', 1671336220, '__ci_last_regenerate|i:1671336220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35228a2a7d5b9a8db0b107416296135b890f18fe', '31.222.203.2', 1671336220, '__ci_last_regenerate|i:1671336220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02190cfab5f0e9fa1f409183964760272ce31ded', '31.222.203.2', 1671336220, '__ci_last_regenerate|i:1671336220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6988c61cff9dc802237e4d3735f66854fad28fd', '31.222.203.2', 1671336222, '__ci_last_regenerate|i:1671336222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a9b6749799ccf2b27ec367d99c3f35d4fd318c', '31.222.203.2', 1671336222, '__ci_last_regenerate|i:1671336222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d8573f49d3eb25caef3d18e1ee58ed7f958148', '31.222.203.2', 1671336222, '__ci_last_regenerate|i:1671336222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d1aba1bd6f79de70cebccee8d66429cef9fa6e', '45.120.39.89', 1671336835, '__ci_last_regenerate|i:1671336835;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682b3ebd61d9a75d6da51d180eb8e2c8fd05bc53', '45.120.39.89', 1671337364, '__ci_last_regenerate|i:1671337364;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5652d7794de64c786d5d60e1f34f4407727cad', '45.120.39.89', 1671341692, '__ci_last_regenerate|i:1671341692;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671255322\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e02e741989e386d5e1ea7bf77346e405146b032', '172.105.247.100', 1671337886, '__ci_last_regenerate|i:1671337886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829df6749c6599855acaf01495669dce44a66220', '172.105.247.100', 1671337886, '__ci_last_regenerate|i:1671337886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195ccc00a4d44f5a08f8f6115aa2f2f12e030d99', '172.105.247.100', 1671337886, '__ci_last_regenerate|i:1671337886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d79716019f0b7652e237ef81d378ec95efcaa47', '172.105.247.100', 1671337887, '__ci_last_regenerate|i:1671337887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ce335b7799a0d718dbf7032ab802269c08afc8', '172.105.247.100', 1671337887, '__ci_last_regenerate|i:1671337887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aee5f1e27f863f534c55c4c41eaa5de63ef21f9', '172.105.247.100', 1671337887, '__ci_last_regenerate|i:1671337887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3eda6db2f4c39f7bafcaf7547b49f8a40bbc34d', '172.105.247.100', 1671337887, '__ci_last_regenerate|i:1671337887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e820229a109f937d654760d4b99d7fbbdc3739', '172.105.247.100', 1671337887, '__ci_last_regenerate|i:1671337887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6658106ef97edf99b30551e2e13eb0d987c206d', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ee0194415ce8df6a4392ea62adcc50c54f324c', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8d30021eb14062b9469e316499c3c49e752b3bc', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fdc10c822a6aac137df9e3443a1977b384447f1', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f24ff55c87f0f3a040efb5696ebd5b32090a92', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ddc56cd45cbe06c672f12ac2bec2401c46a675', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91eab22bcaacc66fb8a8c555f6a30ad6d0441ce2', '172.105.247.100', 1671337888, '__ci_last_regenerate|i:1671337888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8ef9fd9cc000f64c171d01b395fb0d37b21c1b', '172.105.247.100', 1671337889, '__ci_last_regenerate|i:1671337889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8874b78931454ec9f8ddac4d35fcb9e90169e153', '172.105.247.100', 1671337889, '__ci_last_regenerate|i:1671337889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62901f3943e3c94e2516584a306b01cb79097ab3', '172.105.247.100', 1671337889, '__ci_last_regenerate|i:1671337889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0343665f6fea33d7ef822c89e4275ea8e43e35fe', '172.105.247.100', 1671337889, '__ci_last_regenerate|i:1671337889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde2bc640a4b7d495cf7b8b674fc16875897b6e8', '172.105.247.100', 1671337889, '__ci_last_regenerate|i:1671337889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85471a652bb54571e0a37e72ad3646a509e4dfde', '172.105.247.100', 1671337890, '__ci_last_regenerate|i:1671337890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7be27b2e4e7432330e55d18a8d4b5d47a12cdc', '172.105.247.100', 1671337890, '__ci_last_regenerate|i:1671337890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55233872a144df6d1d23e5fdf4bd92ff45109380', '172.105.247.100', 1671337890, '__ci_last_regenerate|i:1671337890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f4e518b2047fc81170684941c84bbbafd8777a', '172.105.247.100', 1671337890, '__ci_last_regenerate|i:1671337890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8216c0efe018dcb91db80ba51c3053368ddff57', '31.222.203.2', 1671338029, '__ci_last_regenerate|i:1671338029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91644ee579ec781172368049459cb4c5cdf2cfd', '31.222.203.2', 1671338029, '__ci_last_regenerate|i:1671338029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e349457603428d0af24446ae1ca2c14cf51a121a', '31.222.203.2', 1671338029, '__ci_last_regenerate|i:1671338029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432f8d6263ff8c52167b45e06e724684d99a671e', '31.222.203.2', 1671338031, '__ci_last_regenerate|i:1671338031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7c4bddb0dafcf5244f281ac5462da0b0355a12', '31.222.203.2', 1671338031, '__ci_last_regenerate|i:1671338031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b558fa764cbfa950f2befed559cab8d62bf08850', '31.222.203.2', 1671338031, '__ci_last_regenerate|i:1671338031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebac05750f1cbf38770b98502cf9fd3fee6c025d', '31.222.203.2', 1671339818, '__ci_last_regenerate|i:1671339818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f623db0a7241688240373c64e8db945754a63178', '31.222.203.2', 1671339818, '__ci_last_regenerate|i:1671339818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5ebfba781c7ea12e44ad295c28396c1dfc90e0', '31.222.203.2', 1671339818, '__ci_last_regenerate|i:1671339818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91644ad19a16a58e9813eaa719fef986639d37a0', '31.222.203.2', 1671339820, '__ci_last_regenerate|i:1671339820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4a2d87e19879945e2e638b210b5579bc2e8d77a', '31.222.203.2', 1671339820, '__ci_last_regenerate|i:1671339820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775132608ef693c22976177241831f45b721d445', '31.222.203.2', 1671339820, '__ci_last_regenerate|i:1671339820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9288bf3a1dae1e115dcd1320c7611b390b156b32', '31.222.203.2', 1671341625, '__ci_last_regenerate|i:1671341625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a114dc52b4b3f7dbbd68be8eaf88f5e0af6912', '31.222.203.2', 1671341625, '__ci_last_regenerate|i:1671341625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed41501bb067229988613fefa6da97ccf493403', '31.222.203.2', 1671341625, '__ci_last_regenerate|i:1671341625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916820f51d1629cb4039083409e12c5261c3efe7', '31.222.203.2', 1671341627, '__ci_last_regenerate|i:1671341627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f0017b93390c234651439bab74662213230410', '31.222.203.2', 1671341627, '__ci_last_regenerate|i:1671341627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72377b52a6272934be72af031ba8acb37be42e37', '31.222.203.2', 1671341627, '__ci_last_regenerate|i:1671341627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e53e42fd5b09ac9baf7cd5574880e72d012dd4b', '45.120.39.89', 1671342197, '__ci_last_regenerate|i:1671342197;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671255322\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671341743;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d54e7cabcb55c05be35de2e5b57a9eabd6d3aec', '45.120.39.89', 1671342415, '__ci_last_regenerate|i:1671342197;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671255322\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671342223;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa29cb39452614394bbba546877b202ea0175fce', '172.105.247.100', 1671342685, '__ci_last_regenerate|i:1671342685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d8250dc05fafa47101aa8da70bd55ff935eb7a', '172.105.247.100', 1671342686, '__ci_last_regenerate|i:1671342686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11accac083384f04944e39c3e7f515adfd148d5', '172.105.247.100', 1671342686, '__ci_last_regenerate|i:1671342686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4210eaa8994809bf40744481277b832091585a', '172.105.247.100', 1671342686, '__ci_last_regenerate|i:1671342686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c89aa6f3196dde34dd1b8df3c11a9116da47f9d', '172.105.247.100', 1671342686, '__ci_last_regenerate|i:1671342686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e611961421778f9f1ed943e3bb34ba1e13224e', '172.105.247.100', 1671342687, '__ci_last_regenerate|i:1671342687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1655c295b45450e724780d91af0df73ddd4d6c8e', '172.105.247.100', 1671342687, '__ci_last_regenerate|i:1671342687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b19de2e0e2ea41f6688fbb6839ad8a84240189a', '172.105.247.100', 1671342687, '__ci_last_regenerate|i:1671342687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b763b0768dec6326ad7d91be2fc70eb4374869c', '172.105.247.100', 1671342687, '__ci_last_regenerate|i:1671342687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f66703faff4184d8437e2fe2186dc1bc99cc32', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c01df918130b6da05a822566339d3ec14e4fc9', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5229b619ec15a495b27db39f419b1f5aafc7350c', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13b4cea1ecd28342ec7fe145f22cfca3c598fb2', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee532080f29ca99a6879e1d8a01034fbbabff97', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('768b7d9c540931eb59ececabe796a38444ef4ddd', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109e76b64522c8306440d995c30e516ae581fcdc', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe323a9ab2c8aecba67641f504a1176b73c25f24', '172.105.247.100', 1671342688, '__ci_last_regenerate|i:1671342688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7094a01caaf2057868654c5679ed452ccb3b79', '172.105.247.100', 1671342689, '__ci_last_regenerate|i:1671342689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1d1bd339a99bfe99105d50880e782fd66d577e', '172.105.247.100', 1671342689, '__ci_last_regenerate|i:1671342689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b35fb119e50de30c2ba3c00cd9e016bc2d58e1f', '172.105.247.100', 1671342689, '__ci_last_regenerate|i:1671342689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3850921188254905154f0cfde45b200e7c0a11', '172.105.247.100', 1671342690, '__ci_last_regenerate|i:1671342690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d6573848939146e1946ad7111b98737309c024', '172.105.247.100', 1671342690, '__ci_last_regenerate|i:1671342690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16eeef4ae98ed008f748d71e3cfd747b71f77af1', '172.105.247.100', 1671342690, '__ci_last_regenerate|i:1671342690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a4a1d1fad779d80dc6bd443eda67c9a096c7f17', '172.105.247.100', 1671342690, '__ci_last_regenerate|i:1671342690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40329da943c1a825a27d9bb63530226f969a3cbe', '31.222.203.2', 1671343422, '__ci_last_regenerate|i:1671343422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f092cb03e522b7779c82795c410f4efd33dddbd', '31.222.203.2', 1671343422, '__ci_last_regenerate|i:1671343422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092000e72cb20c9f02ece73263ea2a29a02f44eb', '31.222.203.2', 1671343422, '__ci_last_regenerate|i:1671343422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466e6ad6c3e272170d54e1f3fe4bed1f5e9f3684', '31.222.203.2', 1671343422, '__ci_last_regenerate|i:1671343422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06db1c45c27a1b9ce1535ffd1a4c316b8237d9cc', '31.222.203.2', 1671343422, '__ci_last_regenerate|i:1671343422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3eb8140aa32de7967191dd0cc8029315c3bec39', '31.222.203.2', 1671343422, '__ci_last_regenerate|i:1671343422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897c3b271c9cb56ca5fe725921d9c7ff06c71e88', '31.222.203.2', 1671345231, '__ci_last_regenerate|i:1671345231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8e986260da4529ab872e7e42eb537c338cd5ec', '31.222.203.2', 1671345231, '__ci_last_regenerate|i:1671345231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0ca504f28d0368725f35b7ab289772c170fa00', '31.222.203.2', 1671345231, '__ci_last_regenerate|i:1671345231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f004a16329619d96ccf145f7e8947745d5d4c3', '31.222.203.2', 1671345231, '__ci_last_regenerate|i:1671345231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d72fc576fc618754e94664d137c8f08abfb3bf59', '31.222.203.2', 1671345231, '__ci_last_regenerate|i:1671345231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3b53c8129325a7490d40a634f7df08935f5c17', '31.222.203.2', 1671345231, '__ci_last_regenerate|i:1671345231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df8d7ae22330a93d705614af20fb4e04be2eca5', '31.222.203.2', 1671347021, '__ci_last_regenerate|i:1671347021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d7c5e19745216ec8238a2af02186d2a25b0fe61', '31.222.203.2', 1671347021, '__ci_last_regenerate|i:1671347021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a126e40b5c3aedeece7b1ecb2d1116ed35cab5a', '31.222.203.2', 1671347021, '__ci_last_regenerate|i:1671347021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d939d4c2cdd0aa2672b0c89d00fe092b2da7d98b', '31.222.203.2', 1671347023, '__ci_last_regenerate|i:1671347023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a063aa9290bda8a81fb4c15e42a68eb40e68cf', '31.222.203.2', 1671347023, '__ci_last_regenerate|i:1671347023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2637e7632c9ca6b85d13671434996bfdc41ee465', '31.222.203.2', 1671347023, '__ci_last_regenerate|i:1671347023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8741d640bcbade584becdfae79211c08385ca0c9', '172.105.247.100', 1671347490, '__ci_last_regenerate|i:1671347490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f93696f7f5f5bf3ef7c7d8e615a6e6da202d6e', '172.105.247.100', 1671347490, '__ci_last_regenerate|i:1671347490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901445468c3ac938a591bb4617942de6ed0585e4', '172.105.247.100', 1671347491, '__ci_last_regenerate|i:1671347491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f008c63e02f0c69d797d7aeff0c2f2ee763346a6', '172.105.247.100', 1671347491, '__ci_last_regenerate|i:1671347491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8582b61a23ad44a3fdc60f2af28d8af61bea74d1', '172.105.247.100', 1671347491, '__ci_last_regenerate|i:1671347491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a8b4366775cd616499742abec4e34d9cff7082', '172.105.247.100', 1671347491, '__ci_last_regenerate|i:1671347491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38a6254064e617d51069329998c16a9b7a4663c', '172.105.247.100', 1671347492, '__ci_last_regenerate|i:1671347491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('494cc0d59547261e8b7fa089bd1b8f30f83c8677', '172.105.247.100', 1671347492, '__ci_last_regenerate|i:1671347492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14595ed3f5a93f7486f6cd4fd9111f5f62591a22', '172.105.247.100', 1671347492, '__ci_last_regenerate|i:1671347492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05075a8fe9f86dd51914c54521756272a170ac7b', '172.105.247.100', 1671347492, '__ci_last_regenerate|i:1671347492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31cc5766e5df3e0ee165e690fd999a396b1cea4b', '172.105.247.100', 1671347492, '__ci_last_regenerate|i:1671347492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20299fae7f295846c2bd2828e841d6ad717dd311', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c7064252e315c145f1e44987c7cb19dfbfcfa0', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82c4d83da39c2e1d9769aad1370f56a88d4b5b6', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da1b5866c398c43d352545a74d67ebb6610c71a', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2826c65199af9347127aa7d6c6e54309ab7eacf6', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a569f6335e61d1c0d8a343da7623f1ab8d86bc2', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa41bf21647a7efd37f327f8339cdf16df61e9a', '172.105.247.100', 1671347493, '__ci_last_regenerate|i:1671347493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08424613c82494f30a0758fb4e85cf6159264a4b', '172.105.247.100', 1671347494, '__ci_last_regenerate|i:1671347494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9bb021ce5da63d3c154914a622e8de0d4c81250', '172.105.247.100', 1671347494, '__ci_last_regenerate|i:1671347494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d031a33515861481fdb2f3ed8e71408e22b4d8', '172.105.247.100', 1671347494, '__ci_last_regenerate|i:1671347494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('565b715cd633866e1a12999614f415aea2a70178', '172.105.247.100', 1671347495, '__ci_last_regenerate|i:1671347494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29559cdf9ce7952d8e129f48bf797692f232e2f1', '172.105.247.100', 1671347495, '__ci_last_regenerate|i:1671347495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4fd854c737e3da717cbf604a24176b648142e7', '172.105.247.100', 1671347495, '__ci_last_regenerate|i:1671347495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390ba3006621ed1129802dbef7b5aaef29696ce6', '31.222.203.2', 1671348819, '__ci_last_regenerate|i:1671348819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53bac36e9970f57bacc9ea2b60aa16cef44d6740', '31.222.203.2', 1671348819, '__ci_last_regenerate|i:1671348819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('349e30e6780ce954610c0c450e09cca11c72afee', '31.222.203.2', 1671348819, '__ci_last_regenerate|i:1671348819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ac8f9adf23154d70356a267456ba1bda15c291', '31.222.203.2', 1671348819, '__ci_last_regenerate|i:1671348819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0ad3e1312e5489df6fb6685f54aa9967c698eb', '31.222.203.2', 1671348819, '__ci_last_regenerate|i:1671348819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eecd65fabe4d7b9ce87ca0d9d5af3a1053592c8e', '31.222.203.2', 1671348819, '__ci_last_regenerate|i:1671348819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fd2af0a6e1d4734f7a072ff1c4e0e80223ae15', '31.222.203.2', 1671350630, '__ci_last_regenerate|i:1671350630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d118ccb29560c4798881ce4a0fac4756183a3c2', '31.222.203.2', 1671350630, '__ci_last_regenerate|i:1671350630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f84ea4ef3812ce09314f2c95d569be9e8868d75', '31.222.203.2', 1671350630, '__ci_last_regenerate|i:1671350630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c74db59cca1a47be4f569d29ea174eadfa698a', '31.222.203.2', 1671350630, '__ci_last_regenerate|i:1671350630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d598024be006c11d7b069c67c06ede39a2497d0', '31.222.203.2', 1671350630, '__ci_last_regenerate|i:1671350630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6746f2d6c957ad85143584e2c72600ee5634c503', '31.222.203.2', 1671350630, '__ci_last_regenerate|i:1671350630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e2b6b22403bf2b7899d37296b89789afb2ed5c', '172.105.247.100', 1671352288, '__ci_last_regenerate|i:1671352288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61acca1a3271c6d473947c007d9672cd3c449bb', '172.105.247.100', 1671352290, '__ci_last_regenerate|i:1671352290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4235f1269492a8c01336e8987ccf3843cdea2ad', '172.105.247.100', 1671352290, '__ci_last_regenerate|i:1671352290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('242a8edb6345769675587651ded66d50146ec7f5', '172.105.247.100', 1671352290, '__ci_last_regenerate|i:1671352290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae7557419e2b5784e266ea6af3d5dcba61db6d9', '172.105.247.100', 1671352290, '__ci_last_regenerate|i:1671352290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599a11b504517a8c193e957d49a2504a64788b5e', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e732d2b850cc2f26e97acab65ef0d5a6bcdb9e', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc33bfe7052225bd8e7ca0e30b59c7d4c8e95b5a', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe8283068be761ad3cd041594cc76a919a1e023', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82145712b07e84f270504026ad9c369576c17be4', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be33136f9db438383d42613b57ac4055f96299b6', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec5954c51c032ea1a33872f23d3688c905c5d22', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a5ce10ee7d62aed77b67d2d4b1a7b4dad52d12b', '172.105.247.100', 1671352291, '__ci_last_regenerate|i:1671352291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6217e847a55107e4add3feb2df4ef3b2259b2903', '172.105.247.100', 1671352292, '__ci_last_regenerate|i:1671352292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d655db35009035de5c22bd7823a9470b9d94805', '172.105.247.100', 1671352292, '__ci_last_regenerate|i:1671352292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc0e8c8fb253ac691837e612980e30a9b574c0f', '172.105.247.100', 1671352292, '__ci_last_regenerate|i:1671352292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ee3cecbea694230296ee51b3f63d0a2429aa68', '172.105.247.100', 1671352292, '__ci_last_regenerate|i:1671352292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8ccf41e285d1afc60997bc60861f046bbd3e48', '172.105.247.100', 1671352292, '__ci_last_regenerate|i:1671352292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916f14444ad73932772dc2f654d267cf22e87e67', '172.105.247.100', 1671352292, '__ci_last_regenerate|i:1671352292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b9d4ecf6c947e94a83d288edca1e51d57a36cfb', '172.105.247.100', 1671352293, '__ci_last_regenerate|i:1671352293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171ef20f5fa45b8d4975fde8f29e6c7977b4c29a', '172.105.247.100', 1671352293, '__ci_last_regenerate|i:1671352293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cf69ca5d6abf1a7f728eda942bc075a38e1614f', '172.105.247.100', 1671352293, '__ci_last_regenerate|i:1671352293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2c325784f9f5f8a6f109adff7d20f62792f2a1', '172.105.247.100', 1671352293, '__ci_last_regenerate|i:1671352293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce11be683db82e2bde1c3e3f40ee1ac39a757e8', '172.105.247.100', 1671352293, '__ci_last_regenerate|i:1671352293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a24f4cb6921923e685a853a6926ca6681e9116', '31.222.203.2', 1671352420, '__ci_last_regenerate|i:1671352420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e9767b669a8fcf4416e79592d079a7132f74ea6', '31.222.203.2', 1671352420, '__ci_last_regenerate|i:1671352420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f9b2dd674d3101cda7bd538c90d4582c61928b', '31.222.203.2', 1671352420, '__ci_last_regenerate|i:1671352420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a842c0f5f8ab470e4d61555031222c82e634a8', '31.222.203.2', 1671352422, '__ci_last_regenerate|i:1671352422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7742cbd84b8da580277845cd74c82eb711c7b02e', '31.222.203.2', 1671352422, '__ci_last_regenerate|i:1671352422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba90b143833ed69c5f4690d183943418daf81007', '31.222.203.2', 1671352422, '__ci_last_regenerate|i:1671352422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964bf373a681b15343df29ab28947ab8d34d137c', '31.222.203.2', 1671354221, '__ci_last_regenerate|i:1671354221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28089d73b0b182652ca927d61903dc962e3338e1', '31.222.203.2', 1671354222, '__ci_last_regenerate|i:1671354222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb405d68640b0951841e3c2771027a874e21541', '31.222.203.2', 1671354222, '__ci_last_regenerate|i:1671354222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99115453dc0a05bd77f3c6189cfbfc347229fc96', '31.222.203.2', 1671354222, '__ci_last_regenerate|i:1671354222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d74330b0db9727fd81c190cfb37de6071f4455c7', '31.222.203.2', 1671354222, '__ci_last_regenerate|i:1671354222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce39b6488e5e182ab1e1935b9eff900f252c9d7', '31.222.203.2', 1671354222, '__ci_last_regenerate|i:1671354222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e181a6385243a5dc92c4f595bce9f07c7c4c4bcf', '37.111.219.100', 1671361510, '__ci_last_regenerate|i:1671361510;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671337636\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671357201;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfaebd4caf221d6ac2d9d72cba72429d66499f7', '31.222.203.2', 1671356029, '__ci_last_regenerate|i:1671356029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d27a08627c09453e21da072b71f03b363a79c7', '31.222.203.2', 1671356029, '__ci_last_regenerate|i:1671356029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae029c3020f5ddbda109ef0f07cb8857cffb318', '31.222.203.2', 1671356029, '__ci_last_regenerate|i:1671356029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c8c31993f9285ba563f2d0a77e1c0837babe79', '31.222.203.2', 1671356029, '__ci_last_regenerate|i:1671356029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30839e786f0ab67c2ef748ac5a5acfd0607cc281', '31.222.203.2', 1671356029, '__ci_last_regenerate|i:1671356029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8136fb9d264a0eef0590cb217a700cafaa0c8a2c', '31.222.203.2', 1671356029, '__ci_last_regenerate|i:1671356029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e40bc5b3465ea390e2881f43f042addca826634', '116.204.230.18', 1671357113, '__ci_last_regenerate|i:1671356041;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671269106\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f0680a2d65aed096420c021f5db924d5647c69', '172.105.247.100', 1671357082, '__ci_last_regenerate|i:1671357082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6359d666301bcc878867de509091a454c3182e', '172.105.247.100', 1671357082, '__ci_last_regenerate|i:1671357082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21919c7204bad1349f4324c91d38bf6e5535faeb', '172.105.247.100', 1671357082, '__ci_last_regenerate|i:1671357082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3a8e590e90654d6c83acc2beb4910583301685', '172.105.247.100', 1671357082, '__ci_last_regenerate|i:1671357082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958f72f60524ad2e5eb7dfd46bb34d37feb8e91f', '172.105.247.100', 1671357083, '__ci_last_regenerate|i:1671357082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e19bb7f4e072889696e1afc25aac9a87235cb3', '172.105.247.100', 1671357083, '__ci_last_regenerate|i:1671357083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d4e05d8d72eaff6dec54d5cc03f5fb41517034', '172.105.247.100', 1671357083, '__ci_last_regenerate|i:1671357083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869aba59723ab102bda75124bd3c38d8dd96568b', '172.105.247.100', 1671357083, '__ci_last_regenerate|i:1671357083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23eca17049082934010e39d8b176d327ccc2b8e2', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa1fdaf620a059ce5a98bdefa6187911e2d470f8', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e9ca16b9d231f5c2d9486af8a53ec3db13ff56', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e485ddf392bc60db5e8b405595f7bc7bca63782', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f1adb2b3d1db08a6396d452ee825de68c08761', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a63b3aeba1c21a52e89c226e5481f1bd77a307', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb36b33db31ceccba3e1141127c22c867dfcdb8e', '172.105.247.100', 1671357084, '__ci_last_regenerate|i:1671357084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04793fb9acf72c8ea8b0f85227ed42b6ccdf471b', '172.105.247.100', 1671357085, '__ci_last_regenerate|i:1671357085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122cf22bacb1c0d958b113e6e1036c74cadbc9c1', '172.105.247.100', 1671357085, '__ci_last_regenerate|i:1671357085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dff51bcac5db711f1023b102e803fba7231e511', '172.105.247.100', 1671357085, '__ci_last_regenerate|i:1671357085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f02c3d5f2181194aea5729e0b96b63f916878a3', '172.105.247.100', 1671357085, '__ci_last_regenerate|i:1671357085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d4f4c6c39a2852cf45f64f6cb7c621fcc336be', '172.105.247.100', 1671357086, '__ci_last_regenerate|i:1671357085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c1dd5c148533411ae03268091b60082635284e', '172.105.247.100', 1671357086, '__ci_last_regenerate|i:1671357086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87fefed38edc1f037ca97099e3da8f3efc4c64c8', '172.105.247.100', 1671357086, '__ci_last_regenerate|i:1671357086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b84db6a291f76252abaac172fcefbc98ecbade', '172.105.247.100', 1671357086, '__ci_last_regenerate|i:1671357086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c77d31c62af701d68d24152295fb6259056a9b', '172.105.247.100', 1671357087, '__ci_last_regenerate|i:1671357087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569bd831037401cf88016e83b9511df7ba9941ff', '31.222.203.2', 1671357798, '__ci_last_regenerate|i:1671357798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4d36dbbd4c84f7fc059dd01148348e18fbbfb7', '31.222.203.2', 1671357800, '__ci_last_regenerate|i:1671357800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf2bf67a7af15d0e1584baf7412b0637d2a3cc2', '31.222.203.2', 1671357800, '__ci_last_regenerate|i:1671357800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44cb341bbabe5a0d694d6f8ffb35e38a4af16903', '31.222.203.2', 1671357800, '__ci_last_regenerate|i:1671357800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f02607a52619913df39c5b102afe523e6253e3', '31.222.203.2', 1671357800, '__ci_last_regenerate|i:1671357800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44847f1a3a9ee080cf9d7f23f20525891af7265', '31.222.203.2', 1671357800, '__ci_last_regenerate|i:1671357800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f669f2fd67348be7d39bb32c7df275a4ceab9857', '31.222.203.2', 1671359626, '__ci_last_regenerate|i:1671359626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f129378b70d43c10579e26da8f8dd4829bf32ff', '31.222.203.2', 1671359626, '__ci_last_regenerate|i:1671359626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74abc00e4c0a887a16c02a95b261d4066faa17b0', '31.222.203.2', 1671359626, '__ci_last_regenerate|i:1671359626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0feb208184cba80080fb083a7d185a10d569357f', '31.222.203.2', 1671359626, '__ci_last_regenerate|i:1671359626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348ec1f9dae080e93827940d917397e3d977dfda', '31.222.203.2', 1671359626, '__ci_last_regenerate|i:1671359626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb93c46b99f2e88e2798a6c1293f372835201a1', '31.222.203.2', 1671359626, '__ci_last_regenerate|i:1671359626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab11b2086e8649ff422934d08d4a0bacb58e8cda', '31.222.203.2', 1671361403, '__ci_last_regenerate|i:1671361403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1b508da58e8b14e83d4f66afae1c54c9f871b9', '31.222.203.2', 1671361403, '__ci_last_regenerate|i:1671361403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da945753ce4551c9ccd38e496603a67e43ede1ca', '31.222.203.2', 1671361403, '__ci_last_regenerate|i:1671361403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae1294ebb050f5da2e238d75311e72bf5270392', '31.222.203.2', 1671361405, '__ci_last_regenerate|i:1671361405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657048a402a402ccfd9265a6aeb179120c0d81cb', '31.222.203.2', 1671361405, '__ci_last_regenerate|i:1671361405;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9fbc8c3a951b3e29de20976644c0b530ddd641', '31.222.203.2', 1671361405, '__ci_last_regenerate|i:1671361405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ea5e548637f7944935456dadf92e1bb3bbedbd', '37.111.219.100', 1671362832, '__ci_last_regenerate|i:1671362832;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671337636\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671361783;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb05ad20c4064376330713ae71ce4a1413e81153', '172.105.247.100', 1671361884, '__ci_last_regenerate|i:1671361884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50239155018f65e8e72c488f77101afc51ed288d', '172.105.247.100', 1671361886, '__ci_last_regenerate|i:1671361886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd9fa9ce16d915c6e276abebd66a11d6f08b240', '172.105.247.100', 1671361887, '__ci_last_regenerate|i:1671361887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445e8446bfe3768006cdfc7676cf881886999138', '172.105.247.100', 1671361887, '__ci_last_regenerate|i:1671361887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500ab2f153ed02fd8db06bc9fb992e3279d113b8', '172.105.247.100', 1671361887, '__ci_last_regenerate|i:1671361887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90af8e514e172c66eb1787f15b579829f2d6883', '172.105.247.100', 1671361887, '__ci_last_regenerate|i:1671361887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04e58aa2d43996f90dabadf19456c183ba35d27', '172.105.247.100', 1671361888, '__ci_last_regenerate|i:1671361888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96885ca81eb2552600d1d0499a4726c7f23746d7', '172.105.247.100', 1671361888, '__ci_last_regenerate|i:1671361888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e12aae399567b89f4c245b04d61dc5de3376a3f', '172.105.247.100', 1671361888, '__ci_last_regenerate|i:1671361888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406906daaa8d529e6cd8df1cea494db16e9feeff', '172.105.247.100', 1671361888, '__ci_last_regenerate|i:1671361888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66f6d9fc47428d22e021b5d44e366a1768724861', '172.105.247.100', 1671361888, '__ci_last_regenerate|i:1671361888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db443724ceff7223298f601ab8c44001eff38157', '172.105.247.100', 1671361889, '__ci_last_regenerate|i:1671361888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5845f60863d7b09b2dd7ba208337da56693b30', '172.105.247.100', 1671361888, '__ci_last_regenerate|i:1671361888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c590dc10337b56deae2e7e053ef28aec6482de', '172.105.247.100', 1671361889, '__ci_last_regenerate|i:1671361889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b690413dddc0354a3d73f80df5e0797fd60721b', '172.105.247.100', 1671361889, '__ci_last_regenerate|i:1671361889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1bf4ed66262e1cc2fa4727b4319cf4e4cff9e01', '172.105.247.100', 1671361889, '__ci_last_regenerate|i:1671361889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967cc0c9be3fa37f6262c7c8710a8e5499e1aeb6', '172.105.247.100', 1671361889, '__ci_last_regenerate|i:1671361889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07214c65fd296ff20c494cc94a8bb4edb94b00d1', '172.105.247.100', 1671361889, '__ci_last_regenerate|i:1671361889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ca1caee6d664d1be53ff65cf0b61c823c3fa9b', '172.105.247.100', 1671361890, '__ci_last_regenerate|i:1671361890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00037fba1cfffeda3e046278dfc96c816f00a2bd', '172.105.247.100', 1671361890, '__ci_last_regenerate|i:1671361890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe2ad87b76a018ddec24de5a58d2ec162b4bdfd', '172.105.247.100', 1671361890, '__ci_last_regenerate|i:1671361890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ae90e8528d67e55dcdb4ae4608eac74cd4c9d64', '172.105.247.100', 1671361890, '__ci_last_regenerate|i:1671361890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16aa54e140231fbf9177b8af8a9e2c0f1299d6c8', '172.105.247.100', 1671361891, '__ci_last_regenerate|i:1671361891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25e8b66c65ec93c000f230b33eca42ea9b44ca8', '172.105.247.100', 1671361891, '__ci_last_regenerate|i:1671361891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad982bac4e3ea3d1db408470da9fd5d5030eb273', '37.111.219.100', 1671362858, '__ci_last_regenerate|i:1671362832;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671337636\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671362858;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa20b2932b736cc85a58c958325707e2ed0f728', '31.222.203.2', 1671363219, '__ci_last_regenerate|i:1671363219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ce30563d158475034c1de55d6f1ef240318945', '31.222.203.2', 1671363219, '__ci_last_regenerate|i:1671363219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d387b3b8f860a17f1e16146f54cbf64c94d39885', '31.222.203.2', 1671363219, '__ci_last_regenerate|i:1671363219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784f97cc1f9a4dffbbac6f5449c82035f970e09e', '31.222.203.2', 1671363220, '__ci_last_regenerate|i:1671363220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16200f3a2bd11859026144a31d58ce723362f135', '31.222.203.2', 1671363220, '__ci_last_regenerate|i:1671363220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e50e851fa28d7beceeed7216956526b0ef484ed', '31.222.203.2', 1671363220, '__ci_last_regenerate|i:1671363220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c03d750d7e1ce8fbc5f7e22e9934ba5a43d557c9', '31.222.203.2', 1671365020, '__ci_last_regenerate|i:1671365020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b70c30dfd07b9cfbea7dbf36518f1dc1eda7dec7', '31.222.203.2', 1671365020, '__ci_last_regenerate|i:1671365020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196daa6de854e961b85d82e25f59f609701afcb0', '31.222.203.2', 1671365020, '__ci_last_regenerate|i:1671365020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b8be0f9e4294a1cde37f8e7b4a462b85625da2', '31.222.203.2', 1671365020, '__ci_last_regenerate|i:1671365020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3c907b48bc68bb1d98696773b097fc9f164ff1', '31.222.203.2', 1671365020, '__ci_last_regenerate|i:1671365020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a55f1b2bad9735f9ca159304ee2b558ec9901a', '31.222.203.2', 1671365020, '__ci_last_regenerate|i:1671365020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2af2b31fe4f6cea7e885ed0ca473f03fd63891', '116.204.230.18', 1671365867, '__ci_last_regenerate|i:1671365601;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671356051\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9318a76bb2e336d280d33d51db4ecbb76b60a767', '172.105.247.100', 1671366679, '__ci_last_regenerate|i:1671366679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6853f4974d7b127b4ece81ceafca0449dcf8b0', '172.105.247.100', 1671366680, '__ci_last_regenerate|i:1671366680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3618c768815abdb94f28bde90f1fd35834c249', '172.105.247.100', 1671366680, '__ci_last_regenerate|i:1671366680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f12d65dc0c5e9ad356f2af94b5bb859d265bf8', '172.105.247.100', 1671366680, '__ci_last_regenerate|i:1671366680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b5f9938465083a259fcb24b2240de8dfdcdb097', '172.105.247.100', 1671366680, '__ci_last_regenerate|i:1671366680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7726af9643bed6d4cd604072a01bf01c1640ed', '172.105.247.100', 1671366681, '__ci_last_regenerate|i:1671366681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba060d979cce7f7f43e6a782bda69e082a008c33', '172.105.247.100', 1671366681, '__ci_last_regenerate|i:1671366681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ffb276e851feaf9f49fb98f3a485991ab765ba3', '172.105.247.100', 1671366681, '__ci_last_regenerate|i:1671366681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afbfbb1bc455ddc20b556b85165a2a5e4c518e8e', '172.105.247.100', 1671366681, '__ci_last_regenerate|i:1671366681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d8d48549a207c3c1abe31e60fd24c90849fcb2', '172.105.247.100', 1671366681, '__ci_last_regenerate|i:1671366681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5da0700343c535c0a9849c6f42cc5f4c2b444b', '172.105.247.100', 1671366681, '__ci_last_regenerate|i:1671366681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963da72ddb28090ac104abd86038cb2f15a180dd', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55db9e6d6374fba3f7d35f2757cca72f62caa3b', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31aa5e70b3d8056222f3a5ffb12b51f9809ae5a3', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d7ba8b623eee7e3ceac64d4db540d2fedeced6', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aea3c5095d5ead09cbbeb134f0287e4a4b9e0176', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cf862254e2ffb821be2edc4f4655a51d26ad99', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa248f359a0c1fef2b5165a2083bc062e35e1d5', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b41851e6560ddffb4ba1e1e7ed189f82b63f1f', '172.105.247.100', 1671366682, '__ci_last_regenerate|i:1671366682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ed8d366fcda8d4f6c8cb9110d6196119c4048b', '172.105.247.100', 1671366683, '__ci_last_regenerate|i:1671366682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f86a195e5b106c74684f87779dcca13b0a9b7ec', '172.105.247.100', 1671366683, '__ci_last_regenerate|i:1671366683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb5075581baef3f8cdbd7be1cc9c7c6432b34ce', '172.105.247.100', 1671366683, '__ci_last_regenerate|i:1671366683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c2c5b9ca80f0e09866b563a10143e41e47c00ca', '172.105.247.100', 1671366683, '__ci_last_regenerate|i:1671366683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1d88616ce4c50af45a19ac41f7467414ea0ba3', '172.105.247.100', 1671366684, '__ci_last_regenerate|i:1671366684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29577bdd5f803d9efa723dadac149d4d34d7bcf', '31.222.203.2', 1671366829, '__ci_last_regenerate|i:1671366829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981697de65682f04e6899933d4667725cddefd7f', '31.222.203.2', 1671366831, '__ci_last_regenerate|i:1671366831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646487bb2dd73c15da5820d81703821a044be53d', '31.222.203.2', 1671366831, '__ci_last_regenerate|i:1671366831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad469a2b71392eed90612bea3cfc96f7c04ed6cb', '31.222.203.2', 1671366831, '__ci_last_regenerate|i:1671366831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b51a28e249443aeca0c25f0a25adfdd47692b5c', '31.222.203.2', 1671366831, '__ci_last_regenerate|i:1671366831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9813a49b4a07811c7f69255e2bb592a65bb1fab', '31.222.203.2', 1671366831, '__ci_last_regenerate|i:1671366831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a8edb0f423eb4af3c9ed4b871588a862043f9e', '31.222.203.2', 1671368597, '__ci_last_regenerate|i:1671368597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a6bca58b9d981816ec66f70b51a319444f4e08c', '31.222.203.2', 1671368597, '__ci_last_regenerate|i:1671368597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd9acd8d7563da58559cdec35711898d330d524', '31.222.203.2', 1671368597, '__ci_last_regenerate|i:1671368597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a41e96fe80a119656583424308ef4be5264cc2b', '31.222.203.2', 1671368599, '__ci_last_regenerate|i:1671368599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5436ef12c128569d1eaf7e9b5f3d59dc4c74de', '31.222.203.2', 1671368599, '__ci_last_regenerate|i:1671368599;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0391aa35b84d10be9192f61539f07206d688bf61', '31.222.203.2', 1671368599, '__ci_last_regenerate|i:1671368599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abafac8fe18a4a9b0440df829fe53f7ca0f26739', '31.222.203.2', 1671370440, '__ci_last_regenerate|i:1671370440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f7ada679b42cb174141535a27ce43797e55ad3', '31.222.203.2', 1671370440, '__ci_last_regenerate|i:1671370440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366e3870719d1fcdc2a202ece5298f7b7e865f74', '31.222.203.2', 1671370440, '__ci_last_regenerate|i:1671370440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2e9473d2f0b64930678e08393fe8592288c683', '31.222.203.2', 1671370441, '__ci_last_regenerate|i:1671370441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82271e0459e2d7216e229e4d9d0c852989dc23af', '31.222.203.2', 1671370441, '__ci_last_regenerate|i:1671370441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd29c55929fd4afdd06f5264dddfcb28f3ebd27', '31.222.203.2', 1671370441, '__ci_last_regenerate|i:1671370441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601fab470c489d59df27a33b1e57114c3e988d30', '45.120.39.89', 1671371303, '__ci_last_regenerate|i:1671371303;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671355756\";last_ip|s:14:\"37.111.219.100\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671371295;register_id|s:3:\"283\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2022-12-17 20:37:31\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68a50694e5a0ea1f8c83cb44f3206e78a74a2630', '45.120.39.89', 1671371324, '__ci_last_regenerate|i:1671371303;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671355756\";last_ip|s:14:\"37.111.219.100\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671371324;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2146b2f44d844d6f18b2c513dd23e5ff0a05dd', '31.222.203.2', 1671372218, '__ci_last_regenerate|i:1671372218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba7084afd90daf37bdba3c42c669111b0aa4886', '31.222.203.2', 1671372218, '__ci_last_regenerate|i:1671372218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bdc35f9c6615c6e9d62687ef2f843eba29def35', '31.222.203.2', 1671372218, '__ci_last_regenerate|i:1671372218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f692932e9071c70b5e90bdecb3196b393b4d0e1', '31.222.203.2', 1671372220, '__ci_last_regenerate|i:1671372220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6fd17282640d494a86ecf7d51a6e31a6df4f256', '31.222.203.2', 1671372220, '__ci_last_regenerate|i:1671372220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807e0b7914477901d19f0441f40b122bfb54ea0f', '31.222.203.2', 1671372220, '__ci_last_regenerate|i:1671372220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108c57032a50668077b411eef6457ec43309116d', '172.105.247.100', 1671372682, '__ci_last_regenerate|i:1671372682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a2426e2a7a1fa6fad50dacda1c0d198f9d9000', '172.105.247.100', 1671372682, '__ci_last_regenerate|i:1671372682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e90c88a7a1318b2973012e0994c709a83ce6af', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fc59225a3944499fa728a1714a1c3a6590f2f8', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9676dd76125481407028392d6767f7c49c2685e1', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('506154fc63ad324b6da423fdf4ee8f7a048cc84f', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48d419533a791a273855f53081a8e2f0e63326e', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f638d853bfd37ebc6827feca263b2a8d697bbe6', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d94bd3876c3271ff65adcfe76dc5ef79f0f12c0', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d413b90aed521624d7e00e89c451cf245cb2b6dc', '172.105.247.100', 1671372683, '__ci_last_regenerate|i:1671372683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35237948eb8c71a025ecf3403adb734cd8bf11d4', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c6feb4f8ae8d54b3ce1dc513ebcbf7a91a6c52', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9926502d544d91abeb08772603276508e79dbf4', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172f7d3e1857d3ef9bd6263b39253e67faf9aa5c', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6156533109c9a284fb05857b6c66e6875ba51988', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ce2f1b243c083b170ed94688154c1a3508dc58', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a475f72a2359c4a0ae1289eb19c477650d33ef52', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c002ac10af7107a65fa09d5d1c86f71b5378e4', '172.105.247.100', 1671372684, '__ci_last_regenerate|i:1671372684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf3753391571fcd26d7175c3d5eb1ef24167273', '172.105.247.100', 1671372685, '__ci_last_regenerate|i:1671372685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e697152682d553709c198eb667d6703f2fa74bae', '172.105.247.100', 1671372685, '__ci_last_regenerate|i:1671372685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff8d6042937a242fa848043ae10112a231d35ae', '172.105.247.100', 1671372685, '__ci_last_regenerate|i:1671372685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4a4604a0520a2328bd5a51e13f7d0e870079612', '172.105.247.100', 1671372685, '__ci_last_regenerate|i:1671372685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e647962b52a0f86f2ef21290a78321bcae90606', '172.105.247.100', 1671372685, '__ci_last_regenerate|i:1671372685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cb4c191e48dea5e5650afa7c8b6fbb156d6a12', '172.105.247.100', 1671372685, '__ci_last_regenerate|i:1671372685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('417764a3a86eee37eb39b46f96c0c64ee637defc', '31.222.203.2', 1671374005, '__ci_last_regenerate|i:1671374005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384f374732ee8dd6462d69d8bc033076dfcaa3b8', '31.222.203.2', 1671374007, '__ci_last_regenerate|i:1671374007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25720c39e9f5dd5612f60671bc79e6f836f57ec0', '31.222.203.2', 1671374007, '__ci_last_regenerate|i:1671374007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1c2c6097e371d58beb2f0dae05085597792540', '31.222.203.2', 1671374007, '__ci_last_regenerate|i:1671374007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe17a3c722d700dcd47426dd46061b679faa52c', '31.222.203.2', 1671374007, '__ci_last_regenerate|i:1671374007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9326647a9ad08335fe6cb88b21fa9fb3e3a9c0e', '31.222.203.2', 1671374007, '__ci_last_regenerate|i:1671374007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d0acd257adc3348576ee770981a5497d24c6d0e', '31.222.203.2', 1671375817, '__ci_last_regenerate|i:1671375817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b36536b7738ae28bbaa84de7a7255f31acefd74', '31.222.203.2', 1671375817, '__ci_last_regenerate|i:1671375817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('558d00eb9963e6439cae394c1f32bb16e5ee551d', '31.222.203.2', 1671375817, '__ci_last_regenerate|i:1671375817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229b8fb205508fafa7c6941d215cfc134a0b67c3', '31.222.203.2', 1671375818, '__ci_last_regenerate|i:1671375818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4ef29f5fefea682aad4ce9b06dd1188def49f2', '31.222.203.2', 1671375818, '__ci_last_regenerate|i:1671375818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0517c8799fbba6760115baecbe5165e75f54a6f5', '31.222.203.2', 1671375818, '__ci_last_regenerate|i:1671375818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6c82148af84b37ddb47a7165177e831638c966', '31.222.203.2', 1671377628, '__ci_last_regenerate|i:1671377628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cf999f6a4bdb2ff96c586ef0ebd20316472262', '31.222.203.2', 1671377628, '__ci_last_regenerate|i:1671377628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc5caa3b89a26fe9796c2eec2501983e8843c48', '31.222.203.2', 1671377628, '__ci_last_regenerate|i:1671377628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51941006bd14d41139fc47b8565967967018340', '31.222.203.2', 1671377630, '__ci_last_regenerate|i:1671377630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255489c98a961fcabf67574447f0bfd402c7becc', '31.222.203.2', 1671377630, '__ci_last_regenerate|i:1671377630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f7d18290ad3cb075f1b18abb069bbc841c44a0', '31.222.203.2', 1671377630, '__ci_last_regenerate|i:1671377630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9838357cb65d4ccb2556df9643e562fde9b32f5e', '172.105.247.100', 1671378680, '__ci_last_regenerate|i:1671378680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1654d780f4e850a58b6b779ce37b16896c349d0', '172.105.247.100', 1671378680, '__ci_last_regenerate|i:1671378680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e651af18603405fa4106c2b818039b409771c6', '172.105.247.100', 1671378682, '__ci_last_regenerate|i:1671378682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2091d89ed3b6eb04e2b5b101f103c7bc6dbfca7c', '172.105.247.100', 1671378682, '__ci_last_regenerate|i:1671378682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec39684de282061326f5ee4692741bd05a12390', '172.105.247.100', 1671378682, '__ci_last_regenerate|i:1671378682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94eb690114082484fd7215c9b7badb304d98db3', '172.105.247.100', 1671378682, '__ci_last_regenerate|i:1671378682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c69c283f1b8af24e7caf1406da0ae1d9b257bf', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('220a2979155caa0c96b03559cbee84bb55ac3141', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d348d51dc96cdd71c676600567fc06e326c9cb3', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d6d2ef1bfc81a3b35824d838061936a229f344', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ed409a966ecbb445ed4f20c70c73622ce33ed5', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53bc4eef6fe36f8f37723b9d6b90107e8596408e', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1750923a70d239ec86772c75be72c1775dae0dac', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deda5bc70c70edc601c017c9ded7f7500b11dbf0', '172.105.247.100', 1671378683, '__ci_last_regenerate|i:1671378683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd438ae27ec81e5ee399dc56de2fc8d110ff320', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3f8b0a45d1ed3d484d90d42b44174a65862375', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c7169eea4cffaa66db479f7073c74ac160d0f3', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423b9b88591e1edf8d7c722468d5e6edeaddf2b0', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b452dc5db244925087ad191e7743ebcc7802bf71', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5936ef64b4d92085b5232aa9342b6359e9bf5bb6', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e341bcbdc4e48e0df69368f222151aee4446f8f2', '172.105.247.100', 1671378684, '__ci_last_regenerate|i:1671378684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2199767a54882cfa2421821d5576daeede29eec5', '172.105.247.100', 1671378685, '__ci_last_regenerate|i:1671378684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee87cd1072b07ecc3b62bdcb31c8e2e9d25716ff', '172.105.247.100', 1671378685, '__ci_last_regenerate|i:1671378685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73ccca1eb30d0d4b77cad5ef4b78e880a332e73', '172.105.247.100', 1671378685, '__ci_last_regenerate|i:1671378685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559962b7f1c765cd8fb6bb4afaab22951a5ebbe5', '31.222.203.2', 1671379420, '__ci_last_regenerate|i:1671379420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8bb5f77fbaf1c9f62b91136e30c0c3ac6d3fcd8', '31.222.203.2', 1671379420, '__ci_last_regenerate|i:1671379420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec9472b2406f0c6b6e1792f0ccc89c0f8aeb426', '31.222.203.2', 1671379420, '__ci_last_regenerate|i:1671379420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b19a5347cd215c350158416a1313b3d492a647', '31.222.203.2', 1671379422, '__ci_last_regenerate|i:1671379422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a73a6c2a2006ea7ebfe991aa9a11f2d1b9c412a', '31.222.203.2', 1671379422, '__ci_last_regenerate|i:1671379422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ab1c5b3522632be36cd22c97f420ea917459c7', '31.222.203.2', 1671379422, '__ci_last_regenerate|i:1671379422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fd76cc9f588ff83018316100cea0dc245db924', '31.222.203.2', 1671381216, '__ci_last_regenerate|i:1671381216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab949c3f8d4350fd8f201d755f808d0753888b8', '31.222.203.2', 1671381216, '__ci_last_regenerate|i:1671381216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e9162812432c58883d941795796b3d683ca571', '31.222.203.2', 1671381217, '__ci_last_regenerate|i:1671381216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae4e83166d57e292525cdf02d7e57bab650a27a', '31.222.203.2', 1671381218, '__ci_last_regenerate|i:1671381218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8733ec34ceb095d3a091cf33399a935146eaad0a', '31.222.203.2', 1671381218, '__ci_last_regenerate|i:1671381218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da6a0d815512cc243ce82a269cb472bab8ae272', '31.222.203.2', 1671381218, '__ci_last_regenerate|i:1671381218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf214d6e9d8e7bfe5b26d8605d7c866288c235c', '31.222.203.2', 1671383019, '__ci_last_regenerate|i:1671383019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ec3daa69cfff516e34b6f85186265dea45e538', '31.222.203.2', 1671383019, '__ci_last_regenerate|i:1671383019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a426be39b66821820e02ee9f2f229cac8b69d18', '31.222.203.2', 1671383019, '__ci_last_regenerate|i:1671383019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d84738647cf8d997313320a3c1a0e8fe12bc31', '31.222.203.2', 1671383019, '__ci_last_regenerate|i:1671383019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903bf818c9adaf5def0d4a7d6fb9e945c3f998a2', '31.222.203.2', 1671383019, '__ci_last_regenerate|i:1671383019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d5d13b3e5cc684cf659014337596a425f28e31', '31.222.203.2', 1671383019, '__ci_last_regenerate|i:1671383019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296ac0069949260a3e328b0bd60c8dd84605ecad', '172.105.247.100', 1671384686, '__ci_last_regenerate|i:1671384686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67edab6fdcfdbf0d739c6404fbc821207bf66ecb', '172.105.247.100', 1671384686, '__ci_last_regenerate|i:1671384686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358168ef4c512e8a9925f05c04bb126ad10aa6c1', '172.105.247.100', 1671384687, '__ci_last_regenerate|i:1671384687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95260f7bfdedb2215079911b7549e244f3c75e89', '172.105.247.100', 1671384687, '__ci_last_regenerate|i:1671384687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d99c0f4309654f4ba7898966298c15707288ab', '172.105.247.100', 1671384687, '__ci_last_regenerate|i:1671384687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2618b90060af3ba0c57efd47887743f36ab36f72', '172.105.247.100', 1671384687, '__ci_last_regenerate|i:1671384687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9818e797a987c206b7d8e443e007763e458fb5eb', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26397375764742e94ac08517aec7e09f4d4c76af', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a866b2bfdd2a6d66dcc053349b2c37ab0f203a4b', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cbe7e457d8a5d51140c122693e15e94ce4ebff', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260aee274fec2e9a2f1f0cb123d7bf48882993a8', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c410d7018ee2bae65a14617c63092191e52d6f7d', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a737b7cf0f6a38011dcceaf42dcadb8404b6a2', '172.105.247.100', 1671384688, '__ci_last_regenerate|i:1671384688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50899f70cb040840978f354cfc31a2aa85557ad', '172.105.247.100', 1671384689, '__ci_last_regenerate|i:1671384689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8ec46774337bd3f1b6c02f80e23d45cd7447e9', '172.105.247.100', 1671384689, '__ci_last_regenerate|i:1671384689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc1134ecce32062b8647b443ff6602f211e9a1d', '172.105.247.100', 1671384689, '__ci_last_regenerate|i:1671384689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9635a7d551e9dac06878888b6185956907e2aebc', '172.105.247.100', 1671384689, '__ci_last_regenerate|i:1671384689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3a2ccb29d3c34476b7281ed725e4006b19ffcc', '172.105.247.100', 1671384689, '__ci_last_regenerate|i:1671384689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c7f6d21fa21bf57fec8f092399bef9fccea418', '172.105.247.100', 1671384689, '__ci_last_regenerate|i:1671384689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12912f248c27a32ded293939814e0234048e536', '172.105.247.100', 1671384690, '__ci_last_regenerate|i:1671384690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652e2f1ea4189ff372bfdd4ba42725f2ee5304ca', '172.105.247.100', 1671384690, '__ci_last_regenerate|i:1671384690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125e10ae06351f6e270a18c224109e9bb057d580', '172.105.247.100', 1671384690, '__ci_last_regenerate|i:1671384690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('599f016ce7bef9feb879e9cb69944123d3c6c6c8', '172.105.247.100', 1671384691, '__ci_last_regenerate|i:1671384691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12da5f9bb5478f60b9fc6a443a2ab01ee862fc17', '172.105.247.100', 1671384691, '__ci_last_regenerate|i:1671384691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05434c594e2e0482a6f9586133ae5f852ace094e', '31.222.203.2', 1671384818, '__ci_last_regenerate|i:1671384818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e612c26bdc55cec8962faf3156b5e7b4349c0a1a', '31.222.203.2', 1671384818, '__ci_last_regenerate|i:1671384818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad695921c407a80d9d8b05a4bd493dac6cfed8f', '31.222.203.2', 1671384818, '__ci_last_regenerate|i:1671384818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826b4c206a27fa98c82f68fc2f9fcc7749881c19', '31.222.203.2', 1671384819, '__ci_last_regenerate|i:1671384819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfc1b19d4eac3073a0b4114f7266c91596ca721d', '31.222.203.2', 1671384820, '__ci_last_regenerate|i:1671384820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d0434eb7944cb115fb05992ad3023b824409e08', '31.222.203.2', 1671384820, '__ci_last_regenerate|i:1671384820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12c7aa414bdfa5d02f51b11835f0bf007fd9380', '31.222.203.2', 1671386631, '__ci_last_regenerate|i:1671386631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149d0bb82ac591c76fe876983decf0d6bf0a5a20', '31.222.203.2', 1671386632, '__ci_last_regenerate|i:1671386632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb75bd685e8e590c7deed3f92f8dc17c3bb2f68', '31.222.203.2', 1671386632, '__ci_last_regenerate|i:1671386632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe8c876849c93dd4353e624a42c4cfe2d998fcd', '31.222.203.2', 1671386632, '__ci_last_regenerate|i:1671386632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acee5358594cc8ef522c8c0d1867cc05be0fa0a8', '31.222.203.2', 1671386632, '__ci_last_regenerate|i:1671386632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac8a7ec4a5983b32340c88a9803a6b67322b01c', '31.222.203.2', 1671386632, '__ci_last_regenerate|i:1671386632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15bd3584be70bc1b603a1d2120c4460a3ebdc0a', '31.222.203.2', 1671388448, '__ci_last_regenerate|i:1671388448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfc22a25e6e376dd5760b39d351a5c96ab64bc5', '31.222.203.2', 1671388448, '__ci_last_regenerate|i:1671388448;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01b4f8b2b2164de59300403dd98e94e3fec4111', '31.222.203.2', 1671388448, '__ci_last_regenerate|i:1671388448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e4b873d81a2829c32cdfdfe44dec9dee4e8a22', '31.222.203.2', 1671388448, '__ci_last_regenerate|i:1671388448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774f3e25046973b5f1bbf0e908568e370066e2fe', '31.222.203.2', 1671388448, '__ci_last_regenerate|i:1671388448;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcac9cb1c19b82cf2030eb3ad1936d743bd5084c', '31.222.203.2', 1671388448, '__ci_last_regenerate|i:1671388448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f60c25dc38d6b56bb22238ba52d91ebb04fcf39', '31.222.203.2', 1671390224, '__ci_last_regenerate|i:1671390224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722372975161ed47e7dbb99a0cefc7ea961dc7c3', '31.222.203.2', 1671390226, '__ci_last_regenerate|i:1671390226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa9fed6df2aa92a3215d3e359564e8c988ff456', '31.222.203.2', 1671390226, '__ci_last_regenerate|i:1671390226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501049564251435ea2702685738b5e0eec548c5f', '31.222.203.2', 1671390226, '__ci_last_regenerate|i:1671390226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d88a12d4d7dafb55fc64a7dbe0d1b243d4a95d', '31.222.203.2', 1671390226, '__ci_last_regenerate|i:1671390226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c6d93f544116bd4b814c1c8554d26be4848ae5', '31.222.203.2', 1671390226, '__ci_last_regenerate|i:1671390226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b19518c5f3603d318f99ac36ffec937102a15d', '172.105.247.100', 1671390685, '__ci_last_regenerate|i:1671390685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f429fe14000f01467c543246f689f2494b08c4', '172.105.247.100', 1671390685, '__ci_last_regenerate|i:1671390685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255f838ca60fe0836b026cc6534438c4a50dcd91', '172.105.247.100', 1671390685, '__ci_last_regenerate|i:1671390685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e0c94df73033dea9734e4932f64ccae47e256d', '172.105.247.100', 1671390685, '__ci_last_regenerate|i:1671390685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0406f20f3eaa618064b4353acb4c54fd35c684ed', '172.105.247.100', 1671390685, '__ci_last_regenerate|i:1671390685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc7cb9fc05047b29b4162ba25f6c78bb6c4dbb20', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40a48a8ccb5a70dafbfa1ce968aa457ec22f543', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f8e1521258697df892e360111e267ed23fe876', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85783ad327b12d693767df93600457d717f00670', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ddbacb3aaf89355836d7d6a7d0674300962679', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db4148192a49d304e1a9f685b6be71a04884693', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c652f9f8aed01a3ec9ecaf7b22d5b9457d5d667b', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a212615d23a57a19d02f54261c6d83e7b99213eb', '172.105.247.100', 1671390686, '__ci_last_regenerate|i:1671390686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92447329c7ce0000f6aeeedd4c95c844b1bd4b2e', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5712b29efe399cf9dbb661296dbde66855ae06ae', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a751750261320e3a144f9c86f51ea5bf234f5597', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cabc320018a51e332fe9b0f1d4844bd9f2e5e9', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73341c525aa36c13b13cff9e20652f7a333a0d7a', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4811b007b733e8886ce7a8d1b0099e395e71970', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05f9f63975ccebd2b1425e4087ded08d9eaa0b9', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e67b80476b4177a097c0c494f9a2d0efcddedb', '172.105.247.100', 1671390687, '__ci_last_regenerate|i:1671390687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e2335744ade5e26b170f622a549b8213dc8316', '172.105.247.100', 1671390688, '__ci_last_regenerate|i:1671390688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5366ada6f384716e566690c2b579dafd5bf6ec91', '172.105.247.100', 1671390688, '__ci_last_regenerate|i:1671390688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b4521a9f54189e6b1d673e4b7d1a3bbe7d2b1f', '172.105.247.100', 1671390688, '__ci_last_regenerate|i:1671390688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8446934b74ec488887bba9ade57401a6c1706ac', '198.235.24.179', 1671390846, '__ci_last_regenerate|i:1671390846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff5eb84907cbb9527d28770e544c1e1f96c742d', '198.235.24.179', 1671390847, '__ci_last_regenerate|i:1671390847;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2418932675d06a26a6581a45e30b38318be30954', '198.235.24.179', 1671390847, '__ci_last_regenerate|i:1671390847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9132545ff3a61b95787967cdee5127dfc2185c8', '31.222.203.2', 1671392012, '__ci_last_regenerate|i:1671392012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('929c4086112e4c613cee341f8412c34e639c9f89', '31.222.203.2', 1671392014, '__ci_last_regenerate|i:1671392014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7c4f5d1e75ae3a93a2825de904e37d331b1a6a6', '31.222.203.2', 1671392014, '__ci_last_regenerate|i:1671392014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148edaeb151cba5932ba4e0da198bf11d57187c2', '31.222.203.2', 1671392014, '__ci_last_regenerate|i:1671392014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214f81b293b12aba57f1e7f941c9b2e4d20a8dba', '31.222.203.2', 1671392014, '__ci_last_regenerate|i:1671392014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596d75c3e15bff435d040866814aa96b0ccb8c2b', '31.222.203.2', 1671392014, '__ci_last_regenerate|i:1671392014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6764800ba5a6f8c1536d219ebbb1532025a3810', '31.222.203.2', 1671393821, '__ci_last_regenerate|i:1671393821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b032b12611d0531cb40d44d75393558fc76b7e', '31.222.203.2', 1671393821, '__ci_last_regenerate|i:1671393821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630952ff07a73cb35b98900d0a5e5457bd91bd01', '31.222.203.2', 1671393821, '__ci_last_regenerate|i:1671393821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ddca14ca9457640086ff199b75ef5dd347261ee', '31.222.203.2', 1671393821, '__ci_last_regenerate|i:1671393821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4398a6e0ff44059772a0eebf4fe1577eab4e1a29', '31.222.203.2', 1671393821, '__ci_last_regenerate|i:1671393821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d585302194121872300ece0b38c6c7a229d043', '31.222.203.2', 1671393821, '__ci_last_regenerate|i:1671393821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41281212805e8300b5e72a33d60b56803e3c6a11', '167.94.138.120', 1671393871, '__ci_last_regenerate|i:1671393871;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd570232c2a207b101616cfe4c3b007231d5dd9', '167.94.138.120', 1671393872, '__ci_last_regenerate|i:1671393872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b361246c62ebc7f7bf41dd23c5be4b51495efe6d', '167.94.138.120', 1671393875, '__ci_last_regenerate|i:1671393875;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaaf3886e401c26972b53801416912fa2d285b19', '167.94.138.120', 1671393876, '__ci_last_regenerate|i:1671393876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff0e60e349d980f12f07701fb00f01141c830b4f', '167.94.138.120', 1671393877, '__ci_last_regenerate|i:1671393877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5732fdae6c5ef2183f61eba1cadd94aa7a5a679d', '167.94.138.120', 1671393879, '__ci_last_regenerate|i:1671393879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6198e0801c7b24ef656d7c21548d57d06d2567be', '31.222.203.2', 1671395625, '__ci_last_regenerate|i:1671395625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05fe914168e1104f4071b433c69a5cade9135a1a', '31.222.203.2', 1671395625, '__ci_last_regenerate|i:1671395625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c67f54b57b539c6f866713b5391321b6176a4c', '31.222.203.2', 1671395625, '__ci_last_regenerate|i:1671395625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41de455dfb95d027b9a32b98b5bde75ddb3ac5b', '31.222.203.2', 1671395625, '__ci_last_regenerate|i:1671395625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07276d2955742bc1e17f2e6ad1a93384d355ac64', '31.222.203.2', 1671395625, '__ci_last_regenerate|i:1671395625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb7d3623a14068ffa96daec35661de1a1839292', '31.222.203.2', 1671395625, '__ci_last_regenerate|i:1671395625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785df898146ecaf0012e9b5560c3556f651bf26c', '172.105.247.100', 1671396691, '__ci_last_regenerate|i:1671396691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909d4b08f1dd127c343810cc8bd221766ba91f93', '172.105.247.100', 1671396692, '__ci_last_regenerate|i:1671396691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1759aa1fea10322d7d018fd33a4f6dc287bc8c', '172.105.247.100', 1671396692, '__ci_last_regenerate|i:1671396692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463b53d6e362f560b468e936c26af7b373b37a65', '172.105.247.100', 1671396692, '__ci_last_regenerate|i:1671396692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b4b53d6150028036375602a45e398e7bdb421c', '172.105.247.100', 1671396692, '__ci_last_regenerate|i:1671396692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbb3dd7a6ec4f2c1a30c39788e723e7c43525a6', '172.105.247.100', 1671396693, '__ci_last_regenerate|i:1671396692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfb7aebd8873a82e9fc0397984ab6ffb680362a', '172.105.247.100', 1671396693, '__ci_last_regenerate|i:1671396693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5613ca5c91bbfb1ffa34ceb5c19e74c8d90e5404', '172.105.247.100', 1671396693, '__ci_last_regenerate|i:1671396693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31dd80ea53820b74e4d0bfc84d89646aada8ae5b', '172.105.247.100', 1671396693, '__ci_last_regenerate|i:1671396693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfb75e7abb723c5cecc52cacc714c8ea084cf2b', '172.105.247.100', 1671396694, '__ci_last_regenerate|i:1671396694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24696b4264b0da65bcf373ddd2c4ce66af72a8db', '172.105.247.100', 1671396694, '__ci_last_regenerate|i:1671396694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34fd18e44b8659ea418aa8fdf9727eb6af41dd5b', '172.105.247.100', 1671396694, '__ci_last_regenerate|i:1671396694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50927835a75961808a2f98bf735432c2b637086', '172.105.247.100', 1671396694, '__ci_last_regenerate|i:1671396694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f878aeb8128a9cb1bfdcd6190597947c5544e4', '172.105.247.100', 1671396694, '__ci_last_regenerate|i:1671396694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b808f7e9405b5ee18a5cbbfc217ec15166c57be', '172.105.247.100', 1671396694, '__ci_last_regenerate|i:1671396694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232e724bd18e0c3c5438e24f5f0d4dc8ebae44ec', '172.105.247.100', 1671396695, '__ci_last_regenerate|i:1671396694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d3eddcb448da90b9b4c09e074179c7baf64c44', '172.105.247.100', 1671396695, '__ci_last_regenerate|i:1671396695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355775b9e7076db5a1f1cc362723919bd87e8cbc', '172.105.247.100', 1671396695, '__ci_last_regenerate|i:1671396695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c62c3ba3cacca007142f02992db88b0c6f90a6', '172.105.247.100', 1671396695, '__ci_last_regenerate|i:1671396695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b9fbbea3db49950f7c209c814ac5d95f26e3c7', '172.105.247.100', 1671396696, '__ci_last_regenerate|i:1671396696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65305f0e179bd3bd2d043633d65a4b31976c5071', '172.105.247.100', 1671396696, '__ci_last_regenerate|i:1671396696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d152a33d5d9e8f92db5fc905f3dd810dcf713129', '172.105.247.100', 1671396696, '__ci_last_regenerate|i:1671396696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('633cdc34fcd079ccfee72f0c88a55399c7f0721a', '172.105.247.100', 1671396696, '__ci_last_regenerate|i:1671396696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7036add45c9e609dcbb0baa717b24b487ba9f829', '172.105.247.100', 1671396697, '__ci_last_regenerate|i:1671396697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80938486c090b9561878dd9463860a23ea1e85f9', '31.222.203.2', 1671397419, '__ci_last_regenerate|i:1671397419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec380583169b934af7fae818d63568a5480d56d', '31.222.203.2', 1671397419, '__ci_last_regenerate|i:1671397419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed3215c680666196be5efaa8ee954250e6f78c7', '31.222.203.2', 1671397419, '__ci_last_regenerate|i:1671397419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2145b74e19b1c37d322d8c66b7d33c98063aa016', '31.222.203.2', 1671397420, '__ci_last_regenerate|i:1671397420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f706657ed12a557234af6843cc17efeff66ea4c3', '31.222.203.2', 1671397420, '__ci_last_regenerate|i:1671397420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c35f3d8f52adfb1416a287e6102ee1d9e25a06', '31.222.203.2', 1671397420, '__ci_last_regenerate|i:1671397420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0165f1011b6403918a3b9a50fbf92f38afb3118', '31.222.203.2', 1671399208, '__ci_last_regenerate|i:1671399208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a06779eaf73b35655ab47fab6bb4a08ee0fea90', '31.222.203.2', 1671399208, '__ci_last_regenerate|i:1671399208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84595051cac786ad9f58f6960bc1eeadd65dce0a', '31.222.203.2', 1671399208, '__ci_last_regenerate|i:1671399208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d525a4c7f22f0a1e4a31311115e7668049fb1273', '31.222.203.2', 1671399208, '__ci_last_regenerate|i:1671399208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d990e5a37917b13a1622f1b79229cc7479c14ab', '31.222.203.2', 1671399208, '__ci_last_regenerate|i:1671399208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952cce33844769e45fbb95c9b3dc937a1918c812', '31.222.203.2', 1671399208, '__ci_last_regenerate|i:1671399208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f4226383c60d3f6ee5598f5972fb8db77677c6', '31.222.203.2', 1671400999, '__ci_last_regenerate|i:1671400999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3e32ec2fd87f50626990f49887a0cfcadc2f29', '31.222.203.2', 1671400999, '__ci_last_regenerate|i:1671400999;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8cb0f7c0fb0874808656f6b4e8323caef10becb', '31.222.203.2', 1671400999, '__ci_last_regenerate|i:1671400999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f641f3bc57f94346f9fcc93d1a02a81bea5a983b', '31.222.203.2', 1671401000, '__ci_last_regenerate|i:1671401000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819263bf40878c90902bc74903b7346d4012672f', '31.222.203.2', 1671401000, '__ci_last_regenerate|i:1671401000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5f54ccc626eec3aa8b00e9c46eb7805a225cc5', '31.222.203.2', 1671401001, '__ci_last_regenerate|i:1671401000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6fde7c95b81f3cb00257f99773711f3883cd14a', '172.105.247.100', 1671402684, '__ci_last_regenerate|i:1671402684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d885c3d6622b650254625e105bd2541d0520f9c', '172.105.247.100', 1671402685, '__ci_last_regenerate|i:1671402685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68282c5490329b853e53e6e7c66a7450d0f77c2c', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72427ba00f7e08b474cbe3b6db4e564a7ac01c98', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0b764df30eec2d6e057ab17897f1bcec873e63', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41f39f9c157e346ef006fb283dab6fa4336093c', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82f916aa2f06b99e1db5a8b9275b768559013fe', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08367a1f68c18a16907e383a60566cdef876c09a', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0a485386f8bbea4421f971f78fc3b7b69358a0a', '172.105.247.100', 1671402686, '__ci_last_regenerate|i:1671402686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b49c06a5dd075e7e3e8f4d91feecc57a8ab332', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e38df1258adb12b776e68fb8823f5ab949100e3', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e9d5454fd71fc3ef395dbe41560818cbc1b791', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223775fd5dda1f943a57f2c0d30ac1c53627f913', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc694d06a5bab8cd9d08e430a710345958d2706', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc24614a8afb72113ff0fac39b288566d17fba65', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b49d8ff252e6db81e97aeecdd1ba018d28e84d', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd168c6dc1ed5e39fb6ae0c09a25393602e9f88f', '172.105.247.100', 1671402687, '__ci_last_regenerate|i:1671402687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360db53701f6a7891db897e0b5ef0ec5b103a04a', '172.105.247.100', 1671402688, '__ci_last_regenerate|i:1671402688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d032555339b0b16560a6e1944917aded9b727000', '172.105.247.100', 1671402688, '__ci_last_regenerate|i:1671402688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ca3022af408ed0c4d8c9cd044163ca212683a3', '172.105.247.100', 1671402688, '__ci_last_regenerate|i:1671402688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a768405d0350e06b080f43b44f41504b5bea43', '172.105.247.100', 1671402688, '__ci_last_regenerate|i:1671402688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8a928ca0e82b4e06a404fe007cde1be6399cba', '172.105.247.100', 1671402688, '__ci_last_regenerate|i:1671402688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9414c9f21a0cdddad6c493dfbd71765512c13d6e', '172.105.247.100', 1671402688, '__ci_last_regenerate|i:1671402688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df9f3000d0acc380437428e9f08484f5553b2a1', '172.105.247.100', 1671402689, '__ci_last_regenerate|i:1671402688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60dbc357aaf45aa1757d521f7f1db6cf881c21dc', '205.210.31.132', 1671402820, '__ci_last_regenerate|i:1671402820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808bc559e679bb266635ce2cd61c1cb14db7d866', '205.210.31.132', 1671402820, '__ci_last_regenerate|i:1671402820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de1e2bfbbec0a46bfa26fa52cca659245507d4b', '205.210.31.132', 1671402820, '__ci_last_regenerate|i:1671402820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717acafb81a253f4bc412a0d15a483f6140994d6', '31.222.203.2', 1671402823, '__ci_last_regenerate|i:1671402823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325fbd68330fd5b0a7fac0937e407bfef990cfb3', '31.222.203.2', 1671402823, '__ci_last_regenerate|i:1671402823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7059819e5781e415198b4298283c929b1653f3e3', '31.222.203.2', 1671402823, '__ci_last_regenerate|i:1671402823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1c61610a58d6479e371c70b906d6dc4dffb8772', '31.222.203.2', 1671402823, '__ci_last_regenerate|i:1671402823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9e7c05864c4b1f9efbbbc136bc9108f3e0088c', '31.222.203.2', 1671402823, '__ci_last_regenerate|i:1671402823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937eedd5eca68ee821d2194779ec18d87a4d5534', '31.222.203.2', 1671402823, '__ci_last_regenerate|i:1671402823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bb31f74a1995bf90b1938228724abd82f14e1a', '31.222.203.2', 1671404604, '__ci_last_regenerate|i:1671404604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd23b94edaa22a2aa6a9d85d6c459f60a871ae9b', '31.222.203.2', 1671404604, '__ci_last_regenerate|i:1671404604;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2c64ed405c819613ea2b6992a1e69c3f268d84', '31.222.203.2', 1671404604, '__ci_last_regenerate|i:1671404604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c726cfacf7a9aeaa3a0ea9d0a12157e3ae43a2a', '31.222.203.2', 1671404606, '__ci_last_regenerate|i:1671404606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a9a9235af7e3e7881576c8436abda74a4935d33', '31.222.203.2', 1671404606, '__ci_last_regenerate|i:1671404606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9311b2dc02eb200092e6424b5f9f28c4e312c18e', '31.222.203.2', 1671404606, '__ci_last_regenerate|i:1671404606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7339f8dddd72476a8d2d09128fb64646473e4fd', '31.222.203.2', 1671406428, '__ci_last_regenerate|i:1671406428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0919ae7cd0b7106e398d286be01ac8bb0138b01', '31.222.203.2', 1671406428, '__ci_last_regenerate|i:1671406428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f221317cf4c7dd5aa261c086f03d8b17e00724', '31.222.203.2', 1671406428, '__ci_last_regenerate|i:1671406428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb97751cd8d034d296032093c258cad6ab343de1', '31.222.203.2', 1671406428, '__ci_last_regenerate|i:1671406428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fca1a0fdc15f4a8c4be0ee0f25d80a06fe87b4a', '31.222.203.2', 1671406428, '__ci_last_regenerate|i:1671406428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532b37d37ad4e56785d962894684b87f36af3e6d', '31.222.203.2', 1671406428, '__ci_last_regenerate|i:1671406428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c07229e46fba7fe9ec1d3d33fb11e0dcea6cc0', '31.222.203.2', 1671408222, '__ci_last_regenerate|i:1671408222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f578f34333261ccad6d88ad9680adceca89c9b', '31.222.203.2', 1671408222, '__ci_last_regenerate|i:1671408222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110b33984e2d9c614e1a29652a87d2aca6215013', '31.222.203.2', 1671408222, '__ci_last_regenerate|i:1671408222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78ff7110e2eed6b40afd73f74da2292f467730e', '31.222.203.2', 1671408222, '__ci_last_regenerate|i:1671408222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2415b012ae8ee0a11e180569137d751db0263a78', '31.222.203.2', 1671408222, '__ci_last_regenerate|i:1671408222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4937f26570de974f881ad05563e7de472f62425', '31.222.203.2', 1671408222, '__ci_last_regenerate|i:1671408222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2810f6047b40174457c89e9d7bb7cc92226f9e4b', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866683948c6da2d5c9873af375caf6caa6c056f1', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1910e146f8fc591bee8ef4bb297c184bc5f94a82', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ed06502901c15ec58961712047e22a50c869c7', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5fe27247f5056bba8fc5c6100b6a8010281405a', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2de925f6b56893cc0c13634718427fa7fb4cf35', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a7540b4ee2260e70760c2dad74383cc782f677', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4dad26151e4553df1a3e42412196f57b44160a9', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b95bbcd56bf67ca7d30c4608af05d7cf9eebb08b', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9bb65ed448eb9f425b7501cc87e1198315bd5bc', '172.105.247.100', 1671408683, '__ci_last_regenerate|i:1671408683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8fa34bf8bf2d3bb312088585e51bd1cf199589', '172.105.247.100', 1671408684, '__ci_last_regenerate|i:1671408684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fdd1e3ec22f4f39348c1a7f45ada08a6d5696f8', '172.105.247.100', 1671408684, '__ci_last_regenerate|i:1671408684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ede04ba18b027b458b7870bc963e89d34b7ce51', '172.105.247.100', 1671408684, '__ci_last_regenerate|i:1671408684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d858e9e65f972d07246d9ec496872aaf00d560c', '172.105.247.100', 1671408684, '__ci_last_regenerate|i:1671408684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2551302daf24f2e7663481dc1ae59f39e72daca', '172.105.247.100', 1671408684, '__ci_last_regenerate|i:1671408684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e2744719dcf97e917915cba3c63c8ed6e24cb1', '172.105.247.100', 1671408684, '__ci_last_regenerate|i:1671408684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c225f22968a89bdf6c4e79704dbe9abdf821ef', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650a7383078b5df7b8a24e49eb612ff5b82f0fa7', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2260671020d22f415268b7a9685ff6a351cbfff0', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78d2343a68bdf4c5d1854fe82b9d841b4bc47b3', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6b08a20ce303211f885edf7ffe2dba26e417a28', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b376639dff6b17e45dd3ff24354c9e4ebc3858c', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cffe483daaca2ec7a247d2bf21423f61223be006', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66f341a4f68e2dff608404bc0143808601f8be0', '172.105.247.100', 1671408685, '__ci_last_regenerate|i:1671408685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe3c73a832f3b8e5fc7e0fa656c0727df9cc9e7', '31.222.203.2', 1671410032, '__ci_last_regenerate|i:1671410032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a40952c2129f5988712af4059f7f3a278f58485', '31.222.203.2', 1671410032, '__ci_last_regenerate|i:1671410032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e80cfa69b1f5e1c18a11528fd6ef94a7ce02bc6', '31.222.203.2', 1671410032, '__ci_last_regenerate|i:1671410032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aade705055449ddf8a3bac3b9ef4deea53768ff6', '31.222.203.2', 1671410034, '__ci_last_regenerate|i:1671410034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c767937bc70a4cf800693b6de2f369d465c402', '31.222.203.2', 1671410034, '__ci_last_regenerate|i:1671410034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed411a21b38546eb78cc22b81a9b7dcea1887294', '31.222.203.2', 1671410034, '__ci_last_regenerate|i:1671410034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e327bee507964825dfb0e5731c4153fedafcf3b7', '31.222.203.2', 1671411828, '__ci_last_regenerate|i:1671411828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9288f0f39b82b0ffae1e9bc6e11bf5413d1ed1', '31.222.203.2', 1671411828, '__ci_last_regenerate|i:1671411828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566ed4e0b0b5f1f444e40b5cba568dac98fc3400', '31.222.203.2', 1671411828, '__ci_last_regenerate|i:1671411828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa43e3d4825439a5995892d5cbe60a29d4e9abd7', '31.222.203.2', 1671411830, '__ci_last_regenerate|i:1671411830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65739052bd9bffaa03d5d682a479065f666bf92e', '31.222.203.2', 1671411830, '__ci_last_regenerate|i:1671411830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574cb775733379c4ff108c55289ea7d648cde930', '31.222.203.2', 1671411830, '__ci_last_regenerate|i:1671411830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcfca7a5df29ed7ce3428c0ec34978aec4e3a0e', '31.222.203.2', 1671413615, '__ci_last_regenerate|i:1671413615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca49fbe7c4368fe35961fc4379f2d2b7547b199', '31.222.203.2', 1671413615, '__ci_last_regenerate|i:1671413615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53badb293860905c4bfa1d2bbc9671215375e4ac', '31.222.203.2', 1671413615, '__ci_last_regenerate|i:1671413615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160aba921c7548adda6dd44463b98b2d67257bd4', '31.222.203.2', 1671413615, '__ci_last_regenerate|i:1671413615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1615c6b45c7d32354adc4ad905bf0c5eb4a8a189', '31.222.203.2', 1671413615, '__ci_last_regenerate|i:1671413615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964c155f03a834480766d0fc0e374fb54b58414a', '31.222.203.2', 1671413615, '__ci_last_regenerate|i:1671413615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d420eb9e193082a68d130e753e13c5076adfbc5', '172.105.247.100', 1671414679, '__ci_last_regenerate|i:1671414679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5788707ee1b8da4cd4087593996fd6e60e796f33', '172.105.247.100', 1671414679, '__ci_last_regenerate|i:1671414679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19c98f7d47a055410e3144e6e036684c9b08e64', '172.105.247.100', 1671414679, '__ci_last_regenerate|i:1671414679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bb6a94447a664b3203eeeff85457f5b0710234e', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c999e51a6b66dba542072cfdfcc1d153b5c1b1f7', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09f14dd83d7a0d100ad01242cae6eee54d431f5', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d9f68dcd2d8b2665c64093ad68ea1e3fbf499b', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98ac39a293357bc39631822451567b87bd453d8', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf81a44c73edf7a44f5de367f20b4a127c897c0', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aa31c97584ccaae34cbf554be0a3c906d041ad8', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3fc17c4b874d91783b2853832a9c10ec37c9fa', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aded7236dcf156fa0e11c4a2a65935dc25acb4a', '172.105.247.100', 1671414680, '__ci_last_regenerate|i:1671414680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa76e5fa59667ba84ba18b1247cdecfc67c81ae', '172.105.247.100', 1671414681, '__ci_last_regenerate|i:1671414681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016a216a63b267857e3dd43be0114cd788f15190', '172.105.247.100', 1671414681, '__ci_last_regenerate|i:1671414681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d31f3e8bad8f8dacacb68ac35f94b385a23a3b', '172.105.247.100', 1671414681, '__ci_last_regenerate|i:1671414681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661559808e8f49db904dd46ee7460279ed6d08bb', '172.105.247.100', 1671414681, '__ci_last_regenerate|i:1671414681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7efe6ce498ef972ab6acefa7399bed1950eaa31', '172.105.247.100', 1671414681, '__ci_last_regenerate|i:1671414681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62720603dddb663c3aeebbc26854893d6a0245b9', '172.105.247.100', 1671414681, '__ci_last_regenerate|i:1671414681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0736ecb31f5e94199e9d55a6e55d2cf926528f2c', '172.105.247.100', 1671414682, '__ci_last_regenerate|i:1671414682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a7308f7501acb1e851156c45eaa24f62a5553e', '172.105.247.100', 1671414682, '__ci_last_regenerate|i:1671414682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6f6e5e0aebf923608e0afcf9365268a36af9e6', '172.105.247.100', 1671414682, '__ci_last_regenerate|i:1671414682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b0d9b697364fa3dabcb0b6d9d971dc3a04c3ac', '172.105.247.100', 1671414682, '__ci_last_regenerate|i:1671414682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13802315a1b768baf10a3ed4e500cddfc96bc57b', '172.105.247.100', 1671414682, '__ci_last_regenerate|i:1671414682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebff3d4a312e972b55ef6432ee22222742c85af', '172.105.247.100', 1671414682, '__ci_last_regenerate|i:1671414682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efae78cb00b535ff6cf4cedddae32281c32ef7bf', '31.222.203.2', 1671415417, '__ci_last_regenerate|i:1671415417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a9ad940847697c50e55bef7aa7d75a8a4dfed4', '31.222.203.2', 1671415419, '__ci_last_regenerate|i:1671415419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba09bbd85d9ed1733475eb5f1efdac42d1f716d', '31.222.203.2', 1671415419, '__ci_last_regenerate|i:1671415419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d89237701df3b74f8b2432130f4d5a09760471d', '31.222.203.2', 1671415419, '__ci_last_regenerate|i:1671415419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1d3a339fe1d29771a5f064bb63afc59beee88e', '31.222.203.2', 1671415419, '__ci_last_regenerate|i:1671415419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df0f2ae3734f1dce9b37ea47682faf6faf95a84', '31.222.203.2', 1671415419, '__ci_last_regenerate|i:1671415419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472d056d3282e0e757fca07c345ed046d4f9fa14', '31.222.203.2', 1671417221, '__ci_last_regenerate|i:1671417221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ca13858fc163fffd2f1469f5b8ad3855d57dd3', '31.222.203.2', 1671417221, '__ci_last_regenerate|i:1671417221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac9b2c48e9562d08c2aa77379372b45b7bd163f3', '31.222.203.2', 1671417221, '__ci_last_regenerate|i:1671417221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b147eec75ef18be0864758c0c6732a4ffff2e0', '31.222.203.2', 1671417222, '__ci_last_regenerate|i:1671417222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d06b20de8bb8632b621df836c04317267382747', '31.222.203.2', 1671417222, '__ci_last_regenerate|i:1671417222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9f7c0dea94bad23d77e1757c7db11131c09706', '31.222.203.2', 1671417222, '__ci_last_regenerate|i:1671417222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438b5c9800325f37ff42330a73bb641aa76ea1f6', '31.222.203.2', 1671419026, '__ci_last_regenerate|i:1671419026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85b7f69e67742e9d86d7649520bfc3a5717224a', '31.222.203.2', 1671419026, '__ci_last_regenerate|i:1671419026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58c44d581f996fce8269d8cac60f4bc2fba5b60', '31.222.203.2', 1671419026, '__ci_last_regenerate|i:1671419026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9afee100a60bf81712586d4e2f515d9b1762c70', '31.222.203.2', 1671419028, '__ci_last_regenerate|i:1671419028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc7c125d5447f3526fcf93039e2539b4e8d3bb1', '31.222.203.2', 1671419028, '__ci_last_regenerate|i:1671419028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2319dc977dcd972158d98c50bb7bdb60dcfe24', '31.222.203.2', 1671419028, '__ci_last_regenerate|i:1671419028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10cdccec695fe3ae6059b05cf2c64695a968447', '172.105.247.100', 1671420684, '__ci_last_regenerate|i:1671420684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5d277c155cc85dfe7466f3cf8dbe74e5d95525', '172.105.247.100', 1671420684, '__ci_last_regenerate|i:1671420684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27566437916d53dcd6a1ee665a13780ee432da2c', '172.105.247.100', 1671420684, '__ci_last_regenerate|i:1671420684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c936afd600e3dc14a9ac46b04fe88cafbaa2e269', '172.105.247.100', 1671420684, '__ci_last_regenerate|i:1671420684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb89ea4ed4fe477b205f7010c1b397fd8b7490e', '172.105.247.100', 1671420685, '__ci_last_regenerate|i:1671420685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cc72e9c1237ef9a24576b7e6a6c67be6667404c', '172.105.247.100', 1671420685, '__ci_last_regenerate|i:1671420685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02ae3dd6a02d4f5244f25142046019188d651a5', '172.105.247.100', 1671420685, '__ci_last_regenerate|i:1671420685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df461936f06e7170095feba39d3809abac02d6d', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33c7f907905fabed201d0d193873c6c3877ef2fc', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ae801ca4c8cc6e67715140a3b52bfb5088f4ba', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192eb7e2121edbb155ecf5970cfe6ff760d2e4bd', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393ae77ed4adc035c6b6c5e016472eed8ae99c36', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe815522d4bb14987c66b6da98c15f688f0a81f', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5edca39f9c5118e68e5db85e7db4a2e060a12784', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16ce22fe504e8111da98750031c3f442404ed15', '172.105.247.100', 1671420686, '__ci_last_regenerate|i:1671420686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390ddb74668528278c98d3f0ce585ffd002bb69c', '172.105.247.100', 1671420687, '__ci_last_regenerate|i:1671420687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4339de8a5102934564f6cc696b31ba40c3c41178', '172.105.247.100', 1671420687, '__ci_last_regenerate|i:1671420687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8903e0ce6a44b7872cfefb870ec4af2aef2e84a8', '172.105.247.100', 1671420687, '__ci_last_regenerate|i:1671420687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a79b9a9510eac5597ce4bcef4dd7c4a63eab281', '172.105.247.100', 1671420687, '__ci_last_regenerate|i:1671420687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73df364af04fc1dbefd9e1f0a4dd4a7dc700d8c7', '172.105.247.100', 1671420688, '__ci_last_regenerate|i:1671420687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71239e31a367e23c8dd33926a94a7a8c441733f7', '172.105.247.100', 1671420688, '__ci_last_regenerate|i:1671420688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057b9d257df990b67d769058801a3abb4c0f04ac', '172.105.247.100', 1671420688, '__ci_last_regenerate|i:1671420688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('226532671cdc34170cedb0377e1df5ad319118b7', '172.105.247.100', 1671420688, '__ci_last_regenerate|i:1671420688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388d823ae2e5b61c2ec489113829191452595943', '172.105.247.100', 1671420689, '__ci_last_regenerate|i:1671420689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be792e860ad2ff824187bcdc65c1dcd7ebaa8dc8', '31.222.203.2', 1671420817, '__ci_last_regenerate|i:1671420817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d07ecdcadffd49e16f5cdba27af628dfbf8624', '31.222.203.2', 1671420818, '__ci_last_regenerate|i:1671420818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c52e4c6efc2f7f3ae50ce37fd13480b40f4121', '31.222.203.2', 1671420818, '__ci_last_regenerate|i:1671420818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91411ce2013cc5869b1606856ab88f69e45e0e2', '31.222.203.2', 1671420818, '__ci_last_regenerate|i:1671420818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cbf3a4655b8a44b90f41512d3acc448b42b2112', '31.222.203.2', 1671420818, '__ci_last_regenerate|i:1671420818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafef84eda5c62760cd425c7aa69957d4d969b88', '31.222.203.2', 1671420818, '__ci_last_regenerate|i:1671420818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef6da2135552e8c6bdaba5425a34238d44176db4', '31.222.203.2', 1671422628, '__ci_last_regenerate|i:1671422628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2395cd4b8b0dcf4ba1fb520acd01e171538d178', '31.222.203.2', 1671422630, '__ci_last_regenerate|i:1671422630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca2f1f6db841d78e9086e6377cea27a4f5d41f1', '31.222.203.2', 1671422630, '__ci_last_regenerate|i:1671422630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f170e81758e8528062325dae3c3d42467674f96', '31.222.203.2', 1671422630, '__ci_last_regenerate|i:1671422630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f7b9ed0c7bd5bf7b82743869dc54b12e48f33b', '31.222.203.2', 1671422630, '__ci_last_regenerate|i:1671422630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b3feee195ec7e4b6f76e7c005b9e1be4fccea1', '31.222.203.2', 1671422630, '__ci_last_regenerate|i:1671422630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19cb2cb349a19d7290004023837bfc923905c48a', '31.222.203.2', 1671424427, '__ci_last_regenerate|i:1671424427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c974f514a597dd2b3b3c381831ceed8dd2fc13ce', '31.222.203.2', 1671424428, '__ci_last_regenerate|i:1671424428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a7cd527bb15c48490a283a9a2acf75940c4f8d', '31.222.203.2', 1671424428, '__ci_last_regenerate|i:1671424428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('453ea6420db04c605c4b78c4328859a95e4f80ee', '31.222.203.2', 1671424428, '__ci_last_regenerate|i:1671424428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22dd2fb799cdb3d2396e4ddb4dc2d2f3fe319c16', '31.222.203.2', 1671424428, '__ci_last_regenerate|i:1671424428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade4cd8fcd50a707947fd84a219253af0aa4b256', '31.222.203.2', 1671424428, '__ci_last_regenerate|i:1671424428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be84a3535d1fe8ea0e3139883908d7d512d4df4', '31.222.203.2', 1671426222, '__ci_last_regenerate|i:1671426222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee99822f97f5d3e43637f72d8d673f1320091f1e', '31.222.203.2', 1671426222, '__ci_last_regenerate|i:1671426222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff642f466d73e6af55f7c941c11744299d14b20', '31.222.203.2', 1671426222, '__ci_last_regenerate|i:1671426222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2990d4f6057a1bac1e7a6ee3a0ddbaa28cff3d82', '31.222.203.2', 1671426223, '__ci_last_regenerate|i:1671426223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b96d71abc2ff3f5a467bf844dd486e3e9715a8', '31.222.203.2', 1671426224, '__ci_last_regenerate|i:1671426224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c742249acc2443cbe26e2ed21abb64faa4bed0b4', '31.222.203.2', 1671426224, '__ci_last_regenerate|i:1671426224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d70b4bce913f4b9c9c1bb8dd09951ddd869d19', '172.105.247.100', 1671426685, '__ci_last_regenerate|i:1671426685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8db2ccde2eca9541a24b716c2a50e7f1205f83', '172.105.247.100', 1671426686, '__ci_last_regenerate|i:1671426686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('920d44b32a9b0c81bf43a2531d283bd1e899a8e4', '172.105.247.100', 1671426687, '__ci_last_regenerate|i:1671426687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42146eb4382b2059eb975cde11900cb789649fa', '172.105.247.100', 1671426687, '__ci_last_regenerate|i:1671426687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75dce168c194fe3e7448c6a09f8a3d0215e8f784', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb25b2c6a6e5eb5a3d896052654187dd2958795', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8364d66da52564f919f83fd0aa850579098ff3b', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e80f61718bf678de2a606b4fa83c3775694215', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c9d5c7427e1a18f84e286daf3c8e919f135f8a3', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a90016fdf605c5731dac9759803a6bc9905fb1', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9099c98946925f46a68d6e1d61ec4ab883e88d', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7853f02dbd13aaa3964df013ad54aa9d25c1aa4c', '172.105.247.100', 1671426688, '__ci_last_regenerate|i:1671426688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42fa3fef0bd084284701e214f76a8826fc4fa4c1', '172.105.247.100', 1671426689, '__ci_last_regenerate|i:1671426689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea9375d0c7ed34b7304a70c7278a1ab8884d9d38', '172.105.247.100', 1671426689, '__ci_last_regenerate|i:1671426689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42cb51f05f3baa1ed272e0fd6f26620badb1e88a', '172.105.247.100', 1671426689, '__ci_last_regenerate|i:1671426689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe3a4eec70bfec8f2c757322667785c7ccd505a', '172.105.247.100', 1671426689, '__ci_last_regenerate|i:1671426689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c0f960bffb27f477ea961405b4169d95bf216b', '172.105.247.100', 1671426689, '__ci_last_regenerate|i:1671426689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d392ae6a9ed4266100dd94a2d57c168e60e67e', '172.105.247.100', 1671426689, '__ci_last_regenerate|i:1671426689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4708a8b64505c10f27098f7aac1d442246c30b26', '172.105.247.100', 1671426690, '__ci_last_regenerate|i:1671426690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac6f0c1192757d8d8a625a5965aaedb5c380b37', '172.105.247.100', 1671426690, '__ci_last_regenerate|i:1671426690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8341dec9905f2ece0992976cdff9ca32f4150b0a', '172.105.247.100', 1671426690, '__ci_last_regenerate|i:1671426690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182e7fbcc77206a06ea673965cdbb038d3c87956', '172.105.247.100', 1671426690, '__ci_last_regenerate|i:1671426690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e666831d382f21da0ce5cbd8e5999e6c52536a3', '172.105.247.100', 1671426690, '__ci_last_regenerate|i:1671426690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d18dcdc72fb56a38994fbdad2602c39ba71b7f', '172.105.247.100', 1671426690, '__ci_last_regenerate|i:1671426690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897fa097d3d8f6b8999dda7739d4d7684ae9716b', '31.222.203.2', 1671428017, '__ci_last_regenerate|i:1671428017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2467c6fc7ed9a1439e7e9ed71e2f4171554ae7b', '31.222.203.2', 1671428017, '__ci_last_regenerate|i:1671428017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b516a3418e51bd41761e2f0eef096d1d11c05b5', '31.222.203.2', 1671428017, '__ci_last_regenerate|i:1671428017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9910521b6f39f7ab9d8f14075308b52fc8e7a425', '31.222.203.2', 1671428019, '__ci_last_regenerate|i:1671428019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb350fb7e2d93741461b6c11641b9718c84dabf3', '31.222.203.2', 1671428019, '__ci_last_regenerate|i:1671428019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1b19ead81d596f70dc29ccfa56904fdf095d62', '31.222.203.2', 1671428019, '__ci_last_regenerate|i:1671428019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de28050628af787d36ad9eb272b77a1f6dd16c53', '45.120.39.89', 1671430625, '__ci_last_regenerate|i:1671430625;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671428635;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296e895a4207368649214074d66d229dd9a54692', '116.204.230.18', 1671429380, '__ci_last_regenerate|i:1671429380;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671365620\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683774ea950d2ca2873aa51d65580f78c3201cc0', '116.204.230.18', 1671429779, '__ci_last_regenerate|i:1671429779;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671365620\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('617f12542624450cb4adf1bb1ba24c0e24b114ce', '116.204.230.18', 1671429803, '__ci_last_regenerate|i:1671429779;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671365620\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2634e2586b180324dc610605999dc3c507c766e', '31.222.203.2', 1671429784, '__ci_last_regenerate|i:1671429784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a5e2ebb7ea23ceae3215b7469481703f30dc23', '31.222.203.2', 1671429784, '__ci_last_regenerate|i:1671429784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e6121f7814dbce1d4c00e33d1c5420c576acc9', '31.222.203.2', 1671429784, '__ci_last_regenerate|i:1671429784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf27c3a5be13cca78e9bd79ee1099d40af8402e3', '31.222.203.2', 1671429786, '__ci_last_regenerate|i:1671429786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e221c4e27c7ef371ae54cdf8c83fce444fbaf539', '31.222.203.2', 1671429786, '__ci_last_regenerate|i:1671429786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f7a526c0eca2850e3ecf499e35a40d79d8df6c', '31.222.203.2', 1671429786, '__ci_last_regenerate|i:1671429786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648b356c3996ddc430cd51b9fe7291210143983e', '45.120.39.89', 1671431361, '__ci_last_regenerate|i:1671431361;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671430625;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fc258f0c17a12bbb0263079dad62223f230ae5', '45.120.39.89', 1671437008, '__ci_last_regenerate|i:1671437008;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671430625;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14161630e94da08efda38fbe322f8494f157616', '31.222.203.2', 1671431615, '__ci_last_regenerate|i:1671431615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f4e867508e019d5eb8c314a375007dc778328f', '31.222.203.2', 1671431615, '__ci_last_regenerate|i:1671431615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bed9f0cc31a71178059f6a155c3ab7f65fc1d4f', '31.222.203.2', 1671431615, '__ci_last_regenerate|i:1671431615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca19470e730245d43bd866c99de13952ed957b3', '31.222.203.2', 1671431616, '__ci_last_regenerate|i:1671431616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0539b5dbd5970ad238f24bd774b3427cd863a93d', '31.222.203.2', 1671431616, '__ci_last_regenerate|i:1671431616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e986f48ec376d0d5fb052c4a80a1b7aa2b7b153', '31.222.203.2', 1671431616, '__ci_last_regenerate|i:1671431616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d98396401d2ed17545c0af470d22da544c6b57d', '172.105.247.100', 1671432687, '__ci_last_regenerate|i:1671432687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab523286619c3f1435bce4924d4f8a32eb3a0c6', '172.105.247.100', 1671432688, '__ci_last_regenerate|i:1671432688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6555bd88a11b46fb20a6236aa6592017b449eb', '172.105.247.100', 1671432689, '__ci_last_regenerate|i:1671432689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b4562a80257906718a26ae37ba7bfa781ec506', '172.105.247.100', 1671432689, '__ci_last_regenerate|i:1671432689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d709b6f7ee37d26cee5127776cadc1e2241a40', '172.105.247.100', 1671432689, '__ci_last_regenerate|i:1671432689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa3c5bc5ec92b439b818e31deec7393ca2b2f9c', '172.105.247.100', 1671432689, '__ci_last_regenerate|i:1671432689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eeb124f9db8e26d70cc53390fc8430ccfe52c12', '172.105.247.100', 1671432689, '__ci_last_regenerate|i:1671432689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1283cb32c403fa24668b32062dfdcbf374ec1e', '172.105.247.100', 1671432689, '__ci_last_regenerate|i:1671432689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72812fca89a7f8c5c1d837b5170d04620fc06ee3', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d5c1078c957ef1769e0692c5b3551e4980fd20', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f560d83848e7f9d5420c2daa5e7acb06bcd93bd', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee62c80bda27f93415a6020ee1f24687cfb9233', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eef794b9656aedd833ad2e36be63e118f3e83af', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf68b400fcd9e6e5aaeb04ea23b2f092b499db08', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72760206ee5975c00a66558c4970d9819a3fc1e7', '172.105.247.100', 1671432690, '__ci_last_regenerate|i:1671432690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027763bd99919abaef2517110eaf94f68ef429da', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ac2cc0021940fe4193a9990bd2826b7725d7f2', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f93fa41abcb57b04514c61b24666d8df5df9e7', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed02c44975ff30ff2057b4010c90efc0a7beec20', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0387911c6a2386da333fc209831b62008ff87e0', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e625ce18aebbaad9726d2dff793f65875a6c720', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84629db3021dc10561c02b9b79fdbc9882036f5', '172.105.247.100', 1671432691, '__ci_last_regenerate|i:1671432691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9faa39a5dd1d45832de4173057351521289bc02f', '172.105.247.100', 1671432692, '__ci_last_regenerate|i:1671432691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee8d0c87a5afdc87d4ec2b3f5894c5fccb72661d', '172.105.247.100', 1671432692, '__ci_last_regenerate|i:1671432692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79279a680f07b616b9d2697b34603f9ab5367a1d', '31.222.203.2', 1671433420, '__ci_last_regenerate|i:1671433420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b80e124bcf0c84acca567e72a41efe1446227599', '31.222.203.2', 1671433421, '__ci_last_regenerate|i:1671433421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8c7233b0c708222f0708e430893bb26a5b6525', '31.222.203.2', 1671433421, '__ci_last_regenerate|i:1671433421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc9a8dd3cc9a0f9d4c946cc53f0d73681e1a418', '31.222.203.2', 1671433421, '__ci_last_regenerate|i:1671433421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d43e27239fa8de90c35f557fc80f13555c5aa4', '31.222.203.2', 1671433421, '__ci_last_regenerate|i:1671433421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800e1a8dc61e92889b82ffce74e304d4f6bf106b', '31.222.203.2', 1671433421, '__ci_last_regenerate|i:1671433421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de10bd3b33314d3a72cc9f3024a1399853fa4d8d', '31.222.203.2', 1671435229, '__ci_last_regenerate|i:1671435229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7539bbe79f904d5990488779395b56f6b963aa02', '31.222.203.2', 1671435229, '__ci_last_regenerate|i:1671435229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae41be16bd121cf45c4fa5aaba55921afcb83acc', '31.222.203.2', 1671435229, '__ci_last_regenerate|i:1671435229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2affe089eeae17d6ce3690ed6601899eb174c737', '31.222.203.2', 1671435229, '__ci_last_regenerate|i:1671435229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c57e47c9eef335700f8a5e1c92d8918e017312c3', '31.222.203.2', 1671435229, '__ci_last_regenerate|i:1671435229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c2f3086d3c9eabb5430c568f6b817180bf507a', '31.222.203.2', 1671435229, '__ci_last_regenerate|i:1671435229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ea56c68dc7ba5bbf1ef57cef20e010e81f69abd', '45.120.39.89', 1671439139, '__ci_last_regenerate|i:1671439139;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671437008;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('387a5a91065c36b77b756357e8d3f330711d5c72', '31.222.203.2', 1671437023, '__ci_last_regenerate|i:1671437023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a2d288f120ab8efed6d06bd2cd5af3f725ef4a8', '31.222.203.2', 1671437023, '__ci_last_regenerate|i:1671437023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096b7fd22afbb264b22196427d10820aa3296e7d', '31.222.203.2', 1671437023, '__ci_last_regenerate|i:1671437023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80d4137bb9c2de1b26131090b7fe685bbbf6a65', '31.222.203.2', 1671437023, '__ci_last_regenerate|i:1671437023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d15efecf572815898ca9e4c4672773d6376657', '31.222.203.2', 1671437023, '__ci_last_regenerate|i:1671437023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0753b2d8c93054704220b945e6a509bc31688981', '31.222.203.2', 1671437023, '__ci_last_regenerate|i:1671437023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b06a526dbe0a2b1f1234e55ce44b08c033e50e', '172.105.247.100', 1671438690, '__ci_last_regenerate|i:1671438690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c792863f209e1c1ea816c8f0530b0441b145bcf', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679d066e59c39e19568bf4a13d5966d3bcbd0a1c', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d2651ab48958768c48000bf916d6a67faa1b06e', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2beab993b98f4784aee8c0b5142c8e6651c56354', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d93be9fec44d0e5ace0ac3d6057937cfa3cf143', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f9a128b2d7aa977bc855a25aa331344999895a', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6047a0dc41c946a414c7734f4a6e43767fc0cf', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad71ad1f3091342ce9ec0a5b44886f2d22d73060', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776fe56f06ed5a0372e98ae8d8716ca601a93180', '172.105.247.100', 1671438692, '__ci_last_regenerate|i:1671438692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e21df5bb247ac27f2c220607718f4eb28500712', '172.105.247.100', 1671438693, '__ci_last_regenerate|i:1671438693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e773eff1332c2a0a681a121aa008cd897e11ff76', '172.105.247.100', 1671438693, '__ci_last_regenerate|i:1671438693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79aee8181b9192899946a273688b928538e170ae', '172.105.247.100', 1671438693, '__ci_last_regenerate|i:1671438693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46897ca15310898869fd0b0f860e3342af5c3acd', '172.105.247.100', 1671438693, '__ci_last_regenerate|i:1671438693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bdea7a4d9000cddfd41ca35e210d84574d90a54', '172.105.247.100', 1671438693, '__ci_last_regenerate|i:1671438693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c17975d60a80b05ed5a3b74178322194e43e2f9', '172.105.247.100', 1671438693, '__ci_last_regenerate|i:1671438693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964ee1dcfd6eba2a50732073fe7295021c995dd4', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df53d31e379c7a2e40f30827dfa78bc727ca643a', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a429acef4739ce21f1298868474229a42bba8eaa', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('175e6bbef698b165f0ee573c4973a58001a7cf96', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd5abb273a2c2fa292ae242a79ad3cb7d6907e9', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7435b3ac929ea4193330f5d4c2bb675ed966b0', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c1cc1f30d5efd5ae67ad5dc4b8c97c600b9781', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f89e00c6a5e2fa4377dba7ae6eba7b901c71c1d', '172.105.247.100', 1671438694, '__ci_last_regenerate|i:1671438694;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7965b8833dfa968fed8ba603bf162ed9f4b8ce0c', '31.222.203.2', 1671438823, '__ci_last_regenerate|i:1671438823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01ec953e1a6de26e60508463b7dab948ef07978', '31.222.203.2', 1671438823, '__ci_last_regenerate|i:1671438823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c14a0044aa97629b39b9ef0c9858c8720348565', '31.222.203.2', 1671438823, '__ci_last_regenerate|i:1671438823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fc7b79fef0f69fd77a7eec43afbebe9f83112b3', '31.222.203.2', 1671438824, '__ci_last_regenerate|i:1671438824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5473ac3248df4f499204e15127108851910e27b', '31.222.203.2', 1671438824, '__ci_last_regenerate|i:1671438824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2882c738e1138dfab4568f8dedbd095b5993b1', '31.222.203.2', 1671438824, '__ci_last_regenerate|i:1671438824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cabeb6a4c611569224b0f74c6ee0c69e52791982', '45.120.39.89', 1671440413, '__ci_last_regenerate|i:1671440413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671439139;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2041d75fddd9a877867e2cbcdd9afb0ffd1792f2', '45.120.39.89', 1671443511, '__ci_last_regenerate|i:1671443511;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671440673;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7cb796f08f8af82f7f9951fe8a45d1d0553119', '31.222.203.2', 1671440621, '__ci_last_regenerate|i:1671440621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05b5013a74558ab2a1aa06220f883972939a00c', '31.222.203.2', 1671440621, '__ci_last_regenerate|i:1671440621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e76c72097badabc307640d84e2bb4501609d90', '31.222.203.2', 1671440621, '__ci_last_regenerate|i:1671440621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f8ce5708bd8329ffd8ef4bc8822f4461f76551', '31.222.203.2', 1671440622, '__ci_last_regenerate|i:1671440622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57cf38c0e27e72b453fee28d9c2980eb890d2d81', '31.222.203.2', 1671440622, '__ci_last_regenerate|i:1671440622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bf08348c6792cbdb400dfda457c841322214c5', '31.222.203.2', 1671440622, '__ci_last_regenerate|i:1671440622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f822437f981aa5749efc9616b44fd427d16d637d', '31.222.203.2', 1671442438, '__ci_last_regenerate|i:1671442438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793d618466c165e6c5b807782d4e97d54fec1521', '31.222.203.2', 1671442438, '__ci_last_regenerate|i:1671442438;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a755f1faf6f699c9f9624b6cb89c45c83182f6d', '31.222.203.2', 1671442438, '__ci_last_regenerate|i:1671442438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73bcc2d5adf273316aa5d78cd7f29a945db1af30', '31.222.203.2', 1671442439, '__ci_last_regenerate|i:1671442439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cabe57dc6c1495456ce0d315dd286ed3fcfe85c2', '31.222.203.2', 1671442439, '__ci_last_regenerate|i:1671442439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c709970b7a442dab530a8594804e21b8925df4', '31.222.203.2', 1671442439, '__ci_last_regenerate|i:1671442439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c3c44f0ea20e8253ce43813fcb978ccfe6f477', '45.120.39.89', 1671444625, '__ci_last_regenerate|i:1671444625;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671444417;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e316e46f577883aa676c726241fb16c937243c94', '172.105.247.100', 1671444085, '__ci_last_regenerate|i:1671444085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b91a58df44774582784e478a7c5e579223626d', '172.105.247.100', 1671444085, '__ci_last_regenerate|i:1671444085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4db57a7df8c4dcd97ca916eb0fab2da2d4b09b5', '172.105.247.100', 1671444085, '__ci_last_regenerate|i:1671444085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c3a1aade26398af3ab03d0477a48aa52813515', '172.105.247.100', 1671444086, '__ci_last_regenerate|i:1671444085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f5f9efa864734eda0eb4c7790158d5ad3258de', '172.105.247.100', 1671444086, '__ci_last_regenerate|i:1671444086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03130b75fed0a6b609a88e362cc6a331ea7bf500', '172.105.247.100', 1671444086, '__ci_last_regenerate|i:1671444086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09467d6112721f5f6be093c767452df3bcee57ed', '172.105.247.100', 1671444086, '__ci_last_regenerate|i:1671444086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac419c6786032469f87ca3c05bc5ccfbae87aa36', '172.105.247.100', 1671444087, '__ci_last_regenerate|i:1671444087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80189fbc4088dc64a22c1da38a3b399972cf9ada', '172.105.247.100', 1671444087, '__ci_last_regenerate|i:1671444087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906401980c2995983d0e902b90a5d4ff92ac9b60', '172.105.247.100', 1671444087, '__ci_last_regenerate|i:1671444087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ceaca9a7e81d6c55e8b2497fdc8f0458b5b4720', '172.105.247.100', 1671444087, '__ci_last_regenerate|i:1671444087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d13cfc48ff82657394999af17bbc85b6e6c8abd4', '172.105.247.100', 1671444088, '__ci_last_regenerate|i:1671444088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d0dde99ad347684d4386cd2fa66b62c6ed0a3d', '172.105.247.100', 1671444088, '__ci_last_regenerate|i:1671444088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b2165fc3ad4d3fec03210e055d8e56f23f3dad', '172.105.247.100', 1671444088, '__ci_last_regenerate|i:1671444088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a434ea409ec5952a53442b237ccf44b624d686db', '172.105.247.100', 1671444088, '__ci_last_regenerate|i:1671444088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20cb6fb520c413adc3c0ed08a591f7f9b55be7eb', '172.105.247.100', 1671444088, '__ci_last_regenerate|i:1671444088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d63f165ef95625e475da0c1fef7bb73703238fb', '172.105.247.100', 1671444088, '__ci_last_regenerate|i:1671444088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beabc32603d9d8b0527149edc00281c0cf8f5cf3', '172.105.247.100', 1671444089, '__ci_last_regenerate|i:1671444089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81711eff3dfc6d7bba39896a62b9260f5c12bb6c', '172.105.247.100', 1671444089, '__ci_last_regenerate|i:1671444089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b1196ece9d89c77f6dd23a85917d86a31705d4e', '172.105.247.100', 1671444089, '__ci_last_regenerate|i:1671444089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b694bd9149516ebe54e774e17b91629bb49bb98', '172.105.247.100', 1671444090, '__ci_last_regenerate|i:1671444090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb408425a3458f9d16b9a18320bd07969951d0fe', '172.105.247.100', 1671444090, '__ci_last_regenerate|i:1671444090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb861231906c7d187307bb634bb6b1dd31a90a2', '172.105.247.100', 1671444090, '__ci_last_regenerate|i:1671444090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f357c4845ed97cc66cdbef7f3942a0983f378e', '172.105.247.100', 1671444090, '__ci_last_regenerate|i:1671444090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f1d683958d81e330c68a59b5c6de5711f75130', '31.222.203.2', 1671444226, '__ci_last_regenerate|i:1671444226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c319e959bd9b388806f7fb1483e9c2c04852a334', '31.222.203.2', 1671444226, '__ci_last_regenerate|i:1671444226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d6946d1366a2c4cbcfa448663e1945f44585ce', '31.222.203.2', 1671444226, '__ci_last_regenerate|i:1671444226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b7f0b3fa232a011afe9eceff63fb19414002b88', '31.222.203.2', 1671444226, '__ci_last_regenerate|i:1671444226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ce718a381527674a3eb9af96c827498f099097', '31.222.203.2', 1671444226, '__ci_last_regenerate|i:1671444226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099ed1cc75d45a4436aadcb8679d9bece54acdec', '31.222.203.2', 1671444226, '__ci_last_regenerate|i:1671444226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353b23e0ee4824bb8b8c826b6672bbdb80bb23ce', '205.169.39.63', 1671444333, '__ci_last_regenerate|i:1671444333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ebb3c264be8106cd983f796b290695ae8307a72', '205.169.39.63', 1671444334, '__ci_last_regenerate|i:1671444334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337fdf696fbf87062901351a3d2bf904008a9b06', '45.120.39.89', 1671445636, '__ci_last_regenerate|i:1671445636;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671444417;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c13e4f4a7840f26912b1f7b654b7f32ff4ce026', '65.154.226.169', 1671444899, '__ci_last_regenerate|i:1671444895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccdef78310246b556e5fdf6fc134aa07238502ca', '45.120.39.89', 1671452027, '__ci_last_regenerate|i:1671452027;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671448886;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fce607a5e76b66605fdcc6a0c274780633b5196', '31.222.203.2', 1671446028, '__ci_last_regenerate|i:1671446028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06da691089c39de1c0d3c0746cb6113bd6e47243', '31.222.203.2', 1671446028, '__ci_last_regenerate|i:1671446028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92d1534f60080b558de9eb068c267e973f6ba62', '31.222.203.2', 1671446028, '__ci_last_regenerate|i:1671446028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655b74e4500a7336c870d113c8f82ba3fb96402d', '31.222.203.2', 1671446028, '__ci_last_regenerate|i:1671446028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c9c0e3674df027c5a64c74c743b4d9230d7efd', '31.222.203.2', 1671446028, '__ci_last_regenerate|i:1671446028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a677a46323f1a44ca355f02d7d8f88cbccab16', '31.222.203.2', 1671446028, '__ci_last_regenerate|i:1671446028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d83672f1327b4f0937c19198e50db7a4515ce7b', '31.222.203.2', 1671447828, '__ci_last_regenerate|i:1671447828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c0403b625d6ff7fed570cd29a5e6ce056cec63', '31.222.203.2', 1671447828, '__ci_last_regenerate|i:1671447828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd9e1a79d98a71ad163c2e5b692ccaef7d7ca13', '31.222.203.2', 1671447828, '__ci_last_regenerate|i:1671447828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ee242a2534c7cf6a8edba6f7565db8940d70ee', '31.222.203.2', 1671447828, '__ci_last_regenerate|i:1671447828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18a69cf82c6ee1d9f924613d55c490bd9eaf5a97', '31.222.203.2', 1671447828, '__ci_last_regenerate|i:1671447828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c877407cf17fa16fe9de1f9f958d63a64fe4662', '31.222.203.2', 1671447828, '__ci_last_regenerate|i:1671447828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94378e70ae579463452440dd3a0ddff46c617f3f', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13c48fd70130827f8381c6eb76191bfcbedbb4dc', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d703d4be3c65a8b21edf3e27eb1d45afd6c688', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b9a3c12f51bdad7cb185f50362991911ed84ae', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ccbd28f2870c6175fd8b6a57904e4f2cdb43bc1', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47059cfaa8594b8ee016476b568d12e44b916c0', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf09f4b1b88e56c284a2a525cc5f5ba232506f30', '172.105.247.100', 1671448288, '__ci_last_regenerate|i:1671448288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b0535d0d6267329a1d0eada7439c710a92fe752', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86aaa1337e0211169dffda85f784797692c68529', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ae606197c5e573315e202de887fe31ce7e682f', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbdc3ca2592d371ba44b0460bfc374ae78007d24', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1516e61f58ed1068738a390eb7c0210ebc12b5b8', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01da1c263ff129b0ef058f7310e7a16a4cb2634c', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27016af733633da9e2636d4e151b397ad14975d4', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d32037ec011a45495922cb5bdeb726d666e31336', '172.105.247.100', 1671448289, '__ci_last_regenerate|i:1671448289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1896125f3f162a7bb74f1568655fd0cd0e78c23', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f0f6eb803e56a13b2e2669addac84fc1acd979', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be6243a1bc63ca3e95834b5147354858ddc3cbe2', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ba4ca10d5730a2229f441e449bf96266419025', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41a6a4d1bfef673e47f7997c3b8a4b36b7ce275', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b28123d27fd2b75a1a4b9be8912ddfe24bf971a', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9740d7cc335d6b2ef4300d8c938eb91fc54f9d', '172.105.247.100', 1671448290, '__ci_last_regenerate|i:1671448290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9587f6a4edc0f93112739d395674a46f347d2b48', '172.105.247.100', 1671448291, '__ci_last_regenerate|i:1671448290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4e3697354c29ad041e3ccd21bd600ef925772f', '172.105.247.100', 1671448291, '__ci_last_regenerate|i:1671448291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8039b74ca68d4f93103b91d8e1e0c6f49ce9fa9a', '31.222.203.2', 1671449617, '__ci_last_regenerate|i:1671449617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda16ae5b83b69abcc3ee5c817fb07f39cb7f7c9', '31.222.203.2', 1671449618, '__ci_last_regenerate|i:1671449618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef126c72a39849f834155421ce02eb3778450064', '31.222.203.2', 1671449618, '__ci_last_regenerate|i:1671449618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b549bc1355b15fe18a3086cc14b6d93a9ba374', '31.222.203.2', 1671449618, '__ci_last_regenerate|i:1671449618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5739c9392167654976063747b851614d6c4e5fa', '31.222.203.2', 1671449618, '__ci_last_regenerate|i:1671449618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3bd14f480f6ed270a072bfac21698b712e6a61f', '31.222.203.2', 1671449618, '__ci_last_regenerate|i:1671449618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a65b2060da794b4fa7c354e4615561636992192a', '31.222.203.2', 1671451417, '__ci_last_regenerate|i:1671451417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97258764839b28e83d75183c86bfeea3b8f8ccc', '31.222.203.2', 1671451417, '__ci_last_regenerate|i:1671451417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c37ce255153e85577ed0180bdb2fbcab5c7ac2', '31.222.203.2', 1671451417, '__ci_last_regenerate|i:1671451417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e70c2f44cfd128b7d4fbc75e79f9f5bf2135ec9', '31.222.203.2', 1671451419, '__ci_last_regenerate|i:1671451419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('619209966e71b199a28d6082dbf221424eb3c432', '31.222.203.2', 1671451419, '__ci_last_regenerate|i:1671451419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1210879ceedc92adf82c5ce1803ede4c5c4b1a62', '31.222.203.2', 1671451419, '__ci_last_regenerate|i:1671451419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2b99c51e58d46bc78aeb3d8ebc78aaafefcee5', '45.120.39.89', 1671452577, '__ci_last_regenerate|i:1671452577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671452039;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6d4e478b5a75c995169ff1c5cf58e00ab3f29d', '45.120.39.89', 1671453518, '__ci_last_regenerate|i:1671453518;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671452776;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af041e2afbfe70688a1f23a49b30753534b91456', '31.222.203.2', 1671453195, '__ci_last_regenerate|i:1671453195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79dc37e045e5fa0faf1a5a60f9f3fbda43585c6f', '31.222.203.2', 1671453195, '__ci_last_regenerate|i:1671453195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350fcc35dc78d2aecfdc35dd6982bb887650a2de', '31.222.203.2', 1671453195, '__ci_last_regenerate|i:1671453195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02363fdb8ea09c70f9f8ce121de89196e3ed8219', '31.222.203.2', 1671453198, '__ci_last_regenerate|i:1671453198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5d0274db7cbba68616e381d8f6143f261ae3f5', '31.222.203.2', 1671453198, '__ci_last_regenerate|i:1671453198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc39ae417ce6ca47ee534888193e6682fbb368f4', '31.222.203.2', 1671453198, '__ci_last_regenerate|i:1671453198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f96a6f0de050670741bd68379a0a47b4e438f4', '45.120.39.89', 1671455504, '__ci_last_regenerate|i:1671455504;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671452776;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae322c1cafa8d9e300e1bc58ac5adcdc5ca74ff', '172.105.247.100', 1671454285, '__ci_last_regenerate|i:1671454285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d9b991cb45a3a85d1be386d6987cfc2929fa8a', '172.105.247.100', 1671454288, '__ci_last_regenerate|i:1671454288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abd36eb26f0061bca8c23501797fbe274919749', '172.105.247.100', 1671454288, '__ci_last_regenerate|i:1671454288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e557a095eb692ac1b921e8be0456736e61e086a4', '172.105.247.100', 1671454288, '__ci_last_regenerate|i:1671454288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1199c9f34cafd2973d959f8bbaeab37a897563c9', '172.105.247.100', 1671454288, '__ci_last_regenerate|i:1671454288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d386ec3df30b6114761b99801a02cd3f1a5545', '172.105.247.100', 1671454288, '__ci_last_regenerate|i:1671454288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3c742833780990fa5b6a1d29216fa007d7501f', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('356c106ac3b07b0573b1afc12cff275d1f0d87c4', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948bdee1a086ade19e6a410b042f2f35b4a2d755', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9951bf4012df9db7a5ae558e929bbaa76baa0cd7', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e7de2665b042e51b612c49aaf1d49fac0c2942', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51a221217a00f743dad298bdde9479819b5a6c8', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81264924644d2c36101db223368b9abcaee6af92', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b838db00deff26318dcb8ebbb7fce009fab01b7d', '172.105.247.100', 1671454289, '__ci_last_regenerate|i:1671454289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('870c8833d7754e217dba3ca2e9fbe290f535b252', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e36dd724d395895395b39151a9bb5f87aa64e76', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b26af907682f74487ee294d4055418c3dca1a13f', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3895459605f11b17c15e620d940d59f83b4a4a80', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2dc691d0bd6b6252c7f3dc10e3caec6c60b14b', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7392ffc4fd318d85d6c663059d7f679c3ae0efee', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63697103874fcf927d7a0bf6a03d64e59a991e23', '172.105.247.100', 1671454290, '__ci_last_regenerate|i:1671454290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0099c2a0fcb19910de01b79db5712e40a891a6', '172.105.247.100', 1671454291, '__ci_last_regenerate|i:1671454291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3191cff19815133a3b4add011013fb9d3319d2ae', '172.105.247.100', 1671454291, '__ci_last_regenerate|i:1671454291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6536dbbc1d0626b289779b959d83d6835ddc0a5', '172.105.247.100', 1671454291, '__ci_last_regenerate|i:1671454291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5e75b994acff41f0ec83d3e28b56be76ae925e', '31.222.203.2', 1671455028, '__ci_last_regenerate|i:1671455028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ee67cce6f743785034f2d2a369e382043aecd2', '31.222.203.2', 1671455028, '__ci_last_regenerate|i:1671455028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d941ac8921e0e83f74f643056dd95eb58e4dc193', '31.222.203.2', 1671455028, '__ci_last_regenerate|i:1671455028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d69bfe04d239962b1b22100ef3af62d1e4f0a44', '31.222.203.2', 1671455029, '__ci_last_regenerate|i:1671455029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('469e223165fd6b3f28c49a3cad238c9fb13588fa', '31.222.203.2', 1671455029, '__ci_last_regenerate|i:1671455029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a74781d34e719451bba7beb9d524213c2dafb236', '31.222.203.2', 1671455029, '__ci_last_regenerate|i:1671455029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab7295644be8d202874b054188ecf92d37a38a0', '45.120.39.89', 1671456245, '__ci_last_regenerate|i:1671456245;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671455745;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1617988c87a0712da05418040415a11141a0a3b7', '45.120.39.89', 1671459133, '__ci_last_regenerate|i:1671459133;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671456484;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbe0c6a533131d22b5cb8d81a2225bf69a61507', '31.222.203.2', 1671456847, '__ci_last_regenerate|i:1671456847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15c087e77c16cf8a08f2dae78fc9f146fbb805ef', '31.222.203.2', 1671456847, '__ci_last_regenerate|i:1671456847;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722f7f898450a22a9778273dd854415830aa8bad', '31.222.203.2', 1671456847, '__ci_last_regenerate|i:1671456847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a46b67a84a312285c533c0581d9b74ac5e210b6', '31.222.203.2', 1671456850, '__ci_last_regenerate|i:1671456850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb63786e2bfdcde740111efd0d0d158661aaa3d', '31.222.203.2', 1671456850, '__ci_last_regenerate|i:1671456850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0216137e7eb33070253426b24e78d773e272873', '31.222.203.2', 1671456850, '__ci_last_regenerate|i:1671456850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b687d4aa410051e8c463b021750b3ceb83c31bfb', '31.222.203.2', 1671458621, '__ci_last_regenerate|i:1671458621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470f1c48186c2d9f65f11458bf6757820615e93b', '31.222.203.2', 1671458621, '__ci_last_regenerate|i:1671458621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('625f82cb7dec2b0f9c291141d7b3855e2c5a3dd9', '31.222.203.2', 1671458621, '__ci_last_regenerate|i:1671458621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4a554da80b42d68daeebe5c86addabdf249a2f', '31.222.203.2', 1671458624, '__ci_last_regenerate|i:1671458624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f64ef1b299a579bf3a5791141d8ca8925eac25', '31.222.203.2', 1671458624, '__ci_last_regenerate|i:1671458624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9f55e0519dbf88cdacf7f385cbfa8b622b87bc', '31.222.203.2', 1671458624, '__ci_last_regenerate|i:1671458624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a4ab2e2d121f6e1c007f871524c8e60dc8c95c7', '172.105.247.100', 1671459085, '__ci_last_regenerate|i:1671459085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87161ba5ff66d4486ececf1c9f04b51b8901e53', '172.105.247.100', 1671459085, '__ci_last_regenerate|i:1671459085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33768fa37c07554b9d83b0c9040cfce8e4dd17f', '172.105.247.100', 1671459085, '__ci_last_regenerate|i:1671459085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31729a3e179d228cc6dd1b42fb594e31fe7aa28', '172.105.247.100', 1671459085, '__ci_last_regenerate|i:1671459085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205a1f698931a3f55b019d90283902461e9e318b', '172.105.247.100', 1671459085, '__ci_last_regenerate|i:1671459085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067753dcd726c54b70ae97d65d1a52243d8ac125', '172.105.247.100', 1671459085, '__ci_last_regenerate|i:1671459085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11dd1aeb0a5eb83a2c91223b03f68e71dd2f559', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e23bb2c1bea2064d769465d8d50809352d3bdb', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844074551d280163c07f2caad398343daeac7d08', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91227ad6f7ef55706afcbc17c3ea560d82f8011e', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da668b84fac8848b376a74db8e4498022ac67125', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08213314a62a83eb292218dcc41e832df811ea1', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38338eae373b57ee6f1de7a5b621e1e0dba82f5c', '172.105.247.100', 1671459086, '__ci_last_regenerate|i:1671459086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5006ac198d43b06e6acb2d04a5aa5fa648d2222e', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e43568824848cfd79eb587333818c785f607419', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a2378ca782137fde7e39740ed8ca6b9e26427c', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b590264bdb8e9306bc20e2de7b136f0b93b469', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b56f07c31bdc65d18c26bd648eace20504db8e3', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3240b03eae1088ec6e62041c0057fdbe27e1af30', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a64caf26ee942672f636bbd03c0304df000ca4', '172.105.247.100', 1671459087, '__ci_last_regenerate|i:1671459087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bece5a6c206690068dd3ef7050f7548deaa25f8a', '172.105.247.100', 1671459088, '__ci_last_regenerate|i:1671459088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cef9d8ffbc8aac1eec1f3a03300ca05c50d7399', '172.105.247.100', 1671459088, '__ci_last_regenerate|i:1671459088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7ca2b37c086fa858a3e8e5b9bef9baf9749c58', '172.105.247.100', 1671459088, '__ci_last_regenerate|i:1671459088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01120d44fbf89b09f9087a116345e6cd279ea3c', '172.105.247.100', 1671459088, '__ci_last_regenerate|i:1671459088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163a3ebea02050c2a104024b5f9cfe507d881e54', '45.120.39.89', 1671460820, '__ci_last_regenerate|i:1671460820;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671460811;register_id|s:3:\"284\";cash_in_hand|s:9:\"2340.0000\";register_open_time|s:19:\"2022-12-18 19:48:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f7c1f4d74e5dfe29a0c281e63f6268839fd7a9', '31.222.203.2', 1671460423, '__ci_last_regenerate|i:1671460423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caacd76023f6ae3dd9020712ef97325851d58fc2', '31.222.203.2', 1671460423, '__ci_last_regenerate|i:1671460423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfd06fecd1a7cf87633e593d16fbd4b82a1f15f', '31.222.203.2', 1671460423, '__ci_last_regenerate|i:1671460423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac75cddc8e46ca7413e89e6b8959e014f7ab1949', '31.222.203.2', 1671460425, '__ci_last_regenerate|i:1671460425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b080ec0959fa4c84b8812291051507f90965bb9', '31.222.203.2', 1671460425, '__ci_last_regenerate|i:1671460425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b3691b61ee69742122d1b4c8c82df6c7eda792', '31.222.203.2', 1671460425, '__ci_last_regenerate|i:1671460425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03dbdd079a476c9de62cc03265980c0d393e190', '45.120.39.89', 1671460856, '__ci_last_regenerate|i:1671460820;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671370930\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671460856;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba596fbfd3737dcd0bb15d8cb41ecb0af6d30f7', '31.222.203.2', 1671462225, '__ci_last_regenerate|i:1671462225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a11a58e9782382477a2ecfdeed09b0b7f4f6ace', '31.222.203.2', 1671462225, '__ci_last_regenerate|i:1671462225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c320e03d5a63c9b5940ff28ef5ea5fcc00efb57', '31.222.203.2', 1671462225, '__ci_last_regenerate|i:1671462225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d42be9450da8edfba8da10c08d4e35bc42bc643', '31.222.203.2', 1671462226, '__ci_last_regenerate|i:1671462226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8bc80ceb12acc7fc5c36cb6c0a7ab6c1aef8c3', '31.222.203.2', 1671462226, '__ci_last_regenerate|i:1671462226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48d9a3b329b6beae9bcaac219913fb00a455d02', '31.222.203.2', 1671462226, '__ci_last_regenerate|i:1671462226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e2ee5e2632ecefa790f49cf0f723d13e0632efd', '172.105.247.100', 1671463887, '__ci_last_regenerate|i:1671463887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3590415ee839f6050d39d4bc1cc0d99f75735d', '172.105.247.100', 1671463888, '__ci_last_regenerate|i:1671463888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba84a1526e6c76b62e587b8f745287b5582218ef', '172.105.247.100', 1671463888, '__ci_last_regenerate|i:1671463888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430a9f9ded8c85312beb75ed515a0e6ff966c57e', '172.105.247.100', 1671463888, '__ci_last_regenerate|i:1671463888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4498d94b223a0eef8ffca2b013cbd31e0e9e485e', '172.105.247.100', 1671463889, '__ci_last_regenerate|i:1671463889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5943b7ed5d6382cbf0fc8ac445097f3ee87a1aab', '172.105.247.100', 1671463889, '__ci_last_regenerate|i:1671463889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ea09955a4cae3b44f5c214398df7bfda24f240', '172.105.247.100', 1671463889, '__ci_last_regenerate|i:1671463889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b91bf8dd9257f7239b6df151682150f738a2c5f', '172.105.247.100', 1671463889, '__ci_last_regenerate|i:1671463889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ec899cd88c1b00ba129cfcc57cdf400e185d2f', '172.105.247.100', 1671463890, '__ci_last_regenerate|i:1671463890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e524fb01920acec992c5574dc5bd6777d76c5a60', '172.105.247.100', 1671463890, '__ci_last_regenerate|i:1671463890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0214db7e94a95d40b82473968ec5d25607d133ab', '172.105.247.100', 1671463890, '__ci_last_regenerate|i:1671463890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1b35a65ac19ccc02ecdd60cdb8325f424efa67', '172.105.247.100', 1671463891, '__ci_last_regenerate|i:1671463891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01a06d8f649611f5cec6a49dd846f2ada78ecd21', '172.105.247.100', 1671463891, '__ci_last_regenerate|i:1671463891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5ac2a0f4a5fddd85f737e7a00c3b892282ee81', '172.105.247.100', 1671463891, '__ci_last_regenerate|i:1671463891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9855e6fd94926929fbdecaa78b4c5ad626742c', '172.105.247.100', 1671463891, '__ci_last_regenerate|i:1671463891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb440334ccb9e5c1508883c4d05c71c51d0838a', '172.105.247.100', 1671463891, '__ci_last_regenerate|i:1671463891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d12c691ecd3a76e1880f567a336a655c02a5b0', '172.105.247.100', 1671463891, '__ci_last_regenerate|i:1671463891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b44e8004ab654f452cb70822e3ee9d69056a6e37', '172.105.247.100', 1671463892, '__ci_last_regenerate|i:1671463892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c06a59b7b19ca626643fd5e2af05ebd4de211d4', '172.105.247.100', 1671463892, '__ci_last_regenerate|i:1671463892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7841dad3fe7a4414ee72431e4b91db6b672737', '172.105.247.100', 1671463892, '__ci_last_regenerate|i:1671463892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a546e25d686ca3743f0125a574d0dfb99e0a16', '172.105.247.100', 1671463892, '__ci_last_regenerate|i:1671463892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc67adf5ae26edcf0a259dc28565b355f0530f1d', '172.105.247.100', 1671463893, '__ci_last_regenerate|i:1671463893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb5246f9be632fbb24cf8033f4bcaa4bade12ad', '172.105.247.100', 1671463893, '__ci_last_regenerate|i:1671463893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f8c14ac849f850c1b471eac51274fba18534abc', '172.105.247.100', 1671463893, '__ci_last_regenerate|i:1671463893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee80af82264a02229767ed84c85b50c7b868a578', '31.222.203.2', 1671464029, '__ci_last_regenerate|i:1671464029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3accf187d3640fcaecf8c95e2c05a1d07f84e354', '31.222.203.2', 1671464029, '__ci_last_regenerate|i:1671464029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da09666bceac4f6e62e52dd7bdb17d3a63a1d63', '31.222.203.2', 1671464029, '__ci_last_regenerate|i:1671464029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d36a6536d753d6b5f02d8752e583befaf96434', '31.222.203.2', 1671464031, '__ci_last_regenerate|i:1671464031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd6ab3bd19d0dde15892c63e17c369698697db4', '31.222.203.2', 1671464031, '__ci_last_regenerate|i:1671464031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b039bc9fae5c5abd8208704c9ee257a2d891f22', '31.222.203.2', 1671464032, '__ci_last_regenerate|i:1671464032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4721c7de3837ed8ab5b6dc1981c04f8b42f68d45', '31.222.203.2', 1671465831, '__ci_last_regenerate|i:1671465831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236c5e562d7aa2427aac9b94254e5e3747905278', '31.222.203.2', 1671465831, '__ci_last_regenerate|i:1671465831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1848599aa5461f2236cea51e7d05b08d9863a20f', '31.222.203.2', 1671465831, '__ci_last_regenerate|i:1671465831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42415a0c2b1dd8f47ce3c7c2a7ca8f97fa70621b', '31.222.203.2', 1671465831, '__ci_last_regenerate|i:1671465831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5fd6683e097b5b1e825a9fc76bf5fc204ffca5b', '31.222.203.2', 1671465831, '__ci_last_regenerate|i:1671465831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf420d5605a6a97602fc56f788671568587dc713', '31.222.203.2', 1671465831, '__ci_last_regenerate|i:1671465831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e0a18bccffe472a964914f2c240f9928a88e7b', '31.222.203.2', 1671467633, '__ci_last_regenerate|i:1671467633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00118ab1a4effb2cedbb49ff354755871f90d5a1', '31.222.203.2', 1671467633, '__ci_last_regenerate|i:1671467633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee627a41d659d10dd68c825b2e895d51db128ffc', '31.222.203.2', 1671467633, '__ci_last_regenerate|i:1671467633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65dd913640af226bc8774b66e6141422846fde9', '31.222.203.2', 1671467634, '__ci_last_regenerate|i:1671467634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1d825ebefd734751f6762ef8ed60295b87f955', '31.222.203.2', 1671467634, '__ci_last_regenerate|i:1671467634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99fae86bc013589afff5f91ca19df4e95fa8bd65', '31.222.203.2', 1671467634, '__ci_last_regenerate|i:1671467634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2ebee3e00f80d0b21e53f0bf709c3466a5a66e', '172.105.247.100', 1671468685, '__ci_last_regenerate|i:1671468685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da7723b190cc21065558aa37bc0b18d8c780259', '172.105.247.100', 1671468686, '__ci_last_regenerate|i:1671468686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c2a6b7350b290dbb9cc56e67f27b36497bcca2', '172.105.247.100', 1671468686, '__ci_last_regenerate|i:1671468686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0181158631a88255bbfc6fb51995fdd2decd29d', '172.105.247.100', 1671468686, '__ci_last_regenerate|i:1671468686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e383207f05a0ed4a92fd8127e76617ef30829f6', '172.105.247.100', 1671468686, '__ci_last_regenerate|i:1671468686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3edacadd3cbe5c2269101d10548e78aa5f60ff39', '172.105.247.100', 1671468687, '__ci_last_regenerate|i:1671468687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73671aad047540cf3194d25abaa552ac473b6d94', '172.105.247.100', 1671468687, '__ci_last_regenerate|i:1671468687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df98938496bf97605408718b6a21e011fbaeee88', '172.105.247.100', 1671468687, '__ci_last_regenerate|i:1671468687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d995690c62d19071d8c84b2baae65f402199c1ba', '172.105.247.100', 1671468687, '__ci_last_regenerate|i:1671468687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e216aec57df830d4044c35c495c945585f534d24', '172.105.247.100', 1671468688, '__ci_last_regenerate|i:1671468688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d6b623f2551e15da28002c8b59010753ee1769', '172.105.247.100', 1671468688, '__ci_last_regenerate|i:1671468688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3faafdc8951adf8616548263cfcc885b61c1a21c', '172.105.247.100', 1671468688, '__ci_last_regenerate|i:1671468688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d218e91d15b530d1e9d1813e57335dceb96054f', '172.105.247.100', 1671468688, '__ci_last_regenerate|i:1671468688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23dbf8d89bec05fc39c0ca5f9966953b101d11f3', '172.105.247.100', 1671468689, '__ci_last_regenerate|i:1671468688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149bd448cded2706a258fa8c302c22058ee29254', '172.105.247.100', 1671468689, '__ci_last_regenerate|i:1671468689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8758fcdff3ab862e819e5a1b47eb4a4540627491', '172.105.247.100', 1671468689, '__ci_last_regenerate|i:1671468689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00de82eff1a77f960720ea3d723fd6fa404ed741', '172.105.247.100', 1671468689, '__ci_last_regenerate|i:1671468689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f27a8c5fe49b373bfdafa1f9788564bf6822e0', '172.105.247.100', 1671468689, '__ci_last_regenerate|i:1671468689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('621287028d2a7c76946bc0b6f528188a9c777b6f', '172.105.247.100', 1671468690, '__ci_last_regenerate|i:1671468690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e58bdd6c84cc3e60a793e76c3a5ed0290dc6fb', '172.105.247.100', 1671468690, '__ci_last_regenerate|i:1671468690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77663f778d44237f2542466733fcb22f8a6c2644', '172.105.247.100', 1671468690, '__ci_last_regenerate|i:1671468690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eede73f53ead25aa830b9ea95d9d4901c2bcbc4', '172.105.247.100', 1671468691, '__ci_last_regenerate|i:1671468691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48b197a876780d202f8bb026c1b6e6dbabb6417', '172.105.247.100', 1671468691, '__ci_last_regenerate|i:1671468691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2c27879320dfd165c4360fbab1002a6585f401', '172.105.247.100', 1671468691, '__ci_last_regenerate|i:1671468691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2e64fb638b425e67cf80e984f4e36715d2267e', '31.222.203.2', 1671469403, '__ci_last_regenerate|i:1671469403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b9ee766142820603df6153020512e29613e28f', '31.222.203.2', 1671469403, '__ci_last_regenerate|i:1671469403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543ab9f380c83360df8ecfdd58f3d6d4ec78d5bc', '31.222.203.2', 1671469403, '__ci_last_regenerate|i:1671469403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba87b311f1aba65313b01e1f6ec84a4ea2665c76', '31.222.203.2', 1671469404, '__ci_last_regenerate|i:1671469404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67c6dc3f0bc7c61664e655cb24765605cc14245', '31.222.203.2', 1671469404, '__ci_last_regenerate|i:1671469404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be54dc4482cbfd5f7a3ca970ac44b15bcba95964', '31.222.203.2', 1671469404, '__ci_last_regenerate|i:1671469404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132e717a033aa480fce42af82c1db814b819daf4', '31.222.203.2', 1671471197, '__ci_last_regenerate|i:1671471197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b58cdd97358e64a6f2a5a9f36b0e94bd2c9e43', '31.222.203.2', 1671471197, '__ci_last_regenerate|i:1671471197;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d0e5a0fe7476140c179d4bca910d36fd1be4318', '31.222.203.2', 1671471197, '__ci_last_regenerate|i:1671471197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9541405ef51a436cd8a3a54917929b25469531b8', '31.222.203.2', 1671471197, '__ci_last_regenerate|i:1671471197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a18be4585258250a87ea13cd53ae0ce741deee', '31.222.203.2', 1671471197, '__ci_last_regenerate|i:1671471197;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bac0b51eb910b0be0164e420c7f3e25a71f10b0', '31.222.203.2', 1671471197, '__ci_last_regenerate|i:1671471197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffdb10590244f850d02b3f53b573bfc438c980c7', '31.222.203.2', 1671473021, '__ci_last_regenerate|i:1671473021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a951e35173bc9d9416b6a7cfe6c23f6934c6d0', '31.222.203.2', 1671473021, '__ci_last_regenerate|i:1671473021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('725d7e9e56a67480524bfcad0a29089cb384abba', '31.222.203.2', 1671473021, '__ci_last_regenerate|i:1671473021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97245fcec00b980777bb6a2810e789e386510a0e', '31.222.203.2', 1671473023, '__ci_last_regenerate|i:1671473023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f5300695d08ba03579bd88479fd47db8c7ffd5', '31.222.203.2', 1671473023, '__ci_last_regenerate|i:1671473023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6066984822c072aaed4973127b1e44ac40645603', '31.222.203.2', 1671473023, '__ci_last_regenerate|i:1671473023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2d41e0bdaa250ede3b0f89cb3fee429a862412', '172.105.247.100', 1671473483, '__ci_last_regenerate|i:1671473483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf851666a6c9ec7d2284d6f6bf363d4b17597363', '172.105.247.100', 1671473484, '__ci_last_regenerate|i:1671473484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998208b75791ab383649e27edc11029335bfa5a7', '172.105.247.100', 1671473484, '__ci_last_regenerate|i:1671473484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9a4a41a6c2565e9db343541431c50b6499d8fa', '172.105.247.100', 1671473484, '__ci_last_regenerate|i:1671473484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe12ed20b3732aa9927a6e1e8ab2b2adfeb444f', '172.105.247.100', 1671473484, '__ci_last_regenerate|i:1671473484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2286d78e6cd4b3c3bc6b4984f2cc21751d715246', '172.105.247.100', 1671473484, '__ci_last_regenerate|i:1671473484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a4caa5fe818bfda8faec66967f03f5d171c8ea', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9ea192c432074cf1c9cb480361615d5b67c8ff', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c46c9a28be42dd41f2d6625e27188db14eaaabcb', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b678a59f03d3c69467e5fc4cc04389435f765b', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8d65671b96c4cab814794c8f914a46c1de8afa', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2272d0bcdcfefe69ec29005030feb0b9a816506b', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384591a57ecd7cdd1447a382d629a033ca3263f8', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7eef305fe0b21dbcf3ed2e10c68d6148518dda', '172.105.247.100', 1671473485, '__ci_last_regenerate|i:1671473485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775a14c5f5aefc421ede6dec2998d63023d36594', '172.105.247.100', 1671473486, '__ci_last_regenerate|i:1671473486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f70dd17fe95224be6aa81cb85e97cc374a23c4', '172.105.247.100', 1671473486, '__ci_last_regenerate|i:1671473486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4d49aad5caa596ba6862f2bd403bce7d238529', '172.105.247.100', 1671473486, '__ci_last_regenerate|i:1671473486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c928ec0bef5fd0e073c1fe5faa2799588bf974', '172.105.247.100', 1671473486, '__ci_last_regenerate|i:1671473486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cde31eb9860785ff3410dce8d517ae279e3071', '172.105.247.100', 1671473486, '__ci_last_regenerate|i:1671473486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9efc046a7eb031a414727af0a2da2f172335b7a', '172.105.247.100', 1671473486, '__ci_last_regenerate|i:1671473486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d776894b5fbe0434e53127c14699a7dea0f6051', '172.105.247.100', 1671473487, '__ci_last_regenerate|i:1671473486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afaa534dd4b069f3886160c3ee8ec0e89f47ea2', '172.105.247.100', 1671473487, '__ci_last_regenerate|i:1671473487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370561465f05319eb27680064c314ecbfff287bf', '172.105.247.100', 1671473487, '__ci_last_regenerate|i:1671473487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc4969dee217646b1967cec3f906dc9da229c32', '172.105.247.100', 1671473487, '__ci_last_regenerate|i:1671473487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c63ec13702e7b13fbc9cb2315c90b2aea97a820', '31.222.203.2', 1671474817, '__ci_last_regenerate|i:1671474817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f69fc68e46b070216ca8a3a2d3321b53b97b1b', '31.222.203.2', 1671474817, '__ci_last_regenerate|i:1671474817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3acdddc0c2cb69d93a15b511d7fc568913c039a', '31.222.203.2', 1671474817, '__ci_last_regenerate|i:1671474817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b578e4476c73330417f50b0fd8bd3556ea4bb4', '31.222.203.2', 1671474818, '__ci_last_regenerate|i:1671474818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd94fa2243c5798b18780d1c76635d71aa91b2c', '31.222.203.2', 1671474818, '__ci_last_regenerate|i:1671474818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7fc4a2a1d522d87e9955323b750de05b7fcf526', '31.222.203.2', 1671474818, '__ci_last_regenerate|i:1671474818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccffd0a61709a836832eca9b95e60c8e7068f6c2', '31.222.203.2', 1671476626, '__ci_last_regenerate|i:1671476626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f15a0ec30e6120a2c7b184d9788b16ac4aba806', '31.222.203.2', 1671476626, '__ci_last_regenerate|i:1671476626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aff85e611eee64a2754593499d5956430cbf4fb', '31.222.203.2', 1671476626, '__ci_last_regenerate|i:1671476626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf08c4532fcc795642be860210d87841143bc118', '31.222.203.2', 1671476629, '__ci_last_regenerate|i:1671476629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f85162dc46af7caa7edfa2fccc873d66b3e8f1', '31.222.203.2', 1671476629, '__ci_last_regenerate|i:1671476629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c975cc5129714d6cff3db3ea38c7eb30751829ba', '31.222.203.2', 1671476629, '__ci_last_regenerate|i:1671476629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8733e1a614b31c6eee4b99f78cf451c34704248c', '172.105.247.100', 1671478297, '__ci_last_regenerate|i:1671478297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a614e40a3965856ef5015ba0715f8392cfd83fc', '172.105.247.100', 1671478297, '__ci_last_regenerate|i:1671478297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fddff10974642aa93e379b98cbda89c9f6536d0', '172.105.247.100', 1671478297, '__ci_last_regenerate|i:1671478297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed7178cfca4eb1577d485278893bdcd807526cc3', '172.105.247.100', 1671478297, '__ci_last_regenerate|i:1671478297;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9f615c010226e1ce08f19ac7e48cb5b04ce8bd', '172.105.247.100', 1671478297, '__ci_last_regenerate|i:1671478297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3660cb414c6599781ac0d21f05cca55df84af403', '172.105.247.100', 1671478297, '__ci_last_regenerate|i:1671478297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b80256f2b1fc5a4ac7d2cee873a8922ffbc3d51', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a41e1381e97d5aefd59412d214156af2547a45', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764ef7dc854fe71eba8c463e4c86f5afdadd189a', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258083c97acae1b4ae6fbcd58be74b4fb5f59af5', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('112011bab428d0f238b5f7a1f3367c5fdf309023', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80cd72e002123cf2622bb8997e3b16b9f900ec1c', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4319768d0d3687b4cf7eead2246f1ad03549da6a', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dff4490dc13654aada0a3685c3103d9694ee2a7', '172.105.247.100', 1671478298, '__ci_last_regenerate|i:1671478298;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5518e16427d23515afde752d48fefa86d3ccf65e', '172.105.247.100', 1671478299, '__ci_last_regenerate|i:1671478299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e717692e3cdb90d073a7d3445aa54a0bec82ef39', '172.105.247.100', 1671478299, '__ci_last_regenerate|i:1671478299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd806eb64fd6990817d2de39577ce09624d0e4c', '172.105.247.100', 1671478299, '__ci_last_regenerate|i:1671478299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000f724b0312445271731d3e2497f4130ae148e1', '172.105.247.100', 1671478299, '__ci_last_regenerate|i:1671478299;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a3dd952a9ea3d1ea53dbc1715a323f9be343af', '172.105.247.100', 1671478299, '__ci_last_regenerate|i:1671478299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42499f797409cbd87f9fa40522431d770bdf325', '172.105.247.100', 1671478299, '__ci_last_regenerate|i:1671478299;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59123f4d0952f156bff570ffb05679f9e8ef205a', '172.105.247.100', 1671478300, '__ci_last_regenerate|i:1671478300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b6c2dd4bf81837130690cd819e09c9ddcbcf06', '172.105.247.100', 1671478300, '__ci_last_regenerate|i:1671478300;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9ceaa0838f911cab923d58fe8f2f9f07ad618f', '172.105.247.100', 1671478300, '__ci_last_regenerate|i:1671478300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad4603b7f256b3c621d25442ae784b4358376b5', '172.105.247.100', 1671478300, '__ci_last_regenerate|i:1671478300;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04eda1b8b75e4c6172abd795dfebe7be65113205', '31.222.203.2', 1671478430, '__ci_last_regenerate|i:1671478430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22feab9a38309007442b72a6687d65f11d8e5dc7', '31.222.203.2', 1671478430, '__ci_last_regenerate|i:1671478430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e295017f7b34e55bcbf99c575a7faf8104f96dd', '31.222.203.2', 1671478430, '__ci_last_regenerate|i:1671478430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1dcc1fe3612d64412ffb59f44fc00d6a3a81967', '31.222.203.2', 1671478433, '__ci_last_regenerate|i:1671478433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a415f46f121fbfa078a209a1e47f9855149a2f40', '31.222.203.2', 1671478433, '__ci_last_regenerate|i:1671478433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa722e7ddbf49d85b09a93a563184c07775f5838', '31.222.203.2', 1671478433, '__ci_last_regenerate|i:1671478433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdbb87df6beecece9850e5d1f682c51bc5ac12e', '31.222.203.2', 1671480217, '__ci_last_regenerate|i:1671480217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16be9021efc6b6bba57ac9cc497ada9b55023835', '31.222.203.2', 1671480217, '__ci_last_regenerate|i:1671480217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77424bd3049397f13dabf0335a63e38fd33648c2', '31.222.203.2', 1671480217, '__ci_last_regenerate|i:1671480217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042cde83bcda68a479a146e6ac1fbfae7176c144', '31.222.203.2', 1671480217, '__ci_last_regenerate|i:1671480217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34becbbedec6b52d55393b5ac83cddb8eeb21e90', '31.222.203.2', 1671480217, '__ci_last_regenerate|i:1671480217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31212a105f73a1a59377a3be3d3423d3876233af', '31.222.203.2', 1671480217, '__ci_last_regenerate|i:1671480217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf84c6afdcec683205f85a988e9609012a6fc7c5', '31.222.203.2', 1671482017, '__ci_last_regenerate|i:1671482017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c773926c7e8436b435b93f3e1a584847c227da2b', '31.222.203.2', 1671482017, '__ci_last_regenerate|i:1671482017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92925217f4ddf3ad17cdc63764829294eb471e8', '31.222.203.2', 1671482017, '__ci_last_regenerate|i:1671482017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6b4e3208f1286af2c9b849898d97fd90546953', '31.222.203.2', 1671482020, '__ci_last_regenerate|i:1671482020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc87210fe34a0cfa9b2bed992b9306ca4a97418', '31.222.203.2', 1671482020, '__ci_last_regenerate|i:1671482020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1848f6a9a28ef7f08b797f704ea3071cbe4abe', '31.222.203.2', 1671482020, '__ci_last_regenerate|i:1671482020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd8b3ebf1401fb5bda23610cdeb3b0741c4f733', '172.105.247.100', 1671483081, '__ci_last_regenerate|i:1671483081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9880f675b17429ca56db758efda4b80ad6ce15', '172.105.247.100', 1671483081, '__ci_last_regenerate|i:1671483081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc879e4b0227b6783899103c36fc0ea20f086066', '172.105.247.100', 1671483082, '__ci_last_regenerate|i:1671483082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72762b38cb552fd2a1bdc3c73c75aa3b44eed9ef', '172.105.247.100', 1671483082, '__ci_last_regenerate|i:1671483082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9c48cf2390c3b07d1d6106876957468e873ae0', '172.105.247.100', 1671483082, '__ci_last_regenerate|i:1671483082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28cc733758a94e5600644d492afa8b1df112a01a', '172.105.247.100', 1671483082, '__ci_last_regenerate|i:1671483082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcda7934bcaec5de7cb35aa69d872d9235fcf95a', '172.105.247.100', 1671483083, '__ci_last_regenerate|i:1671483082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5c7b042373eb1e03bd0328a435e78b92e7d2b9', '172.105.247.100', 1671483083, '__ci_last_regenerate|i:1671483083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af5b86c0aadc847010abe89c7d159290e0ac541', '172.105.247.100', 1671483083, '__ci_last_regenerate|i:1671483083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6939202f5e2784a72d4943c1605eaff384efcd70', '172.105.247.100', 1671483083, '__ci_last_regenerate|i:1671483083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01631d8fa986197a57980771109fe6619a319160', '172.105.247.100', 1671483083, '__ci_last_regenerate|i:1671483083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89db073b753f2bf75aea5bd9a0fa1d208f699f6d', '172.105.247.100', 1671483083, '__ci_last_regenerate|i:1671483083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae12a2d2e48599d4937cb936c1fa52dbc0142a84', '172.105.247.100', 1671483084, '__ci_last_regenerate|i:1671483084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42fc23e1ea8f6dffe963913a0f8f067562d77f43', '172.105.247.100', 1671483084, '__ci_last_regenerate|i:1671483084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b44d0754771e6f5c3c4a09f79b730478b45018', '172.105.247.100', 1671483084, '__ci_last_regenerate|i:1671483084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd277ccbb039d3477308a76a5a4216bee851aea', '172.105.247.100', 1671483084, '__ci_last_regenerate|i:1671483084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5488e47b08a6d24e6a68f11aa8bcdbd9886a52', '172.105.247.100', 1671483084, '__ci_last_regenerate|i:1671483084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5f20251e63f3fbe45e9d3f231eb75778377621', '172.105.247.100', 1671483084, '__ci_last_regenerate|i:1671483084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772b9387427146b3b005a3e0e5f312221852354a', '172.105.247.100', 1671483085, '__ci_last_regenerate|i:1671483085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f08bfa81cb1d82648c33f0e0f1bd7ccaa8caf13', '172.105.247.100', 1671483085, '__ci_last_regenerate|i:1671483085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964466e60744d1e7350ad1227875ada74b5b82fe', '172.105.247.100', 1671483085, '__ci_last_regenerate|i:1671483085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13bc2323b6e93eacf6ba3d5ec90ddd36c47e396a', '172.105.247.100', 1671483085, '__ci_last_regenerate|i:1671483085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53ced2799adb8b290b0508783d48c7f6a2fbd58', '172.105.247.100', 1671483086, '__ci_last_regenerate|i:1671483086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b42c1806df2e171151185c025ce26120ea334738', '172.105.247.100', 1671483086, '__ci_last_regenerate|i:1671483086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3d4481db371e3c7cea373360bb3293e8ff203e', '31.222.203.2', 1671483817, '__ci_last_regenerate|i:1671483817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7637b8d8ca010e5ca7ced176339ab3f32e357bdc', '31.222.203.2', 1671483817, '__ci_last_regenerate|i:1671483817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c5e959c943ec68dff61f3bdc23c021c42e0c3a', '31.222.203.2', 1671483817, '__ci_last_regenerate|i:1671483817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af403ae4e43b581b1b29528da5555f21feda0f91', '31.222.203.2', 1671483817, '__ci_last_regenerate|i:1671483817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b06685edb56d01d408821f0793e82afdc03a62f', '31.222.203.2', 1671483817, '__ci_last_regenerate|i:1671483817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ab746d69b5e07e39321bf8923761d424821525', '31.222.203.2', 1671483817, '__ci_last_regenerate|i:1671483817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb4a4571f76478d253a10c05bcebbe0fc61200b', '31.222.203.2', 1671485620, '__ci_last_regenerate|i:1671485620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6cfa276b151e3f1dfd42ffd61abe3b2ea904a55', '31.222.203.2', 1671485620, '__ci_last_regenerate|i:1671485620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7042cb1c3f62304ce95c4ed824e0cbad9edd19af', '31.222.203.2', 1671485620, '__ci_last_regenerate|i:1671485620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ffbdc006fd5997763b94a16365117c9fd668f4', '31.222.203.2', 1671485620, '__ci_last_regenerate|i:1671485620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeaa1853653656f277dfda8ddf7b9a6ed4bec40b', '31.222.203.2', 1671485620, '__ci_last_regenerate|i:1671485620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90a61b7e6233196652af367e95d0e43087db89a', '31.222.203.2', 1671485620, '__ci_last_regenerate|i:1671485620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f562fb6eef3ba07886f8b53add31c3827c1cd987', '31.222.203.2', 1671487414, '__ci_last_regenerate|i:1671487414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6550e2c3f4242f8d419fcd211d0af382855550cd', '31.222.203.2', 1671487414, '__ci_last_regenerate|i:1671487414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc3f884632140b5ab1627d89d822d8275481a74', '31.222.203.2', 1671487414, '__ci_last_regenerate|i:1671487414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7688296d69409c8cd246cf9584018a9b9c679d9', '31.222.203.2', 1671487414, '__ci_last_regenerate|i:1671487414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c040eff7e31984ef418ced2e04bc21135395f5d', '31.222.203.2', 1671487414, '__ci_last_regenerate|i:1671487414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a47c51dd9338ec12070759f8fb4a9939e7f692a', '31.222.203.2', 1671487414, '__ci_last_regenerate|i:1671487414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52b7460386e20669dd1dcaffe1c2b750f8fdbadd', '172.105.247.100', 1671487878, '__ci_last_regenerate|i:1671487878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a212e3ff5e229d3207b0503bbdb19776699c7b3', '172.105.247.100', 1671487878, '__ci_last_regenerate|i:1671487878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5444a2cf6ab5ff2c029378be70076ebbfe0157d5', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ab4e8aca29dc102b011118e1264df6b884b4f4', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40f87a996643aa20b1434bffb0802f812d838cc', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cb70a5a973353bce61796235f3377d1998b6a2', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea79336aa73a362f9d80e342049f41e33d3d400', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166ae31ad656638adceac8fcd5e906e0fbb2e100', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6edcfebe8077836775ab396b4090e78545b2e9', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559f32e87d8dbeccfbfc0f5d2e79ceaadcb1863d', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b85b7d1831c24c9958b2e2cb32f9b5addeda1e', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5793aca67d33209f88d79128485881c750a3d3', '172.105.247.100', 1671487879, '__ci_last_regenerate|i:1671487879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ccf760b86b192afa84510b0d428982c79258f2', '172.105.247.100', 1671487880, '__ci_last_regenerate|i:1671487880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbeff95bc26d48a02727eaa658fcd70692231923', '172.105.247.100', 1671487880, '__ci_last_regenerate|i:1671487880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd81b895fd10260d5968af8fa81c671473c7a830', '172.105.247.100', 1671487880, '__ci_last_regenerate|i:1671487880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbca1319f999018812fd1a287d65ec6127cf7552', '172.105.247.100', 1671487880, '__ci_last_regenerate|i:1671487880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a52b2773242c6c195bb0b78390d855d0c5b390', '172.105.247.100', 1671487880, '__ci_last_regenerate|i:1671487880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8caa26445bac9059a5e0a5149dca7aa89da4e582', '172.105.247.100', 1671487880, '__ci_last_regenerate|i:1671487880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56eede12080044a44be0c454a5f7236509b2a4a2', '172.105.247.100', 1671487881, '__ci_last_regenerate|i:1671487880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4659919a432943b158f11e0f025610b33fe9238', '172.105.247.100', 1671487881, '__ci_last_regenerate|i:1671487880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7449045883a286af05b3a6400fd89f5b9ca4ad', '172.105.247.100', 1671487881, '__ci_last_regenerate|i:1671487881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174da243bfa0df9d405c0707878949371b27121c', '172.105.247.100', 1671487881, '__ci_last_regenerate|i:1671487881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4bd789bf6db0bfb94a73adc09d8572522d62e5', '172.105.247.100', 1671487881, '__ci_last_regenerate|i:1671487881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f7e6d5587bea42a72df70c79b52153467cc62b', '172.105.247.100', 1671487881, '__ci_last_regenerate|i:1671487881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a7b29cd8e379390fce83f92285b978a7008b45', '31.222.203.2', 1671489218, '__ci_last_regenerate|i:1671489218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09867b930020e4094be6ee51380cb27c670d7053', '31.222.203.2', 1671489219, '__ci_last_regenerate|i:1671489219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46df6e67664cfb8f16868fb76b82c371054a3b07', '31.222.203.2', 1671489219, '__ci_last_regenerate|i:1671489219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a82b9f5e7eee989a0ca388a105870d4dc872f1a5', '31.222.203.2', 1671489219, '__ci_last_regenerate|i:1671489219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87348bc1436372c9283f43a66e7b07922333438f', '31.222.203.2', 1671489219, '__ci_last_regenerate|i:1671489219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f2a28d5935f3f2748f1f56cc246445e6f57ce9', '31.222.203.2', 1671489219, '__ci_last_regenerate|i:1671489219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508b3f8de05dc73293cea73510c2d76e61182e9a', '31.222.203.2', 1671491016, '__ci_last_regenerate|i:1671491016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763fe9ec1c6d41eeef81c2225d64b138b0d90d74', '31.222.203.2', 1671491016, '__ci_last_regenerate|i:1671491016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0905d1052750ba8c854554da08f91dcc3fcad696', '31.222.203.2', 1671491016, '__ci_last_regenerate|i:1671491016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840d7703e03d44956fcfa5a449558e547a1de28c', '31.222.203.2', 1671491019, '__ci_last_regenerate|i:1671491019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a764595757a453bbea44f88bb5234d68c4bf85', '31.222.203.2', 1671491019, '__ci_last_regenerate|i:1671491019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4bfbfe1757f4739043ba8b920306567268694af', '31.222.203.2', 1671491019, '__ci_last_regenerate|i:1671491019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d0951f56e0a97b646f8fe7ed30c6031e3448d1', '31.222.203.2', 1671492822, '__ci_last_regenerate|i:1671492822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526b25d5dace876b2676cfa19b26eaea522a7723', '31.222.203.2', 1671492822, '__ci_last_regenerate|i:1671492822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3a108589fdc8c81ef9bb7f1a32546de95e3b607', '31.222.203.2', 1671492822, '__ci_last_regenerate|i:1671492822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0965abf092f77d28fc3661510b00fba9e3c0e324', '31.222.203.2', 1671492822, '__ci_last_regenerate|i:1671492822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e523eef843d962822558819f69bfed33be0f4167', '31.222.203.2', 1671492822, '__ci_last_regenerate|i:1671492822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0362750513be413d52161c6802977ca223bddcb3', '31.222.203.2', 1671492822, '__ci_last_regenerate|i:1671492822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c715aa85eaf321fdfd3ba53e7b3bdfb412023efc', '172.105.247.100', 1671493876, '__ci_last_regenerate|i:1671493876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15839cb431f8b6fcba51c395b30d35b0df7f4122', '172.105.247.100', 1671493877, '__ci_last_regenerate|i:1671493877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4093717c3ce9b948f76fc7af42c99c51a536ca87', '172.105.247.100', 1671493877, '__ci_last_regenerate|i:1671493877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab91fed0c1a37d02db67a834b1dd8ee952151e15', '172.105.247.100', 1671493877, '__ci_last_regenerate|i:1671493877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0430bcc7fb15a8af4f36440cd23f6ed677f33e65', '172.105.247.100', 1671493878, '__ci_last_regenerate|i:1671493878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7386038515526600446d57fabc6fbb6a8e09bc', '172.105.247.100', 1671493878, '__ci_last_regenerate|i:1671493878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97c00689f8644775dd2edd9b22f96e021844e4c', '172.105.247.100', 1671493878, '__ci_last_regenerate|i:1671493878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('030689292a5f55b34b2d79617fb54178b03111d1', '172.105.247.100', 1671493878, '__ci_last_regenerate|i:1671493878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d8dfd75a735e0b4220eab1e48d8b53fbd899b5', '172.105.247.100', 1671493879, '__ci_last_regenerate|i:1671493879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98865b490d143beee783ccae0ac6b34fcceb2c62', '172.105.247.100', 1671493879, '__ci_last_regenerate|i:1671493879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cee3f1697b99c34de2a9acdf8456cdfb349e0cc', '172.105.247.100', 1671493879, '__ci_last_regenerate|i:1671493879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3f317cfda442acead2c763fcc1af69725910ae', '172.105.247.100', 1671493880, '__ci_last_regenerate|i:1671493879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d177bf460d4b0c877135312df4f1a4c2e7521f', '172.105.247.100', 1671493880, '__ci_last_regenerate|i:1671493880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f5e79eacdb3e4ba90f124fa1b85e0b455b37e49', '172.105.247.100', 1671493880, '__ci_last_regenerate|i:1671493880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f08ce050bcb842a457595d6b35879bcdb3df67', '172.105.247.100', 1671493880, '__ci_last_regenerate|i:1671493880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92f60d461633b2a311d011bfa590a3e7f36674f3', '172.105.247.100', 1671493881, '__ci_last_regenerate|i:1671493880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a6b0bd5fbfe2ffaffaec2715756b6d3980b20a', '172.105.247.100', 1671493881, '__ci_last_regenerate|i:1671493881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380b2fc8fba17fe9be4e611197caa7b9212798e5', '172.105.247.100', 1671493881, '__ci_last_regenerate|i:1671493881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93dd31adadb7f004aa39106db1de308868652e7a', '172.105.247.100', 1671493881, '__ci_last_regenerate|i:1671493881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83b45211c03fdc03159738223c168b13c723c46e', '172.105.247.100', 1671493882, '__ci_last_regenerate|i:1671493881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d3f80707353ac772225441c527471febd5015c7', '172.105.247.100', 1671493882, '__ci_last_regenerate|i:1671493882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd07162d22716f850dbb514483589caccff89ffc', '172.105.247.100', 1671493882, '__ci_last_regenerate|i:1671493882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3ca685d9f509445698ee2dea6f30ae4efa72f4', '172.105.247.100', 1671493882, '__ci_last_regenerate|i:1671493882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b304c97ef19bcacc9e56c9b9fd929e35122f2241', '172.105.247.100', 1671493883, '__ci_last_regenerate|i:1671493883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd262cc87d8a628f80410492bce3185235df5851', '87.236.176.101', 1671494525, '__ci_last_regenerate|i:1671494525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451654840f211b3bcc899b1cfe4ab0e077b51a8a', '87.236.176.101', 1671494531, '__ci_last_regenerate|i:1671494531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8032b37aa23bbfb7e64460d7c91a0ce436ef1aa', '31.222.203.2', 1671494617, '__ci_last_regenerate|i:1671494617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1798dad5f7bbc238c73987343532c8058d0ba2c', '31.222.203.2', 1671494617, '__ci_last_regenerate|i:1671494617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ab6aabe8e22f87b82841660217253da82fddae', '31.222.203.2', 1671494617, '__ci_last_regenerate|i:1671494617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2d7188909c6b05ebb68bb3485b9f92e66dff58', '31.222.203.2', 1671494619, '__ci_last_regenerate|i:1671494619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916e7058f8bd03673ec903af00c31b92ede06367', '31.222.203.2', 1671494619, '__ci_last_regenerate|i:1671494619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('173513dd19d33f77df58fffa46d3a02f4d7f0be9', '31.222.203.2', 1671494619, '__ci_last_regenerate|i:1671494619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468ec54622c5598895e5e0d922719264d1b03f54', '31.222.203.2', 1671496414, '__ci_last_regenerate|i:1671496414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bdbc2bdc1756c3ca84d5226676106b0d8ab31b', '31.222.203.2', 1671496414, '__ci_last_regenerate|i:1671496414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40f72bdf9cb1002854830cb86ffbeea0cba0701', '31.222.203.2', 1671496414, '__ci_last_regenerate|i:1671496414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2276386f4c2fb5a7c589deec73703df59268461', '31.222.203.2', 1671496415, '__ci_last_regenerate|i:1671496415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34db6f98246f1766a69ffb082b3d9ba8c833759', '31.222.203.2', 1671496415, '__ci_last_regenerate|i:1671496415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47abe9e085d03bec8445b682bb82f72f0e1bdd88', '31.222.203.2', 1671496415, '__ci_last_regenerate|i:1671496415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4ba53a8e582ab12d29ee1d308f84113fb10d74', '31.222.203.2', 1671498215, '__ci_last_regenerate|i:1671498215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1657d2cbcba5ee8cacdc2a07230c2daf206abd63', '31.222.203.2', 1671498215, '__ci_last_regenerate|i:1671498215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e499d7f5c0aadd98c3bd018b2743f5803a472e', '31.222.203.2', 1671498215, '__ci_last_regenerate|i:1671498215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b603f65cf176980a90df22bcdf3702b6496f5b7', '31.222.203.2', 1671498217, '__ci_last_regenerate|i:1671498217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e509b56dada4b414268047ed8ec662dd6f54201', '31.222.203.2', 1671498217, '__ci_last_regenerate|i:1671498217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e12b40698f22b7de49db143436141d8942478aa', '31.222.203.2', 1671498217, '__ci_last_regenerate|i:1671498217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597e64fecbb2538db4834294123a1a270a46c101', '172.105.247.100', 1671499883, '__ci_last_regenerate|i:1671499883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b565c16ebe11b02a998a86afc82b99d95208d8a5', '172.105.247.100', 1671499884, '__ci_last_regenerate|i:1671499884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79cc742069f1960f7073e3c6bddc4cf40c982320', '172.105.247.100', 1671499884, '__ci_last_regenerate|i:1671499884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4123166cb3f9d3cc13dd9be3a16c8fb652840e96', '172.105.247.100', 1671499884, '__ci_last_regenerate|i:1671499884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31b5909ea5222aa545467d8cdf659f2b8c68e6b8', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eab5ed8692f1ccf2025091d299f4d6bddb7b6d0', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24eb4cc27179e3d3f12da715dc27aa46e881b2ac', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779bc6900df287c9e20b8274c15b4cf4cad6d082', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36aed5278d16c55667b635d7928aa143d4f72665', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b41b9145fac53a5aa5070d0793f0b9b0e9a8b59', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3859c9bfffe9eb63dd71a88c4567452a45d155a3', '172.105.247.100', 1671499885, '__ci_last_regenerate|i:1671499885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c20e6c4aafb0bc7134b29c44a78089e90f2a8f7', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827919a413f6f56a5babd54dad89e5fcbd8a4c80', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2572352790b34668a82bb9d06de3d87ea6dc01ac', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031b4e47ce69c24dce379a1eaed995cca769c692', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9842d030e078765ffdf6206cfa8f1606272b0c29', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3628f31b1afc20c0f195ad1f8425ed3eddacec01', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7239c75b93ec66417773c68e477ffec83ffab33', '172.105.247.100', 1671499886, '__ci_last_regenerate|i:1671499886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b260ef46953e55847ae966ae52959c5b7afb48d', '172.105.247.100', 1671499887, '__ci_last_regenerate|i:1671499887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cea085cc04051d983378325497a8fa144d44da0', '172.105.247.100', 1671499887, '__ci_last_regenerate|i:1671499887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec336eb559683fd341c95e93e43f7fffa918d2c1', '172.105.247.100', 1671499887, '__ci_last_regenerate|i:1671499887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56f90a46490856ec13fb6b3262cd06b88c9e7dd', '172.105.247.100', 1671499887, '__ci_last_regenerate|i:1671499887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6ee4369c7a757753a3bf6ecd753f90ce35154b', '172.105.247.100', 1671499888, '__ci_last_regenerate|i:1671499888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b9609ea52a559c67fb7543bedbe7f2c3485868', '172.105.247.100', 1671499888, '__ci_last_regenerate|i:1671499888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31729fb138dd7fa1501cd3c3c04f70531f0bbda', '31.222.203.2', 1671500017, '__ci_last_regenerate|i:1671500017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('330ce026655561550f5a98385caef149e78d0055', '31.222.203.2', 1671500017, '__ci_last_regenerate|i:1671500017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840898dc303293d5b056abac8eee74a0a03b914c', '31.222.203.2', 1671500017, '__ci_last_regenerate|i:1671500017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965375e393f9ac7dbae11e0798c7fbc083f8eaf8', '31.222.203.2', 1671500018, '__ci_last_regenerate|i:1671500018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93a816c1be4b750148378a4214b1c8b18e2718f', '31.222.203.2', 1671500018, '__ci_last_regenerate|i:1671500018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02bbac64b8d0d352151c9b54acaf9768dd0853c8', '31.222.203.2', 1671500018, '__ci_last_regenerate|i:1671500018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da03ee81da2a52404caf05897f0e39d5164a54b', '31.222.203.2', 1671501797, '__ci_last_regenerate|i:1671501797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250c42491fc9dc2b412ac95b49e4ad1f88e5f1bb', '31.222.203.2', 1671501797, '__ci_last_regenerate|i:1671501797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4863b0334ed5c4d630102a612a4b19cbfffad3', '31.222.203.2', 1671501797, '__ci_last_regenerate|i:1671501797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9966a31d6eb66f4920b38e3238a5399c697e076a', '31.222.203.2', 1671501800, '__ci_last_regenerate|i:1671501800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bee00e73697381ebb46e848e18b021eb39df7d', '31.222.203.2', 1671501800, '__ci_last_regenerate|i:1671501800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e9002dbfb9cf25edf2b06d4e78c1d618badc25', '31.222.203.2', 1671501800, '__ci_last_regenerate|i:1671501800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32459d22355da50e946e40fe1daf6b5373b0f45e', '31.222.203.2', 1671503620, '__ci_last_regenerate|i:1671503620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5e07bdc47c5d7b652ea4b3f431d3bdca5d597e', '31.222.203.2', 1671503620, '__ci_last_regenerate|i:1671503620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c81e1e07064e1428a0793981e2cec1f17becf7b', '31.222.203.2', 1671503620, '__ci_last_regenerate|i:1671503620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c4d2a399300eac8607517a0cb84bbbea4a347a', '31.222.203.2', 1671503622, '__ci_last_regenerate|i:1671503622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cdbb91702bd6dfbfebb660bc8fa4918410ebdf9', '31.222.203.2', 1671503622, '__ci_last_regenerate|i:1671503622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f600be5db7c184447838ab90d542fc2f19d37cfc', '31.222.203.2', 1671503622, '__ci_last_regenerate|i:1671503622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32183909da279f8acc3db60febc1412a3e405e27', '31.222.203.2', 1671505415, '__ci_last_regenerate|i:1671505415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6554c3ff006631da57f95459a23e20278c886ecf', '31.222.203.2', 1671505415, '__ci_last_regenerate|i:1671505415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97f9d13ca2c456175297848983dadcdbbdc6e5a', '31.222.203.2', 1671505415, '__ci_last_regenerate|i:1671505415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0eeab4669ff624149d9fa5a7405f334e6b2d139', '31.222.203.2', 1671505415, '__ci_last_regenerate|i:1671505415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319f7b52adbdbc3c44ac9e9c23732a6f62ef82bc', '31.222.203.2', 1671505415, '__ci_last_regenerate|i:1671505415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25572e633d68425ae3d121c5a4df0d8ae49bf461', '31.222.203.2', 1671505415, '__ci_last_regenerate|i:1671505415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2882cf37b89dac20a77d244ac562c70664317a1d', '172.105.247.100', 1671505884, '__ci_last_regenerate|i:1671505884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e4764053becd8a8ad29f8620041d3d572e9c5c', '172.105.247.100', 1671505885, '__ci_last_regenerate|i:1671505885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13a4cfac952c5ab36525ef97634e0b80a68dbe8', '172.105.247.100', 1671505885, '__ci_last_regenerate|i:1671505885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72dfb9a9618cfac09238496a79201167be8698c7', '172.105.247.100', 1671505885, '__ci_last_regenerate|i:1671505885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a30446ee9cf9444026f33f27dbbf931522c2fe8', '172.105.247.100', 1671505885, '__ci_last_regenerate|i:1671505885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f9a943eaf5deca692793afb387d8498da3590f', '172.105.247.100', 1671505886, '__ci_last_regenerate|i:1671505886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf93ff0aa88fa0a949096bf4e4fabed47d5e363', '172.105.247.100', 1671505886, '__ci_last_regenerate|i:1671505886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e47d5f36f1bf436be176288debb823e9062d39', '172.105.247.100', 1671505886, '__ci_last_regenerate|i:1671505886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1f4b8ff879e5e56c0e56a73b08186f733b27b8', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02446a3791eb6c16effb224aa0d4fb28b802c2f5', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485db8554ba9ff7f3a99ee208d1a16c49762ce3f', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450b5e7c92d11dc6cb26182138ff0646af82a159', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f43919657d33a4c49a2e1dc4ad9cc40ca986d850', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cda8431a88c43dbd8514916c72ecbf862a7a752', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446841b525cca61eba5c46da4eb3b2eff7e24147', '172.105.247.100', 1671505887, '__ci_last_regenerate|i:1671505887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bd485eb9af07483ac92a674c61c7e3b40a0e953', '172.105.247.100', 1671505888, '__ci_last_regenerate|i:1671505888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb03bd74d755f154d757897468f61c4b14c20c90', '172.105.247.100', 1671505888, '__ci_last_regenerate|i:1671505888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('175c988850ea8a73807d8f0719bbf097c326a578', '172.105.247.100', 1671505888, '__ci_last_regenerate|i:1671505888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4450c01ddf1d73ed272c9aa39af29ceffde6925e', '172.105.247.100', 1671505888, '__ci_last_regenerate|i:1671505888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f01d3087597066b7d6d31cceb21b27f01d57d6', '172.105.247.100', 1671505889, '__ci_last_regenerate|i:1671505889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c353581371d0f2f72e5536582711c90aaf9a8f0f', '172.105.247.100', 1671505889, '__ci_last_regenerate|i:1671505889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b22c87d96221802403bab255ac51f17e15e89fdc', '172.105.247.100', 1671505889, '__ci_last_regenerate|i:1671505889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750e8b58e82c33536206f661baafc03ec4d3f0e3', '172.105.247.100', 1671505890, '__ci_last_regenerate|i:1671505890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d697b0181aea3e61f5645b6c8b16daed60c4ba', '172.105.247.100', 1671505890, '__ci_last_regenerate|i:1671505890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a26859c14ac4628869c33ac8278c73e47acb4de', '31.222.203.2', 1671507222, '__ci_last_regenerate|i:1671507222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf8f3042fe76f592b5cc60a7f900ecbd390e36f', '31.222.203.2', 1671507222, '__ci_last_regenerate|i:1671507222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba794c53f5df9af7ee2d25d70e0959628bfd4c3f', '31.222.203.2', 1671507222, '__ci_last_regenerate|i:1671507222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d751b4b0c50dbfd2ad101aea2ff243304829d683', '31.222.203.2', 1671507222, '__ci_last_regenerate|i:1671507222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e546bfd93b806b29bf9520f8adf0e0248ff9fc', '31.222.203.2', 1671507222, '__ci_last_regenerate|i:1671507222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba576fac7b1aaae465639000bb077f28bbaf7ac2', '31.222.203.2', 1671507222, '__ci_last_regenerate|i:1671507222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe98dec2de7e3f27e3db1cc1e7d90c052e47725', '31.222.203.2', 1671509018, '__ci_last_regenerate|i:1671509018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060222e2e5ecab788d855eabddafe6450f39ca29', '31.222.203.2', 1671509018, '__ci_last_regenerate|i:1671509018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9947bc1cf79851e046c1aaeb1a269a305899a645', '31.222.203.2', 1671509018, '__ci_last_regenerate|i:1671509018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7a1f1b5fa310be43a5fb9b6d83819ccd0e68d7', '31.222.203.2', 1671509020, '__ci_last_regenerate|i:1671509020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e911622f73566e6aff5e4b8ce3d4e152c393ff52', '31.222.203.2', 1671509020, '__ci_last_regenerate|i:1671509020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dbe94da003f9ef2faf782b3971da5d1349e18eb', '31.222.203.2', 1671509020, '__ci_last_regenerate|i:1671509020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03808f795499dc8785f550469086ca8e60277cce', '31.222.203.2', 1671510817, '__ci_last_regenerate|i:1671510817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e5ac35d69039449293b33849b2a6fe50c8de74', '31.222.203.2', 1671510817, '__ci_last_regenerate|i:1671510817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ba4afadb011bb2ef3094570225c4d101545e3b', '31.222.203.2', 1671510817, '__ci_last_regenerate|i:1671510817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507a5108fe41e7e0059e730ea1e714b89d0290ec', '31.222.203.2', 1671510818, '__ci_last_regenerate|i:1671510818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e4602cf1f1f91a818aa2ac472c49a15ce74c61', '31.222.203.2', 1671510818, '__ci_last_regenerate|i:1671510818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4e52d38ae77449f791e096af1aadb2a7eb8faf', '31.222.203.2', 1671510818, '__ci_last_regenerate|i:1671510818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c824a14b4f709d61d4aff192814fe8c77f7f1f59', '172.105.247.100', 1671511879, '__ci_last_regenerate|i:1671511879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6613697c2c7dc0add24773e3bc1212a7f42629', '172.105.247.100', 1671511879, '__ci_last_regenerate|i:1671511879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db32c2df8c705505477660db6211a16a79405ae', '172.105.247.100', 1671511879, '__ci_last_regenerate|i:1671511879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0077730470b9c8c1ad6c03be947061130535dd71', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e03c7f1bb54a67a0f51031da11aaeb212aa6188', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8bf78f23c27a43bb4c3df16d9eeb2e864dc9dda', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1f1676af15e92592aa911d5059f89e87efc706', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64cacad002a2703d1ec418ef68fd4df959dd3b7', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f672d5015aaec1955b8713b5a9123f3b768b2b', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56ef0fc5f0d81be6d8b489bbce1284eace5c47d', '172.105.247.100', 1671511880, '__ci_last_regenerate|i:1671511880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7525aca9c25ab3ffe4fdd3d8fcee1738087fc4d9', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2646e56704ffbefac95b1a6d889c8cc4707ef69', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bbaed2e3832bde176020eb369a288265fbed30c', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dbcba890bc709eab6554802b8bbe9257d535391', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('359ceaf239efb14b669b743afc4a2f0e919e2910', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa2411f829dd2c578551c84f9142ffc80835b7e', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c45c108bcbb6876d9bd50771ac6871a6a33953', '172.105.247.100', 1671511881, '__ci_last_regenerate|i:1671511881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dedfd7591dff7b526fd2df80a6ca57b438c1f6f5', '172.105.247.100', 1671511882, '__ci_last_regenerate|i:1671511882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7eaa9576f8c3fa4900f7328354631f16b5e277f', '172.105.247.100', 1671511882, '__ci_last_regenerate|i:1671511882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105bd367624191e95de02bed654299dca011a09e', '172.105.247.100', 1671511882, '__ci_last_regenerate|i:1671511882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd5a317932a8b603806d03de7b2e85d13503e8e', '172.105.247.100', 1671511882, '__ci_last_regenerate|i:1671511882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b743ba124c38bcbdd5946154f7e67829235c562', '172.105.247.100', 1671511882, '__ci_last_regenerate|i:1671511882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85334142037bd0d92de2861b22ab86f4134517a2', '172.105.247.100', 1671511882, '__ci_last_regenerate|i:1671511882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e3671ab6eb7a039f91c38eb93d32b3460c7a506', '172.105.247.100', 1671511883, '__ci_last_regenerate|i:1671511883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d6ba8ed9f4fd3f6a171e248e4797ddac6051bec', '31.222.203.2', 1671512610, '__ci_last_regenerate|i:1671512610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f2deb266831b65090cd844931c34b12be6c28e', '31.222.203.2', 1671512610, '__ci_last_regenerate|i:1671512610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2168aa577fe8802bb8d3bf1182996c8a92281df9', '31.222.203.2', 1671512610, '__ci_last_regenerate|i:1671512610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deab025ca228f80df3253a2cbe4757fa262924f6', '31.222.203.2', 1671512610, '__ci_last_regenerate|i:1671512610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b3e5371ede13b85537c3395e3c5674697551d4', '31.222.203.2', 1671512610, '__ci_last_regenerate|i:1671512610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb560847c6dbcae2dd8f2b8aba3b7a2f984719a6', '31.222.203.2', 1671512610, '__ci_last_regenerate|i:1671512610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4414f049816e9c39d9bd99c78116a21405c175db', '45.120.39.89', 1671518227, '__ci_last_regenerate|i:1671518227;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671428599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671518131;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e795be4b9e6708ac7f2e7f4b56e974884decf3', '31.222.203.2', 1671514432, '__ci_last_regenerate|i:1671514432;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a506998606d33ccf35430208ab725ba2b84bea5', '31.222.203.2', 1671514432, '__ci_last_regenerate|i:1671514432;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e076eb8edfc084f424b5c381505da6e10c34c3d6', '31.222.203.2', 1671514432, '__ci_last_regenerate|i:1671514432;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee07c445335ee657558641756276049d8894e4c', '31.222.203.2', 1671514434, '__ci_last_regenerate|i:1671514434;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41aeee8ba14918708bdbcd0077862219dd746f4c', '31.222.203.2', 1671514434, '__ci_last_regenerate|i:1671514434;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdad85695271b6a66a67c1c5822fde32c58ebf95', '31.222.203.2', 1671514434, '__ci_last_regenerate|i:1671514434;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8825eda7a39e566d72ea866a7b255afff64b22', '31.222.203.2', 1671516220, '__ci_last_regenerate|i:1671516220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212134ee547541433310de0beb7b51067beac2d0', '31.222.203.2', 1671516220, '__ci_last_regenerate|i:1671516220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f26750dcaa4dad79b8cf237e100c053c337c21', '31.222.203.2', 1671516220, '__ci_last_regenerate|i:1671516220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d9fe4cdf7b4a5c0ce8b90cb5a77a871c814283', '31.222.203.2', 1671516220, '__ci_last_regenerate|i:1671516220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b10e9d5d053d114230ee2dae5869680b7c0e7e4', '31.222.203.2', 1671516220, '__ci_last_regenerate|i:1671516220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756e87626572c79c31ad0c0ac5c9b24694c8a202', '31.222.203.2', 1671516220, '__ci_last_regenerate|i:1671516220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c44e58a7a20d66375c8ec2da9c2381d0c3c013', '172.105.247.100', 1671517882, '__ci_last_regenerate|i:1671517882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b710ab462381199a2d0df2bfccce4b5b666f80', '172.105.247.100', 1671517883, '__ci_last_regenerate|i:1671517883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9654132c88932b337757d538c44b8fabfbb3314', '172.105.247.100', 1671517883, '__ci_last_regenerate|i:1671517883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e864453cde77b342d406e7ec9f4a678078d123e', '172.105.247.100', 1671517883, '__ci_last_regenerate|i:1671517883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd112a657ffa29aa118e9de6d258b1aba90eaf5', '172.105.247.100', 1671517883, '__ci_last_regenerate|i:1671517883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dbd758fc2bf81b05504c11178427ca53274b405', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a984c462b9dd28b817b46fffc94406e498c222a', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf55f1800ef7b29b8defd4fafdeae06fc7c0a7b', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6e76a29c0d7a15896610930ef67599d4d565d0', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c8a0c182ebc44b378f8e19f65c6e80e8fa653e', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d035d9a9c4a2b777395700bad8e947e65fd98990', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d028ba80695ca6339b7e5547c42777c26c63e904', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba62e435c5bc14ca1bc6c58d62b6fcaf33a2646', '172.105.247.100', 1671517884, '__ci_last_regenerate|i:1671517884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e97e634730106d997eaccd59764604b126eff8', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30a3aa7adb6097a19ed9fcf6f9ecb3abdff11a1', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6157c85c4fe7c38f5d9c2cc48e094c21d5d10f', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc644bf97f53a0b526155fec6830be24af819811', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f87abdf1f9cb00ce21f39841ded6a8495d17b72', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c2799e04291411aaddfd69cd38c857f1463a4ed', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8574d42af7875fbab09d2ec889e3cd206bbb376', '172.105.247.100', 1671517885, '__ci_last_regenerate|i:1671517885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf362b39220c76ad5e2d873482e75b64b181f775', '172.105.247.100', 1671517886, '__ci_last_regenerate|i:1671517885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada35102c8eeda4716b711807eb34577bad17f52', '172.105.247.100', 1671517886, '__ci_last_regenerate|i:1671517886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff892c773f365ff7da90d44b94da2d9c2c13f9d', '172.105.247.100', 1671517886, '__ci_last_regenerate|i:1671517886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a11f4873456bdb2e9b236ecdef77643263f1c7', '172.105.247.100', 1671517886, '__ci_last_regenerate|i:1671517886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51da9deebec1f373314fc0e0ac27fd9a34945e2d', '31.222.203.2', 1671518001, '__ci_last_regenerate|i:1671518001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a662b4fd59d9cc88fd995ffb58423a38c2750d1', '31.222.203.2', 1671518001, '__ci_last_regenerate|i:1671518001;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a35d5aa575bda01d7c9a164a2a906a80a245dfef', '31.222.203.2', 1671518001, '__ci_last_regenerate|i:1671518001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4169f973454c9ee6b6cdca2a39eac751ff736a99', '31.222.203.2', 1671518003, '__ci_last_regenerate|i:1671518003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156b5c8ce23b6a94b0bc2a37791934998580f8b9', '31.222.203.2', 1671518003, '__ci_last_regenerate|i:1671518003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8674bd194bf0cd7fe8574ddbb675e2a132cbe6e6', '31.222.203.2', 1671518003, '__ci_last_regenerate|i:1671518003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01335e060b96d5d0e7fd87f2581d4e91813ca3cb', '45.120.39.89', 1671524783, '__ci_last_regenerate|i:1671524783;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671428599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671518330;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db07345e454796232283e17029369da068e42cd', '31.222.203.2', 1671519809, '__ci_last_regenerate|i:1671519809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b4138767043a12899df889392227cf85db6e6a', '31.222.203.2', 1671519811, '__ci_last_regenerate|i:1671519811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c0bbc4fca7333e1d48117c721c52c738004375', '31.222.203.2', 1671519811, '__ci_last_regenerate|i:1671519811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b2dbe9f549870b863a972dc9e0c4a799c0148f', '31.222.203.2', 1671519811, '__ci_last_regenerate|i:1671519811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9fa0f2d356bb89f895be299c0f3d5c79d97d515', '31.222.203.2', 1671519811, '__ci_last_regenerate|i:1671519811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665629b0cb0268c11a3d4e3f732889598ca7b4a2', '31.222.203.2', 1671519811, '__ci_last_regenerate|i:1671519811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f895b0636adf3bbd680a26552d4e2fce4617a6', '31.222.203.2', 1671521633, '__ci_last_regenerate|i:1671521633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2044f4ffb28304f54fe0f5e72aa5526439343d7f', '31.222.203.2', 1671521633, '__ci_last_regenerate|i:1671521633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee8031b45351fd016d75f1c23265fbec4d60461', '31.222.203.2', 1671521633, '__ci_last_regenerate|i:1671521633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bcb9e6c411a175b874dcafd8851ac53e1fb8727', '31.222.203.2', 1671521635, '__ci_last_regenerate|i:1671521635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec77b0fe612ee08a3d079547be4e62421846d4d8', '31.222.203.2', 1671521635, '__ci_last_regenerate|i:1671521635;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3785dffaef0eeac9c56559de8bc0a1e79d08b03', '31.222.203.2', 1671521635, '__ci_last_regenerate|i:1671521635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86f48acf2e95b1a637de196532cf3eab63d420d', '31.222.203.2', 1671523420, '__ci_last_regenerate|i:1671523420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f6879b12e9d9dc0a4b5c3ddaa183a2dbafb8f1', '31.222.203.2', 1671523420, '__ci_last_regenerate|i:1671523420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ed0d0a932491b906cf884dfad3309896cc2fce', '31.222.203.2', 1671523420, '__ci_last_regenerate|i:1671523420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19eef55040c2d116db8e410cc883e2301cf73b2', '31.222.203.2', 1671523421, '__ci_last_regenerate|i:1671523421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7309118e911c219862b262d2eca9cf38382534', '31.222.203.2', 1671523421, '__ci_last_regenerate|i:1671523421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe61edf58cc864ed91384a2bae8384777f407c3', '31.222.203.2', 1671523421, '__ci_last_regenerate|i:1671523421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66fe779169702df53633255293bff3a0673ebaab', '172.105.247.100', 1671523891, '__ci_last_regenerate|i:1671523891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d244f96e0a194f057f509b93593dd3518915fb7', '172.105.247.100', 1671523891, '__ci_last_regenerate|i:1671523891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969fedaf4e1684a5fb24d07472c74ec19ef8f2a3', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d29cd01b99b719fe6554dbb1d524769596e7e3b', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41207b21c27fa37fcfd1b3ed5b87d92eb02215df', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646b85312481c5119f1ddb1d03c12b845d469dd9', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4bad692d8c0a0406ffa7cd3d340494eb25d30a', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e86c5ab32443afa03fce17f9be1b7d598d24b34', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9c9cd38d21034f4f9651e2d4ee88503f8316ca', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fb326eec0fbd1f13c4cfcd672bb9c33167f2ca', '172.105.247.100', 1671523892, '__ci_last_regenerate|i:1671523892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7824daa1022ace0addff8ff80a4050842ffc5d6e', '172.105.247.100', 1671523893, '__ci_last_regenerate|i:1671523893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50acbadc61e4b1d675a39708c898285844e6fc4a', '172.105.247.100', 1671523893, '__ci_last_regenerate|i:1671523893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c023b1f3295be450f36df5ef27fba09c89b220', '172.105.247.100', 1671523893, '__ci_last_regenerate|i:1671523893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbdda5ca59dcc59a8acf60964075d3c7dc0a854', '172.105.247.100', 1671523893, '__ci_last_regenerate|i:1671523893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74f05d8d5719dbc3a1dbbbcda1fcfd5d6982d0b', '172.105.247.100', 1671523893, '__ci_last_regenerate|i:1671523893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e824d10f0c055c6be787d2f109c0dae5a93d87', '172.105.247.100', 1671523893, '__ci_last_regenerate|i:1671523893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d602f600f71f1d7314681b6bcf5057b7fbd228', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9f8c3d00e879fd573983c3f44b3c63b72cd73e', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1b8cccae78b73291bcf653118c46e521b36097', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff34e2add8559e12c87210906cfac3f90a9b088', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5703237768ef148a94ede4e319e1aeb3589ce44a', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82b74b8f2af2f27597d3f358bd9369d3acd1d1b', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3910a362c988d8e6a8e27504556cf5d0d0c7e158', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3fc8b8d6e1a067d862f044a34a80732301e1d4e', '172.105.247.100', 1671523894, '__ci_last_regenerate|i:1671523894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f778733ce6fe71cbcb4a3f3978f28e3996a9e8', '45.120.39.89', 1671526747, '__ci_last_regenerate|i:1671526747;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671428599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671526735;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2b6c735035bcd4c0318a2c9a92941d3d26a738', '37.111.207.87', 1671525244, '__ci_last_regenerate|i:1671525219;requested_page|s:14:\"admin/products\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1670602329\";last_ip|s:14:\"116.204.230.26\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe42a25f349ef073278de0dbac724b912eea0a1', '31.222.203.2', 1671525226, '__ci_last_regenerate|i:1671525226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1b2e0dd6fc9d73807f027bea3a938227a7e452', '31.222.203.2', 1671525226, '__ci_last_regenerate|i:1671525226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e5c5f00c41cc6e24f4f408e61d34a3fab6211c', '31.222.203.2', 1671525226, '__ci_last_regenerate|i:1671525226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433eec72454a1e822bfed9f10fb446124a44591b', '31.222.203.2', 1671525228, '__ci_last_regenerate|i:1671525228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db96740002d169ca921ef9e066846eefb695a11f', '31.222.203.2', 1671525228, '__ci_last_regenerate|i:1671525228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0559c7daa5a46a957ed0d4dc8ec42c00dfc69a21', '31.222.203.2', 1671525228, '__ci_last_regenerate|i:1671525228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c2cd65797da117e2edf0640ea903b3eb76cd31', '45.120.39.89', 1671530043, '__ci_last_regenerate|i:1671530043;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671428599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671526748;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d314b910c05294a4376ed3bb60438ce4eab965d3', '31.222.203.2', 1671527021, '__ci_last_regenerate|i:1671527021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7e96eea607c80abffff2832246c527acd15cbc', '31.222.203.2', 1671527021, '__ci_last_regenerate|i:1671527021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b03038a05be5e75e8e336ad0c03d831c4a98429', '31.222.203.2', 1671527021, '__ci_last_regenerate|i:1671527021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b420fb53f86932cc7df148e8687587b1b86c4878', '31.222.203.2', 1671527021, '__ci_last_regenerate|i:1671527021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82e5c4464db7016b71a904d9a7b53c7cbac0152', '31.222.203.2', 1671527021, '__ci_last_regenerate|i:1671527021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b279b7b7fd64df96f82fd9ce6ff2f43daeebf4db', '31.222.203.2', 1671527021, '__ci_last_regenerate|i:1671527021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2538e2b79ad838efdc6203118618b09f1f5ba606', '31.222.203.2', 1671528817, '__ci_last_regenerate|i:1671528817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4884c772c4d9d551a5ff2ad2140d720c0ab946', '31.222.203.2', 1671528817, '__ci_last_regenerate|i:1671528817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a795d904ae5f9122f6ee9b98dc1b0e3eca5a4c2e', '31.222.203.2', 1671528817, '__ci_last_regenerate|i:1671528817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc02bac10d8b8e4c6809a40dd4acf662f5da2b10', '31.222.203.2', 1671528819, '__ci_last_regenerate|i:1671528819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08112c659890dc17f5e2aaf197f41cfa5fa765ea', '31.222.203.2', 1671528819, '__ci_last_regenerate|i:1671528819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64b5f4b7cb4f0f2e70079ee23b42a35f0e02bfe', '31.222.203.2', 1671528819, '__ci_last_regenerate|i:1671528819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8b95fe8099eb9a81069f0c6a6be6a16c809212', '172.105.247.100', 1671529876, '__ci_last_regenerate|i:1671529876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7fcab11d76634ca56071246a473dfc6b5a3f98', '172.105.247.100', 1671529876, '__ci_last_regenerate|i:1671529876;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae20ac3f1c9da37e9487f8d0e069a8c8f870c846', '172.105.247.100', 1671529876, '__ci_last_regenerate|i:1671529876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f376c05f8193b8ea61c62416606166765940e5fe', '172.105.247.100', 1671529877, '__ci_last_regenerate|i:1671529877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411a17e9be555601904b993fddfa12111d987ca3', '172.105.247.100', 1671529877, '__ci_last_regenerate|i:1671529877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b3e49cfa976bb01be1eb4967a99eb1f7e5a5725', '172.105.247.100', 1671529877, '__ci_last_regenerate|i:1671529877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5db78dcdfc1955a8195fc6021bf1b33a89dbeb4', '172.105.247.100', 1671529877, '__ci_last_regenerate|i:1671529877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f0a28f4fad9c051bc5dd4ccb9d58451fa1bbc2', '172.105.247.100', 1671529877, '__ci_last_regenerate|i:1671529877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb57f5cdf239bcfb74f8d87594ab494a0a8cd44f', '172.105.247.100', 1671529877, '__ci_last_regenerate|i:1671529877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeece415b93eaf8da60b563b155a3cd7ad21c90e', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e42c0ec7307c3314e498a232743d4472108f4a', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbc2890795c7b91599daca1e710c28b1f4cac1a', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad3d53ba2120bbf0b39250ed90c1f55187902af', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c432493694364a12c8f190f73c723900da8aacc0', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83b9b1fd69b4b2022964fc484590e8060ae7e285', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c378936450b21c817967988e917f49205602b2d6', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1e4d928bc339d714dd874cc4cc51376665deff', '172.105.247.100', 1671529878, '__ci_last_regenerate|i:1671529878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d31979854a59207a8214dc4498bb10fbb02d4883', '172.105.247.100', 1671529879, '__ci_last_regenerate|i:1671529879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03111cd907c52e097949fbb77c4be6b8251c5c7b', '172.105.247.100', 1671529879, '__ci_last_regenerate|i:1671529879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea61db4671a9117ce9c2c1d2b2438de87b37c64', '172.105.247.100', 1671529879, '__ci_last_regenerate|i:1671529879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9a5a217639b141e46db430d07bace5fc1362ab', '172.105.247.100', 1671529879, '__ci_last_regenerate|i:1671529879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3724ffa263febfed474c6e639a55f3c004489ec5', '172.105.247.100', 1671529879, '__ci_last_regenerate|i:1671529879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f1387f22deea8b41206333428eb2a8bf28ce25', '172.105.247.100', 1671529880, '__ci_last_regenerate|i:1671529880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ccaefd41b5db847a587ffc684483ba2790b09b0', '172.105.247.100', 1671529880, '__ci_last_regenerate|i:1671529880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224f40781a62b1045cc29789528f474177d153f0', '45.120.39.89', 1671530047, '__ci_last_regenerate|i:1671530043;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671428599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671530047;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce0044928b47dd5d8e7b134eb0c92552c7d567b', '31.222.203.2', 1671530626, '__ci_last_regenerate|i:1671530626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75feb64bb8a42cd8b880b472a2c516c8464ab3dd', '31.222.203.2', 1671530626, '__ci_last_regenerate|i:1671530626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e157af09321ce0ce6d4a89d8c63f1c6aa8598734', '31.222.203.2', 1671530626, '__ci_last_regenerate|i:1671530626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cddfa7364343ade95bf187ad04e8daa56f650d09', '31.222.203.2', 1671530628, '__ci_last_regenerate|i:1671530628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295202aa64f65f8433018d5f40f706c48d6267ba', '31.222.203.2', 1671530628, '__ci_last_regenerate|i:1671530628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83a632ecb690394ac481ec9003ca3b5c6826fa4', '31.222.203.2', 1671530628, '__ci_last_regenerate|i:1671530628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec80d8a0de14e32297a64a441c86d34f0d76883', '31.222.203.2', 1671532448, '__ci_last_regenerate|i:1671532448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da202a75272b8e43d40cfd9d305af8647018a02', '31.222.203.2', 1671532450, '__ci_last_regenerate|i:1671532450;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08eb6a6c721cfaa9453970bb90208e0780ef411', '31.222.203.2', 1671532450, '__ci_last_regenerate|i:1671532450;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4604144de455a6c3b79b013034e0c00636d52ceb', '31.222.203.2', 1671532450, '__ci_last_regenerate|i:1671532450;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5369ea1e808ae0bf47b44d58cc78ea497028039e', '31.222.203.2', 1671532450, '__ci_last_regenerate|i:1671532450;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f62a63a5b3134f3d564f5e2f4c2549e212566b1', '31.222.203.2', 1671532450, '__ci_last_regenerate|i:1671532450;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('673aaa62d93345e0214667ed27c83c2ce32ad13b', '31.222.203.2', 1671534225, '__ci_last_regenerate|i:1671534225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f1d874771a5d0db61f30005a5f72ff80d80cb63', '31.222.203.2', 1671534225, '__ci_last_regenerate|i:1671534225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33032b4a514235e3a0bcf5afc2ec099a8f275a7f', '31.222.203.2', 1671534225, '__ci_last_regenerate|i:1671534225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65ebbda7d224cae685656e31a31a1fe21d73ef52', '31.222.203.2', 1671534227, '__ci_last_regenerate|i:1671534227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0431d46555f3c38169a2d38de5ef1ab5ba64621a', '31.222.203.2', 1671534227, '__ci_last_regenerate|i:1671534227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea717fe431a9753e1627441d0da8051c05142d7', '31.222.203.2', 1671534227, '__ci_last_regenerate|i:1671534227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b43162c639ac095c842b080d2f162c2d683c90', '172.105.247.100', 1671534678, '__ci_last_regenerate|i:1671534678;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37552824fd406ba08b5d3cd4ee32c0fa67228b81', '172.105.247.100', 1671534678, '__ci_last_regenerate|i:1671534678;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cbc99996a47d3e92608c7985ff99b55b8982ede', '172.105.247.100', 1671534679, '__ci_last_regenerate|i:1671534679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f3fa97c20d3cfd323d3a9f0eb4ebbe99051ddd8', '172.105.247.100', 1671534679, '__ci_last_regenerate|i:1671534679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4897b02418e4bef6c6957b7225ab9c6314181b5f', '172.105.247.100', 1671534679, '__ci_last_regenerate|i:1671534679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed3ab74c02a2431ce97e65bb98519014a21b8e4', '172.105.247.100', 1671534679, '__ci_last_regenerate|i:1671534679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e7a99931932d87abe0d80d7b6628c8f6d7671d', '172.105.247.100', 1671534680, '__ci_last_regenerate|i:1671534680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb50a3c0cb91982265b21ec65bc6d96ab1756faf', '172.105.247.100', 1671534680, '__ci_last_regenerate|i:1671534680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c48a375fb7cb553bd2261402dc0b36499fdc9d', '172.105.247.100', 1671534680, '__ci_last_regenerate|i:1671534680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc64ab3a40c2fc1bb4ea88cfb990b32eb23fb1f2', '172.105.247.100', 1671534680, '__ci_last_regenerate|i:1671534680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9995ad4948368a85a9b50d79abc805b485739f6f', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41518b0d1c39482b3487c93fff82aaa77ba9095f', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c4c2c6af0d5d563b1f2ef07a76858fc3c9097b', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02185c4a62015c84f6731502183757b860641185', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5107c956f4d5e2f4f356d46d383d7eff704e7961', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307d95447e0d46cb7e9c9515f4bca3f23a2edc7d', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c359974daf64498a0904a746a1c8a698b8153c', '172.105.247.100', 1671534681, '__ci_last_regenerate|i:1671534681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d45e18809f267ee8003f54cdfa26e6d2e03d14', '172.105.247.100', 1671534682, '__ci_last_regenerate|i:1671534682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33275cbb350fa97dc0ab645321be7284b1d03bb4', '172.105.247.100', 1671534682, '__ci_last_regenerate|i:1671534682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42eee9e9254067c304f191d48cc6d8aa260d7af0', '172.105.247.100', 1671534682, '__ci_last_regenerate|i:1671534682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c7ece3b3459581f98fa7194c7146dea1eea12f', '172.105.247.100', 1671534683, '__ci_last_regenerate|i:1671534683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f256b493cd6be21798e1ed9bdf845b84e006ffb', '172.105.247.100', 1671534683, '__ci_last_regenerate|i:1671534683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665738cf99d4021ada18911a351a3088c258a079', '172.105.247.100', 1671534683, '__ci_last_regenerate|i:1671534683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c4835bc4471f1a81e143796a4492666dc177bf', '172.105.247.100', 1671534683, '__ci_last_regenerate|i:1671534683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124f5f5acf069323595140ed5440e0cd49e99917', '31.222.203.2', 1671536035, '__ci_last_regenerate|i:1671536035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e11d6de5cf4950d73e5f7bf9cdb3541846e04ffa', '31.222.203.2', 1671536035, '__ci_last_regenerate|i:1671536035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d926d0944a290dcdb6f04968b6e92b4d7590d60', '31.222.203.2', 1671536035, '__ci_last_regenerate|i:1671536035;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f851e98657fed278b5d3965967a19d1b96f8cda', '31.222.203.2', 1671536035, '__ci_last_regenerate|i:1671536035;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519a9663c6597609bf80b0f150c9bdcbcf0c5ad5', '31.222.203.2', 1671536035, '__ci_last_regenerate|i:1671536035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05a73604fd967378faa4e199bd60a6337c2c426', '31.222.203.2', 1671536035, '__ci_last_regenerate|i:1671536035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e81c53c828072945c1912aa96662343060c03aa', '45.120.39.89', 1671538421, '__ci_last_regenerate|i:1671538421;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671538364;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed7d3f665d2ffac3e839158011089cf729be4846', '31.222.203.2', 1671537821, '__ci_last_regenerate|i:1671537821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9509d76c530facec9b40a386bf6f22e6ec7fbc1', '31.222.203.2', 1671537821, '__ci_last_regenerate|i:1671537821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9f19eee50dcf20bee7a16edc63586ee49cb3a7', '31.222.203.2', 1671537821, '__ci_last_regenerate|i:1671537821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e47f06deee22587addc2c022c113524dbe78bc1', '31.222.203.2', 1671537823, '__ci_last_regenerate|i:1671537823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ed63d0a75064dfc335cf20b4be55f7b0068119', '31.222.203.2', 1671537823, '__ci_last_regenerate|i:1671537823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6cfbdd5f6d7491780af2e7cee7481f678201171', '31.222.203.2', 1671537823, '__ci_last_regenerate|i:1671537823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0382931eaf1c51ea1971c8141cede81392c42b94', '45.120.39.89', 1671543488, '__ci_last_regenerate|i:1671543488;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671543151;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd8db1307ca2d876939bcb61e1fbaba5f32f5245', '172.105.247.100', 1671539477, '__ci_last_regenerate|i:1671539477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ff3c548ace441981970f2edab2b35d9079c53a', '172.105.247.100', 1671539477, '__ci_last_regenerate|i:1671539477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e379dd316d1e98b642e4e136133868382fa96a13', '172.105.247.100', 1671539477, '__ci_last_regenerate|i:1671539477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8d3ff40dd4c82f31a8d2a07f9f328c5d67f9aa', '172.105.247.100', 1671539477, '__ci_last_regenerate|i:1671539477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb98aea94d9bc731538735201f575af6ed7b258b', '172.105.247.100', 1671539477, '__ci_last_regenerate|i:1671539477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c114d765e7b27090665d72f568cc9f5ed02fdc', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec740cc8ff7b1df93a37a75672f402b72f15221b', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1caa650b31addfc61daa3df64bc4c441daa86ff', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d74666df9f83dc7d8324ef5cbee6ef36a4f9fa3', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56693adaea8ee19031d0fc060b6f42e1682f0dea', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc5450ded710e73e8252f9c040668f73b8e05ae', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa060c996db10c3f7bc887ab291f4a0e21a130a8', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c6e62f17c7de2d94d1c620619b7aa071800a35', '172.105.247.100', 1671539478, '__ci_last_regenerate|i:1671539478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac626c25c3128738b9a5f00c3450bc87cb528e3', '172.105.247.100', 1671539479, '__ci_last_regenerate|i:1671539479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c1c242c869d9c38b2bd9816508f93752e6dddd', '172.105.247.100', 1671539479, '__ci_last_regenerate|i:1671539479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11038376fd97cff93b4e0aec7598bf0abfae4bcb', '172.105.247.100', 1671539479, '__ci_last_regenerate|i:1671539479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef38ed592e356cc4f8c4b3a53bf40ea1233c4dd5', '172.105.247.100', 1671539479, '__ci_last_regenerate|i:1671539479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da92a69f3797b8b8bf9f81d2f71ec4cd3011d860', '172.105.247.100', 1671539479, '__ci_last_regenerate|i:1671539479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da30954dfd944b10a3ca4a8ae96a0c2e9ba1f92d', '172.105.247.100', 1671539479, '__ci_last_regenerate|i:1671539479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c15644f154273ca43d50c137e68ae989a17df2', '172.105.247.100', 1671539480, '__ci_last_regenerate|i:1671539479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f36301c2a0393281142a9773dcba24c59badbf', '172.105.247.100', 1671539480, '__ci_last_regenerate|i:1671539480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3dd14820b8520511e66adb10f8ba4683134dab', '172.105.247.100', 1671539480, '__ci_last_regenerate|i:1671539480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10de12ed98d5ffed073d0e6a20601f7f42a60eaa', '172.105.247.100', 1671539480, '__ci_last_regenerate|i:1671539480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04e6d89d8ebc6c9a21aeb350e1559fdd3a06cff', '172.105.247.100', 1671539480, '__ci_last_regenerate|i:1671539480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23dad8dd2be85a905e8c2b3c4bb477c42e58c43c', '31.222.203.2', 1671539624, '__ci_last_regenerate|i:1671539624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf6e2a70a1f7f0feafccc8e073351febd512ff9', '31.222.203.2', 1671539624, '__ci_last_regenerate|i:1671539624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e664afc4c61923050b0f2d9d4c2b4d62931be601', '31.222.203.2', 1671539624, '__ci_last_regenerate|i:1671539624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ba1f968df23dae4203f47c4ae1a0a1873fd1ec', '31.222.203.2', 1671539624, '__ci_last_regenerate|i:1671539624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953c8065b42bd32b1ccdb4c08ea5db2fbe5ffe02', '31.222.203.2', 1671539625, '__ci_last_regenerate|i:1671539624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fc7d552bb6f6206057c73013f6d9b6156e04e17', '31.222.203.2', 1671539625, '__ci_last_regenerate|i:1671539625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7d790f97d453b26896f95490d8fab34a04d567', '31.222.203.2', 1671541396, '__ci_last_regenerate|i:1671541396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8c119172ef3634e5aea43939a0ae52b3a00b1a', '31.222.203.2', 1671541398, '__ci_last_regenerate|i:1671541398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0faaca6e8e0ad1b3d541e71bcd54382c7ef0c5f6', '31.222.203.2', 1671541398, '__ci_last_regenerate|i:1671541398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eff09d11285b71b18d4960c9a40a2fa81e058c3', '31.222.203.2', 1671541398, '__ci_last_regenerate|i:1671541398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d85912b2d59b61ab99e28310f60e8eaa384a60', '31.222.203.2', 1671541398, '__ci_last_regenerate|i:1671541398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec13659bfa9ee2e4a4141e63c9beaaa36e05ec07', '31.222.203.2', 1671541398, '__ci_last_regenerate|i:1671541398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1504c2c9bfbcfe62d9578fa4069cdf27952dfe', '45.120.39.89', 1671543151, '__ci_last_regenerate|i:1671543150;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671543151;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a85e73c77828441ebe5834272ba3005667b9b20', '31.222.203.2', 1671543236, '__ci_last_regenerate|i:1671543236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bfbd05a5a76160b45a6c4e9e5de6eb26f48747d', '31.222.203.2', 1671543236, '__ci_last_regenerate|i:1671543236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb675e53ef9f0a26d3b77dc56dd36a67f9e8afd', '31.222.203.2', 1671543236, '__ci_last_regenerate|i:1671543236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7adb01967ae8b878f4d85763a9d923d20ff6ee5', '31.222.203.2', 1671543236, '__ci_last_regenerate|i:1671543236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd8d403bf15e962b8bea79844532297c73917f0', '31.222.203.2', 1671543237, '__ci_last_regenerate|i:1671543237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22667346d97d6ce06718173aaa98249d31a1345', '31.222.203.2', 1671543237, '__ci_last_regenerate|i:1671543237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19644fba4a68aca2868ec3bdf15f0b1f62e6bbb', '45.120.39.89', 1671543897, '__ci_last_regenerate|i:1671543897;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671543734;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c00ecf7183246cdb323e19d6e676bf70b610c9', '45.120.39.89', 1671544217, '__ci_last_regenerate|i:1671544217;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671544198;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9407ca090bb97ba5d0717ac43e305ea50cb70e7d', '45.120.39.89', 1671544937, '__ci_last_regenerate|i:1671544937;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671544661;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507f367dd6d3c88f1d43fc856f98f01a30455146', '45.120.39.89', 1671546019, '__ci_last_regenerate|i:1671546019;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671545618;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6779667c1c3454a2276f356305ada690286e8d', '172.105.247.100', 1671544279, '__ci_last_regenerate|i:1671544279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3d7137485232f613814e726e0972b964d847a2', '172.105.247.100', 1671544281, '__ci_last_regenerate|i:1671544281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7c87f79efba0926d19cfd7240199e3775b726b', '172.105.247.100', 1671544281, '__ci_last_regenerate|i:1671544281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054c52212ff39e8200e0ccc49cffecf249753e58', '172.105.247.100', 1671544281, '__ci_last_regenerate|i:1671544281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60570bbc36faaf9b05e017c7dbe78ed9c077c8a4', '172.105.247.100', 1671544281, '__ci_last_regenerate|i:1671544281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2fb1235224e3f983b888b1455e095119393d39', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373b0f8e24db93621ac86086e323f28311171c9a', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a097a79f1c643b5a29b9f78e242833b66260f02', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba069558b360eb71623ecce41d0d542e09efdaa8', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8688b3b4c4a6373afe44b0278f87233852e6d9', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c9708b20cebbe7379fc64148cfa27ee9bfca84', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2a9b34ec265aa65f0689c991f1557c41023001', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af303722880ebd81d01c4f49f3869b5ce80400c', '172.105.247.100', 1671544282, '__ci_last_regenerate|i:1671544282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d244a2c39445e9d6c7fb7be8dc81410066ff3a', '172.105.247.100', 1671544283, '__ci_last_regenerate|i:1671544283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650b9629d1680ff6e3b3ebd4cee82104ff9df4d5', '172.105.247.100', 1671544283, '__ci_last_regenerate|i:1671544283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23354d7c5923551508bd44f9fa7cdd7275f6c392', '172.105.247.100', 1671544283, '__ci_last_regenerate|i:1671544283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c243b33cde613258f51f68b505bc5cf1d391c50a', '172.105.247.100', 1671544283, '__ci_last_regenerate|i:1671544283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5db4c6719acfb7a8be3c766e73dfc135a014809', '172.105.247.100', 1671544283, '__ci_last_regenerate|i:1671544283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0273fef15fb7381b40bfc3029b0ee3c6e9ffa86e', '172.105.247.100', 1671544283, '__ci_last_regenerate|i:1671544283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a091134cd8f179c32a4340281c65aca01115ee', '172.105.247.100', 1671544284, '__ci_last_regenerate|i:1671544284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d45d1eee7fceafca54dbc160ad68bb0a30b8b2e', '172.105.247.100', 1671544284, '__ci_last_regenerate|i:1671544284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814b3e2aac42716763710146da9075270a1801fd', '172.105.247.100', 1671544284, '__ci_last_regenerate|i:1671544284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66d2ea154ae4c3d1880f2019f87a70c3e8836eb', '172.105.247.100', 1671544284, '__ci_last_regenerate|i:1671544284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc2e5356636b0f89c4bed73c4b3f38d34146207', '172.105.247.100', 1671544284, '__ci_last_regenerate|i:1671544284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193819b9746c32b3c241cfd2a0697d563edc1f33', '45.120.39.89', 1671544610, '__ci_last_regenerate|i:1671544610;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671544277;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98e330359d7772683a9281a26f9b0d6f226037b', '31.222.203.2', 1671545001, '__ci_last_regenerate|i:1671545001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6596acafc861427b9000bb7af7babd06592be9b2', '31.222.203.2', 1671545002, '__ci_last_regenerate|i:1671545002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2199779f817d45a5ca24f861a66b9866c5459ea5', '31.222.203.2', 1671545002, '__ci_last_regenerate|i:1671545002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c420a6020ef8320181bb8f283c22673924f2dc8', '31.222.203.2', 1671545002, '__ci_last_regenerate|i:1671545002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f140891eba980984656f1545f0a16f76cdf763b2', '31.222.203.2', 1671545002, '__ci_last_regenerate|i:1671545002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efab209ce73ec3a3f6bb9b3c2c5f34b020b85dd6', '31.222.203.2', 1671545002, '__ci_last_regenerate|i:1671545002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559b49ff8a0489af670943e7d2a251a70d153acb', '45.120.39.89', 1671545563, '__ci_last_regenerate|i:1671545563;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671544937;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddaa2deab713f5d5af853632d6dc668d5fa6637f', '45.120.39.89', 1671546441, '__ci_last_regenerate|i:1671546441;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671546060;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c550060b3531bd620a4c8f117780e4e8b3213422', '45.120.39.89', 1671548108, '__ci_last_regenerate|i:1671548108;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671546671;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf84484db7ba9c71e1049b0864d807daf025bc7', '31.222.203.2', 1671546829, '__ci_last_regenerate|i:1671546829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e7142dd38ff722f0737e8e25c34b2e595d4156', '31.222.203.2', 1671546829, '__ci_last_regenerate|i:1671546829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119b33372a2fbba9e1b4530af37cf9bfc0d64d19', '31.222.203.2', 1671546829, '__ci_last_regenerate|i:1671546829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b277086c55070893551cf3a894b8c378d9b03343', '31.222.203.2', 1671546829, '__ci_last_regenerate|i:1671546829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d95623cf83ac809a2265b97adf8a8c783453012', '31.222.203.2', 1671546829, '__ci_last_regenerate|i:1671546829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c9732da1df452d0f6f1914420f22b8520511f9', '31.222.203.2', 1671546829, '__ci_last_regenerate|i:1671546829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eeebca3f44aa46a042e0cf2aefb2a7d43822054', '45.120.39.89', 1671548525, '__ci_last_regenerate|i:1671548525;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671548517;register_id|s:3:\"285\";cash_in_hand|s:9:\"4220.0000\";register_open_time|s:19:\"2022-12-19 20:40:50\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478ace54d0eb38feb07384c89d1bf044a0226d67', '45.120.39.89', 1671548545, '__ci_last_regenerate|i:1671548525;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671513579\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671548545;register_id|s:3:\"286\";cash_in_hand|s:9:\"2120.0000\";register_open_time|s:19:\"2022-12-20 21:02:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9407af85b7111b522a0b3408dcf829931a1e7ef1', '31.222.203.2', 1671548597, '__ci_last_regenerate|i:1671548597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c4cf5dde7ad5f27891f1ce1535cdfefcc976e6', '31.222.203.2', 1671548597, '__ci_last_regenerate|i:1671548597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7746444a2efe38f33ac58d3065de66d727dd1631', '31.222.203.2', 1671548597, '__ci_last_regenerate|i:1671548597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bd255482cf139b6941eb5792e2c463b9a67f4c', '31.222.203.2', 1671548597, '__ci_last_regenerate|i:1671548597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fbd75225a2a768da0f5c69ef572fea35b91329', '31.222.203.2', 1671548597, '__ci_last_regenerate|i:1671548597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eaf0d0f724c42dd251fc58b9cb669a01e338ebb', '31.222.203.2', 1671548597, '__ci_last_regenerate|i:1671548597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da889353341b27faa7ba44d066f6eb97444a2ee', '172.105.247.100', 1671549089, '__ci_last_regenerate|i:1671549089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295d5dba028ece7b615f91418ef889719ba87a9e', '172.105.247.100', 1671549090, '__ci_last_regenerate|i:1671549090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8577264699c445a064985b5418b5dea18feaa900', '172.105.247.100', 1671549090, '__ci_last_regenerate|i:1671549090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0469924c1f62ef4a67e6fed8556eea16f99200', '172.105.247.100', 1671549090, '__ci_last_regenerate|i:1671549090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0cd1afb8c36e8ce5495ed603e01d87f1d985110', '172.105.247.100', 1671549090, '__ci_last_regenerate|i:1671549090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467240381d14496ff09c9a5db7686a20588c830c', '172.105.247.100', 1671549090, '__ci_last_regenerate|i:1671549090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f0fae32389b715cc7428cf9a7e09bffb17d634', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add961b7f756d41bf2b54de608cd89b876d8bb92', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b192f18e8adcd54b6f9340613a4e47f1b3655fe9', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96113890c73dd2ca32f3927ee1f33f639778fc8e', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c5033e9a455351f16153faffb930d0f35d7ff1', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c1e9554ce174ed998cb5ccbac9d37c376ffc9eb', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ca9c30cc74cd82607e54f27e27c5eabcf581d7', '172.105.247.100', 1671549091, '__ci_last_regenerate|i:1671549091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a961b286cc4dab2e41c735be8c2902c7f2c8958', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fd6710722fb33771fe6d8fef3c3924a93f294a', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b840af608eaa3e12e1dc7c5fd1bba00f40cb959f', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d65c021b202b93aba3e380ccc71f2052732fadc3', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41adcb7c5f5897f4739c16b0a42d4d4fdc52426', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('594338b224cb92997f59a093eeef1d78ab834c8d', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0620ffa0b3e2aeb66644d869800b8f4cd66cee9', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfaf3d0ac84ca5b23f308740032dc07b204b950', '172.105.247.100', 1671549092, '__ci_last_regenerate|i:1671549092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b0830d35134a25199c0d86ba4e29cd6ad1e5e9', '172.105.247.100', 1671549093, '__ci_last_regenerate|i:1671549093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8007c20e9e5226e3da5d78de73d31b88479a6105', '172.105.247.100', 1671549093, '__ci_last_regenerate|i:1671549093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be25d9381698597befc0c6302c0c6d3c5077c3b7', '172.105.247.100', 1671549093, '__ci_last_regenerate|i:1671549093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef409187e9333dbde1f184bfa33f179bea221b1', '31.222.203.2', 1671550427, '__ci_last_regenerate|i:1671550427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e764ab162e47beafc45cf7d9363c92c87f18ba', '31.222.203.2', 1671550427, '__ci_last_regenerate|i:1671550427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f5eaaf8532475aa5ca2d9964dcf1b1d0463519a', '31.222.203.2', 1671550427, '__ci_last_regenerate|i:1671550427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c1e223d8a4f4108d613e1eba080abea712216b7', '31.222.203.2', 1671550427, '__ci_last_regenerate|i:1671550427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da553f37eaf577a6a2132ba7ea25103c37f46a00', '31.222.203.2', 1671550427, '__ci_last_regenerate|i:1671550427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72874543ab31b14efe6ab3097d1a1ef3f8aadfbf', '31.222.203.2', 1671550427, '__ci_last_regenerate|i:1671550427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8238863e8cd5a8b63c59bc9b2f6b67cc85c353', '31.222.203.2', 1671552213, '__ci_last_regenerate|i:1671552213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215a6245d6a66978d31872d6f8a63c4ab4f48405', '31.222.203.2', 1671552213, '__ci_last_regenerate|i:1671552213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c194ec723ed0854615be40f1fded1660611ef8c1', '31.222.203.2', 1671552213, '__ci_last_regenerate|i:1671552213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaac3364bc7280c216ecf60defe8aa891b4304ab', '31.222.203.2', 1671552215, '__ci_last_regenerate|i:1671552215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b091c09358aa63e4eb3a7a5aca85f62c924caf', '31.222.203.2', 1671552216, '__ci_last_regenerate|i:1671552216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9814b5f58d3f85f32cf63ded1401a7fa1e5ab7', '31.222.203.2', 1671552216, '__ci_last_regenerate|i:1671552216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508086283eb3a4576ebc653aa25cb12f2aabebad', '172.105.247.100', 1671553878, '__ci_last_regenerate|i:1671553878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99395dc326698b4ceb94cccd5571c89d153d138', '172.105.247.100', 1671553878, '__ci_last_regenerate|i:1671553878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86c9c7887b92f12a81b110d4e80bcc4629aaeb3', '172.105.247.100', 1671553878, '__ci_last_regenerate|i:1671553878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34247ff17d9278c869c36fa12913482d1096231d', '172.105.247.100', 1671553879, '__ci_last_regenerate|i:1671553879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4547dd0614286a5f9c06c2355e72f9eb6a59c963', '172.105.247.100', 1671553879, '__ci_last_regenerate|i:1671553879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b8903c097a8ac4a20c3fc89656d3edcf46f202', '172.105.247.100', 1671553879, '__ci_last_regenerate|i:1671553879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca0d1a753ee20dc9b9d5937de4ec61d0b297ccf', '172.105.247.100', 1671553879, '__ci_last_regenerate|i:1671553879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc217996710e917bc852531f0ddaca6bb2f8a85', '172.105.247.100', 1671553880, '__ci_last_regenerate|i:1671553880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651d369cd984c5555e4c13b2ef207228b0cffe55', '172.105.247.100', 1671553880, '__ci_last_regenerate|i:1671553880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5050cce78964a2bcc9e405b52523b899f12d826', '172.105.247.100', 1671553880, '__ci_last_regenerate|i:1671553880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c6c1ff483e06d9110e8466e5e9d0dd613d37314', '172.105.247.100', 1671553880, '__ci_last_regenerate|i:1671553880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275a07a0701d28acd6982d3df722305dd3094242', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4016f5fcf0027c1b0cf9601c051ff2bc594b2aa', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f4651d555663b2a34d629d891848526f789a04', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e78528c7124672f7fc8179958414cbe8955b06', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f726d127fe8fe74f222d48e51db80dfaa0a585', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1608f7941072fbc90f6d9f207c9deb7d9648b5cb', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7dc07f3b8184e65e2bd39b09ae8e402f17e3451', '172.105.247.100', 1671553881, '__ci_last_regenerate|i:1671553881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc10abae6e24591194bd470170e799e4c8a38466', '172.105.247.100', 1671553882, '__ci_last_regenerate|i:1671553882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283489f4748810b4de970d4abbf10f65b604cf8d', '172.105.247.100', 1671553882, '__ci_last_regenerate|i:1671553882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa4d0efc441deb0bd96528554050170ea63c867', '172.105.247.100', 1671553882, '__ci_last_regenerate|i:1671553882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1cd4fc7e77ad706b52d05b5c8710b700e1bfcf', '172.105.247.100', 1671553883, '__ci_last_regenerate|i:1671553882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87c9ee516b81f31cab3e4dfd25602ec0c20f7d8', '172.105.247.100', 1671553883, '__ci_last_regenerate|i:1671553883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bf88fab1742a3a059392437c65d6c501a242c0', '172.105.247.100', 1671553883, '__ci_last_regenerate|i:1671553883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0143c2f98b4a03c65d4d2fb119662d3868f13325', '31.222.203.2', 1671554014, '__ci_last_regenerate|i:1671554014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9341ebf7e8414d3ac543083a22a31d610f97b30', '31.222.203.2', 1671554014, '__ci_last_regenerate|i:1671554014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d9505fe53e57899391c832939993efeaf9a024', '31.222.203.2', 1671554014, '__ci_last_regenerate|i:1671554014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a523eebfd2c8e9b02c08e92b487ceeca0b662b4e', '31.222.203.2', 1671554016, '__ci_last_regenerate|i:1671554016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a40e9bfc833651a3b9fb8d40fcef46c167d3169', '31.222.203.2', 1671554016, '__ci_last_regenerate|i:1671554016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92047144e9ccb276c6e76094aab009ecb23b815f', '31.222.203.2', 1671554016, '__ci_last_regenerate|i:1671554016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463566dbcc4851b45c6989545921886c983ab638', '31.222.203.2', 1671555813, '__ci_last_regenerate|i:1671555813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33cdd64708474869aa1043e278a989b830df8e24', '31.222.203.2', 1671555813, '__ci_last_regenerate|i:1671555813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2ac11cae4afa2fc66816ded2dd887f9dac87186', '31.222.203.2', 1671555813, '__ci_last_regenerate|i:1671555813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da40b6156f8bd52d278fb223638dad75d5e22f48', '31.222.203.2', 1671555815, '__ci_last_regenerate|i:1671555815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de11a76fa064820127174d30152392c50e805ea', '31.222.203.2', 1671555815, '__ci_last_regenerate|i:1671555815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741a4f0175a3831172f196bcbb1e1913d9814ea3', '31.222.203.2', 1671555815, '__ci_last_regenerate|i:1671555815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac035adf72a9aa20bf2f000bf56bfcaa8c5e60ac', '31.222.203.2', 1671557622, '__ci_last_regenerate|i:1671557622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5734153a94d2cb12c5185dc7891b6dbecb09e21', '31.222.203.2', 1671557622, '__ci_last_regenerate|i:1671557622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4daec4c6f9814fdd7afd5a6ddd127ffed27ba0', '31.222.203.2', 1671557622, '__ci_last_regenerate|i:1671557622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32126c7a550a321d35631239f7b6f9956104ef7b', '31.222.203.2', 1671557624, '__ci_last_regenerate|i:1671557624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02065e804cac2c7aa8cb185fd429cdc49d852921', '31.222.203.2', 1671557624, '__ci_last_regenerate|i:1671557624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2a2fcc7141074b1cf3ea08eff4e0fe5824b34a', '31.222.203.2', 1671557624, '__ci_last_regenerate|i:1671557624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d578dd68321ffe5ed7cc8d72e650b55e1c72898e', '172.105.247.100', 1671558683, '__ci_last_regenerate|i:1671558683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7491f3849b8daa20acd91bf83e6e7f9ef33d8809', '172.105.247.100', 1671558686, '__ci_last_regenerate|i:1671558686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5fed7e685512f710e730d6c9ce94ca23d295a7a', '172.105.247.100', 1671558686, '__ci_last_regenerate|i:1671558686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e574c2738c850c02a78066ed7b0b50fec294fae0', '172.105.247.100', 1671558686, '__ci_last_regenerate|i:1671558686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d3f7b538ba4aefdaffddbc0e7cc1a5dd64983b', '172.105.247.100', 1671558686, '__ci_last_regenerate|i:1671558686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee260c600fdd419976a72c8dbbbeb134f54f3fa', '172.105.247.100', 1671558686, '__ci_last_regenerate|i:1671558686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc402f575fbfa576da4cec0199c02b9ef242322', '172.105.247.100', 1671558686, '__ci_last_regenerate|i:1671558686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2aa712149ca2e7caee3ff68f079d0868d0b034c', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497fcee82a03fd08d6a5fa9eda3fa304b0d09d69', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6438aa02facb7c63a755f47e61509af1124201f1', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4196d4df4df5ce856cd1604fcc16da914245808', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('712c45eef139a84d295220926b2962e3ed70c5f1', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('242e1142efd392652546036f0500954f8f351502', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5fecf7509408c36e6c2152aab6fbdb0fef6335', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f9afec74269d778378fa7532e18f4aed524d23', '172.105.247.100', 1671558687, '__ci_last_regenerate|i:1671558687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59b87fa24dad21c721c38a49d31470baea74680', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8f6710377b9c36eee965f2c952cdab12d6bcac', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76815636489d3381636116e8928647b1cd40acdf', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab920fcdeaa924cceb5fcbe22a61eb34b81db27d', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844031a719ac235bb2e6296cd65d95bb48358990', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c14929a7285128858b1c2568824bb2d75e982c2d', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a780467727aee0c02079a5bae619af82f4a229a', '172.105.247.100', 1671558688, '__ci_last_regenerate|i:1671558688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05fd3e4bc5f6432fec6183a4b29b122459956ee9', '172.105.247.100', 1671558689, '__ci_last_regenerate|i:1671558688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403e889dc9484390d0914bf8dc45f21cf38e1612', '172.105.247.100', 1671558689, '__ci_last_regenerate|i:1671558689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c78049b94e48883d1efc61c1b19885db231e861', '31.222.203.2', 1671559420, '__ci_last_regenerate|i:1671559420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0755ce662bd9b4ed67fdb220fc20e90eb25e870c', '31.222.203.2', 1671559420, '__ci_last_regenerate|i:1671559420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d08f95a1832274aab6766c297672b9c47ca3e3', '31.222.203.2', 1671559420, '__ci_last_regenerate|i:1671559420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fda0100ecae624414e4388b331a1bba0d854d52e', '31.222.203.2', 1671559421, '__ci_last_regenerate|i:1671559421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d4259a5299e254b67653af6bfeff4405d1e2352', '31.222.203.2', 1671559421, '__ci_last_regenerate|i:1671559421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53119daed2c1dfdbfdc5ab930bc389c2ce31da23', '31.222.203.2', 1671559421, '__ci_last_regenerate|i:1671559421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4634792a12c5bd3c79ff48088f025d9b18d6b4db', '31.222.203.2', 1671561229, '__ci_last_regenerate|i:1671561229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3032f79f343106c7a1fe995a92821fd90ce46b', '31.222.203.2', 1671561231, '__ci_last_regenerate|i:1671561231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6618028b2238c984afda5190836b3b72f438f08a', '31.222.203.2', 1671561231, '__ci_last_regenerate|i:1671561231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64823dcc34c2f5df9eecbd87778ec4dec0081d86', '31.222.203.2', 1671561231, '__ci_last_regenerate|i:1671561231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d341e7895ad8cbcc83b344116abdc1cdbe078857', '31.222.203.2', 1671561231, '__ci_last_regenerate|i:1671561231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6fd25397e31f408de0d1c226e58347ed81c5e96', '31.222.203.2', 1671561231, '__ci_last_regenerate|i:1671561231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8e15f2b95fc96f4e142be73e268eb5cf3b2cd61', '31.222.203.2', 1671563024, '__ci_last_regenerate|i:1671563024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d173e903027ca74414b78c6d07fe62eb1babe6ce', '31.222.203.2', 1671563024, '__ci_last_regenerate|i:1671563024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03d96c5f6cd0017d2a6586af568f734d8bbd1f4', '31.222.203.2', 1671563024, '__ci_last_regenerate|i:1671563024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8feb7fa6145f396b6c1e31e1daf4ed6524d8422f', '31.222.203.2', 1671563024, '__ci_last_regenerate|i:1671563024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770b8517048cb0c99016c817fdc75f798b1d8d0d', '31.222.203.2', 1671563024, '__ci_last_regenerate|i:1671563024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c9d16760d9583da7f0e285c66e8ed8d3788497', '31.222.203.2', 1671563024, '__ci_last_regenerate|i:1671563024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1eacf53c9a33363c6f09dd7624527c8d24cb48', '172.105.247.100', 1671563485, '__ci_last_regenerate|i:1671563485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf385a2e2d5d1e4d18846cb4d26444cc7084c64', '172.105.247.100', 1671563485, '__ci_last_regenerate|i:1671563485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2a32bcf44d4c30cb9aa236bcda26416bbeb27c', '172.105.247.100', 1671563485, '__ci_last_regenerate|i:1671563485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789b491a9e1d1bfd6869a1cab96898e025ced748', '172.105.247.100', 1671563486, '__ci_last_regenerate|i:1671563486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf8e959a982606513583adadcbbbdb3fdc56d39b', '172.105.247.100', 1671563486, '__ci_last_regenerate|i:1671563486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4c251f96aed7001d972ddfaefa3767fb947d33', '172.105.247.100', 1671563486, '__ci_last_regenerate|i:1671563486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f9f87b4b26d1fd093dfe93fcf1c5f0c4cf16e9', '172.105.247.100', 1671563486, '__ci_last_regenerate|i:1671563486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58caa79fa5191db20797b4d09a1235ad485def57', '172.105.247.100', 1671563486, '__ci_last_regenerate|i:1671563486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f71857b6525bb21f9fe6ec424364b4c596b3ec7', '172.105.247.100', 1671563486, '__ci_last_regenerate|i:1671563486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0071d9d3031c6732c191d1011d75c265f6eb3d', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c1ea098865122de129993e12b59f14f92dedbb', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ac661f3b55fc82ee5626b836eac1bdb71aa1dcb', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ac306f981d84954744479ed77074f4a714f658', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cdf3a2dcb2aeeaf58326892689e41197e14845e', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ead7535054033a14e33ccc90a143108c17911c94', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49e53f89f15262008ca8cc2b0743e0fbae02ef6', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db8c1bdcffdbdcf7b3040abb4259637def55227', '172.105.247.100', 1671563487, '__ci_last_regenerate|i:1671563487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d36c1a58aed6944fc2e4c361c79379d6db9793b7', '172.105.247.100', 1671563488, '__ci_last_regenerate|i:1671563488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed2ca9148bd04493efe9a68882b6f0082bcd93bc', '172.105.247.100', 1671563488, '__ci_last_regenerate|i:1671563488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5c717549e1d22ed600ac2fabf20952621fd433', '172.105.247.100', 1671563488, '__ci_last_regenerate|i:1671563488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54a72f75c6542797b438481f568bede3dff33a0', '172.105.247.100', 1671563488, '__ci_last_regenerate|i:1671563488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0c5cf8c4d739aa7e75cac43c573cb8b9cb2543a', '172.105.247.100', 1671563488, '__ci_last_regenerate|i:1671563488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef817022db5d495f0c36656b6ee0dcae01704c8d', '172.105.247.100', 1671563488, '__ci_last_regenerate|i:1671563488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115549f79862e2053b1c1536e83d80e8e116e8c7', '172.105.247.100', 1671563489, '__ci_last_regenerate|i:1671563489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261cf39e32f1719aa95db1c4f210524679de0654', '31.222.203.2', 1671564827, '__ci_last_regenerate|i:1671564827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac45b09435566722ce2f56f8b5c709a93c2c0281', '31.222.203.2', 1671564828, '__ci_last_regenerate|i:1671564828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258ac7e8accda385c5f79b23c4827361c7296933', '31.222.203.2', 1671564828, '__ci_last_regenerate|i:1671564828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584f89678543474bda5b9fe9a4e061c3eed06998', '31.222.203.2', 1671564836, '__ci_last_regenerate|i:1671564836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd67070cce2299731b953dd457cdaf5a4a63b4c', '31.222.203.2', 1671566622, '__ci_last_regenerate|i:1671566622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0feaf7bb277879efa21a90f2064faa5307d60817', '31.222.203.2', 1671566622, '__ci_last_regenerate|i:1671566622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48991f1b86711b7e8f9bcd1d0155ce729b6b83b2', '31.222.203.2', 1671566622, '__ci_last_regenerate|i:1671566622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44de2e5f25acb06bb26b30c1601747bc7f8da5e', '31.222.203.2', 1671566624, '__ci_last_regenerate|i:1671566624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e45a25e5373476929f466c67c546cbc0913f974', '31.222.203.2', 1671566624, '__ci_last_regenerate|i:1671566624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b47314b49d36d12bfe0bd6a692823c4d74061f8', '31.222.203.2', 1671566624, '__ci_last_regenerate|i:1671566624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bdcc12574bdfafb8f9d55369e5a0cbd84992f05', '162.142.125.222', 1671567744, '__ci_last_regenerate|i:1671567744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2be8c95c7fd6098c5d0315402cee739aa9eec7', '162.142.125.222', 1671567745, '__ci_last_regenerate|i:1671567745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e2d75bd2d8c988509a8694aa24940e7b6d9820', '162.142.125.222', 1671567746, '__ci_last_regenerate|i:1671567746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1993bbf26629d906fdde49ef943839b746704a', '162.142.125.222', 1671567747, '__ci_last_regenerate|i:1671567747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3508d1eaa7c94ccced2eafc45b891b444ef5732', '162.142.125.222', 1671567748, '__ci_last_regenerate|i:1671567748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1177bf35a1ae11e43dc6417b67f89e4ba1b9eddf', '162.142.125.222', 1671567752, '__ci_last_regenerate|i:1671567752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646926c6d54e37958671c3948eeca7cfc0aa43a3', '172.105.247.100', 1671568277, '__ci_last_regenerate|i:1671568277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01a74f5e1bd4be640911bf5eacc6f9acb39eb7a4', '172.105.247.100', 1671568278, '__ci_last_regenerate|i:1671568278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9357a5f588d44325113a5db630f887bd99f105c4', '172.105.247.100', 1671568279, '__ci_last_regenerate|i:1671568278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f76fecc3eea9a04780ba0e90de7721072082ee', '172.105.247.100', 1671568279, '__ci_last_regenerate|i:1671568279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f392be6e7d11a14675e1edfa63af639a07cf6d7', '172.105.247.100', 1671568279, '__ci_last_regenerate|i:1671568279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa22d1dbace955dd9cb39f4bb16d073b44e29c9b', '172.105.247.100', 1671568279, '__ci_last_regenerate|i:1671568279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2639d6802333b8d0b123fd7a0ca81f91d8d2209f', '172.105.247.100', 1671568279, '__ci_last_regenerate|i:1671568279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cc4d78d8d3be1ccee72c3b669169412d3411e3', '172.105.247.100', 1671568280, '__ci_last_regenerate|i:1671568280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61655f5a3fd0fcbe2d865fdbfb654f227e7e958e', '172.105.247.100', 1671568280, '__ci_last_regenerate|i:1671568280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ca55a041e3364cc883c817831ce80ec9f03783', '172.105.247.100', 1671568280, '__ci_last_regenerate|i:1671568280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f33ff62f9360251c1a9f4586123f620c5beb718', '172.105.247.100', 1671568280, '__ci_last_regenerate|i:1671568280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4298416878d05fd25038b092f25b15392d94f6de', '172.105.247.100', 1671568280, '__ci_last_regenerate|i:1671568280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3e6a492242225b128aa6e1c85865831b2d0002', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020ec35aac4d8ddf208803f4ab5f979ebfcfba78', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88cb7a6d7f8fc17481e3916095ce90369a7c93f6', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee6bf8f40f07b070484e368a8de55c5dab10b72', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('544ff33a34919a34031e77934950978d012d547c', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7350d7b04dded25d131b1b91957c21cf55a66f5', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696aabf9ebf8d819db76c3909b06af50754f4111', '172.105.247.100', 1671568281, '__ci_last_regenerate|i:1671568281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c870fcca869034b02e95dacc0dd297ad4812fc', '172.105.247.100', 1671568282, '__ci_last_regenerate|i:1671568282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357f95e02bbae39f557ce789ebeacd5f2de0a10a', '172.105.247.100', 1671568282, '__ci_last_regenerate|i:1671568282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdbf3384702155be1cab39e1df442f6dc3b0e77', '172.105.247.100', 1671568282, '__ci_last_regenerate|i:1671568282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e793ab8c6c3714add406e3a7adbbf8306440bc2', '172.105.247.100', 1671568283, '__ci_last_regenerate|i:1671568283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03aa9acd183440ff145dbfa8da41915f37196dff', '172.105.247.100', 1671568283, '__ci_last_regenerate|i:1671568283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91333f7dd4234f3b2a3265c540cc25628c18b153', '31.222.203.2', 1671568427, '__ci_last_regenerate|i:1671568427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfffe653a9d74160c40eb5a5b15d5a4c8e7fea6a', '31.222.203.2', 1671568429, '__ci_last_regenerate|i:1671568429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c8bdf8c41381da9f617a19d78a0f998600698d', '31.222.203.2', 1671568429, '__ci_last_regenerate|i:1671568429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ebf3a8b6613098645171382062001d5a10f213f', '31.222.203.2', 1671568429, '__ci_last_regenerate|i:1671568429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f956bc314a185b36d02ce73ed173f1e70c83d9fd', '31.222.203.2', 1671568429, '__ci_last_regenerate|i:1671568429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b40fcdc97457eda2096e30b0a119ed253396c1', '31.222.203.2', 1671568429, '__ci_last_regenerate|i:1671568429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6864ebab83fcae2336d682306dad99e3dfd21a0', '31.222.203.2', 1671570217, '__ci_last_regenerate|i:1671570217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0d0cb7bee41a9e62555812003092e1d2cbfdd3', '31.222.203.2', 1671570217, '__ci_last_regenerate|i:1671570217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541561470112f9ef09f4bfa5942286e091a6fe4b', '31.222.203.2', 1671570217, '__ci_last_regenerate|i:1671570217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721fb3bfd7dbf578523cf59533ebd54f6e2aa62a', '31.222.203.2', 1671570217, '__ci_last_regenerate|i:1671570217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42605f222507853d6286f2ad81b552472c8135b2', '31.222.203.2', 1671570217, '__ci_last_regenerate|i:1671570217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4087e5526ee64f6694da022704f31001a11e3c22', '31.222.203.2', 1671570217, '__ci_last_regenerate|i:1671570217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3467e60ed8fd92690ea89cc836ab28613aa8d659', '31.222.203.2', 1671571999, '__ci_last_regenerate|i:1671571999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb5df04c077baa1dd436ff6348cea16f1163762', '31.222.203.2', 1671571999, '__ci_last_regenerate|i:1671571999;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa3d334f4c4c5d97f9ff3dffdeb54867513432d', '31.222.203.2', 1671571999, '__ci_last_regenerate|i:1671571999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e083bd332c8bd06aaf0d8b31067ab97e9442baa9', '31.222.203.2', 1671571999, '__ci_last_regenerate|i:1671571999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d551679c0b2ec3ff0a9c3d531f00bd26d1ee033', '31.222.203.2', 1671571999, '__ci_last_regenerate|i:1671571999;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb20263bc6881fcbe89b35ff6dfd6407b578f0b', '31.222.203.2', 1671571999, '__ci_last_regenerate|i:1671571999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c087f5ad0e4f6c0c9ac3c786dbc55cc791b3f3f4', '172.105.247.100', 1671573078, '__ci_last_regenerate|i:1671573078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b003997ea15d40a0ea245dab27e39aecc0cb8e52', '172.105.247.100', 1671573078, '__ci_last_regenerate|i:1671573078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cdacc4d45acaba042edb084cae9b16ce2df74bf', '172.105.247.100', 1671573080, '__ci_last_regenerate|i:1671573080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebee68530cf4be7e3a78bdf7f3eccb87663abb9c', '172.105.247.100', 1671573080, '__ci_last_regenerate|i:1671573080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6919efc234bcc248b9f21567f7a6253afd870da7', '172.105.247.100', 1671573080, '__ci_last_regenerate|i:1671573080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325f6d81e4a60f75f1fec96a73d7120b2f7802aa', '172.105.247.100', 1671573080, '__ci_last_regenerate|i:1671573080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ee572d7dd3883e1f28eb0b6105f7198ffc3dc7', '172.105.247.100', 1671573080, '__ci_last_regenerate|i:1671573080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ab9aee16b6e628f68c87be84bf9b91e197125d', '172.105.247.100', 1671573080, '__ci_last_regenerate|i:1671573080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fcea1bc7a8352ea8200948bf8d15b4b2ee61133', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1c65bb209e2483d36051c8a64ffab1fdbcc23c', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77833c41f299cc0e40ce8ef06a7b72ace60375ea', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d62a1c67e05c267c65a80ba22a248ba74d28e9', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0ce5663ae47a2c2e6ca9b143ff6634ca79e76b', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2778cce3d53fc4fa09f2e73d886c3206137913f1', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('816890514622ee61485f02b2691de290b6bbcba3', '172.105.247.100', 1671573081, '__ci_last_regenerate|i:1671573081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a3b85d199b8753b10521e3e2e21a85ef5a3bc1', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d1cb6f2627d7c059b7f356bbb9ae02e560b882', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f3775ea69d897888cb6223c2065bec08d01454', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99d8e3f7224fc45fc54523e7341c367c138f3ac7', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9909d06cbf438fe9b3f36378692d40ab89ccd7', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b3e3b2ecb93bf20e5c2fa9874b631b0e38ab04', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4200127e3735545df8e1a970e3832081cdc3f8d', '172.105.247.100', 1671573082, '__ci_last_regenerate|i:1671573082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8def682846b3f1f44e7664a92714006bfaba7b42', '172.105.247.100', 1671573083, '__ci_last_regenerate|i:1671573083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae787820ad557f22d8ee606c7b88a30cb0d521b4', '172.105.247.100', 1671573083, '__ci_last_regenerate|i:1671573083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8adff6d9cd753ad4789bdc27713e888c7a12c44b', '31.222.203.2', 1671573820, '__ci_last_regenerate|i:1671573820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1268f574695e232983d32b1016308b9cb84f0b93', '31.222.203.2', 1671573820, '__ci_last_regenerate|i:1671573820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0097e3be2a78fa9fd6141420aabc7a31043345ba', '31.222.203.2', 1671573820, '__ci_last_regenerate|i:1671573820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e653d2e668917903ee426ee0d5abfdb951c7ae3', '31.222.203.2', 1671573820, '__ci_last_regenerate|i:1671573820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b462f90d38a0942930d9e270174bba4e17b8334', '31.222.203.2', 1671573820, '__ci_last_regenerate|i:1671573820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622697b83888b1a7dcefffa8097f576af880dc42', '31.222.203.2', 1671573820, '__ci_last_regenerate|i:1671573820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bea8d05d6a0171c6cdcbf9af79c45c2710d6e7', '31.222.203.2', 1671575621, '__ci_last_regenerate|i:1671575621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5de5f83b5ec5b6a21409568296064d57636ae2', '31.222.203.2', 1671575621, '__ci_last_regenerate|i:1671575621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e8d4255653eaa205fdb8fedd52e9b7cd57fd55', '31.222.203.2', 1671575621, '__ci_last_regenerate|i:1671575621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4dfa001e0403ce736793adc686fc1c5b676aac', '31.222.203.2', 1671575623, '__ci_last_regenerate|i:1671575623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7636f3725943bbea7a276222a72e44dd29a78d', '31.222.203.2', 1671575623, '__ci_last_regenerate|i:1671575623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4751ca3135d65c759daff504a8b1bc72551c2f', '31.222.203.2', 1671575623, '__ci_last_regenerate|i:1671575623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e51f8b717098d00a1ac1124188c1be03131ff6', '31.222.203.2', 1671577417, '__ci_last_regenerate|i:1671577417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2928141e42c985e51dc482d83e85dc63e3774ed5', '31.222.203.2', 1671577418, '__ci_last_regenerate|i:1671577418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afbbfe938cfdf9cdcbdfc0541a2515fafdfaa39', '31.222.203.2', 1671577418, '__ci_last_regenerate|i:1671577418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7aac1e188f3079154acc552c3c4002c99fdb99', '31.222.203.2', 1671577418, '__ci_last_regenerate|i:1671577418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe9534b9d275309823c94fe66a23e3055c3d1f5', '31.222.203.2', 1671577418, '__ci_last_regenerate|i:1671577418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d15abdddc3eac20dbb6381b0f658ee16cdcc40', '31.222.203.2', 1671577418, '__ci_last_regenerate|i:1671577418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77306d70d571bd3fd205bc5294aceec0c1c814c', '172.105.247.100', 1671577882, '__ci_last_regenerate|i:1671577882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0d01bea056e1ae72178a6a78fdb428e248732a', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2b3e101f4bcdfa390f89e16ecba36c5839c4db', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4f4a99296edfb2ef77e40e2e146de7b0a8cc4f', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b76408b33bf53e2f9918ff12627f81c7cc4b6091', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243b30fc95dbcba65788017242bd95c5713c03e8', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49660550ed8a757d2cded86e26c76a457f6da759', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65e6e60e0108ab4db186d99b80d586ffa7e73c4', '172.105.247.100', 1671577884, '__ci_last_regenerate|i:1671577884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b14724409762e70b51f48571b10f34183f0758b', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10606feb94c05764cc365da4d2748f66ed30541', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276528c809684e11c41f098ef721af8cbf906398', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dcb742af8d93291a1aae889f8e416d29d7b6a8e', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aeb344f1f438c6a480ebd58055639c53911ee9b', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4939c0d1699cbfd5c3c6cb4e3c23f98127af519', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd23acf435e03d6ee211e0f13871a67d2cc0131', '172.105.247.100', 1671577885, '__ci_last_regenerate|i:1671577885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90c3d47d7dcd8594788390a9ee528336f09bc31', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('190535e7aafbfa4d403fe2ae82bb74304950a76b', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b31e28e178c9584bca19303a9b6ab1f54d4ac8', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ae4b244769cb3ebce83ce86e2573e885d00a84', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a86329d3112ab561f93fce0c29f0b00cfc3c8f', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177580d645fb03c3765a72b63b92e7066c924a2f', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28873b6f2abbe9b18e3f71a79dd1c5fb914d507d', '172.105.247.100', 1671577886, '__ci_last_regenerate|i:1671577886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9038ee6bf08b4a3f4e08b88bcd283ae482c52987', '172.105.247.100', 1671577887, '__ci_last_regenerate|i:1671577887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71cc51800f98d34d0004fbf3781ee81577bc9493', '172.105.247.100', 1671577887, '__ci_last_regenerate|i:1671577887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66e05636ff3ce24d2ac531d385ee801aa705804', '31.222.203.2', 1671579217, '__ci_last_regenerate|i:1671579217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca39bf8daf4846408379c4559df2329a6242d748', '31.222.203.2', 1671579217, '__ci_last_regenerate|i:1671579217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e0bdda14ada83983f3c408cae23fa5b4919e79', '31.222.203.2', 1671579217, '__ci_last_regenerate|i:1671579217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c37d469edf4716d9fd3731f4da7143bb72f3957', '31.222.203.2', 1671579219, '__ci_last_regenerate|i:1671579219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('259e098a97f73c67e46102884ccf53b93c87655d', '31.222.203.2', 1671579219, '__ci_last_regenerate|i:1671579219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9952c7737963029b65e660451fa9b6dd2e37edc5', '31.222.203.2', 1671579219, '__ci_last_regenerate|i:1671579219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83d2d5a1a73fe46fe9788a8888f6177b757716c', '31.222.203.2', 1671581032, '__ci_last_regenerate|i:1671581032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6817bbf5746445117054eee812136dffd538d03', '31.222.203.2', 1671581032, '__ci_last_regenerate|i:1671581032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06a0b35434b8ba9abdf6396aed4f8de64e735aa', '31.222.203.2', 1671581032, '__ci_last_regenerate|i:1671581032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c064c34b7bb1c4914c24a25ed9759e70dbc494dd', '31.222.203.2', 1671581032, '__ci_last_regenerate|i:1671581032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b96aa77a24efd5089e14395b667503db38fd2c', '31.222.203.2', 1671581032, '__ci_last_regenerate|i:1671581032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c32d9c5f0e010d512c0cc30ec978b923ffc30f8', '31.222.203.2', 1671581032, '__ci_last_regenerate|i:1671581032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b038a4d2c480b84f36c7b7a1ee17b86e3024404', '172.105.247.100', 1671582677, '__ci_last_regenerate|i:1671582677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca13aafa271bbc8df30a127f295c1c5795fd2b51', '172.105.247.100', 1671582679, '__ci_last_regenerate|i:1671582679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68765dcd264f5e12058fe30a3258cfe16eac4f94', '172.105.247.100', 1671582680, '__ci_last_regenerate|i:1671582680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45cc8dad9a33e16a5751379b43439b075dcd9fb', '172.105.247.100', 1671582680, '__ci_last_regenerate|i:1671582680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20688e31991cbed6f1718de542e5ea7739159b53', '172.105.247.100', 1671582680, '__ci_last_regenerate|i:1671582680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae056740d49e16dad8f0f956ebe35f81253cce34', '172.105.247.100', 1671582680, '__ci_last_regenerate|i:1671582680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7533d6639e069c603ebd5a483ef24cfad736321', '172.105.247.100', 1671582680, '__ci_last_regenerate|i:1671582680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1cc1802bb9597deb242f4ab92499364c2bf508', '172.105.247.100', 1671582680, '__ci_last_regenerate|i:1671582680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('929caf8b827ee42ee87b04f549d5e2cd73620e7a', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408a3c8391fba2a94fbf61b1f5ba7ae3f11369c9', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b836ea37988519340106029f60c36a76460091fb', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b5df4fc1f9c0fb6f1efd6d4c3d2c04a222c804', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c5945bc86c2f713586de97cde17fabf36cfdf3', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ea57baa1fa358dd406f38b1c3e2982fd5d2640', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8974240ff45b773043116c17de227565269dac8d', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d473f3cb41f0e0c183e455006af3570d1c5a616b', '172.105.247.100', 1671582681, '__ci_last_regenerate|i:1671582681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be959bd8aa2c4609592f69ee4bada2930847992', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36b532d8b7c1c4a4f40259377d971787ce28aa9', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba875f67a0dc3483201274b55180ca6adae420b6', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf451abf128f69ca1bfe1994e934639d7f9d1c9', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a55cdb1476be5af17bc0cee60f3ab59b8709c8f', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70529d144a0f854d401543add151815769de0f8c', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b64e04bd8bcb52a1a7217750ea1373682678e97', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91bb940dc0ccd6276f508ec0ba00bac2f368f927', '172.105.247.100', 1671582682, '__ci_last_regenerate|i:1671582682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33679345968a3b3282eb69975171a8166bf85444', '31.222.203.2', 1671582825, '__ci_last_regenerate|i:1671582825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64922e40152a901199699d51835323719f81bb34', '31.222.203.2', 1671582827, '__ci_last_regenerate|i:1671582827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce9421940420704e6571c1420735644e7f34d07', '31.222.203.2', 1671582827, '__ci_last_regenerate|i:1671582827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add906bb4ba6d3386f2f218f488fc234277efb66', '31.222.203.2', 1671582827, '__ci_last_regenerate|i:1671582827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8f67336ccff69ef68c7d670159ea576d8627c0', '31.222.203.2', 1671582827, '__ci_last_regenerate|i:1671582827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dfff29e1710831e55d6a47b4b76e221589c13e', '31.222.203.2', 1671582827, '__ci_last_regenerate|i:1671582827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a890b04e2dc2068a3d08909fd407df8ff63e15', '31.222.203.2', 1671584616, '__ci_last_regenerate|i:1671584616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65dd36698517b6f8b00324b12d281436fb17b42a', '31.222.203.2', 1671584616, '__ci_last_regenerate|i:1671584616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3801b765349bd78864ab580d08778ac0a527327', '31.222.203.2', 1671584616, '__ci_last_regenerate|i:1671584616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d06e408af193b30a965c478e61a2a0623f3e728', '31.222.203.2', 1671584618, '__ci_last_regenerate|i:1671584618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2caa64310369a3ee73951980f51a2896eab2ae10', '31.222.203.2', 1671584618, '__ci_last_regenerate|i:1671584618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac0fd8c3e3cda7cf7be2ac5e895b767698953c5', '31.222.203.2', 1671584618, '__ci_last_regenerate|i:1671584618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e634482e32ca98592406f1f4e2f7aaddaf6f27', '31.222.203.2', 1671586419, '__ci_last_regenerate|i:1671586419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62884e5e6fdee46650b5b19b423a232f62b01e91', '31.222.203.2', 1671586419, '__ci_last_regenerate|i:1671586419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03190ed1569cd754221b7082f39311d1f0d6eba1', '31.222.203.2', 1671586419, '__ci_last_regenerate|i:1671586419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ae7376d8a50f25377649bb461c7bc7574bf5c4', '31.222.203.2', 1671586421, '__ci_last_regenerate|i:1671586421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438ea248cb9e84305e9f84be50a9ddb8bae94728', '31.222.203.2', 1671586421, '__ci_last_regenerate|i:1671586421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5e851380dc751aa0f41f36dc33331fd4b419df', '31.222.203.2', 1671586421, '__ci_last_regenerate|i:1671586421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e10454db6cbd3910241d42dc5469e4f150247ad', '172.105.247.100', 1671587476, '__ci_last_regenerate|i:1671587476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a93f5c4ff37d61855856a715a6f5db0f015e35cb', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587476;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a114ee470756f9d351df5abc4e8d01ffcb4261b2', '172.105.247.100', 1671587476, '__ci_last_regenerate|i:1671587476;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7724bcf3bba5fdf956c46cd822c272b30296b9c0', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cccd910d8c5db554e7d2f1b72273f4b2a84ad2b', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260d5932290d484a9141d7d1750d8ebf6e6562d1', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d599b8e0203e2066c193614994457182f1e970e8', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed9d7475f891df5101454fd326e3cd792275e45', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b740fd618f5357e2c720c6b37ece2c99b32b4f58', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98bb535e1725c37e5fcc3181a4d680279a746e2a', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef0ff84b406ec1ab3c6b992b1729abbded03de0', '172.105.247.100', 1671587477, '__ci_last_regenerate|i:1671587477;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a82e4604aa5d775052303812d7290efae371a0', '172.105.247.100', 1671587478, '__ci_last_regenerate|i:1671587478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a903f7db693dd730c16a7e4e3b009eb77c5b3cb', '172.105.247.100', 1671587478, '__ci_last_regenerate|i:1671587478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9109d5726899f86942ea19079e18f6900d5b9820', '172.105.247.100', 1671587478, '__ci_last_regenerate|i:1671587478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e9b3558a367839f32b57adee2f206b8cc8f641', '172.105.247.100', 1671587478, '__ci_last_regenerate|i:1671587478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802d8ac8d6ff9efcee41797debc345c13dad8e5d', '172.105.247.100', 1671587478, '__ci_last_regenerate|i:1671587478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7be2f609446f5135914feba95364655c3f8b549', '172.105.247.100', 1671587478, '__ci_last_regenerate|i:1671587478;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15f2212c1ec31db05cc11ff2a6e176a56d85ceb', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80f67b982431b8e6b5f593300d9e1177f6ca707', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90cb69a96a4e9b099aa7e7e1958b9b80919aa562', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d5eb186d5bfb1bbefefd287957c66df04be9f6', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990d77d5dd47e9b9b109f0b228fb89b4f1f084ce', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e628ea32304b0f31ec535617a15a53f6135e3d', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587479;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1cd62df76252f9630a2932c4c00fbc2ae11503', '172.105.247.100', 1671587479, '__ci_last_regenerate|i:1671587479;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2eaeca87999b8de1fa9b4b60ffbeb41ff482e7', '31.222.203.2', 1671588230, '__ci_last_regenerate|i:1671588230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbff02ed748aae35006fcf627473b9c548660a8e', '31.222.203.2', 1671588230, '__ci_last_regenerate|i:1671588230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4f60659a2af86dea24371799805e79694580a0', '31.222.203.2', 1671588230, '__ci_last_regenerate|i:1671588230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2da0c89681c075a3aa8bea7203461f91bff869', '31.222.203.2', 1671588230, '__ci_last_regenerate|i:1671588230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c83d150ca5c8c4de9d58c0fccb9b2afc180d1b', '31.222.203.2', 1671588230, '__ci_last_regenerate|i:1671588230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5c0541df203d567955e3ef350fc6f050d16f8e', '31.222.203.2', 1671588230, '__ci_last_regenerate|i:1671588230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603a60416e4d43b235e259404a44335fab1dc68f', '51.81.187.1', 1671588235, '__ci_last_regenerate|i:1671588234;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e7a7f500333dbfac9f301f852de9fbbf930409', '31.222.203.2', 1671590018, '__ci_last_regenerate|i:1671590018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9656ebe469d4540ca6fbabb6b10d5db6e793b15', '31.222.203.2', 1671590018, '__ci_last_regenerate|i:1671590018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db7ac50ec49661a54c5596547fdbed7c420fd3b0', '31.222.203.2', 1671590018, '__ci_last_regenerate|i:1671590018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1883d497eb3aef1e452e0abf5ebd383cf472d73f', '31.222.203.2', 1671590018, '__ci_last_regenerate|i:1671590018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f094ef79c0ad06a3e6bb42b2078bad19e553874e', '31.222.203.2', 1671590018, '__ci_last_regenerate|i:1671590018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fae5e2cd3669347e7e59571876bc98422cd7678', '31.222.203.2', 1671590018, '__ci_last_regenerate|i:1671590018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7efab464cc8eec8a46fcf519c0f971c0b882fc', '31.222.203.2', 1671591816, '__ci_last_regenerate|i:1671591816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10c04bd217bf64397b44fd46de8a3b5a2f9c39a', '31.222.203.2', 1671591818, '__ci_last_regenerate|i:1671591818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d598682e8763105300fb13bd48b27853204b908', '31.222.203.2', 1671591818, '__ci_last_regenerate|i:1671591818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00101b3fd76b2e0d3608bafc05bfaf4581dd20ee', '31.222.203.2', 1671591818, '__ci_last_regenerate|i:1671591818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3363f2a3b694bd3025efe94ab2823d7c0aae434', '31.222.203.2', 1671591818, '__ci_last_regenerate|i:1671591818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83b42c32b3b9db82e45baabb3c2b328bb7c1fc4', '31.222.203.2', 1671591818, '__ci_last_regenerate|i:1671591818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dfdae8238c5ffba677f7d5ac990bfba14371a79', '172.105.247.100', 1671592278, '__ci_last_regenerate|i:1671592278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a666e193f89d373f024c7d278166fc5a497af937', '172.105.247.100', 1671592279, '__ci_last_regenerate|i:1671592279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215331c60b7ce1f93ec83073949359478d5b0663', '172.105.247.100', 1671592279, '__ci_last_regenerate|i:1671592279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716899406b104ef31598d98efaca0cf9053f6831', '172.105.247.100', 1671592280, '__ci_last_regenerate|i:1671592280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111c73d9c6bee2bde02bf9ff2ed750415d5e9b76', '172.105.247.100', 1671592280, '__ci_last_regenerate|i:1671592280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf66d7ec7a1a87a994abf83c9414bf1c378c8e5', '172.105.247.100', 1671592280, '__ci_last_regenerate|i:1671592280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa856bab54abbf57c743da649651563127b86fb', '172.105.247.100', 1671592280, '__ci_last_regenerate|i:1671592280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7fdef328b481755b476740c44675a0fbe90b0a3', '172.105.247.100', 1671592280, '__ci_last_regenerate|i:1671592280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366428bb906121c59727ccd8668cd7bad078d7da', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e49759c58f29b45fb1bac40cdf681b7db01673', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70519eaa1492aefe830370d3b891c451238c9b9b', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab580eb0cf86ac45a3231c2ce9dc50484430b7b', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48cf87ef0009c2c13032ea6691f86ea114d1bf6b', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ecb6118e9b6a07bcf201f7f760394ac8fe8583', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffcad975c1d9522b133bdd8a991ce7bfd918aac6', '172.105.247.100', 1671592281, '__ci_last_regenerate|i:1671592281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991a2f904a4966d669f59311d2092ed146fc6cc6', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb687f25433f5d5c945645aa6bdf540e43d85bea', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eec16d4b7cf39b74d470970e0d3987c727a326f', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93169661d4259152fa79f16a2d327fe61ba4f367', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd512e7d87934365e462b5da0d09761ae4bee620', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21118678b004caead88b1a8e8b8fad70c14b0ed6', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a0c76e5d654e6336fded2d886a799bf003c172', '172.105.247.100', 1671592282, '__ci_last_regenerate|i:1671592282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e71eb2ece85ddbb39917e3048fd6d951b50b37f', '172.105.247.100', 1671592283, '__ci_last_regenerate|i:1671592283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b546ba74ff6dfa2df8055e6129c6c83c347f51b3', '172.105.247.100', 1671592283, '__ci_last_regenerate|i:1671592283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045d0c5ea2344b354ed226ac0737ae510a9de1af', '31.222.203.2', 1671593618, '__ci_last_regenerate|i:1671593618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75dde18d4723b9359e509d342ca9f6c62aa1673', '31.222.203.2', 1671593618, '__ci_last_regenerate|i:1671593618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea566c8c3a963427952f331f7a5acde822a906c', '31.222.203.2', 1671593618, '__ci_last_regenerate|i:1671593618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5203ffcf389127ca449d1ffdfc3a1a38a2611a57', '31.222.203.2', 1671593618, '__ci_last_regenerate|i:1671593618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa04fa70df4d5c01785911e634c9f6af974c3ab', '31.222.203.2', 1671593618, '__ci_last_regenerate|i:1671593618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247f4ba6636cae6558d0181ff69eada2d1830508', '31.222.203.2', 1671593618, '__ci_last_regenerate|i:1671593618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526678ace4b661cf48420749226aacd059ad189c', '31.222.203.2', 1671595417, '__ci_last_regenerate|i:1671595417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce8141870f412b12d2a152add657d06239c4f726', '31.222.203.2', 1671595417, '__ci_last_regenerate|i:1671595417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db774bb21ac9dc8a559f80920527518b434350b', '31.222.203.2', 1671595417, '__ci_last_regenerate|i:1671595417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f13447140e9090ff201a3263df5cdefa7ad2b63', '31.222.203.2', 1671595419, '__ci_last_regenerate|i:1671595419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b1ac2c3560b644ac6df7e7609460190fa8da7c', '31.222.203.2', 1671595419, '__ci_last_regenerate|i:1671595419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ceb2bbf502dd5dec2614466536d037b37c22511', '31.222.203.2', 1671595419, '__ci_last_regenerate|i:1671595419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a46b6c8e676b50bc83107f657d60360346e0415', '45.120.39.89', 1671602198, '__ci_last_regenerate|i:1671602198;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671537832\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353a714764a56a2c91b2caf291bf7c995adf9fcd', '172.105.247.100', 1671597083, '__ci_last_regenerate|i:1671597083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155dfc99401ae3d2779b80d9bf7362c21116a7c9', '172.105.247.100', 1671597085, '__ci_last_regenerate|i:1671597085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a19a642688536f92a26a6b3088964653000fc7a', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44678efdc9381be3393d4ee2f45ae5be59ca400a', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3e6d0e07d4627ebac64a1958490023af4925ff', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48759a113ecbbe301ec53f626498d56ededd669a', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d78c1adc2b4bc28245b0a9839a70ed19a88df0', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e31b94c44def0554ea63f9ac63028ab0b7c1c2', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b31fb628016c8f9eab385dc00046ed88b7421e', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0dafc88468fc948c3fa244bb59c3a494b275f9', '172.105.247.100', 1671597086, '__ci_last_regenerate|i:1671597086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83463205d16dd4751c1133965e57f65c73057292', '172.105.247.100', 1671597087, '__ci_last_regenerate|i:1671597087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d70238a05bfb948f20586c0c068043b2a8d6f5', '172.105.247.100', 1671597087, '__ci_last_regenerate|i:1671597087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbba0ff2bbe04252f24c4a00891c9dda107933c7', '172.105.247.100', 1671597087, '__ci_last_regenerate|i:1671597087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14f529cca14e099c08a8c6b1a78467c99dc249a', '172.105.247.100', 1671597087, '__ci_last_regenerate|i:1671597087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df300d828cb33e96fce675d8133572cccecfc1d0', '172.105.247.100', 1671597087, '__ci_last_regenerate|i:1671597087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45e7522d9bc676eb686bbe96c7947cc00b0fe56', '172.105.247.100', 1671597087, '__ci_last_regenerate|i:1671597087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6626b4382f5bde3ac77407f5148aa3ec2c02f26d', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2147789caa8b52c9d4cea24ae7f3907c9ab368', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930fb424183b28299ddcd142a5ddfc6b750ad516', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed853d1ba1178ff928d828c1d0bea053b7487766', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7fdec3c4cdc6b86d7a341335da06514f12bff6', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd58777d67805cc53414467ff2a15323e81e6a7', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5899fea3274a50e501c2c501398407582f52a2f8', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218dfb49ebc9ee2bde689af6a3a7abd8e027bd6a', '172.105.247.100', 1671597088, '__ci_last_regenerate|i:1671597088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf4d4a8ea501d9ecb74a7da5c45ed85e89c49d0d', '31.222.203.2', 1671597223, '__ci_last_regenerate|i:1671597223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3247f004c225152050eeaf8de6234e49d19cc809', '31.222.203.2', 1671597223, '__ci_last_regenerate|i:1671597223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a93e2935354facef2743771de3b78c3a6f329877', '31.222.203.2', 1671597223, '__ci_last_regenerate|i:1671597223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d8ffbb2239035f339ee22f310a573409ebd1c9', '31.222.203.2', 1671597223, '__ci_last_regenerate|i:1671597223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c3c05feec65f9375d6ddbd92005c82fa218038', '31.222.203.2', 1671597223, '__ci_last_regenerate|i:1671597223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55988fe4e2a58a84866b7f0fb4f5df55167d8905', '31.222.203.2', 1671597223, '__ci_last_regenerate|i:1671597223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dae31343630a00ac093e1d215d08ebea53d0fc3', '31.222.203.2', 1671599020, '__ci_last_regenerate|i:1671599020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1b7438a479132d99de233dae172193ffd1ced6', '31.222.203.2', 1671599020, '__ci_last_regenerate|i:1671599020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7446cd7a0cd8edda4f51bbade1bec2213736bb0a', '31.222.203.2', 1671599020, '__ci_last_regenerate|i:1671599020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65287074d93ed764d1b3960707ce08010a29cb4b', '31.222.203.2', 1671599022, '__ci_last_regenerate|i:1671599022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9412cbc0903a2844e5fa883fc04e5ed6bf99e072', '31.222.203.2', 1671599022, '__ci_last_regenerate|i:1671599022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b420d550a3f2170cc52b94b0ee1e07026b73c8ea', '31.222.203.2', 1671599022, '__ci_last_regenerate|i:1671599022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3506528ac8937a42fbe9192c86b523dc487e2e2f', '31.222.203.2', 1671600823, '__ci_last_regenerate|i:1671600823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbabc4e63c7fad05e5a6c62ac15f7f6d455ffba7', '31.222.203.2', 1671600825, '__ci_last_regenerate|i:1671600825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8121e45a20e2dbefe0ab7f83d0a0a82835f42be5', '31.222.203.2', 1671600825, '__ci_last_regenerate|i:1671600825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17039527d13b87356dbd09f941296d24f85f9816', '31.222.203.2', 1671600825, '__ci_last_regenerate|i:1671600825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a1480620537ece64054c5a9e9d25d2606ab79b', '31.222.203.2', 1671600825, '__ci_last_regenerate|i:1671600825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39fe4cb249bd7d1729b983bbd64223b274dfa70d', '31.222.203.2', 1671600825, '__ci_last_regenerate|i:1671600825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd26c07f7c3f4708ab25b74ccf0b50c6da9aa2e', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae5a755db01698d115f41a09341617c06cb3021', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca497c8ab45dd970545a42bc5e59e4b0666ffa2', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f1d62d5d7d6e4e3c0d7487ba7508c8b4853c59', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0da8dc2e105ea225c35a0b26f929682cc253094', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602848ed3150255e801c1dade304577edfa9c6fe', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('022065146f377382b4214273e2887d0afde2c295', '172.105.247.100', 1671601892, '__ci_last_regenerate|i:1671601892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a703beb306e8e3843d8fe26e1ed7e03ccb627fd9', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13e4256a477c67ca79ba80902d9fb1b4ad88336', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1870baaff0fbf7623da2cfc8607fd070fc215a9a', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0182b39503fcfdd26b95aa1ed94954fad1c576f', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f8823027f924e17740308071e3a9eb2e2fef82', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9c64aca50ad22837e2c034eb2b01fcb0f1c85e', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3656eaf18d28a79f51865c8237e5908d4874862', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9602324d615de89fc6d408a437c466e962ebecb0', '172.105.247.100', 1671601893, '__ci_last_regenerate|i:1671601893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b8696b138f267c79833b370d085e0ae6781aa3', '172.105.247.100', 1671601894, '__ci_last_regenerate|i:1671601894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5d14fd0d6a972943ec3357fb54d8559f34fe6f', '172.105.247.100', 1671601894, '__ci_last_regenerate|i:1671601894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f224e16f4d0d05b17c6d6ed2cfee885f54c8c23', '172.105.247.100', 1671601894, '__ci_last_regenerate|i:1671601894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae217136877c496e4c23c333bf6a705cda60ced', '172.105.247.100', 1671601894, '__ci_last_regenerate|i:1671601894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5783cf7d093121679ee66eaa19a8e95fa204045f', '172.105.247.100', 1671601894, '__ci_last_regenerate|i:1671601894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da7ee49e95f58b87781670ef3a3c916014a6792', '172.105.247.100', 1671601894, '__ci_last_regenerate|i:1671601894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa54929e74e112dad2e26dc87c3a448301e23e9', '172.105.247.100', 1671601895, '__ci_last_regenerate|i:1671601894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6212ba941ba0dcca1929f0d4da818486e2779be1', '172.105.247.100', 1671601895, '__ci_last_regenerate|i:1671601895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37227ee3eaa3507f1fd61ef5f105193fdeb05560', '172.105.247.100', 1671601895, '__ci_last_regenerate|i:1671601895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2069e054a117d1c6c526932ccba74c4ca2620669', '45.120.39.89', 1671605309, '__ci_last_regenerate|i:1671605309;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671537832\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671602198;register_id|s:3:\"286\";cash_in_hand|s:9:\"2120.0000\";register_open_time|s:19:\"2022-12-20 21:02:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87b46d463bd19589ab901373d0655ecf4dfaac8', '31.222.203.2', 1671602615, '__ci_last_regenerate|i:1671602615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e91f030791d4a52e56d292f8df564718c643acd', '31.222.203.2', 1671602615, '__ci_last_regenerate|i:1671602615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a3e00eb46d9345ec5b2e791c605c9d465b02cdf', '31.222.203.2', 1671602616, '__ci_last_regenerate|i:1671602616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b544fad7e53abbf96a9244fac41dfbe1789c4d9', '31.222.203.2', 1671602618, '__ci_last_regenerate|i:1671602618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23d9f54787046153824864bbd233e9c32e45e4b', '31.222.203.2', 1671602618, '__ci_last_regenerate|i:1671602618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d61c6503cf8e56433e3b94b4fa209339c6f9f2d', '31.222.203.2', 1671602618, '__ci_last_regenerate|i:1671602618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d846749170da763f626f94c2efd360bd3a19793', '31.222.203.2', 1671604400, '__ci_last_regenerate|i:1671604400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06c4859630092492dce7422ad807279d7c7aa49', '31.222.203.2', 1671604400, '__ci_last_regenerate|i:1671604400;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3319cedb673a292e508c35f9651631fd27c7cf0b', '31.222.203.2', 1671604400, '__ci_last_regenerate|i:1671604400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8482aede7616101f8d65a59b73397acd20bb98e', '31.222.203.2', 1671604402, '__ci_last_regenerate|i:1671604402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328049b4a59d903c3e040f0153161b319b321ac8', '31.222.203.2', 1671604402, '__ci_last_regenerate|i:1671604402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d826764b6bd2c1a486a7e8b55f5ae12002cba0', '31.222.203.2', 1671604402, '__ci_last_regenerate|i:1671604402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddfbc33cf07778845c0caa15d990b0fb1a5778e', '45.120.39.89', 1671611503, '__ci_last_regenerate|i:1671611503;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671537832\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671611482;register_id|s:3:\"286\";cash_in_hand|s:9:\"2120.0000\";register_open_time|s:19:\"2022-12-20 21:02:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f33b6ccca0bf55f7741a4fc7972bd17c93217e5', '31.222.203.2', 1671606220, '__ci_last_regenerate|i:1671606220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb5d032275c3eb5e8796f6d16073292b85445f2', '31.222.203.2', 1671606220, '__ci_last_regenerate|i:1671606220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b56bd9b61b123ba9d84f95453c7a3999d2116f', '31.222.203.2', 1671606220, '__ci_last_regenerate|i:1671606220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24113bf217d6f36255ac3fe5a78b715dd37fa5f1', '31.222.203.2', 1671606222, '__ci_last_regenerate|i:1671606222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1535a38787e6e0fd8b0aeaba8e8802c702c703a', '31.222.203.2', 1671606222, '__ci_last_regenerate|i:1671606222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97db2b9eaecf944a908b949293a3e0af8b8fec4d', '31.222.203.2', 1671606222, '__ci_last_regenerate|i:1671606222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334b74aa17fb361e2a3ed5268228458cee36ae8a', '172.105.247.100', 1671606680, '__ci_last_regenerate|i:1671606680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c575bb3bff6bd8d71bd2e61575b3ff88b14c7a6d', '172.105.247.100', 1671606680, '__ci_last_regenerate|i:1671606680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed187d6fb1679e2db241b5db073fa22fc29d31d', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d987671a88c8a8ec86827fab3e05664d27472166', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a187a245d092971d6bb7e4bd255586030b49b9c', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b5af1091a24061debe03bc4156bf4f41d8dda2', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d2f2ec3a7f74c915df26f08e0e0d0b38d1c34e5', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51cc2ea5979dd65749f4b893c0864968379ca3bc', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d6561f0b022000790a56c2f2d9a066f38d4388', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fb8f1583bbcd9bb72a8eb6b6573c8a8315e22c', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e405ed26f131e33d161e7b2816c7fdafd3f155d', '172.105.247.100', 1671606681, '__ci_last_regenerate|i:1671606681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2df4d6f4db74605bcec49e57f4ca734a52c560', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('190420a98b8afb70631294e532aa594cce325283', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb4468412cd17b43eee94200276f5084678822d', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa0f36365be7230ff8abc9f9eaa633510c4aeb5', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384df66152eb7c2f17b9a1da25f0ebcc0608921f', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734749c079fa42e29afa7236a64a96c59f1d3bfa', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4191a4ae86e1b2d99ac877f3bc2fe04b64c1866', '172.105.247.100', 1671606682, '__ci_last_regenerate|i:1671606682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a026b27154781543af0dc0d82a456951347d305', '172.105.247.100', 1671606683, '__ci_last_regenerate|i:1671606683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85794e38c1d9f5628e83e2e63e4487f0a7fb6cc8', '172.105.247.100', 1671606683, '__ci_last_regenerate|i:1671606683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab272d032f244bde734f3c972bdc19d9e31f5713', '172.105.247.100', 1671606683, '__ci_last_regenerate|i:1671606683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5a6448743484fc74a9e2b593e8ef4c598f0bc8', '172.105.247.100', 1671606683, '__ci_last_regenerate|i:1671606683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e4a7063b312ae5e6a6ffde84c5c78e383f171e', '172.105.247.100', 1671606683, '__ci_last_regenerate|i:1671606683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed26963b40e76755c634a6a53eaee3e2bcb84d83', '172.105.247.100', 1671606683, '__ci_last_regenerate|i:1671606683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd1e287f756ecb51d5a19df928aa3b2de197815', '31.222.203.2', 1671608016, '__ci_last_regenerate|i:1671608016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1350ffc5ad4e4f9b5ba340d65fc9abf1a72eb201', '31.222.203.2', 1671608016, '__ci_last_regenerate|i:1671608016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c893758dbb824b6bf743be3645e294921ab8525', '31.222.203.2', 1671608016, '__ci_last_regenerate|i:1671608016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5d7d67c8e44f7c65d43961989dec7c86ac20b1', '31.222.203.2', 1671608018, '__ci_last_regenerate|i:1671608018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe77c17727ceb9f09e83116c19711233e7d0339', '31.222.203.2', 1671608018, '__ci_last_regenerate|i:1671608018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d6f974fca9fe9054ab0160a269d4b8a8d4b113', '31.222.203.2', 1671608018, '__ci_last_regenerate|i:1671608018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78762152866f25108fa6db7fb00d7707bdfe6bd', '31.222.203.2', 1671609816, '__ci_last_regenerate|i:1671609816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d98ffeb8da7975b194f3db2f07ab16a5e4a6e9', '31.222.203.2', 1671609816, '__ci_last_regenerate|i:1671609816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9903dd0945bf12ddc3efd520ee1944b1207dcd26', '31.222.203.2', 1671609816, '__ci_last_regenerate|i:1671609816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5109bdcae80671ae9e4318f80053b4e838bb5a2f', '31.222.203.2', 1671609817, '__ci_last_regenerate|i:1671609817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3063b9416f7e71641989e8b83f90fed5d4742646', '31.222.203.2', 1671609817, '__ci_last_regenerate|i:1671609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a46e4616450fec34a95d5739371c4980b5dba28', '31.222.203.2', 1671609817, '__ci_last_regenerate|i:1671609817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc7732e48bdcde3dae71157dc8eb3d38a796bf2', '172.105.247.100', 1671611483, '__ci_last_regenerate|i:1671611483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b78ee07f9737b6899e332be197d2994125825325', '172.105.247.100', 1671611483, '__ci_last_regenerate|i:1671611483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998dff6591299c7617769495e54f02c89333dace', '172.105.247.100', 1671611483, '__ci_last_regenerate|i:1671611483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26111f7e260afd463c14ebfc9d4125013c022212', '172.105.247.100', 1671611483, '__ci_last_regenerate|i:1671611483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7ee8c850d64718b99b1792c22d5d88151b215d', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3674286f5af7706f923713e37052dddc8cbc95', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1fa66caf28ec908449c48e313c84497f3f57ef', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1773bfaad9e684e10fefa6b121c5e9aff2454142', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9593dde9b31e338540224aa4711ca1c3507ed43', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d8eb37e2b3cfc05db1c9b76e56204cbed44cf0', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c159f5ef8b331c21eb220d2a29868653e674bb69', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f3f7ba1fda8f82ef758d22d557b37d820584cfc', '172.105.247.100', 1671611484, '__ci_last_regenerate|i:1671611484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d84e8bc0cad034a025626db3e69cceaf22f3e3', '172.105.247.100', 1671611485, '__ci_last_regenerate|i:1671611485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aef6ddd46d42e5ab9a39e5c81ec3bd1566b4a392', '172.105.247.100', 1671611485, '__ci_last_regenerate|i:1671611485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42175d92c0f189773049ad36498989e0a9fbe608', '172.105.247.100', 1671611485, '__ci_last_regenerate|i:1671611485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b518de565d45a798328c30409d7bbecc0e1d267', '172.105.247.100', 1671611485, '__ci_last_regenerate|i:1671611485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9706fb1156a8fad22830b3f0c069c23c0295a2', '172.105.247.100', 1671611485, '__ci_last_regenerate|i:1671611485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('516268c0488e011927fee08ba73c5dd842e4bcd6', '172.105.247.100', 1671611485, '__ci_last_regenerate|i:1671611485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ccb386b8589eff3c71311e1eef9d64d2b41400a', '172.105.247.100', 1671611486, '__ci_last_regenerate|i:1671611486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6939bd0ceae9f8dc9af897a3866668247ad6930b', '172.105.247.100', 1671611486, '__ci_last_regenerate|i:1671611486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02aff14d4859ba64ccc93e44000b6e66631fdba6', '172.105.247.100', 1671611486, '__ci_last_regenerate|i:1671611486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b7649d3c29d0527674e0221e87cc9d74b6abfe', '172.105.247.100', 1671611486, '__ci_last_regenerate|i:1671611486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798aec58056040504494772ac8b6b25213ca03b6', '172.105.247.100', 1671611486, '__ci_last_regenerate|i:1671611486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b4659ffc32ba5223eb07c2763a99580c58b124', '172.105.247.100', 1671611486, '__ci_last_regenerate|i:1671611486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc1264023e0a2d1dfa4ba299b09cbc0db0ca41f', '45.120.39.89', 1671612150, '__ci_last_regenerate|i:1671612150;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671537832\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671611503;register_id|s:3:\"286\";cash_in_hand|s:9:\"2120.0000\";register_open_time|s:19:\"2022-12-20 21:02:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d65ad9c9b2ffeb2fa2aab508a44435640663856', '31.222.203.2', 1671611613, '__ci_last_regenerate|i:1671611613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3fe174518c96fbcfc11dae2c4cdf6b5e4dbe0f', '31.222.203.2', 1671611613, '__ci_last_regenerate|i:1671611613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48845cc8522979819afec7423baa141397b8c96', '31.222.203.2', 1671611613, '__ci_last_regenerate|i:1671611613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef2dbe6ee5f1c18b1570f5c20e6f3126247f7503', '31.222.203.2', 1671611613, '__ci_last_regenerate|i:1671611613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcfec9c8e8377cf801398a44b8f799424891569', '31.222.203.2', 1671611613, '__ci_last_regenerate|i:1671611613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f18c178f85d7ba667e19f7e9de2e653429f43c7', '31.222.203.2', 1671611613, '__ci_last_regenerate|i:1671611613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e226b92017cfb9f3188a2868828003663e3bb7d', '45.120.39.89', 1671612153, '__ci_last_regenerate|i:1671612150;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671537832\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671612153;register_id|s:3:\"286\";cash_in_hand|s:9:\"2120.0000\";register_open_time|s:19:\"2022-12-20 21:02:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf61faa15211a397a56f617b6ac6ae2a722380c', '31.222.203.2', 1671613424, '__ci_last_regenerate|i:1671613424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafdeaa23d67aa219d3847a2f04b3491a499e72c', '31.222.203.2', 1671613424, '__ci_last_regenerate|i:1671613424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdca6a777d0937d2bf1da1a310e79ee11d630b48', '31.222.203.2', 1671613424, '__ci_last_regenerate|i:1671613424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25df5d87249820cdeea7f19cf00e85553bf42f1', '31.222.203.2', 1671613424, '__ci_last_regenerate|i:1671613424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7baf69b39d2fe747fdb410181472fda8447dcb', '31.222.203.2', 1671613424, '__ci_last_regenerate|i:1671613424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87321b5414dc28f643094c1e888f664e98973c22', '31.222.203.2', 1671613424, '__ci_last_regenerate|i:1671613424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f357f24eb55948c8b83fa8ddba224a8b817ab30', '31.222.203.2', 1671615215, '__ci_last_regenerate|i:1671615215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b5c5046f8a1423f267322315ee97ee19a7632a', '31.222.203.2', 1671615216, '__ci_last_regenerate|i:1671615216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65b0f475a96df875a02922b5ee16138346cb833', '31.222.203.2', 1671615216, '__ci_last_regenerate|i:1671615216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64e06ed41e93355d84b49864338322941256a05', '31.222.203.2', 1671615216, '__ci_last_regenerate|i:1671615216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a781874d943d8b61fc1a6cb144e668ed3d5f06', '31.222.203.2', 1671615216, '__ci_last_regenerate|i:1671615216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182caceecb3e25e4c43e2176d6549ee3b9cd9d92', '31.222.203.2', 1671615216, '__ci_last_regenerate|i:1671615216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8800eadad8395d2b54a355f7c338af97f4002e1c', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5d3c8aa291dcd76a643260630099df2ebccedf', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbec63a7a85f0639cb512f86f97582372210c97f', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5398d723bbc352df5fc366465c2c0ba1f2cf4c', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006277dfe53214157c2e0437fc1fdf89e5f507f2', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be1a44b19f9874ae30d9f89461f838534299278', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5674ae860ffffaa47fd05bab8c95ba9c3ad6162b', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f89f063c1b395829f07f04d2ac002fdc80064e73', '172.105.247.100', 1671616276, '__ci_last_regenerate|i:1671616276;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cde708f11a6d01a71aa7146ffd12b5d4c5811fe', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4305582ab14f1299969534ae3339333027a1d57f', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924fb5a83ae819a59ef23bd0689a9a79567b5c07', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3be496717aee1a7f1c1605b088cc98545b880a5', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1773ccf3394ebc9e9bdb30e50281f76d34d061f2', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed769a18178e03ea73f6b023885478877bb7402f', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d2f0078acb458ef224e9fbac9c461660dd56c4', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1cf9ff66791d89e6bcd861d4d108060215c13e', '172.105.247.100', 1671616277, '__ci_last_regenerate|i:1671616277;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98a63c86a7dbe6f50132891824ed3b31bd09dfc', '172.105.247.100', 1671616278, '__ci_last_regenerate|i:1671616278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e01b7ae0e28377ff5c87a584d3a3d054230e9be', '172.105.247.100', 1671616278, '__ci_last_regenerate|i:1671616278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bda1b3b8b8b489d831042804a405a121ab360c0', '172.105.247.100', 1671616278, '__ci_last_regenerate|i:1671616278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13eefae0d990039ff1a2c6ddd1c152448f7c18b6', '172.105.247.100', 1671616278, '__ci_last_regenerate|i:1671616278;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb926a7a21cd49fd07382e0689f2e11ba4f7037', '172.105.247.100', 1671616278, '__ci_last_regenerate|i:1671616278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda1e5671278462d0c12989e4f6f0d9c4d908018', '172.105.247.100', 1671616278, '__ci_last_regenerate|i:1671616278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366fe28452d1265bed6dfd870b2457e38d95d36c', '172.105.247.100', 1671616279, '__ci_last_regenerate|i:1671616279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8253b3d4ffc06e200b775de3fb851a79d7ba699c', '172.105.247.100', 1671616279, '__ci_last_regenerate|i:1671616279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b505a782bf91c2e62321a5431df551e48471fba', '31.222.203.2', 1671616930, '__ci_last_regenerate|i:1671616930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8fd990d4ed500f14eaf88c05ec373657349b02', '31.222.203.2', 1671616932, '__ci_last_regenerate|i:1671616932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3b3aabd71d5b0d4363b450f006ce18c578c247', '31.222.203.2', 1671616932, '__ci_last_regenerate|i:1671616932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70552a8e3ff15344d35ddd747d86017000d18c3', '31.222.203.2', 1671616932, '__ci_last_regenerate|i:1671616932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2ea3cea2bbbf40c30233ccf33004c6aaf9bde9', '31.222.203.2', 1671616932, '__ci_last_regenerate|i:1671616932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2290f086eff52867c12ec27466b2500d556208', '31.222.203.2', 1671616932, '__ci_last_regenerate|i:1671616932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f1e82671cb03864640b81ea77adb4fc17a2b73', '31.222.203.2', 1671618732, '__ci_last_regenerate|i:1671618732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ee412ddedf886768a3dbddf55e9cbab519777c', '31.222.203.2', 1671618732, '__ci_last_regenerate|i:1671618732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9767d4707ea3ed8155a052c5428ee0eaf2605da', '31.222.203.2', 1671618732, '__ci_last_regenerate|i:1671618732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1702d29ded7197c4dde7b87f52058c56f4e050bf', '31.222.203.2', 1671618732, '__ci_last_regenerate|i:1671618732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ba3dfc53423c62ef755485c5ba7c2441b6dbee', '31.222.203.2', 1671618732, '__ci_last_regenerate|i:1671618732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3f45e4d79c6f738692843ca6ab825dd6a1a7da', '31.222.203.2', 1671618732, '__ci_last_regenerate|i:1671618732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26ce7f9f1bd8f42de5e47e094748143c5c6d0b2', '172.105.247.100', 1671620481, '__ci_last_regenerate|i:1671620481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da789056c8c1d78df02a23a85947184034e22a7', '172.105.247.100', 1671620482, '__ci_last_regenerate|i:1671620482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a610671d3612366d2ef37ce95926a7917b3dff05', '172.105.247.100', 1671620482, '__ci_last_regenerate|i:1671620482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0880a9df001746a9595bde2a50c90c7ff41beca8', '172.105.247.100', 1671620482, '__ci_last_regenerate|i:1671620482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb3a3b2bba68d9553f807ad92e2ca262794f1ab', '172.105.247.100', 1671620482, '__ci_last_regenerate|i:1671620482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bfaf9a51a8ee8980be17d71f49dd05e76e0540', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4c3e70d04ebb39a149da6624339b7f7dae1a1f', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df0d9e129881caa80ad9fb93c9137d37d9f9e39', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c796cf7df663c8e8cdeffed1654e2575f8fc3cf3', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c1276797aaadf7b0fbd7bbe08c909d2fc9358a', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd855319674eafcdeb364a4cf2ba679c0ec0802', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0d6b718cd526ea6e2a46a829aac609021e99d6', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a3141956292b1e1c1225b94c9345eb31722fd1', '172.105.247.100', 1671620483, '__ci_last_regenerate|i:1671620483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc1e9c9e9812350e46960067cd37ef9e7533402', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2a3fabbb9405c44fe8d19153e90a69f85b3b3a', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a885d57a9395879c18af29def1aa1eeb83642b6e', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937559d7ab7bd2a247ad8e6781ed7be8e4325269', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ccddb28657d7a320ba72c521db96289679b826', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bcd167e94a7cb9c2a88fd9efa0505b65ae6af9d', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d9544f94ae1a95b1f92889c1f1c1de4c2b0a25', '172.105.247.100', 1671620484, '__ci_last_regenerate|i:1671620484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c62a03066a198c6ac47fed4777f39327d9cb67', '172.105.247.100', 1671620485, '__ci_last_regenerate|i:1671620484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5528bdf30fe650c836229c3881faa0f95bc3253d', '172.105.247.100', 1671620485, '__ci_last_regenerate|i:1671620485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378bb2965d9ebf6ea28733d9c43d91b22037132b', '172.105.247.100', 1671620485, '__ci_last_regenerate|i:1671620485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75bcb6b19d4cda319803018c34187da0af8ed384', '172.105.247.100', 1671620485, '__ci_last_regenerate|i:1671620485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687dbfcfa67388fba5fd62aa1770c770a65cfc39', '31.222.203.2', 1671620533, '__ci_last_regenerate|i:1671620533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67222f7ae7d064f6cccbfc5ece0369358fcd16d0', '31.222.203.2', 1671620533, '__ci_last_regenerate|i:1671620533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa06df943ed516525708b4772d147a7069b18d0', '31.222.203.2', 1671620533, '__ci_last_regenerate|i:1671620533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b0717ba385d3e8a678535186d051d6837c7fd4', '31.222.203.2', 1671620533, '__ci_last_regenerate|i:1671620533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221861a78358547cec481edaac5053b10c565dd7', '31.222.203.2', 1671620533, '__ci_last_regenerate|i:1671620533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5f9542a0000e7e1ce50854aa035c370f697462', '31.222.203.2', 1671620533, '__ci_last_regenerate|i:1671620533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a43abbf17ae98f297474c300682b7f0ef6ae34', '31.222.203.2', 1671622328, '__ci_last_regenerate|i:1671622328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d819dbdf7906096b2b379e8d7893ef6ff4b0a36c', '31.222.203.2', 1671622328, '__ci_last_regenerate|i:1671622328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e23425680c00edb88088d91c410c24a92188ba7c', '31.222.203.2', 1671622328, '__ci_last_regenerate|i:1671622328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22207dd8fd1cf3e5f140aaeae7efbfbbbaf257c4', '31.222.203.2', 1671622329, '__ci_last_regenerate|i:1671622329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae94725330bb03ee1f6426a44953ed1bf76d451', '31.222.203.2', 1671622329, '__ci_last_regenerate|i:1671622329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2666c064184951c7a73b26b393a7257c8ea245de', '31.222.203.2', 1671622329, '__ci_last_regenerate|i:1671622329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421686deb2eb481f4505a3ee84dc53bbe64e17b4', '31.222.203.2', 1671624130, '__ci_last_regenerate|i:1671624130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31556a3b1490cee097cdbccf5fb34ad3d2a01103', '31.222.203.2', 1671624130, '__ci_last_regenerate|i:1671624130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93fdf0075a2a5951a8780297df1ea756e3b48e4', '31.222.203.2', 1671624130, '__ci_last_regenerate|i:1671624130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('101fc0dce8acdff18abdb4e8a9862da5171654b5', '31.222.203.2', 1671624130, '__ci_last_regenerate|i:1671624130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0baa5136ab647126e796f9b5e35190429ca5670a', '31.222.203.2', 1671624130, '__ci_last_regenerate|i:1671624130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c4c3c02729d953b5d3e7551b67d2bc69e85bf0f', '31.222.203.2', 1671624130, '__ci_last_regenerate|i:1671624130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014701c6c91e202cd5a46eac758212f2d295e719', '172.105.247.100', 1671625876, '__ci_last_regenerate|i:1671625876;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33f3ce03a862d1338615340460e657b40139b5d', '172.105.247.100', 1671625877, '__ci_last_regenerate|i:1671625877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f460ff2381ab357a68de6d9875b3e526ba8de62b', '172.105.247.100', 1671625877, '__ci_last_regenerate|i:1671625877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3feeb8856a57ac03301ecea56f4a1c6795a76a00', '172.105.247.100', 1671625877, '__ci_last_regenerate|i:1671625877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5375dbef0f0b00de548cd0b0f2aa79cc75a4aca', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ede40530f8312a908d0a61d25d84ba63ac81ddb4', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82851c0b5fce9c906378eb021048d76e01a226cb', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1da87a5e3c6c868ba4182229c33599472d05d9', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1dedc66278ad735697072db9e5d6b9f1a24b91c', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c2b59a2d57f5060241113a879b32c58dbb27cd', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80aa4db6df5d3eb6cdd7598ae7abf7acf52a6836', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265c8ae62693f77406a9882fa85bf652613e189d', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b066b1b62d7e9d7eb7f8547aeb5d4861c2a245', '172.105.247.100', 1671625878, '__ci_last_regenerate|i:1671625878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c905e8d3b36df121ca9a74cb912e03d764b65ec1', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5690bd30bb91329986186a8983c70926358f6307', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec476d5334ad1ff4d243b2f0056b79977c7f792d', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150e48a12b5e899b84a95ba04f4ec9d1cc5bb2ad', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7858a52d458b84380fe6b4300966392b49ab73', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c088cb17883b51251a30c000323aaef79de7cc7', '172.105.247.100', 1671625879, '__ci_last_regenerate|i:1671625879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3e178676ff7edaf898169049323dde20a6128e', '172.105.247.100', 1671625880, '__ci_last_regenerate|i:1671625880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e07a62a37db4a96670e101ccaf2f9a18ee85c12', '172.105.247.100', 1671625880, '__ci_last_regenerate|i:1671625880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a26d2e6900a0a03f4ddbb834ec9397ba610c230', '172.105.247.100', 1671625880, '__ci_last_regenerate|i:1671625880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3406047ea5423da1bc94fad39c98f50fcfad9c76', '172.105.247.100', 1671625880, '__ci_last_regenerate|i:1671625880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d692a0946ff839b7c4d457f320364a1ea7f01465', '172.105.247.100', 1671625880, '__ci_last_regenerate|i:1671625880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2beefce3f90e8062784b53cd29e42c7da9ac4d2e', '31.222.203.2', 1671625935, '__ci_last_regenerate|i:1671625935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a4e95177b6cfd8e3781446f9c877c4309924ba9', '31.222.203.2', 1671625937, '__ci_last_regenerate|i:1671625937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85042fa3eefc2f1daed2e393e5b7b0f855119565', '31.222.203.2', 1671625937, '__ci_last_regenerate|i:1671625937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f70ec033a8ea357b84b5b296383fb777d1a8e5', '31.222.203.2', 1671625937, '__ci_last_regenerate|i:1671625937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e5c8d23d2166a27ec09a4384e24044a7ca403b', '31.222.203.2', 1671625937, '__ci_last_regenerate|i:1671625937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9a52ca964abff40ec5bb93d45215aef94c59ca', '31.222.203.2', 1671625937, '__ci_last_regenerate|i:1671625937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683db9ce68c86177845e43dd92df05db0da7a78f', '31.222.203.2', 1671627736, '__ci_last_regenerate|i:1671627736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef01097cbb0cc1de61f4716daff83f1c294ef27', '31.222.203.2', 1671627738, '__ci_last_regenerate|i:1671627738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438c8758e0c4201694b01f79390dc4d040a5cb9e', '31.222.203.2', 1671627738, '__ci_last_regenerate|i:1671627738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a574933a5e4c95d7f6674c012aaabda021ef60c4', '31.222.203.2', 1671627738, '__ci_last_regenerate|i:1671627738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a220b47f2dc57e46a1567fbf52de9fb1b19794f3', '31.222.203.2', 1671627738, '__ci_last_regenerate|i:1671627738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce57a61fcd32bb55119e8ab7a880449f9f2488a0', '31.222.203.2', 1671627738, '__ci_last_regenerate|i:1671627738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94dc75f8fe7970a7775cd20d3bdf9b1d31f6ab26', '31.222.203.2', 1671629530, '__ci_last_regenerate|i:1671629530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b095dac47fa00fe5eea1fbb2638cd852f7d489f4', '31.222.203.2', 1671629530, '__ci_last_regenerate|i:1671629530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55edd5a5889884c47ca1fc13773aaa530cc0a6a6', '31.222.203.2', 1671629530, '__ci_last_regenerate|i:1671629530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a3e9731717aa25083b38b4b1767d6baaa17a87', '31.222.203.2', 1671629532, '__ci_last_regenerate|i:1671629532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93bc933d6e4a95346c217bb23172841fd7b7237e', '31.222.203.2', 1671629532, '__ci_last_regenerate|i:1671629532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6aac8be68d7f301b5000bccaf7f4767ce100f14', '31.222.203.2', 1671629532, '__ci_last_regenerate|i:1671629532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c525f7b03edbfc85c046c0df8e52d741b13c857', '45.120.39.89', 1671630695, '__ci_last_regenerate|i:1671630695;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671596694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671630046;register_id|s:3:\"286\";cash_in_hand|s:9:\"2120.0000\";register_open_time|s:19:\"2022-12-20 21:02:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66527cb8571f116625f65e2848ce40c7c5f67fe', '45.120.39.89', 1671630748, '__ci_last_regenerate|i:1671630695;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671596694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671630748;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f11ff2ff257e28e316dae8024a002c1dc0adb25', '31.222.203.2', 1671631329, '__ci_last_regenerate|i:1671631329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7367e0f112190be9394724168ee4ff334b330c19', '31.222.203.2', 1671631329, '__ci_last_regenerate|i:1671631329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c576266f1846ee0ded85307da4d16656e733d24a', '31.222.203.2', 1671631329, '__ci_last_regenerate|i:1671631329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3122158c6d6af19651ad537f784520a164461437', '31.222.203.2', 1671631330, '__ci_last_regenerate|i:1671631330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7b74889ffb1be661f4c64b5f294b80f4540711', '31.222.203.2', 1671631330, '__ci_last_regenerate|i:1671631330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3ab567a31ce2bcb17d431f250fa44204ca32a08', '31.222.203.2', 1671631330, '__ci_last_regenerate|i:1671631330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b42620c6315d8650c8e7f7480b7563a805177f2', '172.105.247.100', 1671631883, '__ci_last_regenerate|i:1671631883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378ead43a1ecba2b4c1ff596ed8191c4972431a3', '172.105.247.100', 1671631884, '__ci_last_regenerate|i:1671631884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569e206295921658b6cbfc3b861d4de726633311', '172.105.247.100', 1671631884, '__ci_last_regenerate|i:1671631884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b04fac553f9bb5c8b54011792bbde6a0e95928', '172.105.247.100', 1671631884, '__ci_last_regenerate|i:1671631884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db2258e0b2670b2f38fba5259504587285c9b77', '172.105.247.100', 1671631884, '__ci_last_regenerate|i:1671631884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320c6d2a35046d0e4c4d7435a100bee83e248b58', '172.105.247.100', 1671631884, '__ci_last_regenerate|i:1671631884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f728f9a5638e958a4af3f1ea4554e8ecb72277', '172.105.247.100', 1671631884, '__ci_last_regenerate|i:1671631884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a53cfbe926a341084572a4fda00faf76fad958c2', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('013d3e5747a7a759679bbc2215b4456f0a333fc4', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9f224ac681be951c1e4c15395a88b645d5f140', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba32b1cd5e90e6eb7aa1f2c3197546d44ca224c5', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1994a4d6f65f4cd89f53fd9cdb2c8c5f4d208932', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eafa738313dc0fe2a176044203e7ead3881f677', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861b1e9f0c1b4c29db49917ca0802a437d91e714', '172.105.247.100', 1671631885, '__ci_last_regenerate|i:1671631885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998ec20a9707fdf82fc0511051fe90fc7d957999', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76732d4772b246030fc1a350538f49b9a9df2e3f', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0886af79c987410fb8be8291b447659e26835c', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71130c6cf518dec132b0a08517679dba4a998635', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38871d8f75aa0b803b312fed8d1dfa7b6dfd5a9e', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1f5a97a9ff5706268ebb746fa2a28277599798', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf14ecdbaaf19c799483b5a6d03cce7fb8679ab5', '172.105.247.100', 1671631886, '__ci_last_regenerate|i:1671631886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('308ae9da2465ddb350a2ec3f1917f1d5e2053c56', '172.105.247.100', 1671631887, '__ci_last_regenerate|i:1671631886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9489cf4041df9cdac2a684ed46e0ce1ad9e19892', '172.105.247.100', 1671631887, '__ci_last_regenerate|i:1671631887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1fa3e890d63adfeb42e981eda32f41395b2e5e9', '172.105.247.100', 1671631887, '__ci_last_regenerate|i:1671631887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ba18b1130cc4d9a620b68f6817060280eec882', '31.222.203.2', 1671633133, '__ci_last_regenerate|i:1671633133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1e848774306f0224c07ced41c98ff77c04ab731', '31.222.203.2', 1671633133, '__ci_last_regenerate|i:1671633133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5070744b821eeec351c9f23ae6712614eaf00cb', '31.222.203.2', 1671633133, '__ci_last_regenerate|i:1671633133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7874ff27eba256abccc64f0f87ca8f7f63011a7c', '31.222.203.2', 1671633135, '__ci_last_regenerate|i:1671633135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cdbe5db51756c819aaea775172e143f52000bfc', '31.222.203.2', 1671633135, '__ci_last_regenerate|i:1671633135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('610221cc291196230ee493d6b4db0dca290230c8', '31.222.203.2', 1671633135, '__ci_last_regenerate|i:1671633135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4d3846040da2191f325c6a27ac8878a0b9b65a', '31.222.203.2', 1671634937, '__ci_last_regenerate|i:1671634937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869bea25ecb34ad0c07f69c3fa08c88628c2b568', '31.222.203.2', 1671634937, '__ci_last_regenerate|i:1671634937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0a78c39e07fa2b9995292025c649cb64a1cf49', '31.222.203.2', 1671634937, '__ci_last_regenerate|i:1671634937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806b8c7dc7e38e7734ed92cf95d711068294d60c', '31.222.203.2', 1671634939, '__ci_last_regenerate|i:1671634939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aaafea1bf1f407e3cf69255fa124aa08bae8d72', '31.222.203.2', 1671634939, '__ci_last_regenerate|i:1671634939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3803f8fb838d733eec1864d01f9af95cc0c766b5', '31.222.203.2', 1671634939, '__ci_last_regenerate|i:1671634939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd9852114d02ff30b9941af8bcd4fa8f762e5e9', '31.222.203.2', 1671636734, '__ci_last_regenerate|i:1671636734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f1a36c1363212125e3ea5db463e7408c967221', '31.222.203.2', 1671636736, '__ci_last_regenerate|i:1671636736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ccbf8b8beeb30e8643c169272ebb69cda7c08a', '31.222.203.2', 1671636736, '__ci_last_regenerate|i:1671636736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171b1994fda8af3324f20e1d957c4cf97561bdcb', '31.222.203.2', 1671636736, '__ci_last_regenerate|i:1671636736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618f1f15b316b484c40184d8eaae4394f495174b', '31.222.203.2', 1671636736, '__ci_last_regenerate|i:1671636736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e577d1598f90c35ed831274cc05c449dc253cc9', '31.222.203.2', 1671636736, '__ci_last_regenerate|i:1671636736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7fdc67d8d4ff8fc4eef977bb216e042dca1c93', '172.105.247.100', 1671637879, '__ci_last_regenerate|i:1671637879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7970e65504acdf762c55bea8e80e3cd8272bdf1d', '172.105.247.100', 1671637880, '__ci_last_regenerate|i:1671637880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5681269be2a6225b6628bd1f161d3ec33aa940', '172.105.247.100', 1671637880, '__ci_last_regenerate|i:1671637880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6fac0dcaa313a3b6f07a45a06d79805ebc20a57', '172.105.247.100', 1671637880, '__ci_last_regenerate|i:1671637880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86f713dd9f17fd8a6ef600a569fb238a042082c', '172.105.247.100', 1671637880, '__ci_last_regenerate|i:1671637880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb4ce0b0d408cd6afbf12764fd870dcbc208bb3', '172.105.247.100', 1671637881, '__ci_last_regenerate|i:1671637881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55189a3bd7c80c57fd79db9a5faef951f1428d72', '172.105.247.100', 1671637881, '__ci_last_regenerate|i:1671637881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678742d41dc529c427ea23c26f684c524f7682bf', '172.105.247.100', 1671637881, '__ci_last_regenerate|i:1671637881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597474d81f4d4cfbabfa3ba61d8cc245675ba5ef', '172.105.247.100', 1671637881, '__ci_last_regenerate|i:1671637881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ec60eda6af42c7ae92beb53d69263c6f70a08c', '172.105.247.100', 1671637882, '__ci_last_regenerate|i:1671637882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782e82a8a09c89448a0898aa16c53cb95a6fa0a7', '172.105.247.100', 1671637882, '__ci_last_regenerate|i:1671637882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848ea3d54e0927d37d2811b67e5b188895ca491c', '172.105.247.100', 1671637882, '__ci_last_regenerate|i:1671637882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70112e51fc374b42f2fb17bf4c79e86363b8cb6a', '172.105.247.100', 1671637882, '__ci_last_regenerate|i:1671637882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d3d86366c0ba5dc5afd18ca61a565fb933de27', '172.105.247.100', 1671637882, '__ci_last_regenerate|i:1671637882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3359466d978ebd257295b1a22f3e88106a6b668', '172.105.247.100', 1671637882, '__ci_last_regenerate|i:1671637882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ba1c60d3dd56ccfd8c77dd6a6e51e43149845f', '172.105.247.100', 1671637883, '__ci_last_regenerate|i:1671637882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e0e8bfd32e09253310dec3c7a8f62a090053b2', '172.105.247.100', 1671637883, '__ci_last_regenerate|i:1671637883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401e47d2535d7031bd6c65d3c204b611ae6604d2', '172.105.247.100', 1671637883, '__ci_last_regenerate|i:1671637883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a23f49b03886f8ae8d9d22b30c69da997ffbdd', '172.105.247.100', 1671637883, '__ci_last_regenerate|i:1671637883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520ab66db27e66e49300305fdee38b67ce6dca17', '172.105.247.100', 1671637884, '__ci_last_regenerate|i:1671637884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0939616959af90fe74d0ddaf6c798c0b7e6a04ad', '172.105.247.100', 1671637884, '__ci_last_regenerate|i:1671637884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f81b1906a5784e5f1377b7c459150f00c39fb5', '172.105.247.100', 1671637884, '__ci_last_regenerate|i:1671637884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf0e8c4d7d14f97bade0f187f1f2e3b31174ac4e', '172.105.247.100', 1671637884, '__ci_last_regenerate|i:1671637884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c3a39a4bbe56d7f5fddf0a3ea0e9c71a1bf2eb', '172.105.247.100', 1671637885, '__ci_last_regenerate|i:1671637885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58856a3ed3312a8cfdae36b216507113c5164952', '31.222.203.2', 1671638532, '__ci_last_regenerate|i:1671638532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0153a22a577beb7c022b525981948dd11d1bd1', '31.222.203.2', 1671638532, '__ci_last_regenerate|i:1671638532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b80dcb86143820dee0451344039a9af7d98d007c', '31.222.203.2', 1671638532, '__ci_last_regenerate|i:1671638532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc79342b4bce083ad8504231373255839af0af1', '31.222.203.2', 1671638534, '__ci_last_regenerate|i:1671638534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53bae0d770e45f813ba0628ea2a08e60a23ad78', '31.222.203.2', 1671638534, '__ci_last_regenerate|i:1671638534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58f4d5703670d4f55d602e837246ec7a3cafb22', '31.222.203.2', 1671638534, '__ci_last_regenerate|i:1671638534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c096d35f9b1bb5912cae6d7c25b4a1fdbe837584', '31.222.203.2', 1671640331, '__ci_last_regenerate|i:1671640331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995d0ea9f80dc263206b00b8a5b878ec1afebe15', '31.222.203.2', 1671640331, '__ci_last_regenerate|i:1671640331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3739d708e99f206e3d3d137837dd7d11c37d08', '31.222.203.2', 1671640331, '__ci_last_regenerate|i:1671640331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11986614f20037df27577d5847c2aacf62c4c6af', '31.222.203.2', 1671640332, '__ci_last_regenerate|i:1671640332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f36cd7828cb489b879bee826456217bf6efa40', '31.222.203.2', 1671640332, '__ci_last_regenerate|i:1671640332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274718d43146739975dc35088825bb00e8d48d41', '31.222.203.2', 1671640332, '__ci_last_regenerate|i:1671640332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c9cfe189914983c810a8c3f3070212df6a8b72', '31.222.203.2', 1671642133, '__ci_last_regenerate|i:1671642133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14114db1d94b0abb6b62a6f2eb7fd85cfa55fe27', '31.222.203.2', 1671642135, '__ci_last_regenerate|i:1671642135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a68d419fe414b2aa05c7cdacbff54246a3b753', '31.222.203.2', 1671642135, '__ci_last_regenerate|i:1671642135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89bc21660b6b2a64cf6f27413f89dfd31b70c577', '31.222.203.2', 1671642135, '__ci_last_regenerate|i:1671642135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cff9fdd3279dde39ebfa645a63749a16e22d1b', '31.222.203.2', 1671642135, '__ci_last_regenerate|i:1671642135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146bec9f35b9082c1c4995ed9023869fa8ffb47c', '31.222.203.2', 1671642135, '__ci_last_regenerate|i:1671642135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca125460c5ad427af3a3c3d05e1189feb2f14b60', '31.222.203.2', 1671643938, '__ci_last_regenerate|i:1671643938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c62b37ddd28edb82f5871d86b143bb9c6bafa2', '31.222.203.2', 1671643939, '__ci_last_regenerate|i:1671643939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f540de79aa34896bb946980998a3a5f414ec4d7', '31.222.203.2', 1671643939, '__ci_last_regenerate|i:1671643939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430dfa0cb026c46dd59c918097d61ba62b1f649a', '31.222.203.2', 1671643939, '__ci_last_regenerate|i:1671643939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47d568b88d9b0e86aba875a0a355a739f8cda62', '31.222.203.2', 1671643939, '__ci_last_regenerate|i:1671643939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d739198eddd214c4a6aa268ca5d1e49c07f790a6', '31.222.203.2', 1671643939, '__ci_last_regenerate|i:1671643939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3762215eb5ac2ab7f7bde9f472c645f736d14192', '31.222.203.2', 1671645738, '__ci_last_regenerate|i:1671645738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c58a5aaacc88b56a66a901c914aebf6c1631f5', '31.222.203.2', 1671645738, '__ci_last_regenerate|i:1671645738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678412456390fa2c10fb0094c8c942281a726744', '31.222.203.2', 1671645738, '__ci_last_regenerate|i:1671645738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016f084a9a50602d4a401782069fc59431166fc7', '31.222.203.2', 1671645738, '__ci_last_regenerate|i:1671645738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e8418e28a343a3032160acc21be1ada18d7e4f', '31.222.203.2', 1671645738, '__ci_last_regenerate|i:1671645738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62a1a5d9bc206fa95c282f5a1e089af6946859d', '31.222.203.2', 1671645738, '__ci_last_regenerate|i:1671645738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037344576b222b06f7b070c8c8a08f3325bde64b', '31.222.203.2', 1671647549, '__ci_last_regenerate|i:1671647549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f905c97efa3f26e756d4528fa05c4fec8ff22b81', '31.222.203.2', 1671647549, '__ci_last_regenerate|i:1671647549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16c69dec7717a99937baf0435dfbeddc7016935', '31.222.203.2', 1671647549, '__ci_last_regenerate|i:1671647549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7325b4740e137c0686f14b76f9c948537603ec67', '31.222.203.2', 1671647549, '__ci_last_regenerate|i:1671647549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac0f519b62f5a4fe816d8441068a00eb64b3be3', '31.222.203.2', 1671647549, '__ci_last_regenerate|i:1671647549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ff294e0ef8c194f9620f0f60a6b8ecdcd666d9', '31.222.203.2', 1671647549, '__ci_last_regenerate|i:1671647549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a670bae598097c20cb4bfeab993db3c6ab6188', '31.222.203.2', 1671649335, '__ci_last_regenerate|i:1671649335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87cfc3934ea70305b4ec42e40b5e978d8109542', '31.222.203.2', 1671649336, '__ci_last_regenerate|i:1671649336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe6c394d3300024b4e950d7a65aaaf4033bf4ce', '31.222.203.2', 1671649336, '__ci_last_regenerate|i:1671649336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881135063be6768ffee61b51afac1e6fb495ebf4', '31.222.203.2', 1671649336, '__ci_last_regenerate|i:1671649336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d969ecadfe2c2000d00c27e2ff051de4addb3013', '31.222.203.2', 1671649336, '__ci_last_regenerate|i:1671649336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863711ae0ce41fed64c189722896e73d877cdd63', '31.222.203.2', 1671649336, '__ci_last_regenerate|i:1671649336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8bcbf29277f05fd27cf69718900a51fce9b54a', '31.222.203.2', 1671651139, '__ci_last_regenerate|i:1671651139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5be31e94e8570846c0dd46e2eb77c9f5e94e4a1', '31.222.203.2', 1671651139, '__ci_last_regenerate|i:1671651139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9532ed0a64fc3bb005880ad878635117fac61796', '31.222.203.2', 1671651139, '__ci_last_regenerate|i:1671651139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa0434b6aa372cdc08f3d9ebd0373411d5ceb51', '31.222.203.2', 1671651141, '__ci_last_regenerate|i:1671651141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba41d97a392d447c53012d74dc8e8d823bc3ecaa', '31.222.203.2', 1671651141, '__ci_last_regenerate|i:1671651141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4fe4364f7d6e4e40dca5b47556c31a0428fa79', '31.222.203.2', 1671651141, '__ci_last_regenerate|i:1671651141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d5687ffcdf07a70d4b7def04a225d7b05f0160', '31.222.203.2', 1671652938, '__ci_last_regenerate|i:1671652938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe9e819ceb0bb2ceae546d562771db05c1912995', '31.222.203.2', 1671652938, '__ci_last_regenerate|i:1671652938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342a31e8ef4f53c99b744a577ce5b6b149e35b9b', '31.222.203.2', 1671652938, '__ci_last_regenerate|i:1671652938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c44fd91ef3d98c90706635a98e0bd3b4371a36', '31.222.203.2', 1671652938, '__ci_last_regenerate|i:1671652938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f859ccf72ee892040b0336d2e6736127669dae38', '31.222.203.2', 1671652939, '__ci_last_regenerate|i:1671652938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110e512dcfd7fadb2967a1522e77ff6cedc0df62', '31.222.203.2', 1671652939, '__ci_last_regenerate|i:1671652939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0eca192b7d4b010ca041e40f9b199e76dc5afd0', '31.222.203.2', 1671654739, '__ci_last_regenerate|i:1671654739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b5b574608e449cd0e087e0a0db738fb1375a4f', '31.222.203.2', 1671654739, '__ci_last_regenerate|i:1671654739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a707761993ec1b316bd978e151c2b7b334557e1', '31.222.203.2', 1671654739, '__ci_last_regenerate|i:1671654739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee08d0e616b8022a5de89d58bf6e4a38213a8585', '31.222.203.2', 1671654741, '__ci_last_regenerate|i:1671654741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5b1bf5d2ff1cfb7d4abe2d6b841b79bce2c83b', '31.222.203.2', 1671654741, '__ci_last_regenerate|i:1671654741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501b95626cea5217cbd099c5b9604e3fca5d550f', '31.222.203.2', 1671654741, '__ci_last_regenerate|i:1671654741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4719b9c8fded322a0a083b9aaa3032aaa31f45', '31.222.203.2', 1671656539, '__ci_last_regenerate|i:1671656539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157e3256b6f45a778ae07ead9123b3ee60ff1328', '31.222.203.2', 1671656540, '__ci_last_regenerate|i:1671656540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7705291263b725a17c11148ba15cad95d439aaf1', '31.222.203.2', 1671656540, '__ci_last_regenerate|i:1671656540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44c39d309194dff8bd2b91047e1ac8179b26f5a', '31.222.203.2', 1671656540, '__ci_last_regenerate|i:1671656540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db05ca2e7a398cbb74c98feee0bbaa6b1304fbc', '31.222.203.2', 1671656540, '__ci_last_regenerate|i:1671656540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a590dbcd3c4dc0d83987ae0d68fa0fda73f2d10b', '31.222.203.2', 1671656540, '__ci_last_regenerate|i:1671656540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9b83db66b6efd57c2ae393568b36de305757dc', '31.222.203.2', 1671658339, '__ci_last_regenerate|i:1671658339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e24f262eabab96ae6fc3db4a734632fd696d094d', '31.222.203.2', 1671658339, '__ci_last_regenerate|i:1671658339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc3ce3a7f6182b1a2a4196eddef9ef686cec203', '31.222.203.2', 1671658339, '__ci_last_regenerate|i:1671658339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09e7f6cc83edc451ece9983a138b5fa139c2033', '31.222.203.2', 1671658341, '__ci_last_regenerate|i:1671658341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c24c07d9407dd5f71388fc33bbce8eea7d9c0d', '31.222.203.2', 1671658341, '__ci_last_regenerate|i:1671658341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f42bd682d594a4c0bb13fde85a02e15d17b6f17', '31.222.203.2', 1671658341, '__ci_last_regenerate|i:1671658341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b332f9cfd779d723a8e3c76e58824f7d6e57ad5', '31.222.203.2', 1671660140, '__ci_last_regenerate|i:1671660140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2268885e0854cd5a681fa1372839c8cf75a067', '31.222.203.2', 1671660140, '__ci_last_regenerate|i:1671660140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557270639b3c353e2743cee327a4c12d11ebef13', '31.222.203.2', 1671660140, '__ci_last_regenerate|i:1671660140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94dee07f6dafa5e0a6bceaba076c7cb596681ee', '31.222.203.2', 1671660140, '__ci_last_regenerate|i:1671660140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493987ce310a097b6a672f5c07adc7e360f4e75e', '31.222.203.2', 1671660140, '__ci_last_regenerate|i:1671660140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f2fe7b452d3d74bc74c3d0a61ea402b08cb55b', '31.222.203.2', 1671660140, '__ci_last_regenerate|i:1671660140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260beea4a94d8c219f85c501c82ef450a78c3400', '31.222.203.2', 1671661934, '__ci_last_regenerate|i:1671661934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d21bf5804b2557d4658b1672da6d90a3cbb5a86', '31.222.203.2', 1671661934, '__ci_last_regenerate|i:1671661934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735e6f7d50bb3493c2b1187f2e6fe2ddd1dbc022', '31.222.203.2', 1671661934, '__ci_last_regenerate|i:1671661934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a7363a05ed80a95cd35b52de07d58ac035427e', '31.222.203.2', 1671661934, '__ci_last_regenerate|i:1671661934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af16b55b2de2511150a225068ee419ece09686a', '31.222.203.2', 1671661934, '__ci_last_regenerate|i:1671661934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02eb0046adaa09c178e081c8bf1600dc1205bab', '31.222.203.2', 1671661934, '__ci_last_regenerate|i:1671661934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08278b060d4cc1c4f3692e5bd5389a9b68694089', '31.222.203.2', 1671663730, '__ci_last_regenerate|i:1671663730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537a11ed9dbd6685e512f1065161372aa7d88dd7', '31.222.203.2', 1671663732, '__ci_last_regenerate|i:1671663732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530d04d0a5a145783fd1a6213d1c34bcdf90cb90', '31.222.203.2', 1671663732, '__ci_last_regenerate|i:1671663732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f34d9307efec73c268c4d60f7fe74afac04f90', '31.222.203.2', 1671663732, '__ci_last_regenerate|i:1671663732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a41a0c90ad8b485dca5526ffb1cdb68446ea53f', '31.222.203.2', 1671663732, '__ci_last_regenerate|i:1671663732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f230d780bfa355b58ad03b6278de3e7788d1783', '31.222.203.2', 1671663732, '__ci_last_regenerate|i:1671663732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d97680f10defb11a1d0ffd9dbc9151337658405', '31.222.203.2', 1671665537, '__ci_last_regenerate|i:1671665537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb28a761f0aad6d5bbe049dce674f2a331535f3d', '31.222.203.2', 1671665537, '__ci_last_regenerate|i:1671665537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d6523e0771d6a41987353b1dc2f89f4fb56629a', '31.222.203.2', 1671665537, '__ci_last_regenerate|i:1671665537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5737db31331c60052ebc0d362af280d9f0225145', '31.222.203.2', 1671665538, '__ci_last_regenerate|i:1671665538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42867a876db886b7ba093a181a31155f6e4476a8', '31.222.203.2', 1671665538, '__ci_last_regenerate|i:1671665538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c266c85e7bb62694e591156aeeeee9d90ce3e788', '31.222.203.2', 1671665538, '__ci_last_regenerate|i:1671665538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a26e736e0c30bccfeb955b5671466f6d7a87de6', '31.222.203.2', 1671667338, '__ci_last_regenerate|i:1671667338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56e054beca44f27a9ec06216cd4818e4f854634', '31.222.203.2', 1671667338, '__ci_last_regenerate|i:1671667338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97289775995b74fc40b513c7da3c8676da619953', '31.222.203.2', 1671667338, '__ci_last_regenerate|i:1671667338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4773751649baa4e43a5ff674926c2862b4a4a334', '31.222.203.2', 1671667340, '__ci_last_regenerate|i:1671667340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238f49d4924905399ef6e6ea6281a5d169afe3d7', '31.222.203.2', 1671667340, '__ci_last_regenerate|i:1671667340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d42c3dff830aaa024ef94a336819fcf304f929', '31.222.203.2', 1671667340, '__ci_last_regenerate|i:1671667340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f65044c0fcaf2fb96512547674634fa6f6ad103', '31.222.203.2', 1671669134, '__ci_last_regenerate|i:1671669134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a1cd9677afbdcbfb995b219b83c31528578549', '31.222.203.2', 1671669134, '__ci_last_regenerate|i:1671669134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1cdc4795f751a350e5b5dcfe409491694c7702', '31.222.203.2', 1671669134, '__ci_last_regenerate|i:1671669134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fb33da26260f39a8f8f4fdce3ee73581d13a60', '31.222.203.2', 1671669135, '__ci_last_regenerate|i:1671669135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910277022a889b1354628f60f171a89b0c2a2b3e', '31.222.203.2', 1671669135, '__ci_last_regenerate|i:1671669135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b79d21a811afe3ff4608272b07bba47bdb7bfb8', '31.222.203.2', 1671669135, '__ci_last_regenerate|i:1671669135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e27673ffe5d97a80f0dc55324595328cfed6b1e7', '31.222.203.2', 1671670933, '__ci_last_regenerate|i:1671670933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3489a94c3d202b72b9b3b444c980b0b25f7f71', '31.222.203.2', 1671670933, '__ci_last_regenerate|i:1671670933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27205fc08a7e52439762868fba3a6d7dd13a0656', '31.222.203.2', 1671670933, '__ci_last_regenerate|i:1671670933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba62d21c7b9c32c5bb2fcf049b7b26f39a405b7f', '31.222.203.2', 1671670934, '__ci_last_regenerate|i:1671670934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491cfb7716eea83e6f0b537ff42c6ff844ebbf42', '31.222.203.2', 1671670934, '__ci_last_regenerate|i:1671670934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bef3965e5e4216c29bd73cd340cc6cd58e4903a', '31.222.203.2', 1671670934, '__ci_last_regenerate|i:1671670934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2476971b06eb7482b185f78d76f1591d368cc39', '31.222.203.2', 1671672732, '__ci_last_regenerate|i:1671672732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05bed11fd6dc37e2dc5d777eaed1d66fbd3e73cd', '31.222.203.2', 1671672732, '__ci_last_regenerate|i:1671672732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd4d22d8d032ec472a9ac4f5ecc2e36a5ab1d584', '31.222.203.2', 1671672732, '__ci_last_regenerate|i:1671672732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e924d75f110db024a57ebd000f685a70ad7f1cfc', '31.222.203.2', 1671672733, '__ci_last_regenerate|i:1671672733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac76ad1edb9a1636d5f0337d65b62ae003337ce', '31.222.203.2', 1671672733, '__ci_last_regenerate|i:1671672733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c31ee464580a3541c024104f7b8275c2746c646', '31.222.203.2', 1671672733, '__ci_last_regenerate|i:1671672733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3d732047c1473bc90b8cbbac1f8ce47e8b9242', '31.222.203.2', 1671674533, '__ci_last_regenerate|i:1671674533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c32daaeeaae8a2b0db99f0ea11c8136e6a509c', '31.222.203.2', 1671674535, '__ci_last_regenerate|i:1671674535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca48870d681e7fe3408825587a1c0e4284ee7a6', '31.222.203.2', 1671674535, '__ci_last_regenerate|i:1671674535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d60e981453ab8744cac7df91e6a885b558cccb', '31.222.203.2', 1671674535, '__ci_last_regenerate|i:1671674535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbe3ea76a1cdf7cc348c711b97bbfb7aa25e4b6', '31.222.203.2', 1671674535, '__ci_last_regenerate|i:1671674535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8c7d36ab197cd3fc49a0f0d6e7eae843f82f52', '31.222.203.2', 1671674535, '__ci_last_regenerate|i:1671674535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d0e05026367330ee35f27853b5f03143287210e', '31.222.203.2', 1671676342, '__ci_last_regenerate|i:1671676342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe7d15f6e584c081b0b270e3cc981a245bcbd45', '31.222.203.2', 1671676342, '__ci_last_regenerate|i:1671676342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975373306a9e652921c6c7d578ec84c8f717a286', '31.222.203.2', 1671676342, '__ci_last_regenerate|i:1671676342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e198253ea269ce4542aba8d9dfd80227dc2d52', '31.222.203.2', 1671676342, '__ci_last_regenerate|i:1671676342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5b5dc3be6c9d5ca39b71dccbe27dfeb4935892', '31.222.203.2', 1671676342, '__ci_last_regenerate|i:1671676342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dfe59d1f82911ef659a4342fc64e62f1bf06774', '31.222.203.2', 1671676342, '__ci_last_regenerate|i:1671676342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756aed9c50a1a9880e7bc25131dc24ff59e8da83', '31.222.203.2', 1671678139, '__ci_last_regenerate|i:1671678139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3667302c6e985458626d93464946d766497e629', '31.222.203.2', 1671678139, '__ci_last_regenerate|i:1671678139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176d2482a89966e2b20f59f0ff1b3bcbee000496', '31.222.203.2', 1671678139, '__ci_last_regenerate|i:1671678139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55530ff2ae4ac115913b73129b6eecd18ebcc439', '31.222.203.2', 1671678139, '__ci_last_regenerate|i:1671678139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407365b011ea156d6c76bb7a9d0d5092d1e41d97', '31.222.203.2', 1671678139, '__ci_last_regenerate|i:1671678139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae09c3f1882bd6d95f3db8545308d1cfa789781', '31.222.203.2', 1671678139, '__ci_last_regenerate|i:1671678139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efb9fddcc60ade111612bf84db33bcfe77255d2', '31.222.203.2', 1671679937, '__ci_last_regenerate|i:1671679937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa104f321528aba96b47e112d507de0e6e0bab0', '31.222.203.2', 1671679937, '__ci_last_regenerate|i:1671679937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('730871ccae2396b998a0d198372c80318cf324b6', '31.222.203.2', 1671679937, '__ci_last_regenerate|i:1671679937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b450b1a9c9def56e0e7626b57394c0b04c579e', '31.222.203.2', 1671679937, '__ci_last_regenerate|i:1671679937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49713964f632eb62abc8c1b2900c025e913a3602', '31.222.203.2', 1671679937, '__ci_last_regenerate|i:1671679937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e541a9d7f32104119322f70197ebf36b42de11', '31.222.203.2', 1671679937, '__ci_last_regenerate|i:1671679937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acec9f3deaa3740bf9202726f55d9de95c02166', '31.222.203.2', 1671681732, '__ci_last_regenerate|i:1671681732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc66c81f29db847624170f86de9abe8e78b45044', '31.222.203.2', 1671681733, '__ci_last_regenerate|i:1671681733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d43e60e2c7e1b182445857a8248552933410be1', '31.222.203.2', 1671681733, '__ci_last_regenerate|i:1671681733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc8cffe1491359046c55e9210dea1cd24bedb49', '31.222.203.2', 1671681733, '__ci_last_regenerate|i:1671681733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92f4dcfe7d3dec82ed9533a035c2604a8708183', '31.222.203.2', 1671681733, '__ci_last_regenerate|i:1671681733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f135bf78a7524c95b0faed5d1a85ef40dddb473c', '31.222.203.2', 1671681733, '__ci_last_regenerate|i:1671681733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d55c34ae799336054e28cd04de6526be0101c1', '31.222.203.2', 1671683530, '__ci_last_regenerate|i:1671683530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc98795003381067673cd5d2afceb235811f13f', '31.222.203.2', 1671683530, '__ci_last_regenerate|i:1671683530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ca8bfd67dfebd8af0004bd23b3a117e4219c72', '31.222.203.2', 1671683530, '__ci_last_regenerate|i:1671683530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de19dec0ca97613cdc9cda99187aba5dcbcad790', '31.222.203.2', 1671683532, '__ci_last_regenerate|i:1671683532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4cc9e7147f621038fc050da534023cf16b0dd00', '31.222.203.2', 1671683532, '__ci_last_regenerate|i:1671683532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b26d70341b97eb325c1c9e225d6a6388d9fdbc', '31.222.203.2', 1671683532, '__ci_last_regenerate|i:1671683532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7acf4e5f7df4430eac0416d4f21ee9211b84ec40', '45.120.39.89', 1671688349, '__ci_last_regenerate|i:1671688349;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671630032\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671688345;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e7652f39e52ade57e6a3834d9400b1caed364e', '31.222.203.2', 1671685326, '__ci_last_regenerate|i:1671685326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55945a159b93dd6d08bb3edec226bdb800f5cdf', '31.222.203.2', 1671685326, '__ci_last_regenerate|i:1671685326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcee49f5cb1eaeba5de6c7de917079a60d642a50', '31.222.203.2', 1671685327, '__ci_last_regenerate|i:1671685326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb503460ecc4ee2b511b5df08581159d000ab54', '31.222.203.2', 1671685328, '__ci_last_regenerate|i:1671685328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a231b554c32f4c5b3aa60ca1707f8c7de555c7a6', '31.222.203.2', 1671685328, '__ci_last_regenerate|i:1671685328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3d47adec76efb0bc5fd08e255ab949a66314d0', '31.222.203.2', 1671685328, '__ci_last_regenerate|i:1671685328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60249ff801294f2a6eabba6f346b5e313662503d', '31.222.203.2', 1671687132, '__ci_last_regenerate|i:1671687132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2ee722f3a3560471ab2b080bf5785deae93f09', '31.222.203.2', 1671687134, '__ci_last_regenerate|i:1671687134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4602bc4b7ef1faf20f1b04c97bf6677f9772a228', '31.222.203.2', 1671687134, '__ci_last_regenerate|i:1671687134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6501245c1c18fa9d73df8bc7f40598f5a13a7a0b', '31.222.203.2', 1671687134, '__ci_last_regenerate|i:1671687134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dfb9eb4612d6810cb4eb69289c9bc011c6f1a5f', '31.222.203.2', 1671687134, '__ci_last_regenerate|i:1671687134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de07f68f5dac86be45f034ea1d0db90253c2f5b1', '31.222.203.2', 1671687134, '__ci_last_regenerate|i:1671687134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46d6fc3f0883f7490687b716abf3370767a5ab4', '45.120.39.89', 1671689366, '__ci_last_regenerate|i:1671689366;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671630032\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671688349;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e80d7055b586569a26559baee62ee1eeac5ce2', '31.222.203.2', 1671688934, '__ci_last_regenerate|i:1671688934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0772dbe2c8d1656769f05d4a2c6781456f442d10', '31.222.203.2', 1671688934, '__ci_last_regenerate|i:1671688934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25838149b0a0bac600d952a4cc68c43f5b4f432', '31.222.203.2', 1671688934, '__ci_last_regenerate|i:1671688934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b918e0157755ad25319a43f2eef6adf9d138843', '31.222.203.2', 1671688934, '__ci_last_regenerate|i:1671688934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36845f6762b9621b576263388a8ba16fe090617', '31.222.203.2', 1671688934, '__ci_last_regenerate|i:1671688934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98a1f226e57a0fc231ddf2266e86c73b4bcdeea', '31.222.203.2', 1671688934, '__ci_last_regenerate|i:1671688934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95082ef12e058ef6ed512397d91bae44c3a6928e', '45.120.39.89', 1671689410, '__ci_last_regenerate|i:1671689366;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671630032\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671689407;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a2d11b8ffc41e7e9853b1ba9141a6a8ad6b9040', '31.222.203.2', 1671690736, '__ci_last_regenerate|i:1671690736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f78e57853f13d60aa298b99787615f5d8e5528', '31.222.203.2', 1671690736, '__ci_last_regenerate|i:1671690736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982da2e0c3c7ef261693e54067c0153f4db10d06', '31.222.203.2', 1671690736, '__ci_last_regenerate|i:1671690736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66c3c57eb309fa4ad89e3c7a73405a1282dbecd', '31.222.203.2', 1671690736, '__ci_last_regenerate|i:1671690736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da7944f28a52af6105ea64ed8c47402f6f1bc0b', '31.222.203.2', 1671690736, '__ci_last_regenerate|i:1671690736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195a6cb6242b3fda911d7244c8d08412999c5a67', '31.222.203.2', 1671690736, '__ci_last_regenerate|i:1671690736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ae20d13500ee80b8dca0fd462cfaf6b740a360', '31.222.203.2', 1671692535, '__ci_last_regenerate|i:1671692535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab0515adcacb4ff310ce6cf6ac1b60999d6998e', '31.222.203.2', 1671692535, '__ci_last_regenerate|i:1671692535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b485c0a2da63f75bfe309b0ced81f2bea39c7edf', '31.222.203.2', 1671692535, '__ci_last_regenerate|i:1671692535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db69a3f06859d7c48e1e966ae71b15e3f464c60f', '31.222.203.2', 1671692537, '__ci_last_regenerate|i:1671692537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0445ca3ddfa698d6fb91a7577664525ff0c6e049', '31.222.203.2', 1671692537, '__ci_last_regenerate|i:1671692537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7f9918ac23aa4f760e610bf89d98a32a634b60', '31.222.203.2', 1671692537, '__ci_last_regenerate|i:1671692537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559cf5db7a19028668e6e10fd5c2d664bad24a5a', '31.222.203.2', 1671694328, '__ci_last_regenerate|i:1671694328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe475f74d21cd2375a14bf2c29ad324a3178c227', '31.222.203.2', 1671694330, '__ci_last_regenerate|i:1671694330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2797d0abd4ed5eff312404f1b3a771a8ef5dc8a', '31.222.203.2', 1671694330, '__ci_last_regenerate|i:1671694330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5002ecd3abec81c03dafaa35a14661ee394f3ab', '31.222.203.2', 1671694330, '__ci_last_regenerate|i:1671694330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9f6a9558de1d60a6ef32ae61d370c3b41e7c07', '31.222.203.2', 1671694330, '__ci_last_regenerate|i:1671694330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa708c552e8b4502e7963cbee94efe49013a9adf', '31.222.203.2', 1671694330, '__ci_last_regenerate|i:1671694330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c9e78783d5a0c247a61272dede5b7416dafeba', '31.222.203.2', 1671696136, '__ci_last_regenerate|i:1671696136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1af9c572328aa4020391400192ad55fbd283140', '31.222.203.2', 1671696136, '__ci_last_regenerate|i:1671696136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63384d6bc1c444d6f3a48793869c3f85804c2b9', '31.222.203.2', 1671696136, '__ci_last_regenerate|i:1671696136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b031d2a0fb8f37b87816c9b1db320d836727a2', '31.222.203.2', 1671696136, '__ci_last_regenerate|i:1671696136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9985440a27ab55fa068fb5ad49cec1d6d90cfb', '31.222.203.2', 1671696136, '__ci_last_regenerate|i:1671696136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0bcaa9c616761721f587b3a2213352fe5aba58', '31.222.203.2', 1671696136, '__ci_last_regenerate|i:1671696136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bcda4fd86b041ec5c318ef2ed4030fc89625c47', '31.222.203.2', 1671697931, '__ci_last_regenerate|i:1671697931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a855244c9748d440a512de663f8c2baf3f5889f0', '31.222.203.2', 1671697931, '__ci_last_regenerate|i:1671697931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e535119c6b00be21d14015853c2df201b69087', '31.222.203.2', 1671697931, '__ci_last_regenerate|i:1671697931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07879d016fcec8c81bbe2e9a9e8b02ddd53d128e', '31.222.203.2', 1671697931, '__ci_last_regenerate|i:1671697931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c758d06c0728b843e9cd5a4e8b66fcd0f912ad03', '31.222.203.2', 1671697931, '__ci_last_regenerate|i:1671697931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76c0fb7d5d7d575de5a6a082ed5a4a8963e541f', '31.222.203.2', 1671697931, '__ci_last_regenerate|i:1671697931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af831f48c38bffb427ba4c0a0d44011b3077bcce', '31.222.203.2', 1671699726, '__ci_last_regenerate|i:1671699726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f902b83b2ba93839122bab08e183a47db00ba1', '31.222.203.2', 1671699726, '__ci_last_regenerate|i:1671699726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('945e242a5fea5f6e395a272fd74fa21c1ea580c2', '31.222.203.2', 1671699726, '__ci_last_regenerate|i:1671699726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47b045d3e53cf228e0842181772785cbf9ed871', '31.222.203.2', 1671699726, '__ci_last_regenerate|i:1671699726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c69f279ec8b93d8647b090f09cdc3c83a94bb1', '31.222.203.2', 1671699726, '__ci_last_regenerate|i:1671699726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a10923b10d6223d5ec0cf7a47dd741e0cb6dc81', '31.222.203.2', 1671699726, '__ci_last_regenerate|i:1671699726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde2cbcdd0abdfa0ee310151f19c5c5aeecdd116', '31.222.203.2', 1671701535, '__ci_last_regenerate|i:1671701535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff247ff717ef55c9fdd0edb67817bc1e5149bf64', '31.222.203.2', 1671701535, '__ci_last_regenerate|i:1671701535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6264a21022736606ffc52b0d006c4ccff68f4291', '31.222.203.2', 1671701535, '__ci_last_regenerate|i:1671701535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448dde7c7d88a75896fd0b085a1bbd0c79753e79', '31.222.203.2', 1671701537, '__ci_last_regenerate|i:1671701537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3194d50024a7c6470c58b1b0d3cff68b20623c1b', '31.222.203.2', 1671701537, '__ci_last_regenerate|i:1671701537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd41481486fc493086198a653cd29a2bedaca7dc', '31.222.203.2', 1671701537, '__ci_last_regenerate|i:1671701537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e0d88b0e6bb9e0a5c78aa911a59884f500ad52', '31.222.203.2', 1671703332, '__ci_last_regenerate|i:1671703332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd2279d435387ca394ae3456ee6d739844df180', '31.222.203.2', 1671703332, '__ci_last_regenerate|i:1671703332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ed7eaa29b02878d85d4c66d9a2e3ef05e1fa30', '31.222.203.2', 1671703332, '__ci_last_regenerate|i:1671703332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e899154862fce972fdc62b47388c5e53e05369ec', '31.222.203.2', 1671703334, '__ci_last_regenerate|i:1671703334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a415fbd2f613419561f99c0d83535573daa1fde5', '31.222.203.2', 1671703334, '__ci_last_regenerate|i:1671703334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8dd7b34078b9bf4247651e5e6d95e4a9fc72ef6', '31.222.203.2', 1671703334, '__ci_last_regenerate|i:1671703334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae3ed8c43cf9e7dce5837a8f45f33765273c878', '172.105.247.100', 1671704484, '__ci_last_regenerate|i:1671704484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('262bb51531cd436542ec03f24249359a88fb2ed9', '172.105.247.100', 1671704486, '__ci_last_regenerate|i:1671704485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb49e2d5253e5f3e7307f44ceb92c404d091a1e', '172.105.247.100', 1671704486, '__ci_last_regenerate|i:1671704486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad81481f51baa20e82b4585a2d584dac75da5c2', '172.105.247.100', 1671704486, '__ci_last_regenerate|i:1671704486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508a7bfc3d5c3f429ef6e37d16d9d4d9234f77af', '172.105.247.100', 1671704486, '__ci_last_regenerate|i:1671704486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c504b179e00ad262b4b9241680695053c797dd', '172.105.247.100', 1671704486, '__ci_last_regenerate|i:1671704486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427e27acdcbe0420ae115cac25c19ace8bb55c3f', '172.105.247.100', 1671704486, '__ci_last_regenerate|i:1671704486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c280a930dfdaa059061eb7ebc4618208d3a0a9c', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab96e020b4b9b41b32d15669978cf9404adcef3f', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917d4c4f53153f557befc69e449c42c79c2a751f', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9db38142fb52e463caac3268d9de55fb762bf82', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c94937eb242e7ddd4cdcf7d3284070ecf13089', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54aae1887620244c2aae0ed57cf26377136d8b2', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c72e138afe41661200081cdfc517ea48244ed9', '172.105.247.100', 1671704487, '__ci_last_regenerate|i:1671704487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6005f51397fc50bba08effe1bcefcf2346a54799', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d35acb28d79c5d5d52367514eda148489644eaa', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3084f56121a45149221da3b49e1156a8857a4204', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0281d73d334416c9ad920c4793eb0ae6dbdf825b', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c0da7244e9c91a6276e7eb83c847b19c24949a', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c787adcd4ccdb0c3595fa4fdab5c56f26c0ac0bf', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a279fee7203dfdafb50a100c93704a6c0f1bfa', '172.105.247.100', 1671704488, '__ci_last_regenerate|i:1671704488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eaecf57465a18b0c3bddd1451ce434fa433d9f0', '172.105.247.100', 1671704489, '__ci_last_regenerate|i:1671704489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44295333ae374272e61197193e91c839c19283fb', '172.105.247.100', 1671704489, '__ci_last_regenerate|i:1671704489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d1bdbfbafc0d525c52a137452d057cb5757e8e', '172.105.247.100', 1671704489, '__ci_last_regenerate|i:1671704489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3555b45b0d2634c99f0884b25d6111db07a55a', '45.120.39.89', 1671704756, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d932af4456e4157646dde5563c0d8e5d4b6d82a1', '45.120.39.89', 1671709163, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671709163;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671704949;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59457efc66cd32e65206f761a12c0bcec47aa6f9', '31.222.203.2', 1671705133, '__ci_last_regenerate|i:1671705133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df877974f245be9280ff959a3a87b0fc0c701e8', '31.222.203.2', 1671705133, '__ci_last_regenerate|i:1671705133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b13244c165e517db097d9c54b710904ebed3d0', '31.222.203.2', 1671705133, '__ci_last_regenerate|i:1671705133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e19c4bfd62cffb2ebdfc2f9d174e2297bbfd521', '31.222.203.2', 1671705134, '__ci_last_regenerate|i:1671705134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c661c919ab2ce3c1378d7a5c1244f13f31963c', '31.222.203.2', 1671705134, '__ci_last_regenerate|i:1671705134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b55ab807e86fc0364a56a4da44b758baa57c7f', '31.222.203.2', 1671705134, '__ci_last_regenerate|i:1671705134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1d576ecfd421ef9056050b084093d608ee8462', '31.222.203.2', 1671706933, '__ci_last_regenerate|i:1671706933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90a7ac96c6e683a9222fdb3c9724514b0b3441e', '31.222.203.2', 1671706933, '__ci_last_regenerate|i:1671706933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c3ebe8fc37605d4c3f01d79571cdf603d98622', '31.222.203.2', 1671706933, '__ci_last_regenerate|i:1671706933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a146ed08090f7256a41ce2b92c0f50a8a993fdc', '31.222.203.2', 1671706933, '__ci_last_regenerate|i:1671706933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7219f44904041736446e322f6057d9353fa9f2b5', '31.222.203.2', 1671706933, '__ci_last_regenerate|i:1671706933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6d49bf8b4ffb0df65a679ed0bb9627f853f346', '31.222.203.2', 1671706933, '__ci_last_regenerate|i:1671706933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef4663c6fe33f9810e4f6674da53520e9814444', '172.105.247.100', 1671708684, '__ci_last_regenerate|i:1671708684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4c69d7d15c79387ada82276ff2501969df9384', '172.105.247.100', 1671708684, '__ci_last_regenerate|i:1671708684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b170722581338b66fc663545afa414755efad3c', '172.105.247.100', 1671708685, '__ci_last_regenerate|i:1671708685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054f45d1a15e2ed618db38f45529ab2ac9d13ceb', '172.105.247.100', 1671708685, '__ci_last_regenerate|i:1671708685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d2e13c969ecb06ad7b653f0f518e8dfa4ba281', '172.105.247.100', 1671708685, '__ci_last_regenerate|i:1671708685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9e606f35902a7017584c43a86904aec5b7d215', '172.105.247.100', 1671708685, '__ci_last_regenerate|i:1671708685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6ae4e60e8bc5bc41034d3ff540bedf9c9d7915', '172.105.247.100', 1671708686, '__ci_last_regenerate|i:1671708686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee3f4f4c2b054f3f9d64f4cafbc983cf4017d8b', '172.105.247.100', 1671708686, '__ci_last_regenerate|i:1671708686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b380a5d269855362679f20ab4df125df8e0accff', '172.105.247.100', 1671708686, '__ci_last_regenerate|i:1671708686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fdebb948053588b2f1763907da4fde4d6bbd0e8', '172.105.247.100', 1671708686, '__ci_last_regenerate|i:1671708686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31dec43b554f85a3ab1fb5157bb7fd859cb6dee8', '172.105.247.100', 1671708686, '__ci_last_regenerate|i:1671708686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b94496c55d5e507be898b7da2e357d39f1c57c1', '172.105.247.100', 1671708687, '__ci_last_regenerate|i:1671708686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f526d0962673e903cd8570f9f90ae84db3aafd', '172.105.247.100', 1671708687, '__ci_last_regenerate|i:1671708687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a5484e07ef1c9fcf426d1812c9422ba6f0b769', '172.105.247.100', 1671708687, '__ci_last_regenerate|i:1671708687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d95494605c05722ad6d748e6bfedcd944a0f92', '172.105.247.100', 1671708687, '__ci_last_regenerate|i:1671708687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579284539eee54fd1b0e0bf354d4f284132dc806', '172.105.247.100', 1671708687, '__ci_last_regenerate|i:1671708687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfea8110891b62a35837f9622cb60c246dfee38a', '172.105.247.100', 1671708687, '__ci_last_regenerate|i:1671708687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3f6c4d374c1bfab1835e688be9ad1e73ff7f2f', '172.105.247.100', 1671708688, '__ci_last_regenerate|i:1671708687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf23f9a4229e903fe0959a23cd8d493985e0063', '172.105.247.100', 1671708688, '__ci_last_regenerate|i:1671708688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c9b6383b1c01cc98ac6cfa5b6599abbe647747c', '172.105.247.100', 1671708688, '__ci_last_regenerate|i:1671708688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ee3992ac2bfc2ad79b68f2a6d7385cb42decc5', '172.105.247.100', 1671708688, '__ci_last_regenerate|i:1671708688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6a212b3ba3cb17a4ba4cf4d9255593b5c6a875', '172.105.247.100', 1671708689, '__ci_last_regenerate|i:1671708689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5cb67c23eb0d9c0a8218075507d7f38b3ee19a9', '172.105.247.100', 1671708689, '__ci_last_regenerate|i:1671708689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a53a3e3c9b8c0ec89449eb42d87c146421f6160', '172.105.247.100', 1671708689, '__ci_last_regenerate|i:1671708689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aef54a1320cbfd4860fadd658833d889ba89b3c', '31.222.203.2', 1671708729, '__ci_last_regenerate|i:1671708729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e24645ac28e523e70a3b758888e625baceacea62', '31.222.203.2', 1671708729, '__ci_last_regenerate|i:1671708729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a45b8df01d05d6a35f13fa4737b0dfc21cb0969e', '31.222.203.2', 1671708729, '__ci_last_regenerate|i:1671708729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41aceddf5ade1974ff63c0abce0872606b5ad2da', '31.222.203.2', 1671708729, '__ci_last_regenerate|i:1671708729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdccf41b3f48675fa7f4666932951ca21d4dbb43', '31.222.203.2', 1671708729, '__ci_last_regenerate|i:1671708729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f5b71bbed1d3581fd78237451a6c1ac49b76f7', '31.222.203.2', 1671708729, '__ci_last_regenerate|i:1671708729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539ef900ad0633006e2cd3082bf60957818adee1', '45.120.39.89', 1671714912, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671714912;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671709280;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ee400f1302c704042124dff78cfca6d6507a4b', '31.222.203.2', 1671710531, '__ci_last_regenerate|i:1671710531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f76fd520d423723a68f1f4c2167c3473927c689', '31.222.203.2', 1671710531, '__ci_last_regenerate|i:1671710531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260cee8cb11bf1426111aa1a3d5686c263f2538e', '31.222.203.2', 1671710531, '__ci_last_regenerate|i:1671710531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d00d31c178fe662474befe75ff5194d21fe1704', '31.222.203.2', 1671710531, '__ci_last_regenerate|i:1671710531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac8b4fbf376c93a1043e4065c29ed8481e92d29', '31.222.203.2', 1671710531, '__ci_last_regenerate|i:1671710531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26480c167ff4e43be235650bcf60875ed114e50', '31.222.203.2', 1671710531, '__ci_last_regenerate|i:1671710531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381d31c16ece26f46bbace0d8de6928a91668aef', '31.222.203.2', 1671712333, '__ci_last_regenerate|i:1671712333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aaf45ae241d67b309ef30262f0edf70660f6e0e', '31.222.203.2', 1671712333, '__ci_last_regenerate|i:1671712333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde9c1aa4771aade28172ab3480bdfce46836ded', '31.222.203.2', 1671712333, '__ci_last_regenerate|i:1671712333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb64505c9b9fbaba0095cc082f507eb32ca97342', '31.222.203.2', 1671712334, '__ci_last_regenerate|i:1671712334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7680a2399ee108218cb04945205ed5c766e751f', '31.222.203.2', 1671712334, '__ci_last_regenerate|i:1671712334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c3907280090cf1e32b797e664090e6f528382f', '31.222.203.2', 1671712334, '__ci_last_regenerate|i:1671712334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079fc4fc50b7c29f93e3b3020186f35925f5bb0a', '172.105.247.100', 1671712889, '__ci_last_regenerate|i:1671712889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8137ce408fd5a3f7a14fdbc578b2a2056d7b78', '172.105.247.100', 1671712889, '__ci_last_regenerate|i:1671712889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa89b874cb9abdeb5a42979b7e479b8eb3dfdef', '172.105.247.100', 1671712889, '__ci_last_regenerate|i:1671712889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38cf9c2e098c1e36df522aea8f4443d695054be', '172.105.247.100', 1671712890, '__ci_last_regenerate|i:1671712890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342b7ad7460b9c2c3b738f86f354276c65b0664e', '172.105.247.100', 1671712890, '__ci_last_regenerate|i:1671712890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b3b7042c518aa9fc9dd3a8e608957855cfa1f1', '172.105.247.100', 1671712890, '__ci_last_regenerate|i:1671712890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da6ee15d804273b8e0d9684f664c2cd6744c14dd', '172.105.247.100', 1671712890, '__ci_last_regenerate|i:1671712890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ea5d22dc84bf7c734c083bae96ad7aaf1f2b1d', '172.105.247.100', 1671712891, '__ci_last_regenerate|i:1671712891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df10f5e0be701eee36cae44d41057d811bb4875d', '172.105.247.100', 1671712891, '__ci_last_regenerate|i:1671712891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc61b79251a2da59aca14dcd405c0d6c5c3a404', '172.105.247.100', 1671712891, '__ci_last_regenerate|i:1671712891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4ff110a2b55cfcf0f65e5504d729011a1d608a', '172.105.247.100', 1671712891, '__ci_last_regenerate|i:1671712891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8056605ce8e8fcd8d3b75cc58d4589301647dd73', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2342b137c88a88e0545f8f366e74874f715cf092', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678e09c0beecd68b700e1d867597e2e9c7dbe42c', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc70a2e0ef3592b0e89a606ddf09d6c1c1aadb01', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b31f449e46aaa0600f10bf6f8e00061d7b9894c', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782e38769c59d1af237f8959855d237dc74cbe65', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2f4e2e6e33a80c0ca39c0edb7584e16739d3c5', '172.105.247.100', 1671712892, '__ci_last_regenerate|i:1671712892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574f49dd4246d628da2708aa7a0fb98b261571a6', '172.105.247.100', 1671712893, '__ci_last_regenerate|i:1671712893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ef4bcb20461d0ebd981214502a3fca273d8d09', '172.105.247.100', 1671712893, '__ci_last_regenerate|i:1671712893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cfc5fca381ed0bd660f520f2e40b6d8fd63ef50', '172.105.247.100', 1671712893, '__ci_last_regenerate|i:1671712893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c5cfa80c3716258d59cbc78ad3e92179331027', '172.105.247.100', 1671712894, '__ci_last_regenerate|i:1671712894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa3e36d024b8c207f397267cd94e8366ac78649', '172.105.247.100', 1671712894, '__ci_last_regenerate|i:1671712894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3203d565f5f98be209f86dbe1a94ee66c6dcaa3', '172.105.247.100', 1671712894, '__ci_last_regenerate|i:1671712894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbcf473ae4d9f9315931cd34d28ce4d52c355b3', '31.222.203.2', 1671714138, '__ci_last_regenerate|i:1671714138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2a03c67744f43c37e407af9cb24e17acf3a3201', '31.222.203.2', 1671714138, '__ci_last_regenerate|i:1671714138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c2d4492a8cae4ac6b55ab12eff0d1e36897fdd', '31.222.203.2', 1671714138, '__ci_last_regenerate|i:1671714138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0eca829361ec54f7725abbc26ee2315e3e1f42', '31.222.203.2', 1671714139, '__ci_last_regenerate|i:1671714139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23794cb0585588e660df0eb476c0d1cfc47c00a3', '31.222.203.2', 1671714139, '__ci_last_regenerate|i:1671714139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ba040185c65ac74ceeb217ccb3020b71fb269e', '31.222.203.2', 1671714139, '__ci_last_regenerate|i:1671714139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5ccab3d22c067d11fd8e05f50b9f6f7445fb3a', '45.120.39.89', 1671715220, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671715220;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671715191;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a850b8bc2adee338699342ac9406fabd3afc15f5', '45.120.39.89', 1671717160, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671717160;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671715230;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9fe208d4701bdcdfcf55d765d8312c980e4435', '31.222.203.2', 1671715936, '__ci_last_regenerate|i:1671715936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e5b4044e2ecd56c56a9afb10084fa0d914449c', '31.222.203.2', 1671715936, '__ci_last_regenerate|i:1671715936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a960a41ce388dc30a5ee9b1fdd31b1459ef4f998', '31.222.203.2', 1671715936, '__ci_last_regenerate|i:1671715936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482dc386bc6ec9c722ee5e9ffcbda5b6373de0bb', '31.222.203.2', 1671715936, '__ci_last_regenerate|i:1671715936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f98515a21f3e334c5b0f1e477fa766f7c65f31', '31.222.203.2', 1671715936, '__ci_last_regenerate|i:1671715936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183e7fe520e25fc0e7005908328b9b7af6348d4e', '31.222.203.2', 1671715936, '__ci_last_regenerate|i:1671715936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67446da25e667a41a0746e0a44cc35d5449ff34e', '45.120.39.89', 1671717536, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671717536;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671717525;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1739cdcac66576a29e3e48ef80743ffc2f94c855', '45.120.39.89', 1671718270, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671718270;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671718265;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b1207562cb6ce56b252fe74824d7f5c48b258d', '31.222.203.2', 1671717737, '__ci_last_regenerate|i:1671717737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a8321698e88cb2a8228ece80cbe870fd83ee9a', '31.222.203.2', 1671717737, '__ci_last_regenerate|i:1671717737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2e94058e6b5f62cc47994da26790c25094061b', '31.222.203.2', 1671717737, '__ci_last_regenerate|i:1671717737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d91fcb24d2c2aba6036968550246439e0d4d42', '31.222.203.2', 1671717737, '__ci_last_regenerate|i:1671717737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91eec30e313bdb935db978e5f4848ce8f66328c', '31.222.203.2', 1671717737, '__ci_last_regenerate|i:1671717737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36bc24d05662f1e953da99662c53bf063de27e06', '31.222.203.2', 1671717737, '__ci_last_regenerate|i:1671717737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a9b3870e6da7582e214f2288449dac9fa9dc06', '45.120.39.89', 1671719453, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671719453;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671718270;register_id|s:3:\"287\";cash_in_hand|s:9:\"2490.0000\";register_open_time|s:19:\"2022-12-21 19:52:21\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d695f5fca13830b3f2e61e05cef6f800ae5f67d', '172.105.247.100', 1671718285, '__ci_last_regenerate|i:1671718285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf46c2826bbdbc6b210f5c998dd1b237b204c3dd', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d58610d6bc036cc79662cf40b7809649de3026', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dffd178091df46b680aa54cb688a1245852311f', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('382c1b06808e505e2eb2d583e5d449653abac959', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bc8001e345707ecea1146cdc09fcfff73467c7', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1425c209c4e2271de358857fe13aa312014949b', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0e6fff2c731166b4aab95ff582734f607804e8', '172.105.247.100', 1671718286, '__ci_last_regenerate|i:1671718286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95b99f4c0c003cb51371cafa8c816fe629655d2', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('884b07be40f637a8ade6cacc2b609554da493ba1', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea062b62d85c98af3c45a438fcf160da8090328d', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9fceedcc2e3ee3b6a7d951875b5c5d7d5c9c69', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c9ed30396773b71d1f8181b1e8415f5a41674f3', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54a9a6eab969286746c22284f35750688778674', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef999bf6efbead4b1f205c59b797fe0b20c6c83', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66dd5d12fc1a9a7830be070800ee0ff52070830', '172.105.247.100', 1671718287, '__ci_last_regenerate|i:1671718287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a82540a9a003f11543917c9fed6104368d92f48', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f20f3aa0aed30a8bf46a5ceda2013a92ad7b8b', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a87254143adb14d4e96d6e3ab7586e64efa8f1', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d74bbca1fe15d12d1a1efcb026f1c0c4b9b6a8', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2eb0cbfdf5b8838f6e25a271f8e642a64647b8', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bd8108da83b90dad898f27f9f2888c0204f50a', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d254b25a5d76ebe51f2d8a28a8c542dcb67b420d', '172.105.247.100', 1671718288, '__ci_last_regenerate|i:1671718288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de28e28ed7b36b75deeacdb09ddb8a998af70fe', '172.105.247.100', 1671718289, '__ci_last_regenerate|i:1671718288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97822262b8dfed88f9a1a27bba8b716ea6a5c9a5', '45.120.39.89', 1671719750, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671719453;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671684710\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671719750;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586ff8128461c2c34418fe5cb88c257462917093', '31.222.203.2', 1671719540, '__ci_last_regenerate|i:1671719540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f93b2ab3a467bb5b9bc061551d558ef504911453', '31.222.203.2', 1671719540, '__ci_last_regenerate|i:1671719540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258dd2ea5e50493f3dd2e97b7253276b1eadfdf6', '31.222.203.2', 1671719540, '__ci_last_regenerate|i:1671719540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182bc6feb22e015a231b2ca7b1df82463534b4fc', '31.222.203.2', 1671719540, '__ci_last_regenerate|i:1671719540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b57db0bb2e97e965d359fa87ec3a07126b6ddf6', '31.222.203.2', 1671719540, '__ci_last_regenerate|i:1671719540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7041fb8314b301c0086bccd933476980d399984d', '31.222.203.2', 1671719540, '__ci_last_regenerate|i:1671719540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c53fd73c97fed71dd4283bb6cd5cfd0d6f306d', '31.222.203.2', 1671721353, '__ci_last_regenerate|i:1671721353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0cc1350df7874edcf8421dd18fa33fdae237bc', '31.222.203.2', 1671721355, '__ci_last_regenerate|i:1671721355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fcfa7407128f0e7b7f540078b8aa9da78ffa12c', '31.222.203.2', 1671721355, '__ci_last_regenerate|i:1671721355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('914841266a992fdb9ac0561171da15af56d9b691', '31.222.203.2', 1671721355, '__ci_last_regenerate|i:1671721355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16885cff08660e4db90aedafb616251623b28ada', '31.222.203.2', 1671721355, '__ci_last_regenerate|i:1671721355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963d8b957aa27a3c0ca4b8a10c12e36d55cba50f', '31.222.203.2', 1671721355, '__ci_last_regenerate|i:1671721355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb02b40a88c89e061f03ef467f3b8bbcf39f3188', '172.105.247.100', 1671722481, '__ci_last_regenerate|i:1671722481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7af4763f7294408a1bb63ce1dfe46956ebd2e0', '172.105.247.100', 1671722482, '__ci_last_regenerate|i:1671722482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691bee5aa66d5d27237450b5c6f7850418678fae', '172.105.247.100', 1671722482, '__ci_last_regenerate|i:1671722482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a248ec7ea24b6d370e2791325b6c27164a86292', '172.105.247.100', 1671722482, '__ci_last_regenerate|i:1671722482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbdfc5b1a25e1127472d9cc77fec0211435d533', '172.105.247.100', 1671722483, '__ci_last_regenerate|i:1671722483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b2d12d5f4f9a465efc4007c45a1dcc3b50be78', '172.105.247.100', 1671722483, '__ci_last_regenerate|i:1671722483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc58054512079fc126f99a45f1bceb31bfd36210', '172.105.247.100', 1671722483, '__ci_last_regenerate|i:1671722483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12842d1711a7fbefd8e8d167f2d83ce4581f9050', '172.105.247.100', 1671722483, '__ci_last_regenerate|i:1671722483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a530867dd883a4fbc33887220671dd60f7b418e6', '172.105.247.100', 1671722483, '__ci_last_regenerate|i:1671722483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f1755d6477849b89bf4d83ed7697d068972b631', '172.105.247.100', 1671722483, '__ci_last_regenerate|i:1671722483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16f895d062a1e175aefdc84e1fdb93598d1fc10', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6679b64ebe3079674032f276c509f721635c5b', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6633ae96109e48deeb0c7f2b902080b65f25df0', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ebd2e22eb254c70946ebfeba63e5229da9125a', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b585617577d7d5c6c60dad70f021597230c3d66', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428c404a9eb6ecd7b22d50096e53dbfe94a67f9f', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8b9bdd8bd6670ef9b58cb25adc5660f803129c', '172.105.247.100', 1671722484, '__ci_last_regenerate|i:1671722484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a7080444825b514e782befc9ed5acca052ec92', '172.105.247.100', 1671722485, '__ci_last_regenerate|i:1671722485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532b8d0ba01d898860ffe5056168ba591f1a6773', '172.105.247.100', 1671722485, '__ci_last_regenerate|i:1671722485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000aa7a0ee68530e09e8835faf9922998d41a468', '172.105.247.100', 1671722485, '__ci_last_regenerate|i:1671722485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa8a7c6db5e147bf19803f1d2a2c497e6237a00', '172.105.247.100', 1671722485, '__ci_last_regenerate|i:1671722485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ef2c142f2ccc6a3c65801bb65eb3befc950b30', '172.105.247.100', 1671722486, '__ci_last_regenerate|i:1671722485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cf6d65b3533bc02e7d85691a39055950fae0ea', '172.105.247.100', 1671722486, '__ci_last_regenerate|i:1671722486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a62b32818c085097d45f8c9e5c9c17a5f68e97b', '172.105.247.100', 1671722486, '__ci_last_regenerate|i:1671722486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18861a69cd2e15278676c4270eb3e49875cfde8b', '31.222.203.2', 1671723134, '__ci_last_regenerate|i:1671723134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e031548e1190c8a169471290adea0138503bcd', '31.222.203.2', 1671723134, '__ci_last_regenerate|i:1671723134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0fbda80fb51e22ada9d71d1129b0a84c4c17d9', '31.222.203.2', 1671723134, '__ci_last_regenerate|i:1671723134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('326334d68ffb4f5d292839552221403d22497bc5', '31.222.203.2', 1671723136, '__ci_last_regenerate|i:1671723136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f579cdd248f40d72732d0b4743c4bd2c619a874b', '31.222.203.2', 1671723136, '__ci_last_regenerate|i:1671723136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc73d2329a5b55490a58475cd38a4c7f481e92a', '31.222.203.2', 1671723136, '__ci_last_regenerate|i:1671723136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e566e015d2e72efa1a67feff59f418ff1fe1ca1', '31.222.203.2', 1671724935, '__ci_last_regenerate|i:1671724935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e559c5dc1d5444cbffec8d6ae49d02700013f6d', '31.222.203.2', 1671724935, '__ci_last_regenerate|i:1671724935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0dc29de978df9a740e5df5eb3dbf97339b567a', '31.222.203.2', 1671724935, '__ci_last_regenerate|i:1671724935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7605dfea3d6aafb5c75d2fc6ebe90fbfb6023c6', '31.222.203.2', 1671724937, '__ci_last_regenerate|i:1671724937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16761920974b7fd6cb0102e1c1117f52a3ae1fd', '31.222.203.2', 1671724937, '__ci_last_regenerate|i:1671724937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419d0dff1af355512befabc04bb071463e51d32d', '31.222.203.2', 1671724937, '__ci_last_regenerate|i:1671724937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e39a0deb432b1ad0235bd1ff4da82c40f0d89a', '31.222.203.2', 1671726728, '__ci_last_regenerate|i:1671726728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9888a2af1e54034a01ab35da9b81bcad5038a75f', '31.222.203.2', 1671726728, '__ci_last_regenerate|i:1671726728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440c1adc43fd80c89fc48015b3f1c35de6e3fb36', '31.222.203.2', 1671726728, '__ci_last_regenerate|i:1671726728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b898950e776891d89dce38a290ab69132e055fd', '31.222.203.2', 1671726730, '__ci_last_regenerate|i:1671726730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8dba1c199f4a55f79d2fffe16968000daf5d66f', '31.222.203.2', 1671726730, '__ci_last_regenerate|i:1671726730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf047202c149b6ea174bada70d17d0611af1069', '31.222.203.2', 1671726730, '__ci_last_regenerate|i:1671726730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385d1d4bf4b203d74ac8e8d0602a4f183ae4f2c4', '172.105.247.100', 1671727279, '__ci_last_regenerate|i:1671727279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba763228d2ea3b91fb3ff8366b64ca0dc11ce3d2', '172.105.247.100', 1671727280, '__ci_last_regenerate|i:1671727279;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d24b80a064ef672b6f4f1e41d84c1a83b772f20', '172.105.247.100', 1671727280, '__ci_last_regenerate|i:1671727280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d9fe880a4d3e6b31a59a39750025ddd82691af', '172.105.247.100', 1671727280, '__ci_last_regenerate|i:1671727280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfff5f74d5e81be043d3e332d9b1630b695c86b', '172.105.247.100', 1671727280, '__ci_last_regenerate|i:1671727280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce47d2137f5c37b90d8785b6faa2e48fad44206', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5f7dce01e683223fc7f0cd03aa45237ed36e54', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d2ff4f43a7af5421622e8dc4c6f6756a40bcaf', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09886c611c9ffd2bbecec2d766cdd4086d1ac2ac', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe1758778dd3f6101e8220e94aa5dda4350b968', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e3c68217781ff6bed9a2051074481a879bccbf', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0430dafdb85ada17a22a94dc55ed67739379ed45', '172.105.247.100', 1671727284, '__ci_last_regenerate|i:1671727284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c184ed1ba8656336473c6afd26f7bce692ef092', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95897e1d22247d541295ea7c656f1a2327cd780a', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb6080ba99772ce59ea175036781eb2fa554d9f', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1daa77ba1ebf8f1674e1df13d4d76c228a616dd', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195e8035090c2c81a528423b0d9f15521fbaeeaa', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1d93b07e1b6992ba1a32db7d9aa1df2f96ec15', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae87a3ca8cdfc5b2623433907ed5be1b38c53bda', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aebf1d6639ce6c8a5a41687740a7f36269ecc467', '172.105.247.100', 1671727285, '__ci_last_regenerate|i:1671727285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696d2601cf84ee40bb18243343e0b1b61af9f34c', '172.105.247.100', 1671727286, '__ci_last_regenerate|i:1671727286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeaa74d69f5dfbfa66224fd806398cf008ec286a', '172.105.247.100', 1671727286, '__ci_last_regenerate|i:1671727286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85c3bdc7022ab7cedb92a413b33f77964e5fb1a', '172.105.247.100', 1671727286, '__ci_last_regenerate|i:1671727286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1459244f7402598def635819d57a2d152be4eb3', '172.105.247.100', 1671727286, '__ci_last_regenerate|i:1671727286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e50949749da086cc9abfbdcdc9c08030c8ebba33', '31.222.203.2', 1671728529, '__ci_last_regenerate|i:1671728529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a706c9878c0255135303ee2704ceee971b2d2f18', '31.222.203.2', 1671728529, '__ci_last_regenerate|i:1671728529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e56111cb9282eee2b37fe20ef50b8a529fe6d5c', '31.222.203.2', 1671728529, '__ci_last_regenerate|i:1671728529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7213a74d063987b352920c3ecba5cd89ef321c', '31.222.203.2', 1671728529, '__ci_last_regenerate|i:1671728529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2107bc48ac1443484308e7187fcb71f731c81d6', '31.222.203.2', 1671728529, '__ci_last_regenerate|i:1671728529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44838750874b0f02e788ea6c1f632a20b09d3ea2', '31.222.203.2', 1671728529, '__ci_last_regenerate|i:1671728529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c9aed71aa12fe81b2bbaa2434d061bbb2a2e08', '31.222.203.2', 1671730359, '__ci_last_regenerate|i:1671730359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea6f81ec86c8b3679c4cfaa0a8795d5fa6dcdf4', '31.222.203.2', 1671730359, '__ci_last_regenerate|i:1671730359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ad4d8f99401affc99b7198be9e2415e5f55059', '31.222.203.2', 1671730359, '__ci_last_regenerate|i:1671730359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8b353cc48311783ce78bc6c2721dc7b3ba7773', '31.222.203.2', 1671730361, '__ci_last_regenerate|i:1671730361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03dfb2b347089b7ae16da71b398466ea279e09ff', '31.222.203.2', 1671730361, '__ci_last_regenerate|i:1671730361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a302fd92660ce538428b11ef9f097e01f0b75f', '31.222.203.2', 1671730361, '__ci_last_regenerate|i:1671730361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d94e6a29708f7f18e6bf55a90661d31541861a7b', '31.222.203.2', 1671732138, '__ci_last_regenerate|i:1671732138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65e6bf5c2c64d594c735612518c5cddb3b773cd', '31.222.203.2', 1671732138, '__ci_last_regenerate|i:1671732138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab867e1ecc66a0eab6ab174785fe3adc57deb361', '31.222.203.2', 1671732138, '__ci_last_regenerate|i:1671732138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3bfe80317a82cfac982cd1ebd08f83a7ce85950', '31.222.203.2', 1671732138, '__ci_last_regenerate|i:1671732138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c867018ff3c801738cf49b8bcea5293db644b6e', '31.222.203.2', 1671732138, '__ci_last_regenerate|i:1671732138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec191c8df0c560d94fb5abf97880ef20f058a42', '31.222.203.2', 1671732138, '__ci_last_regenerate|i:1671732138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f671062fbb9316c30be04c78eceec9ec4044ac2', '172.105.247.100', 1671732686, '__ci_last_regenerate|i:1671732686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c852c9daabc56b11d145c9686a7588939b9c496', '172.105.247.100', 1671732689, '__ci_last_regenerate|i:1671732689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9301f6a413f5f0c39950d5d708e765422e327f', '172.105.247.100', 1671732689, '__ci_last_regenerate|i:1671732689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa6852da927474ab58e8ef5b35829099cc79a7d', '172.105.247.100', 1671732689, '__ci_last_regenerate|i:1671732689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982e71a88b3c0495dfbd92eb2dd9de04f6c4f6cc', '172.105.247.100', 1671732689, '__ci_last_regenerate|i:1671732689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e01063b7d0a0f8a23a849682c18a49f8fa0979', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d0f940093b99b68ce46a6e40412e9967dfbfbe', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2903a5d07d11a1cbf099c05b32fed2155cd7256e', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('426ea8cc3caf3774a64dd1031d87615ee5a62baa', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffdea70fc36879b9aed69c528493a46618e2922d', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('989294137faddcd9ad12b9dafd338d9251a31922', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6ad132df44b7131ee5fa264dff0d92c3c4378f', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f98d2117027f56155f340e4e67f12d919b51e4', '172.105.247.100', 1671732690, '__ci_last_regenerate|i:1671732690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122e0bbc4ea81a392c5c1bab80ac287262d34087', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33512d785ca1dda7920d89aa5c839359205993ca', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374b577f28e623552d74efe43174f3f36009e924', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c322c4ca81d44a3738bafc7a1781f8cd9180490c', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('066487942e29722ba3b5803cfc247e4dab161187', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe5989ee7842e65c7f3cbf44cfbdce3d24e7b4d', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3647346c10643099d649ce0ac7ce0536a973aac', '172.105.247.100', 1671732691, '__ci_last_regenerate|i:1671732691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3f561c7d83cf9612869d802881f5247a9fee55', '172.105.247.100', 1671732692, '__ci_last_regenerate|i:1671732691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed453c76afa1ead9bbe7b0b91e54c28361135e11', '172.105.247.100', 1671732692, '__ci_last_regenerate|i:1671732692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee67fafa0b63b9ccd0b56d1e221873a06ca8850', '172.105.247.100', 1671732692, '__ci_last_regenerate|i:1671732692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf0ce59618b1701ec14d2ca4357e37c1d754240', '172.105.247.100', 1671732692, '__ci_last_regenerate|i:1671732692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56f01356f396feeb988d2911d0846dfcd22d953', '31.222.203.2', 1671733951, '__ci_last_regenerate|i:1671733951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fad42f04b02616a40efc4cadd5e9a31b24beb33', '31.222.203.2', 1671733951, '__ci_last_regenerate|i:1671733951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e21e9ec35bc5cc563d2ce6d80062a2d48bb255', '31.222.203.2', 1671733951, '__ci_last_regenerate|i:1671733951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba675e7e968853618dfef572f561848e3f475d14', '31.222.203.2', 1671733951, '__ci_last_regenerate|i:1671733951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18007e928d34ef3d053e32fbd64e201ec2fd7e7', '31.222.203.2', 1671733951, '__ci_last_regenerate|i:1671733951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb2c5ae365a70448fe845ebe7dedecfaabd2874f', '31.222.203.2', 1671733951, '__ci_last_regenerate|i:1671733951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83dad4e2177c237ca056fe45b010a3dbfae6a0d', '31.222.203.2', 1671735738, '__ci_last_regenerate|i:1671735738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df860d498ed45df72606d7756c6561ca80732020', '31.222.203.2', 1671735738, '__ci_last_regenerate|i:1671735738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20cc0f40df884b0fe31e3d56554c8e495779b863', '31.222.203.2', 1671735738, '__ci_last_regenerate|i:1671735738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5a80cade6fcea95ccfa380b95f31a37c691d65', '31.222.203.2', 1671735740, '__ci_last_regenerate|i:1671735740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4bc3c65450fa1579340a1d74fdb9cdd3c32319', '31.222.203.2', 1671735740, '__ci_last_regenerate|i:1671735740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eae9f260823945b12b7fb7a0bc82c0af07b6e5f', '31.222.203.2', 1671735740, '__ci_last_regenerate|i:1671735740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f6b87912ebc217dcd4144d69c6ac619b8625cf', '172.105.247.100', 1671737482, '__ci_last_regenerate|i:1671737482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc0e788feae076ef2317a12af5e29c127b1c4e6', '172.105.247.100', 1671737483, '__ci_last_regenerate|i:1671737483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a7ccdc08aa8c99660faa8926f30f6124b468b6', '172.105.247.100', 1671737483, '__ci_last_regenerate|i:1671737483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e13a0759cc02af3c194e295eea1a2f7c16424b', '172.105.247.100', 1671737483, '__ci_last_regenerate|i:1671737483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd8a132401b4f00f97fc12d6158bb03a686eb87', '172.105.247.100', 1671737483, '__ci_last_regenerate|i:1671737483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('605c250ba8d40305e1660ed7c34d92aebb35f1a3', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3002e0002925c1af38f3566445c48671e2e286', '172.105.247.100', 1671737483, '__ci_last_regenerate|i:1671737483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aaef9d8f31e8b4aeb06b559593c6fb446389790', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae0e42766584aad1a0719f03c921b1f85b84bf38', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c1c307856ef234f6d8b2209efcb8ee0cd62054', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c966a37de9f4cb85070a84b295fdc12f49b96a0c', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11dd7b5f3e324f706695bc85cfa5f50591f3985d', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d973975c580d928119c646565ab0ba37db7889', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936970d76c6a98d10861e89f15224f0e00386b5e', '172.105.247.100', 1671737484, '__ci_last_regenerate|i:1671737484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b22f5e4d361611983746733cd8520b29436546', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e13e298c930705c3539588638b0c5036f549d2', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9acc86ecbc842bae277f1c52c1ec347214ac1597', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b7585a26baa2c2d169b0b7194ba749af33d891', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22034c14e4e7a0ad1702312a68363017b91f951f', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6e2335ccd847d1e4d8718f8b8d6e24a3a11528', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d475ca0ed03e8d63f5485c8083a014c14893f325', '172.105.247.100', 1671737485, '__ci_last_regenerate|i:1671737485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b9b94df4597d6099bde78676a439c082f8cbd1', '172.105.247.100', 1671737486, '__ci_last_regenerate|i:1671737485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c9ea187c75356ef7fba4348dcd76fe30e222abb', '172.105.247.100', 1671737486, '__ci_last_regenerate|i:1671737486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4ac12f471033335ea6c6663a42e17256afcaf2c', '172.105.247.100', 1671737486, '__ci_last_regenerate|i:1671737486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77486aead7f301914aa219406c76d2bff1464c8', '31.222.203.2', 1671737534, '__ci_last_regenerate|i:1671737534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3d8e567d5ab06a1b3dbbc18650d913a0c50270', '31.222.203.2', 1671737534, '__ci_last_regenerate|i:1671737534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e037f256e05d7eeb7ee04d7f189e3608f7f3b433', '31.222.203.2', 1671737534, '__ci_last_regenerate|i:1671737534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e62bfa54833286954498cfc73588f46f2109e1', '31.222.203.2', 1671737534, '__ci_last_regenerate|i:1671737534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d56685ddfe40496ef450b982f88bb14fed1475e', '31.222.203.2', 1671737534, '__ci_last_regenerate|i:1671737534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bbc4e540b69d73a2508a90a5687d11e9ff18d4', '31.222.203.2', 1671737534, '__ci_last_regenerate|i:1671737534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e46d81110185451008df6fcb6d0de053bee3ac61', '31.222.203.2', 1671739328, '__ci_last_regenerate|i:1671739328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dd4996bb4a045f46be95bae7abb9fd1638131df', '31.222.203.2', 1671739328, '__ci_last_regenerate|i:1671739328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7824af3d25b603c984dfae6ccffbd42454da5337', '31.222.203.2', 1671739328, '__ci_last_regenerate|i:1671739328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5dc99fcae984eb44a9c638b8aa30b5b7f31b60', '31.222.203.2', 1671739330, '__ci_last_regenerate|i:1671739330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46460ea4b4c40be4f0f0ba48a2daefdef479cb9', '31.222.203.2', 1671739330, '__ci_last_regenerate|i:1671739330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9c24437bfe23d36811dd20b1105ff2c8f54ed2', '31.222.203.2', 1671739330, '__ci_last_regenerate|i:1671739330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6b1cdeccbab62a3e31b465f86c31c9fb06e6a0', '31.222.203.2', 1671741131, '__ci_last_regenerate|i:1671741131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f82cd63b65535a90a251f84ac24692e16841968', '31.222.203.2', 1671741131, '__ci_last_regenerate|i:1671741131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723784c0b02143e87079814d300ee9bb559e468d', '31.222.203.2', 1671741131, '__ci_last_regenerate|i:1671741131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb92ff925037e439209831c016a4a666c9cb4797', '31.222.203.2', 1671741132, '__ci_last_regenerate|i:1671741132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070a45c744fbc5c5d47fb85449c6e36d8fe136cd', '31.222.203.2', 1671741132, '__ci_last_regenerate|i:1671741132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ba627384b39d84f166ccc9fc33833ef5f70c38', '31.222.203.2', 1671741132, '__ci_last_regenerate|i:1671741132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38b734f9ac451ce284449284d446766a4ed6bd2', '172.105.247.100', 1671742283, '__ci_last_regenerate|i:1671742283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90950f3c89e57d04d62dd21d36a7f542cfa0f256', '172.105.247.100', 1671742283, '__ci_last_regenerate|i:1671742283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f961f135a1a0f264918c9353c7c1e02a95ad2e', '172.105.247.100', 1671742284, '__ci_last_regenerate|i:1671742284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8299e110734f071b02868dd4a1ccdf20b7aa2d4f', '172.105.247.100', 1671742284, '__ci_last_regenerate|i:1671742284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4140bfa37b03e93adc837b8f420e5f13f04345e0', '172.105.247.100', 1671742284, '__ci_last_regenerate|i:1671742284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4855a836b4273087314baf2b366bb55199441a', '172.105.247.100', 1671742284, '__ci_last_regenerate|i:1671742284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88879bbeeaaa010e2fb73a91786c0ffa8196ea60', '172.105.247.100', 1671742285, '__ci_last_regenerate|i:1671742285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b73dceee363005365a13d348110e63adb2df43', '172.105.247.100', 1671742285, '__ci_last_regenerate|i:1671742285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bfa5cc564965b4057d4d907ca672f1f58366c8f', '172.105.247.100', 1671742285, '__ci_last_regenerate|i:1671742285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7095042ee6d6ac7939906f955742657fd7b85ac', '172.105.247.100', 1671742285, '__ci_last_regenerate|i:1671742285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f928f05d6006e7b38b463b1c9be40e449cc53e', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b295931c58075a7db5b2c5f360cece4ae56e29', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b439185349d400514ea64bd075f49d2101fda2', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210bbe05ec91a365196d428c6b7351ff4e680745', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99afa5e3925df341e0b43326d3f0735099c3ce5e', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79611fb1243663b2ad16fe3d9194d4907f6cecd', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238c8506d3cc012ba6ace1b3553ab9235416482b', '172.105.247.100', 1671742286, '__ci_last_regenerate|i:1671742286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac8bc2e1b0791ba36d4ae8596aa09a545b325aa', '172.105.247.100', 1671742287, '__ci_last_regenerate|i:1671742286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f118ee110e04589e6c2de176424a2cdebde3f180', '172.105.247.100', 1671742287, '__ci_last_regenerate|i:1671742287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dacf30645394b10c2c35b1d68a4755ec8ccf3fa', '172.105.247.100', 1671742287, '__ci_last_regenerate|i:1671742287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559f5cd39af93e00a85976b6601f84e3f33ec59c', '172.105.247.100', 1671742287, '__ci_last_regenerate|i:1671742287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035b048105f8063b9aeeb4d25d28757bc1139a3c', '172.105.247.100', 1671742288, '__ci_last_regenerate|i:1671742288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381f336604789cc500b52ebdb2f28317c122af90', '172.105.247.100', 1671742288, '__ci_last_regenerate|i:1671742288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252a2a2a9d6c5f5858885926360b19958fe4195d', '172.105.247.100', 1671742288, '__ci_last_regenerate|i:1671742288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b78ce728a63769f3d27fbf0c5484637609753f', '31.222.203.2', 1671742931, '__ci_last_regenerate|i:1671742931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309902db7806c2d300df9e4f7761f8c62d15ebca', '31.222.203.2', 1671742931, '__ci_last_regenerate|i:1671742931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f002a4bbb0947696d72af8dcd54e03bd27dfddda', '31.222.203.2', 1671742931, '__ci_last_regenerate|i:1671742931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc23bec2456e1f818fad7a25048d644a679bc08', '31.222.203.2', 1671742931, '__ci_last_regenerate|i:1671742931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('890a1323fb70b2ed630ff1b3ceb9f7efe98a0e7c', '31.222.203.2', 1671742931, '__ci_last_regenerate|i:1671742931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc4a60c8efd140de51724c7f3a06021f0110fc0', '31.222.203.2', 1671742931, '__ci_last_regenerate|i:1671742931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b7bf094ba663a5efd5bdd8fd27b666120193915', '31.222.203.2', 1671744730, '__ci_last_regenerate|i:1671744730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5080ce7a14456aa728c265445e313eb869ad2a', '31.222.203.2', 1671744730, '__ci_last_regenerate|i:1671744730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b568ae243937a43267680d725685f6dac8515ee', '31.222.203.2', 1671744730, '__ci_last_regenerate|i:1671744730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b1c8c2bf121caaacf3f124793fe05c9491f781', '31.222.203.2', 1671744731, '__ci_last_regenerate|i:1671744731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd94a36c239821c3c7c2aeb7a0d2b04fc3d362ac', '31.222.203.2', 1671744731, '__ci_last_regenerate|i:1671744731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5583097ee49f8881e46f1153eb3512106474540', '31.222.203.2', 1671744731, '__ci_last_regenerate|i:1671744731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51780b80d95b51b54c409d95a95580d3e072fa15', '31.222.203.2', 1671746530, '__ci_last_regenerate|i:1671746530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('116afb35c13120ca6e5636ae3a5b6a359f0d4d69', '31.222.203.2', 1671746530, '__ci_last_regenerate|i:1671746530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6267453cb0e1f43f49ef7a6efe3f1ce6836c46', '31.222.203.2', 1671746530, '__ci_last_regenerate|i:1671746530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428137808a17c731ffbe5db1567d89c0d2b81904', '31.222.203.2', 1671746532, '__ci_last_regenerate|i:1671746532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db99ff19d4a1ac4cfd8fdfe4763f2eef3de7ff7c', '31.222.203.2', 1671746532, '__ci_last_regenerate|i:1671746532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fb73d3a99f639a44c4af3f90608efe94561e38', '31.222.203.2', 1671746532, '__ci_last_regenerate|i:1671746532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ff70a828bfd49061fd4d471864a4c84ed01ff2', '172.105.247.100', 1671747684, '__ci_last_regenerate|i:1671747684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfcb88faf46e7490dc9b42dc4c86dd0d9622df9', '172.105.247.100', 1671747684, '__ci_last_regenerate|i:1671747684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e88296be97c7377ac4f9103a07eb0de39664dac', '172.105.247.100', 1671747684, '__ci_last_regenerate|i:1671747684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3f17ea458ab7ca1c17a86f537f4e9b47fcf0b85', '172.105.247.100', 1671747684, '__ci_last_regenerate|i:1671747684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275d7f16d7af2d366ca442cc4ed34f3fd7530215', '172.105.247.100', 1671747684, '__ci_last_regenerate|i:1671747684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01556bbcf17641b1a8f0d94f07d982beaff0507', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9462c4ce61873fe220c13c285035646dcfc304c5', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c638ed43db035643e14be411319b2b7d729c0ed4', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1a8c09ff893c37827ec7d184f8dcb57127bc24', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e60a04bcc53c13584a0300e00e16ea9417df92', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3aa6b7bac6c523fd68356a60520ec4fc9c17b7', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e2e30b003e9e33c2299460919cefb97372389e', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d260e20e723e8d70629ce5e38589dcd610537cb', '172.105.247.100', 1671747685, '__ci_last_regenerate|i:1671747685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17739234a75450fd8ac40728203febedfc468405', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e890c506ab2a82d9f531ba36dd6b4aac1a4987', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85bf261f69145257365013a37bb2260b19af620f', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e4ad6987b5983f9a63cafdca74aa506fa948a2', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fee4b4ddee8200e83c972e90a3c1dc53483b711f', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2f42fa4fb67f0e70e4f0e7882e9dd0dbdcb514', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cad0407f4be6288ed53834db0eb26c3a9ad1b8', '172.105.247.100', 1671747686, '__ci_last_regenerate|i:1671747686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5cd80ee461e4f63534e8572dabdf8e2e006ebf', '172.105.247.100', 1671747687, '__ci_last_regenerate|i:1671747687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eba1fec02922a42179a110682cc09555aeede77', '172.105.247.100', 1671747687, '__ci_last_regenerate|i:1671747687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165f0472875c1efac1b90a537105119e90121bf2', '172.105.247.100', 1671747687, '__ci_last_regenerate|i:1671747687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('834d7b2415360a03b979f6fa1746407201bd4a39', '172.105.247.100', 1671747687, '__ci_last_regenerate|i:1671747687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0633ab016bd1286834cf829b7d49f4e52b8998c', '31.222.203.2', 1671748334, '__ci_last_regenerate|i:1671748334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddced67e54afa253932be5cb4a09792603aa666', '31.222.203.2', 1671748334, '__ci_last_regenerate|i:1671748334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daefb296aa71e50719696cc0f1930b309463d1f8', '31.222.203.2', 1671748334, '__ci_last_regenerate|i:1671748334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7c1a09af65b45c463f1eb462627541e66928e29', '31.222.203.2', 1671748336, '__ci_last_regenerate|i:1671748336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c57df3a5c0775926a60f58393ab2072f19ce3f6', '31.222.203.2', 1671748336, '__ci_last_regenerate|i:1671748336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b248a2350eee753adb7598a7c5d65c3db7976fd6', '31.222.203.2', 1671748336, '__ci_last_regenerate|i:1671748336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2b41e3a4f6d4d3bd3ec93b8283eabeb5e5add3', '31.222.203.2', 1671750126, '__ci_last_regenerate|i:1671750126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2556af3e66df8e8da4079b209011741d559c17', '31.222.203.2', 1671750126, '__ci_last_regenerate|i:1671750126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acbc1a6225e39519b42546cfacffea581389a51a', '31.222.203.2', 1671750126, '__ci_last_regenerate|i:1671750126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303c3caf77787c3bb5ff5682c8504d0015383f84', '31.222.203.2', 1671750126, '__ci_last_regenerate|i:1671750126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bb653a29ae39bd3997f1e397a00333d296b5ffb', '31.222.203.2', 1671750126, '__ci_last_regenerate|i:1671750126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('134dda3d10b9655e9e1a0f65aeabeb1db0a50d44', '31.222.203.2', 1671750126, '__ci_last_regenerate|i:1671750126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ab4f93a6261b3b170ae2d441ca72541a000229', '31.222.203.2', 1671751933, '__ci_last_regenerate|i:1671751933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64055276b648087e85139e2457c8a447b129653', '31.222.203.2', 1671751933, '__ci_last_regenerate|i:1671751933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8004d27857027ab69de25e147b60e7cc07518c9c', '31.222.203.2', 1671751933, '__ci_last_regenerate|i:1671751933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf51c7ab73189c1b8fef954d47b00750dd2d0343', '31.222.203.2', 1671751933, '__ci_last_regenerate|i:1671751933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbded4e94381f7551400666a14b701d3a06da63', '31.222.203.2', 1671751933, '__ci_last_regenerate|i:1671751933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca2b0365c8791171acb8677801b2fbaa03db302', '31.222.203.2', 1671751933, '__ci_last_regenerate|i:1671751933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4909c1aa6f4edcd0eaf8a63ce2649e1396c48d84', '172.105.247.100', 1671752485, '__ci_last_regenerate|i:1671752485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9a121abcfbe3754b208093cb7308e7229545ff', '172.105.247.100', 1671752485, '__ci_last_regenerate|i:1671752485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2688324f32abd20e214544cb2c4bc6402eca0fee', '172.105.247.100', 1671752488, '__ci_last_regenerate|i:1671752488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f23db50de1bc88713e4d1d24bcbd1a76f6db39', '172.105.247.100', 1671752488, '__ci_last_regenerate|i:1671752488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0202da6286f6a1175c1e9f42c4bafe5618827f50', '172.105.247.100', 1671752488, '__ci_last_regenerate|i:1671752488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a3566bcd2d7c6bd4409409408ced3333152955', '172.105.247.100', 1671752488, '__ci_last_regenerate|i:1671752488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef20bacfa48e9ea7d431651a4b31cbc1c72cda2', '172.105.247.100', 1671752488, '__ci_last_regenerate|i:1671752488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c8cc7c5ba2f2b9e01bde98c6e3b81bd6828507', '172.105.247.100', 1671752488, '__ci_last_regenerate|i:1671752488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b76d3199f9ce8f4ee56ca6a43150f4e70efdc5d', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0e76d232b782d1ee39350fc3088a28947bd178', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5fa8230f74e5f2230e90865ddfe731bd88e9e58', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc96cc9b308d3ca61051c04491239eaa41431a2d', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0365188ee9d846b2a5d5a056aa026c1f45deeb', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891b9289e1b0691757e1a0e196914d9a86415333', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bbac1e64c12bed7459944c1a9930e0db25e5ced', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e39ff994c7114c812d3f05b6df4c307d104085', '172.105.247.100', 1671752489, '__ci_last_regenerate|i:1671752489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378e42843f3872dc2590e44466db6fd292c1b6c7', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67518c6f09d946ce13e079a97ded111ed0c372d5', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba284e729b6600bd77e0ba70381c0342f052c3cc', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06fb10e9ef69f8441e6d42fc704a2b39149e260a', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373ca34152d22e1c555385fcad61cd13de0541d6', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a505c72086744d3c79734cca610bfb2ffa503b5', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1048d129edc7f637852d070cd30c42334af9c83f', '172.105.247.100', 1671752490, '__ci_last_regenerate|i:1671752490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f78882f16bfa725e9dcf8b854566357267a761f', '172.105.247.100', 1671752491, '__ci_last_regenerate|i:1671752491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f3e7eac40b142c2fd327bcf76cf29dfcb8e722', '31.222.203.2', 1671753728, '__ci_last_regenerate|i:1671753728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40117c1ef3a483eb98df942ecdfe66b4b794a730', '31.222.203.2', 1671753729, '__ci_last_regenerate|i:1671753729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('298496e47ad29d8a5aa16fd6e4d642f0062dc69d', '31.222.203.2', 1671753729, '__ci_last_regenerate|i:1671753729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaad85e54142cf066f506649415ed2737f1f5e7a', '31.222.203.2', 1671753730, '__ci_last_regenerate|i:1671753730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00fe432a737589458170403bb053d8a6022e813f', '31.222.203.2', 1671753730, '__ci_last_regenerate|i:1671753730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea4891b2ce3bea6b3c8bd5b3ce840977a75adb8', '31.222.203.2', 1671753730, '__ci_last_regenerate|i:1671753730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838648becc8d89d3b4d57f9e94bffb48ae932f8f', '31.222.203.2', 1671755539, '__ci_last_regenerate|i:1671755539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90eeb2da9bf3b15ef0d205489309b89e4d759ec', '31.222.203.2', 1671755539, '__ci_last_regenerate|i:1671755539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6a87b3e1f4a2a3d870e7ed13c85775c515bcf1', '31.222.203.2', 1671755539, '__ci_last_regenerate|i:1671755539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa18c9a59ab67b7c52168c72dfe6d5b40c69b50', '31.222.203.2', 1671755541, '__ci_last_regenerate|i:1671755541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a804f99db19e261cf45cfc579f7272a5d7aad71', '31.222.203.2', 1671755541, '__ci_last_regenerate|i:1671755541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3083a042c52157d74766f94403b1bf025e427d93', '31.222.203.2', 1671755541, '__ci_last_regenerate|i:1671755541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d329cc957013ca0e641f6d6d263969f5e4ab32d1', '31.222.203.2', 1671757336, '__ci_last_regenerate|i:1671757336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f727596e7bbaddc29eda5472a68cec1211ca2e', '31.222.203.2', 1671757336, '__ci_last_regenerate|i:1671757336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c6dfde842dcfc26437c5cffefab97b9e40b2e1', '31.222.203.2', 1671757336, '__ci_last_regenerate|i:1671757336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d545853379da6d4dbed34f2bca901c0cca3e0a7b', '31.222.203.2', 1671757336, '__ci_last_regenerate|i:1671757336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3289ce8c197801da40bbf31cea779dede1ffc710', '31.222.203.2', 1671757336, '__ci_last_regenerate|i:1671757336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf4ad268253bb4c2a6218b9eed56198f2a3af448', '31.222.203.2', 1671757336, '__ci_last_regenerate|i:1671757336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59829fff14b94a50dde2f10efda5719c1879255d', '172.105.247.100', 1671757882, '__ci_last_regenerate|i:1671757882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7de158ee20d2e9e3585a57d5bb9462ae5bbddc3', '172.105.247.100', 1671757884, '__ci_last_regenerate|i:1671757884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da6e1b23049220633954b12dcda502ba33381ab4', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e08a7ef4bfcc32e562fc56b63fb0287eb8dca49', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e57dfac77c1d3b8472165aaa4a3510c43d845a', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c4cd409657692f779137ff818636f4fca1d20b', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93299288da0f8e289d37f4fe874830d04aad53fd', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a6f38e6113a2c1a418cc2091b72c98bfed328b', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc0e47fc92775ce85a73d7e42d5a566fbe718b0', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4468fe929765ae5dfbdc4d575e7000bc679c446a', '172.105.247.100', 1671757885, '__ci_last_regenerate|i:1671757885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e70faf4b2c4119b8c375b38cfa0023502946f1', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbde3f78252da20a4f78deed057a502735b3b7f', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c827148a0b8a42736ffb441d08dfe6df2dd38f71', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bd123e5e434ce2873f038c161891287e485e00', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77fbf845f6225071c079922b188f3d7f82453fb', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b42841ca119eb07c40766931c4130e34d1b8d08a', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236c7a641e78bf93fa2b483c9b9cbb12be204d5e', '172.105.247.100', 1671757886, '__ci_last_regenerate|i:1671757886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5dc340d236fcd7ed08b2a7561a19102eca63ba', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c287d638335f67940efb8d42b5b8399b313ef2', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6be6cf122b7b65e4b0a820e8536d7f63b0bc88f', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54dfe7ac3c2db0ff8c689222a3d1ccb1775dc6ed', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927ac054e1da91293c03fd28341a67f88bd65bcc', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10102a7f6d7ccaf88d195f620e2c625ef75281b2', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8523fcf9db32788e11bab7b2ab023384d165cf7b', '172.105.247.100', 1671757887, '__ci_last_regenerate|i:1671757887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1120483a2e991ebca5a75ae056b97bc20a29df41', '31.222.203.2', 1671759141, '__ci_last_regenerate|i:1671759141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c0a491dd617e03fe360a200354a00f7d5d08718', '31.222.203.2', 1671759141, '__ci_last_regenerate|i:1671759141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d57e9d907294eb9d57e8a1c7b8472d21a18f96', '31.222.203.2', 1671759141, '__ci_last_regenerate|i:1671759141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1b5ffbe5f01452b83701d2a41196e2d3b3a412', '31.222.203.2', 1671759143, '__ci_last_regenerate|i:1671759143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a00c77bcc4036630bc6c651a52f7ee3440a7afb2', '31.222.203.2', 1671759143, '__ci_last_regenerate|i:1671759143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e901c5ba8922629cc9c8650f30d9c9e99fbaf593', '31.222.203.2', 1671759143, '__ci_last_regenerate|i:1671759143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca54f78179b3d15e29fc5b44d29fb06a8299ec0', '31.222.203.2', 1671760937, '__ci_last_regenerate|i:1671760937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a451297ab0d4c4cdb7afccc67929820846c1981', '31.222.203.2', 1671760937, '__ci_last_regenerate|i:1671760937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9215d7ae02dd4af41cbda5aaf8bf0210d0c53b', '31.222.203.2', 1671760937, '__ci_last_regenerate|i:1671760937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ba8b6d179cd6d3d92effa080d5436d09f3d388', '31.222.203.2', 1671760939, '__ci_last_regenerate|i:1671760939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f759e4fd1d80fd2696d76c4d20e84e4a9d2565cf', '31.222.203.2', 1671760939, '__ci_last_regenerate|i:1671760939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c994cce6b48cf998f4478485c8eb30f1cde2d22', '31.222.203.2', 1671760939, '__ci_last_regenerate|i:1671760939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b25af7376f2be076ea680644785552816cdbab3', '31.222.203.2', 1671762732, '__ci_last_regenerate|i:1671762732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68395adda80f455796a76340bf8b9818faaee0bc', '31.222.203.2', 1671762732, '__ci_last_regenerate|i:1671762732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b3faa3f6739c301f5a4f2a6b57550612538840', '31.222.203.2', 1671762732, '__ci_last_regenerate|i:1671762732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00220ad9644a681327b43f97f3e19af644e2655c', '31.222.203.2', 1671762733, '__ci_last_regenerate|i:1671762733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab13885b3d3cc3d8eece066dd57a89bc108e708b', '31.222.203.2', 1671762733, '__ci_last_regenerate|i:1671762733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcd2b16ea407f3fc0f4753ba2a61c9996577d03', '31.222.203.2', 1671762733, '__ci_last_regenerate|i:1671762733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30196ccb024fbc7a7ba203cea462b5a31d71799e', '172.105.247.100', 1671763283, '__ci_last_regenerate|i:1671763283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035c122c5c04d5a00b4f75442c34848e62e4cd5c', '172.105.247.100', 1671763283, '__ci_last_regenerate|i:1671763283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67abedbb05d6f5ddb505f66dc30a9e342ff36762', '172.105.247.100', 1671763283, '__ci_last_regenerate|i:1671763283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('613fa7f817cfd762b000ec67681ab1b69c1c0222', '172.105.247.100', 1671763283, '__ci_last_regenerate|i:1671763283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54846bad7e002decd2f40468171b04c6f2d8f8ab', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee978689c0b70901cbe9904b09b83470ded44f28', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fda8feccf6e2cc5cf54cd54c69a0289db5fcf017', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7ab3e97d909905b1c202b4a28c3b550f11c975', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd34a71a3c2f2a8441afecb84b788c0913a78bc6', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d3456a89f616a3905e61342980dbaf1eb82bb7', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717510e7ddf0aa065fddae6d63be4d1cd8bbb070', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2451167f51c1a432a2ef8a1209b1558f1a2d568b', '172.105.247.100', 1671763284, '__ci_last_regenerate|i:1671763284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af36c7d76f5d9c4a8b910154589c1dfce807a7f4', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf1b704138d72747430f2dfdd86aa4dba0ad86c', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e765e7bc3aad465253e00df82f3da82f287c385', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5646f3382d238055f74267d85164623d43f414', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf4af839a6c81bfa569584f5226e33ecb1c1d87', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ce002afe16f8ff9d83ddf30d3b38dfbbd451b1', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a4dc5c46096fee1a2e0bf2489a056ff664bbe9', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7e299ff5a1d2dae8c6afc3c67c64a5f9583a53', '172.105.247.100', 1671763285, '__ci_last_regenerate|i:1671763285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58639ffe6ef511174adcea2a5313e4e790e13dde', '172.105.247.100', 1671763286, '__ci_last_regenerate|i:1671763286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb89c16aab49ede17c7eccb9789855e262ff298', '172.105.247.100', 1671763286, '__ci_last_regenerate|i:1671763286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c44ba5c545e12214621a0a7f2500b88a4fa0eaf', '172.105.247.100', 1671763286, '__ci_last_regenerate|i:1671763286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e42ea59938019085f56a9a079ba743f7ee6cc0', '172.105.247.100', 1671763286, '__ci_last_regenerate|i:1671763286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3f7189e856edf5f13e6f155494a5f0eea68cff', '31.222.203.2', 1671764531, '__ci_last_regenerate|i:1671764531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fab1513ed3b17b893a0cc72f25263e0e636ecc', '31.222.203.2', 1671764531, '__ci_last_regenerate|i:1671764531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58483b2ada8040a5c52ba7abe34d442d1d8c47a', '31.222.203.2', 1671764531, '__ci_last_regenerate|i:1671764531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8688871880e3835104cdcf8a1414e40c6ca8fa4c', '31.222.203.2', 1671764531, '__ci_last_regenerate|i:1671764531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb26a0fe5c2e480495241624bc01af486753c535', '31.222.203.2', 1671764531, '__ci_last_regenerate|i:1671764531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e933b1ee73f1020cdb118973892c273c5402db63', '31.222.203.2', 1671764531, '__ci_last_regenerate|i:1671764531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487bdbae86bff3276196a06f7ac8fa56943ecc27', '31.222.203.2', 1671766331, '__ci_last_regenerate|i:1671766331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597a7b52bf72aea4dabda9b25a17a37e94831885', '31.222.203.2', 1671766331, '__ci_last_regenerate|i:1671766331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6275de65d781248837f2b413af17b574ce4601c', '31.222.203.2', 1671766331, '__ci_last_regenerate|i:1671766331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d287f62198a503f3bcae6387df44e237d42c9f', '31.222.203.2', 1671766331, '__ci_last_regenerate|i:1671766331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8627ebb847cde4887242b70a752c2753f2ac58a', '31.222.203.2', 1671766331, '__ci_last_regenerate|i:1671766331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7d1270b51a06a82e5bde352a6a08a91f716966', '31.222.203.2', 1671766331, '__ci_last_regenerate|i:1671766331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb822413e40c50e8f6df4c36ec0c62fd5dde7b5e', '31.222.203.2', 1671768125, '__ci_last_regenerate|i:1671768125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7601ec09f0f7d75b2cf89e91930b6291564dc7', '31.222.203.2', 1671768125, '__ci_last_regenerate|i:1671768125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5211b9112bfb04096795834168da2a89ba3416a5', '31.222.203.2', 1671768125, '__ci_last_regenerate|i:1671768125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530cda5cc707e4739d17d8628d675c473c9a890c', '31.222.203.2', 1671768127, '__ci_last_regenerate|i:1671768127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008ea1d3c6955ff7b4cfca224136ed8c0ddfb7ac', '31.222.203.2', 1671768127, '__ci_last_regenerate|i:1671768127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a481ca8bf8b6f228a5cada9d43679fa33262e4', '31.222.203.2', 1671768127, '__ci_last_regenerate|i:1671768127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ab0d2a8c32c8152b1676ec4553402b90660e3ac', '172.105.247.100', 1671768685, '__ci_last_regenerate|i:1671768685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24dc4ba7a96994d69419b7b3f6fdb98ecd9113f9', '172.105.247.100', 1671768687, '__ci_last_regenerate|i:1671768686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341b96527ee38080939d58150e1d58a325637468', '172.105.247.100', 1671768687, '__ci_last_regenerate|i:1671768687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67a064c53576c738b24fea8a9b0632656a9685a', '172.105.247.100', 1671768687, '__ci_last_regenerate|i:1671768687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c51c37eab4b24a0d6cc098467409aa7298e51d0', '172.105.247.100', 1671768687, '__ci_last_regenerate|i:1671768687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c88f023b1f21782463da5ab10e727ef4131f88e', '172.105.247.100', 1671768687, '__ci_last_regenerate|i:1671768687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('293b6bf00532e101318edef08fc81d56edad6a8f', '172.105.247.100', 1671768688, '__ci_last_regenerate|i:1671768688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a95c04dc7c33f56183d366b5c6e5cf04bf54d44', '172.105.247.100', 1671768688, '__ci_last_regenerate|i:1671768688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067f15c9c9aade58074875a37c462ddc21689a1a', '172.105.247.100', 1671768688, '__ci_last_regenerate|i:1671768688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfaa30fb431bb645fcab8be8a1129e8ccba8468', '172.105.247.100', 1671768688, '__ci_last_regenerate|i:1671768688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('494c2988f9b0a0cdd696df6fbc630cab2fa4db64', '172.105.247.100', 1671768688, '__ci_last_regenerate|i:1671768688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0826ddca81aa5d0a9e4fed9b3991e3be5087177b', '172.105.247.100', 1671768688, '__ci_last_regenerate|i:1671768688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2dc7145e751df749a3a4545438baf6b02d2ae6', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de471cd126a77b8d8c35d0baeb65e8dd9e3bcbc', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39ad2cad822d5b3b675e23af63e5f11292743486', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a8d1455275c127d23a1fe83bf9e1dbc466d10e', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee848501cce7ba84ad996542f2a579588cac2f3', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84905aa4321490c51edf533ca8fd11e262c66318', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b439a82135dd042727dc46be8575887a730828', '172.105.247.100', 1671768689, '__ci_last_regenerate|i:1671768689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a1d8e5e1986ee2453b8fd3b5658c1d69d55114', '172.105.247.100', 1671768690, '__ci_last_regenerate|i:1671768690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5d370becfe400b15b7a9768fd4db3779331f4f', '172.105.247.100', 1671768690, '__ci_last_regenerate|i:1671768690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775584b49cb9ac9633d4c70a58bdd1795503d949', '172.105.247.100', 1671768690, '__ci_last_regenerate|i:1671768690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d94683b21eb00c67d1654f281d7d1274250ed5', '172.105.247.100', 1671768691, '__ci_last_regenerate|i:1671768691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81cc8808470b43d67b60764afdce461c3dc52bd', '172.105.247.100', 1671768691, '__ci_last_regenerate|i:1671768691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10a2ed4878a44c15d1a3d1cb70e398ee8db93a5', '209.141.36.231', 1671769238, '__ci_last_regenerate|i:1671769238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d62711fe204e9b03a26771dc9951d733011c0777', '209.141.36.231', 1671769240, '__ci_last_regenerate|i:1671769240;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42fd2bee9b97bc04463e371c8b5ee76841a8e6d', '209.141.36.231', 1671769242, '__ci_last_regenerate|i:1671769242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973023a88cf57492c5ecc2033fb3fe92ac5fbe4f', '31.222.203.2', 1671769930, '__ci_last_regenerate|i:1671769930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5f5f105a1b3a401678a5aa746334787a3f784f', '31.222.203.2', 1671769930, '__ci_last_regenerate|i:1671769930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ebbc105006055da05f4c3298f03169d519f0e0', '31.222.203.2', 1671769930, '__ci_last_regenerate|i:1671769930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb655599c7c01ee638d5ff257e98e9287b00d0c', '31.222.203.2', 1671769932, '__ci_last_regenerate|i:1671769932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e41511b7bbabc3c8605dca5fef87845e6f220f5d', '31.222.203.2', 1671769932, '__ci_last_regenerate|i:1671769932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9850234e6551f462d04dac2611ef287ff6ad5ad', '31.222.203.2', 1671769932, '__ci_last_regenerate|i:1671769932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ced3c152c9b01ddb256e1deaddd10267b05a9e3', '198.235.24.165', 1671770392, '__ci_last_regenerate|i:1671770392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba24c0c2987fb73251da077ed4acfb9827952bd', '45.120.39.89', 1671771036, '__ci_last_regenerate|i:1671770983;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671704797\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1671771036;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5d8084c68f6a73bac9d8a9f18fd3dc26b983c9', '31.222.203.2', 1671771725, '__ci_last_regenerate|i:1671771725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad05852cc6dcaa998e22f101f2d2ce55551a031', '31.222.203.2', 1671771725, '__ci_last_regenerate|i:1671771725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b321e76f2904e5e0274bd606bf66eb69411db10f', '31.222.203.2', 1671771725, '__ci_last_regenerate|i:1671771725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3379fc7df75f64ca75876d489400ee7410c03461', '31.222.203.2', 1671771727, '__ci_last_regenerate|i:1671771727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bc90b68f31dc441fe381c577a7e232cbd0353e', '31.222.203.2', 1671771727, '__ci_last_regenerate|i:1671771727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d552470d4336574ba99a88ea53e66d7dbf33b4', '31.222.203.2', 1671771727, '__ci_last_regenerate|i:1671771727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4da33bf223f20d50e0eb47912f533ee614fb96', '31.222.203.2', 1671773528, '__ci_last_regenerate|i:1671773528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7651621a71402bcd908b3c64c8b388dfa5c815c', '31.222.203.2', 1671773528, '__ci_last_regenerate|i:1671773528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f66b10d46e4e5220ac08b0ded026f93c8a2e268', '31.222.203.2', 1671773528, '__ci_last_regenerate|i:1671773528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb693f55b1b6ce363ad8d6995138957acf23cd4c', '31.222.203.2', 1671773529, '__ci_last_regenerate|i:1671773529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2ca96e43b2f3d1c02d9e38bfa084cac1e6719be', '31.222.203.2', 1671773529, '__ci_last_regenerate|i:1671773529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbed40f1bc4002340707311d45e21093bb1df3a3', '31.222.203.2', 1671773529, '__ci_last_regenerate|i:1671773529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6717d2cd235b878a914d10835d38bbbd71a556', '172.105.247.100', 1671774080, '__ci_last_regenerate|i:1671774080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e136213e4d81b9da68f41dec02f1a5eea64c3af6', '172.105.247.100', 1671774081, '__ci_last_regenerate|i:1671774081;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4c8c43f41f24ea6452605a45c05837411533b9', '172.105.247.100', 1671774082, '__ci_last_regenerate|i:1671774082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a06471f12c9c6539d42ac461c524f53ba7c3e3c', '172.105.247.100', 1671774082, '__ci_last_regenerate|i:1671774082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9373ee33145181e084f5c7b76e86c12e2a0e2b03', '172.105.247.100', 1671774082, '__ci_last_regenerate|i:1671774082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3038fafbcce79ef727032ab3c272f89cbcdb9de8', '172.105.247.100', 1671774083, '__ci_last_regenerate|i:1671774083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b3ccaf905376eeb1062caec4f971566fd40213', '172.105.247.100', 1671774083, '__ci_last_regenerate|i:1671774083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9793ce65b9403961499c26f007a01f6b68a283bd', '172.105.247.100', 1671774083, '__ci_last_regenerate|i:1671774083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3846b15d054393dec02dc242cd816233c99b4e1d', '172.105.247.100', 1671774083, '__ci_last_regenerate|i:1671774083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda81ebe1eade409d256e3610b950fa0bec9d754', '172.105.247.100', 1671774083, '__ci_last_regenerate|i:1671774083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ce4b7325cf04f1171a14399ab85656598ecc87', '172.105.247.100', 1671774083, '__ci_last_regenerate|i:1671774083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1de4add3147a24f98a9b30b511162c8c7b1e8c', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61547054caaf8acb22554380b2a2e694db59428b', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aecb9b08161a10025cc380a846c0b2a5f051f572', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2665fef2f37de07c85ccae303aa45f60807432', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e79dccf292bdf2e87de6aae40112eea7129e68', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ab6c27e690e2e5e05e4433ec8c847174f12d94', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348a692000a6b6419ba13b9f36cf2969821f24b7', '172.105.247.100', 1671774085, '__ci_last_regenerate|i:1671774084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac464561e7311d3766c90d334ebf32b7e0c127de', '172.105.247.100', 1671774084, '__ci_last_regenerate|i:1671774084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f88edf9239273ec99ee06d637114976762b17a3', '172.105.247.100', 1671774085, '__ci_last_regenerate|i:1671774085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b0807083e576ec163c00caf0244245f0d48311', '172.105.247.100', 1671774085, '__ci_last_regenerate|i:1671774085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777b56f9a97fe10899bfb6bd9f3a03ca089ed7d1', '172.105.247.100', 1671774085, '__ci_last_regenerate|i:1671774085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271bf205e601d0da431e724c7977e0ce71f42928', '172.105.247.100', 1671774086, '__ci_last_regenerate|i:1671774086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffeddd0deb67d35bec605208bf170b3653b2986', '172.105.247.100', 1671774086, '__ci_last_regenerate|i:1671774086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff91f129d07ffb3173ee75398611fe54cf57f55', '31.222.203.2', 1671775329, '__ci_last_regenerate|i:1671775329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af760ccca60aae2cffdd73a51e8b95d6499293d', '31.222.203.2', 1671775331, '__ci_last_regenerate|i:1671775331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7a4866be7a3f4a92054ef6acc97dfa36586fc8', '31.222.203.2', 1671775331, '__ci_last_regenerate|i:1671775331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30541dc93951c43b97277764d05ab2b5f6cc119b', '31.222.203.2', 1671775331, '__ci_last_regenerate|i:1671775331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eec8b5081dfdda3f469e9ef32789d47c41fd230', '31.222.203.2', 1671775331, '__ci_last_regenerate|i:1671775331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f340b20e0d100412cb987583cdb4fd71a8bd73', '31.222.203.2', 1671775331, '__ci_last_regenerate|i:1671775331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ec44a1df651e11b5546e507b654bd5ce540416', '31.222.203.2', 1671777127, '__ci_last_regenerate|i:1671777127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90e303b072ca77d673cd43872b7fdc8ed625dce', '31.222.203.2', 1671777127, '__ci_last_regenerate|i:1671777127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd5120738cdcae8be7380edc19976fadd57e4a1', '31.222.203.2', 1671777127, '__ci_last_regenerate|i:1671777127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f5507fedd37d217724d8ac0913779dfda25694', '31.222.203.2', 1671777128, '__ci_last_regenerate|i:1671777128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4e489cd0d41ed07afc0f28465941d81e4e975d', '31.222.203.2', 1671777128, '__ci_last_regenerate|i:1671777128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03a2cbc0b48ad1c2eceb27bef8d0d2a577a2d54', '31.222.203.2', 1671777128, '__ci_last_regenerate|i:1671777128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9223cbbd473b85a824db7d8ac0e78f409c89f4b4', '31.222.203.2', 1671778933, '__ci_last_regenerate|i:1671778933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e185186c38b8db9fabfc69bbc80dc6da7e5393', '31.222.203.2', 1671778933, '__ci_last_regenerate|i:1671778933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575d5bcba48d62828556c91d34af4e441beeb516', '31.222.203.2', 1671778933, '__ci_last_regenerate|i:1671778933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3541787c6c1f5c0eb45bc4a67f753819aae35326', '31.222.203.2', 1671778935, '__ci_last_regenerate|i:1671778935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7f6e7aa58ba34b78490e50257a2e9db70b1849', '31.222.203.2', 1671778935, '__ci_last_regenerate|i:1671778935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f095bb2f88c6c44b6983299ec4d106c943fa32c', '31.222.203.2', 1671778935, '__ci_last_regenerate|i:1671778935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd16fb26b23a31a958342f5d3184a9fc35877494', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27675a25cd4f26a805cd1261f7a5c64b4cb283a', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f86701d09876965fc1b7e064315a7577af0922', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e96a6451f285b7e61d47624327e0ada1e86a1eaa', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45082aefb72cc9b5323582406ab50576b8eff9e', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe01e4f459fae780c73e0cc63460d51516a0a6c', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64f90a2da260f7bb5ae16e60287c0c6c952dd3b', '172.105.247.100', 1671779485, '__ci_last_regenerate|i:1671779485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a06d9c93153cf015ea874dc62d868ff838d288f', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35237dad87652ecbbaabd32430359422a45a793d', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8efa80cc04a39b81c9209ea9267071fcee904722', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1177bb5fcc1e4790566e6bd8f3af4f480048857', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dada96d4e87759a53ea8bbeaf6ebdc4839e9f76', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc364dce32cc43b833c76c638ff400376f12811', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f66b2279a0d1c9c6d7a788e03dbe0add010d5e4', '172.105.247.100', 1671779486, '__ci_last_regenerate|i:1671779486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ded042224965cb6747a0530fdac6d80f6327fd7', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c5a05c64b29f4a02cc794cf1be68f823fcb7a4', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab52eb7cca7cd6ac6fe057c19d3e8c3d930b52d', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfeed94e4d53d517d7675444de747aa4ff5a7ee', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10cb51f4aff6d3e7983e8f1913d44b3c91b3f726', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34a80c06288abfc8c15b9ffd310b2aa6e7d9f76d', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cb3117bd6468705d7fcfe63091b4c8e025ce18', '172.105.247.100', 1671779487, '__ci_last_regenerate|i:1671779487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e785caa8c6adb8774b2715f127cb5271da5c4e12', '172.105.247.100', 1671779488, '__ci_last_regenerate|i:1671779487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a216d0abd41d8ffc72cfa26c89636757ec8e3f56', '172.105.247.100', 1671779488, '__ci_last_regenerate|i:1671779488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dee126260bb9ca1e45ebed599af0a798efff9c16', '172.105.247.100', 1671779488, '__ci_last_regenerate|i:1671779488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660101c0117d4fe0b162ce10aa27bbc9887e9b1a', '205.210.31.128', 1671780581, '__ci_last_regenerate|i:1671780581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5916fab48f96b0068d1bed28a6966f502803ce00', '45.120.39.89', 1671783559, '__ci_last_regenerate|i:1671783559;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671780734;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a228c32a4997e96a58ca99e296c28281f27200e9', '31.222.203.2', 1671780730, '__ci_last_regenerate|i:1671780730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bc15b07ccd41d5fb8beead69c7530c937c2852', '31.222.203.2', 1671780730, '__ci_last_regenerate|i:1671780730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1687e3eb2340a2888db11de2dd1def300edf78', '31.222.203.2', 1671780730, '__ci_last_regenerate|i:1671780730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ba4053946e58a1fb1494085e514d4aacfb7a69', '31.222.203.2', 1671780732, '__ci_last_regenerate|i:1671780732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83a955d7c9a51e98f478d5c1bb8c874b7f0fa3a1', '31.222.203.2', 1671780732, '__ci_last_regenerate|i:1671780732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9d848e81d7b05d03f7f0c632c055c4dfcd4c81', '31.222.203.2', 1671780732, '__ci_last_regenerate|i:1671780732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d538852aad1b74c8d5d66f5d2f3a3d878d7bd0f0', '31.222.203.2', 1671782532, '__ci_last_regenerate|i:1671782532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('badee2b1aa6412737c3935efd15210c33aae1fb5', '31.222.203.2', 1671782534, '__ci_last_regenerate|i:1671782534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e16945b344058ba564e3cd3158dcd1de61f9427', '31.222.203.2', 1671782534, '__ci_last_regenerate|i:1671782534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1296eeeb8bb92839e29086f7a683f6cb24d06240', '31.222.203.2', 1671782534, '__ci_last_regenerate|i:1671782534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c3d9ff94063eb8f18ca8988d5182eb3f66fc23', '31.222.203.2', 1671782534, '__ci_last_regenerate|i:1671782534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feefbd416c9d3603e2b1bb5163cec3e406fd2636', '31.222.203.2', 1671782534, '__ci_last_regenerate|i:1671782534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e0b67f521b0a2520d58701f1144aaa8d3c238f', '45.120.39.89', 1671785810, '__ci_last_regenerate|i:1671785810;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671783617;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6e345a6a9d867dbba106b73d93815cb4e6fee3', '31.222.203.2', 1671784328, '__ci_last_regenerate|i:1671784328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf53429a6161fd9a549d0f8e6cff1372c3ce6bf', '31.222.203.2', 1671784328, '__ci_last_regenerate|i:1671784328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823d7151981fc20e0b849e44d0ba1daaf751f853', '31.222.203.2', 1671784328, '__ci_last_regenerate|i:1671784328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60f2605f2d5251afc84efa24dda37c6eaf524dd', '31.222.203.2', 1671784328, '__ci_last_regenerate|i:1671784328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee2f61996ab93a22c099144156f397d8bdea0e2', '31.222.203.2', 1671784328, '__ci_last_regenerate|i:1671784328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2619124c638e509668c7cccf29d3bd3dd070a7ed', '31.222.203.2', 1671784328, '__ci_last_regenerate|i:1671784328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31952794266bb4e0102febcbe1f2a2239ddbec41', '172.105.247.100', 1671784883, '__ci_last_regenerate|i:1671784883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6851fe679a1f405b80c26f0b0d3f535495e33c98', '172.105.247.100', 1671784884, '__ci_last_regenerate|i:1671784884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7f80fa939b5c129d3a6cd41fe5a80637c082b7', '172.105.247.100', 1671784884, '__ci_last_regenerate|i:1671784884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6baf57aeec16eb2cbebd156f7d19d27d908c68f', '172.105.247.100', 1671784884, '__ci_last_regenerate|i:1671784884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b6ab0c883d6c59e5c71fe29b122432690b1980', '172.105.247.100', 1671784884, '__ci_last_regenerate|i:1671784884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2a9ce38777171afe8133d25138930594668d35', '172.105.247.100', 1671784885, '__ci_last_regenerate|i:1671784884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67eb4d1b31afa0a3c5aa1504ab3d22335ad6e0e1', '172.105.247.100', 1671784885, '__ci_last_regenerate|i:1671784885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3cf819f24133e68205af01a25c11714f8175657', '172.105.247.100', 1671784885, '__ci_last_regenerate|i:1671784885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b1c2dc999da6654c5acb125884aa3266b392f7', '172.105.247.100', 1671784885, '__ci_last_regenerate|i:1671784885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0dfb2ff23ca3a92f61d2016c0d93f74a53e8b5', '172.105.247.100', 1671784886, '__ci_last_regenerate|i:1671784886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d51c6d8f021ba471fe5060efdbafa881c10f89', '172.105.247.100', 1671784886, '__ci_last_regenerate|i:1671784886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39dfa2b92c57918c5f249356bc70339bbb1f2a01', '172.105.247.100', 1671784886, '__ci_last_regenerate|i:1671784886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd179eb5487916167af0b9efeaaffefc50b1085b', '172.105.247.100', 1671784886, '__ci_last_regenerate|i:1671784886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c875e23458afecc368b929cd8004888161f64978', '172.105.247.100', 1671784886, '__ci_last_regenerate|i:1671784886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7412bdc823f42fb78d9f821c060210c197630abb', '172.105.247.100', 1671784887, '__ci_last_regenerate|i:1671784887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccabf7c65c57f7632df65f928f2160de9a099bee', '172.105.247.100', 1671784887, '__ci_last_regenerate|i:1671784887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f5ee760a1fab282008533178f9745acaa0e803', '172.105.247.100', 1671784887, '__ci_last_regenerate|i:1671784887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46c52229cfca1464da9eb10cf9b57655ed4dc53', '172.105.247.100', 1671784887, '__ci_last_regenerate|i:1671784887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28004d1f28ba7fe5da66fac402719bcfd869107b', '172.105.247.100', 1671784888, '__ci_last_regenerate|i:1671784888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa52ce9afa854330e68c543f547dc9a0e5d0f04', '172.105.247.100', 1671784888, '__ci_last_regenerate|i:1671784888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf858312ec1b0145d515da5aa0c80369a81baa90', '172.105.247.100', 1671784888, '__ci_last_regenerate|i:1671784888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb0ab01d976acc62500a5e725f0c7897e79e5087', '172.105.247.100', 1671784888, '__ci_last_regenerate|i:1671784888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce80849bfba2f8da175eefe0e12d94ee436c571d', '172.105.247.100', 1671784889, '__ci_last_regenerate|i:1671784889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c26da8d29c3b5c6464ba90126c73e5ce10d5f443', '172.105.247.100', 1671784889, '__ci_last_regenerate|i:1671784889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec2ab9182559df22b51a5770601c2532427d3ab', '45.120.39.89', 1671787578, '__ci_last_regenerate|i:1671787578;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671785839;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be07b2515279157d1061d872185ee2d47319b340', '31.222.203.2', 1671786129, '__ci_last_regenerate|i:1671786129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be95159b85c90fdb4bed8b00507f63c881d854d8', '31.222.203.2', 1671786129, '__ci_last_regenerate|i:1671786129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bf5c67150bed93331775a5cde0a9b20cbf7b5d1', '31.222.203.2', 1671786129, '__ci_last_regenerate|i:1671786129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade415998f6ba2872723170e72a345ca6dd6c6a6', '31.222.203.2', 1671786129, '__ci_last_regenerate|i:1671786129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4800ef8635729933832d9dd6fa5ae73fcda01fec', '31.222.203.2', 1671786129, '__ci_last_regenerate|i:1671786129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1615f55d074396c35a76160eea16fc96d606a72', '31.222.203.2', 1671786129, '__ci_last_regenerate|i:1671786129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05358db0e084e75351fec53f8aa03c976ba83df', '205.210.31.148', 1671786288, '__ci_last_regenerate|i:1671786288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560289e70d96a8d7a69236db3ab29a0a77d06316', '45.120.39.89', 1671791486, '__ci_last_regenerate|i:1671791486;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671791481;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6302d41da529496a7d3b92eebf6934fafbd13d9f', '31.222.203.2', 1671787937, '__ci_last_regenerate|i:1671787937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc3e4c31359052988f3e355be20e6259b5f34b9', '31.222.203.2', 1671787937, '__ci_last_regenerate|i:1671787937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3b1641c53e899e742671624396176414be3175', '31.222.203.2', 1671787937, '__ci_last_regenerate|i:1671787937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39d331fd1b3f9bd7fab53739d104d8a4695947f', '31.222.203.2', 1671787939, '__ci_last_regenerate|i:1671787939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb662f9ee94122c2e5e7a447ea5d1cbcd5570b5', '31.222.203.2', 1671787939, '__ci_last_regenerate|i:1671787939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1cf2993786626891b9fa15588dd98634818b32', '31.222.203.2', 1671787939, '__ci_last_regenerate|i:1671787939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26243b0ecb44692c86d28a39b244803ac6fe0ed', '31.222.203.2', 1671789727, '__ci_last_regenerate|i:1671789727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7326e0f7fba49e4725bb22467975ec3e10c94a5f', '31.222.203.2', 1671789727, '__ci_last_regenerate|i:1671789727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca21386b7efe90340abac81494bca995de836715', '31.222.203.2', 1671789727, '__ci_last_regenerate|i:1671789727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769916c7cd3175e2b70c848aef22285d7eb69099', '31.222.203.2', 1671789727, '__ci_last_regenerate|i:1671789727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a7269476a9f7124edcf8d82bfbc7f5a66c1e1c', '31.222.203.2', 1671789727, '__ci_last_regenerate|i:1671789727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a15243f28607e5a32ddd997819e79b83e43bda', '31.222.203.2', 1671789727, '__ci_last_regenerate|i:1671789727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cee0a028079a3909985132a91cd46613674fbf1', '172.105.247.100', 1671790282, '__ci_last_regenerate|i:1671790282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ab80fc546405572da285ee89e8cfb911d03480', '172.105.247.100', 1671790282, '__ci_last_regenerate|i:1671790282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456df914e59676441ad0038f2a0a368f0e9392b9', '172.105.247.100', 1671790282, '__ci_last_regenerate|i:1671790282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94bf52dbfdfe32b1b536aab19c6cacbd62a70078', '172.105.247.100', 1671790283, '__ci_last_regenerate|i:1671790283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90471fe5da887dbddc70a452c7739512fff7b978', '172.105.247.100', 1671790283, '__ci_last_regenerate|i:1671790283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e017604bfcbeebab41f97cf3eb665d50dfdaf0b9', '172.105.247.100', 1671790283, '__ci_last_regenerate|i:1671790283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8d94dd3ea9211365bac961191e475c2ccd96ba', '172.105.247.100', 1671790283, '__ci_last_regenerate|i:1671790283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e2658e571fc6aef29abf237c473774c986fea5', '172.105.247.100', 1671790284, '__ci_last_regenerate|i:1671790284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353104b39f45a97b87d1df93ce9e14939bf63694', '172.105.247.100', 1671790284, '__ci_last_regenerate|i:1671790284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1337eba1d7cba019341101861b23534862982a33', '172.105.247.100', 1671790284, '__ci_last_regenerate|i:1671790284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d55d5e7387d61efa6aa24426917cbf436fb086', '172.105.247.100', 1671790284, '__ci_last_regenerate|i:1671790284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebf3c75a993aab48d8a9fc686f52c79d70b7b730', '172.105.247.100', 1671790284, '__ci_last_regenerate|i:1671790284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1658704ef5217677d5c55db728d398c9fcdfe20a', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f1ce4e48755e3a6cb7dbc329b4c25a6713a5648', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f3223130e720225b78680219db1039f35f2cfe', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4733be3f99d59b71c4b562f310fc6d2b62617c8', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4b3d1661140f1b353181d672118c9940354970', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4aaf30478969f5ee683892c6c93ae679c3de75', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b368155a926bebcea86b675f2fb69fc6de50057', '172.105.247.100', 1671790285, '__ci_last_regenerate|i:1671790285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bca3267de47418a80ae65b7ac2aa18c5aa48cae', '172.105.247.100', 1671790286, '__ci_last_regenerate|i:1671790286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9afc2bc02edbd0b66c05ccf38d330855706752', '172.105.247.100', 1671790286, '__ci_last_regenerate|i:1671790286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35aaccfe4cd6d17e64f566659bd04fabb23061ed', '172.105.247.100', 1671790286, '__ci_last_regenerate|i:1671790286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223eec883c928349eeaaba48ed282c582fbb3261', '172.105.247.100', 1671790287, '__ci_last_regenerate|i:1671790287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0cc67a5536d37e21128f1d5adef656be0bc46d', '172.105.247.100', 1671790287, '__ci_last_regenerate|i:1671790287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b86cb53117c9e51757d1825a540dc89915f94d', '45.120.39.89', 1671792064, '__ci_last_regenerate|i:1671792064;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671791487;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564ae16e9997fef5e02d7e39dbb3618a11ac19cc', '31.222.203.2', 1671791528, '__ci_last_regenerate|i:1671791528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bcaf180b516fa130c83745193d1aa67ac4f0cde', '31.222.203.2', 1671791528, '__ci_last_regenerate|i:1671791528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d65d6f602d514cca8375c96ca6677b04fa2b710', '31.222.203.2', 1671791528, '__ci_last_regenerate|i:1671791528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad1ad96d5f1df2c53271ce9b8e6c41bf3541caa', '31.222.203.2', 1671791530, '__ci_last_regenerate|i:1671791530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1cbef88d134f012eb6973e9a9961264a8c9d65b', '31.222.203.2', 1671791530, '__ci_last_regenerate|i:1671791530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf0545875c3b4486078606d2f6cb26664c8a964', '31.222.203.2', 1671791530, '__ci_last_regenerate|i:1671791530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef74fd8ae368cf99095a0d45effede0b85814f57', '45.120.39.89', 1671795731, '__ci_last_regenerate|i:1671795731;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671792327;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c29998726b7f30c26e549d2d41989423907157', '31.222.203.2', 1671793333, '__ci_last_regenerate|i:1671793333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f752d744163288cbedf002fe6a0bc395623e540', '31.222.203.2', 1671793333, '__ci_last_regenerate|i:1671793333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56537e665e66c1ab77672df81e73328f14f3150', '31.222.203.2', 1671793333, '__ci_last_regenerate|i:1671793333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83a0876ab3a912d350b7fb519e78043e0740555', '31.222.203.2', 1671793334, '__ci_last_regenerate|i:1671793334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d8d988d80a5bd74eb6369ead0670929c449607', '31.222.203.2', 1671793334, '__ci_last_regenerate|i:1671793334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60624e14dec615d9cc02ec3d79b3df2d9b354416', '31.222.203.2', 1671793334, '__ci_last_regenerate|i:1671793334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d51c6adaa02b6842ff7f1315818ccf3caf9e900', '172.105.247.100', 1671795085, '__ci_last_regenerate|i:1671795085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d035506a7b8b196b0a415114e3b227cfb7a1e8f9', '172.105.247.100', 1671795087, '__ci_last_regenerate|i:1671795087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fed500f68cfabb86cb680c7e00b3ddd746eaa5d', '172.105.247.100', 1671795087, '__ci_last_regenerate|i:1671795087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37dca4327009cadedea12eaaffc3c95125746ae5', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ecfca006e5df8edca3899a094ccc2c42ce53bf5', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f3e3e50393ed80b6c5db52ac141333e55ee831', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fee0b386bb5770dd49a2f5819d3da1afb76a4dc', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd2b9f80426e1aac84dafe2a1e32646a1896fe6', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054b247e0d87895ae3bf122c2ce5476c5b942e4b', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb01aae1ffe6b9e09d21b3cf6ce146eb6bbef4e', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651bac21769212aa8cfb4df67d7c91a33fd990ac', '172.105.247.100', 1671795088, '__ci_last_regenerate|i:1671795088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad419998da3aeab3baad439b09bdf7b407e1488', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a51fc799a8806ee66a7929dbed629774fd51a6', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c54e090f2b77fd049117b2ed70784393fc42aa', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27fd879dbcd1775a6beec2847e8446e52de0ab4d', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38df2fefa4e40077b07a78823ffbc7a57454795', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9850b6a06eb58c4e5f702b5edd50a48430942a3c', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53cc8b8d31ddc80a84aa2e8e07da89c501e7e611', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6dda830e5dcf0769fe2f39ade889a372e6cdce', '172.105.247.100', 1671795089, '__ci_last_regenerate|i:1671795089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a36e4a81d7ff4621c0173a4aa934af03517b39d', '172.105.247.100', 1671795090, '__ci_last_regenerate|i:1671795090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478e9e724c4abd44d9a369003a3e50da8ab3c544', '172.105.247.100', 1671795090, '__ci_last_regenerate|i:1671795090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef50cb2a83ae52f54ac4bf08e992091717ee812', '172.105.247.100', 1671795090, '__ci_last_regenerate|i:1671795090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd492c966705837611396c41e14ecab0c014e4ca', '172.105.247.100', 1671795090, '__ci_last_regenerate|i:1671795090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d08cb82c768b4a7b58beef4b511525fd9b2c72b', '172.105.247.100', 1671795090, '__ci_last_regenerate|i:1671795090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0c289675679f5a82870ad024c6472a468decb4', '31.222.203.2', 1671795132, '__ci_last_regenerate|i:1671795132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bdf458563c24c4fe8158b44bf3824b731b514cc', '31.222.203.2', 1671795132, '__ci_last_regenerate|i:1671795132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ed649e28acd8b120f25eae281981aa0a260082', '31.222.203.2', 1671795132, '__ci_last_regenerate|i:1671795132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7b368bdd74a383714b725ee3a39625ea8e3ad0', '31.222.203.2', 1671795134, '__ci_last_regenerate|i:1671795134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a26454cf3127be6d01428b1991ec956e4598b37d', '31.222.203.2', 1671795134, '__ci_last_regenerate|i:1671795134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a052810c95d0c675b043af1f58dfb54c3d92269', '31.222.203.2', 1671795134, '__ci_last_regenerate|i:1671795134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('335dd70280f790b1ce73826b04a9b947e039fef3', '45.120.39.89', 1671797670, '__ci_last_regenerate|i:1671797670;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671797563;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cff21838522ce9a3dff31083abbdbadce104c6', '31.222.203.2', 1671796930, '__ci_last_regenerate|i:1671796930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b278ad4a330773b5e3b9b119dc0ce1a524a691da', '31.222.203.2', 1671796930, '__ci_last_regenerate|i:1671796930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e528eb5a0959bd085b1f586d7a9ebd58560695dc', '31.222.203.2', 1671796930, '__ci_last_regenerate|i:1671796930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c19e2403c82b39e8177368a8f6b3c59a7afb80', '31.222.203.2', 1671796930, '__ci_last_regenerate|i:1671796930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc26cffa58bdc82235a598f00dfb90475963ecf', '31.222.203.2', 1671796930, '__ci_last_regenerate|i:1671796930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df50845f048fef3448b99060aca952aeb755e4d0', '31.222.203.2', 1671796930, '__ci_last_regenerate|i:1671796930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76162da2db259a2db50a7562573062817c30fd7', '45.120.39.89', 1671799748, '__ci_last_regenerate|i:1671799748;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671797670;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a08e1f86b06a8acd86fe84e59c067c0cbad82674', '31.222.203.2', 1671798738, '__ci_last_regenerate|i:1671798738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601c4459dba9b795504aa20d13b4b03fd33f816f', '31.222.203.2', 1671798738, '__ci_last_regenerate|i:1671798738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808c5fcd7be624759f3b6b1750a66ec38c50438e', '31.222.203.2', 1671798738, '__ci_last_regenerate|i:1671798738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a76e714ce4d88b673eacb6a11de9313ed428bd7', '31.222.203.2', 1671798739, '__ci_last_regenerate|i:1671798739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c070c286ef10df1967c99b8c3926c0444268fcc4', '31.222.203.2', 1671798739, '__ci_last_regenerate|i:1671798739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3927933687fbc22fdcf5631f7892361e93ebe0c6', '31.222.203.2', 1671798740, '__ci_last_regenerate|i:1671798739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ed62ef1951524a70b853ad898494e26574273e', '45.120.39.89', 1671800147, '__ci_last_regenerate|i:1671800147;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671799808;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2419803988e4ec9e8fe4b9d03025ba37ce05fe3a', '172.105.247.100', 1671799882, '__ci_last_regenerate|i:1671799882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be435be837bd2bdc072b1d88d3a237eee32031d', '172.105.247.100', 1671799882, '__ci_last_regenerate|i:1671799882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a700483139656599bdef1315ff796fdff69d82e2', '172.105.247.100', 1671799882, '__ci_last_regenerate|i:1671799882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e2e448705090caafd7abcf07e90236b04725f41', '172.105.247.100', 1671799882, '__ci_last_regenerate|i:1671799882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37f2edbd82e714a3e2a36428e71ea2e009f97bcd', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4873dc300b83ab2e5bbd05330d1c4be045895515', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d059d1c80c70c978a76a3f9b83d2924b165f1d53', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8790c69829b3cbfe3f19886c403179f9eddbf7', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71c06762b2952a867dba97648a3a310a5a8ffd0', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab3d98e8db7681301f9d9641548c4ca27ec6868', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec0a0476bc5437e4fa8fbdef80c4bfa9b23acdcf', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fde1750334b4cab596c7cbdf7977329e90d089', '172.105.247.100', 1671799883, '__ci_last_regenerate|i:1671799883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf3fbf6f66d3f17e71db8510e622965c95b2d21', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adef4682de251fd554d66402bd71907dde6187ce', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc2ffd8f6015c2b8f25ca5215da8220d85f8710', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e074ccc7d095d543985b912d22d0079e9934c0', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efceb782c373f7983fef1f5c6de8d9bc3675a96', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87637670f222f89c36eff3c45be88c04b2a31780', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3722c915794eb3e72553834049f4077b883eefe', '172.105.247.100', 1671799884, '__ci_last_regenerate|i:1671799884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83799e68871d2e3c10ac6d5758533b30f1dfbc3', '172.105.247.100', 1671799885, '__ci_last_regenerate|i:1671799885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd4847644b21bd02d1dae3db657637a2aefe748', '172.105.247.100', 1671799885, '__ci_last_regenerate|i:1671799885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4e7e4126ab3253327ad7cf93267d1fe108710a', '172.105.247.100', 1671799885, '__ci_last_regenerate|i:1671799885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ddfaacbe24928602aefac8d11f7338b7cb02c4f', '172.105.247.100', 1671799885, '__ci_last_regenerate|i:1671799885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01673eb61da92820ffd837bd17eb16efa9831fd6', '172.105.247.100', 1671799885, '__ci_last_regenerate|i:1671799885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bb419c0fb81cbf409de08e312de3ee5c3f0b60', '45.120.39.89', 1671800725, '__ci_last_regenerate|i:1671800725;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671800173;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84d9ed50d188175aeb423689351e74b54dc15c2a', '31.222.203.2', 1671800549, '__ci_last_regenerate|i:1671800549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab95d02ecee1bc99eaf4af3907c746c2a7f1002', '31.222.203.2', 1671800549, '__ci_last_regenerate|i:1671800549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd77010888d6c7d7e4cae464ba6d77bb831ac6b', '31.222.203.2', 1671800549, '__ci_last_regenerate|i:1671800549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f4d4573b8599263db122a1ac0429e32cc88027', '31.222.203.2', 1671800549, '__ci_last_regenerate|i:1671800549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e85e613f0a3f2e95f936451abded13d8bd1ccb', '31.222.203.2', 1671800549, '__ci_last_regenerate|i:1671800549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d08d890534ae7753a3ad93013308c56ef564bb3', '31.222.203.2', 1671800549, '__ci_last_regenerate|i:1671800549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b38eef960b19b94c3749836d793ba6a80df22d1', '45.120.39.89', 1671801041, '__ci_last_regenerate|i:1671801041;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671800966;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862864c4a82b2a9839fa689b28e5bc44a3ca4512', '45.120.39.89', 1671801765, '__ci_last_regenerate|i:1671801765;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671801754;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0efde329caf596c60677e9996a5723fbd1e249', '45.120.39.89', 1671802569, '__ci_last_regenerate|i:1671802569;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671801765;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89607ef8dab635b4e36ffae9aa46c7cb39af62af', '31.222.203.2', 1671802338, '__ci_last_regenerate|i:1671802338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3252d776c53c43bbb12003dbc628992e115824d1', '31.222.203.2', 1671802338, '__ci_last_regenerate|i:1671802338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22dbbb2decd58e865721b0f091b97893435677c4', '31.222.203.2', 1671802338, '__ci_last_regenerate|i:1671802338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c3436c57de4839a6dd5a0f4da40925cc5f8a11', '31.222.203.2', 1671802340, '__ci_last_regenerate|i:1671802340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c2024337843aceb76bf0517401ea4038720363', '31.222.203.2', 1671802340, '__ci_last_regenerate|i:1671802340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367bfdb9638d6073af221c51bad05621355129f5', '31.222.203.2', 1671802340, '__ci_last_regenerate|i:1671802340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cbcdf05914bc3bd1b95029d721d0cbf498aeb1e', '45.120.39.89', 1671804487, '__ci_last_regenerate|i:1671804487;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671804474;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21b01230d11d6d1ea59f9a16c0c51b9610538391', '31.222.203.2', 1671804132, '__ci_last_regenerate|i:1671804132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c905d270188ceaca11d5eb799a0c4aaa2e900a4', '31.222.203.2', 1671804132, '__ci_last_regenerate|i:1671804132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a410f5f6c8932ef6a91a2943ff2955254468a07', '31.222.203.2', 1671804132, '__ci_last_regenerate|i:1671804132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f4074f6e6408e19fcb8886404560c529cb3bfc', '31.222.203.2', 1671804134, '__ci_last_regenerate|i:1671804134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edee25aefec2817ccea47d739b337eaa7ec9caa3', '31.222.203.2', 1671804134, '__ci_last_regenerate|i:1671804134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d531ff6b8e845a7cdd0b1aed3a0d4168eb714658', '31.222.203.2', 1671804134, '__ci_last_regenerate|i:1671804134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c3596461273c9b4f1c119c52ceb5a764c3acf6', '45.120.39.89', 1671805300, '__ci_last_regenerate|i:1671805300;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671804488;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708527e54d52b6dd055e6e4ac589f03435929670', '172.105.247.100', 1671804682, '__ci_last_regenerate|i:1671804682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7919a496bdf4136ff7197329f7f1c810c9ba9f11', '172.105.247.100', 1671804685, '__ci_last_regenerate|i:1671804685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600acf7bab912166dc01343465e47bd451633c90', '172.105.247.100', 1671804685, '__ci_last_regenerate|i:1671804685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770cb7d67d53269f7c1c339945ba77c85544359b', '172.105.247.100', 1671804685, '__ci_last_regenerate|i:1671804685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def75256fb0d0f8369ca8b13aae454565f1d7fef', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8696db83791a67d9404327d78aabda4a0c17145c', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50639d77783841c0ce82538b42b9adf31d023309', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8477831423d5de318bf6a7fb53ea1f00bf7d451f', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e900b2c77866ff0c08ebc4f9bd257c68e1ceb04', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f0db4e6ecedf9d0db59416c9547281fe3714c1', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4569a28a2a2dde13c4879557ce6d83e09675d055', '172.105.247.100', 1671804686, '__ci_last_regenerate|i:1671804686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd0ccb6a33b576e5b6e0f3867f9c588cfae3474', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78ac03dcaaabf8252b9d139d50ad52819d40303', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67100a49f706bc933e06e4adc5ef1c4d6a5d7f1', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eac147371452fbf8d78cb2fc1adf5d53ce085c3', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42736903047a74ea1d8c8b667afe937d39d594c8', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7df8dcb650aa38681d03e2f6587f8647a781a2', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f72d81c892b0fbc7fa4c0afbae5ee1c7883b36', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd64cfbf0c75e19083276cb9218b4038d3ed1e8d', '172.105.247.100', 1671804687, '__ci_last_regenerate|i:1671804687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69023f18cb52dc707f67cf6088f0eb71178b1d10', '172.105.247.100', 1671804688, '__ci_last_regenerate|i:1671804688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0aedf84f112ec20ded213189282ff98d4057181', '172.105.247.100', 1671804688, '__ci_last_regenerate|i:1671804688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce363955864ff057f5da5651dcd6cd38025d5179', '172.105.247.100', 1671804688, '__ci_last_regenerate|i:1671804688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedd739b29a522d62e1182bfb133fc2b43a691a8', '172.105.247.100', 1671804688, '__ci_last_regenerate|i:1671804688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d48b9f38ccbf495fc378efb01788279cfd7a2e', '172.105.247.100', 1671804689, '__ci_last_regenerate|i:1671804689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8efa255823fac11e3eeefbd03a2161c5ab4a0ea', '198.235.24.185', 1671804727, '__ci_last_regenerate|i:1671804727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e0e26851ccb52aea7caa435e336fc06caaf3cd', '45.120.39.89', 1671805636, '__ci_last_regenerate|i:1671805636;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671805628;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5dd059a964914f7e6b544cbc9f90c003d654a27', '45.120.39.89', 1671805940, '__ci_last_regenerate|i:1671805940;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671805892;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73797051ed5c4913f17ae48762c802da9de6df6', '205.210.31.146', 1671805799, '__ci_last_regenerate|i:1671805799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c3cbf22f577f3265869095a2bd20329b309cff', '31.222.203.2', 1671805931, '__ci_last_regenerate|i:1671805931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60eca222581dc83d4d39403cc38efa46f5ac8fc', '31.222.203.2', 1671805934, '__ci_last_regenerate|i:1671805934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a8b35e69c2c19af345680df39a0c593d52f8ba', '31.222.203.2', 1671805934, '__ci_last_regenerate|i:1671805934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e3f07803060e9ac3ac0cda452c2b1c102cb95a', '31.222.203.2', 1671805934, '__ci_last_regenerate|i:1671805934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2e2392b3b3c6f5219e3bb6c9901c73e1d21d4e', '31.222.203.2', 1671805934, '__ci_last_regenerate|i:1671805934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a3f77264ff1069c6d3403629fdeacab3e2d685', '31.222.203.2', 1671805934, '__ci_last_regenerate|i:1671805934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('badd3b91f6c962ddc8e0821a1aeb116df9224a65', '45.120.39.89', 1671806681, '__ci_last_regenerate|i:1671806681;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671806672;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81332a10bf5c7761d9396a20a17f5d1a2f01ff6c', '45.120.39.89', 1671806985, '__ci_last_regenerate|i:1671806985;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671806876;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fda068ecd91ab1f95f87dfd71fac1ca977657df', '45.120.39.89', 1671807355, '__ci_last_regenerate|i:1671807355;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671807315;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aaebe3a6414c9632b3f5658971b0b6278ab4757', '45.120.39.89', 1671808580, '__ci_last_regenerate|i:1671808580;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671808574;register_id|s:3:\"288\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2022-12-22 20:35:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1494d36a1abb803a5c0f7b16dc44fc2622d2892', '31.222.203.2', 1671807757, '__ci_last_regenerate|i:1671807757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29530692178ef30de29880ee9bc4fb9e29145ce1', '31.222.203.2', 1671807757, '__ci_last_regenerate|i:1671807757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efb6069010da9d59d1be8507ef61c9b147ebb1b', '31.222.203.2', 1671807757, '__ci_last_regenerate|i:1671807757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4500cbe993a235e4be2251693ed29b3dd122db95', '31.222.203.2', 1671807758, '__ci_last_regenerate|i:1671807758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12057e75cd468a6ef3efe5f13c0393a94ca1307', '31.222.203.2', 1671807758, '__ci_last_regenerate|i:1671807758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fdfecdca971499cddb52de4208fe5977c0d4427', '31.222.203.2', 1671807758, '__ci_last_regenerate|i:1671807758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf8d2916c7fba5f930fa0160d4158d68ac66542', '165.227.197.137', 1671808102, '__ci_last_regenerate|i:1671808102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8990e794de77ddc011e8b23fbdd8053d1d573f', '165.227.197.137', 1671808102, '__ci_last_regenerate|i:1671808102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e7f96e82d0a5b1342b142e0b9de0256a3efe87', '165.227.197.137', 1671808102, '__ci_last_regenerate|i:1671808102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a396846a55372dd5caf81fd6a0bf2b63c6b42e', '142.93.49.33', 1671808195, '__ci_last_regenerate|i:1671808195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817a593abe7b6abf5b2d0c4378067f451fb8ba9f', '142.93.49.33', 1671808195, '__ci_last_regenerate|i:1671808195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a350b852554914b97841d254745f53d4f5d640f', '142.93.49.33', 1671808195, '__ci_last_regenerate|i:1671808195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183d556ef47280447b40ceb3829586113a3249b3', '45.120.39.89', 1671808632, '__ci_last_regenerate|i:1671808580;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671771009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671808632;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94fad43e990125221e9b3671b09ce2c73cdf5067', '172.105.247.100', 1671809485, '__ci_last_regenerate|i:1671809485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1874b5ad1362a9c1beed98104f1971312ff51d4f', '172.105.247.100', 1671809486, '__ci_last_regenerate|i:1671809486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8b06a6c704a38b8c603a889e4ed33f46d03541', '172.105.247.100', 1671809486, '__ci_last_regenerate|i:1671809486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38d3e6c2ccbc8e68724240af9454996f95b6a28', '172.105.247.100', 1671809486, '__ci_last_regenerate|i:1671809486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73b837fb0c36c6ededf42332d31932efa2f3075', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94cbaa66214458ca62b7e63c86feb93f60ee4f81', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5e16d854560f0b73ecd72df5c71f75b17146c6', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13e4eefce8d5e7036eb78b3aad3aa5593b5066f', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ccad6a9242ebdd294e8be001b2b1d566803baf2', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53a4007f894bfbbce1d992b1ec7628228ae0d37', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e561a0badd8d85cec1cdc3898c9a0f9c38278a', '172.105.247.100', 1671809487, '__ci_last_regenerate|i:1671809487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86308b7f6fee2e03dc8245dedf6bf688dcea596d', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b1208ecca6f0e5868dd91f2d8c35193ed6e963', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('843e7fea756ad23b39c8eb99f260120ca5538d79', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e105e677e0803ff286cbd40f457eb0da07a40c', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccd5d817d0700c0102f0c29fa447a24b9a8ed4b', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ed273f833609c999fd46cfbd1f4add2e4bb487', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e988c621b2975331678bbb336ef596efdcc4bda0', '172.105.247.100', 1671809488, '__ci_last_regenerate|i:1671809488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7293371f24004c0711eb2649b34dee7a05b531', '172.105.247.100', 1671809489, '__ci_last_regenerate|i:1671809488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32580c8d69a762f1f4073e900f68b8bfb85f461d', '172.105.247.100', 1671809489, '__ci_last_regenerate|i:1671809489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e3b35c30e1f8f600409b9347046e4d7b57bbbc4', '172.105.247.100', 1671809489, '__ci_last_regenerate|i:1671809489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd7a6ccf30f9969e351bc873ddef41639b3690b', '172.105.247.100', 1671809489, '__ci_last_regenerate|i:1671809489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63875d080db8490ed535a4cca154265cf14274bd', '172.105.247.100', 1671809489, '__ci_last_regenerate|i:1671809489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f90d89e40741083dab14bcb7c1d4ed49db411e2', '172.105.247.100', 1671809490, '__ci_last_regenerate|i:1671809490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ab7e92ccd9fb10e7b62a96674e25aee30965fd', '31.222.203.2', 1671809537, '__ci_last_regenerate|i:1671809537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2dd1d8399fbcb3a00491586ba90b1c875cbd48', '31.222.203.2', 1671809537, '__ci_last_regenerate|i:1671809537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c876d7de2939035d141e12381184d17b393df4', '31.222.203.2', 1671809537, '__ci_last_regenerate|i:1671809537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156bed7864abcca44d024ee65733b965a042ca6c', '31.222.203.2', 1671809539, '__ci_last_regenerate|i:1671809539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9659495770a1704e82ab595236f9f20d4d290bf4', '31.222.203.2', 1671809539, '__ci_last_regenerate|i:1671809539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793566de74791e90126a7d254be8b076b4787490', '31.222.203.2', 1671809539, '__ci_last_regenerate|i:1671809539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8b45119771513982427871ee90543f704ee35d', '31.222.203.2', 1671811345, '__ci_last_regenerate|i:1671811345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c23c1a4f065ed53292c397ccc109a41f2b253373', '31.222.203.2', 1671811345, '__ci_last_regenerate|i:1671811345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f5d489d00ef4c260d425759630799e01ab5fb88', '31.222.203.2', 1671811345, '__ci_last_regenerate|i:1671811345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6731b38469f1d63b00c8adcd54d7f795aec516c', '31.222.203.2', 1671811345, '__ci_last_regenerate|i:1671811345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2aa8ecf6672f659a77e4a2da8acaf48023d1cc', '31.222.203.2', 1671811345, '__ci_last_regenerate|i:1671811345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d31bd8a568e0dcd089189c465b87574e5a48650f', '31.222.203.2', 1671811345, '__ci_last_regenerate|i:1671811345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6bb313fd23b76d37c8a1bc2a0bff123464576cd', '31.222.203.2', 1671813161, '__ci_last_regenerate|i:1671813161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71739759b22d9d00dd80f4a0605d7427095850f', '31.222.203.2', 1671813163, '__ci_last_regenerate|i:1671813163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be77a29bcd14542ff7acfc7a9a7f0ce195ec6039', '31.222.203.2', 1671813163, '__ci_last_regenerate|i:1671813163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5e19dc7431cd2b6aa062644de785a64b9905e0', '31.222.203.2', 1671813163, '__ci_last_regenerate|i:1671813163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b851418a2bbc6aab59251c3c7ff4f3d187e2247d', '31.222.203.2', 1671813163, '__ci_last_regenerate|i:1671813163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bbb48790135b3f35f49facf1d6cc3f8f50047fd', '31.222.203.2', 1671813163, '__ci_last_regenerate|i:1671813163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df82a65a6fa3cb55c469fd23d194a946074dab04', '172.105.247.100', 1671813681, '__ci_last_regenerate|i:1671813681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f2f89e0532b4414132de34c521d7410f55af85', '172.105.247.100', 1671813681, '__ci_last_regenerate|i:1671813681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da722889d9572e7aba9c471ba1b90bf5ac0332a', '172.105.247.100', 1671813681, '__ci_last_regenerate|i:1671813681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83880f7a5c9be55605865d2a6d5720cd03fb0e0f', '172.105.247.100', 1671813682, '__ci_last_regenerate|i:1671813682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fd55ef18c805588e55cfd7ed68d6abd5cd7593', '172.105.247.100', 1671813682, '__ci_last_regenerate|i:1671813682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6370a19582b43331dc019d7ff1dbe531d49e7ebd', '172.105.247.100', 1671813682, '__ci_last_regenerate|i:1671813682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321c85ee15202b2ffe17645c655d095d89037b18', '172.105.247.100', 1671813682, '__ci_last_regenerate|i:1671813682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea61e2f945be21b74f1c0aa0e830903de830446b', '172.105.247.100', 1671813683, '__ci_last_regenerate|i:1671813683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee1f07d57a70e2c4d1164a7f040cd7258399125', '172.105.247.100', 1671813683, '__ci_last_regenerate|i:1671813683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9597155042575703a928030a4d9b838ce2d082', '172.105.247.100', 1671813683, '__ci_last_regenerate|i:1671813683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b76fc678032b008ec35e65ee4cba4b4f851984e', '172.105.247.100', 1671813683, '__ci_last_regenerate|i:1671813683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9a670603ba99e758c451f2df3000f7cb807ba1', '172.105.247.100', 1671813684, '__ci_last_regenerate|i:1671813683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288975c7125dac80461a16f1e7a8fc4f2fc11577', '172.105.247.100', 1671813684, '__ci_last_regenerate|i:1671813684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6104e1d2a85e6cfced7302124475a054640162', '172.105.247.100', 1671813684, '__ci_last_regenerate|i:1671813684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6440e8864effa67da5edd99ed614466be2df203', '172.105.247.100', 1671813684, '__ci_last_regenerate|i:1671813684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb67ee6729d43c349061d303374f04581de3df0', '172.105.247.100', 1671813684, '__ci_last_regenerate|i:1671813684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e22ecd98f36880bb0d546f89d5ee137c5bc1c8', '172.105.247.100', 1671813684, '__ci_last_regenerate|i:1671813684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a31efb3da38980d0255e2e9ddbbb787c643383f', '172.105.247.100', 1671813685, '__ci_last_regenerate|i:1671813684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c022e45724bc471f427f8cce9874102bdd913948', '172.105.247.100', 1671813685, '__ci_last_regenerate|i:1671813685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd454211ae213d6c5c7ff9f79c207433188608c1', '172.105.247.100', 1671813685, '__ci_last_regenerate|i:1671813685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb236f92496fcb08a4e13af35f27fb687f60695b', '172.105.247.100', 1671813685, '__ci_last_regenerate|i:1671813685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de0da52efc878da5988d92db605e15687836a89', '172.105.247.100', 1671813686, '__ci_last_regenerate|i:1671813686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c1ff12d61c03078148924624eccaf34057a60f', '172.105.247.100', 1671813686, '__ci_last_regenerate|i:1671813686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ddcf38ae958c092357b809b8640fd821561f0e', '172.105.247.100', 1671813686, '__ci_last_regenerate|i:1671813686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0619b4e79f44b590a876490a60f7ce9b8d440b08', '31.222.203.2', 1671814926, '__ci_last_regenerate|i:1671814926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f35067e38f0f1882897a8c29fba0c35c0abf31', '31.222.203.2', 1671814928, '__ci_last_regenerate|i:1671814928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384a6a01b34781fd1889b0a5400d80069d78e0f6', '31.222.203.2', 1671814928, '__ci_last_regenerate|i:1671814928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d29ab0bf71028e0781557ddf3d7130e2494fd4', '31.222.203.2', 1671814928, '__ci_last_regenerate|i:1671814928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685617e01ee278036613ecf80e8783e7a013b83c', '31.222.203.2', 1671814928, '__ci_last_regenerate|i:1671814928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866218b7409b99d44b89805810e4b6362a34db39', '31.222.203.2', 1671814928, '__ci_last_regenerate|i:1671814928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569af5c1333551d5c14053b91ec45429a564fcad', '31.222.203.2', 1671816731, '__ci_last_regenerate|i:1671816731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1323a1956a5171e374f251a1e9e3560b65074d23', '31.222.203.2', 1671816731, '__ci_last_regenerate|i:1671816731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8c79c28310cf2431004fb860b9d3bde63c66ca', '31.222.203.2', 1671816731, '__ci_last_regenerate|i:1671816731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcdc2d7d8a0d46b726d4456fdecbdb09ddec6656', '31.222.203.2', 1671816733, '__ci_last_regenerate|i:1671816733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9fadd5435ac9c513d09324f1c84c908bfabf2d', '31.222.203.2', 1671816733, '__ci_last_regenerate|i:1671816733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ff4d1d516d4005e55fb49113ea3dcbf4efd7b7', '31.222.203.2', 1671816733, '__ci_last_regenerate|i:1671816733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7b15529a770db205c6c59b0bbd1b9f5b05691c', '31.222.203.2', 1671818535, '__ci_last_regenerate|i:1671818535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea29a84bb5bceefdb8874a3eb29f71e650f430d0', '31.222.203.2', 1671818535, '__ci_last_regenerate|i:1671818535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0291474c7e7826028fa02977256b1e3072ca0126', '31.222.203.2', 1671818535, '__ci_last_regenerate|i:1671818535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa615613d7e6a266b2f1b1940104cf28584505c7', '31.222.203.2', 1671818537, '__ci_last_regenerate|i:1671818537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ec7a4b93d6610aa42d87e29475d59fc5843a6fd', '31.222.203.2', 1671818537, '__ci_last_regenerate|i:1671818537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa321aae870abef156d8c4eba73311bcc7c9ff9a', '31.222.203.2', 1671818537, '__ci_last_regenerate|i:1671818537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e83ab5d77e86a6409febcd9d431b96c21629c67', '172.105.247.100', 1671819082, '__ci_last_regenerate|i:1671819082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3bda4dc648bbfe1f139e5931b3b490d70baa453', '172.105.247.100', 1671819083, '__ci_last_regenerate|i:1671819083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f64c92e5d62c22053810302e8424d46f8c60652', '172.105.247.100', 1671819083, '__ci_last_regenerate|i:1671819083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145cc4707f3e0940aed2cfa3da7a8d700b796bcb', '172.105.247.100', 1671819083, '__ci_last_regenerate|i:1671819083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4b686d28001feae759df7075d9dec191381655f', '172.105.247.100', 1671819083, '__ci_last_regenerate|i:1671819083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1497167627a3367a60e7c2d709ee34c2b874ec00', '172.105.247.100', 1671819084, '__ci_last_regenerate|i:1671819084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39762d59d438c3b02c0124197706163f9871042', '172.105.247.100', 1671819084, '__ci_last_regenerate|i:1671819084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9322790ef718ac32d5439098895fbde941d0964f', '172.105.247.100', 1671819084, '__ci_last_regenerate|i:1671819084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e127ec8271fd9cb8aee056d7292355277bfbdace', '172.105.247.100', 1671819085, '__ci_last_regenerate|i:1671819085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1107e80f159f3e8f3fd712d0cd13c44e478cc5e', '172.105.247.100', 1671819085, '__ci_last_regenerate|i:1671819085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9b570a4b86502806a4980ed1eb49c87c0a45a8', '172.105.247.100', 1671819085, '__ci_last_regenerate|i:1671819085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e658cc705ba1c17f4d8cddf95c047911ba7b0cfc', '172.105.247.100', 1671819085, '__ci_last_regenerate|i:1671819085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c37bbb9c6917b1a2e0bd714549f180616cb488e', '172.105.247.100', 1671819087, '__ci_last_regenerate|i:1671819087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501e60a91eca965cb05791c27baddd14ba84043f', '172.105.247.100', 1671819087, '__ci_last_regenerate|i:1671819087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2751c1b2ee2d3033fcee3ac5c0822e47619781a2', '172.105.247.100', 1671819087, '__ci_last_regenerate|i:1671819087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebdb07164a6b1b9bd3b258d7ceab1e1fa0a1fcac', '172.105.247.100', 1671819088, '__ci_last_regenerate|i:1671819087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06d1f69fed3262f2db7a364f97d2971aa918f8db', '172.105.247.100', 1671819088, '__ci_last_regenerate|i:1671819088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbab545dcbe4cfe162aa0858170f084c1e40cb1c', '172.105.247.100', 1671819088, '__ci_last_regenerate|i:1671819088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a8c0f477530936da624144ad97054039d1b3a8', '172.105.247.100', 1671819088, '__ci_last_regenerate|i:1671819088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008c75b0877e29db867b388efb5bc237d898723c', '172.105.247.100', 1671819089, '__ci_last_regenerate|i:1671819088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917ad1d073696dc9a49afaf07626d15185c3b733', '172.105.247.100', 1671819089, '__ci_last_regenerate|i:1671819089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2028e976f1f5ca622a0e3a597c500cd9c5de549a', '172.105.247.100', 1671819089, '__ci_last_regenerate|i:1671819089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5532daafbed654760daa8be2f39ebe4799c151', '172.105.247.100', 1671819089, '__ci_last_regenerate|i:1671819089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2357012115b316e4032332267ea6b505e2ba17e', '172.105.247.100', 1671819090, '__ci_last_regenerate|i:1671819090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088e29a38aed76c6ce575fdb021405a07ee7cb27', '31.222.203.2', 1671820329, '__ci_last_regenerate|i:1671820329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a3b5f020b44ae2a420452196ac2f1b477adb85', '31.222.203.2', 1671820329, '__ci_last_regenerate|i:1671820329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061af712b40b79fb2150bf5859f3f8f71f769ec7', '31.222.203.2', 1671820329, '__ci_last_regenerate|i:1671820329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba1c497092fba2f4a8bfde8c2fb253e11d3dbc11', '31.222.203.2', 1671820330, '__ci_last_regenerate|i:1671820330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae0f3c20a859693f51fd7f041d44f40f5366cbf3', '31.222.203.2', 1671820330, '__ci_last_regenerate|i:1671820330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f2136673109f6c70438832a51d0f416291aa2c', '31.222.203.2', 1671820330, '__ci_last_regenerate|i:1671820330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae6bb6fd111665fa823430534ddf829ca84f94b', '198.235.24.3', 1671821319, '__ci_last_regenerate|i:1671821319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be018f53a1e5bf58de37f8a519299ebb7c7c25d0', '31.222.203.2', 1671822128, '__ci_last_regenerate|i:1671822128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52af3cc69b6c52bcb861e199bb212f5f1edeb9ea', '31.222.203.2', 1671822128, '__ci_last_regenerate|i:1671822128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d774697a606205eab6912fd99be82039ec716f', '31.222.203.2', 1671822128, '__ci_last_regenerate|i:1671822128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37da928d2a6a69c00a259b8ab077dd218214ac03', '31.222.203.2', 1671822128, '__ci_last_regenerate|i:1671822128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f77d2c62ec1808b1dde2ce0eef863889e142672', '31.222.203.2', 1671822128, '__ci_last_regenerate|i:1671822128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b8461bd5462df215f319b41eb6c051081eb377', '31.222.203.2', 1671822128, '__ci_last_regenerate|i:1671822128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df883da4f5dedb6b3dd95b331ae4d2e39a58889', '31.222.203.2', 1671823932, '__ci_last_regenerate|i:1671823932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f64ae8df5ec897d29ee518b042401f4404168ec', '31.222.203.2', 1671823932, '__ci_last_regenerate|i:1671823932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9b71f17fd37a4a37719910b0f8c1124b016466', '31.222.203.2', 1671823932, '__ci_last_regenerate|i:1671823932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cea68b3f58c02d6b1a545a932afc392a29519d5', '31.222.203.2', 1671823932, '__ci_last_regenerate|i:1671823932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3411058efc221b660fea8069fe6dcaf52aa5cd', '31.222.203.2', 1671823932, '__ci_last_regenerate|i:1671823932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8c20249a9fe03291538bd88ff584ce39e0b0cf', '31.222.203.2', 1671823932, '__ci_last_regenerate|i:1671823932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfbe5eaafe526e5ddbb5ef15ea34d0bd02136131', '172.105.247.100', 1671824483, '__ci_last_regenerate|i:1671824483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa562ed21c5da4fa6805385b11e02895cfec3c1', '172.105.247.100', 1671824483, '__ci_last_regenerate|i:1671824483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cc3b19d6a0ee4edd332913996c00364d3aaa46', '172.105.247.100', 1671824483, '__ci_last_regenerate|i:1671824483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ed81d515e0ff416d804f5affe30126017f830f', '172.105.247.100', 1671824483, '__ci_last_regenerate|i:1671824483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6837be5c3bd28ea18948c0fe404ce8c7d1bd16c', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6657f680f1a6d54b40502aa310880660e519c7a1', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6271ceb3423a280608c92cc4114d0e4f683e9ca4', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fffa150ec51de703470209c9500ec36a4aef789', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ad3e8e1efebb501438379b86580ac65d730aa7', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef8b0bb3af5106b123e6287789bb43ae11ef75b', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93376407a6c4ac2a44d2a7cda13285707087d754', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d6c41c3cefe27ae98e46b8ebf44aaa6f16f4631', '172.105.247.100', 1671824484, '__ci_last_regenerate|i:1671824484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d171e9cfbcd09365344231e39f18469c3b83a022', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4635d6900c7f7c615259d488b572b005bacf7c04', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e259002c3295d674586a7675a1f56ec8ec844581', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75944832da31cf9852fb82f07805f119ee7e1667', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f29a70a786ed31ff7013bd81239734bb25c5715', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825d8ec70b827b513c971be2a72070129b73970e', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15283a2eede3b32347a369cd258ae444cc6cfcc5', '172.105.247.100', 1671824485, '__ci_last_regenerate|i:1671824485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557c3808f2c0b705b520924157ea4909d1029781', '172.105.247.100', 1671824486, '__ci_last_regenerate|i:1671824486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd90fc2be9f6c310a3e62c3266f0454f3ef79913', '172.105.247.100', 1671824486, '__ci_last_regenerate|i:1671824486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2395102471d69088320b89619a2853d9b2e67a72', '172.105.247.100', 1671824486, '__ci_last_regenerate|i:1671824486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c7f5de8a963a753d7e8c1ab8dda634cf561862', '172.105.247.100', 1671824486, '__ci_last_regenerate|i:1671824486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a0d96b794f4584786cfa71770cb5bfc6865c50', '172.105.247.100', 1671824486, '__ci_last_regenerate|i:1671824486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0055a22ad27f87274406ae7b89905b040ec02e9d', '31.222.203.2', 1671825728, '__ci_last_regenerate|i:1671825728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c74a1fbdbbb0f54e4e41f35dd473117c22bc960', '31.222.203.2', 1671825728, '__ci_last_regenerate|i:1671825728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c282720c0d1ffd1b6cdffe239f935941ae85fd0', '31.222.203.2', 1671825728, '__ci_last_regenerate|i:1671825728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218a6eef5ea6b282ba0758635856acb829997918', '31.222.203.2', 1671825728, '__ci_last_regenerate|i:1671825728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6118a51020730c0d3bda2bc6d71a4d7184fb42', '31.222.203.2', 1671825728, '__ci_last_regenerate|i:1671825728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6113cb91d33e822979b7bf1705b36059d62f4828', '31.222.203.2', 1671825728, '__ci_last_regenerate|i:1671825728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e737b2a8707bb30df4c432632c803cfc72cdef', '31.222.203.2', 1671827530, '__ci_last_regenerate|i:1671827530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d935e991ff0208034a18547967357045369ffb', '31.222.203.2', 1671827530, '__ci_last_regenerate|i:1671827530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05b24ed5db42cc0d3a1c56fe1c684d236c43946', '31.222.203.2', 1671827530, '__ci_last_regenerate|i:1671827530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc14b3adc6ddfab9b17d11680169f7da55835a0', '31.222.203.2', 1671827530, '__ci_last_regenerate|i:1671827530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52050a247e0919b3a2377fc01b28182227d0f723', '31.222.203.2', 1671827530, '__ci_last_regenerate|i:1671827530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031967b5caa2b505299d16d73c85f97f572fc874', '31.222.203.2', 1671827530, '__ci_last_regenerate|i:1671827530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e241ec83aa40ab9016b6cbae4d31fe58a175b6', '172.105.247.100', 1671828685, '__ci_last_regenerate|i:1671828685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622c7ff10a5efc3e04f65bc22cc5c06e7641458f', '172.105.247.100', 1671828686, '__ci_last_regenerate|i:1671828686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ddf56b660350f39207d3075769b0a4c1784388', '172.105.247.100', 1671828686, '__ci_last_regenerate|i:1671828686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750e7df1b9ac9251753cbb4d69d4e19aab3ed00e', '172.105.247.100', 1671828687, '__ci_last_regenerate|i:1671828687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d965a0d1b26f0207bd880dc9f4b4473b46ffe610', '172.105.247.100', 1671828687, '__ci_last_regenerate|i:1671828687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629b0fdaba535695377d3065c0e346538c992894', '172.105.247.100', 1671828687, '__ci_last_regenerate|i:1671828687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb14d707376ea988621d3e6153ebf89a0058ff9', '172.105.247.100', 1671828687, '__ci_last_regenerate|i:1671828687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919f8c944c7ef9f47bae1d86f8ad92e762e6fe5e', '172.105.247.100', 1671828687, '__ci_last_regenerate|i:1671828687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d897c9ce36967aa11abd8e69b4b659dfeacb9de4', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e1e6976e31d3690074532c2606e66bdeafc057', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('504f3df3fd33ebb4085ce523fdcf1e9f3390ee98', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0c7736091fc725e94418d022dcc2e1b7fe250b', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac2d598a70fa3a36be95bf9845979c4f58330ec', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beae96859ef230639ef752fce4b7a6bc638447c5', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215b01e8a8de75ce25bda59f85d98a8bbd63a895', '172.105.247.100', 1671828688, '__ci_last_regenerate|i:1671828688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22777b979fa61891652e26ba1f57a15d144517a', '172.105.247.100', 1671828689, '__ci_last_regenerate|i:1671828689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4bdfd38ff37b778fcd98c2eab66d7192e50b29f', '172.105.247.100', 1671828689, '__ci_last_regenerate|i:1671828689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c5acc76885453651e07ddab023642e82f445be3', '172.105.247.100', 1671828689, '__ci_last_regenerate|i:1671828689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a8c45d8a3e52bde1cee1520effcf2eb2183dd9', '172.105.247.100', 1671828689, '__ci_last_regenerate|i:1671828689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe6c6ddad6b27e69ddb1612ecec547fecf61e0c', '172.105.247.100', 1671828689, '__ci_last_regenerate|i:1671828689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1a31e0a42bfdd5dfd11f097f38d5d6f00c0f31', '172.105.247.100', 1671828689, '__ci_last_regenerate|i:1671828689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3fdc1dd7ecb9be065ac693242b3355508a7c254', '172.105.247.100', 1671828690, '__ci_last_regenerate|i:1671828690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ed2737cb4fa84b948339cf0180533aba2f5a2b', '172.105.247.100', 1671828690, '__ci_last_regenerate|i:1671828690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86bcf6e04016e26e86fe85ef6be37f1aef17224', '172.105.247.100', 1671828690, '__ci_last_regenerate|i:1671828690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114426007802467b94ac44a050b4743b94d763e8', '31.222.203.2', 1671829331, '__ci_last_regenerate|i:1671829331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936173720cfcb315ec87d031c2a085286b803824', '31.222.203.2', 1671829331, '__ci_last_regenerate|i:1671829331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04c8879fa357f7d7fca38e49572daa3a2379921', '31.222.203.2', 1671829331, '__ci_last_regenerate|i:1671829331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ccf8061cffa31861d109bc88d44c0423c976fb', '31.222.203.2', 1671829331, '__ci_last_regenerate|i:1671829331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e83745708683db97c9037e52ea9a260bf04418', '31.222.203.2', 1671829331, '__ci_last_regenerate|i:1671829331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be294075bcc234efca9a4a52d9720e53918b918', '31.222.203.2', 1671829331, '__ci_last_regenerate|i:1671829331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ed3bacd70c297b9bc3a347e9e244d17240cfd2', '31.222.203.2', 1671831130, '__ci_last_regenerate|i:1671831130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdaf226bf31164b73b19db88815cedaf3e86efb5', '31.222.203.2', 1671831130, '__ci_last_regenerate|i:1671831130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503d68e1c70bc15d87f1bd1e838174b54ac00f85', '31.222.203.2', 1671831130, '__ci_last_regenerate|i:1671831130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce88017e67649d0d761f3ef831005751e82bb76', '31.222.203.2', 1671831130, '__ci_last_regenerate|i:1671831130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd2cc3be6aea7686e5a72dc522423f3bab4151a', '31.222.203.2', 1671831130, '__ci_last_regenerate|i:1671831130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4eaf32822e7cb0438c11fb81f450279f0980fa7', '31.222.203.2', 1671831130, '__ci_last_regenerate|i:1671831130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0509f1c4ece3a11ee2111f105dc0355c4988dc7', '31.222.203.2', 1671832929, '__ci_last_regenerate|i:1671832929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1edfa7bf553fc6aa290b88fc896271fb8d6460f6', '31.222.203.2', 1671832929, '__ci_last_regenerate|i:1671832929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ebe858803d8e14aca3433bc89f92d071caa97c9', '31.222.203.2', 1671832929, '__ci_last_regenerate|i:1671832929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93607e5f1233c41e5b017ffa3563f9b0750f494d', '31.222.203.2', 1671832931, '__ci_last_regenerate|i:1671832931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bd4c73a502043e1e96a9ed37c0d8a8af61dfd1', '31.222.203.2', 1671832931, '__ci_last_regenerate|i:1671832931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78900b85f79d16d172c9406fab8e0c4f62155cc', '31.222.203.2', 1671832931, '__ci_last_regenerate|i:1671832931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2137c642d8405dab2e69e6075d0d67f5e1ab0910', '172.105.247.100', 1671833484, '__ci_last_regenerate|i:1671833484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6c32041f166e611bad60dfa198d1bf43f53011', '172.105.247.100', 1671833485, '__ci_last_regenerate|i:1671833485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964e28a293622743434bbca563a8eb20d42d0e74', '172.105.247.100', 1671833486, '__ci_last_regenerate|i:1671833486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebe149ec7a99640eb8560be052f19f1254172c2', '172.105.247.100', 1671833486, '__ci_last_regenerate|i:1671833486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10fd2336df836adabd392a26d3210a00d77879f', '172.105.247.100', 1671833486, '__ci_last_regenerate|i:1671833486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588e893b65d42d16c9ef4557b65bd0ab14a99354', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a739e8f1bd317c545dcf33d7f1c64aade0baf46', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5cf776ca9756e6030d78cc409c2f27fc2a5c91c', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f09faa260d474d5bf4236682141d83f7934b9b9', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce7792ae9245c6eaba22bec8e1688d6f34f262c5', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72257cd2bc5a7dcd5e3f496d3989443b9bcdf40c', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f77b956411ee783d5d1eb6e1f9b7ee3b5862448', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26e56a59ccd30ee59bf4dbaf82a7b53e591d20a7', '172.105.247.100', 1671833487, '__ci_last_regenerate|i:1671833487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4847023671262a4abc2c25f3ede97d65fb591d7e', '172.105.247.100', 1671833488, '__ci_last_regenerate|i:1671833488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b95b773d03ec7036a2f4c3228bbc3d352495bf9', '172.105.247.100', 1671833488, '__ci_last_regenerate|i:1671833488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2efa9fca102e9774ee25aa32fdc9309a6f2eb3b', '172.105.247.100', 1671833488, '__ci_last_regenerate|i:1671833488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db42cf8b0bdd3095e90c6f7e6922fc9d977a2693', '172.105.247.100', 1671833488, '__ci_last_regenerate|i:1671833488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ccaac9e47d56a77a3a534ea167e9a91d653049', '172.105.247.100', 1671833488, '__ci_last_regenerate|i:1671833488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5335a1446aaf27c49884e7b06f4917d8f3744b', '172.105.247.100', 1671833488, '__ci_last_regenerate|i:1671833488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da39218bab84623403e880ec69e8f47d01520ed5', '172.105.247.100', 1671833489, '__ci_last_regenerate|i:1671833488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f60ad154f7462e637a8cd6c469702bb1f6e148e', '172.105.247.100', 1671833489, '__ci_last_regenerate|i:1671833489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84464ef552229947d7f5a4ab68c68e620d8931ca', '172.105.247.100', 1671833489, '__ci_last_regenerate|i:1671833489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0d793a3cfeed786b07bc987850b776be33dd6a', '172.105.247.100', 1671833489, '__ci_last_regenerate|i:1671833489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a06012e47380de82572c1e4a7f5614a535dbe452', '172.105.247.100', 1671833489, '__ci_last_regenerate|i:1671833489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83800472f02ce2d4e75d8eb0f9ceefc76c8e6eb1', '31.222.203.2', 1671834732, '__ci_last_regenerate|i:1671834732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38986402c6e80257b2eaf6d8182d668b7ab7141', '31.222.203.2', 1671834732, '__ci_last_regenerate|i:1671834732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996e75af6557003784ff689aaadd3814cbc6bcc5', '31.222.203.2', 1671834732, '__ci_last_regenerate|i:1671834732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65e6d7439bc1a34acb2221281551d973c75f6e5f', '31.222.203.2', 1671834732, '__ci_last_regenerate|i:1671834732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cfe992f86d81f4489ebcf0873b81dfdbc50851c', '31.222.203.2', 1671834732, '__ci_last_regenerate|i:1671834732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d9dd9f5ca2f497837f0490a5dad9634e5a832d1', '31.222.203.2', 1671834732, '__ci_last_regenerate|i:1671834732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96fb2e2f62d40308ec87285e96aba2769ec97ad', '31.222.203.2', 1671836533, '__ci_last_regenerate|i:1671836533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8397ce55a4651d5ffea8ee6c6a4e1ddf17972cfd', '31.222.203.2', 1671836533, '__ci_last_regenerate|i:1671836533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c2a28f230860c539aaa6e5635f62af68209ed0', '31.222.203.2', 1671836533, '__ci_last_regenerate|i:1671836533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65da97d82a4aea9b93a8c14adc928202331220bd', '31.222.203.2', 1671836534, '__ci_last_regenerate|i:1671836534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f035682d7840366681e570353044563d2ce22b', '31.222.203.2', 1671836534, '__ci_last_regenerate|i:1671836534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1117e0e87e4b7814f99729c160a9c43c2b26be11', '31.222.203.2', 1671836534, '__ci_last_regenerate|i:1671836534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b60a1bdd458e8a3f45482d5fa73e7e83e988aa', '31.222.203.2', 1671838334, '__ci_last_regenerate|i:1671838334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b25888f0250e8136ce892e02034a4b2eb755ec', '31.222.203.2', 1671838334, '__ci_last_regenerate|i:1671838334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08c2a4cfac9bdec4726e4b5bb560e8ad2e001f4', '31.222.203.2', 1671838334, '__ci_last_regenerate|i:1671838334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee50255a59ec5c1ae549a46719925a7ca189e9a9', '31.222.203.2', 1671838336, '__ci_last_regenerate|i:1671838336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de055a37a630a0f7f40a9808297a3d99f497a507', '31.222.203.2', 1671838336, '__ci_last_regenerate|i:1671838336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6cfc8082fbf0ba9700be9c4117661434fc4547', '31.222.203.2', 1671838336, '__ci_last_regenerate|i:1671838336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47b6e1a6aa0200aa28482bae6bfe9e59bfd6cea', '147.78.47.249', 1671838526, '__ci_last_regenerate|i:1671838526;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd96129fad861d5b9ee6e6b7d2ffedbe6033cb7', '147.78.47.249', 1671838528, '__ci_last_regenerate|i:1671838528;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b8ab6c483a9aa7f63ac4b66ef11183a257dd5a3', '147.78.47.249', 1671838531, '__ci_last_regenerate|i:1671838531;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c029d82ab296c6e20b949d2218580f6e532ad2', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd9c0f79a20d648daa0dc98fe1d92211a02e06b', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32e5b69b88ff35ae1444e955b75105ea26d4b319', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fa8e8f8f16a0850334ed779c360b9a60cd040c2', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af3f8358fc274160155b622078fbc062b280d17d', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aca081a766a4acc80549acbc4d2a06adea12946', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a7e9acb2adfddab351b7c4f867878d09e1816e', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d602596e240582ed41e7370c027a5e14ff637f0e', '172.105.247.100', 1671838878, '__ci_last_regenerate|i:1671838878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80eeb309f24b0d1528c296f0cea95db64ae6ae9f', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91017d0bc87bd5d6674bb83d4472f495ef869a43', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5385252753f28378fa67d5f3ca5e24cb4160a8', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44f07d675fe30cfbcd20a759c5ce3ab95d8f3ee', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29d9f9ed14c1a54e42dd0900242f3c523b7ae42', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('226973301919a42000ccfb0abac84e6dea530594', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7a6bf4a9d25af209d53753231e157f1054aec8', '172.105.247.100', 1671838879, '__ci_last_regenerate|i:1671838879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4153b6f18eeae74f92eb7eca2a4af2d9c187fe3', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010723f2dc78a4727c2c3a822722b5c4ddbaeadc', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce58d7079357437003e68a52d837a4eb8a0d6a3', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27d2140f9745ed86648ed4e8f9e77856d3ec19f', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c11342ef7f9409e5c0fb392c398a71bc733ed9', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9693a5433e7238ba0e4db57d4c914c21689fff7', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e078b37a1dd3ec7420391b9ea4e3e7d4e3f199', '172.105.247.100', 1671838881, '__ci_last_regenerate|i:1671838880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d1a2480ecaa9573663a4f2857fff105018e8c6e', '172.105.247.100', 1671838880, '__ci_last_regenerate|i:1671838880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5440cad557c1495cce1fe79229c120cc0f29b89a', '172.105.247.100', 1671838881, '__ci_last_regenerate|i:1671838881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2761b3d1f3e9886dd2f24cd7b94941bd22b20c38', '31.222.203.2', 1671840130, '__ci_last_regenerate|i:1671840130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd87814d2a583ef5b914d424a071ac1080fd191', '31.222.203.2', 1671840130, '__ci_last_regenerate|i:1671840130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5396a1e38dc1599d39c4373ac9ed51222ea8edc5', '31.222.203.2', 1671840130, '__ci_last_regenerate|i:1671840130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c07791af4ad316a382cf43866abefcb60c899e', '31.222.203.2', 1671840130, '__ci_last_regenerate|i:1671840130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9e5e5167ce6cc81e5addee3ce81de0a814bfb3', '31.222.203.2', 1671840130, '__ci_last_regenerate|i:1671840130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cc5f8fa427cd9050aa9a48a32751cf1674c9cb', '31.222.203.2', 1671840130, '__ci_last_regenerate|i:1671840130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abfa97ff4e7f62325ab8b8b215ec6d43f63696dd', '31.222.203.2', 1671841935, '__ci_last_regenerate|i:1671841935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d5c5eb223aecfbf919846f8baef2d3d1e4982f', '31.222.203.2', 1671841935, '__ci_last_regenerate|i:1671841935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ab23450e0338846c614e4899babaf8bb912f3b', '31.222.203.2', 1671841935, '__ci_last_regenerate|i:1671841935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7889884954afd142ad393c8b89bfb575c88b722e', '31.222.203.2', 1671841937, '__ci_last_regenerate|i:1671841937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ace4fff499fe90f6aa477220edc15d0f9a0b2c', '31.222.203.2', 1671841937, '__ci_last_regenerate|i:1671841937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83a3f6550d75d9af59cb1f1c7d802632c15363e', '31.222.203.2', 1671841937, '__ci_last_regenerate|i:1671841937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df645337efd702f876e6590d712621e2e9dca7f', '31.222.203.2', 1671843729, '__ci_last_regenerate|i:1671843729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076ebaa27dc14ac00646e708db56d608e38fced7', '31.222.203.2', 1671843729, '__ci_last_regenerate|i:1671843729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f2dfc6c01bf17063f59cbe9b4fe41b02bcf446', '31.222.203.2', 1671843729, '__ci_last_regenerate|i:1671843729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e50b982a2d96ad80f6bd8b7a0a753949bdeaef', '31.222.203.2', 1671843729, '__ci_last_regenerate|i:1671843729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea537358689f681f8b4014598f1a5333c77ca41a', '31.222.203.2', 1671843729, '__ci_last_regenerate|i:1671843729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45897c04ad26e28cf8a330418facc0a0727817b7', '31.222.203.2', 1671843729, '__ci_last_regenerate|i:1671843729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e304cb7fce3adb81365b2e7846a1c913ca3b48ae', '172.105.247.100', 1671844285, '__ci_last_regenerate|i:1671844285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b69b3e02e38d07b7ada6d17a7430eed1b6be5c6', '172.105.247.100', 1671844287, '__ci_last_regenerate|i:1671844287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9836619a645cce722e619aef4eb414b06306e163', '172.105.247.100', 1671844287, '__ci_last_regenerate|i:1671844287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c5c025808fa3fcae1b324772ce16d57824f0c2', '172.105.247.100', 1671844287, '__ci_last_regenerate|i:1671844287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30fa94057eed06ccb2ff59a5db39dbffb2c35fb2', '172.105.247.100', 1671844287, '__ci_last_regenerate|i:1671844287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bde56b3e62cc431dedee1cbb7242744b221d5ae', '172.105.247.100', 1671844287, '__ci_last_regenerate|i:1671844287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14b94a2995ac00a68dff834e3e779d104792384c', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686333198cae58f1d75c5ad86f593e5aba674b79', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a668b1f47cc39f59c77858291f042045de67a594', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ad6915971bc84efa8c0735929b67cb836b7bee', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da7259f582984ea1a617f2bdb0c9803deceed0e', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74496bb36446e05a74def31283c2783b4b521de5', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c38844229af49321c58303a60e36561094151dc', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c160c6737d81f3ed46f00315551fff44b5b2db', '172.105.247.100', 1671844288, '__ci_last_regenerate|i:1671844288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e3f41b763f1fc2ee2143214b06af716070cfc0', '172.105.247.100', 1671844289, '__ci_last_regenerate|i:1671844289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2c57cba7acc752de7e50bc8e7337de2f8371ce', '172.105.247.100', 1671844289, '__ci_last_regenerate|i:1671844289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076ca19f8304f3a6736c03398fa054bd25b2bd18', '172.105.247.100', 1671844289, '__ci_last_regenerate|i:1671844289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04a8576f664255009d2e34e370b3ca325d5461a', '172.105.247.100', 1671844289, '__ci_last_regenerate|i:1671844289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e4f65e63fc4ceb609fde4dc82c8a0875680d49', '172.105.247.100', 1671844289, '__ci_last_regenerate|i:1671844289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3572a79f4ba134a0c283256e8cbab634745966a', '172.105.247.100', 1671844289, '__ci_last_regenerate|i:1671844289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a452bfca7b88d32c750100290646b20e60e85c5', '172.105.247.100', 1671844290, '__ci_last_regenerate|i:1671844290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb343dc1191973c40de963b814966cfad5ea7e37', '172.105.247.100', 1671844290, '__ci_last_regenerate|i:1671844290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15c5162ba0c45cd38e8d89408668594f8ca39a9', '172.105.247.100', 1671844290, '__ci_last_regenerate|i:1671844290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2293e9a7b245e563aae61df6f3ccec30500546a0', '172.105.247.100', 1671844290, '__ci_last_regenerate|i:1671844290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62b8a4397059aa52cb4003986e1c9280b3965c59', '31.222.203.2', 1671845534, '__ci_last_regenerate|i:1671845534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36273aac483a55913d7cfd634db3881d841564d', '31.222.203.2', 1671845534, '__ci_last_regenerate|i:1671845534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883bde94c4a399b51809f3f78f8a54a52e093411', '31.222.203.2', 1671845534, '__ci_last_regenerate|i:1671845534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b4b2a8ff31fb1ec82cf54694648de8e0708924', '31.222.203.2', 1671845536, '__ci_last_regenerate|i:1671845536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897ba7519e6478b834096115830f3081badc9415', '31.222.203.2', 1671845536, '__ci_last_regenerate|i:1671845536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52c3d0e46ede6030f0a0cddefc8949fd9637cd5', '31.222.203.2', 1671845536, '__ci_last_regenerate|i:1671845536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529aeb48064c53bdf173f4904ae80fcd6270ffd8', '31.222.203.2', 1671847340, '__ci_last_regenerate|i:1671847340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad757b5cb8e1a976af8a36b0d0b9761aa9fb7559', '31.222.203.2', 1671847340, '__ci_last_regenerate|i:1671847340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36067f9fc6b3258ec19d1bef2b2c4930f115cf1c', '31.222.203.2', 1671847340, '__ci_last_regenerate|i:1671847340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e949e16548fb00af36980d02b1be2d61e36d952d', '31.222.203.2', 1671847342, '__ci_last_regenerate|i:1671847342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6aa60054ac3bd299bcdfe0a0d3f044a3d71cffc', '31.222.203.2', 1671847342, '__ci_last_regenerate|i:1671847342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bae0e8f1d4da51fdc82c438f73beb92ddbe4921', '31.222.203.2', 1671847342, '__ci_last_regenerate|i:1671847342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817a4a11f657a64776019061bce03c8cf400fce0', '198.235.24.44', 1671848153, '__ci_last_regenerate|i:1671848153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19842e210a5f8834e2830b98c57fdaf35f433a51', '198.235.24.44', 1671848155, '__ci_last_regenerate|i:1671848155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e23a9f7b785e4b26f4f1b8b3deb6e15f2f4ac22', '198.235.24.44', 1671848155, '__ci_last_regenerate|i:1671848155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af99860bcba91c3400d0b2a5c8719afc8932fe49', '31.222.203.2', 1671849135, '__ci_last_regenerate|i:1671849135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f36072b1bb7b96f632078a382452f5363f5a6c', '31.222.203.2', 1671849135, '__ci_last_regenerate|i:1671849135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e16b5fa1eab092d05fbe643218f37bb6200c51', '31.222.203.2', 1671849135, '__ci_last_regenerate|i:1671849135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021be3756b01557c26026ba3a78243d9fffb2693', '31.222.203.2', 1671849135, '__ci_last_regenerate|i:1671849135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3123bbc5810186cd100aec3d935106eb9d1b0a81', '31.222.203.2', 1671849135, '__ci_last_regenerate|i:1671849135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a26c499d5260d2225727fa07578ae5836e86ce6', '31.222.203.2', 1671849135, '__ci_last_regenerate|i:1671849135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62e09bf362f0e9d18cf8a42670687dd444cb71e', '172.105.247.100', 1671849689, '__ci_last_regenerate|i:1671849689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda4624359faa8bfc9361ece9ffd1e3f159eb8ee', '172.105.247.100', 1671849689, '__ci_last_regenerate|i:1671849689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e3fe4b12857b47ba6b2177b125168d2d5d06a9', '172.105.247.100', 1671849689, '__ci_last_regenerate|i:1671849689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfe7ffee10dadaa4ebca4b5a0d790e84360c917', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7eec925d206efc608a2fb0043120aeaa5bee41d', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf17b5f200a427121d2245c70320b8b545e3379f', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df33f92165c786970de230cde8a1013da7ecd58', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5ced1c567799eaf93ba72b07c98bdc3e6c13a0', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16397a8a1b08748b5c44e28730b0c3621f86a118', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae5adf5dae19f29e435fa0faf2e2781ed077a9a', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396d1b4d6c1b3d33fe8766eeadede92aaf0c661e', '172.105.247.100', 1671849690, '__ci_last_regenerate|i:1671849690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5acbb220d9ba9783e423a1f5a0c2db9b893a4f54', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889c6494a0cbd49fd62effebc2a07fb32d9fe5ad', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3761e851d99c502b92b59749e3e173f10259aa5c', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a22a437190d3292541e070270bc2362c1b1572', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f371e23b41f01c2df8cb120e2027b900e01674bb', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bab6afccfc4ae1a437895a27bdd4541507c1338', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8abd072d0444661a0b4381f658e0b536e41f222', '172.105.247.100', 1671849691, '__ci_last_regenerate|i:1671849691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42df36303f1c1462a60c8c83b491318316059b42', '172.105.247.100', 1671849692, '__ci_last_regenerate|i:1671849692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a87def0eff88121705280eda16442d36a203740', '172.105.247.100', 1671849692, '__ci_last_regenerate|i:1671849692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fcf881e80588284d92e9d5cba6dea8654c36aa', '172.105.247.100', 1671849692, '__ci_last_regenerate|i:1671849692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3626b1c0fe40a16d9eb304e11bec7b2cffc5381', '172.105.247.100', 1671849692, '__ci_last_regenerate|i:1671849692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622743a1ab9a20f2a7e0c3a73818d09cb2380fcc', '172.105.247.100', 1671849692, '__ci_last_regenerate|i:1671849692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5371506577381bc73e096a8bd74a79b11e36706c', '172.105.247.100', 1671849693, '__ci_last_regenerate|i:1671849692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3651eb82c434c4cc40695c99a7817153e14e4e8d', '31.222.203.2', 1671850940, '__ci_last_regenerate|i:1671850940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705d1a346f2d010115f8c3250587b38924b55218', '31.222.203.2', 1671850940, '__ci_last_regenerate|i:1671850940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37cb5df7b316c404e1735a6263186cd38ab542fe', '31.222.203.2', 1671850940, '__ci_last_regenerate|i:1671850940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4683f6c6fc61d63fb20dd1a00f507fe4a0ad9845', '31.222.203.2', 1671850942, '__ci_last_regenerate|i:1671850942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f223f2761954fef46cd5715be563f9db3923ad4c', '31.222.203.2', 1671850942, '__ci_last_regenerate|i:1671850942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb31dee9b44c30e126a698ce371424678ee6923', '31.222.203.2', 1671850942, '__ci_last_regenerate|i:1671850942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b4fb697c03dfabc78bc6fbcfcaf67dce6d291b', '198.235.24.169', 1671851382, '__ci_last_regenerate|i:1671851382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45d7545511e567fd3d9e4a6ca0ac2a3eef75c85', '198.235.24.169', 1671851383, '__ci_last_regenerate|i:1671851383;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15451eeccae6075122261c80055e8ad9ab3272f', '198.235.24.169', 1671851383, '__ci_last_regenerate|i:1671851383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e71c1d7dc8331c3e5deaabf355f0be0282cfcb00', '31.222.203.2', 1671852735, '__ci_last_regenerate|i:1671852735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75cc47f60170de9e1978e2c53a42fe8b6cf8c54', '31.222.203.2', 1671852735, '__ci_last_regenerate|i:1671852735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c303efb3edbde08fa3db18009960cbad91d91d01', '31.222.203.2', 1671852735, '__ci_last_regenerate|i:1671852735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500b1e4048f64b9075bc63627aa2966c824c57a5', '31.222.203.2', 1671852736, '__ci_last_regenerate|i:1671852736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b1fa0199e98eb8a70cb821fb8a3defcc2924669', '31.222.203.2', 1671852736, '__ci_last_regenerate|i:1671852736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0075fa816e5b18b5a226ebff5ed768751d1ba5eb', '31.222.203.2', 1671852736, '__ci_last_regenerate|i:1671852736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d99d9a497b6bf226cc9c3ab979601a1d1deeff8', '172.105.247.100', 1671854484, '__ci_last_regenerate|i:1671854484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c7fcd0c15f9cbb6d8d96f4efab7176fc9bee83', '172.105.247.100', 1671854485, '__ci_last_regenerate|i:1671854485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bfdd50a9abccff5567b1a694a43b37bf13d5f12', '172.105.247.100', 1671854485, '__ci_last_regenerate|i:1671854485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6e69b7759b872bba364e8212d2b2fd867a39925', '172.105.247.100', 1671854485, '__ci_last_regenerate|i:1671854485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2dcf505d8f4c6dbd1a4e0874cff7f29639f0d5', '172.105.247.100', 1671854485, '__ci_last_regenerate|i:1671854485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('547896246a229c2882d4e2f43f21aff3569a0872', '172.105.247.100', 1671854485, '__ci_last_regenerate|i:1671854485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc0dc7a7040f5f79fb0dfd4b928b5da29043c03', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac593009475892c7c2fc1a57d9a7d92c5fcc10c1', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed7a579efa6360d961689f0cb7436c7eb95d348', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ca331e820a7380b4e7c6c58fd9cd6699eb7f5f', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d9e9f87656bb7483cdfb3abd0ad0dbf334b7ae', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ab2a473ba79691521c77ce8622a77052a164c4', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfb6235ceb38cdf6b9dab02db112d342c325f47', '172.105.247.100', 1671854486, '__ci_last_regenerate|i:1671854486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb2a2cae4c898711effabe067d4b9d6139caf7c', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4280832c71066481d87670638610a360e9ae54', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b63e388f44cc673aeff8763a52f1f6dcd00f58', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7df9ffd73413c3aaf10bed6ff6680e4eacdfbed', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c62ff6a4ef6c21b89cedeadcc3bc99a7146f30cd', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ebf994863d06fb57b9113c037baa0d0696dcdf', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257398ea3e75e66fedace08fd2de0d3e07516ac7', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fc75baf0a1e19ad40715e3bca0874994600f58', '172.105.247.100', 1671854487, '__ci_last_regenerate|i:1671854487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700924ebc72aa6ba260103edeb843acdc461ab77', '172.105.247.100', 1671854488, '__ci_last_regenerate|i:1671854488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2ce055664740aed21ca3f0437875f1e602722d', '172.105.247.100', 1671854488, '__ci_last_regenerate|i:1671854488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ceca31acd3e489e386e0ff7b3c957b43f6faa42', '172.105.247.100', 1671854488, '__ci_last_regenerate|i:1671854488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbcdff56b267af6ab930b80819a6e359dc79f28f', '31.222.203.2', 1671854531, '__ci_last_regenerate|i:1671854531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6eb31235faf4e510a904513606c0186fac1a37e', '31.222.203.2', 1671854531, '__ci_last_regenerate|i:1671854531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('504df55d9b49a477faa29e62fece3e0fb3380fa1', '31.222.203.2', 1671854531, '__ci_last_regenerate|i:1671854531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891cbe492faeb61eedafb4fbde04ac9c328ee8e0', '31.222.203.2', 1671854533, '__ci_last_regenerate|i:1671854533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21319ef1e1e824119bffb6db70aea16cfb5968fc', '31.222.203.2', 1671854533, '__ci_last_regenerate|i:1671854533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212f400e4848867cd672d1b7dfa86df8fd91e794', '31.222.203.2', 1671854533, '__ci_last_regenerate|i:1671854533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb352d9aa04d193b50818b818efa55595239288c', '45.120.39.89', 1671861934, '__ci_last_regenerate|i:1671861934;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671780695\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671857912;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89fa2fd28e3ec973eb33c385785974502cf2b784', '31.222.203.2', 1671856326, '__ci_last_regenerate|i:1671856326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5bbcc764f96de167c3e524de3fc8c5bfad0cbb7', '31.222.203.2', 1671856326, '__ci_last_regenerate|i:1671856326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b476115d75d45238174ad9b2ad36d75d70c2547', '31.222.203.2', 1671856326, '__ci_last_regenerate|i:1671856326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da51700d4a9e78c67d5e0626b954bda3a0e8b5f', '31.222.203.2', 1671856326, '__ci_last_regenerate|i:1671856326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bef9901ab2c20a1eb5e827e086029e4d2d6ab3d', '31.222.203.2', 1671856326, '__ci_last_regenerate|i:1671856326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74607138028513058e0812c711a2e8adca76bc3e', '31.222.203.2', 1671856326, '__ci_last_regenerate|i:1671856326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29feeca8f2f37cccdc3401c4be938244711c631b', '31.222.203.2', 1671858134, '__ci_last_regenerate|i:1671858134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c97da97e09dde3a1a32a92930888394ada91aa6', '31.222.203.2', 1671858134, '__ci_last_regenerate|i:1671858134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03e46bf6688c3fa7b77f02c3afb7551e99c2f4f', '31.222.203.2', 1671858134, '__ci_last_regenerate|i:1671858134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf05986845d6c48af092c98366f937f74ffa75b3', '31.222.203.2', 1671858135, '__ci_last_regenerate|i:1671858135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace42f79135e9a79fad73b7a688b3770f5f7137b', '31.222.203.2', 1671858135, '__ci_last_regenerate|i:1671858135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5bd9d6951261ea0edb3f662f0372801ce4bc8f', '31.222.203.2', 1671858135, '__ci_last_regenerate|i:1671858135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc00ba8c1f190cd785d46e176b50e1db13e8829', '172.105.247.100', 1671858684, '__ci_last_regenerate|i:1671858684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9c072683e5911f5ee414cbc4aaa3b3b63de9bc', '172.105.247.100', 1671858684, '__ci_last_regenerate|i:1671858684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26132bacebd94e9f6485004663231559dcab8e74', '172.105.247.100', 1671858684, '__ci_last_regenerate|i:1671858684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3602b3c5d83d51ed2157a25d1d1a9dcaa6a411de', '172.105.247.100', 1671858684, '__ci_last_regenerate|i:1671858684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189e68334a237feacc61b4a7f7b00150f6dccbe7', '172.105.247.100', 1671858684, '__ci_last_regenerate|i:1671858684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3ee6e55a11ec9dd4ce8aba9e6357d43a17dbf7', '172.105.247.100', 1671858684, '__ci_last_regenerate|i:1671858684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a7a55bb38ce41687485be48fa965b0b1aac643', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79ec0be114c27335b00445136f8d933bf7662c7', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31488f45a4aca415798a95c23910212c87139761', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c98b8e22aaa4b25943f3e9d584ace0a4530089', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f424114be0159cd4c0105424424613b2472652d', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e85046f8904529272c0202d5bc6c5bf98df1c1', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d05e477a21d1535d23f3d9d7e1ad01d4343c00b', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d238b50e99783196118050168b271f492ff6a0', '172.105.247.100', 1671858685, '__ci_last_regenerate|i:1671858685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2dc3d62637e6ea724c7ac5941946cf25e8a447f', '172.105.247.100', 1671858686, '__ci_last_regenerate|i:1671858686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aeb6823051868ecff4437d198d7f6694597726b', '172.105.247.100', 1671858686, '__ci_last_regenerate|i:1671858686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1965988dce9d7314ef0c2181311f78f9d4dbd99b', '172.105.247.100', 1671858686, '__ci_last_regenerate|i:1671858686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545a0b728f39cdb323f8349299a49eb55a716835', '172.105.247.100', 1671858686, '__ci_last_regenerate|i:1671858686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60f801b460904d89d5dfe904f9ae21fb531e841', '172.105.247.100', 1671858686, '__ci_last_regenerate|i:1671858686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32fca0471cb260594b44969e18a02ee18a8c35b0', '172.105.247.100', 1671858686, '__ci_last_regenerate|i:1671858686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb63c332d481b512f309681dd8b66c114593552', '172.105.247.100', 1671858687, '__ci_last_regenerate|i:1671858687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8106b99c1982388c17cfd6a080ddb727e616a92', '172.105.247.100', 1671858687, '__ci_last_regenerate|i:1671858687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b0f23818de32749a80c030ceb0cd81148c70b2', '172.105.247.100', 1671858687, '__ci_last_regenerate|i:1671858687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('761b167c4b0e4daccf6220f3f1e41ad104ef217f', '172.105.247.100', 1671858687, '__ci_last_regenerate|i:1671858687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5ce16f77263cc24d1e8b58474166d0ddd52634', '31.222.203.2', 1671859936, '__ci_last_regenerate|i:1671859936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2cfc7d91a271bb6ddca5ae29bd722205cebc51', '31.222.203.2', 1671859938, '__ci_last_regenerate|i:1671859938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('322d5c9a99ad4853e764124b8e17ea9b1c5ffa78', '31.222.203.2', 1671859938, '__ci_last_regenerate|i:1671859938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8aeefd453319ae3d7b68c4493869ab5395a25ae', '31.222.203.2', 1671859938, '__ci_last_regenerate|i:1671859938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc50bff2b079285f62d42b643ce88d72ce5067b4', '31.222.203.2', 1671859938, '__ci_last_regenerate|i:1671859938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bdd9a468a0e842a3a69ca0d49e6cdee3067b914', '31.222.203.2', 1671859938, '__ci_last_regenerate|i:1671859938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1f5ac1ce0328fe83f2284df17c6c762ade9ecd', '31.222.203.2', 1671861732, '__ci_last_regenerate|i:1671861732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e34863471a1666fcf85c42fb4d1dc1b39751947', '31.222.203.2', 1671861732, '__ci_last_regenerate|i:1671861732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3856b16171703cb500cc04edc91612e9adc40b', '31.222.203.2', 1671861732, '__ci_last_regenerate|i:1671861732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18edab2d25e951920dd3cedfd3bb473775923a3f', '31.222.203.2', 1671861732, '__ci_last_regenerate|i:1671861732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6cbe2cd9ef4516b736a781f0cb04d8faf97b832', '31.222.203.2', 1671861732, '__ci_last_regenerate|i:1671861732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45767d58178dad9e4a9d1298f75482b3062b92db', '31.222.203.2', 1671861732, '__ci_last_regenerate|i:1671861732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a19529fc135fd0130c015a43e27588bb081e340', '45.120.39.89', 1671862408, '__ci_last_regenerate|i:1671862408;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671780695\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671861984;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4f5b9d8418e276f4e4cab27f279cfbe5817b4b', '45.120.39.89', 1671862549, '__ci_last_regenerate|i:1671862408;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671780695\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671862547;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ceeaeca88ebd332aa0371ee1c664d23ed6efb19', '31.222.203.2', 1671863530, '__ci_last_regenerate|i:1671863530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c224efc6192626a978f0b1c0ff0cd20d541546cd', '31.222.203.2', 1671863530, '__ci_last_regenerate|i:1671863530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55cea19a5e843079e23c78718a183a20d3eebfd7', '31.222.203.2', 1671863530, '__ci_last_regenerate|i:1671863530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80807be7ce3e0dde172f4270f4a98b58ce85249', '31.222.203.2', 1671863532, '__ci_last_regenerate|i:1671863532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e095226aa759f62cef608e20c89b9638809a69', '31.222.203.2', 1671863532, '__ci_last_regenerate|i:1671863532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7222ed147834622646e1d78a694c0cf59d7dc781', '31.222.203.2', 1671863532, '__ci_last_regenerate|i:1671863532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdfc6262d678f710dfc982d52c80142b99b03a8c', '172.105.247.100', 1671864090, '__ci_last_regenerate|i:1671864090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d60639cda6a712f415316d73f9e15be13e6ea7', '172.105.247.100', 1671864093, '__ci_last_regenerate|i:1671864093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a2a0a136bd81cbd078fd8e6a52e4e529266dc5', '172.105.247.100', 1671864093, '__ci_last_regenerate|i:1671864093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229ac62d245f991232704e4662e1cd5b8d5d6e52', '172.105.247.100', 1671864093, '__ci_last_regenerate|i:1671864093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f27ae9f0dac60d78a9cce2d1451e9c7872f175', '172.105.247.100', 1671864093, '__ci_last_regenerate|i:1671864093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35d57bd879ae4ff2da9d89d4b3351c4f07b38c6', '172.105.247.100', 1671864093, '__ci_last_regenerate|i:1671864093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ceeab92d159d009c09fe61734459c0ad5e62a6', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65da18686ffa3113b52939fc6755fac6f7d4ecb5', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f1a25eb5e1a08ecb17f2c5a95d89690a136a534', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71884430777766166ba6eb0f162e577c5434508', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f2d14e202e81f20d6ac186cffca30f6952481c', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44709ad5f492f705504a094f34c627007fee542f', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f7c27e637dc5ae5d17055045e1dbc3eb27d0fe', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bbe204b3520b4bc24eab4b1589b5b7da255e35b', '172.105.247.100', 1671864094, '__ci_last_regenerate|i:1671864094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113e09b328d5d00978345ed8f10dbc131862cf79', '172.105.247.100', 1671864095, '__ci_last_regenerate|i:1671864095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a97b5dd731d499254bb8d5dafd636bc268aee5', '172.105.247.100', 1671864095, '__ci_last_regenerate|i:1671864095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2111be79ea4abf533655dd334fa0d8e8fb3ebe6', '172.105.247.100', 1671864095, '__ci_last_regenerate|i:1671864095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321bbb58b6dfe08bc380cb90209f641fac279cc7', '172.105.247.100', 1671864095, '__ci_last_regenerate|i:1671864095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19553a204b55760360a91a6bcb2d8a69899b154', '172.105.247.100', 1671864095, '__ci_last_regenerate|i:1671864095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c73d2925b3b25b012e6ffacf61c768e7aaedae', '172.105.247.100', 1671864095, '__ci_last_regenerate|i:1671864095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d40f173a27e60ca3557aa9956ef4a7265554c9', '172.105.247.100', 1671864096, '__ci_last_regenerate|i:1671864096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80994492432dfe42ec7381f480ae92602644fb3', '172.105.247.100', 1671864096, '__ci_last_regenerate|i:1671864096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb3b14060fc872b1982e1ea4ea852651d9c3d1e', '172.105.247.100', 1671864096, '__ci_last_regenerate|i:1671864096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1773cc403e937791676a68d49eead6bad40b6b', '172.105.247.100', 1671864096, '__ci_last_regenerate|i:1671864096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25c74b91d99b7850799f44244738fc85429e31e', '31.222.203.2', 1671865330, '__ci_last_regenerate|i:1671865330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dda9726d9d5e047e1a1d72967eba25119af2643', '31.222.203.2', 1671865330, '__ci_last_regenerate|i:1671865330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d580c9034341f30b3136b250c5287f73a856d0', '31.222.203.2', 1671865330, '__ci_last_regenerate|i:1671865330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d4760f3f972086659bcdaaf685114521c69059', '31.222.203.2', 1671865332, '__ci_last_regenerate|i:1671865332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb7832273efa2d2f6e0471b12ea855ce5263bbe', '31.222.203.2', 1671865332, '__ci_last_regenerate|i:1671865332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36cfbecea052a606971323449dffc00ef54dede', '31.222.203.2', 1671865332, '__ci_last_regenerate|i:1671865332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('941f50781f39b6b6dc9318b92363e9fe3cec8d78', '31.222.203.2', 1671867132, '__ci_last_regenerate|i:1671867132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67fda9136d4cfdccc58ab0d9f29a4b821de54fc5', '31.222.203.2', 1671867132, '__ci_last_regenerate|i:1671867132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63292dc6005816122506775dfdeee2b35bac035d', '31.222.203.2', 1671867132, '__ci_last_regenerate|i:1671867132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243dce7e13640a8b635ce20d0a7305f87452916c', '31.222.203.2', 1671867134, '__ci_last_regenerate|i:1671867134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01ea90d8e719a7dac81a220dbc2213778e0ee91', '31.222.203.2', 1671867134, '__ci_last_regenerate|i:1671867134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985c37901a71747826a2cb7de7856410613f2b20', '31.222.203.2', 1671867134, '__ci_last_regenerate|i:1671867134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbd85fe4f047aa15181bf0245a22a87eb6f90fb', '31.222.203.2', 1671868929, '__ci_last_regenerate|i:1671868929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067df6eec889b2bd517893efc0f10274ca402f23', '31.222.203.2', 1671868929, '__ci_last_regenerate|i:1671868929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4303c5771b8703390cd925bf3d867f6fbadc17f1', '31.222.203.2', 1671868929, '__ci_last_regenerate|i:1671868929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fb9e541e1b1c83c83b7d1e28a2abb0e887baee', '31.222.203.2', 1671868931, '__ci_last_regenerate|i:1671868931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d181df7b8cb01bc83523b5cdf85ce0d4184baca', '31.222.203.2', 1671868931, '__ci_last_regenerate|i:1671868931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d955921e632f274983750be6d9a8f99ae6fa15a0', '31.222.203.2', 1671868931, '__ci_last_regenerate|i:1671868931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47aa50a13b253b842f83a2b062623af499d5bd1', '172.105.247.100', 1671870095, '__ci_last_regenerate|i:1671870095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee11e620953f5cc26ad92b30f00933eca3f0e422', '172.105.247.100', 1671870095, '__ci_last_regenerate|i:1671870095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be04022367908547bb95e72f378c5f2a56765c30', '172.105.247.100', 1671870095, '__ci_last_regenerate|i:1671870095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add0c036c9df82cdd1d251836a5dd728b8ee9531', '172.105.247.100', 1671870096, '__ci_last_regenerate|i:1671870096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2774439b24bf41b6fb9d518d59dea779ad56dc', '172.105.247.100', 1671870096, '__ci_last_regenerate|i:1671870096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3fa06b8a3ee4d20c89c375889d4e04be265fac', '172.105.247.100', 1671870096, '__ci_last_regenerate|i:1671870096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb919ea011272f31846af96cbbecbde6fa57d14b', '172.105.247.100', 1671870096, '__ci_last_regenerate|i:1671870096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519edecf39815ce191d02e465613317d3b635de3', '172.105.247.100', 1671870097, '__ci_last_regenerate|i:1671870097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c81f90b27db8c34793ad4690890cc67af1ea0313', '172.105.247.100', 1671870097, '__ci_last_regenerate|i:1671870097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e99889c67020ecd707e462d86fca3ae55b6558', '172.105.247.100', 1671870097, '__ci_last_regenerate|i:1671870097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908e0d143af2aa83e83216306a87c5d3d0e0856d', '172.105.247.100', 1671870097, '__ci_last_regenerate|i:1671870097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08b88aa0154777e3f6b323b0f50d8c0c464816c', '172.105.247.100', 1671870097, '__ci_last_regenerate|i:1671870097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55170c1e7ef55ddade28b4bbf1d007673c989fd', '172.105.247.100', 1671870098, '__ci_last_regenerate|i:1671870098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5418cc6501e7ac2d068a86ad68e3dfb1e2dd6b3f', '172.105.247.100', 1671870098, '__ci_last_regenerate|i:1671870098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e5a6a2827dd65b5655c6698c569c92d2346169', '172.105.247.100', 1671870098, '__ci_last_regenerate|i:1671870098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7c5cb55fa19e092b3bf0a43ba8cfa3d05d10e5', '172.105.247.100', 1671870098, '__ci_last_regenerate|i:1671870098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095f5af58cbdb36ef76198d6ff11ee588f55c3f9', '172.105.247.100', 1671870098, '__ci_last_regenerate|i:1671870098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ab11b57e2b897bfc1f3320381e0dd0ba654443', '172.105.247.100', 1671870098, '__ci_last_regenerate|i:1671870098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529f170447b329fbab9f2c154ac6bb7cf93ec995', '172.105.247.100', 1671870099, '__ci_last_regenerate|i:1671870099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d0f774b617ca424e25f7ec2cc63f36233a3b73', '172.105.247.100', 1671870099, '__ci_last_regenerate|i:1671870099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47548932401f4689d097c810e2d27c193568ebf', '172.105.247.100', 1671870099, '__ci_last_regenerate|i:1671870099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('153b2dc77ba1d659c38d5b8912726849e80fd9ed', '172.105.247.100', 1671870099, '__ci_last_regenerate|i:1671870099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1905ac121b8647079f83eb5b7216138b600a6ab6', '172.105.247.100', 1671870100, '__ci_last_regenerate|i:1671870100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21c2853411103841fbf442e32fcc6df94294252', '172.105.247.100', 1671870100, '__ci_last_regenerate|i:1671870100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52401e49d474c327dc1e72eaea6f0416901e48f', '147.78.47.249', 1671870116, '__ci_last_regenerate|i:1671870116;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17952091b4a4ea7492cd7ee3b73ef9cebe3494d1', '147.78.47.249', 1671870118, '__ci_last_regenerate|i:1671870118;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b088534270cf145ceea459fe838608aa539fb44', '147.78.47.249', 1671870120, '__ci_last_regenerate|i:1671870120;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b737685e1a1373fb710d01ee19096b1277a193', '45.120.39.89', 1671873239, '__ci_last_regenerate|i:1671873239;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f5ef147050c3c1ca424017e83356e7e29987a4', '31.222.203.2', 1671870729, '__ci_last_regenerate|i:1671870729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2338e872c81d3f0b046eba031e33aa505719eefe', '31.222.203.2', 1671870729, '__ci_last_regenerate|i:1671870729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57be7ef1c81718d7b1fa8e0ba8cd9c36944946c', '31.222.203.2', 1671870729, '__ci_last_regenerate|i:1671870729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9013433745bce2c0bf7f85fd10fd72911ee81db8', '31.222.203.2', 1671870731, '__ci_last_regenerate|i:1671870731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76c4c8768b2cbf4e67e76a1e89330d7378430930', '31.222.203.2', 1671870731, '__ci_last_regenerate|i:1671870731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82870f1ccc19064acf7b6760d32ecd7a4ebaa120', '31.222.203.2', 1671870731, '__ci_last_regenerate|i:1671870731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f99da8a08d1b07874a3683d06c64af6744af77b', '31.222.203.2', 1671872541, '__ci_last_regenerate|i:1671872541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b22c0cd9f16ffc9f7ad2bf8cc547e683df7523', '31.222.203.2', 1671872541, '__ci_last_regenerate|i:1671872541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dec8554916e84e2fce65607b91b107a1ef3f5bd', '31.222.203.2', 1671872541, '__ci_last_regenerate|i:1671872541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508a40de3285711eb2504fa35a486fb2f3e7e540', '31.222.203.2', 1671872544, '__ci_last_regenerate|i:1671872544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012adc221eacd0994427f43c7d0ad5eecaf3ae8c', '31.222.203.2', 1671872544, '__ci_last_regenerate|i:1671872544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21995432ef056e4483b0099aeb5f16624accde3e', '31.222.203.2', 1671872544, '__ci_last_regenerate|i:1671872544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ced1f933bade8185a550a52dd4e6be525c2c5c', '45.120.39.89', 1671876239, '__ci_last_regenerate|i:1671876239;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671876198;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4632669df34413b7b029a5862dac60c9050b163f', '31.222.203.2', 1671874329, '__ci_last_regenerate|i:1671874329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6ee71ea226872a4a6575a42821fc6bc68d542a', '31.222.203.2', 1671874329, '__ci_last_regenerate|i:1671874329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8888fc64733ec6a8098e443d898521c9e76ea147', '31.222.203.2', 1671874329, '__ci_last_regenerate|i:1671874329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450d62018c5f73b87975cdf42b10991a95884444', '31.222.203.2', 1671874331, '__ci_last_regenerate|i:1671874331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae47b5843bbca278f71ad14a0915da714f7d0a03', '31.222.203.2', 1671874331, '__ci_last_regenerate|i:1671874331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a4bbf905a20cd33f1566db3f744b4dc4875e7d', '31.222.203.2', 1671874331, '__ci_last_regenerate|i:1671874331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7524e8ba81bd6622e03cee7146ec424bdaf7b94d', '172.105.247.100', 1671874879, '__ci_last_regenerate|i:1671874879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3ab14daf2fb54acc30db6439112bb564c6678a4', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f320efd51ef08899cd815525e61bc7d2d469232a', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e04f42289dbb7574341b310c8a89912895fb6e3', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765ca7ab853149892ca46d4df31461db3b1caf62', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ff8e374d71c2d73f0c78b94f7c75396e6f016e', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637177fa71f0b31a5cb38df8d2caae2703a8d5df', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb73060485638203ad8773ab4cb7b055c6deed83', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075fc3b4ec2fdb18923671992221e2db1c369519', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58698de4756b8a5e9b8335e1f16ced1991fbde7f', '172.105.247.100', 1671874880, '__ci_last_regenerate|i:1671874880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f999366e5720328c794440164dc4407f8415427c', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a794a71fccad4f0f97899ab6b949c8778c1cea39', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d3e5f8f23049aa686272500d7bfe4b0ecc035a', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0f918f5ef4dba102051810dfea034a71c264c7', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538072e38bae6bde5439e7e78cf1e88ac0816c73', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d0382a355adf6cffee7790dbb649f059657680', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b06b62b4c48845211d684e234e1f375063221a5', '172.105.247.100', 1671874881, '__ci_last_regenerate|i:1671874881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ee57333846ea85fe0941a804993df235e72828', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c807c04b9ee7b5113619279fc90a14ce83ceb8', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbef69aa0555182bc395e1fb168f6589ea8190bb', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12cd74106baedb3047de7b035289e2aa22076e94', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df05d9e692572539cf3694a2c640baaa5650cba', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b0a447a6aed0ee5babaa0845cb80bc8ded07fa', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c95a0c9737374e7bfaff08ccb21e6b2de82e26', '172.105.247.100', 1671874882, '__ci_last_regenerate|i:1671874882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd710710945b21e3bb91385c11f66fe22ff31387', '205.210.31.162', 1671875533, '__ci_last_regenerate|i:1671875533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ef02ec8519c2efd60ab33555ddcb9d3c7cded7', '205.210.31.162', 1671875535, '__ci_last_regenerate|i:1671875535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e875df576cc4538119158904a3a4625c1fb1cf', '205.210.31.162', 1671875535, '__ci_last_regenerate|i:1671875535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6446612a0e34ae000d5193c99e23f2c604441365', '31.222.203.2', 1671876132, '__ci_last_regenerate|i:1671876132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedb5eee513448ac2de3cf1c40cdf4b0bdbaa80f', '31.222.203.2', 1671876132, '__ci_last_regenerate|i:1671876132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597dfd9dd712b26dc66d2a57c3e7410a5cb4cee9', '31.222.203.2', 1671876132, '__ci_last_regenerate|i:1671876132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375a2275bc6f7118bdd8706c2c9b25e3cafb48f7', '31.222.203.2', 1671876132, '__ci_last_regenerate|i:1671876132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb22896c1f481647a07bb284d1f3b75a5f0baf80', '31.222.203.2', 1671876132, '__ci_last_regenerate|i:1671876132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe57a7baf1058cac28e92f549e85bffe25da6ecc', '31.222.203.2', 1671876132, '__ci_last_regenerate|i:1671876132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfdc8895e6a9fb3be59fad75aba8965e0f6a7879', '45.120.39.89', 1671879574, '__ci_last_regenerate|i:1671879574;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671876239;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ac00f3525e0e8dd8fb3899c639f384a42bcd57', '31.222.203.2', 1671877932, '__ci_last_regenerate|i:1671877932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32fd59ace0bc1b86d2b74cd83900587eb74df99', '31.222.203.2', 1671877932, '__ci_last_regenerate|i:1671877932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39ed57ea68c96516280ff764f6a0d0faf72b444', '31.222.203.2', 1671877932, '__ci_last_regenerate|i:1671877932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb6f878a277f79bc7b638a2e211c6343d7c2a7d', '31.222.203.2', 1671877934, '__ci_last_regenerate|i:1671877934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65662e4cc41943a45b35da3b38673100712d5f94', '31.222.203.2', 1671877934, '__ci_last_regenerate|i:1671877934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adafa6f15bcf17087b34035b1239f0f4e66b5872', '31.222.203.2', 1671877934, '__ci_last_regenerate|i:1671877934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425e70200ac1d3b2b5280bf5054432aad47540fc', '45.120.39.89', 1671878725, '__ci_last_regenerate|i:1671878725;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671878725;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e230129699ca468c50844c071a8b6555b1bb189d', '45.120.39.89', 1671880014, '__ci_last_regenerate|i:1671880014;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671879995;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3890492d20201b146f0648d08e58caabbe5e73e8', '172.105.247.100', 1671879682, '__ci_last_regenerate|i:1671879682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9058713ef8b6335a412ba3c9f971222caa6866', '172.105.247.100', 1671879683, '__ci_last_regenerate|i:1671879683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41e4c444aabfb19c492558a60b7185b9e148781', '172.105.247.100', 1671879683, '__ci_last_regenerate|i:1671879683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5fd50972e1b34b3d984df929f0be32261cc9c5c', '172.105.247.100', 1671879683, '__ci_last_regenerate|i:1671879683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffae6f51ee83d974675e75c1cecf404859a19dc6', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdaf42544b4060108a2a0f0907e2769018d8ee45', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2fc384a384b0ecbd6e432cef532e3941ce3287', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef0fc42d74bef1ffd5b5d37868097a24b86e2fcb', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e71c15a2d62b825ef4d651709076265f1cd0e48', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877df1ed82f34d9aa6df75792e606b63fa95cb63', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e729e960107c9a737f369dd91fc9454ea864ca', '172.105.247.100', 1671879684, '__ci_last_regenerate|i:1671879684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c581cb82c6b2555e39f3dc17e0ad0cd37737fe49', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d9bce1036b0f303684d4b4dc22c3b2f2792860', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b0a8080e986c93c8bee0133ece0d7a9a5ab4de', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f32d92bc4dbb9271b264bcf431133e84a26d4b', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c549402ef7fd040a77459709f6c886983cc7075', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48a9b235ffb63b78c13e925028944612a163113', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbafeed7e21887e59c2166a6884945e6cbdeb38f', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa150ca6709f3010e52b6825a7f08e217462c200', '172.105.247.100', 1671879685, '__ci_last_regenerate|i:1671879685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0dd96da110c77822086a630fe320f79dbb6479d', '172.105.247.100', 1671879686, '__ci_last_regenerate|i:1671879686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf7ca8da9daa8c6aeb5571c92262007918b9878', '172.105.247.100', 1671879686, '__ci_last_regenerate|i:1671879686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500c53215827e55819156d34ebe3682e87dc0dde', '172.105.247.100', 1671879686, '__ci_last_regenerate|i:1671879686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee076150f41c69f3d1282bf0643c99faf5c62eae', '172.105.247.100', 1671879686, '__ci_last_regenerate|i:1671879686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f88625e9d9acccd5ff34782a0167c3a691ceda', '172.105.247.100', 1671879687, '__ci_last_regenerate|i:1671879687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('882f06073421e21d0f2614895f833a93b19fedb3', '31.222.203.2', 1671879729, '__ci_last_regenerate|i:1671879729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e622538969b581b769aa78e20ce5ce3d440501', '31.222.203.2', 1671879729, '__ci_last_regenerate|i:1671879729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6515930149273c13583d5975d1a2971ec05ee9f4', '31.222.203.2', 1671879729, '__ci_last_regenerate|i:1671879729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7e8d92fdd7e1f2ba4f12116f06bf501f627a5d', '31.222.203.2', 1671879731, '__ci_last_regenerate|i:1671879731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cc24c1a23cc0d17fd49296458501fccc267b30', '31.222.203.2', 1671879731, '__ci_last_regenerate|i:1671879731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d194ababbb975fb59c0573ca8bad71d0a856d24', '31.222.203.2', 1671879731, '__ci_last_regenerate|i:1671879731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05079796d36f6c06ccdd7a66888e73778d16f2d', '45.120.39.89', 1671880333, '__ci_last_regenerate|i:1671880333;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671880284;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9edd8b8b1fc20b169dcba747c1b554ca179ed9a8', '45.120.39.89', 1671884091, '__ci_last_regenerate|i:1671884091;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671884081;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee8ef31cc97b87d619b030529e6d949eda8401fa', '31.222.203.2', 1671881536, '__ci_last_regenerate|i:1671881536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d123df84bd62f465923a068557cac20db78ab64', '31.222.203.2', 1671881536, '__ci_last_regenerate|i:1671881536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b59dd4a01cb30fda2459725ccc2486680e0522a1', '31.222.203.2', 1671881536, '__ci_last_regenerate|i:1671881536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981953a87cbea069695148917dfdc3bec7c97bf8', '31.222.203.2', 1671881537, '__ci_last_regenerate|i:1671881537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eb9e7ed7ac79ab30afb9673dc766d02315ccf78', '31.222.203.2', 1671881537, '__ci_last_regenerate|i:1671881537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a02c79adba2a8a36974028a163bc6187a81c99', '31.222.203.2', 1671881537, '__ci_last_regenerate|i:1671881537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('465572835308962ae42876dbd39b8ddbf6673d0d', '31.222.203.2', 1671883328, '__ci_last_regenerate|i:1671883328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73b1e13ad2401396dbbdb110a92071f3172653d', '31.222.203.2', 1671883328, '__ci_last_regenerate|i:1671883328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e92c10a38b4aaf3ea7edca602c3908602e872ce', '31.222.203.2', 1671883328, '__ci_last_regenerate|i:1671883328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('436f841078f47a6fcacd674bf08170b4fc4be2f8', '31.222.203.2', 1671883331, '__ci_last_regenerate|i:1671883331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ec1448ede5c52be4d0e3e305bcd9a908cd1a50', '31.222.203.2', 1671883331, '__ci_last_regenerate|i:1671883331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a4abce910e661b96c0fda85b901fa2b567ac24', '31.222.203.2', 1671883331, '__ci_last_regenerate|i:1671883331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2357b5f6d332680ab1e264f93f10613b64dde45', '45.120.39.89', 1671886472, '__ci_last_regenerate|i:1671886472;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671886467;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f65e90c1b5ac11e0bffd707a569c55162620fcb', '172.105.247.100', 1671885086, '__ci_last_regenerate|i:1671885086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('331d86a8d42cbfb9ed453cc6530a5c5dcd0e9a41', '172.105.247.100', 1671885086, '__ci_last_regenerate|i:1671885086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e25fcd3449443881cd1954d27dc9d0e2b899d3', '172.105.247.100', 1671885086, '__ci_last_regenerate|i:1671885086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7c832e653be794977927b6d8539a5a62d76f4e', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e6f558299836d829927201ba2f40cf4b8fba451', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4246df30e5760a4787fd2ff968534d2f91eb41f', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edcf8ac25d62fd6dc488befbf0c9ba3ea0511af8', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2e7aa7647726689b6f69d09cfcf68d25f50eb6', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb5e5d8b2029ff806a3640b9c7c0b0a8aedab0c', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d3f641c586a8b50a9a6629a4f4a3b8291a6035', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebe7877fd774fab8becdb925bd8b30d66ffe8d7', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a088d4737acf74b93be9d2276c85b1b004c9b5', '172.105.247.100', 1671885087, '__ci_last_regenerate|i:1671885087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c8040f831d4199e413825b8e007f10945348bc', '172.105.247.100', 1671885088, '__ci_last_regenerate|i:1671885088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35aa980f71fc3ba3bc34eccaabeba172262f784', '172.105.247.100', 1671885088, '__ci_last_regenerate|i:1671885088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35565c663180e16ca18de8180482485dca26b55d', '172.105.247.100', 1671885088, '__ci_last_regenerate|i:1671885088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6973f64fa77cce0c08c5f90981ba5f2050268e01', '172.105.247.100', 1671885088, '__ci_last_regenerate|i:1671885088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb3dbc4e6b66ce4be271320acddb16e6ce0b333', '172.105.247.100', 1671885088, '__ci_last_regenerate|i:1671885088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b4baed75985e39ee1b458d2b2230d32a987623', '172.105.247.100', 1671885088, '__ci_last_regenerate|i:1671885088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794056dfb5ea68a5fc868dd9b54452eb47dd9a58', '172.105.247.100', 1671885089, '__ci_last_regenerate|i:1671885088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd49b3518f091a71c45cd1a91f77014c61d5582', '172.105.247.100', 1671885089, '__ci_last_regenerate|i:1671885088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89082dfd318cfea75988aa0020e268b2b81ccb36', '172.105.247.100', 1671885089, '__ci_last_regenerate|i:1671885089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d391e25c7208c98c7fd31f19d39dccb56cf1ea', '172.105.247.100', 1671885089, '__ci_last_regenerate|i:1671885089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92fdbc01f9739cdd7961ab69908a0f8ba04d32a', '172.105.247.100', 1671885089, '__ci_last_regenerate|i:1671885089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75bdfc56c01fa7a47e517d0b91640c2a7fd20cb0', '172.105.247.100', 1671885089, '__ci_last_regenerate|i:1671885089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5786c7e035b7ea57b62bd42f9c3de9c8b2978d07', '31.222.203.2', 1671885129, '__ci_last_regenerate|i:1671885129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194232a6b2cf46a0ca98d6a6d78e711e9fed5b27', '31.222.203.2', 1671885129, '__ci_last_regenerate|i:1671885129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927c3e91da56e71836c0da48be24c11f532d3736', '31.222.203.2', 1671885129, '__ci_last_regenerate|i:1671885129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c604e0a8bd3bcff20618559b1344edf27931aa', '31.222.203.2', 1671885129, '__ci_last_regenerate|i:1671885129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('970b6514730f77383356b1a32d9f5e69347274ba', '31.222.203.2', 1671885129, '__ci_last_regenerate|i:1671885129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2abae8e355ea70884b2a3b733c7a25672b09160', '31.222.203.2', 1671885129, '__ci_last_regenerate|i:1671885129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a3cedb180d6f238f7d7f2a2b6bef721d5a2a39', '45.120.39.89', 1671886902, '__ci_last_regenerate|i:1671886902;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671886772;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76bd1dafb3e7074f54331060590e0e4e54bf26c', '45.120.39.89', 1671887313, '__ci_last_regenerate|i:1671887313;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671886924;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dfd41b306bff9fdb6b3c5f8efff60275eff8efa', '45.120.39.89', 1671889815, '__ci_last_regenerate|i:1671889815;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671889809;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be16bed9d96897cf778d67a944c9583c9c11041', '31.222.203.2', 1671886927, '__ci_last_regenerate|i:1671886927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0e97a1a1eefcc9cc45e9d192693f868cd1be99', '31.222.203.2', 1671886927, '__ci_last_regenerate|i:1671886927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3425bd69ed89c9c6a7d6917f2999129d50dc6efc', '31.222.203.2', 1671886927, '__ci_last_regenerate|i:1671886927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0dfc1959b3199d22fe3cb2c8e5d3277efdedcbc', '31.222.203.2', 1671886928, '__ci_last_regenerate|i:1671886928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81bb58da2d3ce1f84987af6b2fdaaf9bb3e73ba3', '31.222.203.2', 1671886928, '__ci_last_regenerate|i:1671886928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc6c8a7a90df4c1ad28a401c7f74ceaeb075be2', '31.222.203.2', 1671886928, '__ci_last_regenerate|i:1671886928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9dc8f8f96c34fdfce9c2532f437b542046d82be', '31.222.203.2', 1671888734, '__ci_last_regenerate|i:1671888734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cc0349c95d80e3388083db7136ede0f5276ca1e', '31.222.203.2', 1671888734, '__ci_last_regenerate|i:1671888734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf2ea8f17d23e8c6cd4e5b70b424435c29904ba', '31.222.203.2', 1671888734, '__ci_last_regenerate|i:1671888734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9266ad794e39f34282db8482d1a9282bbfa28b0', '31.222.203.2', 1671888734, '__ci_last_regenerate|i:1671888734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde2e580704d3a5c7a9c2bb150e905891eba2ed3', '31.222.203.2', 1671888734, '__ci_last_regenerate|i:1671888734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5164822ce6dd7cb238a8555d176f54f6d7574872', '31.222.203.2', 1671888734, '__ci_last_regenerate|i:1671888734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e600124d527273bd7262da322397c185f09aa21', '45.120.39.89', 1671890531, '__ci_last_regenerate|i:1671890531;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671889815;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5188239f46a814eb9c35b234eda62e14061467fd', '172.105.247.100', 1671890484, '__ci_last_regenerate|i:1671890484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bccda378ba8546d4b0d9e04442efdf52c967f6', '172.105.247.100', 1671890487, '__ci_last_regenerate|i:1671890487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5187053de5531ef5ea19365e232eb4ad637a7dc6', '172.105.247.100', 1671890487, '__ci_last_regenerate|i:1671890487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17b30a3c6690865ce11489ad80aa0b62f14db13', '172.105.247.100', 1671890487, '__ci_last_regenerate|i:1671890487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c452a3c5c651bb063cc15a4b7dcfb698599440', '172.105.247.100', 1671890487, '__ci_last_regenerate|i:1671890487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32fc7bdfeea322d5e636572a7cfd227133970185', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f472bb38654b125d1404311d374ca91db1a93d7', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7c735ea830add72a4222410e12b7fbcd96ed26', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('932fd8ed859ff564a79d8899252d82464b51710c', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3bcc6ba64452808e52a9e463333ed3dc4b4df3', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28a5f6cdab51a60f26efa5f380f4ca208c6e627', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f2b28cbe85972e7bae836fe6abd3baf63c1370', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601614c3878a2dc9afd1ef45037a7d560cdd7d28', '172.105.247.100', 1671890488, '__ci_last_regenerate|i:1671890488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09abe72f228ea9144492da4128f28b18cb34d40e', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07723ad11051ba844a815a895ab7d91287db0010', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff6abfba7c24d020e5982887d40087cc9e591f6', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d7dcaa3135f67a0cc97a127e84997e2fdb8275', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6eeb3095977631dffe3d28b8406f53d8a66f4c', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0facfb01dd638202c759b8b10fa9dd8769d5ed5c', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a341c194a10817510ad0c3d4ecb35c6487873f0', '172.105.247.100', 1671890489, '__ci_last_regenerate|i:1671890489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4df0ccb3f1ce2276093dbca25f1953297bb62a', '172.105.247.100', 1671890490, '__ci_last_regenerate|i:1671890490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ea596d1639ce6f732fb2179a6cd4a648f9f01f', '172.105.247.100', 1671890490, '__ci_last_regenerate|i:1671890490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89cb17e577a33aab579073b339516581b4b9b93f', '172.105.247.100', 1671890490, '__ci_last_regenerate|i:1671890490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2593d7a3691f9d1d7a3177b023df89b1a5dc808a', '172.105.247.100', 1671890490, '__ci_last_regenerate|i:1671890490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fab577e9547bb3ec64e4494ac389bcb82fc04ec', '45.120.39.89', 1671891784, '__ci_last_regenerate|i:1671891784;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671890659;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('931bf7a4d7df73d87d0fccea4990ef33162e1aaa', '45.120.39.89', 1671892104, '__ci_last_regenerate|i:1671892104;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671892096;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e34b4dc105e9e2d4d679f8ce91ed1b9cc35d89', '31.222.203.2', 1671890535, '__ci_last_regenerate|i:1671890535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dc4da3ff747832dc4dd3d155b40db875ff6fe37', '31.222.203.2', 1671890535, '__ci_last_regenerate|i:1671890535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16debd66d8ae20454b59506a59559b3e4db0e049', '31.222.203.2', 1671890535, '__ci_last_regenerate|i:1671890535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081eda6027df39b608a172519616a4eb5b3094a3', '31.222.203.2', 1671890536, '__ci_last_regenerate|i:1671890536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e596a690c45f878ef1524a4ec643454d2a54e7b3', '31.222.203.2', 1671890536, '__ci_last_regenerate|i:1671890536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9cc74d9ce90bad6670f27816f302a9c26545529', '31.222.203.2', 1671890536, '__ci_last_regenerate|i:1671890536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55008d87715b0c576dfe81bf720aa8854b3f93c', '35.206.82.85', 1671890683, '__ci_last_regenerate|i:1671890683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7545704ea67b2900962900a1d7cde774621c554', '35.206.82.85', 1671890683, '__ci_last_regenerate|i:1671890683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ac02e3dd6514684dfd022a9530c056d756c5b6', '35.206.82.85', 1671890683, '__ci_last_regenerate|i:1671890683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1643570b1e1c4ae40bd8c87026a5c14a81e50c', '45.120.39.89', 1671892892, '__ci_last_regenerate|i:1671892892;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671892888;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f27d5df303f0754c58c0c5336a0bf70c2a72f75', '31.222.203.2', 1671892334, '__ci_last_regenerate|i:1671892334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e3fc6a4012cba9f5b3c396a4017addc0ccb65d5', '31.222.203.2', 1671892334, '__ci_last_regenerate|i:1671892334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc46cf3aedc8ab97ae637efa7df8fa2178e5db24', '31.222.203.2', 1671892334, '__ci_last_regenerate|i:1671892334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea29fdf69ad62cd92a737fdc86b20bbcf7db5a3', '31.222.203.2', 1671892336, '__ci_last_regenerate|i:1671892336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020e0efcf3fc9b9644114d65aa44a29fb1263139', '31.222.203.2', 1671892336, '__ci_last_regenerate|i:1671892336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068a3e318f591d4b69acf46e1ea943e7361f1e93', '31.222.203.2', 1671892336, '__ci_last_regenerate|i:1671892336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8b9def896b5eb88a018559b297a816e359015f', '45.120.39.89', 1671893918, '__ci_last_regenerate|i:1671893918;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671892893;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69112e33c32d0249dd44518727c5f1ae44957679', '45.120.39.89', 1671894797, '__ci_last_regenerate|i:1671894797;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671894776;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2827b9f4f8dd31b74454cc52375d125b81a7f68d', '205.210.31.19', 1671893974, '__ci_last_regenerate|i:1671893974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8080b3b5ae13dc3236e8d171e1554e9ece2aaa', '205.210.31.19', 1671893975, '__ci_last_regenerate|i:1671893975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33eea29bae553aa2d1b6b51b1d9a85e7937f8124', '205.210.31.19', 1671893975, '__ci_last_regenerate|i:1671893975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29e7e0a88756c5b6f9a2004af6a6e2eda7f96d5', '31.222.203.2', 1671894131, '__ci_last_regenerate|i:1671894131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1919e0a49e75b63416dd06d0e7763423b96dafbe', '31.222.203.2', 1671894131, '__ci_last_regenerate|i:1671894131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abce5b297e6b1dfc5467bcc2015be8e576dedd29', '31.222.203.2', 1671894131, '__ci_last_regenerate|i:1671894131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f38662095ff93540eca6c7d272173caebc87b12c', '31.222.203.2', 1671894132, '__ci_last_regenerate|i:1671894132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69577fe8c82665250adb8712351ab8dd9be503c', '31.222.203.2', 1671894132, '__ci_last_regenerate|i:1671894132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7ddf3d413f67904fb21de86ed39bbfbd5b86b0', '31.222.203.2', 1671894132, '__ci_last_regenerate|i:1671894132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e733165a2ef83e27e62b4133ccc073dd61838b6f', '198.235.24.156', 1671894733, '__ci_last_regenerate|i:1671894733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7c253a64f599260516005e8c9bb6cab952cd96', '198.235.24.156', 1671894734, '__ci_last_regenerate|i:1671894734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5e67738cf061e3addc98dcbb95ee83c641bdef', '198.235.24.156', 1671894734, '__ci_last_regenerate|i:1671894734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f233d05f758fc60d9349176d2ec7c8fd138eca', '45.120.39.89', 1671894823, '__ci_last_regenerate|i:1671894797;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671855061\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"new\";}last_activity|i:1671894823;register_id|s:3:\"289\";cash_in_hand|s:8:\"180.0000\";register_open_time|s:19:\"2022-12-23 21:16:56\";error|s:82:\"Register is not open, Please enter the cash in hand amount and click open register\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7a4673460e99b4847b2902de6edd9fbed7f147', '172.105.247.100', 1671895884, '__ci_last_regenerate|i:1671895884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ecd5d36e3468ea49c423f5058acd8b5fb4bf28', '172.105.247.100', 1671895884, '__ci_last_regenerate|i:1671895884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3919594341579ef43f41faed3dccc7f2180efb8', '172.105.247.100', 1671895887, '__ci_last_regenerate|i:1671895887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeba139ad5cb81e43f735bd246cdbca673db158e', '172.105.247.100', 1671895887, '__ci_last_regenerate|i:1671895887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b56fcb1be7209076735808e90675475070be63b', '172.105.247.100', 1671895887, '__ci_last_regenerate|i:1671895887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50550579af1bf177f5cbc6b9267873006a8f8105', '172.105.247.100', 1671895887, '__ci_last_regenerate|i:1671895887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca270ec36c77ba5baa8f0c203ca16fc51dd41ef', '172.105.247.100', 1671895887, '__ci_last_regenerate|i:1671895887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56a6ee801a5f10b9a169e06bbf609a84389cf80', '172.105.247.100', 1671895887, '__ci_last_regenerate|i:1671895887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d70ce63c9b1e12ff83c4beaec3a90a12179907', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694db1d0458ffc3f32bd590497a6d574b6377b13', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1715ddca8ad1f5105477fc7d8c2facdcd66dd71d', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b050533b0e15b8d045cf54bdfb66f0228e502ac', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b1a73420d536cb4051223b1859ceab3f194720', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f5b85b2c29509c802f04b3e3ce3d0d02465f774', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a651692da9c3ff069e1bca6911ef0ebafdcfc9', '172.105.247.100', 1671895888, '__ci_last_regenerate|i:1671895888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76830aa9d2ca6c01bf70ee232e3dde53ba27cfe3', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8493ed0b3deb155b1977f1db5487b80b92d49980', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2cfc044de3af5baa7fde58c62b55ab4edca971', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2a1e3c242615573aefaace69a5f0096ebf6bf8', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e414f4f0ee9212c24ff6e6f4ba0a38019da74677', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bb1bb7c96e9aac464dd7eacc799ef31593a16b', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472ae2d7acc9334dc7722240b17d1eb297f42ae4', '172.105.247.100', 1671895889, '__ci_last_regenerate|i:1671895889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fca4d9b7bf215656e2f9eccb068d88b0b7e2127', '172.105.247.100', 1671895890, '__ci_last_regenerate|i:1671895890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('954185bc059b75fc8e1cb4c9f447de94509b9627', '172.105.247.100', 1671895890, '__ci_last_regenerate|i:1671895890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc02b22a0aee9ab14ecbf899b216319e43549fa', '31.222.203.2', 1671895930, '__ci_last_regenerate|i:1671895930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84de85cac8ae451809825975b2ad87bf613131a', '31.222.203.2', 1671895930, '__ci_last_regenerate|i:1671895930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f6fdd1d40287e82bcea5f22c754e47c08a5a61', '31.222.203.2', 1671895930, '__ci_last_regenerate|i:1671895930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434a0f5749115f64fdf4b7ec31753ca4168b02c3', '31.222.203.2', 1671895930, '__ci_last_regenerate|i:1671895930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c336c3c76bb68b803593c4bd2a841cfee1d5f19', '31.222.203.2', 1671895930, '__ci_last_regenerate|i:1671895930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8efc5deba587c6f27061e8268e00fac43722d96', '31.222.203.2', 1671895930, '__ci_last_regenerate|i:1671895930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f8d3ffa4b97377846e4c60f26a3d5c4b3c558a', '31.222.203.2', 1671897729, '__ci_last_regenerate|i:1671897729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ef1cc6dee95e65d21719cf0b3a4ca898c9d798', '31.222.203.2', 1671897729, '__ci_last_regenerate|i:1671897729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5379771c15a48d5f03f941dba396f878404c263', '31.222.203.2', 1671897729, '__ci_last_regenerate|i:1671897729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('153051b7d86bec0686da7e5381c03e71de49e7d7', '31.222.203.2', 1671897729, '__ci_last_regenerate|i:1671897729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da02267ed976f353ba2586d57fe1ac565ca71a56', '31.222.203.2', 1671897729, '__ci_last_regenerate|i:1671897729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48413ffbbf42fd933256c0111125697b05ab28c5', '31.222.203.2', 1671897729, '__ci_last_regenerate|i:1671897729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fccb6fee89eba5726ff00db1968e80560cd61a03', '31.222.203.2', 1671899527, '__ci_last_regenerate|i:1671899527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c5454cfd0e6208cc88d3d498fa775e4a6ce5d3', '31.222.203.2', 1671899527, '__ci_last_regenerate|i:1671899527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f00ad051a7c558fb6c446120df2742c3583f6bb', '31.222.203.2', 1671899527, '__ci_last_regenerate|i:1671899527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc17b34b0a065e0c3a44c72a1067fb69f5b183e0', '31.222.203.2', 1671899530, '__ci_last_regenerate|i:1671899530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('417cf13620e41dbb4cf3b399e6440542491cb24b', '31.222.203.2', 1671899530, '__ci_last_regenerate|i:1671899530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b92e7b8896dc1a12dfed3121112e93fb38c289', '31.222.203.2', 1671899530, '__ci_last_regenerate|i:1671899530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839b021e3beb80e0d8a2115b5faef0ad2b12b713', '172.105.247.100', 1671901280, '__ci_last_regenerate|i:1671901280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b18e37dabaf115d6461e293a027126d356d6c48', '172.105.247.100', 1671901280, '__ci_last_regenerate|i:1671901280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f447e3ee896ceef8ce1b1a781c22d51807e43ad9', '172.105.247.100', 1671901280, '__ci_last_regenerate|i:1671901280;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9362fc7d06996e0d88d9c15b6ebe2526522f64', '172.105.247.100', 1671901281, '__ci_last_regenerate|i:1671901281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20dfe6462ff3ec205a1c9a1e2b91e82c9f9bdb37', '172.105.247.100', 1671901281, '__ci_last_regenerate|i:1671901281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62cd960580aca3fb11cf62d2515d4fafa9c40653', '172.105.247.100', 1671901281, '__ci_last_regenerate|i:1671901281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e70e888b2f7b6ff8a1cc306b3a8ebfd960a57fe', '172.105.247.100', 1671901282, '__ci_last_regenerate|i:1671901282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b11a0a12a4f19d0da42889b3e94ef011a3872a', '172.105.247.100', 1671901282, '__ci_last_regenerate|i:1671901282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ffb66a84a1fd5a2e49acd3284806fa5dbabd88', '172.105.247.100', 1671901282, '__ci_last_regenerate|i:1671901282;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401eaaf94de0c895a3816dcd11663517e75e6cfb', '172.105.247.100', 1671901282, '__ci_last_regenerate|i:1671901282;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a0463c5e914e2180c0344aaf812c12aed751a0', '172.105.247.100', 1671901283, '__ci_last_regenerate|i:1671901283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0feaa8f03affab28e66f53f7f67755084bd626d9', '172.105.247.100', 1671901283, '__ci_last_regenerate|i:1671901283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd2d7500f697ed4bcd86099b161bb3e88da60ebd', '172.105.247.100', 1671901283, '__ci_last_regenerate|i:1671901283;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db21a2135eb04cfa672064f7e801eadae65bcfa9', '172.105.247.100', 1671901284, '__ci_last_regenerate|i:1671901283;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20668d69802bff32842d4513dc619c40613ce83', '172.105.247.100', 1671901284, '__ci_last_regenerate|i:1671901284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632cb0f6c32cf744e583d85899583472c83dc94e', '172.105.247.100', 1671901284, '__ci_last_regenerate|i:1671901284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d5ccb88b09cb96e34bba31e4e4c4db248e261c', '172.105.247.100', 1671901284, '__ci_last_regenerate|i:1671901284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d830cfb33593c9ce8ae371f2085dd70a848453c', '172.105.247.100', 1671901284, '__ci_last_regenerate|i:1671901284;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c08df98f186fb201fa476b662b3efc8a3e1b50', '172.105.247.100', 1671901285, '__ci_last_regenerate|i:1671901285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a747bf43d0802f4ae61b6b15abc71e55c94da19b', '172.105.247.100', 1671901285, '__ci_last_regenerate|i:1671901285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda27a7d681ad1665fac1c9c932ee5f00883352c', '172.105.247.100', 1671901285, '__ci_last_regenerate|i:1671901285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf238b3da56b344fc22f5dc92f2939870621295', '172.105.247.100', 1671901286, '__ci_last_regenerate|i:1671901286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('931c29f55d176a66be9e12a5cf9dee36dab610a7', '172.105.247.100', 1671901286, '__ci_last_regenerate|i:1671901286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a670766c3c08a5916ae8d59715222da3db19926', '172.105.247.100', 1671901286, '__ci_last_regenerate|i:1671901286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaed07d005f02f582e4da4274ca0b7956968566e', '31.222.203.2', 1671901325, '__ci_last_regenerate|i:1671901325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de756d522ebed8306e246ed0fd2e9b32b6b60f1', '31.222.203.2', 1671901325, '__ci_last_regenerate|i:1671901325;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db4c7bbcb6583e4b005f442f9ffd6eb8b095974', '31.222.203.2', 1671901325, '__ci_last_regenerate|i:1671901325;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3331966a238445ad332373dbd1797fcecafe86', '31.222.203.2', 1671901327, '__ci_last_regenerate|i:1671901327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20df528ed4ad15d4e0cc99573175637104add6f8', '31.222.203.2', 1671901327, '__ci_last_regenerate|i:1671901327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdda802631453ef9ac78cf6c66c2517351f7fce4', '31.222.203.2', 1671901327, '__ci_last_regenerate|i:1671901327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5202211e95440df3823d79fcc5b4a2fe75d316', '31.222.203.2', 1671903130, '__ci_last_regenerate|i:1671903130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27457cc1e527cd0f0a7659be03586f3457ca5842', '31.222.203.2', 1671903132, '__ci_last_regenerate|i:1671903132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06b4da96efbf6071be3771aa4fdc220fbbac685', '31.222.203.2', 1671903132, '__ci_last_regenerate|i:1671903132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b842336e323d53326d59c3acacc7662b0d43ce7', '31.222.203.2', 1671903132, '__ci_last_regenerate|i:1671903132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f0338172c0a4a0e9b34ae0af8e6b84656c8edc', '31.222.203.2', 1671903132, '__ci_last_regenerate|i:1671903132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624cb13f3e052e40a979aef2f45d76a7f7835e4d', '31.222.203.2', 1671903132, '__ci_last_regenerate|i:1671903132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191a668fe2bae2199b572c7b93cb21a56473b4df', '31.222.203.2', 1671904933, '__ci_last_regenerate|i:1671904933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b4f170f63fd3f15ff79cffc97c38fa35d1384c', '31.222.203.2', 1671904933, '__ci_last_regenerate|i:1671904933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0ebe72519634b4d40c4846e1276e7e8c845c25', '31.222.203.2', 1671904933, '__ci_last_regenerate|i:1671904933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04a00f6bf263346d95e4c8ee37a25261eb7e5451', '31.222.203.2', 1671904936, '__ci_last_regenerate|i:1671904936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14b265837d9a539f837db0803aa7d5c5a8717fd0', '31.222.203.2', 1671904936, '__ci_last_regenerate|i:1671904936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648dc57ec12563aabde106f195fe50761b357dca', '31.222.203.2', 1671904936, '__ci_last_regenerate|i:1671904936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf2a8e45a5534c93f5464829910b2017cf51fef', '172.105.247.100', 1671906684, '__ci_last_regenerate|i:1671906684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdaef840a6e3ab2b947faf96917d8488d7fbb4ca', '172.105.247.100', 1671906684, '__ci_last_regenerate|i:1671906684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cf8e2cee7b7bb3f40e557ca6fd620a8f7950f9', '172.105.247.100', 1671906685, '__ci_last_regenerate|i:1671906685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7158b56471f32d5f155f86a22bb6a9c37e52c5ae', '172.105.247.100', 1671906685, '__ci_last_regenerate|i:1671906685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41fa63ad0fdf28f65d4cfadfffdc5962c434c2c7', '172.105.247.100', 1671906685, '__ci_last_regenerate|i:1671906685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be7ab844ca485229e7d176780a7067436a11a625', '172.105.247.100', 1671906686, '__ci_last_regenerate|i:1671906686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd75b48dfec7779d5da4cf03fc3afefb5f4e237', '172.105.247.100', 1671906686, '__ci_last_regenerate|i:1671906686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ec4270decf9f2b92e58eaab23b6265315e7f28', '172.105.247.100', 1671906686, '__ci_last_regenerate|i:1671906686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb1b6c4e53ce1376e67d4a98fb1c3becaee9c93', '172.105.247.100', 1671906686, '__ci_last_regenerate|i:1671906686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d585599772a23124fdbdef094f09644b09d98993', '172.105.247.100', 1671906686, '__ci_last_regenerate|i:1671906686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7881f1a4276ff5384d1371eeefe2e87ab0dac48d', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0f39af37a2a4ec1ed1f4a9322c607b523ea4ff', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60fdcbf8fca26e38fc5299950bdc2f5ff461f4a', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de5f0fe2163ba28af3ce2614d94c7f45ad37d83', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2840d5940e4e2a3476f03ec94cf3489cb991c770', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9af5cf55126b0f6755e7cafe1b67a8323bbbda6', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa440d6013d911c1735fd9c7ee1da5701ce5f79', '172.105.247.100', 1671906687, '__ci_last_regenerate|i:1671906687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('627ed148eecc593d8f373b09730c8802ef0a765d', '172.105.247.100', 1671906688, '__ci_last_regenerate|i:1671906687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660a0b3f470d6f3906bc1992043ead1ec029500d', '172.105.247.100', 1671906688, '__ci_last_regenerate|i:1671906688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33e7e76a253c8e75ad0383baa0d108386b35aae', '172.105.247.100', 1671906688, '__ci_last_regenerate|i:1671906688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08cd0abacf36a8ab5035c605f02ac0642976ec0', '172.105.247.100', 1671906688, '__ci_last_regenerate|i:1671906688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad5a311dcd16837ae7c1a3a909b85f07bc9fb24', '172.105.247.100', 1671906688, '__ci_last_regenerate|i:1671906688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d64b21e3525627908cb11461b069ad2a36af5df', '172.105.247.100', 1671906689, '__ci_last_regenerate|i:1671906689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9dd2ecbdc243bc2afd08f1ddcf46ff2110b015', '172.105.247.100', 1671906689, '__ci_last_regenerate|i:1671906689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c00d8c12dd65e09fb862b0894aa03f412570f28', '31.222.203.2', 1671906725, '__ci_last_regenerate|i:1671906725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807b9e191e2140472ce2d758e96604c3f51eb3c4', '31.222.203.2', 1671906725, '__ci_last_regenerate|i:1671906725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea95b435dacd5fc988e9e118a09b44cfa56ec3fe', '31.222.203.2', 1671906725, '__ci_last_regenerate|i:1671906725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef863838dffdc8f3b34d90a231239cd961e7706', '31.222.203.2', 1671906727, '__ci_last_regenerate|i:1671906727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b6a4c7d84707c34f55874cb7a0387e2f7205ea', '31.222.203.2', 1671906727, '__ci_last_regenerate|i:1671906727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b273eca429897c81ac5968491b60d2c81d0437', '31.222.203.2', 1671906727, '__ci_last_regenerate|i:1671906727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ccf9de5650b71310cfc97c3ef0418a924414c8e', '31.222.203.2', 1671908529, '__ci_last_regenerate|i:1671908529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b1e4c0a4fa04d935b4e667d3c6cee69a103edfb', '31.222.203.2', 1671908529, '__ci_last_regenerate|i:1671908529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433b3324ec0275e35320a88e2b4837f343f87489', '31.222.203.2', 1671908529, '__ci_last_regenerate|i:1671908529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed06bdb905b35968c9a68aef6ae5b97902e967c2', '31.222.203.2', 1671908531, '__ci_last_regenerate|i:1671908531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38df7ea71dbd1001ae893df410fa558acf399995', '31.222.203.2', 1671908531, '__ci_last_regenerate|i:1671908531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28dd5082af5434d4be8b16be396c898f12d71391', '31.222.203.2', 1671908531, '__ci_last_regenerate|i:1671908531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be73f0c3a3643f27c59e31a11a606cfacb330374', '31.222.203.2', 1671910330, '__ci_last_regenerate|i:1671910330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c1c5e1aa09a3c117ce49f506191d2640ff0617', '31.222.203.2', 1671910330, '__ci_last_regenerate|i:1671910330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff9d4b0e5ea2a2a73ce4bf31c5eb8f886e2ef5d', '31.222.203.2', 1671910330, '__ci_last_regenerate|i:1671910330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1f9d075523558e0d85cbbeeca03e3d896b0d16', '31.222.203.2', 1671910330, '__ci_last_regenerate|i:1671910330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcbb12f8fe4f40860f5da56984602eca453cca7', '31.222.203.2', 1671910330, '__ci_last_regenerate|i:1671910330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e0458e99bbb1745d336eb549b7b286c3db1534', '31.222.203.2', 1671910330, '__ci_last_regenerate|i:1671910330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c98552a1b5aaee8df7fb9836cf36734ee72222', '172.105.247.100', 1671912085, '__ci_last_regenerate|i:1671912085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb8a0543cdd350ba36985075e1b4861fe0b9d6d9', '172.105.247.100', 1671912086, '__ci_last_regenerate|i:1671912085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6797af86432f7f27e98a0cf576a3d6a3fe1a0ad', '172.105.247.100', 1671912086, '__ci_last_regenerate|i:1671912086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9687a1a5db81795227c0c4272dbe02ece7491fe8', '172.105.247.100', 1671912086, '__ci_last_regenerate|i:1671912086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794ba1e6ed8af06026e623c5471ac02ae686811d', '172.105.247.100', 1671912086, '__ci_last_regenerate|i:1671912086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2791ccaf3471a699980a2cfdd0861a5592b1d00', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92dcc2b11664d91e7d63dc1f8ccf0dcfb455eb49', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471713fd26d6b32a366106ce125cba662f4f33d1', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db664dca4f7c8233c10aa61580baf38d0ea1d4b', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d68a948ad2565d709088eba6c84b6f382a1c6ed', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4441220f13f1817beede2637f0d4571189160d4', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525c16d817295721b37d121bff9d20dc9096286a', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eebd3fb96a5aa599585147d8b37c0a7988ef1e3', '172.105.247.100', 1671912087, '__ci_last_regenerate|i:1671912087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687275e00f696736eea6cb60f80b1146bb154636', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cb62312a49b9224af3d1f6f4c3e1d42781c4f5', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed09f9d2c451eca4795e7c5e92b4058da6aef0fc', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2831ee7153345cadddc6ed0b851c19a2ad4be36', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae8931acd72d128b1077588ad18135d31fd11ec', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6c9aa51e5d7e362436df848b54eb20129a180d', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081c16924d2d07f2168a1a1a0f2c20171703f338', '172.105.247.100', 1671912088, '__ci_last_regenerate|i:1671912088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e52d909d7af18cfa623e775e6fc35893a9fd60', '172.105.247.100', 1671912089, '__ci_last_regenerate|i:1671912089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5d2334b2b523cafd54a358e963f5e39195c7c0', '172.105.247.100', 1671912089, '__ci_last_regenerate|i:1671912089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5f881e2e2e95b6428e6b42e93ffd563f631c27', '172.105.247.100', 1671912089, '__ci_last_regenerate|i:1671912089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d02c2281c76a6422301c57b86c23d67aa093fb', '172.105.247.100', 1671912090, '__ci_last_regenerate|i:1671912089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fbf9ddc5efee9e4ee67759be03e11472f71969', '31.222.203.2', 1671912130, '__ci_last_regenerate|i:1671912130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0b6f977d3cf396ec4fdf527e861fb847e108bc', '31.222.203.2', 1671912130, '__ci_last_regenerate|i:1671912130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5847fbca597e62f5b95e791d42279162be2ceeaa', '31.222.203.2', 1671912130, '__ci_last_regenerate|i:1671912130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97eff476e24b1c33967b5edd506891f7486f3352', '31.222.203.2', 1671912131, '__ci_last_regenerate|i:1671912131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238058e446b90a6ab69e9ef232f01c4ca7a999b1', '31.222.203.2', 1671912131, '__ci_last_regenerate|i:1671912131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d9964fb507ac1c51fe5e8f515cee22e5c8c8e3', '31.222.203.2', 1671912131, '__ci_last_regenerate|i:1671912131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b610cab2446ebd277a56e7c930c666d947dd9c', '31.222.203.2', 1671913931, '__ci_last_regenerate|i:1671913931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e663da140810dc09dfcf83ecff36622be42fc56f', '31.222.203.2', 1671913931, '__ci_last_regenerate|i:1671913931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ebb3af3c781626abb2a04a0ffccb4a601d78d4', '31.222.203.2', 1671913931, '__ci_last_regenerate|i:1671913931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6158d26052bd8429c8a80c6fd3e8f53da4523525', '31.222.203.2', 1671913933, '__ci_last_regenerate|i:1671913933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe99cbbddb8811aff580bd2640e303f237bc632', '31.222.203.2', 1671913933, '__ci_last_regenerate|i:1671913933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f40cdf7678ebee3714eb6b01c49aaf5d6e94e0', '31.222.203.2', 1671913933, '__ci_last_regenerate|i:1671913933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b828e6fb43c5cf034c15f2f93c8f1c291906df', '31.222.203.2', 1671915728, '__ci_last_regenerate|i:1671915728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda3c7034da7e05e9abbebf097063f35adac58b5', '31.222.203.2', 1671915728, '__ci_last_regenerate|i:1671915728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c404ef50b9821178675ff8e3d5e6c54c406f3c', '31.222.203.2', 1671915728, '__ci_last_regenerate|i:1671915728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812ff2f2a0d0e0402a26bcddceceae6a6236dae2', '31.222.203.2', 1671915728, '__ci_last_regenerate|i:1671915728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0598460593b50979421cbf71fc34e3d4337faf0b', '31.222.203.2', 1671915728, '__ci_last_regenerate|i:1671915728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e12ec6a9a79ab1f04b1675a3505fe4084271a5', '31.222.203.2', 1671915728, '__ci_last_regenerate|i:1671915728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8573d8c431ef72785c523a6fe44f5721e9c9a5', '172.105.247.100', 1671917480, '__ci_last_regenerate|i:1671917480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85f6dc4c28f55950c5cc736209001b239b0325e', '172.105.247.100', 1671917480, '__ci_last_regenerate|i:1671917480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b259608828e7c0a87589649893514358e34f6105', '172.105.247.100', 1671917481, '__ci_last_regenerate|i:1671917481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0207a715897b7921c29636a90f5274e0429ab24', '172.105.247.100', 1671917481, '__ci_last_regenerate|i:1671917481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79880cd582950931ebb612b248994b1df0586376', '172.105.247.100', 1671917481, '__ci_last_regenerate|i:1671917481;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416b8c3a8a247b15ee6e2f991cb40659372538e0', '172.105.247.100', 1671917481, '__ci_last_regenerate|i:1671917481;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a1ad61966f37909ea92de9770678f0c4cf9242', '172.105.247.100', 1671917482, '__ci_last_regenerate|i:1671917482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e842cfe987cfaf6ef16118ef83a4a027988448e', '172.105.247.100', 1671917482, '__ci_last_regenerate|i:1671917482;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd67c93e8799782910f7f9659f26daedecb51e2d', '172.105.247.100', 1671917482, '__ci_last_regenerate|i:1671917482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1985cec3e1755823ce3d6913bc1d241eb77717c2', '172.105.247.100', 1671917482, '__ci_last_regenerate|i:1671917482;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f46f7b32d633258b656222418fb323d59837ca', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507996de02ad9399ea9aab259f22514e24d99982', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b6177f5ef0295bbd9d4b93984890a1d04760e3', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22ff87b1c86866fab95aed8b9a0c0b60ce0b0a9', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce54632545230cb3d151c962bfaabd7a6c2e9e3', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6187df4ce38761085b467e5aa79c5fbbc575c1', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc988bc09b624cdd11326ddb0601b4246b392baa', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9266e1699d1dd2a762acba3d2ea2a23e9978f3a4', '172.105.247.100', 1671917483, '__ci_last_regenerate|i:1671917483;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ee99cc7e45d9c35ad2598e0587788bc39bc372', '172.105.247.100', 1671917484, '__ci_last_regenerate|i:1671917484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15d7152d86465efc1fb89bc1d3f8793a2311058', '172.105.247.100', 1671917484, '__ci_last_regenerate|i:1671917484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac82b2c5109cb7ff322df4c1bc11007f28ef241', '172.105.247.100', 1671917484, '__ci_last_regenerate|i:1671917484;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cad6da41c37aa9aac189ee5795c4fc5ca6c23b9', '172.105.247.100', 1671917485, '__ci_last_regenerate|i:1671917484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d63c57ebfcbe73e80395d09fd4826dc1c1da7a1', '172.105.247.100', 1671917485, '__ci_last_regenerate|i:1671917485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('373fa69886dbf08de23b1ddb867b2940afd6dd58', '172.105.247.100', 1671917485, '__ci_last_regenerate|i:1671917485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1cdf19b08661367ca81cd73ce351f737c603e5d', '31.222.203.2', 1671917532, '__ci_last_regenerate|i:1671917532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e381b1bb713bcfaad40e2fe31f5c10e9405f18e6', '31.222.203.2', 1671917532, '__ci_last_regenerate|i:1671917532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71499049f69feb95e9d7913f7375e088b8f4cf4f', '31.222.203.2', 1671917532, '__ci_last_regenerate|i:1671917532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e808cbef9babd1218fc5dcd4c2f1159a37ebab57', '31.222.203.2', 1671917532, '__ci_last_regenerate|i:1671917532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce2ebc13dee86a0b8e335f26e1d13db8155752a', '31.222.203.2', 1671917532, '__ci_last_regenerate|i:1671917532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59dbe51c764e01ae44407816032a578a5ac910cb', '31.222.203.2', 1671917532, '__ci_last_regenerate|i:1671917532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949136cd3530b5c5f1832c868b6766ae9c3c0eac', '31.222.203.2', 1671919331, '__ci_last_regenerate|i:1671919331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd44a7c0e0b8903068cb438646436eaf5f0fc40e', '31.222.203.2', 1671919331, '__ci_last_regenerate|i:1671919331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06de249118289afe1afc8db23396c1b317435b59', '31.222.203.2', 1671919331, '__ci_last_regenerate|i:1671919331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9593dc4ee37f4e845f42b3dee2e090b7ff7223ff', '31.222.203.2', 1671919333, '__ci_last_regenerate|i:1671919333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1fe13712c71388ff1c21c2a0ab705d479cf50a', '31.222.203.2', 1671919333, '__ci_last_regenerate|i:1671919333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea8c2d5bf4d5f7c8cd27e18ebd51fc9026f43309', '31.222.203.2', 1671919333, '__ci_last_regenerate|i:1671919333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c626fa451bb082cf8411bf42df344e8a49a77798', '31.222.203.2', 1671921130, '__ci_last_regenerate|i:1671921130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad1a1acae6ba4755a18f304251da7d89a3b98c4', '31.222.203.2', 1671921130, '__ci_last_regenerate|i:1671921130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779cb1ba8253764025c6f515972a9d7d2c0ea3d9', '31.222.203.2', 1671921130, '__ci_last_regenerate|i:1671921130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1dd734ae6958152c9b0e237c9b3bfd5ce8fc5a', '31.222.203.2', 1671921132, '__ci_last_regenerate|i:1671921132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b1c9ef608a4d59d135d24a3a5b34811b406b87', '31.222.203.2', 1671921132, '__ci_last_regenerate|i:1671921132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b3a3d89d12e383a35fd7982f8c99acbb712736', '31.222.203.2', 1671921132, '__ci_last_regenerate|i:1671921132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9057e693187d065f6a4c756da255dcdff386c5a9', '172.105.247.100', 1671922881, '__ci_last_regenerate|i:1671922881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d2ef8cc3af14dfafb32bb946185d6522e1ccec', '172.105.247.100', 1671922881, '__ci_last_regenerate|i:1671922881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2516ee11ca874f1d5d9ddc0958e7777b5ac085', '172.105.247.100', 1671922881, '__ci_last_regenerate|i:1671922881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0407d90fb42b6efd717402774fa366d628f2b5', '172.105.247.100', 1671922882, '__ci_last_regenerate|i:1671922882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c63f83183badec115ade7859474f13ec5aefaf9', '172.105.247.100', 1671922882, '__ci_last_regenerate|i:1671922882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eafc3b35312db43a1f08a120eac9558e4faeae4', '172.105.247.100', 1671922882, '__ci_last_regenerate|i:1671922882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33905aed46977c59051db1ff8e72694770239a8', '172.105.247.100', 1671922882, '__ci_last_regenerate|i:1671922882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6353ed41a180234460687edb19577da005f81344', '172.105.247.100', 1671922882, '__ci_last_regenerate|i:1671922882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63a2b46451799fe4f902635c94128fd8af152248', '172.105.247.100', 1671922882, '__ci_last_regenerate|i:1671922882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fcfca107f38a4407939fcf7997090d503e95c6', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3495e765219577959ec78a3168b3b7f785dead2', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010cd5e7ed72940c2acfb0755e6aa786f25acd8d', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7bfc7033189cdf4c068b4822b007686069abb8', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89761697e6c47bc1a41250473936b4bff7ea70d9', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6cf0ff5e743c1bf201a0a128e4a3f9580d6f5ea', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ea85a8218b046a61e423ef248375bfbe797e6a', '172.105.247.100', 1671922883, '__ci_last_regenerate|i:1671922883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3353c246db8f0db42152c9f3ae2fc38f7f87d660', '172.105.247.100', 1671922884, '__ci_last_regenerate|i:1671922884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffbb170844b68db952e00d1d3b7bf4655879a9a8', '172.105.247.100', 1671922884, '__ci_last_regenerate|i:1671922884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37f08877cc5301ca60f41a9c859a41e615f5de33', '172.105.247.100', 1671922884, '__ci_last_regenerate|i:1671922884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b87da6889ecd244826dc1db007308d1ef4fd50e', '172.105.247.100', 1671922884, '__ci_last_regenerate|i:1671922884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3582be79e6b6dc73dd444fcf7af9352bc20bf6ac', '172.105.247.100', 1671922884, '__ci_last_regenerate|i:1671922884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec4a29baee2ac908c255b85264fd530d44a4e18', '172.105.247.100', 1671922884, '__ci_last_regenerate|i:1671922884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a32d03faad0c82062920773e1dfb626e0644ab', '172.105.247.100', 1671922885, '__ci_last_regenerate|i:1671922885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17aa2bd187209848ff1eaa41388c24222e04f66', '172.105.247.100', 1671922885, '__ci_last_regenerate|i:1671922885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa7630a9ee669988c1894eb45ca468017b45cd7', '31.222.203.2', 1671922935, '__ci_last_regenerate|i:1671922935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234abebaa71a8d7fe7ae562141152c71445f83d6', '31.222.203.2', 1671922935, '__ci_last_regenerate|i:1671922935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e9a33dc1651d0ff6aa46df5705ccb86833c298', '31.222.203.2', 1671922935, '__ci_last_regenerate|i:1671922935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c295166aa6a76a36a53dcf702349767e91fbf1d4', '31.222.203.2', 1671922936, '__ci_last_regenerate|i:1671922936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3dd375a52773bcd47d688eba7092f6eaf07d90c', '31.222.203.2', 1671922936, '__ci_last_regenerate|i:1671922936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c7005abd3937498b55b1d81f6eddb562f55f18', '31.222.203.2', 1671922936, '__ci_last_regenerate|i:1671922936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37f249598a8e9d43108f64bd619f79e8f9f57523', '31.222.203.2', 1671924723, '__ci_last_regenerate|i:1671924723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c181ab3991f3f1f23337d2613d14b548427ee8c', '31.222.203.2', 1671924723, '__ci_last_regenerate|i:1671924723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb78a993ffd30464be0f3f042a8d6a4540dbd2b3', '31.222.203.2', 1671924723, '__ci_last_regenerate|i:1671924723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d386dd076ea00d5bf8310465425ad7a17dc24f', '31.222.203.2', 1671924726, '__ci_last_regenerate|i:1671924726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07152abb055738b58dc30da74403b379205177fb', '31.222.203.2', 1671924726, '__ci_last_regenerate|i:1671924726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8757be738a28335d3f064e58fa1182240c948ab4', '31.222.203.2', 1671924726, '__ci_last_regenerate|i:1671924726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f50ab8e1e93e1dc4ee9c530ffee82a99c63499', '31.222.203.2', 1671926528, '__ci_last_regenerate|i:1671926528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95da117bf461ae85c596ddd2109b81675e50ec2f', '31.222.203.2', 1671926528, '__ci_last_regenerate|i:1671926528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f92479df90d8527ba48083f369c343affd6770c', '31.222.203.2', 1671926528, '__ci_last_regenerate|i:1671926528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e239df44a597e948ead1fa489c7c2cd079e1db0', '31.222.203.2', 1671926530, '__ci_last_regenerate|i:1671926530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44ca962f94c4e4408ef93d0f50184d1a02972d4', '31.222.203.2', 1671926530, '__ci_last_regenerate|i:1671926530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114daa9b079eeef073a20f9b843391fab6ef6332', '31.222.203.2', 1671926530, '__ci_last_regenerate|i:1671926530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2531388438e83d8cff46110db3869b501820d58', '172.105.247.100', 1671928285, '__ci_last_regenerate|i:1671928285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbab388aa81ac2409c454e29daaa47bc8092c4a', '172.105.247.100', 1671928285, '__ci_last_regenerate|i:1671928285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0dc30d0282c4157fff954e144791b566e776ed3', '172.105.247.100', 1671928285, '__ci_last_regenerate|i:1671928285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7eed621cdb9139edcccd53fa5aa2c8bd22179cd', '172.105.247.100', 1671928285, '__ci_last_regenerate|i:1671928285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d851f3f84925e6967ada22ef983b3d288fe28b2', '172.105.247.100', 1671928285, '__ci_last_regenerate|i:1671928285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acfc40eeefe082c36a2325585c25d66fc992048', '172.105.247.100', 1671928285, '__ci_last_regenerate|i:1671928285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7023357bdcb4f4bdcf646b7bc3eb1cd3fe04c731', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718b77893827f62fe6778507b111ec482cda00ac', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5dd736e6c6b33dd2b9d0ad085d01b3764d0aba5', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c9696b52b1dae9f95936df97ee3d6c732fe37f', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d0caed945d997b9108d7aa986bcea24a922bde', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c94f260a83a273a3e1bfb7854d10c1b5059e4f', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a838b68ab99aea70b765af0c65b4ed0f9e77052f', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1864df6d875d70ea3e2341d6189ef35b68eb82', '172.105.247.100', 1671928286, '__ci_last_regenerate|i:1671928286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f6719220796aeb09d43c0df17bc369bce18604', '172.105.247.100', 1671928287, '__ci_last_regenerate|i:1671928287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327fb4f7c15ffb915af14f2bf84a4ef123d21081', '172.105.247.100', 1671928287, '__ci_last_regenerate|i:1671928287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbfdf2f0711e7bc6c3c7ff9a914a67b9d1bdd67e', '172.105.247.100', 1671928287, '__ci_last_regenerate|i:1671928287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144ea4f620fa088d99060b40718ddcfffc1b6167', '172.105.247.100', 1671928287, '__ci_last_regenerate|i:1671928287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad588eb7952270749c1162917bd56e09c235d5a', '172.105.247.100', 1671928287, '__ci_last_regenerate|i:1671928287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ad3190da66f3c73108ecefd7380b8b0af92f30', '172.105.247.100', 1671928287, '__ci_last_regenerate|i:1671928287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce41cedbda311f7f8a1e07e06872f34fe9d4662b', '172.105.247.100', 1671928288, '__ci_last_regenerate|i:1671928288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad5583af3e18466e2f09f8481b62026e1683d32', '172.105.247.100', 1671928288, '__ci_last_regenerate|i:1671928288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68834f5ce2c8cd4afcdf78cdd15bc2278c05c382', '172.105.247.100', 1671928288, '__ci_last_regenerate|i:1671928288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('019996a8a0be661a5f8aa216d347d9915f4b22c2', '172.105.247.100', 1671928288, '__ci_last_regenerate|i:1671928288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a191868db12433e9d956b8a9ce23525a2ee373a', '31.222.203.2', 1671928335, '__ci_last_regenerate|i:1671928335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a94baf4bf223d898272cf798cbc89e1b644b3597', '31.222.203.2', 1671928335, '__ci_last_regenerate|i:1671928335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e6dfc49e53906b8841ad751e887840bb074a34', '31.222.203.2', 1671928335, '__ci_last_regenerate|i:1671928335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f88e2ba2b94b7818eaa4c8c648e5bcb6bc59c402', '31.222.203.2', 1671928338, '__ci_last_regenerate|i:1671928338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385e1a17cd818037b6b702a39af3bd4b9c76d65a', '31.222.203.2', 1671928338, '__ci_last_regenerate|i:1671928338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b2f5e3795cb7979c09b972ac47f137f9b38ab1', '31.222.203.2', 1671928338, '__ci_last_regenerate|i:1671928338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c2277d28c931c7ca7c66a1d2ff2ab9eb398da5', '31.222.203.2', 1671930132, '__ci_last_regenerate|i:1671930132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d1816e31cf2804ce883feec58293d42603052a', '31.222.203.2', 1671930132, '__ci_last_regenerate|i:1671930132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c48e2a1996a8e2ed1348c3eb990021b0e343a3', '31.222.203.2', 1671930132, '__ci_last_regenerate|i:1671930132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35dca6230b8ac96bfa71b2c72bfffebe3a22c58', '31.222.203.2', 1671930132, '__ci_last_regenerate|i:1671930132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8fade189aae400b7f2a6a6c88e267f1d403bc60', '31.222.203.2', 1671930132, '__ci_last_regenerate|i:1671930132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796afeb99168330fe27efa0f50b1cdea9ff831f7', '31.222.203.2', 1671930132, '__ci_last_regenerate|i:1671930132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2188b9880f29be8bc393554d7083bcb2e7d849', '31.222.203.2', 1671931932, '__ci_last_regenerate|i:1671931932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5bcbfeed57ad7522b4421c4aef3a0364596cd1', '31.222.203.2', 1671931932, '__ci_last_regenerate|i:1671931932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912790e344acd870000921ca7281cc4fe832a9e8', '31.222.203.2', 1671931932, '__ci_last_regenerate|i:1671931932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f364790567f218020c9cb01a03e9aa8328e923', '31.222.203.2', 1671931934, '__ci_last_regenerate|i:1671931934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1c08f01a3ffed97d11353132d99e1a5e250325', '31.222.203.2', 1671931934, '__ci_last_regenerate|i:1671931934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b600411f0a46eb1611f1da20beb701d8fa59a500', '31.222.203.2', 1671931934, '__ci_last_regenerate|i:1671931934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc3a91dfe1f3615475997a31c5698aef0d746af', '205.210.31.170', 1671933262, '__ci_last_regenerate|i:1671933262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42aac3f27e5b015a79cbaa91bab3258fd5cdd4ea', '205.210.31.170', 1671933263, '__ci_last_regenerate|i:1671933263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('676918d8cb5f326f33c7017b1c3b8ea77e39995b', '205.210.31.170', 1671933263, '__ci_last_regenerate|i:1671933263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('988a98506d2e4b607b271e63fe3086148b491c48', '172.105.247.100', 1671933682, '__ci_last_regenerate|i:1671933682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab2b47e40c8955ddcf2421913d27768f17846bd', '172.105.247.100', 1671933682, '__ci_last_regenerate|i:1671933682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f72b1047193397cebe9aeb6e1d833396e213db4', '172.105.247.100', 1671933682, '__ci_last_regenerate|i:1671933682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0508f74f26f4ec913921c380b343d679f17c171', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c98fa09333134ddabb9c323e40882029d4bded1', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4964062b40971638997dbe542ddeb6c17d7006e', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52230be9f15926a7a1ce5db5960578c80181a0ff', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07fa694105f776ca3b7f51d9a05f3fce84057b43', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79c04ade113afbd0280b15a5cd16c15b0f281ed', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7621fd60825c71625ff4c95cf816ecdf11091351', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f2a83eef3fcc558f08484fa8404097def566c24', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c01780ec1a51b5e68c07f56437ff4bdb31180b7', '172.105.247.100', 1671933683, '__ci_last_regenerate|i:1671933683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9250dc7c4f8a4918c378a7beeb3a74b063eb0e92', '172.105.247.100', 1671933684, '__ci_last_regenerate|i:1671933684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5e77ad5258b6aad7fec1b3e2b5d482de61d4af', '172.105.247.100', 1671933684, '__ci_last_regenerate|i:1671933684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e57b90d21ff907b0179b31f93ba490a3eecd859', '172.105.247.100', 1671933684, '__ci_last_regenerate|i:1671933684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47784dd322a2bb7a24d8fe020ad39f38dbf4cd3', '172.105.247.100', 1671933684, '__ci_last_regenerate|i:1671933684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0543e6cbce6f24a498a4c2118e8e08d4102138', '172.105.247.100', 1671933684, '__ci_last_regenerate|i:1671933684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963a7f36ad3003dd9fb4e7f01f3f242ae295c0fa', '172.105.247.100', 1671933684, '__ci_last_regenerate|i:1671933684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b99fea3689763382149ceeda18002c4ed64c4db', '172.105.247.100', 1671933685, '__ci_last_regenerate|i:1671933684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e467957a7f04540c463618ff0bebc9d5982af036', '172.105.247.100', 1671933685, '__ci_last_regenerate|i:1671933685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fb24487c663e587457594756b01788f2043a26', '172.105.247.100', 1671933685, '__ci_last_regenerate|i:1671933685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c724aadffca251cb9d80d877e21102d6a6ae56a2', '172.105.247.100', 1671933685, '__ci_last_regenerate|i:1671933685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac42c3c08862f5949261f074fc7ab9ec4c4ee0e', '172.105.247.100', 1671933685, '__ci_last_regenerate|i:1671933685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faee10b37061610772fda052e85dbcf64d345d92', '172.105.247.100', 1671933685, '__ci_last_regenerate|i:1671933685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df9afd00b53a7887ed198c0c72ec9c15b2f8b9eb', '31.222.203.2', 1671933728, '__ci_last_regenerate|i:1671933728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee191afef4fd3e48b4c46ab58daa1722415abec4', '31.222.203.2', 1671933728, '__ci_last_regenerate|i:1671933728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc43b161e330b8a367c8411f311b9a15ff3cc228', '31.222.203.2', 1671933728, '__ci_last_regenerate|i:1671933728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfb7de268a24d1eec03bd53caa1f7674ceb1177', '31.222.203.2', 1671933731, '__ci_last_regenerate|i:1671933731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d04f76dfdd72fe14640ec8e79a35acb245b5cd', '31.222.203.2', 1671933731, '__ci_last_regenerate|i:1671933731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f3077d248825160c7d8a52a77005620c2d89b2', '31.222.203.2', 1671933731, '__ci_last_regenerate|i:1671933731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f243df5ad4f29410d77ca4872df44aab7967165a', '31.222.203.2', 1671935527, '__ci_last_regenerate|i:1671935527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac70b79ed4c6799c609aef155c5330d3453b623', '31.222.203.2', 1671935527, '__ci_last_regenerate|i:1671935527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae24c84242adc475e88143dbbf59e5e67fe4b925', '31.222.203.2', 1671935527, '__ci_last_regenerate|i:1671935527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e181242ff86c4d67740fe65c3cf2ab7c8d7845', '31.222.203.2', 1671935527, '__ci_last_regenerate|i:1671935527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a40dc46bbb26746bacc837363e82b172c365ba', '31.222.203.2', 1671935527, '__ci_last_regenerate|i:1671935527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3c84aebaeb19bd1c61c03149520ba0647504ae', '31.222.203.2', 1671935527, '__ci_last_regenerate|i:1671935527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccdb69b7208c5050ac70b869700e549fd65c784', '31.222.203.2', 1671937327, '__ci_last_regenerate|i:1671937327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58926c27abb3098e7ffe4090d56be9bc5bb8a71e', '31.222.203.2', 1671937327, '__ci_last_regenerate|i:1671937327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a70baed5d8983b86038a1f0414ee565f220afd2', '31.222.203.2', 1671937327, '__ci_last_regenerate|i:1671937327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58fcf3f61475cde623c55b546c9ce23abd34a8da', '31.222.203.2', 1671937329, '__ci_last_regenerate|i:1671937329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fcc8fa3cffad6dfad2c7a8bd914112f86b6c59b', '31.222.203.2', 1671937329, '__ci_last_regenerate|i:1671937329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d234a96be38eeb250a59dbcaf9a936be7cd244d', '31.222.203.2', 1671937329, '__ci_last_regenerate|i:1671937329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8387a5058fd073987b0b5ddbac191925aed05e0a', '172.105.247.100', 1671939083, '__ci_last_regenerate|i:1671939083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99bb853bb2c5814e1366ed426915d1807bc27874', '172.105.247.100', 1671939083, '__ci_last_regenerate|i:1671939083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525141d518b2ebdb80e9721716359ce7a29ca13b', '172.105.247.100', 1671939083, '__ci_last_regenerate|i:1671939083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceeb22619af59fd8a70a538db727d4b3d4692ecd', '172.105.247.100', 1671939083, '__ci_last_regenerate|i:1671939083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d2eb7a304750e5b00d9863b1cda4c996277d98', '172.105.247.100', 1671939084, '__ci_last_regenerate|i:1671939084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2182fa13227d103fffce2826b709672cf32431', '172.105.247.100', 1671939084, '__ci_last_regenerate|i:1671939084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ead61f2f471b569a8317cff4c15b669f6f9c91e', '172.105.247.100', 1671939084, '__ci_last_regenerate|i:1671939084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7dafed788ccb29767762f3b59b6d0d46652e27', '172.105.247.100', 1671939085, '__ci_last_regenerate|i:1671939084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3ab6d4de30a28e0291088bd45277e6265c30f4', '172.105.247.100', 1671939085, '__ci_last_regenerate|i:1671939085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472f33e08ecdf5993fc3d1d03e8741cbd2fe05f6', '172.105.247.100', 1671939085, '__ci_last_regenerate|i:1671939085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade1c8eefbcb83db4254d3ce4b9c73d8eea3bf1e', '172.105.247.100', 1671939085, '__ci_last_regenerate|i:1671939085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8bc42db903c25b0e7b27cf4dafd0ba0dad4941', '172.105.247.100', 1671939085, '__ci_last_regenerate|i:1671939085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a25659d8fdc995699af9ec6d23347206ac5acd', '172.105.247.100', 1671939086, '__ci_last_regenerate|i:1671939085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e3608bc175c9ecae1ff30c3b3e07949f70f04f', '172.105.247.100', 1671939086, '__ci_last_regenerate|i:1671939086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6a03d861ae2295901f3c86183ffa5345f20c29', '172.105.247.100', 1671939086, '__ci_last_regenerate|i:1671939086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5181e8240609fddabc404d1abc36628996dc56', '172.105.247.100', 1671939086, '__ci_last_regenerate|i:1671939086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e89b715a7acd5082de485358345616f0eeff9bba', '172.105.247.100', 1671939086, '__ci_last_regenerate|i:1671939086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa46529c74ee2a030b68e04be875e849a00e32f1', '172.105.247.100', 1671939087, '__ci_last_regenerate|i:1671939086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('267a59260a8b596b59e9fe7720683fe84e8d44a8', '172.105.247.100', 1671939087, '__ci_last_regenerate|i:1671939087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f9ec750284c872a92b71f1aff932447be5da40', '172.105.247.100', 1671939087, '__ci_last_regenerate|i:1671939087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24cc28edc6ee80f1df3f92e3f0c05acb9240788d', '172.105.247.100', 1671939087, '__ci_last_regenerate|i:1671939087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca66b1818c702008868c7d8ddb649d1e80a22a6b', '172.105.247.100', 1671939088, '__ci_last_regenerate|i:1671939088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4d1425d7d314b8a48b54a3c566601a6fc7a004', '172.105.247.100', 1671939088, '__ci_last_regenerate|i:1671939088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf7f6929e23e28edcd1dfdec4f4a25a6d293f55', '172.105.247.100', 1671939088, '__ci_last_regenerate|i:1671939088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571919e094e4478664da19ffec3ecb230ebc126f', '31.222.203.2', 1671939126, '__ci_last_regenerate|i:1671939126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab296212781001b515662b8efd399d30a97fff3e', '31.222.203.2', 1671939126, '__ci_last_regenerate|i:1671939126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427d73e1fe80431174b0d0863faa9d41ce0d0311', '31.222.203.2', 1671939126, '__ci_last_regenerate|i:1671939126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d8a6a95529f62c4428b643987a2a662cea844b', '31.222.203.2', 1671939128, '__ci_last_regenerate|i:1671939128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885eb8671d5f360ca17264eaecd79dc9cd4c54d3', '31.222.203.2', 1671939128, '__ci_last_regenerate|i:1671939128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b85c692ddf7330f47a4ce2973bc4a323c2e755', '31.222.203.2', 1671939128, '__ci_last_regenerate|i:1671939128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e838c78b77a0a5aa8d640b594da3ef78350444f2', '31.222.203.2', 1671940932, '__ci_last_regenerate|i:1671940932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d537f6f4d512eff97754446e09adfb890001f6aa', '31.222.203.2', 1671940932, '__ci_last_regenerate|i:1671940932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2782d7a2cb2d79cf2b3ee56a8e5b3da01c4033ac', '31.222.203.2', 1671940932, '__ci_last_regenerate|i:1671940932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f492cbd6513cd7924097621d8205a8c5d721afc7', '31.222.203.2', 1671940932, '__ci_last_regenerate|i:1671940932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8777da21af5dc357d3296d0facec37e978fda65c', '31.222.203.2', 1671940932, '__ci_last_regenerate|i:1671940932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ed43ddc85b074e5b7731e2a793fa564e8bc8c8', '31.222.203.2', 1671940932, '__ci_last_regenerate|i:1671940932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103d356052966aaf1c7fc370214b70c7ba46ae12', '87.236.176.238', 1671941281, '__ci_last_regenerate|i:1671941281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('055667985c4ca1e0bef90e544fa469f9b7cc75d8', '87.236.176.238', 1671941282, '__ci_last_regenerate|i:1671941281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3040229596cb38498f477e9ad3309f11b4db8f4', '45.120.39.89', 1671943766, '__ci_last_regenerate|i:1671943766;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1589548b56a076cee09959ea71b51436283ee32d', '31.222.203.2', 1671942728, '__ci_last_regenerate|i:1671942728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ac3c07a942ed4e0e11e7f9846c090ae3bdf742', '31.222.203.2', 1671942728, '__ci_last_regenerate|i:1671942728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d1d0f0432fee9113772ddd482f40cb0ef6a940', '31.222.203.2', 1671942728, '__ci_last_regenerate|i:1671942728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b0d00237c25ce7d876d63eb127072f36d58b82', '31.222.203.2', 1671942730, '__ci_last_regenerate|i:1671942730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a9ba7db68bb6299c587e8b696ce665e30e63d7', '31.222.203.2', 1671942730, '__ci_last_regenerate|i:1671942730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d496d645c3158216f82795a634f38c0075361ac', '31.222.203.2', 1671942730, '__ci_last_regenerate|i:1671942730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b72f588317fc3754e752bf0f175d22202d0b902', '45.120.39.89', 1671950051, '__ci_last_regenerate|i:1671950051;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671950029;message|s:14:\"Welcome to POS\";register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c66712e7129ae496d332cc84d671424c8fd3b46', '172.105.247.100', 1671944486, '__ci_last_regenerate|i:1671944486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eeb28c66054c149ee8dc976e739cd9cea404d15', '172.105.247.100', 1671944487, '__ci_last_regenerate|i:1671944486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa568ce071aca63659145f82b726735cb2305f9a', '172.105.247.100', 1671944487, '__ci_last_regenerate|i:1671944487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d56c3066bb9e403a8942aa8085199195f53345', '172.105.247.100', 1671944487, '__ci_last_regenerate|i:1671944487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6abac090c63559fcf40e361c9206e8fd0d7f4c', '172.105.247.100', 1671944487, '__ci_last_regenerate|i:1671944487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a26fe8bf473866cdab723b48796f477d7348a8b', '172.105.247.100', 1671944487, '__ci_last_regenerate|i:1671944487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c0e0ae7637452555c7b6f1302a2dd14128a825', '172.105.247.100', 1671944487, '__ci_last_regenerate|i:1671944487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66beba84f4662f6bd460c49323cab1f9b5000bd1', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcf6c79d53c48a94c913742ccd82d9a4c61ae6b', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907b22cfaa83c2cda384f48c345764c5f030a662', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f92e1400bf2bae90c2bf2489e373d79b3d1808', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d709bf68cc975f84f8c44059b55e0b7d82c3a37', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b828395ba799a56c533baecccb0716745be4d27', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266524ea229df31224da3a69b0a4af7a8329b436', '172.105.247.100', 1671944488, '__ci_last_regenerate|i:1671944488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0cc125522118f5494d223b90119d3bbcbbf200c', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52b1ecd9a769eb5535275aba4f364208f32dd57a', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62df2e230bc92dbc53cbd704aba98375cda7fb4f', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece8974746663111bd3ebd936ebd75ca80fea5ea', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336236d190e94ec4fa33309001b6ea4a6b0d026d', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a43879e8dac0d09ce4d240ac2bd7d7c10bfc10ed', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e7a39b5406b21decb81b34094d2ed1f3bf5078', '172.105.247.100', 1671944489, '__ci_last_regenerate|i:1671944489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7c3e9440bd221a995fb56c46e75e6bed577c09', '172.105.247.100', 1671944490, '__ci_last_regenerate|i:1671944490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd79adcd813c9ca351549a8370e818389c8aea98', '172.105.247.100', 1671944490, '__ci_last_regenerate|i:1671944490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529eb8f693443ee79ee7492fff23becb7d014a95', '172.105.247.100', 1671944490, '__ci_last_regenerate|i:1671944490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79dc6fc8b50c25f8d1c81bff8b91ea97061bd2d8', '31.222.203.2', 1671944532, '__ci_last_regenerate|i:1671944532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc00b7a0d1c41b4a644f088d971c7fbfe2459e2', '31.222.203.2', 1671944532, '__ci_last_regenerate|i:1671944532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c2357f8d5e77e9b5ac793666a527b6a015ef9a7', '31.222.203.2', 1671944532, '__ci_last_regenerate|i:1671944532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463efaba77c2998b2e44375872f403fa5a20a4b4', '31.222.203.2', 1671944532, '__ci_last_regenerate|i:1671944532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571e71aae41135f7073e186b1afa689dc16ffe4a', '31.222.203.2', 1671944533, '__ci_last_regenerate|i:1671944533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd21e76422ea0c40854ecc40cabe3fd984be3574', '31.222.203.2', 1671944533, '__ci_last_regenerate|i:1671944533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ee649867ca77992e6cc5719fb1c2b360199abb', '31.222.203.2', 1671946326, '__ci_last_regenerate|i:1671946326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec2b982990a994c0f1e9fddb39932631a54e36c', '31.222.203.2', 1671946326, '__ci_last_regenerate|i:1671946326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4c6cd2fdcc06a9ca5bed0775d655fb9dd6de56', '31.222.203.2', 1671946326, '__ci_last_regenerate|i:1671946326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3cc123242e588eca54bf3d5185f1fbc731e411', '31.222.203.2', 1671946326, '__ci_last_regenerate|i:1671946326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7750b91c58450a8930b3cb15e35fb643fb3983', '31.222.203.2', 1671946326, '__ci_last_regenerate|i:1671946326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc20ebeea620924a89b131d2ab3ba10e0197c5a9', '31.222.203.2', 1671946326, '__ci_last_regenerate|i:1671946326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f0d57d883725ca3a32250afa21fe8d8c266614', '31.222.203.2', 1671948130, '__ci_last_regenerate|i:1671948130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d3f58e7db1adb6c73be9b803165abf33b9b87c', '31.222.203.2', 1671948132, '__ci_last_regenerate|i:1671948132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed58759cbe51e4f3060a9a8802b40923ccd24dd', '31.222.203.2', 1671948132, '__ci_last_regenerate|i:1671948132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d173c240945f433c92281bd54e177aa45e495bef', '31.222.203.2', 1671948132, '__ci_last_regenerate|i:1671948132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675e14a45fbc924e7b71b4cb34b2395add3b58ab', '31.222.203.2', 1671948132, '__ci_last_regenerate|i:1671948132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('130a31bbaad9bfcb81ae419b223bb7ae5bf44f62', '31.222.203.2', 1671948132, '__ci_last_regenerate|i:1671948132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668292d94be4ec65a92ba001b83396a1ab1d447d', '116.204.230.26', 1671949932, '__ci_last_regenerate|i:1671949932;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c972e89e9ac31969d687d30e3f929f0457f706', '172.105.247.100', 1671949892, '__ci_last_regenerate|i:1671949892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc43af5aa2cd10345ee57f7b2692db12ad64ed51', '172.105.247.100', 1671949894, '__ci_last_regenerate|i:1671949894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad38246d56be4233797b4b823ececb2c3fc03d4', '172.105.247.100', 1671949895, '__ci_last_regenerate|i:1671949895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb93fd19da168e005f92da23e3935a33baa308c', '172.105.247.100', 1671949895, '__ci_last_regenerate|i:1671949895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5e8ab693c917bad25d79ae7a4347a9b6669570', '172.105.247.100', 1671949895, '__ci_last_regenerate|i:1671949895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5f0d62f6c82bc53e970cd26c7b4a9ad88685e6', '172.105.247.100', 1671949895, '__ci_last_regenerate|i:1671949895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd82a58e54082d97a07d68ced24e6d269481157', '172.105.247.100', 1671949895, '__ci_last_regenerate|i:1671949895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70f3ffa645515b62ab4433bf6fb22ec399913e9', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975c0e2050658ee136ee5985106e71f66f101563', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d3d842b8ad487ff44399ba74878b1a05fac339b', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72aec70f89e28635d515cfa8a9a09c7b489a1e9d', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a457e88af351e4578fc4e5b0124f196d5c4e6f38', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce523527d6d7a20a56fb83769247750392e17b0', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3080baf599ee1473af3258e15bef2b5e5e7355a7', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935efef869ee1b8630beb43136f45230a8468ce8', '172.105.247.100', 1671949896, '__ci_last_regenerate|i:1671949896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1336e8191d6d90d2f5bd401252c1582d602d749b', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea4bd09da0623776c483075b1472de662a9bd55', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9b7101c5878b04ad5bfec318a719ffd8723290', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('143ae1028768fd8cd12bd58e3263ad2590bc2155', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98259c2aaa26336d4f26080aca28f6f27b136467', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e085f1d8d2f92bfb6380e4537bd3a848674a2e2e', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7dab609f2e791dbf204d258b53344826a9da2b', '172.105.247.100', 1671949897, '__ci_last_regenerate|i:1671949897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9435c56206afcd3bd434c79dc672938d7ade7cac', '172.105.247.100', 1671949898, '__ci_last_regenerate|i:1671949898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82d8610b45b80aabf90a5fb861e867b66d85aad', '172.105.247.100', 1671949898, '__ci_last_regenerate|i:1671949898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c74f6dbea91895bbf4c5e6a5867534dadf2bcfee', '116.204.230.26', 1671950261, '__ci_last_regenerate|i:1671950261;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31459f4b1e14aaeb2a8ac00fccb48ca99827d72', '31.222.203.2', 1671949933, '__ci_last_regenerate|i:1671949933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fe0ffbf121b2681de30b4e844c301d60b6fccc', '31.222.203.2', 1671949933, '__ci_last_regenerate|i:1671949933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd029a75458edf6202645db1047fafab6e9c5c98', '31.222.203.2', 1671949933, '__ci_last_regenerate|i:1671949933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('187943e6a3f8c27cdaeeeea575f786a47a4d9d2e', '31.222.203.2', 1671949935, '__ci_last_regenerate|i:1671949935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643fa89cc194a5420d28596d537bad197db79d8a', '31.222.203.2', 1671949935, '__ci_last_regenerate|i:1671949935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f74c7bf31738e72de03a07d5a0001c8c24724d', '31.222.203.2', 1671949935, '__ci_last_regenerate|i:1671949935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d481dae6853889cdfdc4ec0dbb004cce9e86b55', '45.120.39.89', 1671951694, '__ci_last_regenerate|i:1671951694;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671950252;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db64a872bda11e182851b7901bdfc07480ac85c', '116.204.230.26', 1671956226, '__ci_last_regenerate|i:1671956226;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1270b24dde737b088f037217de7360f27eeaa7', '45.120.39.89', 1671952486, '__ci_last_regenerate|i:1671952486;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671951814;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0326251881d8d2c4fe4cb18f60783f1cc012444', '31.222.203.2', 1671951733, '__ci_last_regenerate|i:1671951733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fb09dda3cb155d71e7989d18d8b7cb67e370ad7', '31.222.203.2', 1671951733, '__ci_last_regenerate|i:1671951733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad175c757e4e4325bb9a56944662d197dfede42', '31.222.203.2', 1671951733, '__ci_last_regenerate|i:1671951733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d102443a4b3d615473d90668f285de2bfdc44386', '31.222.203.2', 1671951734, '__ci_last_regenerate|i:1671951734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ba69e1c86c322ff5cbe984ec3452e91a8029f2', '31.222.203.2', 1671951734, '__ci_last_regenerate|i:1671951734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5212f19257f78338d09d3a0b17c2e1c55e75a82f', '31.222.203.2', 1671951734, '__ci_last_regenerate|i:1671951734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b42ba13b88013f58e90075916beb69c58612e79', '37.111.218.112', 1671956364, '__ci_last_regenerate|i:1671956364;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671952490;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b019cb5e129b0b88e67fc72076aec9c56e6abfc9', '31.222.203.2', 1671953530, '__ci_last_regenerate|i:1671953530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06d10a73459d07274c9eb9141cf5dafc89205c1', '31.222.203.2', 1671953530, '__ci_last_regenerate|i:1671953530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991c791150063ce722154fef697f7e985a06541a', '31.222.203.2', 1671953531, '__ci_last_regenerate|i:1671953531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('895e4a985e9d513891f10cf64913a89873abaf8e', '31.222.203.2', 1671953531, '__ci_last_regenerate|i:1671953531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c14f868f73afc7d15a35a14eaf9163d88ee0495', '31.222.203.2', 1671953531, '__ci_last_regenerate|i:1671953531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c673c211b6a77fa97e4feb4c6139acf900bd839', '31.222.203.2', 1671953531, '__ci_last_regenerate|i:1671953531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b9ed8d783ffe94b29b34c3969697a84a6b27ae', '172.105.247.100', 1671955285, '__ci_last_regenerate|i:1671955285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ecbd34688946147fb3eb0a5f9b930c9b778d882', '172.105.247.100', 1671955286, '__ci_last_regenerate|i:1671955286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8be1dc9d428f77c85b3e9a487ea348f80c9e55', '172.105.247.100', 1671955286, '__ci_last_regenerate|i:1671955286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d816c15c255c647ff1b7d9f28b63bfb36e19b1d', '172.105.247.100', 1671955286, '__ci_last_regenerate|i:1671955286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1047851cbb1fab7eb092d6c6e51dfae125fb99', '172.105.247.100', 1671955286, '__ci_last_regenerate|i:1671955286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8144bd6e1c203fda4069c239e47e0709a52d48', '172.105.247.100', 1671955287, '__ci_last_regenerate|i:1671955287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0116d479d569267c55c389353c08e089d1be49', '172.105.247.100', 1671955287, '__ci_last_regenerate|i:1671955287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59168afd86307acfc09eaa00bd08f4c3ffa6a4e3', '172.105.247.100', 1671955287, '__ci_last_regenerate|i:1671955287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08594b2b89bd45d9e23c2bff2712f851666222b', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13114266ed279a70feea4a58330969f315e4b6ba', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b62bcd118358b16f94c3f5cfabeaa0661f6ef1f', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b489eecf23ad25e2e5c1ab66ff3ac7edd2cfeb1b', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a99fbf1890332544ed7b0e91ffb26e6d262752', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005e16e84b28d21b70c484976c7ef746aca144ac', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685d41b6c0de41406d7d1b3307f6cd1338b22228', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0f26baf24197a9b73db040fd07392bc7184a5f', '172.105.247.100', 1671955288, '__ci_last_regenerate|i:1671955288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3e121a31b37829a1bc5bd9c55d862f28b520c1', '172.105.247.100', 1671955289, '__ci_last_regenerate|i:1671955289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666112081641881dbce2cc7e9c93c1f76afb0b16', '172.105.247.100', 1671955289, '__ci_last_regenerate|i:1671955289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d6d9d190c0a697203e97d907b4d291bb632402', '172.105.247.100', 1671955289, '__ci_last_regenerate|i:1671955289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90bd5405e57803dd6be4e051d7b3c8a96397f814', '172.105.247.100', 1671955289, '__ci_last_regenerate|i:1671955289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899d48f455e25b9bb969747a58d8bc6125c64860', '172.105.247.100', 1671955290, '__ci_last_regenerate|i:1671955290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f223eec2eb8683ca68db2fd100823ac0edaba0', '172.105.247.100', 1671955290, '__ci_last_regenerate|i:1671955290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e24616bfc02f7ea5ec37ebf1aacf47dfb66e70', '172.105.247.100', 1671955290, '__ci_last_regenerate|i:1671955290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca68a299f82a510b3e41794786df18caefb8256', '172.105.247.100', 1671955290, '__ci_last_regenerate|i:1671955290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856d7d61bf9ee33d70d5d5207a04750890bb4851', '31.222.203.2', 1671955342, '__ci_last_regenerate|i:1671955342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13dc8a50745c9ee51e1fc52c7ec984f1949ed84', '31.222.203.2', 1671955342, '__ci_last_regenerate|i:1671955342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f773e8724d1dcaa1effdf7236efd859d14a671cc', '31.222.203.2', 1671955342, '__ci_last_regenerate|i:1671955342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4b8cd142fba9738ad7e6ce7a88aee33f6fe29a5', '31.222.203.2', 1671955342, '__ci_last_regenerate|i:1671955342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9442a2866750149bf3c9e751b55feb741f6415fb', '31.222.203.2', 1671955342, '__ci_last_regenerate|i:1671955342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37042e3c5abd19bec0620750d155e3944627c30', '31.222.203.2', 1671955342, '__ci_last_regenerate|i:1671955342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7b9539bb4ef7363745c5ec48445c2175387cc9', '116.204.230.26', 1671956643, '__ci_last_regenerate|i:1671956643;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72929ca2191062bfe82007f512b684d364389b1e', '37.111.218.112', 1671958782, '__ci_last_regenerate|i:1671958782;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671956375;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3948c8d6bfd70728cdc881d0b4bb52b13800dd59', '116.204.230.26', 1671956964, '__ci_last_regenerate|i:1671956964;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf769dd4ebf9fb8c3fbc688d0cc4f0cfbf73db3', '116.204.230.26', 1671957279, '__ci_last_regenerate|i:1671957279;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2279af2a00ea715ca4bb977c827e67bb11645440', '31.222.203.2', 1671957132, '__ci_last_regenerate|i:1671957132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8c918dff7df085ad5046205ed6638321fbac3c', '31.222.203.2', 1671957132, '__ci_last_regenerate|i:1671957132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a92d830835353991ad23ec43910dd42aae4af8', '31.222.203.2', 1671957132, '__ci_last_regenerate|i:1671957132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6103f94a7597f513164113eb77943364bb77c4', '31.222.203.2', 1671957132, '__ci_last_regenerate|i:1671957132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7cbbb371c502da469b5ce8b12a7a18fe848fe8', '31.222.203.2', 1671957132, '__ci_last_regenerate|i:1671957132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3f6932395dfba00855442a9fd52ba1c2eaa649', '31.222.203.2', 1671957132, '__ci_last_regenerate|i:1671957132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc4e007ada7cd0d48f80427c92d937f70c044a1', '116.204.230.26', 1671957580, '__ci_last_regenerate|i:1671957580;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13706826ad1de387392d3e9e3bf474731b48457', '116.204.230.26', 1671957900, '__ci_last_regenerate|i:1671957900;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aee39457c7e5fa256ee7c42a35d679e5115d7c6', '116.204.230.26', 1671958207, '__ci_last_regenerate|i:1671958207;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a2861832abd5d54b6eecebe9dae6b8ce58669e', '116.204.230.26', 1671963557, '__ci_last_regenerate|i:1671963557;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3e0bc149b10172ba5e976a7e449c4c765810a7', '116.204.230.26', 1671958660, '__ci_last_regenerate|i:1671958530;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa9868ed898020e0fc1403f4f7de7084f4db587', '37.111.218.112', 1671959308, '__ci_last_regenerate|i:1671959308;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671959303;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82be99aab412cb86190a886895ed6b9a0c63bb02', '31.222.203.2', 1671958931, '__ci_last_regenerate|i:1671958931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7a0c6ae1cc4828ded0a6936b5bac747ba13921', '31.222.203.2', 1671958931, '__ci_last_regenerate|i:1671958931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f49c093aefdac19748829f1096d0ba4360a1eb8', '31.222.203.2', 1671958931, '__ci_last_regenerate|i:1671958931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8573abb470a1083b7d8cbc5cde8338f88ce672', '31.222.203.2', 1671958933, '__ci_last_regenerate|i:1671958933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2c00f72177c4349ca2638e76b2d448d1c0820b', '31.222.203.2', 1671958933, '__ci_last_regenerate|i:1671958933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8703030de1418a78b5c4297758bf51de34f100a0', '31.222.203.2', 1671958933, '__ci_last_regenerate|i:1671958933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f00d3662da98a17c917b8d2456aecfae9bc5577e', '37.111.218.112', 1671962206, '__ci_last_regenerate|i:1671962206;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671959311;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132a62a21a50f93d85404c7017ff80d803ea8916', '172.105.247.100', 1671960680, '__ci_last_regenerate|i:1671960680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba08405a673d7badf338b630745ab34959a28b3', '172.105.247.100', 1671960681, '__ci_last_regenerate|i:1671960680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d651202dde2fe738bcb29f6298d70911ed9200', '172.105.247.100', 1671960681, '__ci_last_regenerate|i:1671960681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2936d34020ea196be5705711691f9f4ca4409834', '172.105.247.100', 1671960681, '__ci_last_regenerate|i:1671960681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d0577c713d3e5e673092ad85b6761d8ef87b9fa', '172.105.247.100', 1671960681, '__ci_last_regenerate|i:1671960681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b99db4509e7fb6574a1b87cf6e0c8b2719b6c7', '172.105.247.100', 1671960681, '__ci_last_regenerate|i:1671960681;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea5d7877f09ae212be9219f54bf2fd65c510115', '172.105.247.100', 1671960681, '__ci_last_regenerate|i:1671960681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f12c30995e39e42a24b8414d0ffe244fd1da67', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960681;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de52ba3c8dd3f969d54e88d69bb9a6d9d0690f40', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0fbf06a67e607e0fd8c99cf51b462a69fb036c', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61947338f23f262fa679d52a3171564e03e0b3e', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d725e03640979bf090e8e7a9944d60a4a12c01b', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fddebdb6916624ccbc455a05eb9cf057d004f16', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53ee6dd15bfe02f95d766f5d4edcd004b07f71b', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c93433246e1113c3fdb0cf2464111a2919190f', '172.105.247.100', 1671960682, '__ci_last_regenerate|i:1671960682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2841fe2ba425ac14eace238b247a5acbe067d49', '172.105.247.100', 1671960683, '__ci_last_regenerate|i:1671960683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2244ef5bb4619f2ff3b816fc7196c1426ffb1764', '172.105.247.100', 1671960683, '__ci_last_regenerate|i:1671960683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd106a7158cafb4320598b72f70476adc5003034', '172.105.247.100', 1671960683, '__ci_last_regenerate|i:1671960683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad6f77f1bba116f2cb51f5075872e21bcf6c413c', '172.105.247.100', 1671960683, '__ci_last_regenerate|i:1671960683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d855031e9728cb515a32c7e229fafc4e51a837', '172.105.247.100', 1671960683, '__ci_last_regenerate|i:1671960683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab536144e77bd3f88eec364733c386f16721336', '172.105.247.100', 1671960683, '__ci_last_regenerate|i:1671960683;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba59e43a7c8d7dd12a26f4c3db127662573b7abc', '172.105.247.100', 1671960684, '__ci_last_regenerate|i:1671960683;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c56c2bdfa94810c1e4e8faee57747499b6f432', '172.105.247.100', 1671960684, '__ci_last_regenerate|i:1671960684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0a809dd8e6bf67b0b046add839e6b47ea46929', '172.105.247.100', 1671960684, '__ci_last_regenerate|i:1671960684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc57784892d8b028bc879dd641894be6decc7d6', '31.222.203.2', 1671960739, '__ci_last_regenerate|i:1671960739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c114c1d24e9f83ac1f5559b0afd35d8fe573e2b9', '31.222.203.2', 1671960739, '__ci_last_regenerate|i:1671960739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8baaf25635ee52c6c0b4b0f21e103ea5e50b31a7', '31.222.203.2', 1671960739, '__ci_last_regenerate|i:1671960739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acf78bfb26ee30ed21de59b21f2acb1cc5985a7', '31.222.203.2', 1671960741, '__ci_last_regenerate|i:1671960741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae2cbed2da3cb685ed714834e80074a1ade607d', '31.222.203.2', 1671960741, '__ci_last_regenerate|i:1671960741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0493528d353c055dc164a203ad4f7b11d3f98c', '31.222.203.2', 1671960741, '__ci_last_regenerate|i:1671960741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f1c12d02fa46d46dff689d08a1ddbb0a99b15e', '37.111.218.112', 1671964367, '__ci_last_regenerate|i:1671964367;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671962268;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519222794b7be0cf28507f731b8cb5538501ed85', '31.222.203.2', 1671962541, '__ci_last_regenerate|i:1671962541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9452d6b0ed9c4f575bcf5613b1e77459acea6836', '31.222.203.2', 1671962541, '__ci_last_regenerate|i:1671962541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a80b5703858bbdea6671656257d0cd4fee0ed3', '31.222.203.2', 1671962541, '__ci_last_regenerate|i:1671962541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b73828f9aa5c29debbcd77ee634e23fd07ec833', '31.222.203.2', 1671962543, '__ci_last_regenerate|i:1671962543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cf408f9f5127f917b161dde042f736bdc7e426', '31.222.203.2', 1671962543, '__ci_last_regenerate|i:1671962543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf52246b7a03950c7cdbf80abc8ce889c4fa966', '31.222.203.2', 1671962543, '__ci_last_regenerate|i:1671962543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c6fd36468396bdb2abc9ad8d2afbe95bb90aa2', '116.204.230.26', 1671963864, '__ci_last_regenerate|i:1671963864;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5064a612e027610c156053cb2d756c4f87ab5efe', '116.204.230.26', 1671964551, '__ci_last_regenerate|i:1671964551;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccb10e0e9243fc5bddbe26d7fc4e91964c11fcd', '31.222.203.2', 1671964336, '__ci_last_regenerate|i:1671964336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0dbd6bb08b3365b7a16384883a0ab52804375b', '31.222.203.2', 1671964336, '__ci_last_regenerate|i:1671964336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2514bd4103364a6ff6d57509210baf9cf94837ac', '31.222.203.2', 1671964336, '__ci_last_regenerate|i:1671964336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b034d923a2234265c6082af98b95f2fcfba743f9', '31.222.203.2', 1671964336, '__ci_last_regenerate|i:1671964336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9357b77feee9a5ddef095fbb81114ca46cb4fdcf', '31.222.203.2', 1671964336, '__ci_last_regenerate|i:1671964336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eafd84ae53eb362c917b84f7e4a980db34c16c1', '31.222.203.2', 1671964336, '__ci_last_regenerate|i:1671964336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a116454f2d4dbd139047865dc53439e5ddd21ae', '37.111.218.112', 1671965144, '__ci_last_regenerate|i:1671965144;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671964386;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08f4a8b9a007d3e9c599ee7a8834825c6843b34', '116.204.230.26', 1671965642, '__ci_last_regenerate|i:1671965642;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2eb78cc872aba15ea98e9c830c5270a97266de', '116.204.230.26', 1671965046, '__ci_last_regenerate|i:1671964950;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5699975425c473f85aa859bedea3c7f669e56674', '37.111.218.112', 1671969015, '__ci_last_regenerate|i:1671969015;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671968995;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee43a0e1abce8b58ede0ced72a32de4e3e1d86f', '172.105.247.100', 1671965485, '__ci_last_regenerate|i:1671965485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ed32bf9bb1eaa177ebb36b30484a8c46c99c8e', '172.105.247.100', 1671965485, '__ci_last_regenerate|i:1671965485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40214dc0b68fab728905cf5b3bcd11aea5d0fdd3', '172.105.247.100', 1671965486, '__ci_last_regenerate|i:1671965486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec2e77ccc367c8da097b26420f8bb56b3917ae8', '172.105.247.100', 1671965486, '__ci_last_regenerate|i:1671965486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584f120d3eb8db11fa10ef849889739d3c0a9265', '172.105.247.100', 1671965486, '__ci_last_regenerate|i:1671965486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d777f84691de23a1543743c118f8c20a57284e20', '172.105.247.100', 1671965486, '__ci_last_regenerate|i:1671965486;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194876a4cb891c36503e7c2f6547d11b93b84ba2', '172.105.247.100', 1671965487, '__ci_last_regenerate|i:1671965487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da66fd09bded4c870001a66f1fda49ac7925e3b', '172.105.247.100', 1671965487, '__ci_last_regenerate|i:1671965487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5d04d630faf5a3b397ddeec1bc44904c730781', '172.105.247.100', 1671965487, '__ci_last_regenerate|i:1671965487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17793a9c7b3e07c1d19db97c767e31c8951fe292', '172.105.247.100', 1671965487, '__ci_last_regenerate|i:1671965487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f75038cb7f0ec2e48f99f1a934036c871362c806', '172.105.247.100', 1671965487, '__ci_last_regenerate|i:1671965487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2405f94385be3dd166843ee56c0e99ae64b08c74', '172.105.247.100', 1671965488, '__ci_last_regenerate|i:1671965487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00eff5cf36c9d7396c8ca5cb62b30c5d61b79bd8', '172.105.247.100', 1671965488, '__ci_last_regenerate|i:1671965488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71628abc54832b40937b4b284adfc26bda64f7f1', '172.105.247.100', 1671965488, '__ci_last_regenerate|i:1671965488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7168498ec5a73e9fdcaac512d5d95c13d069a86', '172.105.247.100', 1671965488, '__ci_last_regenerate|i:1671965488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e232a3a5222b1dd82294766f6f483c070417033', '172.105.247.100', 1671965488, '__ci_last_regenerate|i:1671965488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11847f3e3a53a55482f0627d317b0addf8b739f', '172.105.247.100', 1671965488, '__ci_last_regenerate|i:1671965488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4391903daf33d0ae15a5142927f008c0fe4ea47', '172.105.247.100', 1671965489, '__ci_last_regenerate|i:1671965488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846f4a611c211d2d1a6580902641098b0716952e', '172.105.247.100', 1671965489, '__ci_last_regenerate|i:1671965489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68322e321fbc33c05d6ccda3d60e49eee1dc8386', '172.105.247.100', 1671965489, '__ci_last_regenerate|i:1671965489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fb5cb4a0b13a02c7d957236c941245daf512bd6', '172.105.247.100', 1671965489, '__ci_last_regenerate|i:1671965489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3df5fdc9441bce0bc910adaa569489fe7fb3e5', '172.105.247.100', 1671965490, '__ci_last_regenerate|i:1671965490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91def04619259ae1c268cebc0d1a55543db54208', '172.105.247.100', 1671965490, '__ci_last_regenerate|i:1671965490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2900a11329822aca528eda5a7d2ccd8ce02d81ce', '172.105.247.100', 1671965490, '__ci_last_regenerate|i:1671965490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3e620b6f5484aa67649be7dfbfe601a944004c', '116.204.230.26', 1671967655, '__ci_last_regenerate|i:1671967655;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b599347e1e39261a610dab3054c422ce46652f', '31.222.203.2', 1671966131, '__ci_last_regenerate|i:1671966131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a628892a56c40a0032dcba4406aee228124ddfcb', '31.222.203.2', 1671966131, '__ci_last_regenerate|i:1671966131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339fd7b5ff06fc04db95b768d124d50868ba65ec', '31.222.203.2', 1671966131, '__ci_last_regenerate|i:1671966131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf1d4bc142705c61c0fa5b743ac006fdcbe2952', '31.222.203.2', 1671966133, '__ci_last_regenerate|i:1671966133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c166e37870c82ff34fea547c5b32a96e92057d44', '31.222.203.2', 1671966133, '__ci_last_regenerate|i:1671966133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c30408e38f7f2367479818e6a2de68339da8857', '31.222.203.2', 1671966133, '__ci_last_regenerate|i:1671966133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6fa6c3ce90ad367ddf539fc13c0ba24eebeebd', '116.204.230.26', 1671968225, '__ci_last_regenerate|i:1671968225;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d77acee0b64d2ac8aa31c99514ca428fb42364', '31.222.203.2', 1671967927, '__ci_last_regenerate|i:1671967927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c89cb975f201599eaa2530c18d0ae1c059585a', '31.222.203.2', 1671967927, '__ci_last_regenerate|i:1671967927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6753e661253d317f0183377372a35a9d6e6839ae', '31.222.203.2', 1671967927, '__ci_last_regenerate|i:1671967927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59490bab51a9959695d69265c76aa7fc43bcc7bb', '31.222.203.2', 1671967929, '__ci_last_regenerate|i:1671967929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7bf477b3100c792a6aca4b0c02db461fb60abe2', '31.222.203.2', 1671967929, '__ci_last_regenerate|i:1671967929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad1808cdbf18c62b116c4810d36615ab689e3d0', '31.222.203.2', 1671967929, '__ci_last_regenerate|i:1671967929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b005de59a11cb083d7b247d95329cc5c2d3d9e', '116.204.230.26', 1671968561, '__ci_last_regenerate|i:1671968561;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cbb04f0fa15d4ef05c07d4dfcb2b8f6e81847fc', '116.204.230.26', 1671968849, '__ci_last_regenerate|i:1671968561;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671429064\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50d42e9d2abec6a059ed05d4d8a673aa3567fe7', '37.111.218.112', 1671969391, '__ci_last_regenerate|i:1671969391;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671969379;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bbd3b9c9f3fd2392fe159bf86dfa45b38ae9ae', '37.111.218.112', 1671970741, '__ci_last_regenerate|i:1671970741;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671970736;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0931256950a33b62faedac9ee6904b72d8f94a7c', '172.105.247.100', 1671969686, '__ci_last_regenerate|i:1671969686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec32c2db9facebe7f22427f1f5e9417623ace573', '172.105.247.100', 1671969687, '__ci_last_regenerate|i:1671969687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba943354522ced7b9cb2dabea69e76a92ea4fcf', '172.105.247.100', 1671969687, '__ci_last_regenerate|i:1671969687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e290dc11524e60b3bcc3230ee10cfbd3cc0d047c', '172.105.247.100', 1671969687, '__ci_last_regenerate|i:1671969687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a411e490bc7aae1366411fba7fcabe0ad39763b', '172.105.247.100', 1671969688, '__ci_last_regenerate|i:1671969687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9ec2e0cfce1fa2a5da8a8b5e3ddc1d9d0569a8', '172.105.247.100', 1671969688, '__ci_last_regenerate|i:1671969688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('633a10901b5795c2f2858cefd4562c195695b604', '172.105.247.100', 1671969688, '__ci_last_regenerate|i:1671969688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99551bf10b81477c449303c95e0b6e7ba4da53c9', '172.105.247.100', 1671969688, '__ci_last_regenerate|i:1671969688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231b80d7f8d535e3ccd284d19ea1bda406b8e540', '172.105.247.100', 1671969689, '__ci_last_regenerate|i:1671969689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f076770b8d13f57c774d736f8e3fad9dc008e246', '172.105.247.100', 1671969689, '__ci_last_regenerate|i:1671969689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34670e6b1d3cb76bbfa55595c79aef04117ccd39', '172.105.247.100', 1671969689, '__ci_last_regenerate|i:1671969689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01237385e6850e395c2172aff04ed1d3a141ac8c', '172.105.247.100', 1671969689, '__ci_last_regenerate|i:1671969689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d7b090d647c3ce9fd92189bda3a3bd244ecbb1', '172.105.247.100', 1671969689, '__ci_last_regenerate|i:1671969689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f51e11245c2ff545a3e77eb5d812808186eae97c', '172.105.247.100', 1671969690, '__ci_last_regenerate|i:1671969690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310aae77a13eeace33bbf9e9672f14b70fd9c4d0', '172.105.247.100', 1671969690, '__ci_last_regenerate|i:1671969690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3cc902b39118d40dc237b5aa6f21b7e81ffdf9', '172.105.247.100', 1671969690, '__ci_last_regenerate|i:1671969690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c956e87466577d450104a14ed1cd6dab0b56524c', '172.105.247.100', 1671969690, '__ci_last_regenerate|i:1671969690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9bdb5bc6cca3d16d4deda341c77452800277fb8', '172.105.247.100', 1671969690, '__ci_last_regenerate|i:1671969690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ead649103f8c44141ebd2642602c939c3bb79ac4', '172.105.247.100', 1671969691, '__ci_last_regenerate|i:1671969691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f13990ee36899ae172536bb9163b3006065a346', '172.105.247.100', 1671969691, '__ci_last_regenerate|i:1671969691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf569bc23ef5b046e83132883e2a5dcb62e0e21b', '172.105.247.100', 1671969691, '__ci_last_regenerate|i:1671969691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe328f62b829e3c1db8e071d42c0db6b6913ef1', '172.105.247.100', 1671969691, '__ci_last_regenerate|i:1671969691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a747e7b52ee792676196fea17f9d875707d46750', '172.105.247.100', 1671969692, '__ci_last_regenerate|i:1671969692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad9a39104ae131953e2fc9033c963a0dbdc43ec', '172.105.247.100', 1671969692, '__ci_last_regenerate|i:1671969692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0b8f01b9f93d9576f063a7ee84c63a4f44b10ae', '31.222.203.2', 1671969727, '__ci_last_regenerate|i:1671969727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c21c0a021775cb49b7acb1d0dff89ead9a50dee', '31.222.203.2', 1671969727, '__ci_last_regenerate|i:1671969727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c7bcb83c094efcf343674b711eaca4d8a0ab3c', '31.222.203.2', 1671969727, '__ci_last_regenerate|i:1671969727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d414470d338fe44e8e5ad7cd4f2713eb5bf33d6', '31.222.203.2', 1671969729, '__ci_last_regenerate|i:1671969729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156aa8827e1ca256d2907eb4fc55c6aa1a35309a', '31.222.203.2', 1671969729, '__ci_last_regenerate|i:1671969729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e080dec1c74c08d1bb5a68cebc2ed716e314759d', '31.222.203.2', 1671969729, '__ci_last_regenerate|i:1671969729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9803fffd5b47eb5be5ca3e1b62f7a6ea42b8c10', '37.111.218.112', 1671971560, '__ci_last_regenerate|i:1671971560;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671971554;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6737a64ae6958af99cf3f498014c917828edf673', '31.222.203.2', 1671971536, '__ci_last_regenerate|i:1671971536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e4a5ea404dcca79abb1441a998333355296d34', '31.222.203.2', 1671971536, '__ci_last_regenerate|i:1671971536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f109bac05ac7d2998a16d222d78b460064406fc', '31.222.203.2', 1671971536, '__ci_last_regenerate|i:1671971536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154377354fc1c7d2efa1779ac08892f26af4ca8e', '31.222.203.2', 1671971537, '__ci_last_regenerate|i:1671971537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec4f7cf74a2c5ecef0d09f035423c8c1ee5e239', '31.222.203.2', 1671971537, '__ci_last_regenerate|i:1671971537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30996ce64f19f519482bff0cba8c8b05dcf14c0f', '31.222.203.2', 1671971537, '__ci_last_regenerate|i:1671971537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c9649703145ff6205147cd66beff4f80575884', '37.111.218.112', 1671971617, '__ci_last_regenerate|i:1671971560;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671870529\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671971617;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e84926b2f0566c9452cf7544191cc3951b3b60bc', '31.222.203.2', 1671973333, '__ci_last_regenerate|i:1671973333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd205b1fa9b674b8b9e1f143e1a95d7630a4b6a7', '31.222.203.2', 1671973333, '__ci_last_regenerate|i:1671973333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802ae4e0f414dfedda7947ef8f3a34177d60406e', '31.222.203.2', 1671973333, '__ci_last_regenerate|i:1671973333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03578db0ca7d77e5369779cfab09278c4415b714', '31.222.203.2', 1671973335, '__ci_last_regenerate|i:1671973335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a45deb42335bf204a2e3bca4d98527bbf551f7', '31.222.203.2', 1671973335, '__ci_last_regenerate|i:1671973335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39077de2cfc226f9715cbd380f1edbf596348eac', '31.222.203.2', 1671973335, '__ci_last_regenerate|i:1671973335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881bf20f7d993c0d086fa9c593176f4ee24da744', '172.105.247.100', 1671975086, '__ci_last_regenerate|i:1671975086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3126786583c693509225e6de5b8950f450a2ed5f', '172.105.247.100', 1671975086, '__ci_last_regenerate|i:1671975086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310e0805340287f87f237510d359806c94e1be7a', '172.105.247.100', 1671975086, '__ci_last_regenerate|i:1671975086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10d0b338c45a6fc279f8dd80a162cbef76d2fdf', '172.105.247.100', 1671975086, '__ci_last_regenerate|i:1671975086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67260d8abd0ecceb63cbd23bb28502bd0b3243fc', '172.105.247.100', 1671975087, '__ci_last_regenerate|i:1671975087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90e677930aaccd5246d0e42aba6064f7eaef274', '172.105.247.100', 1671975087, '__ci_last_regenerate|i:1671975087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba79d87457a821339cc517ac686d1448ab2188f9', '172.105.247.100', 1671975087, '__ci_last_regenerate|i:1671975087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a863a4bbeca86113a7fff29aae4a8751cb90faa1', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f710880edb14ab4851a4fdb0f96d152262ee7761', '172.105.247.100', 1671975087, '__ci_last_regenerate|i:1671975087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('944f487445874117682eca8d6cd4dc1893ef3668', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2fb8a73a3d69796cdcba679c5dfc8d97334d7c7', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5059914e482ace3c8a1aa25c5e4c5b1e520b81b', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca9a741120ed1d036b0ef543ef42ad27a38ab6e', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7d1ca12886f94e1d0962988e7d327e29363532', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39909694400c78097f590c6b75730d93ac65764', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e092610301f31707c0d8ec61c6bc055abc57ac30', '172.105.247.100', 1671975088, '__ci_last_regenerate|i:1671975088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a380bb00c9b7658ea892384bc992701ef225e3a5', '172.105.247.100', 1671975089, '__ci_last_regenerate|i:1671975089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9cfc9093170768d156a9de04722f8379e235f3', '172.105.247.100', 1671975089, '__ci_last_regenerate|i:1671975089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05312eef9bb45b05f7065d4878e7b59703f9862', '172.105.247.100', 1671975089, '__ci_last_regenerate|i:1671975089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00be91836797fc5f8ab50353c8b9e151a8dc36bc', '172.105.247.100', 1671975089, '__ci_last_regenerate|i:1671975089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4360dda2c1034708383b475a751d14806c3d8646', '172.105.247.100', 1671975090, '__ci_last_regenerate|i:1671975090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa4f0ce4663966bb1c99b0cd29850ebb0733ff6', '172.105.247.100', 1671975090, '__ci_last_regenerate|i:1671975090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91609380934e91aad05d201e4770c84fb5ad0a25', '172.105.247.100', 1671975090, '__ci_last_regenerate|i:1671975090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20f5cadebf301b50c183b1544dc75bde58831c0', '172.105.247.100', 1671975090, '__ci_last_regenerate|i:1671975090;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc70494b0f89c0f11b05753d20c04e329022efb9', '31.222.203.2', 1671975124, '__ci_last_regenerate|i:1671975124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49de52b1ce7df83ffec3580d3b5ccf0d9a6c22d9', '31.222.203.2', 1671975124, '__ci_last_regenerate|i:1671975124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a213c9507b61599be6d8bb92984e80770f8d115', '31.222.203.2', 1671975124, '__ci_last_regenerate|i:1671975124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a845d853e620e445b6429a5fb8a277a224d19e', '31.222.203.2', 1671975126, '__ci_last_regenerate|i:1671975126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa193853540040be91f08cb0aca5695f6cbcf7a', '31.222.203.2', 1671975126, '__ci_last_regenerate|i:1671975126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52db23cb14fd64d62a92dc865be16bde0eded01c', '31.222.203.2', 1671975126, '__ci_last_regenerate|i:1671975126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4baa67c10e75d88b3c5e3fcd2c8ee4d27a01a63d', '31.222.203.2', 1671976930, '__ci_last_regenerate|i:1671976930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce0e36067e0af4ab5ed16b7db9d3b268c839186', '31.222.203.2', 1671976930, '__ci_last_regenerate|i:1671976930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab88a54106cc1ab581fccc49c4ae94f2779456df', '31.222.203.2', 1671976930, '__ci_last_regenerate|i:1671976930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6786ada303c33aaa55faa9bb2d72580f0e5f09b', '31.222.203.2', 1671976932, '__ci_last_regenerate|i:1671976932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b35ab15180ee7d4c74ddb689ed69ca96939320b', '31.222.203.2', 1671976932, '__ci_last_regenerate|i:1671976932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70cfd3d4ad233fe02373a0979c5399c1357d7edb', '31.222.203.2', 1671976932, '__ci_last_regenerate|i:1671976932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae74aada6b04d30e0ec823c39537be9b80eefa7', '116.204.230.26', 1671977270, '__ci_last_regenerate|i:1671977270;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671949512\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"9GtxNQeSaHoEYm4KD0fJ\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145743cf976e3af1c7330dbc0c35c861395f1759', '116.204.230.26', 1671977633, '__ci_last_regenerate|i:1671977633;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671949512\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"b6nLrsDx3Km2WVGjHzUC\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a82227773a008c418a0e206f5b65f8b033e35a', '116.204.230.26', 1671977961, '__ci_last_regenerate|i:1671977961;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671949512\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"b6nLrsDx3Km2WVGjHzUC\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e4bd719f301b5acce0c891dae349b1a26c5358', '116.204.230.26', 1671977961, '__ci_last_regenerate|i:1671977961;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671949512\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"b6nLrsDx3Km2WVGjHzUC\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813964f41faeb9472d72e2b10e9dd9f3ca6bfbbc', '31.222.203.2', 1671978737, '__ci_last_regenerate|i:1671978737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b98a20208cef890664ceed303cf4bd299512752', '31.222.203.2', 1671978737, '__ci_last_regenerate|i:1671978737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3f25c5efc86f354d617a0f1fd5626519d023a4', '31.222.203.2', 1671978737, '__ci_last_regenerate|i:1671978737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b2761d10c2aaa8632b77dae23d422d1da9afdc', '31.222.203.2', 1671978739, '__ci_last_regenerate|i:1671978739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2e15e864e5a123265a321fafdb23aa60ea53214', '31.222.203.2', 1671978739, '__ci_last_regenerate|i:1671978739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd539cbc1910aefa9c174c8d15fa71b96b7d00bc', '31.222.203.2', 1671978739, '__ci_last_regenerate|i:1671978739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d23bdd89d2c3aa1f6fba0429b5a796a0c15929', '37.111.218.112', 1671980369, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671980369;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671942646\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671980363;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1978ac362912022127b1e8a081015599beafb54f', '37.111.218.112', 1671981757, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671981757;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671942646\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671980448;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b79905a8e27c8b71c9752b95963a5f163bfd94f', '172.105.247.100', 1671980486, '__ci_last_regenerate|i:1671980486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d7bb83a0ca7343418869213825c64e8d85a31e', '172.105.247.100', 1671980487, '__ci_last_regenerate|i:1671980487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('211dd792574915c79f674398daf524fc349ab110', '172.105.247.100', 1671980487, '__ci_last_regenerate|i:1671980487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef193fa79384a896c741de64b12ad913b7aa529', '172.105.247.100', 1671980487, '__ci_last_regenerate|i:1671980487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7189f33032ce791c46ddd5ee05660c17adfcbe98', '172.105.247.100', 1671980488, '__ci_last_regenerate|i:1671980488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10540f1c79f6b4ca357b408f5b2abf6dcabb8f1d', '172.105.247.100', 1671980488, '__ci_last_regenerate|i:1671980488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d339a9b342dad354aa6836e92566fe3cbb2b15', '172.105.247.100', 1671980488, '__ci_last_regenerate|i:1671980488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d6ad538e0f8c79130117ef3b294093a8757645', '172.105.247.100', 1671980488, '__ci_last_regenerate|i:1671980488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f095835e925cd6ba92e5dcb43c43b484c56cb778', '172.105.247.100', 1671980489, '__ci_last_regenerate|i:1671980489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e1f3d04f357f0fecc4e80bf85f66356efa09e1', '172.105.247.100', 1671980489, '__ci_last_regenerate|i:1671980489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b719f391aafeb2fb6766a74226df175506fd637e', '172.105.247.100', 1671980489, '__ci_last_regenerate|i:1671980489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67f42ba4126a09b7f85e6f0372433f577b2fc73', '172.105.247.100', 1671980490, '__ci_last_regenerate|i:1671980489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c781d57c8fe1a922f823535777993ab9a722e264', '172.105.247.100', 1671980490, '__ci_last_regenerate|i:1671980490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9eec7ede7251dd5f45f98a082f1602c58f7491', '172.105.247.100', 1671980490, '__ci_last_regenerate|i:1671980490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9186b06b8166fb16beab1dee53e3680b3567b585', '172.105.247.100', 1671980490, '__ci_last_regenerate|i:1671980490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5e807ffa661a7629a427cf36b136e3cdeb9e07', '172.105.247.100', 1671980490, '__ci_last_regenerate|i:1671980490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b658eaf31566990efb69ccfa0988fc116ce22e', '172.105.247.100', 1671980491, '__ci_last_regenerate|i:1671980491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358bfd1bafc20058b5c38372817f54d873199980', '172.105.247.100', 1671980491, '__ci_last_regenerate|i:1671980491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9977270b5377ece046becc24fa950b31c64f1084', '172.105.247.100', 1671980491, '__ci_last_regenerate|i:1671980491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed699733bcbed3049599adf610a48fa5cb67915', '172.105.247.100', 1671980491, '__ci_last_regenerate|i:1671980491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ac85b5080830a8538d625839d2914c29d07f31a', '172.105.247.100', 1671980492, '__ci_last_regenerate|i:1671980492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a134fea07fd0f3778bdfee5c5413d2c4abdee4d', '172.105.247.100', 1671980492, '__ci_last_regenerate|i:1671980492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda0b5a706c30b3fdea66bb30fb6e058569856b1', '172.105.247.100', 1671980492, '__ci_last_regenerate|i:1671980492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c461962d6dad19e38e9e59ac7d2f5b1a0e673d', '172.105.247.100', 1671980492, '__ci_last_regenerate|i:1671980492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ae5b23fddff6ec1b6a373557e3330ffa5ce496', '31.222.203.2', 1671980530, '__ci_last_regenerate|i:1671980530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35d7d5335802867599f947f8d70221d506aa05d', '31.222.203.2', 1671980530, '__ci_last_regenerate|i:1671980530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56dc0b7f21a838b7636077dc8a4e0f45448a92ec', '31.222.203.2', 1671980530, '__ci_last_regenerate|i:1671980530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6687653e746ddabb541a0118dd3b2576cf107f28', '31.222.203.2', 1671980530, '__ci_last_regenerate|i:1671980530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107a41d2a8d8c1b7119ba4f2ff94a98f778e5ae6', '31.222.203.2', 1671980530, '__ci_last_regenerate|i:1671980530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4793654028f10adb13bc955e4cf78e6f38a9ee88', '31.222.203.2', 1671980530, '__ci_last_regenerate|i:1671980530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb6f097f8d9c00cebc2f7ed2d478032c4bde40d', '45.120.39.89', 1671982116, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671982116;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671942646\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671982110;register_id|s:3:\"290\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2022-12-25 10:49:48\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c351e5404935626f00c4eb78dd45c6c9c512662a', '45.120.39.89', 1671982138, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1671982116;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671942646\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1671982138;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ede414aca9fa54329fc8e498c10c0777cee46a', '31.222.203.2', 1671982334, '__ci_last_regenerate|i:1671982334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c322389109d6a63df0e7d7408e3e9401c346afc0', '31.222.203.2', 1671982334, '__ci_last_regenerate|i:1671982334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb3babc8878ce0688fda6ca2cc65e3f28913141', '31.222.203.2', 1671982334, '__ci_last_regenerate|i:1671982334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033daded81796b8b980ecd035b3b978aeeeb70d4', '31.222.203.2', 1671982335, '__ci_last_regenerate|i:1671982335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd76074e7ca9ead6426fd514d53435875c10cac1', '31.222.203.2', 1671982335, '__ci_last_regenerate|i:1671982335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0e87276c897caf71effead5d4de0d7a2a1991d', '31.222.203.2', 1671982335, '__ci_last_regenerate|i:1671982335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e75d43c142c04301ece45c70c6d7ed4062a9c33', '31.222.203.2', 1671984141, '__ci_last_regenerate|i:1671984141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1f9bee46fb20e9f0d81fa637bdf8db31ec16cc', '31.222.203.2', 1671984141, '__ci_last_regenerate|i:1671984141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091d43d0064f0af2efb5317569c81f1f7e9834d6', '31.222.203.2', 1671984141, '__ci_last_regenerate|i:1671984141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bd90cd3c1bae88a37bdc54851be78d9546a7e6', '31.222.203.2', 1671984141, '__ci_last_regenerate|i:1671984141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c380431a0efff6e2ce138a3822dfe4f24f204ee8', '31.222.203.2', 1671984141, '__ci_last_regenerate|i:1671984141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006ea1b030d8e181ee64628467f06df5eecf72cb', '31.222.203.2', 1671984141, '__ci_last_regenerate|i:1671984141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492d0511da8d990b1de3845156882b5ffaaf9d9a', '172.105.247.100', 1671985886, '__ci_last_regenerate|i:1671985886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db50f0a772827a6a43ac297da38184b8fd98daf', '172.105.247.100', 1671985887, '__ci_last_regenerate|i:1671985887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70421388ed1cc29d43b842a1f5f1ceadf1aa15fc', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88e5654516c36b7fa946a0e8b119df20a2be123', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb8d79a0e3d28eb550567e17c5069db5090a8a0', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01a63d5da82c855facf5bf6f367d9cd04e35cb8', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6cd96b1788f34eff0177591b320bca58aa3cd6d', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb8037c1db8cc3954232c7984bb15154b06a3ee', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679ce9fb3ff1f5d9dafb5f3d04a3c927dfc81e6c', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976262bbb8c9dbdae1734f0a56a7b2d987ccaa7d', '172.105.247.100', 1671985889, '__ci_last_regenerate|i:1671985889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4876136df5e2d12a1c6ea904bf059711b9b4de', '172.105.247.100', 1671985890, '__ci_last_regenerate|i:1671985890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28cb6ada8a4539f519f1395e8b9d1935d0679a9a', '172.105.247.100', 1671985890, '__ci_last_regenerate|i:1671985890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72279160566f71e3762f278cf6cea516d0c2f8e6', '172.105.247.100', 1671985890, '__ci_last_regenerate|i:1671985890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8993d4f77a25500818418d9b9b3a624f66f627', '172.105.247.100', 1671985890, '__ci_last_regenerate|i:1671985890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b56a8e8424ec506a7364c87fda907234a7d73a', '172.105.247.100', 1671985890, '__ci_last_regenerate|i:1671985890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7909a5755103b55a00c27246378753fd5d02568b', '172.105.247.100', 1671985890, '__ci_last_regenerate|i:1671985890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f7aaf37021a6ff615843c200c790b64643704d', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26af88768f8eeb641376d06acd528934cef5250', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b1d0ce701995b0c2ac24f8673376ef7b0a628e', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb83d9815150c061951f56c26353b268ed6428d5', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7168b9d94ac6e73044530f1cd40fed94f0f9805', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3202fa0eee089ed2629fcfead7dc0a2af2680f', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc488101dd9faf0ca40aac1ff278c57af2bd3777', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f054d437d3d49e4004a2fa8755fa8a1dff0575', '172.105.247.100', 1671985891, '__ci_last_regenerate|i:1671985891;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f0ea3122ab49a1206652dbfc30d1a3b5c69183', '31.222.203.2', 1671985937, '__ci_last_regenerate|i:1671985937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa724dc1e250c9520e407720577aa1b7f6e521fc', '31.222.203.2', 1671985937, '__ci_last_regenerate|i:1671985937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4024f9e72ed2683bc7c56116e57a87f3f1cfb1fd', '31.222.203.2', 1671985937, '__ci_last_regenerate|i:1671985937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c385b361e33c5cdcbccbd8dbf148c00d0c32b6a', '31.222.203.2', 1671985937, '__ci_last_regenerate|i:1671985937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4b8215d924ef9dcdc92c6669e724db856dbac3', '31.222.203.2', 1671985937, '__ci_last_regenerate|i:1671985937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22f9d8e96835956105b0427c083a9300a3b14188', '31.222.203.2', 1671985937, '__ci_last_regenerate|i:1671985937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73ada8ce03cd4fb2a40efb140c6f7abd1b49e45', '31.222.203.2', 1671987737, '__ci_last_regenerate|i:1671987737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a871ff99a974d3df74e51e67c91619a3fb2700', '31.222.203.2', 1671987737, '__ci_last_regenerate|i:1671987737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae997154eac845583ecbb0b3d30d5639e2799182', '31.222.203.2', 1671987737, '__ci_last_regenerate|i:1671987737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf140351703f6da6176d31250082c46c5a7f8be', '31.222.203.2', 1671987737, '__ci_last_regenerate|i:1671987737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cead7e03f1e198e480a4857728b5c7f0e4775665', '31.222.203.2', 1671987737, '__ci_last_regenerate|i:1671987737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75fea4696673b0f564090400ddc6ac4c23df4f62', '31.222.203.2', 1671987737, '__ci_last_regenerate|i:1671987737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8a793f8e98f148f725717088899ba984c22b31', '31.222.203.2', 1671989537, '__ci_last_regenerate|i:1671989537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142aad3725abec11a79708f798e1855769e01ce7', '31.222.203.2', 1671989537, '__ci_last_regenerate|i:1671989537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff9c53ed9ff9dd16a339b624d169c276487a47f6', '31.222.203.2', 1671989537, '__ci_last_regenerate|i:1671989537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa6cbd5d6d409ee89de3e8894f7be280b17af2f', '31.222.203.2', 1671989539, '__ci_last_regenerate|i:1671989539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4474e7bc7cc8b3febdcad44c0fe0e0e6f565e724', '31.222.203.2', 1671989539, '__ci_last_regenerate|i:1671989539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a61357e45b236801c7ad6087c56d750e9c8c6433', '31.222.203.2', 1671989539, '__ci_last_regenerate|i:1671989539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5795c965cdd21acd61a34dd17f9c6507c851759', '31.222.203.2', 1671991330, '__ci_last_regenerate|i:1671991330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665a98efa4232c7795088a6969abca06ae1d4150', '31.222.203.2', 1671991330, '__ci_last_regenerate|i:1671991330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500269d0c9c74fc9c0d1421a20d7c2bbb218cfa1', '31.222.203.2', 1671991330, '__ci_last_regenerate|i:1671991330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('233d77a3f663cfa3094a8c5241a450ea3f69c367', '31.222.203.2', 1671991330, '__ci_last_regenerate|i:1671991330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2cad97c4964db744dcb248b51344c982ed70a6', '31.222.203.2', 1671991330, '__ci_last_regenerate|i:1671991330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb19156548180bf8e9108e347d37c2598a9fbbd2', '31.222.203.2', 1671991330, '__ci_last_regenerate|i:1671991330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b3b342a6642f1e552f69b88099d31db012d77f', '172.105.247.100', 1671991881, '__ci_last_regenerate|i:1671991881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8954b27afa398c4fcb1283047b83ed228510b8bb', '172.105.247.100', 1671991881, '__ci_last_regenerate|i:1671991881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5c6a1c50acf251061a9e9c94256d920664834e', '172.105.247.100', 1671991881, '__ci_last_regenerate|i:1671991881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc2a58f6073de15153b7e69dcdabe58f4192aaf', '172.105.247.100', 1671991881, '__ci_last_regenerate|i:1671991881;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003570a7f99490762290475fb18a1fa92910acc2', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca12251562d3e0480861c8e947d20f275f4d810', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68cf50b4ae1779dbf7073ad12086f4b1ba8e3019', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac51d18ca7a3af2367b6d653a3594d418637a92c', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb5a43ac9197b71495bb674f7ff1b39c050cf4a', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f9efd143d78f672cb847320876a2e50335b969', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476fd40b070e7cd4c6be06c8d32b5837d2e168ec', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92abd1c14976c7f56c6058b8cd44bc4a4e08e386', '172.105.247.100', 1671991882, '__ci_last_regenerate|i:1671991882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2965a1ab41569be505a61d027ddc2e078995a230', '172.105.247.100', 1671991883, '__ci_last_regenerate|i:1671991883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd08f6ed5f1d223aabbb93e9310e5471900bdc87', '172.105.247.100', 1671991883, '__ci_last_regenerate|i:1671991883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bed4ac84e59ac4c245bb146795a189c41506663b', '172.105.247.100', 1671991883, '__ci_last_regenerate|i:1671991883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b93c9d5227a84f897861f2d6ad900a099e8cff', '172.105.247.100', 1671991883, '__ci_last_regenerate|i:1671991883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9981596ac9d9077d9953e0e160ee0bfada8fc4b8', '172.105.247.100', 1671991883, '__ci_last_regenerate|i:1671991883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ab392b830d595e0b0ff49919c3d38132cbc509', '172.105.247.100', 1671991883, '__ci_last_regenerate|i:1671991883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5d2eba52400a02479fedf5c9c476448b414466', '172.105.247.100', 1671991884, '__ci_last_regenerate|i:1671991883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc9d5dedd6869bc05d0adab14c6d3685e3ec0bb', '172.105.247.100', 1671991884, '__ci_last_regenerate|i:1671991883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac32127805ba8f51dbbab32c1581751fd0087fb', '172.105.247.100', 1671991884, '__ci_last_regenerate|i:1671991884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447d78d5118d35199ac0a5410605d7a9a3d6cf78', '172.105.247.100', 1671991884, '__ci_last_regenerate|i:1671991884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d23e54fef0d132e3b6b48159f3d8acf2651497c', '172.105.247.100', 1671991884, '__ci_last_regenerate|i:1671991884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e57060564b94f364b32a58571835d27a4b37e96', '172.105.247.100', 1671991884, '__ci_last_regenerate|i:1671991884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0cdb6751ada6714b63b0056b335b7c73d2cd9e', '31.222.203.2', 1671993130, '__ci_last_regenerate|i:1671993130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e7f47276d4db46c9a83ea25a7282efe9420544', '31.222.203.2', 1671993131, '__ci_last_regenerate|i:1671993131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c53bfdeebc4283d1b2d20db647c8f9a014f1c01', '31.222.203.2', 1671993131, '__ci_last_regenerate|i:1671993131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ba211f5f4bd1918856facf91343f6f3cd7dc84', '31.222.203.2', 1671993133, '__ci_last_regenerate|i:1671993133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540c851dc7d8cbfddb43530b1c67dbbdd8423239', '31.222.203.2', 1671993133, '__ci_last_regenerate|i:1671993133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b2e870485e2b7c4b685f6b33d36a3323c44a7d', '31.222.203.2', 1671993133, '__ci_last_regenerate|i:1671993133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0320d7d9e76c8db5c62a7c43f2bb9d1b16992d49', '31.222.203.2', 1671994931, '__ci_last_regenerate|i:1671994931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0514e66c7863cb69e2168f5abdaae1a6cd9bbf44', '31.222.203.2', 1671994933, '__ci_last_regenerate|i:1671994933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8e0e4dbc8ad3b2a5ed4fdba1d0f35c92344d4e', '31.222.203.2', 1671994933, '__ci_last_regenerate|i:1671994933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d476ba9a0b2b2b1c14248cd537e883898a95e2', '31.222.203.2', 1671994933, '__ci_last_regenerate|i:1671994933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69c4dd5f32b6497ed4f075959fba78713b657ec', '31.222.203.2', 1671994933, '__ci_last_regenerate|i:1671994933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44297532dd8707bcc4c8f37c92187d2801d27069', '31.222.203.2', 1671994933, '__ci_last_regenerate|i:1671994933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44eeff06133d3d153e6ef9012860259d259f3818', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3fcff00f13883e9cac053aab19bfcf754c5966', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0cebcfe914fa35b1547861dc2e067f6dd5a44a', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b845702a5ae1a63989126d27c5255476e7b6613', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a6bead727f3b90584c9dd82ba1e9ba67be5b16', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbdbddcd6c11a1ce7c95a6a263ed6c6980efd506', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ea125c45eb181b5861a5873e71acaabd979f27', '172.105.247.100', 1671996685, '__ci_last_regenerate|i:1671996685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b48a697fc2412151de14e89139d065461069c2', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996685;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c065d06d5b0bc6b29f5a246868fb74370a18c80', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2276e1c4d4c61741eb9ca98523ae38496e624b8', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03c7c0499cb4089361d1b98851308d06f0e65598', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf6e7843f4e45257eb346113471e1d6986331a0', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559071fba0375d49fe6c04b752452390da4977d5', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eafba438d93746c816ba2b006821a8aa8c3bacd', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8985b968d16ff2a8127030216aa3e61878363aeb', '172.105.247.100', 1671996686, '__ci_last_regenerate|i:1671996686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26728a5e9df9637350587e310b0155899823c5ec', '172.105.247.100', 1671996687, '__ci_last_regenerate|i:1671996687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5768730bc0af266f46827f3466951102a50daa24', '172.105.247.100', 1671996687, '__ci_last_regenerate|i:1671996687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48bc924ba32175bf5b4e2a964b563fa6285d0b32', '172.105.247.100', 1671996687, '__ci_last_regenerate|i:1671996687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0043fb34e280af4bc0cf76a7b8b743e7e417feeb', '172.105.247.100', 1671996687, '__ci_last_regenerate|i:1671996687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d015001fa1f2e2b86163dc7a2de37af61a223f', '172.105.247.100', 1671996687, '__ci_last_regenerate|i:1671996687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389dec29d11d4f0d31acc66595144c3119c5aa13', '172.105.247.100', 1671996687, '__ci_last_regenerate|i:1671996687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b07d4dd9a0a603c31ace842a3dce9ee9299bf2c', '172.105.247.100', 1671996688, '__ci_last_regenerate|i:1671996688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('742623b4aaaafddcc5d007540b5dde4d4f7f0d36', '172.105.247.100', 1671996688, '__ci_last_regenerate|i:1671996688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01598c790526291c657682f6cede229bb4b32e82', '172.105.247.100', 1671996688, '__ci_last_regenerate|i:1671996688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f83fb643dee148dbf6db42cb66167c76802d54e', '31.222.203.2', 1671996729, '__ci_last_regenerate|i:1671996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78857c814bd2e358a9b452a80423754626cf5104', '31.222.203.2', 1671996729, '__ci_last_regenerate|i:1671996729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb71ad3348732f04520be56999032893b7e7b330', '31.222.203.2', 1671996729, '__ci_last_regenerate|i:1671996729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f346e0a20c4dbed3459610e44cab8b99c531fe2', '31.222.203.2', 1671996731, '__ci_last_regenerate|i:1671996731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bfb52dcbca6d76e25112b61bda36a1f89efeb4d', '31.222.203.2', 1671996731, '__ci_last_regenerate|i:1671996731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6aa5c62d3a9b3f56022030acb1e11d3fec4d5e4', '31.222.203.2', 1671996732, '__ci_last_regenerate|i:1671996732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c50f4526dfed0957d46e85cbb1817a6773e87a2', '31.222.203.2', 1671998529, '__ci_last_regenerate|i:1671998529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8332bec9f64919d1e7338770b4db9cf05ab4d808', '31.222.203.2', 1671998531, '__ci_last_regenerate|i:1671998531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a53ed6780722f1dd2e5ecb61985f3a399e90ac9f', '31.222.203.2', 1671998531, '__ci_last_regenerate|i:1671998531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394abe0f556ecf4cd19cf3171249c9b7fb6725d9', '31.222.203.2', 1671998531, '__ci_last_regenerate|i:1671998531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff5a3afce359542b4ea485721ae2e52a2c93dda', '31.222.203.2', 1671998531, '__ci_last_regenerate|i:1671998531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94717f5baf323c141a74f47563e73d7a6b62f7ec', '31.222.203.2', 1671998531, '__ci_last_regenerate|i:1671998531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01e01ca415951f26c019f106c6773c12bbd599e', '31.222.203.2', 1672000333, '__ci_last_regenerate|i:1672000333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9da5b11a58b328b684dbcedd4f9b258da6b8196b', '31.222.203.2', 1672000333, '__ci_last_regenerate|i:1672000333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2d93b90c5618b3d1c81502706b15287053d12f4', '31.222.203.2', 1672000333, '__ci_last_regenerate|i:1672000333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0c8206e29031b28e78f8937a1e093763941ba0', '31.222.203.2', 1672000335, '__ci_last_regenerate|i:1672000335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e38cc7dae6f7bafa32feacdf748c2c5dd439675', '31.222.203.2', 1672000335, '__ci_last_regenerate|i:1672000335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2491593a678902ed97380c766443dfc2f0c05f', '31.222.203.2', 1672000335, '__ci_last_regenerate|i:1672000335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34cd8cf1e4dd473c7058d2bd6e617a73500fcf0f', '172.105.247.100', 1672001487, '__ci_last_regenerate|i:1672001487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8e754471295ed4e0fe91e8e28a1e393a377efb', '172.105.247.100', 1672001487, '__ci_last_regenerate|i:1672001487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3a06a3e62b70e32c8e57b67ea8d9c412f1f44f', '172.105.247.100', 1672001488, '__ci_last_regenerate|i:1672001488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76877f2ce920a52ccac81a68ab408e9c83b5d21f', '172.105.247.100', 1672001488, '__ci_last_regenerate|i:1672001488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97e0686d5ed93e7d576a88eff4a9d31ab6b2a19', '172.105.247.100', 1672001488, '__ci_last_regenerate|i:1672001488;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53980eeb0a015d1db31453c5598eb3217a44489', '172.105.247.100', 1672001488, '__ci_last_regenerate|i:1672001488;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566c9555f2ef9f4aa7cff091de94b52046311220', '172.105.247.100', 1672001489, '__ci_last_regenerate|i:1672001489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9c32f6b534cd252787cb1998283900e8b40add', '172.105.247.100', 1672001489, '__ci_last_regenerate|i:1672001489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3c01176ae96b3c9198818cca29e3ed0559ee2e8', '172.105.247.100', 1672001489, '__ci_last_regenerate|i:1672001489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186670513c609f2933b54fa8a319bbb245434d8a', '172.105.247.100', 1672001489, '__ci_last_regenerate|i:1672001489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a482053f5776554137a35d0c81328d1aaf1d3a', '172.105.247.100', 1672001489, '__ci_last_regenerate|i:1672001489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd8f08b769c61ad942825f6db0e681c103a0062', '172.105.247.100', 1672001489, '__ci_last_regenerate|i:1672001489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911dc379280a6a239e0a23f1b68d3a68541698c7', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456c6105b88b70173946d1babd9fe24b9cbd923e', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef21d9c029336d3fd5fbab9c426613e5dd5f650', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657c41e2bdda97938c6067db5a9ed32e3a40f146', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f583fcdde9fa64040643385a09018fbf9bd842e', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a740335f1b3663f93a64afff99f336253311d717', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19108854b40d6833fd09e40e211f65630002b92e', '172.105.247.100', 1672001490, '__ci_last_regenerate|i:1672001490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a9a74641dd1d07af8a97535647679aabaa1de6', '172.105.247.100', 1672001491, '__ci_last_regenerate|i:1672001491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9066091e363cf4789479a82f84a57a0c7866d64', '172.105.247.100', 1672001491, '__ci_last_regenerate|i:1672001491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d242a2f1fa2aef6d05d3e353b1bcd768e148dd32', '172.105.247.100', 1672001491, '__ci_last_regenerate|i:1672001491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d896e81c6e53ac2310429a67ea2904cd5eaa48c8', '172.105.247.100', 1672001492, '__ci_last_regenerate|i:1672001492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfde78c0ad29b176ae45760d43c6615fa8f7cae7', '172.105.247.100', 1672001492, '__ci_last_regenerate|i:1672001492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dd20153d88f4c14e345cd4eaaac330877bea3a8', '31.222.203.2', 1672002137, '__ci_last_regenerate|i:1672002137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c068464a863f5ffb2c279fb0bc0c221a537767a', '31.222.203.2', 1672002137, '__ci_last_regenerate|i:1672002137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0608b5efc30d3904ec1287b888515a2aadea93f', '31.222.203.2', 1672002137, '__ci_last_regenerate|i:1672002137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f919784dedf0cabae4fccf95ede27f809bf419', '31.222.203.2', 1672002138, '__ci_last_regenerate|i:1672002138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d139665c0b57a13863e49b73a544a805ed41c53', '31.222.203.2', 1672002138, '__ci_last_regenerate|i:1672002138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b3495a345762befaf1fd129eac6a729e638a28', '31.222.203.2', 1672002138, '__ci_last_regenerate|i:1672002138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe592bd8206b6920e6ea020ac46624080ce4f79c', '31.222.203.2', 1672003936, '__ci_last_regenerate|i:1672003935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae40d92f31efc17db517789d7dab5b77e4107a22', '31.222.203.2', 1672003937, '__ci_last_regenerate|i:1672003937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de81146b94c17c41f6da715bbd414c381af1ecd9', '31.222.203.2', 1672003937, '__ci_last_regenerate|i:1672003937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d6ed68845938d821899964bb7ffafcdbef35ec', '31.222.203.2', 1672003937, '__ci_last_regenerate|i:1672003937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('978bafc9ef8491b52380220524f0ca1345fcb900', '31.222.203.2', 1672003937, '__ci_last_regenerate|i:1672003937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4074772d49fae2ce0a7aa1aa084ae9356176ea5f', '31.222.203.2', 1672003938, '__ci_last_regenerate|i:1672003937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1877bb9aa481038ee21949aaadf5fdee375f45f2', '31.222.203.2', 1672005735, '__ci_last_regenerate|i:1672005735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cade0e8fad353da49a4e95e840fc1fdb6de03ae1', '31.222.203.2', 1672005735, '__ci_last_regenerate|i:1672005735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8df6ec19e6199572668c321b7c786844c7e9c3', '31.222.203.2', 1672005735, '__ci_last_regenerate|i:1672005735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802c560f9f72667d037e40c6ab5554c0848a7407', '31.222.203.2', 1672005735, '__ci_last_regenerate|i:1672005735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29af269f9d662c16436557214b85c020a7eb056', '31.222.203.2', 1672005735, '__ci_last_regenerate|i:1672005735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ac4068d9382c4974e8235781874254e756f612', '31.222.203.2', 1672005735, '__ci_last_regenerate|i:1672005735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f97e4a5172851fcecac0180d353fbd36e9872b9', '172.105.247.100', 1672006284, '__ci_last_regenerate|i:1672006284;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb981a02a9b6ba7be827ef0ca47dcd310f98e52', '172.105.247.100', 1672006285, '__ci_last_regenerate|i:1672006285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e4ad506ccffd6955eedeed16d34b3c35543332', '172.105.247.100', 1672006285, '__ci_last_regenerate|i:1672006285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ac5da5bc52ee3ba55b378055f441b8c7234c43', '172.105.247.100', 1672006285, '__ci_last_regenerate|i:1672006285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ef2155a89994df2dd6b0a38492ac49f1011fad', '172.105.247.100', 1672006285, '__ci_last_regenerate|i:1672006285;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee905fb3a15d2810508ff7d1dca426612f87bf7', '172.105.247.100', 1672006286, '__ci_last_regenerate|i:1672006285;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('392c5a157c3a69e438a00b0865ba6871fd0057b0', '172.105.247.100', 1672006286, '__ci_last_regenerate|i:1672006286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1ad6bca4c3f8b30d6c926e00022d41700a0a65', '172.105.247.100', 1672006286, '__ci_last_regenerate|i:1672006286;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5efd4da5fc7e02d13ad0994fe86ce66ac994902a', '172.105.247.100', 1672006286, '__ci_last_regenerate|i:1672006286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a34e68e733d84ff1ee58768f4eca58cf1416d61', '172.105.247.100', 1672006287, '__ci_last_regenerate|i:1672006287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821c6a72ba3655ef693d6aaa0b29e0d6d20c9ab6', '172.105.247.100', 1672006287, '__ci_last_regenerate|i:1672006287;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80f3fb88caddfea39308915bf0e410b76aacf2ec', '172.105.247.100', 1672006287, '__ci_last_regenerate|i:1672006287;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10242bd66c55f74f1f0580711ab2aa18a28fc2d', '172.105.247.100', 1672006288, '__ci_last_regenerate|i:1672006288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e5c8898747d75cf09ed78af5692afd37e1fbcd', '172.105.247.100', 1672006288, '__ci_last_regenerate|i:1672006288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb9e0a9f9c50e22163741dad0731305ad0d410f', '172.105.247.100', 1672006288, '__ci_last_regenerate|i:1672006288;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618b0e8373adfeefaefa60bf2338030761e9dc3f', '172.105.247.100', 1672006289, '__ci_last_regenerate|i:1672006288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562d23dae17f4de31d6dd466ed1161f0ddcc65fc', '172.105.247.100', 1672006289, '__ci_last_regenerate|i:1672006289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7676a339c11054620a779cd87f437a3fecd59406', '172.105.247.100', 1672006289, '__ci_last_regenerate|i:1672006289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd2c9dc1ef9c3df5002f44e9682f48a9be99225e', '172.105.247.100', 1672006289, '__ci_last_regenerate|i:1672006289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0f638e78d782121a6aac2d12b30f9e34daadbf', '172.105.247.100', 1672006290, '__ci_last_regenerate|i:1672006289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd966b48df21743879fca236bf02fdf13acf83b', '172.105.247.100', 1672006290, '__ci_last_regenerate|i:1672006290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57e7ac0f1c61c51c92321a3ef9bb7408efad0ef', '172.105.247.100', 1672006290, '__ci_last_regenerate|i:1672006290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a48cb278e0061614daad1cb77dd23fb375066ad', '172.105.247.100', 1672006290, '__ci_last_regenerate|i:1672006290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5458fb592dc591fa89d2cb9404650b22f8b4bb', '172.105.247.100', 1672006291, '__ci_last_regenerate|i:1672006291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f02d0bd923417c43707f44f8db5099b4bd9802b', '31.222.203.2', 1672007528, '__ci_last_regenerate|i:1672007528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766de8cab42848f2f89f37ab8a6feb47231a4c0e', '31.222.203.2', 1672007528, '__ci_last_regenerate|i:1672007528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5b8776dc1099db39c4f6505e2975cec2413ba4', '31.222.203.2', 1672007528, '__ci_last_regenerate|i:1672007528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e84893a097c0f27065d76814e597b1c48d6fea15', '31.222.203.2', 1672007530, '__ci_last_regenerate|i:1672007530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('725c553f4c2e95365158ca1c1fb730ec5f850a94', '31.222.203.2', 1672007530, '__ci_last_regenerate|i:1672007530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488f6ce772717fcd32a22053297971d0eeb1253e', '31.222.203.2', 1672007530, '__ci_last_regenerate|i:1672007530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ea7a8544bf5a805decb99a705db72005c4ec327', '31.222.203.2', 1672009332, '__ci_last_regenerate|i:1672009332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e9bd542a777a45adc218ed55c04435240236f0', '31.222.203.2', 1672009332, '__ci_last_regenerate|i:1672009332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('966816a3d8bf8dbb355e98529901dd8cd0d1da7c', '31.222.203.2', 1672009332, '__ci_last_regenerate|i:1672009332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f66f6364db50912067a274e12d74933a24bb9d', '31.222.203.2', 1672009334, '__ci_last_regenerate|i:1672009334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5550025b392f1f2033238528c82728df40a8d9d', '31.222.203.2', 1672009334, '__ci_last_regenerate|i:1672009334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d461479254a7866fe2d411a9622f30491ce7bc97', '31.222.203.2', 1672009334, '__ci_last_regenerate|i:1672009334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2409cf1d1c1f6c3426f59aae2a81772d29517335', '172.105.247.100', 1672011082, '__ci_last_regenerate|i:1672011082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2a0c5942e78ddd279e81f2fb3385eb6161e766', '172.105.247.100', 1672011082, '__ci_last_regenerate|i:1672011082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54dd9097af10bc127557a26fe7abf1fb1b05da66', '172.105.247.100', 1672011082, '__ci_last_regenerate|i:1672011082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63095ca5e1f5327e67b2d81fb0bdbb396d2f72f6', '172.105.247.100', 1672011083, '__ci_last_regenerate|i:1672011082;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa75a6878bc4d729793f1f31fe34f29f3e6fae4', '172.105.247.100', 1672011083, '__ci_last_regenerate|i:1672011083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c02b11730573227d9ef35b9525cc37e62534c9a', '172.105.247.100', 1672011083, '__ci_last_regenerate|i:1672011083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79187a777af52b4bd378679f7b3c14b9b4fcb4f7', '172.105.247.100', 1672011083, '__ci_last_regenerate|i:1672011083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5cb498d36e7232a22788e1a3f7e9b8f9f2ce229', '172.105.247.100', 1672011083, '__ci_last_regenerate|i:1672011083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09bc09aaba1f781454eae0f41e356eef5ac48611', '172.105.247.100', 1672011083, '__ci_last_regenerate|i:1672011083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('979b178fedb4997670f45ba0c4795ea3057247ef', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83455bddbbebbc1cb4ba4594475e261a097abe5', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f835719d271947b30e7b99bbebc977100ab247', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3914045284b1475bd64790d1c24b668b7a39b491', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a570b5abbdad35ddf129a8f3f21f85db8db5fb', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5da2389f532cf88e6fd6e724d88e792cd9ab2a', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa9e2e029213aeb05042f9d6a092016d8ca6c834', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d968860b7375a175b8f4aa9d72bcab01fcb40a0', '172.105.247.100', 1672011084, '__ci_last_regenerate|i:1672011084;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6378f636cd1b08e2937fbf2f56f6060d0ff2fb', '172.105.247.100', 1672011085, '__ci_last_regenerate|i:1672011085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac21f7b39c4ac2c2b53e8eb1faa42f66f2678384', '172.105.247.100', 1672011085, '__ci_last_regenerate|i:1672011085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8047af9fe6aac0b4a8e44bd54d9f73f4b8c89bd', '172.105.247.100', 1672011085, '__ci_last_regenerate|i:1672011085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87da1e7a5de7f7faf4862ed513ef907b1bde9332', '172.105.247.100', 1672011085, '__ci_last_regenerate|i:1672011085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bfca4e64e0751b492f1f2199d5fd11c42c6643f', '172.105.247.100', 1672011085, '__ci_last_regenerate|i:1672011085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd745b5ce22c3f652adef8e698521c4d0e494d1', '172.105.247.100', 1672011086, '__ci_last_regenerate|i:1672011086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685d290460c89225be4c529114b0a49a2cf02992', '172.105.247.100', 1672011086, '__ci_last_regenerate|i:1672011086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd354473209130ea760ba1ce7ad1b2a662c30de', '31.222.203.2', 1672011133, '__ci_last_regenerate|i:1672011133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c909d8ae94cd2cf9d87bcbf23bece7c33abe3e3', '31.222.203.2', 1672011133, '__ci_last_regenerate|i:1672011133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3305a9e4162873ebb3cc5ba55d3d398c7699a9f6', '31.222.203.2', 1672011133, '__ci_last_regenerate|i:1672011133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4584a32d6fa05f9647d6b578b499538b354b2c35', '31.222.203.2', 1672011133, '__ci_last_regenerate|i:1672011133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2706249a9ef068b8ab46a067ce7a4ba159ab125c', '31.222.203.2', 1672011133, '__ci_last_regenerate|i:1672011133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff70af3c6cbe6556c87b30961a373ef8cb8f40f9', '31.222.203.2', 1672011133, '__ci_last_regenerate|i:1672011133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c4d6620b653df9d909e7dff87e29b0db08949d', '31.222.203.2', 1672012927, '__ci_last_regenerate|i:1672012927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe75c0027fd09bc014bb8c2329c7b82f082b313', '31.222.203.2', 1672012927, '__ci_last_regenerate|i:1672012927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13932760c3411ad5eb70d34d04aa2c4b9850263', '31.222.203.2', 1672012927, '__ci_last_regenerate|i:1672012927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c0cb3e29722ef0a5fda3d476d9c901f67b9cd1', '31.222.203.2', 1672012929, '__ci_last_regenerate|i:1672012929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c573642e624e85d2ac8d1b9a9ac34714bbfee1f2', '31.222.203.2', 1672012929, '__ci_last_regenerate|i:1672012929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eff20eca00851974f41467308f95d8b4ec2060c', '31.222.203.2', 1672012929, '__ci_last_regenerate|i:1672012929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4b0c26c6050900f5bdd6b4ab5d59709ac7b226', '31.222.203.2', 1672014728, '__ci_last_regenerate|i:1672014728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023f57bb9d250153e38f27facddb28e5d9e442d3', '31.222.203.2', 1672014728, '__ci_last_regenerate|i:1672014728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172e12c88fb19ab772878802a73c9c711ac31154', '31.222.203.2', 1672014729, '__ci_last_regenerate|i:1672014729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48071473023ab7ef766877727c8f04142bdbb957', '31.222.203.2', 1672014730, '__ci_last_regenerate|i:1672014730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965da4846ab8e268d8a6498e8c349daca4cb86f5', '31.222.203.2', 1672014731, '__ci_last_regenerate|i:1672014731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b177d985f7768175b36d630fd99286edb72ff8', '31.222.203.2', 1672014731, '__ci_last_regenerate|i:1672014731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efd041f1f2c72f2bac77442aa0ce8ecd3806fc1', '172.105.247.100', 1672015883, '__ci_last_regenerate|i:1672015883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6d39bdd54b794ff2a2a2b0dc0a9e512be6ff7e', '172.105.247.100', 1672015883, '__ci_last_regenerate|i:1672015883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983b3f2bc34a6605301947dc1ab90bf937321bf4', '172.105.247.100', 1672015883, '__ci_last_regenerate|i:1672015883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1db7be4e9e52c94bdf6f551f43ba03fbb077aaf', '172.105.247.100', 1672015883, '__ci_last_regenerate|i:1672015883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6262cc0a302c179138ad9c953a916be4c562518', '172.105.247.100', 1672015883, '__ci_last_regenerate|i:1672015883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5257d86f25080d2ae04e7fd0a8bc8393cbd7ad9b', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a43995c7070c267b12c3827ee689907a4bf2e3', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d68ad8d861c68e82160111c11aca2758a7f5c9a', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8194a71e4198e003de98e19451442d26c472a28', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83cdc38cec85e47874048c1cec513494b5fdd2e8', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0350c44f8360c4f457a39d4c06cd09381866b14e', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f05757cdf95db31cec7993089592c11bec9e44d', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57906d8af45f8ada297a18abe4effb1f2557daad', '172.105.247.100', 1672015884, '__ci_last_regenerate|i:1672015884;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7b813081baef8928a70ca00338468051617eb0', '172.105.247.100', 1672015885, '__ci_last_regenerate|i:1672015885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd24649dd28c8339cf4aeca815c5cba364ed9af5', '172.105.247.100', 1672015885, '__ci_last_regenerate|i:1672015885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96cbcbb23abdb5dedff3feec6c860ca895f59e9', '172.105.247.100', 1672015885, '__ci_last_regenerate|i:1672015885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d425be9999691ff6f7bc5fdfa20c87695e9bc31b', '172.105.247.100', 1672015885, '__ci_last_regenerate|i:1672015885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('837faafb819e4d092af367712112e75f22241ee2', '172.105.247.100', 1672015885, '__ci_last_regenerate|i:1672015885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bac2055cc2836a15ad0adcab071381acd46ce52', '172.105.247.100', 1672015885, '__ci_last_regenerate|i:1672015885;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a5e93afb3e5db7b8e0d3b605453a829033b5b8', '172.105.247.100', 1672015886, '__ci_last_regenerate|i:1672015885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ce36451726113295637b6b9f683bcb2bfcec92', '172.105.247.100', 1672015886, '__ci_last_regenerate|i:1672015886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80293bb3f30dc23e07837ba7c2b951e0c5e848b', '172.105.247.100', 1672015886, '__ci_last_regenerate|i:1672015886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea88d09b5eea6fe746bdf3dcbb4a47ee2081464', '172.105.247.100', 1672015886, '__ci_last_regenerate|i:1672015886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048a73e727f6b01b05ba61c19254aa5cb283b6d7', '172.105.247.100', 1672015886, '__ci_last_regenerate|i:1672015886;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6817c6a90c28eeb845ad5c5634838596342be47', '31.222.203.2', 1672016540, '__ci_last_regenerate|i:1672016540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2d5825ce057bb124cad3e2191ce1edbe1d63d6', '31.222.203.2', 1672016540, '__ci_last_regenerate|i:1672016540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84fb82844d941a8abe8656b44233e8d3bbde9e3', '31.222.203.2', 1672016540, '__ci_last_regenerate|i:1672016540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce0a13930c9e8acae7c84493e85d10918f74723', '31.222.203.2', 1672016542, '__ci_last_regenerate|i:1672016542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d739fdbd3e041acffa87987bef3c0b6b095746b', '31.222.203.2', 1672016542, '__ci_last_regenerate|i:1672016542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ab8456d452de174c6453855ebdfae6d325a376', '31.222.203.2', 1672016542, '__ci_last_regenerate|i:1672016542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbadd79ec3046fbc85a881aca02261efa7bd641e', '31.222.203.2', 1672018329, '__ci_last_regenerate|i:1672018329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3c30f0494a50be59fb0c824c88190f9fa2a85f', '31.222.203.2', 1672018329, '__ci_last_regenerate|i:1672018329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e75dc71b9098428528416ed0b00d67b94469c44', '31.222.203.2', 1672018329, '__ci_last_regenerate|i:1672018329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e458b524d030dda5b9429493c17786dd0f0f087f', '31.222.203.2', 1672018331, '__ci_last_regenerate|i:1672018331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c4bb6e2ff7627b72c33d2794f3e298e59386f6', '31.222.203.2', 1672018331, '__ci_last_regenerate|i:1672018331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49b275c191a70089514c4c9eaeb84c91b43c6396', '31.222.203.2', 1672018331, '__ci_last_regenerate|i:1672018331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8caf2cb2eb56f1c180dce4d0dc52c7398b807ad8', '31.222.203.2', 1672020127, '__ci_last_regenerate|i:1672020127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76c07bd1601e3810e0299a5763fcc33669824ba', '31.222.203.2', 1672020127, '__ci_last_regenerate|i:1672020127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bdc9b3fb92c8b61a362df253e78fb4d6f94f875', '31.222.203.2', 1672020127, '__ci_last_regenerate|i:1672020127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3377570d2618c0162293c24b435b4ed2845f8d', '31.222.203.2', 1672020129, '__ci_last_regenerate|i:1672020129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6170ccd0dfa967797df6fd10c4b35a20b5dccac6', '31.222.203.2', 1672020129, '__ci_last_regenerate|i:1672020129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763bf8a40f98dfc0ea1434a95e67ae695411bf10', '31.222.203.2', 1672020129, '__ci_last_regenerate|i:1672020129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1dcefa0afac0be2c4c631f49db764266094039', '172.105.247.100', 1672020686, '__ci_last_regenerate|i:1672020686;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b1d91a808281a2bcddd17759891d248a9272b31', '172.105.247.100', 1672020687, '__ci_last_regenerate|i:1672020687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5460f38b724d76295fc6635731c05c653a3038', '172.105.247.100', 1672020687, '__ci_last_regenerate|i:1672020687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6ffaa722ccbe24bc798da82b3de51c31808e49', '172.105.247.100', 1672020688, '__ci_last_regenerate|i:1672020688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79c949e4a60bfc3192d715789c22d07cad464d3', '172.105.247.100', 1672020688, '__ci_last_regenerate|i:1672020688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7611167b6e25aba5375bd7b295eb9759077028ba', '172.105.247.100', 1672020688, '__ci_last_regenerate|i:1672020688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29962f7be31e49494ab68c26e2f822458a70907b', '172.105.247.100', 1672020688, '__ci_last_regenerate|i:1672020688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828118616bb53be0a30cbaf858bf1530d4f39afa', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eddfef4cfc7e77b5946d16b4c107856e6f936a5', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3b3027ae0136c82a0f3c738e9a6b9727ba12ee', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7a377103ec3c811d8a2d40101749433cdb0973', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a320ab836495cf2eb455209cdace8efe83129d20', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014ab8ed20831a0136ed7b7bde7bc1504dbf906e', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77fa9a64309c18e6d106be56f5a34b41f77fdbfd', '172.105.247.100', 1672020689, '__ci_last_regenerate|i:1672020689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5770497738a43264a8ca8847a408743a3f156e67', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d054f7393e72cc6e221a71c29916865002202317', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020689;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed90365d792de1f9932bd39e98c0aa99352ac32b', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60dd512a46c61137a69fce8a657cf4f04d45f5a4', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cc2bf8670bef0cd0fabe9e03e0a729fb1056da', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0bc63b81441fb4724e00c2796bc88d2f613151', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020690;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1598cd54f8585900a7649e371e12e8ae332786c0', '172.105.247.100', 1672020690, '__ci_last_regenerate|i:1672020690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa661605e4f39e25960caaed424423f9207c3bcd', '172.105.247.100', 1672020691, '__ci_last_regenerate|i:1672020691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7625f637fade7d6cbeee093e6945c3a4905ce5d9', '172.105.247.100', 1672020691, '__ci_last_regenerate|i:1672020691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0a62df3dc7605564c68214bb9bcd46dd878406', '172.105.247.100', 1672020691, '__ci_last_regenerate|i:1672020691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8838878b01b7e0f8154b92e68ef22019bf5257', '31.222.203.2', 1672021932, '__ci_last_regenerate|i:1672021932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f38077fdf0a954a3c9b75e63f76073754e6f664', '31.222.203.2', 1672021932, '__ci_last_regenerate|i:1672021932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d2312e47031e8369105635e6fdc70953dc39d9', '31.222.203.2', 1672021932, '__ci_last_regenerate|i:1672021932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2b292d90a9f8ec5946f8f96a1bdb3c4e9bf686', '31.222.203.2', 1672021934, '__ci_last_regenerate|i:1672021934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0247e2885b04faa321977ef06acd1b45076f300', '31.222.203.2', 1672021934, '__ci_last_regenerate|i:1672021934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66ee5331f10d37027470f20d17911f2b5fd8c7f', '31.222.203.2', 1672021934, '__ci_last_regenerate|i:1672021934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54f0e71232db313131999573d0cdc962bf7c45e', '31.222.203.2', 1672023734, '__ci_last_regenerate|i:1672023734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a6fa02021ae0023596ad1869a560234821edf1', '31.222.203.2', 1672023734, '__ci_last_regenerate|i:1672023734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15626cac13fcbd63adf046d36ed93334ec275baa', '31.222.203.2', 1672023734, '__ci_last_regenerate|i:1672023734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70761245acdeacdb4ca99c8d0cbee7d64824e6e1', '31.222.203.2', 1672023736, '__ci_last_regenerate|i:1672023736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bffd11a14e892a9f8846db438223b922db5e6d5d', '31.222.203.2', 1672023736, '__ci_last_regenerate|i:1672023736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edfe98a2289638b2fd775c40eedd8d92720d35a', '31.222.203.2', 1672023736, '__ci_last_regenerate|i:1672023736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f1d9d6245239fb687e91bda8589cf11cd8f030', '172.105.247.100', 1672025489, '__ci_last_regenerate|i:1672025489;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed53863b8fa445b544ac7fd606030c086e48545', '172.105.247.100', 1672025490, '__ci_last_regenerate|i:1672025490;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ae9c4c3676d0c457c9edab5f2b5fc647e283b2', '172.105.247.100', 1672025490, '__ci_last_regenerate|i:1672025490;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96cc08eb7c689ccfc2df3d0d3e301740b61b4bc8', '172.105.247.100', 1672025491, '__ci_last_regenerate|i:1672025491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e093bc88f1ca9c07ebff8df689292c9c27b1aac2', '172.105.247.100', 1672025491, '__ci_last_regenerate|i:1672025491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('703aa2de429777aafa5fe440e2c5ac8fc8f868de', '172.105.247.100', 1672025491, '__ci_last_regenerate|i:1672025491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36122a25958a17a2dcbc18c3b63f0a105d24e747', '172.105.247.100', 1672025491, '__ci_last_regenerate|i:1672025491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5333bec9aa162ea45d724e570322383596c7192b', '172.105.247.100', 1672025491, '__ci_last_regenerate|i:1672025491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82fa89bf7f7b1321899873c520c2dc2b83c03fe1', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b4d4bd4d4c5db2a566727bc9b88f280a7827da', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7726009bead1efbaddf43707d3673f5caa33ff3', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e196b8179d37daea738b20f1938cdc108c09b3', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d069e13fe1588e9306fb735cc9fb5a837f861543', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5caf2f889d29767db805877e75fe0ec67d138667', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c43facba105401afb569202288523512ef4c64', '172.105.247.100', 1672025492, '__ci_last_regenerate|i:1672025492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d378ba3828b8199421daf2003f70709e060593bc', '172.105.247.100', 1672025493, '__ci_last_regenerate|i:1672025492;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce0ad5e7f75c0e63bef8ea08b156b4a2d21b710', '172.105.247.100', 1672025493, '__ci_last_regenerate|i:1672025493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3610e41a4b428f9ae74190b3522cf20646ba65dc', '172.105.247.100', 1672025493, '__ci_last_regenerate|i:1672025493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99d97896bb96d829f8899a88355db9345175254', '172.105.247.100', 1672025493, '__ci_last_regenerate|i:1672025493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ca4589b675d8ca4d3462363f78a32f9bd7063d3', '172.105.247.100', 1672025493, '__ci_last_regenerate|i:1672025493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9846cda9b653eeb17c0b30239d7c96207753854', '172.105.247.100', 1672025493, '__ci_last_regenerate|i:1672025493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998b5460571ccf9759710c8cfe2a2c4e17f00525', '172.105.247.100', 1672025494, '__ci_last_regenerate|i:1672025494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff1ed8c74ef7d408df7e9e61c7797117aab4709d', '172.105.247.100', 1672025494, '__ci_last_regenerate|i:1672025494;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145f52aa7a5119317ea366cf6a8eaf1d459896f7', '172.105.247.100', 1672025494, '__ci_last_regenerate|i:1672025494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb97b0585adbc2bb210e074850e569553f9b94eb', '31.222.203.2', 1672025527, '__ci_last_regenerate|i:1672025527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d629bea18c96dd206833dd7590b76710b4ab5cca', '31.222.203.2', 1672025527, '__ci_last_regenerate|i:1672025527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca0d916fd90de33745354845661133e3b6c126e', '31.222.203.2', 1672025527, '__ci_last_regenerate|i:1672025527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ae3f33f19d1a45e38cd25feb565cbb82dba1af', '31.222.203.2', 1672025529, '__ci_last_regenerate|i:1672025529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb953a4e9e40cd2639b9f3bebdbcfd79bb15b84b', '31.222.203.2', 1672025529, '__ci_last_regenerate|i:1672025529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99008381a127cd6d47c64b9f02166da7a83ebc94', '31.222.203.2', 1672025529, '__ci_last_regenerate|i:1672025529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c9b86a3e02b7fb0cf475ca2f7f1bfc49357ec5', '31.222.203.2', 1672027337, '__ci_last_regenerate|i:1672027337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2615d0fa8cbea3bdaf7de2672db66c3cddfe3c9a', '31.222.203.2', 1672027337, '__ci_last_regenerate|i:1672027337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ed594c54ee54db3e62b340baf6a625c12f1f9c', '31.222.203.2', 1672027337, '__ci_last_regenerate|i:1672027337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd141ae493e348d3d458bfe42ca6019490273f85', '31.222.203.2', 1672027339, '__ci_last_regenerate|i:1672027339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5842db42afcae80953542c7966835acbb37cadb', '31.222.203.2', 1672027339, '__ci_last_regenerate|i:1672027339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a525d5343b6fa66c35781df63f2176e2dab4f90c', '31.222.203.2', 1672027339, '__ci_last_regenerate|i:1672027339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('970805f27aad33c634b488d6831b8eaf90aef0b6', '31.222.203.2', 1672029127, '__ci_last_regenerate|i:1672029127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd5018270cb9677ae4b7428656a1ddb94af6c36', '31.222.203.2', 1672029127, '__ci_last_regenerate|i:1672029127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26b80fab209eee79839e42e38930d3be63fa4b1c', '31.222.203.2', 1672029127, '__ci_last_regenerate|i:1672029127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ce60173530de74320e1c26c738a9e8f78ce131', '31.222.203.2', 1672029129, '__ci_last_regenerate|i:1672029129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4a6273aaae376c784abaeea0501fc7ae34a9e6', '31.222.203.2', 1672029129, '__ci_last_regenerate|i:1672029129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec175152bd13063b05bd90c01976deb3f6f198b', '31.222.203.2', 1672029129, '__ci_last_regenerate|i:1672029129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b799bf2a67263bbfe0bb26bfd8ce30f14f9609b8', '172.105.247.100', 1672030289, '__ci_last_regenerate|i:1672030289;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('499aacc2b3046cd507e7d76803d89a4846915b53', '172.105.247.100', 1672030289, '__ci_last_regenerate|i:1672030289;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72980c7a6a2ee4646fbce0806d0247d9f8456fce', '172.105.247.100', 1672030290, '__ci_last_regenerate|i:1672030290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ba555bdd4f64f306680255d16a70e1fed039d5', '172.105.247.100', 1672030290, '__ci_last_regenerate|i:1672030290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bc64ddeee539c2ac61a4ffffcb779ba145bbda', '172.105.247.100', 1672030290, '__ci_last_regenerate|i:1672030290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28a77c98f2438f6029f4c81e3e2b926d079a31a', '172.105.247.100', 1672030290, '__ci_last_regenerate|i:1672030290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49db694e7f33a61e9d02720160f1221dde5dd4f7', '172.105.247.100', 1672030291, '__ci_last_regenerate|i:1672030291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9a05a21a8b0714a7b53161b72ac742fbab2076', '172.105.247.100', 1672030291, '__ci_last_regenerate|i:1672030291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5c8ac1de6b0524d9f047a709cbf623fd4bd82a', '172.105.247.100', 1672030291, '__ci_last_regenerate|i:1672030291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d9ac3dfbe260f16d291894507c89dad251c803', '172.105.247.100', 1672030291, '__ci_last_regenerate|i:1672030291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9be5bc37abd0f4599efd19dbe6d848519a941b', '172.105.247.100', 1672030291, '__ci_last_regenerate|i:1672030291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c110a5f5cca9ec3a78acf86d111d0c356d40d3', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030291;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53123c4772b2ea7ceb55f39eedc9ad17efc90169', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f38a4c56fea8fe9fc8c6c51da573b7d6e6a026b', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229c8af1009d627577f9ce2d475e3675101d55b1', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e54977814f786b0be6439a39becf55179e8809d', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c4e845dddbfc657917427dbcf34943c88ce63a', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c3ec56cb6f7ce7268831f48c590942326b0834', '172.105.247.100', 1672030292, '__ci_last_regenerate|i:1672030292;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140506a8110214aab192bafbfb49695a8fd21d70', '172.105.247.100', 1672030293, '__ci_last_regenerate|i:1672030293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2fad230274c050d28edb6b35373670ff9d52a8e', '172.105.247.100', 1672030293, '__ci_last_regenerate|i:1672030293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee6dae0ebdcf2455686c98bd34bcda07d383961', '172.105.247.100', 1672030293, '__ci_last_regenerate|i:1672030293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a00ccb59d07ddcd22bcd5a4380333d6345e9262', '172.105.247.100', 1672030293, '__ci_last_regenerate|i:1672030293;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5641b5359a781ff6cecddc511f536f13ce68cfae', '172.105.247.100', 1672030294, '__ci_last_regenerate|i:1672030294;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d7540bf2a4669e40c800f76a887158a11e2e6e', '172.105.247.100', 1672030294, '__ci_last_regenerate|i:1672030294;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699dc0724770bf0ef986e087b3b5dbfd9c3e28e8', '45.120.39.89', 1672030473, '__ci_last_regenerate|i:1672030453;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1671980029\";last_ip|s:14:\"37.111.218.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1672030471;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bed1e7204cdda86854df9b3a989b623b7ce09e6', '31.222.203.2', 1672030931, '__ci_last_regenerate|i:1672030931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7fc1b81e9e642b802fdf206e0bd653ac44706a', '31.222.203.2', 1672030931, '__ci_last_regenerate|i:1672030931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d0730be3d58be718897443f11df09654950a91', '31.222.203.2', 1672030931, '__ci_last_regenerate|i:1672030931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178cc632128dc5dfcd1a0dc28b6bd753e32f9096', '31.222.203.2', 1672030933, '__ci_last_regenerate|i:1672030933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714872e65e9d671f20e29ef90e7c376a6f940f5c', '31.222.203.2', 1672030933, '__ci_last_regenerate|i:1672030933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3311a9bfb498096531bac3ceb3cb4d36468e6945', '31.222.203.2', 1672030933, '__ci_last_regenerate|i:1672030933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc762c6e9dc3add06898cbde05c5231bd4dc71c', '31.222.203.2', 1672032737, '__ci_last_regenerate|i:1672032737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('290f77a0be2d804628d2d96db7f90cbb4a82ba5a', '31.222.203.2', 1672032738, '__ci_last_regenerate|i:1672032738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342fe2c2f7f66a7e6ad9da24109f4113f8a138f6', '31.222.203.2', 1672032738, '__ci_last_regenerate|i:1672032738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3047d736e33dce44f7ad52875c9eebbe0b420505', '31.222.203.2', 1672032740, '__ci_last_regenerate|i:1672032740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770c3a2a74f843be8ffc91c5b0d4c771247aae50', '31.222.203.2', 1672032740, '__ci_last_regenerate|i:1672032740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4062a39ccefd02bba1652ce35bdecd87cc5192', '31.222.203.2', 1672032740, '__ci_last_regenerate|i:1672032740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce7565f8f82790820668ca3382007e46f3280a8', '31.222.203.2', 1674243444, '__ci_last_regenerate|i:1674243444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f180096e685900c2fdc73666ac7442f036b5cb', '31.222.203.2', 1674243445, '__ci_last_regenerate|i:1674243445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100a192bf18bdfb1f41fd2a950324eaaf507f327', '31.222.203.2', 1674243445, '__ci_last_regenerate|i:1674243445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad885301a8e6c5c4ae1cfcb006e98df710ae271', '31.222.203.2', 1674243445, '__ci_last_regenerate|i:1674243445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c71a00f0a5536941c72de701d4d2c1443a6f6ba', '31.222.203.2', 1674243445, '__ci_last_regenerate|i:1674243445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09f19ebc30915180ff7754696de769891e2ef06', '31.222.203.2', 1674243445, '__ci_last_regenerate|i:1674243445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd627452453ca40ad627f0e08e432dd66d7cdb73', '31.222.203.2', 1674245238, '__ci_last_regenerate|i:1674245238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bcae61365f174e34deb24295414370f3fb0634', '31.222.203.2', 1674245238, '__ci_last_regenerate|i:1674245238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29d7c1b6fd2be8244bada793b5c18d2f1e3dbee', '31.222.203.2', 1674245238, '__ci_last_regenerate|i:1674245238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3b7016ad6a2e411cb4356d71a1f1fd4df039c2', '31.222.203.2', 1674245238, '__ci_last_regenerate|i:1674245238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21270716c17f53cdba9363533d6d8bd78ba0d0ea', '31.222.203.2', 1674245238, '__ci_last_regenerate|i:1674245238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb136c31edca9e7174ededb3ec63646712a3bc83', '31.222.203.2', 1674245238, '__ci_last_regenerate|i:1674245238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c5737d9fa22b1c6e1a1e476f8a5d09daaf0a85', '31.222.203.2', 1674247031, '__ci_last_regenerate|i:1674247031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79487a6495d4e5e8dea3565dc61b73eee495de44', '31.222.203.2', 1674247031, '__ci_last_regenerate|i:1674247031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('915d35256b0bb886919903e8def69920d65f80e6', '31.222.203.2', 1674247031, '__ci_last_regenerate|i:1674247031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374825ec3293ca3201883db4a7bb4ba1d3a59cf2', '31.222.203.2', 1674247033, '__ci_last_regenerate|i:1674247033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3fa982a7b40578426c0cda7864400bcbb81363', '31.222.203.2', 1674247033, '__ci_last_regenerate|i:1674247033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f96f8f6b9de2e8cbaf753c3c16fea436ff126839', '31.222.203.2', 1674247033, '__ci_last_regenerate|i:1674247033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635e4a780cd8fb2fa2a0260f22189efe0f522e5c', '172.105.247.100', 1674247210, '__ci_last_regenerate|i:1674247210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21933c66f0f1a759bd1102e41d5e5c8ed38ba2fb', '172.105.247.100', 1674247210, '__ci_last_regenerate|i:1674247210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1be7a7ae0cecd9bfb9ab4c69af68debdce0085', '172.105.247.100', 1674247210, '__ci_last_regenerate|i:1674247210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf41aaa5a3736dc11a5c57c3f69cd4f344152054', '172.105.247.100', 1674247210, '__ci_last_regenerate|i:1674247210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff498c693b16ab98955e50ca8ad46ad91d1b331', '172.105.247.100', 1674247210, '__ci_last_regenerate|i:1674247210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c2d6dff278b72d198012d0038ee7a389aca7f0', '172.105.247.100', 1674247210, '__ci_last_regenerate|i:1674247210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ee3c41933fa4a7bcef276c74acbd83527b6e6b', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3605e73726d7bda98ceff6d081e5b965765535d7', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61be5eb78d7ae2f242a0990f3660dc3397bfec8', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a70c0667032e80dd889f9af3dfd2113c7c68e52', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f0482ada27bb546b79d2a82e2d1e227ada8370', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4497f764cbeb7dfb64d927dda120ac010d54f1e2', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc04216b9a914bd01841c2b3b9a7bb8a3c59d07d', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8694992d827ede4e94b9caa71a90fc2a2f2c58a', '172.105.247.100', 1674247211, '__ci_last_regenerate|i:1674247211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c220b241110bded6ad6b6e3d16549fa6eb5e04', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d195e0e23767aa477392b4dba69a4080ccdc0b1', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11678e8b207398333f564a81fafb2de43e019527', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f5aad2e278c9eee1095fb75443611f80e6abdb', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095734cb5c4bffc257de14ebe50346cb2514b6e4', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92f35a5805e1427ba24eb160621ea288b333a20c', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17515e37496b16451a7bf6d1afa933626745b2c3', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17237ea3b893168eeb86fea5975f0db007b80c91', '172.105.247.100', 1674247212, '__ci_last_regenerate|i:1674247212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85dd3c1655fe1d1033f70af34f218ed7804db158', '172.105.247.100', 1674247213, '__ci_last_regenerate|i:1674247213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec47315ed45173880d77b6701922e4183b0da63', '172.105.247.100', 1674247213, '__ci_last_regenerate|i:1674247213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1545363ba8aead1c426703d30a2a48047560c4ce', '170.187.184.242', 1674247216, '__ci_last_regenerate|i:1674247216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc48951d23106f646b4c3832ac48b71ce62d876', '170.187.184.242', 1674247216, '__ci_last_regenerate|i:1674247216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e0d7e2ddc632b6d99deb2e4c9d1d2bca499fdb', '170.187.184.242', 1674247216, '__ci_last_regenerate|i:1674247216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f8aedcd50f5c0b014f78f039ba0ddf3b06d022', '170.187.184.242', 1674247216, '__ci_last_regenerate|i:1674247216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca4a97652ed1d4801d80e38f61c98dae5e77507', '170.187.184.242', 1674247216, '__ci_last_regenerate|i:1674247216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40a1541a0e8ea90b883a4ed154e6217a9a38ec6', '170.187.184.242', 1674247216, '__ci_last_regenerate|i:1674247216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd2ef963ee8b7a3b3ee1da341b6520c6f4792b5', '209.141.51.222', 1674248467, '__ci_last_regenerate|i:1674248467;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125ff1535ea25c0ca7412b7c9c74fad516c0e33f', '209.141.36.112', 1674248469, '__ci_last_regenerate|i:1674248469;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383482e30baf6279bb2c2246beab105bb9c7f2e7', '209.141.36.112', 1674248469, '__ci_last_regenerate|i:1674248469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a688a7b27638496a2bd0824a2c63e0f12530ff', '209.141.41.193', 1674248471, '__ci_last_regenerate|i:1674248471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88cb237f7ad6a4d36aa346f5fce549c12fbfd51c', '209.141.35.128', 1674248474, '__ci_last_regenerate|i:1674248474;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1492656ea0e12ac5a9251289ecd95db8f03c7e5', '209.141.49.169', 1674248475, '__ci_last_regenerate|i:1674248475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d518098c4b252eafc27e0a97690c458a40bb81', '31.222.203.2', 1674248829, '__ci_last_regenerate|i:1674248829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b6e7b712edb56e4df117879e85e1fa739668bc', '31.222.203.2', 1674248829, '__ci_last_regenerate|i:1674248829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0155c510157d509cceac3a22cacfbd2c20a458bf', '31.222.203.2', 1674248829, '__ci_last_regenerate|i:1674248829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af94ab296887ccf029096b92d2e60c041887ff0', '31.222.203.2', 1674248831, '__ci_last_regenerate|i:1674248831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('547a4f69ed351522a859b0b94872235474fa721d', '31.222.203.2', 1674248831, '__ci_last_regenerate|i:1674248831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41631a79deb637823a11ea08b21c85db1f1c7205', '31.222.203.2', 1674248831, '__ci_last_regenerate|i:1674248831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c127391b35007b3554b3796da21cc916629c7e28', '31.222.203.2', 1674250633, '__ci_last_regenerate|i:1674250633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b0fc5b906b3013092bef140211718ad943e654', '31.222.203.2', 1674250634, '__ci_last_regenerate|i:1674250634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74dafb9f021805963e24131a686e1ca3d56278f', '31.222.203.2', 1674250634, '__ci_last_regenerate|i:1674250634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4257a5ede767595c974588bf88f0c2440031ce9b', '31.222.203.2', 1674250634, '__ci_last_regenerate|i:1674250634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4ef6a9779c92e79199d52c712081c2104b53a2', '31.222.203.2', 1674250634, '__ci_last_regenerate|i:1674250634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4243f080a932e3b7b8cd01b7c43c6206ff09b5d', '31.222.203.2', 1674250634, '__ci_last_regenerate|i:1674250634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71226dcca5b3fc6d0c7011ea3056b1f0d205fc50', '31.222.203.2', 1674252429, '__ci_last_regenerate|i:1674252429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('715480a2e6a7cb92ebea6f5aefd54fe2ac24a1af', '31.222.203.2', 1674252429, '__ci_last_regenerate|i:1674252429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a91324473dea6b65af2ac305274b5efd6afef13', '31.222.203.2', 1674252429, '__ci_last_regenerate|i:1674252429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c050877a0512ee2519a72a29699f299754f79c8', '31.222.203.2', 1674252430, '__ci_last_regenerate|i:1674252430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99516539009f93abc3b2e54d7e25ced47674b5b4', '31.222.203.2', 1674252430, '__ci_last_regenerate|i:1674252430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02458083a60e06f548ca49439a80505614e8ba66', '31.222.203.2', 1674252430, '__ci_last_regenerate|i:1674252430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c30dd351617965780bb44977fe977db575252f', '172.105.247.100', 1674252608, '__ci_last_regenerate|i:1674252608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380faa600a2866e1e3161705b38efb28708d06d4', '172.105.247.100', 1674252609, '__ci_last_regenerate|i:1674252609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67d3e7e3bb2d223cc3910565761a03759b77f20', '172.105.247.100', 1674252609, '__ci_last_regenerate|i:1674252609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cba2fe8db714d5453c73ad64dfbfa5e6b162a82', '172.105.247.100', 1674252609, '__ci_last_regenerate|i:1674252609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc30bd71c9cdc67daf4b38b2bd6e830ec3dc4e6', '172.105.247.100', 1674252609, '__ci_last_regenerate|i:1674252609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b700672caa9d12336cf2a7a66b9a27963e74e11b', '172.105.247.100', 1674252610, '__ci_last_regenerate|i:1674252610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cccbbc91c1c3e0fd68c3afbe5a84fac07458c2f8', '172.105.247.100', 1674252610, '__ci_last_regenerate|i:1674252610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741f434d6845d909c91cdf1db5f1394be8301947', '172.105.247.100', 1674252610, '__ci_last_regenerate|i:1674252610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb9962224a3bbaeb419efd9384ef92229fd1bc30', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdbf1e1af21318e47342a2c1e4b44dc3108fd7d9', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1597b7211850510373ba5cbd57ad55ba2f967fb5', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a529d6602eddb66259b50d154863541ef595bd28', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d50200c91512d83ddef3aa2a0f90080f169f1fa', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35468fd4ff973169b88dd01af902d2e4e80f97c', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('621a4ce1b047dea74e38b284e5e7fd573c2fca34', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8cc9da2e98187ebe353a85e14d620e311b7c69', '172.105.247.100', 1674252611, '__ci_last_regenerate|i:1674252611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('576c81e19c6b7483fba4dc4c06e75330f7381e18', '172.105.247.100', 1674252612, '__ci_last_regenerate|i:1674252612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e59764b6be20592cdf40bd381146c51a012f50', '172.105.247.100', 1674252612, '__ci_last_regenerate|i:1674252612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364fa3bf762fca01639a48c4725c05f99938a971', '172.105.247.100', 1674252612, '__ci_last_regenerate|i:1674252612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc9f620a790e914674aa6f5da1a8310d15f1cf8', '172.105.247.100', 1674252612, '__ci_last_regenerate|i:1674252612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9360db5dc1b5c7069d9a3f98f7b2dae3e1c6d43c', '172.105.247.100', 1674252613, '__ci_last_regenerate|i:1674252613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014e11316699f18c81c0bf5b012c41b8065900be', '172.105.247.100', 1674252613, '__ci_last_regenerate|i:1674252613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d1203c5d08572dbf5f5469138cbefa1f8fa9e4f', '172.105.247.100', 1674252613, '__ci_last_regenerate|i:1674252613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35332870d1830ee1bed4b72e63f56fdeb55b54ba', '172.105.247.100', 1674252613, '__ci_last_regenerate|i:1674252613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0847baa53a40b5546523c725aa810c9476270929', '198.235.24.44', 1674253265, '__ci_last_regenerate|i:1674253265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3011f62e7f8d66ef56b0abb1b34e2ac7aaf379', '31.222.203.2', 1674254232, '__ci_last_regenerate|i:1674254232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5601f25f2b7620625ea4027df397ad891066b2bb', '31.222.203.2', 1674254232, '__ci_last_regenerate|i:1674254232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccfbfeabe5c018922f388a1cb56e1daefbbc53a5', '31.222.203.2', 1674254232, '__ci_last_regenerate|i:1674254232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34eac4c5dae437cd5dd309233af86a7f19164b3c', '31.222.203.2', 1674254232, '__ci_last_regenerate|i:1674254232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b628ab19ee04b2eec5056f8e7b2b742c10977349', '31.222.203.2', 1674254232, '__ci_last_regenerate|i:1674254232;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e02462d60ad858fc67edd00df57d9c7bcdf444b', '31.222.203.2', 1674254232, '__ci_last_regenerate|i:1674254232;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f322d27280fc545e42f3f390b519cd6eb9a4d6', '31.222.203.2', 1674256030, '__ci_last_regenerate|i:1674256030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5449684af015232d98b2b7e894c25d6f811b5f27', '31.222.203.2', 1674256030, '__ci_last_regenerate|i:1674256030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ccbe7a9e1b684de0fba91f07f3933da766142d', '31.222.203.2', 1674256030, '__ci_last_regenerate|i:1674256030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d0ce79d1caaaee05782188a23b2c8a77bbabab9', '31.222.203.2', 1674256031, '__ci_last_regenerate|i:1674256031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec49518d2fc34e5826fe276a839bdf35d7c92fc4', '31.222.203.2', 1674256031, '__ci_last_regenerate|i:1674256031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60747ca2f3ecd652412daa04160d5ecbc193a811', '31.222.203.2', 1674256031, '__ci_last_regenerate|i:1674256031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d247d0808423ef5743f2a68b50e18b1a2c4a5e00', '3.120.178.249', 1674256914, '__ci_last_regenerate|i:1674256914;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93289838978788613fe3c0f939e31fa54928d69a', '3.120.178.249', 1674256928, '__ci_last_regenerate|i:1674256928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab7cc697cbae0b72288238a0b345fdcb58d54264', '3.120.178.249', 1674256939, '__ci_last_regenerate|i:1674256939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('928e3fb7dd571918fa7ead59687f1a3984deee33', '31.222.203.2', 1674257828, '__ci_last_regenerate|i:1674257828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5acb94b8e30ea07bacfc7c33c09797f06c641b29', '31.222.203.2', 1674257828, '__ci_last_regenerate|i:1674257828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74daca92678162079dae391694ad24a7caf56490', '31.222.203.2', 1674257828, '__ci_last_regenerate|i:1674257828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cc762efb36668fb6c33ee2d63d224edb173bc32', '31.222.203.2', 1674257831, '__ci_last_regenerate|i:1674257831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f210d6ed9cdcb197ee197a8337154052020c544c', '31.222.203.2', 1674257831, '__ci_last_regenerate|i:1674257831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('225b02e699b773c1e2850520fd7219e29f6022e9', '31.222.203.2', 1674257831, '__ci_last_regenerate|i:1674257831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78cfe1eb9b780ca1c06d9837d587558f362c326', '172.105.247.100', 1674258008, '__ci_last_regenerate|i:1674258008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340698e5f95cdece96ab54f9052b1a0abf5fe60d', '172.105.247.100', 1674258008, '__ci_last_regenerate|i:1674258008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6871a8f85b6cf67da2823193173c5c7571b10018', '172.105.247.100', 1674258008, '__ci_last_regenerate|i:1674258008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9a4fc07ac05572a87f1f49bcff13f228dd573d', '172.105.247.100', 1674258009, '__ci_last_regenerate|i:1674258009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ad84f0c054a980a2257dfbdc3149b71e990581', '172.105.247.100', 1674258009, '__ci_last_regenerate|i:1674258009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51cc01d3cb2a22433032fc6de4fea0a3b375788f', '172.105.247.100', 1674258009, '__ci_last_regenerate|i:1674258009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97075bcd135a0b88a80ad3cb1678806b6020a26', '172.105.247.100', 1674258009, '__ci_last_regenerate|i:1674258009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c82fa76df68c56da73db025360bf5507d8661d', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1686f57c094de507e0629899546c8118d82c845d', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e77700986d6d380f9d3a0a19e51c0e118776861', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c9e05fdc3697bd45b94d2b308690f40ca831f2', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec57bd40a5986e6789cc4f7bc87a913e1b6bf412', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a956cbc77a29f7d060de078ff7a01f618e81efb7', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd97f3b4b08611cf66802399bd377869902eab19', '172.105.247.100', 1674258010, '__ci_last_regenerate|i:1674258010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75d808cdc85ee51c07e0bcb69e98b881c7cdf82', '172.105.247.100', 1674258011, '__ci_last_regenerate|i:1674258011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9f55a0937bb37124e05d2806fc5b28a495625f', '172.105.247.100', 1674258011, '__ci_last_regenerate|i:1674258011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5be49c714694a457a767dd558c99f71f214af0b', '172.105.247.100', 1674258011, '__ci_last_regenerate|i:1674258011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8ec3ffffce20c48a52a221f981e62878a59ad1', '172.105.247.100', 1674258011, '__ci_last_regenerate|i:1674258011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c4eb13d171502cee1c27c46f0e55e7a8732195', '172.105.247.100', 1674258011, '__ci_last_regenerate|i:1674258011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ee784f507c40dfd2b4ef82b975ab6ac2f858ac', '172.105.247.100', 1674258011, '__ci_last_regenerate|i:1674258011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e917764bfb2f8a4b95b5bb654d6f8017fddaa1a', '172.105.247.100', 1674258012, '__ci_last_regenerate|i:1674258012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4b574779a1014081be27f5a6b6c56a98fe8d50', '172.105.247.100', 1674258012, '__ci_last_regenerate|i:1674258012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d824a67967f2093a567d24a485a755301ea3bd5', '172.105.247.100', 1674258012, '__ci_last_regenerate|i:1674258012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485da775f37c47498068cf4a13069b48a6bf562d', '172.105.247.100', 1674258013, '__ci_last_regenerate|i:1674258012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91ed3eca8cb72005ad1bcb9e7610ee41ae27d65', '31.222.203.2', 1674259629, '__ci_last_regenerate|i:1674259629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf514f63093cfaca13b832926755902e77eccd5a', '31.222.203.2', 1674259629, '__ci_last_regenerate|i:1674259629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3937f60122dee39c438c8387cccca9e5b1f182', '31.222.203.2', 1674259629, '__ci_last_regenerate|i:1674259629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee61990b21248dfb570ddf008fe476822f5e62f', '31.222.203.2', 1674259631, '__ci_last_regenerate|i:1674259631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0c0d35a500596de6c89bf039e84527f50eff9f', '31.222.203.2', 1674259631, '__ci_last_regenerate|i:1674259631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35acf178984984af5ad48e1503f2ac8187765cb', '31.222.203.2', 1674259631, '__ci_last_regenerate|i:1674259631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6b86300dc7f0e614e61aadca45fc82f7ebe91b', '31.222.203.2', 1674261430, '__ci_last_regenerate|i:1674261430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d4702149123abd7d0b96fe9f8a74bdf5885dee', '31.222.203.2', 1674261431, '__ci_last_regenerate|i:1674261431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3e2733d66c0cfd0091947eaf6af60e66f9ca2b', '31.222.203.2', 1674261431, '__ci_last_regenerate|i:1674261431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c3c46247610f61f9b0b7755f72c4bd01cce804', '31.222.203.2', 1674261431, '__ci_last_regenerate|i:1674261431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cbae88f83bacda5c612d4705e00b84d82c55d7', '31.222.203.2', 1674261431, '__ci_last_regenerate|i:1674261431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4629581e469c0c0bddcb2769282630b1bf402911', '31.222.203.2', 1674261431, '__ci_last_regenerate|i:1674261431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95304a2edc44c73b1637b9e08be4471f4729672b', '31.222.203.2', 1674263227, '__ci_last_regenerate|i:1674263227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8867eede131304e4e25b2b38fc2290c82ef9c28', '31.222.203.2', 1674263227, '__ci_last_regenerate|i:1674263227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab16db4a59212c52e71b6e77c4b8a109acf4090', '31.222.203.2', 1674263227, '__ci_last_regenerate|i:1674263227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8ae13cf2b9fec7ba4cc41c6ac11bdcfbcadb05', '31.222.203.2', 1674263230, '__ci_last_regenerate|i:1674263230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3185ad5e17fbcfd23954371f2cc6218d0c7f281d', '31.222.203.2', 1674263230, '__ci_last_regenerate|i:1674263230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70dbad9452f9cfbf4da59e22057095fa25e8334e', '31.222.203.2', 1674263230, '__ci_last_regenerate|i:1674263230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bcc257217d140d1baecaa9b3393c6db796efec', '172.105.247.100', 1674263411, '__ci_last_regenerate|i:1674263411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637bc687d413e865edfe40cd105b3f35c348b1e7', '172.105.247.100', 1674263411, '__ci_last_regenerate|i:1674263411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df5e69989ce5e93a24a5da2bfd4acfbb9bbba04', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb58ce0189908f5e2a341558afde621b0c91044e', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dde9f3de4de4f5c10e7cef1a27682c46a851e60', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4c69a1cae9cf56494867ca82c6cce0556d05fb', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a00c87d54ca004ca020f8edac6a1a4541ff18b', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b48347001c0245da3a0c11307f8780d6093ee59', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012e7b2cbd31c94ed10b094246907fc95669bdf2', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbeec20327a9b0c71fce9d9c5612e7efae84bd4e', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e3a5b3b6b658839af341540c2c58010df5e3508', '172.105.247.100', 1674263412, '__ci_last_regenerate|i:1674263412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe05093ce6fdbc0826911f8f17ee147f68ab5fd8', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22c2609a4d35bffd95b3d094b6b47f93b701ca5', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05177762713e54be2453f1140aa1081e103e0a06', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd372c9c0c42870cf06d2a45d0f3e75ab0599172', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7eefd4285b97a20d44fefd6b3359d4aba434c3', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e122afb635851615c267b48d2d8a11592ff5f748', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe991380ac8c459f3d18fbfdc6eeb422ecb14ec', '172.105.247.100', 1674263413, '__ci_last_regenerate|i:1674263413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a551ebc4eb8196d1cd1a5fe5f21e02005b00f6', '172.105.247.100', 1674263414, '__ci_last_regenerate|i:1674263413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579bea1499b57c75fc1f20d403d858228ca2df02', '172.105.247.100', 1674263414, '__ci_last_regenerate|i:1674263414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79880df7785c2ddac01f13f713dec3b91f0f47d0', '172.105.247.100', 1674263414, '__ci_last_regenerate|i:1674263414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('237e215e82bbdf87e6ee7501d538318d9fae32b8', '172.105.247.100', 1674263414, '__ci_last_regenerate|i:1674263414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e3097d55ae7ff09dffc40e491c5dba8fbcb2cd', '172.105.247.100', 1674263414, '__ci_last_regenerate|i:1674263414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6c19b4cf435407cff354d146c1e677220c455c', '172.105.247.100', 1674263414, '__ci_last_regenerate|i:1674263414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd1da87a8e8d2e569a1b482ca3ec8a9d22c1451', '31.222.203.2', 1674265030, '__ci_last_regenerate|i:1674265030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e6a4d69b8286c0580d1a0702a0e5a7dffc5cb5f', '31.222.203.2', 1674265030, '__ci_last_regenerate|i:1674265030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9700a7f3d92e660ff473c4bc56f8ef65b8be3d', '31.222.203.2', 1674265030, '__ci_last_regenerate|i:1674265030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bfcec957ffa82da159c7537b48f6ac3db8df72f', '31.222.203.2', 1674265030, '__ci_last_regenerate|i:1674265030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f298b1e96237b4a8b308c1cea8d9d9f819bddd11', '31.222.203.2', 1674265030, '__ci_last_regenerate|i:1674265030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2447c7f9ffb531fa332110bf4b1213de379d31', '31.222.203.2', 1674265030, '__ci_last_regenerate|i:1674265030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f46cb5b11da2a7e742a238e87214539b13087e', '31.222.203.2', 1674266827, '__ci_last_regenerate|i:1674266827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97a7d5b9a811edd39860b554dd17e95dd632bf7', '31.222.203.2', 1674266829, '__ci_last_regenerate|i:1674266829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d11ebd6001d156ad984f180e5bba36f275ca6d5d', '31.222.203.2', 1674266829, '__ci_last_regenerate|i:1674266829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcfaaa09ba25981a76a0ca0efacedc7b1f097ad', '31.222.203.2', 1674266829, '__ci_last_regenerate|i:1674266829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e0608f73470a55e0a33d29a6aee0cb1fbd238b6', '31.222.203.2', 1674266829, '__ci_last_regenerate|i:1674266829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3fe690dc78116e3cb6738f24790a6a8fbd9991a', '31.222.203.2', 1674266829, '__ci_last_regenerate|i:1674266829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e854707c51ee3500c01f8aae8c6de2909cc728dd', '31.222.203.2', 1674268629, '__ci_last_regenerate|i:1674268629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28783439fa2ceeb5ed2ca5a8e07dab88948d0a3e', '31.222.203.2', 1674268629, '__ci_last_regenerate|i:1674268629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4aa974532f01591fc7b8b6da124afd5d26b8e1', '31.222.203.2', 1674268629, '__ci_last_regenerate|i:1674268629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f66d5ed715afba5ece83ed9bfb2f72b3a829ba', '31.222.203.2', 1674268629, '__ci_last_regenerate|i:1674268629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9800454a0a3744056f76ff1ac3873fd2e678d14c', '31.222.203.2', 1674268629, '__ci_last_regenerate|i:1674268629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb32501241438631cc2f1527960b541b043ba91', '31.222.203.2', 1674268629, '__ci_last_regenerate|i:1674268629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1774bcd98c8bfd73848070ab160b8c89fc52e2d0', '172.105.247.100', 1674268810, '__ci_last_regenerate|i:1674268810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40b599c47b770fcf3514a1e880e932a6f07071a', '172.105.247.100', 1674268811, '__ci_last_regenerate|i:1674268810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c492462a6076e884b62fe1ea17d9abc6cb458004', '172.105.247.100', 1674268811, '__ci_last_regenerate|i:1674268811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bb31dee7f360d57cc01be95c809a854b2418957', '172.105.247.100', 1674268811, '__ci_last_regenerate|i:1674268811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41691dae0e51a4d86734d7ab78d022a0cd3bd80a', '172.105.247.100', 1674268811, '__ci_last_regenerate|i:1674268811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94ef9d4686937b1ef5ce0eb6f629a8cd969b4c9', '172.105.247.100', 1674268811, '__ci_last_regenerate|i:1674268811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087a5dfdc17a42e613f2ace159fda6d62d2e4eed', '172.105.247.100', 1674268811, '__ci_last_regenerate|i:1674268811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73af42c48f6f8c7bd4e3b86e1e4441dd8c18681a', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186f50df36498950dcac81712cb6bc758f4f1111', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c24cb5851aa613b492703938b6cc2db2cbc443', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a0b325f87ae82be508fae71d6a987dc68a2c4e8', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c109eb8ef06691c241aa2452b43b309f3f309f', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e067dcc8521b17050ad597149a6ba659d224dd6', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3110392d800f04a8f2586ccb77f5b7a0a6d1ba', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef9c76427d134ef72b0eae1790c2d4e94bfbabe', '172.105.247.100', 1674268812, '__ci_last_regenerate|i:1674268812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467efbb7e6bf92dc2e2139e188980f84bb80ac95', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f235db4cdb226b7542a374c210a0d69d46708cc', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62229301ab0a7555b5000d158c412fc45d67bf72', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0da61a248ec0d4e879d442a0229712398d0f128', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92aba19225bbafc223ad002826e448b22cfeecb9', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f8e41c5d1f38967f1041dae023c08704955b12', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd123435536c0093ff9bd8a6f5cfe3e19f4b47a', '172.105.247.100', 1674268813, '__ci_last_regenerate|i:1674268813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd2f712e91c3f3225c1202543a653559986da5f', '172.105.247.100', 1674268814, '__ci_last_regenerate|i:1674268814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f66734c7a5a7d0e0950052d338b680bc0abaf3', '172.105.247.100', 1674268814, '__ci_last_regenerate|i:1674268814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bad507ba5a9ff0e4fbb3aea7aaad1c75d2cf75', '198.235.24.29', 1674269725, '__ci_last_regenerate|i:1674269725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c0f1583f1b9898b93df29c5124ef7c17d3b815', '31.222.203.2', 1674270435, '__ci_last_regenerate|i:1674270435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2919a84a8826a092615a975ab19445577f765934', '31.222.203.2', 1674270435, '__ci_last_regenerate|i:1674270435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d396428adde0d43366e2604ad98ee1d4794652c', '31.222.203.2', 1674270435, '__ci_last_regenerate|i:1674270435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b3d506d688eaed0732376aec43fbdffde0371a', '31.222.203.2', 1674270437, '__ci_last_regenerate|i:1674270437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9343209416de807ad6d534992d63718205e8da2e', '31.222.203.2', 1674270437, '__ci_last_regenerate|i:1674270437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ccf7540376e901ba61fc312d12abbe65075353b', '31.222.203.2', 1674270437, '__ci_last_regenerate|i:1674270437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('547276ac81e5885fbf0b68bbcc7a64dca75d4088', '184.168.125.241', 1674270632, '__ci_last_regenerate|i:1674270632;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b42fb0025b908a16bc3747d490e4c61218ce59ad', '184.168.125.241', 1674270632, '__ci_last_regenerate|i:1674270632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df9f65a32e5762fabd850c6763de0d08a883ba5', '184.168.125.241', 1674270633, '__ci_last_regenerate|i:1674270633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a165a59ab0debce3cf34702df74ece12092145', '184.168.125.241', 1674270633, '__ci_last_regenerate|i:1674270633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c44af5c416a2c39776a82a616eaee6cee71a1e', '31.222.203.2', 1674272230, '__ci_last_regenerate|i:1674272230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982886662511a9ae36865cb0381807b0986122af', '31.222.203.2', 1674272230, '__ci_last_regenerate|i:1674272230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47c0c274a132032c761ff35133636f56935287d', '31.222.203.2', 1674272230, '__ci_last_regenerate|i:1674272230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d727c1973580b59f38544651be06c0ffee5497', '31.222.203.2', 1674272231, '__ci_last_regenerate|i:1674272231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04a03a5c5f51c1959b80c7a57c170e27ad5f6b28', '31.222.203.2', 1674272231, '__ci_last_regenerate|i:1674272231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d23b0f4a222fa19dfc483659dd8098e0f6b8975', '31.222.203.2', 1674272231, '__ci_last_regenerate|i:1674272231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e46f10572513f75b30c99456c06275ca49cf3f5c', '31.222.203.2', 1674274029, '__ci_last_regenerate|i:1674274029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb66c9530762682b6554a7b14b43c0a4e0f27f7', '31.222.203.2', 1674274029, '__ci_last_regenerate|i:1674274029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7130e67b00bd28a7ce24347d030a0c7fd3356a', '31.222.203.2', 1674274029, '__ci_last_regenerate|i:1674274029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f372973749d6776ba0b33551a22a17fdda5d1324', '31.222.203.2', 1674274029, '__ci_last_regenerate|i:1674274029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e32bc05f23fcfc42b7a8f184d675488c80d45b30', '31.222.203.2', 1674274029, '__ci_last_regenerate|i:1674274029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcae60f9341a65ddf124de2f0fd6aa483c30d00e', '31.222.203.2', 1674274029, '__ci_last_regenerate|i:1674274029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4dada1a31bcbfb08374df2e6c588aabc99fdf0', '172.105.247.100', 1674274812, '__ci_last_regenerate|i:1674274812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923c1a89e329254bef1a519fd78a180e6d8996ac', '172.105.247.100', 1674274813, '__ci_last_regenerate|i:1674274813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('572f7cd134e2b5d57290c86a2d1b2b96ee0e0ff4', '172.105.247.100', 1674274813, '__ci_last_regenerate|i:1674274813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54c2c1a9589e232098ad27b2f4c131599add1f7', '172.105.247.100', 1674274813, '__ci_last_regenerate|i:1674274813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('effb2222dd13cfc6c494aece81674ae91e27442e', '172.105.247.100', 1674274813, '__ci_last_regenerate|i:1674274813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4796e899fead795beb900085b95ed77e692d26', '172.105.247.100', 1674274814, '__ci_last_regenerate|i:1674274813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f4db52efc67ff8a7b1f6ee36b275d7883ff1c4', '172.105.247.100', 1674274814, '__ci_last_regenerate|i:1674274814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0882ec69059f91857c9a692bc088fd2ab2a417b2', '172.105.247.100', 1674274814, '__ci_last_regenerate|i:1674274814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0df07b8a9c34c47a43da2a64965ad347c7d1518', '172.105.247.100', 1674274814, '__ci_last_regenerate|i:1674274814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1642a982799666a94f1c5dc28837453c752c77', '172.105.247.100', 1674274814, '__ci_last_regenerate|i:1674274814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da784a72ca9990e99c007f146542ba03b2c66ba', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d3e72c047281317aef1e7e20eee92b11a6bce5', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69db380412e4b0aebe2c6f041304843df752304b', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9cdffe39d80c2341fcc9bfba1ab68d4d84f4c2a', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daae0dc1a2e1c9d3227aaa10f981ae62657c10be', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e965053f8ed573312c06e876739a062c32ed99f3', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f416391e2f5e9535892b01a0444cac473fe8d8e', '172.105.247.100', 1674274815, '__ci_last_regenerate|i:1674274815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0898e3694724fe6e8100a7e2d14ea021fe317159', '172.105.247.100', 1674274816, '__ci_last_regenerate|i:1674274815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4be8a349987c3039465965ef2d61ea0df1b7e0', '172.105.247.100', 1674274816, '__ci_last_regenerate|i:1674274816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec564872cd6ba685908f6d2629779b44bd5a49f8', '172.105.247.100', 1674274816, '__ci_last_regenerate|i:1674274816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21db9d890abbc6a44d3c5d237b31a85e2e36e515', '172.105.247.100', 1674274816, '__ci_last_regenerate|i:1674274816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e099eeedc2d4b33bd22c176d613c4b9a8e3a75e', '172.105.247.100', 1674274817, '__ci_last_regenerate|i:1674274817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471795f0631f4841b83256b6100e22a594af4fb7', '172.105.247.100', 1674274817, '__ci_last_regenerate|i:1674274817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4fbb4fae4e777c2c9ff67fa6454ff7f75de8d49', '172.105.247.100', 1674274817, '__ci_last_regenerate|i:1674274817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9caa3b353a1d7f983d73d79ba6dbf699ee2a7d13', '31.222.203.2', 1674275830, '__ci_last_regenerate|i:1674275830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c7abcbaf8fc0ae6da110ce6fcd01efa6895e07', '31.222.203.2', 1674275830, '__ci_last_regenerate|i:1674275830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8915e3893b821f44c16c08a089fe732c16d4ac5', '31.222.203.2', 1674275830, '__ci_last_regenerate|i:1674275830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('999a0165418ea0daa687066f42201731b35c6f8d', '31.222.203.2', 1674275832, '__ci_last_regenerate|i:1674275832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4859f4cd1b08528873f9fa0218cc38cad0516dc7', '31.222.203.2', 1674275832, '__ci_last_regenerate|i:1674275832;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2cb8101b4a0cf025bfcb9c1cc95ba1fdc96efd1', '31.222.203.2', 1674275832, '__ci_last_regenerate|i:1674275832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b11843a80d9098c852fe3ea00e47483e1ba1c5', '37.111.219.237', 1674278969, '__ci_last_regenerate|i:1674278969;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674277181;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dad87a4a0e7b81b51c31f248ac17cb3e8f452e9', '31.222.203.2', 1674277627, '__ci_last_regenerate|i:1674277627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45030bfaf5a0991260be8500987deaad596bb1e0', '31.222.203.2', 1674277627, '__ci_last_regenerate|i:1674277627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273f75b2a288052c9808e505113e1a38a25a13a5', '31.222.203.2', 1674277627, '__ci_last_regenerate|i:1674277627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59670309cab6c38e18be0bfa3010cb670fd2d49f', '31.222.203.2', 1674277627, '__ci_last_regenerate|i:1674277627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2529c7ea47f058903bf8a5542d4a71d6c03573fd', '31.222.203.2', 1674277627, '__ci_last_regenerate|i:1674277627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b431b02b31b7e3d25e24904176d8ed097124fe6', '31.222.203.2', 1674277627, '__ci_last_regenerate|i:1674277627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d2a8a12ccfd34fe5f31f5918c16d2820998481', '37.111.219.237', 1674279271, '__ci_last_regenerate|i:1674279271;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674278975;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108060a7d05b3932c668428c3a9bf3573c7e28e2', '37.111.219.237', 1674280814, '__ci_last_regenerate|i:1674280814;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674279382;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26b2957cd15b92e7397bc159963aa8f2daa1708d', '31.222.203.2', 1674279425, '__ci_last_regenerate|i:1674279425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b391ff6aad4bb9ada1a537481636920750de2a97', '31.222.203.2', 1674279425, '__ci_last_regenerate|i:1674279425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201b47dbbb43f228c7c14eed4e0c62dec5059d2d', '31.222.203.2', 1674279425, '__ci_last_regenerate|i:1674279425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4037afa71342336e841276303abf27bc687c4df', '31.222.203.2', 1674279428, '__ci_last_regenerate|i:1674279428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749738ec5f8656552fe38a0470f879239441b6a1', '31.222.203.2', 1674279428, '__ci_last_regenerate|i:1674279428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cfb9ef3033d89b3efd855d3404d8a6dcacc8f75', '31.222.203.2', 1674279428, '__ci_last_regenerate|i:1674279428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7f81ab5d9462e2845c25e9f3465377c335c481', '172.105.247.100', 1674279609, '__ci_last_regenerate|i:1674279609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6427192f6bfff3d2d1974c894d42261e8af9d180', '172.105.247.100', 1674279610, '__ci_last_regenerate|i:1674279610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca07f10e9e427c3853850fc9a10e73c0e2782e6', '172.105.247.100', 1674279610, '__ci_last_regenerate|i:1674279610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5872a5804eb4b78e5e2f7449999f783f9a6fcb69', '172.105.247.100', 1674279610, '__ci_last_regenerate|i:1674279610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46792d3f302efb8c22e0913d8cb9a94d6c390b38', '172.105.247.100', 1674279610, '__ci_last_regenerate|i:1674279610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b7a7da432d6e6f45a5d87dbd12799109abbbe4d', '172.105.247.100', 1674279610, '__ci_last_regenerate|i:1674279610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a06a38216a51c1b332f7f882dabab09fb0b3119', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9f33252defeb5112162c6a473ea666ecfb0899', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3d349c860f601550f9e4a2800c598012861770', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aef2b32c97f063aad16af37544776d4611da242', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('553a73cb894cc16f2405490ada7c45e272c9894b', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f2180a9e6bf647f2d8d12ed2f72ef8831195e4', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7568882667d57e09ff7debcba5afb677d56b759', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2bf7f774f3569f4fcd215566f5be62b39803c2d', '172.105.247.100', 1674279611, '__ci_last_regenerate|i:1674279611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d96a6da62d560e08069ee1e1e6c343c8791d5d44', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df10b0057d3a3a9d19ccaec519c2b04331455720', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9646ba262908b02fa9c38014943972614bff1d04', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e7c98742976c721608bef8f284f129040e0b8c', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637dde367536fda9633d0bad2c35b69490930d36', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d31486b8ed2979127af37a8ab390de48672eabc6', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8977cc99f702434874b10d1d05708176fe090aa', '172.105.247.100', 1674279612, '__ci_last_regenerate|i:1674279612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e3ec8d031b78210e8cb5b5f2b1f6eea9d437af', '172.105.247.100', 1674279613, '__ci_last_regenerate|i:1674279613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f06b0760e0e358362f5611e131dba2afd07ce5b', '172.105.247.100', 1674279613, '__ci_last_regenerate|i:1674279613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f33b04c7f4ee97ee2d883fee64c2a52ac2af7cc', '172.105.247.100', 1674279613, '__ci_last_regenerate|i:1674279613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77800e2ca3748c042262dbe3c440ada107a6b6f9', '37.111.219.237', 1674283601, '__ci_last_regenerate|i:1674283601;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674280827;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e2cd62ab684bfbf611ec1e5c41fb1e811f28c3', '205.210.31.43', 1674280877, '__ci_last_regenerate|i:1674280877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a0d05468e70d98d0dc855dd05edf6e16f18940', '205.210.31.43', 1674280878, '__ci_last_regenerate|i:1674280878;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50cf638cd7c74e96c9803cb03ae18d88294fd300', '205.210.31.43', 1674280879, '__ci_last_regenerate|i:1674280879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948a05e77c5799267d5d557c8a63bf897845f988', '31.222.203.2', 1674281227, '__ci_last_regenerate|i:1674281227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f6877aec54e27f9493520f3f44583d1bd37d70', '31.222.203.2', 1674281228, '__ci_last_regenerate|i:1674281228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7e823a2e416c9025308e7ad4ea9b73fb1913b1', '31.222.203.2', 1674281228, '__ci_last_regenerate|i:1674281228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d4f2cc378e81b1a98cd9199295570e9b2c0009b', '31.222.203.2', 1674281228, '__ci_last_regenerate|i:1674281228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ce9ccca49df94581e4cff3ea8a379238806464', '31.222.203.2', 1674281228, '__ci_last_regenerate|i:1674281228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3c7b30e1df2257addade45177bda6e8d971b2b', '31.222.203.2', 1674281228, '__ci_last_regenerate|i:1674281228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af5f580d2920a66f9beae49ba7959b2e1831906', '31.222.203.2', 1674283027, '__ci_last_regenerate|i:1674283027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b724358055efaa947878a411883cb1db1122ff', '31.222.203.2', 1674283027, '__ci_last_regenerate|i:1674283027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0247c485a0abad59e00e059a3e58a60accd23893', '31.222.203.2', 1674283027, '__ci_last_regenerate|i:1674283027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d0bf93a3bded66af65b8d10635281d537deda7', '31.222.203.2', 1674283028, '__ci_last_regenerate|i:1674283028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9ba7f32d9fa40f80c8282cb2b75bff1200e53a', '31.222.203.2', 1674283028, '__ci_last_regenerate|i:1674283028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2192fbb777ae0b68b6c118c78a5a0057e3fd5ab', '31.222.203.2', 1674283028, '__ci_last_regenerate|i:1674283028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd70b105de65bd485c8e81795e3b03cd08f88bd', '162.142.125.220', 1674283415, '__ci_last_regenerate|i:1674283415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ce3b8720d187c01155b94bf563fc611fcf94e9', '162.142.125.220', 1674283415, '__ci_last_regenerate|i:1674283415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d23ecade5ff68ad8d2983ac8e0b6d7f14f3ea334', '162.142.125.220', 1674283416, '__ci_last_regenerate|i:1674283416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66b708b0cede6f87594ea3dc59aaeb31a9f118d', '162.142.125.220', 1674283416, '__ci_last_regenerate|i:1674283416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b141b31d4207a82c69d8419bda51ef725558d633', '162.142.125.220', 1674283416, '__ci_last_regenerate|i:1674283416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1e501b3f8170e592c94c6c254cd3f7d6bf134d', '162.142.125.220', 1674283416, '__ci_last_regenerate|i:1674283416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb641c7ed23fcc4c47e733a37be5af9bd8ce0906', '37.111.219.237', 1674290869, '__ci_last_regenerate|i:1674290869;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674290844;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d49556d9be58f0f70ed88b18fb7ef2836c836e5', '31.222.203.2', 1674284825, '__ci_last_regenerate|i:1674284825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6a60da6e02d415340454af859fbd9fa15ce7b9', '31.222.203.2', 1674284825, '__ci_last_regenerate|i:1674284825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56adb27e3bc575e412b8564be6e347ee8ca1ae2a', '31.222.203.2', 1674284825, '__ci_last_regenerate|i:1674284825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ddf49f0fb9f49ebf1c07a9d89ef134c090e600', '31.222.203.2', 1674284826, '__ci_last_regenerate|i:1674284826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a0ffd18cdd65d841728d241454d4d7bee927161', '31.222.203.2', 1674284826, '__ci_last_regenerate|i:1674284826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3cfd684edf7e2e3351b2e41e4454cd71f2334c3', '31.222.203.2', 1674284826, '__ci_last_regenerate|i:1674284826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3929a814d8f9e7495f4dfd1b9ba1b0eb31e3c054', '172.105.247.100', 1674285009, '__ci_last_regenerate|i:1674285009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3213e8ef66db1c6c8a2343c496a21a070b2a1465', '172.105.247.100', 1674285009, '__ci_last_regenerate|i:1674285009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa544824b96fdc00795ebb4c70b13f8457ac093b', '172.105.247.100', 1674285009, '__ci_last_regenerate|i:1674285009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2730e7c33806c88f315d66609cdbacd2ed1f8678', '172.105.247.100', 1674285009, '__ci_last_regenerate|i:1674285009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7eea1861020c9a26cc8b5f3fe78b9dd26d92d9', '172.105.247.100', 1674285009, '__ci_last_regenerate|i:1674285009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435fff9fa964467d034edc7dec209df4474ee135', '172.105.247.100', 1674285009, '__ci_last_regenerate|i:1674285009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33bf56612d6d961fbdd6525969f40a29e84e693c', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fe5451d283ceec75cf21b7f79d63adb37995c5', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('187e32755fc661b1e81ee81072bc7f5ac014dce3', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd28eab6a11e29d572b5b9cc77507e3946011a6', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57054982caff49ecf9f342a6e9d5862eb0527a28', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beeaf8df01baf3ee973f24e54ea8f6d3e07a73cf', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb785d90a5151e1b48b93c7bae73dfe6c1dccdc0', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e897b6ab5a57cb642cf4f68bd82a8a1c529f950', '172.105.247.100', 1674285010, '__ci_last_regenerate|i:1674285010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('860aed17f08998c29151a1391f4f0ea02d20824c', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef667468fb0572455b53ef055bc3d837280a28d', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188721fa32817df0fdcbe4cfc921986e5191edf7', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d675ef43ec4ace2e564d19b4fdbc4031c68c97ec', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d69a70df2a5d2fc340873da110a29e7ac5c3337', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539ab313ec75ad2539763c31f7de92d366f7eb04', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8db35c9447ae242d36af44a220c69d59c550035', '172.105.247.100', 1674285011, '__ci_last_regenerate|i:1674285011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2a3321651e02deaa24056319b696c8eddc1628', '172.105.247.100', 1674285012, '__ci_last_regenerate|i:1674285012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('582a9d1b491448f92b8dbf7349249ab959b6a1ff', '172.105.247.100', 1674285012, '__ci_last_regenerate|i:1674285012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9168bbbaacb23b9a3da5d08a817f3fc21eee8ba0', '172.105.247.100', 1674285012, '__ci_last_regenerate|i:1674285012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f9affcfd27c80877cffed26cc0f0e52117f32e', '31.222.203.2', 1674286626, '__ci_last_regenerate|i:1674286626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733aae9a0949cd6448cb5243c6b70d9b976e4bee', '31.222.203.2', 1674286626, '__ci_last_regenerate|i:1674286626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c9c831d4ff3e5b970bcd8a908e79ff64d8d41b', '31.222.203.2', 1674286626, '__ci_last_regenerate|i:1674286626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a83a13bb426db6512cfd52d168415d352acdc0', '31.222.203.2', 1674286628, '__ci_last_regenerate|i:1674286628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68398624e046ad1cda3591166ccbf2c658cdb1a0', '31.222.203.2', 1674286628, '__ci_last_regenerate|i:1674286628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db714ad1c09b570d54edb9dfb4039de465be9a9', '31.222.203.2', 1674286628, '__ci_last_regenerate|i:1674286628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced3563db655fd9ef5470a2d3ea8243e4c8febc1', '31.222.203.2', 1674288126, '__ci_last_regenerate|i:1674288126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2309016de2502c891f21345340c3d5b203c689b5', '31.222.203.2', 1674288126, '__ci_last_regenerate|i:1674288126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710e0df16f3e881873b76e6c22e8d487528c4e7b', '31.222.203.2', 1674288126, '__ci_last_regenerate|i:1674288126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e35ab4aba0925432af55e50c1774a1f9876ff8', '31.222.203.2', 1674288128, '__ci_last_regenerate|i:1674288128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f6892032a73070c3fdfc7f5d51130fae40b9ac', '31.222.203.2', 1674288128, '__ci_last_regenerate|i:1674288128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('464163c441579f48819be1b66766806174eee24d', '31.222.203.2', 1674288128, '__ci_last_regenerate|i:1674288128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692e3df0f7114fd8c20d706e552464376c469f60', '198.235.24.134', 1674289341, '__ci_last_regenerate|i:1674289341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c964ca77bf053cc8117a9126f3b2bf29a80f48', '198.235.24.134', 1674289341, '__ci_last_regenerate|i:1674289341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc425575dabaa0e19cd9f1862dac919b249438a', '198.235.24.134', 1674289341, '__ci_last_regenerate|i:1674289341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5772030f45e52a589e3927570c85046a76901df0', '31.222.203.2', 1674289929, '__ci_last_regenerate|i:1674289929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a00afa1ac89c78d22aa34c68c0ace241e007c22', '31.222.203.2', 1674289929, '__ci_last_regenerate|i:1674289929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6a3ae7e5ed6c28b47d6c06f2d252cecb63b0a63', '31.222.203.2', 1674289929, '__ci_last_regenerate|i:1674289929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b576519996667e2b9e06b8bc3784511e965e046a', '31.222.203.2', 1674289929, '__ci_last_regenerate|i:1674289929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e2629b636ad90f4cd4080352fcbde5c86da173', '31.222.203.2', 1674289929, '__ci_last_regenerate|i:1674289929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735492cb07868f9f5735db8efbb0d6f9417271ab', '31.222.203.2', 1674289929, '__ci_last_regenerate|i:1674289929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e7899300df044ccc28da566671dc03e4c144c3', '172.105.247.100', 1674290408, '__ci_last_regenerate|i:1674290408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6f3434a207541e0564bb55b52ae7eae0468b26', '172.105.247.100', 1674290408, '__ci_last_regenerate|i:1674290408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec44a4562851c69de1afd6f1d014ed00c3dfc65', '172.105.247.100', 1674290408, '__ci_last_regenerate|i:1674290408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91a1bb2d0a11fd5b7f7ae24ac834b8e2b0d3e6e', '172.105.247.100', 1674290409, '__ci_last_regenerate|i:1674290409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495e16ced55e6c015676a936e7e607108e4b1e39', '172.105.247.100', 1674290409, '__ci_last_regenerate|i:1674290409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b89915980cba875229fa749a1aaccdf5a1a1be8', '172.105.247.100', 1674290409, '__ci_last_regenerate|i:1674290409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac88aafe1c7dab5b23c886456bb5ac37c7608a82', '172.105.247.100', 1674290409, '__ci_last_regenerate|i:1674290409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1460b95b9c5359810979bfcda2110d6bf313b9e2', '172.105.247.100', 1674290409, '__ci_last_regenerate|i:1674290409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc2d5c58a654d3d83c17cfa332604b5e093de78e', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006d40c45ae796d3800c9415ede615fa66149191', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8552e39c70e6f63ed58ddd69c309662330e2cb6', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa7d21c9d5e65e85beae84369a15ae39d0d7506', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0fed253f4a759c04d65c478b574697e697e5ee', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3f8d42824d061c3c843261d0f3d3272a358faa', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396e6b2bf8b62c45fc415b72648227862044c8a7', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0be395303891ff23723f6621fd03ab6a2ea3664', '172.105.247.100', 1674290410, '__ci_last_regenerate|i:1674290410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd4a280c81222820c8062639e87b250b752f959', '172.105.247.100', 1674290411, '__ci_last_regenerate|i:1674290411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084f34c46f0575f6149f822be29bd833137982eb', '172.105.247.100', 1674290411, '__ci_last_regenerate|i:1674290411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0cc6dc442fbe0d21777dbf58a04fca66809dec', '172.105.247.100', 1674290411, '__ci_last_regenerate|i:1674290411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6da00feae43b2bc8d946a976462d9c2d90c446d', '172.105.247.100', 1674290411, '__ci_last_regenerate|i:1674290411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f538fc9a36ae608fb0240b9058375416d5282c4e', '172.105.247.100', 1674290412, '__ci_last_regenerate|i:1674290412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf783b5764f2a3442f179cf6fb9cf183350cfb99', '172.105.247.100', 1674290412, '__ci_last_regenerate|i:1674290412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6e585a890bd6d80e4a340fe870819aad88c694c', '172.105.247.100', 1674290412, '__ci_last_regenerate|i:1674290412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa34288c5ee0d59fe1f1dbbcd4699b50ecc4584', '172.105.247.100', 1674290412, '__ci_last_regenerate|i:1674290412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f19aafce510ae918b2141d592375f9af006cd5', '37.111.219.237', 1674291863, '__ci_last_regenerate|i:1674291863;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674290875;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033d2824869b4405cd26f471c3a39ad52c9928f7', '31.222.203.2', 1674291725, '__ci_last_regenerate|i:1674291725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2d19dbc419212d157b6b4500517274418a1263', '31.222.203.2', 1674291725, '__ci_last_regenerate|i:1674291725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71732ba28abc49f5963dcd918cd183e05c71a1aa', '31.222.203.2', 1674291725, '__ci_last_regenerate|i:1674291725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d09c7df303ec70be15f994587bf97bcada2d804', '31.222.203.2', 1674291725, '__ci_last_regenerate|i:1674291725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c93982b3f7eeb2208ab8870c4489bf39314ed944', '31.222.203.2', 1674291725, '__ci_last_regenerate|i:1674291725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d39b431c849678480a104f92a8ab1c4aabb4a2ce', '31.222.203.2', 1674291725, '__ci_last_regenerate|i:1674291725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8077d19abfa9e9807ef52b6c76e20d9f0985fdfb', '37.111.219.237', 1674294879, '__ci_last_regenerate|i:1674294879;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674291963;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ebb4c1dbd26e085f1ef29e9b4c73b49a801b7d7', '31.222.203.2', 1674293533, '__ci_last_regenerate|i:1674293533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99588c21a6fed35056bcda3f0fc8be5c9a0ff018', '31.222.203.2', 1674293533, '__ci_last_regenerate|i:1674293533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06d3cc7f76df8120455928057215369fd817cfb', '31.222.203.2', 1674293533, '__ci_last_regenerate|i:1674293533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedadcd390bfee459c9a822dcf93cf2a341e9d3c', '31.222.203.2', 1674293533, '__ci_last_regenerate|i:1674293533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b61a79e595728ce5faf119c9d079762ef21a09d', '31.222.203.2', 1674293533, '__ci_last_regenerate|i:1674293533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a837523b14263ef4e905eeb75516c16149debd5', '31.222.203.2', 1674293533, '__ci_last_regenerate|i:1674293533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b31a8cff677ca8539a0a24f8d6ec78f8297415', '37.111.219.237', 1674298242, '__ci_last_regenerate|i:1674298242;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674294959;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048feaac7f1a1f12fc1c7cc9bb3239c673083a58', '116.204.230.18', 1674295451, '__ci_last_regenerate|i:1674295451;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de351a177adac6be2922167b1bf95bf086be257', '31.222.203.2', 1674295327, '__ci_last_regenerate|i:1674295327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b124ef738e8d3de86e8b57a9b096f9b412d0b67', '31.222.203.2', 1674295327, '__ci_last_regenerate|i:1674295327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c61af7086373b8f6a5f7e2ad0e3d5bbbcac130b', '31.222.203.2', 1674295327, '__ci_last_regenerate|i:1674295327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4045ce032870b774f6ad46b7ebdbdc17a1d3814', '31.222.203.2', 1674295329, '__ci_last_regenerate|i:1674295329;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4148d29e6b4a01b76135743602498f302fbb705f', '31.222.203.2', 1674295329, '__ci_last_regenerate|i:1674295329;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bfd5c8d97238f3ba58227239e1ef9acda2e529', '31.222.203.2', 1674295330, '__ci_last_regenerate|i:1674295330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96792543a191bd9d2f82568cd44f4602a08f9353', '116.204.230.18', 1674296170, '__ci_last_regenerate|i:1674296170;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f22dc9bb0af88cf34e9b24ddc23d35344bf5226', '172.105.247.100', 1674295808, '__ci_last_regenerate|i:1674295808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f528dff738f70e22a44a3cfadb02d9a6ff87ad4f', '172.105.247.100', 1674295809, '__ci_last_regenerate|i:1674295808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9a745614b17dc262644b0a05b51282389b624b', '172.105.247.100', 1674295809, '__ci_last_regenerate|i:1674295809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446a87e6d8dde73ea656ed2eef92252b0532a1fa', '172.105.247.100', 1674295809, '__ci_last_regenerate|i:1674295809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1bafefe752688c455f15790875624aa892e6413', '172.105.247.100', 1674295809, '__ci_last_regenerate|i:1674295809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6721c87ca4843382e4166472fb0ca45f9b939f33', '172.105.247.100', 1674295809, '__ci_last_regenerate|i:1674295809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d8cc5d22178f1973bab07556d8ffe82636f268', '172.105.247.100', 1674295810, '__ci_last_regenerate|i:1674295810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2e9f887578d6e721a18cd0d4f12955fdc28e5b', '172.105.247.100', 1674295810, '__ci_last_regenerate|i:1674295810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e778c322fb198f73181c71a0e541f187fb7c5d39', '172.105.247.100', 1674295810, '__ci_last_regenerate|i:1674295810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec7f4e6d4bb831b1717791a688b4895687c5eb91', '172.105.247.100', 1674295810, '__ci_last_regenerate|i:1674295810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42c4181f7f8a875f621ba99605d63b7d3ecac9d', '172.105.247.100', 1674295810, '__ci_last_regenerate|i:1674295810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29532e099cc43fbb45a9b53f2d267e1dd2c98a9d', '172.105.247.100', 1674295810, '__ci_last_regenerate|i:1674295810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73603c59b47a0ca51efea68661f00aa977654b72', '172.105.247.100', 1674295811, '__ci_last_regenerate|i:1674295811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b65755725742b0bf3140ece61980885f5479ce', '172.105.247.100', 1674295811, '__ci_last_regenerate|i:1674295811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380805d666cd9ac0be136ffd438a6f8e4404d0a0', '172.105.247.100', 1674295811, '__ci_last_regenerate|i:1674295811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e96350b5a648c9e863db9960281316a35823852', '172.105.247.100', 1674295811, '__ci_last_regenerate|i:1674295811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5e04d61e7912b7539893147e7492fade751a4f', '172.105.247.100', 1674295811, '__ci_last_regenerate|i:1674295811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab06cba596330e47747b1cea5fb6c3615b101497', '172.105.247.100', 1674295811, '__ci_last_regenerate|i:1674295811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f994262499287ec5cbc4adb40745291d458939e3', '172.105.247.100', 1674295812, '__ci_last_regenerate|i:1674295812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4faad744a372a5b53472d82aa19bb4d172f6350', '172.105.247.100', 1674295812, '__ci_last_regenerate|i:1674295812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b24a2e69d7321ba07133ebf5365edc373f8661', '172.105.247.100', 1674295812, '__ci_last_regenerate|i:1674295812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4c8214e5108824756571ee0cd57eeaf85789c1', '172.105.247.100', 1674295812, '__ci_last_regenerate|i:1674295812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9055f9e591830abb6badaee1b4960c616344c27f', '172.105.247.100', 1674295813, '__ci_last_regenerate|i:1674295813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d903983a58ec8bf162d11acc3c8ddab07c67613', '172.105.247.100', 1674295813, '__ci_last_regenerate|i:1674295813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f034711ce9395e40c8f2bee4bf07fbada0b95a', '116.204.230.18', 1674295841, '__ci_last_regenerate|i:1674295814;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564b8f74c2631ac07352e3049bf0d8d30272cb2d', '116.204.230.18', 1674296517, '__ci_last_regenerate|i:1674296517;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e58fd616080b302f671294a687a6c2f415aa273', '116.204.230.18', 1674296860, '__ci_last_regenerate|i:1674296860;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f00faaa8ca6d450faec5e3daf2ab34a5c2f28c08', '116.204.230.18', 1674297222, '__ci_last_regenerate|i:1674297222;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0fbcd251f12cb82699355d3be84297e28f8e22', '31.222.203.2', 1674297125, '__ci_last_regenerate|i:1674297125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98591c7fd6f777b0bb6217bfa0ef59989b7805a9', '31.222.203.2', 1674297125, '__ci_last_regenerate|i:1674297125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c9c28d2039cc0c2dc18f3b183a723ffb598bfb', '31.222.203.2', 1674297125, '__ci_last_regenerate|i:1674297125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7645d9f355d9296a6cc668ca36079a48863003fc', '31.222.203.2', 1674297126, '__ci_last_regenerate|i:1674297126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7532dec3ea821c8e46d481442f63d15b9b7d32', '31.222.203.2', 1674297126, '__ci_last_regenerate|i:1674297126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('170d4f456f9943e46ef46cd68f2ce81cc5697594', '31.222.203.2', 1674297126, '__ci_last_regenerate|i:1674297126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d4f3356448f5725687439d6f69f10cecfbc647e', '116.204.230.18', 1674299331, '__ci_last_regenerate|i:1674299331;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f943bb93ede30f45d8f2ae6c6bad3fac96ea84a', '116.204.230.18', 1674297603, '__ci_last_regenerate|i:1674297603;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be873622e6e22950393dcaed7350b0fd707a433b', '37.111.219.237', 1674298750, '__ci_last_regenerate|i:1674298750;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674298688;register_id|s:3:\"291\";cash_in_hand|s:8:\"400.0000\";register_open_time|s:19:\"2022-12-25 21:28:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de702ec55d42f3377991a19e0e9731a9444954c', '37.111.219.237', 1674299178, '__ci_last_regenerate|i:1674299178;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674298975;register_id|s:3:\"292\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2023-01-21 17:00:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7f0184fad43cc160360fa87ceec1168fc7d094', '31.222.203.2', 1674298929, '__ci_last_regenerate|i:1674298929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65d88d350bdb4a8394cf96e9303fea26e862a38', '31.222.203.2', 1674298929, '__ci_last_regenerate|i:1674298929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed948cb4ef7925abf67e26daed6bc4fda9fa43a9', '31.222.203.2', 1674298929, '__ci_last_regenerate|i:1674298929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1375f97657e42e4132de6e25730fb2cbf5bf16e4', '31.222.203.2', 1674298931, '__ci_last_regenerate|i:1674298931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f34c34960d8f7aac7d019cc9d64ed16445dd43', '31.222.203.2', 1674298931, '__ci_last_regenerate|i:1674298931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289499053486120ab9a4e096852fab9521838688', '31.222.203.2', 1674298931, '__ci_last_regenerate|i:1674298931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef24115092762d8b3280d84ff2eb407e60dd4b5c', '37.111.219.237', 1674299647, '__ci_last_regenerate|i:1674299647;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674299639;register_id|s:3:\"292\";cash_in_hand|s:8:\"300.0000\";register_open_time|s:19:\"2023-01-21 17:00:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d027adf9d042fe1161c28b3581b4aa5d6a43be', '116.204.230.18', 1674299828, '__ci_last_regenerate|i:1674299828;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JurHzAfQiy865q7SINvt\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a763b8e0f0e55208372e6534eb6a833e06cf783', '37.111.219.237', 1674300156, '__ci_last_regenerate|i:1674300156;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674299887;register_id|s:3:\"293\";cash_in_hand|s:8:\"740.0000\";register_open_time|s:19:\"2023-01-21 17:14:23\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8c23ba521fdb66578552b5cebacc9708d777b6', '116.204.230.18', 1674300175, '__ci_last_regenerate|i:1674300175;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"Ww9jq3ypcU7zfJYgXGPB\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afd15e547426aacce95f183dd2b45db6669a35f', '37.111.219.237', 1674300457, '__ci_last_regenerate|i:1674300457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674300357;register_id|s:3:\"293\";cash_in_hand|s:8:\"740.0000\";register_open_time|s:19:\"2023-01-21 17:14:23\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0dc55b5629883048b04eece8089fb63f7a638e', '116.204.230.18', 1674301042, '__ci_last_regenerate|i:1674301042;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"Ww9jq3ypcU7zfJYgXGPB\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aedb4cef529d579e093ce465d24e7f5baa70304f', '37.111.219.237', 1674300816, '__ci_last_regenerate|i:1674300816;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674300793;register_id|s:3:\"293\";cash_in_hand|s:8:\"740.0000\";register_open_time|s:19:\"2023-01-21 17:14:23\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142e116baf4317b84bf42d113578ee9705395512', '172.105.247.100', 1674300610, '__ci_last_regenerate|i:1674300610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b1c9077e48d9f3475dbc42c608b338407ae70e', '172.105.247.100', 1674300612, '__ci_last_regenerate|i:1674300612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef573c1e9c481c7f9aaeee2707a73ce30eb04cda', '172.105.247.100', 1674300612, '__ci_last_regenerate|i:1674300612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ff574732ad2fc7df0cf2de83dcff4221a86327', '172.105.247.100', 1674300613, '__ci_last_regenerate|i:1674300613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4258bd204f7024e5085155a394422816fe3d2098', '172.105.247.100', 1674300613, '__ci_last_regenerate|i:1674300613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00138c532771934131e86daed704622238696abd', '172.105.247.100', 1674300613, '__ci_last_regenerate|i:1674300613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3eaee65d858849f4ab28e25152dac39176bf5dc', '172.105.247.100', 1674300613, '__ci_last_regenerate|i:1674300613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c2de91ed753e79b254053c6d4d604ceca663a4', '172.105.247.100', 1674300614, '__ci_last_regenerate|i:1674300614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690915a106326951b0247021403dc03fa45086dd', '172.105.247.100', 1674300614, '__ci_last_regenerate|i:1674300614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852baa1c1ca8daf21b7314cc08ee930491a7768c', '172.105.247.100', 1674300614, '__ci_last_regenerate|i:1674300614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9402ecd86c4619a82a43f41b5ce090702d66ed58', '172.105.247.100', 1674300614, '__ci_last_regenerate|i:1674300614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879816e5a71ca8ba7ae18e804540f0877b2bc3cf', '172.105.247.100', 1674300614, '__ci_last_regenerate|i:1674300614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ab640e837201a8609e9a3f68d3938220876d34', '172.105.247.100', 1674300614, '__ci_last_regenerate|i:1674300614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524ecd123efa50ad7a9982029228b91dd0115a7c', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e291ad31d425a1e00e28edf931181045a4c6ab', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc1817a04d96fcc09c0f544a997f574838e1bfc3', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238a01ab925546fc833b6dc52860860d9effa6cc', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('619d6bdd2477ef6d193b343f41cb5d5323ad6027', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586a88b4d9225dbee0f349c1f29b64f950b8692c', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e50b0f46e1aeb1d58b85c2e6a7f6b40a073431d', '172.105.247.100', 1674300615, '__ci_last_regenerate|i:1674300615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e706daced8280708c03b9dacefe61ae9d86de8', '172.105.247.100', 1674300616, '__ci_last_regenerate|i:1674300616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b7289c54398c0258a5acb877868adb35da0e20', '172.105.247.100', 1674300616, '__ci_last_regenerate|i:1674300616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b607dd827e9a2399f95e619577b85b0febb580cc', '172.105.247.100', 1674300616, '__ci_last_regenerate|i:1674300616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('085048511ffffc2f8dc3e5b59cfd9d8e71de4384', '172.105.247.100', 1674300617, '__ci_last_regenerate|i:1674300616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3043b9cbb960f723ab75d6913e17e4aad30b18a6', '31.222.203.2', 1674300736, '__ci_last_regenerate|i:1674300736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1023fae62cb898482b0dac22d7988b8931280316', '31.222.203.2', 1674300738, '__ci_last_regenerate|i:1674300738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c1819d15f75b30c825727f8761f291ed0f6635', '31.222.203.2', 1674300738, '__ci_last_regenerate|i:1674300738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3118df0d4b06abe59520cfe54c09bfd61ecb7e7', '31.222.203.2', 1674300738, '__ci_last_regenerate|i:1674300738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ace883ecb1e0f15d35cb0d5a79cb2fbedc4e1f', '31.222.203.2', 1674300738, '__ci_last_regenerate|i:1674300738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283397ada8becf6778fcb9450deaf9be34a1e86d', '31.222.203.2', 1674300738, '__ci_last_regenerate|i:1674300738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d7b44d538f81607bd56a67b3e2020901d10937', '37.111.219.237', 1674301400, '__ci_last_regenerate|i:1674301400;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674301109;register_id|s:3:\"294\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2023-01-21 17:35:36\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca45eedff9c43b6fcca9daa46f47299e1b69f418', '116.204.230.18', 1674302307, '__ci_last_regenerate|i:1674302307;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pOXJDVoxZc3zCAvPdt1M\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1101e25a44fe48db93238a3a2451ad777a81362b', '37.111.219.237', 1674301820, '__ci_last_regenerate|i:1674301820;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674301790;register_id|s:3:\"294\";cash_in_hand|s:8:\"710.0000\";register_open_time|s:19:\"2023-01-21 17:35:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258f821090f5d0e3a4df80080f2ea3eaee6c2970', '37.111.219.237', 1674302170, '__ci_last_regenerate|i:1674302170;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674302150;register_id|s:3:\"295\";cash_in_hand|s:8:\"740.0000\";register_open_time|s:19:\"2023-01-21 17:53:39\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7422e70dbeb127defdafaeadb7a9a8b3c78e0594', '37.111.219.237', 1674302729, '__ci_last_regenerate|i:1674302729;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674302693;register_id|s:3:\"295\";cash_in_hand|s:8:\"740.0000\";register_open_time|s:19:\"2023-01-21 17:53:39\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65fe2698db9f2a38e18a911ad064783c244470ec', '116.204.230.18', 1674302617, '__ci_last_regenerate|i:1674302617;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pOXJDVoxZc3zCAvPdt1M\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67adcaa78f9eb0c2afacd647d715fbc9e11fca6f', '31.222.203.2', 1674302535, '__ci_last_regenerate|i:1674302535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('262208a9694dba2ef3c15bb5f8a3ca7fd8ae4602', '31.222.203.2', 1674302535, '__ci_last_regenerate|i:1674302535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72ab566210bbd1bb4b4a53ca89e8b5705db756b', '31.222.203.2', 1674302535, '__ci_last_regenerate|i:1674302535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59afd4debb3b7d54a778b631f59edda51813db2', '31.222.203.2', 1674302537, '__ci_last_regenerate|i:1674302537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bca692634e41b667deb9c408ffc25eab75a662a', '31.222.203.2', 1674302537, '__ci_last_regenerate|i:1674302537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7fe2482acc88bce990d05ec7313b391d072b7c7', '31.222.203.2', 1674302537, '__ci_last_regenerate|i:1674302537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6f465603be9126ebb5ceb6be95581605fad0f8', '116.204.230.18', 1674308359, '__ci_last_regenerate|i:1674308359;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pOXJDVoxZc3zCAvPdt1M\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769791ef2a9369f836738cab18393ebdcd1f6add', '37.111.219.237', 1674303889, '__ci_last_regenerate|i:1674303889;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674302837;register_id|s:3:\"296\";cash_in_hand|s:9:\"2590.0000\";register_open_time|s:19:\"2023-01-21 18:07:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8657e744395d29e41c327d473e073e087f1b5ef', '37.111.219.237', 1674304384, '__ci_last_regenerate|i:1674304384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674303894;register_id|s:3:\"296\";cash_in_hand|s:9:\"2590.0000\";register_open_time|s:19:\"2023-01-21 18:07:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1a0c53f17ade5299a9719466f7b18d0d0f0426', '198.235.24.154', 1674304029, '__ci_last_regenerate|i:1674304029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852b5c8610d71a3b8c735f55fff3f8a17fc1cb32', '198.235.24.154', 1674304031, '__ci_last_regenerate|i:1674304031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706ee8d17b85bacfbbf5d530fda5159808379a53', '198.235.24.154', 1674304031, '__ci_last_regenerate|i:1674304031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebf2192453dc8c27ef295a11dc38bb5982ccb5ec', '205.210.31.168', 1674304111, '__ci_last_regenerate|i:1674304111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e10d19947268363c6e261e7dd8e440e5963174', '205.210.31.168', 1674304112, '__ci_last_regenerate|i:1674304112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13d3eb0da7de1b84e0adc053bca63d31963f2e2', '205.210.31.168', 1674304112, '__ci_last_regenerate|i:1674304112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5478f177e0b8aa9cfd709f48d9e2c7dcd35a65', '31.222.203.2', 1674304330, '__ci_last_regenerate|i:1674304330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d57e9812ce3649c08a3a787655031f1d2ffe85', '31.222.203.2', 1674304332, '__ci_last_regenerate|i:1674304332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea0b731a1725d77f0487f20204a87018ab2b5f1', '31.222.203.2', 1674304332, '__ci_last_regenerate|i:1674304332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b015c9a203014d71811f65c68737e9b138787a6', '31.222.203.2', 1674304332, '__ci_last_regenerate|i:1674304332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8916a998f5ddfc36ee787817109462ae8e11b2f6', '31.222.203.2', 1674304332, '__ci_last_regenerate|i:1674304332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8afdabdf97db7da98aa28934e72f43c8e89697d8', '31.222.203.2', 1674304332, '__ci_last_regenerate|i:1674304332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2c7c4dd374bbec5bbe09404ad5f07f0f61dbe0', '37.111.219.237', 1674305357, '__ci_last_regenerate|i:1674305357;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674305298;register_id|s:3:\"296\";cash_in_hand|s:9:\"2590.0000\";register_open_time|s:19:\"2023-01-21 18:07:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f11786e5774d1e3f8e9059a0142d552818fd786c', '37.111.219.237', 1674306566, '__ci_last_regenerate|i:1674306511;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674306488;register_id|s:3:\"297\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2023-01-21 18:52:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2889806ce19d66b3a96d95c8b861e938bab4d7d', '172.105.247.100', 1674305412, '__ci_last_regenerate|i:1674305412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef19fdc006200c22718eda399314fd57af39a44', '172.105.247.100', 1674305412, '__ci_last_regenerate|i:1674305412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8176e976996839bb32eeeb3109d2788f660d5b', '172.105.247.100', 1674305413, '__ci_last_regenerate|i:1674305413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a1fb9caf16a732c3027a9d2823d3342388d646', '172.105.247.100', 1674305413, '__ci_last_regenerate|i:1674305413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff66d48bfa4d6430ff017c6e62c7dd85f478518', '172.105.247.100', 1674305413, '__ci_last_regenerate|i:1674305413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88069d2d025157d508d13610268861e908a6f070', '172.105.247.100', 1674305414, '__ci_last_regenerate|i:1674305414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc10ff4843879af350caf0e277073bbe71782bcb', '172.105.247.100', 1674305414, '__ci_last_regenerate|i:1674305414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d4789f5d57ce517ad887594facbdfad7c3af0d', '172.105.247.100', 1674305414, '__ci_last_regenerate|i:1674305414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192b76528f03eed0ce9966af1f4a491ba848dc66', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474e97ec560e324c3d8f739211bf09f5baefc917', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56705f7b913e7a04ff875dd1c4de7ccb8daae99d', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92df466a769290939a4de8e3b2e099095f4471c', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06a5b47eead1f505365b0fda6860a1990d80f85', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04c9ad7c02faea52e25e28f92fa40e99381bd93', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ffddba8fa5ee43ae5cea03dbe635d835508802', '172.105.247.100', 1674305415, '__ci_last_regenerate|i:1674305415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc9234af3610c1e6dbb2cbaa4e4b9fa70f7e8bb', '172.105.247.100', 1674305416, '__ci_last_regenerate|i:1674305416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db314836067d79cc9ca4ade2a31b8a3b704424bd', '172.105.247.100', 1674305416, '__ci_last_regenerate|i:1674305416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e781a1c7519da3f0097d3e8096febc1026d770', '172.105.247.100', 1674305416, '__ci_last_regenerate|i:1674305416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909f75a472d54697f7018da483a39114f460aecb', '172.105.247.100', 1674305416, '__ci_last_regenerate|i:1674305416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6d13c4a59bc1183c498d168aeaa584299d5f69', '172.105.247.100', 1674305416, '__ci_last_regenerate|i:1674305416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58238f773b29a29f3c110c8c5770dc912f743a74', '172.105.247.100', 1674305417, '__ci_last_regenerate|i:1674305417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb67f296dda969a7969387bc52eae8e24a332c7', '172.105.247.100', 1674305417, '__ci_last_regenerate|i:1674305417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e4dac84c2f35bf628c8177aeecf824f1197ac9', '172.105.247.100', 1674305417, '__ci_last_regenerate|i:1674305417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92a0eb5d20bd07853d9942b1664829211c85189', '172.105.247.100', 1674305418, '__ci_last_regenerate|i:1674305417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb4ccbfb55b8f6b3fcfedf7591b4b6c0fdfa063', '31.222.203.2', 1674306130, '__ci_last_regenerate|i:1674306130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37a60df3feb3e16c6f2a4d0f46b2eb7e0a51236', '31.222.203.2', 1674306130, '__ci_last_regenerate|i:1674306130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b95bcc2b0561b0f513133716e065618879cc5ff', '31.222.203.2', 1674306130, '__ci_last_regenerate|i:1674306130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd37369237272ec06136e52285c5c9a85c000699', '31.222.203.2', 1674306130, '__ci_last_regenerate|i:1674306130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9aec6ed894675e02d4ebb89fb7316f34dab6706', '31.222.203.2', 1674306130, '__ci_last_regenerate|i:1674306130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e37c51baa0e984c54d5654684bb6b685142ffe9', '31.222.203.2', 1674306130, '__ci_last_regenerate|i:1674306130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac244eba32db718b0b8dbecc125be9e067fe1df', '37.111.219.237', 1674308340, '__ci_last_regenerate|i:1674308340;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674307313;register_id|s:3:\"297\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2023-01-21 18:52:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cb57dcba0f3a1e68239bd25e0633296ea10c26', '31.222.203.2', 1674307933, '__ci_last_regenerate|i:1674307933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4fdde233fb908dad00c7f6343b7565307ee617c', '31.222.203.2', 1674307933, '__ci_last_regenerate|i:1674307933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f00022de3d7ba897b7d186ae101862808f6f26b', '31.222.203.2', 1674307933, '__ci_last_regenerate|i:1674307933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415bb63df10f6d2439fcfcfb08afcc85d99c50c4', '31.222.203.2', 1674307935, '__ci_last_regenerate|i:1674307935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb563e0cabf68fdb74c9c3a1737ff17d81157201', '31.222.203.2', 1674307935, '__ci_last_regenerate|i:1674307935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba15015e72e4e7d35bbeba508674da9797771a63', '31.222.203.2', 1674307935, '__ci_last_regenerate|i:1674307935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8add5fb5b1d4f43f01e3103cb90e3df2ff325bb5', '37.111.219.237', 1674310036, '__ci_last_regenerate|i:1674310036;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674309958;register_id|s:3:\"297\";cash_in_hand|s:8:\"310.0000\";register_open_time|s:19:\"2023-01-21 18:52:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b5428a8fc84c1f1dc2eb42b80f268fec209be2', '116.204.230.18', 1674308766, '__ci_last_regenerate|i:1674308766;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"pOXJDVoxZc3zCAvPdt1M\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5fe45172341d67b3b1a810dcfef75a689593fa1', '116.204.230.18', 1674309104, '__ci_last_regenerate|i:1674309104;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"pOXJDVoxZc3zCAvPdt1M\";last_activity|i:1674299347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8473d690b4540a720e9837e2022e5d8e68eaaf', '116.204.230.18', 1674309429, '__ci_last_regenerate|i:1674309429;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"RjAmUZixy1F57nle6IcG\";last_activity|i:1674309217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f08bb125110a01bb521ceae76b1bd7c7328dc3', '116.204.230.18', 1674310041, '__ci_last_regenerate|i:1674310041;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"RjAmUZixy1F57nle6IcG\";last_activity|i:1674309217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('845ffa31e705608c20fe30b60efb545af474c564', '31.222.203.2', 1674309727, '__ci_last_regenerate|i:1674309727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8362065b1f50e0e8d6eaee2b18a1864c553bdd42', '31.222.203.2', 1674309727, '__ci_last_regenerate|i:1674309727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb7d2cbca28eb2c77fa05b1b5916dfa4331ba82', '31.222.203.2', 1674309727, '__ci_last_regenerate|i:1674309727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b22cc68839af33c7a996e22d8a4ca08a1beb8a5e', '31.222.203.2', 1674309729, '__ci_last_regenerate|i:1674309729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3c33b56286b3c641d8efbdb512302686844ea8', '31.222.203.2', 1674309729, '__ci_last_regenerate|i:1674309729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca41e91bc60fb68a2b7590045aab6a21ea8eeee5', '31.222.203.2', 1674309729, '__ci_last_regenerate|i:1674309729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5d175fdea2d74248c57bf73cabdd176c5cda18', '37.111.219.237', 1674310508, '__ci_last_regenerate|i:1674310508;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674310495;register_id|s:3:\"298\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2023-01-21 20:09:52\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7163bdfd689f5b7d8694b645d5a053694d69ded1', '116.204.230.18', 1674310041, '__ci_last_regenerate|i:1674310041;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1671976971\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"RjAmUZixy1F57nle6IcG\";last_activity|i:1674309217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fda7b8a37ba2e7abd24635b8c61ec4efbd166e2', '172.105.247.100', 1674310209, '__ci_last_regenerate|i:1674310209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37e1d6cd6ee6f96bdf5ac3d263ad42c2393d3ae', '172.105.247.100', 1674310209, '__ci_last_regenerate|i:1674310209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b246ff6f9901c7f15b7158303b38e33e3aa626', '172.105.247.100', 1674310209, '__ci_last_regenerate|i:1674310209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e8a0e1881809a9d71f4e9f8e747860ff5df0d0', '172.105.247.100', 1674310209, '__ci_last_regenerate|i:1674310209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404b64295141ae1799039849493b0e03a5a5f44d', '172.105.247.100', 1674310209, '__ci_last_regenerate|i:1674310209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a423b3d196874c23b2056fec352988899264764', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21d84c561b052bf945e03ff06c0bacdde4513ba', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d28a6d7aba9371c95ee96e96d483ba8d87b742', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61417e7d4c5ac8122feaf2c1d8519853edcf6b30', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66f656aab79088eb53a4161a4488aab0fdc4124', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a3f1a4b93a7de8d637413ef679281d40ea8c03', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad3a77e362d3cec56856dd427d31c6ad18a7602', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0228421626a4b2c6d8470af5f3aaf08039525a2e', '172.105.247.100', 1674310210, '__ci_last_regenerate|i:1674310210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3160a2f9e73920fa5fa6a2ca5ac99c4436184856', '172.105.247.100', 1674310211, '__ci_last_regenerate|i:1674310211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d6140a020805cd1ea92632062d1a1fae235de9', '172.105.247.100', 1674310211, '__ci_last_regenerate|i:1674310211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942419481ae68e56453b1f2294e93903d6997e24', '172.105.247.100', 1674310211, '__ci_last_regenerate|i:1674310211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185de0a84218ad925dc27b4ef546e276d7a11239', '172.105.247.100', 1674310211, '__ci_last_regenerate|i:1674310211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b52fa09c298547f1faeeaaa6812555e7957506b', '172.105.247.100', 1674310211, '__ci_last_regenerate|i:1674310211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f455e26f7987ae53fc03e38bcbaff015d3cb581f', '172.105.247.100', 1674310211, '__ci_last_regenerate|i:1674310211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9521325e3c1cd5531fc345f5ba9b6e1ef0a770c6', '172.105.247.100', 1674310212, '__ci_last_regenerate|i:1674310211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf3ff87fd39f14bab99b8951570fdf32b4f8764', '172.105.247.100', 1674310212, '__ci_last_regenerate|i:1674310212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a96f09ceb047e702afa6d92dc4eb64acd78475f', '172.105.247.100', 1674310212, '__ci_last_regenerate|i:1674310212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2162b626099d2086c1d87275043fb035d0a5e8bd', '172.105.247.100', 1674310212, '__ci_last_regenerate|i:1674310212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa8fa3c0d29b5a82a3ed2802e26e84c7a82f28c', '172.105.247.100', 1674310212, '__ci_last_regenerate|i:1674310212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea047ea4f94030a6e9daa83c146404eb7449df4', '37.111.219.237', 1674310913, '__ci_last_regenerate|i:1674310913;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674310838;register_id|s:3:\"299\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-01-21 20:16:11\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01dcb3674cbaa2fe4bbdcd5d10297c9bc14b1bb', '37.111.219.237', 1674311698, '__ci_last_regenerate|i:1674311698;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674311612;register_id|s:3:\"300\";cash_in_hand|s:9:\"1520.0000\";register_open_time|s:19:\"2023-01-21 20:23:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f4b82c9829c0d7b83b74a7f322f8e664465c3f', '31.222.203.2', 1674311528, '__ci_last_regenerate|i:1674311528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c04f7243057968fd14c66a3bed53d9c2fc49668', '31.222.203.2', 1674311528, '__ci_last_regenerate|i:1674311528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87baf186aee2ccf1b6693b8b88d72e51dbc77e99', '31.222.203.2', 1674311528, '__ci_last_regenerate|i:1674311528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef952f18a056f6b275b86c548610a1e860f4810', '31.222.203.2', 1674311528, '__ci_last_regenerate|i:1674311528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a87071342f203aacaaae8f92468e26f4d3b79c3d', '31.222.203.2', 1674311528, '__ci_last_regenerate|i:1674311528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df99103620c4c68baffbc48761076c853641b71', '31.222.203.2', 1674311528, '__ci_last_regenerate|i:1674311528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eefb4c8b17c72fddbf6707f06dd63e06df23c7cc', '37.111.219.237', 1674314704, '__ci_last_regenerate|i:1674311698;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1672030463\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674314704;register_id|s:3:\"301\";cash_in_hand|s:9:\"8290.0000\";register_open_time|s:19:\"2023-01-21 20:36:04\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef917c9c152eeb9d0b0ffaea652e906d5142939c', '31.222.203.2', 1674313330, '__ci_last_regenerate|i:1674313330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c69e60c1982cb3d23cf5e5bc8d10fbb13eb44e3', '31.222.203.2', 1674313330, '__ci_last_regenerate|i:1674313330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a259b6ac8848c08b44d9352256f13f7d2979002', '31.222.203.2', 1674313330, '__ci_last_regenerate|i:1674313330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af7b61bc85eb796890e43ee0b2ebb92a541b11c8', '31.222.203.2', 1674313332, '__ci_last_regenerate|i:1674313332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd66d55d6613bdb6048bebf77039ea278ae6b57e', '31.222.203.2', 1674313332, '__ci_last_regenerate|i:1674313332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167ffe44244429d70db3b7fcca2ed7e594b8801e', '31.222.203.2', 1674313332, '__ci_last_regenerate|i:1674313332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eea10976bab04ddb101ff12d4cfc85e77cf4e2c4', '172.105.247.100', 1674315008, '__ci_last_regenerate|i:1674315008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f092cdac1bce3a71d96ffe07babb1c29d978443', '172.105.247.100', 1674315009, '__ci_last_regenerate|i:1674315009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4885cc144d05e3f0d237cee5f4dc8e37d97d9605', '172.105.247.100', 1674315009, '__ci_last_regenerate|i:1674315009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58671485c644d12853cf2a680bf7d7e6a3a88058', '172.105.247.100', 1674315009, '__ci_last_regenerate|i:1674315009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f7884cf8e47c62245cb6a9d93ecfea539cb3d6', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997a10ac4a59daeeb7ba6dcf73d75f95c4d47e9b', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd32b274ff1cd2b6ad8e35f393f80f4f362e4109', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec0892ef581e4f0cc8c65b4e8850869404c4d0d', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba1e1eb7201ab4ca50432032dd3ad42e730e948', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3940226855b057f84b771a7a0f5a51165b16d06', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b0d2f291e4af16f0120d42811e6ac4fe432912', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1172ef5e999ea8c74771848d8bec5dbfe1e55671', '172.105.247.100', 1674315010, '__ci_last_regenerate|i:1674315010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546a8383c89950931a6632b60fa16a1ecba89b82', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a805b00fb2fd9e4a653362ea89ad68f48072ba2', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d9ef42ffc1b6ead13bea50babe6a62a0b318af', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca7ca1c2acac4c88c5609d3f19b6fbfc75783a8', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c2e1c22a934b1d505aafb942204a3e785cf848d', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02de4556fcb71e9ca82915a7e43f259dcc947350', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19101e1c531695430d8e36af7979231625b3b303', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e6f791c2b5bd7b3ba1470b81d5c469bca7ca51b', '172.105.247.100', 1674315011, '__ci_last_regenerate|i:1674315011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ede7076b2014001aa24f7d8e4b5aee8181f9b7ae', '172.105.247.100', 1674315012, '__ci_last_regenerate|i:1674315012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a21fdd49be6521fe5450bf7d105c12264da97b1', '172.105.247.100', 1674315012, '__ci_last_regenerate|i:1674315012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885f050f7de50313d66a8c32b7c9948481aa05ef', '172.105.247.100', 1674315012, '__ci_last_regenerate|i:1674315012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09da30f442ac38b3ac22119e6b19ffa530ab922', '172.105.247.100', 1674315012, '__ci_last_regenerate|i:1674315012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('860c943b95098322cf889dae0d693cd0b65ca181', '31.222.203.2', 1674315124, '__ci_last_regenerate|i:1674315124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f92738e2e9335aa5fb747d0397b64d2a32052923', '31.222.203.2', 1674315124, '__ci_last_regenerate|i:1674315124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e086d382e14b639281410f820e6d591e4fc15c8', '31.222.203.2', 1674315124, '__ci_last_regenerate|i:1674315124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c18fdfddb3de8c9d32afcf0782cb162c529a9000', '31.222.203.2', 1674315126, '__ci_last_regenerate|i:1674315126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c1dd88a26a4129fea3dd3f878a3c05fe257b03', '31.222.203.2', 1674315126, '__ci_last_regenerate|i:1674315126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59539c45b468a5fa1b7679155e46e6016ed61e85', '31.222.203.2', 1674315126, '__ci_last_regenerate|i:1674315126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfcd554b081da9714520a45143380cc26c8dc174', '31.222.203.2', 1674316930, '__ci_last_regenerate|i:1674316930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7334b2a2c8a735ae2e8782096b61397305f41c1', '31.222.203.2', 1674316930, '__ci_last_regenerate|i:1674316930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a09bd42dcee43fe2d09988f13728dae26451977', '31.222.203.2', 1674316930, '__ci_last_regenerate|i:1674316930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f08cbddcfc485691c0155cf6310b9c6daaced7d', '31.222.203.2', 1674316930, '__ci_last_regenerate|i:1674316930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d86de4caf2dd1a1a3ddaa42fc43ad58897222a', '31.222.203.2', 1674316930, '__ci_last_regenerate|i:1674316930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3c14c352c2f54c822699763f75aff62be1dcb9', '31.222.203.2', 1674316930, '__ci_last_regenerate|i:1674316930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831101619ac56b7312b89fa032e19458de902329', '31.222.203.2', 1674318732, '__ci_last_regenerate|i:1674318732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a69accbd2871e60c38d82882058014c9090b3168', '31.222.203.2', 1674318734, '__ci_last_regenerate|i:1674318734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd926a8d42e8e4a61143a5f4d67aca1f1d6fa9e', '31.222.203.2', 1674318734, '__ci_last_regenerate|i:1674318734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e796f044aac74f49f069d8ecef52e38939ae8e8', '31.222.203.2', 1674318734, '__ci_last_regenerate|i:1674318734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3c273973d80da75d07efdc01e64f934f799ff5', '31.222.203.2', 1674318734, '__ci_last_regenerate|i:1674318734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8153947ed56ecacb3801a9ffaf17536567c78206', '31.222.203.2', 1674318734, '__ci_last_regenerate|i:1674318734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7fc1de019681840d9acdf72e3144d06bee83b7e', '172.105.247.100', 1674319810, '__ci_last_regenerate|i:1674319810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea2dcf47ee84ffacf766e4961d9340942c25445', '172.105.247.100', 1674319811, '__ci_last_regenerate|i:1674319811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82c198a478bd1ee4aee350f370675dcb7da1b34', '172.105.247.100', 1674319811, '__ci_last_regenerate|i:1674319811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e472e61b42f9eaf0c4131eda41e6c8d5b08e6f1', '172.105.247.100', 1674319812, '__ci_last_regenerate|i:1674319812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf46372c889d49ade598b91ea5598d2500624cb6', '172.105.247.100', 1674319812, '__ci_last_regenerate|i:1674319812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a5fb9767dfede80621767dd8105bc0bcd0abcc', '172.105.247.100', 1674319812, '__ci_last_regenerate|i:1674319812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9999cd253334c60744408795f3d37c5b66e08e6', '172.105.247.100', 1674319812, '__ci_last_regenerate|i:1674319812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2841e3a6fc7ab5d4cd9a4a29400ed8a7350c7842', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8f333a5a49e356e835fddca3ed18620ae91570', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4231c978b4b3a44c9df58993b64ea3b8412a21cb', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee1f166bf7687445ee65854cf9f5555348c150cc', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e9ecaf25e372554531095c73b8efad4c134842', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65f220470635174c9c5d21cdb47958d8a482797', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29776b7aa89dc825508ef4c4906a39b33cea88ef', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5dea2a5671bf9824e0ce2a60141561f48cb526', '172.105.247.100', 1674319813, '__ci_last_regenerate|i:1674319813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dc37f6d540076ddc3ebbea1ce9f400f310471c', '172.105.247.100', 1674319814, '__ci_last_regenerate|i:1674319813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7969f3bf4f9bc6c72864ba78a1d63385b33941f3', '172.105.247.100', 1674319814, '__ci_last_regenerate|i:1674319814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ddc56959e2f5d2d5fc4f319c30afb62446efbd', '172.105.247.100', 1674319814, '__ci_last_regenerate|i:1674319814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b9cc02895744db165b926a3ea4b8eaf31accf8', '172.105.247.100', 1674319814, '__ci_last_regenerate|i:1674319814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3771ebc5770e127ad35f9d27cc23c28db2cfcb98', '172.105.247.100', 1674319814, '__ci_last_regenerate|i:1674319814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7dc82cb8c8657e025cdd5a4d5c730038316042', '172.105.247.100', 1674319814, '__ci_last_regenerate|i:1674319814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9795ac84eb9a5d30ce87e7918751a8a43057a15', '172.105.247.100', 1674319815, '__ci_last_regenerate|i:1674319815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418715e092cf9f4f7eb5c8b77ab46f39a631b232', '172.105.247.100', 1674319815, '__ci_last_regenerate|i:1674319815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74540f86fb2c998b657d28603eaedb290440f5d5', '172.105.247.100', 1674319815, '__ci_last_regenerate|i:1674319815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366fc7f98f55c8ef406735743425f7d06c336734', '31.222.203.2', 1674320537, '__ci_last_regenerate|i:1674320537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b12c80a72361f9543e4b0dead14f3c428323107', '31.222.203.2', 1674320537, '__ci_last_regenerate|i:1674320537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0668e60a6d71c2241e09142dd6909329e18ebe5d', '31.222.203.2', 1674320537, '__ci_last_regenerate|i:1674320537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a958ba33c30147fba228904c4e65a201356ea6', '31.222.203.2', 1674320537, '__ci_last_regenerate|i:1674320537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('762c9eff5fb1fc78c90e8e6d5f44ed7fb0252918', '31.222.203.2', 1674320537, '__ci_last_regenerate|i:1674320537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25edc5c383f9af933005aa2a268dda4be172a6ec', '31.222.203.2', 1674320537, '__ci_last_regenerate|i:1674320537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbaca4ca4b8455843ebe7bbca0f3c3c99a92df55', '31.222.203.2', 1674322332, '__ci_last_regenerate|i:1674322332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9c216675e3fc592d1842de6065000264ff41d2', '31.222.203.2', 1674322332, '__ci_last_regenerate|i:1674322332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8eff3cf5d2f3222defb7d0ddd092a37cc36089f', '31.222.203.2', 1674322332, '__ci_last_regenerate|i:1674322332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc1e321b1043f091ece965aa034e4937fe75602', '31.222.203.2', 1674322334, '__ci_last_regenerate|i:1674322334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedd06f9381825d331ecfa6e82e23e4d7d01e2e9', '31.222.203.2', 1674322334, '__ci_last_regenerate|i:1674322334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02b2abbbd1fc11162257f6d878b2792d592683a', '31.222.203.2', 1674322334, '__ci_last_regenerate|i:1674322334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e86ebd69adcefb3cfd2eb78155393ea03dd3edc6', '31.222.203.2', 1674324134, '__ci_last_regenerate|i:1674324134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e830cf388951c7c8ec21413a1c59d2e122ba9829', '31.222.203.2', 1674324134, '__ci_last_regenerate|i:1674324134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a702b6baaa7ab1283f38ee60a05f05516f1ab9c4', '31.222.203.2', 1674324134, '__ci_last_regenerate|i:1674324134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2f50ef68710c9397a4c7a73b5d30cc9fcb7d07', '31.222.203.2', 1674324136, '__ci_last_regenerate|i:1674324136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2408c7a02e67d22a8b7dd63b4f1a2eada8167c5c', '31.222.203.2', 1674324136, '__ci_last_regenerate|i:1674324136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('477a0215fc5d884e3e441dda60758deda9865625', '31.222.203.2', 1674324136, '__ci_last_regenerate|i:1674324136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0e390e702170776264b3ee5685ebeca95ba8df', '172.105.247.100', 1674324608, '__ci_last_regenerate|i:1674324608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e215f32646df3f5aaaea55af3945d0fdd9015f1', '172.105.247.100', 1674324608, '__ci_last_regenerate|i:1674324608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5976dbdd570daeb81b942eb408f22bc5c3456ab7', '172.105.247.100', 1674324608, '__ci_last_regenerate|i:1674324608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b22b279ad1a7410960542eaa5d841af7248ef0', '172.105.247.100', 1674324608, '__ci_last_regenerate|i:1674324608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2cd527438f11b3a653536b4b72fbefe1640b63', '172.105.247.100', 1674324609, '__ci_last_regenerate|i:1674324608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05bb55e07c0a68022941fa93b280e04e56560d79', '172.105.247.100', 1674324609, '__ci_last_regenerate|i:1674324609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399efee9a63d10e47da5f97308cd29b4007f1ae4', '172.105.247.100', 1674324609, '__ci_last_regenerate|i:1674324609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878c9cba87cd606c2777a9a2a45870418016bfcc', '172.105.247.100', 1674324609, '__ci_last_regenerate|i:1674324609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c5f937acf28c66cb63743f3354f01e009adaa43', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('198d7bd4f4b36a904a347177e88c489b3a730dc3', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d83a9b8c95055df4fb605899c90d6f29f8011f', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15de41712efe306f25b9e37d65496d27ee859c3', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2571d5cf1833a9590e8e51f1f79fc7417821ee90', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775708e38f17e5b14b39a23542ce822dd9daa0de', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1a7269904d526335aad29b15e54140f5e08bd47', '172.105.247.100', 1674324610, '__ci_last_regenerate|i:1674324610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6889f159ee2b9bd18586b45fc50b8f829e0cc689', '172.105.247.100', 1674324611, '__ci_last_regenerate|i:1674324611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60727e6a52fb34c1cc008520fefdc7184060f474', '172.105.247.100', 1674324611, '__ci_last_regenerate|i:1674324611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b83534ef5f888f0e37e2341184824154443960f4', '172.105.247.100', 1674324611, '__ci_last_regenerate|i:1674324611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e711ae871165bc4bc62bdd4433d35fdc78c7324', '172.105.247.100', 1674324611, '__ci_last_regenerate|i:1674324611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5813f385336871c26dc613abba1d0342178fa0f', '172.105.247.100', 1674324611, '__ci_last_regenerate|i:1674324611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01bf4d21897802dcd7b9ae09cfe1d441ce3e37e', '172.105.247.100', 1674324612, '__ci_last_regenerate|i:1674324612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c63820f59d9b6f87cbf987966e6062f6d49489', '172.105.247.100', 1674324612, '__ci_last_regenerate|i:1674324612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29783a00e33cbb0a69fa613044e44ca6a99191d1', '172.105.247.100', 1674324612, '__ci_last_regenerate|i:1674324612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c03123697e2f8ec99370cd5f2878b0abff3b197', '172.105.247.100', 1674324613, '__ci_last_regenerate|i:1674324612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f14eab7d2c0ce5a208d0f1eafe3ea0c5925d0b', '31.222.203.2', 1674325925, '__ci_last_regenerate|i:1674325925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a8fe05e4c2bc166694608355eefe6798b57e3cd', '31.222.203.2', 1674325926, '__ci_last_regenerate|i:1674325926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca628b3008b6348eb1e4d13c7f94b3cc8b84293', '31.222.203.2', 1674325926, '__ci_last_regenerate|i:1674325926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc160ccc244ce40a676f6ee894e0640bb9a25e4', '31.222.203.2', 1674325928, '__ci_last_regenerate|i:1674325928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f128c9bd7d09c8b3dff1423cba4aa9c724267a7d', '31.222.203.2', 1674325928, '__ci_last_regenerate|i:1674325928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785863268beb165159b6152accf18b351ca96e12', '31.222.203.2', 1674325928, '__ci_last_regenerate|i:1674325928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b6b137b93310293580251a0cee59598f013943', '31.222.203.2', 1674327726, '__ci_last_regenerate|i:1674327726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('872a98e3eb49f7b133c0ee47d87c4d57995fbc81', '31.222.203.2', 1674327726, '__ci_last_regenerate|i:1674327726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed797f9040bf8dc72985d0dba85c5b99f385166b', '31.222.203.2', 1674327726, '__ci_last_regenerate|i:1674327726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435a7c3f52ba2f1fc1746f4530a9904f27fb0e1b', '31.222.203.2', 1674327726, '__ci_last_regenerate|i:1674327726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b3fc1300ee7b485243338e0d6ad37929d4d4cf', '31.222.203.2', 1674327726, '__ci_last_regenerate|i:1674327726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c25596976fca2de0554bf476b5b89ca0095f676', '31.222.203.2', 1674327726, '__ci_last_regenerate|i:1674327726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62abdf1cb3e26ca11d1955aad84fbaaadac4b274', '172.105.247.100', 1674329409, '__ci_last_regenerate|i:1674329409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404b5ad7a0c25727fb97a338fdd9b3bfb6b6d44e', '172.105.247.100', 1674329409, '__ci_last_regenerate|i:1674329409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738e97b9ba7f0f624947f00d076f37141e5bb4b7', '172.105.247.100', 1674329409, '__ci_last_regenerate|i:1674329409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d45cb51457b35b9a5b80cd2799bc72b537ab995', '172.105.247.100', 1674329409, '__ci_last_regenerate|i:1674329409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a932bb1534904a4b1526901a88072a2a210a6457', '172.105.247.100', 1674329410, '__ci_last_regenerate|i:1674329410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1348445c4a7b437471fc6b8766fbe6a3a5d370', '172.105.247.100', 1674329410, '__ci_last_regenerate|i:1674329410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec7b77b7fa5ae4684c44ab3101fb6cc26f11cf5a', '172.105.247.100', 1674329410, '__ci_last_regenerate|i:1674329410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd6957ec191c245abf67f80d544bd9a4a35d83f', '172.105.247.100', 1674329410, '__ci_last_regenerate|i:1674329410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a049af4ace5f2ba665f2eccaa1976cf865fbdef', '172.105.247.100', 1674329411, '__ci_last_regenerate|i:1674329411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10354ad48e9a72d0a79f409e300ef3915cec63ca', '172.105.247.100', 1674329411, '__ci_last_regenerate|i:1674329411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d98b8569b6bc97a0c6d6129f6493d0c36b202708', '172.105.247.100', 1674329411, '__ci_last_regenerate|i:1674329411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597ec8d4133a647f74a77e44d4914813f90689d0', '172.105.247.100', 1674329411, '__ci_last_regenerate|i:1674329411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501f3c07df38c1ac02039545d1ecd5542fe0d55c', '172.105.247.100', 1674329412, '__ci_last_regenerate|i:1674329412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faab55b2c3b2e0fd6b58cfb6f2604b89255bddbd', '172.105.247.100', 1674329412, '__ci_last_regenerate|i:1674329412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8897826d73445352950767b9b81c02077e9d419a', '172.105.247.100', 1674329412, '__ci_last_regenerate|i:1674329412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f693fa2f1f8f7db30df54955e285582b6ff93aba', '172.105.247.100', 1674329412, '__ci_last_regenerate|i:1674329412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3415e5d7229ce6c2e7b878af5cce1424eeabc86b', '172.105.247.100', 1674329412, '__ci_last_regenerate|i:1674329412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62a94c876bf4dc61034d73608115bfefee8328f', '172.105.247.100', 1674329412, '__ci_last_regenerate|i:1674329412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9704a265a6c6232060458403f79a8f9b88158980', '172.105.247.100', 1674329413, '__ci_last_regenerate|i:1674329413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39e526b3bf5adae15566dd6916d436d5ff5efaf', '172.105.247.100', 1674329413, '__ci_last_regenerate|i:1674329413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96ae72f77dc9256bbee2f49749c9dab7fc215f6', '172.105.247.100', 1674329413, '__ci_last_regenerate|i:1674329413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e305f1e607d371757f8cb381016e52e36904db', '172.105.247.100', 1674329413, '__ci_last_regenerate|i:1674329413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7976f2b61e021aafd9a6a73caac3771843500327', '172.105.247.100', 1674329414, '__ci_last_regenerate|i:1674329414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f58fa67bc2551c7df765aacd5985e4ceaf7b2305', '172.105.247.100', 1674329414, '__ci_last_regenerate|i:1674329414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ecf1e59e8f98f5ddf2552c4db01f10aed31b5e', '31.222.203.2', 1674329531, '__ci_last_regenerate|i:1674329531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3c1ada7737127691f1c6aa3a6ca56bfcb7d34b', '31.222.203.2', 1674329531, '__ci_last_regenerate|i:1674329531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0317a2b45ab85110b0fd587b4acdc336be8a97c', '31.222.203.2', 1674329531, '__ci_last_regenerate|i:1674329531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('391aba062f740036a7cb59f8b1f60d5712f06e89', '31.222.203.2', 1674329531, '__ci_last_regenerate|i:1674329531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c30edec0ef8d6e600d376b59a164a8d737eda727', '31.222.203.2', 1674329531, '__ci_last_regenerate|i:1674329531;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69c18e0aa7892acdef2de5a2c2858b8cf2fa136', '31.222.203.2', 1674329531, '__ci_last_regenerate|i:1674329531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23ecd4d87aedf11fd660010e8d12f844f0dba6a', '87.236.176.9', 1674329539, '__ci_last_regenerate|i:1674329539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95839457869bb1ddbdc2c8751ef355e57495ccac', '87.236.176.9', 1674329550, '__ci_last_regenerate|i:1674329545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d09b6293539f42ecdb2448dbb075552e8761f61', '31.222.203.2', 1674331327, '__ci_last_regenerate|i:1674331327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ba569f176b921c34fb8dfc8b1d847a33159486', '31.222.203.2', 1674331327, '__ci_last_regenerate|i:1674331327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11cc432b54556f6de7b719c78c78c8eed5a39a64', '31.222.203.2', 1674331327, '__ci_last_regenerate|i:1674331327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489ba5841814efcd19ef54029fa6c5375e31277b', '31.222.203.2', 1674331327, '__ci_last_regenerate|i:1674331327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1b32c744e70463f4852df798d1b0653a84ed08', '31.222.203.2', 1674331327, '__ci_last_regenerate|i:1674331327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d28a2549ad95708af83c93c5d4a6c610464920', '31.222.203.2', 1674331327, '__ci_last_regenerate|i:1674331327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e532b85977e8e73584e9beb686b65c9132d47f', '31.222.203.2', 1674333122, '__ci_last_regenerate|i:1674333122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531ede5bc33db1af59fe0d74cff8f3d797e25227', '31.222.203.2', 1674333122, '__ci_last_regenerate|i:1674333122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1569ab840423bf86bb251729e9584452421c3ee8', '31.222.203.2', 1674333122, '__ci_last_regenerate|i:1674333122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1eadc76c009e96646ecefe55ee7ad9959e517a', '31.222.203.2', 1674333122, '__ci_last_regenerate|i:1674333122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a53a66221b89d9b2340ac2bcffc3553aeef0d9', '31.222.203.2', 1674333122, '__ci_last_regenerate|i:1674333122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c9868f6abd0f452acde607cf15a4545600ef59d', '31.222.203.2', 1674333122, '__ci_last_regenerate|i:1674333122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33b6b838e5fbec4ba0cc964f1b3af932868b9c8', '172.105.247.100', 1674334208, '__ci_last_regenerate|i:1674334208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b49b1c6ae94251b77fea51fa261a034a2f924c', '172.105.247.100', 1674334209, '__ci_last_regenerate|i:1674334209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb5411f92c5f4bb30e76a8a60ed325eb273aafa', '172.105.247.100', 1674334209, '__ci_last_regenerate|i:1674334209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67ee383dbf31dad322eea6841a47b500d8fc5ec', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8eeec42b14d277c35bf5ffd632ad715b22c50a4', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a991bd42e29ee62bbcba05c39959d6476e65ea7a', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af48a3dce391ba54839ee66cc4ad44d7a0d33b5', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec2e489862aeeb1fda974141e169c2777fac666', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55360eac0a8b1d274359808972c06de224784630', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60dedb4528c602650cc01632ab644cda0b1edea2', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cdb3d63afa8801d5fb4d4dc985427b353779e5', '172.105.247.100', 1674334210, '__ci_last_regenerate|i:1674334210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3917b3303a0a4cf8d55d9fb2ac46e470f48308', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b5fee93db456b44def8f7d6bd5f3e675f2f611', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f202c4dd5f65d776fc83e23a4089f2776cf0caf', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('938b34c4b0f3ec4fc9971c85890e8e2f0d7a28cc', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20fd24e5513b74ab41162603f390ab7055f3152c', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72a06c39cb89c613b908659a5180cea4757f4dd', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8228c5af145ceae5618e68293195ab6381891640', '172.105.247.100', 1674334211, '__ci_last_regenerate|i:1674334211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ca6c995a36cd2f6e02d41ea84672ba14fb0fc7f', '172.105.247.100', 1674334212, '__ci_last_regenerate|i:1674334211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8338fd45de66ff19a4f6adb7a783518fbff84e78', '172.105.247.100', 1674334212, '__ci_last_regenerate|i:1674334212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df20830514fd6929abe278ad15d3cfcb79e17a75', '172.105.247.100', 1674334212, '__ci_last_regenerate|i:1674334212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f4d7e6e132fce733a56e01163abe6d73a37042', '172.105.247.100', 1674334212, '__ci_last_regenerate|i:1674334212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e968f7590d56598f0317d6dfedfb7bfa9e2edd', '172.105.247.100', 1674334212, '__ci_last_regenerate|i:1674334212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bcd9622d726bbfe9faf61b651bf1baf0061fe8', '172.105.247.100', 1674334212, '__ci_last_regenerate|i:1674334212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8c2c630f336787aaf9ed1c4cc150b5dd5e166a', '31.222.203.2', 1674334921, '__ci_last_regenerate|i:1674334921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707b34070361a2bb653076dac82bf5d0c3aadb49', '31.222.203.2', 1674334923, '__ci_last_regenerate|i:1674334923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a8aa106f7ca8516225eb1ce47f7033145650ba', '31.222.203.2', 1674334923, '__ci_last_regenerate|i:1674334923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d1450ac6df328ccf8f2709bfb2685b91018abab', '31.222.203.2', 1674334923, '__ci_last_regenerate|i:1674334923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4554ae98b1e9953ec4224f509e8762f665fbdd00', '31.222.203.2', 1674334923, '__ci_last_regenerate|i:1674334923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('139a2009707e4f4d2598adeaa0b9e54aeee8a9df', '31.222.203.2', 1674334923, '__ci_last_regenerate|i:1674334923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ba87b52178dbecc721eabdfd3adf1c3087dd973', '31.222.203.2', 1674336725, '__ci_last_regenerate|i:1674336725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ea0fb6c8dcb00dfc079ad7eab72cd38045bf5d', '31.222.203.2', 1674336725, '__ci_last_regenerate|i:1674336725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc77b65cf2b4623392fe23bdb55367b5fe710c79', '31.222.203.2', 1674336725, '__ci_last_regenerate|i:1674336725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805842da7f8388fa0ef3ea40802cc255f0031682', '31.222.203.2', 1674336726, '__ci_last_regenerate|i:1674336726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b43827d58d141a2f7a2882c11ad3e4967b5849', '31.222.203.2', 1674336726, '__ci_last_regenerate|i:1674336726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f66a3f7c0b5217dd31b224651d1f1baf48e7afd', '31.222.203.2', 1674336726, '__ci_last_regenerate|i:1674336726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53a1a10a53ab9f99295fe891c43f6f65955d850', '31.222.203.2', 1674338528, '__ci_last_regenerate|i:1674338528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c37089fac16824d6aff8301f1f9d6326c1eeeea', '31.222.203.2', 1674338528, '__ci_last_regenerate|i:1674338528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0641f01b9aa0b3183627305fb3fffc751ba55aae', '31.222.203.2', 1674338528, '__ci_last_regenerate|i:1674338528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042ee04fa15bed582d05b98ed5936ae2671b4cad', '31.222.203.2', 1674338530, '__ci_last_regenerate|i:1674338530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51c61f542937966f75fc04389c425591ad9fd2e', '31.222.203.2', 1674338530, '__ci_last_regenerate|i:1674338530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e85e07f83ad747051319d44b7443072b39874d', '31.222.203.2', 1674338530, '__ci_last_regenerate|i:1674338530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef5e950200eaa6e74f181474fc8a9164a8d1949', '172.105.247.100', 1674339008, '__ci_last_regenerate|i:1674339008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d36ef07405f7c414e54ecaeaaa358fffd44c3bc', '172.105.247.100', 1674339008, '__ci_last_regenerate|i:1674339008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04dfc692b2102d79d2d37ae36f93e5aec733825', '172.105.247.100', 1674339009, '__ci_last_regenerate|i:1674339009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2066da9348cd082ae9196f911045bc8c39f6bbab', '172.105.247.100', 1674339009, '__ci_last_regenerate|i:1674339009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2af7193e3f9da916f2ff056d95721a55debf26a', '172.105.247.100', 1674339009, '__ci_last_regenerate|i:1674339009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf409362e337138605bb87a0d54198c41116f7c1', '172.105.247.100', 1674339009, '__ci_last_regenerate|i:1674339009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cbf6f933409f0f3d01c100551563a0381e676ce', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe231df8b12a5fefb8da3b9451846760943c8c1', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28735e84584011fef07690b60f627827e5d901c6', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c488086d90e6e4ccb36eb9fd95787cbea749ed31', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c401f409bc250f676ec1e9642266d82ad6904e6', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da2632bbc6e1d08a26c23ebe1311494181f89b2', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243e9f787b3f4cbf8ae3c0a9b3ead2fe78046dfd', '172.105.247.100', 1674339010, '__ci_last_regenerate|i:1674339010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f04abe1cfc40ba4c25f88cc94a43d2ef9b128761', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a689f58fab65e3b1198c76af6bbd7a092a6f1092', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950a827021042352fab230fe0fb3984591ac2ea4', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e038728706d88d6622eaa91daaa03955b37123e', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a80e73e202aedd67804786de8d2e9cf65ea7ee', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611dc30383cefd14c09046773d43c87b0d833aaf', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a238785a9299b15ba0718a31865bbd246dbce1d', '172.105.247.100', 1674339011, '__ci_last_regenerate|i:1674339011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82df85bd34bf8f669e82626183d059d93d751d79', '172.105.247.100', 1674339012, '__ci_last_regenerate|i:1674339012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cec75b3789e07e0526b5454ca182356751f3cb6', '172.105.247.100', 1674339012, '__ci_last_regenerate|i:1674339012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adbc8f0647e5344a8c5597965e7f26d1de0c4706', '172.105.247.100', 1674339012, '__ci_last_regenerate|i:1674339012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c65f9cb353bdb2c1297c6d32f2e7a267336ca36', '172.105.247.100', 1674339013, '__ci_last_regenerate|i:1674339012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285bc2f3108b7d378a1abb4462ec6118f2c67615', '31.222.203.2', 1674340323, '__ci_last_regenerate|i:1674340323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12a2b497452fffc3dda3859807470f10d1a18720', '31.222.203.2', 1674340323, '__ci_last_regenerate|i:1674340323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb656dd0dd13969bc5d89a42e671f6dc4968e009', '31.222.203.2', 1674340323, '__ci_last_regenerate|i:1674340323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bd4e4baa61869e4e430e418a7de6c791cdf303', '31.222.203.2', 1674340323, '__ci_last_regenerate|i:1674340323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13d6f7321096b1756110d2091144d76c5e03427', '31.222.203.2', 1674340323, '__ci_last_regenerate|i:1674340323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64c17b8fe20dab3ccb8f98c64e376b1d4d3217f', '31.222.203.2', 1674340323, '__ci_last_regenerate|i:1674340323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2f3f53aa6d1b46fc3751a9e36bc3e3dd3eb0ac', '31.222.203.2', 1674342128, '__ci_last_regenerate|i:1674342128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4851a14e12d0c26fb90ff6764bc2e420b4e9bdd9', '31.222.203.2', 1674342128, '__ci_last_regenerate|i:1674342128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e0b154bba8a2add99addcd09954fba6afe846d3', '31.222.203.2', 1674342128, '__ci_last_regenerate|i:1674342128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f9ffc165dcf7080073626e3c2145d495c600db', '31.222.203.2', 1674342128, '__ci_last_regenerate|i:1674342128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f660220e04dbc3029dc67708db26e7637301c9', '31.222.203.2', 1674342128, '__ci_last_regenerate|i:1674342128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161e3c6d2c2231d7b53ac9e6bca5e6e71aa9a4ca', '31.222.203.2', 1674342128, '__ci_last_regenerate|i:1674342128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4b86193ce086ab482a76567019b6d203e2845e', '172.105.247.100', 1674343809, '__ci_last_regenerate|i:1674343809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70a2b18fc26b691fe3a40ec0ece20c61eb07410a', '172.105.247.100', 1674343809, '__ci_last_regenerate|i:1674343809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02fbc83dc4062ddc17bb58cdeacba460b8644b6', '172.105.247.100', 1674343809, '__ci_last_regenerate|i:1674343809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e616226e488151a45c32b4f5f9db2c090d00eee3', '172.105.247.100', 1674343809, '__ci_last_regenerate|i:1674343809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a0f894a5f63e0adfb4bbf63a77b7782fc68aff', '172.105.247.100', 1674343810, '__ci_last_regenerate|i:1674343810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7fe6c906748cda4038930270d51563cd22afbd', '172.105.247.100', 1674343810, '__ci_last_regenerate|i:1674343810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4cfa385369bfed960260e6688bf1151cfda4fa', '172.105.247.100', 1674343810, '__ci_last_regenerate|i:1674343810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651db85e511f629927d16e2119c7c340bfc583a9', '172.105.247.100', 1674343810, '__ci_last_regenerate|i:1674343810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1af68a6a01915cf4070d728fbc860492bf40a01', '172.105.247.100', 1674343810, '__ci_last_regenerate|i:1674343810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc320d1bb278b5dad59410bfdac8141367ddf3c', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3243a5ea03342d1823ac45eeaf98aba1d26976c1', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07cf13109df6791298e2e131a56349c721e4a512', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7e93b28b127239ca6a352ab500376ae5a30c5c', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d6aea258bf23303a7fc0dc7ddfdcb881330e22f', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceca791b1e7027f07a13de5b9e6fa799bb7168bc', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fce94f23e5f20a432a27210df86a40685af3128', '172.105.247.100', 1674343811, '__ci_last_regenerate|i:1674343811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b83c9bf17850d1f1b2bc176d46081e738835a926', '172.105.247.100', 1674343812, '__ci_last_regenerate|i:1674343811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959507323b74f0b09713ec45949925dd8c8e4205', '172.105.247.100', 1674343812, '__ci_last_regenerate|i:1674343811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b3f5826dbf3980a05a34ac088f2dd336ed8f48', '172.105.247.100', 1674343812, '__ci_last_regenerate|i:1674343812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf9eb317e4b29e9248d82a8115aa10e0bd401c1', '172.105.247.100', 1674343812, '__ci_last_regenerate|i:1674343812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bdf556fb206fcb2f00a4f2aa33e6af11cef91da', '172.105.247.100', 1674343812, '__ci_last_regenerate|i:1674343812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c738744e70acef84d61714cfe903fdf01bd56376', '172.105.247.100', 1674343813, '__ci_last_regenerate|i:1674343813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c433f30757383270f9ef356953982450935c7202', '172.105.247.100', 1674343813, '__ci_last_regenerate|i:1674343813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('320d58deb2bc7a9fa0fefd1f39998eb2f52132e0', '172.105.247.100', 1674343813, '__ci_last_regenerate|i:1674343813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a5ae9c47648049f872a9444230bd4a8c35f5f2', '31.222.203.2', 1674343923, '__ci_last_regenerate|i:1674343923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd4cc9d033deb2085431ff93c373d724c977da5', '31.222.203.2', 1674343923, '__ci_last_regenerate|i:1674343923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e038ff4652c5e5fddcbfdb48a4819ccdc864c777', '31.222.203.2', 1674343923, '__ci_last_regenerate|i:1674343923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c209de49c1c95b6ecdabbcd6c8789cb31e9281', '31.222.203.2', 1674343925, '__ci_last_regenerate|i:1674343925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e77c87e1d5fc8ac14cf71672e07d4fea16b56d7', '31.222.203.2', 1674343925, '__ci_last_regenerate|i:1674343925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b448dddb9af2ed5be3d6235ea6d0758ca537c21', '31.222.203.2', 1674343925, '__ci_last_regenerate|i:1674343925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76038e3673e2940638673fc96f3e411e699e95e', '31.222.203.2', 1674345726, '__ci_last_regenerate|i:1674345726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5512e637d6020ba21146d2fbcc1cabdcbeabbc7f', '31.222.203.2', 1674345726, '__ci_last_regenerate|i:1674345726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3c0b26fa18818c5ee203e4fd62bf67096808f4', '31.222.203.2', 1674345726, '__ci_last_regenerate|i:1674345726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f903b20cadae24d36979001076b821ccfd10905', '31.222.203.2', 1674345728, '__ci_last_regenerate|i:1674345728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a224498110f5bd19ebb9eba1d6e711959a16aa1', '31.222.203.2', 1674345728, '__ci_last_regenerate|i:1674345728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc2b48822e70a5c506aa9483e0240e0b29dc28d', '31.222.203.2', 1674345728, '__ci_last_regenerate|i:1674345728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a419d0f7395b48eed102305b3d8e37cc59ed0e51', '31.222.203.2', 1674347530, '__ci_last_regenerate|i:1674347530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce817c507ad9754eb561486f0e178567e4f9e7ba', '31.222.203.2', 1674347530, '__ci_last_regenerate|i:1674347530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852ee3abb53897ab65ca0a2d11933c6202fe0e4f', '31.222.203.2', 1674347530, '__ci_last_regenerate|i:1674347530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bba5abe178c52f94e83c9e53010d569267ae7e3', '31.222.203.2', 1674347530, '__ci_last_regenerate|i:1674347530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f1e9389d3a0d04c67abc04be61f616f17f15d3', '31.222.203.2', 1674347530, '__ci_last_regenerate|i:1674347530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dcb5fe8bc8fc89dca220091a1174cc92a63a020', '31.222.203.2', 1674347530, '__ci_last_regenerate|i:1674347530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e304be12e6320aed94f465823a2beca7b57ac778', '172.105.247.100', 1674348608, '__ci_last_regenerate|i:1674348608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447f9219b65680a7d6b257ac613d20be38a873e8', '172.105.247.100', 1674348608, '__ci_last_regenerate|i:1674348608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d4b811821beba377cf67b24af8a0ba94f0baef', '172.105.247.100', 1674348609, '__ci_last_regenerate|i:1674348609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('645f8783dcb99e2cac985fa35c12308b7c8e91d3', '172.105.247.100', 1674348609, '__ci_last_regenerate|i:1674348609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8ce064d5f68b3b405d42851ddac256f2df109d', '172.105.247.100', 1674348609, '__ci_last_regenerate|i:1674348609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eebf2fa2099a679b3c4a7e65e49aadace2465a7a', '172.105.247.100', 1674348609, '__ci_last_regenerate|i:1674348609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b3e8ab8db4a4cd9954303ca9d48aa19be426f0', '172.105.247.100', 1674348609, '__ci_last_regenerate|i:1674348609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b540888ec628e14b90635a5e761c9e22dc6da64', '172.105.247.100', 1674348609, '__ci_last_regenerate|i:1674348609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5217ba4a1bc382f454a4a968c69e439689c084b4', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d61299c03516aa076d79feefd1457c4be42f670', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69af138afee46fe944f20573d5f7a267b2076899', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5ae6b052bb8f7703ea737484beae6105488de6', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19286f4bf3e4b24aa8c28bbb65eedd4fbfdb94a4', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da394eb72d6cafb8e6dc6fb4ace1386365956ad', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e122945b2c238d782dce99495fb7b2c94752224', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18ca46d41bdc9fdfe84a95947ba70695e128e2a', '172.105.247.100', 1674348610, '__ci_last_regenerate|i:1674348610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55b38a0022ffe981e0bf69f28b38be41800cb06', '172.105.247.100', 1674348611, '__ci_last_regenerate|i:1674348611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a4253cd3aa37987060956251f30d14aa3ed118', '172.105.247.100', 1674348611, '__ci_last_regenerate|i:1674348611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa866884a44a7e9eaa5e2000e433499023a93523', '172.105.247.100', 1674348611, '__ci_last_regenerate|i:1674348611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85944cc69ea06f70438a48a1fe936a8dcf078942', '172.105.247.100', 1674348611, '__ci_last_regenerate|i:1674348611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c98ad4f47ad3b056e32982cb7b8f7376ec3ba84', '172.105.247.100', 1674348611, '__ci_last_regenerate|i:1674348611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b79dac9ecb164e4198090d4841b30a6a5ce8e6', '172.105.247.100', 1674348612, '__ci_last_regenerate|i:1674348611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16bf934e26b8bd23ef2de381ca50f33ce2ea6be0', '172.105.247.100', 1674348612, '__ci_last_regenerate|i:1674348612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c2f95ac9f76672da9b95107dcb883bc136a0d9', '172.105.247.100', 1674348612, '__ci_last_regenerate|i:1674348612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029fb6f0209d733aac1ffbcb59cf6cae81dce039', '31.222.203.2', 1674349328, '__ci_last_regenerate|i:1674349328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d471e8ee1f182c07ae1d947e8da6e87f35b5145b', '31.222.203.2', 1674349328, '__ci_last_regenerate|i:1674349328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f62954af40307a315a674ea4ff57fba48a31c77d', '31.222.203.2', 1674349328, '__ci_last_regenerate|i:1674349328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd952e3de4b916bf02da7cddb0d7eacde962bf92', '31.222.203.2', 1674349328, '__ci_last_regenerate|i:1674349328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e018486f135b4e1df3fe2f2d61e56985b5660dc8', '31.222.203.2', 1674349328, '__ci_last_regenerate|i:1674349328;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440323ae166231c19cea5a0a201c768c33423718', '31.222.203.2', 1674349328, '__ci_last_regenerate|i:1674349328;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c083e5e45bd0289e0f531b6ce6223512748795f', '31.222.203.2', 1674351127, '__ci_last_regenerate|i:1674351127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144f2f3ec6122076cb7d839fe4e7d96af28f8fcd', '31.222.203.2', 1674351127, '__ci_last_regenerate|i:1674351127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb435f29fe9d9030992731ff883bfae451704b12', '31.222.203.2', 1674351127, '__ci_last_regenerate|i:1674351127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3c4cbbd14aa786fec4c588a30416a255c1d45e', '31.222.203.2', 1674351127, '__ci_last_regenerate|i:1674351127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf51eb1619cf1f299af8449864038e1c542d875', '31.222.203.2', 1674351127, '__ci_last_regenerate|i:1674351127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b4e85348b73dcdde52cce83aeec7602260eb07', '31.222.203.2', 1674351127, '__ci_last_regenerate|i:1674351127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dec55ece5201e42c0eb51e6bc946ed815ac7571', '31.222.203.2', 1674352924, '__ci_last_regenerate|i:1674352924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23ea674da0266515ff1a8d52c90df87ae19f0e1', '31.222.203.2', 1674352924, '__ci_last_regenerate|i:1674352924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae367a00972376711453c74b2c38f50cd73b5324', '31.222.203.2', 1674352924, '__ci_last_regenerate|i:1674352924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f19a2e5574571c431b976065deb15564b9934d3', '31.222.203.2', 1674352924, '__ci_last_regenerate|i:1674352924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dec65247ba989cf3132e68ff1535da8e9bbeab8', '31.222.203.2', 1674352924, '__ci_last_regenerate|i:1674352924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af550a73d524b76fe3cc5b2eb3d87ad998478c56', '31.222.203.2', 1674352924, '__ci_last_regenerate|i:1674352924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726a36a37b0ba5980cb3b0c856831e30d00a5bfb', '172.105.247.100', 1674353408, '__ci_last_regenerate|i:1674353408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45d0e86e48b8aa69bb0024aed511f81d92eeaa7', '172.105.247.100', 1674353409, '__ci_last_regenerate|i:1674353409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1cd731e802e71b921982617b1f0cdd48259bda', '172.105.247.100', 1674353409, '__ci_last_regenerate|i:1674353409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b39050c4e910cdca9750f6c0c4031d70c01a4e8', '172.105.247.100', 1674353409, '__ci_last_regenerate|i:1674353409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28116969190af601c627c3e3728090caee4e7f5e', '172.105.247.100', 1674353409, '__ci_last_regenerate|i:1674353409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8fd3fb18b8000c38fd89f426ced34d97c3bcb05', '172.105.247.100', 1674353410, '__ci_last_regenerate|i:1674353410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16302ba2b003855822cd0d9618cdc33fb9ca6e3', '172.105.247.100', 1674353410, '__ci_last_regenerate|i:1674353410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428441135e18a739bbfc93c2258e23f57c811306', '172.105.247.100', 1674353410, '__ci_last_regenerate|i:1674353410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78346d6567141862c83bc415ed4fffb890d538ed', '172.105.247.100', 1674353410, '__ci_last_regenerate|i:1674353410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ebcac349aca3a618a28977ae373bde10adc33c5', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbf5ecc8713091c667464f4c0fdc3efbe51ace9', '172.105.247.100', 1674353410, '__ci_last_regenerate|i:1674353410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11075709e08da12a3e0498e77b478217a2680a8f', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31ae14469149eb63864216024d2e7a6ae02b6cc', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12db09cbfbb68fe375f8a54eb2249f2dc23e93a4', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac4b682131d795b082001290b0c8327a56ba250', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc3b254cc43d73f82b48ae28668beca49c69634', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d62b6409d94e4ebcbec0d4f97e667be9f1e940bc', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('152b38b4aef415ef0cc633e15725cee48756d30f', '172.105.247.100', 1674353411, '__ci_last_regenerate|i:1674353411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c386aa570fdcca6b982791a5a29aa3ff454f4382', '172.105.247.100', 1674353412, '__ci_last_regenerate|i:1674353412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d30590d3d3c1f482dadc2ee1026c065157668a', '172.105.247.100', 1674353412, '__ci_last_regenerate|i:1674353412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8c191db65e737847e44fbff05bdf26a5a26dab5', '172.105.247.100', 1674353412, '__ci_last_regenerate|i:1674353412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2e218c825c5f50c22c9f77618b63fabc507de9', '172.105.247.100', 1674353413, '__ci_last_regenerate|i:1674353412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6479ec598bd73a11901411489d712196ab91e5', '172.105.247.100', 1674353413, '__ci_last_regenerate|i:1674353413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ab17a8f32e1a23d07aba6957676f89eb60fb73', '172.105.247.100', 1674353413, '__ci_last_regenerate|i:1674353413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e246c1b805dea456eb0855846ce6d87598c5a0e1', '31.222.203.2', 1674354726, '__ci_last_regenerate|i:1674354726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ec25e69f1618703745dec597bc87310a204b63', '31.222.203.2', 1674354728, '__ci_last_regenerate|i:1674354728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ca534f86745c0089b45cce5701217f47caa97b', '31.222.203.2', 1674354728, '__ci_last_regenerate|i:1674354728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7865b48a7af8c3922deb8f2baf97cf90fa053631', '31.222.203.2', 1674354728, '__ci_last_regenerate|i:1674354728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49dbe0ec31769f7f56b1f454f45b4e2d0151a5b0', '31.222.203.2', 1674354728, '__ci_last_regenerate|i:1674354728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6eea8a4470d58a606f49672e9d359013a70989a', '31.222.203.2', 1674354728, '__ci_last_regenerate|i:1674354728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1870db15cee793a90517e8a33b442ea4f9a39d9a', '31.222.203.2', 1674356526, '__ci_last_regenerate|i:1674356526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ed9f497f8f6e10381be09c02e5a52812997873', '31.222.203.2', 1674356528, '__ci_last_regenerate|i:1674356528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77598f2f7b79b607b71dd23664faa0f6ba75c3d', '31.222.203.2', 1674356528, '__ci_last_regenerate|i:1674356528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ba0fa6094cdfde2ddc86dd141fb41b3df32bad', '31.222.203.2', 1674356528, '__ci_last_regenerate|i:1674356528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3f1544c67254d9f7b45cff8bddcd2fe7bb72b7', '31.222.203.2', 1674356528, '__ci_last_regenerate|i:1674356528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660baf30d465dcd632ba3a130f67827ab8dc3e6a', '31.222.203.2', 1674356528, '__ci_last_regenerate|i:1674356528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f1a6d8d13cab86267a6b3eb06b2f806e319388', '31.222.203.2', 1674358323, '__ci_last_regenerate|i:1674358323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794121b52e93b40c8ef3d5ebc46330bfec685f60', '31.222.203.2', 1674358323, '__ci_last_regenerate|i:1674358323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b60633309ef754418f8c9e1ed0e6b95c640af7', '31.222.203.2', 1674358323, '__ci_last_regenerate|i:1674358323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d57e39c63241f6d06acc001972017fceeb7299', '31.222.203.2', 1674358323, '__ci_last_regenerate|i:1674358323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c765850ebe3bde6ceb0705207b6491dd2fd0a21a', '31.222.203.2', 1674358323, '__ci_last_regenerate|i:1674358323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a545dadc02b88def1c605d3b3675743e7c906a87', '31.222.203.2', 1674358323, '__ci_last_regenerate|i:1674358323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69cad6101b7f410f43f386d6f2df03c746038f6f', '172.105.247.100', 1674358808, '__ci_last_regenerate|i:1674358808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76bd002084e20aebfc4f99404609a13c78b5ce1b', '172.105.247.100', 1674358809, '__ci_last_regenerate|i:1674358808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dabe9c107325dcdfdee8242cf248a9a781e744b7', '172.105.247.100', 1674358809, '__ci_last_regenerate|i:1674358809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751f8a3ab502b2f7721bde0f94eb21d5fdf5deb9', '172.105.247.100', 1674358809, '__ci_last_regenerate|i:1674358809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840dcb85f92601c2a029ead4ea376c405b88e8f2', '172.105.247.100', 1674358809, '__ci_last_regenerate|i:1674358809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94bccf116600bdd54c6e41b27a26e724bbece4c3', '172.105.247.100', 1674358809, '__ci_last_regenerate|i:1674358809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4d87bdc627173da43482777dc97704322dc97c', '172.105.247.100', 1674358809, '__ci_last_regenerate|i:1674358809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b875ff84c90bc8e3380912adca68d149267d76dc', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae9e5cb9909a07bc806f95283d16710ed3a45f51', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c574e6ffc115e1a7082a00ec9a44b52b9242b7a', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6172a9563fbc518a4b4aa4e037d7202b4938a5', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5cad33a6599319b57654ce6701bf4fba314b030', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a45c30fbf3a2ebc25a17eecc1fee8b4dc320531b', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122f882a08bd800d5ec4fcd21ecf59eed54e9920', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('778446aee318d6974f0f90d11f488cec4bca6380', '172.105.247.100', 1674358810, '__ci_last_regenerate|i:1674358810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1fd6d2754aa8c7dd8e3f486044ca997bc574db', '172.105.247.100', 1674358811, '__ci_last_regenerate|i:1674358810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113fcf48f8c4b9121e51e826da4c89e33a1ad881', '172.105.247.100', 1674358811, '__ci_last_regenerate|i:1674358811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8991610f66dc0f5edcee2ca5a956cd6b240073', '172.105.247.100', 1674358811, '__ci_last_regenerate|i:1674358811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7fbbbf4d042a6a18707b9b771ea38a035276cb3', '172.105.247.100', 1674358811, '__ci_last_regenerate|i:1674358811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13da6456ab3a595f95b6cc16efeb1a4c33fa0e25', '172.105.247.100', 1674358811, '__ci_last_regenerate|i:1674358811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289136d950a2eb6b4f975049653bec1f4be71fb8', '172.105.247.100', 1674358811, '__ci_last_regenerate|i:1674358811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35936e96fc2bdd885a255cbf746ccb83868d1652', '172.105.247.100', 1674358812, '__ci_last_regenerate|i:1674358812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18403f6152f9139cc1de5a8fd10be85ed813c25d', '172.105.247.100', 1674358812, '__ci_last_regenerate|i:1674358812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f50d6f74433ebc9da3f5800c3ecd08bf42265e', '172.105.247.100', 1674358812, '__ci_last_regenerate|i:1674358812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d123eaefaa3e57950282a9deca53a7ba4d31cacd', '31.222.203.2', 1674360124, '__ci_last_regenerate|i:1674360124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4203950d23c86ce5e9b98824291b57bb1861b50c', '31.222.203.2', 1674360124, '__ci_last_regenerate|i:1674360124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92b8f713691476f66026f48d753cb14c7f6046c2', '31.222.203.2', 1674360124, '__ci_last_regenerate|i:1674360124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708d58e54aee2c9b2bd9142b547af9c1fa223579', '31.222.203.2', 1674360125, '__ci_last_regenerate|i:1674360125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a1a89240fcc4e6fb9466231d879411cb571ede', '31.222.203.2', 1674360125, '__ci_last_regenerate|i:1674360125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76fe3a9814fc98381773243a30b0219218167253', '31.222.203.2', 1674360125, '__ci_last_regenerate|i:1674360125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02414c514cb1550ee25cdf3559b82e09d247c1b', '31.222.203.2', 1674361924, '__ci_last_regenerate|i:1674361924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd3a50d3981ed0bc3c6229d19407db6af9b2cffe', '31.222.203.2', 1674361924, '__ci_last_regenerate|i:1674361924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db03c5fba733cb5b7f48e749be1a9e12c15601e', '31.222.203.2', 1674361924, '__ci_last_regenerate|i:1674361924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39fa221a35046b7b7fa7c66d11ea5c2d65a635ae', '31.222.203.2', 1674361924, '__ci_last_regenerate|i:1674361924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f44776470aa59296702a0a8df7388a35c8e6bb', '31.222.203.2', 1674361924, '__ci_last_regenerate|i:1674361924;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1095cf17e9af792e3ce3d9a1c1b2cc78e1f22f30', '31.222.203.2', 1674361924, '__ci_last_regenerate|i:1674361924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc3cc7352d7f535f3bce3eacabc67c1cca977149', '172.105.247.100', 1674363008, '__ci_last_regenerate|i:1674363008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adc06c2601f6460fd66e6477cc22914b3dba247', '172.105.247.100', 1674363008, '__ci_last_regenerate|i:1674363008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005d8ebacf7dad24a7c3b55c5e7fc78e166be49b', '172.105.247.100', 1674363008, '__ci_last_regenerate|i:1674363008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f041b2fb45ab3640a1ae48f5fe7a70e21a9995e9', '172.105.247.100', 1674363008, '__ci_last_regenerate|i:1674363008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb718a67e5802c2b239029e89da52ea18f3cf815', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a70015ccda18f781f915a45835886039849974', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4b5bdefd2dbaf838a18f5fda67bf563605fe70', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45078653d5ad2b28d2f5d8f9d854dcbea3876fae', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c5337d3c146dc058e326ca40bb9622554835d0a', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db2a63a5d38300328650548c5e5179d88160dba', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ecd02c8094bcf244a182a6b168bf4f9e32dbdb', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba06bc6e7716c109a707962a976258f39a42cb9', '172.105.247.100', 1674363009, '__ci_last_regenerate|i:1674363009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8236dff2d9bcca00a53c81542e00faef040b6f4e', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11947ece172cccb015ad4b2077cee0c5f1d7a9ab', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ec9326858c24efd638463c2e45179889080278', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ffd5fbf5fb2e401732309028fd4528d8eff2b0', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a9f16d08d2565b2bac1962f021d6071e62eb97', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7130adff1095a370d76a560704ba6b02cca161b3', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ed77ed9e8d12dc7b900037ee73a21f70ed4d54', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9588427f4436cf504663d3553c4a56edc99df75c', '172.105.247.100', 1674363010, '__ci_last_regenerate|i:1674363010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017c88fb721d062d46cec7834bfe4981f91e8b79', '172.105.247.100', 1674363011, '__ci_last_regenerate|i:1674363011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fbfb44cd98bba584070f1cd529f1e0a18631c14', '172.105.247.100', 1674363011, '__ci_last_regenerate|i:1674363011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02eaeb524e79560545cd6ac693dd5ad534e4e813', '172.105.247.100', 1674363011, '__ci_last_regenerate|i:1674363011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa903a7b20d93feda378ffecdd08ede7cc4ff0e', '172.105.247.100', 1674363011, '__ci_last_regenerate|i:1674363011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924be8c6da2390586d7260756a602edce0df5666', '31.222.203.2', 1674363731, '__ci_last_regenerate|i:1674363731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8225852b357a987ddeedc874ae00dde71a80a3d5', '31.222.203.2', 1674363731, '__ci_last_regenerate|i:1674363731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('628c9244d37321fba5126b41f5980ccec0b4d831', '31.222.203.2', 1674363731, '__ci_last_regenerate|i:1674363731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b734e5c7324ceef46fc1ac19dbd0eb9c3a7f3ce', '31.222.203.2', 1674363733, '__ci_last_regenerate|i:1674363733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23d7de2d331dbbb83bd6d9177ddbb598c54814c', '31.222.203.2', 1674363733, '__ci_last_regenerate|i:1674363733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e5d91c7c81370a97ca04849ee9fff071c06d67', '31.222.203.2', 1674363733, '__ci_last_regenerate|i:1674363733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf66b329ac2b214718ae139b1cc0a6e17ae735e', '31.222.203.2', 1674365522, '__ci_last_regenerate|i:1674365522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caafe5668e9e8536d24ce73f25aca9b9ddab4cfb', '31.222.203.2', 1674365522, '__ci_last_regenerate|i:1674365522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7c5dc2e8f3a05b842325e3a958e9a882a9d8d9', '31.222.203.2', 1674365522, '__ci_last_regenerate|i:1674365522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd33de73a6bdbf15d8e358e0945fa2af4a8591fa', '31.222.203.2', 1674365524, '__ci_last_regenerate|i:1674365524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035bc1a511fa5d490715c08ceaf503a7f01d4654', '31.222.203.2', 1674365524, '__ci_last_regenerate|i:1674365524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf80ebe6a5ae61040bb83868fadb346e341a214', '31.222.203.2', 1674365524, '__ci_last_regenerate|i:1674365524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14dc5e3c5c57c8b77e908153bbe79d481fe2221b', '31.222.203.2', 1674367326, '__ci_last_regenerate|i:1674367326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8fce55eda35b82d8740bd5993744fc550b24cca', '31.222.203.2', 1674367326, '__ci_last_regenerate|i:1674367326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3342827641792ec109b2818574ec9980e626970e', '31.222.203.2', 1674367326, '__ci_last_regenerate|i:1674367326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be909be4104a77d91bb28eb3dc7cc386e202b7d7', '31.222.203.2', 1674367326, '__ci_last_regenerate|i:1674367326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec77c0386dc9fc9ed5fbc055b0272a594ca79be9', '31.222.203.2', 1674367326, '__ci_last_regenerate|i:1674367326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d7c86cd5f063e3e664795d07ead3a120c63c86', '31.222.203.2', 1674367326, '__ci_last_regenerate|i:1674367326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fddb8e911ad588c5ab3b7bfdc3f71e00754ee9', '37.111.218.81', 1674368620, '__ci_last_regenerate|i:1674368620;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674368587;register_id|s:3:\"302\";cash_in_hand|s:8:\"900.0000\";register_open_time|s:19:\"2023-01-22 12:15:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0d58bbbbeb6242b287c36afcb5f65b57c8386b', '172.105.247.100', 1674368408, '__ci_last_regenerate|i:1674368408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c575739680b0e9417f9c6d7a9b8d846dbc99d4', '172.105.247.100', 1674368408, '__ci_last_regenerate|i:1674368408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5dfa305f1b2c5784d9a435df8a5c0861419d458', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff11eeccab28953c04c9ae0ab27d3c08d8f1befa', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646ee77507d210c783f22d3ce94b04c5655217c5', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63da8b9302c32dddfcdc463ccf7a62f4a8662162', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0167a6f5149314247b136bc7741be18399c2cd97', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d01a74818988249937d40232de85d88db7645c', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1192899056e4a651ad93b47a1c4a792f742332f6', '172.105.247.100', 1674368409, '__ci_last_regenerate|i:1674368409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09aac993ed47b4e2b7763271bb977c7321fcd496', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3e1d0266f209fecf55746383547ace1f374869', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b8d80c14ccb3a3f0c42c25b5062a1e3a44380b', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfdeb38c29be0c70ad148147aa6112a6cee3f523', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6558ecb6469dafb13effe7fb2f20d9dd2acc61b1', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63feb4568192c5cba20f5b12fc15171754e8e2c7', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52b4e716242863abc6eacb8e38320292deeb8d3f', '172.105.247.100', 1674368410, '__ci_last_regenerate|i:1674368410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f891bcca78522aeb6f570ce2b0f5e61adc615ac', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c779fba44f3d4d640b186be4278537a83e8a46', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b4f8b52234687bee78bf90b782aaa82d67da11', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb7a0f8c5514bdb490b8a18c7cdcb3b9e1cc67d', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d8b777ecdcb04e07489e637c07b00979d2b3231', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12376887cd220b3c00a2e4b26746ffecc7f9a5a', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80179a5988bd78d93fe4d2556665d0c480d3e8d5', '172.105.247.100', 1674368411, '__ci_last_regenerate|i:1674368411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1430c5e370336402d23e9d3aea638a2eb5134b', '172.105.247.100', 1674368412, '__ci_last_regenerate|i:1674368412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36a741f53a3b79279eaa008760ef31f89df1602', '37.111.218.81', 1674369002, '__ci_last_regenerate|i:1674369002;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674368966;register_id|s:3:\"303\";cash_in_hand|s:9:\"1020.0000\";register_open_time|s:19:\"2023-01-22 12:24:33\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138946464516abbc6b3811f262a74a824fff61bf', '37.111.218.81', 1674369457, '__ci_last_regenerate|i:1674369457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674369284;register_id|s:3:\"304\";cash_in_hand|s:8:\"580.0000\";register_open_time|s:19:\"2023-01-22 12:31:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0347f0785a47d7a19b89b10dc576f8b6d44dc3c2', '31.222.203.2', 1674369122, '__ci_last_regenerate|i:1674369122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f7c4e2607677c44060047b9fc032808459f157', '31.222.203.2', 1674369122, '__ci_last_regenerate|i:1674369122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5b7868a591261f4765bffb1f05c83147a5293c', '31.222.203.2', 1674369122, '__ci_last_regenerate|i:1674369122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('febac94cbecdc119286a98634c7c27711e7e1fc4', '31.222.203.2', 1674369122, '__ci_last_regenerate|i:1674369122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346b3b885617636d384544dd9b5421ade1d84df0', '31.222.203.2', 1674369122, '__ci_last_regenerate|i:1674369122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a3690a642f02ec70b4f162daa2141ff96e2045', '31.222.203.2', 1674369122, '__ci_last_regenerate|i:1674369122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98862ccbfd973cef07997ecbfa6fb2c1f9f73a7f', '37.111.218.81', 1674369822, '__ci_last_regenerate|i:1674369822;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674369799;register_id|s:3:\"305\";cash_in_hand|s:8:\"370.0000\";register_open_time|s:19:\"2023-01-22 12:42:34\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e7f10a17b40aaa4e096d85ceaffbf3322e844d', '37.111.218.81', 1674370140, '__ci_last_regenerate|i:1674370140;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674370133;register_id|s:3:\"306\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-01-22 12:45:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1c22edd2ddcf7d505616830c3c6f9cc30fa4dad', '37.111.218.81', 1674370450, '__ci_last_regenerate|i:1674370450;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674370426;register_id|s:3:\"307\";cash_in_hand|s:8:\"460.0000\";register_open_time|s:19:\"2023-01-22 12:49:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ec9c2c5237ddc10b34594533830b784f05fb2f', '37.111.218.81', 1674370811, '__ci_last_regenerate|i:1674370811;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674370796;register_id|s:3:\"308\";cash_in_hand|s:9:\"1080.0000\";register_open_time|s:19:\"2023-01-22 12:54:10\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ab1326b51b78b983c3c7b1588220a50d97e4b3', '37.111.218.81', 1674371394, '__ci_last_regenerate|i:1674371394;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674371367;register_id|s:3:\"309\";cash_in_hand|s:6:\"0.0000\";register_open_time|s:19:\"2023-01-22 13:03:06\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19a58c423f9455fd9d7c5b6ad7ed07b7cc15b6c', '31.222.203.2', 1674370928, '__ci_last_regenerate|i:1674370928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85eca80d5ef6c6a319472c49bd22c3597187856', '31.222.203.2', 1674370928, '__ci_last_regenerate|i:1674370928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d380456beb5bbf21479f2ca5271502fbb8a3ac', '31.222.203.2', 1674370928, '__ci_last_regenerate|i:1674370928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ef25b393b94060686c6acb4fbd3b2dfb9c0e92', '31.222.203.2', 1674370930, '__ci_last_regenerate|i:1674370930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb5663da82006695e9a71bfcb4c425d0dbd1668', '31.222.203.2', 1674370930, '__ci_last_regenerate|i:1674370930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4428205f1cc5cdfbea2faabf19c6da4bce2fad84', '31.222.203.2', 1674370930, '__ci_last_regenerate|i:1674370930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b67d6d436afab9fefb89cc1654ef0236adc6c60', '37.111.218.81', 1674372122, '__ci_last_regenerate|i:1674372122;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674372078;register_id|s:3:\"310\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2023-01-22 13:10:36\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97d4c567de3165fec1123ef04c3d50abe91fd99', '37.111.218.81', 1674374139, '__ci_last_regenerate|i:1674374139;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674372350;register_id|s:3:\"310\";cash_in_hand|s:8:\"750.0000\";register_open_time|s:19:\"2023-01-22 13:10:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa1c14741aed5ffbeae81e1daac0daae40e3b99', '31.222.203.2', 1674372723, '__ci_last_regenerate|i:1674372723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b1726fae9d4f60838542712446387e356df630c', '31.222.203.2', 1674372723, '__ci_last_regenerate|i:1674372723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8f371dd77f0a70e350702f6955712938746ce0', '31.222.203.2', 1674372723, '__ci_last_regenerate|i:1674372723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d919e4a374201ebe8fc2402f5d03e228076f9af6', '31.222.203.2', 1674372723, '__ci_last_regenerate|i:1674372723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6fce0871a81fd86dc9154703d666e021c488e3b', '31.222.203.2', 1674372723, '__ci_last_regenerate|i:1674372723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee17138397ad7b569186d330690e70ea2f77a5f', '31.222.203.2', 1674372723, '__ci_last_regenerate|i:1674372723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c3a32bd6ae357f691d8d619f986713ebcab8625', '116.204.230.26', 1674374119, '__ci_last_regenerate|i:1674374119;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674295071\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e0de52c89403fd18ad9aa715228c1155146538', '172.105.247.100', 1674373810, '__ci_last_regenerate|i:1674373810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c90f9d0ddc173bff8e75ce0e24c43da2e3f17f', '172.105.247.100', 1674373810, '__ci_last_regenerate|i:1674373810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69214f3fa5d3168435b1ee47a1d058396cbeaccc', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05a0f89b33175f9f1cc08f8ed7494d338e58180', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e522783db43a11957760d52f7b3a07d97b4cffd', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13c7e7501499934e1022208611c1df785374eae', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758b1d2116c62ed245c4707557481fb9188fe8e6', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77726b6be988a30422b104e82713c8303ddc60c', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6864115306390a9af83642e4725469fe3b642ea', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf7eee25bbfecd8232c8676e1a4df9ce86c51da', '172.105.247.100', 1674373813, '__ci_last_regenerate|i:1674373813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07789f14690dc70c1e240951bde8dd0853f1cf74', '172.105.247.100', 1674373814, '__ci_last_regenerate|i:1674373814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbe8f22728d770140d5f86b1075584b11463cc3', '172.105.247.100', 1674373814, '__ci_last_regenerate|i:1674373814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb47ed02db491c1d6af420e6f8f311488dd9c8d8', '172.105.247.100', 1674373814, '__ci_last_regenerate|i:1674373814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccaf7731fc621446cac7a3f3980834cc1a628005', '172.105.247.100', 1674373814, '__ci_last_regenerate|i:1674373814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3cf53bce6e9b3cda757aa3f474b4ba6ee153294', '172.105.247.100', 1674373814, '__ci_last_regenerate|i:1674373814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc151d38c00fa7f3d42f8a47c75f8f6977481ee', '172.105.247.100', 1674373814, '__ci_last_regenerate|i:1674373814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32fc6a87c6d175df24e424213855e117e76be763', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a939f6a50899a5a73b050762956fa3a00d1a4229', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5697b684e0e6d823459ac6d4f324280235bdbf58', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35978501bea010ec9cb8fd1dce411b0323357707', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fa588987ef91d25cb01b3346b3be5b090fb053', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbfb3160356389edf78e92cd6b8fcf77b7c2757', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c973d6ba549e0ab4d612170f5a7a06edf250ec', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55bf37033947274ee9a1adc103377f4798240d05', '172.105.247.100', 1674373815, '__ci_last_regenerate|i:1674373815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3520b90d6ae7e724c59fe9cc7dd7a6358a9b9425', '116.204.230.26', 1674377894, '__ci_last_regenerate|i:1674377894;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674295071\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1674374119;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f83309531ecd9c94afc759f524860b0d9b0f9f', '37.111.218.81', 1674375069, '__ci_last_regenerate|i:1674375069;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674375050;register_id|s:3:\"311\";cash_in_hand|s:8:\"850.0000\";register_open_time|s:19:\"2023-01-22 13:59:39\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a752c7a1c2e3c9706af9e9d19c1f19abe0bcef5', '31.222.203.2', 1674374523, '__ci_last_regenerate|i:1674374523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3deac1a853558b43d7b619539b6b6f10d5ce49d6', '31.222.203.2', 1674374523, '__ci_last_regenerate|i:1674374523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408d49819b714c0bc46db6150bbba4e94e5f6994', '31.222.203.2', 1674374523, '__ci_last_regenerate|i:1674374523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3518d6b3338c3ee54e1f579d49b9f8956e615f97', '31.222.203.2', 1674374525, '__ci_last_regenerate|i:1674374525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f660d1bad937a1e3700c168c6826b8b046aa13', '31.222.203.2', 1674374525, '__ci_last_regenerate|i:1674374525;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba31f4a5231bd46f747f3882f1c3c3227341d02', '31.222.203.2', 1674374525, '__ci_last_regenerate|i:1674374525;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9fa6af4a5c50598cf2dcb1fa869fc5afa55baa', '37.111.218.81', 1674375758, '__ci_last_regenerate|i:1674375758;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674375742;register_id|s:3:\"313\";cash_in_hand|s:9:\"1070.0000\";register_open_time|s:19:\"2023-01-22 14:15:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7096d748ce20a19c9f532bc1f4f92c2e7c294bf2', '37.111.218.81', 1674376207, '__ci_last_regenerate|i:1674376207;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674376121;register_id|s:3:\"314\";cash_in_hand|s:8:\"350.0000\";register_open_time|s:19:\"2023-01-22 14:27:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34dcf488bc9650f2ff265159da4e38adf5f786d0', '37.111.218.81', 1674376572, '__ci_last_regenerate|i:1674376572;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674376497;register_id|s:3:\"315\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2023-01-22 14:31:58\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b175889ad02ddaa0a760b49a726fb5618349e09', '31.222.203.2', 1674376321, '__ci_last_regenerate|i:1674376321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819318e619cf8d6f4c1861baccf2da91354771eb', '31.222.203.2', 1674376321, '__ci_last_regenerate|i:1674376321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44ebba150a0e84c93fbc54ef711ae77adab58778', '31.222.203.2', 1674376321, '__ci_last_regenerate|i:1674376321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dbe12c03358ba81adf77e5adf791132ae3904f', '31.222.203.2', 1674376323, '__ci_last_regenerate|i:1674376323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf4f1ae79b671f6a3d9763db244816061646354', '31.222.203.2', 1674376323, '__ci_last_regenerate|i:1674376323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e09d8010de58fe3e1d95fbb38283fd3834e669f', '31.222.203.2', 1674376323, '__ci_last_regenerate|i:1674376323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d168b064b73d51f122a6ca12e8af884fcc5863', '37.111.218.81', 1674377394, '__ci_last_regenerate|i:1674377394;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674377248;register_id|s:3:\"315\";cash_in_hand|s:8:\"570.0000\";register_open_time|s:19:\"2023-01-22 14:31:58\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d213e8abe5680ae4a308d1633be26c0c0afb6b3d', '37.111.218.81', 1674378196, '__ci_last_regenerate|i:1674378196;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674378186;register_id|s:3:\"317\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2023-01-22 14:59:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6110cbb255b3d684c7c86b91a93d3d7ca660c96', '116.204.230.26', 1674377914, '__ci_last_regenerate|i:1674377894;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674295071\";last_ip|s:14:\"116.204.230.18\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1674377914;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c708aad4d072cfef45210e3df3a7590687ad8f2', '37.111.218.81', 1674377796, '__ci_last_regenerate|i:1674377796;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"new\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674377796;register_id|s:3:\"316\";cash_in_hand|s:8:\"280.0000\";register_open_time|s:19:\"2023-01-22 14:50:36\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc09832ab83e2c9db6ce5f584e218a8247c82236', '31.222.203.2', 1674378125, '__ci_last_regenerate|i:1674378125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbe330d314cb7c9af69e70f7b8f283ad9e54fe1', '31.222.203.2', 1674378125, '__ci_last_regenerate|i:1674378125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82fff0e5210005d93772e4f0999fd4dc128b291c', '31.222.203.2', 1674378125, '__ci_last_regenerate|i:1674378125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6758f8ee4edb17e9b2c69dd8276d8c0e63723d95', '31.222.203.2', 1674378127, '__ci_last_regenerate|i:1674378127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d5ec3d36eb022466debd9cc9b2d67bc2f28e36', '31.222.203.2', 1674378127, '__ci_last_regenerate|i:1674378127;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733ec9f9ab360cef47565c6028e216f7e3e83292', '31.222.203.2', 1674378127, '__ci_last_regenerate|i:1674378127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16dbd65296d077729fc96b4d33eda3b4a151d36', '37.111.218.81', 1674378543, '__ci_last_regenerate|i:1674378543;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674378359;register_id|s:3:\"317\";cash_in_hand|s:8:\"700.0000\";register_open_time|s:19:\"2023-01-22 14:59:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb9c1d73304f7e99a6eddac4660267b399c1b16', '37.111.218.81', 1674378848, '__ci_last_regenerate|i:1674378848;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674378842;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0119fcc1d3c17f50acb10353f344449767f50f61', '37.111.218.81', 1674379434, '__ci_last_regenerate|i:1674379434;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674379326;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb2ee6e636d7da84c0e212e8c96358cf1dadbac', '172.105.247.100', 1674379209, '__ci_last_regenerate|i:1674379209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e7badb4b71ddbacf9d3e2e4c488944902d1a36', '172.105.247.100', 1674379209, '__ci_last_regenerate|i:1674379209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980fd13e4610341b4e3652bbc94490686051ab22', '172.105.247.100', 1674379210, '__ci_last_regenerate|i:1674379210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8853ca0a3f239841abb427187d6e15195e341f2f', '172.105.247.100', 1674379210, '__ci_last_regenerate|i:1674379210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b285e67366ef411d7eeb37efc5e2cdb6b15488', '172.105.247.100', 1674379210, '__ci_last_regenerate|i:1674379210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091de0bdc5df14a840c6f1c4cab429af0fb6c9b1', '172.105.247.100', 1674379210, '__ci_last_regenerate|i:1674379210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a96cc060a27d61f6f961c030ae977c0c6acc929', '172.105.247.100', 1674379211, '__ci_last_regenerate|i:1674379211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b67633c7f25dae8e0d1076b723e362f01c90fe', '172.105.247.100', 1674379211, '__ci_last_regenerate|i:1674379211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f97b7a50d3ec8e45648a7bba825989bff2b65d', '172.105.247.100', 1674379211, '__ci_last_regenerate|i:1674379211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe809b9a2ddeadc7f2835af779e959b7e7320b2a', '172.105.247.100', 1674379211, '__ci_last_regenerate|i:1674379211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792b14cb3c60ea5de97376dede4d0e97a04735bf', '172.105.247.100', 1674379212, '__ci_last_regenerate|i:1674379212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6af2ab32ec1a0211edbf9f2752e37d62e6fb05', '172.105.247.100', 1674379212, '__ci_last_regenerate|i:1674379212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a1de575dca66a45808d50aa61d2989767aadd3', '172.105.247.100', 1674379213, '__ci_last_regenerate|i:1674379213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56b770cd40a8a433512f392f291a8cfea13fe07', '172.105.247.100', 1674379214, '__ci_last_regenerate|i:1674379214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc342691657f8f400b0ffe26d17a67d7409e63a', '172.105.247.100', 1674379214, '__ci_last_regenerate|i:1674379214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('065182cbafa9d3ff2c3e13d1cafe6760d1e4ac83', '172.105.247.100', 1674379214, '__ci_last_regenerate|i:1674379214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b3df3cbe1869de5be3242036fbd11e66a20d55', '172.105.247.100', 1674379214, '__ci_last_regenerate|i:1674379214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4fc6132d6bd712607572db79bb52e15292e287e', '172.105.247.100', 1674379215, '__ci_last_regenerate|i:1674379215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2015440e2075ce539c2eb65828e9649a0e550e', '172.105.247.100', 1674379215, '__ci_last_regenerate|i:1674379215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c6cabcd0584b88e55b207b1175877b9beecd39', '172.105.247.100', 1674379215, '__ci_last_regenerate|i:1674379215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd3f6572c23d57d060f72cf051b28105475e5d9', '172.105.247.100', 1674379216, '__ci_last_regenerate|i:1674379216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f293c734cd4284d439b0dd15f9077f7971a6702a', '172.105.247.100', 1674379216, '__ci_last_regenerate|i:1674379216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f3e217e5f01f37a33b42df00a1d4f2b00f3b99', '172.105.247.100', 1674379216, '__ci_last_regenerate|i:1674379216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73e0a05e72a8f9a3d0c87a179f49fbc84c03000', '172.105.247.100', 1674379216, '__ci_last_regenerate|i:1674379216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b08fe1c27cf52139996506909d84a1be5c03a18', '37.111.218.81', 1674379788, '__ci_last_regenerate|i:1674379788;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674379717;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8ce6d725e821e5f61780105505070079c13f7f', '37.111.218.81', 1674380504, '__ci_last_regenerate|i:1674380504;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674379717;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48070b743f66643af84b6c9726769c5d3da38b0', '31.222.203.2', 1674379918, '__ci_last_regenerate|i:1674379918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47eb27109cf84a5e8c1e3953b92fbab217ef4b1', '31.222.203.2', 1674379918, '__ci_last_regenerate|i:1674379918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a998992fdbaa9b96eb794ebf0f1bfb8d8102fd3', '31.222.203.2', 1674379918, '__ci_last_regenerate|i:1674379918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5575340e942212bb83e8b1054a9085a44f8a79a', '31.222.203.2', 1674379919, '__ci_last_regenerate|i:1674379919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6f2d184dece3cac2ea1d2c341eab42c2ebac23', '31.222.203.2', 1674379919, '__ci_last_regenerate|i:1674379919;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b930ee3b9527769ed38fad90b76591c4156ddb', '31.222.203.2', 1674379919, '__ci_last_regenerate|i:1674379919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0690f2cbf7a253c4ec23b48e803485242d482e92', '37.111.218.81', 1674381151, '__ci_last_regenerate|i:1674381151;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674380504;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('266ca1dd62e22ed9bcb26c3cd444b495e8f34b29', '37.111.218.81', 1674388674, '__ci_last_regenerate|i:1674388674;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674381440;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a178bf1bd4184d62a4664e3241d43cc7ce88ea1', '31.222.203.2', 1674381720, '__ci_last_regenerate|i:1674381720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbd381ef68a510f7a056289c9fb2c335491a447', '31.222.203.2', 1674381720, '__ci_last_regenerate|i:1674381720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ffed7742861bee32ec489004a9e18bde09f320', '31.222.203.2', 1674381720, '__ci_last_regenerate|i:1674381720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4603238763ccbefc5f4fb2af1fa04393e67066d', '31.222.203.2', 1674381723, '__ci_last_regenerate|i:1674381723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0807c8cfec739c19ac0ff18ea2a36aa0419753bd', '31.222.203.2', 1674381723, '__ci_last_regenerate|i:1674381723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958766467aeaa7d4c63760430f05c2486d6bffe9', '31.222.203.2', 1674381723, '__ci_last_regenerate|i:1674381723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ded630bd5518263a90e3c85a3231274a00f56e7', '31.222.203.2', 1674383520, '__ci_last_regenerate|i:1674383520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ea7606bc6bcd7c1fcedd9bb87bc60286e3a171', '31.222.203.2', 1674383520, '__ci_last_regenerate|i:1674383520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba4d4e2d057792ec5eb8cd6fb57b03b7d66b10c', '31.222.203.2', 1674383520, '__ci_last_regenerate|i:1674383520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b29a49225436c832bea2b5c3c387516aec71cd4', '31.222.203.2', 1674383521, '__ci_last_regenerate|i:1674383521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7283455b4f4a674d40db7eb053e3b49ef3d1ad7', '31.222.203.2', 1674383521, '__ci_last_regenerate|i:1674383521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be69fae40ea884d22f5035b2dd76202aa785dd6e', '31.222.203.2', 1674383521, '__ci_last_regenerate|i:1674383521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6a1bee38ce3a5a098b6f8d7b6c4a6294d9a675', '172.105.247.100', 1674384610, '__ci_last_regenerate|i:1674384610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2deba9a84425dee48a8bb71252f7313b4955fe52', '172.105.247.100', 1674384610, '__ci_last_regenerate|i:1674384610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4591dcb8d15e52f4cdb47c856d28edd1bd17f6', '172.105.247.100', 1674384610, '__ci_last_regenerate|i:1674384610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33955a17106dbbec8c00a5a8cd3b7701e127ed86', '172.105.247.100', 1674384611, '__ci_last_regenerate|i:1674384611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab10c77b3965bdb2004b9abad2921865a94c118f', '172.105.247.100', 1674384611, '__ci_last_regenerate|i:1674384611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65867e15f341015d57c2810e3710942b3d8d2b86', '172.105.247.100', 1674384611, '__ci_last_regenerate|i:1674384611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b49cc9c9df87afb1338bd2d38e85d8d73e26e809', '172.105.247.100', 1674384611, '__ci_last_regenerate|i:1674384611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ddf6210d0ae2c80ee9ca7d70f217a617625b2df', '172.105.247.100', 1674384612, '__ci_last_regenerate|i:1674384612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7885b7b04971bdd5c058ca7b724e093ad0c9a7', '172.105.247.100', 1674384612, '__ci_last_regenerate|i:1674384612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dc192bb43a679db5a569f0cb18078651d73876', '172.105.247.100', 1674384612, '__ci_last_regenerate|i:1674384612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d824fd01a4056e743de2bad5bb07310c75627ee', '172.105.247.100', 1674384613, '__ci_last_regenerate|i:1674384613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5273ee8ce0de6a6a19aff0f0dd766f385c4c5025', '172.105.247.100', 1674384613, '__ci_last_regenerate|i:1674384613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bcfa5bca10c420abd2912edf4a4fbbd0545db5', '172.105.247.100', 1674384613, '__ci_last_regenerate|i:1674384613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55cf720f4a8d437e8add484a90445a8aea7f7797', '172.105.247.100', 1674384614, '__ci_last_regenerate|i:1674384614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0353972dad7169f0add30188c64d3ab3d10bff6d', '172.105.247.100', 1674384614, '__ci_last_regenerate|i:1674384614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34fd6c9ea703bc59f20f25bea1c61cfa7babd54', '172.105.247.100', 1674384614, '__ci_last_regenerate|i:1674384614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c67eb579a6ea03a6a938dc97db0051e135ffc2f', '172.105.247.100', 1674384614, '__ci_last_regenerate|i:1674384614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cedf26488b012faf98575cd1000067dd6ae1c1', '172.105.247.100', 1674384615, '__ci_last_regenerate|i:1674384615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6018f43542758e1b07ae02db10954afbea6d168b', '172.105.247.100', 1674384615, '__ci_last_regenerate|i:1674384615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98528aa9370f57f70a5c69e418c35eddcc41102a', '172.105.247.100', 1674384615, '__ci_last_regenerate|i:1674384615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa94b9cef52d2fac227e41b5aa785438be71e2de', '172.105.247.100', 1674384616, '__ci_last_regenerate|i:1674384616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae68e9cf27aa90b11d20e5c5790a8dc6db7d8a5c', '172.105.247.100', 1674384616, '__ci_last_regenerate|i:1674384616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d1893f07ec54d12b21e4a84c61ffb8a30d32f28', '172.105.247.100', 1674384616, '__ci_last_regenerate|i:1674384616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06eb4188c691b945d70ae86a64a4c7dc2b61bb5e', '172.105.247.100', 1674384616, '__ci_last_regenerate|i:1674384616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b093a6364d269e31c357709c5c8283d6a3361bb1', '31.222.203.2', 1674385322, '__ci_last_regenerate|i:1674385322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720c19c4ef91195026ac59421bb27de4d0a264e9', '31.222.203.2', 1674385322, '__ci_last_regenerate|i:1674385322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed83c194eca8116740ec08e361af42f24898a960', '31.222.203.2', 1674385322, '__ci_last_regenerate|i:1674385322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca5b082f2067cb054457ff5fe00b6abf75e8f14', '31.222.203.2', 1674385322, '__ci_last_regenerate|i:1674385322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef83421484875f6369e9a6a9435d1fb8b599193', '31.222.203.2', 1674385322, '__ci_last_regenerate|i:1674385322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65bfe39b233b188027e29872498c2437cae9a8ea', '31.222.203.2', 1674385322, '__ci_last_regenerate|i:1674385322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b89fd3a506d25ac239dc512d6bcd57746951eba', '31.222.203.2', 1674387125, '__ci_last_regenerate|i:1674387125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429be9340d25ea00b119ced0c951cb6ab42b5f59', '31.222.203.2', 1674387125, '__ci_last_regenerate|i:1674387125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9623e6837f892ca186a104f7f07eb37b23cdbd8e', '31.222.203.2', 1674387125, '__ci_last_regenerate|i:1674387125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b3e8907391669670747ef3731068a4707dac11', '31.222.203.2', 1674387126, '__ci_last_regenerate|i:1674387126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e10ccc1b854f5cf770ace315d20af41b7024f98', '31.222.203.2', 1674387126, '__ci_last_regenerate|i:1674387126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db91f3fbeaabc6b562fb5a933f1cf2f9960334ab', '31.222.203.2', 1674387126, '__ci_last_regenerate|i:1674387126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaddb313fbdf693ec4560dc4a4d196b71082d7fb', '37.111.218.81', 1674388642, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf234842622ccede745b8c71046ba546d4486eb5', '37.111.218.81', 1674395647, '__ci_last_regenerate|i:1674395647;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674395642;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23be382f3d1145f9625df5f64fe561e3e5cdc082', '31.222.203.2', 1674388923, '__ci_last_regenerate|i:1674388923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4fb47d6004c44fc99ef53c05771928c4f09996', '31.222.203.2', 1674388923, '__ci_last_regenerate|i:1674388923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6aa7e71ea24f3a6599886fb2d370b62768b839', '31.222.203.2', 1674388923, '__ci_last_regenerate|i:1674388923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70189a3c25d3fd0badd7127feb3f2d6160f73bc', '31.222.203.2', 1674388925, '__ci_last_regenerate|i:1674388925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d1914b69793eb35e0f6596e15ba5cf4f7af7b5', '31.222.203.2', 1674388925, '__ci_last_regenerate|i:1674388925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da09e88788bfa5eead4eb421e53a45b4ce7c3845', '31.222.203.2', 1674388925, '__ci_last_regenerate|i:1674388925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76fdc65642033e443da81b8fb07f9b83e44cac2', '172.105.247.100', 1674390008, '__ci_last_regenerate|i:1674390008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcffeec3adf32b47ef376e6a3c9a4595142b346a', '172.105.247.100', 1674390008, '__ci_last_regenerate|i:1674390008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987c0eeca6aeec8149e22e85240b2fff24acd81e', '172.105.247.100', 1674390008, '__ci_last_regenerate|i:1674390008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ea3fdb8cd65e8b162a28485fbfbcf4e9c86b2b', '172.105.247.100', 1674390008, '__ci_last_regenerate|i:1674390008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a47f4c305289bfe37448223cb696a59b695dd2e', '172.105.247.100', 1674390009, '__ci_last_regenerate|i:1674390009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6e9412aa402fac60522e0ddbc8c99437491f0f', '172.105.247.100', 1674390009, '__ci_last_regenerate|i:1674390009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0e3cb254b5bf4f5531aa135fbd7d27fc0a182a', '172.105.247.100', 1674390009, '__ci_last_regenerate|i:1674390009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2abc5c51a004f9ab7bdb39d9da85f5b3a284bf18', '172.105.247.100', 1674390009, '__ci_last_regenerate|i:1674390009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033ee18d88dcbbfbd56731f4344589c19e1e89b8', '172.105.247.100', 1674390010, '__ci_last_regenerate|i:1674390010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f927b2064e6bc0f6f98e89847e162a7355cffc10', '172.105.247.100', 1674390010, '__ci_last_regenerate|i:1674390010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38f82ee8276280038531c6d7f6c2ce27f4f22e8', '172.105.247.100', 1674390010, '__ci_last_regenerate|i:1674390010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46147dbcde7132953bf528da710efce610da7b3', '172.105.247.100', 1674390010, '__ci_last_regenerate|i:1674390010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8213fa6da6627a9bfa8f784652b41316a0d7d39', '172.105.247.100', 1674390010, '__ci_last_regenerate|i:1674390010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0c8701446a92755fcbb5d238d7abb55ff27083', '172.105.247.100', 1674390010, '__ci_last_regenerate|i:1674390010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4fb297121b0ac165c50209913a221a1a31fe60', '172.105.247.100', 1674390011, '__ci_last_regenerate|i:1674390011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2a558dbd27917ce67cb18599b9ae63678d57a9', '172.105.247.100', 1674390011, '__ci_last_regenerate|i:1674390011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b5a718539a08379ed0c103dcedb0e546664452', '172.105.247.100', 1674390011, '__ci_last_regenerate|i:1674390011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb7c100dc64376703411061b92a04141fce2ac23', '172.105.247.100', 1674390011, '__ci_last_regenerate|i:1674390011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15c827a85f4123c40c0becb454ca8a8d70441c4', '172.105.247.100', 1674390011, '__ci_last_regenerate|i:1674390011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f135129fd2229df90da0269c7ced25e835aa712', '172.105.247.100', 1674390012, '__ci_last_regenerate|i:1674390012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c7b8e4efcb5d57114fc2f8c68c6a8398970348', '172.105.247.100', 1674390012, '__ci_last_regenerate|i:1674390012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ae5d8966bb27fa1c125b7f74b2a7f3b52d683b', '172.105.247.100', 1674390012, '__ci_last_regenerate|i:1674390012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632a960fb093067ec76895ba7b90d186a88c2006', '172.105.247.100', 1674390013, '__ci_last_regenerate|i:1674390013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0024b87639ee4af62559db01c1234851c7b18aa', '172.105.247.100', 1674390013, '__ci_last_regenerate|i:1674390013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683103632b043c074eb779ff1fbdca00c4479521', '31.222.203.2', 1674390723, '__ci_last_regenerate|i:1674390723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77a211e5cf69b7c9a3a3bcb65d7c12f5ed3a09a', '31.222.203.2', 1674390723, '__ci_last_regenerate|i:1674390723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8493ff749d621d88fc152de29ac340cb2311a451', '31.222.203.2', 1674390723, '__ci_last_regenerate|i:1674390723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abad703fd5aa3733ab40b4bd5e91676c3cced580', '31.222.203.2', 1674390723, '__ci_last_regenerate|i:1674390723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df462b276bd7261411d8382bd5fa162446452f42', '31.222.203.2', 1674390723, '__ci_last_regenerate|i:1674390723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c344951b73393f91fecd4dd955325cba81ef3e31', '31.222.203.2', 1674390723, '__ci_last_regenerate|i:1674390723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e165c690c4007dc6e65da5c50a0b5be07cd54b', '31.222.203.2', 1674392523, '__ci_last_regenerate|i:1674392523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef70298d71adb07d881ee0d9885015182a418b9', '31.222.203.2', 1674392523, '__ci_last_regenerate|i:1674392523;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4196b133bc601ddb0c10ffc2b84049c1945bd4', '31.222.203.2', 1674392523, '__ci_last_regenerate|i:1674392523;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb87a332e7532ea5d141b96ab90f5c6d01f76a1', '31.222.203.2', 1674392524, '__ci_last_regenerate|i:1674392524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c417217202caee8dfae03da5962711690d103676', '31.222.203.2', 1674392524, '__ci_last_regenerate|i:1674392524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641f3a34cc0370f217303a81010b12c12b536770', '31.222.203.2', 1674392524, '__ci_last_regenerate|i:1674392524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d175f8202023149ef2b05c7fb5f317a5b52a9ced', '31.222.203.2', 1674394320, '__ci_last_regenerate|i:1674394320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('349363836e0742d196ea96f4de600937f5a83988', '31.222.203.2', 1674394320, '__ci_last_regenerate|i:1674394320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a9024219a81814f4743c34e059b937ef5cbd09', '31.222.203.2', 1674394320, '__ci_last_regenerate|i:1674394320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62abeb46817cfc6027e451aaa3fd5e2048f87725', '31.222.203.2', 1674394320, '__ci_last_regenerate|i:1674394320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973a18c91861cb7536b3b1e817e559d260e3a9d5', '31.222.203.2', 1674394320, '__ci_last_regenerate|i:1674394320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fb87f267b6dd713fb1e0fa4ce7a622a62e801c', '31.222.203.2', 1674394320, '__ci_last_regenerate|i:1674394320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eaf3772c38e4efb84cc07106123d3ebc6851da4', '87.236.176.176', 1674394520, '__ci_last_regenerate|i:1674394520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683116853ab3e7d4bc14c4797a1569627d2db94b', '87.236.176.176', 1674394525, '__ci_last_regenerate|i:1674394520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d3b09f893a34a48ce8e4a20cb10f16f30075f5', '172.105.247.100', 1674395408, '__ci_last_regenerate|i:1674395408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f434a323d61db77c614a8fc327233bf3dbca357d', '172.105.247.100', 1674395408, '__ci_last_regenerate|i:1674395408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a549db2e34abb885f67b8099d88e4a85b8e870', '172.105.247.100', 1674395409, '__ci_last_regenerate|i:1674395409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('621e2ea6da7ca1037a8729286355ac5f35a5ef32', '172.105.247.100', 1674395409, '__ci_last_regenerate|i:1674395409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e3bb061d14119c2fdc5e3d7ad50684e279b16c', '172.105.247.100', 1674395409, '__ci_last_regenerate|i:1674395409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65e319abf6143436548c036e70bab3bbb1562dc', '172.105.247.100', 1674395409, '__ci_last_regenerate|i:1674395409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('001062a69d8102890050f71e1e455e8c0dde10cf', '172.105.247.100', 1674395410, '__ci_last_regenerate|i:1674395410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2b4074f6001f0543ebc0898c117c4d558cf9bc', '172.105.247.100', 1674395410, '__ci_last_regenerate|i:1674395410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d8c33b1ccd38f13a64787ab4af74937d8b0845', '172.105.247.100', 1674395410, '__ci_last_regenerate|i:1674395410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5da06948a2eb0b5af926faf1703294900c2a26', '172.105.247.100', 1674395410, '__ci_last_regenerate|i:1674395410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1933949bf250cfa0a261ec30ecc046c271cf05cc', '172.105.247.100', 1674395410, '__ci_last_regenerate|i:1674395410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d5710f64e22481ab53befaa1511c4ba5550acf', '172.105.247.100', 1674395410, '__ci_last_regenerate|i:1674395410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196170e708ed77038b1cdbf1d2616bbe62756fae', '172.105.247.100', 1674395411, '__ci_last_regenerate|i:1674395411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08dd703d1c304ecacc649471eb019fe906b7af42', '172.105.247.100', 1674395411, '__ci_last_regenerate|i:1674395411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71fcc1b6cae44678f8bcd01f3173316785689a34', '172.105.247.100', 1674395411, '__ci_last_regenerate|i:1674395411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f52f93a42fe9d6f7224bfa2e1d4bdbd48087e8a', '172.105.247.100', 1674395411, '__ci_last_regenerate|i:1674395411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bff56aadd2dc1de95783e9de9a3a8e9ddd6e6ab3', '172.105.247.100', 1674395411, '__ci_last_regenerate|i:1674395411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9206d2b3529afb72ad1c6b684bbb63e3440ce0ce', '172.105.247.100', 1674395411, '__ci_last_regenerate|i:1674395411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6454f734a157857a9828f641b7f7973216129c', '172.105.247.100', 1674395412, '__ci_last_regenerate|i:1674395412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a2ce469634eb665370db5fc829a7d07ee0ee23', '172.105.247.100', 1674395412, '__ci_last_regenerate|i:1674395412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4828421c68e90dc6cf5ec8f403720ed3471e117b', '172.105.247.100', 1674395412, '__ci_last_regenerate|i:1674395412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a2f48cf8329e6b89a06cb323c37e3d075b8f52', '172.105.247.100', 1674395413, '__ci_last_regenerate|i:1674395412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('308d0dab28d40b2fd3ba7e2901d2d5c37e18dea8', '172.105.247.100', 1674395413, '__ci_last_regenerate|i:1674395413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a134a77f5632c353270e2b3af20dabaec1833cc', '172.105.247.100', 1674395413, '__ci_last_regenerate|i:1674395413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e9d7fd2a4285dbc4c4ce94034afdf1bb55a68e', '37.111.218.81', 1674399316, '__ci_last_regenerate|i:1674399316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674399310;register_id|s:3:\"318\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-01-22 15:10:19\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c035e87b6f3187867cb11451b5e4d475b9946c0', '31.222.203.2', 1674396122, '__ci_last_regenerate|i:1674396122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ab86b54d49c080712a0b4127436b04e3bd74a0', '31.222.203.2', 1674396123, '__ci_last_regenerate|i:1674396123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28db5b8e03283ace9b0e925008509bfacf1a7b0', '31.222.203.2', 1674396123, '__ci_last_regenerate|i:1674396123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a6d5ced39d77114c5e63b67234e85cb7efe72dd', '31.222.203.2', 1674396123, '__ci_last_regenerate|i:1674396123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67b96e86f03a054fa78525c7d0462b2fa4175ac', '31.222.203.2', 1674396123, '__ci_last_regenerate|i:1674396123;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5cc4f9017edcd2528f7d0fa569e03887343b2d5', '31.222.203.2', 1674396123, '__ci_last_regenerate|i:1674396123;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2bb05bf3669f1e5d412c44f8877538dfc3e841', '31.222.203.2', 1674397923, '__ci_last_regenerate|i:1674397923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1859b329011d87ca7eacfa052fe61b3085d2a1a4', '31.222.203.2', 1674397923, '__ci_last_regenerate|i:1674397923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2b9ceae90496df8cd44568557403f5888cb408', '31.222.203.2', 1674397923, '__ci_last_regenerate|i:1674397923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0477dba43993f1950d6111d1b75e78e921182b', '31.222.203.2', 1674397925, '__ci_last_regenerate|i:1674397925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6485b9e6dd539781eb6c31917558bca58f391ef', '31.222.203.2', 1674397925, '__ci_last_regenerate|i:1674397925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b15cb50c85d008ccef2089aaeb9037fa6eb4594b', '31.222.203.2', 1674397925, '__ci_last_regenerate|i:1674397925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1b3a9e78693a8f3fc243d0be166bd56ed33e5b', '37.111.218.81', 1674399339, '__ci_last_regenerate|i:1674399316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674277142\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674399339;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2db3549539e9778fb4ff050fa3db3047bcb76752', '31.222.203.2', 1674399725, '__ci_last_regenerate|i:1674399725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f04d376caee1eb8adfdfe23ef37b5ec63e10d3ca', '31.222.203.2', 1674399725, '__ci_last_regenerate|i:1674399725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1249e9ef86dd24c8caac2a54715b9d22a2d7bf', '31.222.203.2', 1674399725, '__ci_last_regenerate|i:1674399725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e04b0a353654962e5b8231a4b93c63fd9cf16e2', '31.222.203.2', 1674399728, '__ci_last_regenerate|i:1674399728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa05d3e62c067cdded2addb625e20cd91c2b7b66', '31.222.203.2', 1674399728, '__ci_last_regenerate|i:1674399728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4fde8fe4e127ad4d76ae84724082db6c89149b2', '31.222.203.2', 1674399728, '__ci_last_regenerate|i:1674399728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb85787798a30cb1d32b111159b03b73150a5d3f', '172.105.247.100', 1674400812, '__ci_last_regenerate|i:1674400812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38df4394f35b0ed19fe83aefe24bd588547f1948', '172.105.247.100', 1674400812, '__ci_last_regenerate|i:1674400812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4347b68aa278e4c4d93816f4d29e03e8fda7c96', '172.105.247.100', 1674400813, '__ci_last_regenerate|i:1674400813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ec6b9ff010e0cd8a049de6c3c5105cbe093d06', '172.105.247.100', 1674400813, '__ci_last_regenerate|i:1674400813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45bb6ff71c5fb22305e639368fce7cd6e1b63fc6', '172.105.247.100', 1674400814, '__ci_last_regenerate|i:1674400814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e799e701bc24b9c91e635f9781b5d979a2eeb790', '172.105.247.100', 1674400814, '__ci_last_regenerate|i:1674400814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e57a9dbe276b979caf5631243adfc98ddf35b4fc', '172.105.247.100', 1674400814, '__ci_last_regenerate|i:1674400814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d819051f1790a96e738cbf271b31d28ce6a6280', '172.105.247.100', 1674400814, '__ci_last_regenerate|i:1674400814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224458f980c59959b019721d9637ad5da3f2aa54', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e81ffb7dac5c818be64cbe50941859fe9d7dc78', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd33ee6f32c4cfb5d6a3ee17185c4eaa116cc55', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e8611e5c5e31bfb87d69165858867f33b028f6', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9661749ac52c35b0c3ee4c377005777bbc9c82ed', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3949f4c93c06a5a92b3e4ef672975e1a7ade1dc5', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d67024120137e3e59628d61fad69b80d1860408', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0118ae6907c6e85f0f8f24ddcebfe5168df23ac1', '172.105.247.100', 1674400815, '__ci_last_regenerate|i:1674400815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7d8047216925ffe6bad43f6bbd4943c398ec4a', '172.105.247.100', 1674400816, '__ci_last_regenerate|i:1674400816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336c8a5b14373b18bbfc52de8753c67d239483cf', '172.105.247.100', 1674400816, '__ci_last_regenerate|i:1674400816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6880d0ffc137e8e23031acd301df949dd7de804d', '172.105.247.100', 1674400816, '__ci_last_regenerate|i:1674400816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f83d12d7c8905d3915d580dad3f8c4f29ef43c', '172.105.247.100', 1674400816, '__ci_last_regenerate|i:1674400816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca3c32572b71ffde08524329210342921707c96', '172.105.247.100', 1674400816, '__ci_last_regenerate|i:1674400816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3316dcd42d1adc0bb84bdfce64e337e072981af0', '172.105.247.100', 1674400817, '__ci_last_regenerate|i:1674400816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b731c694becab1124e7c162ea2a026bba740a234', '172.105.247.100', 1674400817, '__ci_last_regenerate|i:1674400817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2707f4bd12c91032ce24cb2112faa3a28069f45d', '172.105.247.100', 1674400817, '__ci_last_regenerate|i:1674400817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e5e459916e64d1d4ac0683e47bc52c0931a749', '31.222.203.2', 1674401528, '__ci_last_regenerate|i:1674401528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f989a8a87918c3e8728912b59196af9e9846e03', '31.222.203.2', 1674401528, '__ci_last_regenerate|i:1674401528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f31d7c99681936609258694124ef20a2c40623', '31.222.203.2', 1674401528, '__ci_last_regenerate|i:1674401528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4299a543c5feb6a8704eac0d25a16cc1f3600b59', '31.222.203.2', 1674401529, '__ci_last_regenerate|i:1674401529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf8c100c5543a45a93e4ae0212cac062e0da538', '31.222.203.2', 1674401529, '__ci_last_regenerate|i:1674401529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8557d4b7ae14998b5ca2aa29e208562b7124421', '31.222.203.2', 1674401529, '__ci_last_regenerate|i:1674401529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9dfd99b956c4e7b9a509aa06b3e061acd3bee9d', '31.222.203.2', 1674403332, '__ci_last_regenerate|i:1674403332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffaa1e860c63ea3729d5121e5eb67ed9d7e8ac7f', '31.222.203.2', 1674403333, '__ci_last_regenerate|i:1674403333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b111733626b4bc92e4c702419dc3908f9335993', '31.222.203.2', 1674403333, '__ci_last_regenerate|i:1674403333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ae8e54c49e57accb2a723381d7b3972b0e0b86', '31.222.203.2', 1674403333, '__ci_last_regenerate|i:1674403333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5102f40d15f8420d637fe71a998ac8ed7851e75b', '31.222.203.2', 1674403333, '__ci_last_regenerate|i:1674403333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd81b08036b2ebb90418efdd9c52c4b890e430e', '31.222.203.2', 1674403333, '__ci_last_regenerate|i:1674403333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eef1b3cfd9cae29730e08ea8e294ebc56cbcd65', '31.222.203.2', 1674405132, '__ci_last_regenerate|i:1674405132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f27a43295be8705dc0b61b96c1e11ed5912164f', '31.222.203.2', 1674405132, '__ci_last_regenerate|i:1674405132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cca34375e3c3bc08a9e22624e02ed152b8af63', '31.222.203.2', 1674405132, '__ci_last_regenerate|i:1674405132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('605820b877a9da9e7566b50cbeeec6b580fbd139', '31.222.203.2', 1674405134, '__ci_last_regenerate|i:1674405134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e151a962237a57c28dbd59d60b8349e0788ab3ad', '31.222.203.2', 1674405134, '__ci_last_regenerate|i:1674405134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731d916992dc0f25a1d49c84a1d358c1b0c015a8', '31.222.203.2', 1674405134, '__ci_last_regenerate|i:1674405134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5dbc5e09332d7c1bd8c2901c7dc924ca55b915e', '172.105.247.100', 1674405608, '__ci_last_regenerate|i:1674405608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca759028016cc5fd29476242a70f76e10b5f3d9d', '172.105.247.100', 1674405609, '__ci_last_regenerate|i:1674405609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a22ffe47817e10c3badf783d569251bcd948a852', '172.105.247.100', 1674405609, '__ci_last_regenerate|i:1674405609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa11efd27bd5611b95d948c223c2402d9a700e0', '172.105.247.100', 1674405609, '__ci_last_regenerate|i:1674405609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c75194c1593f3d5ccb730feba16b271ad4068c', '172.105.247.100', 1674405609, '__ci_last_regenerate|i:1674405609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ceaa40717832013d52bfb4b206f84fd36c73af7', '172.105.247.100', 1674405610, '__ci_last_regenerate|i:1674405610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5c90423ad7367b9f3fbebe1cbb63c92bca89f1', '172.105.247.100', 1674405610, '__ci_last_regenerate|i:1674405610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a603eea6fe95025593ffa429ce919d2931a9fce0', '172.105.247.100', 1674405610, '__ci_last_regenerate|i:1674405610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73fbbf1e2c2154d5c07941bf2c76a9548bfe4a2', '172.105.247.100', 1674405610, '__ci_last_regenerate|i:1674405610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd64269a795bd08492a1456842cc19a9108bbd24', '172.105.247.100', 1674405610, '__ci_last_regenerate|i:1674405610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01c92b5c0c5363b7ec68ebe11ab764fbf07d746', '172.105.247.100', 1674405610, '__ci_last_regenerate|i:1674405610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbb01e60de1ab1f545de5e84691d9e532878381', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323391c1afa54ec1bca88420f4c0ec417af747b3', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b56a381d617b51297a98906283002a22d08ed8d', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5639c8a1f2e5105b53c97c957c8085510903426', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d79110019659baa42f317f56d7724384ad0a72', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d454fd89c2bbd79b950f30828b2d70c5f257451e', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae7243f92f960f2d356e8212f666b912dbd63ab', '172.105.247.100', 1674405611, '__ci_last_regenerate|i:1674405611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e54c4f2652405231168eb02993301f652fde0bd', '172.105.247.100', 1674405612, '__ci_last_regenerate|i:1674405612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c7b001a6584ed4d24e48077e0a078a99bd6ead', '172.105.247.100', 1674405612, '__ci_last_regenerate|i:1674405612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074a7f56a3d54e098f53541e1f67ffcba21fcec6', '172.105.247.100', 1674405612, '__ci_last_regenerate|i:1674405612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d859527b20a415817f907eae4a9d4300584324f7', '172.105.247.100', 1674405612, '__ci_last_regenerate|i:1674405612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbecf78270e4d4c515da0fce550ed2c754f295eb', '172.105.247.100', 1674405613, '__ci_last_regenerate|i:1674405613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782e1e0d83f76ab337fbb38aa1f8e24ae0e90323', '172.105.247.100', 1674405613, '__ci_last_regenerate|i:1674405613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83379a8fae6d9484038f1748932b08743849fced', '31.222.203.2', 1674406931, '__ci_last_regenerate|i:1674406931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04def834ccac9899ea07ce2c04a0957df24f3b65', '31.222.203.2', 1674406931, '__ci_last_regenerate|i:1674406931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbd221c4a6f51e57111883ffd62eada1b24cb54', '31.222.203.2', 1674406931, '__ci_last_regenerate|i:1674406931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4811e8518dfb137d0c9a376ca5fc92e6dd3f84', '31.222.203.2', 1674406934, '__ci_last_regenerate|i:1674406934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6f23a0e3fba09abb01efa436a4e241fb5ac9171', '31.222.203.2', 1674406934, '__ci_last_regenerate|i:1674406934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166e1834b7aec4191cdcbd594decae0cb044061b', '31.222.203.2', 1674406934, '__ci_last_regenerate|i:1674406934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e260cef108e866e49d562d94c1de6bb5fca8f04d', '31.222.203.2', 1674408727, '__ci_last_regenerate|i:1674408727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18c77611ddca4dba0b0e92f73903257f995cd312', '31.222.203.2', 1674408727, '__ci_last_regenerate|i:1674408727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a493f3976d3d88a0b92b56be4ffac11300c19513', '31.222.203.2', 1674408727, '__ci_last_regenerate|i:1674408727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4bdc708cbb5d81c48a901327bc17a5217f97a63', '31.222.203.2', 1674408730, '__ci_last_regenerate|i:1674408730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f8bfec403bd592e045da69291ac0d262e82a34', '31.222.203.2', 1674408730, '__ci_last_regenerate|i:1674408730;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d852c903e1c4586da253bcd00c3ea55acce1b06', '31.222.203.2', 1674408730, '__ci_last_regenerate|i:1674408730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3c0ce7da6738d8dabd4edbe61cf3e0ad89534e', '172.105.247.100', 1674409808, '__ci_last_regenerate|i:1674409808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612cf2b236b5019c2960b9560ddec61239cbfc6e', '172.105.247.100', 1674409809, '__ci_last_regenerate|i:1674409809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c98b5f3354ee376c6fd0840b7d5951ef02f0dcc', '172.105.247.100', 1674409809, '__ci_last_regenerate|i:1674409809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a5df60045b89df2afdc1f53d475cb04108d013', '172.105.247.100', 1674409809, '__ci_last_regenerate|i:1674409809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ac271cdc4332ebf32029d512ff63c1997c19d3', '172.105.247.100', 1674409809, '__ci_last_regenerate|i:1674409809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935d578482311130a3f6d3a95dd51047378bf1b8', '172.105.247.100', 1674409810, '__ci_last_regenerate|i:1674409810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa36f7ecd0340ba33518858988e27acb89d3a8aa', '172.105.247.100', 1674409810, '__ci_last_regenerate|i:1674409810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d990537afba43f2869f6ebc8ba6e133af418ded', '172.105.247.100', 1674409810, '__ci_last_regenerate|i:1674409810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2892045bffe1da6ee2d5e00be905f78a2519e65', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7823e034af3220b14be5baf07cd7c2c27a8f8392', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a8e6047705f27f3a1029396ab028c75de94c55', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6efa3d4951540c52783711ebce71fefdbbc38b', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62bfe85f3c5dc6c95ccafea0bc1d8db64c99b38', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('816c9eecbc20a53b8ba47ba47deeff8a60cfc955', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b01dc1061780d21028a6b0c365f7632cfe87b2', '172.105.247.100', 1674409811, '__ci_last_regenerate|i:1674409811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9724d0f4989a40b29ceb8a805398099d2228c40', '172.105.247.100', 1674409812, '__ci_last_regenerate|i:1674409812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2fb0d1964461d70b5e22b9c81b6e5a1f70ca0ad', '172.105.247.100', 1674409812, '__ci_last_regenerate|i:1674409812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f88b9dd50bcfcccd18a01b99ffcc842bfc602a9', '172.105.247.100', 1674409812, '__ci_last_regenerate|i:1674409812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5f2e86b89989d935586dd8e376330c34548230', '172.105.247.100', 1674409812, '__ci_last_regenerate|i:1674409812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c510448e9fd5bd0ae9dbfdd1e7aa310fa10b6a', '172.105.247.100', 1674409813, '__ci_last_regenerate|i:1674409813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c1b67f9b4a35c4a7a542a7077d6d8e9a3561f6', '172.105.247.100', 1674409813, '__ci_last_regenerate|i:1674409813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4b2faedacd93112b819911c1cf242815629176', '172.105.247.100', 1674409813, '__ci_last_regenerate|i:1674409813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cade9280afb7d2974f75a61122cfb87d782feb1c', '172.105.247.100', 1674409814, '__ci_last_regenerate|i:1674409814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d70c801e4e0707eb275ba33edac4c7c8a1e6a3', '172.105.247.100', 1674409814, '__ci_last_regenerate|i:1674409814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f8691595794e5a415fd69c30a639943becdf39', '31.222.203.2', 1674410526, '__ci_last_regenerate|i:1674410526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39cfe4588b798d18e54c209cc1ecff5f26c6a85b', '31.222.203.2', 1674410526, '__ci_last_regenerate|i:1674410526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dcf98fe49d154991c5cfcb610b67aab67710bd1', '31.222.203.2', 1674410526, '__ci_last_regenerate|i:1674410526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc8b4791b3cac0efa83a3343289393fa9c6cdd8', '31.222.203.2', 1674410527, '__ci_last_regenerate|i:1674410527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ab98dec721e355d82826382f2c5627fe76c886', '31.222.203.2', 1674410527, '__ci_last_regenerate|i:1674410527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ce5824c8c9661d1c46cdfc217e26df0eabb382', '31.222.203.2', 1674410527, '__ci_last_regenerate|i:1674410527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a5f246654148e7a8047575f8e90a82ec75f9d1', '31.222.203.2', 1674412337, '__ci_last_regenerate|i:1674412337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4915825568335df32bf451c9ed2abe9c760de79b', '31.222.203.2', 1674412339, '__ci_last_regenerate|i:1674412339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429f1610ba7435755752b8f52938b24a2464f5e0', '31.222.203.2', 1674412339, '__ci_last_regenerate|i:1674412339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae20a4c243a5bb75a00482682c70d51f3336c68', '31.222.203.2', 1674412339, '__ci_last_regenerate|i:1674412339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf7e1d2f06cf2e1c42de47dbcdbb9456749c0c9', '31.222.203.2', 1674412339, '__ci_last_regenerate|i:1674412339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e328c5fee3a745816d95ed63d47a76676e093124', '31.222.203.2', 1674412339, '__ci_last_regenerate|i:1674412339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ae898ca0b163f71c799b1c5b23526ac74db309', '31.222.203.2', 1674414119, '__ci_last_regenerate|i:1674414119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d29c3ed77cadb3306da5bc5573b279a26bd8cd', '31.222.203.2', 1674414119, '__ci_last_regenerate|i:1674414119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83755f64e4a90caced903ae32efd515b7fba56b2', '31.222.203.2', 1674414119, '__ci_last_regenerate|i:1674414119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc21ba68e5a8ce600ce45dc9f907bee1fa72caf4', '31.222.203.2', 1674414121, '__ci_last_regenerate|i:1674414121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f103d140960936a4ae0dab9d0e7ed7bb82038d9f', '31.222.203.2', 1674414121, '__ci_last_regenerate|i:1674414121;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be2678ce1ea307f49b563ec24af48a4987ac641', '31.222.203.2', 1674414121, '__ci_last_regenerate|i:1674414121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aef43a1f2421c94b9054259cbdcd6ab14e76c46', '172.105.247.100', 1674415209, '__ci_last_regenerate|i:1674415209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a4c3915ab08f1187ba7a30a53e7d6eddf3ec90', '172.105.247.100', 1674415210, '__ci_last_regenerate|i:1674415210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c67ec0bf10ef45c6eea705632f348a89d75e0c', '172.105.247.100', 1674415210, '__ci_last_regenerate|i:1674415210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aaaa12bf4b2d2fcb97613ddd2fbf153162baffb', '172.105.247.100', 1674415210, '__ci_last_regenerate|i:1674415210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82fde7cd98fbde3edad80180441f81d248c36707', '172.105.247.100', 1674415210, '__ci_last_regenerate|i:1674415210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca4c01114e8dca5dce104966dc1afa5652ea707', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6120ac096fbfddec70c4afe5ef51312a2fe51dcf', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72b0cc77de1ac4d11183581de1f35bfd9ccb632', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae34bbbe82ea7a4f5d899c49c30d6e6bfafd11fd', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c57de30bc526a64c1cfa42c7b49eabdf1b64bbc9', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2249f5e853ae079ca74c8265417792187c882b', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c28e04ed137538d3ae205c7432fedeefe17a40e', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af8677d5f7053f1a88d31cb452dc0dddfa0c9ca', '172.105.247.100', 1674415211, '__ci_last_regenerate|i:1674415211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b771809ccba0542b6638a297ce94c223c54334', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf48effe3348a335be4b4f98a69e8b9cf738fc43', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe44dc9cb2f1c905a6931796657ad28a853fdc17', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1947061b50e17826131768f6784e0fa0e1bcc0d8', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30cac68cb79b81a89704b0ad9abcc12aaa323bb', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5add42b9e2d9fc8804e4e905d4b88ed474c7ee6', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4cc07e00c87264d63995e9894e30a631232ade', '172.105.247.100', 1674415212, '__ci_last_regenerate|i:1674415212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aabffe36232d88d834f52002e674c2d7b9cfed9', '172.105.247.100', 1674415213, '__ci_last_regenerate|i:1674415213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01f167fcd868706d8ac884c4ab86dfbe5492ebc', '172.105.247.100', 1674415213, '__ci_last_regenerate|i:1674415213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6e37490f9a842460aca6965242f7581e1ff8cd', '172.105.247.100', 1674415213, '__ci_last_regenerate|i:1674415213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c967ba43429a6e48b3c56cc375f025006e2b1d2e', '172.105.247.100', 1674415213, '__ci_last_regenerate|i:1674415213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84adddc9934c0db16fd54a13d75da8d63430041b', '31.222.203.2', 1674415922, '__ci_last_regenerate|i:1674415922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3269d676dfc2d02ac139a4d8936aeaaf82f58552', '31.222.203.2', 1674415922, '__ci_last_regenerate|i:1674415922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03664aa43b65a510d94f42b3fb7ea96f99b37d32', '31.222.203.2', 1674415922, '__ci_last_regenerate|i:1674415922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dabe28481a09910fb7e62f85da8a4a0d38ac610e', '31.222.203.2', 1674415922, '__ci_last_regenerate|i:1674415922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f104ebfca3a5911206546cb7e321a4979543a875', '31.222.203.2', 1674415922, '__ci_last_regenerate|i:1674415922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889c5f87335de30416b3cd6b8c3d2be355fba1aa', '31.222.203.2', 1674415922, '__ci_last_regenerate|i:1674415922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91c4fbb8f27934390ee461448fcfd4a2b938743', '31.222.203.2', 1674417720, '__ci_last_regenerate|i:1674417720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e48709c8c788bcb94db86573fa158b6cefb67a5', '31.222.203.2', 1674417720, '__ci_last_regenerate|i:1674417720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c12e9ec3795fac53f36535f1d2b5718bbeadb01', '31.222.203.2', 1674417720, '__ci_last_regenerate|i:1674417720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('864e093c2fdfa2edb3cdfa325e270e132527adef', '31.222.203.2', 1674417722, '__ci_last_regenerate|i:1674417722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e052d2e07e8bba780c9f2e42cfa215250d05328', '31.222.203.2', 1674417722, '__ci_last_regenerate|i:1674417722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c23730a073c30c9d7084a75786dc828e529187c', '31.222.203.2', 1674417722, '__ci_last_regenerate|i:1674417722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd79207d53a63850363b34bbbc278e450e0f4d9', '31.222.203.2', 1674419533, '__ci_last_regenerate|i:1674419533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c229756c3fc6211df2a521a767ad0b1bbdaf75ae', '31.222.203.2', 1674419533, '__ci_last_regenerate|i:1674419533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f8315a8a27c52285c451333ad63e6fd1496f339', '31.222.203.2', 1674419533, '__ci_last_regenerate|i:1674419533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bda80a457cc556d396b6a64a0d8a74466d52e32', '31.222.203.2', 1674419535, '__ci_last_regenerate|i:1674419535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e21e10d01ea72a1097b4cd64ea539bb7c3076f5', '31.222.203.2', 1674419535, '__ci_last_regenerate|i:1674419535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235cb46ee95ceb70c508920e8af165f1ecbf0122', '31.222.203.2', 1674419536, '__ci_last_regenerate|i:1674419535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9392ca42575ec2df4135f758c899d9dacd843c2c', '172.105.247.100', 1674420009, '__ci_last_regenerate|i:1674420009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179326ec0a5b1e22042b2ae4e0f4263d6635b415', '172.105.247.100', 1674420009, '__ci_last_regenerate|i:1674420009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508c6efab1bc19c4efb13b3dfcdea564e39f6200', '172.105.247.100', 1674420009, '__ci_last_regenerate|i:1674420009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14f9c9b2b1da4dd1be96e7c17333d0df4dd8cd5f', '172.105.247.100', 1674420010, '__ci_last_regenerate|i:1674420010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d0426bef32172a0f960db6f80be523d445937b', '172.105.247.100', 1674420010, '__ci_last_regenerate|i:1674420010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db2108cd12b5fe701259feaaa5e854c369659d5', '172.105.247.100', 1674420010, '__ci_last_regenerate|i:1674420010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c46feb7dde5ba7da3dcdc5451aa7d49a23345f', '172.105.247.100', 1674420010, '__ci_last_regenerate|i:1674420010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e942a49b5b8c2b6d96f43ded75079fc43c8d6b0', '172.105.247.100', 1674420010, '__ci_last_regenerate|i:1674420010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15936e64acf9e6e32847a171c32f40d9c6548ebc', '172.105.247.100', 1674420010, '__ci_last_regenerate|i:1674420010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eee1b807767aa0a59c075a64a3f34ba673c4e05', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08626de35a8c95f57fb919a0651e032bad35e26', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e3df88721534d6477337384da2e0cc5b1d224db', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71a170d5e410b7d4c21a979bef50ae478283dac', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f1f29e0057ca61a6e9d2bff149f20048f6fb46', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cff3920f2dc4d8e1464b4dbdba2b96224d98a38', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f1b5508d5dfd5284dc2e78a305ae40c2e2b6ea8', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ed81cfbf1f479bcce6aae27d7616cd56829065', '172.105.247.100', 1674420011, '__ci_last_regenerate|i:1674420011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab06505c80961318963dae830829ac6e3408767e', '172.105.247.100', 1674420012, '__ci_last_regenerate|i:1674420012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be08b61a6f12a09da93084db8df15966ea21e654', '172.105.247.100', 1674420012, '__ci_last_regenerate|i:1674420012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e3d180646906897a315fd6bf83170fc78eefb0', '172.105.247.100', 1674420012, '__ci_last_regenerate|i:1674420012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6641a2860cecb4ccc7f9db98c3701a007e2b092', '172.105.247.100', 1674420012, '__ci_last_regenerate|i:1674420012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f909cb61c216368d12fd6d92cf63c1bb99a6bea', '172.105.247.100', 1674420012, '__ci_last_regenerate|i:1674420012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d93787aa60417d008a1a726f11c527de99e416f', '172.105.247.100', 1674420013, '__ci_last_regenerate|i:1674420013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae538a5ca2f54c0006fb1733dc6c0152e9ef0a0', '172.105.247.100', 1674420013, '__ci_last_regenerate|i:1674420013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca8a93e9207031068c40aa57f787c3095e1a93e', '31.222.203.2', 1674421326, '__ci_last_regenerate|i:1674421326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab7bc22680766c27a756244ee612dae13cba4b0', '31.222.203.2', 1674421326, '__ci_last_regenerate|i:1674421326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357a412afb3255a0a7954ff3537bb62ba5e3ccce', '31.222.203.2', 1674421326, '__ci_last_regenerate|i:1674421326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b35cac443135b350013cddafacefc67bbd14563', '31.222.203.2', 1674421326, '__ci_last_regenerate|i:1674421326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a51300d17102e75f06315c32b59c65e6806d2c', '31.222.203.2', 1674421326, '__ci_last_regenerate|i:1674421326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf43c7fd0de6aa4ece0229e3312556f8ca10535', '31.222.203.2', 1674421326, '__ci_last_regenerate|i:1674421326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448dd869ec255caffdd0319ff2afb4e9434e4091', '31.222.203.2', 1674423124, '__ci_last_regenerate|i:1674423124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30385ba7af1a4bedefb010ae174e0c903cc9ddf0', '31.222.203.2', 1674423124, '__ci_last_regenerate|i:1674423124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b502d170243465334d579736cd79deb2a56213', '31.222.203.2', 1674423124, '__ci_last_regenerate|i:1674423124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5494b1024faa7ffdfee1f2774255cc8f4c9786b7', '31.222.203.2', 1674423125, '__ci_last_regenerate|i:1674423125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f7153663da42bc9c3e0061a03d5e0409db81bc', '31.222.203.2', 1674423125, '__ci_last_regenerate|i:1674423125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176357f59b8ec0ec2ebb681365f99bdec33e3516', '31.222.203.2', 1674423125, '__ci_last_regenerate|i:1674423125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a56e754b6f0a971ed6d6d376d748ada411b8bd', '31.222.203.2', 1674424920, '__ci_last_regenerate|i:1674424920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3220ac4cc543ee3690eb6bb1de887ef070316a14', '31.222.203.2', 1674424920, '__ci_last_regenerate|i:1674424920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c812f2f038be73a36cbe3a4b32a6de5917d9376e', '31.222.203.2', 1674424920, '__ci_last_regenerate|i:1674424920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee961d818d128d7450176a362743096faf482af', '31.222.203.2', 1674424923, '__ci_last_regenerate|i:1674424923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c047c7041a81498bb695dca7a06d7eb828146061', '31.222.203.2', 1674424923, '__ci_last_regenerate|i:1674424923;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f894ebecc143ec349e83910bd1ec0d224b6bd82', '31.222.203.2', 1674424923, '__ci_last_regenerate|i:1674424923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b5d6c16687996aa26c9dbfb1757d330c988c23', '172.105.247.100', 1674425409, '__ci_last_regenerate|i:1674425409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d80528bb99502755553769580809dd86588856', '172.105.247.100', 1674425410, '__ci_last_regenerate|i:1674425410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ddaecc651116d2f7e7a7c68fcd6709cc9a8d8a7', '172.105.247.100', 1674425410, '__ci_last_regenerate|i:1674425410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312a612c5f742f803f465de16ed87b58ad89e73d', '172.105.247.100', 1674425410, '__ci_last_regenerate|i:1674425410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3733470a3025d9ed1aa959b9cbe668c11d1a6788', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439066ddce19d2d4b214119bfba7e988f39f01cf', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fffbeeeb7f5da6ce7217f3f92b6f2f43dbb647ff', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7c08bb846b965f72071ebed79cbde90e3d9dd3', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18caa7f1e469af74da966d057611e1be27b07a4', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee189136204840d90f33c64ddf69429afaf8638', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e18a695e597a718f7b3e5554859fb6b1752de7', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8723c58353a3f2c056753130cfa98cdb48f25c2', '172.105.247.100', 1674425411, '__ci_last_regenerate|i:1674425411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07f1be8b053a4ec6106e6294e71b526a60c957b', '172.105.247.100', 1674425412, '__ci_last_regenerate|i:1674425412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f352802efec728206fc2d2e857a842305cb827c2', '172.105.247.100', 1674425412, '__ci_last_regenerate|i:1674425412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4d720d3bfc56385a4806f7d26f6ee2e1dfae26d', '172.105.247.100', 1674425412, '__ci_last_regenerate|i:1674425412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f5c0897865ba0518f656d6d470a8705c794189', '172.105.247.100', 1674425412, '__ci_last_regenerate|i:1674425412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c343ad63a2689e5734b726f3c0e2db7b7c027d', '172.105.247.100', 1674425412, '__ci_last_regenerate|i:1674425412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2285bc3e4d80e0c130b9d08d45d61f0494a1c7a2', '172.105.247.100', 1674425412, '__ci_last_regenerate|i:1674425412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22953061b2347b759393582968946717b2dabca0', '172.105.247.100', 1674425413, '__ci_last_regenerate|i:1674425413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6677b622267cde6bb18318e45a7c6dec357cbe6', '172.105.247.100', 1674425413, '__ci_last_regenerate|i:1674425413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b2642bdfef6ec1577f0e02ffbec2a1ab301175', '172.105.247.100', 1674425413, '__ci_last_regenerate|i:1674425413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b933128ef9670abdd55777f4b49c69b0cf57156', '172.105.247.100', 1674425413, '__ci_last_regenerate|i:1674425413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e056f87b5158b39f506b7bf24cd2b020b0b7db', '172.105.247.100', 1674425413, '__ci_last_regenerate|i:1674425413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8590f69fdb4e58f33bdbe3e855c08a94408a9445', '172.105.247.100', 1674425413, '__ci_last_regenerate|i:1674425413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6281c68a69dea020c2d94d0447b559f793b01b6', '31.222.203.2', 1674426726, '__ci_last_regenerate|i:1674426726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a4d275edf3077406ed5f224d8caa9500ff2b59', '31.222.203.2', 1674426727, '__ci_last_regenerate|i:1674426727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add7237b226873f1ac34b314acb52a6d05acc2b9', '31.222.203.2', 1674426727, '__ci_last_regenerate|i:1674426727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79c89fdd7f45919e0dfa68ed6dd29c7d2f4e915', '31.222.203.2', 1674426727, '__ci_last_regenerate|i:1674426727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05020ff356e7cc306022c59a869b5b96389a2030', '31.222.203.2', 1674426727, '__ci_last_regenerate|i:1674426727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cc9dd81c940278f0768d33daacd3666a3ea261d', '31.222.203.2', 1674426727, '__ci_last_regenerate|i:1674426727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e44c88bb653fc7f0daf1c9df791aaf472642a0a3', '31.222.203.2', 1674428520, '__ci_last_regenerate|i:1674428520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d997f3091a4c20da4166504d11cc4f4ef1939f', '31.222.203.2', 1674428520, '__ci_last_regenerate|i:1674428520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5303df5035e9f8e31a8e837ff74f673ce99d5ac3', '31.222.203.2', 1674428520, '__ci_last_regenerate|i:1674428520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07adad066ca99bb32ea25971f962503e8ef45e2a', '31.222.203.2', 1674428520, '__ci_last_regenerate|i:1674428520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef846639c59582864fbfbd68d6c2e17ebb9e5544', '31.222.203.2', 1674428520, '__ci_last_regenerate|i:1674428520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f00f38c43a74e6aa715bbb63e2d2c07d6f5630', '31.222.203.2', 1674428520, '__ci_last_regenerate|i:1674428520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb9b2b2cb54495be9ffb57102b21547f4ca5ae3', '31.222.203.2', 1674430323, '__ci_last_regenerate|i:1674430323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f96e64798710ea4fba7cd6194c7d1881fa3203', '31.222.203.2', 1674430323, '__ci_last_regenerate|i:1674430323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2fc6cab6e5cb38a4534309c3a0ecd44c19b69a4', '31.222.203.2', 1674430323, '__ci_last_regenerate|i:1674430323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde98d44161c4c6e67d094f41d49efb2028340d5', '31.222.203.2', 1674430323, '__ci_last_regenerate|i:1674430323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d611728b4e4726445eed19f6d96461fbee3aacf4', '31.222.203.2', 1674430323, '__ci_last_regenerate|i:1674430323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740d2c931e79ddb3f13c1cc6f55a7042626110f9', '31.222.203.2', 1674430323, '__ci_last_regenerate|i:1674430323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be68509703dc0ccabe191b85e7bafd34e1a617a4', '172.105.247.100', 1674430808, '__ci_last_regenerate|i:1674430808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784bc819369724c7abec3d741ffff8ab14c1bce1', '172.105.247.100', 1674430808, '__ci_last_regenerate|i:1674430808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f8e634ff77f408a1055f3d02d8572dabdac9a3', '172.105.247.100', 1674430808, '__ci_last_regenerate|i:1674430808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9d4783dc80bb6f8e47d3feeb1fd0c5e2eec9b4', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1248b0c599d9630bff04a1bef6bfc3c65e23a776', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d5b737834479274fffdb49d406a9b65e71279a', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de85c4fa3687ae0c5ff33355299fff748cf2adf', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('116077b6c26a6d697b75b71890d0ce7b46c6e393', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7b9d3f0ea236bae227690befbdb7300d05482c', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50f9dd6ebe2175bfbf5c9c107cf3cc9e7cddd39', '172.105.247.100', 1674430809, '__ci_last_regenerate|i:1674430809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4645aade4cf2b8e2e9933020991fa1c34d878d', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8baf260966f5f780d744e8992375676c45ef53', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cec1fcd114cbb87f52cd1f84c3f86e058a9258b', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9197db612dd92793fa20fffe2109389253fb4ced', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d78d1fe3923c6ce4ae87dcdf2ec956c82ebbd9', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467406351e33deea280445747cd4e77508cfc5e9', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('009bb05918e41233df2679d5678c80263ca32476', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b403a67140904fe26d7596c8d0a7b627ce24c501', '172.105.247.100', 1674430810, '__ci_last_regenerate|i:1674430810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd71fa074415eebc5f814b6713fe8efcb35b2eb1', '172.105.247.100', 1674430811, '__ci_last_regenerate|i:1674430811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19dffc889ff93ff16567ecbc8d0ed91e4988f98c', '172.105.247.100', 1674430811, '__ci_last_regenerate|i:1674430811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1883f8d286062e50a38dab0aa9d7a8b29e928e', '172.105.247.100', 1674430811, '__ci_last_regenerate|i:1674430811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d60b0ff5c1fa7043cf22fad40b2e17b776c667e', '172.105.247.100', 1674430811, '__ci_last_regenerate|i:1674430811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08fd91fc25840a3efd29f48c3227d339cd1e3748', '172.105.247.100', 1674430812, '__ci_last_regenerate|i:1674430812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45475dbd18bc95385ca41c0a8acfbadf382e53cd', '172.105.247.100', 1674430812, '__ci_last_regenerate|i:1674430812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25564c6bdff4167d4bbd0b1c25ca9afcc5a55e5', '31.222.203.2', 1674432124, '__ci_last_regenerate|i:1674432124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d125bcaef2bfcd724fc3981cd6f57ba634fc70', '31.222.203.2', 1674432125, '__ci_last_regenerate|i:1674432125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc244382a6abe72583fff3519a9960edc2c3afb2', '31.222.203.2', 1674432125, '__ci_last_regenerate|i:1674432125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9a7483149965a19e8b2b1c2b602c37ff878449', '31.222.203.2', 1674432125, '__ci_last_regenerate|i:1674432125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8ae7b5e9d3d602876ee1b5d6da7acb1932f56f', '31.222.203.2', 1674432125, '__ci_last_regenerate|i:1674432125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc61cd5aa6800a0869487a56864bfb0eeaedb191', '31.222.203.2', 1674432125, '__ci_last_regenerate|i:1674432125;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c3788ea4702c77f905fa88648c441f214f11ea', '31.222.203.2', 1674433920, '__ci_last_regenerate|i:1674433920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f95f0399bea4ba05c782259cbbd40fde9e25c04', '31.222.203.2', 1674433920, '__ci_last_regenerate|i:1674433920;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958ba89e940d7c75a1955489d24711d714541692', '31.222.203.2', 1674433920, '__ci_last_regenerate|i:1674433920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8373634804d9bf6ebd9364a3b38b4487c8f1a3f', '31.222.203.2', 1674433922, '__ci_last_regenerate|i:1674433922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2407b0f19a9d2c27ca1179189a4799f67b0e86', '31.222.203.2', 1674433922, '__ci_last_regenerate|i:1674433922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692dc008fc2ccb114b880d1db000f0ce7d3b383d', '31.222.203.2', 1674433922, '__ci_last_regenerate|i:1674433922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468bd8aaa4114c64c69785745009b6348c442ab2', '172.105.247.100', 1674435610, '__ci_last_regenerate|i:1674435610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4482fe55d6a25af02cd9deee096209b7947de2', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178264e5deeee72fbb25084879555d2ace5a71ab', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f3af6d0bd9c925d9b3c49482a513a4dbabe1b5', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f3ae1c058ff3b591c6b89e0f3ca916b952c5c2', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d068787ddb3a0d6592795b7ae982fca574b8595', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306c11036b3ee96d0f7870ddba7d3e863ad5424e', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9210b7610e2964f0b9fdd44b8e9d6dfebe14169c', '172.105.247.100', 1674435611, '__ci_last_regenerate|i:1674435611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c13434d34eaebfe98b6ef02d52830a28d9a65d', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b511389e911552c094281c66f2ff2fa69825170c', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce9df498a7a93bcf8485814f911defc5c5e24f2', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e61890a7dcd6a4710f040ae5f9072d56e420bf3', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6990b88da795fba275230eeb583ab8f32ed8b38b', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79ec6ed40a3fb248e944dfdea648d3ec8384b04', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08245fea4059f7edb8c22ce1ed455c657e58865', '172.105.247.100', 1674435612, '__ci_last_regenerate|i:1674435612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ad7e04727f8a999943635d1aef38d52e35e714b', '172.105.247.100', 1674435613, '__ci_last_regenerate|i:1674435612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8178eba071268cd6b015d5e1df4776bb1030b32', '172.105.247.100', 1674435613, '__ci_last_regenerate|i:1674435613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddb919a8ef2c52ea8758a6ff63ca1043fe8f1cbe', '172.105.247.100', 1674435613, '__ci_last_regenerate|i:1674435613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ecb68c99fd6a326c7579faf9ee0fc182bb17dd', '172.105.247.100', 1674435613, '__ci_last_regenerate|i:1674435613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cda0ad715a10b84aa333e3002d00970c543b146', '172.105.247.100', 1674435613, '__ci_last_regenerate|i:1674435613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('118e20c88e33c8aa7f833c3e0f252ec30cd37287', '172.105.247.100', 1674435613, '__ci_last_regenerate|i:1674435613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6a4f96b6fb053cc646322468f64bff67befb0a', '172.105.247.100', 1674435614, '__ci_last_regenerate|i:1674435614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527677b84c1afd5c7520c5fde93f40c10f55b1f7', '172.105.247.100', 1674435614, '__ci_last_regenerate|i:1674435614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb105d7990660b80cf8b1130c98d7728bb5c832d', '172.105.247.100', 1674435614, '__ci_last_regenerate|i:1674435614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfd3268d54146a82d2618635453bcc9b748c8ea', '31.222.203.2', 1674435725, '__ci_last_regenerate|i:1674435725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c72072f5ae23cc79e9dfa91f275ee834843d11', '31.222.203.2', 1674435725, '__ci_last_regenerate|i:1674435725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4410647f693f0eb174e4fd7364624d079b3d01cd', '31.222.203.2', 1674435725, '__ci_last_regenerate|i:1674435725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6babd68ba28f0422b7a08221d8d97b029ae324b5', '31.222.203.2', 1674435726, '__ci_last_regenerate|i:1674435726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e4a61765a568dccbbd76836bff679f059a2556', '31.222.203.2', 1674435726, '__ci_last_regenerate|i:1674435726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80eae4f2f0e21aa6901fac7bf64c9520ceb3acae', '31.222.203.2', 1674435726, '__ci_last_regenerate|i:1674435726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0f21f65a60ef84d63d3477aff49fad8eca0824', '31.222.203.2', 1674437522, '__ci_last_regenerate|i:1674437522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fda06b5ecf67f76ca9fae92c7941518f1f0c094', '31.222.203.2', 1674437522, '__ci_last_regenerate|i:1674437522;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2359cbb6c31e1f9fe391517b9361fea1274fa09c', '31.222.203.2', 1674437522, '__ci_last_regenerate|i:1674437522;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442adc3c76a6031719642a75402b87c654cfeedf', '31.222.203.2', 1674437524, '__ci_last_regenerate|i:1674437524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcabeee780e7233ae6f5215564544f921b2752d0', '31.222.203.2', 1674437524, '__ci_last_regenerate|i:1674437524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4a868ce5d69190fde5627b4320515353acc62e', '31.222.203.2', 1674437524, '__ci_last_regenerate|i:1674437524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df72b14d37ab35306c5d00732cd877cbf5c7cc25', '31.222.203.2', 1674439322, '__ci_last_regenerate|i:1674439322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71ac02e6ab76c9d2fa79d65d8ccdcfda315b0e4', '31.222.203.2', 1674439322, '__ci_last_regenerate|i:1674439322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898c406ae39d7c5be7438843d4526e5d09c308a3', '31.222.203.2', 1674439322, '__ci_last_regenerate|i:1674439322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('970dc7442ff7fcddd26993f941893d89538b3b10', '31.222.203.2', 1674439322, '__ci_last_regenerate|i:1674439322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f3a581e1344c99e9623ddfb5c7120eaf119f5fd', '31.222.203.2', 1674439322, '__ci_last_regenerate|i:1674439322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b01242f3ae95aa99741e67c88821f34ff3e29d', '31.222.203.2', 1674439322, '__ci_last_regenerate|i:1674439322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679d77fa81ecb86744463e376135b7dc1c5c9fa1', '172.105.247.100', 1674441009, '__ci_last_regenerate|i:1674441009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e832079ce74088b1744d4a79a925b246a96b6f08', '172.105.247.100', 1674441009, '__ci_last_regenerate|i:1674441009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d88d1fe67e61993fab5866a7192abdeefcd4a8', '172.105.247.100', 1674441010, '__ci_last_regenerate|i:1674441010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d697bd649460a72bcb48b1eb840f7b95863ed3', '172.105.247.100', 1674441010, '__ci_last_regenerate|i:1674441010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0700f0ef4d1b9c5dcffe1fa211905a63947296', '172.105.247.100', 1674441010, '__ci_last_regenerate|i:1674441010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2370036fe88f8b0e298284ac9e38fb0ff58537', '172.105.247.100', 1674441010, '__ci_last_regenerate|i:1674441010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7c2180373c816d47a492bdcfa2d8f4149940b0', '172.105.247.100', 1674441011, '__ci_last_regenerate|i:1674441011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cfb62d49e320a698c031b686084462d63c771c2', '172.105.247.100', 1674441011, '__ci_last_regenerate|i:1674441011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b0d9c0789945a0dcd81d0b8632737055346b3d', '172.105.247.100', 1674441011, '__ci_last_regenerate|i:1674441011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d87dec46216a62f8f1cbfae4eea9a155457928', '172.105.247.100', 1674441011, '__ci_last_regenerate|i:1674441011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2afb3a4f74acbfbf899ef12c330c15483035fbc9', '172.105.247.100', 1674441012, '__ci_last_regenerate|i:1674441012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3b449b9053a094ab7ff04a4699ac7eb4a28049', '172.105.247.100', 1674441012, '__ci_last_regenerate|i:1674441012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3f7651752fcc02b9c4ace21fe6650239ea0a25', '172.105.247.100', 1674441012, '__ci_last_regenerate|i:1674441012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522b9bd5f6b65d2c192ca77467703f8f440d136c', '172.105.247.100', 1674441012, '__ci_last_regenerate|i:1674441012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6686459d0317b1e313cdc86ade8940a4ce57ec74', '172.105.247.100', 1674441012, '__ci_last_regenerate|i:1674441012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c081832067e39b1fac1929b39072f078495ffb', '172.105.247.100', 1674441012, '__ci_last_regenerate|i:1674441012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d38826f16844ba5168f9841cc7a7ef26761e3e9', '172.105.247.100', 1674441013, '__ci_last_regenerate|i:1674441013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b951ded4c599a0a5f6e0043aee34b9d68b8727', '172.105.247.100', 1674441013, '__ci_last_regenerate|i:1674441013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93764e46de13a512e4ebd8aceca6af2d49292d74', '172.105.247.100', 1674441013, '__ci_last_regenerate|i:1674441013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c7b1ad2776e5025685c29772bd1de97936faa4', '172.105.247.100', 1674441013, '__ci_last_regenerate|i:1674441013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2824346746f42e6582fea878fda07d47db668802', '172.105.247.100', 1674441014, '__ci_last_regenerate|i:1674441014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c4887b17c6cd4a5266bedde115f2a21a12066f', '172.105.247.100', 1674441014, '__ci_last_regenerate|i:1674441014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbce30b1d8a97ae82c8d2b0aaa37bf4079b46da5', '172.105.247.100', 1674441014, '__ci_last_regenerate|i:1674441014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba9dc57b529319bf82eb22ec6008b625ac341ba', '172.105.247.100', 1674441015, '__ci_last_regenerate|i:1674441014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ccd9445825a43c5ba43d2e87e0a60f9a524450', '31.222.203.2', 1674441121, '__ci_last_regenerate|i:1674441121;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58eb6a125fc5572b378827ba916ad63602a9183c', '31.222.203.2', 1674441122, '__ci_last_regenerate|i:1674441122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34ed56867c1e6c18e26098e3314ec8b6615fb9d', '31.222.203.2', 1674441122, '__ci_last_regenerate|i:1674441122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28746862d3935011a28716cbbe19f77a61c1ac9d', '31.222.203.2', 1674441122, '__ci_last_regenerate|i:1674441122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c106062dbb7b4503c380eeff415714d86910bd6f', '31.222.203.2', 1674441122, '__ci_last_regenerate|i:1674441122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a509ea6978a3c00b82c753d37551c5380f55d72', '31.222.203.2', 1674441122, '__ci_last_regenerate|i:1674441122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8569fdc65440c7f7e1cdc0f1ce448b19fd7062df', '31.222.203.2', 1674442930, '__ci_last_regenerate|i:1674442930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d8676e48fddb2ab386c35688a32464c424d5ce7', '31.222.203.2', 1674442930, '__ci_last_regenerate|i:1674442930;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e7b0e6d3611ddd7bbd689f4e4cafc7a7f801be', '31.222.203.2', 1674442930, '__ci_last_regenerate|i:1674442930;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57880f716cdb407b93ebd12705dc218ad92b32f8', '31.222.203.2', 1674442933, '__ci_last_regenerate|i:1674442933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7700c3f1e3ecba5d3c4b3ae6478f4f171c7277b6', '31.222.203.2', 1674442933, '__ci_last_regenerate|i:1674442933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd00271d7d28f9d208071a43d94bf3ed6277b34', '31.222.203.2', 1674442933, '__ci_last_regenerate|i:1674442933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a857bc3fdcdf57eb95357f305516b309264e1243', '31.222.203.2', 1674444723, '__ci_last_regenerate|i:1674444723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc6cfce7ee80ca539801e1f46a1c2bcff31970d', '31.222.203.2', 1674444723, '__ci_last_regenerate|i:1674444723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e70ad188829bef0bc3f4c501b5b86f34f21737b', '31.222.203.2', 1674444723, '__ci_last_regenerate|i:1674444723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425169adcd659b503ec6aafa272e63cd328bdc21', '31.222.203.2', 1674444724, '__ci_last_regenerate|i:1674444724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d785e5605a3fa87af8f3d5c4c246ac4bbbeec7', '31.222.203.2', 1674444724, '__ci_last_regenerate|i:1674444724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aece2c314dcd35c1bf4565f13e7fbf5129247a7b', '31.222.203.2', 1674444724, '__ci_last_regenerate|i:1674444724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d32c7662fca0995a00e61935e7d447981ee4981f', '172.105.247.100', 1674446409, '__ci_last_regenerate|i:1674446409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d8000e52e38779e85b9281477eab976ff0b7639', '172.105.247.100', 1674446409, '__ci_last_regenerate|i:1674446409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5484a4f00de5088973e35f1502fd6cfbd41f61', '172.105.247.100', 1674446412, '__ci_last_regenerate|i:1674446412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfdb8566b6975211edb7443a0530860d506b97c', '172.105.247.100', 1674446412, '__ci_last_regenerate|i:1674446412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b52c9f0fe7bfa51c3e92eb40e94ba8ff200ae0', '172.105.247.100', 1674446412, '__ci_last_regenerate|i:1674446412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b27537766dc4e9a113beed1da4939483a6e96f7', '172.105.247.100', 1674446412, '__ci_last_regenerate|i:1674446412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67bea0f29c7cd73e75cb470617b7370cdea5f5ee', '172.105.247.100', 1674446412, '__ci_last_regenerate|i:1674446412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e02a7791cde0faf5ebd9087091e470a6d8b4f3e', '172.105.247.100', 1674446412, '__ci_last_regenerate|i:1674446412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1941510047d6bf3198268a5b77697be79596f3', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2927e6104cdf326d9c0d2c8f049d1229d146af0d', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f575d50974cb646f4b1d06ca27a10e345e093551', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364d322dd2343f0f9bf0d866040358adf26b479f', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f046d49ee1365a7c703f348a987cdb816731bcb5', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d0056eab91a1612c3bbde7414e45e536785a252', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb8746c1068f4a8704a1649b67b5252744bc9bc', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6355f2165f804039e6340e3cd5aba50e4eb9b891', '172.105.247.100', 1674446413, '__ci_last_regenerate|i:1674446413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2daa15c60b24af9b13303469d74ca5b5edf77ba8', '172.105.247.100', 1674446414, '__ci_last_regenerate|i:1674446414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2a97e3cdaa7f0ebdc7a17d1d94ee6c1ff2aece', '172.105.247.100', 1674446414, '__ci_last_regenerate|i:1674446414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52cb9976b60d88f748e63f02e9cb2549c08c0938', '172.105.247.100', 1674446414, '__ci_last_regenerate|i:1674446414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a749b61fa80574947ef5cc8d3e923aeb416b661c', '172.105.247.100', 1674446414, '__ci_last_regenerate|i:1674446414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5ed4a5f23d3eb2419f931c19b0ec3f24f0c7d6', '172.105.247.100', 1674446414, '__ci_last_regenerate|i:1674446414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1cbde13e08935292aa4b8fa5d753f2d06846ef', '172.105.247.100', 1674446414, '__ci_last_regenerate|i:1674446414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ff3296a4e44e27f2fa4a2805b8a74502199c85', '172.105.247.100', 1674446415, '__ci_last_regenerate|i:1674446414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563854cb26015ebadc17a8d5e2dbe9057bf10fad', '172.105.247.100', 1674446415, '__ci_last_regenerate|i:1674446414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d73e6e971bf7b2499435f05467caf9c572c22245', '31.222.203.2', 1674446521, '__ci_last_regenerate|i:1674446521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('053ea069cc96c523ecd9c327b630ea43d7512a53', '31.222.203.2', 1674446521, '__ci_last_regenerate|i:1674446521;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0dac2c769389fb1fc24bef805df2df50da91b2', '31.222.203.2', 1674446521, '__ci_last_regenerate|i:1674446521;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503e7d2d249f4f0795d4b360d7bccca30fa9fbf2', '31.222.203.2', 1674446524, '__ci_last_regenerate|i:1674446524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726183a7ba903a0fce3ef31c4e310ae00112e3e7', '31.222.203.2', 1674446524, '__ci_last_regenerate|i:1674446524;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d4186565377fdfc0e3625b5a1e63e575231c13', '31.222.203.2', 1674446524, '__ci_last_regenerate|i:1674446524;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd82d613517a5b9330f98e1386adf3f577ad6f4', '31.222.203.2', 1674448322, '__ci_last_regenerate|i:1674448322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a56f22fb50b50fffab6cc5e882e173d896fc0c', '31.222.203.2', 1674448322, '__ci_last_regenerate|i:1674448322;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9d837568bad48275a6f0d150cf59f14be45c00', '31.222.203.2', 1674448322, '__ci_last_regenerate|i:1674448322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9de9b763a7360ba9f23cf7ba86e506e2833c625', '31.222.203.2', 1674448324, '__ci_last_regenerate|i:1674448324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2beb259a5e0696f851362716b81e29a8ca660cc', '31.222.203.2', 1674448324, '__ci_last_regenerate|i:1674448324;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0672fd94f4750261dcb70e9ad15c6e2a56ea5a20', '31.222.203.2', 1674448324, '__ci_last_regenerate|i:1674448324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62abfdf845323bd55a37e024edde230f84c06ad9', '31.222.203.2', 1674450116, '__ci_last_regenerate|i:1674450116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7435e0b194900d0f48ff2190cf0f9cbe7e27e1e', '31.222.203.2', 1674450116, '__ci_last_regenerate|i:1674450116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b00faf572d61488797e5e500b467c8e2dd3ef6e', '31.222.203.2', 1674450116, '__ci_last_regenerate|i:1674450116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59133e3afc5491b628aa39d7ed721ac427270490', '31.222.203.2', 1674450119, '__ci_last_regenerate|i:1674450119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e238eb068bf60f3cfd346d9ad49315fcfbaa32db', '31.222.203.2', 1674450119, '__ci_last_regenerate|i:1674450119;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f474c8ed291b4842da3e4b2b7af053fe67ad14d3', '31.222.203.2', 1674450119, '__ci_last_regenerate|i:1674450119;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4af773a3ae8b5cc4557726a06058fe9898fd86', '37.111.219.28', 1674451607, '__ci_last_regenerate|i:1674451598;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674367998\";last_ip|s:13:\"37.111.218.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3dabc868b5bf24c76dc47ab236d7d925d0434e', '172.105.247.100', 1674451810, '__ci_last_regenerate|i:1674451810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07bd438e0a4ae7c3cee1ae1a6caa25e7468bb03', '172.105.247.100', 1674451810, '__ci_last_regenerate|i:1674451810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc002ccdad58fac34f920e2b920053cfbaf6cbd', '172.105.247.100', 1674451810, '__ci_last_regenerate|i:1674451810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4157a181cb7fa858d427eaf9f1f9ff7f8be96a24', '172.105.247.100', 1674451810, '__ci_last_regenerate|i:1674451810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32bb3742459cb1731b0ba1bae9360a4c307ce6d0', '172.105.247.100', 1674451811, '__ci_last_regenerate|i:1674451811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3fc69f276094934ce3e52c3fd4fbc8618faafc', '172.105.247.100', 1674451811, '__ci_last_regenerate|i:1674451811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99c8efe0881f7acf95e0c7104f6b9adbbdf2231', '172.105.247.100', 1674451811, '__ci_last_regenerate|i:1674451811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44869f4468487f3a5b29fbfc998632acbf83a9a', '172.105.247.100', 1674451811, '__ci_last_regenerate|i:1674451811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a5c73cd2af5d9b11c3aae09c0f35b21eeabf4c5', '172.105.247.100', 1674451812, '__ci_last_regenerate|i:1674451812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8041942269f67d7b7cb5cd277a1f28b5097eb7ab', '172.105.247.100', 1674451812, '__ci_last_regenerate|i:1674451812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d0d18d236514b6e961f400df0ee64d11ea27d7', '172.105.247.100', 1674451812, '__ci_last_regenerate|i:1674451812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee1f23246cd657491ade110e01434624d7b50c00', '172.105.247.100', 1674451813, '__ci_last_regenerate|i:1674451812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d225a243b897f92b6764752380aabf7dfe862a73', '172.105.247.100', 1674451813, '__ci_last_regenerate|i:1674451813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87160e737b172b00a4430c5125d43b8343df801f', '172.105.247.100', 1674451814, '__ci_last_regenerate|i:1674451813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e45cab835ffe9750f0880d9e0e81da6d17c926', '172.105.247.100', 1674451814, '__ci_last_regenerate|i:1674451814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10cc3e5ef0ebf13159073b32d4c3eb7a9b72459d', '172.105.247.100', 1674451814, '__ci_last_regenerate|i:1674451814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223ab6783e5ad11f766d94c72c3edcde01b5d350', '172.105.247.100', 1674451814, '__ci_last_regenerate|i:1674451814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19bac3a66638ac49a70f91a955f8fc8255a8598a', '172.105.247.100', 1674451815, '__ci_last_regenerate|i:1674451814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad203d676c0a83c6bec78a2c24b59e339cd2218f', '172.105.247.100', 1674451815, '__ci_last_regenerate|i:1674451815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32f7430f7901c1b37b2bf6c6f029879cfeb6cd9', '172.105.247.100', 1674451815, '__ci_last_regenerate|i:1674451815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4adf5a0a8e26d715e6b20eef84768fa21a9c95f', '172.105.247.100', 1674451815, '__ci_last_regenerate|i:1674451815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae94c102a3405abaa98a408e9d8080171d81c48', '172.105.247.100', 1674451816, '__ci_last_regenerate|i:1674451816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420e9f1960487ab0a78706592d74f0f0984453f0', '172.105.247.100', 1674451816, '__ci_last_regenerate|i:1674451816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f50682c5f204ff02ac0f9cd72eadb077f38e6c', '172.105.247.100', 1674451816, '__ci_last_regenerate|i:1674451816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2a1f063d86abf184fdd46cfad7615d8e2365c8', '116.204.230.26', 1674456189, '__ci_last_regenerate|i:1674456189;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674373774\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61043204b3c1b274310e92f3a54b7e66ae8cdd28', '31.222.203.2', 1674451923, '__ci_last_regenerate|i:1674451923;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec2301b40efc971e1354b89e2c73f6063920dca', '31.222.203.2', 1674451925, '__ci_last_regenerate|i:1674451925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2814b7b9b5c6c3cb0a03f1d0912f7c997510549', '31.222.203.2', 1674451925, '__ci_last_regenerate|i:1674451925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0abed99972e11c532b4be419865afdba5db81a3', '31.222.203.2', 1674451925, '__ci_last_regenerate|i:1674451925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6069be36d183eafe112fc4a12af7826f2b6a8c2', '31.222.203.2', 1674451925, '__ci_last_regenerate|i:1674451925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbde626b8d619fa47314eb1f71bf3d0f32aed3b', '31.222.203.2', 1674451925, '__ci_last_regenerate|i:1674451925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53c067f680aeb779824f9462ed834a55dd36397', '31.222.203.2', 1674453720, '__ci_last_regenerate|i:1674453720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd87e6e575ea518b4711994a7d0f57346a397f25', '31.222.203.2', 1674453720, '__ci_last_regenerate|i:1674453720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56da7b4f1eebd7caf9d5fadecd6336c85480fc60', '31.222.203.2', 1674453720, '__ci_last_regenerate|i:1674453720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d39d78ed5f3f404dccaebdd07e151c8fa8c14c', '31.222.203.2', 1674453723, '__ci_last_regenerate|i:1674453723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a8d43d8e930fcc83a626fa57f51692f67c3af35', '31.222.203.2', 1674453723, '__ci_last_regenerate|i:1674453723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2028f11ca7fdd18e483639e6c3a3d4484bac5731', '31.222.203.2', 1674453723, '__ci_last_regenerate|i:1674453723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9018e5445189b3102cf0ca2b73a97176d0c28c15', '31.222.203.2', 1674455520, '__ci_last_regenerate|i:1674455520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a4d53918468368ea13c881c5381b8278324eed', '31.222.203.2', 1674455520, '__ci_last_regenerate|i:1674455520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8f6a0194e0cae1dbf63070ecfd7e085cd44ebe', '31.222.203.2', 1674455520, '__ci_last_regenerate|i:1674455520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b188114a308909faaf02adcae669b15533126d39', '31.222.203.2', 1674455520, '__ci_last_regenerate|i:1674455520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d37c40cab8b83a5a17d1c3a6bbac0e5ed894fc0', '31.222.203.2', 1674455520, '__ci_last_regenerate|i:1674455520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3fe7c8e7027b587e674a0919ab7aa7e217a54c', '31.222.203.2', 1674455520, '__ci_last_regenerate|i:1674455520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570e710e1f739242eb863fafbcc61a2d76dfc5ba', '116.204.230.26', 1674456198, '__ci_last_regenerate|i:1674456189;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674373774\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('632d7425f733f3f17498a41e401e37fdefcf4e80', '172.105.247.100', 1674456610, '__ci_last_regenerate|i:1674456610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604bc555abeff52ad086a9d4609cbb4c9ac13b9c', '172.105.247.100', 1674456610, '__ci_last_regenerate|i:1674456610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eeede4240f59934c60bd857695ec8b276dcf35a', '172.105.247.100', 1674456611, '__ci_last_regenerate|i:1674456611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f752ae6a5372517b2d6561f3863b53821b6afe7c', '172.105.247.100', 1674456611, '__ci_last_regenerate|i:1674456611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d544ad57eccdd1f53962cc816f0be9ddb340e93', '172.105.247.100', 1674456611, '__ci_last_regenerate|i:1674456611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e57366699e575981ca69d6c296436eda6792f61c', '172.105.247.100', 1674456612, '__ci_last_regenerate|i:1674456612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a773e6fdb38bdf27fa7f1cf698538d3be73c3d', '172.105.247.100', 1674456612, '__ci_last_regenerate|i:1674456612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859231dc5b27ec517064a4fb15e316debb469f94', '172.105.247.100', 1674456612, '__ci_last_regenerate|i:1674456612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdbdd8e0fc7ec6a315893e2ed4f99467c8209be0', '172.105.247.100', 1674456612, '__ci_last_regenerate|i:1674456612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d576661b429631fe1e2d6fedaf56d695d05c72', '172.105.247.100', 1674456613, '__ci_last_regenerate|i:1674456613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f166aa4721dda2fee0d46e28b2603626ec924114', '172.105.247.100', 1674456613, '__ci_last_regenerate|i:1674456613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ab15aab6bf75248e1a3ecc14a41657ff66105f', '172.105.247.100', 1674456613, '__ci_last_regenerate|i:1674456613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ae378acbe687774a59260d9ea08f89562f0287', '172.105.247.100', 1674456613, '__ci_last_regenerate|i:1674456613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24aa4c6470fb2c678d639b7c0b5ee742357b1f53', '172.105.247.100', 1674456613, '__ci_last_regenerate|i:1674456613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cff5a5f8074df30c2cae9dd69ccbe2227d823f', '172.105.247.100', 1674456614, '__ci_last_regenerate|i:1674456613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77b978f8526383949f224b26b5f38e5306baf0fc', '172.105.247.100', 1674456614, '__ci_last_regenerate|i:1674456614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6baeec642844c8ddda1a688423565eda1e82aee1', '172.105.247.100', 1674456614, '__ci_last_regenerate|i:1674456614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f879ad5428cd56f8c39be32784d5c6778deee1b', '172.105.247.100', 1674456614, '__ci_last_regenerate|i:1674456614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8c21d627ce73a138d6ba435d50755b28d98bf2', '172.105.247.100', 1674456614, '__ci_last_regenerate|i:1674456614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f065a77c10801c5364db9603513fd40bdcea8ed7', '172.105.247.100', 1674456615, '__ci_last_regenerate|i:1674456615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf6d73cd61e3ebfbaa02d972bfd56edf19d2f3d', '172.105.247.100', 1674456615, '__ci_last_regenerate|i:1674456615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ad2ab04e00e92485793ea4b9e44456aaf4f195', '172.105.247.100', 1674456615, '__ci_last_regenerate|i:1674456615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90d0c32c6c87fbb237c275ff7f3d3cae0e07a1f', '172.105.247.100', 1674456615, '__ci_last_regenerate|i:1674456615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1628f07edf5eb03df9c259df3b29b383e015706', '172.105.247.100', 1674456616, '__ci_last_regenerate|i:1674456616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b2163b66b7527d562207d1238ea6e50db7e1da', '31.222.203.2', 1674457317, '__ci_last_regenerate|i:1674457317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701afba692d5870a2304f04ecae8b078c18adacb', '31.222.203.2', 1674457317, '__ci_last_regenerate|i:1674457317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7d5af9dadf23c876a946f835bbba3ec3a7295c', '31.222.203.2', 1674457317, '__ci_last_regenerate|i:1674457317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd8855a74cb4eb4b78a1ecf4d0276c8871192dd', '31.222.203.2', 1674457319, '__ci_last_regenerate|i:1674457319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221c636cfe47031b903273c88f4d914623f7aeb5', '31.222.203.2', 1674457319, '__ci_last_regenerate|i:1674457319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f72027834d86cf6cb3017467fb3ecd4cc3d366', '31.222.203.2', 1674457319, '__ci_last_regenerate|i:1674457319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a4ff28d9351114fb0e0d911913af401a1b4880', '31.222.203.2', 1674459124, '__ci_last_regenerate|i:1674459124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d306a4d9543a144176c506370998df9fca615b1d', '31.222.203.2', 1674459124, '__ci_last_regenerate|i:1674459124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b236d725b4705efa159e5d1e6f2dd0a1a0ef30fa', '31.222.203.2', 1674459124, '__ci_last_regenerate|i:1674459124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af21cb9d5619361e9b2e0f2aad61f44fce796918', '31.222.203.2', 1674459124, '__ci_last_regenerate|i:1674459124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405abd117780363c3310a8903b1186fd910fcd88', '31.222.203.2', 1674459124, '__ci_last_regenerate|i:1674459124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae8dafda0462d7b88e12bd8eddd87315f5d12b8', '31.222.203.2', 1674459124, '__ci_last_regenerate|i:1674459124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29926c50f06de3ae1e3a16a8cdf7abf2330479b', '45.120.39.89', 1674460051, '__ci_last_regenerate|i:1674460051;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674459882;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57a1f2af74fef32ac13cb09fc3de14da73929a4', '45.120.39.89', 1674463825, '__ci_last_regenerate|i:1674463824;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674459882;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fc9216386555a470d3b43af7fccfef14841e72', '31.222.203.2', 1674460922, '__ci_last_regenerate|i:1674460922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('331204ba9075631babcc6c2182eba2933b3c6532', '31.222.203.2', 1674460922, '__ci_last_regenerate|i:1674460922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f625ea83b9f16a059ceeb72937897377993e1e', '31.222.203.2', 1674460922, '__ci_last_regenerate|i:1674460922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b04bb9f9fae8a755681db4b67764bc9c9a3b7bdc', '31.222.203.2', 1674460922, '__ci_last_regenerate|i:1674460922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad23a2feb06c21ac731b38c6eee2cfcdccf7524', '31.222.203.2', 1674460922, '__ci_last_regenerate|i:1674460922;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471aeb24f476c38ec0ff3bd6d71442b5a8252d9e', '31.222.203.2', 1674460922, '__ci_last_regenerate|i:1674460922;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c1b20f479b6e661ebe944a3ee5eced8deac97e', '172.105.247.100', 1674461409, '__ci_last_regenerate|i:1674461409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfafdd1232c2ef45da506f2b1fc492328c48b984', '172.105.247.100', 1674461409, '__ci_last_regenerate|i:1674461409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3e8c6df32984a46f9749f0632dab9409f37eac', '172.105.247.100', 1674461409, '__ci_last_regenerate|i:1674461409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a1ded86d39f450d56f07edd9ea0867fa8ad86f', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c60ea3ea8e3758a0a3a94f6cb7ba279683fa3b', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36777441169e09ca9d6453332162a49f16de0312', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de805823e5b95bc22505ff84948f76e0af24d52', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8197d433ae464a0a13c4991689b583267b6f636', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401a9b5b7aa5195f4a7f87517300dc1b37a1b017', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200bb364b8c919e417042d193dd5c7cbcf5bceaa', '172.105.247.100', 1674461410, '__ci_last_regenerate|i:1674461410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b1ba228ffa2e47df9646e9c557e7f072f5b2c4', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e932c7cef988ff575539cb245d04808c0a71c217', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9594e3811844478545ceae955dadd10372e16559', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8671b50c8a59a97729b3952c51c85d0b7f7bb60c', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b1784c530fac3236cee698491f9def9e04b1f7f', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656d7b356445d588793d030020d508d2b7cf3448', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2ebfb3f8acb8f7ff4bc992c0acecb76a3eaa05', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3d77ed2d2ad64d2997b34a672405aac0f43adb', '172.105.247.100', 1674461411, '__ci_last_regenerate|i:1674461411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18dd3304c28e082877a6774d252c97cd94381f13', '172.105.247.100', 1674461412, '__ci_last_regenerate|i:1674461412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ccd9c865fc59cb2b01f894c97f36843a1d44c1', '172.105.247.100', 1674461412, '__ci_last_regenerate|i:1674461412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2461da53230bf44c8dcdda2f59887c58f9d2aa4a', '172.105.247.100', 1674461412, '__ci_last_regenerate|i:1674461412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd9021c62dfafa7133d15673e110e85053b8a35', '172.105.247.100', 1674461412, '__ci_last_regenerate|i:1674461412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004e96cb619872cacc9dab1b06982e7a93ca974b', '172.105.247.100', 1674461412, '__ci_last_regenerate|i:1674461412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727d580bd8652a561039388b84327e96a4148353', '172.105.247.100', 1674461413, '__ci_last_regenerate|i:1674461413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8386fed530530299b97b44bffa6a66302261e773', '31.222.203.2', 1674462722, '__ci_last_regenerate|i:1674462722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8dd92253bdbdbc45364a5961d976460149b39e5', '31.222.203.2', 1674462724, '__ci_last_regenerate|i:1674462724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63492270ca07fb4e5fe47bdd0acfcf1a945be869', '31.222.203.2', 1674462724, '__ci_last_regenerate|i:1674462724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54760261b7e0508a4c56d070cad86083ef3c24f5', '31.222.203.2', 1674462724, '__ci_last_regenerate|i:1674462724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7dad48f2b1c2d8cc08d2f6467b593e7e3b2e00', '31.222.203.2', 1674462724, '__ci_last_regenerate|i:1674462724;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c5ac70a12fe90498a8fd053efda37631521761', '31.222.203.2', 1674462724, '__ci_last_regenerate|i:1674462724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee005589479470914be53f63bb1ebc292ce782e', '45.120.39.89', 1674465405, '__ci_last_regenerate|i:1674465405;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674463845;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47ffcc8298b2e938c5b5928e540b8c30323d363', '31.222.203.2', 1674464520, '__ci_last_regenerate|i:1674464520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65915e5dd323a979ff64ad398e2eb57082f2f83', '31.222.203.2', 1674464520, '__ci_last_regenerate|i:1674464520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611a3b891890a93e346e59dc0fa2a7e8a0a4d8fe', '31.222.203.2', 1674464520, '__ci_last_regenerate|i:1674464520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9251441f9824acf6ec3289452ec6e7bce8216de', '31.222.203.2', 1674464520, '__ci_last_regenerate|i:1674464520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1eef19904a50f5bdcc38fb48c1819885b95ddf', '31.222.203.2', 1674464520, '__ci_last_regenerate|i:1674464520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14602fc48f5251580bb8aad578d3ef3e8bc5b3b5', '31.222.203.2', 1674464520, '__ci_last_regenerate|i:1674464520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14068d9cfa133750e0b8985745814795249ea03e', '116.204.230.26', 1674464747, '__ci_last_regenerate|i:1674464683;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674451890\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93e2a2b106573bfc25171359a29ee64d631fa0d', '45.120.39.89', 1674466920, '__ci_last_regenerate|i:1674466920;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674465411;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf14219dd1fd99c54c95438ab2841d589713f9f', '172.105.247.100', 1674465609, '__ci_last_regenerate|i:1674465609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa68cd290ceb375e99fbb4c236165ff58dc876b', '172.105.247.100', 1674465610, '__ci_last_regenerate|i:1674465610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dfada36806ed579da0282fa3c30d21d31e4146c', '172.105.247.100', 1674465610, '__ci_last_regenerate|i:1674465610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0d94513ce74229ca4559c1f702cafba0764aa4', '172.105.247.100', 1674465610, '__ci_last_regenerate|i:1674465610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483cbffa9930857018602a49a14801c70f8b6f6b', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a34b99071311de03b7a58278824544d69ffcd8', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6317ab73068f7f361da41ff5140887e92e80fbc4', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822253347bac9152dfa7eabbf343e81f4741ff72', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edef451ee2345d4ddae56633ac1d17d6bc26b44b', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd501c7ba7f33ca70d0a7726332456e11fec77f', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d54bfdaa23773858b908b3a7039dc789a363cd', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea4cbc064bea4c129fa490a5aab7b84fc49176c', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8b43c77edc65f7a03c73f15568cd4523354159', '172.105.247.100', 1674465611, '__ci_last_regenerate|i:1674465611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05d58aa32514941ce27af95a3750b5fc7d3fb83', '172.105.247.100', 1674465612, '__ci_last_regenerate|i:1674465612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6275ad9bc45e4e5f694cd028d7f32353e09358a0', '172.105.247.100', 1674465612, '__ci_last_regenerate|i:1674465612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12ce9d20bad7bc4d818fa8d1b3f16b117f570c2', '172.105.247.100', 1674465612, '__ci_last_regenerate|i:1674465612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3e36d289a4f370665791df374462f68595b2cd', '172.105.247.100', 1674465612, '__ci_last_regenerate|i:1674465612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785b29bdbeea6678351f91bd47d57f947e71a9be', '172.105.247.100', 1674465612, '__ci_last_regenerate|i:1674465612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24d2c0ae21a1aa96d9c89e2558ce4da36903236d', '172.105.247.100', 1674465612, '__ci_last_regenerate|i:1674465612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e1427f9a85dfb31dd2b4dfafcb086e60513a129', '172.105.247.100', 1674465613, '__ci_last_regenerate|i:1674465612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7a604d45d5499b2ace748edf6ca74ae6b63425', '172.105.247.100', 1674465613, '__ci_last_regenerate|i:1674465613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03bc74276f76582645bde7433da3e4d9b67ca170', '172.105.247.100', 1674465613, '__ci_last_regenerate|i:1674465613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f11eaa274a286c3ea0ba24e91e3e269b891d46', '172.105.247.100', 1674465613, '__ci_last_regenerate|i:1674465613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84014e09644245e23042c0a6f03b88b5ef2c389f', '172.105.247.100', 1674465613, '__ci_last_regenerate|i:1674465613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3838056aca4f80611f20844f70edc792227733fc', '31.222.203.2', 1674466319, '__ci_last_regenerate|i:1674466319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12174b7aca7ef703d706a697e7e4980d12f034b0', '31.222.203.2', 1674466319, '__ci_last_regenerate|i:1674466319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56af0b07729369e22da6308ef82d6504055dd98c', '31.222.203.2', 1674466319, '__ci_last_regenerate|i:1674466319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f2d8cb6aa158db9caad1611260747eeb921c73', '31.222.203.2', 1674466319, '__ci_last_regenerate|i:1674466319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dfa8f821ac613542d4485ba074c68b7450a59bc', '31.222.203.2', 1674466319, '__ci_last_regenerate|i:1674466319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b300737c17ae3a29844c90814d4a64fc7632c696', '31.222.203.2', 1674466319, '__ci_last_regenerate|i:1674466319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f859c1f8a8b3db17207b0ecd63f88715866c595', '45.120.39.89', 1674467989, '__ci_last_regenerate|i:1674467989;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674466997;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('131bfc357f1eb4f490c5d86bd75301360835948e', '45.120.39.89', 1674468643, '__ci_last_regenerate|i:1674468643;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674467989;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdfdc0c7966650f1b5bfa7920bc656c4c66a4295', '31.222.203.2', 1674468126, '__ci_last_regenerate|i:1674468126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0626bb741438bde7135fa097d90cb045dc1156c0', '31.222.203.2', 1674468126, '__ci_last_regenerate|i:1674468126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ae8aa5491136883e061838168001e896d0d36f', '31.222.203.2', 1674468126, '__ci_last_regenerate|i:1674468126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3fbed6905a833e3a12a503b0f270ccb84f64d02', '31.222.203.2', 1674468128, '__ci_last_regenerate|i:1674468128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96c4c4a7f2fac20e82153cb75dece45b21757f4', '31.222.203.2', 1674468128, '__ci_last_regenerate|i:1674468128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c8e7dc71eb078a7b161e24aa7e14e9bb23ee16', '31.222.203.2', 1674468128, '__ci_last_regenerate|i:1674468128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e4aad6b2eb5089ff76ff2adbee6139c9cf3a89', '45.120.39.89', 1674470934, '__ci_last_regenerate|i:1674470934;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674468968;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1af914e6df86892c4e66b12f7d04c0f60b3f368', '31.222.203.2', 1674469921, '__ci_last_regenerate|i:1674469921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7938e9e810652a01ef7438c6d30944f435464e10', '31.222.203.2', 1674469921, '__ci_last_regenerate|i:1674469921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6ab3a27c4eea224dbe57fbf855fa2ff53d3bee', '31.222.203.2', 1674469921, '__ci_last_regenerate|i:1674469921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0acc0d3685b3bd65f2cacd4852954bea94b173', '31.222.203.2', 1674469921, '__ci_last_regenerate|i:1674469921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141fa1e775bc7f9c370f7de460272aa42ae98d04', '31.222.203.2', 1674469921, '__ci_last_regenerate|i:1674469921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab0e94507d4f746b3ca9dfe068a2936c9925716', '31.222.203.2', 1674469921, '__ci_last_regenerate|i:1674469921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a570b99b2650b591135b2129de8150355d628029', '172.105.247.100', 1674470408, '__ci_last_regenerate|i:1674470408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1aae715808ceda2f42457a98fd417d36f8ce8e', '172.105.247.100', 1674470409, '__ci_last_regenerate|i:1674470409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f1a16aef25d81fa197b7aef50028be9e6b6e99', '172.105.247.100', 1674470409, '__ci_last_regenerate|i:1674470409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c1ab9d1bfa1e5c734a1d3b00c4380da4553622', '172.105.247.100', 1674470409, '__ci_last_regenerate|i:1674470409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ddf677ab8194bbd12599357ef129acaf194fcca', '172.105.247.100', 1674470410, '__ci_last_regenerate|i:1674470410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4751263021325e1839ecd737221fe7d85b3b0651', '172.105.247.100', 1674470410, '__ci_last_regenerate|i:1674470410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d87437fc7667aa32a213ad672833b8abe396234', '172.105.247.100', 1674470410, '__ci_last_regenerate|i:1674470410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a896a8fc7ec7f6b0714de4c5c48528fbcc832558', '172.105.247.100', 1674470410, '__ci_last_regenerate|i:1674470410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd6348c7f1482b424d92485d1af0fe07699525a', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b841b0dd78c708ffdeca0f08700a22867d94fdab', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564a26b91894a6752f9603af7ec7a55144a27599', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6302dcbc5a5d305cc676c8759741ec4fff66944e', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aead33a3aeabde79282bb807432e5396fcc0bf2', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb64948d18b81c11a04a81783c84d626e902ca6', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399ecca2d9cf3d32fcab87f107229680a729f81a', '172.105.247.100', 1674470411, '__ci_last_regenerate|i:1674470411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4f300ac6ee7557218a96fc1614c43fa8cd9bd8', '172.105.247.100', 1674470412, '__ci_last_regenerate|i:1674470411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888f8917ff614696120de6181364d92c57775d9f', '172.105.247.100', 1674470412, '__ci_last_regenerate|i:1674470412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0888c5a2c3c956ea8e47948ca2f8c63f6a2bf9d', '172.105.247.100', 1674470412, '__ci_last_regenerate|i:1674470412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e938038a9076cc44adf43320814159eff893ee6d', '172.105.247.100', 1674470412, '__ci_last_regenerate|i:1674470412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ac40b0dfe7326805d0d2fb80fab6cfa5bc5545', '172.105.247.100', 1674470412, '__ci_last_regenerate|i:1674470412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8999930ffa7cebf414f2506779a2546a171893a', '172.105.247.100', 1674470413, '__ci_last_regenerate|i:1674470413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80017f78c96669bbb55de1c27c20b72a9fe8da2', '172.105.247.100', 1674470413, '__ci_last_regenerate|i:1674470413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7236a311ab9a750000e2bfb8ad929f39f1cdfd', '172.105.247.100', 1674470413, '__ci_last_regenerate|i:1674470413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b373ad40a306d5663b59f7f856cb4701c0004a37', '172.105.247.100', 1674470414, '__ci_last_regenerate|i:1674470413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144a2c0883f28816ed2b0f2effcf4d7d4aa469c3', '45.120.39.89', 1674471530, '__ci_last_regenerate|i:1674471530;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674471109;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52ca34fbc371aa966c454203310489402a8313aa', '45.120.39.89', 1674473871, '__ci_last_regenerate|i:1674473871;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674472179;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d89e376b454693a9cb1e00aaee3a94acfd0275', '31.222.203.2', 1674471721, '__ci_last_regenerate|i:1674471721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9663693ba663ec31b40906783fd56ca55230ce', '31.222.203.2', 1674471721, '__ci_last_regenerate|i:1674471721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb7ae85634052502ab488308898bee4ccb4d5cc8', '31.222.203.2', 1674471721, '__ci_last_regenerate|i:1674471721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39dd604a88ba8552f025aca86ce3688e9cafd13', '31.222.203.2', 1674471722, '__ci_last_regenerate|i:1674471722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d9daaace83d0ff6399781bd0b12aef6f2fb16fd', '31.222.203.2', 1674471722, '__ci_last_regenerate|i:1674471722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245a0668d7fd10eada1d98021372a3cdd5c3498a', '31.222.203.2', 1674471722, '__ci_last_regenerate|i:1674471722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597d9a4fb403c6391b5df9f0f3b81b5778306002', '31.222.203.2', 1674473520, '__ci_last_regenerate|i:1674473520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6438ded49a410187b88c99a57a4c2639373d34da', '31.222.203.2', 1674473520, '__ci_last_regenerate|i:1674473520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c8fe81019ec711b3459cd0158d01b969de504a', '31.222.203.2', 1674473520, '__ci_last_regenerate|i:1674473520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38bd94d01d880c2558cc826b97c1495ee8cf96e', '31.222.203.2', 1674473520, '__ci_last_regenerate|i:1674473520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d51f99abe2f284b7771d809ef4316a2051f526e', '31.222.203.2', 1674473520, '__ci_last_regenerate|i:1674473520;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12961d8247f8063df794a2602f4de8965ee70564', '31.222.203.2', 1674473520, '__ci_last_regenerate|i:1674473520;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e453eafd73b158d55d4827fc0c94461c7b3180e', '45.120.39.89', 1674475035, '__ci_last_regenerate|i:1674475035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674475018;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f20fe89721aa334551ec9e12dd41ba68c2c3cec8', '116.204.230.26', 1674474875, '__ci_last_regenerate|i:1674474840;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674464688\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"IU0qgW7TfyCPGHec9kM8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731d6a712e13be5ca5d349a820de73df72ce002e', '45.120.39.89', 1674477096, '__ci_last_regenerate|i:1674477096;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674475035;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8571cb3e76a9ddcbc01337a5451baca485e15b1c', '31.222.203.2', 1674475321, '__ci_last_regenerate|i:1674475321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bba92ae4730975a180789ae13ab2e346af7663d', '31.222.203.2', 1674475321, '__ci_last_regenerate|i:1674475321;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc26aa34e640a2825967ebf0b704a3afe496184', '31.222.203.2', 1674475322, '__ci_last_regenerate|i:1674475322;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee15ac5a3ed34a8b584e3fa1ddfbb23e62fa830e', '31.222.203.2', 1674475323, '__ci_last_regenerate|i:1674475323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d08d333e514f629750167fc9185adf5853854e', '31.222.203.2', 1674475323, '__ci_last_regenerate|i:1674475323;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e96527364ed3905661b4bba8f7dc2527b014f9', '31.222.203.2', 1674475323, '__ci_last_regenerate|i:1674475323;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd28c0755c4205fec4aaa2426301a63628312a5', '172.105.247.100', 1674475808, '__ci_last_regenerate|i:1674475808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a9fa505a14422f116d1cc900904af47c7abdd4', '172.105.247.100', 1674475809, '__ci_last_regenerate|i:1674475809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423aef152f66f276f87448de7bdcd0c32e3f3418', '172.105.247.100', 1674475809, '__ci_last_regenerate|i:1674475809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bf06da58993a71091b0ee1b6c021ffe1eb87de', '172.105.247.100', 1674475809, '__ci_last_regenerate|i:1674475809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e5586baa3488de520b2af45e6e7c1f2cc4433ad', '172.105.247.100', 1674475810, '__ci_last_regenerate|i:1674475810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f4336486f6c8cbf1d6be5c64bf62864717edfb', '172.105.247.100', 1674475810, '__ci_last_regenerate|i:1674475810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e917732b7186598e92015db81aed57cb16f90d51', '172.105.247.100', 1674475810, '__ci_last_regenerate|i:1674475810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e759bf5db99b8572532eab9b29d67bb2a6b66594', '172.105.247.100', 1674475810, '__ci_last_regenerate|i:1674475810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520e39a53e60ad4fa7407cc54834899c858a0b1f', '172.105.247.100', 1674475810, '__ci_last_regenerate|i:1674475810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1c26e049a8b9a578d1cd55bc0ee60fff58dcac', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d77db5ea554196249f5b6b0598c53137fef57f', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('facf9c8525acf890da3794851139b37f8dea7e17', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e55d6816220fbc0c0f6f888f4ea03faa23005c3', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a00bf15e8b6b751161011318498ea4ab723b1e67', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45182f1a0064ef9a2b3d4deff95639bc8450a5bd', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a8da5842336f043f41b949baaf2b6b52849029', '172.105.247.100', 1674475811, '__ci_last_regenerate|i:1674475811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80e91bc3d1c60788c10801d06c54d48ae594e117', '172.105.247.100', 1674475812, '__ci_last_regenerate|i:1674475811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ee85929ce4cc35e1a9f68b0e14e20670d02fff', '172.105.247.100', 1674475812, '__ci_last_regenerate|i:1674475812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23388ddcd26f5c5cdfe6ad0b1f0c41e5881991df', '172.105.247.100', 1674475812, '__ci_last_regenerate|i:1674475812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b23dd8e6951cc310adae9b0d3e1f1bcd4d586a6', '172.105.247.100', 1674475812, '__ci_last_regenerate|i:1674475812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0bb6b6719a011bf4b0cd85d25e7bff9c6420a79', '172.105.247.100', 1674475812, '__ci_last_regenerate|i:1674475812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86461de197c73547f248ce2481d12a188954eb21', '172.105.247.100', 1674475813, '__ci_last_regenerate|i:1674475813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83762194081554280fce5e2af658cf69231cdc4e', '172.105.247.100', 1674475813, '__ci_last_regenerate|i:1674475813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ca797baac7cb1b47ecaa1283ffcf1cabc52cda', '172.105.247.100', 1674475813, '__ci_last_regenerate|i:1674475813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18cc9f73354db0c042e5565974db4e89edfff61d', '45.120.39.89', 1674479565, '__ci_last_regenerate|i:1674479565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674477096;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93430d5b85c796b3db242976e15fd0209a614fb1', '31.222.203.2', 1674477122, '__ci_last_regenerate|i:1674477122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a032bf91e08c68e05e1a2013c5f63315c7fd12db', '31.222.203.2', 1674477122, '__ci_last_regenerate|i:1674477122;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deba2db53095e3d12e5cba759cec227350083fe6', '31.222.203.2', 1674477122, '__ci_last_regenerate|i:1674477122;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d11036fa5a56d46d6903147988b4c78e9172b2fb', '31.222.203.2', 1674477124, '__ci_last_regenerate|i:1674477124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9c1b56e6dcf4c2ff97a6a372ea4cb6ca9495b8', '31.222.203.2', 1674477124, '__ci_last_regenerate|i:1674477124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813c44e844d8d0b44148262cca1390f3b136a6e4', '31.222.203.2', 1674477124, '__ci_last_regenerate|i:1674477124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f41782ce8e832f1013e9c3acf19b6fb2b45d7f9', '31.222.203.2', 1674478924, '__ci_last_regenerate|i:1674478924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f7410dc768a1a77032433df1abaa787ad944d68', '31.222.203.2', 1674478926, '__ci_last_regenerate|i:1674478926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4792794dfb18fe25c7e6daf97a91366bbfa6c7c', '31.222.203.2', 1674478926, '__ci_last_regenerate|i:1674478926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9942b19dd8c7a60f52957f5c4c5faf1f3178a02e', '31.222.203.2', 1674478926, '__ci_last_regenerate|i:1674478926;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ae5534025bde866673d175dd4f9ea3e58512a1', '31.222.203.2', 1674478926, '__ci_last_regenerate|i:1674478926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea4d743cccbece1a50ff5084feb20663f8fa736', '31.222.203.2', 1674478926, '__ci_last_regenerate|i:1674478926;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4f5b50ed0610178ff2cbe13586d64659c5004c', '45.120.39.89', 1674481348, '__ci_last_regenerate|i:1674481348;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674481327;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d60c55a12d52ffe0523a2af1b3e1647ea08bc1', '31.222.203.2', 1674480727, '__ci_last_regenerate|i:1674480727;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b51669b0db3dd2bfca1d7b5e6f71cb4fa8c20f5', '31.222.203.2', 1674480727, '__ci_last_regenerate|i:1674480727;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c76bc0701b52dd0dfe3bdc627cd6ae65cfb55b2', '31.222.203.2', 1674480728, '__ci_last_regenerate|i:1674480728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c49eccbe474b9589cbfba522a612b5015069cea', '31.222.203.2', 1674480729, '__ci_last_regenerate|i:1674480729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a0ca4dff032ab7ab7e10d4a327fa1f4fcc0876', '31.222.203.2', 1674480729, '__ci_last_regenerate|i:1674480729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f528836a8a74ce7b43d5d3bebc2ce1b157dc9ffd', '31.222.203.2', 1674480729, '__ci_last_regenerate|i:1674480729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ce4576c05fe678efe7727b4ea88313fa6bc69b', '172.105.247.100', 1674481209, '__ci_last_regenerate|i:1674481209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe19955f996c239b03ab221c23859c5011f0f7f', '172.105.247.100', 1674481209, '__ci_last_regenerate|i:1674481209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531a935d97d2781c7542881f4079f656c122510a', '172.105.247.100', 1674481209, '__ci_last_regenerate|i:1674481209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56ac33788e0eeee43bf4afe7d5d6f9060b2801f', '172.105.247.100', 1674481209, '__ci_last_regenerate|i:1674481209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aade2640d11480b19dd570aa69255ddea66b3a2', '172.105.247.100', 1674481210, '__ci_last_regenerate|i:1674481210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc8722029a5c98f2dedc3304807aa81aa35591c', '172.105.247.100', 1674481210, '__ci_last_regenerate|i:1674481210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebe28153fe1f8503bad8f31b50016e3c7327300', '172.105.247.100', 1674481210, '__ci_last_regenerate|i:1674481210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c44fe6caa155d847aa715168abec1dd438330bc', '172.105.247.100', 1674481210, '__ci_last_regenerate|i:1674481210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2ab322441ad2915073d5f71873fff1938867816', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfe9f6b14ebab2cfba6004d83dd70368f8f8190', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f1c36c4b27ab21d63b032b8593dd3795345d01', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e1c6a3b16cb7bb5e7372454548d8c93dd40e49', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5003501a0d4d9cb6d2f46dbd7a67895e89251b28', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a7e9046a44d3b7d32e8c6cc3c1bf7976f9aad3c', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06d1db143341ec9b8bf4733933f9477d945f1e3', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3bb9b5407cfcab0ddf38d299e73cb1dbba8189', '172.105.247.100', 1674481211, '__ci_last_regenerate|i:1674481211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9511dac419b7192d3e3df24be4082574f795f0ae', '172.105.247.100', 1674481212, '__ci_last_regenerate|i:1674481211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6293e5d16fd4b8d78f88884a629ce12e7fea2222', '172.105.247.100', 1674481212, '__ci_last_regenerate|i:1674481212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ea963c8189d12b20c55fff67600a56f37aed52', '172.105.247.100', 1674481212, '__ci_last_regenerate|i:1674481212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f90ccef16d116efd55b4b2195ada014d7fdff4', '172.105.247.100', 1674481212, '__ci_last_regenerate|i:1674481212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9c8a28d81ff6ca8d84a3c57d304ed105599c0d', '172.105.247.100', 1674481212, '__ci_last_regenerate|i:1674481212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8aa75b72c6324dda2d70332ab90af61c3d2c505', '172.105.247.100', 1674481213, '__ci_last_regenerate|i:1674481213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e7a660ab2f29634fae2713855e9218e273e2ab', '172.105.247.100', 1674481213, '__ci_last_regenerate|i:1674481213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bf3a2f4f85ca79ed69b73862c30053e0eb453d', '172.105.247.100', 1674481213, '__ci_last_regenerate|i:1674481213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5596f73de7776f55cf47355c938f7c72fec040db', '45.120.39.89', 1674483318, '__ci_last_regenerate|i:1674483318;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674483217;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792329198c34335ac1f46e5aaa72c3f8d3be2db5', '31.222.203.2', 1674482526, '__ci_last_regenerate|i:1674482526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd1f3b253a52e57ca734fe90df290966054590b', '31.222.203.2', 1674482526, '__ci_last_regenerate|i:1674482526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef9bb2545c126a7556748d332fe5e1a32674e4e5', '31.222.203.2', 1674482526, '__ci_last_regenerate|i:1674482526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be242e25c745d6daa1a061c1a99cdf05869f5eef', '31.222.203.2', 1674482528, '__ci_last_regenerate|i:1674482528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dfb7b6fdad5d6704411617da301c1f964941c41', '31.222.203.2', 1674482528, '__ci_last_regenerate|i:1674482528;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c25b03298ece58fcee290c883a30c77e9ab66b4', '31.222.203.2', 1674482528, '__ci_last_regenerate|i:1674482528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3300bcb7d69367999def32c784d7c6d9d3306e', '45.120.39.89', 1674483757, '__ci_last_regenerate|i:1674483757;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674483749;register_id|s:3:\"319\";cash_in_hand|s:9:\"1490.0000\";register_open_time|s:19:\"2023-01-22 20:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b943bd96e6b89c47d8d63d827cb820de7cd6611', '116.204.230.26', 1674484011, '__ci_last_regenerate|i:1674483649;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674474848\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"Q0qUCsSWF8puHmw95cRk\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bdf1e9561307909b1fb9f2399aa2806dc270307', '45.120.39.89', 1674483778, '__ci_last_regenerate|i:1674483757;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674451606\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674483778;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f186e59d9336237eea5bee91ae7af8f1fb654dfc', '31.222.203.2', 1674484324, '__ci_last_regenerate|i:1674484324;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a20aec588efb02930377791db78e94480314f353', '31.222.203.2', 1674484326, '__ci_last_regenerate|i:1674484326;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a8e939020b6c3b89935269928481ca6ef2e608', '31.222.203.2', 1674484326, '__ci_last_regenerate|i:1674484326;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197a593968e06ab7e31167daf5c80aae04a3ba91', '31.222.203.2', 1674484327, '__ci_last_regenerate|i:1674484327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d1c7e438be6dd41079bf78f1a4a384052fcaa0', '31.222.203.2', 1674484327, '__ci_last_regenerate|i:1674484327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ad907f915217677311f114c0d80ae1a9c74a2a', '31.222.203.2', 1674484327, '__ci_last_regenerate|i:1674484327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ecd3a2adf2f26d71dc87b89c935b2cda9be7159', '172.105.247.100', 1674486009, '__ci_last_regenerate|i:1674486009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f605db513761032fec106cebf50c8a828f8a466c', '172.105.247.100', 1674486009, '__ci_last_regenerate|i:1674486009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33736679b8b0ba62dc05fb16eda9ad67f81e7870', '172.105.247.100', 1674486009, '__ci_last_regenerate|i:1674486009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4717e271d989d60e757d4189ba2109864e3e1cb', '172.105.247.100', 1674486009, '__ci_last_regenerate|i:1674486009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a84aae643239c41ca0c797b92c85c61b3400125', '172.105.247.100', 1674486009, '__ci_last_regenerate|i:1674486009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c8982db1b1008ca1c4a55fffaa53cd63388493', '172.105.247.100', 1674486009, '__ci_last_regenerate|i:1674486009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da9e0bba940514fa35a84de95aea1840e8691a6', '172.105.247.100', 1674486010, '__ci_last_regenerate|i:1674486010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33fc6afed58c7d8b7b265af9b26450c85f793730', '172.105.247.100', 1674486010, '__ci_last_regenerate|i:1674486010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb08d7401bd7b550d15005aa03965261f1b9fd1', '172.105.247.100', 1674486010, '__ci_last_regenerate|i:1674486010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493570bf7ed76d303bca006f0b329615649b3b47', '172.105.247.100', 1674486010, '__ci_last_regenerate|i:1674486010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac6279745351416931cefc21d6ace0dc0a5903e', '172.105.247.100', 1674486010, '__ci_last_regenerate|i:1674486010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62679b6e2c617a892f37ee40221bbd2b8f6dbfc5', '172.105.247.100', 1674486010, '__ci_last_regenerate|i:1674486010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0b010ef74634ee554074783870178abb529fe1', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a636015124a59dc753fc6fa799cd4261185f9e21', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4cd8ae844002441c4e23900d65c773eb139f818', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da1d1b8064f61ffaa2fa8c3078b17910bb4d420', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7721ce2835ca3276ed4fa519369aadb475ddbb1', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1a550e84874cf6c6c10d485a7dfa3a1593d222', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0691fdca43f905e79d6a16de9fb3fcb6311b30', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1bf2e44a521b88dbd27bfa828e6020fedb3e10', '172.105.247.100', 1674486011, '__ci_last_regenerate|i:1674486011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f441b9767c159b58683afc261516233efbd3cd85', '172.105.247.100', 1674486012, '__ci_last_regenerate|i:1674486012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9337552d3542814c28de9761f83f9d0a04109c49', '172.105.247.100', 1674486012, '__ci_last_regenerate|i:1674486012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2def4715deaac0c8e6e86c66b08ed1df93fa42f', '172.105.247.100', 1674486012, '__ci_last_regenerate|i:1674486012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8afd4572129e8cee6c2fc40aa0e829b41b91deea', '172.105.247.100', 1674486012, '__ci_last_regenerate|i:1674486012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3228f0eb2c87d2374e0c328b6ab91dee9974bfb', '31.222.203.2', 1674486127, '__ci_last_regenerate|i:1674486127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3314ec15dbb486c3c8c92e0a16d7c7c4680a17', '31.222.203.2', 1674486129, '__ci_last_regenerate|i:1674486129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a9b2d9b9e3ea3f6eb43353f504789644da5cb7', '31.222.203.2', 1674486129, '__ci_last_regenerate|i:1674486129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('905cef42e70e8af7190fcc8ace4500cfa34f9c7a', '31.222.203.2', 1674486129, '__ci_last_regenerate|i:1674486129;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb639a494e98ee2e315a5e631874e29fe283196', '31.222.203.2', 1674486129, '__ci_last_regenerate|i:1674486129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973b7a94fa1c7188b0f9b6cdbf16ab7d592a11d8', '31.222.203.2', 1674486129, '__ci_last_regenerate|i:1674486129;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf309109bbb67412d8ddd54e3bb2714d85c45c9d', '31.222.203.2', 1674487928, '__ci_last_regenerate|i:1674487928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8aa24977c21aa8ab4378eac8597cd4aef82bccb', '31.222.203.2', 1674487928, '__ci_last_regenerate|i:1674487928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef2f772cc6c50bee46345e18af6e8b84ed1eb01', '31.222.203.2', 1674487928, '__ci_last_regenerate|i:1674487928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706085e87470051aeebd97103d0f790598be429d', '31.222.203.2', 1674487928, '__ci_last_regenerate|i:1674487928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e96523bbd85f765d243ef10e2c70a5fce115c5b2', '31.222.203.2', 1674487928, '__ci_last_regenerate|i:1674487928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9768c12048dbf194b96a1b0cb978ae90f973082', '31.222.203.2', 1674487928, '__ci_last_regenerate|i:1674487928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ce9e9eaf8ba8a692ec817df9e036e417479d72', '31.222.203.2', 1674489728, '__ci_last_regenerate|i:1674489728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76aa2cb1889e0ca80ff3d96c35db220d6c80133a', '31.222.203.2', 1674489728, '__ci_last_regenerate|i:1674489728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483fa824f51ba2258ddd0900d43dc3a6d0306c8f', '31.222.203.2', 1674489728, '__ci_last_regenerate|i:1674489728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf76b7d596f456885dbaefd937a42fbbb2165a4', '31.222.203.2', 1674489728, '__ci_last_regenerate|i:1674489728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044630c379edc94716d4519ddcf6e729e5e72e71', '31.222.203.2', 1674489728, '__ci_last_regenerate|i:1674489728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec8b1bf81117d061c00be055c7e79181f106237', '31.222.203.2', 1674489728, '__ci_last_regenerate|i:1674489728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2baa8da4c58b210288c238fd7c371ab535e47b98', '172.105.247.100', 1674491411, '__ci_last_regenerate|i:1674491411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('506df1d9d8c24e10d429132e14330d29ebb83092', '172.105.247.100', 1674491411, '__ci_last_regenerate|i:1674491411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9016fadfbf1b172fb92b3f03614c41ffda2650', '172.105.247.100', 1674491411, '__ci_last_regenerate|i:1674491411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde1bea9d49c836bda275e4c9d18771afd4f20ee', '172.105.247.100', 1674491411, '__ci_last_regenerate|i:1674491411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682ef49719ced905b0b7d0efa098ae292568a0ec', '172.105.247.100', 1674491411, '__ci_last_regenerate|i:1674491411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e05f1b8acb599054154bcd4178003c2543b530', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903bed5b4bd18610f3a264ce56feab4351ddc0fb', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ce8b02cc4bad7f2b5a075e533310a6af337b2b', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e214cf6cd12b41cd081b95200c6a0984f998b576', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22dedc8f197fac6b2f7698e25ac0cfadd18b0eb9', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c90713cdee26f3385941475c49d259fe57a0228e', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d555223105c064ca6701683d2bd904240c6f57', '172.105.247.100', 1674491412, '__ci_last_regenerate|i:1674491412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d13bbdc8a2e682bee0753d70dc7e842597af9f', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7989ad72c4ed5e8338abec50bc0ae2c8068bda', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba9f06ab97101ec2849d382510e406972b4a880', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3990bbfdd6bc8907a88ccd0dc30fc61a19b577', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a41da1184bba8e962675f4474b7b270213efbb', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c4a70f47d0128e319840251bb5f3ce7bf58891', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab8690fef74d7c0aa3fa44d17cce1ac718d6b75', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f68e0cb32ba18b6db065d899d319b7d064512acd', '172.105.247.100', 1674491413, '__ci_last_regenerate|i:1674491413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b46d62049a6a2e5961622e0dc8412d5fdee0514', '172.105.247.100', 1674491414, '__ci_last_regenerate|i:1674491414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a394dc867e7c659342b0fecf6b67d127417f3e', '172.105.247.100', 1674491414, '__ci_last_regenerate|i:1674491414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97015af23028a2c404f004cc41c92717b54ded9e', '172.105.247.100', 1674491414, '__ci_last_regenerate|i:1674491414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d1273d14482be90691d79dcd80a43824d633fd', '172.105.247.100', 1674491414, '__ci_last_regenerate|i:1674491414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b608601968b5f139ff6a6441137ac977a40691f', '31.222.203.2', 1674491529, '__ci_last_regenerate|i:1674491529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7bce89b8dd955560a375d15462aeb917a3d9933', '31.222.203.2', 1674491529, '__ci_last_regenerate|i:1674491529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb88b7a1e00aa8a97d828be444a34a86691ba49f', '31.222.203.2', 1674491529, '__ci_last_regenerate|i:1674491529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb19b7e3acca1505ca3573d457f9fdb33fa0b1a9', '31.222.203.2', 1674491530, '__ci_last_regenerate|i:1674491530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2a92c96ae277cf30826ce2ae904402a56db583', '31.222.203.2', 1674491530, '__ci_last_regenerate|i:1674491530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccdbe598b67f9feb3672433b3c0d5f49e33b0f8', '31.222.203.2', 1674491530, '__ci_last_regenerate|i:1674491530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da2072b5f749faf6969b88ac2286ae43152b7c1e', '31.222.203.2', 1674493330, '__ci_last_regenerate|i:1674493330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a985ee7b7b1d4e27bd2b772722a0c2f260b7e6', '31.222.203.2', 1674493330, '__ci_last_regenerate|i:1674493330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a46a544af57f23fe3e1ab800d63a415488df11', '31.222.203.2', 1674493330, '__ci_last_regenerate|i:1674493330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50fd579ddc72f6469081929fb580c1e298d3e1b9', '31.222.203.2', 1674493330, '__ci_last_regenerate|i:1674493330;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b122e126805d2fe35915070c161a2d697d8a671', '31.222.203.2', 1674493330, '__ci_last_regenerate|i:1674493330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb753ab2bc673ed6d9619f356d4ff3f09ef1e94', '31.222.203.2', 1674493330, '__ci_last_regenerate|i:1674493330;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac5980981f4c1909cbd0164627479e6cbb0a6df', '31.222.203.2', 1674495126, '__ci_last_regenerate|i:1674495126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a884c9d9e53eef233eb448948ffab5b156fc68a3', '31.222.203.2', 1674495126, '__ci_last_regenerate|i:1674495126;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5f20be9d062446e843f95c808852a0c3995744', '31.222.203.2', 1674495126, '__ci_last_regenerate|i:1674495126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a9c257b88f30b30d76d1dbe7756b01fa56e6a6', '31.222.203.2', 1674495128, '__ci_last_regenerate|i:1674495128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1987baa92b860148238ab414359ed74c78f7f788', '31.222.203.2', 1674495128, '__ci_last_regenerate|i:1674495128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad3e37f5a0d6800f0c3ebdb82fe3ac1c77bd2a17', '31.222.203.2', 1674495128, '__ci_last_regenerate|i:1674495128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769e1d70214d2cfe3d8a81dfb20c25a90a4c4742', '172.105.247.100', 1674496808, '__ci_last_regenerate|i:1674496808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2fec3b532e8ad01823619edec9ab95933b66d3b', '172.105.247.100', 1674496808, '__ci_last_regenerate|i:1674496808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a5e308baeff740f66d36496a9c79175147b27c', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c038a8c1a6775310d7f75d62aa21ba5283c97f', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e85fc6b7058984db222c8e29949e5c8fe6de3c7', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ecc619d6dbe9f056e3af8f39c20a2e69e17940', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091812e100c8d8960589faba5b45993cbfd49b2c', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ddb3fd0b31ddd43d0b22ee731906cedf27443f', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28711f9580491496b5aaa70f5de823915b0da7c2', '172.105.247.100', 1674496809, '__ci_last_regenerate|i:1674496809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f1a9773c4f96855b4665eea627d80ea9024b21', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f73f074f35abeda029e765d41abfc7b1cc66b19', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a310fe3afbac02e8d553fb0dd6e803be8366dac9', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b597d1c7ea338b6956c194016bd3672a7979d6b', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f68adf040c80506e1d62a749811a82cc963f3de', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5c3a6024b2cd155e3b153f01bc015de7a948ad', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c12d178d96a37a61412ce0187775d1f94ca59f76', '172.105.247.100', 1674496810, '__ci_last_regenerate|i:1674496810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c313c835cbf31ee97dfed2e0eeb81d242c7e870', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50ae1ab0895a765428328460534e6943a1297f7', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4021805eed7d07c53944554c8c63b1a9297b106', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd205a5e67263b4bfdcb532c6c8a459b9f33a7b', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6dfa50992f18dc7c3dc923e799514bdb2f4f90', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79944a4a6564ed6f51b102ff4a0a31edead1dede', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0f2b0f2f05e0a719462a386588acaf4616cf99', '172.105.247.100', 1674496811, '__ci_last_regenerate|i:1674496811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ca4bebdd3f61151909d93a33e662c3b2a7768a', '172.105.247.100', 1674496812, '__ci_last_regenerate|i:1674496811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31bd8f440fb5b4cd100755726bcc5222061a78c4', '31.222.203.2', 1674496932, '__ci_last_regenerate|i:1674496932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0a2991d78e57c89bdabae88dc2f51bc053832e', '31.222.203.2', 1674496932, '__ci_last_regenerate|i:1674496932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d5b5bae340c26a5dbb9fe9461ea98d3ec0b1f3', '31.222.203.2', 1674496932, '__ci_last_regenerate|i:1674496932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d19e0527c04f6079e605002c02f1391b8f3829f', '31.222.203.2', 1674496932, '__ci_last_regenerate|i:1674496932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d20c9d18766275621bb8d1624da68956c4e9ff', '31.222.203.2', 1674496932, '__ci_last_regenerate|i:1674496932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e8978bdef2de00e13b069747912699ae309998', '31.222.203.2', 1674496932, '__ci_last_regenerate|i:1674496932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7384592fdc9785baf71d352a49ce44c1c3460d1e', '31.222.203.2', 1674498720, '__ci_last_regenerate|i:1674498720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6acd67b4232da3e7ac827b2c226aadfc0bc72f4', '31.222.203.2', 1674498722, '__ci_last_regenerate|i:1674498722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3845ce7b1764cbbad4edc19107af3a393a689e22', '31.222.203.2', 1674498722, '__ci_last_regenerate|i:1674498722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc23c1462b7c7e60e6f20ca43a1f904e72cbdab', '31.222.203.2', 1674498722, '__ci_last_regenerate|i:1674498722;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f007d4605699db993c4efab39e05516c82b17851', '31.222.203.2', 1674498722, '__ci_last_regenerate|i:1674498722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107490c88c3d323650121d866937f2034d3d2c70', '31.222.203.2', 1674498722, '__ci_last_regenerate|i:1674498722;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3028cc79e68770fff56a0f145c9c1e2fbe61a05', '31.222.203.2', 1674530344, '__ci_last_regenerate|i:1674530344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11f20aa43e58e12ee744535d716e6584c9f0aa6', '31.222.203.2', 1674530344, '__ci_last_regenerate|i:1674530344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83288d7c9aa88e352ae2784631e4ca51e81100ac', '31.222.203.2', 1674530344, '__ci_last_regenerate|i:1674530344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb81f6f45fd8eaab5736a4a0dcd029c25dc46f8', '31.222.203.2', 1674530348, '__ci_last_regenerate|i:1674530348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca7b5159876d8b445cc12f71009d97aa5a87d40', '31.222.203.2', 1674530348, '__ci_last_regenerate|i:1674530348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f723dbab87d77488283955449098b3db90963832', '31.222.203.2', 1674530348, '__ci_last_regenerate|i:1674530348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7896df0c7a0425d975b70c7c0eaef230eb1d2f79', '172.105.247.100', 1674532826, '__ci_last_regenerate|i:1674532826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fceceaefa6907abd57e71e68ee8d0e0c1af51f99', '172.105.247.100', 1674532827, '__ci_last_regenerate|i:1674532827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81afda1e7d63eb6b2d7f0dbff9ce2b31ab68b424', '172.105.247.100', 1674532827, '__ci_last_regenerate|i:1674532827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8294c330a405fec3758f5cbfb4d7c99ce18f48', '172.105.247.100', 1674532827, '__ci_last_regenerate|i:1674532827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec538d4d6b8e4c07717e5dec680c57fb803f0e8c', '172.105.247.100', 1674532827, '__ci_last_regenerate|i:1674532827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a2363d1890149d9d63e321669645e6705da13a', '172.105.247.100', 1674532828, '__ci_last_regenerate|i:1674532828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848fd6757454f34307cc20a9330ebd6d98e9f9aa', '172.105.247.100', 1674532828, '__ci_last_regenerate|i:1674532828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02af3a37b177a70952ac376d8b4a0c3af9ddc59e', '172.105.247.100', 1674532828, '__ci_last_regenerate|i:1674532828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19e016249acd05923244830b18881cf19a144449', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5a381b8da70a418e13395e9a286a46c1a57bd9', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5d43ea0d08fabf8b02c1d73a107b9f7e5120805', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d5eebb1c3848fb3bdcc2a92e393d5dbdd6caa1', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f69471f02c467cb044ba388d54cd28f8030b9a1', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383174e5bf6d50b5d824d99a290f7f469f117ae4', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccaf92dfa6c44e32bcc81efb08300a15a1903e29', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f6264ace4dc12aa9c137c06747a1beb60ed85a', '172.105.247.100', 1674532829, '__ci_last_regenerate|i:1674532829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2a9ed7ce3319d8f65f4e9dc673b31e9dbcd1e9', '172.105.247.100', 1674532830, '__ci_last_regenerate|i:1674532830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406ca56faeb8e3bea6560cd0a8efe25e79ca349a', '172.105.247.100', 1674532830, '__ci_last_regenerate|i:1674532830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185d59256745dd38bc24c6c5aa3c8428f95e8a74', '172.105.247.100', 1674532830, '__ci_last_regenerate|i:1674532830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ad09e955163730c047f2d84b7042bda12aa2e8', '172.105.247.100', 1674532830, '__ci_last_regenerate|i:1674532830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9011c980e24b406ef292324e0576f2ff8cfd3e', '172.105.247.100', 1674532831, '__ci_last_regenerate|i:1674532831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12bc7d7d4d49200bffd3a5adecac4b44f769447', '172.105.247.100', 1674532831, '__ci_last_regenerate|i:1674532831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a9dd246246faf55729e20dfb831de6e5bf1404', '172.105.247.100', 1674532831, '__ci_last_regenerate|i:1674532831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169a643d6658393013b613675a703a6ad3747a6b', '172.105.247.100', 1674532832, '__ci_last_regenerate|i:1674532832;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586a275666ec876fb0bbe0a59fc06b9df2f076d9', '170.187.184.242', 1674532832, '__ci_last_regenerate|i:1674532832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc4f3db3a47c33b8a83f49c3b537e51575c59c9', '170.187.184.242', 1674532835, '__ci_last_regenerate|i:1674532835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02aa03bf78d5a505c54aab5933ebc436d165cc0a', '170.187.184.242', 1674532835, '__ci_last_regenerate|i:1674532835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e366735ddad64cc5fb1e69b5e6804a6e41f46f1', '170.187.184.242', 1674532835, '__ci_last_regenerate|i:1674532835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1e25b07d373fcbd1299bd11554f7731d06f534', '170.187.184.242', 1674532835, '__ci_last_regenerate|i:1674532835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643a22dc4ac42573adf6de8d1436fac9e3a9b3ff', '170.187.184.242', 1674532835, '__ci_last_regenerate|i:1674532835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3062e8df0d8df463024f727d0a8a4312290685b1', '31.222.203.2', 1674534006, '__ci_last_regenerate|i:1674534006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d067c19298ea3b960b71a8e763590bf6cfd2fc', '31.222.203.2', 1674534006, '__ci_last_regenerate|i:1674534006;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20ab5b9a282bd7cf3edeb823998eef789c34db0', '31.222.203.2', 1674534006, '__ci_last_regenerate|i:1674534006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe2641c43169e18179fd0f8ad96a1196fc70d8b', '31.222.203.2', 1674534006, '__ci_last_regenerate|i:1674534006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2e158d7858273369e9756c3135f6b17268e248', '31.222.203.2', 1674534006, '__ci_last_regenerate|i:1674534006;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10775217925e1b0ee30d0e7c97e47aad5f6820d0', '31.222.203.2', 1674534006, '__ci_last_regenerate|i:1674534006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc410f3c5f4bfa51da8f52ab50d030ca79a716d7', '31.222.203.2', 1674535862, '__ci_last_regenerate|i:1674535862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcabc4f759fd33f9d0bc3b2129c32ca113dcbe48', '31.222.203.2', 1674535862, '__ci_last_regenerate|i:1674535862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b68cb98d8352dfc2087e5c138e01da199743add2', '31.222.203.2', 1674535862, '__ci_last_regenerate|i:1674535862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63333cd68e52b34f29ab65838414fc93a707dcd', '31.222.203.2', 1674535864, '__ci_last_regenerate|i:1674535864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9280da4eb83c585541d0190f4424dc547e0f2731', '31.222.203.2', 1674535864, '__ci_last_regenerate|i:1674535864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d38b39bd97af09dd616ae46c065ad60e15728d', '31.222.203.2', 1674535864, '__ci_last_regenerate|i:1674535864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ef598795c907b219e859ac1eac07f43c2faa2f', '172.105.247.100', 1674538224, '__ci_last_regenerate|i:1674538224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c084b1a6fe7230a367eb7a2e8a2afafe414c0c', '172.105.247.100', 1674538224, '__ci_last_regenerate|i:1674538224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e98cf51e68674b9f9b8d441d26a16387af4c183', '172.105.247.100', 1674538225, '__ci_last_regenerate|i:1674538225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e13b5398cd0f21b8ee9bd02500b89459224baf', '172.105.247.100', 1674538225, '__ci_last_regenerate|i:1674538225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dad7e4f270fef475b8796c5fe93b11efb9f8fc9', '172.105.247.100', 1674538225, '__ci_last_regenerate|i:1674538225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a810e6a272e7a9b816c4706a15912052698baab', '172.105.247.100', 1674538225, '__ci_last_regenerate|i:1674538225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78f48475b9f316bbec24bf540eabe7666a5c9a0', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba7691618c25ebcdb73000f8e82d48c51e4b0ed', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a359a684a41eae049a952e4458b281f12b46bb26', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5094235b300c5b0eab9ec20a1b193f9d02715097', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8907b6896a05e421c715c9fd73be8d2eac1958e', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a852c7a6efa78816f2403458c555217f83fc496', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c1a4a9123d5f7769cebf158b217fe02d05d0c2', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d597ce15cbea69199a33133b311335427b1e40', '172.105.247.100', 1674538226, '__ci_last_regenerate|i:1674538226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fa3a99c5a4c1b3725ea37bedf52c483fc8e109', '172.105.247.100', 1674538227, '__ci_last_regenerate|i:1674538226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d97b112904663de3006a0341fa348c34101552', '172.105.247.100', 1674538227, '__ci_last_regenerate|i:1674538227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc4b95cf5cf9394c863f10728d906a60a17b470', '172.105.247.100', 1674538227, '__ci_last_regenerate|i:1674538227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f88cf199c119c26236b37929bd24a50f89821018', '172.105.247.100', 1674538227, '__ci_last_regenerate|i:1674538227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab2e24fbfff4cf513ddd818e0ea65dc3a3041ab', '172.105.247.100', 1674538227, '__ci_last_regenerate|i:1674538227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa08cbd9f599eb5b40f3d02cb170766bb5b86f50', '172.105.247.100', 1674538227, '__ci_last_regenerate|i:1674538227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04a3a470429cc9adeff4dc6c50344f232c00c9da', '172.105.247.100', 1674538228, '__ci_last_regenerate|i:1674538228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88982ea92b2194c8f310a9348e50666516a51ec4', '172.105.247.100', 1674538228, '__ci_last_regenerate|i:1674538228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a227aa09484eb6d4b5f291e157f90d1ba898f66b', '172.105.247.100', 1674538228, '__ci_last_regenerate|i:1674538228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cb34217ea3ae77bddb437035a36a47a43ec4cd', '172.105.247.100', 1674538228, '__ci_last_regenerate|i:1674538228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e8b47f5e334700fbf08ca1a68c7ba937e3ac84', '45.120.39.89', 1674546453, '__ci_last_regenerate|i:1674546453;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674542014;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0daf8ac8cce2199005d5d61a89268520032562d', '116.204.230.26', 1674544625, '__ci_last_regenerate|i:1674544625;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674483653\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fce03a0724d3f2276f26b127af16a11ac9f764', '172.105.247.100', 1674543627, '__ci_last_regenerate|i:1674543627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6002e16729525810055df33c9c79aafdb771c4', '172.105.247.100', 1674543628, '__ci_last_regenerate|i:1674543628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a8fd60aef488e80426a3f630683ea1b82134f81', '172.105.247.100', 1674543628, '__ci_last_regenerate|i:1674543628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30da7fa9c060282918d315f31e95c2ebe8fb534', '172.105.247.100', 1674543628, '__ci_last_regenerate|i:1674543628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277c4e7683af36370c65f88bdec2c342fb3675d8', '172.105.247.100', 1674543628, '__ci_last_regenerate|i:1674543628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a9d5828088f9f0ec068a0cab549fc7abdded21', '172.105.247.100', 1674543628, '__ci_last_regenerate|i:1674543628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6099826fc96611f0d695bda6ab6ed3f5e27f46e2', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf80e2ff79f1869dc2387f81b53e5d8a3a8c00c', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0f15d5c0a84eef736e13109a609d6dbe6206b8', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('685171c002b5cef72aa677f7f038eeb74487eef4', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9b8ec50f5b3298733ae040d04415f34eaae527', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a85a1a6b30f0109e7ed2462e6b5669bb87acee', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66b0fd1653a0f804caa25130b0270157c98a084', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe3e61e4827593de81e91ed5165c6d928be7f6e', '172.105.247.100', 1674543629, '__ci_last_regenerate|i:1674543629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('954ff9bf54d4efd279750d295a01af436edea059', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('104a52dfe1bb9e691b630e1fa85bcb8ab56954ce', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c2595e3bc41e4f9e74d29ad71ff1a47f19da9fa', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f04bb59f9a4e7a3e5305d1dda3aeee44e9fb0143', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d13212947156371e7865f1dece20fb9fa91e746', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205354f5be4ac61c7c952deafec6f99264347264', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124f110110642b4ee7a9f0c535b2c3843311c297', '172.105.247.100', 1674543630, '__ci_last_regenerate|i:1674543630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5d19aae9337ab9cd249d3e305f3d4747cac44b', '172.105.247.100', 1674543631, '__ci_last_regenerate|i:1674543631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54984889914b161b0398060d1c7f72ea7e8e8bc5', '172.105.247.100', 1674543631, '__ci_last_regenerate|i:1674543631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d13c355fbb4bc3414ab6bf687761b2cbd44092', '172.105.247.100', 1674543631, '__ci_last_regenerate|i:1674543631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405844684dd6fcedf96d9eb90b8b19f4f9317e4f', '116.204.230.26', 1674544649, '__ci_last_regenerate|i:1674544625;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674483653\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cbb57977ea18f9543be09a76fbd53ca87ddb34', '45.120.39.89', 1674548338, '__ci_last_regenerate|i:1674548338;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674542014;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe8e4ab950e576dab10b923ff14648d8dec3a18', '31.222.203.2', 1674546612, '__ci_last_regenerate|i:1674546612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d815897929b815ff1d994f4a9916820f03590db', '31.222.203.2', 1674546612, '__ci_last_regenerate|i:1674546612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588d01c82f0304d7399fe106c9671c65e3a71971', '31.222.203.2', 1674546612, '__ci_last_regenerate|i:1674546612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d58bffe36a62c6ee6a6d5b5255bad72b8e54f33a', '31.222.203.2', 1674546612, '__ci_last_regenerate|i:1674546612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379ef88062a7970f53d41b5302c2341e9fce121c', '31.222.203.2', 1674546612, '__ci_last_regenerate|i:1674546612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b1630a8e96d773807ad42f625faafd6443cbc4', '31.222.203.2', 1674546612, '__ci_last_regenerate|i:1674546612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c1e45e21a7ec1bb3e45afcd4495333331f4d61', '37.111.219.71', 1674549163, '__ci_last_regenerate|i:1674549163;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674548338;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca2f09aee63199a696c5b5a3286cd606c1e0046', '172.105.247.100', 1674549025, '__ci_last_regenerate|i:1674549025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515683488f02dc75e75762290496f80f8a52599a', '172.105.247.100', 1674549026, '__ci_last_regenerate|i:1674549025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4a6cf41fde17a0c7016444e141ea2c19702d9b', '172.105.247.100', 1674549026, '__ci_last_regenerate|i:1674549026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0677714f40e662be4ea90683f88866708822c4df', '172.105.247.100', 1674549026, '__ci_last_regenerate|i:1674549026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9150cd9fb65414063b410adcd0a35c0a9d89057f', '172.105.247.100', 1674549026, '__ci_last_regenerate|i:1674549026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d90846d68469b2669dba83ed82334ba7d88aa1f2', '172.105.247.100', 1674549026, '__ci_last_regenerate|i:1674549026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e49ed2f81218f40e266ed53eb10321931db5424', '172.105.247.100', 1674549027, '__ci_last_regenerate|i:1674549027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93246d61ddd253180fa0875284ca19061ac59efe', '172.105.247.100', 1674549027, '__ci_last_regenerate|i:1674549027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e885e2f194e3cb5d4116f8dd62b118eab8971ff', '172.105.247.100', 1674549027, '__ci_last_regenerate|i:1674549027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497ba7ef37cd68984669d729d79f26951203974d', '172.105.247.100', 1674549027, '__ci_last_regenerate|i:1674549027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f701e178471006319a1d67325ecc943b3a748d3', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194d142c248422e1715ffa084ac78b258c85ea44', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d143ab81470f4337998df555df4c95a05c47fcb0', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552d94a75f225ee529e9929b24aba3691b0d0f98', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95b86a0b0e2b5dcc6e9bc03c62adcc3a6303fd6c', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3bfaf539389638a2c51e269b26c9d456c56028', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c482f65185db0b96f6a90e9567d63038df6178a', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d734ea484a29b4938f675683021e9b6cee59f0', '172.105.247.100', 1674549028, '__ci_last_regenerate|i:1674549028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55f632dcbd07ac1bfae8c64f8b60a8a463ba679', '172.105.247.100', 1674549029, '__ci_last_regenerate|i:1674549029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faec9abbc6f8980da22c9b6ff9025a02bd4ece70', '172.105.247.100', 1674549029, '__ci_last_regenerate|i:1674549029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b894913a2ffdf7403d0d612dd2fe2c3e13d633d', '172.105.247.100', 1674549029, '__ci_last_regenerate|i:1674549029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce45090c2ab24ac112e7bf3d17fabcb5eecd484f', '172.105.247.100', 1674549030, '__ci_last_regenerate|i:1674549030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be6a8746fda34de74703e5db58c4e1fd921e072', '172.105.247.100', 1674549030, '__ci_last_regenerate|i:1674549030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9bd0885d6ba695255a3a84ebfc1215d7827fdc', '172.105.247.100', 1674549030, '__ci_last_regenerate|i:1674549030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22221530e8613e0a837071092a8d0cbc799762a4', '37.111.219.71', 1674553091, '__ci_last_regenerate|i:1674553091;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674553074;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303e5d3bd426087ee15393ba3af7990a46e40e43', '31.222.203.2', 1674552794, '__ci_last_regenerate|i:1674552794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78fafcf9efd45b61bbd286eebe5b9942f44633ea', '31.222.203.2', 1674552794, '__ci_last_regenerate|i:1674552794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e220a2e174e1a3da173fe0cbb5a7a851c8c0d7', '31.222.203.2', 1674552794, '__ci_last_regenerate|i:1674552794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415186abca3fd6a1f7e419efd244ab7c69b21963', '31.222.203.2', 1674552794, '__ci_last_regenerate|i:1674552794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa15d6ddd2e6f1ebe323adf91e9d2343f96ebd86', '31.222.203.2', 1674552794, '__ci_last_regenerate|i:1674552794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f303c5e43316af48ec34ee067f111233dcec7e88', '31.222.203.2', 1674552794, '__ci_last_regenerate|i:1674552794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774188168a68b59bfaeada1693244585809e36e5', '37.111.219.71', 1674553413, '__ci_last_regenerate|i:1674553413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674553091;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df75cdd7a274b782d6f5ce4940392073469ab1d2', '37.111.219.71', 1674558100, '__ci_last_regenerate|i:1674558100;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674557958;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ea519cae316d306497c6904a029689e5ebfef7', '15.204.173.67', 1674553927, '__ci_last_regenerate|i:1674553927;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174240d6e042fd2b2c5acad625293cdecc6aa0ef', '15.204.173.67', 1674553927, '__ci_last_regenerate|i:1674553927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a80e9ff61795a871e5f75b598d38b204ffc08ab', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7eccfb382e019dc22a910bb41a7b10f8a51ebb', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49052dc8a69ba4f186cdcb9c0a677957c311320', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9024b2dd0be299a7a83452850e0f1d41f1567df', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f11e0b237c81b22bd5356ee3c6e221148d1315d', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f87835c4b2a8d5150c541491eea7e60b9d2eea', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ab2a1faafe3d48e27726712473061e7997c513', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30725e02788b4559df8cfd1407f6980b46ac410d', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962992e79e69ba80308c86af75bf9995f926c291', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f384446403267dc6fea3d8c64da3ea596bd3e0', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6a7585ffef44bad50f6911c888986052aa2f57', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4dd6b2417ed20b474f8a873224f02406c287eb', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e1da0bbd22231e04c16cb01f0be6ea41f32aa1', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13571a466a6d211838dbfe3a68f094821c22a104', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b346f6255527786873cb742fb1b12c35ed3c4f4', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e158b18449982aae71d0675796ed04c3d6ad18b', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc1d04a17b5894334c996f82417a7eda797852d', '165.227.232.121', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d041cb4fc4aef535b0c6b88ea87532900d02d0f2', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3ced068f7dc1dc33989d9a8b89978decf02699', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d04ee404d17f39780db411bfb60795e233fd013', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eba28cd5b7816b59d96c4238de86e52482ec517', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44485c9a47679c711864e479cccd3a705eb3314d', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a299f3d66b0501d2ea4409e33d75ae432dc7485a', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd736b203a92c46a3b33b5b29bfaa97efc32e83d', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8ca57ffd6dcffe8ceb0fd1b0fcb8f29f2c9de7', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f17d314515f09cc24aaa5c298593d618e484ebc', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd643a4e54d74ba5a6ec245ca41d12e1d1155dd', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32573dee57b354ed3cb7f83a49f36aa2defd367f', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d0b0a9ef9758803932e10480ced1d5c8cec9986', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729cd7fe52761f1f4e05c358a5f4c4b58a7a7205', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1404147be1725a515abd05a3c84e18b8ae8a986c', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b324abfe2131b12eb4fd7a6bc3901bb3f22bb958', '139.144.188.49', 1674553952, '__ci_last_regenerate|i:1674553952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bceba87e9ec314812e52473eaa28100554250c1', '65.108.186.9', 1674553955, '__ci_last_regenerate|i:1674553955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97f6f0aeabba4c449cdd2ef9b06bd443b66ae2c', '65.108.186.46', 1674553957, '__ci_last_regenerate|i:1674553957;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1160ab58e366d8a798156ec31bbac85d737076', '65.108.186.46', 1674553958, '__ci_last_regenerate|i:1674553958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888982f6c36b9fbd4362b0131a7dfc2b76f79d54', '116.203.211.224', 1674553958, '__ci_last_regenerate|i:1674553958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1bf1d0999c9859a7552e271ec5e15f7151f82d4', '65.108.186.9', 1674553958, '__ci_last_regenerate|i:1674553958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97535ab3ff5d996a9076ce873d5e79c94be46b02', '65.108.186.46', 1674553958, '__ci_last_regenerate|i:1674553958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5656d40ce01db23243af362c1cac57e0e8292054', '65.108.186.9', 1674553960, '__ci_last_regenerate|i:1674553960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f320eca71a0b6870540089cebd4739615040b753', '86.119.25.98', 1674553961, '__ci_last_regenerate|i:1674553961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0640d130750f9445b4bb72406e1398ad4c90b1f', '65.108.62.161', 1674553961, '__ci_last_regenerate|i:1674553961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c08e8b07bde0a150db36a8ab48ebcfa96ae316e', '65.108.186.46', 1674553962, '__ci_last_regenerate|i:1674553962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b65a67cd8ccaeace6573354d4d7e4bdbeeb017', '65.108.186.46', 1674553962, '__ci_last_regenerate|i:1674553962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e400ed1cd108a378afe9120d1c2bfe44fcff8055', '195.74.76.198', 1674554002, '__ci_last_regenerate|i:1674554002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea19ce03afd9c2f116a3329cd87e2b227f4f6c8', '195.74.76.198', 1674554003, '__ci_last_regenerate|i:1674554003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ca8cd048c339d14008b35afcb1c59eff39fd89', '195.74.76.198', 1674554007, '__ci_last_regenerate|i:1674554007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cefc2e9e0a6492711c72774c4915fc1ed7a5ed', '195.74.76.198', 1674554008, '__ci_last_regenerate|i:1674554008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e50b7cb67517f292c1eefa13880b0bc2e45b54c', '195.74.76.198', 1674554008, '__ci_last_regenerate|i:1674554008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1811fb70b118703d4ffb59695c33bd70ba69b7bf', '64.124.51.154', 1674554056, '__ci_last_regenerate|i:1674554056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7039eb97c13546d7ca2d8256d6b019f293ddf62', '64.124.51.154', 1674554057, '__ci_last_regenerate|i:1674554057;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dace6888734df1acde664f1cadfc19b8c8968f3a', '64.124.51.154', 1674554057, '__ci_last_regenerate|i:1674554057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10594fed3f767d01d8dbb329a233ab1385f32cd', '64.124.51.154', 1674554057, '__ci_last_regenerate|i:1674554057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f00e4465c93f3ca52be7f4e6bcbb09641ece9b4d', '64.124.51.154', 1674554057, '__ci_last_regenerate|i:1674554057;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12626ab5e94a3253866cda89e46be92251f0328d', '64.124.51.154', 1674554058, '__ci_last_regenerate|i:1674554058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5f3e08c9159bc2ebbab60c277a1845a6c8fb4e', '134.195.152.136', 1674554071, '__ci_last_regenerate|i:1674554071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097103498b975845c08b1358fd8c4aa6531b97e4', '134.195.152.136', 1674554073, '__ci_last_regenerate|i:1674554073;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fece75e614ccd281daab9ec56f66667b4d5dbaf', '134.195.152.136', 1674554073, '__ci_last_regenerate|i:1674554073;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b73bdb58c76fce346b36a7669cbbbb871d94fc1', '161.35.246.138', 1674554174, '__ci_last_regenerate|i:1674554174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a734cfa77edb02cd461620192d37b9aaa773e1', '161.35.246.138', 1674554175, '__ci_last_regenerate|i:1674554175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e238b39028aaed9b136dd92610fdbe701d6d72', '5.62.63.55', 1674554175, '__ci_last_regenerate|i:1674554175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79eeb694b6665e71f18f891234aec8014c5fa56', '5.62.63.55', 1674554175, '__ci_last_regenerate|i:1674554175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d6410d616ef3dcb1b0bf329593f61b60af05087', '45.88.97.40', 1674554176, '__ci_last_regenerate|i:1674554176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1b60ead1d04cb98aa7ed05388c5fc853aaf443', '45.88.97.40', 1674554176, '__ci_last_regenerate|i:1674554176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4c4594b7f30d178145313ae99a06bea3806722', '95.164.154.234', 1674554296, '__ci_last_regenerate|i:1674554296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10353d927836f75728110e701b26a3bdaebb8f7', '95.164.154.234', 1674554296, '__ci_last_regenerate|i:1674554296;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e0510e8ee4eec0d65b1cb2902053949484c34f', '95.164.154.234', 1674554296, '__ci_last_regenerate|i:1674554296;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4ffbe8ae3e9647f414c78b9af96d9be74dde51', '172.105.247.100', 1674554427, '__ci_last_regenerate|i:1674554427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1652edb66c4ed5c398f801bbaecab96986d26d1a', '172.105.247.100', 1674554427, '__ci_last_regenerate|i:1674554427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f232b4253f0e4e291626fa3d2d864fb2a5e39ec5', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d543c7fe40afcb48178176bdf1952a625920e32f', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70d342589def960c79089f98610ba01bcbe348a3', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0047036a325900687f7ed62a75d48bbf0f3ea85', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa250813d104a6066f54cf4b0e42d41833e1d68a', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652640867dafd3bef100a26a76e1e9427ee5dd82', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92197dd9875547a1aec596823a8db8794f74b7cf', '172.105.247.100', 1674554428, '__ci_last_regenerate|i:1674554428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa6e40d6e5c284ec420c1dbf47cbd2e4ccdf273', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29dbf7860657cca5f771fa319f48fc2e98367942', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c361de2285193ae6484e3fb38c3c2a06eafab58', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc6533d974ce1fbbd4bad2567a7cde808aadccf', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca6e22cb4e2556729685434681925ff2ad05112', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165b4929eac6933fe9ce7f4a00fe7e477fadbe99', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5388a2144edc409fea66409b5d829f3d8a3a9009', '172.105.247.100', 1674554429, '__ci_last_regenerate|i:1674554429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09140d6497ea0e411c5a7d204e420be7f6e62642', '172.105.247.100', 1674554430, '__ci_last_regenerate|i:1674554429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5cf780f00d7fd61930fa1fb452dcda8df1cc9b', '172.105.247.100', 1674554430, '__ci_last_regenerate|i:1674554430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1e454a7b8a2c31ae6eb2681659ee171964e475', '172.105.247.100', 1674554430, '__ci_last_regenerate|i:1674554430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0911bf9837b2da27a481348b7cbd19f3f53010a', '172.105.247.100', 1674554430, '__ci_last_regenerate|i:1674554430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd8acc8adc2612f2f4f5bbdadf3b5a06c849fb3', '172.105.247.100', 1674554430, '__ci_last_regenerate|i:1674554430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b5e4d47e965cf1d00c95ff45d5d176be6c4f71', '172.105.247.100', 1674554430, '__ci_last_regenerate|i:1674554430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad682fa229c8f41578e42cc3b6af409c1198d67', '172.105.247.100', 1674554431, '__ci_last_regenerate|i:1674554431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce8d2d0d850b900ab0e47b5fb6d3a71e818727d', '172.105.247.100', 1674554431, '__ci_last_regenerate|i:1674554431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6bd30c659270dca1840f426139a9acef44c8237', '31.222.203.2', 1674554657, '__ci_last_regenerate|i:1674554657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f788f14adf64899a92623a2bf237a47f8af98109', '31.222.203.2', 1674554657, '__ci_last_regenerate|i:1674554657;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a44ce6a1e302d63731f8f390769175f4c2ebef', '31.222.203.2', 1674554657, '__ci_last_regenerate|i:1674554657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669c594c4d1733f81d565444d53b357e0872cff3', '31.222.203.2', 1674554659, '__ci_last_regenerate|i:1674554659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f778ecf27be5da1193392f00a24705f6b1015589', '31.222.203.2', 1674554659, '__ci_last_regenerate|i:1674554659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5200f45d65dde7d77bf4ece715bb4eadd1070b76', '31.222.203.2', 1674554659, '__ci_last_regenerate|i:1674554659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265752b47b4abc26f37b37aa070435af7d0caee2', '94.46.220.95', 1674554737, '__ci_last_regenerate|i:1674554737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07de5a99183d80d37e26273970424b037d321aa7', '176.67.82.3', 1674554737, '__ci_last_regenerate|i:1674554737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db63a9597bb6cf7e49df9241e256678f5f3ae8b', '5.62.63.55', 1674555148, '__ci_last_regenerate|i:1674555145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f389a95eb52b9f830695414733a214d5fbc2b2', '94.46.220.95', 1674554738, '__ci_last_regenerate|i:1674554738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c3aa334dfa8a9cdff7cc1cbb0483171be60d47', '176.67.82.3', 1674554738, '__ci_last_regenerate|i:1674554738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ffe436359c87d98b718fc480e108b19f818751', '5.62.63.55', 1674554738, '__ci_last_regenerate|i:1674554738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af47242480f29f5876b9a2beb8fb6c8bf06cb8c4', '5.62.63.55', 1674554772, '__ci_last_regenerate|i:1674554772;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d523da8506ce99c98f9cc879e40112811a01b714', '205.185.122.184', 1674554916, '__ci_last_regenerate|i:1674554916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3f19f4bdb6c3fd5cc6e4654205081ef7791c09', '205.185.122.184', 1674554917, '__ci_last_regenerate|i:1674554917;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a8a82ca7f5dcd4c95d4f8e4af1329abd11e760', '205.185.122.184', 1674554919, '__ci_last_regenerate|i:1674554919;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53321424ca1fb3fafa370f55daf9d8944a26ebf7', '209.141.49.169', 1674554933, '__ci_last_regenerate|i:1674554929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a85d98aafd6861bbed996778924b8cdd5764fc2', '185.102.219.213', 1674555145, '__ci_last_regenerate|i:1674555145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5adb105ae927c1176acb93155f64456d08ffeda', '185.108.106.202', 1674555145, '__ci_last_regenerate|i:1674555145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6af8b3d6d4d04f9c40ef8e3f425b588efb7109', '185.108.106.202', 1674555145, '__ci_last_regenerate|i:1674555145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a88dd67d8e3afe30ae2a46da519ab68cc62efd8', '185.242.7.134', 1674555146, '__ci_last_regenerate|i:1674555146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c6e5da413846d737891f67ca2ae68762804a1f', '102.165.41.21', 1674555147, '__ci_last_regenerate|i:1674555147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1e516184f5d18127c9b8b0c4bc741e3ab79af8', '5.62.63.54', 1674555866, '__ci_last_regenerate|i:1674555866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb34444ee450375823d75fd568156e877808bdf', '173.245.202.201', 1674555866, '__ci_last_regenerate|i:1674555866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505283f2c71717f8f3261dfab042bd3bc7d10b2e', '216.131.116.87', 1674555866, '__ci_last_regenerate|i:1674555866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50e97dbc078ec41bd1e780d96d0718765a1f41b', '216.131.88.5', 1674555866, '__ci_last_regenerate|i:1674555866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f95fcf98a96c955eb9b1f1aa77137e38642d86', '164.90.241.135', 1674555867, '__ci_last_regenerate|i:1674555867;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a031a93b1f5a6931b64ad941fef2ff2c68691350', '5.62.63.54', 1674555878, '__ci_last_regenerate|i:1674555878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3d532b955125d68f9c865d2e7d5d407c6c94dc', '216.131.116.87', 1674555878, '__ci_last_regenerate|i:1674555878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccfb92178263da55f2a252fed6711a254bd25ad7', '104.164.195.172', 1674556805, '__ci_last_regenerate|i:1674556805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ef0074e5d62a1b1921454168f75f48bdb9a96f', '104.164.195.172', 1674556805, '__ci_last_regenerate|i:1674556805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b178f4e557b5983672b978befa3c81ee2830779c', '185.202.168.70', 1674557113, '__ci_last_regenerate|i:1674557113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1252a9e8d7c43292cf16e938d3218143141c014', '185.202.168.70', 1674557113, '__ci_last_regenerate|i:1674557113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77aab9103ce7928297af4d4b97ce493c97847ddb', '173.239.211.85', 1674557944, '__ci_last_regenerate|i:1674557944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13426e999f4907c5c67aec6629bb9d43482fbb9', '63.135.161.160', 1674557944, '__ci_last_regenerate|i:1674557944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65c82f324e1feeb1ec91db1be8e7fa2dba57311', '63.135.161.173', 1674557944, '__ci_last_regenerate|i:1674557944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e84c99f96e35c543d9f941cada0c6f3ba26705', '37.111.219.71', 1674559124, '__ci_last_regenerate|i:1674559124;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674558343;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ef764cf4406dc0bfaa8fdb3cb374ae3b7e2489', '51.81.167.146', 1674558439, '__ci_last_regenerate|i:1674558439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d838643722a29fbc1b6dbccfb0f7372f957c7ea6', '51.81.167.146', 1674558440, '__ci_last_regenerate|i:1674558440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9b69b122416030bbf4bb22d0d8460c71afb954', '51.81.167.146', 1674558440, '__ci_last_regenerate|i:1674558440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d736bab387ca930b92d3bf487e0364577d4465', '37.111.219.71', 1674561029, '__ci_last_regenerate|i:1674561029;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674559238;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2550c630b96c82daf3bede726d865e731ae0a91c', '172.105.247.100', 1674559224, '__ci_last_regenerate|i:1674559224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4383b877397ffc5bd91c40d04e41ce5d45bf623', '172.105.247.100', 1674559224, '__ci_last_regenerate|i:1674559224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e1009f91132b0d9c2a64b2784d69231a4da6c2', '172.105.247.100', 1674559224, '__ci_last_regenerate|i:1674559224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddbf3ea6e2845c95d2a71517216c25ff93ce0af', '172.105.247.100', 1674559225, '__ci_last_regenerate|i:1674559224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2da4e1a681281cf61a63c6fd322342872539a8', '172.105.247.100', 1674559225, '__ci_last_regenerate|i:1674559225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7d7d318881d8742a75676ca710d87846023758', '172.105.247.100', 1674559225, '__ci_last_regenerate|i:1674559225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2beeb2eb15b36d219090926006a10a680e23d50', '172.105.247.100', 1674559225, '__ci_last_regenerate|i:1674559225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a121ef457cc0e0b3d744c0afd8c82c6ed610c7', '172.105.247.100', 1674559225, '__ci_last_regenerate|i:1674559225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a20b08f84018d41e54353dd18f1c73b9062f05bf', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1de6f9cf4c52e688994f883e20d32fc635b5c3', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1fdbb4d5ddd80e248ed9c6e10ae92487303087', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d420a6be0defc4315813a1c04421cc7b7dc1b30', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be58b83cad010c70c5ef4b8507f54d3303cf169', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29068a1b606d31f3b4ad1d48b48dd9710eb66684', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73de23f42d31f3c76a7f412355bb4c0e8380e34', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be3f1585590f9b55364ebc050efa0739e39e33e', '172.105.247.100', 1674559226, '__ci_last_regenerate|i:1674559226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31bcd6562334ef1facc416468baffdab6448ab39', '172.105.247.100', 1674559227, '__ci_last_regenerate|i:1674559226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7c92ff8eec6c8cad3c442779c2d2bfc7f2b179', '172.105.247.100', 1674559227, '__ci_last_regenerate|i:1674559227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa5820c6a71853dc5b1606d03691f075cbc0e2e', '172.105.247.100', 1674559227, '__ci_last_regenerate|i:1674559227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1e4855f9e7fcd7b9386af3f1f97a30ef5d57e47', '172.105.247.100', 1674559227, '__ci_last_regenerate|i:1674559227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b5c6e09e2b7f60230416b6783e29c2f42f44f3', '172.105.247.100', 1674559227, '__ci_last_regenerate|i:1674559227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12c9887a4bd2f7bde10f735ff1c40d7e3c79718', '172.105.247.100', 1674559228, '__ci_last_regenerate|i:1674559228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8010e8785dbe260bf32350a8bfdef60c285b13b0', '172.105.247.100', 1674559228, '__ci_last_regenerate|i:1674559228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63c5dd0489d5a940b804bac81ba4014e08abff7', '172.105.247.100', 1674559228, '__ci_last_regenerate|i:1674559228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2d487d89808773556496b94ff1669969177baa', '37.111.219.71', 1674561808, '__ci_last_regenerate|i:1674561808;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674559238;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830f0cc3f4cc9e989c99d4e791072a55b2f2e14c', '116.204.230.26', 1674562628, '__ci_last_regenerate|i:1674562628;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674543408\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791c01381b39a01d75ac3186bf9fafa21467a86f', '37.111.219.71', 1674562456, '__ci_last_regenerate|i:1674562456;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674562451;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b806e9666b4264a44e1877f0cf61177b098c55e5', '37.111.219.71', 1674567841, '__ci_last_regenerate|i:1674567841;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674562456;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ea733b238c612ddd543c0fc11f31447af368a7a', '116.204.230.26', 1674562954, '__ci_last_regenerate|i:1674562954;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674543408\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65437c03a97a80465bc5583ab24150e7c5c3824b', '116.204.230.26', 1674563467, '__ci_last_regenerate|i:1674563467;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674543408\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210b8b63d8dc85343f76b965271ada4f90579f24', '116.204.230.26', 1674563973, '__ci_last_regenerate|i:1674563973;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674543408\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2687db72abfdc6b620796ea708ff83183176de2', '31.222.203.2', 1674563607, '__ci_last_regenerate|i:1674563607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3882080d99edb2f468e07c0c5d713b3af78a230', '31.222.203.2', 1674563607, '__ci_last_regenerate|i:1674563607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6cd793f82b0ee78bdd491898c0f4fb8b37b1c0', '31.222.203.2', 1674563607, '__ci_last_regenerate|i:1674563607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ebbc7f73f0e1eb672ace1df9bba6babb03076d', '31.222.203.2', 1674563608, '__ci_last_regenerate|i:1674563608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0d9056533a210bfbc51bd15904b96915381ee8', '31.222.203.2', 1674563608, '__ci_last_regenerate|i:1674563608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae364642331a918e4d99c79db7370bfbb1afd57', '31.222.203.2', 1674563608, '__ci_last_regenerate|i:1674563608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2dabccebeb5874284f5a1b373886a8b9a41bf30', '116.204.230.26', 1674564048, '__ci_last_regenerate|i:1674563973;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674543408\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"Kmt9kRCyI0Bc64pFraDo\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc6b4533259947b41e2730a09583493ca0883de', '172.105.247.100', 1674564624, '__ci_last_regenerate|i:1674564624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b551e62a5636966e6d9c73df6d5a9b07c6c94a8', '172.105.247.100', 1674564627, '__ci_last_regenerate|i:1674564627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e5d3f0082a16c6e8e62c4925ebb783c85dd576', '172.105.247.100', 1674564627, '__ci_last_regenerate|i:1674564627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c43cabf41303696783503f58258690157fe4a31a', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21382c9155ddfc8964fbf061e51d1b990ae2c5e', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48df2e3625813387381e9658792fb4130091eeb8', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6b5d9604b860c5992b3a5496e9bfb660af041ca', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0920ab72324d9889ff8c52f306c68439ac482667', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b58d5d1e78e5cd1e328d21375bbe738e204bdb1', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a936bdd85f92f8fddcc677c64de85399973ff81', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821b5e5a9c8849046fa2307b583a53df5ab6fa42', '172.105.247.100', 1674564628, '__ci_last_regenerate|i:1674564628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e298a2b00861acb1d5345c5f03ac6880bf0e2005', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('615fcab27e222b6101d3f1d62419250d65f306dd', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34a311c136c7b47d3635337a5fd49f12a1f95f42', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3543a220b917587c490dfef492038a06d41ba206', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97f551f33bb4eae0eae7ff16a1e99392f1c26f4', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36eeed807e67d1bb01ebcc2ed20815f685728d1c', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620b91d99c00a0206ba6bb0901da0f3a44d4a33c', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3eb2bd0ed637b166a50fc2d5191d68b9d0051ed', '172.105.247.100', 1674564629, '__ci_last_regenerate|i:1674564629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae6a39d479c918e7488500e22ffb6bf62e58069', '172.105.247.100', 1674564630, '__ci_last_regenerate|i:1674564630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11f0dfdea326760be31f1a1759cf35fd3b45134', '172.105.247.100', 1674564630, '__ci_last_regenerate|i:1674564630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc71b135e582da916c19a6af9f96bf18571f257a', '172.105.247.100', 1674564630, '__ci_last_regenerate|i:1674564630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f40ee15bb82d69a8ba784e8bc560591435a40e9', '172.105.247.100', 1674564630, '__ci_last_regenerate|i:1674564630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193dc63ab1b096ddce300eef0819238ef0422204', '172.105.247.100', 1674564630, '__ci_last_regenerate|i:1674564630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62ed752117d58fe4cb98f1f97063873736b7d0a', '34.254.53.125', 1674564740, '__ci_last_regenerate|i:1674564740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935b740769a50fa77f313ef61998e1ac216f94db', '34.254.53.125', 1674564740, '__ci_last_regenerate|i:1674564740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e2283d1ceb5b81b153d5d68c5266b097415177', '34.254.53.125', 1674564741, '__ci_last_regenerate|i:1674564741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a48831dc72fefacdd92a8a8a00a423816e53e52', '34.254.53.125', 1674564760, '__ci_last_regenerate|i:1674564742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b7488df6c5ea8c447a44c3015baacd25050bd5', '34.254.53.125', 1674564743, '__ci_last_regenerate|i:1674564743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a065cbb46aa7be08dee495828cf962326c3678e8', '34.254.53.125', 1674564744, '__ci_last_regenerate|i:1674564744;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f960f03b2a0612de7e68edf2c8ef88c1e0978d2e', '34.254.53.125', 1674564744, '__ci_last_regenerate|i:1674564744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92929638fb4f6efe0c66add458e17b9d85cae54a', '34.254.53.125', 1674564758, '__ci_last_regenerate|i:1674564758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d30cc509ceb5223ee37e51023c236352e87445', '34.254.53.125', 1674564758, '__ci_last_regenerate|i:1674564758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f10e55a0d32a8619a8d7d4398b7bf9fce64bc5', '34.254.53.125', 1674564760, '__ci_last_regenerate|i:1674564760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5154ca1d057d520c78e1f496cbdcb833216d1efd', '34.254.53.125', 1674564762, '__ci_last_regenerate|i:1674564762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1130a913d6db15e574361b964da6af354351c1', '34.254.53.125', 1674564762, '__ci_last_regenerate|i:1674564762;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962bed371ebdac9049507ac929114e3808bdcc7a', '34.254.53.125', 1674564763, '__ci_last_regenerate|i:1674564763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393c199f17b2dc081c017453c4dfbda077a196c4', '31.222.203.2', 1674565462, '__ci_last_regenerate|i:1674565462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfae661aa90849eb6399dad90cda71fd548a8062', '31.222.203.2', 1674565462, '__ci_last_regenerate|i:1674565462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28fb0dd22442ad2df2f80f6db45e04422577535b', '31.222.203.2', 1674565462, '__ci_last_regenerate|i:1674565462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7955efeb88105067ebc7e973a568414b3349407', '31.222.203.2', 1674565463, '__ci_last_regenerate|i:1674565463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c1cd4bbb46a81684964f4c71bb24dafaf7a919', '31.222.203.2', 1674565463, '__ci_last_regenerate|i:1674565463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0de8e2a86595b16197bda25702be53e66adad2c', '31.222.203.2', 1674565463, '__ci_last_regenerate|i:1674565463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6defa6a0d189846ce3d0a988e4773d0095dad8bd', '37.111.219.71', 1674569440, '__ci_last_regenerate|i:1674569440;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674569434;register_id|s:3:\"320\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-01-23 20:22:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee725ac806af6522465b77955497046c0f9b0130', '172.105.247.100', 1674568825, '__ci_last_regenerate|i:1674568825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2914afa255e25f8dc817ee161ea5035b9e9064ef', '172.105.247.100', 1674568825, '__ci_last_regenerate|i:1674568825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208a4271c757e09bcb2492ca16ca3b814745ba39', '172.105.247.100', 1674568825, '__ci_last_regenerate|i:1674568825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987c8a0cc75b110c1c4c37a4fd3ab4e02e3579ee', '172.105.247.100', 1674568825, '__ci_last_regenerate|i:1674568825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593e19d0aa1c3b21196cda337be826270116353d', '172.105.247.100', 1674568826, '__ci_last_regenerate|i:1674568826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d026b2cdfc4edb1565f5bcb436c790a6df16c210', '172.105.247.100', 1674568826, '__ci_last_regenerate|i:1674568826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4a670f318935463451487f62d3d0fcf82ab96a', '172.105.247.100', 1674568826, '__ci_last_regenerate|i:1674568826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db899c60abf545f4419a449b45bf72b293c657f4', '172.105.247.100', 1674568826, '__ci_last_regenerate|i:1674568826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c48b6b41f0afd6faa0db7439edd43444cf00eb1', '172.105.247.100', 1674568827, '__ci_last_regenerate|i:1674568827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b788ff9b62e708c7e05aa1d614d611f3579c807c', '172.105.247.100', 1674568827, '__ci_last_regenerate|i:1674568827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeddc523bfa2f28be485e775b153824d95c0b08a', '172.105.247.100', 1674568827, '__ci_last_regenerate|i:1674568827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705b216ef0a98b973e12cb7d1919838578ca1b95', '172.105.247.100', 1674568827, '__ci_last_regenerate|i:1674568827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c58d458f3ed56e99f3770d50c51f958412487a5', '172.105.247.100', 1674568827, '__ci_last_regenerate|i:1674568827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38065db393d10db909f2d56b24f0a9864071664a', '172.105.247.100', 1674568827, '__ci_last_regenerate|i:1674568827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a080ec3d0b6aa8a367a70e5ba9c83e43c15139', '172.105.247.100', 1674568828, '__ci_last_regenerate|i:1674568828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99297da7a5474784dc0e9a5f84981c16717182f', '172.105.247.100', 1674568828, '__ci_last_regenerate|i:1674568828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74178b040d23c786e750df9b32ecd7e434062c71', '172.105.247.100', 1674568828, '__ci_last_regenerate|i:1674568828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5bedca8556627f5f6494f8ca8e63d72c3815579', '172.105.247.100', 1674568828, '__ci_last_regenerate|i:1674568828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85b1fb39bb96da906860598dab79244e1107fa1', '172.105.247.100', 1674568828, '__ci_last_regenerate|i:1674568828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f340bf3c8cd128bc6b07155efa60e44701838b', '172.105.247.100', 1674568828, '__ci_last_regenerate|i:1674568828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7098017e65bd8eb9ab79dc5f4a13bf41cad77b4', '172.105.247.100', 1674568829, '__ci_last_regenerate|i:1674568829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac51c8dcc7630d9458aea1aa35cf3087e835212', '172.105.247.100', 1674568829, '__ci_last_regenerate|i:1674568829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5466c82084aeebc6e0e38d583fa5d062588d68ea', '172.105.247.100', 1674568829, '__ci_last_regenerate|i:1674568829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd06eb6847a6e13a4fe7fe0743a80588ce0e8ef6', '172.105.247.100', 1674568830, '__ci_last_regenerate|i:1674568829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3194f30f90623383fd812d93ba465769ab54f8b3', '37.111.219.71', 1674569563, '__ci_last_regenerate|i:1674569440;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674459679\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674569562;register_id|s:3:\"321\";cash_in_hand|s:9:\"6800.0000\";register_open_time|s:19:\"2023-01-24 20:11:00\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36dc712ac012b19081613295986dabffed22ea03', '172.105.247.100', 1674573628, '__ci_last_regenerate|i:1674573628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae837f0edfa51f352fc499ddd246dfcf5ea56ba', '172.105.247.100', 1674573628, '__ci_last_regenerate|i:1674573628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4d255907412e7fcf8a1659575be64c69297eff', '172.105.247.100', 1674573628, '__ci_last_regenerate|i:1674573628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f145d18322c166d29484b5cd61b30cf95f4b4c', '172.105.247.100', 1674573628, '__ci_last_regenerate|i:1674573628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b4d72bf4f550a8531fa798213ff0e2e4049e95', '172.105.247.100', 1674573628, '__ci_last_regenerate|i:1674573628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a849caf61af2b3db0be8f0199f008b3f31b51c', '172.105.247.100', 1674573629, '__ci_last_regenerate|i:1674573629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb863d319157dc6679dcd0d674ecd97e3f786f18', '172.105.247.100', 1674573629, '__ci_last_regenerate|i:1674573629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4674de43de3b0a8aa062d966d733f79972d1f249', '172.105.247.100', 1674573629, '__ci_last_regenerate|i:1674573629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc3029825ab13f8b071b440ceda520042d8d1a8', '172.105.247.100', 1674573630, '__ci_last_regenerate|i:1674573629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cbc18d139ac7dd424e78ab5bfc7f19712693b34', '172.105.247.100', 1674573630, '__ci_last_regenerate|i:1674573630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c37a46d15a670f84858c6c6bcade444b2303353', '172.105.247.100', 1674573630, '__ci_last_regenerate|i:1674573630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22cfab6042876fd44a2d5a6c7ddf63baa6490412', '172.105.247.100', 1674573630, '__ci_last_regenerate|i:1674573630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31012360f8f50f4e71ef03e42526c7d4eeb0143', '172.105.247.100', 1674573630, '__ci_last_regenerate|i:1674573630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c13ba382966ca8c76609ab5463af6261b03d3fd', '172.105.247.100', 1674573630, '__ci_last_regenerate|i:1674573630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963bb7febaca6431ac3febcba89b84c3147859b4', '172.105.247.100', 1674573631, '__ci_last_regenerate|i:1674573630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f40433ff889f75cedef6ed734f044a2dbff9588', '172.105.247.100', 1674573631, '__ci_last_regenerate|i:1674573631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084dfd788a15daf9213975c346eab7a622172bc2', '172.105.247.100', 1674573631, '__ci_last_regenerate|i:1674573631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77917cd35c4795a1591e81f47bf25225f9c183e7', '172.105.247.100', 1674573631, '__ci_last_regenerate|i:1674573631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79e1a4b0f731a6c6089389425240e33fabb3f287', '172.105.247.100', 1674573631, '__ci_last_regenerate|i:1674573631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8cf565930cc2e8c9f54607aed0fc76ee2ae2891', '172.105.247.100', 1674573632, '__ci_last_regenerate|i:1674573631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34579b7fde8b723b1acc112a9925ad228c903db9', '172.105.247.100', 1674573632, '__ci_last_regenerate|i:1674573632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('babe6d3ceb193cd8e99b277d75f49749ff95ff73', '172.105.247.100', 1674573632, '__ci_last_regenerate|i:1674573632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d352078d8b358e35f4dbdcee9184cd22a2f9122', '172.105.247.100', 1674573632, '__ci_last_regenerate|i:1674573632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09877694db6fa6e0aa74f863dc71b1c1fbc4307', '172.105.247.100', 1674573633, '__ci_last_regenerate|i:1674573633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee58f892331f77474ad108d295ab00aafffd03a9', '31.222.203.2', 1674574399, '__ci_last_regenerate|i:1674574399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f2fb5897147dc350a3e87ffb84424c06fe1721', '31.222.203.2', 1674574399, '__ci_last_regenerate|i:1674574399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbab3930de8c1ba6d668222f2cc2251ac139979', '31.222.203.2', 1674574399, '__ci_last_regenerate|i:1674574399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b525cd4d2994f1aabad2f4f106382feb7cdfc32', '31.222.203.2', 1674574401, '__ci_last_regenerate|i:1674574401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e591c4d1065c2213b1f4991680f5b881d0cbc948', '31.222.203.2', 1674574401, '__ci_last_regenerate|i:1674574401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea18aae9acbde115a23c18376b7f282a69bcba3b', '31.222.203.2', 1674574401, '__ci_last_regenerate|i:1674574401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc01362e1d5ed25a41da0d4b07efc98c4eb692b6', '31.222.203.2', 1674576259, '__ci_last_regenerate|i:1674576259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e54ec1f79f77fafd6541eacaaad49708d50790', '31.222.203.2', 1674576261, '__ci_last_regenerate|i:1674576261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8a818a59d1d7c90795ecb42ce5710c3ec1f3ba', '31.222.203.2', 1674576261, '__ci_last_regenerate|i:1674576261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc6a40e7c95614c3290b9d32e7588c8b62348f3', '31.222.203.2', 1674576261, '__ci_last_regenerate|i:1674576261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0784de15667a5fbb487f6325958721c66bea1b', '31.222.203.2', 1674576261, '__ci_last_regenerate|i:1674576261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924ae7fc14c25d3ab3fc8366346cdfb60f6ee0df', '31.222.203.2', 1674576261, '__ci_last_regenerate|i:1674576261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64b6340235c68d7a1654fdc641d3cca48af0c44', '172.105.247.100', 1674578424, '__ci_last_regenerate|i:1674578424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bbd0deec2b9cf66735299a3665fc94b03dad7b', '172.105.247.100', 1674578426, '__ci_last_regenerate|i:1674578426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9aeea0db526ac5f54b2168b5e78cd16fa69282', '172.105.247.100', 1674578427, '__ci_last_regenerate|i:1674578427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fe7c9c3cf5abb33c46a53d709db20e962789d6', '172.105.247.100', 1674578427, '__ci_last_regenerate|i:1674578427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d48c4837390262f54227e2f2e59ad3e78494c0a', '172.105.247.100', 1674578427, '__ci_last_regenerate|i:1674578427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c947c8e563a5b3533639c7b144012ac6b458302', '172.105.247.100', 1674578427, '__ci_last_regenerate|i:1674578427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('298ce8624ec6c6087e2538ac46e6a5ead61a07c9', '172.105.247.100', 1674578428, '__ci_last_regenerate|i:1674578428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534715e20d01f9c06649d7c995e80c5feec401e5', '172.105.247.100', 1674578428, '__ci_last_regenerate|i:1674578428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405a4f1e0f3b48a0edc3fc51ace0156a3346b062', '172.105.247.100', 1674578428, '__ci_last_regenerate|i:1674578428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7004dbf56968c5b9ac60cbe23d2b14d78bca47', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7607f5629cbba3a094e60557348d01afc40e8ff5', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69592b36dbb2d3f9f6ff15254024cb07fed8a50a', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0e5c88bf2d43f8d017527dffdc137b6b1d13a1', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935b548e5523ce4079e180c106cfaeae0a0890e2', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bc05c48b1a46a5c56ac81893d7462fc9bde36a', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6619c179e1f86b24673f180f1cb9a4a3b9a5f527', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be807e713c2fda7dd12580c53fc362d585c58abb', '172.105.247.100', 1674578429, '__ci_last_regenerate|i:1674578429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abef7df2a5945edc0e502c43161ccb351e5b0a89', '172.105.247.100', 1674578430, '__ci_last_regenerate|i:1674578430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef78a9d60665a02e1200f5de89c7c314617ebdf', '172.105.247.100', 1674578430, '__ci_last_regenerate|i:1674578430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5e2d53289a0fce94a903dfd7a4855a2900e360', '172.105.247.100', 1674578430, '__ci_last_regenerate|i:1674578430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5bbae9a122647a63212d3f86cf5c42fb5becc4b', '172.105.247.100', 1674578431, '__ci_last_regenerate|i:1674578431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb521e21edbcd686a81409c11a0ddbf4fb7057f', '172.105.247.100', 1674578431, '__ci_last_regenerate|i:1674578431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce433cbdb75ca901eb4ca408f4e093c5f361fe5d', '172.105.247.100', 1674578431, '__ci_last_regenerate|i:1674578431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102dcb5cbe086f71e92661b1bc306ffd1ce8c333', '172.105.247.100', 1674578431, '__ci_last_regenerate|i:1674578431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b213e4ee5e08fc022f9143a3f7babad33836837f', '34.76.158.233', 1674583271, '__ci_last_regenerate|i:1674583271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca67da3810f1df82c6d4189df5525429d3415cc', '34.140.248.32', 1674583271, '__ci_last_regenerate|i:1674583271;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d9c40dd71634947caa11e37aa630aec38bc53e', '172.105.247.100', 1674583825, '__ci_last_regenerate|i:1674583825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d9ebc5d555dc4e9412a4e0fa5bf136e3ff8d61', '172.105.247.100', 1674583825, '__ci_last_regenerate|i:1674583825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570a3b4cb336ff0e4fc9aca0f19ce62089f0f2db', '172.105.247.100', 1674583825, '__ci_last_regenerate|i:1674583825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c463091616efe33065dbffcf50ee921e00f6ac4e', '172.105.247.100', 1674583825, '__ci_last_regenerate|i:1674583825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b690a65c0808bfe0971a9a8d021a4e3f95463ff', '172.105.247.100', 1674583826, '__ci_last_regenerate|i:1674583826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407f95a73d2e0668978af92d9474d14af6d6d7d6', '172.105.247.100', 1674583826, '__ci_last_regenerate|i:1674583826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e79a6825d6c6b5d50dcb0f375f6d3a8d5649059', '172.105.247.100', 1674583826, '__ci_last_regenerate|i:1674583826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1eed6a19dd26c6fb93281a5cc878b9bf5850309', '172.105.247.100', 1674583826, '__ci_last_regenerate|i:1674583826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd237521466077dbbfe80fb2fd30f5e0b4857985', '172.105.247.100', 1674583827, '__ci_last_regenerate|i:1674583827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d580cb4e7bfa12ee7620ada4caa8a032b7abb6ba', '172.105.247.100', 1674583827, '__ci_last_regenerate|i:1674583827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15b6ab74e5ee26321bccf2f5c13df94070b9fc2', '172.105.247.100', 1674583827, '__ci_last_regenerate|i:1674583827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d995f9385975ee5631666908ae4ba1bd7494a6da', '172.105.247.100', 1674583828, '__ci_last_regenerate|i:1674583828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b0c8884e61ba43eeb1ee1247f6980577500e07f', '172.105.247.100', 1674583828, '__ci_last_regenerate|i:1674583828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ced2e456e2052a7594733a67424f7495ca79ad', '172.105.247.100', 1674583828, '__ci_last_regenerate|i:1674583828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c68033bc37103e310ee23e6fb836ecda32e4368', '172.105.247.100', 1674583828, '__ci_last_regenerate|i:1674583828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87aa26c7a70c1b54ee81929e60c8eddbb867f16', '172.105.247.100', 1674583828, '__ci_last_regenerate|i:1674583828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce060a81da48b2975f8197938d4ebdd546936f3', '172.105.247.100', 1674583828, '__ci_last_regenerate|i:1674583828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('062ac3d8c2e83bfedafdb777313f04f88705404f', '172.105.247.100', 1674583829, '__ci_last_regenerate|i:1674583829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b815bb7042224be08154b3b182049dcb624b89', '172.105.247.100', 1674583829, '__ci_last_regenerate|i:1674583829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79c566aa587c822f3cdf6e23d77a478e2545740', '172.105.247.100', 1674583829, '__ci_last_regenerate|i:1674583829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce67889146467b74ed98e02bec646f1ac80ffe4', '172.105.247.100', 1674583830, '__ci_last_regenerate|i:1674583829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb4139af5930ea6d0a27661118e031cbf43a431', '172.105.247.100', 1674583830, '__ci_last_regenerate|i:1674583830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c7452c1289b4ad7ce94c521e71a004c9c6c352', '172.105.247.100', 1674583830, '__ci_last_regenerate|i:1674583830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e336cb8952263252937d7ec987aea7ee87ff7e62', '172.105.247.100', 1674583830, '__ci_last_regenerate|i:1674583830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5cb7f3807ec77ac3c4d1597cbd5ec799c871458', '52.50.73.14', 1674585057, '__ci_last_regenerate|i:1674585057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beccfbde1e610bbe4dd792d5e9163739099cef2e', '52.50.73.14', 1674585058, '__ci_last_regenerate|i:1674585058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566cdf25675b2eda02eff5dd3633d6de22a3c615', '52.50.73.14', 1674585071, '__ci_last_regenerate|i:1674585058;error|s:99:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>https://www.google.com/\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6df7567ec67465a4c2a04f2fc4f743fdcd1eedb', '52.50.73.14', 1674585072, '__ci_last_regenerate|i:1674585058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7238ab38dff25eb8e93a64d6d2cec88d1c56ec', '31.222.203.2', 1674585193, '__ci_last_regenerate|i:1674585193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4abf7701e8b67a3f22afaabe02a5f62a7c258ea', '31.222.203.2', 1674585193, '__ci_last_regenerate|i:1674585193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3869ae2e434748073b17c8c598d09c089cefc91', '31.222.203.2', 1674585193, '__ci_last_regenerate|i:1674585193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b76c1fc3a5685a75348fce244dc9071a07351d', '31.222.203.2', 1674585194, '__ci_last_regenerate|i:1674585194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856dcfbb2830834b4d86cc1b5a3bb52993363af9', '31.222.203.2', 1674585194, '__ci_last_regenerate|i:1674585194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956e9f30f6510e7b268e2139436cdc8577215020', '31.222.203.2', 1674585194, '__ci_last_regenerate|i:1674585194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4f2ebb26d282a2d5cc7f71c7a05f57c975434f', '31.222.203.2', 1674587101, '__ci_last_regenerate|i:1674587101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694a8b7801e2dcb300e038083bfa7a02a57cdd98', '31.222.203.2', 1674587101, '__ci_last_regenerate|i:1674587101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb4e20f977703afc43653ad22d06636ace130aa', '31.222.203.2', 1674587101, '__ci_last_regenerate|i:1674587101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99165cf7292e232b622054442bb4e44d11c3303e', '172.105.247.100', 1674589224, '__ci_last_regenerate|i:1674589224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb06d9a27ba8ff361338eb85819235e31d244a8', '172.105.247.100', 1674589224, '__ci_last_regenerate|i:1674589224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e81c002493aa70db7bdb1f259f7b9db8ed0eb6', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be7db2e3e61542b82447f2e75d5046f815bd366', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba9d9daa5a79706f8415bda863eab2330f9c8a7', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3d96219a7d761982f724f2bb6a4c95ad61477f', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5249268bc8b3ef93af32b11426055d462ab2b0e2', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb0a58d195d84c2eca42d8bdb139e33a8f01bfc', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36239a326486390f6d04f3d80ae5ed840355fa1f', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03a0066dbf4e04313a9d77fa3a98f1933c5240a', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e161fcecad92d86f5402d86d1d78de335323b8', '172.105.247.100', 1674589225, '__ci_last_regenerate|i:1674589225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20864d101b04fecd7d4dff112cef11f3fb3d3a9', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e3971dbe3fe330609cd94c2c2685b1b29bb8ae0', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba281be2f02d267638f4dca9693b656dcafb408', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae693221709ce790862631209ed0564461e1693', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2b628a7d2ab1a0248b8076e83bda4230a64dd5', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c3958c986fb9d8b4d38a697be619607e493628', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b2d8e59bb7b39f2c600e499ef68eb5447050e4', '172.105.247.100', 1674589226, '__ci_last_regenerate|i:1674589226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e090a1af4325ff63bed67b922ccdf4aa4047dde', '172.105.247.100', 1674589227, '__ci_last_regenerate|i:1674589227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460f4204f710eeb72b872e1da8171994d59470ca', '172.105.247.100', 1674589227, '__ci_last_regenerate|i:1674589227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d8cbb30ac63c6ac04e45a6e274ae907133b970', '172.105.247.100', 1674589227, '__ci_last_regenerate|i:1674589227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af64f1baf038490ec8202cd8bd1c3c6a429fdd7f', '172.105.247.100', 1674589227, '__ci_last_regenerate|i:1674589227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542f2d6959ba775bc00572aadea732ca628db53d', '172.105.247.100', 1674589227, '__ci_last_regenerate|i:1674589227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc55162eef12f46641741535ab18e64c5f93dba3', '172.105.247.100', 1674589227, '__ci_last_regenerate|i:1674589227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4238b7c3aeb51ad362e38e5ad0510116818e78be', '172.105.247.100', 1674594624, '__ci_last_regenerate|i:1674594624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18763e465d44ffd7d89c9c8ca549f01557f08b44', '172.105.247.100', 1674594624, '__ci_last_regenerate|i:1674594624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3395c6c4c28671272fd11a979e567144acd2b6', '172.105.247.100', 1674594627, '__ci_last_regenerate|i:1674594627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa0b55564b964709c0139dfdbeef71dca4eb43f', '172.105.247.100', 1674594627, '__ci_last_regenerate|i:1674594627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b120b324d2cee4d7d73d2359ab2d2fa66877f6fd', '172.105.247.100', 1674594627, '__ci_last_regenerate|i:1674594627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1754b4cafb6f261ef219e728df984375bd8def', '172.105.247.100', 1674594627, '__ci_last_regenerate|i:1674594627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a71c7caedfe6d984ed3c11ed94fdd7c13532ae1', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53df93ce1fa353174355ac93d2c0a87122e55831', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641e0b4ee6affb5025eaaff0767cbef3d49bfec8', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49fe06b21436d5bf9b1774cc5a9ba76bbfdd352', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aaf6d84700a7285651441c2658d59cbda3d980f', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7c1df83e37b1435b7a7a9779fc0f22df055990', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af508f4de5be25e41e82793a7f27777ed384592', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e5dbfaf850bf7ca9cba5517ed2e8464d97fd03', '172.105.247.100', 1674594628, '__ci_last_regenerate|i:1674594628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35620b5127d02b4f497cb61fa84e7443fa6eaa0f', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0baf0798cbe2eeba746f51275f4e5c2782fb514', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f0a97db9e5c32db0684a90dc746db7d6a59d55', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa71aacac3b64f0414c3107bf3b587921f9aa6c', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8411f5b11a43e181a9cc662231d7cfc858fd48c1', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea23210f4d47dcdaa9f5be36b5ad24f6d0d8f297', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b43be584c23e5ed6fbe46dde7089f2e20bbdaf', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a337d4522b8d6da7ccf8b83561234ea0c5e8ba81', '172.105.247.100', 1674594629, '__ci_last_regenerate|i:1674594629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('915b767fca013c3b3cd2de3f94d999d83081843b', '172.105.247.100', 1674594630, '__ci_last_regenerate|i:1674594630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29791afef57b27e64d33c8ce94b8ecd2f124507', '172.105.247.100', 1674594630, '__ci_last_regenerate|i:1674594630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1c06da2afdf6ad83d2ad73f392db0496e928fb', '31.222.203.2', 1674595988, '__ci_last_regenerate|i:1674595988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9021f1e4bbdc4b3f79573ab68089e4078b7b0c9', '31.222.203.2', 1674595988, '__ci_last_regenerate|i:1674595988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b017a8e9504664ee542439c63194ae035885c823', '31.222.203.2', 1674595988, '__ci_last_regenerate|i:1674595988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e577b7229923700c053a08e89229ef63c4b18634', '31.222.203.2', 1674595989, '__ci_last_regenerate|i:1674595989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cec935c3c2aed854976f374422bf8db556c0072', '31.222.203.2', 1674595989, '__ci_last_regenerate|i:1674595989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbc853f2a02bc2aafc8d86e4636cc6c9b127533e', '31.222.203.2', 1674595989, '__ci_last_regenerate|i:1674595989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d37795154c85580dee14c29ee665e8e9c3eea29', '31.222.203.2', 1674597858, '__ci_last_regenerate|i:1674597858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3c94f31f17e3c4f3de43d856ab213ed0c75965', '31.222.203.2', 1674597858, '__ci_last_regenerate|i:1674597858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6404d02de7c658a34cf5d956126be4cfd82ce4', '31.222.203.2', 1674597858, '__ci_last_regenerate|i:1674597858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9ff6fe706912ddb916d4376484ec4305c132db', '31.222.203.2', 1674597858, '__ci_last_regenerate|i:1674597858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf5de33974f4ca23ee4e3e91ba45cf78d3b5d68', '31.222.203.2', 1674597858, '__ci_last_regenerate|i:1674597858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ec8ce87df1f46a3bd23afb0486416ef0c09c032', '31.222.203.2', 1674597858, '__ci_last_regenerate|i:1674597858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a53422276f77034603caf2d3c3b0b6e31eb6fd', '172.105.247.100', 1674599423, '__ci_last_regenerate|i:1674599423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e7cc2bdf58da0f69db5a28d51eb6aac86087f2', '172.105.247.100', 1674599423, '__ci_last_regenerate|i:1674599423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a86caf479721181335997754cf2d6da9105c1cb', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5b7d18a1f8815d6896897baf7b48b2a5a9a466', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf080c1b72f684e3e36e1d90cb027b5c88629c7', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63eea1be54fbbc596afedd059f6f66e87d0d668', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15cd0eb950eb0facf608b4a00c0687b11c5e9089', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232f52a23e8a16996275ca9de89e73ccbd15dbc9', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa39c3657a6ca88e8d706cb703fce92b3363474', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e2d8fc16b745951c70d7bc3f94c525fc762475', '172.105.247.100', 1674599425, '__ci_last_regenerate|i:1674599425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a8254d4343ef823cd49e0ad488421a1aa91a2c', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6812c699e022bb49579ace296ab3cab70f449def', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('544c88245d110495158c800471627ccd02fcab1b', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be9ba962a949ffe76e68f107d73fdbc915dee64', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fa041cbc8eb754b9f9a20c8ba8ef7e95046881', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1659a444bd43c58da226ce467aa4565ba30f2a1b', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30b62b585145dc78d7ffdf86c956278578d24b8', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c87b77b4e570cacc84fdae0d7bbfe501724840', '172.105.247.100', 1674599426, '__ci_last_regenerate|i:1674599426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c294a4bf6ab361637460f1c73c579f7653aef8', '172.105.247.100', 1674599427, '__ci_last_regenerate|i:1674599427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92367d30fc90878ac71caac017adbe5fed2be70a', '172.105.247.100', 1674599427, '__ci_last_regenerate|i:1674599427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d52225414734a99654151a36c49491468a12599', '172.105.247.100', 1674599427, '__ci_last_regenerate|i:1674599427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dca8a16c1edb174e3e79ab93db3d06158d19106', '172.105.247.100', 1674599427, '__ci_last_regenerate|i:1674599427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7f5b09b847e81148e556c64f9d15f40e10a81f', '172.105.247.100', 1674599427, '__ci_last_regenerate|i:1674599427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035e68f3e177af1d0aecabc8700c351931f90e9c', '172.105.247.100', 1674599427, '__ci_last_regenerate|i:1674599427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd05cb2a5c1f80d1358ebf335cd263fad1ef2efc', '172.105.247.100', 1674603621, '__ci_last_regenerate|i:1674603621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1115d6e3dfffe16d8f040448acc70efc8b27078', '172.105.247.100', 1674603621, '__ci_last_regenerate|i:1674603621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bda0ccf9757951f85823911bb35a7abdcd10d95', '172.105.247.100', 1674603621, '__ci_last_regenerate|i:1674603621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096b7a0115094cba6248134adcb1c4ed8fec021a', '172.105.247.100', 1674603621, '__ci_last_regenerate|i:1674603621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5d35eced49541c1bbd8585f7a6467d64f2de1c', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad3c1cc9b28bbf9280a008ab3a6714f57279b40', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10be2cbe0ae81280c25207a2edd0e20e4cc5201b', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200879a3f6d54d392b1bfc07ba1f5d5e1c9438e1', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce76d7ac791038219cce70542bc5e973d5fbe4c', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b05766a1cc3e6e4329768ac5ac6f26cbbb8bebf', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2188becb545e0e307377b02a472e646809df1b7', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d7c7231a8b07ca6f8dee08c91777f429ac380b', '172.105.247.100', 1674603622, '__ci_last_regenerate|i:1674603622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d97d3faba2be448bc1e0524df0ec2e8fba2b58', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427c2caec8b7d506e8712fa91b718e30fab8a78a', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974b3f2e090fc44479c57fab1d5c79b457734e29', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e81bfa50e9e5daedde92ce38f3358bb4d5e0e2', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a0d26e637af3342595e06e22edd5a4b98b638d', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d731a1456cb7f65002c8a332cf730b28a1bdc6', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5448d2c69be03985b4cb2c6112e7e4804e49f7cf', '172.105.247.100', 1674603623, '__ci_last_regenerate|i:1674603623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1bd7b1242126daa4a15133934c8086a4d01ac3', '172.105.247.100', 1674603624, '__ci_last_regenerate|i:1674603623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ecd7dc1a2aff99a582d6c4ef2343a63f93deda', '172.105.247.100', 1674603624, '__ci_last_regenerate|i:1674603624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0516e80b1ad38bf576acf1ea8d4babcc92a6181', '172.105.247.100', 1674603624, '__ci_last_regenerate|i:1674603624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5e346755b2ce9cade0bb039013b4c2fb4d9c0e', '172.105.247.100', 1674603624, '__ci_last_regenerate|i:1674603624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48a865bbc62bea9b9cb2998137a18fd31cd4d72', '172.105.247.100', 1674603624, '__ci_last_regenerate|i:1674603624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885e5a0081140a99684f642ee617cd76121cf85b', '31.222.203.2', 1674606799, '__ci_last_regenerate|i:1674606799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f6ddf8f91f6a887d68a4892cfcab8d9c38f344', '31.222.203.2', 1674606799, '__ci_last_regenerate|i:1674606799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3ebf8f7529f7de6373f64bbb589976ae145c50', '31.222.203.2', 1674606799, '__ci_last_regenerate|i:1674606799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231b8e7618655c4f40c2f5ee2c5d35d2f90ce859', '31.222.203.2', 1674606801, '__ci_last_regenerate|i:1674606801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae13707f79f7e097c30f5a18941cf9de905c8e7', '31.222.203.2', 1674606801, '__ci_last_regenerate|i:1674606801;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d3a3caffe975bf61201aefe55ac9edd93552e8', '31.222.203.2', 1674606801, '__ci_last_regenerate|i:1674606801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('216eb35db319374f64b10d2c2b175b19332ccbd6', '31.222.203.2', 1674608660, '__ci_last_regenerate|i:1674608660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4115e7034805dd83bef689ecf8eea9224a022b00', '31.222.203.2', 1674608660, '__ci_last_regenerate|i:1674608660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eff4d9f3df06f7876ca65b9ac2c048fbec91bec5', '31.222.203.2', 1674608660, '__ci_last_regenerate|i:1674608660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550e657a57082fa5c3f505801c04de308411601f', '31.222.203.2', 1674608660, '__ci_last_regenerate|i:1674608660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3e35c8214615247dfd75dcb7e34be6bb49fdb0', '31.222.203.2', 1674608660, '__ci_last_regenerate|i:1674608660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfcfe495775361db3cf0be6a6ba6456233b2414', '31.222.203.2', 1674608660, '__ci_last_regenerate|i:1674608660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcedf1d587dba42c06ea416cd456947637bd0714', '172.105.247.100', 1674609023, '__ci_last_regenerate|i:1674609023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ee5800da2971856da4239a7ca7524deed7e3d8', '172.105.247.100', 1674609024, '__ci_last_regenerate|i:1674609024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e8571c7b806fb06989d82a0f53529b21af3583', '172.105.247.100', 1674609024, '__ci_last_regenerate|i:1674609024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb5fe938ba4a045c128ad1efe0bee5bc0cf8eb7', '172.105.247.100', 1674609024, '__ci_last_regenerate|i:1674609024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72995769457eccaa83edc028a58ae7a0dd5aa83a', '172.105.247.100', 1674609025, '__ci_last_regenerate|i:1674609025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be9818a19fdea78e91c27cdb016b9ba1565a15c', '172.105.247.100', 1674609025, '__ci_last_regenerate|i:1674609025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b6071e75f3d1bf22012f007e4df1f1bf8453bf', '172.105.247.100', 1674609025, '__ci_last_regenerate|i:1674609025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f957a8fadaf9c4c8af8455e83e479881583c1e12', '172.105.247.100', 1674609025, '__ci_last_regenerate|i:1674609025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d74bfbc1870991508d28d5fcc3192a6a641399', '172.105.247.100', 1674609025, '__ci_last_regenerate|i:1674609025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6ea4b0c5c55144871915e18446add6091c79a9', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b514f58d2eb3f62c45ce65b2aa6f5eab0e60bb78', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df27878a14eb0a4cc0ad1d33857171c4ab2a1bd', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53df032033a8093de549b5c051caeaa2f18bd3e7', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a42acc76ef9edbc7860c9df8197650b80b5910b', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('001a87ad2bf3e79dd867adec774f1a239c584f4b', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6af658685b344bbb7b4e2e3637d3f4a6f92d34a', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee206e8116ffca87cec826fbca820762d79f590', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0761fa0aa40090cdd0aed197862400d05e22438e', '172.105.247.100', 1674609026, '__ci_last_regenerate|i:1674609026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e9651d9aad79ba181948bf8bf2eddb97230186', '172.105.247.100', 1674609027, '__ci_last_regenerate|i:1674609027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ed77165adf29ab3e58663c9ee1ec63d24dca73', '172.105.247.100', 1674609027, '__ci_last_regenerate|i:1674609027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1050f08acda75e4fcf80245f85a7e6add627fc0', '172.105.247.100', 1674609027, '__ci_last_regenerate|i:1674609027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86ae293968cbc269b4004591c1910a60cb2adc9', '172.105.247.100', 1674609028, '__ci_last_regenerate|i:1674609028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea769daaad11b8295f8c5bc8b5f57e0796916700', '172.105.247.100', 1674609028, '__ci_last_regenerate|i:1674609028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f59942f4051d98a8d5305591a637e00a75a9d0', '172.105.247.100', 1674609028, '__ci_last_regenerate|i:1674609028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa82ac41e689b23366e3c544d5c67222103f1f6', '172.105.247.100', 1674615023, '__ci_last_regenerate|i:1674615023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b7ba1b4777a83aa85fdca0bb088c14dfa43b79', '172.105.247.100', 1674615024, '__ci_last_regenerate|i:1674615024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae44bb6136434c35b56be9ad67e25d440560f6c', '172.105.247.100', 1674615024, '__ci_last_regenerate|i:1674615024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebee7f5ebaa5743ce325043aa1aa335dba7f18bc', '172.105.247.100', 1674615024, '__ci_last_regenerate|i:1674615024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7577532dd35a7912c2221b69f089715d36d1c01f', '172.105.247.100', 1674615024, '__ci_last_regenerate|i:1674615024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cfa6265fccd2d12c020e67967af70e26ab2480c', '172.105.247.100', 1674615025, '__ci_last_regenerate|i:1674615024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b6b10c992310211dc1d1fe79a45c2a3fc134cb', '172.105.247.100', 1674615025, '__ci_last_regenerate|i:1674615025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dad7fe2551122d11f9e4bced68ac79ad5760009', '172.105.247.100', 1674615025, '__ci_last_regenerate|i:1674615025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69df66df8f4fb4bb54c052b111f1fb8883d761fa', '172.105.247.100', 1674615025, '__ci_last_regenerate|i:1674615025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e1a0d165b81494fddfeaaa2c1fea987ca11e65', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e54e9de28e47fbf26e5975122be31a11951a7f', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f8293da71414d9301a9d65efffed68cf53f903', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7126d9e0f6bcf2a3909b809ca8cffedc259b83b5', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fbc1f3895d32ba3cdc78553b10d50575a95c9e', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523db5f52a690bd00226edecef275cb8fae348c8', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744019a7dc65106d08865da68b0565ad24baf780', '172.105.247.100', 1674615026, '__ci_last_regenerate|i:1674615026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9c3d6d4ff8250748dac36082b126ad6d95428e', '172.105.247.100', 1674615027, '__ci_last_regenerate|i:1674615027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b324c38f2612d8cd98f6ea02b48c1df232f3de', '172.105.247.100', 1674615027, '__ci_last_regenerate|i:1674615027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13b0b4cd1205cab3160a7d0a83ea6156a2f03c6', '172.105.247.100', 1674615027, '__ci_last_regenerate|i:1674615027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9c7e4fd6b954a9dcc593436ccd9fa7dd84a5d4c', '172.105.247.100', 1674615027, '__ci_last_regenerate|i:1674615027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e68445559323e4fb6dc3e9c87dabf33d240190', '172.105.247.100', 1674615028, '__ci_last_regenerate|i:1674615028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20db9514c8a7ba544d5dca1d118d9caa7c736532', '172.105.247.100', 1674615028, '__ci_last_regenerate|i:1674615028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18bca2d6406742c73060bf22d7cb8c73066cce16', '172.105.247.100', 1674615028, '__ci_last_regenerate|i:1674615028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56867d49a2504ebcaeff3136617b911ac1070e33', '172.105.247.100', 1674615029, '__ci_last_regenerate|i:1674615028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69fe9858d5b0196936712b7cc1c2e8c387f3a761', '31.222.203.2', 1674617608, '__ci_last_regenerate|i:1674617608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4f3ccc6382fa7eac9f8baffd0c598c3c211fbb', '31.222.203.2', 1674617608, '__ci_last_regenerate|i:1674617608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996bb29ca4f75b3da337a2888f30b64be22ac423', '31.222.203.2', 1674617608, '__ci_last_regenerate|i:1674617608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b7998ed25f495142a15ab8f28b0018571bb70f', '31.222.203.2', 1674617609, '__ci_last_regenerate|i:1674617609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3372f95cbba3207778fe761e7596e33cf9877cdb', '31.222.203.2', 1674617609, '__ci_last_regenerate|i:1674617609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa76026b0f12a950993d5ae3c4b2f43affcb79ee', '31.222.203.2', 1674617609, '__ci_last_regenerate|i:1674617609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5029439d7156c7bada3991dfc91f2e7fb0cecc6', '31.222.203.2', 1674619460, '__ci_last_regenerate|i:1674619460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41194a46671a5b8071cee919e8d553d88f392440', '31.222.203.2', 1674619460, '__ci_last_regenerate|i:1674619460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6b9c56f36c1839e6efbd6cc9195cfdd55f3aa1', '31.222.203.2', 1674619460, '__ci_last_regenerate|i:1674619460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7697276c71747fd5ccd35052102824d324d866da', '31.222.203.2', 1674619460, '__ci_last_regenerate|i:1674619460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('187ffd5cb4adace1380e805ad6594b854d60e0cc', '31.222.203.2', 1674619460, '__ci_last_regenerate|i:1674619460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7fbb70022f91b482c531eae9b24ca94b2e141f9', '31.222.203.2', 1674619460, '__ci_last_regenerate|i:1674619460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996feee1bb30baeab45595e257b4408d09998167', '172.105.247.100', 1674619824, '__ci_last_regenerate|i:1674619824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddedee8e94997fb7a31f5c9e4db6e155615fd171', '172.105.247.100', 1674619824, '__ci_last_regenerate|i:1674619824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16af05dc07790b946e3700271001ecd060436b1a', '172.105.247.100', 1674619824, '__ci_last_regenerate|i:1674619824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84760382bb44892427172fd336e9326e4d74ed79', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bfd74f7e39aec8fe22419523e41f988163ce0ec', '172.105.247.100', 1674619824, '__ci_last_regenerate|i:1674619824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456b5875b7ed7d98701a59688ece048fad51e003', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27d8ec906175f166f582f4b7e6696b5f383fc1b', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5be09a138618ff41a33c6fd39a2a75859e8e8c2', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc73490420a069f1eec7fa49a5df946ff1ea80b', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7cd6c3a5565518ba1191a0e2b0b24ec1af72526', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3365805868a804edca63efb7bb35669e57687a6', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c2eebcb124a162b399acae107811d703072a32', '172.105.247.100', 1674619825, '__ci_last_regenerate|i:1674619825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f009ec53e3de0a9cb58c058124c375ffae70bb8c', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48d7ca6f35903fc6d0333dcf7832bfa22fa1fb6', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2735a7577a3726a8750085caf0a68b00686e2ef', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0524a6f9b579b51a63940db4f08b1f765a028b33', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d620b8e14b8dd01dea40d78ced8107317635ee67', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6448b2c7039ddc4da80f99daf909820db0c60a08', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eadc5fcda714da7d578ecfcaa73c0a380263de2f', '172.105.247.100', 1674619826, '__ci_last_regenerate|i:1674619826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1e1dc03645942dac6be6dbbed673ea34166059', '172.105.247.100', 1674619827, '__ci_last_regenerate|i:1674619826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c69289ba1521805a2699b3c4ed8f9b418b5ac62', '172.105.247.100', 1674619827, '__ci_last_regenerate|i:1674619827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfedc5146a35b310ac7d9ca2494cd5576d036c8', '172.105.247.100', 1674619827, '__ci_last_regenerate|i:1674619827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb62bd656edb2829a0ee86492f57f1dde68e3ab', '172.105.247.100', 1674619827, '__ci_last_regenerate|i:1674619827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ffce6a6d1b447f1e9bbacbf1a72859b4a0e41d', '172.105.247.100', 1674619827, '__ci_last_regenerate|i:1674619827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac542510f0018119e010f3ae193e0527fff2fc87', '172.105.247.100', 1674625222, '__ci_last_regenerate|i:1674625222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31cb5722c477b23985910f08c7660f61fb2c68c4', '172.105.247.100', 1674625223, '__ci_last_regenerate|i:1674625222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0bcaa1d14ba91bd0c26b5eb3fa3fac46cdef5f2', '172.105.247.100', 1674625223, '__ci_last_regenerate|i:1674625223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5149a72801512e2fd17b1d85c6bc29efe173ca4', '172.105.247.100', 1674625223, '__ci_last_regenerate|i:1674625223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82400ef7f69ff9e69516a828bfa4c2c40cdf3796', '172.105.247.100', 1674625223, '__ci_last_regenerate|i:1674625223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d288942529f433a27612b8a0d4cc077172201b3', '172.105.247.100', 1674625223, '__ci_last_regenerate|i:1674625223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902239e3cb63f7166fd8ce89e72b74ae56bb1db6', '172.105.247.100', 1674625224, '__ci_last_regenerate|i:1674625224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dea45adbdad49fe6574b55b5684c1d634cf4157', '172.105.247.100', 1674625224, '__ci_last_regenerate|i:1674625224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e986ff85e79828176b22f75098d4d3cf338f8bde', '172.105.247.100', 1674625224, '__ci_last_regenerate|i:1674625224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe46ff97366da676dece47994ae5b58ddb5ee64', '172.105.247.100', 1674625224, '__ci_last_regenerate|i:1674625224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa1dbcd72cd80b721f091059467cd19af791f63', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ea40114c8736634d6e6949b0c5dc839bb64c58', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb4337cc4bd682b023bcf64b55cfcb518172de6', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec38153abcdccd7856894b19065409b5303bc062', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38fed2400c57a22dad7d27f77349ab77eb4f6c3', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40c027ac1a087470fdb939d4790e2daeccdfd30', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709b3890cf5aee8015f74bc30059dfd1dc013ae5', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebed6cff1b93de27c94693a1b058c5732691ef6', '172.105.247.100', 1674625225, '__ci_last_regenerate|i:1674625225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f34fbc94b04178a43c1b05b78d1a0d1b69847663', '172.105.247.100', 1674625226, '__ci_last_regenerate|i:1674625226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf7e34bbe6a3bdfd329455e70ec7d25af91a768', '172.105.247.100', 1674625226, '__ci_last_regenerate|i:1674625226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dc091c51cd648c98a234b93cf20ff29d4d6edc', '172.105.247.100', 1674625226, '__ci_last_regenerate|i:1674625226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e541d9eaf793e51f61f2899fc20d4021011c1893', '172.105.247.100', 1674625227, '__ci_last_regenerate|i:1674625227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd5d731135dd883fdfff3f4f40f6efdc18a2e12', '172.105.247.100', 1674625227, '__ci_last_regenerate|i:1674625227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575c90fd3b4d7676f597b180613eb95b11825366', '172.105.247.100', 1674625227, '__ci_last_regenerate|i:1674625227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b7f1426be16baa40bcbaf1412b3d6739d63ea3', '52.31.195.134', 1674626124, '__ci_last_regenerate|i:1674626124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db281d61ebf7ecfc7455e00308d390125bbdfb5', '52.31.195.134', 1674626125, '__ci_last_regenerate|i:1674626125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdccfed84fb7a7016ab98ba80f5aa8412837f87', '52.31.195.134', 1674626139, '__ci_last_regenerate|i:1674626125;error|s:99:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>https://www.google.com/\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835723cc86fbe85261ae497ff1fac51c7864794b', '52.31.195.134', 1674626139, '__ci_last_regenerate|i:1674626125;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cef58d4cd4ad5df32633f299a3b0d5868cecd18', '31.222.203.2', 1674628397, '__ci_last_regenerate|i:1674628397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95d6fe0d5eeff327278300bcfc5f361b599388e', '31.222.203.2', 1674628397, '__ci_last_regenerate|i:1674628397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed55d124a96eac335629b6de3af4abb0ae03889', '31.222.203.2', 1674628397, '__ci_last_regenerate|i:1674628397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5f31023906630ef6d16c9e1a19c956ce2e059b', '31.222.203.2', 1674628398, '__ci_last_regenerate|i:1674628398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac23874dabd2168d36219cf038dfa918201ebf43', '31.222.203.2', 1674628398, '__ci_last_regenerate|i:1674628398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423c62ef4b1edeb68c4e437ae032371f2042ad7d', '31.222.203.2', 1674628398, '__ci_last_regenerate|i:1674628398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b23ab821ead0db67cc500da7749cdcfe4229af', '31.222.203.2', 1674630260, '__ci_last_regenerate|i:1674630260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8dab1c9b4cb92f960c2b710e7fb2bc518d7009', '31.222.203.2', 1674630260, '__ci_last_regenerate|i:1674630260;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505aecf883aca1193643804d6438bef5e28afd45', '31.222.203.2', 1674630260, '__ci_last_regenerate|i:1674630260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491e980116ddb41543d9e16e989428bf26a26ee2', '31.222.203.2', 1674630261, '__ci_last_regenerate|i:1674630261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a6d6e6859ad59a4443f50673c3d82279d0e3d7', '31.222.203.2', 1674630261, '__ci_last_regenerate|i:1674630261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c474db929e53e47708c367a2c8103ba588cd3b07', '31.222.203.2', 1674630261, '__ci_last_regenerate|i:1674630261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4793c828bd3bc2be7925821a0b8dce0e32f7aa', '172.105.247.100', 1674630625, '__ci_last_regenerate|i:1674630625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f6f88c79556bfbf6d55d2658195defcdb5f475', '172.105.247.100', 1674630626, '__ci_last_regenerate|i:1674630625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b532d91833969266ed0567e1b1ad89d0e8b866', '172.105.247.100', 1674630626, '__ci_last_regenerate|i:1674630626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('284db9caddae67b38bcee0085fd29ac6ba91ffcd', '172.105.247.100', 1674630626, '__ci_last_regenerate|i:1674630626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00d588a8c9adf8537c55a533b1db0793a360d19', '172.105.247.100', 1674630626, '__ci_last_regenerate|i:1674630626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55199d6a0da06b6b409ba1cb6b62b0dd382c5269', '172.105.247.100', 1674630626, '__ci_last_regenerate|i:1674630626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215113459db429019714ebc065c7e8f4d568da47', '172.105.247.100', 1674630627, '__ci_last_regenerate|i:1674630627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de74b1fac92bf92451f14a2bb96be5b6fa06415', '172.105.247.100', 1674630627, '__ci_last_regenerate|i:1674630627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a183089cbd4ab3f531606cd86cd6a9224fa7f4', '172.105.247.100', 1674630627, '__ci_last_regenerate|i:1674630627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4fc8e36a68a9e820e903521f98718e1a850e95', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85319c601d0f3e9f40541709774736d5df169bf2', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9420da576006b3c9b231df0f0006a35341754e71', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416411f464b7a34bf1e9b1fdd67f5b139fd3849e', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842d3a60a7a6b5b9e73aca34c460906618723327', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ee7e3358f685cfcd1e0a23c18d16092f72bd1f', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d90bdc2da0c16f1e88f8a762e67819c5ecd0466', '172.105.247.100', 1674630628, '__ci_last_regenerate|i:1674630628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33805b53c54140c4b2668021ec1d02884a17fc3d', '172.105.247.100', 1674630629, '__ci_last_regenerate|i:1674630629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3e850fdd3d8fb2111efa6eee30991630f4f7b9', '172.105.247.100', 1674630629, '__ci_last_regenerate|i:1674630629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0490629f8fa1bdbfbce0bb6e869644641c326c4e', '172.105.247.100', 1674630629, '__ci_last_regenerate|i:1674630629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5cc925b6ec2565d86cffdbf1134e74510c90a88', '172.105.247.100', 1674630629, '__ci_last_regenerate|i:1674630629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d902e41946490ff46300363d81b245b6af9f6c85', '172.105.247.100', 1674630630, '__ci_last_regenerate|i:1674630630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f8e822e35aa4602c11d2f990bf683b4addff8e', '172.105.247.100', 1674630630, '__ci_last_regenerate|i:1674630630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a54a1a8c8346af3444bcfe8b94324bbd4dc4d27', '172.105.247.100', 1674630630, '__ci_last_regenerate|i:1674630630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc64cdbaa4edaa27d6431d5042d8ff062b6698b', '172.105.247.100', 1674630630, '__ci_last_regenerate|i:1674630630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c4af3ebc1bf9845ad70b413fb42e3031276381', '89.104.110.116', 1674630782, '__ci_last_regenerate|i:1674630782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd2729bed9c81ac4934c614e2315c7c55730e84', '172.105.247.100', 1674636023, '__ci_last_regenerate|i:1674636023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baed04b3a37b6e7d4388284ff00c0f81f8af8988', '172.105.247.100', 1674636024, '__ci_last_regenerate|i:1674636024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc1355abe6776a317c699f932c7c99bb6adedab', '172.105.247.100', 1674636024, '__ci_last_regenerate|i:1674636024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a72f8602629ec1734fb14bdcc04eef8029edca0', '172.105.247.100', 1674636024, '__ci_last_regenerate|i:1674636024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d85eaf4f8f8f67888c463d23b14651304165174a', '172.105.247.100', 1674636024, '__ci_last_regenerate|i:1674636024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad66c0e1b80966a8493d9033bd32e4f8474a4fe1', '172.105.247.100', 1674636025, '__ci_last_regenerate|i:1674636025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ddeab4188ae1e6d163737abc72e694d6431bc2', '172.105.247.100', 1674636025, '__ci_last_regenerate|i:1674636025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9602ddf6cd650428d4197fa4a386e3d4df4a35dc', '172.105.247.100', 1674636025, '__ci_last_regenerate|i:1674636025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95c5ace454902bed3e3e200538fa2318855df64', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79b8002c3974950742baebfb53a2544e1e91bfb', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a5c62c5af073a9308b8291156b2b0be7209fb1', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802753cec0c5af31ff50b793b8588d7e6050e7ae', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d4abf917eac3bc89fa4d1131d82ebe8cf484b0', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb032dc7c956adfe31ffaa019b77cb41f7649ec7', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49698b2b3ce7a7a792361fc773fb948ba90a7794', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9157d704ea227ae9b41ffda5742e577db9e86767', '172.105.247.100', 1674636026, '__ci_last_regenerate|i:1674636026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4badf4ccc3fbced5a12360a2deadf494c282b3f', '172.105.247.100', 1674636027, '__ci_last_regenerate|i:1674636027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec749aa10d7ee9ba1d0768eb37df857847913f0', '172.105.247.100', 1674636027, '__ci_last_regenerate|i:1674636027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a97a9a6a8453b7c4c10366886c97d6a5dbfc07', '172.105.247.100', 1674636027, '__ci_last_regenerate|i:1674636027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85be54832d975a384e87da1755902143128cc293', '172.105.247.100', 1674636027, '__ci_last_regenerate|i:1674636027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3421fd1155b7cff5a38f9adcaef5abdcb6dfc776', '172.105.247.100', 1674636028, '__ci_last_regenerate|i:1674636028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c422f8ece236a884077d91e9dec52467976912f', '172.105.247.100', 1674636028, '__ci_last_regenerate|i:1674636028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecce0d7699ee7d06c3dd9286435429f5c6dcadaa', '172.105.247.100', 1674636028, '__ci_last_regenerate|i:1674636028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c45746ffe172994eb820a70d0c1ece269b6ef82', '172.105.247.100', 1674636029, '__ci_last_regenerate|i:1674636029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342c34a98174a6ceed78bf4e6425167ea03072c8', '37.111.218.114', 1674636327, '__ci_last_regenerate|i:1674636313;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674541779\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcdd0c157ed98497ae59fa3b3110a684cf3ab232', '47.89.193.239', 1674638055, '__ci_last_regenerate|i:1674638055;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf838978aec4072d7eb0be4e10d02969a1d623af', '47.254.74.59', 1674638060, '__ci_last_regenerate|i:1674638060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b43ed58332513ba2a0a1a26fff0c8af052ea7a3', '47.89.193.162', 1674638060, '__ci_last_regenerate|i:1674638060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f32aba54f718186592a698bd8ca38a604d51487', '47.89.195.210', 1674638061, '__ci_last_regenerate|i:1674638061;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5465ef5fe71123cea6ec20b312e553a54389cfe', '47.88.94.161', 1674638062, '__ci_last_regenerate|i:1674638062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050cc8e292019899f09aaf58e1d1281cbee29ecb', '47.88.94.159', 1674638062, '__ci_last_regenerate|i:1674638062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5661ead84244e3bee1e748510399a8b70510df46', '47.88.94.159', 1674638062, '__ci_last_regenerate|i:1674638062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55dd3498e2cedf8bc99c0b81d005e8483fcd2f0b', '47.88.5.56', 1674638063, '__ci_last_regenerate|i:1674638063;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c5c499cb3810426896749d07b935422cd0ed60', '47.254.16.187', 1674638064, '__ci_last_regenerate|i:1674638064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe3da776af39f76af909efb71596dc046b0a1e2', '47.88.94.159', 1674638064, '__ci_last_regenerate|i:1674638064;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f022cfe098495a69ade1923817375dfbc00bd65d', '47.88.90.156', 1674638065, '__ci_last_regenerate|i:1674638065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340afe3b206a0ea1fc0f7de0dceba690ae7123f8', '31.222.203.2', 1674639196, '__ci_last_regenerate|i:1674639196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9642e0a2c98793dc75c169151499f8e4dc08e9f1', '31.222.203.2', 1674639196, '__ci_last_regenerate|i:1674639196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534b46a7541dd790c834edb3e96d876bb279b1ee', '31.222.203.2', 1674639196, '__ci_last_regenerate|i:1674639196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3831bfafd419fc2e236aeef4afa0e65e3d0c757d', '31.222.203.2', 1674639196, '__ci_last_regenerate|i:1674639196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4d32a412d62a7909454f36f73b5f74e198b225', '31.222.203.2', 1674639196, '__ci_last_regenerate|i:1674639196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40571496c8390d5b6904bbf721c59125519e083', '31.222.203.2', 1674639196, '__ci_last_regenerate|i:1674639196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3782ab95335a9cec14d25fef43887a023917064', '31.222.203.2', 1674641059, '__ci_last_regenerate|i:1674641059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad452225468bad9247dc04e13bf8d8f2abefd5f7', '31.222.203.2', 1674641059, '__ci_last_regenerate|i:1674641059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07dda2a33708f9685429be63239bd10561cadb13', '31.222.203.2', 1674641059, '__ci_last_regenerate|i:1674641059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd452a288fb305046ddc05a88f9688584629b3c', '31.222.203.2', 1674641061, '__ci_last_regenerate|i:1674641061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502187f6114ed1e5a934399e5fd9a959bd28a891', '31.222.203.2', 1674641061, '__ci_last_regenerate|i:1674641061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5be3898484d1170a194dd14768308c64ad76f1b', '31.222.203.2', 1674641061, '__ci_last_regenerate|i:1674641061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4893ebe6cea39f9466800cdf52cd1220a9e2a173', '172.105.247.100', 1674641424, '__ci_last_regenerate|i:1674641424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55d47f3fc6467e55450869facc8a528ddbfabcb', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae654a6cbb57a9335ee401112e6ba006a8885e2d', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3a01df0893c1bff6e538fc3c62c7d3313aa2a4', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df30464ca847f453df78801de132260935c2950', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5dd15c0d0cd16419f5d55ac6152d0dbb2edbfa', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2a2adfb098dd8d98a9a501dc96e7845f4e4d4a', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c84f7cf50f5dd044c8f97c52b4b3f6941cf3c90', '172.105.247.100', 1674641425, '__ci_last_regenerate|i:1674641425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9b5a3a3036b79893c7166ea77d073c702c05a1', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19959348455abc0fafc3a49c187e2f7423c029d1', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25d6ec3def3fb40233d53cf30f97eeafdfb19ec', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e7bc72e5da96aa0fd6554dc0e25e64ce9b542b', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba61a553f7bef0e73b32044e82ec528f5f5982e', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7591c2570afcdc8f73ca40614f90e21f8b9c5883', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('591fa77d727103dcb97f6689d5c9169e0a99e69a', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f0296ec998fde97ad0f1c0896f9fc598007ffa', '172.105.247.100', 1674641426, '__ci_last_regenerate|i:1674641426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e798bc9b151425629d413329601f4e12657feeb', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0e789bb12613876449ba316323504e3ec470a48', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f3a236619bdadb51672ccf793edec45dd3515d', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6afd648c4bcafadbdfcb72ef402960736a3df9', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d301a679562d519099d7eff087828c5047986934', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47a4d65315d8411afd2beb84a0154f6e8199c93', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24136a0625c199e6801756c90d8edad726025e66', '172.105.247.100', 1674641427, '__ci_last_regenerate|i:1674641427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f770ec3abdbb64bfdcbfb9c9de8930ccf3455306', '172.105.247.100', 1674641428, '__ci_last_regenerate|i:1674641428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa92bd259f5ff65c95c3bc49c96aadc63d02c8da', '172.105.247.100', 1674646824, '__ci_last_regenerate|i:1674646824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e4319afdd8eaf9a355f16b5adb3d605ec11e7a', '172.105.247.100', 1674646826, '__ci_last_regenerate|i:1674646826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6c54840b954de9ff1bfecb53e52be6ea22633a', '172.105.247.100', 1674646827, '__ci_last_regenerate|i:1674646827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa1a2516692edca6e990e0ff29af4e23a23e820', '172.105.247.100', 1674646827, '__ci_last_regenerate|i:1674646827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f20b8c4ec7cd5e54fdeb2772f807aba3b27b609', '172.105.247.100', 1674646827, '__ci_last_regenerate|i:1674646827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09ba2ff8e2f5c672969aebfadf22cbd7eb0c26d', '172.105.247.100', 1674646828, '__ci_last_regenerate|i:1674646828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5558043da471a626ac3c9b713b25012a200a3e72', '172.105.247.100', 1674646828, '__ci_last_regenerate|i:1674646828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ba0acb0bf6984af2c08208f2c87107640deddb', '172.105.247.100', 1674646828, '__ci_last_regenerate|i:1674646828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d04abe3d5e05932a04b0eb6b4470ece8c0ecee9', '172.105.247.100', 1674646828, '__ci_last_regenerate|i:1674646828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a770d42dfbc6072fba8eb1531c8fcdf93b672468', '172.105.247.100', 1674646828, '__ci_last_regenerate|i:1674646828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75593977be67bf36ea2b7e2cd5107eddcf538ef', '172.105.247.100', 1674646828, '__ci_last_regenerate|i:1674646828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b95b89db50de32064bc9fd3b6de8c0f73544c15f', '172.105.247.100', 1674646829, '__ci_last_regenerate|i:1674646829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7cd691a1182d3a63cdfc73553b0fd3efe8271e', '172.105.247.100', 1674646829, '__ci_last_regenerate|i:1674646829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db2b64645a0f80f9cbbd3bf0eab75bbbc2372fa6', '172.105.247.100', 1674646829, '__ci_last_regenerate|i:1674646829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848f69301756edeee00d99eb96f6d8540bfbab99', '172.105.247.100', 1674646829, '__ci_last_regenerate|i:1674646829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27dd16271f88c742dc6212679f9bc81902e83f68', '172.105.247.100', 1674646829, '__ci_last_regenerate|i:1674646829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717b13394c7e7eedf28f2d271e3ec6ad9a7d2527', '172.105.247.100', 1674646829, '__ci_last_regenerate|i:1674646829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533ef9590e8fa1890cb89fb0b93e06cfb9f7cfa3', '172.105.247.100', 1674646830, '__ci_last_regenerate|i:1674646829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437f7867485bd6a40cffd8a594319686ff55ef79', '172.105.247.100', 1674646830, '__ci_last_regenerate|i:1674646830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57db3be07d2e6f87eb28bcb557450feaac1f48f7', '172.105.247.100', 1674646830, '__ci_last_regenerate|i:1674646830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dcfc61b76b2b3450e07ad5b8a6a521757488251', '172.105.247.100', 1674646830, '__ci_last_regenerate|i:1674646830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b72c95d93f7b2de671df3b8e601ca66578d83c', '172.105.247.100', 1674646830, '__ci_last_regenerate|i:1674646830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57cdb63f77e848630f400d29f8b64d79d833f08d', '172.105.247.100', 1674646831, '__ci_last_regenerate|i:1674646831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7672b428932a60442b4f8ec12ce75c249dce1b11', '172.105.247.100', 1674646831, '__ci_last_regenerate|i:1674646831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e537e8f155a0548a339d11f88cfcb796a38509f', '47.88.93.234', 1674648680, '__ci_last_regenerate|i:1674648680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5672cd0e4e49acb4a2b107c0d2d50458c49713a', '47.254.16.187', 1674648682, '__ci_last_regenerate|i:1674648682;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ce406ca606303422c75e4fa38041fd213c86ad', '47.251.15.21', 1674648682, '__ci_last_regenerate|i:1674648682;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da6ea130d5028ec2f31d55d735c3da38612984d', '47.89.195.210', 1674648683, '__ci_last_regenerate|i:1674648683;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b699c91ad3e904a8f518096db507bd137200a8', '47.89.193.239', 1674648684, '__ci_last_regenerate|i:1674648684;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a82122f7266a526cbe8b9d2495f24d0862f84c', '47.254.74.59', 1674648684, '__ci_last_regenerate|i:1674648684;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba46d9fc83fcfc774fc16e6cae7cd7126fdad7e', '47.88.6.178', 1674648685, '__ci_last_regenerate|i:1674648685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea748cb794f22aaf8c26b5f35f1d250f789fa162', '47.254.25.10', 1674648686, '__ci_last_regenerate|i:1674648686;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf9f27b303a62dcf8e77a447ea6c05be077c541', '47.251.11.3', 1674648687, '__ci_last_regenerate|i:1674648687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f3206982e4be1f5908c48c81261f5c5c6321221', '47.251.14.232', 1674648687, '__ci_last_regenerate|i:1674648687;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba1e8409513960735d311889cfbadc7a38b931d', '47.251.14.232', 1674648687, '__ci_last_regenerate|i:1674648687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0e5cdecb31b721d00a197d45d33ee22262d3c2', '31.222.203.2', 1674651799, '__ci_last_regenerate|i:1674651799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd60743ec21772815f50a662f05c9552a347c4df', '31.222.203.2', 1674651799, '__ci_last_regenerate|i:1674651799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a77f3fb10aabc6f9fb417cb8e391b53211a64b7', '31.222.203.2', 1674651799, '__ci_last_regenerate|i:1674651799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d2f6fafdc10f9dcf15d3bd5bd69fab6de86857', '31.222.203.2', 1674651799, '__ci_last_regenerate|i:1674651799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf200502b5379cde4767d53fd73ecba96d62472', '31.222.203.2', 1674651799, '__ci_last_regenerate|i:1674651799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9313971041766a111b130b07196b8f796dfdf9c2', '31.222.203.2', 1674651799, '__ci_last_regenerate|i:1674651799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5104e22b4f5bdfd6bd6633e0588d3dc2a7dc266', '172.105.247.100', 1674652224, '__ci_last_regenerate|i:1674652224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010fcd03c585577dfb538a9ecf4284361593a9b3', '172.105.247.100', 1674652224, '__ci_last_regenerate|i:1674652224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba605503d2911a3c44670e2ba9b4b8af79d0425', '172.105.247.100', 1674652224, '__ci_last_regenerate|i:1674652224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018a21a837aaa59d31d7069162220e8ab29eac85', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74328cdbe504ca0a77e0ea8c7125bc8f60af0f41', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d79c9537bfea6d9a5c81759eed2c6e52e22a42', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae39acd8cdd2231da6f2d2a02ca6cc5f8d967f5', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecadac7f651b2a9b5840013b9da69651a6f20a18', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde2929aa4c9a91eb4c9f57e740def21f2bac7b6', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53c092aca1a404c4d2776fea955ba94ce16c0b2', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0b763610099b639688d14e9a41e16cc86dad01', '172.105.247.100', 1674652225, '__ci_last_regenerate|i:1674652225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8390b68096a6b2123804935452e3461b3f608738', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4260762c0675f3f06536b17bafe74bf6d3dc6d3e', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e38e8903b44fa63a4a4727602dabfb20da1ae3', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9ae29edaa619bbe51e8cf88415e84cf47288c7', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5824a74467310304b95fbb5e092310e088027f6', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af666e9764d8a07477c000c8382813dd58f62b4f', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc7561df638e20fcc186fe2def9f9880f38f6c0', '172.105.247.100', 1674652226, '__ci_last_regenerate|i:1674652226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8123eaceb87f64ba171d963f674b9b2f663f0f1a', '172.105.247.100', 1674652227, '__ci_last_regenerate|i:1674652227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7385b9df05c06dfc8ddbecc9561e3938093e465e', '172.105.247.100', 1674652227, '__ci_last_regenerate|i:1674652227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52bf72cbe2c0c893b291d6d45e3266801fc1c747', '172.105.247.100', 1674652227, '__ci_last_regenerate|i:1674652227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa82276035dd0357fbf110218561ac91bad9428', '172.105.247.100', 1674652227, '__ci_last_regenerate|i:1674652227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1cf8ae7e45c5481284baba1f82d0e3739b64a0', '172.105.247.100', 1674652227, '__ci_last_regenerate|i:1674652227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669f6b2464b442ec1c5bc732cc5dde62747bf5e0', '172.105.247.100', 1674652228, '__ci_last_regenerate|i:1674652227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71eca0a7290112f232fd6419c49cd071de061254', '37.111.218.114', 1674653106, '__ci_last_regenerate|i:1674653106;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674636326\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674653093;register_id|s:3:\"321\";cash_in_hand|s:9:\"6800.0000\";register_open_time|s:19:\"2023-01-24 20:11:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('673c27472510381312d5d5dbc6ea48a9e302b8bc', '37.111.218.114', 1674654661, '__ci_last_regenerate|i:1674654661;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674636326\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674654653;register_id|s:3:\"321\";cash_in_hand|s:9:\"6800.0000\";register_open_time|s:19:\"2023-01-24 20:11:00\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19acb3f762fe5ddf51731985bd3d44548cb12971', '31.222.203.2', 1674653702, '__ci_last_regenerate|i:1674653702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccea1ec4eb71166f3129ac6c118216346ff8245d', '31.222.203.2', 1674653702, '__ci_last_regenerate|i:1674653702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7369875d4218e0dc80ed6c0a4e5d1185571177', '31.222.203.2', 1674653702, '__ci_last_regenerate|i:1674653702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0779b94bacf94ee9b1d3a25130d328456a2be869', '37.111.218.114', 1674655183, '__ci_last_regenerate|i:1674655183;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674636326\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674655178;register_id|s:3:\"321\";cash_in_hand|s:9:\"6800.0000\";register_open_time|s:19:\"2023-01-24 20:11:00\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc40a7494476a8b756f065d0763604c8db385876', '37.111.218.114', 1674655199, '__ci_last_regenerate|i:1674655183;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674636326\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674655198;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8ee0149e0293a3071f71c92577ed8bcb765963d', '172.105.247.100', 1674657026, '__ci_last_regenerate|i:1674657026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4278c59f90d4962f8644a0637f3c7ccc5899b59e', '172.105.247.100', 1674657027, '__ci_last_regenerate|i:1674657026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba22321679005dd07cdf775b4aa144ea5591e86', '172.105.247.100', 1674657027, '__ci_last_regenerate|i:1674657027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f79ea052fb7d80cc82562f04bbbf7df769424b4', '172.105.247.100', 1674657027, '__ci_last_regenerate|i:1674657027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1854bd919a46042ef82c5d7a23329507e112468', '172.105.247.100', 1674657027, '__ci_last_regenerate|i:1674657027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa05b75f83dfa583548429476f56643b3949f084', '172.105.247.100', 1674657028, '__ci_last_regenerate|i:1674657027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('118ae09deb5e6160c118fabc9b194f4b8f2d1877', '172.105.247.100', 1674657028, '__ci_last_regenerate|i:1674657028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c123e92d76d2c51e37b6812aea638a630e3acefd', '172.105.247.100', 1674657028, '__ci_last_regenerate|i:1674657028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e5748c60c4bf06f5742a09925985871bd97505', '172.105.247.100', 1674657028, '__ci_last_regenerate|i:1674657028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add8d07c700be779f069e91929410fa1e683e4c0', '172.105.247.100', 1674657028, '__ci_last_regenerate|i:1674657028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9417078ebcb12f86f6942c9efadeb6f3ada495', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97b366eb13eea753ef86b386fcd5ddeab70e912', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fef197832ef6fb4e0b2216b7d71b327e348394f', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138b319d51c7a390166937cfc9c0c72385787420', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb69ba866c1646415d1d10779d72ef45594c08b6', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ed9e8b6ccb6669636b75e0b6e6ddc9dcb7466d', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('843cc5460701c6c8df2fa2d9ceb9152e8457fdb1', '172.105.247.100', 1674657029, '__ci_last_regenerate|i:1674657029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83695cd59d1d96e5826357c2305ed370a1a98eac', '172.105.247.100', 1674657030, '__ci_last_regenerate|i:1674657029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01b631f5f5ea1873cd076333dc043416dceec9e8', '172.105.247.100', 1674657030, '__ci_last_regenerate|i:1674657030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87129687931c22d124a031a33bfb4d4870d72db', '172.105.247.100', 1674657030, '__ci_last_regenerate|i:1674657030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4306266d7c56e004476d76bd86040bab1c4a2c2c', '172.105.247.100', 1674657030, '__ci_last_regenerate|i:1674657030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4110ea851cf30b84e203acda07684f7b50820b', '172.105.247.100', 1674657031, '__ci_last_regenerate|i:1674657031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('771bcbab658fc187ac06e0410387dad97f7bb5e6', '172.105.247.100', 1674657031, '__ci_last_regenerate|i:1674657031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3412341913a0fcfd93e86f15133659c59e8b2309', '172.105.247.100', 1674657031, '__ci_last_regenerate|i:1674657031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6faf2dea918a5a98d8b2eb03550f38d1554e28a4', '172.105.247.100', 1674661224, '__ci_last_regenerate|i:1674661224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8d8e6d73e85336bca80d59c739854b62c02204', '172.105.247.100', 1674661224, '__ci_last_regenerate|i:1674661224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af71acae985fb0bd2e4a40ac6e4af9abae4a97b1', '172.105.247.100', 1674661225, '__ci_last_regenerate|i:1674661225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cabb14d151ca6e4e48fc437cecf4e1ed21e9ed0', '172.105.247.100', 1674661225, '__ci_last_regenerate|i:1674661225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0de979efd188c20fb97e6c6068e2e1acd64e572', '172.105.247.100', 1674661225, '__ci_last_regenerate|i:1674661225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78527a18270b471471d1bd7c98b51204a9994053', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aaf5431548e8d851e4bf06012a362a26e8dcb7b', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23abf8fb2c1ffbcda4d837a62de54209287d958b', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf2cb7ea4f39084ce7580da98ef9f00c5bc202f', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf5674f9d6a6a3833b2d8404994f797e25a6b92', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3130454c85d637ba2d71e637c0277e55f7e33b', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd641e7f6b8c929ddc6cb1763c01d55bbb1a0c7e', '172.105.247.100', 1674661226, '__ci_last_regenerate|i:1674661226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda2bc3b4af640aff8abcdc29c135818fc7e0901', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd8166c909895c048b1b47aeaa2763425ebb045', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e215654d401e9e568db5de23e518a169e22c8501', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3212514e52769b325b49aedb4b0564ce129ff579', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83888541c4df9827245506fda787a43ee4010680', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9b86e825defbe599b8f10cadcbc39a259ca988', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9510281bd4a21dd8e44527d4308684662f29ac3', '172.105.247.100', 1674661227, '__ci_last_regenerate|i:1674661227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ec47a8958259247a505bbc87c442c7235a18b5', '172.105.247.100', 1674661228, '__ci_last_regenerate|i:1674661227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9028ed85736afa3785260198a1ab000fb9026d', '172.105.247.100', 1674661228, '__ci_last_regenerate|i:1674661228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264d507046ba4fbb7da4b1d60b2f9bf19046a8b7', '172.105.247.100', 1674661228, '__ci_last_regenerate|i:1674661228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f8f88ef4545c3a18657a7be79dc8b09b60a7b19', '172.105.247.100', 1674661228, '__ci_last_regenerate|i:1674661228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6573126b6caa3e4820a4c9a9d322b237163e9207', '172.105.247.100', 1674661228, '__ci_last_regenerate|i:1674661228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144aefa18e8d2d21a4b8528ea3ab704c98d9e448', '31.222.203.2', 1674662568, '__ci_last_regenerate|i:1674662568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3795a90323b668f4a61821cff27b1c933f2a43ce', '31.222.203.2', 1674662568, '__ci_last_regenerate|i:1674662568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a622825db5e4a8c380dd8d96b2d97446facff9c7', '31.222.203.2', 1674662568, '__ci_last_regenerate|i:1674662568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b38a42c9000d1cf377705146d2582dc9fce5f9f', '31.222.203.2', 1674662570, '__ci_last_regenerate|i:1674662570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446ef071027c6f114d0287f22291ea4a021b1ef1', '31.222.203.2', 1674662570, '__ci_last_regenerate|i:1674662570;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18922efdeb1fef8ba1ca5031e5985210654332f1', '31.222.203.2', 1674662570, '__ci_last_regenerate|i:1674662570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c21a874b2291c98f21db045a23ec48367c76f6', '31.222.203.2', 1674664461, '__ci_last_regenerate|i:1674664461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcc70965135aba66ebb2c57cf0504cbee9e274a', '31.222.203.2', 1674664461, '__ci_last_regenerate|i:1674664461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8217ea982cd680336e0b615887b8b142c4ceaa27', '31.222.203.2', 1674664461, '__ci_last_regenerate|i:1674664461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c600275c6012d7a054e778433c9d364e54e66b74', '31.222.203.2', 1674664461, '__ci_last_regenerate|i:1674664461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a9f896f4ca1dcb165a30b5373ac1b00444275e0', '31.222.203.2', 1674664461, '__ci_last_regenerate|i:1674664461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2494bfee096cf60c702c2736f0e3d97da4f8fef', '31.222.203.2', 1674664461, '__ci_last_regenerate|i:1674664461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85816c63db8a9e1ed08dfebbda7d9caa08a69587', '172.105.247.100', 1674666621, '__ci_last_regenerate|i:1674666621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff2dfbe9626eb0eec29c2452f3d2ecfbd98fa6d', '172.105.247.100', 1674666622, '__ci_last_regenerate|i:1674666622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad6f06bb4258711a2f5d4e10bb3836caf4b3b26', '172.105.247.100', 1674666622, '__ci_last_regenerate|i:1674666622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d976e3278b1888f3ce602504a1c6d325dddbbe5', '172.105.247.100', 1674666622, '__ci_last_regenerate|i:1674666622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7813907f78fb3897eb76ea35e5c69f1b25e30d65', '172.105.247.100', 1674666623, '__ci_last_regenerate|i:1674666623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b33ddedf9d0563c1104283e842a126d0262613', '172.105.247.100', 1674666623, '__ci_last_regenerate|i:1674666623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3769d5d8140610b534e8a7e2db6c1fcada02d31', '172.105.247.100', 1674666623, '__ci_last_regenerate|i:1674666623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d092fa9e5b9d12c9ada0eb2754085c96d2d259b5', '172.105.247.100', 1674666624, '__ci_last_regenerate|i:1674666623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6eb604dc1bd41acf4019fb633b656727967c83', '172.105.247.100', 1674666624, '__ci_last_regenerate|i:1674666624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b80d5905418dfa7424bc870f2bc15755635b798', '172.105.247.100', 1674666624, '__ci_last_regenerate|i:1674666624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597c2944f7f59485e49d536e9109263a796a8850', '172.105.247.100', 1674666624, '__ci_last_regenerate|i:1674666624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75cd7c6e0acd3f79c8ddde5a40021622d8042129', '172.105.247.100', 1674666624, '__ci_last_regenerate|i:1674666624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4dbb8835b81bf502f3dda4b322497884c42b58', '172.105.247.100', 1674666624, '__ci_last_regenerate|i:1674666624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26674a52b78a205f0ac53c3081e724afb25a423b', '172.105.247.100', 1674666625, '__ci_last_regenerate|i:1674666625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d68a4143b1632cb673e7085b9f4b0d85d55389b', '172.105.247.100', 1674666625, '__ci_last_regenerate|i:1674666625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd7ed446fc5da04eab5684384523e485307790d', '172.105.247.100', 1674666625, '__ci_last_regenerate|i:1674666625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1fa3cf0d388a319a9fd80018e6cf4122007475', '172.105.247.100', 1674666625, '__ci_last_regenerate|i:1674666625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f2ea5fd53213dc08933bf06e970f8a28202807', '172.105.247.100', 1674666625, '__ci_last_regenerate|i:1674666625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('030743ee6dd69c72e3d1f6add071029db175671b', '172.105.247.100', 1674666626, '__ci_last_regenerate|i:1674666626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ee7891cc3e9a04537638813b536b2e03032ff8', '172.105.247.100', 1674666626, '__ci_last_regenerate|i:1674666626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167265d04837d49d27ec0b7a25cc6078a5e35f86', '172.105.247.100', 1674666626, '__ci_last_regenerate|i:1674666626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fffc867c1e43b0d404d23dc2446ea97328189bf', '172.105.247.100', 1674666626, '__ci_last_regenerate|i:1674666626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd77a71e0f0be092bafd824f69dcb5edbaa9d4e', '172.105.247.100', 1674666627, '__ci_last_regenerate|i:1674666627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('424f3190b64dd7a6ac6f57d64bc52c3192172268', '172.105.247.100', 1674666627, '__ci_last_regenerate|i:1674666627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15c9ca0f7012b36d4cb11862d13bcbb3e8d7815', '31.222.203.2', 1674671629, '__ci_last_regenerate|i:1674671629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f57a9a9b4b1300abd62d5a9cfe81f1450cffc6e', '31.222.203.2', 1674671631, '__ci_last_regenerate|i:1674671631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a329899b995f87e132f85ddc4064e4e6f407a89c', '31.222.203.2', 1674671631, '__ci_last_regenerate|i:1674671631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88867b0e991a889d3c6f23b878988dfd93bbbd35', '31.222.203.2', 1674671631, '__ci_last_regenerate|i:1674671631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e240de64836e6aa62c2e41288ad8fdb46004cf15', '31.222.203.2', 1674671631, '__ci_last_regenerate|i:1674671631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('755506e4e5857f1b37fe6d4dfc6b75ff3a9d40ae', '31.222.203.2', 1674671631, '__ci_last_regenerate|i:1674671631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a888d8d133fce9f6c2c76ba691363096bf27721', '172.105.247.100', 1674672626, '__ci_last_regenerate|i:1674672626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7496c8d573b2b2ddc3284b3bfec99e2508f4bf4', '172.105.247.100', 1674672626, '__ci_last_regenerate|i:1674672626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de7fa612a09129a1e7dbe907dbc78fbd6f4c7a8', '172.105.247.100', 1674672627, '__ci_last_regenerate|i:1674672626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b743c220a41d850aa27e6fb8b3007327937b2f6', '172.105.247.100', 1674672627, '__ci_last_regenerate|i:1674672627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed443ee0d0e168000357a46740f7d09e5f1677b9', '172.105.247.100', 1674672627, '__ci_last_regenerate|i:1674672627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416d78cd9d1d903c9ce677e6ad961f9cdd7be33c', '172.105.247.100', 1674672627, '__ci_last_regenerate|i:1674672627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9be52c11e812f6a4f59c8aa341bae71289b8a1', '172.105.247.100', 1674672627, '__ci_last_regenerate|i:1674672627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b303944d67d688b835775f4d403da4a7262345', '172.105.247.100', 1674672628, '__ci_last_regenerate|i:1674672628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f84a073d3502585c9e7a0fc9a8c29f6c68d2de', '172.105.247.100', 1674672628, '__ci_last_regenerate|i:1674672628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bf161e307f87b6ee2c57766c357baec80bd47aa', '172.105.247.100', 1674672628, '__ci_last_regenerate|i:1674672628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7915e25e1445337290aecc205537da94f592b231', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533d6a942c4572622a72db901ffe62c2026df95e', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1bc94fd864029bd55007e69f47d6c061e36dd94', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a61ce8ea17743cab774ad550316c3ca15b56b66', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbc9054a3bfd8ce254b13c175f49ff922611c21', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f56261fef0e78060c3d206b2901df4153496fe', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('207cc000cdb059ea6cd1c6ead650dead6b46d5e1', '172.105.247.100', 1674672629, '__ci_last_regenerate|i:1674672629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b760914f32864e985d0150a4ba646f0c66717c', '172.105.247.100', 1674672630, '__ci_last_regenerate|i:1674672629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b967e19f00959a03e28737ad420a5eed888db9e9', '172.105.247.100', 1674672630, '__ci_last_regenerate|i:1674672630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c102848b16e5d9136f126360f23e4ac4958947f', '172.105.247.100', 1674672630, '__ci_last_regenerate|i:1674672630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df56ecf5cba3171bfb089d261f6d98235e49cbc', '172.105.247.100', 1674672630, '__ci_last_regenerate|i:1674672630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4028bafa7429a163cb6b56fd21d885dd528c1bbf', '172.105.247.100', 1674672631, '__ci_last_regenerate|i:1674672631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5363e2a664d9b82b25eea2027adcc31fc125d85', '172.105.247.100', 1674672631, '__ci_last_regenerate|i:1674672631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a910abdded7ca3785f5901456d602865bf3897', '172.105.247.100', 1674672631, '__ci_last_regenerate|i:1674672631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e45900f6f173e5447926a6bdd6cf447345bc1ee', '31.222.203.2', 1674673511, '__ci_last_regenerate|i:1674673511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1c09d48852531d3631f35b762e347e908a9ead', '31.222.203.2', 1674673511, '__ci_last_regenerate|i:1674673511;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d80bbc1671573a52afb2f1ed80ca3dcd998ca58', '31.222.203.2', 1674673511, '__ci_last_regenerate|i:1674673511;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0f70bed3a9e547f29fc601c861fade2dd6f597', '31.222.203.2', 1674673513, '__ci_last_regenerate|i:1674673513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07e6f70ef3447c9a90ec846796af110c5122e17', '31.222.203.2', 1674673513, '__ci_last_regenerate|i:1674673513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29c3567375370a4c5445be015f94f8e83e20143a', '31.222.203.2', 1674673513, '__ci_last_regenerate|i:1674673513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b81ee8f6c989e105a4bf02bc02662e61ce76c3', '172.105.247.100', 1674677424, '__ci_last_regenerate|i:1674677424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181e0cd98873cfacf63c0983e82caac4b6b4be68', '172.105.247.100', 1674677424, '__ci_last_regenerate|i:1674677424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07fb283eb68785dc72579f515706b1659ce077c1', '172.105.247.100', 1674677425, '__ci_last_regenerate|i:1674677425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64342a5ad03249e2a8e3648474287daefed7a84', '172.105.247.100', 1674677425, '__ci_last_regenerate|i:1674677425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2370f2b775ca2a3e84b137b8d8f1cefadb5b793', '172.105.247.100', 1674677425, '__ci_last_regenerate|i:1674677425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c596f101b5c7f7f9aacc6e20f0e3c7246b5dfb6f', '172.105.247.100', 1674677425, '__ci_last_regenerate|i:1674677425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489cb1f9eaa5e7d367093c326f20b131e4a9cf60', '172.105.247.100', 1674677426, '__ci_last_regenerate|i:1674677426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd8d85f114632ece9317604153326ea0a433cb29', '172.105.247.100', 1674677426, '__ci_last_regenerate|i:1674677426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600c866b4603b66dc207a3ac3b3b3dde5df35337', '172.105.247.100', 1674677426, '__ci_last_regenerate|i:1674677426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9ffe6e4b4d0543a1fe8e8d7e4038b8bc025c50', '172.105.247.100', 1674677426, '__ci_last_regenerate|i:1674677426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91ffcc35e99e4baaac2e42f2445f65ec73b01b5', '172.105.247.100', 1674677427, '__ci_last_regenerate|i:1674677427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63fa6c751c02cec92f7996bdad0e5d01e358062', '172.105.247.100', 1674677427, '__ci_last_regenerate|i:1674677427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9538b47d8430de072e99b01947f84622c8b77a67', '172.105.247.100', 1674677427, '__ci_last_regenerate|i:1674677427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('683159f583928c63504d6608c52f2970901456ed', '172.105.247.100', 1674677427, '__ci_last_regenerate|i:1674677427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86aaa4238fe9bcfacedf87cdd2eb6f4ee8bb5415', '172.105.247.100', 1674677427, '__ci_last_regenerate|i:1674677427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95051a8c61140caaa364aadc6526c8d2ee997a1', '172.105.247.100', 1674677428, '__ci_last_regenerate|i:1674677428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487cf2f617e6513d18f2279da29b6383e1b6c0be', '172.105.247.100', 1674677428, '__ci_last_regenerate|i:1674677428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79467077b08abaa71871bb8d3c537ce2d7076943', '172.105.247.100', 1674677428, '__ci_last_regenerate|i:1674677428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae0736387df7d35d173877f266b880dea1a7a1cf', '172.105.247.100', 1674677428, '__ci_last_regenerate|i:1674677428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d654866cba07b2ed5b2ef8c2677ca1527d8322ad', '172.105.247.100', 1674677429, '__ci_last_regenerate|i:1674677429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46eb5c7611f38336eab6af760c6b8f84900b0b1d', '172.105.247.100', 1674677429, '__ci_last_regenerate|i:1674677429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3db5ef31aee3b1bf1ecd010f25c8c792335266', '172.105.247.100', 1674677429, '__ci_last_regenerate|i:1674677429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d360687a74ad376318949247c0a9d907be05fc3', '172.105.247.100', 1674677430, '__ci_last_regenerate|i:1674677430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9f21209440467ba7a9021e2964036619bcbd2f', '172.105.247.100', 1674677430, '__ci_last_regenerate|i:1674677430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b075e6943276357faecf4e81d99d269731dd58d', '31.222.203.2', 1674677731, '__ci_last_regenerate|i:1674677731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342dcd8d5898a6b55dd248ab13b1f88ba61f5d33', '31.222.203.2', 1674677731, '__ci_last_regenerate|i:1674677731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69873d3854d51e354d8c3e4e7decb4f7c86eda7', '31.222.203.2', 1674677731, '__ci_last_regenerate|i:1674677731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39db966bae89c0ba7b3f2a66e1ee4adbb6cbda79', '31.222.203.2', 1674677733, '__ci_last_regenerate|i:1674677733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0321cd5e0774cc61710aa71a08547d7df4383da', '31.222.203.2', 1674677733, '__ci_last_regenerate|i:1674677733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575bae2759b3dc17e3e7e5c7662718b2597518ba', '31.222.203.2', 1674677733, '__ci_last_regenerate|i:1674677733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('929eadcc93c72c05f4db6b89fa071ffd6b9e54b8', '51.255.62.4', 1674681863, '__ci_last_regenerate|i:1674681863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26e4e5e777cad71c203c9fa06cf624aed2338e6a', '51.255.62.1', 1674681863, '__ci_last_regenerate|i:1674681863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c31b50c7b0bc438cdea9f059f8e4003cbc88ba', '51.255.62.2', 1674681865, '__ci_last_regenerate|i:1674681865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dd8c798ecf02b1621859585f7ca4da0ababf0b1', '51.255.62.4', 1674681865, '__ci_last_regenerate|i:1674681865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6bdc8e1d41626bf04130aa456df1f0bea3ff90', '31.222.203.2', 1674682370, '__ci_last_regenerate|i:1674682370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51858a58d4df523653f21a7fb270a0f9c21ad89', '31.222.203.2', 1674682370, '__ci_last_regenerate|i:1674682370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854010fa69ec2db2118bff63b346c3a4ba7574ca', '31.222.203.2', 1674682370, '__ci_last_regenerate|i:1674682370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea293afea625d4842738ee3c0235cec2d373b7ed', '31.222.203.2', 1674682370, '__ci_last_regenerate|i:1674682370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70407d0903d8cb43dfe8dc22d116c3ccad77fdf7', '31.222.203.2', 1674682370, '__ci_last_regenerate|i:1674682370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d276f5b6deec43b4f0249dc91b163a4984ff4a6d', '31.222.203.2', 1674682370, '__ci_last_regenerate|i:1674682370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f38d65e76fe7932ee6378620fa98aac3d82912be', '172.105.247.100', 1674682823, '__ci_last_regenerate|i:1674682823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82d2eb3f8207f8244f093466de0295ee27e0c8b', '172.105.247.100', 1674682823, '__ci_last_regenerate|i:1674682823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57f08649398876ac3ab9b3337a1ab3be8e5e153', '172.105.247.100', 1674682823, '__ci_last_regenerate|i:1674682823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0030605e59c35183df763a451a50ecced34ac1e', '172.105.247.100', 1674682824, '__ci_last_regenerate|i:1674682824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d97cb2a70ba76164502c2dae05b87381d9be7429', '172.105.247.100', 1674682824, '__ci_last_regenerate|i:1674682824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2da6de9decf35e15b8c924ed7a35882ea0fc9b', '172.105.247.100', 1674682824, '__ci_last_regenerate|i:1674682824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bfb1d1a215cb5b594b35013b90d283aec281a48', '172.105.247.100', 1674682824, '__ci_last_regenerate|i:1674682824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d202fcded738e24cde7687f77957e92b052c2e', '172.105.247.100', 1674682825, '__ci_last_regenerate|i:1674682825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe0932cb6a9a7660893130463c1eaf59e2699d9', '172.105.247.100', 1674682825, '__ci_last_regenerate|i:1674682825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28085b2bc771c7c183a69c3f1380d038a09fb405', '172.105.247.100', 1674682825, '__ci_last_regenerate|i:1674682825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f4299b6ea3299bc747c013f08b4725048f04b6', '172.105.247.100', 1674682825, '__ci_last_regenerate|i:1674682825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3dc16e66d14890d6467db74c7cb6b213b95423', '172.105.247.100', 1674682825, '__ci_last_regenerate|i:1674682825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09678f8deae8afeceb1021a494d0e8f8f8fd5bf3', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9d3c4a3711f25bd9408a0f4d2ae3a2a9e7d5bf6', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5c306b5927d8c348a9ab307b964d0adfe7cbc6', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('293602beec96029a7ddabfcaaf3bd377c31e07ad', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550f50bc4aa36fabd767e039b3663e0a7e4a031e', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f9c1fd39b10055ccf77dd4e0ce475b23f74e4c', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4a217f3d7be81b540860e90266301fa4a4c4a6', '172.105.247.100', 1674682826, '__ci_last_regenerate|i:1674682826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5a6807a1c3f121a4f3615658e91a93e525ee8b', '172.105.247.100', 1674682827, '__ci_last_regenerate|i:1674682827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfccc715446e7fad2911cb14c0930b0d74bf8e64', '172.105.247.100', 1674682827, '__ci_last_regenerate|i:1674682827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be309bfad7310293dfea072288ebb4e84120003', '172.105.247.100', 1674682827, '__ci_last_regenerate|i:1674682827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bea1e1eda5d9a92fb14c622da55131c274a9bf6', '172.105.247.100', 1674682828, '__ci_last_regenerate|i:1674682828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c177986b876ec4b1b10861f956cf35841d7c7612', '172.105.247.100', 1674682828, '__ci_last_regenerate|i:1674682828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e1a26078a8987b3a7672c94e2590e8ea0f8cd9', '31.222.203.2', 1674684257, '__ci_last_regenerate|i:1674684257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddab78ac7abf58af8fe10b04d7df1811505ee1ee', '31.222.203.2', 1674684257, '__ci_last_regenerate|i:1674684257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92acaef937c192f8f132eda7a5bbe3f86da4265', '31.222.203.2', 1674684257, '__ci_last_regenerate|i:1674684257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3568775e9152aac50364e8610178a50088934aa6', '31.222.203.2', 1674684259, '__ci_last_regenerate|i:1674684259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d553a66dd00951dc584a1e39e791210fee893ed2', '31.222.203.2', 1674684259, '__ci_last_regenerate|i:1674684259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f88d2e4a976c129a3e8115cbdc23e33b918a9779', '31.222.203.2', 1674684259, '__ci_last_regenerate|i:1674684259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cc299d6d0100684a9416997ddfa14538d39844', '87.236.176.85', 1674684498, '__ci_last_regenerate|i:1674684498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4fca7d77e98aecd2fed037c469ae5e99e4ce81', '87.236.176.85', 1674684509, '__ci_last_regenerate|i:1674684503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1503aabcf7b80b4069864e5d98c95b4e8db9f60', '188.165.87.108', 1674687503, '__ci_last_regenerate|i:1674687503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a6d61e02e94dbf9d8b500c98f20cb41b725ae9', '172.105.247.100', 1674688222, '__ci_last_regenerate|i:1674688222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f205595677d2bd0f39f1ba15cc664aa338d413dd', '172.105.247.100', 1674688223, '__ci_last_regenerate|i:1674688223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c89e95b11db247cf6639331ebe759ad93f42e6', '172.105.247.100', 1674688223, '__ci_last_regenerate|i:1674688223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e3db6c919fee6775d73d3f1a05d3536a5cfb07', '172.105.247.100', 1674688223, '__ci_last_regenerate|i:1674688223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16cf4a0ebd0bb6a02322bc1715e644c70f20e71e', '172.105.247.100', 1674688224, '__ci_last_regenerate|i:1674688224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de008f94be976d6f9d82b362c37b066937fcdb22', '172.105.247.100', 1674688224, '__ci_last_regenerate|i:1674688224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d39038fb07f8bd9878702d51da520afc2b5277e', '172.105.247.100', 1674688224, '__ci_last_regenerate|i:1674688224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0bedcc8fb044a23dac10efe537e88e53c489422', '172.105.247.100', 1674688224, '__ci_last_regenerate|i:1674688224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9e66f3186598313b3e4164a5b2656a445d2eb6', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('139991cd66c34d0b56eec9ee44cb99e4c9576904', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a6c0efa8a775e440e43b4fd36e97566f3570af', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d23d66fd43f5e66033ee45a622e9618af0e0a026', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f21780dc3eda9daf6cdfd93a8aa26316b0bbe3a', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b86ee9e66a9da380680b3158377ed60e7206cf8', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c1ce035dc5931eec85696eea6343afb5330b956', '172.105.247.100', 1674688225, '__ci_last_regenerate|i:1674688225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5963a1ca93bc0b8b9d114b3889126d6603815f', '172.105.247.100', 1674688226, '__ci_last_regenerate|i:1674688226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121116b0dbbbd6a4f7a5a94acc9ffd0b0613e1cd', '172.105.247.100', 1674688226, '__ci_last_regenerate|i:1674688226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1072e535b5e3cb4f5568eb40c9a654fc3ad3d89e', '172.105.247.100', 1674688226, '__ci_last_regenerate|i:1674688226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b58763fba4aff6d54c399c0145bd1ce98ab4e1a', '172.105.247.100', 1674688226, '__ci_last_regenerate|i:1674688226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6e2cd41d523a7813095a4a49ce9e365e4a8612', '172.105.247.100', 1674688227, '__ci_last_regenerate|i:1674688226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e58731fda47be790ebc8600d3fe57ca770f1a4c9', '172.105.247.100', 1674688227, '__ci_last_regenerate|i:1674688227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91727f860c59563d97d8673efba9bbce2f90909e', '172.105.247.100', 1674688227, '__ci_last_regenerate|i:1674688227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8000d66e4f66a8912369bd9adcf813bcc4d3f4d', '172.105.247.100', 1674688227, '__ci_last_regenerate|i:1674688227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5800eab64becbaa7d9a1e2ae38473398e2088dde', '172.105.247.100', 1674688228, '__ci_last_regenerate|i:1674688228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bb953f28ae7a2d8e28c5d50732d5548bbdac4e', '51.254.49.104', 1674690151, '__ci_last_regenerate|i:1674690151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9306d9a8ad8b6ca812ff59c94787a200288ccb0', '51.254.49.107', 1674690151, '__ci_last_regenerate|i:1674690151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442ad74137e96e8a75bd91f2fa792a2086ad4381', '188.165.87.105', 1674691146, '__ci_last_regenerate|i:1674691146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('137288d46a827b1ca47a29a129a484ea56cad0d4', '172.105.247.100', 1674693023, '__ci_last_regenerate|i:1674693023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ac80fc08d6b9c0d321924f939baa9d20c12369', '172.105.247.100', 1674693024, '__ci_last_regenerate|i:1674693024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb78b2e3af77586a605529efe1f2265d32ea83aa', '172.105.247.100', 1674693025, '__ci_last_regenerate|i:1674693025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('931d543c685a4676d14a549f6e0b70e074eeee0a', '172.105.247.100', 1674693025, '__ci_last_regenerate|i:1674693025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33b25dc40381163ae07ab5185f28405fa0a4a46', '172.105.247.100', 1674693025, '__ci_last_regenerate|i:1674693025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f5d4c4f41634057bcbd89ee8a384b6a1d11489', '172.105.247.100', 1674693025, '__ci_last_regenerate|i:1674693025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01b777bf877a5fc2a060f728c283cfa247e7115', '172.105.247.100', 1674693026, '__ci_last_regenerate|i:1674693026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3540cb1eeefaf7569337534c4ede45b468b0a7', '172.105.247.100', 1674693026, '__ci_last_regenerate|i:1674693026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e02ddd6f11fdec2e03f9892b6de72f76783bc6', '172.105.247.100', 1674693026, '__ci_last_regenerate|i:1674693026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e71a1cb6ca48dfa0e66dbd5e76b9bf27e2eb70', '172.105.247.100', 1674693026, '__ci_last_regenerate|i:1674693026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2916c616c9a847aab14664c99cdb7a885b6e7bd4', '172.105.247.100', 1674693026, '__ci_last_regenerate|i:1674693026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a70791cab10d7415939864f04a66a37b13c266', '172.105.247.100', 1674693026, '__ci_last_regenerate|i:1674693026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99856a8cf3218e34ea7f4013f18ed99fb058a770', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbe1dbd47ff1ea98cd1bf33d1cab5817e5e2fea', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600769f1d5969e70a5cb483f37000a64010a3aec', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8910772ff383de5a524db609e7a1c16e1e7e3738', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed44cc12ab117f6a587f98566d4e1013c0a1ed9', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8b13cb895a94716c767850e806321710df4111', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acae3d668f4aa2b3918e50135741cd5fccd43160', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a28b9afca2189b7dacbc622fd637d155494778', '172.105.247.100', 1674693027, '__ci_last_regenerate|i:1674693027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722582bca1052dd123f96abf41f7397e936711d6', '172.105.247.100', 1674693028, '__ci_last_regenerate|i:1674693028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14565a22f026e6e79e71bcc13ce798ff1de379d5', '172.105.247.100', 1674693028, '__ci_last_regenerate|i:1674693028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b09ae3c382d7376e8bd0231b2981be890e24cee', '172.105.247.100', 1674693028, '__ci_last_regenerate|i:1674693028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eecf9deb106c02e7f6e0f96447f2bc6ba89dede', '172.105.247.100', 1674693029, '__ci_last_regenerate|i:1674693029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651ec15345011550557c5c2cd137369aa1b90601', '31.222.203.2', 1674693166, '__ci_last_regenerate|i:1674693166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78e3753aa3408caf9d482e2dd1cb073aab4eae7', '31.222.203.2', 1674693168, '__ci_last_regenerate|i:1674693168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd03be402d21cac6655138f335815d615163a94', '31.222.203.2', 1674693168, '__ci_last_regenerate|i:1674693168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f222daf9ed619996836bd01a282d56a0773428', '31.222.203.2', 1674693168, '__ci_last_regenerate|i:1674693168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178d8cad0fc3c707484d54ae8bab244405e025cb', '31.222.203.2', 1674693168, '__ci_last_regenerate|i:1674693168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deeaaec89252504faafe60aa2a323f88f8a31ea0', '31.222.203.2', 1674693168, '__ci_last_regenerate|i:1674693168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a56a1ecda0fc50c164452269fdac12b7c0843e6', '31.222.203.2', 1674695103, '__ci_last_regenerate|i:1674695103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72978654d6f5a771d254a38f0c4b425aa26f845a', '172.105.247.100', 1674697824, '__ci_last_regenerate|i:1674697824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9188d44320c18bd6132c0a8ea55c89bef144a13', '172.105.247.100', 1674697824, '__ci_last_regenerate|i:1674697824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846b4f4bbc4e3f3636ba4868fdba8515333e78df', '172.105.247.100', 1674697825, '__ci_last_regenerate|i:1674697825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f39c5a46499a5ca314fba74bceec5a9f417861', '172.105.247.100', 1674697825, '__ci_last_regenerate|i:1674697825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c28ba6d541151f53a4ec45f6016f36837c3b766d', '172.105.247.100', 1674697825, '__ci_last_regenerate|i:1674697825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c476c58682f7ae4e8318cc9dc7e9c8615133e542', '172.105.247.100', 1674697825, '__ci_last_regenerate|i:1674697825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d61ba06e430d53cac6c5f09328ccc03ee3137ae', '172.105.247.100', 1674697825, '__ci_last_regenerate|i:1674697825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2fdd2210dae7cb0f8d4999b44228c44d6e8b5ac', '172.105.247.100', 1674697825, '__ci_last_regenerate|i:1674697825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec7d5d04643f2d58796486cd5dafae7a44e8570', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('886e51b33ebe53a43c968eddb9af8a5b497a407c', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11301faea8ebf9d4e6aee1d973a19e74117e0f1', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a053fe43048f9b1cd228143fbb69f19eff578f09', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59aeb35df45e63a3953017d5d1cff91383002ac', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac945afc7511a66094fe42401afeed204165e44b', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0829a61fc7324e23769c3de79c5421d1cfb4e966', '172.105.247.100', 1674697826, '__ci_last_regenerate|i:1674697826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63a28628f53d9187db38a737208453c3734d6173', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4a24dd20b539cbbbe2d0fd088257ce15b03795', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85f97751166a28729f37cde9d5a0e13a993de24', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f336ac92b8cb551aae170dffc3d33df1c36b4a', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb082d3799394d4cdee17af5a5971e8490a15b2', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e2112105ec1c18167c72c852e0e5ac2566da32', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52da339ddab5c65bc88dc147dc6f530049ae635a', '172.105.247.100', 1674697827, '__ci_last_regenerate|i:1674697827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cddd4fa65a8727959ae9c8a3be3861b9bf69f9a', '172.105.247.100', 1674697828, '__ci_last_regenerate|i:1674697827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b4c1c74719ecf3e305572bdcf4dd1da54e9a1d', '172.105.247.100', 1674697828, '__ci_last_regenerate|i:1674697828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57c7a9e679d7f5206b7e0461a684a07842b9cff3', '31.222.203.2', 1674702238, '__ci_last_regenerate|i:1674702238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f77dad2e26daa3a2dacbd9638e7b9194f3b3ae', '31.222.203.2', 1674702238, '__ci_last_regenerate|i:1674702238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97f0baa59ec1c94bd2d58ab9a2d44154d342b10', '31.222.203.2', 1674702238, '__ci_last_regenerate|i:1674702238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('778a2cd0097487e1b734fc77a6ce7023dbf97d4b', '31.222.203.2', 1674702238, '__ci_last_regenerate|i:1674702238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bab51c8272a89003e0b5a48c3e6d2c0c0ddf8b3', '31.222.203.2', 1674702238, '__ci_last_regenerate|i:1674702238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ff360400ba815a7b274da5e022e743d258091f', '31.222.203.2', 1674702238, '__ci_last_regenerate|i:1674702238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564784f8654f5f4c2b409a11139a745e59f7e42e', '172.105.247.100', 1674702624, '__ci_last_regenerate|i:1674702624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25d44aada1e7634f6dfb2c15f61c7a1ec4e944a', '172.105.247.100', 1674702625, '__ci_last_regenerate|i:1674702625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('886738401fbc20baadeea451fa4d89570d13f279', '172.105.247.100', 1674702625, '__ci_last_regenerate|i:1674702625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a140daac843879f4b1858e26c4425a010c58cdc', '172.105.247.100', 1674702625, '__ci_last_regenerate|i:1674702625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d068fd55f78b1810d961b7bb037a962f53886e7a', '172.105.247.100', 1674702625, '__ci_last_regenerate|i:1674702625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1109534505a39db4ae0eece84fdae801ca89b9', '172.105.247.100', 1674702625, '__ci_last_regenerate|i:1674702625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710cb8d6bb00a4ff57041e9c459ce7645c222a0a', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb3288d224086eb7162e8f79955a022d9b8716f', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a88fe976fa25afd62fdac0b09a824b66b11fcd9c', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2449c76bfb908e5e32d23143688b1f0f21cdb92e', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f66450ece4a3b3c62bc6b0482ea39c3ebe30e96', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936adca60b0241610dac1df072b926667f32bb02', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0d329793e03bebc98aad7f23a0b3e0be7e979c', '172.105.247.100', 1674702626, '__ci_last_regenerate|i:1674702626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3212de49416279904aae3f46ff2cce9e7e269cb1', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21be53d4ff78e83710218d69fdf89238fe86c295', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efa21bd111c62da90a2d4a9348874ce4b3fa876', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092e2cadfc12207615fb625107e2b3af68c71f37', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf0d8db234a2f0470f43b24d4054a7b5157ff29', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('549da7425654c3d23c02419cf42769e4a031f182', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ccceb2bec8125f77658a891755efa50f02a5b0', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a3a7cee5889d8106899d375bf3449a87452ce5', '172.105.247.100', 1674702627, '__ci_last_regenerate|i:1674702627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751a1f7307b36ef61462c90e1ab9a0ca8f76557e', '172.105.247.100', 1674702628, '__ci_last_regenerate|i:1674702628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5932112875982e6585378d8290c32463020f9d', '172.105.247.100', 1674702628, '__ci_last_regenerate|i:1674702628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8e6c9dab14da0dcba18b39ea566dc7887ba248', '172.105.247.100', 1674702628, '__ci_last_regenerate|i:1674702628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ca962880530fec6b1610a28ba6818b90fec142', '172.105.247.100', 1674708023, '__ci_last_regenerate|i:1674708023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9065014a906ff2fa66a69d00efa5507761ec7df7', '172.105.247.100', 1674708023, '__ci_last_regenerate|i:1674708023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('647e07e4efb8c005d90daf0fe45d8e9367ab0f13', '172.105.247.100', 1674708023, '__ci_last_regenerate|i:1674708023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb5ae23d57b21cc88d160040dc25704003c1689c', '172.105.247.100', 1674708023, '__ci_last_regenerate|i:1674708023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d2c8339293d07a7137daa41162f03cae7a9dfee', '172.105.247.100', 1674708023, '__ci_last_regenerate|i:1674708023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1559f4f88cf41de8a3a02e0f5e8aa1ff412515f1', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58590cb6e12a169ad1876ed0dfb1fa96fd414c4c', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c20398b3653bc02ff07553b702d97e2b40defe1', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edda1907642434afdc46bb95eb68d09610295715', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd80410ca5568d822e7297ae08dc0e9675a8434', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd6ca696a59d9d3e91e883ffa5c0d5a8ec0b3ac', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1752cae618cd6cad5b911d671ed0a1303c3635', '172.105.247.100', 1674708024, '__ci_last_regenerate|i:1674708024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9152e184ad8db7ecb5fa5d99b2acb015c4c79ce', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('653041c4ad2498e658900582c85e898019e34ae6', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7b3b57c4479f287e04f5425020e8c0ca4b2e9c', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e882aa7e80341a61ff441ffb7bc8d5a276ad6a9b', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2288ec7c14d610f23a199cbe6dde2121155365bc', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30047badfcd27976dce2764994a5d92fdb6cbae4', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a676d8925a7e551a8bd3b7a10845df70640682', '172.105.247.100', 1674708025, '__ci_last_regenerate|i:1674708025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6576b448fccd2450babba7c0c9c1bc4ba023cd2', '172.105.247.100', 1674708026, '__ci_last_regenerate|i:1674708026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07bb8d8a0ab0d168cf36a55c55202d6cf2611011', '172.105.247.100', 1674708026, '__ci_last_regenerate|i:1674708026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5f57244e778ef4b1ac0b5f35a96e653f732cec', '172.105.247.100', 1674708026, '__ci_last_regenerate|i:1674708026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('933bc911200c0239d9bde5e80cd5f887f73e6293', '172.105.247.100', 1674708026, '__ci_last_regenerate|i:1674708026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309af17e83a654a6e79f124613e224d534e112eb', '172.105.247.100', 1674708027, '__ci_last_regenerate|i:1674708026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ffb09fb810eeb862a0e03c3ac6ea493a1402b4f', '31.222.203.2', 1674709370, '__ci_last_regenerate|i:1674709370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0b31aad74600c368be2dd4715849975cc424be', '31.222.203.2', 1674709370, '__ci_last_regenerate|i:1674709370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612da0cdacd5e40a86b6c9c554ad7d977c5a5d7c', '31.222.203.2', 1674709370, '__ci_last_regenerate|i:1674709370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a68d10fbfab8153a28aa3f591902cd859291de86', '31.222.203.2', 1674709370, '__ci_last_regenerate|i:1674709370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f831f14ae524621862d72e56bcd814cdf389f092', '31.222.203.2', 1674709370, '__ci_last_regenerate|i:1674709370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c71301ca66b7e725ebc63273f61dc97f5f126ad', '31.222.203.2', 1674709370, '__ci_last_regenerate|i:1674709370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1e5622eb02f2bc86aee7ebad6437dc93a82964', '31.222.203.2', 1674711302, '__ci_last_regenerate|i:1674711302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2faa2c363b0036053a7e97e41eeeb496a4fb6537', '37.111.219.243', 1674712402, '__ci_last_regenerate|i:1674712402;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674712394;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c8059ea9b8e332ffcecbecbbb391528563e8bf', '37.111.219.243', 1674715629, '__ci_last_regenerate|i:1674715629;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674715611;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302dad040b13e7c40c0e604d59d02836212bdf31', '172.105.247.100', 1674713423, '__ci_last_regenerate|i:1674713423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942b474003a2aa0f585707c32e0be72ca7633101', '172.105.247.100', 1674713424, '__ci_last_regenerate|i:1674713424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6a04c1f6419b4fba2574d9a2bd32a3c6991bd3', '172.105.247.100', 1674713426, '__ci_last_regenerate|i:1674713426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4422edc360bff7fca89eec45383fb50cbf24a1', '172.105.247.100', 1674713426, '__ci_last_regenerate|i:1674713426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354501cb4646559111bcaa2c67f8c41827b1378e', '172.105.247.100', 1674713426, '__ci_last_regenerate|i:1674713426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f4a470b283b0ed44ebfed7e6c47f7dd06bd931', '172.105.247.100', 1674713426, '__ci_last_regenerate|i:1674713426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31682214298f686c95306e38292eb7558890848f', '172.105.247.100', 1674713426, '__ci_last_regenerate|i:1674713426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f45ef05fb4db80af7d6dd8d49debeaca508821', '172.105.247.100', 1674713426, '__ci_last_regenerate|i:1674713426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55999aa02f6b7390d1e63264ed55106cfe1b49f2', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('475fee4a95ea6e0171330788497778d2adf692d8', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9675b6d0b40851df5fe15de3d0fedbee8500008', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b92a58e9f9aeefb90f9054d018e48a15f1107f4', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9afa1e537da62e90a09237d8071ef2315cc41a', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eae3be571cbe2650206f2cd84a97b6ed90cae43', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2e3910729f9c7548d0563418ee4f40718b54fb8', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e797eae6c56682a710314e5956050d7442b42def', '172.105.247.100', 1674713427, '__ci_last_regenerate|i:1674713427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783f087f376c9d5ebdf48894c209c767825b0f61', '172.105.247.100', 1674713428, '__ci_last_regenerate|i:1674713428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1fc713f36ac16bf623b249d5fa9f54c9432d88', '172.105.247.100', 1674713428, '__ci_last_regenerate|i:1674713428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07488cf3f6100490ad818e54aa604ededfbc9160', '172.105.247.100', 1674713428, '__ci_last_regenerate|i:1674713428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddf8e5fe7803900f7cd44a610ca6a6bc21d2fc1', '172.105.247.100', 1674713428, '__ci_last_regenerate|i:1674713428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756a58d6db094d63e14bfee60372f7c1db92bba7', '172.105.247.100', 1674713428, '__ci_last_regenerate|i:1674713428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee4ca0343cdf6d2763709e550f4ecf6c7970727', '172.105.247.100', 1674713428, '__ci_last_regenerate|i:1674713428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b22c23d8f0c859c82df943fbbf893cabf605f4fa', '172.105.247.100', 1674713429, '__ci_last_regenerate|i:1674713428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3becd460c00dc2f335fbd6596ea364fbcd444ffe', '172.105.247.100', 1674713429, '__ci_last_regenerate|i:1674713429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c4280ab5c45a15d54331dc72988c120256e785', '13.40.2.237', 1674715176, '__ci_last_regenerate|i:1674715176;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14480f68a9cfca8b25ea87770fe84973982a796', '13.40.2.237', 1674715177, '__ci_last_regenerate|i:1674715177;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc6d1adb2c3fff99fb29116023682e4f3bebe7c', '13.40.2.237', 1674715178, '__ci_last_regenerate|i:1674715178;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26190328b84b6c7fba71996495e85945032e3d85', '13.40.2.237', 1674715179, '__ci_last_regenerate|i:1674715179;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('771cf118e33ef7641ccfe38d3c39ac7a8497452c', '37.111.219.243', 1674717769, '__ci_last_regenerate|i:1674717769;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674717750;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c802af847fa4fbbbfce50fb9325f72c9293f5015', '116.204.230.26', 1674717120, '__ci_last_regenerate|i:1674717114;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674561699\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e699cf05b560a2cd191597e4c6bd3d6df5103c7', '37.111.219.243', 1674718133, '__ci_last_regenerate|i:1674718133;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674718062;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d6e4d40600eeba7087d360bf89571b890e43ba', '37.111.219.243', 1674719595, '__ci_last_regenerate|i:1674719595;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674719587;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5a8883e827773335e2a7768fe36f26c2925ba6', '172.105.247.100', 1674718822, '__ci_last_regenerate|i:1674718822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21447c8c7b67172a3586be973fbc2cab228ee4f1', '172.105.247.100', 1674718822, '__ci_last_regenerate|i:1674718822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e6a93e8f07bf4410d6fa49cc4417ed41c0dd3e', '172.105.247.100', 1674718822, '__ci_last_regenerate|i:1674718822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7ca7d876c40c944aac06f1ff166e983a9159fa', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f87f2ef1d57cf3314d3436c7bfd9e8f29732fe', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67ff6ab1f6f000662fbbfbcf5df123b3124b413', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77618165c3272e378e95c5db652c8c240ee7e6be', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a237e69d3afe6664b318d43de21d457223b0ba', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42dd1d970828c1260a08f3afdf44a1110ff4b19f', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005e30b12ee6b5a0400c7e629803e3dd5d45dc79', '172.105.247.100', 1674718823, '__ci_last_regenerate|i:1674718823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1b35fe1c70ccbc8372fcad289d792eaba242ef', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c93004933b380d555e0ebb340e6d78e5dd38a6', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ef0969129f3561e88706e202398c49f05ae80e', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb7deaac218513366ea046b916d1cc68cffe144', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdf5afcabcba04a30ec0469744ead0cc0154fc09', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb4794bcc24589a33d1f9bcb7c7fef371683f06', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82114349e0bd85fb9fa5e91d0999e85d4e1f8822', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28684b56e6960e56c92012f4bef57b826f3358c0', '172.105.247.100', 1674718824, '__ci_last_regenerate|i:1674718824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f86cb97a98ec67c65cacf4784339af363c821c5', '172.105.247.100', 1674718825, '__ci_last_regenerate|i:1674718825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af632bf424480342c967994ff35a12948198f3eb', '172.105.247.100', 1674718825, '__ci_last_regenerate|i:1674718825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8045f948bf3ffd575d517fa841f0cda55508214e', '172.105.247.100', 1674718825, '__ci_last_regenerate|i:1674718825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed32006f26520adeacc087406999be6a3ce18a8', '172.105.247.100', 1674718825, '__ci_last_regenerate|i:1674718825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66382a6ed5582cfb962809656264082fcad17c74', '172.105.247.100', 1674718825, '__ci_last_regenerate|i:1674718825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995eca07a1bb99e50c6bf30498ef6cb7c4c65315', '172.105.247.100', 1674718826, '__ci_last_regenerate|i:1674718826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03c70b773af894758a01a2d714df6fc3c39bb7c', '37.111.219.243', 1674721546, '__ci_last_regenerate|i:1674721546;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674719596;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f674986cd9cb19fdd298d5cad1bf1bc6c1c36324', '31.222.203.2', 1674720186, '__ci_last_regenerate|i:1674720186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36841f963b2af4e4b3e371c2b081ba7c861c1d3', '31.222.203.2', 1674720186, '__ci_last_regenerate|i:1674720186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e74d2ab7da0d6273108655c2f98edf6cb27ec67', '31.222.203.2', 1674720186, '__ci_last_regenerate|i:1674720186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ef4441a62bb219575ccd90668b559f3086e5ed', '31.222.203.2', 1674720187, '__ci_last_regenerate|i:1674720187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323018b51177752f8884049ef030f668a331bd8c', '31.222.203.2', 1674720187, '__ci_last_regenerate|i:1674720187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38f9af1167895b5bcf473443e3ac092ac14569c', '31.222.203.2', 1674720187, '__ci_last_regenerate|i:1674720187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73c0398b4efaec4d695fd1c88eb227f066d5bdd', '45.90.61.234', 1674720421, '__ci_last_regenerate|i:1674720421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f3c446526cfde075d4c1a849808de64f32f3134', '37.111.219.243', 1674723139, '__ci_last_regenerate|i:1674723139;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674721546;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f93137c431fa26c8c537ef6521e73de6ce95aa', '31.222.203.2', 1674722057, '__ci_last_regenerate|i:1674722057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0910058341ea76decf281f09d143859b954ccc95', '31.222.203.2', 1674722057, '__ci_last_regenerate|i:1674722057;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ed3e3d2791895460dceff4d02a9c7d1712ac1c', '31.222.203.2', 1674722057, '__ci_last_regenerate|i:1674722057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18c6109a78883940dc6c938c9d6b1cf57bcaeb63', '31.222.203.2', 1674722061, '__ci_last_regenerate|i:1674722061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9997fe6a3aa6faff41007b661ae9adcd06eca910', '31.222.203.2', 1674722061, '__ci_last_regenerate|i:1674722061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441c44c08abed71fb55530d0397465a222f6dff4', '31.222.203.2', 1674722061, '__ci_last_regenerate|i:1674722061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7207e65597ed53b5014615dbe9931e557e41430', '37.111.219.243', 1674723141, '__ci_last_regenerate|i:1674723139;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674652578\";last_ip|s:14:\"37.111.218.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674723139;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9049bd2e3024a476c2fa2098dfaeebfdc6d7c2fb', '176.53.219.135', 1674723307, '__ci_last_regenerate|i:1674723307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcb4154451e83eba9860fd5379c2334832c03dd', '172.105.247.100', 1674724225, '__ci_last_regenerate|i:1674724225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf0b493a40504a63f5e0f7fe64f7e8107a13d1e', '172.105.247.100', 1674724226, '__ci_last_regenerate|i:1674724225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0bd60389024798a5c2b4c1cbb007040f7295f7', '172.105.247.100', 1674724226, '__ci_last_regenerate|i:1674724226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa56e8e302cb9a432cef7beb889d7be8be6c016f', '172.105.247.100', 1674724226, '__ci_last_regenerate|i:1674724226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a29b920979f2e3f6ea5ee37fb0f43c1aa3f9eb', '172.105.247.100', 1674724226, '__ci_last_regenerate|i:1674724226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e811889636793ba1641f3c7532de9437f1d975', '172.105.247.100', 1674724226, '__ci_last_regenerate|i:1674724226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad74ff3bc28b140aea4d184f736ac6db1ff86cb', '172.105.247.100', 1674724226, '__ci_last_regenerate|i:1674724226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709ea6dc865c4b6ebfe23d3d096bc5d7db8f4ab0', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f7ef88636a3300c677bcae36562b885723ba598', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39303870064a9665b874642f10596abf6c9df50', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15b0d63d9da92616d7ce37634afa24388961ae9', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3a5d41c725f1a2a6fd0d93016ba855dbab35d93', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f61c9dd71ee828f295346552f6a87e15615bef5c', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183c1872e8166e90cd35426a6c3605c2387fd8e0', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777d2c49389a71ecc012a3431db73b68ddc8b857', '172.105.247.100', 1674724227, '__ci_last_regenerate|i:1674724227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1fe8c528a19a6933868dd81834f9d6f41040b3', '172.105.247.100', 1674724228, '__ci_last_regenerate|i:1674724228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb4999f2a6dcaa96429954ebd51196135c48686', '172.105.247.100', 1674724228, '__ci_last_regenerate|i:1674724228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3230467fc75cc1da728f53cf2adb429016bf0ee', '172.105.247.100', 1674724228, '__ci_last_regenerate|i:1674724228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('518fde3dafbc5fac6449d3079a9f40f20c41377a', '172.105.247.100', 1674724228, '__ci_last_regenerate|i:1674724228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54c733a7cd78bceb8af189443e08ac03b6bd30b', '172.105.247.100', 1674724228, '__ci_last_regenerate|i:1674724228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55cbee4f8722f4d9b7217e65b3b4d698a463310', '172.105.247.100', 1674724228, '__ci_last_regenerate|i:1674724228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a444efac5080ad591ef5d3e5ea337291811f4d81', '172.105.247.100', 1674724229, '__ci_last_regenerate|i:1674724228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8deaad1ba8085ced078839bfa08840ebe7491f05', '172.105.247.100', 1674724229, '__ci_last_regenerate|i:1674724229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160778ce8a6e6b6a1a3c56208b7e90d2833c0a58', '172.105.247.100', 1674724229, '__ci_last_regenerate|i:1674724229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d2f247b2878d78b3ca12e784ada503fea28b427', '195.211.77.140', 1674726321, '__ci_last_regenerate|i:1674726321;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24f2fde55629dee4645d1aeba3b819a3b45e766', '195.211.77.140', 1674726337, '__ci_last_regenerate|i:1674726337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c80e7ab936c5ded567c62ed662df1970e4b9d8', '93.119.227.91', 1674727865, '__ci_last_regenerate|i:1674727865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4729cbb61112387f16468f8a0869dff32ea14171', '93.119.227.91', 1674727866, '__ci_last_regenerate|i:1674727866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0fff81c8a8ee438ddbb88d12d03c6d9027a4448', '93.119.227.91', 1674727867, '__ci_last_regenerate|i:1674727867;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e318c23cf969b1816c18aaa6ee9c325513712dd', '93.119.227.91', 1674727867, '__ci_last_regenerate|i:1674727867;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c152fc631f5df55d6118189c4088f3c8e3df2b', '172.105.247.100', 1674729624, '__ci_last_regenerate|i:1674729624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7849db82fee00739c7944cfd83e9808c74266e98', '172.105.247.100', 1674729624, '__ci_last_regenerate|i:1674729624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4787fa7d70140f93e1ce4ccd0737d8f2d3fc2a3', '172.105.247.100', 1674729624, '__ci_last_regenerate|i:1674729624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5568c0a3033e8da1cf505a46351bd80aa71b83ba', '172.105.247.100', 1674729625, '__ci_last_regenerate|i:1674729624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ed5b96ae1bdbd3cfd36deef07bbd9b85773057', '172.105.247.100', 1674729625, '__ci_last_regenerate|i:1674729625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8cce888cfee570886c93620657c65a341a91ec5', '172.105.247.100', 1674729625, '__ci_last_regenerate|i:1674729625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91f6fed08d98cca6d3f9d1483fa2c30b20beaa0', '172.105.247.100', 1674729625, '__ci_last_regenerate|i:1674729625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7bf78014e5f2cb2d580813d997479629ce787c', '172.105.247.100', 1674729626, '__ci_last_regenerate|i:1674729626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76a3c8c31ee29186b5f435245afa302301733c5', '172.105.247.100', 1674729626, '__ci_last_regenerate|i:1674729626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098e03a67c8f664a16f85b69107c2486ac6a91cb', '172.105.247.100', 1674729626, '__ci_last_regenerate|i:1674729626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd032830a931142f84f0a5e34b6633587fb71e53', '172.105.247.100', 1674729626, '__ci_last_regenerate|i:1674729626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc34ae1f1619ecf8fbe88482c15b28d481953ea', '172.105.247.100', 1674729626, '__ci_last_regenerate|i:1674729626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874d34b2c995ab674409c56db283218a51ec58ed', '172.105.247.100', 1674729627, '__ci_last_regenerate|i:1674729627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7877edba06ef4e208a60be329f059732dc66463', '172.105.247.100', 1674729627, '__ci_last_regenerate|i:1674729627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95512708ae3948086515cf1635a7c71a9a177a10', '172.105.247.100', 1674729627, '__ci_last_regenerate|i:1674729627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d6a8a904ca348c0c1dd24306c112d119a35170', '172.105.247.100', 1674729627, '__ci_last_regenerate|i:1674729627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734083dba269597c6bc90632e48741cc8956b297', '172.105.247.100', 1674729627, '__ci_last_regenerate|i:1674729627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0751efdf420c2680868d51ad6c17cd36ff68fad', '172.105.247.100', 1674729628, '__ci_last_regenerate|i:1674729628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ea7406a6b97b31dc907bd483c6aa290de55614', '172.105.247.100', 1674729628, '__ci_last_regenerate|i:1674729628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421e3591968102e7863fb80e3d99a48ef09b5063', '172.105.247.100', 1674729628, '__ci_last_regenerate|i:1674729628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d612edcca7dfc44acdaf8233255f77c8ef944b16', '172.105.247.100', 1674729629, '__ci_last_regenerate|i:1674729629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37514ca4e7b36da15a4a4387f9fe01c267b758f', '172.105.247.100', 1674729629, '__ci_last_regenerate|i:1674729629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19789af3f6f3f2d080d070b859f22c2b3ab0cf9', '172.105.247.100', 1674729629, '__ci_last_regenerate|i:1674729629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8e01341a02bcf284c2a924df99e45392f39404', '172.105.247.100', 1674729629, '__ci_last_regenerate|i:1674729629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c57e273d98eeab6b32851881b068db59d723ae', '31.222.203.2', 1674731005, '__ci_last_regenerate|i:1674731005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcaf0c5d864e763e168b76df46046efa81863654', '31.222.203.2', 1674731005, '__ci_last_regenerate|i:1674731005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('127a4af07b49fca61150d3e2d6d907024e10ca58', '31.222.203.2', 1674731005, '__ci_last_regenerate|i:1674731005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db57bc89cf6a92a6c45c3615ae2c4963eb6b075', '31.222.203.2', 1674731009, '__ci_last_regenerate|i:1674731009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6adad3fc88fdf328f5700ac012da7e13776e1cb', '31.222.203.2', 1674731009, '__ci_last_regenerate|i:1674731009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802f88695f63a175bf7b9830d5f3ccb35563a829', '31.222.203.2', 1674731009, '__ci_last_regenerate|i:1674731009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1443feac673a9a38db33ba6a9d3b9294e15a41e', '31.222.203.2', 1674732865, '__ci_last_regenerate|i:1674732865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a518abb3ec06f8eebbc2c633d59e0f02ff4bb03', '31.222.203.2', 1674732866, '__ci_last_regenerate|i:1674732866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e820473b6a20022043d4c161c03763453b5bfb6d', '31.222.203.2', 1674732866, '__ci_last_regenerate|i:1674732866;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b01ebe9b39d84afe541a215265038f9ed0a0e4', '31.222.203.2', 1674732866, '__ci_last_regenerate|i:1674732866;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2374e8bc9461198bc37c5a937edff3788ac6763d', '31.222.203.2', 1674732866, '__ci_last_regenerate|i:1674732866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab3a96b6c1aa43cc5df591ab3191115560164b5', '31.222.203.2', 1674732866, '__ci_last_regenerate|i:1674732866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03736d1baf0611d24e38c5759547f1882823fed2', '37.111.219.243', 1674733608, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56126c7c02b147a481dc58d5d4592bb2e3940baf', '37.111.219.243', 1674733608, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e433c1fd922d4b907ecf648cfba80cb3303caa0', '37.111.219.243', 1674739944, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1674739944;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674712086\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674733863;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72da81bf5bf79af2c445ab78ff309ccb4ca75dd4', '172.105.247.100', 1674735024, '__ci_last_regenerate|i:1674735024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45222d5f7fac63ef380dc15d4297d75fce0c8ee8', '172.105.247.100', 1674735026, '__ci_last_regenerate|i:1674735026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a72cb5c44ff133a0013ae23d9fd6c817adb0eec', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30dfb14c28987fb3bb4fd28a24b41a149b3f7c82', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d7a17d781ab01f85239ab8d201a738bbc4bff2f', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf954cfda851146f6f29b40dea79fc4fdb1b2fc', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59660531784f397a4f2cce959177115fc3df9e93', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fe6a1b74edf1ab7f6ede76a24a5a48239446bd', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b642c28dbe22e36de2b6c28d07b343894ae9703a', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a153d04ffa0cea58521528c395a785a1e46612', '172.105.247.100', 1674735027, '__ci_last_regenerate|i:1674735027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d333425d3be1c095f976d045220efabb533f88', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa9f02261a835dc0fff885a412276efc791a08e', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7feb0ab25277a0bf27923df18b2cd1c98b5194', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5982f63ff4d982fbb8435cf2783056bb382698e', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b80500e74568fc3ddea69b3ff9e4ac1b8dd9ea', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab71a00797caefb1797c690a82ed1f8f5974498', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ccf9f42ad25a69b59864b18b66054b529ab23a', '172.105.247.100', 1674735028, '__ci_last_regenerate|i:1674735028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9709b756f0f3491641ba3809d1b7d5e9c960a16', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbc873229e9f46414455d72a6cf20b1eaa0ae75', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c237ebb7e25ee0d53c322a04cc3f981e4e6dc0cc', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3543e48d5c2dea14a5b5e9c8842d8e31ae371d', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32a89adc333f79785f08ffa3508e17f8713d7063', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44bde3a168a7058b66eebc490b2aee3989831fe7', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d346057ecfe1f0e6a182d7350183bba4752753', '172.105.247.100', 1674735029, '__ci_last_regenerate|i:1674735029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3cbfbdc7a8ab2a7e6638713b2e21b26dec4d19', '37.111.219.243', 1674742413, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1674742413;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674712086\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674742408;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19097bd05a29fc18ae1f8422f1555a394dde2f9b', '172.105.247.100', 1674740426, '__ci_last_regenerate|i:1674740426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5c162788a5ebaa6285aa74f676d42b557e4530', '172.105.247.100', 1674740426, '__ci_last_regenerate|i:1674740426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d65f31a19ed2ac8562e100d704cd6ccb07885e2', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e1a2289e5bfabf27afa88a9b10f67cb5980628', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb0e31f3f5f8649a148227036b5e3d533d2a867', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('512a25247313b8f359d02942774cab15909be3c2', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb19ff52766bf123ac292e6737131767583cbf9', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380cca36ec40381a6849cf24a46bc6276e05fcfe', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f3b92da538d9dd7405a11e1e94add26436a256', '172.105.247.100', 1674740427, '__ci_last_regenerate|i:1674740427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b09d0a12927c4c9ea65e9609bdabb8c95184d5', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dff6efade6926d7d1f1e194e28744714eb265ff', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb773828fa44d7d474a58fc408e642e07de87e2', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c544c58f5a56747d7fc4c76793d6c2a8c91d6f9b', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88efa201b533afe3ad5cb4851d3933db3379291c', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84defa71d742cb039655bbc5b7d089cc67632155', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85997751404c86f1e7c061f56960681b7a37f0b8', '172.105.247.100', 1674740428, '__ci_last_regenerate|i:1674740428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a8edd299a8d2542aa75747787184520e899100', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102e24fc777d2f699079a1e3eb125e08c269418d', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71cbaa5757014eeb7b49605811c82ac576ac8eb9', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ee336a91091f7cc2638e739b02bc691dfb7ea5', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd2ecc7b07af80eca986730588de366c4b5ddeb', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1968f9f4307d386d35b28da776ffe5463f849c2', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c4b96db81942983ca746b6adf9f8bea6933677', '172.105.247.100', 1674740429, '__ci_last_regenerate|i:1674740429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd0803c13862f09e44acd323e02e3aac0fc6534', '172.105.247.100', 1674740430, '__ci_last_regenerate|i:1674740430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566e732dc0aa6ea3d857315bee51f353ba3ebe9e', '31.222.203.2', 1674741784, '__ci_last_regenerate|i:1674741784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381edb7720cf69da50bc55aeb0c1ebb1b22ca72f', '31.222.203.2', 1674741784, '__ci_last_regenerate|i:1674741784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6561b98c979aae9f6157369b98aeb355b07a89', '31.222.203.2', 1674741784, '__ci_last_regenerate|i:1674741784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cc02eaf65f38c41f3589735e7da85cd8a0d014', '31.222.203.2', 1674741784, '__ci_last_regenerate|i:1674741784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336f2d38a48bd56e3732638209033cbc795139b8', '31.222.203.2', 1674741784, '__ci_last_regenerate|i:1674741784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d98da40b69005d66ed8065e51989be0b59e551a0', '31.222.203.2', 1674741784, '__ci_last_regenerate|i:1674741784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5963cd48821fbe7bf9c2f61ef368fbf1f25070e', '37.111.219.243', 1674744911, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1674744911;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674712086\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674744902;register_id|s:3:\"322\";cash_in_hand|s:9:\"9470.0000\";register_open_time|s:19:\"2023-01-25 19:59:57\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb52fd2eeaff9de859fbed121b4a00f16c29d03', '31.222.203.2', 1674743657, '__ci_last_regenerate|i:1674743657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081a00f33bff5371a1b6e9fe79fd2f5d6d74a269', '31.222.203.2', 1674743657, '__ci_last_regenerate|i:1674743657;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c8565c7e451d4e4ad54577bb20bee40e3ef024', '31.222.203.2', 1674743657, '__ci_last_regenerate|i:1674743657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19df7933dfac8af82ce6cf2ad72f526dbbef4678', '31.222.203.2', 1674743661, '__ci_last_regenerate|i:1674743661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29e0ab3f62cdcb4735e0311f0891d38eea619d5', '31.222.203.2', 1674743661, '__ci_last_regenerate|i:1674743661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447e9a8b125990a1016fd61b3b627d9e3cd2bd71', '31.222.203.2', 1674743661, '__ci_last_regenerate|i:1674743661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2eb4c4bcd4675a3544ff4768df75d4fa9508df4', '37.111.219.243', 1674744933, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1674744911;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674712086\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674744933;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c6ea87f6e2e8ea1463404cf849663c6651fa81', '31.222.203.2', 1674745502, '__ci_last_regenerate|i:1674745502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad41dae423eb8a72c921cbd603a087d986d07ab', '31.222.203.2', 1674745502, '__ci_last_regenerate|i:1674745502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5da342ee1e2802b2961f00b3390b52ae50406f3', '31.222.203.2', 1674745502, '__ci_last_regenerate|i:1674745502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91804765fcb70c54a84ec34661341305e985efa', '31.222.203.2', 1674745505, '__ci_last_regenerate|i:1674745505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cf37561ddaef0b64eed86963d3bcfded5aa093a', '31.222.203.2', 1674745505, '__ci_last_regenerate|i:1674745505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5825e100330dfd1e1db639b992afae0753177b0d', '31.222.203.2', 1674745505, '__ci_last_regenerate|i:1674745505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102c8c9f8a1fa3dd0c84693e420ea1b3dceab3d3', '31.222.203.2', 1674754425, '__ci_last_regenerate|i:1674754425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b0fc7e849a8c7a552ff6e1f93e38ee6ff99496', '31.222.203.2', 1674754425, '__ci_last_regenerate|i:1674754425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab8629ce4d064e9d69254eba7ad849f7c8fcfc5', '31.222.203.2', 1674754425, '__ci_last_regenerate|i:1674754425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f63676ab6c15ad99788ad437559245e404cd9d9', '31.222.203.2', 1674754426, '__ci_last_regenerate|i:1674754426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc7bcf3f8d049eeeeca61ce02529c58ed51d8b88', '31.222.203.2', 1674754426, '__ci_last_regenerate|i:1674754426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859562662240454fad109c66ff360939eb8943f1', '31.222.203.2', 1674754426, '__ci_last_regenerate|i:1674754426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5468340983c24670e6a3593d175c2c4395d7aa', '124.158.12.83', 1674762759, '__ci_last_regenerate|i:1674762759;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78806e3a2b972223ac73145430522f2ecaa29b06', '124.158.12.83', 1674762761, '__ci_last_regenerate|i:1674762761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7278c8fd3bd137bdf4bf053771bd873ed94c4c5c', '124.158.12.83', 1674762762, '__ci_last_regenerate|i:1674762762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f820e3d5ccbc1436db2baccc23736088cc4d8f20', '124.158.12.83', 1674762764, '__ci_last_regenerate|i:1674762764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('627462979068132da1c8139b0ef8ebfba06517ca', '31.222.203.2', 1674763411, '__ci_last_regenerate|i:1674763411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d168b79056075c7bd0e4c6301718b618f02e5d66', '31.222.203.2', 1674763411, '__ci_last_regenerate|i:1674763411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d5475cb9016ebaff9e45b3bd0979a96a3bb310', '31.222.203.2', 1674763411, '__ci_last_regenerate|i:1674763411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c98d988156ad66b7c2f9cad3feab37453827dc', '31.222.203.2', 1674763411, '__ci_last_regenerate|i:1674763411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72149903ca4559efd059bae471780aaa5fff880e', '31.222.203.2', 1674763411, '__ci_last_regenerate|i:1674763411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b833f7e0fb36dff99502b27df0fe2ab251fa1a2', '31.222.203.2', 1674763411, '__ci_last_regenerate|i:1674763411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bca81732e545cd487914ba2dfbf4a9c2c992e7', '31.222.203.2', 1674765259, '__ci_last_regenerate|i:1674765259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c9a7b18ff24ada94389535f7034e8b66f562f37', '31.222.203.2', 1674765259, '__ci_last_regenerate|i:1674765259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d825c36defb9c0c56a056e1d7cea9187a3a428', '31.222.203.2', 1674765259, '__ci_last_regenerate|i:1674765259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42e1f2c603771984392834f88131e8b78f91bfc', '31.222.203.2', 1674765262, '__ci_last_regenerate|i:1674765262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b05c11999a8ccea9f165fe9f7bc40a2e98efb05', '31.222.203.2', 1674765262, '__ci_last_regenerate|i:1674765262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d35d223455faeb0da7212cd6516c130872319a0', '31.222.203.2', 1674765262, '__ci_last_regenerate|i:1674765262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8440c08ec62e2af5e166ca29c60ee3d9231237c0', '47.254.74.59', 1674772584, '__ci_last_regenerate|i:1674772584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2c59f62a5ee15815f6e5281155231c650ff534', '47.251.14.232', 1674772588, '__ci_last_regenerate|i:1674772588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b592e44ba513097a41521485588180be9c1bfaad', '47.89.193.162', 1674772591, '__ci_last_regenerate|i:1674772591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('647fbe595c7f5a7dd76fdb7a6cd0f9c00d26fc2a', '47.88.78.6', 1674772592, '__ci_last_regenerate|i:1674772592;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be4fab23f7837fac1907111a588eed4c4141158b', '47.251.15.21', 1674772592, '__ci_last_regenerate|i:1674772592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965ce2b30087dcdb498841d8143e7739738bc5b0', '47.88.5.56', 1674772593, '__ci_last_regenerate|i:1674772593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da393cec9c7e1538c9cef44deda38c2fa0203c9f', '47.254.25.10', 1674772593, '__ci_last_regenerate|i:1674772593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce5ca6c91ba527dc5a88655bcf269adde4b0d99', '47.88.94.28', 1674772594, '__ci_last_regenerate|i:1674772594;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aca56ac35641f99b907ed0bd11b65202027687fc', '47.88.94.161', 1674772595, '__ci_last_regenerate|i:1674772595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d097bcb8bde5978ec717371024d2314b7f9d62e', '47.251.11.3', 1674772595, '__ci_last_regenerate|i:1674772595;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d00f167c2edaec55d0d195e20507fdb1ed383cb', '47.88.94.159', 1674772595, '__ci_last_regenerate|i:1674772595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5357ecaafbf5913b72ef52a8795922afd4c12a08', '47.254.85.182', 1674773065, '__ci_last_regenerate|i:1674773065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38e4ce82e1a55f06282eb542ae3257f44e3f9f1', '47.88.87.97', 1674773068, '__ci_last_regenerate|i:1674773068;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc8c6af73be53d2a65e6e9da64004961e4999e9', '47.254.25.10', 1674773068, '__ci_last_regenerate|i:1674773068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c68bc8b414754362488de8d3c3e39fa4697a33', '47.88.78.6', 1674773072, '__ci_last_regenerate|i:1674773072;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994c82a5f0f6e1414fa86ced2bf1d0a6b780a9f1', '47.89.193.239', 1674773072, '__ci_last_regenerate|i:1674773072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93237825d691d316003a4ee9529b393011bf9863', '47.254.16.187', 1674773075, '__ci_last_regenerate|i:1674773075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7431fede9be74bd09ec9c68994068db2d32b5b', '47.88.78.6', 1674773076, '__ci_last_regenerate|i:1674773076;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea9de894b42a636700a9b7ccab0a572beb1d811', '47.88.5.56', 1674773077, '__ci_last_regenerate|i:1674773077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4c250ef315e22fae6a755cf2c2443df2327536', '47.88.93.234', 1674773077, '__ci_last_regenerate|i:1674773077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6dc12e667e7e7503d3d0df02a89c84062b9fcf', '47.251.15.21', 1674773077, '__ci_last_regenerate|i:1674773077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719fd8727b44ce3a66ec0eb997cd09a16c63536d', '31.222.203.2', 1674774180, '__ci_last_regenerate|i:1674774180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71c1c28682e919e2dcc70169d21d80c734013e4', '31.222.203.2', 1674774180, '__ci_last_regenerate|i:1674774180;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae21497e46be721905ed76013da0103439a584ee', '31.222.203.2', 1674774180, '__ci_last_regenerate|i:1674774180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fff02cb1a92d40df3acc2ed6ea3b0b6a0d808914', '31.222.203.2', 1674774182, '__ci_last_regenerate|i:1674774182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca602f43b626f5bb1b7aa55634ae8763c2d7bdf', '31.222.203.2', 1674774182, '__ci_last_regenerate|i:1674774182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9c08fd6ec32ddc87e83b5b01939afa1e36fd398', '31.222.203.2', 1674774182, '__ci_last_regenerate|i:1674774182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8d14659409fdd1e908abe0efe9d8c57d55350c', '31.222.203.2', 1674776057, '__ci_last_regenerate|i:1674776057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c59b65fa675295d3fbc6075ba976f1ec06311cd', '31.222.203.2', 1674776057, '__ci_last_regenerate|i:1674776057;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f0080d462bf9c7b16f86591e56614a86d869fc', '31.222.203.2', 1674776057, '__ci_last_regenerate|i:1674776057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ba1352aefbf22bca80a3609efc3cb3c3d369fa', '31.222.203.2', 1674776060, '__ci_last_regenerate|i:1674776060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1acf69cbe43a3dcbba9cc565b0cc405a7ea6abb7', '31.222.203.2', 1674776060, '__ci_last_regenerate|i:1674776060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95d16e0ec355a7c9b099b21993274f0059c0c00', '31.222.203.2', 1674776060, '__ci_last_regenerate|i:1674776060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749fd2b908df66d6d3f8974d24caf8eb4bf2deba', '31.222.203.2', 1674777904, '__ci_last_regenerate|i:1674777904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8f34e80de72031dd74b38292492c4176c3bd4f', '31.222.203.2', 1674777907, '__ci_last_regenerate|i:1674777907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8a91d41e6d6b3ccad43ddb57fef2b0145c2445', '31.222.203.2', 1674777907, '__ci_last_regenerate|i:1674777907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85039e96288ff068f72d219606b299925d4789b', '31.222.203.2', 1674786797, '__ci_last_regenerate|i:1674786797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a83d43c948f8138a09f1d4816abae859ea498ee', '31.222.203.2', 1674786797, '__ci_last_regenerate|i:1674786797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7867e1b87c92e386016fb53304cf10c494b9d2', '31.222.203.2', 1674786797, '__ci_last_regenerate|i:1674786797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd59ec4e423998038dd1447896aac1040476349', '31.222.203.2', 1674786798, '__ci_last_regenerate|i:1674786798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229cc51b2ae5d5ddebf01f3f1d5bb306bec85491', '31.222.203.2', 1674786798, '__ci_last_regenerate|i:1674786798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f58d5379c1db3a59d6b3ce35da8abecce1164b', '31.222.203.2', 1674786798, '__ci_last_regenerate|i:1674786798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0074bb03d8588cc653de5813cd83ce5e3a27ff', '31.222.203.2', 1674788660, '__ci_last_regenerate|i:1674788660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0f8fb828ee8c6d5bc3494b4dbf804e7e85b722', '31.222.203.2', 1674788660, '__ci_last_regenerate|i:1674788660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef2e690251698ac53157e69dc80f2cf43e5a7cb', '31.222.203.2', 1674788660, '__ci_last_regenerate|i:1674788660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d275ca9d60b4f495c82f0f1b3b5b1958e8c1d274', '31.222.203.2', 1674788662, '__ci_last_regenerate|i:1674788662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44fafaa9fa8a10079ffbf35b048d49110d552db', '31.222.203.2', 1674788662, '__ci_last_regenerate|i:1674788662;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163a95f6a3132cdda1e583a4113a2d33d6f9ae03', '31.222.203.2', 1674788662, '__ci_last_regenerate|i:1674788662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4669e6dc8dca568b003c0d6937d9a7d46bc4c83e', '198.235.24.162', 1674794745, '__ci_last_regenerate|i:1674794745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529b335474e2fa545c1f99f005058bc087e01bc5', '198.235.24.18', 1674798500, '__ci_last_regenerate|i:1674798500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338b8d90e57fef806e4788bb9473e8c3e263bdb9', '45.120.39.89', 1674807678, '__ci_last_regenerate|i:1674807678;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674807668;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc51c9f12c9103d4433fd433ea88f39be151639', '31.222.203.2', 1674799392, '__ci_last_regenerate|i:1674799392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b13cbd8109aa0ebfecc5b8864425c4147d570bf', '31.222.203.2', 1674799392, '__ci_last_regenerate|i:1674799392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6af6de6dbaffc1ed1aac0a51d2428f49ce985b', '31.222.203.2', 1674799392, '__ci_last_regenerate|i:1674799392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c46eb92a2fe48fcfa98c9973c688e2eb4f8dc1a', '31.222.203.2', 1674799394, '__ci_last_regenerate|i:1674799394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb4ecf079e242299d4561b2fb3b81b60b87d768', '31.222.203.2', 1674799394, '__ci_last_regenerate|i:1674799394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d67033d7ab568762f4bbc6d541f131a777742c', '31.222.203.2', 1674799394, '__ci_last_regenerate|i:1674799394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f79702856d38a840822f8963891bc3c6f76c053', '31.222.203.2', 1674801258, '__ci_last_regenerate|i:1674801258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b760fd25389fc4e7691d2ebff4900c9eef06da', '31.222.203.2', 1674801258, '__ci_last_regenerate|i:1674801258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897db497e808b7f016f8a9ad9d434a1856f0c101', '31.222.203.2', 1674801258, '__ci_last_regenerate|i:1674801258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc4e5aae0c902a22423f696b9fcbb199bda680e', '31.222.203.2', 1674801261, '__ci_last_regenerate|i:1674801261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5bce9ff8d180507504a37809dd6c53f7b613f9', '31.222.203.2', 1674801261, '__ci_last_regenerate|i:1674801261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b640d907f31f7dadf03fd6bf64cde906fd831c', '31.222.203.2', 1674801261, '__ci_last_regenerate|i:1674801261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed3961e5cdb13a1f68c266e22527f8d6ba04da35', '198.235.24.27', 1674805132, '__ci_last_regenerate|i:1674805132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7afaf86152cd55264cf6eaaec706e8aae493704', '176.53.217.242', 1674806680, '__ci_last_regenerate|i:1674806680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108df4ac9a216c02a2d762508a8a14a9cb70585d', '176.53.217.242', 1674806686, '__ci_last_regenerate|i:1674806685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b4f0887caf578e41f6e08f800b4971fc37be82', '176.113.43.242', 1674806688, '__ci_last_regenerate|i:1674806688;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99d80f8bb7252243b23f47472c3d90df37603a10', '89.104.111.23', 1674806691, '__ci_last_regenerate|i:1674806691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ff3a932a9cf9608e747b2b64e11bf553cdd2df', '37.111.217.73', 1674810515, '__ci_last_regenerate|i:1674810515;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674807709;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7abf7bb6648a04d8242a077ca3787b122191fa', '176.53.223.85', 1674809145, '__ci_last_regenerate|i:1674809145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372dd36e1d2123086ac180d8be4dab800cce58a2', '176.53.222.205', 1674809147, '__ci_last_regenerate|i:1674809147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf76e70bd23f3d1299b65d9aca689a8a4b733285', '176.53.218.163', 1674809148, '__ci_last_regenerate|i:1674809148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ba7f8165a82325fa9f6bca0cfa55564aeffa1d', '37.111.219.60', 1674816001, '__ci_last_regenerate|i:1674816001;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674815301;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a94c15b99487a708980d4898958b5673323b0d0', '198.235.24.159', 1674811286, '__ci_last_regenerate|i:1674811286;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6cbdf465e34f57fcf3008e7f4bb7bd9bf33a95', '31.222.203.2', 1674811999, '__ci_last_regenerate|i:1674811999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19ed00783205195cfb6e756fe84e07e3bfdc800', '31.222.203.2', 1674811999, '__ci_last_regenerate|i:1674811999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18ae394d346aa3edad0e60c3e439990791213e2e', '31.222.203.2', 1674811999, '__ci_last_regenerate|i:1674811999;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29dd23847b70888e3a66fb707deb6e023bccaf09', '31.222.203.2', 1674811999, '__ci_last_regenerate|i:1674811999;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517920f9dfd9553e856c2422253772855c518aae', '31.222.203.2', 1674811999, '__ci_last_regenerate|i:1674811999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fff7e0af3bb06e9aadc494b6525b8b42a751225', '31.222.203.2', 1674811999, '__ci_last_regenerate|i:1674811999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2570c54b3099552a7a8f419eb62e3a77c3ccdc4', '2.57.122.15', 1674813085, '__ci_last_regenerate|i:1674813085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc674c5dba473b7f8327ba313e861004982a5a4', '2.57.122.15', 1674813085, '__ci_last_regenerate|i:1674813085;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d8c2832f943ab85ff7adb4815d3ae2a71d6f19', '2.57.122.15', 1674813085, '__ci_last_regenerate|i:1674813085;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c36cb54d43efa84ca917f2bafeeedad6f46af77', '2.57.122.15', 1674813086, '__ci_last_regenerate|i:1674813086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfca13de9b3d9b556ad2cd1acdcd7eb4382c7cbd', '2.57.122.15', 1674813086, '__ci_last_regenerate|i:1674813086;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4588363266cbdaaadd0f1f20256c4f4b2ff120', '2.57.122.15', 1674813086, '__ci_last_regenerate|i:1674813086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fded9260650acdd2afb5d77bbfcf3ba8880bace8', '31.222.203.2', 1674813862, '__ci_last_regenerate|i:1674813862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08279ae7ea7cfeb1b3a0dafca210be372b0b2390', '31.222.203.2', 1674813862, '__ci_last_regenerate|i:1674813862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384f243081923deff7fe040d0b222a99dde89beb', '31.222.203.2', 1674813862, '__ci_last_regenerate|i:1674813862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afef386fb357018fec409e0c35eb0098cb526b77', '31.222.203.2', 1674813864, '__ci_last_regenerate|i:1674813864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15504d544d25f52d5d74f63c194a39a4e1291e0', '31.222.203.2', 1674813864, '__ci_last_regenerate|i:1674813864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d601b9b3efe196a7f0775b5b698b2e9070a6716e', '31.222.203.2', 1674813864, '__ci_last_regenerate|i:1674813864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430dcd12b8414274692336c9d6411a1ada75ce7d', '37.111.219.60', 1674816973, '__ci_last_regenerate|i:1674816973;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674816002;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a3c9ca16e337d312dfbfb231ca7611d8486d8d', '37.111.219.60', 1674817462, '__ci_last_regenerate|i:1674817462;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674817195;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c9bee1bd1accdfc400815eb6c6cc5055db9f69', '37.111.219.60', 1674817818, '__ci_last_regenerate|i:1674817818;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674817760;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887de9c73f8634b48d3382d03c2fc719630efcc3', '37.111.219.60', 1674822685, '__ci_last_regenerate|i:1674822685;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674822682;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05464c5d43f59b49140df3b87bb9d6a857ded73', '172.105.247.100', 1674819628, '__ci_last_regenerate|i:1674819628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2489944a5abbdbaa0b11894cf8e5e25b88be46', '172.105.247.100', 1674819628, '__ci_last_regenerate|i:1674819628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987a9c0cace5f639a2bc233c4ad01e0628ca96e0', '172.105.247.100', 1674819628, '__ci_last_regenerate|i:1674819628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf18d964e76d6e25356e02e5f229167ab4c28ae', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275e66d2720acf5e01980b26807c1a2644628971', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3faf98549b1627e07f9091aeedc3c5e609aa0255', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46e1ed3bbb046bed255ceb543a1eb7392fa2c33', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd6584d9462f12389a09aebf292f4947b33f5fc', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662b2f11c61ceb0c2eb86358b9fd5e06a3e91607', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bff4f7cd172f4b2af94d3c26874639fe9bf0863', '172.105.247.100', 1674819629, '__ci_last_regenerate|i:1674819629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af5880a63b326b376e7165b00e69b754887a55d', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('993048a6b826745efd59a5b401de19878eb5fcba', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ca8615e284edab56e5169d521f724a1014c2a2', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea11c060e42e2139487ab335542608a024951516', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a82494d89715f5648387c93cde26aebdab98a3', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85613a88bc932614d4d27a0bc732e3f940076805', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213982fc4b84f946e21b4569dc98a173434978f5', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d34172c5b277543d5b39d13cc7c4f137358077d', '172.105.247.100', 1674819630, '__ci_last_regenerate|i:1674819630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68468223171498e4abf0a2de5efa0baa2a8fee03', '172.105.247.100', 1674819631, '__ci_last_regenerate|i:1674819631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2efca262c09a9769089f58d32797aee54c717694', '172.105.247.100', 1674819631, '__ci_last_regenerate|i:1674819631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23beda0468f735f1aebef496c615d23ccf7f928', '172.105.247.100', 1674819631, '__ci_last_regenerate|i:1674819631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acde45d7dae441192a2ef1c7a856c85014b2e69', '172.105.247.100', 1674819631, '__ci_last_regenerate|i:1674819631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf013c45f22eda7182a3d45819be0b424bc45f2', '172.105.247.100', 1674819632, '__ci_last_regenerate|i:1674819632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02bb091e6aa8d780c2f47b5609d108e7c4f40577', '172.105.247.100', 1674819632, '__ci_last_regenerate|i:1674819632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d246edd5c9c93f95b4187f8604bf07abf333e0', '37.111.219.60', 1674827021, '__ci_last_regenerate|i:1674827021;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674827016;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7619846ef487d431fda29e5d79225b48b041ff', '31.222.203.2', 1674822793, '__ci_last_regenerate|i:1674822793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bcd0cf0c42aa7bad3b7af5a440a0ae5d862c124', '31.222.203.2', 1674822793, '__ci_last_regenerate|i:1674822793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c4d63a414f5fdf58b02217fa79487f346e7070', '31.222.203.2', 1674822793, '__ci_last_regenerate|i:1674822793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef30fc8012eb98a0bdb345587832537a93e239d', '31.222.203.2', 1674822793, '__ci_last_regenerate|i:1674822793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db89a298cbd588fb0b5b38e6d3c52dd55877704a', '31.222.203.2', 1674822793, '__ci_last_regenerate|i:1674822793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e98a2e8c94b49d404e6f2ba06912b890a5c6ce', '31.222.203.2', 1674822793, '__ci_last_regenerate|i:1674822793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15520880b076eeb9a97eea595330453baa266d14', '172.105.247.100', 1674823821, '__ci_last_regenerate|i:1674823821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9894b42798bac8e66f5fa6e55e6eb871bf3d34ab', '172.105.247.100', 1674823823, '__ci_last_regenerate|i:1674823823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393ccc82653b6c2e51f553f1455d3ddd330cce00', '172.105.247.100', 1674823823, '__ci_last_regenerate|i:1674823823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906967208f0259738c502435486c2237464ff72f', '172.105.247.100', 1674823823, '__ci_last_regenerate|i:1674823823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d890cbebf1b53a264a748dbf7f04b25780b4301f', '172.105.247.100', 1674823823, '__ci_last_regenerate|i:1674823823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586d2e619936bb9de52ff3cc58c2dc94d4271850', '172.105.247.100', 1674823823, '__ci_last_regenerate|i:1674823823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967f0bccaa0347bfe7645d9f25990f726e011f03', '172.105.247.100', 1674823823, '__ci_last_regenerate|i:1674823823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ad5763480968888c129907eec9ebf8fb7f67e8', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b714b0ac9c68cb8ba19f4f49238d9faee04f887', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463cabe229cac373f0eadcad16f8a1eaf2a95a9b', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca953b437b6d8d748b837a78f4ada03c7f09d75', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e86bc15d37395e86e040cf4198d068481fa6415', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8074b0aba62b348ca1fc8fff542d53b352012f', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b496aff93f2aac1e0302f01b1a2410ba3a474b92', '172.105.247.100', 1674823824, '__ci_last_regenerate|i:1674823824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc61f3233ae3c9f851d28e0e0b3a8728477f2dfc', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2e4bc67d27f8293bb0d37dc1a2e1dbe961c777', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf1d8221eb94f042ebd57af98c1feb9e80d436a', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcd0049c524e8ed653a524aa144f8fbb5420c618', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a6bb1c05878663a33a1104e56a063faa317cdd', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50c7f2fc9fb6da5fcbfe6d1e1bf48784d33f835', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22856b34460fd34c8bb79f6d1d831945896d125d', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fcb4b1d19e2aa6091e9fdff269eb7c70e123f5e', '172.105.247.100', 1674823825, '__ci_last_regenerate|i:1674823825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b37a1fa19abe12ffbc38050968e09228c46262', '172.105.247.100', 1674823826, '__ci_last_regenerate|i:1674823826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82498a0211154554a10a295dd4cef67da7502f0c', '172.105.247.100', 1674823826, '__ci_last_regenerate|i:1674823826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e724c074789ed213004cc75e0a70b493aefbb76', '31.222.203.2', 1674824662, '__ci_last_regenerate|i:1674824662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79bae8da19421131b17f236217b79e04911d4fc1', '31.222.203.2', 1674824662, '__ci_last_regenerate|i:1674824662;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28703d963bda527d98c3dfd3803bf6292de8589', '31.222.203.2', 1674824662, '__ci_last_regenerate|i:1674824662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a798dcc2a63636528df841e5943fcea8efbf1e', '31.222.203.2', 1674824664, '__ci_last_regenerate|i:1674824664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9402a2ba0b5302b17f673aa9be8dc3e6c2d2e8de', '31.222.203.2', 1674824664, '__ci_last_regenerate|i:1674824664;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c19d62b1a6295df65f7c48a07ab1d223e8311fd3', '31.222.203.2', 1674824664, '__ci_last_regenerate|i:1674824664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeaeb51e5bef0d7135245eeca89f111036ce0bde', '37.111.219.60', 1674830529, '__ci_last_regenerate|i:1674830529;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674827022;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43dc20c08ea366c032891458e87628b1837750fd', '172.105.247.100', 1674828022, '__ci_last_regenerate|i:1674828022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e715b3837737064d127662f9d688a9217d79d65', '172.105.247.100', 1674828023, '__ci_last_regenerate|i:1674828023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc8b5b849430ae9bb291626317819499ae939c8', '172.105.247.100', 1674828023, '__ci_last_regenerate|i:1674828023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74796369567e78d4f45aefb26fe3f284d3a2b536', '172.105.247.100', 1674828023, '__ci_last_regenerate|i:1674828023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b30463884c824b92a24014bdfb6fd28d5fc44d', '172.105.247.100', 1674828023, '__ci_last_regenerate|i:1674828023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75bfb889005cca9d89c45cb54507641411e11f00', '172.105.247.100', 1674828024, '__ci_last_regenerate|i:1674828024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4445d3536f963eb9f0af28e60d5b5e15710705b0', '172.105.247.100', 1674828024, '__ci_last_regenerate|i:1674828024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c0379f1f7dab99ed81d0b5d701f41abb9f69e2', '172.105.247.100', 1674828024, '__ci_last_regenerate|i:1674828024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a45d02d1f06e2a837875ca3bd73b7ca0a88798', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f95468adbf1cb6f26952d07b351e6e40a1a32d3', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be493269c9842a839fa82cc3fd4fc9a7e56cbc23', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d00aca00a653c7f9e630d32c07f50f004c9f6b34', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb601604e7ddad5062a2b406fb349c5a78d1e729', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('237ee9a6c090ebeede64d9329145b588bcbd0474', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b36255b819937f4635b67bb9b3d854fc91ccfef', '172.105.247.100', 1674828025, '__ci_last_regenerate|i:1674828025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41f01deffa546a53983f92bf6a6c6c76659a872', '172.105.247.100', 1674828026, '__ci_last_regenerate|i:1674828025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c95b84aeaf97ad4626ce9da6d5fafaec8e561c', '172.105.247.100', 1674828026, '__ci_last_regenerate|i:1674828026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39cb28fa6b9653621bb7bba08f682df6ddfadfc', '172.105.247.100', 1674828026, '__ci_last_regenerate|i:1674828026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64bb96f81c545708f02e863fcf4c42ff36c6889b', '172.105.247.100', 1674828026, '__ci_last_regenerate|i:1674828026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47eb5e285e5b7fc522376dbde12404b14143d23c', '172.105.247.100', 1674828027, '__ci_last_regenerate|i:1674828027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332ea56261b30e980c03ecf9110957af8013647f', '172.105.247.100', 1674828027, '__ci_last_regenerate|i:1674828027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4886395b149847f6647e161276487a3730c2ea19', '172.105.247.100', 1674828027, '__ci_last_regenerate|i:1674828027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8ff382e4a7a9a793ee8a10c737394c9dc4d360', '172.105.247.100', 1674828027, '__ci_last_regenerate|i:1674828027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba58b2139af21ce629278bb409e78a47220688af', '172.105.247.100', 1674828028, '__ci_last_regenerate|i:1674828028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876635fc3c92bc8fb98519f94f3f9595a0fa6d27', '37.111.219.60', 1674831855, '__ci_last_regenerate|i:1674831855;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674831842;register_id|s:3:\"323\";cash_in_hand|s:9:\"3190.0000\";register_open_time|s:19:\"2023-01-26 20:55:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec49d406b80e3ef595901627aee46fee9dd8b83b', '37.111.219.60', 1674831912, '__ci_last_regenerate|i:1674831855;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674733818\";last_ip|s:14:\"37.111.219.243\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674831912;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e92544626aff8fbf399c3c4beb644cf9e643007', '172.105.247.100', 1674832223, '__ci_last_regenerate|i:1674832223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc287ce90bebb73a8582831ff1f4ba88d336a6fa', '172.105.247.100', 1674832223, '__ci_last_regenerate|i:1674832223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa8e5421c726789280e929dca694e28e4bf36e0', '172.105.247.100', 1674832223, '__ci_last_regenerate|i:1674832223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7afaa89fdc57c925561dbfcc5381682af4b7a3', '172.105.247.100', 1674832223, '__ci_last_regenerate|i:1674832223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00a04b70c539ad76822408d32c59be26444a691', '172.105.247.100', 1674832223, '__ci_last_regenerate|i:1674832223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b59d2cfc5736de4335b78518b04e9cfdd142225', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2afd6bd889a4c6dd29c692caa237a3c6f052b356', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fc74893714b6f8e57c002a71ae32aabf63d94b', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de208202196c9182959626f852b3165a337512d4', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2ee818bb38b64ea419bfdb3f4947ee624817c81', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4241e8a2b6468e4ddf0824c7b2af633803281104', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46ce7a41aa1ab1ea12247e06971953e245b6314', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78f1be2fd3119ab58f0858f37924636c39fbeae', '172.105.247.100', 1674832224, '__ci_last_regenerate|i:1674832224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a3fc1092bd906b6218ee1653cf649217a76313', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd1dc2c4b7b96ecdc51c553fd89340cb13c89ba', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab427f94b2f6d92d2cfc889d55e8fe4f09631fb', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f46c150cfcf838404cbb34d9fcae9f033ec650', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50034113cd8bdf033937795f657aeacc2bba991d', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b674ed2086bf1f975fede5b87a4603dbf0d054', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8045a87bed65c9522d91b7f6ec2b5a3de2c814a7', '172.105.247.100', 1674832225, '__ci_last_regenerate|i:1674832225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5703d644ad88315a97ce67bc590b933cf1099d80', '172.105.247.100', 1674832226, '__ci_last_regenerate|i:1674832226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d340dfa7a71675244e085ee8efc2850a6872383', '172.105.247.100', 1674832226, '__ci_last_regenerate|i:1674832226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6aabe4bfb5390611c339dbce600624b9615dde', '172.105.247.100', 1674832226, '__ci_last_regenerate|i:1674832226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec89054e616b3ddbaa989329855ef41bb6fb167', '172.105.247.100', 1674832226, '__ci_last_regenerate|i:1674832226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23b2800dadb484348e1301292bbec8687fe72d9', '31.222.203.2', 1674833609, '__ci_last_regenerate|i:1674833609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6117424c065441a2ff749d9ae4f7a4a38ac9de23', '31.222.203.2', 1674833609, '__ci_last_regenerate|i:1674833609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f4702ae36257dd724f836c3bb90e0f62d72257', '31.222.203.2', 1674833609, '__ci_last_regenerate|i:1674833609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57092094df0a7889ded2d55796935ec507c43b24', '31.222.203.2', 1674833609, '__ci_last_regenerate|i:1674833609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('576f0c2d07591de9838cbbbc5eb80e9520c7be77', '31.222.203.2', 1674833609, '__ci_last_regenerate|i:1674833609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a142310a3361e685ed0ad45526bc181623a874b3', '31.222.203.2', 1674833609, '__ci_last_regenerate|i:1674833609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b56f01dc0ff014872259cdbea27531e3cfa72b', '212.192.24.22', 1674834460, '__ci_last_regenerate|i:1674834460;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e4ffa43b803473109a38a1e07ed9f84009de209', '212.192.24.22', 1674834462, '__ci_last_regenerate|i:1674834462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9827bbfd277a7831e6be0d322c70255251544733', '212.192.24.22', 1674834462, '__ci_last_regenerate|i:1674834462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acffb1b36760c69a811462ef846bc6717ec54271', '212.192.24.22', 1674834465, '__ci_last_regenerate|i:1674834465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f344fd92f73486525e62d58dce5f6adfe135945f', '31.222.203.2', 1674835465, '__ci_last_regenerate|i:1674835465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75234440bb6df4e789cbd3a6a42ea9547dc3cb7a', '31.222.203.2', 1674835465, '__ci_last_regenerate|i:1674835465;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317d38e33e2865baeec9d938120c95341ef186ce', '31.222.203.2', 1674835465, '__ci_last_regenerate|i:1674835465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5c3e20d44b381cd054523c9e8a5fe62b974d65', '31.222.203.2', 1674835465, '__ci_last_regenerate|i:1674835465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e924b2a53298ba73bda8a9b5048e4ac6bf1a87', '31.222.203.2', 1674835465, '__ci_last_regenerate|i:1674835465;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b2113cf96acb6d360ae7a7f335f2707c24cf80', '31.222.203.2', 1674835465, '__ci_last_regenerate|i:1674835465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa87228389e7b46cbfb584995b3cc56496a51b1', '172.105.247.100', 1674836420, '__ci_last_regenerate|i:1674836420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a78df4878b7edbcb350000c19e21f442c05105', '172.105.247.100', 1674836421, '__ci_last_regenerate|i:1674836421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7795379da3ec6faa2190ab69c95a08e507c8e72', '172.105.247.100', 1674836421, '__ci_last_regenerate|i:1674836421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a797d749a8934b6eece317a2b64c2e65aeea2e83', '172.105.247.100', 1674836421, '__ci_last_regenerate|i:1674836421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb29574feee93ce4a4abfd4f49381a2c3a304f10', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b546a090dfbdcbfc1c729f2222b08e98235ec0', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bfecd1e97d415a00c8fcb1476b981eb7672fcbc', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b4dc550b618a9d96346c8cf72635614342503f', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75737ab534e8ae4eead79e8e2595dad591df7e5d', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395c9dfc5108608d0ea13bd27907c76ac323c787', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc75b654ba6118f8620d82da0a4e6d808f621a7a', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97b36906a7c74fae49ffe286361a74f306498ffb', '172.105.247.100', 1674836422, '__ci_last_regenerate|i:1674836422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea29087dd1affe9e379059ff341977d7c45e473', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690f3b1f64b7679e0f342e2b336228af9477e686', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eddcb7e17e99fd006e0d6509a9a6ffaf636b5328', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9747b5dd4c601a981a2fa91ae5e8e99a54ec884a', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309f7a6832aa83b00b7333736c67c55517721880', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90773bfdb578ab1aed8c6e17c7ef8890ecd3b498', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('443a4700d3458d013245eba05044b25aef23320d', '172.105.247.100', 1674836423, '__ci_last_regenerate|i:1674836423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ff949c7b275933595b525bba4be68a51ee673c', '172.105.247.100', 1674836424, '__ci_last_regenerate|i:1674836423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552b8d2bc0e5d1cfa60288047723b89c1f2f99a0', '172.105.247.100', 1674836424, '__ci_last_regenerate|i:1674836424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd44955ec1e42e43c77d728730f4e13253a5158', '172.105.247.100', 1674836424, '__ci_last_regenerate|i:1674836424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f9b17e9a407e596e49f95d9525636a43f7c8b0', '172.105.247.100', 1674836424, '__ci_last_regenerate|i:1674836424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3880a68ea1669d7f7fc54fedb2cf34582a8800', '172.105.247.100', 1674836424, '__ci_last_regenerate|i:1674836424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a3d5b0ea8d8efbcea8fb8a6186ab0855ab42aa', '172.105.247.100', 1674840621, '__ci_last_regenerate|i:1674840621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5a19a56e16f04fa1517ce4395de8ab33c94f05', '172.105.247.100', 1674840621, '__ci_last_regenerate|i:1674840621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76031e3babb574be131432df2cc52eca66d47aca', '172.105.247.100', 1674840621, '__ci_last_regenerate|i:1674840621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94328c3f3c093a248fdb6e4b8c733cc9b15a4b4b', '172.105.247.100', 1674840621, '__ci_last_regenerate|i:1674840621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a311c9e0507170c026f8ffd5b9257fcf6cb5589a', '172.105.247.100', 1674840621, '__ci_last_regenerate|i:1674840621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e3c179897f8eab41c1077734f0b564106a2645', '172.105.247.100', 1674840621, '__ci_last_regenerate|i:1674840621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8026807324ec1e30fcdefea0e700b0a804d3654', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9a50038628926fabb6b3133e012001d414e713', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ad60e5e3227bf808cc4bf1dd707e01fcddaddb', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc737f17069883b9f37fbe5462699dbf7dbb305', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f787ed986a3aca82553fcee986aa151a90f08e1d', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ba0a3a22c688381b34337a96ad5c97e60820bb', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df46fea73076f1d538106b842fe579f0c51e3f4a', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a63b0f7bc70b3ce65a6cc923db6e23c8b88f73', '172.105.247.100', 1674840622, '__ci_last_regenerate|i:1674840622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551d9f00ba7fa3884e3d205ad2eccefece77d8af', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ae4b4d84a43417fd3158dea3e2c7debdb41dfc', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aab5fb751eb6954bbf28907cb9ba9aa172479c6', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643feae0ad550ab9de6afb111d72285ace8ca6ca', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65097b7929fcf78dde04cc9eaee4981be3f69f3e', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4792811523fa4f40e633badbc3fffed42cd6e751', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('300bc621dd31ebd8a45aeeb225d365c3049e3af0', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6905c8dd0912bfb39ec77c8547837e74b3808984', '172.105.247.100', 1674840623, '__ci_last_regenerate|i:1674840623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b79adcd8f4e475098db30e72006bc248d83cd9', '172.105.247.100', 1674840624, '__ci_last_regenerate|i:1674840624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51578e5ef458da39ea19c82a5325d760979a6d72', '172.105.247.100', 1674840624, '__ci_last_regenerate|i:1674840624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07525f67d81d9e96625323a7e1d36d64578800f0', '31.222.203.2', 1674844399, '__ci_last_regenerate|i:1674844399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20de0ea39aa206e8436bd9a3d9947332b1f015f5', '31.222.203.2', 1674844399, '__ci_last_regenerate|i:1674844399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86f409fc15ea559624858f16694fff64189d87e', '31.222.203.2', 1674844399, '__ci_last_regenerate|i:1674844399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bece495abf41df25d4800c2ecd8dca0752b0c019', '31.222.203.2', 1674844399, '__ci_last_regenerate|i:1674844399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ecd48e58788e9553f05952d4e80ce668e6cadf', '31.222.203.2', 1674844399, '__ci_last_regenerate|i:1674844399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebdf57bb4f4c0d58d9a5e5fa69212add85135311', '31.222.203.2', 1674844399, '__ci_last_regenerate|i:1674844399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6baf6e416c141ca97bb2f5945513aa492b87077f', '172.105.247.100', 1674845421, '__ci_last_regenerate|i:1674845421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddbbf80dab7cf746d275c62e4c724c5e7cf0a88', '172.105.247.100', 1674845422, '__ci_last_regenerate|i:1674845422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b190e8c6a08d36440f00c165b404f481a23e14', '172.105.247.100', 1674845424, '__ci_last_regenerate|i:1674845424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95228f358c4a8e7f5f01add0e14ab823917444a', '172.105.247.100', 1674845424, '__ci_last_regenerate|i:1674845424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c108c42583f792814067e44a7ebe0b5497961b8', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f02be77d6354546203a4a8232a3c5c6ca509f484', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbbe43b1d15a0369dc5676877045c9726845093', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020f3a62677151c73dd1f0814ee9238022a78a62', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8feb199daf25694014b8cc65a88bb68ccf6a82fd', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd40263e06158e5420e3c33d0d631aae7aaa895', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d1023b08d55ed62799f22d702106f8828857f4', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('780d8609adfa32b8678cc90c1732e78201f29133', '172.105.247.100', 1674845425, '__ci_last_regenerate|i:1674845425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75fd11116592d27d917a3110d8a4136869189571', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d63c6ec670e2c19b8f54318b9fe3fab9775608', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1498de7d61eae2d17f68c391072b2af067acde05', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8fd4e70568e87954dee600bc24eaaa13d863e8', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d1d06dd03d248d6b0afb1a07dcaebae8ce3a00', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fad92622817b4325782c141b0b7348fc8e2c41', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26fd8748352c98cd0538c1118a867800836301e1', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10bc4e460fc1b537353d1967bbd12d875ffad38', '172.105.247.100', 1674845426, '__ci_last_regenerate|i:1674845426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3860f2bf46747782c56590bd490582d90c6c331', '172.105.247.100', 1674845427, '__ci_last_regenerate|i:1674845427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438dbad61420a1feac1e458b6caaca4ef09db908', '172.105.247.100', 1674845427, '__ci_last_regenerate|i:1674845427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6ccb204710c1180e05829fa58a83dde2d7e97e', '172.105.247.100', 1674845427, '__ci_last_regenerate|i:1674845427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99cd552d6f7b89a9462ecab0cdd8c06c63fa8d4', '172.105.247.100', 1674845427, '__ci_last_regenerate|i:1674845427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7ca4c229c2913cfaae7762877860471897cc96', '31.222.203.2', 1674846265, '__ci_last_regenerate|i:1674846265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31db80badc3a8a7fd34cc1afc937e32cacfcb8f', '31.222.203.2', 1674846265, '__ci_last_regenerate|i:1674846265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f1ffaec1499bd751d06742bdebb4b15ff5dd32', '31.222.203.2', 1674846265, '__ci_last_regenerate|i:1674846265;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1cd368cdfa297022417145b8eb9b71315f9d8f9', '31.222.203.2', 1674846265, '__ci_last_regenerate|i:1674846265;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c64d807945debbec920c80b8d53425d69d93e64', '31.222.203.2', 1674846265, '__ci_last_regenerate|i:1674846265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc8278471247cd66a3dda4a96e08e526462e2163', '31.222.203.2', 1674846265, '__ci_last_regenerate|i:1674846265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a138099b962a1942cf5abd470e0a689ddfd6f5', '172.105.247.100', 1674850220, '__ci_last_regenerate|i:1674850220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9789f0f99144f7e1b1066e2a63e5f3084589c607', '172.105.247.100', 1674850220, '__ci_last_regenerate|i:1674850220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90610a8fb9052ad1dae09c70561e5333acb7182', '172.105.247.100', 1674850220, '__ci_last_regenerate|i:1674850220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6310daedeee611f815d157e46c0852b45661f9', '172.105.247.100', 1674850220, '__ci_last_regenerate|i:1674850220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec28963cf8d79252915b0e65db834f46eeb0e283', '172.105.247.100', 1674850220, '__ci_last_regenerate|i:1674850220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c403123bd64bdd705ec3d55e6e1088b14f2aca1', '172.105.247.100', 1674850220, '__ci_last_regenerate|i:1674850220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19604f667bc19b72f94f02d6f29df7bd1cc4fd90', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2483b7825fc17b364cb99dfb003aa651324dae4', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd6b645ba4718f87ccf808beac87f73ee970356', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88790b804c77ecf46234e6663f96db2805147cd3', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b9833641a058a612c5c56dc5230e9c52d7efa9', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fb06589e6a49a42d02e361170679dfe1f439554', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29dbe54b90184939e5fe64126d262f22b590cc9', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1815ba49835534e09e56ef94d5a9fd309fbf5be', '172.105.247.100', 1674850221, '__ci_last_regenerate|i:1674850221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63417fbc80dd8d49e3b8a311034f2068017332ca', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc5e838a0d6fc612b94dcbcc6b2d95246977a0c', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20881762e5c1705613b79cbc33569d93ac4f5b63', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd4bb0bf7932ec73d44e79adc1c3ec61c228acb', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27bc90f490d881af35cb135ba8ac480541676cc0', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44eb084ed53ef2997eaa8db4d4f7c2881f69793f', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29032d808265efd86fb767cf94113f49c7450d4', '172.105.247.100', 1674850222, '__ci_last_regenerate|i:1674850222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4bb23cd8738a2ce0d857d4c2eee243e116af63', '172.105.247.100', 1674850223, '__ci_last_regenerate|i:1674850223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a2dcd3c27772155d8f04d94db08bd58ff27acf1', '172.105.247.100', 1674850223, '__ci_last_regenerate|i:1674850223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9656e3a6db807c39242f9667400901695207824', '172.105.247.100', 1674850223, '__ci_last_regenerate|i:1674850223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a32efe222fcc42e8f01f545fa68d32d9fc55d3cf', '31.222.203.2', 1674850236, '__ci_last_regenerate|i:1674850236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b867d4f50e7264c78687bdea2cc2adf799811ddd', '31.222.203.2', 1674850238, '__ci_last_regenerate|i:1674850238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6431eda471a4b7e0b26d82c08cb9ea089e817e2b', '31.222.203.2', 1674850238, '__ci_last_regenerate|i:1674850238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a7cded5fc012779243a3305732c002abc25331', '31.222.203.2', 1674850238, '__ci_last_regenerate|i:1674850238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0da859b461bcb1dbbc1613e140ad2f41903187', '31.222.203.2', 1674850238, '__ci_last_regenerate|i:1674850238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38131f129aac7bb5b63ca0cd9e17d8a0a4e3cc6c', '31.222.203.2', 1674850238, '__ci_last_regenerate|i:1674850238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8b2c524e9cb9b2a5947e77ae466ff23d271f6f', '31.222.203.2', 1674852143, '__ci_last_regenerate|i:1674852143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a38c43d8027919c8b3b406a5b9a66235c18478', '31.222.203.2', 1674852143, '__ci_last_regenerate|i:1674852143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8a9912c21baee6552b8fc3b3742aeca9ae324e', '31.222.203.2', 1674852143, '__ci_last_regenerate|i:1674852143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c993ea3aa050da2a72d77ba3799f057c14030b0', '31.222.203.2', 1674852143, '__ci_last_regenerate|i:1674852143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2a4003d3c142b1beaf8101128f1fa20dbd9dce', '31.222.203.2', 1674852143, '__ci_last_regenerate|i:1674852143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d3f870773bf2111caf65d9ec87f35e82860fee', '31.222.203.2', 1674852143, '__ci_last_regenerate|i:1674852143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6942d0c626fa3d9cfd90f6047c608c5278ee3655', '172.105.247.100', 1674854424, '__ci_last_regenerate|i:1674854424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d749c8db87a773cc80ebd565eab264ad2423707', '172.105.247.100', 1674854426, '__ci_last_regenerate|i:1674854426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401b0ab6471725b0574731c3dbd50c99a4f82f7b', '172.105.247.100', 1674854427, '__ci_last_regenerate|i:1674854427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f700e4e5df3c1c007fa3772b5eee0d375df5182', '172.105.247.100', 1674854427, '__ci_last_regenerate|i:1674854427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97e0a1b01310e3855bdfc42b044e77c9f905a26', '172.105.247.100', 1674854427, '__ci_last_regenerate|i:1674854427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d209eee5a8e0103ddcb9553fe5271c4c5798a2f', '172.105.247.100', 1674854427, '__ci_last_regenerate|i:1674854427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cbe62930123879efab1190b8b33c33d02f6335', '172.105.247.100', 1674854428, '__ci_last_regenerate|i:1674854428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb32a5cdfe28efa33fc7f686999e700770c73b79', '172.105.247.100', 1674854428, '__ci_last_regenerate|i:1674854428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc49ba3641c9fa95dc1c5edea7bb863ceed8c310', '172.105.247.100', 1674854428, '__ci_last_regenerate|i:1674854428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1872cc85fd46d95b6a782cb50de94f0f13ebe65', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54be60dd48c557ec1b5a2271387ea8b0a68c67e5', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b3d608f7ecf0ed3696b8ef83457c969541778a', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5774eeb0c493a8cb449aaf8975bc3b26b61fa41', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51df9fd43809e494f8b6dd3f2ba5bf4e7ba4845', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36802bb992add5cc2043fb17638999a448851cd', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b100a277d8bfaea08db01742ee81ac0d34b6d80', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8e8b1a3662252b9348df4210f3d5b75247e0da', '172.105.247.100', 1674854429, '__ci_last_regenerate|i:1674854429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4329d34dd6385bbf32933c12ef52d48a81e72099', '172.105.247.100', 1674854430, '__ci_last_regenerate|i:1674854430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb319298a994fadb2609a4ea14eeb17c195e008', '172.105.247.100', 1674854430, '__ci_last_regenerate|i:1674854430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5b526b64bbda53a019a0c916ec163befca9917', '172.105.247.100', 1674854430, '__ci_last_regenerate|i:1674854430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f5d33f23de149388a116b730f559f8635c0ed8', '172.105.247.100', 1674854430, '__ci_last_regenerate|i:1674854430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0630dbef1314e3d5b18ac7cd0c51a86498b4316a', '172.105.247.100', 1674854431, '__ci_last_regenerate|i:1674854431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad8fbb9bbba1346058453bf44c1f1cab9ba5a53', '172.105.247.100', 1674854431, '__ci_last_regenerate|i:1674854431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('062102ce1f8c29295056649049e232ac88bcb22a', '172.105.247.100', 1674854431, '__ci_last_regenerate|i:1674854431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0722afde5ef7ffbecb9a9467683ab42b7f31381e', '31.222.203.2', 1674857006, '__ci_last_regenerate|i:1674857006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1176ab6c1f69b9874f095c492ca102459a58ac0a', '31.222.203.2', 1674857006, '__ci_last_regenerate|i:1674857006;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c41787d1911328d901490d438d37c863a09e4b9', '31.222.203.2', 1674857006, '__ci_last_regenerate|i:1674857006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d800f96f62d0c0f99ad2cef05649fa47375b7885', '31.222.203.2', 1674857007, '__ci_last_regenerate|i:1674857007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13bb10e6afb3176178127d839320f69d3bc5e1b', '31.222.203.2', 1674857007, '__ci_last_regenerate|i:1674857007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ae67b26861c150748c5637024db26ae68824eb', '31.222.203.2', 1674857007, '__ci_last_regenerate|i:1674857007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24a69d1910c59cf531fa8e09e2b87ecc838e1c7', '172.105.247.100', 1674859221, '__ci_last_regenerate|i:1674859221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be465ff37e97dc3dbf105ff0ef9a45240d6a38b3', '172.105.247.100', 1674859222, '__ci_last_regenerate|i:1674859222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba11eac106e24e89707b244367344937b33af7ec', '172.105.247.100', 1674859222, '__ci_last_regenerate|i:1674859222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a519083cf580c96c11ceafa02d05342d1397f9', '172.105.247.100', 1674859222, '__ci_last_regenerate|i:1674859222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c13c53d7420bcf768a177423bb4a0e232dc116ee', '172.105.247.100', 1674859222, '__ci_last_regenerate|i:1674859222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55af37d42a3dacd58b73fc0b936a0a377a6ed9a6', '172.105.247.100', 1674859223, '__ci_last_regenerate|i:1674859223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3849669073c2293e1e2c584c8cb8c4ad57375ee', '172.105.247.100', 1674859223, '__ci_last_regenerate|i:1674859223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2006122e38f00632fea97736f1f8576c7741a844', '172.105.247.100', 1674859223, '__ci_last_regenerate|i:1674859223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5ac701f33454f53ea97becebaf1fe1e183cf29', '172.105.247.100', 1674859223, '__ci_last_regenerate|i:1674859223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ed96f4a28b825e2cd7dca7da0949a628e2169f', '172.105.247.100', 1674859223, '__ci_last_regenerate|i:1674859223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f24799aa100ac83caadabd90b2a6c0fc96156c3', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f5d4f34b7b75cc835882e193148dbf6fbba2fd', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b8aa6a8c69429ae4fca2718c2e6f144338ac86', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b352cc96ba2b9abf1e16350dd597884b627be3', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dac7d2e11d9e87df2794b5125d22be990eed3b1', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84b47964ac98fa211ea8c8aadbb2281fda1c804', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b79fbbdd53ea4c7b77c1666114c806080f53e7', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0147a97fb071a8f0b05247e0269d1ede116485', '172.105.247.100', 1674859224, '__ci_last_regenerate|i:1674859224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c67eb7a577b9409f8a489d4083993f02f3093f5', '172.105.247.100', 1674859225, '__ci_last_regenerate|i:1674859225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d29ddb48a63a034a27a3c308bd913f361c031d4', '172.105.247.100', 1674859225, '__ci_last_regenerate|i:1674859225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73948fc9ef13ed7b361be8fa627dc1e1f0fb449', '172.105.247.100', 1674859225, '__ci_last_regenerate|i:1674859225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1bee30a818e79054e8dd9d2efbe7bf1f7e438d', '172.105.247.100', 1674859225, '__ci_last_regenerate|i:1674859225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b95ea5574b2f55f7ad9735b3a48c00ed74b9f082', '172.105.247.100', 1674859226, '__ci_last_regenerate|i:1674859226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e15d3afa278d9eee4cbad0308b35e3dfea9206', '172.105.247.100', 1674859226, '__ci_last_regenerate|i:1674859226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc32e726200a4546b966a2fc624bbee28e8ea19', '69.4.87.74', 1674860503, '__ci_last_regenerate|i:1674860503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efd27f8bec82bda898b1f9bf1d3ce3f4012aa25', '69.4.87.74', 1674860503, '__ci_last_regenerate|i:1674860503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f17c6426cb703d59dbd13c7ab9246215b6090263', '69.4.87.74', 1674860504, '__ci_last_regenerate|i:1674860504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6457dc8a1b6157bf608dffaa92fa42a73f000ef', '69.4.87.74', 1674860504, '__ci_last_regenerate|i:1674860504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21050ed7cc8fe83a8e86b888fd4ab01e45f1109a', '199.195.250.129', 1674861725, '__ci_last_regenerate|i:1674861725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782613c064ec6f98808a5296fc8cc34fbff25610', '199.195.250.129', 1674861727, '__ci_last_regenerate|i:1674861727;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83eb98db5d418580f77cc914caa6df7c9414f620', '199.195.250.129', 1674861728, '__ci_last_regenerate|i:1674861728;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c037970fe1c091f5e2b7b7bc4703e787b51dedc', '172.105.247.100', 1674865224, '__ci_last_regenerate|i:1674865224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3332edd6e404f4f7986cffd4a1b0c9bde3174ffa', '172.105.247.100', 1674865224, '__ci_last_regenerate|i:1674865224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9a709acc5494327eda32e310e227c8537ec093', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a9a781cd2ad5bf8105918c44f7d9e56221a6d2', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e23b7c2c037afc69dcbea93241a304f0ed6b2a', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f47bcc26232a2f1aa7857f3a86413dea867cf65', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('270e27e1d832078b0ad175fcb22585580859f2dd', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a0e4f8d0e2bcfca8e8f4cbe3d72e94dc3c6bbd', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40240f2b09ae3db8d3e75c7d154ae0f66fd580cd', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fdac3500776afd10e90eca7cd1966e0262f8be7', '172.105.247.100', 1674865227, '__ci_last_regenerate|i:1674865227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8857e2128e3a90ec8546d34141eb6b11428829', '172.105.247.100', 1674865228, '__ci_last_regenerate|i:1674865228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5473373daf2e0e3c4238861eedc4de1a409ec1', '172.105.247.100', 1674865228, '__ci_last_regenerate|i:1674865228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de9807544d5573b03158e3060ec2503356c99da', '172.105.247.100', 1674865228, '__ci_last_regenerate|i:1674865228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f23dc1c29264d0ae5e747af5996f92ebb128cd', '172.105.247.100', 1674865228, '__ci_last_regenerate|i:1674865228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f79b9b1576a11af338ccb1bab12e6aebb4b19c', '172.105.247.100', 1674865228, '__ci_last_regenerate|i:1674865228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9b8abc1d7cab0c03ff7f9d7d653ce03f77cec2', '172.105.247.100', 1674865228, '__ci_last_regenerate|i:1674865228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a9230f5827337240772f7e48a380db86a73171c', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('237ff44876e2f2d35b5720c1a0c52afca17b7a8e', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80e34f4766ed3616506a18a78a112961bd8f264', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169d1836acb652c1cb4b1c93f6f36328258d4906', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9746a196726b0031c44339498561be4638a8e234', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc331795dc5e18953ebc58b196e442e2b621133', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89101fc2f737278c5eab3abfd605f22134d4f46b', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552e71f213a42a33e6bf1495dbabfe4fe29daacf', '172.105.247.100', 1674865229, '__ci_last_regenerate|i:1674865229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6851ac9047dee92a807d930b8cc7211c12f8db83', '31.222.203.2', 1674866015, '__ci_last_regenerate|i:1674866015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654480037bbb3fe1faa4536e0ab9f3d8df3289a3', '31.222.203.2', 1674866015, '__ci_last_regenerate|i:1674866015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01389d321060743925f9eb62858f3b21747a1334', '31.222.203.2', 1674866015, '__ci_last_regenerate|i:1674866015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1150c22c566c3c264ebe0c4b6603b02e44db40', '31.222.203.2', 1674866015, '__ci_last_regenerate|i:1674866015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12ee9eac2a7c44884c283e232eb4dfb9398ab83', '31.222.203.2', 1674866015, '__ci_last_regenerate|i:1674866015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a72dc21355a5080fb4f676f0edfce0636ccf88b', '31.222.203.2', 1674866015, '__ci_last_regenerate|i:1674866015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148fb223cc159f62f6af5ba5b0c887c876d86aa9', '31.222.203.2', 1674867861, '__ci_last_regenerate|i:1674867861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab38d45742cae7ea43372ac857016e8ba5ccc61', '31.222.203.2', 1674867863, '__ci_last_regenerate|i:1674867863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433b3756429a9e8edd6b7050c6ad3d95fccf79a9', '31.222.203.2', 1674867863, '__ci_last_regenerate|i:1674867863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2118acbf4e6c64c5b96d5ef9af8b7f5bdd916449', '31.222.203.2', 1674867863, '__ci_last_regenerate|i:1674867863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ed3490afa182c9469b442b1621cc0f9899462b', '31.222.203.2', 1674867863, '__ci_last_regenerate|i:1674867863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb58071ece5bd707b3c229af49bc53fb0107cf93', '31.222.203.2', 1674867863, '__ci_last_regenerate|i:1674867863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b006575a8f125c1b6217753e95db786147b837', '172.105.247.100', 1674870620, '__ci_last_regenerate|i:1674870620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3df6ced9d089f1e304ffe134178c13de69f4f41', '172.105.247.100', 1674870620, '__ci_last_regenerate|i:1674870620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c6cfe9b02a655c78e589aae20416809e020cab', '172.105.247.100', 1674870621, '__ci_last_regenerate|i:1674870621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ba5fe2940f2f98da315d9b6cb9b1e20045a6953', '172.105.247.100', 1674870621, '__ci_last_regenerate|i:1674870621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb458cabbc7e6fb23bec4e29a87d91b55931cb5', '172.105.247.100', 1674870621, '__ci_last_regenerate|i:1674870621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d07032b3e532032de6856cbd1f0dbc40d2f0d7c', '172.105.247.100', 1674870621, '__ci_last_regenerate|i:1674870621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f6b0652192a9e528199f78925f17628e5e80a7', '172.105.247.100', 1674870622, '__ci_last_regenerate|i:1674870622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8fdddcd5b8e8314152b3ad4b8b886b943c1570', '172.105.247.100', 1674870622, '__ci_last_regenerate|i:1674870622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d08091d35ebc262cdeda9875f574945e1257d8', '172.105.247.100', 1674870622, '__ci_last_regenerate|i:1674870622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1bb69ba1d1ad922b57b7e242ead1a2cc68c7158', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d701c35f04ee977f97de934681a06f3bff65dd85', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d7e740aa50c617fc1a9d3d57e704221b60bd9b', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8522d96d02f0ef944c158765dc3c0262914e05', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fcea9f49648aee1f248ef38aebe730a1516162e', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c37af68f94c60442072e8b2062aaa32d994ffe', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('757df8694eb96af3088d276a32a78c9a66b393a1', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5819da0445d5e59c7a6faf199d9945dda4c9536e', '172.105.247.100', 1674870623, '__ci_last_regenerate|i:1674870623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b17698d9dc7567ba22733a5e8b358bc45df2f83', '172.105.247.100', 1674870624, '__ci_last_regenerate|i:1674870623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c1d1499f4504c9298a30f95261a71ad5a8e010', '172.105.247.100', 1674870624, '__ci_last_regenerate|i:1674870624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82aa58f9c9b58e5890f9587170d88f075cbf0625', '172.105.247.100', 1674870624, '__ci_last_regenerate|i:1674870624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af149470876fbcbd67ed19906dee7a8aaeb352e', '172.105.247.100', 1674870624, '__ci_last_regenerate|i:1674870624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a436c042772e7991c87ed63659372a840656385c', '172.105.247.100', 1674870625, '__ci_last_regenerate|i:1674870625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310c64bf87cac8254d331a186724866ccbb799b6', '172.105.247.100', 1674870625, '__ci_last_regenerate|i:1674870625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1b015f9e1eca3ab8d792d79e7a618f6527db0d', '172.105.247.100', 1674870625, '__ci_last_regenerate|i:1674870625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0367ee5d37109efeaeae085fca97e0601a9dce', '172.105.247.100', 1674875421, '__ci_last_regenerate|i:1674875421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9427b5e9d308a4ff9e59ddc60a0e8cdb15076fc5', '172.105.247.100', 1674875421, '__ci_last_regenerate|i:1674875421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536e0184292835f4d1e8466c1306c3c211d66dac', '172.105.247.100', 1674875421, '__ci_last_regenerate|i:1674875421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('209c10455bdd7753321c64db556ee5fde34fd7b5', '172.105.247.100', 1674875421, '__ci_last_regenerate|i:1674875421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f288c3631ff6c9a83029c575dd91ec48eb5e5fea', '172.105.247.100', 1674875421, '__ci_last_regenerate|i:1674875421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839dfd34d8933faac2496ac2d321ca5c175b546c', '172.105.247.100', 1674875421, '__ci_last_regenerate|i:1674875421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda8644bcf8c819f99dd226ae74f383e3c2af92b', '172.105.247.100', 1674875422, '__ci_last_regenerate|i:1674875422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d2b4118b0f90a06293b22d15eb8c411044ab153', '172.105.247.100', 1674875422, '__ci_last_regenerate|i:1674875422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d741b5010382b460b42b7c2571701b39e21c5139', '172.105.247.100', 1674875422, '__ci_last_regenerate|i:1674875422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3b6076ed3ee02157cba6fa8591ec08a63c14f9', '172.105.247.100', 1674875422, '__ci_last_regenerate|i:1674875422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed45b4b0dead4daf7847968838f0d2073bec80d', '172.105.247.100', 1674875422, '__ci_last_regenerate|i:1674875422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('026151e26142ea8c6d1dbc297b636053c66642f4', '172.105.247.100', 1674875422, '__ci_last_regenerate|i:1674875422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635ed3a5973408885dd99386dbfafa32554aa92e', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f737558a6054187ca1204f8bdaced3df606766a1', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af3c2173de1070f564014ef5788bbf7e40f90c38', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c45130ba6eed472754663b8f99a70e4d9395f9b', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7102088369a2cf27235f6cb563b46de7036a649e', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5207b10853e548751419b35f707ce13efd82ea07', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb9b00b9cbca426c06b6960e6c0dcf4074ed08e7', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00eee054f329a2292e267822c03e41113b8394fb', '172.105.247.100', 1674875423, '__ci_last_regenerate|i:1674875423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5ed063f0bfe3884b2cce8023ff86afb8d48d3a', '172.105.247.100', 1674875424, '__ci_last_regenerate|i:1674875424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc34d7e425bd10e016cc698a2b1fc26710cfb62', '172.105.247.100', 1674875424, '__ci_last_regenerate|i:1674875424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40b0b5e004471c1044f4969ed4451ec0d78de57', '172.105.247.100', 1674875424, '__ci_last_regenerate|i:1674875424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('845ee6dfad53120bda9a8f0e7cfc074b2c637fa6', '172.105.247.100', 1674875424, '__ci_last_regenerate|i:1674875424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e888e7b3e21a88eaf509114a491a117294cd7160', '31.222.203.2', 1674878608, '__ci_last_regenerate|i:1674878608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f192dff2a8f9a73d12bdf590ff325a2ae8081a', '31.222.203.2', 1674878608, '__ci_last_regenerate|i:1674878608;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f93b1905b92a1e8c14b59006a3189069bc8f13', '31.222.203.2', 1674878608, '__ci_last_regenerate|i:1674878608;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa8c7758e8497a6a7e6c05dbf2e04c66480144f', '31.222.203.2', 1674878610, '__ci_last_regenerate|i:1674878610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d717377028f5f9d3fa390be66541d7d16fc77b39', '31.222.203.2', 1674878610, '__ci_last_regenerate|i:1674878610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc90480063907cace4729818f6b2207237dab8c2', '31.222.203.2', 1674878610, '__ci_last_regenerate|i:1674878610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c7bb93e327c7e80496bd1c4375833a5fe4d0f0', '172.105.247.100', 1674880222, '__ci_last_regenerate|i:1674880222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a8d69ecd8ebd7bd8cc407627910c2d61902d4f3', '172.105.247.100', 1674880223, '__ci_last_regenerate|i:1674880223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b13dd5fec650f8cbb83c9c580eb05ed7100c9ca', '172.105.247.100', 1674880223, '__ci_last_regenerate|i:1674880223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f4d7e481173875888041a0b24a4ff8ab879e8a', '172.105.247.100', 1674880223, '__ci_last_regenerate|i:1674880223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('436a1fa78a718776cedb61702129c02b4503c30e', '172.105.247.100', 1674880223, '__ci_last_regenerate|i:1674880223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818887cd7f0a1a16c1b840b18252b82c0d30295b', '172.105.247.100', 1674880224, '__ci_last_regenerate|i:1674880224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f066c09e26d32c145ae76c854aa0a02b37a585', '172.105.247.100', 1674880224, '__ci_last_regenerate|i:1674880224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f10744edde6d9446eebbda2eeff16b7eb2bdc7', '172.105.247.100', 1674880224, '__ci_last_regenerate|i:1674880224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd066fdf5c4ce7bb7c9fa97e110824b5f35d47d', '172.105.247.100', 1674880225, '__ci_last_regenerate|i:1674880225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa9fa7a5a55c98bc8e5f37b04316c05cbf6fee2', '172.105.247.100', 1674880225, '__ci_last_regenerate|i:1674880225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9861c98b2f585d33a72b2ce381fde8e8457d2fda', '172.105.247.100', 1674880225, '__ci_last_regenerate|i:1674880225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf01ea1fe8254b1f4d4d95212dcc538284c2267', '172.105.247.100', 1674880225, '__ci_last_regenerate|i:1674880225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763f7d683ea276dd668f376db633be0d941eb0fb', '172.105.247.100', 1674880227, '__ci_last_regenerate|i:1674880227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de42b21f4a9385fa4e3f0b9cb621e931206b2553', '172.105.247.100', 1674880227, '__ci_last_regenerate|i:1674880227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3037c52d0a1e524940ce629b4fb15a634fade27e', '172.105.247.100', 1674880228, '__ci_last_regenerate|i:1674880228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4afbab58517f5bdb697e3641ac82f3da7dd7103', '172.105.247.100', 1674880228, '__ci_last_regenerate|i:1674880228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7451fb7943b71be914a0270a71fd44e1c645a81e', '172.105.247.100', 1674880228, '__ci_last_regenerate|i:1674880228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38d628c38b1ee888d78061e78afe79be991c1c8', '172.105.247.100', 1674880228, '__ci_last_regenerate|i:1674880228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c9a38563884df63687029c73c393954d9f136e', '172.105.247.100', 1674880229, '__ci_last_regenerate|i:1674880229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db900dea94866d943b31bd999d4add12beb581be', '172.105.247.100', 1674880229, '__ci_last_regenerate|i:1674880229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a572531353d979a3a3555f2f736cbf364221e2', '172.105.247.100', 1674880229, '__ci_last_regenerate|i:1674880229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6f4e3248cc3c709e2bdc72fd43ff61b192a934', '172.105.247.100', 1674880229, '__ci_last_regenerate|i:1674880229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3e6da89580421e3a41e764aca8a41f246c69a6', '172.105.247.100', 1674880230, '__ci_last_regenerate|i:1674880230;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0382c6ad686709a2be41c916e6373ad8239b49dc', '172.105.247.100', 1674880230, '__ci_last_regenerate|i:1674880230;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73493a8123b76888640f5d4ae75dbd875759745', '31.222.203.2', 1674880460, '__ci_last_regenerate|i:1674880460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99bbcd0d7ab9886a6c1de4f7ad88273cd7b0bf4', '31.222.203.2', 1674880460, '__ci_last_regenerate|i:1674880460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2db429b0a4ae228126af700b8322b405e36a56', '31.222.203.2', 1674880460, '__ci_last_regenerate|i:1674880460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008c8c95d3fbafa10d701af8fd58c3923414e416', '31.222.203.2', 1674880460, '__ci_last_regenerate|i:1674880460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7158803adf2c7df135b68dfb40011a992962e2c', '31.222.203.2', 1674880460, '__ci_last_regenerate|i:1674880460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952ef53a392fd840e5611ede756530e54c9fb413', '31.222.203.2', 1674880460, '__ci_last_regenerate|i:1674880460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109a8b8c2e26d131c9ae86f1f4b4f6fe2790443c', '116.204.230.26', 1674881715, '__ci_last_regenerate|i:1674881529;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674717120\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2050bec1c2bf67fe2691cbb935d560bf8ce90b8b', '172.105.247.100', 1674885022, '__ci_last_regenerate|i:1674885022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f4efcef2ed71104bbbc47c9c4b45eec9593bc67', '172.105.247.100', 1674885023, '__ci_last_regenerate|i:1674885023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12245c21d0faea55ce54b58206d38c9445f6a23d', '172.105.247.100', 1674885023, '__ci_last_regenerate|i:1674885023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62910bd3538e8dcc5253907cbab6fa4ebb4f1e2b', '172.105.247.100', 1674885023, '__ci_last_regenerate|i:1674885023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8f33b25ef9263f7af29aaac93469ddee769abe', '172.105.247.100', 1674885023, '__ci_last_regenerate|i:1674885023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241338f3b4a6e2b0e2d005db9d94c07c9eebc5ba', '172.105.247.100', 1674885024, '__ci_last_regenerate|i:1674885023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b05f60bff6b380e4683276576d34970ecdbadae', '172.105.247.100', 1674885024, '__ci_last_regenerate|i:1674885024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b16cf8a391eb62876f08066ce8b17967dc61d5', '172.105.247.100', 1674885024, '__ci_last_regenerate|i:1674885024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e727885876330f03fdd9a8ec837a066e75d6b0', '172.105.247.100', 1674885024, '__ci_last_regenerate|i:1674885024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63eb0634d16e9401de49d3c19306904c758bd29f', '172.105.247.100', 1674885025, '__ci_last_regenerate|i:1674885025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2bcf54340ff9994c063d60514102f4c942e9f7', '172.105.247.100', 1674885025, '__ci_last_regenerate|i:1674885025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b21731aa1f7d59e0b13fd5c422bc22ec996d70e', '172.105.247.100', 1674885025, '__ci_last_regenerate|i:1674885025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd68bbab68596ed056be8eb0edb0a1299a42edd', '172.105.247.100', 1674885027, '__ci_last_regenerate|i:1674885027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae9f356b28638499dc8409cf8cfc15d0c0629a0', '172.105.247.100', 1674885027, '__ci_last_regenerate|i:1674885027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2347f19f2329fa3dfb8e0b38b3d6b1ad70adf5d9', '172.105.247.100', 1674885027, '__ci_last_regenerate|i:1674885027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f880571b4b7b3c61304e6dfd2edb99c0ce42c0', '172.105.247.100', 1674885027, '__ci_last_regenerate|i:1674885027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae56d1bb62e715f34096c75a0c0f19b02c302654', '172.105.247.100', 1674885027, '__ci_last_regenerate|i:1674885027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1e707df26072862b074e30c2ad0e64c146c0d62', '172.105.247.100', 1674885028, '__ci_last_regenerate|i:1674885028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee58a2c69a7d1fb88e1465db71d43a39c4f4919b', '172.105.247.100', 1674885028, '__ci_last_regenerate|i:1674885028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f506af208499754f05a83e5065d49d6de279f5b8', '172.105.247.100', 1674885028, '__ci_last_regenerate|i:1674885028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a484a5d8c7993f0588d9ff3471b93cddbd99b2', '172.105.247.100', 1674885029, '__ci_last_regenerate|i:1674885029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cc3ee017073cb6bc07a9acf382265939bc3e06', '172.105.247.100', 1674885029, '__ci_last_regenerate|i:1674885029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d018eb2adc260e8f401c5ce756c3feec740f29a', '172.105.247.100', 1674885029, '__ci_last_regenerate|i:1674885029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3495deb318e7cc4ae858f7280c6daa302f1dbb', '172.105.247.100', 1674885029, '__ci_last_regenerate|i:1674885029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c01d8732a76c96f24491a1dce546a840803506', '45.120.39.89', 1674886828, '__ci_last_regenerate|i:1674886828;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674886821;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6312010c2891fb8ed4d01c847528ceae59620e', '45.120.39.89', 1674889374, '__ci_last_regenerate|i:1674889374;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674886821;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2db525bf825fc27bcace1e123f1a7881479c21c', '176.53.220.182', 1674888142, '__ci_last_regenerate|i:1674888142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9bf0fa17d89a74ccae49ae0e5b1c4968c207824', '176.113.42.139', 1674888144, '__ci_last_regenerate|i:1674888144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0ef111541b41f5aabddb671c19a3cada0140b9', '176.53.222.40', 1674888146, '__ci_last_regenerate|i:1674888146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae23a39773108471138c4da3ade3a7a892cf6eb', '45.120.39.89', 1674891718, '__ci_last_regenerate|i:1674891718;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674889374;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('294dd2c8351f6c474320c4912e04eb5dece3534e', '172.105.247.100', 1674889821, '__ci_last_regenerate|i:1674889821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04de9a595dec1b71e36726d47e9e6e82362eb81e', '172.105.247.100', 1674889822, '__ci_last_regenerate|i:1674889822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb193139aa818b6e9b6aee1cabf5816d6bb14c0', '172.105.247.100', 1674889822, '__ci_last_regenerate|i:1674889822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06f93885be0d26f0f782463c1c3862f24f7f8ef', '172.105.247.100', 1674889822, '__ci_last_regenerate|i:1674889822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88a0efda2cf24e6cb263ee5b23aa90bb61a21232', '172.105.247.100', 1674889822, '__ci_last_regenerate|i:1674889822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d3377d6cdcae8152bd384a222a0eb3b9eb2511', '172.105.247.100', 1674889823, '__ci_last_regenerate|i:1674889823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f68f59eb7963432491edcb114aa60eaf8c2f1558', '172.105.247.100', 1674889823, '__ci_last_regenerate|i:1674889823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e3030f5bf38219498a4785a96c797592f12ee5', '172.105.247.100', 1674889823, '__ci_last_regenerate|i:1674889823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e1b3fd48c0273740c92b053172259b39121c95', '172.105.247.100', 1674889824, '__ci_last_regenerate|i:1674889824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6bb66c233f46b8da2d9545ab4048d1636ddc4f8', '172.105.247.100', 1674889824, '__ci_last_regenerate|i:1674889824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf78a3ddeffc8f8f38ed71f15e691d56cfc13131', '172.105.247.100', 1674889824, '__ci_last_regenerate|i:1674889824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dd98b1267a3718431d7ec946b86eaa29c9622fc', '172.105.247.100', 1674889824, '__ci_last_regenerate|i:1674889824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c15ef3ad0dc577b675d2d71346170ed4025e05', '172.105.247.100', 1674889825, '__ci_last_regenerate|i:1674889825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb502451cec8e0ae13908ae9c3cb297c123638f', '172.105.247.100', 1674889826, '__ci_last_regenerate|i:1674889826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba5fcf13f02981a72a56e0ec8ccb517ae70043cb', '172.105.247.100', 1674889826, '__ci_last_regenerate|i:1674889826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8d836b9728d002e839902ffb0c2e9a698332e6', '172.105.247.100', 1674889826, '__ci_last_regenerate|i:1674889826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a82c31d864e101cf5c92c40547536eb5edd9a0', '172.105.247.100', 1674889826, '__ci_last_regenerate|i:1674889826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ddc70b7600ffee8e1fe14cc557c56a7140be59f', '172.105.247.100', 1674889827, '__ci_last_regenerate|i:1674889826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6661912d78ccabf4cf15050c7595ea48340bc4b4', '172.105.247.100', 1674889827, '__ci_last_regenerate|i:1674889827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2023e1b3c7b772e42fef2f5ba1912daf304b3552', '172.105.247.100', 1674889827, '__ci_last_regenerate|i:1674889827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c6bf29844a47b2cf85185724905678257ac719', '172.105.247.100', 1674889827, '__ci_last_regenerate|i:1674889827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158b1004ca7fe606cdefeb018f7365bd92b5d09a', '172.105.247.100', 1674889828, '__ci_last_regenerate|i:1674889828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea62880db18ca3efb7b8950ec428be79fc4ce954', '172.105.247.100', 1674889828, '__ci_last_regenerate|i:1674889828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9be2e58b20a0ffd5a6b61dc182064a479dc9cb9', '172.105.247.100', 1674889828, '__ci_last_regenerate|i:1674889828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b27620b72902bbb83b17742440162ad58708e6c', '31.222.203.2', 1674891191, '__ci_last_regenerate|i:1674891191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2500edf5e0ab0fcea8a0815535a74598ee3ecf3', '31.222.203.2', 1674891191, '__ci_last_regenerate|i:1674891191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e3cd72cd55cf0eb9ef6a563f5f4d8cd0c25abd', '31.222.203.2', 1674891191, '__ci_last_regenerate|i:1674891191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c299f346efced563a6456b17d94321b6fed591e5', '31.222.203.2', 1674891193, '__ci_last_regenerate|i:1674891193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99740d2d07acd70d4216aa184486e258716c25a7', '31.222.203.2', 1674891193, '__ci_last_regenerate|i:1674891193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50df0cc33818fa3140ee2f8621de35eaff251e83', '31.222.203.2', 1674891193, '__ci_last_regenerate|i:1674891193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35885af2d87b2718d43e68ba12dd9440aacb96e6', '45.120.39.89', 1674898670, '__ci_last_regenerate|i:1674898670;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674898666;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f118e7966986f46ef0b1386af353d61ac5d05d9', '31.222.203.2', 1674893058, '__ci_last_regenerate|i:1674893058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc63727e0fc32a7163fff7515ebe1248ee482bc1', '31.222.203.2', 1674893058, '__ci_last_regenerate|i:1674893058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5472b9a275d4bd52bb9469797ff12e454ae4f6aa', '31.222.203.2', 1674893058, '__ci_last_regenerate|i:1674893058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc547f61dbad9fb3063ffc9700d8a7236ef8dd4', '31.222.203.2', 1674893060, '__ci_last_regenerate|i:1674893060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e37dd39cbe86c46d22703ef343c5b78e99d194b7', '31.222.203.2', 1674893060, '__ci_last_regenerate|i:1674893060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaefccb7328ff499d2bfb70e00f79fc60b2eab46', '31.222.203.2', 1674893060, '__ci_last_regenerate|i:1674893060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606ef7aa833bfea4b282c0d25136161202584b38', '116.204.230.26', 1674893418, '__ci_last_regenerate|i:1674893395;requested_page|s:9:\"admin/pos\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674881533\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674893418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4789f65174c5e4bf997ba908bbb092ccb0fcfcac', '172.105.247.100', 1674894623, '__ci_last_regenerate|i:1674894623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea42f024c8af89bcd9fa3eaac760ee832be20c7', '172.105.247.100', 1674894623, '__ci_last_regenerate|i:1674894623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fced7130c41038c2c2f96c7e25d42d4a8e1b016', '172.105.247.100', 1674894624, '__ci_last_regenerate|i:1674894624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4dbfcd379d2579c91511701976c5f94528f158f', '172.105.247.100', 1674894624, '__ci_last_regenerate|i:1674894624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a850a4b9456a6a3e7e3259f123afda1e695ee24', '172.105.247.100', 1674894624, '__ci_last_regenerate|i:1674894624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26bb52281c6921b747adf13fac51c0bb9d99cdff', '172.105.247.100', 1674894624, '__ci_last_regenerate|i:1674894624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2daca4a48e22243331f71820ad235e931b68698d', '172.105.247.100', 1674894624, '__ci_last_regenerate|i:1674894624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336e1214ba19772e36d470eec0c155bb81d1f7ac', '172.105.247.100', 1674894624, '__ci_last_regenerate|i:1674894624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e944d4fa470854c8dabf4b57070a818668b2cb', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba17e2f8648f223766e1c87e88ff65ca4cb1453', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b69285b67e40ec8d6e96d7d29db71dff2d2a2ea', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16cd6834feb8b917c366ff592c336ccc1288d5a5', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('772351b850d9910769e420f80c8be70e5ac7ce7e', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06bd7089c4c117f4ede879cd8243685c5523d0a4', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67717ba1489a08b7149cde9604573c50e93bd385', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdde92da0ddc34a9488224916cf246e675470e0d', '172.105.247.100', 1674894625, '__ci_last_regenerate|i:1674894625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98179a099e3d95fbbdb064e062b0c51105d86fb7', '172.105.247.100', 1674894626, '__ci_last_regenerate|i:1674894626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9776eb034bd857b8f712fe2b8e8c5e1ef1398d49', '172.105.247.100', 1674894626, '__ci_last_regenerate|i:1674894626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b8a4a941a1bf6ba731a9e8c8a6761d52d78b7cd', '172.105.247.100', 1674894626, '__ci_last_regenerate|i:1674894626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2faf9ff3e34378848d73297a318eadd2d2d17e57', '172.105.247.100', 1674894626, '__ci_last_regenerate|i:1674894626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b9a9b62d6cf4abbb051b3a8de32351dcef6b56', '172.105.247.100', 1674894626, '__ci_last_regenerate|i:1674894626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3d62a74182e03794ff0440718c9ddbb45ffea5', '172.105.247.100', 1674894626, '__ci_last_regenerate|i:1674894626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41be510bde3b6d33ff945e339a0589c2a731606', '172.105.247.100', 1674894627, '__ci_last_regenerate|i:1674894627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8e5fd37a343050e9bef5a3bbe2bb2b1ffdc31f', '172.105.247.100', 1674894627, '__ci_last_regenerate|i:1674894627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e802b2741e12f05452627efde474a06aa185f6db', '45.120.39.89', 1674900346, '__ci_last_regenerate|i:1674900346;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674898666;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6fd8d45b30a3e191cf0c068ec5c53ebec07a01', '172.105.247.100', 1674899425, '__ci_last_regenerate|i:1674899425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed0854df5ca708ae5b8b635260c5b808efcdb80', '172.105.247.100', 1674899427, '__ci_last_regenerate|i:1674899427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd3223cc517105269b325b510e4cc17ef18de08', '172.105.247.100', 1674899427, '__ci_last_regenerate|i:1674899427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4a48fcc0ec277685066ade5106a70f208c89f6', '172.105.247.100', 1674899427, '__ci_last_regenerate|i:1674899427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d669e183d3161ceb5f85db61b028a2111353ae71', '172.105.247.100', 1674899427, '__ci_last_regenerate|i:1674899427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b237473753de5e126be05c4cffafd4ca691985a3', '172.105.247.100', 1674899428, '__ci_last_regenerate|i:1674899428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21b721e0184cca4ca78830675c71dcf00ab75d8', '172.105.247.100', 1674899428, '__ci_last_regenerate|i:1674899428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aaca91942f557d3eebb903241cff8653fb9dd3d', '172.105.247.100', 1674899428, '__ci_last_regenerate|i:1674899428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d0f34af870151cd05cc8e65770829fecdd51c3b', '172.105.247.100', 1674899428, '__ci_last_regenerate|i:1674899428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d7d7e66aa7fc2e5f748e3794be8d73c174517f', '172.105.247.100', 1674899428, '__ci_last_regenerate|i:1674899428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae59459c866be5b6b48a63b72ef904fb14d52a82', '172.105.247.100', 1674899428, '__ci_last_regenerate|i:1674899428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2318a2c4943569ba1ed0f1428b89cd64fc4ce3d4', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3fa41c39078691a646a560f0ee9e329f9fed0e', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd72eeef36a5c5df031bd9517b77ac0689832b4', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f29359edd3da3893ac184a962376c5a7d421ef', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bcdc8648e171c2fe8570e853b56fde2c628dea3', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f696c01dc40d33ae0ca2555246dcc3ad00143e78', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2600d83e5e551972a447780d4610d7bb66a34f8f', '172.105.247.100', 1674899429, '__ci_last_regenerate|i:1674899429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7cc3135a7c559087d5205ef51abd686b65c6f4e', '172.105.247.100', 1674899430, '__ci_last_regenerate|i:1674899429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2eb384d9a9ca10eadc541a3e5bd0e1830a5c4b3', '172.105.247.100', 1674899430, '__ci_last_regenerate|i:1674899430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('724cea7f7b58181c2f1cd8d37777507478e5e64b', '172.105.247.100', 1674899430, '__ci_last_regenerate|i:1674899430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1b33135fcb2bbdb1599da6248fe1ff9a35dbfa', '172.105.247.100', 1674899430, '__ci_last_regenerate|i:1674899430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59369be3b32dfbdedbd57a99f6fdaf5cf4a9c68', '172.105.247.100', 1674899430, '__ci_last_regenerate|i:1674899430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888f26608acb8a33d52a985aaee975ab31437a85', '172.105.247.100', 1674899431, '__ci_last_regenerate|i:1674899431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593010001facebe6bd67a88935a18262d5dee7d0', '45.120.39.89', 1674901397, '__ci_last_regenerate|i:1674901397;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674900389;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9422287ed34193c46304ac3d5cf84257c121c58', '45.120.39.89', 1674903381, '__ci_last_regenerate|i:1674903381;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674901420;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b749c4dc2f1b5f2758f2dd478f06a94cedcac473', '45.120.39.89', 1674903785, '__ci_last_regenerate|i:1674903785;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674903759;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcdff24d0e641cddd8e2deb1c84e42feb9542bec', '45.120.39.89', 1674904414, '__ci_last_regenerate|i:1674904414;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674903787;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6e775c9964ab880c5c1dfab28d0c7f1c6b106a', '31.222.203.2', 1674903786, '__ci_last_regenerate|i:1674903786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0f235bcc5fa14e0cc59a45c961a2f3e791f0a1', '31.222.203.2', 1674903786, '__ci_last_regenerate|i:1674903786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5de1d890bfa5dc11b3aec7c87bfbd94032e1ae', '31.222.203.2', 1674903786, '__ci_last_regenerate|i:1674903786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cbc672c73107233370dc653f692964906eaaf8', '31.222.203.2', 1674903786, '__ci_last_regenerate|i:1674903786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee1b3f6ee23b59f24cbaba6f117673bee3ea7d4', '31.222.203.2', 1674903786, '__ci_last_regenerate|i:1674903786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe62a70f9e70bcb9bfa50a4bff42570ac73b501', '31.222.203.2', 1674903786, '__ci_last_regenerate|i:1674903786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd233257a0472697b3152185688fd41c88771d80', '45.120.39.89', 1674906920, '__ci_last_regenerate|i:1674906920;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674906912;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc13b7032e934d3ea68d051e883e3e4428492287', '172.105.247.100', 1674905425, '__ci_last_regenerate|i:1674905425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a747c5ae016442a63bfdf3ca6766d60b37d1504', '172.105.247.100', 1674905425, '__ci_last_regenerate|i:1674905425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a82c7f07e26406354b38558759aee5ae7b12283', '172.105.247.100', 1674905425, '__ci_last_regenerate|i:1674905425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04291d84efc64bd0ff1361fbd6ccfb206a7a7ee2', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1dcd0f193a28d674eb74ffafeafcb25ec3b416', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719cffd82f06d95ce38a0283c8a7a31262721031', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad24980970818aa14d68c92e4eb9ecf0fe66250', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93893176f07a4bdabe12ce9671a55d6348ad2b7e', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b9e5cadbcfff99a702c2dc4803bdb8fbfde79e2', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f227b0bc6f6d9804f28b66eb3f0b5fd2df91c8f2', '172.105.247.100', 1674905426, '__ci_last_regenerate|i:1674905426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d197045dcaceca20f01dfdff74a75eac984e74be', '172.105.247.100', 1674905427, '__ci_last_regenerate|i:1674905427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738af5e60e81cc8636cf1a912230917754468ff2', '172.105.247.100', 1674905427, '__ci_last_regenerate|i:1674905427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a99478373cdef77eaa32ba7efc1c36a1b552d7', '172.105.247.100', 1674905427, '__ci_last_regenerate|i:1674905427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ec4c34d2a2ba540bb681382d7545cf3eb31dd75', '172.105.247.100', 1674905427, '__ci_last_regenerate|i:1674905427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ca4aec05ef19331cdc3f086266340a5da7503e', '172.105.247.100', 1674905427, '__ci_last_regenerate|i:1674905427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c8a92657677a2ec365554411043c65b87d69f3', '172.105.247.100', 1674905427, '__ci_last_regenerate|i:1674905427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57fd4aadea53a0a29bef4431856fc1ce5b403246', '172.105.247.100', 1674905428, '__ci_last_regenerate|i:1674905428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c516af75dea1f888a26277fa3b810411dbe5f4', '172.105.247.100', 1674905428, '__ci_last_regenerate|i:1674905428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83dc420275b2b233a7ba2a0015431d25b0e9dc17', '172.105.247.100', 1674905428, '__ci_last_regenerate|i:1674905428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be56acb05f9a458557be5db821d313bb20b4128a', '172.105.247.100', 1674905428, '__ci_last_regenerate|i:1674905428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ea10370d6b1b871a6869aa8756ced42ad14f39', '172.105.247.100', 1674905428, '__ci_last_regenerate|i:1674905428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f0594d095e154decf47881b20baced0b658854', '172.105.247.100', 1674905428, '__ci_last_regenerate|i:1674905428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55729ea529616ec1c505e0fae70da1eb50df32e', '172.105.247.100', 1674905429, '__ci_last_regenerate|i:1674905429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13bab8e9c4a0144d22e74bd0128db1de007c8656', '172.105.247.100', 1674905429, '__ci_last_regenerate|i:1674905429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cb49b51822c07b0f28367afb5bc12b632805e9', '31.222.203.2', 1674905660, '__ci_last_regenerate|i:1674905660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b632a77575703ce752f0296f48c5e1b222df257', '31.222.203.2', 1674905660, '__ci_last_regenerate|i:1674905660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2f117d4b18fcd3b04e0816123fa0a0e4e2d94d', '31.222.203.2', 1674905660, '__ci_last_regenerate|i:1674905660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be57ee7ea971614af22df867a27de1e9dd0273ba', '31.222.203.2', 1674905660, '__ci_last_regenerate|i:1674905660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63d38c516ac7dc7edc056ed00948bb175e8b291', '31.222.203.2', 1674905660, '__ci_last_regenerate|i:1674905660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5adec57f2dac0852914fee10221cc8893fe5be3a', '31.222.203.2', 1674905660, '__ci_last_regenerate|i:1674905660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49d5329a4c18c28f8401678b920c82d727ace86', '45.120.39.89', 1674910827, '__ci_last_regenerate|i:1674910827;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674906921;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70db58ba7339f19c850f7510ff52a8a2c7c24003', '136.144.35.138', 1674908350, '__ci_last_regenerate|i:1674908350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8766464bb2d0d52beeebd96d70af5ae422d3eafb', '136.144.35.131', 1674908352, '__ci_last_regenerate|i:1674908352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ad93ce0db70a9be809ac7e4db53a645350cb44', '136.144.35.153', 1674908352, '__ci_last_regenerate|i:1674908352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b785a1fbac11716255a9413e6dad3306e045cb37', '45.120.39.89', 1674911249, '__ci_last_regenerate|i:1674911249;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674911239;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ecca220b6a518e2cb16f2199d7890d10d7718dc', '45.120.39.89', 1674911961, '__ci_last_regenerate|i:1674911961;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674911249;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce84d29b0905064475086259c57cfd2c5207502', '172.105.247.100', 1674911422, '__ci_last_regenerate|i:1674911422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e404607f27b83fcf635db4f65e9cca849a7d6423', '172.105.247.100', 1674911422, '__ci_last_regenerate|i:1674911422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc3c2b97ad9336a60f24413e2b1d7ee392a651f', '172.105.247.100', 1674911423, '__ci_last_regenerate|i:1674911423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a9666ec389be9af9b6e6b28463aefd15b4a50b', '172.105.247.100', 1674911423, '__ci_last_regenerate|i:1674911423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f407615db47e63688266688a1a5bac27f5c7b4a', '172.105.247.100', 1674911423, '__ci_last_regenerate|i:1674911423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8bb18d1b48f7e5fe26639e196c4d6ff2b7bec9', '172.105.247.100', 1674911423, '__ci_last_regenerate|i:1674911423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429e1d6a879a9ee84bf535c7e6a26a5778077c00', '172.105.247.100', 1674911424, '__ci_last_regenerate|i:1674911424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd346d5608407acfc1d22396d9bec9decbf375a', '172.105.247.100', 1674911424, '__ci_last_regenerate|i:1674911424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84c6261c1117a94127a6423452a50d9a7465592', '172.105.247.100', 1674911424, '__ci_last_regenerate|i:1674911424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb03e41ab069cad8a334aa63418b406b925049d', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ed4b885d77a6196b418dce8c2806e6fd40f2bb', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7ce462189e60baf5c0df74306bbb671ac40876', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84e21b5bfa4b2fff3f28a3eeeb3a379829c16bec', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b195f8b6ba4c59109fb4b7566f619348906b36', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c1c166e84d5012cd163d303c8a27f2c0ad5d39', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e30d920d8fc56ca379021887a987ba123546385', '172.105.247.100', 1674911425, '__ci_last_regenerate|i:1674911425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8c880b7f5e530d15483299057310422052f9ad', '172.105.247.100', 1674911426, '__ci_last_regenerate|i:1674911426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7bf2b45865c4bac10b118b6c9830ca0287fd11', '172.105.247.100', 1674911426, '__ci_last_regenerate|i:1674911426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6053d2dbba183d75789edc72eeb7069101f4c8c', '172.105.247.100', 1674911426, '__ci_last_regenerate|i:1674911426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2943ded531c3849b8b317a4d4b4b7752caf2b115', '172.105.247.100', 1674911427, '__ci_last_regenerate|i:1674911426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f122aa9b2054ecd74996e226942aa0688a8ec29b', '172.105.247.100', 1674911427, '__ci_last_regenerate|i:1674911427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb77045f0d6e067b5716433db8fc13e8d2d8d0e2', '172.105.247.100', 1674911427, '__ci_last_regenerate|i:1674911427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7352c117d8970f406c43b0ef8b7e1e034dcaf19', '172.105.247.100', 1674911427, '__ci_last_regenerate|i:1674911427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdc05d708ccbe9ace54a6be84272ccb0fde5d71', '172.105.247.100', 1674911428, '__ci_last_regenerate|i:1674911428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d46c12c86f5b45d1dbdb15ce6cc77a9a5ccaa2d', '45.120.39.89', 1674913750, '__ci_last_regenerate|i:1674913750;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674913737;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056daca3387eb3bb1b975f5fda503ad8f7639e48', '45.120.39.89', 1674914624, '__ci_last_regenerate|i:1674914624;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674913751;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040c3dc0aac8ad3d81da9232cc50de6ecd959d90', '45.120.39.89', 1674915332, '__ci_last_regenerate|i:1674915332;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674914822;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398eaf17cfeed93e3e45bb6e1771513e1075d7d6', '45.120.39.89', 1674915648, '__ci_last_regenerate|i:1674915648;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674915382;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e56c84851e67e5612e992bfa5af6f524bf5f659', '45.120.39.89', 1674916946, '__ci_last_regenerate|i:1674916946;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674915684;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba166493f1ca78ebef9cc503babed798bf7fabf', '31.222.203.2', 1674916385, '__ci_last_regenerate|i:1674916385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b812fca68b8618ef04001623359b77a6ed30eb41', '31.222.203.2', 1674916385, '__ci_last_regenerate|i:1674916385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7b164e5471154380b19b2a4c742fef32d3dda6', '31.222.203.2', 1674916385, '__ci_last_regenerate|i:1674916385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb568c86ac78c58da8b9d5fac027fc8053f9ee8', '31.222.203.2', 1674916387, '__ci_last_regenerate|i:1674916387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2149f9b8623939cc8f481a9b13a8f588ce341c6', '31.222.203.2', 1674916387, '__ci_last_regenerate|i:1674916387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a465f8822229c6174178c150beed20f723eeeb7', '31.222.203.2', 1674916387, '__ci_last_regenerate|i:1674916387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30249dd744efacaf81820eb79eb5c82a4027640c', '45.120.39.89', 1674917553, '__ci_last_regenerate|i:1674917553;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674917389;register_id|s:3:\"324\";cash_in_hand|s:9:\"2850.0000\";register_open_time|s:19:\"2023-01-27 21:04:37\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be974bf153484da0b144809679927ea15ed0f007', '199.195.250.129', 1674917181, '__ci_last_regenerate|i:1674917181;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f9d85210fcc6008f4c52bdb588ea4e70825f76', '172.105.247.100', 1674917422, '__ci_last_regenerate|i:1674917422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05b8b927e1ca32cbad1c75ce891226e4bf9fee6', '172.105.247.100', 1674917422, '__ci_last_regenerate|i:1674917422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974ac71d0e8fae44c7dab632fac85a574bb3a236', '172.105.247.100', 1674917422, '__ci_last_regenerate|i:1674917422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53cf5dd7062054349fc4190eef80eb4f854eabe1', '172.105.247.100', 1674917423, '__ci_last_regenerate|i:1674917423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e847f0d433fd0f86fad2025dcb55ae02f3071e', '172.105.247.100', 1674917423, '__ci_last_regenerate|i:1674917423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('befcac72c228d751d0d7d88d5bcaf905478bedeb', '172.105.247.100', 1674917423, '__ci_last_regenerate|i:1674917423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7781a3f032436c92265e43dc5c047b2e6df04f', '172.105.247.100', 1674917423, '__ci_last_regenerate|i:1674917423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c65aa3efed4a36e854e07bfdbb3de0403026461', '172.105.247.100', 1674917424, '__ci_last_regenerate|i:1674917424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8c05bb4db7192f34138418cb674e83562e0484', '172.105.247.100', 1674917424, '__ci_last_regenerate|i:1674917424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b2368360bf6b0c9f93122d66ba67f5c678b94b', '172.105.247.100', 1674917424, '__ci_last_regenerate|i:1674917424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155bc4e8e115d529d8ba1c4c0b011d93a3c06e80', '172.105.247.100', 1674917424, '__ci_last_regenerate|i:1674917424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3a6c4466bfffc02bef7754d9230ce874684b9c', '172.105.247.100', 1674917424, '__ci_last_regenerate|i:1674917424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f26ca505c494c67419fd426ace3b0368547cb16', '172.105.247.100', 1674917424, '__ci_last_regenerate|i:1674917424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2972792e8bed883439ee37b2bbbb18c607edf28', '172.105.247.100', 1674917425, '__ci_last_regenerate|i:1674917425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2a9aa4f43f4b54a993cd76f6db3f1502fff81c', '172.105.247.100', 1674917425, '__ci_last_regenerate|i:1674917425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893f4591a1bb4cf7d7316ea41d05b2a2c2a6c1aa', '172.105.247.100', 1674917425, '__ci_last_regenerate|i:1674917425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d35acc63232188399e3140159756f6fc1818ed0', '172.105.247.100', 1674917425, '__ci_last_regenerate|i:1674917425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f39d5d7930502693b647142b69d16fdefb3b4d', '172.105.247.100', 1674917425, '__ci_last_regenerate|i:1674917425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e628e188ff9e526c232d9dbeaf7376cbee12dd7', '172.105.247.100', 1674917426, '__ci_last_regenerate|i:1674917425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a697ccd2a697fed862b5121d7bc1e92cc9a2094d', '172.105.247.100', 1674917426, '__ci_last_regenerate|i:1674917426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8532cbec07635eddb325e8c68d78f931360bd6', '172.105.247.100', 1674917426, '__ci_last_regenerate|i:1674917426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3a6807a2a19d90816ea801f429446a0b090195a', '172.105.247.100', 1674917426, '__ci_last_regenerate|i:1674917426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01e77641282d61f181bc2111c19f785f177aa6b', '172.105.247.100', 1674917427, '__ci_last_regenerate|i:1674917427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b59b9f8928223b6dcbd27f8023f3dd96c92e305', '172.105.247.100', 1674917427, '__ci_last_regenerate|i:1674917427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18534f07ce28cc133b3bfdf607555815276cf4c7', '45.120.39.89', 1674917568, '__ci_last_regenerate|i:1674917553;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674798848\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674917568;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab46372d61e6fcf73f1d1f22a092c106deaeda19', '31.222.203.2', 1674918261, '__ci_last_regenerate|i:1674918261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8ff60ae7a9293db5b888084087a261dc4da4b0', '31.222.203.2', 1674918261, '__ci_last_regenerate|i:1674918261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e1b4ace06fc8e48c05fea90c1322b4cc487704', '31.222.203.2', 1674918261, '__ci_last_regenerate|i:1674918261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d500017b6688d268d12b084c599b674535df133', '31.222.203.2', 1674918261, '__ci_last_regenerate|i:1674918261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66604626737f7df72f650c5872aa156f339d7ce6', '31.222.203.2', 1674918261, '__ci_last_regenerate|i:1674918261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('608d5f3ef299f6846b5bab19c14a7be8ea6b87bb', '31.222.203.2', 1674918261, '__ci_last_regenerate|i:1674918261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708419a67f4304feabd98a10e60a2246ce194ad9', '172.105.247.100', 1674923425, '__ci_last_regenerate|i:1674923425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36df1df99da3c3950e1fb5a8db2baa62772b48d', '172.105.247.100', 1674923428, '__ci_last_regenerate|i:1674923428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9811ce095dc431db0c78185aa1f01f45cc6566d', '172.105.247.100', 1674923428, '__ci_last_regenerate|i:1674923428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f6683b4eb05f2c9569c42a845ef4bbb68426e1', '172.105.247.100', 1674923428, '__ci_last_regenerate|i:1674923428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa9929789826aefd3282bc28b9c609f45edd502', '172.105.247.100', 1674923429, '__ci_last_regenerate|i:1674923429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cb8ab83502a69c00be9e8ac5f17466fa2d0a3b', '172.105.247.100', 1674923429, '__ci_last_regenerate|i:1674923429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d906aa2fbbc15ca9bb2989d173a2351b147468d8', '172.105.247.100', 1674923429, '__ci_last_regenerate|i:1674923429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735118cf10b2bc5baaee87b41a8a1fafb4e87f25', '172.105.247.100', 1674923429, '__ci_last_regenerate|i:1674923429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb5c3f4e677349f711de8a747d96807fdd7d9f8', '172.105.247.100', 1674923430, '__ci_last_regenerate|i:1674923430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5370523748126ddd0292fe0634cdffb8a0e7a6', '172.105.247.100', 1674923430, '__ci_last_regenerate|i:1674923430;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33355f144670332f8c88f5b0c526a8940b85b8a1', '172.105.247.100', 1674923430, '__ci_last_regenerate|i:1674923430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d0b9861310a781dc7ce9683d99126461b3e1b5', '172.105.247.100', 1674923430, '__ci_last_regenerate|i:1674923430;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1931bb05323adc17e71fe03878fb2e1cad310b5', '172.105.247.100', 1674923431, '__ci_last_regenerate|i:1674923431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff700261df340891bee62340e46024688698712b', '172.105.247.100', 1674923431, '__ci_last_regenerate|i:1674923431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3deb093b94c7e3fb801e73cc9af100e7f378915', '172.105.247.100', 1674923431, '__ci_last_regenerate|i:1674923431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e588cd992e1e99232cd575a633418656d59df8', '172.105.247.100', 1674923431, '__ci_last_regenerate|i:1674923431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830b31c95c70c28179962f1e914069bf9cf752de', '172.105.247.100', 1674923431, '__ci_last_regenerate|i:1674923431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1590fabc13bd73fea1717ac40106ae9aea4877', '172.105.247.100', 1674923431, '__ci_last_regenerate|i:1674923431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a02fd64027231d28ec3ba68f9288611acc429a', '172.105.247.100', 1674923432, '__ci_last_regenerate|i:1674923432;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3986deb47742abdcf42797fbadbe0f128cab3dc5', '172.105.247.100', 1674923432, '__ci_last_regenerate|i:1674923432;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47adfddaead33d65237d1e36055b506a67d76149', '172.105.247.100', 1674923432, '__ci_last_regenerate|i:1674923432;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d5b1b09d1b6684dc9792d7aee904cde7a4bbda', '172.105.247.100', 1674923432, '__ci_last_regenerate|i:1674923432;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d67cfc0e61c796ad769e1ae9c75c2d0e882b85c', '172.105.247.100', 1674923433, '__ci_last_regenerate|i:1674923433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac92a0032bcec4a327d2927fa550075b4b9a810', '172.105.247.100', 1674923433, '__ci_last_regenerate|i:1674923433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b702c6029dc681390873d4dfa6961da8b9688af', '87.236.176.210', 1674926124, '__ci_last_regenerate|i:1674926124;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5a5f28484753388ba56238fadb1942f366fb76', '87.236.176.210', 1674926124, '__ci_last_regenerate|i:1674926124;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e254786c953e7df45605aacd5e05a8dd8192fd06', '31.222.203.2', 1674927205, '__ci_last_regenerate|i:1674927205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d092f5507c92c314a621e7c9b604d9a4e6829065', '31.222.203.2', 1674927205, '__ci_last_regenerate|i:1674927205;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19eac57cb3da22ca1762f2e467c53fcc163c953a', '31.222.203.2', 1674927205, '__ci_last_regenerate|i:1674927205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e41707fd57dafab1cd96ed6d03fc7bf47296ad6', '31.222.203.2', 1674927207, '__ci_last_regenerate|i:1674927207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54bb548856b0fc748da8230cb21855f9ba5d5ff', '31.222.203.2', 1674927207, '__ci_last_regenerate|i:1674927207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d753e8321172647a39605842180d50f7a061e455', '31.222.203.2', 1674927207, '__ci_last_regenerate|i:1674927207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baef37cb95373475a64ecf2bbd017f0dcee3e87c', '31.222.203.2', 1674929063, '__ci_last_regenerate|i:1674929063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81fe766189384da54bf4a898cb2014f322894eb1', '31.222.203.2', 1674929063, '__ci_last_regenerate|i:1674929063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6a6027c218fbdab155ee9e22bf0bbed6a7318e', '31.222.203.2', 1674929063, '__ci_last_regenerate|i:1674929063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb8e66ddee37f9153f3f25fff2f90698d53b96f', '31.222.203.2', 1674929063, '__ci_last_regenerate|i:1674929063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e592ba33f9eccdd70a5696e058a74d8cc09f96', '31.222.203.2', 1674929063, '__ci_last_regenerate|i:1674929063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd58c9a49a326d276e2f0cdf85d0b38b16595f5', '31.222.203.2', 1674929063, '__ci_last_regenerate|i:1674929063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1696f709b61dd69ea73ea64e5e8a4e4d7416511', '172.105.247.100', 1674929422, '__ci_last_regenerate|i:1674929422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d844f51365f6f6c0436da0eb5396eaf9c586ab', '172.105.247.100', 1674929424, '__ci_last_regenerate|i:1674929424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d987b3c07bcd5680e45c089866e4fc0fef27fe21', '172.105.247.100', 1674929425, '__ci_last_regenerate|i:1674929425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355076c3e54cbe094e18bdac6ef9814aa10420ed', '172.105.247.100', 1674929426, '__ci_last_regenerate|i:1674929426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b27168806d90c30d863fcb162b6a5e6ce1bfb0', '172.105.247.100', 1674929426, '__ci_last_regenerate|i:1674929426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003a8d4de550b6deb1a631103d40a0ae50b1077c', '172.105.247.100', 1674929426, '__ci_last_regenerate|i:1674929426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8b8f3b772b634cfaaf3a6cce3ef565c7d87a77', '172.105.247.100', 1674929426, '__ci_last_regenerate|i:1674929426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6c9255bf36de2ce469ca9a559c65a4730b6148', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c7604a9d55fab7db3d35e09d3292515842b450', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f6e0cdb01104f764ce1ca90baa236022bd4eae', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db38ab5758ef3be5410559d2993a725d67688aca', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac8a0618030d46913f6bf655e70d85f80dadea7', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b026a7d2a779c4b9265c62f80d00a547645506fe', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a17e611d1be10af85fc81ee06f4410dc2277c1', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb85c2efed8e015c960b6eda39537b082eb85588', '172.105.247.100', 1674929427, '__ci_last_regenerate|i:1674929427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1420645588dc2bff6e23165292a4a50508f3b01a', '172.105.247.100', 1674929428, '__ci_last_regenerate|i:1674929427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d108ea415318c05e607f959a9ccc6d9d3b86201', '172.105.247.100', 1674929428, '__ci_last_regenerate|i:1674929428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288aef93a8e16e421d970cce991d96c76367e7c0', '172.105.247.100', 1674929428, '__ci_last_regenerate|i:1674929428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d94c70fab7191a39f1f757a3ccf205e24b369704', '172.105.247.100', 1674929428, '__ci_last_regenerate|i:1674929428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8a550e08d8e2c553f544306f5bd4df9637f709', '172.105.247.100', 1674929428, '__ci_last_regenerate|i:1674929428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86852a9d93695bec689366513e0ef0b07c74ec8', '172.105.247.100', 1674929428, '__ci_last_regenerate|i:1674929428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfdc4d4c0a0058d73d7cd7c40e1ce337f11a67a', '172.105.247.100', 1674929429, '__ci_last_regenerate|i:1674929429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f3fbfb610af2262028e1353d692bedd242a355', '172.105.247.100', 1674929429, '__ci_last_regenerate|i:1674929429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3da057c267b6ee8e86e2c35491e9bdad4fcf27', '172.105.247.100', 1674929429, '__ci_last_regenerate|i:1674929429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2296597e993f9b7c79109914ed341a89e3d319', '35.195.93.98', 1674930390, '__ci_last_regenerate|i:1674930390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5f7e74f4bb09b4f24a143d396301d7515ef674', '34.77.127.183', 1674930420, '__ci_last_regenerate|i:1674930420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2609c21c8f8be6d158a3570346c0d0ddf76181', '87.236.176.28', 1674933879, '__ci_last_regenerate|i:1674933879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3acb2d7dcdbffdefcba49f52068346c529b69e', '87.236.176.28', 1674933884, '__ci_last_regenerate|i:1674933879;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70f064258a0bcd0a34a0ffb40e7b2f04c3b6b30', '172.105.247.100', 1674935420, '__ci_last_regenerate|i:1674935420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571deac66270a31b54ed4fefcaf4020ef74e00f2', '172.105.247.100', 1674935421, '__ci_last_regenerate|i:1674935421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09ebd9a965021530511b3b0bdec399c3cf115ec', '172.105.247.100', 1674935421, '__ci_last_regenerate|i:1674935421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff43e37bc2f101a7a6bb9f880fa9a90d56154c0', '172.105.247.100', 1674935421, '__ci_last_regenerate|i:1674935421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9134b8f4b0c2fd4118aca97416fb1a33be646afe', '172.105.247.100', 1674935421, '__ci_last_regenerate|i:1674935421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aedf69dac85341fbae475c4318ee2b6bf1cb57f', '172.105.247.100', 1674935422, '__ci_last_regenerate|i:1674935421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b6b483a5a332bb50706475546670be63c65607', '172.105.247.100', 1674935422, '__ci_last_regenerate|i:1674935422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3316d5a8dca37286356cf740a832a1f0afcd0c', '172.105.247.100', 1674935422, '__ci_last_regenerate|i:1674935422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16f64e37c7751969de25b2ff7d7cf79668bb91d', '172.105.247.100', 1674935422, '__ci_last_regenerate|i:1674935422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3c1dc2e266e69d9cf8a28b652dd97a0594e43e', '172.105.247.100', 1674935423, '__ci_last_regenerate|i:1674935423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5f01d23b128f3ab97c509192107903dd0d80ce', '172.105.247.100', 1674935423, '__ci_last_regenerate|i:1674935423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6367b6f07240c6f7d5cf26f0ff1d089d54a8712', '172.105.247.100', 1674935423, '__ci_last_regenerate|i:1674935423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb7236b3b96454a1e5308d73802899a9df1f2e5', '172.105.247.100', 1674935424, '__ci_last_regenerate|i:1674935424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4469248848fab2f5f93c34f44160afd95d08f8cf', '172.105.247.100', 1674935424, '__ci_last_regenerate|i:1674935424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3975d69802af5dc3e9dbe7fb7321ef7fc785cf7', '172.105.247.100', 1674935424, '__ci_last_regenerate|i:1674935424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf2a99ee17563560cd7ee6b6b243989e8574f30', '172.105.247.100', 1674935424, '__ci_last_regenerate|i:1674935424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e96b335da881abf59e1d467a39e2874e38b21da', '172.105.247.100', 1674935425, '__ci_last_regenerate|i:1674935425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ecf498c30b1e253f8728fe6d61343969c22156', '172.105.247.100', 1674935425, '__ci_last_regenerate|i:1674935425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b1184a275dec38e3110be38cc7c685f54923672', '172.105.247.100', 1674935425, '__ci_last_regenerate|i:1674935425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05da536a665e4749f46479822b0facf4e4c1ae8e', '172.105.247.100', 1674935425, '__ci_last_regenerate|i:1674935425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f58e054a2adeb76bc24e4d8d5cb2bc664ae4e26', '172.105.247.100', 1674935426, '__ci_last_regenerate|i:1674935426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fac439c91151ae47508c165b4db9ef872025dde5', '172.105.247.100', 1674935426, '__ci_last_regenerate|i:1674935426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5df93fab423504bf56006e4be34727f327a003', '172.105.247.100', 1674935426, '__ci_last_regenerate|i:1674935426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a9d2aaf5c15794eb03736738625fd2e675864b5', '172.105.247.100', 1674935426, '__ci_last_regenerate|i:1674935426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4728ec8a9b3e56b1f78218b742c19735afb962fe', '31.222.203.2', 1674939800, '__ci_last_regenerate|i:1674939800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e35f68c3dc500a11dd916b903ae4e0b63d784a4', '31.222.203.2', 1674939802, '__ci_last_regenerate|i:1674939802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee413adc8423884ee5a1621cbdacd7d4d896c23d', '31.222.203.2', 1674939802, '__ci_last_regenerate|i:1674939802;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3574ef1bc357ac5e4e17e19f458a0d06574e933e', '31.222.203.2', 1674939802, '__ci_last_regenerate|i:1674939802;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e41f205d4eb4c82b4b3435690ac85406487667', '31.222.203.2', 1674939802, '__ci_last_regenerate|i:1674939802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9450669336525b3bc513272521111263b7bb119', '31.222.203.2', 1674939802, '__ci_last_regenerate|i:1674939802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554c7920c10686ddfa881852e623e28a6907bc75', '172.105.247.100', 1674940822, '__ci_last_regenerate|i:1674940822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234a69ee7dcfb4947a12d6f787cafd807d1e3eca', '172.105.247.100', 1674940822, '__ci_last_regenerate|i:1674940822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cccfbfa2e45cd28c2d656e2acf6ceeaf2093896a', '172.105.247.100', 1674940822, '__ci_last_regenerate|i:1674940822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da153afd36aae75a581cb629d7f24bebd07078d4', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fdaba5fca82c35cb14abc74c6b858b3861b3948', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e18eaa55e9ee5f5765b1df0aa76a4d92fa43db', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ccac5e7b5d449451925436539ed4a5e996f0ae', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa8fb12f5d4277dfa67b988d9b11c21236761cab', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8212cb44d4bfdec55b3ee3b4a2c119848ebdf098', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae80bd959188c25c729f3f30376b35f5accec02', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b68b7bdbc78f060a4d05a43c8666e2621382f39', '172.105.247.100', 1674940823, '__ci_last_regenerate|i:1674940823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83c74e38e754612623fb38c47fcbd5b653c2130b', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c044eaeba16b5dd8ed714bc9c089bffc9705ed16', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f740420768472c16f257938a0925ef31a2ea25d', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a1792ac73920db1db06de65fa72f06fdae69bc', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5294a89909061eb4ce14936f284c79e764e065e', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3580de389944dfd4938e51d977df794b0c9be783', '172.105.247.100', 1674940824, '__ci_last_regenerate|i:1674940824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d7480ffc40f1ef04f4272889627d701b273a00', '172.105.247.100', 1674940825, '__ci_last_regenerate|i:1674940825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1255ebf911b49e49d88ebae7ea4489cf28127bae', '172.105.247.100', 1674940825, '__ci_last_regenerate|i:1674940825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59cec39fdd6d03e39863f15f9f9f99afe7da63d2', '172.105.247.100', 1674940825, '__ci_last_regenerate|i:1674940825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5d34a27d983d1f28a85857fefedbe57d964bcc', '172.105.247.100', 1674940825, '__ci_last_regenerate|i:1674940825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa759cef61c0c0425a48b75e4e74fc492352cb2b', '172.105.247.100', 1674940825, '__ci_last_regenerate|i:1674940825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21caf5822f721677cca3c3563e91ecf8932d171', '172.105.247.100', 1674940825, '__ci_last_regenerate|i:1674940825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4074c8ac98db4be1eceae5508954d86385c127a6', '172.105.247.100', 1674940826, '__ci_last_regenerate|i:1674940826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e6bb129bf21b5e61b6fc2aed2bc0295b9548c16', '31.222.203.2', 1674941655, '__ci_last_regenerate|i:1674941655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9247f7b8d3835d907dea7458fdebfdeb6dc9a3da', '31.222.203.2', 1674941655, '__ci_last_regenerate|i:1674941655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a8014a1d1993089d341db5afd83951d388987c4', '31.222.203.2', 1674941655, '__ci_last_regenerate|i:1674941655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de062f44d31be376c5ff23567c337ca837d0ec4e', '31.222.203.2', 1674941657, '__ci_last_regenerate|i:1674941657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06bf62d408ae95d6c0d94b82d679c475702f75ea', '31.222.203.2', 1674941657, '__ci_last_regenerate|i:1674941657;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de66627590b651c464f7a94b3ad597c3b0992303', '31.222.203.2', 1674941657, '__ci_last_regenerate|i:1674941657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1022c3b1146a1911f1c1615d02cbb7fc6443144a', '205.210.31.52', 1674943845, '__ci_last_regenerate|i:1674943845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c023089642f0261151ed5a75e11a7cec48ece1', '205.210.31.52', 1674943846, '__ci_last_regenerate|i:1674943846;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07423d24e41f9ab01abf3ae3aba35e166931ae74', '205.210.31.52', 1674943846, '__ci_last_regenerate|i:1674943846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543e773b91bd36500c57bfbcad52ee149154bf6b', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db689ac9747759a4b0a663fea89429836624ef0d', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a1db3191bd3b63078ee5fa9ed1701a3dbd2039', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2dade6cd1249cc657d5f657598db5959fba44f', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84287c6ce9f91c830ae8301c60d394eb9790c326', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fef4af528f5baf9becbdd5758c8878277c334db', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519bc3878905f570a0a451aeec98baf2fbcc93b2', '172.105.247.100', 1674946221, '__ci_last_regenerate|i:1674946221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462fd95628c9759af04add25fbed7be9e4c3703e', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e006b3309983e25e100c8510aeee543680525b0b', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbd4dec5e1496745004147d43fd59b1586e175c', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f0e344eef090e719d263c8e9c8f52cb78e3ddc5', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17fc2a740fee2d6033dfb16865290987830a5fbb', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b3ffabc82dff7ba559aff5323417ddcae7ebe8', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a730a69bea683aee9d842b9f9dce99e7cd0ad0f5', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e46632c79e8fa15b18d3203b7bcfd1f91e9c25', '172.105.247.100', 1674946222, '__ci_last_regenerate|i:1674946222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43dd0143266b2c41d9a18f330987cc3bc4cedb03', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718070c65f4c069964e69af8bc15be8192170966', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708f81a2b44b2219aada12768d5bea0dbf708a44', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f0f6dbbe149f9275f762bf319f5a79436083ce', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64831732d18d0395cd7516a830d287ab05af84fa', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2539b3cea75defcc1c46b9a2937e54d9bd6914f9', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fe89e2d1a13390ae45ec40b3d3ba9908f52ac5', '172.105.247.100', 1674946223, '__ci_last_regenerate|i:1674946223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f128ff060fb48b06a5d7140e19d3a7d5519c68c', '172.105.247.100', 1674946224, '__ci_last_regenerate|i:1674946223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74848e4ba7ba339f5c5f033c43d757c243df662', '172.105.247.100', 1674946224, '__ci_last_regenerate|i:1674946224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6767f7827f7972ea945499c645fc49a79c5fa58', '198.235.24.185', 1674949127, '__ci_last_regenerate|i:1674949127;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('305525409c176ad7066ec5185b90a5d13e3a620a', '198.235.24.185', 1674949128, '__ci_last_regenerate|i:1674949128;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020a64952c7441a5fd50e7387a8fb90fc9f9c9b9', '198.235.24.185', 1674949128, '__ci_last_regenerate|i:1674949128;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd367be62aa1fce2e010e02f68d1198439012a91', '172.105.247.100', 1674951622, '__ci_last_regenerate|i:1674951622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4492c469bd879bb2dd87f4890115c223a649c57', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0240b9278a2b3a79d3e120a6ae688cb43a950d6e', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379c976006611a47ea8621bf3b54227df00c687d', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7770f90086d2a0b3f6c260e682f3c064fad8b500', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1542b0442b81191a0ebe2f8955e6ab8d0be5fa6c', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd904b5214e02cda3f039ea5f3341381a41c9de', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81cb7be9fac06ef9aafcb054b245414c37edbd3', '172.105.247.100', 1674951623, '__ci_last_regenerate|i:1674951623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94cbc2d45406d63e1533de0cab7c80fc4bf40a73', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a23c68bc796a280d0a303e508c4547721358ca', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b8f0e5e92cb9a3f93c79a3941c551920dba801', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82a84e548831784dab7ce7f307a33871ddd533a', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f0e83c7bd328007c5d308c64efea88368de2bc', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5052b248f76c02bacaddff233420736253a78c32', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f48ed25757f443c7627b49d51769a09e083ea9', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4726f6f834fba0a2a75fcb39dc613ee5a486a96', '172.105.247.100', 1674951624, '__ci_last_regenerate|i:1674951624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2813e3faf8271f12bb0467e55b5360ba9d9d68c6', '172.105.247.100', 1674951625, '__ci_last_regenerate|i:1674951625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b32663ea2a6f3cce521ada3db96adbefa8b615', '172.105.247.100', 1674951625, '__ci_last_regenerate|i:1674951625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d87ecaf5a77b641d5ce9b99be2ca6b4d20ce66d', '172.105.247.100', 1674951625, '__ci_last_regenerate|i:1674951625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0772113f45e9e1e80b1706fe853a3cd067ca4855', '172.105.247.100', 1674951625, '__ci_last_regenerate|i:1674951625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3250329f9d1857133b5ccdb7e331616e32585348', '172.105.247.100', 1674951625, '__ci_last_regenerate|i:1674951625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384bf824503f9ba3ae70c03dfa766089fecb7c8d', '172.105.247.100', 1674951625, '__ci_last_regenerate|i:1674951625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f679565d229ec5e4380eea362e629c65fdaf4619', '172.105.247.100', 1674951626, '__ci_last_regenerate|i:1674951626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73db6955875994af0cfed5f0fde32c55ba4f46d4', '172.105.247.100', 1674951626, '__ci_last_regenerate|i:1674951626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777720d59aacac170211acd9ce52058382043dd2', '31.222.203.2', 1674952405, '__ci_last_regenerate|i:1674952405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6cbf81d2532d51d700361246ec2fa51245514f8', '31.222.203.2', 1674952405, '__ci_last_regenerate|i:1674952405;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29cc170b0791672a75658f348b1ba5f08fc589e', '31.222.203.2', 1674952405, '__ci_last_regenerate|i:1674952405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005a0932869d467e2e1cc075f9ca73b8e43da45a', '31.222.203.2', 1674952407, '__ci_last_regenerate|i:1674952407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a833c5bb92b0ab0a79128f7327f4ea27f6f8d57b', '31.222.203.2', 1674952407, '__ci_last_regenerate|i:1674952407;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde205b849cbcd721f9b2229c61ae5f297675e01', '31.222.203.2', 1674952407, '__ci_last_regenerate|i:1674952407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7012d7117ce50d116efe4b5d35351bd689e14d59', '31.222.203.2', 1674954259, '__ci_last_regenerate|i:1674954259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b76639c41acadc9c33f5bef27380ba52fc78701', '31.222.203.2', 1674954259, '__ci_last_regenerate|i:1674954259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f736184ea3b3bc6a61d8322468a6a99a992978ec', '31.222.203.2', 1674954259, '__ci_last_regenerate|i:1674954259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db11c230d1d1eeac76d9227956a5ff6bdc82032', '31.222.203.2', 1674954259, '__ci_last_regenerate|i:1674954259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514860ca23eab1ef4c4c38d6ba3a182f0dce862f', '31.222.203.2', 1674954259, '__ci_last_regenerate|i:1674954259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba7b2faf3473d10e3261b2948d50bd7d3be04cc', '31.222.203.2', 1674954259, '__ci_last_regenerate|i:1674954259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1c97b6b1885214862765eb019c69f8b1ef13ef', '205.210.31.41', 1674954338, '__ci_last_regenerate|i:1674954338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3838636d2728bc8974bbe1090e6f415384fa3a', '205.210.31.41', 1674954340, '__ci_last_regenerate|i:1674954340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9840f6e7af9b037070dd8e29dd493ed596138cba', '205.210.31.41', 1674954340, '__ci_last_regenerate|i:1674954340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5cea180ac89be136139a3985392fed184d395e', '172.105.247.100', 1674957020, '__ci_last_regenerate|i:1674957020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd0836d47d8bd6c175245f1e29c9d25441f4ab8', '172.105.247.100', 1674957021, '__ci_last_regenerate|i:1674957021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da211f2c747a17060c1298693b6d3da2acb98ead', '172.105.247.100', 1674957021, '__ci_last_regenerate|i:1674957021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb534ed9328399ca5853f9c0e64e387ce3f35aa6', '172.105.247.100', 1674957021, '__ci_last_regenerate|i:1674957021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0aefc622792b003fffe14ed8ccaa5842738649', '172.105.247.100', 1674957021, '__ci_last_regenerate|i:1674957021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835e49f039b4593fde335769c5dcd444c59f18ec', '172.105.247.100', 1674957021, '__ci_last_regenerate|i:1674957021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c423615fd5b7f8c635251191fa5f51ad7bab86', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba43e744a448dd8f4bc56dc4599b949a55809c9', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8ff0511c4b1acfaa6c345793c6f4470e91a74c', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e96b0f166cd5b3415319ca77eda3dc914293ff3', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c664829dabf1eead8ad5068e259c201669714a39', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04fec800207799778e3d92b50acd11260505cada', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b319d96b87fa6a6e701622a64780b124bce48243', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6024e8ef9c1e7f217f0e34a9d3c63718e034d87d', '172.105.247.100', 1674957022, '__ci_last_regenerate|i:1674957022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840ad364902fb03ceef012432ab15486523125a8', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66f8eeb1c6a4d56586d36542b797d0333f9ef1d', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fa078c89174f0b794e0b338fd94e18f2c9ee1e', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8d676bc6f961290bc9afd564d11b772247e932c', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0520278276fe0c38bff779ff07c8b73e65860924', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('761b2016677f2981b45b4cb70de4429d6ec59dcc', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9b0b59efb70fdb2ffed6e31ddc6a52fb860b73', '172.105.247.100', 1674957023, '__ci_last_regenerate|i:1674957023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c1aed80101fc30b380d649f872391eac4ebbe58', '172.105.247.100', 1674957024, '__ci_last_regenerate|i:1674957023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6baa13f8effdd8212ebfb4aa32b1cecc46ab21', '172.105.247.100', 1674957024, '__ci_last_regenerate|i:1674957024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30270cca4e9e2edfb737ec01e9643ba52d3cf70', '172.105.247.100', 1674957024, '__ci_last_regenerate|i:1674957024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bb12879fa0260a09c09a974d3a3820ef1f4c3c', '172.105.247.100', 1674962424, '__ci_last_regenerate|i:1674962424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af6780f790c66d4c89b29adc338e81f5c99f11e', '172.105.247.100', 1674962424, '__ci_last_regenerate|i:1674962424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf8605a76a893757eb6bb0f3a7714d1dca16546', '172.105.247.100', 1674962424, '__ci_last_regenerate|i:1674962424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73b103448b8adcde521f57f349d18ae2810cbac1', '172.105.247.100', 1674962424, '__ci_last_regenerate|i:1674962424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddea53070569e280a949abda2af4b32bffda2442', '172.105.247.100', 1674962425, '__ci_last_regenerate|i:1674962425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72fe07e268fb0ba0543f8dd4801e36a366151d3', '172.105.247.100', 1674962425, '__ci_last_regenerate|i:1674962425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdc09193c62b2a34eeb68981a26a2d8693ef438', '172.105.247.100', 1674962425, '__ci_last_regenerate|i:1674962425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e62bf7ee3cc9badc6c85a984d5926cb2158e56', '172.105.247.100', 1674962425, '__ci_last_regenerate|i:1674962425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b4f7e53ea3dcd1f6809624daeb15d8d8b70c70', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3487afa8a5a4f4d4300f83dd4898aa1649ce4c70', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d5d3f64da09f9126513775f2adcbff2d7baf5f', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('562f0be49c567d0e08df246b51c6e269ad3a41d1', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3211adacf0178b56fe8b33afe8e36ac7bb712c', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f65f6183360b54e0a780d5ec738c1f047fea48b', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('453978b5f4688ea1b060d8f6cfb276182352510e', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb986036349e14b44990f7266bc2813541006704', '172.105.247.100', 1674962426, '__ci_last_regenerate|i:1674962426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927f1dd82eddc0a1000ded48f4d68615a58e615e', '172.105.247.100', 1674962427, '__ci_last_regenerate|i:1674962427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cb3daa8c1648a58676fc746cd0f21ae7ed1298', '172.105.247.100', 1674962427, '__ci_last_regenerate|i:1674962427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19dd1aeaa92bfbe523d2082c6193b97b2aa0b95', '172.105.247.100', 1674962427, '__ci_last_regenerate|i:1674962427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bc5ebfa7ed05ad333bec460702b6821a57c869', '172.105.247.100', 1674962427, '__ci_last_regenerate|i:1674962427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5666a27f226963628ca9fc05185cd63085198d', '172.105.247.100', 1674962428, '__ci_last_regenerate|i:1674962428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6ceabe52f26b2c17751d12f9c7463167cd02c9', '172.105.247.100', 1674962428, '__ci_last_regenerate|i:1674962428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b4c42dd7f1f3cc65301b3f2e7e911f65aa4395', '172.105.247.100', 1674962428, '__ci_last_regenerate|i:1674962428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb352fb5ff7cc555d56fd7c5c1dbfd7d344c9d6', '172.105.247.100', 1674962428, '__ci_last_regenerate|i:1674962428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af38978d7a79907cb2e57f4f6aa20c7d57279564', '87.236.176.39', 1674963452, '__ci_last_regenerate|i:1674963452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f79898ee9ed4e06320b17a6e5e45f490fd9964', '87.236.176.39', 1674963453, '__ci_last_regenerate|i:1674963453;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638020852a9082bfebfbeaffef851c8b9c8a26f2', '31.222.203.2', 1674965002, '__ci_last_regenerate|i:1674965002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2530ea922dc7a9abcff738121e3242216fff1b', '31.222.203.2', 1674965002, '__ci_last_regenerate|i:1674965002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723af784a5e61899d3e73a192371968d234dac28', '31.222.203.2', 1674965002, '__ci_last_regenerate|i:1674965002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792fceea9737c2a9a02202b5f7ea9ad17386eafd', '31.222.203.2', 1674965002, '__ci_last_regenerate|i:1674965002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1279e225f0fd803d01a4dcdf04c1bb54707b1b0', '31.222.203.2', 1674965002, '__ci_last_regenerate|i:1674965002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e7f78818f150b3e3cca2071b1eabfecf72a0fb', '31.222.203.2', 1674965002, '__ci_last_regenerate|i:1674965002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c89798f7382f9ff520950b9f9184d0dc9dadcf0', '31.222.203.2', 1674966862, '__ci_last_regenerate|i:1674966862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3f29400fa222b4d1a84f985ad954651ab87e1c', '31.222.203.2', 1674966862, '__ci_last_regenerate|i:1674966862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775eeed2b6682a785c7ecd72b66f4e83ffcf3e6f', '31.222.203.2', 1674966862, '__ci_last_regenerate|i:1674966862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3bf8552a5e4583efee1327a0e79bc8a1319dcfc', '31.222.203.2', 1674966864, '__ci_last_regenerate|i:1674966864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b025d10e77c02ae174c1a79afb82b0702be14a2', '31.222.203.2', 1674966864, '__ci_last_regenerate|i:1674966864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6fcdba14b4cb66bf1dce0c9611afd8fc89b070', '31.222.203.2', 1674966864, '__ci_last_regenerate|i:1674966864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f1becc55d821398b07ee21631a773d71e9991a', '172.105.247.100', 1674967837, '__ci_last_regenerate|i:1674967837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3bab2484ccdad61e872fe24d58bdca38c053bf', '172.105.247.100', 1674967837, '__ci_last_regenerate|i:1674967837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab2e9112662f48d46f81a8ccc1d1f62d87444a9', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9997ea71da2c910f187f1e8b9686e7032c248d28', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fd561dd63b31ac8727a0f820fc6ad2fa8ba3b1', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9a7dd4440d4233281504c5acd0d09f81ed29e7c', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1583a4a6940958db80a84df3fd0ae0ff10116de', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4fab7b513cff904e59d8fd2750cf659b887f055', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45fe4a51ddff22f7baddd33e3702f28e82b34de5', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97789ce733e4315f0ec8a120a3240ffce33c48b', '172.105.247.100', 1674967838, '__ci_last_regenerate|i:1674967838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52580ead0f498455a74314c77eccf3334d0d437b', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a371d3acf21fccd73f281a8c39fa4ff52e92dcb4', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de30b59fbd9d42145ba83d08848328940eb0a56', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1263f8106679d84d805f02a3def88d24ea4a8ff8', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe54aeada7e5ec8d61d819b97b5f4ff844830541', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90c6676c4adf848300354dc780b6ae9d3258fc2', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0b30fc7447bc7becfcddc47b44d3c75aa40f2f', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc06772964709c0385e15fca0157beb2cd61c7b', '172.105.247.100', 1674967839, '__ci_last_regenerate|i:1674967839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ba4b433a43ed1215bc04df9b6b80b23ca86579', '172.105.247.100', 1674967840, '__ci_last_regenerate|i:1674967840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0012631d6b10de3a7ae6d976361ef1a39d108dc', '172.105.247.100', 1674967840, '__ci_last_regenerate|i:1674967840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55e8601ffaae2b3e0196ef66f3c0559c98b90ad', '172.105.247.100', 1674967840, '__ci_last_regenerate|i:1674967840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76aead581c61958deab31f1786b3e3000be29929', '172.105.247.100', 1674967840, '__ci_last_regenerate|i:1674967840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe37f9a5b68d3551f8c36ba79653409517acadd', '172.105.247.100', 1674967840, '__ci_last_regenerate|i:1674967840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f445d9d42136b367c9066899b302dc43d5c1a5', '172.105.247.100', 1674967840, '__ci_last_regenerate|i:1674967840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731ec141f8c90d8049d33e953c0b2deb84565e3d', '45.120.39.89', 1674969106, '__ci_last_regenerate|i:1674969106;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674969081;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6366ac297156be7c050ebc1e08cfeb0a8e4e43f5', '45.120.39.89', 1674975590, '__ci_last_regenerate|i:1674975590;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674972418;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f7b785538a52e691c58bedb4b146b0e021c020', '199.195.250.129', 1674970985, '__ci_last_regenerate|i:1674970985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c4d20e1da82defde347af16002594b28590f08', '199.195.250.129', 1674970987, '__ci_last_regenerate|i:1674970987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5372bee92ed13949932067057ff8c6b0be428f5', '199.195.250.129', 1674970989, '__ci_last_regenerate|i:1674970989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568adddcf9874807826dff6a24c27e16c908d2e8', '199.195.250.129', 1674970991, '__ci_last_regenerate|i:1674970991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec05df069d4e4618e120e00bd642e408b97237f', '45.120.39.89', 1674972167, '__ci_last_regenerate|i:1674972167;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674969388;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd9768f6c48b27d363afce829d5395937494212', '172.105.247.100', 1674973222, '__ci_last_regenerate|i:1674973222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a20a97070ba13934329aa2ff07d4d99879467e56', '172.105.247.100', 1674973224, '__ci_last_regenerate|i:1674973224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('086e1e03f0f1a157f4524d5d1d5301dfd4f95dad', '172.105.247.100', 1674973225, '__ci_last_regenerate|i:1674973225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff9a5ace464b7196fe365a661a5b233a6a7f9c9', '172.105.247.100', 1674973225, '__ci_last_regenerate|i:1674973225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cbf48f441da051f0a20e985c306638a172508d', '172.105.247.100', 1674973225, '__ci_last_regenerate|i:1674973225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d2fad26b6a4e31bdc79b1c35571bf443f4a227', '172.105.247.100', 1674973225, '__ci_last_regenerate|i:1674973225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30ad998ebe96f8f9650605c07181271dbc17d54', '172.105.247.100', 1674973226, '__ci_last_regenerate|i:1674973226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1173043a0e97ea6b033aa3592834d0bd844ebba1', '172.105.247.100', 1674973226, '__ci_last_regenerate|i:1674973226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b65b4af1d98aa04ac8351dd984fda882d4ee1f', '172.105.247.100', 1674973226, '__ci_last_regenerate|i:1674973226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705b3f90d89d1cceb9073d1a13a4079a8ef9f7a2', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0eb139d2548c01133c6ba7430c9d362abc60d2', '172.105.247.100', 1674973226, '__ci_last_regenerate|i:1674973226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13c60423390b8f6a914323712828cce1354acbf', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b093f67501fa237803e7e81e4cba180e90a2c3', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45c91bd35fcbf966d0ad8c510b05b69f6ca31d3', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfde651b186e76494b4e1dd44563ae62bb3a42a8', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2649ce3b92bd754452bac291f639349f6bcf5109', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b355472b4d2151e7c52b7198458ffa9f5b45d930', '172.105.247.100', 1674973227, '__ci_last_regenerate|i:1674973227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85864b4fcb77b46652eeeaefcf311c39c0ee17c2', '172.105.247.100', 1674973228, '__ci_last_regenerate|i:1674973228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f023266c590b41549cb93ae64bc653920606de', '172.105.247.100', 1674973228, '__ci_last_regenerate|i:1674973228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68783db4dbc1e49a88c7a4a994bdf3e0d1484245', '172.105.247.100', 1674973228, '__ci_last_regenerate|i:1674973228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb4e192dbfb556409fea10b9ca3049b706dee27', '172.105.247.100', 1674973229, '__ci_last_regenerate|i:1674973229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201e4eeadc569fbe7585679ca7f1e4cc662a85eb', '172.105.247.100', 1674973229, '__ci_last_regenerate|i:1674973229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a915c0acf16d00e715adf0ae0dc840aea4b7b6', '172.105.247.100', 1674973229, '__ci_last_regenerate|i:1674973229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3717224445ab16543da26e85be97a18aebcdd7', '172.105.247.100', 1674973229, '__ci_last_regenerate|i:1674973229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2566237d034a0781dfafc3902b1c1a59128ab0f8', '45.120.39.89', 1674976275, '__ci_last_regenerate|i:1674976275;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674972418;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96eb89021fdd2d1125f8e4fe4849201f1b7f11a0', '31.222.203.2', 1674975785, '__ci_last_regenerate|i:1674975785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3074b06c1581864dc0e84d8fc411edd4693d006', '31.222.203.2', 1674975787, '__ci_last_regenerate|i:1674975787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de08ba7782df6d746685e89947d0314aa4cd3623', '31.222.203.2', 1674975787, '__ci_last_regenerate|i:1674975787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc17cb04e980895cb2bc509b06c3ef41640f3f7', '31.222.203.2', 1674975787, '__ci_last_regenerate|i:1674975787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b129ea0dd94361b24fb058552b161e5bebb9e077', '31.222.203.2', 1674975787, '__ci_last_regenerate|i:1674975787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f242437c076432b63d30c904f264fc4614f1fd', '31.222.203.2', 1674975787, '__ci_last_regenerate|i:1674975787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c12883e48ac88b6d0756570aa166a4938615a033', '45.120.39.89', 1674980633, '__ci_last_regenerate|i:1674980633;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674980591;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51247347473579e476e16166f38a8ce57aa11813', '31.222.203.2', 1674977661, '__ci_last_regenerate|i:1674977661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b48a8065d1db5e0010af2626104878cfdeac1d', '31.222.203.2', 1674977662, '__ci_last_regenerate|i:1674977662;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082a0ed967f254303ebd204c716656f577e0418b', '31.222.203.2', 1674977662, '__ci_last_regenerate|i:1674977662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5973e9522f7b3fdabea8bd3d5e2d7dd7b8c1983a', '31.222.203.2', 1674977662, '__ci_last_regenerate|i:1674977662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62fc7dd5afc0ad4e435527db19aad581eeea1ed1', '31.222.203.2', 1674977662, '__ci_last_regenerate|i:1674977662;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7481dd39dd122431b93e2d7026e54602bc9c6ca4', '31.222.203.2', 1674977662, '__ci_last_regenerate|i:1674977662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa2220dc98b5eb2ef9eaa42b620feec52068526', '172.105.247.100', 1674978620, '__ci_last_regenerate|i:1674978620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67a110276bfb21f90570cd1a6c368ef65efe2be9', '172.105.247.100', 1674978622, '__ci_last_regenerate|i:1674978622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797f55e48d4a408bfe8f5db1e777e4779b46a9f3', '172.105.247.100', 1674978622, '__ci_last_regenerate|i:1674978622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e44ab5a85da51aebce45763430b8cb8f7b732e4', '172.105.247.100', 1674978622, '__ci_last_regenerate|i:1674978622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('392391954a4a44649e02b5f8df7f85bfcd150866', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5026d5001e9685747ba19ab2ea36cc3b659116', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad64b321d13df36277c2424d8a9154af980eb74e', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878f202d16b91bd28be8f62d96b9ddb34915dbd4', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a597037ffdd136dae94d9dba67f50917b9e8a4', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae91911bca11b4fd62ce3d164c2e0364efa2d76', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b73b09121b3e5f91f23fdbf6f4da1e800b91d175', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad1dae0359150bbe90049c1eb9d8503052d291b', '172.105.247.100', 1674978623, '__ci_last_regenerate|i:1674978623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f59d3370c37b8ce92f668207c5da04e0a1d0ec5', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42bd481d90e30d3075dcc3a0e9563f69a3f712e7', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dcc9b8d5b171e94725db075620b15ec6e3165a', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b762761830f10a18440288f8f84d4c71830092d', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42bf6196b9c459cdff855e1f5d995de2e22edda', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f5cafe822eca04ad95c3431041c78443f28c91', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be218c747395cc1d12c7e7117965b1685aaa70b2', '172.105.247.100', 1674978624, '__ci_last_regenerate|i:1674978624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638676bd660ffc9bcf8fbc27b0cab9a31aa84249', '172.105.247.100', 1674978625, '__ci_last_regenerate|i:1674978624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de520e425be8b65b825a9563cb556df5324ae8e0', '172.105.247.100', 1674978625, '__ci_last_regenerate|i:1674978625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8a4fdb5fb4708f9aafd538c920c2d98f4bed21', '172.105.247.100', 1674978625, '__ci_last_regenerate|i:1674978625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb655c5303a95632dc02b2122f630a1965134e5', '172.105.247.100', 1674978625, '__ci_last_regenerate|i:1674978625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82394d40cd248852e2e3adc72cc28ae3c76f68f4', '172.105.247.100', 1674978626, '__ci_last_regenerate|i:1674978625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5ece60a1bc522e624dfa2cc5a020f9927eb84e', '45.120.39.89', 1674983856, '__ci_last_regenerate|i:1674983856;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674980634;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5931e5625c547c7581dd3de25f4e3eae9b9c7ee', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac468334540335124d308cf700006d68ae4881f7', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c4be6f9bb2dc31bcd113b6b6aa05ef6ce1736b', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d6a43e88c8474fe7da6709cb77c39a390b1e87', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014ebde9baf5d16685186df80d9778f9da62fa66', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52688a5c38e3255a878094a3e5ba39d9faf7ee0e', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4aacce030c10e6758c4d37ca1691ea67dc9969', '172.105.247.100', 1674983423, '__ci_last_regenerate|i:1674983423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54627475424e32bd6ff40c7bbdd0eab5b99615a', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2272887d5671813666d0ec11b30fd7279327dc4e', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('036e3b62f69e32ce0f270c24b7d9579afb4562bb', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b00889f814219258859fc7e7f68d9b5bc667f0fd', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503517b0ed6962d77270d505dfa27d37da573a06', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05311733ef284472aa70bf53bec02a0969e53f8', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab14125e8861a4cd0ba5e22ed11c4d555a6a61b1', '172.105.247.100', 1674983424, '__ci_last_regenerate|i:1674983424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ed8f3955b772fc5fc8ddb324619d134b71789a', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24dabafad21119176f1b4f9305602fded224dec', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739d0ac2dabbadaa8df9d00b775fe99eb53257f3', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('356d5b8ee7727829a2e0ba32bb017eef0ed15165', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c5f554148e61f64ebad1dda3b362bbb20b962b4', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87851247417515cdc411df46dd10cadc959a0abc', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26d0d6474475bf352e12a6158bf83a23be4eca2', '172.105.247.100', 1674983425, '__ci_last_regenerate|i:1674983425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ed02b818f3065fe6d648a9bf040ba4a5e85020', '172.105.247.100', 1674983426, '__ci_last_regenerate|i:1674983426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f656341f642eda75ab548f172013c93d147b40c2', '172.105.247.100', 1674983426, '__ci_last_regenerate|i:1674983426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c234196c0ea29668d7a54379e40ba34b0e3c2f4', '172.105.247.100', 1674983426, '__ci_last_regenerate|i:1674983426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7030aeabdc5e4ea6523e0e430102538d821b4b', '45.120.39.89', 1674986546, '__ci_last_regenerate|i:1674986546;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674986425;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e136b49cc3071350c8071a597756123b06f9658', '31.222.203.2', 1674984786, '__ci_last_regenerate|i:1674984786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea937ec0fd23c4ec9d6d864416345b5f4c7655e', '31.222.203.2', 1674984786, '__ci_last_regenerate|i:1674984786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d0ef22da97883efbeb83542a95257f431e8368', '31.222.203.2', 1674984786, '__ci_last_regenerate|i:1674984786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da1fd85ee977185b9548159a30eb95d68b68e858', '31.222.203.2', 1674984787, '__ci_last_regenerate|i:1674984787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3b36dd5c93629e9b48d1e024def8cc4c842e7e', '31.222.203.2', 1674984787, '__ci_last_regenerate|i:1674984787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f7cc54baa3d0a6db929be515b1476aa055ed29', '31.222.203.2', 1674984787, '__ci_last_regenerate|i:1674984787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b30fa6e5e7f491a4ed7cfe6f33374837f2e637', '45.120.39.89', 1674988483, '__ci_last_regenerate|i:1674988483;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674986562;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d14e47ca67067e5f026ebe922a3b833c60aa29d7', '31.222.203.2', 1674986658, '__ci_last_regenerate|i:1674986658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726d6eab54f6fc7686202b8e258a383620e702fb', '31.222.203.2', 1674986658, '__ci_last_regenerate|i:1674986658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7497453217304d696befd7cabf31c45d4f91b5d3', '31.222.203.2', 1674986658, '__ci_last_regenerate|i:1674986658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa4e31103363ed6b66459a90589e51369b6af6b', '31.222.203.2', 1674986660, '__ci_last_regenerate|i:1674986660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db6e9d8dfcd983e07d8b91d8faca4422b3fe592', '31.222.203.2', 1674986660, '__ci_last_regenerate|i:1674986660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18c3b15f349cc46ee64b3bf75a60ba4643d31f3', '31.222.203.2', 1674986660, '__ci_last_regenerate|i:1674986660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ab042d3fd2c0b00c275f82ceae689d23016fa8', '172.105.247.100', 1674987626, '__ci_last_regenerate|i:1674987626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03df5c8f3baebb94ffb390c7691a9c88d8b003d6', '172.105.247.100', 1674987626, '__ci_last_regenerate|i:1674987626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e268ad07db1a0e67f5ed046bbafaf8fbfe9941b0', '172.105.247.100', 1674987626, '__ci_last_regenerate|i:1674987626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd22a6dd01f2dc4503d95b399eb98c6e0387bc11', '172.105.247.100', 1674987627, '__ci_last_regenerate|i:1674987626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5be9f7de5d32cc5fbc1c119a57f3e92dda43a4a', '172.105.247.100', 1674987627, '__ci_last_regenerate|i:1674987627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08363a5e585bf2245fc2a3e9a346a878376bee14', '172.105.247.100', 1674987627, '__ci_last_regenerate|i:1674987627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad3a8c70b160050043e25a9a053ff06887559d9', '172.105.247.100', 1674987627, '__ci_last_regenerate|i:1674987627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b21de2ed89427e771f7519f48a101b6d649c77', '172.105.247.100', 1674987628, '__ci_last_regenerate|i:1674987627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52db37a44973ba1201f21137fc48d82e7601ddb6', '172.105.247.100', 1674987628, '__ci_last_regenerate|i:1674987628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406f1065b9beddfea3c66107c6d79eb3916b1d19', '172.105.247.100', 1674987628, '__ci_last_regenerate|i:1674987628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002a76ed0673b92120056002c1d54bc1f5961f4c', '172.105.247.100', 1674987628, '__ci_last_regenerate|i:1674987628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0de123eb53eec0cddf64a3ae6e961ac45cbc8a', '172.105.247.100', 1674987628, '__ci_last_regenerate|i:1674987628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103cfbe3fe2d5ac9c3182c664ab40d30721cff38', '172.105.247.100', 1674987628, '__ci_last_regenerate|i:1674987628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf08a65a2dad45bb2cc33169a5df02148c4fb750', '172.105.247.100', 1674987629, '__ci_last_regenerate|i:1674987629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ff7822d7a18e6bb6029c4f9b92537e36be9efd', '172.105.247.100', 1674987629, '__ci_last_regenerate|i:1674987629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1037ccd86f516275363d870f624c913933b3c390', '172.105.247.100', 1674987629, '__ci_last_regenerate|i:1674987629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314de5b900d83c8e5180a8cad5af1deeb9103423', '172.105.247.100', 1674987629, '__ci_last_regenerate|i:1674987629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('837cd5494c8b8267a8d29bc7cf7f5aa28def8632', '172.105.247.100', 1674987629, '__ci_last_regenerate|i:1674987629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14764ffb14a1d16b4b725365d606bae0a3edc020', '172.105.247.100', 1674987630, '__ci_last_regenerate|i:1674987630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510ae5ddee7a6795a1559e999cfb4d772f961be8', '172.105.247.100', 1674987630, '__ci_last_regenerate|i:1674987630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01ca99b9ac09c39e0afac045380df4dbebe9a03a', '172.105.247.100', 1674987630, '__ci_last_regenerate|i:1674987630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3cfb9e178c86b9fcd9045f7901f89ca312b3da9', '172.105.247.100', 1674987631, '__ci_last_regenerate|i:1674987630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1023a46dd2639426a95234f2e0f425413aaae4ff', '172.105.247.100', 1674987631, '__ci_last_regenerate|i:1674987631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f1d5ae72fd294b78e80a4ef5465fa9acd408ff6', '172.105.247.100', 1674987631, '__ci_last_regenerate|i:1674987631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f735d615579a1a4bee6581caba95eaa7f6c3854', '45.120.39.89', 1674992352, '__ci_last_regenerate|i:1674992352;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674988512;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f22b6420fb165e31beb297dd28fb25a807b298', '45.120.39.89', 1674996301, '__ci_last_regenerate|i:1674996301;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674996268;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846a1eba8f8824658309a3846d812bcc777ba794', '172.105.247.100', 1674992423, '__ci_last_regenerate|i:1674992423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8867cdcdf13412a03ecf8c04d7827f5516ce752', '172.105.247.100', 1674992423, '__ci_last_regenerate|i:1674992423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e42462a46ddeb8d95aef9cf34ad97798694fe0', '172.105.247.100', 1674992423, '__ci_last_regenerate|i:1674992423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4876ef1aed08fffcb23608719fe253a486eaab', '172.105.247.100', 1674992423, '__ci_last_regenerate|i:1674992423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22504c15a320c9921dc6791467d91eb153d0a0e9', '172.105.247.100', 1674992423, '__ci_last_regenerate|i:1674992423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('559cd3570ce574e8398c5ce7e562f12b710396d4', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6481d2d993e1e02971f3712a20ef29e9f03c24', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca1c153a6d296bf7d1b525c02a4e394b68760975', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7954c38241499531cf1c7e2610d2b7d78993ff', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59361aed3db1074a6e7a0b5703b725753717f70', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1fd667e793a4668edde8c47426a93b822dfda06', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c27b10920f07e417abfd610fff636171fd946d', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3e0ca7ab9fdc9a054991f7738673d6276401af', '172.105.247.100', 1674992424, '__ci_last_regenerate|i:1674992424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ec1df0848439b7c1b6bb2418f2fd821b4a165a', '172.105.247.100', 1674992425, '__ci_last_regenerate|i:1674992425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed5e2573e84cbf0b992fbb7fe48532fc486bbd3', '172.105.247.100', 1674992425, '__ci_last_regenerate|i:1674992425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65817332aad0b2b22d8d21252a23af74c6a96549', '172.105.247.100', 1674992425, '__ci_last_regenerate|i:1674992425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040006cf2d4af01bbac4b216f978ae4ae64f5a34', '172.105.247.100', 1674992425, '__ci_last_regenerate|i:1674992425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8fe24dcbad3076503223af7b9150436068ccf0d', '172.105.247.100', 1674992425, '__ci_last_regenerate|i:1674992425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be94a88cba84cee8b87eb20d0563b7671ccf375', '172.105.247.100', 1674992425, '__ci_last_regenerate|i:1674992425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc55e59b936aa9e8fbe3282ae5e714bee1e9274', '172.105.247.100', 1674992426, '__ci_last_regenerate|i:1674992425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5209ef559366fdd9fdf520f4b3611aa1cb5d7994', '172.105.247.100', 1674992426, '__ci_last_regenerate|i:1674992426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841aa311d43e8909163a0166e73bba65a7198ba4', '172.105.247.100', 1674992426, '__ci_last_regenerate|i:1674992426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1172ef0aca58404c3bcb0459367925e5b48beb', '172.105.247.100', 1674992426, '__ci_last_regenerate|i:1674992426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4baab994bce98243ad0e5fbf2976cc6688e6503', '172.105.247.100', 1674992426, '__ci_last_regenerate|i:1674992426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf1144ad4df30e712dd095b9ac524ebc1570788', '31.222.203.2', 1674993797, '__ci_last_regenerate|i:1674993797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea025195871564a214a58fb1dd1a5cc6ccfab915', '31.222.203.2', 1674993797, '__ci_last_regenerate|i:1674993797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9736be13cbc3f5908a20b05b5e4b8b1956c6420', '31.222.203.2', 1674993797, '__ci_last_regenerate|i:1674993797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4278f02975dcfedc8da253dddaefb26b5facebba', '31.222.203.2', 1674993797, '__ci_last_regenerate|i:1674993797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218395b31aea6766578f0bab26538e025123738c', '31.222.203.2', 1674993797, '__ci_last_regenerate|i:1674993797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208756a8b0267e5905374a6de888b36e84dcc39e', '31.222.203.2', 1674993797, '__ci_last_regenerate|i:1674993797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a12e93ca403de58524631e49097268736bce520', '31.222.203.2', 1674995659, '__ci_last_regenerate|i:1674995659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7716ad30219d5ff6206ced0c0a987ca73acc74cf', '31.222.203.2', 1674995659, '__ci_last_regenerate|i:1674995659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4621b8a5e7ad43a2fd61d88420d46625f5f586', '31.222.203.2', 1674995659, '__ci_last_regenerate|i:1674995659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b66664306e5ea4e723a7efbbb5249530ee4f76b', '31.222.203.2', 1674995659, '__ci_last_regenerate|i:1674995659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82706fb55781611b3133a5ff77c2b231034c8b1', '31.222.203.2', 1674995659, '__ci_last_regenerate|i:1674995659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fa21a4d91027dcffae0e45bf83a3c2250e83ab', '31.222.203.2', 1674995659, '__ci_last_regenerate|i:1674995659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f23de13720b4889aa56e359e9f15aa3ae20307', '45.120.39.89', 1674999151, '__ci_last_regenerate|i:1674999151;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674996301;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe7ead94d0aba3ab3b424fb03f7a3e172231a5e', '172.105.247.100', 1674997833, '__ci_last_regenerate|i:1674997833;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f53d6ad6eaacf747c24a3d9e239f65c948ef56', '172.105.247.100', 1674997833, '__ci_last_regenerate|i:1674997833;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5928cfd948a302037e1d94159cca86eb579798e', '172.105.247.100', 1674997834, '__ci_last_regenerate|i:1674997834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f7f8c0dc441cb566f25b8edf59b6cbb27a9fb3', '172.105.247.100', 1674997834, '__ci_last_regenerate|i:1674997834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8cb84da5a9538b7a0412a528cc32441587704de', '172.105.247.100', 1674997834, '__ci_last_regenerate|i:1674997834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54a4b33a49c2b87356997b357055753a24281c4', '172.105.247.100', 1674997834, '__ci_last_regenerate|i:1674997834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c5113d55c0bcd134c0bcd6a9653c4cfda58411', '172.105.247.100', 1674997835, '__ci_last_regenerate|i:1674997835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de907e40da826bd35661b42cc20eae02417a1e45', '172.105.247.100', 1674997835, '__ci_last_regenerate|i:1674997835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536a613988c99b1d0d61fac298b668bb0abf24ca', '172.105.247.100', 1674997835, '__ci_last_regenerate|i:1674997835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202d5cc266625278f732b62d1aadbf377e908635', '172.105.247.100', 1674997835, '__ci_last_regenerate|i:1674997835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a05bb146ff8867c93caa2ea0ea8644c111afc24', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('028ac296ebdc1d481e1b3dc6d5e9621b548a771f', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55e438256f946a79c91b9acd20dd1e4d0cdd8eec', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6a0f272adb2c03f7704fdf9437871e1d4f96454', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('988fd7431f1d334ee87f671d46cc7e8ced6dad8f', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3adb858b3aa7dd74d5944f7b5eb75e68ea95af83', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0709e4bf1c1b3119985e33619b28da66d9e6ddb', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f41c4f096a288cdd6ddd49bd69eb2eddeccf11', '172.105.247.100', 1674997836, '__ci_last_regenerate|i:1674997836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c561dd9aded340a92909ca43d7f6ac3905cfc7', '172.105.247.100', 1674997837, '__ci_last_regenerate|i:1674997837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb24e30628d39034697be44fa2370dc4a5076517', '172.105.247.100', 1674997837, '__ci_last_regenerate|i:1674997837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638f3be598e779fe543bb6e8c9c3036fa27f73da', '172.105.247.100', 1674997837, '__ci_last_regenerate|i:1674997837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e95f1cf5b1b7db05747f5b3809922fb2762c98', '172.105.247.100', 1674997838, '__ci_last_regenerate|i:1674997838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f90094cb7b1f7142337ca6bd04fa1f1061157f0', '172.105.247.100', 1674997838, '__ci_last_regenerate|i:1674997838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('135c3a9eae33d8299e00ef85e38cb1e14a16adce', '172.105.247.100', 1674997838, '__ci_last_regenerate|i:1674997838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0372c4ed36566569d28ba8f4b51eca300a6eb9dc', '45.120.39.89', 1674999471, '__ci_last_regenerate|i:1674999471;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674999181;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12ae7c53a25ffa2936d0d795a5b6f40ac40ff3c', '45.120.39.89', 1675002879, '__ci_last_regenerate|i:1675002879;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1674999485;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe821994bec16d23e5ccb623f6340ba0ab32c5b7', '205.210.31.185', 1675001030, '__ci_last_regenerate|i:1675001030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc67fed0800f451914dd6eadf45b4da5b69b313', '205.210.31.185', 1675001032, '__ci_last_regenerate|i:1675001032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e165852f2dbd4aa7b3da73324c0d132d3eba09af', '205.210.31.185', 1675001032, '__ci_last_regenerate|i:1675001032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b313f045d2d6f5463eb3126d81d01598606a3baf', '172.105.247.100', 1675002020, '__ci_last_regenerate|i:1675002020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5979ba4672d247c3c94fc460c2c3674898065708', '172.105.247.100', 1675002020, '__ci_last_regenerate|i:1675002020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a66b14fb4e7f48e19016233322f53d4697046c', '172.105.247.100', 1675002021, '__ci_last_regenerate|i:1675002020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64457849d0dea1794768a10070790bb4fcbc4d6', '172.105.247.100', 1675002021, '__ci_last_regenerate|i:1675002021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b40953c59b206527af7ff36a31c52e22696568', '172.105.247.100', 1675002021, '__ci_last_regenerate|i:1675002021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e036ff4609c2596586d9052f8343ab658c82d15', '172.105.247.100', 1675002021, '__ci_last_regenerate|i:1675002021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('206814a958a05e319b03664d6bd394e8227fe736', '172.105.247.100', 1675002022, '__ci_last_regenerate|i:1675002021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1d46b8057f54e7cdf9eb45cea9bdbb8d52f416', '172.105.247.100', 1675002022, '__ci_last_regenerate|i:1675002022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856f86cbe88093f3ec95cd1205068a6de913de87', '172.105.247.100', 1675002022, '__ci_last_regenerate|i:1675002022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e14ff621651af5f9cf4dfa153af73e8db23286b', '172.105.247.100', 1675002022, '__ci_last_regenerate|i:1675002022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6906592882ad9c2607296d98836bba76d1801b5a', '172.105.247.100', 1675002023, '__ci_last_regenerate|i:1675002023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcb03923034cdf087f188688665e864a1e04862', '172.105.247.100', 1675002023, '__ci_last_regenerate|i:1675002023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8877c39acdaa651083c529f02ac1da8a2af3fce', '172.105.247.100', 1675002023, '__ci_last_regenerate|i:1675002023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5905cd624d3f23039a07971fefe037dc2c36ed52', '172.105.247.100', 1675002023, '__ci_last_regenerate|i:1675002023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0206d783103e8bfd6497c988216a2a40f45d6a7e', '172.105.247.100', 1675002023, '__ci_last_regenerate|i:1675002023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89775650159006943734e82e78042cbba17121ec', '172.105.247.100', 1675002023, '__ci_last_regenerate|i:1675002023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd07cd8831f275a9374dc01d54368c8fbe50fcc1', '172.105.247.100', 1675002024, '__ci_last_regenerate|i:1675002024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d2eef6fa6dedad0b8074e530f5760d3c35dc6b', '172.105.247.100', 1675002024, '__ci_last_regenerate|i:1675002024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8125062996ff0686e3aed40e250b2f0ec912d499', '172.105.247.100', 1675002024, '__ci_last_regenerate|i:1675002024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ad4a8955d9acfeaf09b0f16b7f204e56aeec42', '172.105.247.100', 1675002024, '__ci_last_regenerate|i:1675002024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ff34f2b2b745f9e816f28b6d5de310a500294d', '172.105.247.100', 1675002025, '__ci_last_regenerate|i:1675002025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108aca63f12017bc0ebf843f9a13f9f625a1130f', '172.105.247.100', 1675002025, '__ci_last_regenerate|i:1675002025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942eada18555d4f568d2620a09e287d9de68e70b', '172.105.247.100', 1675002025, '__ci_last_regenerate|i:1675002025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c746eb7de9bb52fd2ace883cd26dab7b6294723', '172.105.247.100', 1675002026, '__ci_last_regenerate|i:1675002025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bbd459592b3fe7e3224c2e2d98a361f2c7343b', '45.120.39.89', 1675003345, '__ci_last_regenerate|i:1675003345;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675003338;register_id|s:3:\"325\";cash_in_hand|s:9:\"7440.0000\";register_open_time|s:19:\"2023-01-28 20:52:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ccddf4cabb63acd5d4bec35b54dc0fb2279ded', '37.111.218.48', 1675003383, '__ci_last_regenerate|i:1675003345;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674886211\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675003383;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c510d33b897ca0e61634f934500d10ce817972', '198.235.24.5', 1675004107, '__ci_last_regenerate|i:1675004107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c976335461e3a90222a86cf8d05586ea96ce255', '198.235.24.5', 1675004109, '__ci_last_regenerate|i:1675004109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18337ab841280dec765a5ad455ed205ceee7523d', '198.235.24.5', 1675004110, '__ci_last_regenerate|i:1675004110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd0e3ffe02fafee7f8c7f6fed21b45aa6a6dc00', '31.222.203.2', 1675006404, '__ci_last_regenerate|i:1675006404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5a9bc78e051cc470a5c02012f963fe3efca116', '31.222.203.2', 1675006404, '__ci_last_regenerate|i:1675006404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ad29dad23f6ed0e6bef93dc066abcb15307867', '31.222.203.2', 1675006404, '__ci_last_regenerate|i:1675006404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b814e75fe23e1bf302a0bf29c8730cadbbe97fd', '31.222.203.2', 1675006406, '__ci_last_regenerate|i:1675006406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e44c6ed93b0d2fda54a2bfdfeaad6fe530f985d', '31.222.203.2', 1675006406, '__ci_last_regenerate|i:1675006406;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c540e1ad066542749609d38cf3a9db4c60750ec9', '31.222.203.2', 1675006406, '__ci_last_regenerate|i:1675006406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaef638f0af5a6139b76cbb3de077bb3cf4ee8a2', '172.105.247.100', 1675006821, '__ci_last_regenerate|i:1675006821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92eb823850fb7ebb48c9a52d404838af1cb8686a', '172.105.247.100', 1675006821, '__ci_last_regenerate|i:1675006821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6dbf5430b4d13424d4ca84111197f1d042cbf2', '172.105.247.100', 1675006821, '__ci_last_regenerate|i:1675006821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad95a7f92dad523862d910e6ddd0d97a14123aab', '172.105.247.100', 1675006822, '__ci_last_regenerate|i:1675006822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('009e77ea723dadb009cc91470692684bfbc23801', '172.105.247.100', 1675006822, '__ci_last_regenerate|i:1675006822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1150fe6cb4c46f30f261772de6ee9dbdc8c5d4bd', '172.105.247.100', 1675006822, '__ci_last_regenerate|i:1675006822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c14355b6f6be4d09d881e145a5a0ffd7715579', '172.105.247.100', 1675006822, '__ci_last_regenerate|i:1675006822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04cd930b02ba94a9fccdcedd54e14ca2a01c7141', '172.105.247.100', 1675006822, '__ci_last_regenerate|i:1675006822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0a97ad76a9e2b6767ee20140e9260a1752c128a', '172.105.247.100', 1675006822, '__ci_last_regenerate|i:1675006822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def694f6ddeca7912d9875e706f88fa0df77c983', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429cc9d17bdf6e800605aadb614187ad1e3f637e', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ff2da5def8a944544708aa68bafddc4dec6c95', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc42b24e1d7c532c56f40663cad44d7155cc722', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd95549f1eb258307bd27baf85a29f761ad4cc3d', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2bbaf4bdf1e36896b0cb0cd2a0e1d628b1e10e', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f022416bdc7166e040339b5bfa4b1bfcdcfa8e', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf7c57be228703efce9fe60fb43b035dd9c3acc', '172.105.247.100', 1675006823, '__ci_last_regenerate|i:1675006823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ead101f92b9d7dbc2072bbb70c3001680866953', '172.105.247.100', 1675006824, '__ci_last_regenerate|i:1675006824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3533b2f31741054f11bb5ae406dd2cc7adbb8754', '172.105.247.100', 1675006824, '__ci_last_regenerate|i:1675006824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b2e13bb27d40bf62a2cd966b4d5bfb8285f67e', '172.105.247.100', 1675006824, '__ci_last_regenerate|i:1675006824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce3bebb7af1cc06157674a3b475e2f0108dab06', '172.105.247.100', 1675006824, '__ci_last_regenerate|i:1675006824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69cddd3f58968bfb7bbb59151e6cce51d8bfd505', '172.105.247.100', 1675006824, '__ci_last_regenerate|i:1675006824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c93e258f344d506a0f14aebe67df7387115f54f', '172.105.247.100', 1675006825, '__ci_last_regenerate|i:1675006825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df03bf2f4f6674f9c798f73d49df6021a83ed7d', '172.105.247.100', 1675006825, '__ci_last_regenerate|i:1675006825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca75074190bc7bd3df8586cfe4b3315f826ce44', '172.105.247.100', 1675011625, '__ci_last_regenerate|i:1675011625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d63394a298b452bac019bf3dc7340770c3f924', '172.105.247.100', 1675011627, '__ci_last_regenerate|i:1675011627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c23cc3ec253f836f89cdf8a25a0bc5319a8d7d3', '172.105.247.100', 1675011627, '__ci_last_regenerate|i:1675011627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0b748b67cc759aed227de8a8a8cf2601d99158', '172.105.247.100', 1675011628, '__ci_last_regenerate|i:1675011627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5aad0ed41921319de6e8537ed6083dc5fa70822', '172.105.247.100', 1675011628, '__ci_last_regenerate|i:1675011628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55780ccfef59ffc5830d41e889bb9a351a8d711d', '172.105.247.100', 1675011628, '__ci_last_regenerate|i:1675011628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b573de74434cd816948bcde1c5fd1a8e7fa18d', '172.105.247.100', 1675011628, '__ci_last_regenerate|i:1675011628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe733f92f0063982f3fa77ef88f7701c42c8e24', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30ad8dba651345384316d4127856a65b5e6fd9d', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41afb02eba0fa4594aba955e0b05f8ebfb43eb30', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727de00008a7099c9f756d7fcf8cd6828b881bc6', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6563daba822a47f5aedfd5401d52eea9a0831cc3', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebda4e025c893820cf341ffcb10faa5e6e1032eb', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66cb34f25468992a951d4a97d4c44b4a6451dc5', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1e7d373c230a91f749594299cc40b1107fad46', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83731c1ad6682722079091fb0b281980ef5fe275', '172.105.247.100', 1675011629, '__ci_last_regenerate|i:1675011629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0495724aa53eaf220283eca2e02fdff5ad62677b', '172.105.247.100', 1675011630, '__ci_last_regenerate|i:1675011630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4add052424c6aa587c14c2a7e205d9c99d55db6b', '172.105.247.100', 1675011630, '__ci_last_regenerate|i:1675011630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db647e98140baf94009933c2419d19d0b7e064fa', '172.105.247.100', 1675011630, '__ci_last_regenerate|i:1675011630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c94d7791e351158603b86f623d53f7afc6ecdd7', '172.105.247.100', 1675011630, '__ci_last_regenerate|i:1675011630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e4eb9c858fd6617a6d69ca3ba4c1f0d671f500d', '172.105.247.100', 1675011631, '__ci_last_regenerate|i:1675011631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cea007f3bfbe8c79274fea85029860b1bec9fae', '172.105.247.100', 1675011631, '__ci_last_regenerate|i:1675011631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a5581545fad704c4d161b4cb4f5fa8c5bc0521', '172.105.247.100', 1675011631, '__ci_last_regenerate|i:1675011631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada5a1cb9a883f821f8e133f538df5c053ba4492', '172.105.247.100', 1675011631, '__ci_last_regenerate|i:1675011631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19440313a9d779bb071d3283429533e7613c78cd', '31.222.203.2', 1675015396, '__ci_last_regenerate|i:1675015396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('128a541e6a7d8c8ad12f03b73cde1f95a5612c80', '31.222.203.2', 1675015396, '__ci_last_regenerate|i:1675015396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994ff7c3001d28c7575c3fb3d5e04cbb77f0f7b3', '31.222.203.2', 1675015396, '__ci_last_regenerate|i:1675015396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad9a55dbc0a2969328debef9166149b45e35aa0', '31.222.203.2', 1675015396, '__ci_last_regenerate|i:1675015396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adbe501aa94812f44d5f591aca230fbeb3c090a3', '31.222.203.2', 1675015396, '__ci_last_regenerate|i:1675015396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e7d359d93fe0032c11e72d80d65ade30c045eb', '31.222.203.2', 1675015396, '__ci_last_regenerate|i:1675015396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3c0b94d4a8c19e3495a76db40f14d65808becd0', '172.105.247.100', 1675016421, '__ci_last_regenerate|i:1675016421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47254ac0ac59ad6ecfb460409e1777dc3304fe3e', '172.105.247.100', 1675016421, '__ci_last_regenerate|i:1675016421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f192e74c4823eaab1f029151df92a2425471f401', '172.105.247.100', 1675016421, '__ci_last_regenerate|i:1675016421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af21c14af66c9c42f3e769db81c9dd38a95a321', '172.105.247.100', 1675016421, '__ci_last_regenerate|i:1675016421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('135c62a017cf817d03175e17ddb15f449175af6b', '172.105.247.100', 1675016422, '__ci_last_regenerate|i:1675016422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8d0e2bf60adf9d154ff142877d9f74ca35c3ce', '172.105.247.100', 1675016422, '__ci_last_regenerate|i:1675016422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64af409429f675bf87bdf0ea71d9e5639c9cc9b', '172.105.247.100', 1675016422, '__ci_last_regenerate|i:1675016422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b00632f544258c2c2520b45a6694fdeebe84f7a', '172.105.247.100', 1675016423, '__ci_last_regenerate|i:1675016422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485a4e73e6e6eea131c8c8451bb53df23665b888', '172.105.247.100', 1675016423, '__ci_last_regenerate|i:1675016423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4941c79a3ff7fb449dbf9c4176a2ccc75af52a77', '172.105.247.100', 1675016423, '__ci_last_regenerate|i:1675016423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e3b87d24ae0399f5a3f9725fc66bd49b2926c1', '172.105.247.100', 1675016423, '__ci_last_regenerate|i:1675016423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23940feb5620400e372b2292d926bccf3c6ca37a', '172.105.247.100', 1675016424, '__ci_last_regenerate|i:1675016424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23266b55e1883abb106564226e044f1a12146f30', '172.105.247.100', 1675016425, '__ci_last_regenerate|i:1675016425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f1a8cb9360d75a58d5d9b7a34420ff7982c450', '172.105.247.100', 1675016425, '__ci_last_regenerate|i:1675016425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d829624ce9993f62e013508c9aa559adb8f6085', '172.105.247.100', 1675016425, '__ci_last_regenerate|i:1675016425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0239461fad6187a47ce2d6b645b0591ab1e744e', '172.105.247.100', 1675016426, '__ci_last_regenerate|i:1675016425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ca4125bca46c0494f3b0505528f0a4d4ee3d9c', '172.105.247.100', 1675016426, '__ci_last_regenerate|i:1675016426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acbc7f9e7cb0e33b85628ae91e2bc1407ce8f5ac', '172.105.247.100', 1675016426, '__ci_last_regenerate|i:1675016426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5448c3be21a83314b5ded5c47f5610524a319d3', '172.105.247.100', 1675016426, '__ci_last_regenerate|i:1675016426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd23c1a960e00badaa9cde08d0940d93cf39640', '172.105.247.100', 1675016427, '__ci_last_regenerate|i:1675016426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561c7da7bf73ed04e0f6b7899675ecd1ac57c841', '172.105.247.100', 1675016427, '__ci_last_regenerate|i:1675016427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6a52fe72ad50d9447984fa8e776f4c2757d75a', '172.105.247.100', 1675016427, '__ci_last_regenerate|i:1675016427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c689038148f53751969eb5f1e2b40f0f85c4e17', '172.105.247.100', 1675016427, '__ci_last_regenerate|i:1675016427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50d11b1500cb37ab090ea15bbab3097214a4e6e', '172.105.247.100', 1675016428, '__ci_last_regenerate|i:1675016428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1578759b23156eda30eaf637ddacb08464371c8e', '31.222.203.2', 1675017260, '__ci_last_regenerate|i:1675017260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('211566e0f9230d3b24de7f1e830779b7296ef4b7', '31.222.203.2', 1675017260, '__ci_last_regenerate|i:1675017260;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d8b732b57a1a4dbd78584c9804892eaf903bb1', '31.222.203.2', 1675017260, '__ci_last_regenerate|i:1675017260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e950057a5b48f62f648b81f5fefe553808f61cf', '31.222.203.2', 1675017263, '__ci_last_regenerate|i:1675017263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f6db02e654cd48da2ad8e41df51e23c1ef55c93', '31.222.203.2', 1675017263, '__ci_last_regenerate|i:1675017263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8ab40be7257ac6d76c451a204e3f677fa9b2ce', '31.222.203.2', 1675017263, '__ci_last_regenerate|i:1675017263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd70e80018a65d903447add69bf8505128238c8', '172.105.247.100', 1675021822, '__ci_last_regenerate|i:1675021822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9264ab4452a957b49bbdfbe31395ace9beba873c', '172.105.247.100', 1675021822, '__ci_last_regenerate|i:1675021822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda525339cd8dd645ffa9569b3797c5371357412', '172.105.247.100', 1675021823, '__ci_last_regenerate|i:1675021823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b73d78f8f2d2c0ab9d38af1926cf148619e8490', '172.105.247.100', 1675021823, '__ci_last_regenerate|i:1675021823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393881ccf70e431c2a6d7a8e354d25c962830948', '172.105.247.100', 1675021823, '__ci_last_regenerate|i:1675021823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff879e1c1627de73e9b5efe20957046b4de8bfe', '172.105.247.100', 1675021823, '__ci_last_regenerate|i:1675021823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf28d90de444c45e393b017a3d8f5615935f484', '172.105.247.100', 1675021823, '__ci_last_regenerate|i:1675021823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598f31ad1e7e87f9ee54219f1808e7f420882406', '172.105.247.100', 1675021823, '__ci_last_regenerate|i:1675021823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c1aea2806ef231e034f791e84de92755ae90bb', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583d2510c2c31a393201eecc1da0b096d22c8240', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cff37c975a024657dc7279184cb553d68fa4436', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b209e69e3a0e362d66193af2e6e476fd8491ce', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63279a6717139e05f5eae813a22d4827c8951fa9', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff5c7df7575e8a3da99df45ec521eda4c09c9900', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a82f6018e94c285373fc5f3c107760b10160757c', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec025d6d2b5898ed07d037c508658f8ded4582c', '172.105.247.100', 1675021824, '__ci_last_regenerate|i:1675021824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69eaa37d9c97dcc480b5ec939c6ca3ce102f500b', '172.105.247.100', 1675021825, '__ci_last_regenerate|i:1675021825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cbff98a9f38ceb7455924e88fb7f4c7be535805', '172.105.247.100', 1675021825, '__ci_last_regenerate|i:1675021825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03eca7de1a55cc673065a15732ec28a05cbc8906', '172.105.247.100', 1675021825, '__ci_last_regenerate|i:1675021825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7977d859797f1a5dd753e7860c64b4db47bd4f', '172.105.247.100', 1675021825, '__ci_last_regenerate|i:1675021825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fcc9fe24c6365fe17b864917b5b86592df69c38', '172.105.247.100', 1675021825, '__ci_last_regenerate|i:1675021825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f10b6bf80825324ba002bef628cbdbb0050fe46', '172.105.247.100', 1675021825, '__ci_last_regenerate|i:1675021825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696497118321a549ff9749875338b3b9b6d873ac', '172.105.247.100', 1675021826, '__ci_last_regenerate|i:1675021826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d5c39579afd99087b9434d04f2849428e9b222', '172.105.247.100', 1675021826, '__ci_last_regenerate|i:1675021826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9344984b67ccbd98f6a9a605aa75cdebaaa8f006', '51.159.102.248', 1675026737, '__ci_last_regenerate|i:1675026737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c89ef236918588171a8760204daa847ce4ae941', '51.159.102.248', 1675026737, '__ci_last_regenerate|i:1675026737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65526628558010ac01ae2307bcfe37820f84da7e', '51.159.102.248', 1675026737, '__ci_last_regenerate|i:1675026737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc2e9d415ce45d58c4658234059e0c36240f19f', '51.159.102.248', 1675026765, '__ci_last_regenerate|i:1675026765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf366d744d7eed2de9542c59292b3a815cacef39', '51.159.102.248', 1675026765, '__ci_last_regenerate|i:1675026765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2d0eb9e4b9772ba0ad0d47c331658f9870683c', '51.159.102.248', 1675026765, '__ci_last_regenerate|i:1675026765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263b213f9f5181d2a5565c7ed583272f5061a22d', '172.105.247.100', 1675027223, '__ci_last_regenerate|i:1675027223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c16da1e152c0b6ddef6b0f44d2b7e103611738b', '172.105.247.100', 1675027223, '__ci_last_regenerate|i:1675027223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd1a715850bfcc897b1ba6dd00b8ea70141a21d', '172.105.247.100', 1675027223, '__ci_last_regenerate|i:1675027223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a154b9097bf491453d84f594b798cbb3530ab9', '172.105.247.100', 1675027223, '__ci_last_regenerate|i:1675027223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528d071ce5d9a5e99231b9c3354cfc35d238f632', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4485ace91ba6be905948bf7e8b9c5b1b09cd68', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb6346265c977dc0ede825aff757fb506ac5742', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90646022724a81c136ee19f1ac471943e8123137', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa80eafbfca0da559faa59b030b54c5b614bd89', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb7033cbe390825774836106aeea24b7375b9797', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e62c4b2f5594894c9e2a9376b2ef3f4f513d7e5', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4516b76ad97df6541a5bdfbc6feca9733c83e212', '172.105.247.100', 1675027224, '__ci_last_regenerate|i:1675027224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0698eb1adf4396910f45c029e9ca4c51883029', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fabc51978bbb8503ffb38ff3c317e33e33283c8', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9438f9a94e43f535088256a4fa1ba5774fd6f288', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4153e7a9296ab0a6a8e39478f1466c116f432c46', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab1da5e184b7bb806254a5a63b79e66707fa11c', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a5e26e2278bf13c8f4fae27a758f2897c570ea', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9b765593071c509da9d19bd3dfc677094fcc80', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823d114c0185f736d7d24acd5403e1c72a2d9b7d', '172.105.247.100', 1675027225, '__ci_last_regenerate|i:1675027225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b9262c4f30c855b5f121b4bfdf1bb97f91f5a0', '172.105.247.100', 1675027226, '__ci_last_regenerate|i:1675027226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e90edfb4bd37c841ec2f0da65ff249c7f8817f', '172.105.247.100', 1675027226, '__ci_last_regenerate|i:1675027226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e11b23e7eb8602a73078ec3e99badfcf481009', '172.105.247.100', 1675027226, '__ci_last_regenerate|i:1675027226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2069aaf50b0f4398c6729d047e456a27b98dcbe5', '172.105.247.100', 1675027226, '__ci_last_regenerate|i:1675027226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad189989f67dfc387649407fde9f4ec6fb890087', '31.222.203.2', 1675027997, '__ci_last_regenerate|i:1675027997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54abc2e9f96b6a1d383722880875fb2639e9971c', '31.222.203.2', 1675027997, '__ci_last_regenerate|i:1675027997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e95e11a14f9fb09b46c5d90251f4172481d0ac5', '31.222.203.2', 1675027997, '__ci_last_regenerate|i:1675027997;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927e8ef67c981e3b07c26a15b52d49b8c6156c09', '31.222.203.2', 1675027997, '__ci_last_regenerate|i:1675027997;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdc41c296504d83e3212b803bfd8de041e4d88b', '31.222.203.2', 1675027997, '__ci_last_regenerate|i:1675027997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80dfed79e28ec0e47a99e10de39dd628692a868c', '31.222.203.2', 1675027997, '__ci_last_regenerate|i:1675027997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d104e89cd9c9df66512047cb6117856beef794', '31.222.203.2', 1675029859, '__ci_last_regenerate|i:1675029859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f5ddf2da2865832a09d06a9fc1ef2e5634fa6a', '31.222.203.2', 1675029859, '__ci_last_regenerate|i:1675029859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93cbb30794b819e93d8415c1a67014fae28a11b8', '31.222.203.2', 1675029860, '__ci_last_regenerate|i:1675029860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71dfa52246154feb61bc89d5eed9c7cf7a56640a', '31.222.203.2', 1675029862, '__ci_last_regenerate|i:1675029862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869246a92f72b056e72582815388be6856057e1a', '31.222.203.2', 1675029862, '__ci_last_regenerate|i:1675029862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db52fa19bd379738285ccc2aae0b2e8305d3633c', '31.222.203.2', 1675029862, '__ci_last_regenerate|i:1675029862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986889a851427a1340972e38e9bcd36688b652fa', '172.105.247.100', 1675032620, '__ci_last_regenerate|i:1675032620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd34f175f1e5dfbbd4bd63d87615c65b8d2ad5e8', '172.105.247.100', 1675032620, '__ci_last_regenerate|i:1675032620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46710db90f5bc3c70b4dda310c7623080d1721f', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441f9ab3d0a0860e2dccb75da0392208832f779b', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7885b1146a6f5c5f6f3a32fa9ee87adaf3df42b', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79db866a50a4a468e8ba2d990c041c59635d4bd7', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef5cceeeb891f29f678eae134c896616fc6e4fc', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c4661a3f30baacaaebff020364955bff9807df', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda584f6521f34284078885b7f1374aff0c45738', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734e2e85ade615760f07ece4e39ac6c6e214c16c', '172.105.247.100', 1675032621, '__ci_last_regenerate|i:1675032621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff56f1a1e927fc38195f4e9fc0c330305e5edd5', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a07989f8ce1e466021487bf9698bf64f464dff', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b0e559e0b2fb1fd798e2cb4e3c4ba4c60924499', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df8b1dc333ddba3a5ce2bf5f8d5ddc0dfbc1937', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c8817f6a33995d7762b1309da46fc9f1a5945d', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbf5b44eb8e4acd83e57c00940fd9835c9027868', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9a5a1620751c4d126cc379ff040d0baae457da', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8169c933aabb6b106fada2c6191a5b83083e0b', '172.105.247.100', 1675032622, '__ci_last_regenerate|i:1675032622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e8550b8eb63be95905bfbe53296bde0567b1270', '172.105.247.100', 1675032623, '__ci_last_regenerate|i:1675032623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f387f880f325ecb3d66a38e504b1c8959040d725', '172.105.247.100', 1675032623, '__ci_last_regenerate|i:1675032623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d4bb40b1dfee550a5ea3d799ac2faea6777dea', '172.105.247.100', 1675032623, '__ci_last_regenerate|i:1675032623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b4d3616c509c8a77111fb326c60ac11837f3c2', '172.105.247.100', 1675032623, '__ci_last_regenerate|i:1675032623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58489175ec9fea7820fe6f707571c73978bb6646', '172.105.247.100', 1675032623, '__ci_last_regenerate|i:1675032623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db453692f821b3a83e5a9a67bc64175d3e590d9c', '172.105.247.100', 1675032624, '__ci_last_regenerate|i:1675032624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4ef63e84ccc0ff9791cc8bcb966dca75c10838', '172.105.247.100', 1675038019, '__ci_last_regenerate|i:1675038019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2327e68223ef6a274145bca8e691c2ace420587', '172.105.247.100', 1675038019, '__ci_last_regenerate|i:1675038019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2381c058bc0dd9708c44f4ec42d8a9ea764b34c3', '172.105.247.100', 1675038019, '__ci_last_regenerate|i:1675038019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d357b1b1aad7f64fc515a3d36e67840e112861', '172.105.247.100', 1675038019, '__ci_last_regenerate|i:1675038019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a45f7f4396b271fd46dfacd4c0526068f811f8c9', '172.105.247.100', 1675038019, '__ci_last_regenerate|i:1675038019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('930b44fad1b5985753089629bc9145c11222125d', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e733510f44d3896cb29ecbe60bf9ed36f130428', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7d6be5f5de47cd9513aa1c5397a2f4f6efd9e1', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c3d059863a64a477182f79dd175705b235bdd6', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c159c5275627968ca0155cc78a7a66f611d4d72', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc40ad66d04e4d6663e13463affc1c92c0da0ad', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3789342f0af28d6a85425e8982a2fd3b1684b0b6', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89bcb10fb2e1cab346cee176622e440eef509da', '172.105.247.100', 1675038020, '__ci_last_regenerate|i:1675038020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f99ab1d139c7c4f343b3ea41eaeb6e1736fbda9', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05259f522c4d07ae599ad104d175cccb121d738', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024e77a5c3cb30c07b91aaff530e2cf53f4a2ab7', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11380d772b526463f769ef5507beab8aad28ca34', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c2ef6472224e861d3e2ebf6778656d3df5442a', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24dbbe8587d054de64044d932e1cf123d00d9c95', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28de099b641edd385db83b7810c8b8f477a7a4c4', '172.105.247.100', 1675038021, '__ci_last_regenerate|i:1675038021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045765598fd235e7d8aab2b513745c4894c75a3b', '172.105.247.100', 1675038022, '__ci_last_regenerate|i:1675038022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3d324eea159f666acc71943d25e7db8fefeba9', '172.105.247.100', 1675038022, '__ci_last_regenerate|i:1675038022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c830d83d6e28dfe134d6b51ba5c54d009ca48460', '172.105.247.100', 1675038022, '__ci_last_regenerate|i:1675038022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee574a89ec88e7311a3b2d19811b545f3eb3ead2', '172.105.247.100', 1675038022, '__ci_last_regenerate|i:1675038022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9231c5d8f16d5b89684b05ffcdfa458ce596af1', '31.222.203.2', 1675040605, '__ci_last_regenerate|i:1675040605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a65b80273f529968debb17b6c254539f1071bb5', '31.222.203.2', 1675040607, '__ci_last_regenerate|i:1675040607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf86a0f0e0dc48342f157fe467ad07c4652427d2', '31.222.203.2', 1675040607, '__ci_last_regenerate|i:1675040607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e9d5abcac4616226a56283e4192c15460b39e7', '31.222.203.2', 1675040607, '__ci_last_regenerate|i:1675040607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f3e53aadc4e1897e9031425c323674d368150e', '31.222.203.2', 1675040607, '__ci_last_regenerate|i:1675040607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24067338f03bc457e8ae9891682c6070e5150acb', '31.222.203.2', 1675040607, '__ci_last_regenerate|i:1675040607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e32619043ad728c0aad773e68e533c31168e1d7', '31.222.203.2', 1675042462, '__ci_last_regenerate|i:1675042462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4de5100e00ddd98dfa350c3cb750a06c16d42fb', '31.222.203.2', 1675042462, '__ci_last_regenerate|i:1675042462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('286324347a14f13c036ccb38f5e8ee89faf43c33', '31.222.203.2', 1675042462, '__ci_last_regenerate|i:1675042462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba939af86fccbf12282e3fe2ab438af3bace820', '31.222.203.2', 1675042464, '__ci_last_regenerate|i:1675042464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b933c7c9dad8389a2b69761d9d2f3b84aaea5e', '31.222.203.2', 1675042464, '__ci_last_regenerate|i:1675042464;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d489a169fbb948bbf0718b3866d1c9f7a571d4b', '31.222.203.2', 1675042464, '__ci_last_regenerate|i:1675042464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fad544b1c2164d642205a5ce69e8a1fe189358', '147.78.47.249', 1675042870, '__ci_last_regenerate|i:1675042870;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1905d0caf9f6a518f289e9068ed5eeb2e598b5ab', '147.78.47.249', 1675042872, '__ci_last_regenerate|i:1675042872;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78381c89862ff393d5c2c8cbade8ee7ec43fedd3', '147.78.47.249', 1675042874, '__ci_last_regenerate|i:1675042874;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96aa064f959474e06027794acd890ff78e507956', '172.105.247.100', 1675043423, '__ci_last_regenerate|i:1675043423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f564ec1f86e8b37504a393dfc5d2b28f2230b3c', '172.105.247.100', 1675043423, '__ci_last_regenerate|i:1675043423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5432edc2a7d142a4a5d915e6cd13c278ef5924d', '172.105.247.100', 1675043423, '__ci_last_regenerate|i:1675043423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e15ef68865fea9b8c37aabba53c8e7b5c87dda', '172.105.247.100', 1675043423, '__ci_last_regenerate|i:1675043423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6628506e28c8fbdf3eadc0675f206dcf34dd21', '172.105.247.100', 1675043424, '__ci_last_regenerate|i:1675043424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188635e7c370732c5624a9a729c3b493156eb71b', '172.105.247.100', 1675043424, '__ci_last_regenerate|i:1675043424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e99286a0625d88a8455c6d2c7e43b5dd4083a2d', '172.105.247.100', 1675043424, '__ci_last_regenerate|i:1675043424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b3b2115dcd91895833e4376819db4b561c8c8d', '172.105.247.100', 1675043425, '__ci_last_regenerate|i:1675043424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785b8efebb539192a54c915e097da77ad452cc04', '172.105.247.100', 1675043425, '__ci_last_regenerate|i:1675043425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5540809fd8fb7db3590eab43217a5e2cef03b0', '172.105.247.100', 1675043425, '__ci_last_regenerate|i:1675043425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb13b8eb118cfb52b46539dc5d68b675144dacc', '172.105.247.100', 1675043425, '__ci_last_regenerate|i:1675043425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa4d20f77cb9bc087639b2baa41a9c4813c97a1', '172.105.247.100', 1675043426, '__ci_last_regenerate|i:1675043426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08172a8021567cbb85feb34f735d84a21db90d48', '172.105.247.100', 1675043426, '__ci_last_regenerate|i:1675043426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0f40e772a713a229d7cbd622de5e78891ad95b', '172.105.247.100', 1675043426, '__ci_last_regenerate|i:1675043426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9275ef6e2a40d9360a5c951dde33609249b3e0d3', '172.105.247.100', 1675043426, '__ci_last_regenerate|i:1675043426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe1cb3855ea19ea41e290f3174cfb04c96c43d2', '172.105.247.100', 1675043426, '__ci_last_regenerate|i:1675043426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3e377d9e020e7a59b5d0ae39163606b96d0796', '172.105.247.100', 1675043427, '__ci_last_regenerate|i:1675043427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b421aea8ec1f1ca7f338a88eafe7a18ca490fb', '172.105.247.100', 1675043427, '__ci_last_regenerate|i:1675043427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9421faa70e2f7675b405a0fdb99941a6071cc42', '172.105.247.100', 1675043427, '__ci_last_regenerate|i:1675043427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ae0071e8c6b4a8dac7447c445b26831cf35809', '172.105.247.100', 1675043427, '__ci_last_regenerate|i:1675043427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48476c49daa3a865d4920c95278fed3d61680037', '172.105.247.100', 1675043428, '__ci_last_regenerate|i:1675043428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('269ecb3c7bf01918212e20c49b5ac9778ac62734', '172.105.247.100', 1675043428, '__ci_last_regenerate|i:1675043428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63e3cafd9133254a694c461e4806bbb029e1a08', '172.105.247.100', 1675043428, '__ci_last_regenerate|i:1675043428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e96f5bbb58b8ae05cf0a36fc79fd82f20942cef', '172.105.247.100', 1675043429, '__ci_last_regenerate|i:1675043428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0605f9cbb6e907f287785331f4879caaf044cc', '172.105.247.100', 1675048821, '__ci_last_regenerate|i:1675048821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2322a8b6ee8d92576923183eeb4b2b5de8f2047', '172.105.247.100', 1675048822, '__ci_last_regenerate|i:1675048822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb27781bd177602c1237c4ada87c5e28691f6bd', '172.105.247.100', 1675048822, '__ci_last_regenerate|i:1675048822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e4a72cb5f95e5a3652abd5b262afe807522d41', '172.105.247.100', 1675048822, '__ci_last_regenerate|i:1675048822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89b744d59c927b980a061d5915e58dad15453bc', '172.105.247.100', 1675048822, '__ci_last_regenerate|i:1675048822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac1a080d5594e0257a61dd79b14d1ebcc01df4e', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797bc74b769abacb8121b1d6ac3dc48b3b32f235', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f1f8696b1ad283215ebd8716bd01ef907d2ba2', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238749ba58caf359a91eb79007a930a1ad3686cf', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581f5aa8d9d87976ddb70be608bb5f214863b1df', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e146f80631fc19aba5ae56b5f3d056a30a06a35', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d13f9d9589c874f8840dcacab92ca4e06ab4f9', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58efbe782117e6534a6a7ca4418d360274233638', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('412ba3149e26a98c67d1b754d4e23f145b220b82', '172.105.247.100', 1675048823, '__ci_last_regenerate|i:1675048823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('131aeac6d48ab5b0f5d4b96347168d6e55b838bc', '172.105.247.100', 1675048824, '__ci_last_regenerate|i:1675048824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3f39efbfda4e70199abc4c2ba46d867e35ba25', '172.105.247.100', 1675048824, '__ci_last_regenerate|i:1675048824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8988dca79fa30000b3a8477a2773ddbf382e3b9a', '172.105.247.100', 1675048824, '__ci_last_regenerate|i:1675048824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe70054b512e52af0f1a7bc73649698361472285', '172.105.247.100', 1675048824, '__ci_last_regenerate|i:1675048824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc030aa99ebec2e51d9dd4930d7f5a27db0c29a', '172.105.247.100', 1675048824, '__ci_last_regenerate|i:1675048824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068bbb8a901981069310f759c4086015e895bdd3', '172.105.247.100', 1675048824, '__ci_last_regenerate|i:1675048824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7e3cded6b89520cf11874c5ef95d87d216611a4', '172.105.247.100', 1675048825, '__ci_last_regenerate|i:1675048825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28255ce52c14aab7c1c11377a329191571b8709c', '172.105.247.100', 1675048825, '__ci_last_regenerate|i:1675048825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7fde5dc3d50d0a6e0f91ce892bb4820bc83c63', '172.105.247.100', 1675048825, '__ci_last_regenerate|i:1675048825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c29c79a5f5f8a9c99eb4c10ce3f2ae3029e9280', '172.105.247.100', 1675048825, '__ci_last_regenerate|i:1675048825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27057dda76d6a984fe9259c34664831dd7ad24ee', '31.222.203.2', 1675051384, '__ci_last_regenerate|i:1675051384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5611adaaa1add7e92bebebb381aa6d005d3262b', '31.222.203.2', 1675051384, '__ci_last_regenerate|i:1675051384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8adf61235d26198c2f179fde17bf87e32700633', '31.222.203.2', 1675051384, '__ci_last_regenerate|i:1675051384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7555f50d4735e821ac82c53e15b53f19d6018ce', '31.222.203.2', 1675051385, '__ci_last_regenerate|i:1675051385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ace80ba057153e8be2b121fc1455e03732708af', '31.222.203.2', 1675051385, '__ci_last_regenerate|i:1675051385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501b085aca032ba40ac1e5b3302f2f0ee52e7a30', '31.222.203.2', 1675051385, '__ci_last_regenerate|i:1675051385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9767fb7a40d25eca842a211cd6680d6256cc2403', '31.222.203.2', 1675053259, '__ci_last_regenerate|i:1675053259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672ebf08f9cf5792e88d380a98d6598ce56359f4', '31.222.203.2', 1675053259, '__ci_last_regenerate|i:1675053259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f370d8d115d79d0af4c9700ffeacec35804a1808', '31.222.203.2', 1675053259, '__ci_last_regenerate|i:1675053259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea0f658e4773905e5ec7cdc3eee6f866e03a4b1', '31.222.203.2', 1675053259, '__ci_last_regenerate|i:1675053259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96334d115ddea9eab7824fc5c53031649d040fe1', '31.222.203.2', 1675053259, '__ci_last_regenerate|i:1675053259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7c603135aa55a14dfd10ab2602c839d2540a99', '31.222.203.2', 1675053260, '__ci_last_regenerate|i:1675053259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0e7f5b6c113a21531acd881db8b231415ca0c0', '172.105.247.100', 1675053619, '__ci_last_regenerate|i:1675053619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd958f42f0588fdabb9726c743633020419834a', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d02b0b03f160f3db663afb075f4eb9ffb0f2dd2', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7239327e25b7584610b2684d92ba2f1dcb30ca86', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a75e88541a5d17eb652824511aa2bcaad6945d', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ffa9bd9df75c1debedec44b333ecab912d326ca', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eef33d371f240a7772ceea107fdde6d4744345d', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b1a1a43d402eb1dc5f8d16d315cdbe2a505bd47', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8281178c8032488a07a01d1b19e1625e02dd6233', '172.105.247.100', 1675053622, '__ci_last_regenerate|i:1675053622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('308d7ce987c8795da317096d1a05b0a6dcbe9a14', '172.105.247.100', 1675053623, '__ci_last_regenerate|i:1675053623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b80e611117e4130e8ffcf9a30382f7f3b7cf96', '172.105.247.100', 1675053623, '__ci_last_regenerate|i:1675053623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be445140ee0e73c3c3272d99ddd5ab9f7ba86eec', '172.105.247.100', 1675053623, '__ci_last_regenerate|i:1675053623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8042ea666e9ea22563ee88a8589c78ad0cc22e0', '172.105.247.100', 1675053623, '__ci_last_regenerate|i:1675053623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da646d1954e1ade8fc74d2cec1c6d268039adf5', '172.105.247.100', 1675053623, '__ci_last_regenerate|i:1675053623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631eeca299ba6363cd4d69adf4204a5f4604cb8f', '172.105.247.100', 1675053623, '__ci_last_regenerate|i:1675053623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f8a5fdc57a17d19cb24bf46e171166009627be', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4be47789a19f25bea699c4ddc957a12333c449', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f69b1fa78da3828e803349c95e5b8e9b5ccd84', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd650908ced09026b66c34a75e3c522419199924', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e49e598802ad7c1385d85fcb89bd9e30c8dc73b', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e146e7c074ef8f8a8a368770d691e635bf81020', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3b71199e68bc7052a8f8c50e82502e90e41605', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f1d11c479b51eb4507acf1fe521f9390cf6892', '172.105.247.100', 1675053624, '__ci_last_regenerate|i:1675053624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e080329b08fb672150a321eb7b0ed1ad668f3341', '172.105.247.100', 1675053625, '__ci_last_regenerate|i:1675053625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4522c05fdd3eeb1b4579b24656cd523e1cf3a026', '31.222.203.2', 1675055102, '__ci_last_regenerate|i:1675055102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8568c22512cf61ed39509c7fdf5bf65c19498a1d', '31.222.203.2', 1675055102, '__ci_last_regenerate|i:1675055102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff7287c626aeb28096a27f5eda664fa1d912ef3', '31.222.203.2', 1675055102, '__ci_last_regenerate|i:1675055102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00e400cb4c71b9fd51b715decd622957e04a975d', '31.222.203.2', 1675055102, '__ci_last_regenerate|i:1675055102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fa017d91563fb751da9ca26fd11152f78587e9', '31.222.203.2', 1675055102, '__ci_last_regenerate|i:1675055102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7c599d0a3e61066138cf7efa224c1c2f636642b', '31.222.203.2', 1675055102, '__ci_last_regenerate|i:1675055102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561174a1d389bba901250ee562fce22efd83c49b', '45.120.39.89', 1675057313, '__ci_last_regenerate|i:1675057298;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1674968819\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675057312;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3cb1ea48be6a7a9d08bacab5d763d3ab710fcf', '172.105.247.100', 1675059024, '__ci_last_regenerate|i:1675059023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ca2830a03ff3218ca8adbcfb8bb11d812f869b', '172.105.247.100', 1675059026, '__ci_last_regenerate|i:1675059026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd4c5b62efcd8dae97634afb10bbbcaf30db49f', '172.105.247.100', 1675059026, '__ci_last_regenerate|i:1675059026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e356d6af73c5baf7119bddea9445a97b87cc50', '172.105.247.100', 1675059027, '__ci_last_regenerate|i:1675059027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efcdd689a8a896e527d5280e5c0a85bc79fb53a7', '172.105.247.100', 1675059027, '__ci_last_regenerate|i:1675059027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314d1c1a58af5304abc0c840ccc08b0c50653cb2', '172.105.247.100', 1675059027, '__ci_last_regenerate|i:1675059027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539634de6b859e2e57f12b665cab59cfacac4e77', '172.105.247.100', 1675059027, '__ci_last_regenerate|i:1675059027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7963b507a217129b339435094b4765f6f34f07c', '172.105.247.100', 1675059028, '__ci_last_regenerate|i:1675059028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e256b5e60a6b1bc5f99b8171247246037a881f9b', '172.105.247.100', 1675059028, '__ci_last_regenerate|i:1675059028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d4e14d2978decc2f2f4f10bb879fb1b7faa2aa', '172.105.247.100', 1675059028, '__ci_last_regenerate|i:1675059028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b81de01c65128787cda15b7c00b0b0f412b7d576', '172.105.247.100', 1675059028, '__ci_last_regenerate|i:1675059028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db7988410766b344191a523a9cbf8909d0ba3ac5', '172.105.247.100', 1675059028, '__ci_last_regenerate|i:1675059028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025c902d4d0c44f8d1444bafb92413a0610af8f6', '172.105.247.100', 1675059029, '__ci_last_regenerate|i:1675059029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c8de9a0cea9ded9a192e8c3ceda0c286478b6a', '172.105.247.100', 1675059029, '__ci_last_regenerate|i:1675059029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76afed95e9b695712ad8e58dca377cd5a1dde8d7', '172.105.247.100', 1675059029, '__ci_last_regenerate|i:1675059029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e86de196d49e4f249a3a2888626c57dc6f173272', '172.105.247.100', 1675059029, '__ci_last_regenerate|i:1675059029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03e7fb1d186838461f398b5f469f10fdeaa2ae4', '172.105.247.100', 1675059029, '__ci_last_regenerate|i:1675059029;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e82511808de8896b5ddf3f30883aa7aec02277', '172.105.247.100', 1675059029, '__ci_last_regenerate|i:1675059029;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19f7b80386b8dc057a6a76ca0e457690707b093', '172.105.247.100', 1675059030, '__ci_last_regenerate|i:1675059030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51de36136ce33b19ba5cd54f4031cfb2b7029f0', '172.105.247.100', 1675059030, '__ci_last_regenerate|i:1675059030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f262f3b60f3d4fa06104d1c1345143e0af7c503', '172.105.247.100', 1675059030, '__ci_last_regenerate|i:1675059030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bf70ca63fc0da3e6fdac51468dd5c5c87f5248', '172.105.247.100', 1675059030, '__ci_last_regenerate|i:1675059030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a145a824a1b53f7572d48d335214ab9690d0b0', '172.105.247.100', 1675059031, '__ci_last_regenerate|i:1675059031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f508e1625c7164c4b29c92b368f396eca48454', '172.105.247.100', 1675059031, '__ci_last_regenerate|i:1675059031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abecc480193153ec8cd6b4ead2dea94545065e53', '31.222.203.2', 1675063985, '__ci_last_regenerate|i:1675063985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a7cabcab7242ddde9e2cfa498752f7fabba968', '31.222.203.2', 1675063985, '__ci_last_regenerate|i:1675063985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f46cdab476bb3389372975cf2a01c5ac66d0b2', '31.222.203.2', 1675063985, '__ci_last_regenerate|i:1675063985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c76319051287df1fda269767391d7623a71ddb', '31.222.203.2', 1675063987, '__ci_last_regenerate|i:1675063987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193fd60165e82e93013c7445d59cb972a5dc5968', '31.222.203.2', 1675063987, '__ci_last_regenerate|i:1675063987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff114d4974a438615e0ccf42308fb1111eb595a', '31.222.203.2', 1675063987, '__ci_last_regenerate|i:1675063987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0dd561763d1844e0bd20b60cece088edaa5264', '172.105.247.100', 1675064424, '__ci_last_regenerate|i:1675064424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ab32edab2de65b4dfd2ba48da22708636e268d', '172.105.247.100', 1675064425, '__ci_last_regenerate|i:1675064425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88579e508efbed229180f9935f605abd5b962744', '172.105.247.100', 1675064425, '__ci_last_regenerate|i:1675064425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce1219980c4983779971f3f530b05143a1d500be', '172.105.247.100', 1675064425, '__ci_last_regenerate|i:1675064425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f29b4372076b3502e7469086e51460dd9800df1', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f489d435edac2d09ae6a8f77581bad6f1ac753', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13abae36d8d1a474364a24d8501800677af920a1', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea7c60696e0d50ceedf063ad5e91924bca24640', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430df8c3f2ef700735531544898ef05cf75c01d3', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95cf2b24b143f12ce92d021df5db1ef3ec716dff', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41250d0b884c841a1c7121675ddc5557381f4d55', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6cb44508868a599330b1918f754277e13c8511', '172.105.247.100', 1675064426, '__ci_last_regenerate|i:1675064426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc6e73a4c30c9ce6c56edafb8049755e4a24cdc', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3374b51fe1eb8e62ef220f0ad78dc8e76263107', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f143301186cd76eea7e39e1060ea8f0a4f657838', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147a8b10612172107d7bab65af089e99e596074c', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740650259000fc0aa7d1cfb8e6f2136c45b6e805', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38215df177518ea68398cf855705253da8c9b9a9', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca1b14d3d7702616ecd58e170c4e3c0a19dae65', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8500b8bb746778c024ee29c832c2b24b2dd197fa', '172.105.247.100', 1675064427, '__ci_last_regenerate|i:1675064427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158997b16e12c411d9b7a383dc2e1bcda3b53000', '172.105.247.100', 1675064428, '__ci_last_regenerate|i:1675064428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad724c3bc7342b4f969f125f9eea92cb7db5452', '172.105.247.100', 1675064428, '__ci_last_regenerate|i:1675064428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20774fa59e7437a1afa6d08e2821ca6edbe5f46', '172.105.247.100', 1675064428, '__ci_last_regenerate|i:1675064428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589fadc9679a6452d813e1e31a61b68ee384a52e', '172.105.247.100', 1675064428, '__ci_last_regenerate|i:1675064428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbefd3d1b54caebc894a0f918d5b37196b5171e', '45.120.39.89', 1675071653, '__ci_last_regenerate|i:1675071653;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675057305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675071592;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b06d69173b8aa1e487b99c7a0f676983468c46', '205.210.31.155', 1675065626, '__ci_last_regenerate|i:1675065626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f85c5834a7de20074ba160c2ff7c17943b4d8c', '205.210.31.155', 1675065627, '__ci_last_regenerate|i:1675065627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e76de59638cd25166c24dbf4acda1d661ed4870', '205.210.31.155', 1675065628, '__ci_last_regenerate|i:1675065628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7a25f57f37b0817c1aafe415e7c53faed54624', '172.105.247.100', 1675069823, '__ci_last_regenerate|i:1675069823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848e5532bb84d309cbe9ce72fd8a0e0d176d7980', '172.105.247.100', 1675069824, '__ci_last_regenerate|i:1675069824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa833dac0bd5e74b19189579b133862854b8272', '172.105.247.100', 1675069824, '__ci_last_regenerate|i:1675069824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1d7a287fa2c44864f8b38ca8b902dcf5152db9', '172.105.247.100', 1675069824, '__ci_last_regenerate|i:1675069824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c093167f852a8b7b26e3a3832756845da2e177c', '172.105.247.100', 1675069824, '__ci_last_regenerate|i:1675069824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827cc19fba917cde7ddce86ae78e37a9bac56d85', '172.105.247.100', 1675069825, '__ci_last_regenerate|i:1675069825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fb476165b4ae5261e6688b50d1758ac729a3da', '172.105.247.100', 1675069825, '__ci_last_regenerate|i:1675069825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f02993c79a26b1e71e8c08736e5e7bdd51ea77', '172.105.247.100', 1675069825, '__ci_last_regenerate|i:1675069825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247ae1388b984d37fa758aa41c7003a9aa93df7b', '172.105.247.100', 1675069826, '__ci_last_regenerate|i:1675069826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aef55ff0ca1a41e33bcf73997158efa1a75b353', '172.105.247.100', 1675069826, '__ci_last_regenerate|i:1675069826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3feaccb854acc667a5c7f5ff4dfd38f41ae258bd', '172.105.247.100', 1675069826, '__ci_last_regenerate|i:1675069826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6759032cc37185daeb3d728ccc0780883693ba22', '172.105.247.100', 1675069826, '__ci_last_regenerate|i:1675069826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a716a3ca142cfb5c126a2d9b72598e124a12e2d7', '172.105.247.100', 1675069826, '__ci_last_regenerate|i:1675069826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141a513e6b56d358b9c2d204c54e3ac799d29734', '172.105.247.100', 1675069826, '__ci_last_regenerate|i:1675069826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167d66574ca007d257810b0cd7b4ed7914c90276', '172.105.247.100', 1675069827, '__ci_last_regenerate|i:1675069827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37da0e2db20d75bff9cf664acd0b30e08334319a', '172.105.247.100', 1675069827, '__ci_last_regenerate|i:1675069827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e749ce357cf79c9b14d6c360fc6162adb55c81', '172.105.247.100', 1675069827, '__ci_last_regenerate|i:1675069827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c2f5323cea2e23b76a8b33e3c079be13ef2e7d', '172.105.247.100', 1675069827, '__ci_last_regenerate|i:1675069827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c687856e9f34b4bc801d3cbb5aaea9d8a206838', '172.105.247.100', 1675069828, '__ci_last_regenerate|i:1675069828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14fb721c2683d655f673c3ed3e0794f96d17a697', '172.105.247.100', 1675069828, '__ci_last_regenerate|i:1675069828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5a9b986978c8ebee4b7507f2d55c427bdd0c75', '172.105.247.100', 1675069828, '__ci_last_regenerate|i:1675069828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731020a3723e903358c755d138718cedbdcbc96c', '172.105.247.100', 1675069828, '__ci_last_regenerate|i:1675069828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5330f0325388b99a052b61d9abb6a54ba9ef812', '172.105.247.100', 1675069829, '__ci_last_regenerate|i:1675069829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dc990d46681a583e601587bd639e4f0d0c908a', '172.105.247.100', 1675069829, '__ci_last_regenerate|i:1675069829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af409227fa2952be06a8483c46cf126c6cc0435b', '45.120.39.89', 1675075145, '__ci_last_regenerate|i:1675075145;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675057305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675071655;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d06e9ead32acc7b70b4894da7195620819f4c7', '31.222.203.2', 1675074784, '__ci_last_regenerate|i:1675074784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a81099ac4183a607fc8ecb1b5c3dde3e726949', '31.222.203.2', 1675074784, '__ci_last_regenerate|i:1675074784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b0d118190e87dce70c3b51004c8d2550f91ccc', '31.222.203.2', 1675074784, '__ci_last_regenerate|i:1675074784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e07eea280d082a1097301ff209698327103de56', '31.222.203.2', 1675074784, '__ci_last_regenerate|i:1675074784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6d024688860ec00bb8ff04a4e954fa5dbb53a9', '31.222.203.2', 1675074784, '__ci_last_regenerate|i:1675074784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8856b1a7e702f1516ac4f3b20c39f4ab802cc9e', '31.222.203.2', 1675074784, '__ci_last_regenerate|i:1675074784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d40c62b14e8a8a2a3ef310b566ea91e3452619d', '45.120.39.89', 1675078956, '__ci_last_regenerate|i:1675078956;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675057305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675078888;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc6fee8b3d28f1b2cddacce9cd1bff56afbadd4', '172.105.247.100', 1675075222, '__ci_last_regenerate|i:1675075222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba46010882256b1a25f7eddfa0412fb185e53a1a', '172.105.247.100', 1675075222, '__ci_last_regenerate|i:1675075222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78966c0cca6c168b027cf0be357965c41cf54aac', '172.105.247.100', 1675075222, '__ci_last_regenerate|i:1675075222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59096b9376f929416ab636f89fb874d6616920bd', '172.105.247.100', 1675075223, '__ci_last_regenerate|i:1675075223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3353f63c5a58a5f6f989a2fd8a8b636b77b5b6', '172.105.247.100', 1675075223, '__ci_last_regenerate|i:1675075223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3819229cba5951189cb9dc0cc73f529c60477041', '172.105.247.100', 1675075223, '__ci_last_regenerate|i:1675075223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8da39657cbbf6905e80510a393dcdd5b645729f', '172.105.247.100', 1675075223, '__ci_last_regenerate|i:1675075223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f8d6eb1de313fc283a28a13e72543c7cd117b0', '172.105.247.100', 1675075224, '__ci_last_regenerate|i:1675075224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31281b654e0e997ce658253b2a92a6a4f73c5aa', '172.105.247.100', 1675075224, '__ci_last_regenerate|i:1675075224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2cd664088c3ee8757753e8c4ddf10bdfcb3eb7', '172.105.247.100', 1675075224, '__ci_last_regenerate|i:1675075224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6154bf2b1f187fc2b48bb8421367e3722359e552', '172.105.247.100', 1675075224, '__ci_last_regenerate|i:1675075224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdacca47a7f34631f7cfa86dd002aaf054d89292', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a82dbbd9c6bbd5bdbe0672a29aef810381825a0b', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a250d36afad2fa36822e1136abff2f282af84ac8', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de93b6eeefef830b87b3a7b38ef8dd2d20de34e', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e722a122fbe0de4caf2a40d16fbbf0e5b993a5', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478b6cae3fae644a0961b9159155a81ff4464a89', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c01adee07d876a5a31a978c3add7ce8b2b384f', '172.105.247.100', 1675075225, '__ci_last_regenerate|i:1675075225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5e1a36bdeb45fe0312f2812782d5f154f24314', '172.105.247.100', 1675075226, '__ci_last_regenerate|i:1675075226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94151b2abbefd7d8bd86a09ec7d6188060df522e', '172.105.247.100', 1675075226, '__ci_last_regenerate|i:1675075226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3294acc3027d3571fcbcacf9c6438c529cf28763', '172.105.247.100', 1675075226, '__ci_last_regenerate|i:1675075226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18cd6edd231d79f3a4fa249208cb8fe4f2e7fbb9', '172.105.247.100', 1675075227, '__ci_last_regenerate|i:1675075227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea77c901ac067492d9fe322b26f341c207645b3', '172.105.247.100', 1675075227, '__ci_last_regenerate|i:1675075227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfa0dde9c432b220f3c00ff6737896fd1adf2b0', '172.105.247.100', 1675075227, '__ci_last_regenerate|i:1675075227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04b0f6324f4fc14d8977a5346636711521824b24', '31.222.203.2', 1675076659, '__ci_last_regenerate|i:1675076659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4544811cb15accab91638017f5d7ef8fc208f5f5', '31.222.203.2', 1675076659, '__ci_last_regenerate|i:1675076659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b9e7eb38974f7e1664d23290717be2a0e1bb35', '31.222.203.2', 1675076659, '__ci_last_regenerate|i:1675076659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd064cd3c03ffff01297259b89eef2dca0294d4', '31.222.203.2', 1675076660, '__ci_last_regenerate|i:1675076660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2aa1462953d2ce31bf09f3cffa396c86f239407', '31.222.203.2', 1675076660, '__ci_last_regenerate|i:1675076660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d35b92b8c87414c8b91e82d1cca7e10ac2900df', '31.222.203.2', 1675076660, '__ci_last_regenerate|i:1675076660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2dffdad505e5f8d64ed05b0741fe8839935e951', '45.120.39.89', 1675079433, '__ci_last_regenerate|i:1675079433;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675057305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675078957;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cadb6772164323c3f7e5fc0cf5b414698f5bc49', '45.120.39.89', 1675081174, '__ci_last_regenerate|i:1675081174;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675057305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675079433;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37468682fb3d464eb11af19893d3d68e7961d279', '172.105.247.100', 1675080623, '__ci_last_regenerate|i:1675080623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a801b02944c95f5d9f54ed9df99e9581107d3677', '172.105.247.100', 1675080624, '__ci_last_regenerate|i:1675080624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46822f65a00f9ab4996bf42c3dfddb6f827483ca', '172.105.247.100', 1675080625, '__ci_last_regenerate|i:1675080625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ae10c91a3ae57ae344e8af0efe13278578c084', '172.105.247.100', 1675080625, '__ci_last_regenerate|i:1675080625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71b487d7c9d47aeb391b83901048d10f08bc7ba', '172.105.247.100', 1675080625, '__ci_last_regenerate|i:1675080625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d0dbc6dbcb97e2db90156fbf359cea1487a581', '172.105.247.100', 1675080625, '__ci_last_regenerate|i:1675080625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766c738d373c087469fb248bfeca48dd1f62d652', '172.105.247.100', 1675080625, '__ci_last_regenerate|i:1675080625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8a2ca3ace3ef69221869ea17d2918b219b9c10', '172.105.247.100', 1675080625, '__ci_last_regenerate|i:1675080625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63a7329327eb93a9287eb478abe6de278ab44449', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f101dd73e1df0bceb389df2aa9af5d02824203', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c03328f5491f58f1914402b0f1c4e6ba0a42e5', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e465633e44874fd485da60baeb991283531a562', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ef7a8fe93d6ee9a0dc6d3624aedf0a6de30894', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cdf36f6f28aa96d9f4a50ee96106af33cc4fe93', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d233e27ffc10bc1fdfe279f50b81118724bcffe0', '172.105.247.100', 1675080626, '__ci_last_regenerate|i:1675080626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95eb4277799bab41d60f4fbe3006eae0d43496c4', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec275915d1514b8518f4c8d13e7353f41fb919ea', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7baaebebcde580aaeffdff7ae05c83313a5eb7f7', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d000016d727ce789ad1f097cf017f942534d97', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea07c28a52536a1c8ebfa6ac1be8612bfc5398dd', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7242944c946a2285d27c920ab3f62d001e81cc9', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b7bc692bb3e1544da84499f6528514d0ead7d0', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570f07459e5a5d560be201e7ab5262644f5befce', '172.105.247.100', 1675080627, '__ci_last_regenerate|i:1675080627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b46079488b0dd8298aebbab71979bd3138c83b7', '172.105.247.100', 1675080628, '__ci_last_regenerate|i:1675080628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5ed4f31f5e22829a48bf946d5e5fd4ab0208a9', '45.120.39.89', 1675081175, '__ci_last_regenerate|i:1675081174;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675057305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675081174;register_id|s:3:\"326\";cash_in_hand|s:9:\"2580.0000\";register_open_time|s:19:\"2023-01-29 20:43:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51356c7f97f94611ac660f1bc13b554ccf76ea15', '79.124.49.10', 1675082055, '__ci_last_regenerate|i:1675082055;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('308bcf0a0cd9fa22afe81ca283748880e6957977', '79.124.49.10', 1675082056, '__ci_last_regenerate|i:1675082056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc6e3d2b5e46a983fe5f90ce874998dc06216cb', '79.124.49.10', 1675082056, '__ci_last_regenerate|i:1675082056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ec58bd7e2042266fd8ccdf1f5f44a43fbaedac', '79.124.49.10', 1675082056, '__ci_last_regenerate|i:1675082056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1592da370aea273b94030c4241a3c115164667', '79.124.49.10', 1675083833, '__ci_last_regenerate|i:1675083833;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5939bdf5d89f6bc024ac9c38fdff19f15c5d2cec', '79.124.49.10', 1675083834, '__ci_last_regenerate|i:1675083834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0506e326d4cc7f18dbcf534b749f7aa061beabb2', '79.124.49.10', 1675083834, '__ci_last_regenerate|i:1675083834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e87220e953b8b9abffaa713bcaccfe20f31236', '79.124.49.10', 1675083834, '__ci_last_regenerate|i:1675083834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e4583700ccc680b8c5ac8168d8a309ac5f2655', '172.105.247.100', 1675086021, '__ci_last_regenerate|i:1675086021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f131d628790a45a32f4af29c76925719325471de', '172.105.247.100', 1675086022, '__ci_last_regenerate|i:1675086022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a5ac562d4fb6c8c581c2e6fea6e4e1cad8dc47', '172.105.247.100', 1675086022, '__ci_last_regenerate|i:1675086022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fa3bf80e018198bb85c5117e2f4c499c5543e3', '172.105.247.100', 1675086022, '__ci_last_regenerate|i:1675086022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ea21cf22b0acd414d84c2e9993df07e080181f', '172.105.247.100', 1675086022, '__ci_last_regenerate|i:1675086022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399c75ff6362c3675018513ac66d56448ad881f7', '172.105.247.100', 1675086023, '__ci_last_regenerate|i:1675086023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa94875a8f56bfc7836308bcb73ce73bcc159fc', '172.105.247.100', 1675086023, '__ci_last_regenerate|i:1675086023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6691f22011b9ae7a5c893e2dd1ba3cf3ebaf2041', '172.105.247.100', 1675086023, '__ci_last_regenerate|i:1675086023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf56a725c706d306e873ac76cc256e1c3a60dc7', '172.105.247.100', 1675086024, '__ci_last_regenerate|i:1675086024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c268e5d84cd5bed0969af2982acf42dee2dead8b', '172.105.247.100', 1675086024, '__ci_last_regenerate|i:1675086024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6eb6c79476694b0eccb85dd6b7d00a058b95747', '172.105.247.100', 1675086024, '__ci_last_regenerate|i:1675086024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593f0607e1ce7ec132b1e1897ca77418ab1f4cbc', '172.105.247.100', 1675086024, '__ci_last_regenerate|i:1675086024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cada8e8d9ae2cbaab47badbd9af5031ea0a6189', '172.105.247.100', 1675086024, '__ci_last_regenerate|i:1675086024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f2e41a2c6b34960dbc168d93278a19b7b12253', '172.105.247.100', 1675086024, '__ci_last_regenerate|i:1675086024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c0b4de1bbcc72de901d459dff9f5133889596c', '172.105.247.100', 1675086025, '__ci_last_regenerate|i:1675086025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe52e6b1b149c87220847cb2c67231029a65a88', '172.105.247.100', 1675086025, '__ci_last_regenerate|i:1675086025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e11b0ca6f79331f9001f09e5803d19c4d57dc9', '172.105.247.100', 1675086025, '__ci_last_regenerate|i:1675086025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0ab8eefc03a1a3eb882ccc420e8986b5ffd3ae', '172.105.247.100', 1675086025, '__ci_last_regenerate|i:1675086025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341683c94570341fb99fd9c0156b97cbde26ac27', '172.105.247.100', 1675086026, '__ci_last_regenerate|i:1675086026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e562901c734ff715b5f9b3ca6d602d4158fb55ba', '172.105.247.100', 1675086026, '__ci_last_regenerate|i:1675086026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04967cc46cfe1e2c97bca62eb5089d6f6b2a82f1', '172.105.247.100', 1675086026, '__ci_last_regenerate|i:1675086026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a28ba58e78c201835fdeb88ab6c38a02981f2f4f', '172.105.247.100', 1675086027, '__ci_last_regenerate|i:1675086026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2d312ee46b185be23742c5e635602bc6ba9a70a', '172.105.247.100', 1675086027, '__ci_last_regenerate|i:1675086027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbd8094319f3c034f74a2c52032650e949305e6', '172.105.247.100', 1675086027, '__ci_last_regenerate|i:1675086027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017fa4d3f2ead91332dab541f914ae61bf171402', '31.222.203.2', 1675087421, '__ci_last_regenerate|i:1675087421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f0d93aad511d7109ab1320fe54aee81486bb2d', '31.222.203.2', 1675087421, '__ci_last_regenerate|i:1675087421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4433a35f542810d489984a62f979a23e60f06ddc', '31.222.203.2', 1675087421, '__ci_last_regenerate|i:1675087421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5839ac3c583821f78ca99e19f1ea398f4ad4e2', '31.222.203.2', 1675087422, '__ci_last_regenerate|i:1675087422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc56f7cacc38ea1eb71c4c8efc9b78be1a2bd142', '31.222.203.2', 1675087422, '__ci_last_regenerate|i:1675087422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58dad7796c7ca49c802d3af55b097c46535de980', '31.222.203.2', 1675087422, '__ci_last_regenerate|i:1675087422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dec0c597f90c687263caaba613070d027023570', '45.120.39.89', 1675088819, '__ci_last_regenerate|i:1675088753;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675065248\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675088819;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aee891659168c7b0483f66a2b23560dd6ec0ea8', '172.105.247.100', 1675091421, '__ci_last_regenerate|i:1675091421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37fe4f0c78693d586eb9701ce35d1ff5ee4177a6', '172.105.247.100', 1675091421, '__ci_last_regenerate|i:1675091421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f9e56cdf560050ec29e2011f43a1e9d91fdb10', '172.105.247.100', 1675091422, '__ci_last_regenerate|i:1675091421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f67f1008cee782accc7b114efc0181b77bf998', '172.105.247.100', 1675091422, '__ci_last_regenerate|i:1675091422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af1fcf062b92a725d9026a90d6276980b7feb3d', '172.105.247.100', 1675091422, '__ci_last_regenerate|i:1675091422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0f0ef299a57c177b171a0c26ce81d372dd2b6b', '172.105.247.100', 1675091422, '__ci_last_regenerate|i:1675091422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fdaf3dea05fb8ee4a38b3eba138cf774929a6af', '172.105.247.100', 1675091422, '__ci_last_regenerate|i:1675091422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4680b71119ec8fb46bb8321b36c8d41f5acd34', '172.105.247.100', 1675091423, '__ci_last_regenerate|i:1675091423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b216dc8e643c22df62b6fac67395e84eca51911', '172.105.247.100', 1675091423, '__ci_last_regenerate|i:1675091423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739cb25654dca0d2c876f408fd264570372d330c', '172.105.247.100', 1675091423, '__ci_last_regenerate|i:1675091423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f6fb78face4d0a639ab512f8c54679c4503625', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec33a2477a7d156c3a6e06b0f478f440d3f3ffc6', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81e05e3475aa4c20755fe7577e3499700303f02', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82df842dc4b14316acffd4102b1472bb2ba6a4dc', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6d229b1ee2bb495c20b3611911185c5e8ed471', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0bd6c1763dd29e3fc2ef41724a34ebebbbabc3', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cedf9b6cbc09ff59e63fc53f88a6c4bb6b17ea9', '172.105.247.100', 1675091424, '__ci_last_regenerate|i:1675091424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32557607b3fa3db2cb39c627f3f5a9ae527064ff', '172.105.247.100', 1675091425, '__ci_last_regenerate|i:1675091425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f803268c02e18b04c2f1ee5353f44dc3afda5dc', '172.105.247.100', 1675091425, '__ci_last_regenerate|i:1675091425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa58d3611e3e94b18e4d977eea606b27919378b5', '172.105.247.100', 1675091425, '__ci_last_regenerate|i:1675091425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360825b98432d17b6bd3bed41fd8dcfed803970b', '172.105.247.100', 1675091426, '__ci_last_regenerate|i:1675091426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b7d029a509c0066c02d058ee2a756f83dc36c6', '172.105.247.100', 1675091426, '__ci_last_regenerate|i:1675091426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a690577fa28c4ef6ee23b45bd9906c06f7e59e', '172.105.247.100', 1675091426, '__ci_last_regenerate|i:1675091426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a766f6d096dcd75dc81aec8c888a486f1f97e5be', '172.105.247.100', 1675091426, '__ci_last_regenerate|i:1675091426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fcbd7d0eb8877eb2177ce0c2ef761d0ed8060a6', '31.222.203.2', 1675094614, '__ci_last_regenerate|i:1675094614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2557d4d604cdd9d30eee64c7fc071d35541f622', '31.222.203.2', 1675094616, '__ci_last_regenerate|i:1675094616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e872cd4eb5dc22c15fd458b739c00d8ab2a9183', '31.222.203.2', 1675094616, '__ci_last_regenerate|i:1675094616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99f9b973bffc95226d5fbd02dc4b92c765be713', '31.222.203.2', 1675094616, '__ci_last_regenerate|i:1675094616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4caa264a6994157eb912ec620020bb05e0fea1', '31.222.203.2', 1675094616, '__ci_last_regenerate|i:1675094616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6fc213e537174a8837de5537eb2c8c1373b225c', '31.222.203.2', 1675094617, '__ci_last_regenerate|i:1675094616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54723b3eeb2968f7e49e6d6e17f28e3b058e2c92', '31.222.203.2', 1675096462, '__ci_last_regenerate|i:1675096462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0c21f6d586748d67dd3db79f47ea363b903360', '31.222.203.2', 1675096462, '__ci_last_regenerate|i:1675096462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c59fdd36e6c4c00e61bf13311522918a4640ca', '31.222.203.2', 1675096462, '__ci_last_regenerate|i:1675096462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d19868f1d7089ea3a61c8e5bde2acf2c29a41a9', '31.222.203.2', 1675096463, '__ci_last_regenerate|i:1675096463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f6c040c2906d17c965f0245252da29c79f8185', '31.222.203.2', 1675096463, '__ci_last_regenerate|i:1675096463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53c6da22cdc238ed4ff6b1ee673ae7035e38437', '31.222.203.2', 1675096463, '__ci_last_regenerate|i:1675096463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353ef011debd3ad85bef104863cfc603cb0847b6', '172.105.247.100', 1675096823, '__ci_last_regenerate|i:1675096823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1366f87eed2146200ffd65c2f42350cdfc47e24d', '172.105.247.100', 1675096823, '__ci_last_regenerate|i:1675096823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f091987677498b95be6381c534dced53d2381415', '172.105.247.100', 1675096823, '__ci_last_regenerate|i:1675096823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388b6b3bc1e79c341af6f9ac6a972a3ab27544a3', '172.105.247.100', 1675096824, '__ci_last_regenerate|i:1675096824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f28d2698cfc7bbbbb5adf687f699654c2d239fe', '172.105.247.100', 1675096824, '__ci_last_regenerate|i:1675096824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c7233982a98c3e4ef183773748a2481e1e482e', '172.105.247.100', 1675096824, '__ci_last_regenerate|i:1675096824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92e9f33ae6f91fba1610e853a3969742b5762a7', '172.105.247.100', 1675096824, '__ci_last_regenerate|i:1675096824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e802db084d1a78e4de1c532da48e4904603f025b', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7ab8ddded122b83a84c32c78d9da9320fb8b15', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c9a356501177aa48bc2bd8e90cda06c0a07f68', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('872f10e8003dbae056fbdfa89af8fe419310cad8', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef149b1ccc1bf7b1e832642e36472dde5d076d6', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea362bdae81992c7fd135781db54fa7ac336dc0', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f52c6ea770a0fa9c647e8f5d7db036e58895ac8', '172.105.247.100', 1675096826, '__ci_last_regenerate|i:1675096825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ea3fcee7908f53d1a5f938cc728c68fd1cb4dd', '172.105.247.100', 1675096825, '__ci_last_regenerate|i:1675096825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc532c5293ded6202bde750e6069e0d107ce5437', '172.105.247.100', 1675096826, '__ci_last_regenerate|i:1675096826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('972e021d231d88c32953981d5630728e7afe4b21', '172.105.247.100', 1675096826, '__ci_last_regenerate|i:1675096826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e6aa021b43dbe2489f6bddfa70259f4dda44d0c', '172.105.247.100', 1675096826, '__ci_last_regenerate|i:1675096826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ca0e91705c50d660f1c803810242940f60926a', '172.105.247.100', 1675096826, '__ci_last_regenerate|i:1675096826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545461fe3e0ea6596dd244b4481ac4d03299917a', '172.105.247.100', 1675096827, '__ci_last_regenerate|i:1675096826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bab914926f9f3395b49f4af528fc8139defbc0', '172.105.247.100', 1675096827, '__ci_last_regenerate|i:1675096827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb5220803a2ec5138ca64062c039ab85dc2dfb4', '172.105.247.100', 1675096827, '__ci_last_regenerate|i:1675096827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1ce8191122ca30549c9badaa7c0ca9fe2f7a29', '172.105.247.100', 1675096827, '__ci_last_regenerate|i:1675096827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb0a8e2379526a62e7a3097b9e1545b2c301ccb', '172.105.247.100', 1675096828, '__ci_last_regenerate|i:1675096828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ad4b6c6f3f8a9c2c783d720d3bc3d5a482f373', '172.105.247.100', 1675102222, '__ci_last_regenerate|i:1675102222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21cfe454f29455b8c2c0ecfbcbd2678344134c41', '172.105.247.100', 1675102223, '__ci_last_regenerate|i:1675102223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5752eb7278a5dd83e10bdf9942a875182c017e1b', '172.105.247.100', 1675102223, '__ci_last_regenerate|i:1675102223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f0b8e5923ff9e71024237cacbde8fe61406bcc', '172.105.247.100', 1675102223, '__ci_last_regenerate|i:1675102223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27073863d8fbb57aaf55a49abdb984e4e1f3c65', '172.105.247.100', 1675102224, '__ci_last_regenerate|i:1675102223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b2da463df70b8aeee99aa8bd6fea868672e83d', '172.105.247.100', 1675102224, '__ci_last_regenerate|i:1675102224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6089aa75e6fc90378af066d1487b84471ae07140', '172.105.247.100', 1675102224, '__ci_last_regenerate|i:1675102224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98137b9909831c3ff0d331698a3d9ff21f6ffce0', '172.105.247.100', 1675102224, '__ci_last_regenerate|i:1675102224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3faf8844a36fbf8de35a26d9820bf8ddfb766f', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1273acdbb6ff8397a26b549125a3edaa3b7942d1', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4adfaacdcb8bf5a9af912c03b5d134d23da964ce', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358321a61c4143ba5b41cad3f0ce84cfa9965c71', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55218e903f189d220b7b7ee39aa3e41be26a4096', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dadc3e3ee226fa19cdfc0e009f8b9158abe4a1cd', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ccc70f3bc68ba0d854f9123daa9abac17e845b', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f3904b82e53b3a624dfaf9e838b208911f0980', '172.105.247.100', 1675102225, '__ci_last_regenerate|i:1675102225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('326f226e532378f46121bceccb2e2e44183473e7', '172.105.247.100', 1675102226, '__ci_last_regenerate|i:1675102226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c01c734b58a8a61e6a7f44cb4e8e3dc03de7d43', '172.105.247.100', 1675102226, '__ci_last_regenerate|i:1675102226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309e6bc13f6b167297075bfaa03dcd48bdc48eec', '172.105.247.100', 1675102226, '__ci_last_regenerate|i:1675102226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1af20f742476c74dcaf9327cdf8a1977b3f491', '172.105.247.100', 1675102226, '__ci_last_regenerate|i:1675102226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946a32c6cccc911380b75373f0c1ec9a04916399', '172.105.247.100', 1675102227, '__ci_last_regenerate|i:1675102227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef86c59eca3e1f9e79b8b68911a1524db9fbd98', '172.105.247.100', 1675102227, '__ci_last_regenerate|i:1675102227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73461994fa3720ab5c4bec0c4e9b970900ae60d', '172.105.247.100', 1675102227, '__ci_last_regenerate|i:1675102227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47a0bdfe7514de5ab19ce4c18895f6441ae8a12', '172.105.247.100', 1675102227, '__ci_last_regenerate|i:1675102227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f358df326663dde61a50d644753cd87b87773106', '147.78.47.249', 1675102634, '__ci_last_regenerate|i:1675102634;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50810465c7c67abfddb5aaf87fcff22dcf4d190f', '147.78.47.249', 1675102636, '__ci_last_regenerate|i:1675102636;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed8619d62786e2263d341f83aade51fb7318602', '147.78.47.249', 1675102638, '__ci_last_regenerate|i:1675102638;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a79096a27e937aa8dfbbfc8ccb87de3cb592894', '31.222.203.2', 1675105385, '__ci_last_regenerate|i:1675105385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16057e770c53a7317bf7627752d1b7fc1d6dd6d', '31.222.203.2', 1675105385, '__ci_last_regenerate|i:1675105385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84671dd18ef3b13d6e0db1c7821f7ce466df48b2', '31.222.203.2', 1675105385, '__ci_last_regenerate|i:1675105385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78dbb7931db7adac38d3900d323cf914796f413', '31.222.203.2', 1675105385, '__ci_last_regenerate|i:1675105385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f41dddfc73d3a60df32e4fb6c0ed45927152b1f', '31.222.203.2', 1675105385, '__ci_last_regenerate|i:1675105385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48134d204cbd80d6c67ac7a85b8b744aefd0c667', '31.222.203.2', 1675105385, '__ci_last_regenerate|i:1675105385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a06f45434a66797ce8d6686ecb23f6b4c6fb4361', '172.105.247.100', 1675107620, '__ci_last_regenerate|i:1675107620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b80c56e3ba34a9a817653a03da228affb804f4c', '172.105.247.100', 1675107621, '__ci_last_regenerate|i:1675107621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c481cb4c307b2864910851a3dbece98a6f9097', '172.105.247.100', 1675107621, '__ci_last_regenerate|i:1675107621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9939d53f8481e71d45b9900d6731dc1324cfa5c', '172.105.247.100', 1675107621, '__ci_last_regenerate|i:1675107621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0922b99e746e8a33532a84a897d9a30fb48f239', '172.105.247.100', 1675107621, '__ci_last_regenerate|i:1675107621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6417be0f2874fdf760c72ee0757a71fef256e164', '172.105.247.100', 1675107622, '__ci_last_regenerate|i:1675107622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142bc1c717b0366eb2b7b5fdde104712afd9bf90', '172.105.247.100', 1675107622, '__ci_last_regenerate|i:1675107622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d9c0cfe0bcb4bf2681e9eb11ce22016657eb06a', '172.105.247.100', 1675107622, '__ci_last_regenerate|i:1675107622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6152a978c3d5862db2d362455922832c4e9ad1a', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5538da6bce248e3de041779ee53519317afe45', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ade683ed63ae5046bfbbe62fde3b3a53499fe9', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e270bb835445b1babd096fd61dddd8452e7886bc', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285b9769297f0aee5a509a1eea90123dfe2bf479', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056043214568e7e5cf69d9481c350b8366b54034', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd78ef4775c54d5b4a5dbe8bf0b8f8c39447d6bb', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f03aaaa186d0e27a281d51880af6225eb66b17a', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a69026e0a35eaeba0b762ced24407a3cd4ada5', '172.105.247.100', 1675107623, '__ci_last_regenerate|i:1675107623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6480dc234bd38f615ccf259e14c687e3a7ee8638', '172.105.247.100', 1675107624, '__ci_last_regenerate|i:1675107624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20361bee2348640381819da5e4cbcd8c8eb6ed96', '172.105.247.100', 1675107624, '__ci_last_regenerate|i:1675107624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19ff54a7b6eaa2e75d78211804e6c4a93fb6c80e', '172.105.247.100', 1675107624, '__ci_last_regenerate|i:1675107624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cfe99fc3491392726e859c8494e0f7c8bcb876d', '172.105.247.100', 1675107625, '__ci_last_regenerate|i:1675107625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935b3a79b2d05f044b17903b3526dcdc9c7e6828', '172.105.247.100', 1675107625, '__ci_last_regenerate|i:1675107625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4001c5230c91cdb5e0ba0d257e858a1829e1d68', '172.105.247.100', 1675107625, '__ci_last_regenerate|i:1675107625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d0cc2a2552a42ae623a520a2321fb3386548fe8', '172.105.247.100', 1675107625, '__ci_last_regenerate|i:1675107625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e05cd3adc145ef31b07fb7120270e8824a328964', '172.105.247.100', 1675113022, '__ci_last_regenerate|i:1675113022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bbb59e6c83f5846ec831195259128750d53b4b8', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9496dc9171797342fc4720fef4f0e44ff9b6e90', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a373f588d4a99c2f1fb1019028550ec6d66dfbbf', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c45fc0660dd7d0801a89327f8bbf7309a0470ec', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c50aaa071c84c67deb2e239963810b0d447004e', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61dd8506b19f417b270aa666e08806ed4e36ca7', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31f49332aafb829f2c56c2a9e6be7d5a0f97c11', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0268e2295f281d76085ea9c1ddc0df536456bfd', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bedeafd831851ee609da6ac491d8fb3e61101a73', '172.105.247.100', 1675113023, '__ci_last_regenerate|i:1675113023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13bba5ec5083b379fbac9628ba0498bff9cc6adb', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5948dc8920deb6e799463ffc2f48bd1158381ee6', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a37cd96f462cb33650a0bb1791653533f84ce1', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6875fd7f0d669b21b320a3d63cddf4e4fed10258', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e56ea7a0103544c889306d2491418b62a0c2b6', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f57d94042b87440fb82103b430d499d91531fb', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b25023f0137dcf896cef5e8b252ee7b91fb223', '172.105.247.100', 1675113024, '__ci_last_regenerate|i:1675113024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c0c48cb77f93bf3629997fd9fedeb840972e16', '172.105.247.100', 1675113025, '__ci_last_regenerate|i:1675113025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31464f587b77aaf640a63b51b0c6e8b27bea886c', '172.105.247.100', 1675113025, '__ci_last_regenerate|i:1675113025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d4ce735fac7ee6f12c3c219570a50cc349859e', '172.105.247.100', 1675113025, '__ci_last_regenerate|i:1675113025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012a1648bbd24b6cc6d6ac3b8aa60060c44e26b6', '172.105.247.100', 1675113025, '__ci_last_regenerate|i:1675113025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f7749b83cb454ecdd428efdb9ae8b68c8bde2a', '172.105.247.100', 1675113025, '__ci_last_regenerate|i:1675113025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4dfe39f74189386a22c95d4b480538089ea2d7d', '172.105.247.100', 1675113025, '__ci_last_regenerate|i:1675113025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8eb76f48110ae4dfe5642232ec7bdfc343fe697', '172.105.247.100', 1675113026, '__ci_last_regenerate|i:1675113025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6a2e548dc9255692303959029a577a00edca27', '31.222.203.2', 1675116194, '__ci_last_regenerate|i:1675116194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5dd6d5e1be3361015a1cd06171052e9b3e36cd2', '31.222.203.2', 1675116196, '__ci_last_regenerate|i:1675116196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d7bb1299523b9329c37ef03f78a5511c42db1b', '31.222.203.2', 1675116196, '__ci_last_regenerate|i:1675116196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78549bdc8b25d12352ce4ce8c651f955ed287c1d', '31.222.203.2', 1675116196, '__ci_last_regenerate|i:1675116196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fc7b426741eef2aa54e658f5baf5892713f8d8', '31.222.203.2', 1675116196, '__ci_last_regenerate|i:1675116196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53668f24c54bad870069f4549de3a59d008a9905', '31.222.203.2', 1675116196, '__ci_last_regenerate|i:1675116196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c3a7c628f584f9a2871f731e65d32c680147a2', '31.222.203.2', 1675118054, '__ci_last_regenerate|i:1675118054;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06845abb116c44f08fe7649b5f04885d1e222eed', '31.222.203.2', 1675118056, '__ci_last_regenerate|i:1675118056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c80741b58b6431218c9876d0a8d6bc8a990e27', '31.222.203.2', 1675118056, '__ci_last_regenerate|i:1675118056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fe4f9f85a7a8b75dd4daad68fbd3a80d4a5d5d9', '31.222.203.2', 1675118056, '__ci_last_regenerate|i:1675118056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c42c7f2321dbe3c9efb45a4d5533442f2519d7e', '31.222.203.2', 1675118056, '__ci_last_regenerate|i:1675118056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1fd80ad657fd9bcc59a312c4f67c09018696dc', '31.222.203.2', 1675118056, '__ci_last_regenerate|i:1675118056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1086fe7b9c58ae92064b13fc720ca99f1c1ace91', '172.105.247.100', 1675118421, '__ci_last_regenerate|i:1675118421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8c8fd5a898850194a4df8936cc298339808d21', '172.105.247.100', 1675118421, '__ci_last_regenerate|i:1675118421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5bc89ebf3d3dbdd60dce13deae217f3f25bef6c', '172.105.247.100', 1675118421, '__ci_last_regenerate|i:1675118421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de348f2c54d6f5486f09cbb2c83c7f27db1fe9b2', '172.105.247.100', 1675118421, '__ci_last_regenerate|i:1675118421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3c485f1afc9334cb4848c9c4f2dac4b0da0b23b', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3924799283d1595ebc9ff97db1dc6337705a298', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1374e52177c530daeb6872598dbb8c314c90ca60', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63271430370acbbf05590069634c736048897869', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da97477e5d9aceea0f822ef60a7822a27b883921', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8426dd89f7ed9d622051c120afbea628c5eb037', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1750619bc707392e57501de2633ad6fca75e25e6', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0371104c21e56af6015065f8b8a0454b2b95a7d', '172.105.247.100', 1675118422, '__ci_last_regenerate|i:1675118422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b04fdba26acdb6d7c76021e9ad61b0a9c18a9e09', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1240bf18d901202ec77df477c71257e9758ba0', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e570833752ee9462dfe5fb173c4133a47acfa945', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aed3ae5e8687ed60d52f4aae3eb3f8621652c14', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40107fea322cd1bd1d348a9738448940e5739590', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad4b2e032f3b8f4d352425bbfed8601ed9dc8a5', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034466c807c391fd6831bb375367f28f69551f71', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c2bb50e695001afc84e4c342f63f71651a1732', '172.105.247.100', 1675118423, '__ci_last_regenerate|i:1675118423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84995b210c3fc36cac77664114ec92489e50342', '172.105.247.100', 1675118424, '__ci_last_regenerate|i:1675118424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd19224b0c01676dae00a775e03afb91f426600', '172.105.247.100', 1675118424, '__ci_last_regenerate|i:1675118424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba1f3b1ef64a54c0c298b868e7bca01e1162b67', '172.105.247.100', 1675118424, '__ci_last_regenerate|i:1675118424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba8ba9785ff36c82f8c1e240e068e0c0a30f8ce', '172.105.247.100', 1675118424, '__ci_last_regenerate|i:1675118424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb9f426b2affad418c7caf910cdc50fa737dc30', '172.105.247.100', 1675123822, '__ci_last_regenerate|i:1675123822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57193a77b6e68e2a3b347ed78a085bd8e540ebd2', '172.105.247.100', 1675123823, '__ci_last_regenerate|i:1675123823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b101b67adaa74629c58a230153021ec4a46bc2d', '172.105.247.100', 1675123823, '__ci_last_regenerate|i:1675123823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88a835ded63a2c78e455ef60e4f9609aff2d1c8', '172.105.247.100', 1675123823, '__ci_last_regenerate|i:1675123823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d307503742ab60a5af17a28f1008742e9480b0b5', '172.105.247.100', 1675123823, '__ci_last_regenerate|i:1675123823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86e351f2371398ce9e52915d4d327d02a6f87d6', '172.105.247.100', 1675123824, '__ci_last_regenerate|i:1675123824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a77c4c29fafcae48b5ef8f418a742774e6d700a', '172.105.247.100', 1675123824, '__ci_last_regenerate|i:1675123824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d36ee3fadd8a91d248b9dc5b07b4504d76996081', '172.105.247.100', 1675123824, '__ci_last_regenerate|i:1675123824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98dad402741e19e579e8c15f931159cf82ff024a', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc885e3b0a763eefb2fab07301899ed25cfeb5d', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37034b3d67554a01562d2874e7117b2e6f3b0506', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40cb985626c46464a4a86f8fe5348dd863abc1fd', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d974094515edfcdbf0907f56160c6a98590fd0a', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579770cc707c08d1b03867999ba1046c29568b5a', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c76fe5ae2c0294fabbdbcefbbca34789f3bbc1', '172.105.247.100', 1675123825, '__ci_last_regenerate|i:1675123825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab79834f912ac0a925eeb7a2e281da47b1ccb347', '172.105.247.100', 1675123826, '__ci_last_regenerate|i:1675123826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17708bd9ca7e885e34bf350f558255388301cd1', '172.105.247.100', 1675123826, '__ci_last_regenerate|i:1675123826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c297fdaa80d43cab6580ed5ee938c86a43321d', '172.105.247.100', 1675123826, '__ci_last_regenerate|i:1675123826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5b8c3ed394111d69925d61a9774f4bad3d71db', '172.105.247.100', 1675123826, '__ci_last_regenerate|i:1675123826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd3e9ce85ceae1fb8023d1ed548baa04bbc36f4', '172.105.247.100', 1675123827, '__ci_last_regenerate|i:1675123827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5ab2f4b267dda041613821ff720aca0bfb6587', '172.105.247.100', 1675123827, '__ci_last_regenerate|i:1675123827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53468244d90f73706ad2f18d5f08faee3afd20a9', '172.105.247.100', 1675123827, '__ci_last_regenerate|i:1675123827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2adc8dbe84b1286d86c285f044266bb2251427b', '172.105.247.100', 1675123828, '__ci_last_regenerate|i:1675123828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd7e0ae4c3e6f4ea49fa3c2e05a77d66e58de03', '172.105.247.100', 1675123828, '__ci_last_regenerate|i:1675123828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e90fe88bc7d10d96206ed092c2e8fe66372ed6', '31.222.203.2', 1675125204, '__ci_last_regenerate|i:1675125204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520b7a0546e6bf4c59ce477c4a4a480ae0a03e79', '31.222.203.2', 1675125205, '__ci_last_regenerate|i:1675125205;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ef9844836c0d8c77c4317dfc8e5612d95adb57', '31.222.203.2', 1675125205, '__ci_last_regenerate|i:1675125205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7022c318809a587d92f2438e5703a8a4ef5c4b', '31.222.203.2', 1675125205, '__ci_last_regenerate|i:1675125205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7747cc643749b159cd3aa2bdca8c258d3424196c', '31.222.203.2', 1675125205, '__ci_last_regenerate|i:1675125205;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8dd7ee053f7b5f9445f462fb12e9d3e5777daaf', '31.222.203.2', 1675125205, '__ci_last_regenerate|i:1675125205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eff4f640f70cecdc5ff5b0d81bcf8656b7df88f', '172.105.247.100', 1675129218, '__ci_last_regenerate|i:1675129218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e6b2739509f60d25851416d251cd17858f2fbe', '172.105.247.100', 1675129219, '__ci_last_regenerate|i:1675129219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5749145694303ef57d6e627211714cd6fd767e', '172.105.247.100', 1675129220, '__ci_last_regenerate|i:1675129220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b07d813e2c1418125743b6f7168f036d377a04', '172.105.247.100', 1675129220, '__ci_last_regenerate|i:1675129220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e5149cc96442679ff5e206e62198668cf2d7db', '172.105.247.100', 1675129220, '__ci_last_regenerate|i:1675129220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fa50e73c6b3a811af5cd3bb1e0b1fdb8a5ea73', '172.105.247.100', 1675129220, '__ci_last_regenerate|i:1675129220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7860aea5384b16d02a6c7d2c8549f715875d006', '172.105.247.100', 1675129221, '__ci_last_regenerate|i:1675129221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52aa4c228a4ad66ef89e5d00bccfbb325204bacc', '172.105.247.100', 1675129221, '__ci_last_regenerate|i:1675129221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42699d49181c399590a5f524020aa5701a03326', '172.105.247.100', 1675129221, '__ci_last_regenerate|i:1675129221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee705eadcef9cbccc9ee2110c809083b4c4c8a1', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d060d8b25859d6ddda41ee8f06c502d05b7c4d6', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd19515769f46ca5d4d867e7664fd8bb9718323', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4214a931632742d60654cccf831e6d5f535d84a6', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f28a7ed2774570b64c24b6b4e2f100abb3e65b', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b77f70100baab6d20a89417d0df1f0ff3123f4f', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc6d81da5ba78c4acf37f4eaffc61d7ce8ddeb5', '172.105.247.100', 1675129222, '__ci_last_regenerate|i:1675129222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('870aea439c9c4fe26e93c6e9b692e2dbad5eddf1', '172.105.247.100', 1675129223, '__ci_last_regenerate|i:1675129223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50393227c8500216f16e0754c948b2cf15afea9', '172.105.247.100', 1675129223, '__ci_last_regenerate|i:1675129223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f808ee3b601c81f20dd08a72850e96532260cd', '172.105.247.100', 1675129223, '__ci_last_regenerate|i:1675129223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733366705987bf57fece0c898015161ae04d6ec3', '172.105.247.100', 1675129223, '__ci_last_regenerate|i:1675129223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f54deeb4f13c897419ef77a7062dec58fc40e1', '172.105.247.100', 1675129224, '__ci_last_regenerate|i:1675129224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b266bd6c30cc6fd377cdb22936fcb9c7a29d154', '172.105.247.100', 1675129224, '__ci_last_regenerate|i:1675129224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee5648f1644bfb1be99e8f3b9004d97c15d594f', '172.105.247.100', 1675129224, '__ci_last_regenerate|i:1675129224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c228e317b319073eb229696cb1e396f7f2696cf', '172.105.247.100', 1675129225, '__ci_last_regenerate|i:1675129224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9ad091347a6e7657930b9db92b8cc904fa67c3', '47.107.33.26', 1675132408, '__ci_last_regenerate|i:1675132408;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f570ebc84de81b381fcec5d3b2d89646485add', '47.107.33.26', 1675132409, '__ci_last_regenerate|i:1675132409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa18c9d4f93b8c48fc0c831c04b49fea3a809c6', '47.107.33.26', 1675132411, '__ci_last_regenerate|i:1675132411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd8b18131fad885951db1c5bcf1ad6e0e11075d', '47.107.33.26', 1675132412, '__ci_last_regenerate|i:1675132412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7071e70caa6288c3b04934f7b9ed74ca4c997f7e', '172.105.247.100', 1675134618, '__ci_last_regenerate|i:1675134618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0579d8fe38c8176fe7508a2cada33aa41d5a81f5', '172.105.247.100', 1675134621, '__ci_last_regenerate|i:1675134621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2deb0b98f76ce2f477ee5a50b11a952a51bd67e7', '172.105.247.100', 1675134621, '__ci_last_regenerate|i:1675134621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1dac77fdd910866b130f49d02def1353e52e6cc', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd83f726742c2dd70f01cf85edeff4302ddc279', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('347da82274033d4a849f787a418f716bcc6e73d8', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7c090dc38f08941a0231b5f416aef73d9d7053', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb93b0694617052bca55effb206ff0f3976d415', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee8c39a1f8cd1fc5835d5efdd18adbdb05498dc9', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6d24f336da77808af648a04c9b172c7a3a39f9', '172.105.247.100', 1675134622, '__ci_last_regenerate|i:1675134622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4287e748e11aa51a2801c2aa081b4ba912773dd', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b54717882475a6d8c92063994c2589dcec22be', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('573b7b5c7659d6924675c307dcb1bac2280091ad', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b40d183278178a79a6aa47316f36e659a69cc7', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d02facf85a639f10532f2341e9dc6de5163b7f6', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850fd854dfce886eea45496fcab11fcc81224bab', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0391ab17a177e697d61cb24e79dc3f45a41ab26', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a491dc2a5ab56dd38dc02229f244d3c2a3e051a4', '172.105.247.100', 1675134623, '__ci_last_regenerate|i:1675134623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de84fb27a6d03e4d9e39b092b66f96fa63f1ba5a', '172.105.247.100', 1675134624, '__ci_last_regenerate|i:1675134624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b49db1d6faa5572a6fc8bb008a9487c8bb77968f', '172.105.247.100', 1675134624, '__ci_last_regenerate|i:1675134624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a7b6a133dcb36472e987d2450d33e9698aaeab', '172.105.247.100', 1675134624, '__ci_last_regenerate|i:1675134624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3a56b1f4d29e82949887b7432ce1b00bbf90bc', '172.105.247.100', 1675134624, '__ci_last_regenerate|i:1675134624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24629fa1b6cf822a58683121ce9983e62de79e50', '172.105.247.100', 1675134624, '__ci_last_regenerate|i:1675134624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158f84274230c1e1a5e068ff6afe35c13839ffef', '172.105.247.100', 1675134625, '__ci_last_regenerate|i:1675134624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142310fed64e035a1a892671756a1f06d695696b', '31.222.203.2', 1675135984, '__ci_last_regenerate|i:1675135984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c396e458c4a1061cb7fa9fc553bb96ef2b0b596c', '31.222.203.2', 1675135985, '__ci_last_regenerate|i:1675135985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3dcc32937eadc9742db6663d00892f2d650918e', '31.222.203.2', 1675135985, '__ci_last_regenerate|i:1675135985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37af07428683f15792c1104d1cc44f9c782efb9b', '31.222.203.2', 1675135985, '__ci_last_regenerate|i:1675135985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da2790bc54f5d1e22f3a439946619db30640301', '31.222.203.2', 1675135985, '__ci_last_regenerate|i:1675135985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4cbc0fea1bfa848cb1a564039b2d45f516984c9', '31.222.203.2', 1675135985, '__ci_last_regenerate|i:1675135985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa785b017e8de9daac474052c3e48f4b77c4067', '31.222.203.2', 1675137858, '__ci_last_regenerate|i:1675137858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f4947358d22cace21cb5caece7989df5591429', '31.222.203.2', 1675137858, '__ci_last_regenerate|i:1675137858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db617e1bb0f89ef6a4613936fad98dd5f0d530c9', '31.222.203.2', 1675137858, '__ci_last_regenerate|i:1675137858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9811959fa15a173630cf8399696fdc9f3358f5e5', '31.222.203.2', 1675137858, '__ci_last_regenerate|i:1675137858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b1101a1d5cfe730bbed4a8023d7a5b7ff2c481', '31.222.203.2', 1675137858, '__ci_last_regenerate|i:1675137858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de516e0b94ac0a19500bedf981194859fb7c3b2b', '31.222.203.2', 1675137858, '__ci_last_regenerate|i:1675137858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27fbedc9f1dfecc9fa0ac9316183adcfc9af489', '172.105.247.100', 1675140022, '__ci_last_regenerate|i:1675140022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a564d958daefdf31b3f5d59bd59e6c193cfb3aba', '172.105.247.100', 1675140022, '__ci_last_regenerate|i:1675140022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc218b69ee3306e20851a3ef7e2e7a8d6f87284f', '172.105.247.100', 1675140022, '__ci_last_regenerate|i:1675140022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feefdf06171a502918f693993c65d8e2536d6797', '172.105.247.100', 1675140023, '__ci_last_regenerate|i:1675140022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2ee6f2ce0ab9d68f73cd9bd51a3494a9fa2f05', '172.105.247.100', 1675140023, '__ci_last_regenerate|i:1675140023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8526b81216577d44592141f051f61d6c7c063321', '172.105.247.100', 1675140023, '__ci_last_regenerate|i:1675140023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6b17bd29dd2f2b657c47b7920695fd359937a50', '172.105.247.100', 1675140023, '__ci_last_regenerate|i:1675140023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b4d954cff5a8b68c1948b251e4ece659619aca', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63810560aca965eeaacae40983e97248e54b77c', '172.105.247.100', 1675140023, '__ci_last_regenerate|i:1675140023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdaf6e28879551805557448e23f3daf7b6adb4a9', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a036b29607d49ddcfdebeedbd38795d4def55c6d', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2716ec9a905dc2baddf6c3ec543c5d40810037', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0372f7b75209a02e41172a9f2c22ceaab172a21', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0016376f23232d9e870df9b5bf09f88c8fb306a5', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b000a4e190a92c5ab0df19d786f36f816ad7f950', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908dc3524e6219ee1d9597aab5cbc7e9b9f6d540', '172.105.247.100', 1675140024, '__ci_last_regenerate|i:1675140024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976dbc3a6cb555fbe3add4e28e38e0b0738f53d2', '172.105.247.100', 1675140025, '__ci_last_regenerate|i:1675140025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406ed563360cb8f00bbdf03ddf8c916cb2161520', '172.105.247.100', 1675140025, '__ci_last_regenerate|i:1675140025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce3a3af6b415ea2b51c3c7775b2e888f8b25a07', '172.105.247.100', 1675140025, '__ci_last_regenerate|i:1675140025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8a3231097cee74dc484d4a916510ddbe4d8ef3', '172.105.247.100', 1675140025, '__ci_last_regenerate|i:1675140025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad148837b62cfe4a7208175711722b87507b1fe', '172.105.247.100', 1675140026, '__ci_last_regenerate|i:1675140026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78d5991f9aa51ee435e8d5cb6cfb09bd0685fce', '172.105.247.100', 1675140026, '__ci_last_regenerate|i:1675140026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650c041793e7b23b8669caca973bbf41163f194f', '172.105.247.100', 1675140026, '__ci_last_regenerate|i:1675140026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c1b6a3d1fdfa1be27fd378e22502c9b67c6a50', '172.105.247.100', 1675140026, '__ci_last_regenerate|i:1675140026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beadd6d409d3045fd64e7d16eb75def1eba76b6c', '45.120.39.89', 1675147386, '__ci_last_regenerate|i:1675147386;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675143527;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65fa7e9c42698c88b6c083a7e06757e34c57edbd', '198.235.24.167', 1675145263, '__ci_last_regenerate|i:1675145263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d5110d064f2bcdbdbf7134fc964ded693764a2', '172.105.247.100', 1675145420, '__ci_last_regenerate|i:1675145420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b7275e03fbdacb953fa019d54699a479ba28f5', '172.105.247.100', 1675145421, '__ci_last_regenerate|i:1675145421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f88d09042eab06cf6f4dd4494cbaab2111a48b0', '172.105.247.100', 1675145422, '__ci_last_regenerate|i:1675145422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac24bb883fcb4356463b2e44eeb8e7b4d8129d78', '172.105.247.100', 1675145423, '__ci_last_regenerate|i:1675145423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db9e9a53aab6dc6788b564bdfdd9bf4fafee1a8', '172.105.247.100', 1675145423, '__ci_last_regenerate|i:1675145423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0d4613d4b976faa68c9e4329fa85318d5ed205', '172.105.247.100', 1675145423, '__ci_last_regenerate|i:1675145423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a468c7507481aad839589e0f56a33a4c6a94a32c', '172.105.247.100', 1675145423, '__ci_last_regenerate|i:1675145423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9aebab3a040834a36bb5697791900f8e2ea3168', '172.105.247.100', 1675145424, '__ci_last_regenerate|i:1675145424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fda70da9a0520ba00d0bc062efaa5db465605b8', '172.105.247.100', 1675145424, '__ci_last_regenerate|i:1675145424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e86a50ada61d5c11faffdabdc4afc04e0e9406', '172.105.247.100', 1675145424, '__ci_last_regenerate|i:1675145424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('658de01a3426e5b917384623c2e2caebb3131520', '172.105.247.100', 1675145424, '__ci_last_regenerate|i:1675145424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2126b36fddcf214492b802df5b3a02ad506e2d64', '172.105.247.100', 1675145424, '__ci_last_regenerate|i:1675145424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883555e9effad87d2874f9e818a8dfe5bf09e8fe', '172.105.247.100', 1675145424, '__ci_last_regenerate|i:1675145424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2c0c807e8fa56994bc24dfb3d0886421a94981', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e4a8153880587545eea4e6a62d1e2b0ac0acb29', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66e8e9bec638ef3a72c0ad2da1a0860c48bb6fc', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5d8f5d618011a98c5ff62d5b53b65fbb107edd', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df39ce12e2d59596cbbccac50e7ce2a8cebf4ef', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3bdc75eb9d61a561ab6e8011099fdaafecc346c', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b515b214da7daa763757d5aa0a8ad24c86cd9fe7', '172.105.247.100', 1675145425, '__ci_last_regenerate|i:1675145425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3cfe7af5fd2b1e48dbcf9d74b4f5eb4438db35e', '172.105.247.100', 1675145426, '__ci_last_regenerate|i:1675145426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abfd7bc74bdc2f4c6e5be054cd11b93d41ea88f3', '172.105.247.100', 1675145426, '__ci_last_regenerate|i:1675145426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a386a39f008b05f049fe19ef076788942c067e3e', '172.105.247.100', 1675145426, '__ci_last_regenerate|i:1675145426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a457eed2cb47bbcd240c5ce2a963e361fbfcd84e', '172.105.247.100', 1675145427, '__ci_last_regenerate|i:1675145426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aefb37ff9eec52db7a06105212da109852ab9e5a', '34.245.70.181', 1675146257, '__ci_last_regenerate|i:1675146257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446e487db8d6f62acad183ab0d1148419603a4be', '45.120.39.89', 1675149405, '__ci_last_regenerate|i:1675149405;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675147515;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d97b97ff6d3f4dcb0f5799248ddbff4d805249', '31.222.203.2', 1675148633, '__ci_last_regenerate|i:1675148633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e6ec04b67b3d71d820823b1432f80ee968c380', '31.222.203.2', 1675148633, '__ci_last_regenerate|i:1675148633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99cf2e046aa5103ffae3c037210ef59f7f0444ce', '31.222.203.2', 1675148633, '__ci_last_regenerate|i:1675148633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88bf8cc4975e1dbf0fdf193752ebb1049004da14', '31.222.203.2', 1675148633, '__ci_last_regenerate|i:1675148633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faaa3d78845790f904053dd84489ac2463d11222', '31.222.203.2', 1675148633, '__ci_last_regenerate|i:1675148633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35aec264fb38366447af84e9223cdef34fef496e', '31.222.203.2', 1675148633, '__ci_last_regenerate|i:1675148633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc19017a7f340f8c50b7fa973baefe1524875db', '37.111.218.134', 1675160681, '__ci_last_regenerate|i:1675160681;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675154549;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c867e3aea02176179220b80d456cfa4f526115', '172.105.247.100', 1675150821, '__ci_last_regenerate|i:1675150821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9032fc21a8f1d625766c90da6ce862fecaf01db2', '172.105.247.100', 1675150822, '__ci_last_regenerate|i:1675150822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcf36b0f67ef6e5eb6344352481f29d03bab9b8', '172.105.247.100', 1675150823, '__ci_last_regenerate|i:1675150823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ec97e95861eb9d9400e800ce7fd3ebec03a75b1', '172.105.247.100', 1675150823, '__ci_last_regenerate|i:1675150823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363bece1561fd9c4f93c5205091dd120472a11bb', '172.105.247.100', 1675150823, '__ci_last_regenerate|i:1675150823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b39626da8bad838c75f96922f58fe9af414a2c', '172.105.247.100', 1675150824, '__ci_last_regenerate|i:1675150824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32eeadf0ba46289005fc429138c6160c1b33e3a3', '172.105.247.100', 1675150824, '__ci_last_regenerate|i:1675150824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a18c637aadea79f997e5db8fe0534abca9ed1b', '172.105.247.100', 1675150824, '__ci_last_regenerate|i:1675150824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4588910ccf75b669bc609a8dd5471e64cc54de', '172.105.247.100', 1675150824, '__ci_last_regenerate|i:1675150824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b205d0fb162f3bf02bef783890880bd1679bd3da', '172.105.247.100', 1675150824, '__ci_last_regenerate|i:1675150824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e358aa344aa0c7c21534e95add1491d7ca87e8', '172.105.247.100', 1675150824, '__ci_last_regenerate|i:1675150824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('130e5f83e444b33118e2be5dd5745cd94bd9fb95', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e41f0c7d06384fdd9b09b3f4d3f95ee13fcd4ce3', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f6256d12ee22847a5e02ad410252ede4c49351', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23655faef90875970ef5b805bfd68f34a460532d', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec5c633c1518ecff477ee46198e59dbaf858708f', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d96894d29048749ffbacbec974dc541f06b60a78', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a062dd34cdeb6a35223e875111adcc4d8e605ec', '172.105.247.100', 1675150826, '__ci_last_regenerate|i:1675150825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7ae1eca2697bca785386a7cec1f4f18f6017cf', '172.105.247.100', 1675150825, '__ci_last_regenerate|i:1675150825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1703934783a96ea9fdc3af6b52963dd4ebdcd23', '172.105.247.100', 1675150826, '__ci_last_regenerate|i:1675150826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb9a76634a8b39259b3184122a07704152fe1ad', '172.105.247.100', 1675150826, '__ci_last_regenerate|i:1675150826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbecf5f15e5c9ca9e42454e0639c56b5af5d0e8', '172.105.247.100', 1675150826, '__ci_last_regenerate|i:1675150826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5543a840396f288abab46b1be79590bf600ef11', '172.105.247.100', 1675150827, '__ci_last_regenerate|i:1675150827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d398c0611aa9dde11a13a05e0c4fbe5a2b412b1c', '172.105.247.100', 1675150827, '__ci_last_regenerate|i:1675150827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48bedceed52297b3af5dfad3ef3a4d900d76da61', '172.105.247.100', 1675155020, '__ci_last_regenerate|i:1675155020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d261ee184841dd4c0edcafa088107e5d8c972805', '172.105.247.100', 1675155020, '__ci_last_regenerate|i:1675155020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf532093b0f7783a559e190e2827ede497f708b3', '172.105.247.100', 1675155021, '__ci_last_regenerate|i:1675155021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1c7e82f34d490e57d2c351f1e01bf2298adbc4b', '172.105.247.100', 1675155021, '__ci_last_regenerate|i:1675155021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0daf17f48ead5621baa4b85340fca11a366655', '172.105.247.100', 1675155021, '__ci_last_regenerate|i:1675155021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff8e3b60a7397f757e384b4de1ce645992444776', '172.105.247.100', 1675155021, '__ci_last_regenerate|i:1675155021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b77f53abc31dfc6de2b4dd685749ef9750072e', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3986d64be3006191d78fc8ac25f754b0ed6b8356', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d72bf0dbbe011e6bf165e592bbfcfdfe9a62445', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b29f1b71d6f560021f02d11af21768b40f97155', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5432312ecac4999bcb5c5301467b9525e35e1bf8', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ea6131ec6d15958a835f571286b84efc910926', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23adfb40f04337e7f1030f9820d7986d6806cdd', '172.105.247.100', 1675155022, '__ci_last_regenerate|i:1675155022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458bcd9c27cb585ddb47420b4fee71640eaf32ff', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a780827b30282808d2d3e3f5dd52e2b63fc900ad', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc4b03126b2c6a4c3c7715d6bdc439ede487422', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e435a9623cfe89c117e60f778a1f8531ee1ab5d1', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ebeff4b274143af6d46d9fa054532f5f908c7f8', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c402248b17a067ab1a28f411f7e9332979fe6697', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8188c0f29259eb7099003271c8a02b082f4c2e9c', '172.105.247.100', 1675155023, '__ci_last_regenerate|i:1675155023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5880c5be165ee7a642802d2af2bb75b469c3b3', '172.105.247.100', 1675155024, '__ci_last_regenerate|i:1675155024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('465270a03c0869829479a8c075b7707a939eb6cf', '172.105.247.100', 1675155024, '__ci_last_regenerate|i:1675155024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa3a35843e4e6e1befd398a8f92aa3f8bf0c50a', '172.105.247.100', 1675155024, '__ci_last_regenerate|i:1675155024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c922f7abc60b66a27dc03cb28df443e6e2cf42', '172.105.247.100', 1675155025, '__ci_last_regenerate|i:1675155025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7031ee25369763c4f141bf12de977b6261ca198', '31.222.203.2', 1675159384, '__ci_last_regenerate|i:1675159384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c6860084cc5e9a273fa1630b403f723ea37f4a', '31.222.203.2', 1675159384, '__ci_last_regenerate|i:1675159384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdf05c2543ce29220b17fa10b2b5452c72d4ea0', '31.222.203.2', 1675159384, '__ci_last_regenerate|i:1675159384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb343474745cdb5ec118e059c5531f1b7dd7992', '31.222.203.2', 1675159386, '__ci_last_regenerate|i:1675159386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf525066727adc5569f90aaabffded3a900b264', '31.222.203.2', 1675159386, '__ci_last_regenerate|i:1675159386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4485c574cc41dbfb9c0cf48ad575e9095a16bd00', '31.222.203.2', 1675159386, '__ci_last_regenerate|i:1675159386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('216163413643564c86d0293c28a9bc6fbd4d0aa0', '172.105.247.100', 1675159818, '__ci_last_regenerate|i:1675159818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6409d0512379ac3bbf87f1f31cca88f127344aca', '172.105.247.100', 1675159819, '__ci_last_regenerate|i:1675159818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0063ebaf68966e97a62695b0e364a4587a83b474', '172.105.247.100', 1675159819, '__ci_last_regenerate|i:1675159819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3314819cc5b26a2709457dbcf7d1d73450f77e', '172.105.247.100', 1675159819, '__ci_last_regenerate|i:1675159819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11cb00cbffc0d1d162c570b1e5fc3ccb5bc1119', '172.105.247.100', 1675159819, '__ci_last_regenerate|i:1675159819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a038c4de42341288ac1e450678040745c52fc35', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803dd30d3d8e657caf86276d14a337f402343722', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47cc7552adf77f0f6a682f87c72a226cd836ff93', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae2815794cf022b5ad329c1589cf11fda6c8dbe', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ef5f8c39b496f27e69ccda4c48c315c9f90a9e', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('615dd83affc037c5c4e239ad37e4bcf4f3d01222', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f8794b5225e8ca552f177ca66080b9fc0090d6', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b9ceceb37842f3e344e25d04527b85dea850d2', '172.105.247.100', 1675159820, '__ci_last_regenerate|i:1675159820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d1950e7b2d9535227d2b9f4a17f51d3888ca35d', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f5ee99ffa0dd688c572d3142b1ea142fc3e7ae', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51850c0e0e7631afe0241b00a84d72a9508ad974', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b498acaa98ff5a6f3cfa5c7d4cdeafe025ed90', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66da6095df180a25f6f7837faff713769fc2f79', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11caef2bda0c2363dc184b0049edf5c77acc89c4', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e82544ac3afcb309bb704bfcac70a5fa557160', '172.105.247.100', 1675159821, '__ci_last_regenerate|i:1675159821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c205bfd9fb55c01d591cb7523da7565364077539', '172.105.247.100', 1675159822, '__ci_last_regenerate|i:1675159822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c03135c5696b6a232fff84985e72ba2fc510cc', '172.105.247.100', 1675159822, '__ci_last_regenerate|i:1675159822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2ab86d56a8550b2701bd85fef9d15246734171', '172.105.247.100', 1675159822, '__ci_last_regenerate|i:1675159822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ff126e6bf3669b52418dc421ad401b799b84ab', '172.105.247.100', 1675159823, '__ci_last_regenerate|i:1675159822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c01abd648bd52f1746858e97b073bf24ff2e596', '37.111.218.134', 1675161072, '__ci_last_regenerate|i:1675161072;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675160770;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e589b0a773f9c1da0ebc555840a80075c8ee1f07', '37.111.218.134', 1675163085, '__ci_last_regenerate|i:1675163085;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675160770;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a6eb9485e3504e34de1ca698883bd6f4de30f3', '31.222.203.2', 1675161255, '__ci_last_regenerate|i:1675161255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cedfeb51480a4fbacb952b26050fe43eae570e', '31.222.203.2', 1675161255, '__ci_last_regenerate|i:1675161255;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6497f2ae1753b292c0592e30bfced4ec5555701', '31.222.203.2', 1675161255, '__ci_last_regenerate|i:1675161255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27adae718869f480b84a5cbd1f210819a0745544', '31.222.203.2', 1675161255, '__ci_last_regenerate|i:1675161255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07f26268200ce97d8f2a5f1dff678aa3d8e4f80', '31.222.203.2', 1675161255, '__ci_last_regenerate|i:1675161255;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b567a0102320a96a50fb75bef9f7248cc9552b1', '31.222.203.2', 1675161255, '__ci_last_regenerate|i:1675161255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9838ac03da15daad1e739f2e862285e47ecd7bed', '45.120.39.89', 1675165227, '__ci_last_regenerate|i:1675165227;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675163122;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d474312654a47ee29d02c31d5b9caedf98506e5', '31.222.203.2', 1675163101, '__ci_last_regenerate|i:1675163101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('628e5c7b1dd4533c47609af5f902a2b1967ceaaf', '31.222.203.2', 1675163102, '__ci_last_regenerate|i:1675163102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebdb8ac7172a656966a7c9f44567cf89c419b779', '31.222.203.2', 1675163102, '__ci_last_regenerate|i:1675163102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b82f61c70a2723fd50b47a1753300ad248aed6', '31.222.203.2', 1675163102, '__ci_last_regenerate|i:1675163102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ee4e61f77259e635cff0fd9663202bbcc0a3bc', '31.222.203.2', 1675163102, '__ci_last_regenerate|i:1675163102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb618e7ff428b481da1ff1874ff9674554377c6', '31.222.203.2', 1675163102, '__ci_last_regenerate|i:1675163102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6a7505bd2540ab26c33177318077657196c6bc', '45.120.39.89', 1675165601, '__ci_last_regenerate|i:1675165601;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675165227;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3427b9cf257706023d5460bbc61c9410fd650e52', '45.120.39.89', 1675167421, '__ci_last_regenerate|i:1675167421;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675167350;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd2899a6b45851a8570744c11f48a8dba3fb142', '172.105.247.100', 1675165823, '__ci_last_regenerate|i:1675165823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8a4cd9e926d2be552c0dda0d68a583828b9d490', '172.105.247.100', 1675165823, '__ci_last_regenerate|i:1675165823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0e5a9620333053498dd0f8cd9f83f86df32602', '172.105.247.100', 1675165823, '__ci_last_regenerate|i:1675165823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b789355c970ba319bdb8b10e7dcad7c3123241c6', '172.105.247.100', 1675165824, '__ci_last_regenerate|i:1675165824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4011ca1bc81bf9e66fd7f71493ab62ac96b40dcf', '172.105.247.100', 1675165824, '__ci_last_regenerate|i:1675165824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcaef9bfefc56ede4e6e880cdae634f2c1b9fba9', '172.105.247.100', 1675165824, '__ci_last_regenerate|i:1675165824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae57a3c84ac3359772790a0d5aa2435ad233576d', '172.105.247.100', 1675165824, '__ci_last_regenerate|i:1675165824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8111c06440711ffe0bf06e8354318bde74a61376', '172.105.247.100', 1675165824, '__ci_last_regenerate|i:1675165824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510a1da18823a0452f6f90c91421565933189246', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47914f1bd009f02dc3b4a5299497f014bf830555', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a315b1323fcff79ec423d03fe5d7a42d2f2c9a8', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d9eec79a702b0f6ae816e24d29443b1c693866', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb32e931b908017abb55bda65451875f1dcc3ad', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef24b530442ae0066dec5252c5c466fdf5465819', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feed6eaa2b781c7383a030ae8196596ec7d7391c', '172.105.247.100', 1675165825, '__ci_last_regenerate|i:1675165825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ae81c5249c3b37271025190704de5fc90a0d79', '172.105.247.100', 1675165826, '__ci_last_regenerate|i:1675165825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08af3ea7ed704dfeb0240634d87fd987e800af84', '172.105.247.100', 1675165826, '__ci_last_regenerate|i:1675165826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a89758f404d59154f487930ca3336a46ab9a746', '172.105.247.100', 1675165826, '__ci_last_regenerate|i:1675165826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b235c135ca831e357a418d0558e61876bde5430', '172.105.247.100', 1675165826, '__ci_last_regenerate|i:1675165826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099447db2e7d8ead852e3111eb080e241231d00b', '172.105.247.100', 1675165826, '__ci_last_regenerate|i:1675165826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f30dfc002f1cca1e8790430da6cb11b19aae80', '172.105.247.100', 1675165826, '__ci_last_regenerate|i:1675165826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d00b59910dd7f562aa81193287f559cc2d741cdc', '172.105.247.100', 1675165827, '__ci_last_regenerate|i:1675165827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ecc23f277d5f8a59d5d8791db9537ede7e1d925', '172.105.247.100', 1675165827, '__ci_last_regenerate|i:1675165827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a132c92731268c2b098c70683b4618ff14aeebc', '172.105.247.100', 1675165827, '__ci_last_regenerate|i:1675165827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72e69576d1ec7cf3461f1fcafeb95ff40144be2', '45.120.39.89', 1675171211, '__ci_last_regenerate|i:1675171211;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675167350;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fab29058d3cf1662e1d1edaf8d63839d67afc7d', '45.120.39.89', 1675175511, '__ci_last_regenerate|i:1675175511;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675171245;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d033ba8b7dc3a75b3ad20b382154538834c2c896', '172.105.247.100', 1675171821, '__ci_last_regenerate|i:1675171821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1769239bd952c4184da9c381aa13cda67f39a136', '172.105.247.100', 1675171821, '__ci_last_regenerate|i:1675171821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191b01af6348f8b730f8db756cfa779718ff24f0', '172.105.247.100', 1675171821, '__ci_last_regenerate|i:1675171821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0733952e3197713b1d902f1be1318382db03ac63', '172.105.247.100', 1675171822, '__ci_last_regenerate|i:1675171822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7938b9f04fb905d15d0ca5324eade7c93b319da3', '172.105.247.100', 1675171822, '__ci_last_regenerate|i:1675171822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c65ca0241cb54239e10949dc1080a7c675c9f8dd', '172.105.247.100', 1675171822, '__ci_last_regenerate|i:1675171822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346b25f7195d7e5d6eb3a6e28cb1d532c2ed7205', '172.105.247.100', 1675171822, '__ci_last_regenerate|i:1675171822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b1e80746d8724bfef585786319ecaf5e88da43', '172.105.247.100', 1675171822, '__ci_last_regenerate|i:1675171822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c2cc55be0e2d9d4d8ee3989e9788884bda4976', '172.105.247.100', 1675171822, '__ci_last_regenerate|i:1675171822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ace980845fc385c25994b7fb0130dce51ad6759', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be2c101437ac504b9d4864090b7988066d3f0fc', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a648ce8319b97ddc2f61689b2f77378b182b13e3', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2036152598036b9e55418274f74afe005639abb8', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03201d59edb74daebf0048562cfe0b16f211b990', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c37cbf7b230a2bbaf1d7a3a51d6ee67ddfa0e3', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd89f30e7108c4c1d5f92306c5d57272be5ce74b', '172.105.247.100', 1675171823, '__ci_last_regenerate|i:1675171823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a8d1c49750bb97ebbffa9ba47414d02024c5ed', '172.105.247.100', 1675171824, '__ci_last_regenerate|i:1675171824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7a7b95e5f7cf3f590e9608f8777d8dd4c9fe5e', '172.105.247.100', 1675171824, '__ci_last_regenerate|i:1675171824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ec5b3d13813a619bcb7565b1424e9fef779b93', '172.105.247.100', 1675171824, '__ci_last_regenerate|i:1675171824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dda2cbbce8a8e736af866e19530cf8610557e65', '172.105.247.100', 1675171824, '__ci_last_regenerate|i:1675171824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d009b950cfe5463ce8ab3633297dd1aba5647b8', '172.105.247.100', 1675171824, '__ci_last_regenerate|i:1675171824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9988b4afa8ed94c00bc27ac3614c7146997b1fcc', '172.105.247.100', 1675171824, '__ci_last_regenerate|i:1675171824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d596ae5c7e9c5bd13f58eb26d69bf443d47d83', '172.105.247.100', 1675171825, '__ci_last_regenerate|i:1675171825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425f182317b98af4947ad77cde35f2906914925f', '172.105.247.100', 1675171825, '__ci_last_regenerate|i:1675171825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50098ac64cb038fac54283080bc9f8ed5e01704', '31.222.203.2', 1675171991, '__ci_last_regenerate|i:1675171991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e412ceeacdc1240ee0376de3f929dd24ba183e02', '31.222.203.2', 1675171991, '__ci_last_regenerate|i:1675171991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005186ffbd76f451fbdfeb3482266696ddc0a432', '31.222.203.2', 1675171991, '__ci_last_regenerate|i:1675171991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0a651a2b602e088ad90a6f8d5c7f08b6d9acf3', '31.222.203.2', 1675171991, '__ci_last_regenerate|i:1675171991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f42f79cd6236065772249abd7cfe117c0d9e80', '31.222.203.2', 1675171991, '__ci_last_regenerate|i:1675171991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50444d1b392b03e522b50be4e3bf29bffc804d0d', '31.222.203.2', 1675171991, '__ci_last_regenerate|i:1675171991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e6af8328c569c2ecc960b5dc32db296c0ce1493', '31.222.203.2', 1675173901, '__ci_last_regenerate|i:1675173901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d64308d96c204f6effef305b2479bf06ba94603', '31.222.203.2', 1675173901, '__ci_last_regenerate|i:1675173901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7fbc65c0496cbfa8f39e6413c1966e5b6b645a', '31.222.203.2', 1675173901, '__ci_last_regenerate|i:1675173901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59de64d4ad40237d1d9b627b34eed8a993bd7f71', '31.222.203.2', 1675173903, '__ci_last_regenerate|i:1675173903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a96bef0a9c57a30d1d39d9d6bdbc1dd793492a7', '31.222.203.2', 1675173903, '__ci_last_regenerate|i:1675173903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41e51d68c1148eb27ee97118a30e5ef24eac5931', '31.222.203.2', 1675173903, '__ci_last_regenerate|i:1675173903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32ed67d8da608d1895b86543e274e6992e24088', '45.120.39.89', 1675176120, '__ci_last_regenerate|i:1675176120;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675176113;register_id|s:3:\"327\";cash_in_hand|s:9:\"3420.0000\";register_open_time|s:19:\"2023-01-30 20:26:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48307360ca64bdaabecb2849b1869e5f5d15740', '45.120.39.89', 1675176146, '__ci_last_regenerate|i:1675176120;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675088763\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675176146;register_id|s:3:\"328\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-01-31 20:42:21\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b9c0063f3e6c6eaf1554cf28e64ac94eb4166b', '172.105.247.100', 1675176620, '__ci_last_regenerate|i:1675176620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80497f30c154cedc4db9112b1d46195c3073f38e', '172.105.247.100', 1675176622, '__ci_last_regenerate|i:1675176622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a333ba664450797b5c3a729cd4716fe3f0a5c0a', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b5514f8767b62a58d75fab6b9fc5af0212936a', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab4d3b7eb126fd110adb9bee1004723aba53633', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5afdc28d95881414a82dcb405baaf9bd30ba7e2', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf20bb36cc0093fa51959ac300ce2ca6d8b1f63', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ff90e244f5c44b1248c4c1123b743d35157546', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('211bb853cc8e4bd152bbec93bea24e01617ef3bc', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb936bca82ccd21f7044f64911773ffa8af4b751', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45a0bb6f7c01a2974c00ec0edd4dfd5c2266be5', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9edb5fc96739d487a8e6b44733163b953e999dcc', '172.105.247.100', 1675176623, '__ci_last_regenerate|i:1675176623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eddc0b24ad7fa31cc2a33ab1960a15e2c9201a58', '172.105.247.100', 1675176624, '__ci_last_regenerate|i:1675176624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441ace9b7b56aa0317d0c71613062a3a6a353aee', '172.105.247.100', 1675176624, '__ci_last_regenerate|i:1675176624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935b52113598d1742c9d74240487a395edc04170', '172.105.247.100', 1675176624, '__ci_last_regenerate|i:1675176624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b6ca4351be8070a09ab1c4806f6867453721b5', '172.105.247.100', 1675176624, '__ci_last_regenerate|i:1675176624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0429e6f0e589432f7c54b2b9340cee1cff6fb532', '172.105.247.100', 1675176624, '__ci_last_regenerate|i:1675176624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2723fa6a1ae4feede85d645b774a5131f9065c4a', '172.105.247.100', 1675176624, '__ci_last_regenerate|i:1675176624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672230fa6113e2e914e2f70271a048c6d4c3d26b', '172.105.247.100', 1675176625, '__ci_last_regenerate|i:1675176624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0133a2a66672e87a35469904197ceb39b2660b', '172.105.247.100', 1675176625, '__ci_last_regenerate|i:1675176624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d0fb04f91d7e8d5a6a534654547f627ebc59b88', '172.105.247.100', 1675176625, '__ci_last_regenerate|i:1675176625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b21e135c9fac3e8525f900855ad6aa4f110bad9', '172.105.247.100', 1675176625, '__ci_last_regenerate|i:1675176625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4fe56255601cd83f01820842b08ab8d98cc6875', '172.105.247.100', 1675176625, '__ci_last_regenerate|i:1675176625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eae571c3b3491f7716b1bec059f98de49c666a9', '172.105.247.100', 1675176625, '__ci_last_regenerate|i:1675176625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('715a05b40e513833862af8cc9799cd2d453f7934', '172.105.247.100', 1675181418, '__ci_last_regenerate|i:1675181418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756281fa28bb5ecbdc6b7d6322b2d836bf1085ed', '172.105.247.100', 1675181420, '__ci_last_regenerate|i:1675181420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8104c3b2ce1fdb567698ece7ed5b5ab130ef1f4', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ed95526e592265be670d230d8453d6b5a2d3e3', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38684034230bf188ce53911d4d9bbab05dea6b55', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db37681abc589eab6036cc7d1801d488eb9f34f1', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('256c5dca457199b9a99dfb4f9b996b3719c51648', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6249acd7436ba7eb7f789d3d56c095581d81fa', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b38c63e0277e34b4d16ae83bcd228f2f927ded0', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62eac4e49e423bc0b133bf8a889fccc0e389aa73', '172.105.247.100', 1675181421, '__ci_last_regenerate|i:1675181421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3533c118b349479530c1d24cb9d41f8fac6950c', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c30f960e9c6560a62ad6b78a708051feafdc7d10', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7fa73f8bdd22c23f08ee9731c375d81463823d', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7fefdfa8b2cdc35db45fce9bb09357940970bd', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfb36461a37420eec798d313a7c84acbe537331', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4304283c4e69a9984f2398049cc794ca3224483', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d9e2bc9bcc809d82d9b1da5afcd16ab511eb03', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0d38f274c7b6b6de445c3dd78aa578afef431e', '172.105.247.100', 1675181422, '__ci_last_regenerate|i:1675181422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16dfb93f1a4a70b6acb2147cd80941c13d83c7a0', '172.105.247.100', 1675181423, '__ci_last_regenerate|i:1675181423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4e90f043aee4043effd2cbcb131d7e4d191ea5', '172.105.247.100', 1675181423, '__ci_last_regenerate|i:1675181423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885c71c3396f2638c01d9092675e2b0fa2ce14cd', '172.105.247.100', 1675181423, '__ci_last_regenerate|i:1675181423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9681d5ab424f2903f780b873b38b72fb0001a2', '172.105.247.100', 1675181423, '__ci_last_regenerate|i:1675181423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17ffd6c7e667f16112a2cc8c909bebad5be2879', '172.105.247.100', 1675181423, '__ci_last_regenerate|i:1675181423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2093654ab5500e3ca60aa66ecf0eac67ff0cf41', '172.105.247.100', 1675181423, '__ci_last_regenerate|i:1675181423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce1b3c2fec572599408ddb2ed3fc22c2749d13e', '31.222.203.2', 1675184607, '__ci_last_regenerate|i:1675184607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08fcc04e2ef8e74741f6a8c894c5ed1b1a2986a', '31.222.203.2', 1675184607, '__ci_last_regenerate|i:1675184607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129e891db43d48ea9129b21653500ca379c573aa', '31.222.203.2', 1675184607, '__ci_last_regenerate|i:1675184607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a4d54323dbdd462fb91c1f1ac9544ae5294405d', '31.222.203.2', 1675184609, '__ci_last_regenerate|i:1675184609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55637d58f07bab03e0326733388f12e8749fa705', '31.222.203.2', 1675184609, '__ci_last_regenerate|i:1675184609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496ab16aefdba5aeb0e54b3fa242304675cd3fbd', '31.222.203.2', 1675184609, '__ci_last_regenerate|i:1675184609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0d87c4287a42cb16a4d5a41cbb8744804f7a9d', '31.222.203.2', 1675186456, '__ci_last_regenerate|i:1675186456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a36922fddbfb569ee30625142445edcc568456', '31.222.203.2', 1675186456, '__ci_last_regenerate|i:1675186456;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0202fe86df013491dd3900e5f64ccc7867eaa1', '31.222.203.2', 1675186456, '__ci_last_regenerate|i:1675186456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc9a2e673e56d098d8811f522ec0846ccfac1e4', '31.222.203.2', 1675186458, '__ci_last_regenerate|i:1675186458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3565f457e98020377d5b137d78e3c1784f9376', '31.222.203.2', 1675186458, '__ci_last_regenerate|i:1675186458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99f15a126e17d349c6132c0750ddf53c29f514a', '31.222.203.2', 1675186458, '__ci_last_regenerate|i:1675186458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5aed0b1507f7ea6fb41449f8b8942d5545a0d2f', '172.105.247.100', 1675186819, '__ci_last_regenerate|i:1675186819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ddad2aa14e21c77909ef4f195b24f7f414d7577', '172.105.247.100', 1675186819, '__ci_last_regenerate|i:1675186819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7178e326b8c62244563246ddaaec091da802ce2c', '172.105.247.100', 1675186819, '__ci_last_regenerate|i:1675186819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62a70daeac4b13cca21e58a1c1d44401f8a0d7f', '172.105.247.100', 1675186820, '__ci_last_regenerate|i:1675186819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc6a32e2d61cdc499cf782f2b8f6c424fa0e41d3', '172.105.247.100', 1675186820, '__ci_last_regenerate|i:1675186820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06114ddd4b48dbe410d0655c101f333b577f9a9c', '172.105.247.100', 1675186820, '__ci_last_regenerate|i:1675186820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d233f65524d89be996def32c1738945ab2c701', '172.105.247.100', 1675186820, '__ci_last_regenerate|i:1675186820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3593a964ab9b6c955e452242176fb57b43391d1a', '172.105.247.100', 1675186820, '__ci_last_regenerate|i:1675186820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3c22bc5cde78057f98b7a337926a85c889ab70', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83127ebf8329c6abefae297342485f124339dea', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbffd1d1f5faf06b4c8193e0918727d29c1dd4db', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b06b4242fe1c0d092c6863c9d00429038f72d87', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aff923ec5e419a283950d63245f6ade384f88b', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f6743fdf58e3b0653b62ee36327dfe48a70ab2', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb56fdd4277c2ed11b415bae46a36dcedb5fbd75', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a70d80b6cc080020feea88f003eca3a8bc3327', '172.105.247.100', 1675186821, '__ci_last_regenerate|i:1675186821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9813b418c01b35b3aba4bec6c095aaa692015d9', '172.105.247.100', 1675186822, '__ci_last_regenerate|i:1675186821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0abc3689eae2fda9aa8eeb6b9a940c129000653b', '172.105.247.100', 1675186822, '__ci_last_regenerate|i:1675186822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2be448caae2d53d7aa1463a3b3e889a28b3164', '172.105.247.100', 1675186822, '__ci_last_regenerate|i:1675186822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91f762e017164ded84a4de849743e92cd9aec91', '172.105.247.100', 1675186822, '__ci_last_regenerate|i:1675186822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d272565deb090e8383a6c48ecfe37503d6720b89', '172.105.247.100', 1675186822, '__ci_last_regenerate|i:1675186822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85689f695a76b02063def17e176ad1d5422b9ab7', '172.105.247.100', 1675186823, '__ci_last_regenerate|i:1675186823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69de4136cb4bfdd0fbeab0c195769e0750289ed8', '172.105.247.100', 1675186823, '__ci_last_regenerate|i:1675186823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cdd1ee4bd4ce7c70f2fd7d761874ad5f755809e', '172.105.247.100', 1675186823, '__ci_last_regenerate|i:1675186823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e77fd449481892b6b008a6b0c5ff66c892d4bd', '172.105.247.100', 1675191021, '__ci_last_regenerate|i:1675191021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883f595973f125aa01e2f671c81f3049261048b1', '172.105.247.100', 1675191022, '__ci_last_regenerate|i:1675191021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3e11602ce679a56266c52451771768ece5acd6', '172.105.247.100', 1675191022, '__ci_last_regenerate|i:1675191022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ca38580f2804ab804990e51fc3c2274c4c4661', '172.105.247.100', 1675191022, '__ci_last_regenerate|i:1675191022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540833e2c940c5baf6041a2658890334bb599394', '172.105.247.100', 1675191022, '__ci_last_regenerate|i:1675191022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb866806aaecfa3ed24522e75115c0bc1a9b0bf3', '172.105.247.100', 1675191022, '__ci_last_regenerate|i:1675191022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492e2603f89c546a68a7ab9ca4103c59994c7832', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f197ef0acc759ff5a8dc353659f4e56da5ea8b9e', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c343d883b00361830e85f0f4f13fdf0f92b317ef', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185fcffbbfef1771bc419c00f8a969e1cce91a3c', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e232ab17bf3e1739dcf28cb957f971d131df7959', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('051cdb86786556181d2ffe0c5b4e51c6a1aa5bc6', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8fe6e35ab486f36b15c19c6eb568d67fcf0508', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c13a61e709329418a957349df2b9f17802e189', '172.105.247.100', 1675191023, '__ci_last_regenerate|i:1675191023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc1b93ed5c5f66d8588eef8b7af7a383c22c2fa', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf46808d74aab9b5256b2f213846b19a9ae3772', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4242aeadd2f75403059f367ebfcd469c1513f33b', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13528bc35d808fbabe3ac24db2a514a11d084ed9', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24c24cc440938ff84753e6f455cfb2db7eadefa', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa968fbab8a4e28d5fd20c34f11e59f7b095a51', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2c9cabe2b2a99faed6cf954870eb032a35344b', '172.105.247.100', 1675191024, '__ci_last_regenerate|i:1675191024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d431c8bc12bfdeb69f027bc001a6c88c1236fd', '172.105.247.100', 1675191025, '__ci_last_regenerate|i:1675191025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012b19497795ff5c7ecffef4045c8e91000182ac', '172.105.247.100', 1675191025, '__ci_last_regenerate|i:1675191025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b842909a68aff1d1769cb4d2459cff011ed83b', '172.105.247.100', 1675191025, '__ci_last_regenerate|i:1675191025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b837a1b853c0f93a2028a8ac7b2e991bc35e74', '205.210.31.40', 1675195954, '__ci_last_regenerate|i:1675195954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca006b275488f28e18df3310358fc652185777a', '172.105.247.100', 1675196422, '__ci_last_regenerate|i:1675196422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95796b58a48f8f6c8387bdc887d414984e6f0c5f', '172.105.247.100', 1675196422, '__ci_last_regenerate|i:1675196422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3143bfbc4c27bd1aab3b12c25129cb0efeb604e2', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef187881042ca5f0338c3151e692db50e3256bb', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7806ec9c65918355bf6c38fd40e3cd22d50ed3', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca73c24c6b14d9d3833669340fc828a26c69599', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f9002b6c6d9e97149223bebaa2f5c54f25a6b0', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784ef39f4d001fdfc10eaf1d12a5cdf225f6b5fe', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2cafeba8274c51460cf2f02d3bbedb7d7436756', '172.105.247.100', 1675196423, '__ci_last_regenerate|i:1675196423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264dc31df50f95caa0c3c9ad9b67d87e07aa6a55', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3bf2d217c1519241dda3e7fa9fe12868e56e5d', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb8bed9038f01cf1b79e4a54754810d80332699', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d070a6e441306c77884cdf11943a26d85dd51b94', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6cbb2a71deabe21cea621ef3e7d1bb2805b2702', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b731690d8aaf9197296105b95a1d217eba66ee7f', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a283031a9b3ffccb503f5aab4dfc7e87256279a9', '172.105.247.100', 1675196424, '__ci_last_regenerate|i:1675196424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e40a7247bd6e5d61ffb53453815d882d63cf016', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5726c0e1dbe074841710955bb080b6da1e1acd7', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ea84800aea6ad0e07e3794255ee060c8081ffa', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac856633ffd2baab982a842d7d88757be69a335', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26235e5c8ed91dea987b7cda8d1c7659ed607c5b', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1332ecf5238a67872da05ca8a1282738da584999', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67cacb0fc2e2af71e7b446b16fa07198892cc5f3', '172.105.247.100', 1675196425, '__ci_last_regenerate|i:1675196425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56c4d5a41c27f035c227c984b8194f0647ae9ec', '172.105.247.100', 1675196426, '__ci_last_regenerate|i:1675196425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e94416113acae30c01f677d88554e3a29c91090', '31.222.203.2', 1675197204, '__ci_last_regenerate|i:1675197204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67124579eb5658b918712717e0d436e927c6aee', '31.222.203.2', 1675197204, '__ci_last_regenerate|i:1675197204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909708538f7d1b250cb2e0efe6436f890f3c01a2', '31.222.203.2', 1675197204, '__ci_last_regenerate|i:1675197204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6555356c6c28da77452d1f9db2d29066a7088f3', '31.222.203.2', 1675197206, '__ci_last_regenerate|i:1675197206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e0129d57295118c688657dc1d264b6a61001845', '31.222.203.2', 1675197206, '__ci_last_regenerate|i:1675197206;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7fd93e4cf174b607ff2e218700d29fa08624c0b', '31.222.203.2', 1675197206, '__ci_last_regenerate|i:1675197206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03604e258c131dfbec92b8eaf977b7cff523074a', '31.222.203.2', 1675199070, '__ci_last_regenerate|i:1675199070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7181b32b8269324713a54cc255069bf07beb85b0', '31.222.203.2', 1675199070, '__ci_last_regenerate|i:1675199070;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b293533122b966fbe25edaa2557d3a5f5e57d3', '31.222.203.2', 1675199070, '__ci_last_regenerate|i:1675199070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb4f1c54bb8e8b20d56afda57ffda14cd91142a', '31.222.203.2', 1675199070, '__ci_last_regenerate|i:1675199070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e3dac86eceb569a813b0bc39fc0716d2b7ba18', '31.222.203.2', 1675199070, '__ci_last_regenerate|i:1675199070;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538567c8f948d3fe17913f42f1d3c23e40111037', '31.222.203.2', 1675199070, '__ci_last_regenerate|i:1675199070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51fe2188e85c66184f35f8953b4b3052b6f7e21', '172.105.247.100', 1675201820, '__ci_last_regenerate|i:1675201820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d775edae9161f9388d02de63d9e5dc02bcac137', '172.105.247.100', 1675201821, '__ci_last_regenerate|i:1675201821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b1c00bde12f1a9f0463647a577200d2b648045', '172.105.247.100', 1675201821, '__ci_last_regenerate|i:1675201821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a6356aeaf150e2d7a2a0419e8d4ad2c6f6a996', '172.105.247.100', 1675201821, '__ci_last_regenerate|i:1675201821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d6234d77afeb93619ae915abbe4e01da8032039', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcbdde35521976ab80e7158b198c730b14794a0d', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4b1dad7d9587be9ba5616e9d81f089356139584', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827f650beb47e4af44bc6f739c86a28a69cf5167', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2e11b2444540537bb4ca5c80a5d5527a97cd08', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a432c322b43ddee809a582a14723df48e108cced', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c35458dd8cd0f56998557c4687cf06e66222d92', '172.105.247.100', 1675201822, '__ci_last_regenerate|i:1675201822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d05670911c0c0d288de655d10c47860fa7543e39', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4847e8105cf9cc798b9fd2428c214b1b3682779', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a5a2e65e285ef84f4257f7b322f6ed9a906194', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2df2ea153537af898c87c6e98cfd82a909a93ec', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0274681863f9f9d27e1a9b9d3257ae816a98830', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f609414cb06d32898e45ae75c215fb9d11946adf', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce43fe2408d03a3be426c04c3c75b35bef0960a', '172.105.247.100', 1675201823, '__ci_last_regenerate|i:1675201823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f1c3c773ea257bbfd9fe29d566845a680c65561', '172.105.247.100', 1675201824, '__ci_last_regenerate|i:1675201823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661e8b3c6f5cd9a5a7ca9eefdb2c7f0445242d78', '172.105.247.100', 1675201824, '__ci_last_regenerate|i:1675201824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729f5922a29c2f90c9120973f6378a699c71185c', '172.105.247.100', 1675201824, '__ci_last_regenerate|i:1675201824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69d3a2de919a26f73d3d0f3bb0d48ba596a4e99', '172.105.247.100', 1675201824, '__ci_last_regenerate|i:1675201824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697ba9833044f4d222dbcea41aa1286846793312', '172.105.247.100', 1675201824, '__ci_last_regenerate|i:1675201824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62150aad57d5a078e0ca57829277115547cb980d', '172.105.247.100', 1675201825, '__ci_last_regenerate|i:1675201825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8986bc7f943fa0270039be4a87480002b5198195', '172.105.247.100', 1675207218, '__ci_last_regenerate|i:1675207218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b654ca95f42ba919bfa553530581dd108eb7023e', '172.105.247.100', 1675207219, '__ci_last_regenerate|i:1675207219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7625c1c2ae374b9bec1b533c87b51b0d7244fb92', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f07f83d80fcdfedc8b69ad0ee89f7661c913373', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939c918fac029538b6942d29ec8fdc3a03f16b02', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d8f9a9659c84dc86bbf59948a8ff87a8efe5e0', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a7f6833dc2fb6f3c1b3cad251eb4bd3de424c49', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51616934e94139a4dda820314d3203a26c124fb6', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d92db28547b5a7260eb9cdef1aa4915d5d99187', '172.105.247.100', 1675207221, '__ci_last_regenerate|i:1675207221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e992a64661bb5a48fea2f78b3c16b396387127e5', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a3d107da5be361e41bcb531bd07c2207152819', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e45aa318e6ce63af8854afc8383e463babc88a7', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1398f7c5acee042df5e5784f3235a0dab8ff2567', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f988cb49e07e316987efcd9fa8bddf3f6eccc086', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3bd406bb52a0c8d2534d656432c94bb7b548cf', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37dae5fb5cdee3967efd20277c784e22d570846', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1043e6ba06b8e0825cda735984402d7c8b7f8a1', '172.105.247.100', 1675207222, '__ci_last_regenerate|i:1675207222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5995e6c634fdd44d22d8cb047850e5189e259d1', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a598ccf0d27d123931ec1260072f5b144b8c56', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7de452c6f6a834a0e691e231c956afacf457909', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec05a7a139804d8e2d49fb054d77a2186f09b966', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9bcd15bcfd5107a4737e289bd57a7c6481eca0c', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('301fe0bd67e02827a045c01ac5d0a824505a9dd6', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb9856f4bc9928be09d056260941891481fa439d', '172.105.247.100', 1675207223, '__ci_last_regenerate|i:1675207223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858dfe4ceb8aa81144209c783edf0663e167319f', '31.222.203.2', 1675207990, '__ci_last_regenerate|i:1675207990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc2c342e1857eb22df2c2babc1dbc07a8eb7e9a', '31.222.203.2', 1675207991, '__ci_last_regenerate|i:1675207991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a037dac3bda7935dbf2ccac43909bff89f664cce', '31.222.203.2', 1675207991, '__ci_last_regenerate|i:1675207991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f874a35d3d59057233ef3b62e2bf27930c71f5de', '31.222.203.2', 1675207991, '__ci_last_regenerate|i:1675207991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8607674266628b0eb5574661008a437da114b9', '31.222.203.2', 1675207991, '__ci_last_regenerate|i:1675207991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a03e12db7140ed2c5ed6fcff1c6f6a4f5c6827', '31.222.203.2', 1675207991, '__ci_last_regenerate|i:1675207991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b61fee073133335f1da0337a6be70398585c14a', '31.222.203.2', 1675209902, '__ci_last_regenerate|i:1675209902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbac12954cca920a8aba5b5a32ef0852149444fc', '31.222.203.2', 1675209902, '__ci_last_regenerate|i:1675209902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c079a6862de6deab1a768ed82d02122ae8b0f0a1', '31.222.203.2', 1675209902, '__ci_last_regenerate|i:1675209902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9efbf0e61689bdb82c0a9edb028ab379223623a', '31.222.203.2', 1675209902, '__ci_last_regenerate|i:1675209902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd65a69b32322dc6ec8192c6b13c7e8fd9b24e43', '31.222.203.2', 1675209902, '__ci_last_regenerate|i:1675209902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e2f839e1267acde3e3e48de63d0553abd9bcc0', '31.222.203.2', 1675209902, '__ci_last_regenerate|i:1675209902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7df2fea820df2a221edc9248914598fd0b3c4d1', '172.105.247.100', 1675212618, '__ci_last_regenerate|i:1675212618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d7780d8f64dc739711966d63743162f68adfaf', '172.105.247.100', 1675212619, '__ci_last_regenerate|i:1675212618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1598949a1c1018c0b975efcd3f51d117c37e3cbf', '172.105.247.100', 1675212619, '__ci_last_regenerate|i:1675212619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f4a6b358661c8ce1951d0b13ec1b58ad98e7b6', '172.105.247.100', 1675212619, '__ci_last_regenerate|i:1675212619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75110d8471d249c66e7afcd6de38827fc6c644e', '172.105.247.100', 1675212619, '__ci_last_regenerate|i:1675212619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7baab6fcd4d3d97fa21869981be77ebc2b46b93', '172.105.247.100', 1675212619, '__ci_last_regenerate|i:1675212619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b07d28f851cf50b663025763c5ff707aa1201890', '172.105.247.100', 1675212620, '__ci_last_regenerate|i:1675212620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55008b68c211fb4640721624b9133657f85cc848', '172.105.247.100', 1675212620, '__ci_last_regenerate|i:1675212620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56b64e0beaf380680da3c6904eb175d0cc19347', '172.105.247.100', 1675212620, '__ci_last_regenerate|i:1675212620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d5d1e4f0ce2de6d95532fb1ba3aac6c73ed1b3', '172.105.247.100', 1675212620, '__ci_last_regenerate|i:1675212620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc6c8510e12754bff26248bf11e27e9155b5baf', '172.105.247.100', 1675212620, '__ci_last_regenerate|i:1675212620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de4518a9dc9e19e8b25e287591930778f624a9b', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a6be9ade34e21686c33dd9ec5fd896e566081c6', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dac057e4dcadb5cc4591b7447edae8dc3d65fa1', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('272361ab143c95e465db81590a91da1a9a15e3b7', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4fe4b3409aa48839ebcb888153446a31781cad', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f179201393e777c695400589c5c2797298e9df', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce917d1eeb57ff34762e7c6ce48ea20774c818ef', '172.105.247.100', 1675212621, '__ci_last_regenerate|i:1675212621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee801fc05c954628afae0c1cadd3b61e8e3d43e', '172.105.247.100', 1675212622, '__ci_last_regenerate|i:1675212622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be67ec59f5b89d58d28de5e966d1974d6c9f1d6', '172.105.247.100', 1675212622, '__ci_last_regenerate|i:1675212622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65bc299603f125958e61bc769fe45b34df335fe4', '172.105.247.100', 1675212622, '__ci_last_regenerate|i:1675212622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c933027b057444f3f7adc449c69c892ddad74825', '172.105.247.100', 1675212622, '__ci_last_regenerate|i:1675212622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82c7273b907eda6888bd9db9d0498f972f9bbea', '172.105.247.100', 1675212623, '__ci_last_regenerate|i:1675212623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc15c4c4cae424ed59fd7b5686a81c9223eacee', '172.105.247.100', 1675212623, '__ci_last_regenerate|i:1675212623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d840ccd83f1ab300c84abbea3ea6e6ee07b18b', '172.105.247.100', 1675218017, '__ci_last_regenerate|i:1675218017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888c52d9f7584da635edbee8940900241706a98d', '172.105.247.100', 1675218017, '__ci_last_regenerate|i:1675218017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bafffc06029877b37d0d78f3981e73eb6663f762', '172.105.247.100', 1675218017, '__ci_last_regenerate|i:1675218017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb64725cd315a876256955b657b2070e48330c2b', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6ab9edfb528e28719b87183f62d5d6d8bef6c0', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0714508f31476cbb1302f74ba4ab917407e9dfbe', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458001623f3b5d16a313d2c91528fb7a3b5dd320', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7e7aab6ca44cf54f94f27184f836169beb4a77', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4422bdaca92bed30d0ec6a1e3671872b11405847', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7b8db4230238d860c604222ca1c5dfb8601955', '172.105.247.100', 1675218018, '__ci_last_regenerate|i:1675218018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adf2b6f6a82a7a82ccfa04c5df60a8b59908b0b', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12fedf27912f3e12d8737ff2f4ae7b762d4eb5be', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408f76d507bd796ba381e19088890878c475430e', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b39950955e16b757d93257786e58f3ef6b94c99', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087f56f9594021f7de7794ccf5c1c09da5fc06b5', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec30bbe6ef2a237bb1b21ef4ae4ee2cccc0b0c9d', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b2dbd8632ba38876f16974953e21eb247f2609', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fb835c3eb3418fd6e1960e832be19b282f20ef', '172.105.247.100', 1675218019, '__ci_last_regenerate|i:1675218019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e207bb5901c87acf2abe96436b7a84822ddf77', '172.105.247.100', 1675218020, '__ci_last_regenerate|i:1675218020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a3408e924d44b89fffd10e3e05896bad0821c3', '172.105.247.100', 1675218020, '__ci_last_regenerate|i:1675218020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9cd571abf582c0adf3815c02bc0a2d9cd61afc', '172.105.247.100', 1675218020, '__ci_last_regenerate|i:1675218020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba215b1daedc0386553168957ff27934d149cffa', '172.105.247.100', 1675218020, '__ci_last_regenerate|i:1675218020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1510c27db9adebf15cc14a97acd33e54dd6bbc51', '172.105.247.100', 1675218020, '__ci_last_regenerate|i:1675218020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e854579caa777967df8c20d387c2c5efd1bdba74', '172.105.247.100', 1675218021, '__ci_last_regenerate|i:1675218020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a715e99fe4587b6cb04ec955e19483955b1280c', '31.222.203.2', 1675218810, '__ci_last_regenerate|i:1675218810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809f58119105cf0e61336dd0db1ea83c764efe76', '31.222.203.2', 1675218810, '__ci_last_regenerate|i:1675218810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9416838306c03e45e2bac36ae330ae541821ef', '31.222.203.2', 1675218810, '__ci_last_regenerate|i:1675218810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba20aa719e92b4d4dc40cded2fe91cefb6d3645', '31.222.203.2', 1675218810, '__ci_last_regenerate|i:1675218810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f7a9ec4a3bdab666f3e17ba5236ffd2aab26e3', '31.222.203.2', 1675218810, '__ci_last_regenerate|i:1675218810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbba71514ec4d3649c76fa03d3e6c7b9b9dd94d3', '31.222.203.2', 1675218810, '__ci_last_regenerate|i:1675218810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4697f11a390c6f98fc4b66b758e8011413f314cd', '31.222.203.2', 1675220660, '__ci_last_regenerate|i:1675220660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd01a9a9d72d8613c4a0e931d9bedc2d56beda8e', '31.222.203.2', 1675220660, '__ci_last_regenerate|i:1675220660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be24593f4cef7ec86958045319646cb8d1c91519', '31.222.203.2', 1675220660, '__ci_last_regenerate|i:1675220660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc5b832a12680588db61a1146ba4fc7bde5bbd1', '31.222.203.2', 1675220661, '__ci_last_regenerate|i:1675220661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e8f2239681fc8e515571f64dfcf87286d30a1ca', '31.222.203.2', 1675220661, '__ci_last_regenerate|i:1675220661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5f2818ddcf3b956dff3d77e0f2263890106452c', '31.222.203.2', 1675220661, '__ci_last_regenerate|i:1675220661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dc79a24a1bf815a99b5210950ea9d5ca131955', '31.222.203.2', 1675222502, '__ci_last_regenerate|i:1675222502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e12d14b2cb1893e6c20f8921af5b42b31864bd5', '31.222.203.2', 1675222502, '__ci_last_regenerate|i:1675222502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b50d376bbc1447b0e2e4ea5e34be3ed416fe47', '31.222.203.2', 1675222502, '__ci_last_regenerate|i:1675222502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfbb47796078acd5797cad402ed228e47e8b22c', '31.222.203.2', 1675222502, '__ci_last_regenerate|i:1675222502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb2056a5d7215f3ccf77c5d4ecccaa7dd939014', '31.222.203.2', 1675222502, '__ci_last_regenerate|i:1675222502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9039f4a990855844529b8fb7f7ca7fffa705e2ec', '31.222.203.2', 1675222502, '__ci_last_regenerate|i:1675222502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a7ca3126ec02d4c2e4466f46f5a9a474e3f441e', '172.105.247.100', 1675223421, '__ci_last_regenerate|i:1675223421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d699d1956e32a9192fb08edcc178459cd347cd9f', '172.105.247.100', 1675223423, '__ci_last_regenerate|i:1675223423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9ceeb52c324aebdfb83c4b635795ed4eb3edc5', '172.105.247.100', 1675223423, '__ci_last_regenerate|i:1675223423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71bff8f3fa15ae17d628cf7ee054b9187b3a5b6e', '172.105.247.100', 1675223423, '__ci_last_regenerate|i:1675223423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87349132e9cf31f0bb3b9ca83da455b28fcc02e3', '172.105.247.100', 1675223423, '__ci_last_regenerate|i:1675223423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99c455c29327803c2203b84bfdb67729ec8acd3', '172.105.247.100', 1675223424, '__ci_last_regenerate|i:1675223424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c39bc35ba0d1c24dd05e424910279230daf7eb', '172.105.247.100', 1675223424, '__ci_last_regenerate|i:1675223424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309bffd3d8919c88981f8ab5c99d7dff45420851', '172.105.247.100', 1675223424, '__ci_last_regenerate|i:1675223424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0170ea8bb37e8e1d1c021ea703f2eba26e93ac9c', '172.105.247.100', 1675223424, '__ci_last_regenerate|i:1675223424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddbfdae4ff472f66dac39e4884e748069d35d44c', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3fdbad2d8bac4c9333f64ebc4b29275736c02d9', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c18db3b2392b4b13f2adbec16c0a719b49f6bee5', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d36ca888408c0e0e12faf859c22cb723a47227', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e5d1380f1efc0196af5592f5133c9561dc4a03', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bb674c998c5b629f7bfa4bb905aa7d2902e3c6', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5984b0e8500d358d3ceb9838d685d29cdb34a4aa', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40bc71521eeec8fd28c08318d5d4fe80524b4377', '172.105.247.100', 1675223425, '__ci_last_regenerate|i:1675223425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e62d40424e115a04145eff2199195de61370ebe', '172.105.247.100', 1675223426, '__ci_last_regenerate|i:1675223426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06142e7e120b7736fda19db7b37b75ac33c27532', '172.105.247.100', 1675223426, '__ci_last_regenerate|i:1675223426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d84d84ab18e65dd24d004bf2b2e848ca457416', '172.105.247.100', 1675223426, '__ci_last_regenerate|i:1675223426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a140cdb049d0fa4de3b973ea4cd842f2ba3d00', '172.105.247.100', 1675223427, '__ci_last_regenerate|i:1675223427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8124697058395d3ce125e29a838dbe15c49b5fc', '172.105.247.100', 1675223427, '__ci_last_regenerate|i:1675223427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5fa5b4a2ea29e2d57d010d542a56b7f22a59bc0', '172.105.247.100', 1675223427, '__ci_last_regenerate|i:1675223427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5173e13d9938c2bfe2c891c228dfd6fbbe8993c9', '172.105.247.100', 1675223427, '__ci_last_regenerate|i:1675223427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543316181131eda02a8e122dfd3548245dbe1fa8', '172.105.247.100', 1675228818, '__ci_last_regenerate|i:1675228818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc59ec7b8b9aaef52645b1f58ca228499e258fd', '172.105.247.100', 1675228818, '__ci_last_regenerate|i:1675228818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cfa4f86bf66f4d04fc8f231a3ddaf3015e3430', '172.105.247.100', 1675228818, '__ci_last_regenerate|i:1675228818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39cb49dae7e979cac091424ddda58a622b68c28', '172.105.247.100', 1675228819, '__ci_last_regenerate|i:1675228819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c0e38ab2b0d088408be452824352c136755390', '172.105.247.100', 1675228819, '__ci_last_regenerate|i:1675228819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('030b6146d26c372c8eab62767a53bc80e2f102cc', '172.105.247.100', 1675228819, '__ci_last_regenerate|i:1675228819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8c8b3b368a49d8863e2b7b733fbd5927274a69', '172.105.247.100', 1675228819, '__ci_last_regenerate|i:1675228819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c0b35461b78111790b12657f94e2de7bf946df9', '172.105.247.100', 1675228819, '__ci_last_regenerate|i:1675228819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5718a5d22f1a731a6597ccf05297b63db7037e0', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a70bc9ff1d10c23d6fc9319c4ce01e90a685cf5', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7fe27372855c49ad79acf06d434a7e9cfc93b3', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24b6aa9dcf720bcb08603ee092c118017d3eb2c', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c99716b9fd88f9c7391cf7c797bd4485eb4a3c', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa6a348a040cefc82d76ad41790b126c62382b1', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b320b799b08dfc411ac625611e879452ccb79d1', '172.105.247.100', 1675228820, '__ci_last_regenerate|i:1675228820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7941a7b4d643ba0c59b5274e8d52d06e61d0845c', '172.105.247.100', 1675228821, '__ci_last_regenerate|i:1675228820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e31c127cb5e08729eae8aca96e118da4fc44b1', '172.105.247.100', 1675228821, '__ci_last_regenerate|i:1675228821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404cf2a2054a916864caf9c72e209ffd0623f2f1', '172.105.247.100', 1675228821, '__ci_last_regenerate|i:1675228821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c441a31f386a2008e5f296c2d576605fedf04cf4', '172.105.247.100', 1675228821, '__ci_last_regenerate|i:1675228821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799d3946ce74385f3c8954bacc067343d72517b2', '172.105.247.100', 1675228821, '__ci_last_regenerate|i:1675228821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1ab85357697c217fef4eaee21f11b00b061f84', '172.105.247.100', 1675228821, '__ci_last_regenerate|i:1675228821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba45277a1d77fa6e248086a6a144afa99e4c9d5a', '172.105.247.100', 1675228822, '__ci_last_regenerate|i:1675228822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c0304f4526958a03170f3929c1550b498136f0', '172.105.247.100', 1675228822, '__ci_last_regenerate|i:1675228822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5b781c928220847f327651bb35c77c727914ef', '172.105.247.100', 1675228822, '__ci_last_regenerate|i:1675228822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4dff8c75fc5dffb17a514f118b4ef6eac9e445f', '31.222.203.2', 1675231401, '__ci_last_regenerate|i:1675231401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ccc936d57553e6e20136dc38c912fbe1b0ba62', '31.222.203.2', 1675231403, '__ci_last_regenerate|i:1675231403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc25a237e38cd7578d3ead75c7fe01ea549e2530', '31.222.203.2', 1675231403, '__ci_last_regenerate|i:1675231403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341d7b0ac467df1447d143e1737f1d806ff7f062', '31.222.203.2', 1675231403, '__ci_last_regenerate|i:1675231403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8dd04f36177f154aa38debd25e1bc1110599ebb', '31.222.203.2', 1675231403, '__ci_last_regenerate|i:1675231403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fc037133644b5df6d56447741510710dc59fccc', '31.222.203.2', 1675231403, '__ci_last_regenerate|i:1675231403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('136b797a0836896df0920c3008e6a2213759dcf2', '31.222.203.2', 1675233302, '__ci_last_regenerate|i:1675233302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283a65d4ad2000d998413a161afe0d66a07ad74e', '31.222.203.2', 1675233302, '__ci_last_regenerate|i:1675233302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24a602a271f35573c43e31db33bdb0a87bfec90', '31.222.203.2', 1675233302, '__ci_last_regenerate|i:1675233302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d304d9e4193a611ac89013862ff1e2b8a0ec3720', '31.222.203.2', 1675233302, '__ci_last_regenerate|i:1675233302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a20df06b1189926b87ea661ed44e2eab7b5a925', '31.222.203.2', 1675233302, '__ci_last_regenerate|i:1675233302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('740a4931253ab1d4600eceed1e65067ae9e98e07', '31.222.203.2', 1675233302, '__ci_last_regenerate|i:1675233302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fc70a69c0d1dd5393fe9ac40248855230661f0', '172.105.247.100', 1675234219, '__ci_last_regenerate|i:1675234219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918d8ba2bd7432232f131aefd1e9473c5af82af0', '172.105.247.100', 1675234219, '__ci_last_regenerate|i:1675234219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67755e75df23c00612bbca1b66bc056fc1a069e1', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e29aa8e5424b4c48c8eafd796037744a69ecead', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a49d1def2084cc6a088859cb0a0c4b79b827e9', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8fc466f3732959a3a65d303720485afcd02dcc4', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d76ac93590215536e27cfa66d7216806adc113b', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570c6a72f0344cbcc36033a074d8f8e781789693', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191912bcce959afb8627043bd0a73a98b30c9055', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b72b6b748e0ecd5e98b493c6ad54a26a0f4e1fb', '172.105.247.100', 1675234220, '__ci_last_regenerate|i:1675234220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf3dded8b6b428d9ba363af3325bb2298a6278c', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c93171ac902d0238818deddf4d4a94c4fffc45', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ff7597ad389a279152750cd514a3152fec0881', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f609c0e69383aae9b7b03649dc292447e515074', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac5636730daa97df38957f6c26e3337af07a8c5', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3199f71a32b1f02577b199b3869e19927dfdd6', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e6588088a2b1329ec0aab8002018ea38439d1d', '172.105.247.100', 1675234221, '__ci_last_regenerate|i:1675234221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4dae1d6bf7d69e1cb175f1aa199fc22e046eef', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a6de2137cf6ced86ea9b44fd9859e733e7220e', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6702d0cda295ee541fcdbce4e7608a184cec5ed0', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99d88689284b1075384c31da96df3ad78d54b22', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc6255fc92117d7a3e98c1ee0d2023874c8244dc', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d429cf4686890e154538fd822e537fdd73d7c13', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2e894aacd8513f77525ce7df234a9aaba179931', '172.105.247.100', 1675234222, '__ci_last_regenerate|i:1675234222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9b5fbd3c02df82e1b90531700efd8f4ff71fcc', '172.105.247.100', 1675239621, '__ci_last_regenerate|i:1675239621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5469a7243454bf86fe76373a07dc8ef396c6c5ff', '172.105.247.100', 1675239622, '__ci_last_regenerate|i:1675239622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5493cae393f081c293d3f4790e487b49d10d152d', '172.105.247.100', 1675239622, '__ci_last_regenerate|i:1675239622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('effe5a7edf5ffdf05fb8ac67b1db3b9649a30b7f', '172.105.247.100', 1675239623, '__ci_last_regenerate|i:1675239622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc70e10c1fe69a456fd2b7607c1efd09e38bee5', '172.105.247.100', 1675239623, '__ci_last_regenerate|i:1675239623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25a04186fce3038ae48097b8e3749069ee51507', '172.105.247.100', 1675239623, '__ci_last_regenerate|i:1675239623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc2c77525f37dae2f475eda3ad6cf3e254bdf21', '172.105.247.100', 1675239623, '__ci_last_regenerate|i:1675239623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595310462a2ce116d75d14919d7e07df01f1fa84', '172.105.247.100', 1675239624, '__ci_last_regenerate|i:1675239624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0bbeee5c8ff4f4d01d08636799619affbc246b2', '172.105.247.100', 1675239624, '__ci_last_regenerate|i:1675239624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4130c83134d346ae89e5ff6b031b52882469d284', '172.105.247.100', 1675239624, '__ci_last_regenerate|i:1675239624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('414a164448bbea157fa6823cc03b9524d9d05341', '172.105.247.100', 1675239624, '__ci_last_regenerate|i:1675239624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91215163234d0daf65189a1446ad9a70ab1a7ea7', '172.105.247.100', 1675239624, '__ci_last_regenerate|i:1675239624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03ef1095ff3a96014a9e6e23360959c2613d087', '172.105.247.100', 1675239624, '__ci_last_regenerate|i:1675239624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b008559185c7bd7e2f459c83fa7d5b339c34b6b8', '172.105.247.100', 1675239625, '__ci_last_regenerate|i:1675239625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f134224cf81b85343f5f1fac093135110ba638bf', '172.105.247.100', 1675239625, '__ci_last_regenerate|i:1675239625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b611eead0afad552dd5634c0e6c39c682ecb8ae', '172.105.247.100', 1675239625, '__ci_last_regenerate|i:1675239625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eed3f7c44754902a4a43bdb96452345faf79e00', '172.105.247.100', 1675239625, '__ci_last_regenerate|i:1675239625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070f97f2d795d96bae1aee83c1d9427eb4e01133', '172.105.247.100', 1675239625, '__ci_last_regenerate|i:1675239625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('128cb1eab135e2f2f5a0cbb15a2a31bff8123f08', '172.105.247.100', 1675239626, '__ci_last_regenerate|i:1675239625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('676fb5baa2aea94917844f2a138182953d3225cb', '172.105.247.100', 1675239626, '__ci_last_regenerate|i:1675239626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eeaed417c44f3f8969817f4bcd68a8192e58a5d', '172.105.247.100', 1675239626, '__ci_last_regenerate|i:1675239626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281717815540ac69ed2bcc0c1787deadadc91fb5', '172.105.247.100', 1675239626, '__ci_last_regenerate|i:1675239626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d2658a55f27cd0e79a3c1b884689d2e4254e9d', '172.105.247.100', 1675239627, '__ci_last_regenerate|i:1675239627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ef2cf7646034b04e24a64db1f889460f8e533f', '172.105.247.100', 1675239627, '__ci_last_regenerate|i:1675239627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bce7bd8def369cc9b074bf97df182d521150b5c', '79.124.49.10', 1675240857, '__ci_last_regenerate|i:1675240857;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c23ad85e3a4fc1d71ee195064f6cd4ec97fbfa9', '79.124.49.10', 1675240857, '__ci_last_regenerate|i:1675240857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77957c56f92e502bcd5262690f40ad0b175728a9', '79.124.49.10', 1675240858, '__ci_last_regenerate|i:1675240858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8f67ba9932cbb9143bf0d5b95526d92b8a1cb3', '79.124.49.10', 1675240858, '__ci_last_regenerate|i:1675240858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('198e9470601ec0c4d4e2e8bcf4a2edfe6cd41a25', '31.222.203.2', 1675242183, '__ci_last_regenerate|i:1675242183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f9569491ab3368332dbb92d0ad1fc382e60c19e', '31.222.203.2', 1675242186, '__ci_last_regenerate|i:1675242186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f00bf1c0d81fe0f18d02c226032c53ffe25604a', '31.222.203.2', 1675242186, '__ci_last_regenerate|i:1675242186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8aa83cac1bda7fe0e5eb1a01ecdc1ba020c9b87', '31.222.203.2', 1675242186, '__ci_last_regenerate|i:1675242186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dee942d1b720ebf81c3888343be58da4063149f', '31.222.203.2', 1675242186, '__ci_last_regenerate|i:1675242186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf158cf46a1fd25fd766b90f5de017b13c62018', '31.222.203.2', 1675242186, '__ci_last_regenerate|i:1675242186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2f15131c1d8d32cbb0559d2fde3a38901b7b78', '31.222.203.2', 1675244065, '__ci_last_regenerate|i:1675244065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370e60a40427ce40ca8b8398f7e6513842ebc89d', '31.222.203.2', 1675244065, '__ci_last_regenerate|i:1675244065;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a946e4b451f1ef4c35ea8c5ebb3d128352b53a8', '31.222.203.2', 1675244065, '__ci_last_regenerate|i:1675244065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c0fa1126e07b5180c912bc1acfb290ca3e1913', '31.222.203.2', 1675244065, '__ci_last_regenerate|i:1675244065;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a8be7ad7859b23cb66db941d5b5840f42616e7', '31.222.203.2', 1675244065, '__ci_last_regenerate|i:1675244065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebb13f384c79eb763ddeaf3faa9d8a1f6445f80', '31.222.203.2', 1675244065, '__ci_last_regenerate|i:1675244065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b917f9c7ac42de14e88bf2980c6ea7c46133ce', '172.105.247.100', 1675245022, '__ci_last_regenerate|i:1675245022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802b7abf7867176653aae0cff3d6aa7c422d3c4b', '172.105.247.100', 1675245022, '__ci_last_regenerate|i:1675245022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4289b1cab2e686d77331e735729c34af76f465', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a6a699a845e1354d34aa52b98201888606effe', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22136fbe9ac77c9a252cdfd274f2719c8bbc3a88', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050b9f1c0d9fa43dc810d8fd908107ca4bdd3956', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457d5369aa2c374600c64607106a0232c70a43df', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2804bcb6a59c8dcf868f3e7e817d7a3e5099bea1', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4834719a297b0e989f3cfcfc4aefa4268a82b192', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ea429033b10478228c04879c28d85f9efc8dea', '172.105.247.100', 1675245023, '__ci_last_regenerate|i:1675245023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5248b02336b76536889b268fe9644565c293c71', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8def88bd9a4f10aed240e4cf06488c8884e3f27d', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda5721ed006fe9936bc2a55da04354ef9f2bdff', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39c62f0c1f9ded48eb1255857458c10454f6b93', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332b752ca7c399a61effe3b55143f99e3dbdf7cd', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45bb95e39f0c8b29b676ce02ef923f36f8506855', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a9fe0750568c0924f65b574277843bf21a3ec3', '172.105.247.100', 1675245024, '__ci_last_regenerate|i:1675245024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315744cbdba532add0b87e5135e7400901ffe4b6', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955a3679d7f20e974377dd8c91f20a8f967faed2', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2658607f862caaedf2e85674b9b1e60a12b6ede', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df6c365907d514cee40e0ec0974eeb1ed215a38', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19453f53e4a012c1b1028addf70a02231ed64f01', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd586c24608bcdead7fcdcdaebf0cf479085f122', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22e8975bbc549e1a0a6796a0552db6e9cc4f1a3', '172.105.247.100', 1675245025, '__ci_last_regenerate|i:1675245025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d97939333d8f430d0561deb1dcd9b23395a954', '45.120.39.89', 1675246161, '__ci_last_regenerate|i:1675245971;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675141681\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675246160;register_id|s:3:\"328\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-01-31 20:42:21\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7556f581244e3d9f328f0c0b497faebb28371e', '172.105.247.100', 1675249823, '__ci_last_regenerate|i:1675249823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ba64a05e4a4d2ffab6ec9e1f2101f4b7c1d85e', '172.105.247.100', 1675249823, '__ci_last_regenerate|i:1675249823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e761d5b80512da640f24640e32ee581abc1461', '172.105.247.100', 1675249823, '__ci_last_regenerate|i:1675249823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a25ccf83687ef9c4b823d900b745c74a44feaa', '172.105.247.100', 1675249823, '__ci_last_regenerate|i:1675249823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c9d92b1679613e6c53e5dd19ea1df67fa366b2b', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8892e69cef83b3c9b671d724e8a39a5a85a349e3', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de11e70c84d3e3934cf605bce13c1becac4378d7', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04150cd80a137a69a6d71ce4b60259cda172f335', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f11606140a6a4c57f0a6a971d87e5d09309b2292', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1277fb01e25a93ff2a34f36dc99b095b296a81d', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c097ff1ca77813960ae9de423d2bdeb4e8d223', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7adff5665fe6eb086c4d410f49cd20b36e6756f', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c632b9cd22af92478e3871fc6f7c5da75465a79b', '172.105.247.100', 1675249824, '__ci_last_regenerate|i:1675249824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212ce27d242d005ccb2a6712644ce5dc6ee07488', '172.105.247.100', 1675249825, '__ci_last_regenerate|i:1675249825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b454b7a8d75aeaa8ce03dd90bd5b0dcbbabd2e1', '172.105.247.100', 1675249825, '__ci_last_regenerate|i:1675249825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f506bf50a5fda0f1d8440c69a69567a56b936d7', '172.105.247.100', 1675249825, '__ci_last_regenerate|i:1675249825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0503d2dc17b24af365b828cfb8cfb66b216139', '172.105.247.100', 1675249825, '__ci_last_regenerate|i:1675249825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f38b22c52a281f88a16ac80d2ff12146d72314', '172.105.247.100', 1675249825, '__ci_last_regenerate|i:1675249825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0601f854ec8a280acf7224cc5af8123711b0f34', '172.105.247.100', 1675249825, '__ci_last_regenerate|i:1675249825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45271c9d643087a881d3694ad7a0dba1e9a30151', '172.105.247.100', 1675249826, '__ci_last_regenerate|i:1675249826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ef3f35edfd981ce6ae7a4aced69793364fd513', '172.105.247.100', 1675249826, '__ci_last_regenerate|i:1675249826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1a43bf7f88fe6253c581a024e905bf211d6a3f', '172.105.247.100', 1675249826, '__ci_last_regenerate|i:1675249826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb55390398c04565fe2a31d9749afb05c9fe609', '172.105.247.100', 1675249826, '__ci_last_regenerate|i:1675249826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1c622b2d7be1546f3e7a0f3de78e28b74ef322', '172.105.247.100', 1675249826, '__ci_last_regenerate|i:1675249826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebccbdfc4ab2fcd6f6831c921b6fd3f3e484c30f', '31.222.203.2', 1675252991, '__ci_last_regenerate|i:1675252991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5d411752e372d039fc96514dd56130e273648f', '31.222.203.2', 1675252991, '__ci_last_regenerate|i:1675252991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accce1499b3ebb37bed6d9222ff8e66994f0613e', '31.222.203.2', 1675252991, '__ci_last_regenerate|i:1675252991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef112edae920a0d024a91ec6f4a492caa85268a7', '31.222.203.2', 1675252992, '__ci_last_regenerate|i:1675252992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83354c092c458923f656fd8e84692554cb4d98b', '31.222.203.2', 1675252992, '__ci_last_regenerate|i:1675252992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ef5ce21bf97c1470e1c428b96ccf6e4538467a', '31.222.203.2', 1675252992, '__ci_last_regenerate|i:1675252992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c62149a120fabbb0bb00e0c4a74995d0679c86', '198.235.24.181', 1675253680, '__ci_last_regenerate|i:1675253680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02097d0d4fa22565579582ba17c88902193fb05d', '172.105.247.100', 1675254023, '__ci_last_regenerate|i:1675254023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dce686e7330a0653ae8299eddf14d525bd62408', '172.105.247.100', 1675254023, '__ci_last_regenerate|i:1675254023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9995f4e0e8ded359d82bdaf5a928f37b4b42415b', '172.105.247.100', 1675254023, '__ci_last_regenerate|i:1675254023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d14a9b645f9bab84c95e29ecd517bd580ae96085', '172.105.247.100', 1675254023, '__ci_last_regenerate|i:1675254023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00542c187f58baadbe17d178150695c2618d271b', '172.105.247.100', 1675254023, '__ci_last_regenerate|i:1675254023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221f4da6d0f6a7b1255cc0b5bb68fcaee5fb16dd', '172.105.247.100', 1675254024, '__ci_last_regenerate|i:1675254024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014b9d06de5e17199bba7891ae5f6ef503b197bb', '172.105.247.100', 1675254024, '__ci_last_regenerate|i:1675254024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44298476f5ed27f3d80376b23cb3fafdcd212975', '172.105.247.100', 1675254024, '__ci_last_regenerate|i:1675254024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9661d772eab4c901eea4530a3aa5c892792c4f', '172.105.247.100', 1675254024, '__ci_last_regenerate|i:1675254024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363615a53f5e0b0fe158aa9fd9843ebb4e60e374', '172.105.247.100', 1675254024, '__ci_last_regenerate|i:1675254024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0403503c34db9f176db5c9b72d61ad83defd99', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ebf23164cafce755bb5d93a5971dd675ade791', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74c0c1b3366a476b005a6b8a42bad39f444d0412', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c7e7b9c647f1508ae0f423c37f9e178956716e', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e869119b75ccaa1340e81eba671d91e1494db1', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b109016f1ea32d1f2e05b7255f9bd86c043df78', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2486e799bdb7151e8df855ecdbe618a26251f44d', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2b56f31d106db8cf9d2117441e4bb471f177c9', '172.105.247.100', 1675254025, '__ci_last_regenerate|i:1675254025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ab854dcc097e672aa84488b0e3acc6271e31d8', '172.105.247.100', 1675254026, '__ci_last_regenerate|i:1675254026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2548188bda52fb0fee886da5ab3daca336a50fd', '172.105.247.100', 1675254026, '__ci_last_regenerate|i:1675254026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31af0492cc815843a462dfccb92a8ac8bd017f0a', '172.105.247.100', 1675254026, '__ci_last_regenerate|i:1675254026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9076341dcd55256e02ef87742fd34cb58e6cba', '172.105.247.100', 1675254026, '__ci_last_regenerate|i:1675254026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb106f72d68dcfaec3ac463790f1b695aff7159', '172.105.247.100', 1675254027, '__ci_last_regenerate|i:1675254027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8928d58f80f358dd0f40b296df0c569ea84e4cf3', '172.105.247.100', 1675254027, '__ci_last_regenerate|i:1675254027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8fd12f889119faca24bb35cab6365628ed81e7c', '205.210.31.13', 1675254750, '__ci_last_regenerate|i:1675254750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033c487eb4259929f827ced739abf55ae48a01d1', '31.222.203.2', 1675254853, '__ci_last_regenerate|i:1675254853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c0c571c22aeb57676a4a2aa73a7f25061fbd71', '31.222.203.2', 1675254853, '__ci_last_regenerate|i:1675254853;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b2f4f7cbb78e7f6e699170dfb1133076a5d1fd', '31.222.203.2', 1675254853, '__ci_last_regenerate|i:1675254853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee8633a8749dba99c27fda1dfb99821617cab596', '31.222.203.2', 1675254855, '__ci_last_regenerate|i:1675254855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65962f28ad8fb542ee5e10429566df0d4045c4c', '31.222.203.2', 1675254855, '__ci_last_regenerate|i:1675254855;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035b41e1d70b208c1d4a3122d2af384574c972dd', '31.222.203.2', 1675254855, '__ci_last_regenerate|i:1675254855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d07b3e68efd36b6893025a9c234c5767b9e3172', '31.222.203.2', 1675256703, '__ci_last_regenerate|i:1675256703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffbad0ab4163c3003bdc25d6fc7fb659983157dc', '31.222.203.2', 1675256703, '__ci_last_regenerate|i:1675256703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6742c64fb553943ca6711159538909b277cbce3b', '31.222.203.2', 1675256703, '__ci_last_regenerate|i:1675256703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf19bdfe7fde260b4c5f9c6abf08fa6e46b410b', '31.222.203.2', 1675256703, '__ci_last_regenerate|i:1675256703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c31394a36d4942a4b422a94e47300cbd11479f', '31.222.203.2', 1675256703, '__ci_last_regenerate|i:1675256703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae450ca936d09da638beb7813c28451f58202f6', '31.222.203.2', 1675256703, '__ci_last_regenerate|i:1675256703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219f16d55d0444cd6e2c85da636f81fa2ecd6c74', '45.120.39.89', 1675259655, 'requested_page|s:24:\"admin/pos/close_register\";__ci_last_regenerate|i:1675259616;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675245976\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675259654;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09991f4854374047c16107ca53314ea4809087ac', '172.105.247.100', 1675259423, '__ci_last_regenerate|i:1675259423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e79c5a0dd62184219ec5b911494a12dd6ef77c', '172.105.247.100', 1675259423, '__ci_last_regenerate|i:1675259423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04e69dac54112f280cbf590a9c6476b9f5427b5', '172.105.247.100', 1675259423, '__ci_last_regenerate|i:1675259423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('712dfe6d249de235bb70ca65cbc83dc2ad92202f', '172.105.247.100', 1675259424, '__ci_last_regenerate|i:1675259423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe66d5d8de2fb3c02a6110293372dc88d52b96ae', '172.105.247.100', 1675259424, '__ci_last_regenerate|i:1675259424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b310e6670d015057f2b2665fda0c265c1c3cc883', '172.105.247.100', 1675259424, '__ci_last_regenerate|i:1675259424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4b8eeefc635ae372fe1096c92962a8fb94dbafd', '172.105.247.100', 1675259424, '__ci_last_regenerate|i:1675259424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1972342fbcc42b78f1e9e14e4eb1e7d2680e618', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d70619a6c09ee303c1414a73436b3136b01810', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231a1967e71cd25570724a4b4513539e9239cc51', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f023c29a3674c29392f65c553309a88dd7bd2154', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6bc8e04f5396ddf9687d66d93aa6587876524ec', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52bd0764c58c5b491736fabf7c3f2b760e943a65', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b53f82f8fd1851442bd37bf9be220fc73e6f69e', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e54535e623603dd876a97a9447be68f9f99767', '172.105.247.100', 1675259425, '__ci_last_regenerate|i:1675259425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f464fb2685b1b6ebeba71a4c8a40963ace2818', '172.105.247.100', 1675259426, '__ci_last_regenerate|i:1675259426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff84d121fc9626156d7b95052fcc338882f82795', '172.105.247.100', 1675259426, '__ci_last_regenerate|i:1675259426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe1a9ed51eeba1a88cb9bf13e4f80ba3cd0ef91', '172.105.247.100', 1675259426, '__ci_last_regenerate|i:1675259426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515e5a345f95f2fef2a78fd01e1edbe47c8156ba', '172.105.247.100', 1675259426, '__ci_last_regenerate|i:1675259426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d15b035360f71021c182eaaaaf01e43de62a95c', '172.105.247.100', 1675259426, '__ci_last_regenerate|i:1675259426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd7b07c78a43e55bb35a2fce8a1e07ef6c8102c5', '172.105.247.100', 1675259427, '__ci_last_regenerate|i:1675259427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10af49544f87960fb57ad41c094be4e79d474552', '172.105.247.100', 1675259427, '__ci_last_regenerate|i:1675259427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e997427866d9d6a438879711ed3e333b0b310e91', '172.105.247.100', 1675259427, '__ci_last_regenerate|i:1675259427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53921aa813c614588756b15b48b2873750f0867c', '172.105.247.100', 1675259428, '__ci_last_regenerate|i:1675259427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5789c074fa88db5c3e5e89c55b261b04d194cc5', '79.124.49.10', 1675265303, '__ci_last_regenerate|i:1675265303;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52bbd7c5938740db80c1a98bcb23ff404043334c', '79.124.49.10', 1675265303, '__ci_last_regenerate|i:1675265303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783cc83b4c58a586ffc4fe19cedaed079b58beff', '79.124.49.10', 1675265304, '__ci_last_regenerate|i:1675265304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f57f3b9bb32fb0f8308af12b0b3182e38ff91e', '79.124.49.10', 1675265304, '__ci_last_regenerate|i:1675265304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a195306a28d9eacfe6ec83aad7ed51a9a9e6f02', '172.105.247.100', 1675265422, '__ci_last_regenerate|i:1675265422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd0d4a08e5312ee9ea0b134ee85c45fd0b40c4f', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a1abbf7d298ab0918c220a141a8246f7489a8e', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840c09fc89ab26bee0254c77299b256b70a5b51a', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61cf41de22f09e03976b92e91c7ea8b19e61bcb', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a483df5db4c2a51a1f954a2e8877c95ca62f2bfa', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194bac07f15c80410d61f872c23dd9334619f97c', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c80359a37862e7788e1c97cfab081cfac867d1', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa07cc8705ac7a96095cd1cdfc3ae9c196d896e', '172.105.247.100', 1675265423, '__ci_last_regenerate|i:1675265423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9356e26cf9e15e6d1eeba577cabaf170ad51a595', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda8e5dbf67b2d7637d0981c848b3284024fd699', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79bdf6c527a340962cd681fe0a83bc7031a51a1d', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22c2c688c7af50ff67d4847c5552842d76016445', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33287d587b37a90573b3106abd65935375f7d065', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d44ee0bd78b33c88ce4b33c4ccca51389e7d909', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc011a14ea530dc3931586b87409dfdbe03e48fd', '172.105.247.100', 1675265424, '__ci_last_regenerate|i:1675265424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d93f2330a4d27bc1d7362013748dcafb97cefb2', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d303c76b27f83c7238b258c856c9636792330e4', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e3681efea31332cb77620088a41c279f57688a7', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f9145218fcdc9ea0ae238598dbef7e0983d020', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657fd4cfa6c0fc0c5116cb0b3ada61821f68a3c5', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e3d67a86205923f5c9372c838371a83d7d2e02', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f17e3bb8726dd27da8675efacd0f8177a173fa90', '172.105.247.100', 1675265425, '__ci_last_regenerate|i:1675265425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad086ed6bf7d800bdd8ad4962cbe4fe5380860b', '172.105.247.100', 1675265426, '__ci_last_regenerate|i:1675265426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fedb2b4a617622b87bbdfdf208ff1d26e5cd83', '31.222.203.2', 1675265601, '__ci_last_regenerate|i:1675265601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1480b0c1ba797ea8db8323eee7c44d403249868e', '31.222.203.2', 1675265603, '__ci_last_regenerate|i:1675265603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccdab3065e6529f142c9633eeeed2be295850c7a', '31.222.203.2', 1675265603, '__ci_last_regenerate|i:1675265603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0f930e0b7a6c164165e1b6bb74342898675361', '31.222.203.2', 1675265603, '__ci_last_regenerate|i:1675265603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352f5ecd548a5b087d501c9a830da90f38fc5351', '31.222.203.2', 1675265603, '__ci_last_regenerate|i:1675265603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8512e3e1b7d6741f635ef88a02b88cc7a7d48ab', '31.222.203.2', 1675265603, '__ci_last_regenerate|i:1675265603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49997090283b3704d56d653729e88a91640952d4', '31.222.203.2', 1675267463, '__ci_last_regenerate|i:1675267463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6a87b99ecaa48847adf5eb634bccc01c38b2d0', '31.222.203.2', 1675267463, '__ci_last_regenerate|i:1675267463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad0731ef9675512cc9b33940f6340c90a8219ab7', '31.222.203.2', 1675267463, '__ci_last_regenerate|i:1675267463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('676c6f474a15523dc9336cdefa32ed8c99bf35ba', '31.222.203.2', 1675267463, '__ci_last_regenerate|i:1675267463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40cfa7d2ee6368e4583928898ab05eb8cd4e1dda', '31.222.203.2', 1675267463, '__ci_last_regenerate|i:1675267463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb63e78e3e0ac96e6ec71058db9c67cce60aaa5e', '31.222.203.2', 1675267463, '__ci_last_regenerate|i:1675267463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef02c85732c6728a00a06172d542c3cd4b5746f9', '172.105.247.100', 1675270220, '__ci_last_regenerate|i:1675270220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e960f235f0ada78c5af9c62774d8a0c9a0eb216', '172.105.247.100', 1675270221, '__ci_last_regenerate|i:1675270221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39d2f7b207e8dd349df4a9c08763beb4ab1b2e7', '172.105.247.100', 1675270221, '__ci_last_regenerate|i:1675270221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2074fd83eb690290a0ceff76ffc222bf4c72fbdc', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6141e873c5ca5b598dc2d1ce17dfee95534906', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d8a07478f9e2899c6fc4add41f0cc2e6ad5374', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0975c47e02243705574aa1fb9cc145bfbfedebc7', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f902d5497583f68759e555cf38451cc0259f5c', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75379ca13295aa2eff11874c46e85ec8ef16776', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a4eee9a2586b55e1ee8537e0605d46c87c0b37', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32d92f283519866889d59c848f90350144c6db2', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7a983230ef508084e982516c63976d2d91eaf3', '172.105.247.100', 1675270222, '__ci_last_regenerate|i:1675270222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976f413841fe0f6f26e36a16484467b7acc5fcd3', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c6e35aafb8869ef5114593e846d111c74c5ba0', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865490a0651ce931e5659b43addbf53c3335bbf0', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325d385bfccf63a937c0fb420cc8b5737e9fd096', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8445e50537d6e10090f6475d6486e17f45ad68a2', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4e1f22aafa730d5b7d2474ec583718c5593f1c', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0119fb3d177edae98bb7717d2c427bb9a62228a', '172.105.247.100', 1675270223, '__ci_last_regenerate|i:1675270223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e80e38fc97a298621e23be74cf9235f561e0e95', '172.105.247.100', 1675270224, '__ci_last_regenerate|i:1675270223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d64b344dab1708a7a6845a5522aac0db63c5e8', '172.105.247.100', 1675270224, '__ci_last_regenerate|i:1675270224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c766e36476ce881859a71d59c9c493f606632c07', '172.105.247.100', 1675270224, '__ci_last_regenerate|i:1675270224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a3317e09a3782f65d66dcc0c682cc064ddbbc0', '172.105.247.100', 1675270224, '__ci_last_regenerate|i:1675270224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492c86c90029c14ce6c633f1e02eeee145b710e3', '172.105.247.100', 1675270224, '__ci_last_regenerate|i:1675270224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53de2c2c03d155c16142a9e3d366f573aa6cc84f', '172.105.247.100', 1675275620, '__ci_last_regenerate|i:1675275620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982829ce8fad8f404380c97ee1a077deeee96815', '172.105.247.100', 1675275620, '__ci_last_regenerate|i:1675275620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148f7f97c2f75e929026bf832758798e537af28b', '172.105.247.100', 1675275621, '__ci_last_regenerate|i:1675275621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('222e2e5d0bc0586a3255a8086c9e0ccf1d7c44d1', '172.105.247.100', 1675275621, '__ci_last_regenerate|i:1675275621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46eb9135159e6770115e5b8eb0ebce6ca116f36', '172.105.247.100', 1675275621, '__ci_last_regenerate|i:1675275621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0546d452783574492a1d15a9e6a86eb3b765cfd9', '172.105.247.100', 1675275621, '__ci_last_regenerate|i:1675275621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4846a37c2e7b81604e71a293d962add418fe93b', '172.105.247.100', 1675275622, '__ci_last_regenerate|i:1675275622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05c55c6acefad60ca26b459a723223e3981a016', '172.105.247.100', 1675275622, '__ci_last_regenerate|i:1675275622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe01ef85925aa64cea7aefd0079436282c6bdfb', '172.105.247.100', 1675275622, '__ci_last_regenerate|i:1675275622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f883580285c1938775fe872f367181803d10b04', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622b19ebe1e9fba7b9d5fa0edb436efcc94967f7', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8b3cd41d201de7289c3c649948db12beecf14e', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3251f3eb1e9f082f8bd9ba9244e4bcf26b37376e', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36911043acabf63554c79a2ab56641a89f256246', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd37195a1f963d87885c71c19c73882ef52baf2', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f7c5aa1f4191f8485cfbe133f94faf1754338d', '172.105.247.100', 1675275623, '__ci_last_regenerate|i:1675275623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a1cf7755cd0a7290433b47201086119def36109', '172.105.247.100', 1675275624, '__ci_last_regenerate|i:1675275624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c97614bba51596f7d3a15ef2bd9fc23cb03c5b', '172.105.247.100', 1675275624, '__ci_last_regenerate|i:1675275624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93cbfbfdff9ef886a1a86eb1611de3be7be8285', '172.105.247.100', 1675275624, '__ci_last_regenerate|i:1675275624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce6c9f2dac8384225edb0fcf498e44f9a898922', '172.105.247.100', 1675275625, '__ci_last_regenerate|i:1675275624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc6f21393fdcf05171e77752d054a010c423a706', '172.105.247.100', 1675275625, '__ci_last_regenerate|i:1675275625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8026d26eca68277e78ca36a5823677f701956970', '172.105.247.100', 1675275625, '__ci_last_regenerate|i:1675275625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04503a4fc7cd79c19426fea69b876742e48381d5', '172.105.247.100', 1675275625, '__ci_last_regenerate|i:1675275625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a2da1d027fba30f43f694197029ad17f175330', '172.105.247.100', 1675275626, '__ci_last_regenerate|i:1675275626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f404c6b671c23caf86d690d10eb856f9957d4ba2', '31.222.203.2', 1675276382, '__ci_last_regenerate|i:1675276382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3df21ea4336d2c5631b882d04ab28de31fab23', '31.222.203.2', 1675276382, '__ci_last_regenerate|i:1675276382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e633bd072c4a7a4fffb75f105a47e007fe82eed', '31.222.203.2', 1675276382, '__ci_last_regenerate|i:1675276382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79dd855e439c77a6efa348ee67ced938011bca29', '31.222.203.2', 1675276382, '__ci_last_regenerate|i:1675276382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c4645d82ceff139f67d5e6e47765b4987897c85', '31.222.203.2', 1675276382, '__ci_last_regenerate|i:1675276382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7120c36618706680d17d4c24ca15b8ff3c90ff5', '31.222.203.2', 1675276382, '__ci_last_regenerate|i:1675276382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64705edb2d80be2a23b8340ed07762483ead802d', '31.222.203.2', 1675278269, '__ci_last_regenerate|i:1675278269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070feb3d6359ae45db764daf0320cf0b7a553901', '31.222.203.2', 1675278269, '__ci_last_regenerate|i:1675278269;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8862fc1c49d44d9f4037c02e2e37e97af1ae3133', '31.222.203.2', 1675278269, '__ci_last_regenerate|i:1675278269;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4de0527a0e1980c9bae30e9c2464e4a3d1d4f7f', '31.222.203.2', 1675278270, '__ci_last_regenerate|i:1675278270;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d9560b0db1cb23114c48019d286dce82a9c051', '31.222.203.2', 1675278270, '__ci_last_regenerate|i:1675278270;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e98586ebfedb9653fb75e63b4560c1da397d9d3a', '31.222.203.2', 1675278270, '__ci_last_regenerate|i:1675278270;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea4d2c253f206edafe06fe13a5e042d1f1f465d', '31.222.203.2', 1675280112, '__ci_last_regenerate|i:1675280112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0c0ed95d60b414e89a2c6bdbec919afcb072c8', '31.222.203.2', 1675280112, '__ci_last_regenerate|i:1675280112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ab593bd042911e5dd3f3dee386fb6d04615942', '31.222.203.2', 1675280112, '__ci_last_regenerate|i:1675280112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a0f88cc67439d270c36933a6f73a6f0b0531aa', '31.222.203.2', 1675280112, '__ci_last_regenerate|i:1675280112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d83138c7ae6bcbfec706b739c8dc4bdd5d3f62', '31.222.203.2', 1675280112, '__ci_last_regenerate|i:1675280112;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d466be9082d5f5260be508b8db3e9b8624d5a7ef', '31.222.203.2', 1675280112, '__ci_last_regenerate|i:1675280112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbb9ff8066a2a9148708de43358fd5c5ab301ef', '172.105.247.100', 1675281019, '__ci_last_regenerate|i:1675281019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31a74fa3b51875181246c923d9e925ca37aa444', '172.105.247.100', 1675281020, '__ci_last_regenerate|i:1675281020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b95f13d957f7919e339cce19721cf65b7f51b7', '172.105.247.100', 1675281020, '__ci_last_regenerate|i:1675281020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8faa327c2543a8ee572613d86f1a4783e9612ee4', '172.105.247.100', 1675281020, '__ci_last_regenerate|i:1675281020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc696ba15cf855a3484b4484a664f2608486ce39', '172.105.247.100', 1675281020, '__ci_last_regenerate|i:1675281020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebe907039bf25352c29cccd1838edacae951bb9', '172.105.247.100', 1675281021, '__ci_last_regenerate|i:1675281020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a859ff3fa6ed09d7099461d38b4afaa839fd16', '172.105.247.100', 1675281021, '__ci_last_regenerate|i:1675281021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0204dfc93263042673a9572875dc48a1a96fd8bf', '172.105.247.100', 1675281021, '__ci_last_regenerate|i:1675281021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de116c0e625db364022a6862740cfe3eff60ebfb', '172.105.247.100', 1675281021, '__ci_last_regenerate|i:1675281021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59daabda831a2046ec73de3ecde8ee29c473505', '172.105.247.100', 1675281022, '__ci_last_regenerate|i:1675281022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e593cbf4a943a5956e5c06e84114b545a4bd03a3', '172.105.247.100', 1675281022, '__ci_last_regenerate|i:1675281022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc07bf6e7c72a2df379c474fe96a58325088a3a', '172.105.247.100', 1675281022, '__ci_last_regenerate|i:1675281022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5d3648bf9a7a7897d11984f41395b0f250a8f85', '172.105.247.100', 1675281023, '__ci_last_regenerate|i:1675281023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f47b52c66ba6efdaac231252a5dc3660b8a198', '172.105.247.100', 1675281023, '__ci_last_regenerate|i:1675281023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fdccae33317fa44e66eb2595557084e2dc8e1d9', '172.105.247.100', 1675281023, '__ci_last_regenerate|i:1675281023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5500ca29f1dea8b03981b008a9794048ed1545b7', '172.105.247.100', 1675281024, '__ci_last_regenerate|i:1675281023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d617fa39584839839db8f97c9a5eb2d3fc7d5f', '172.105.247.100', 1675281024, '__ci_last_regenerate|i:1675281024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d93188e78cd670950cf75d07a675a52656b071', '172.105.247.100', 1675281024, '__ci_last_regenerate|i:1675281024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd3ed8d499dedd2dd9eae03a6765399c938e7d4', '172.105.247.100', 1675281024, '__ci_last_regenerate|i:1675281024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1495581c3006f7812e438ed46bb59455eabcf6b', '172.105.247.100', 1675281025, '__ci_last_regenerate|i:1675281025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102367124feae6496929414c52531548670a53fc', '172.105.247.100', 1675281025, '__ci_last_regenerate|i:1675281025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cdc6bccc84f6061a5dcfea51edbdeea8b8b4ee', '172.105.247.100', 1675281025, '__ci_last_regenerate|i:1675281025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29d3e34e987dbdf67843f93595947122601632b', '172.105.247.100', 1675281025, '__ci_last_regenerate|i:1675281025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa59c9213cddd675c5d8b8a0c25d8c1eeb5007b9', '172.105.247.100', 1675281026, '__ci_last_regenerate|i:1675281026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a069dd49c01b3a5a7ed1fbd5043e10c1fa8e819', '34.76.96.55', 1675281226, '__ci_last_regenerate|i:1675281226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e361788b57186c44aca96f791093426bd8d42f35', '130.211.54.158', 1675281258, '__ci_last_regenerate|i:1675281258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637134c0e932af902c1f0de1c60b860887f5b6ee', '172.105.247.100', 1675286421, '__ci_last_regenerate|i:1675286421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6019d294910d4205e289e820a8fec25ff2c928d', '172.105.247.100', 1675286421, '__ci_last_regenerate|i:1675286421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a642c40d0316fbffb20556c2e80785169d39439e', '172.105.247.100', 1675286421, '__ci_last_regenerate|i:1675286421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863c5fb65f4e87b82dd8ab40ba2277ef602a320e', '172.105.247.100', 1675286422, '__ci_last_regenerate|i:1675286422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3bd5650a8d500ac3e0ffcde73ef9ff901731a2', '172.105.247.100', 1675286422, '__ci_last_regenerate|i:1675286422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a97bf680d34e84799d1e248f9cd53887d3f8bbe', '172.105.247.100', 1675286422, '__ci_last_regenerate|i:1675286422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa862993a163a8a90432f1d298d4e2592afe293', '172.105.247.100', 1675286422, '__ci_last_regenerate|i:1675286422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e32cde40d6890d8fe0abc61009bac8daf7417e', '172.105.247.100', 1675286423, '__ci_last_regenerate|i:1675286423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e485bc2d48cd93e366dc1aff00fab7cedeb35d0', '172.105.247.100', 1675286423, '__ci_last_regenerate|i:1675286423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ea3d061a166bc5d0017354cc62f9e32ee8477e', '172.105.247.100', 1675286423, '__ci_last_regenerate|i:1675286423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e100aab36b3e6d48d8e86713a30689d4246047a2', '172.105.247.100', 1675286423, '__ci_last_regenerate|i:1675286423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dac50417c4aae1964548f71cd95877536646453', '172.105.247.100', 1675286423, '__ci_last_regenerate|i:1675286423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8098bb32fd015871da60a69e6387e3ad0c2034a9', '172.105.247.100', 1675286423, '__ci_last_regenerate|i:1675286423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48125bd7bd3f9d294d21aba31a09c370f58c27a', '172.105.247.100', 1675286424, '__ci_last_regenerate|i:1675286423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3200527ac4e29add8db9b3d5e7f0d4302089343d', '172.105.247.100', 1675286424, '__ci_last_regenerate|i:1675286424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82bf871d88226d973b0e0bc4a8b72d4039f8a0c6', '172.105.247.100', 1675286424, '__ci_last_regenerate|i:1675286424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6cacba4795bb84e67172fd6a3a514a204db65f5', '172.105.247.100', 1675286424, '__ci_last_regenerate|i:1675286424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('837ab4664a230e74aaf596cab736dfdb275acddd', '172.105.247.100', 1675286424, '__ci_last_regenerate|i:1675286424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1a896254b6a780446c69db427b3ebc7ebe5770e', '172.105.247.100', 1675286424, '__ci_last_regenerate|i:1675286424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c2902808bf0035435215d6b6d8f2e287dd5b8d', '172.105.247.100', 1675286425, '__ci_last_regenerate|i:1675286425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a6149eec6796f82a8f3ca67c753cd2b9920e5f', '172.105.247.100', 1675286425, '__ci_last_regenerate|i:1675286425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c59dcadf59d6179f5989c0ba160574948917bdd', '172.105.247.100', 1675286425, '__ci_last_regenerate|i:1675286425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc6f28cf0126e43b7058b52da35a75b1fb8e4ab', '172.105.247.100', 1675286426, '__ci_last_regenerate|i:1675286426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8776819b288ba260fa02f7c8da79012b174c8d2', '172.105.247.100', 1675286426, '__ci_last_regenerate|i:1675286426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31944e58ffe8f53a1f4f8c7210903ff67fe3b188', '31.222.203.2', 1675289010, '__ci_last_regenerate|i:1675289010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd4595c5bde60a1cec9d9e0d667f0cfadef1d70', '31.222.203.2', 1675289010, '__ci_last_regenerate|i:1675289010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490cfe0bc88d988d9ea4df941cba704a0bddbc68', '31.222.203.2', 1675289010, '__ci_last_regenerate|i:1675289010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f4a4f4da3e06969d08b4b74e9f7734830c0ec4', '31.222.203.2', 1675289012, '__ci_last_regenerate|i:1675289012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3b188038e91078fc25d24356bf1695903574d6', '31.222.203.2', 1675289012, '__ci_last_regenerate|i:1675289012;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f10152a2478782294e5b75cb19ecfbb7289fa2', '31.222.203.2', 1675289012, '__ci_last_regenerate|i:1675289012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3418901c3b1fc79f63a745efe65d33f9650225e5', '31.222.203.2', 1675290857, '__ci_last_regenerate|i:1675290857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1573f223774f65374af597e45aa673397752f4d8', '31.222.203.2', 1675290859, '__ci_last_regenerate|i:1675290859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e147b65d2aff538923a93eb34498432e9cda1b6e', '31.222.203.2', 1675290859, '__ci_last_regenerate|i:1675290859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6a3e69047863daf6c679fbd3a6d684916b1c670', '31.222.203.2', 1675290859, '__ci_last_regenerate|i:1675290859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4c25853535bde1bb5d9acf5d90b32df8fb3bed9', '31.222.203.2', 1675290859, '__ci_last_regenerate|i:1675290859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8ea5571532fac95c45f44ae87e16f7f83d661b', '31.222.203.2', 1675290859, '__ci_last_regenerate|i:1675290859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79cd9d87bca82f916f44a76ea3aa448b50ea853c', '172.105.247.100', 1675291818, '__ci_last_regenerate|i:1675291818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('582335f890936b6297512ef192d5b7fb155cd070', '172.105.247.100', 1675291819, '__ci_last_regenerate|i:1675291819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d02ae73548c574b4d8d3549ddd773ab6338ccf', '172.105.247.100', 1675291819, '__ci_last_regenerate|i:1675291819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86b5decdfb766d91fd0e6efe32e74fa6472f75c', '172.105.247.100', 1675291819, '__ci_last_regenerate|i:1675291819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c7251cba65b873855668e4c10e98403a8a3e58', '172.105.247.100', 1675291820, '__ci_last_regenerate|i:1675291819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f20adc51d722e9d445da28348d46770d44e758e3', '172.105.247.100', 1675291820, '__ci_last_regenerate|i:1675291820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1907c8405a91e099cbfb59bca6e56655bb9a376e', '172.105.247.100', 1675291820, '__ci_last_regenerate|i:1675291820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d81b7f512643a4c669b5dccca160a9b7a8af1f', '172.105.247.100', 1675291820, '__ci_last_regenerate|i:1675291820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9610968facfb394151c510342c74db3184ed399', '172.105.247.100', 1675291821, '__ci_last_regenerate|i:1675291821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2685c854406582d55f805ae319b1446c99439bb', '172.105.247.100', 1675291821, '__ci_last_regenerate|i:1675291821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97dc5917d325bf8426b0454e1f729b25e17a296', '172.105.247.100', 1675291821, '__ci_last_regenerate|i:1675291821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f67f6cd925c1ef56e17d911b81eba71e87fdbeb', '172.105.247.100', 1675291822, '__ci_last_regenerate|i:1675291821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a73b4b7de81d6e53d183ff8888eda96ea8162a2', '172.105.247.100', 1675291821, '__ci_last_regenerate|i:1675291821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fd084b97a39e41a33834424d161ab97ab387c3', '172.105.247.100', 1675291822, '__ci_last_regenerate|i:1675291822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445d9ecaad6f903ae8c034b9ed6d1b34e244cb16', '172.105.247.100', 1675291822, '__ci_last_regenerate|i:1675291822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e88a1f311ba84ed83c90658f98903723284a5b', '172.105.247.100', 1675291822, '__ci_last_regenerate|i:1675291822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a3e04fe91c93578832d7ced6844f4339c994af', '172.105.247.100', 1675291822, '__ci_last_regenerate|i:1675291822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('269bbccbeb2cfe78e075f53754a4e0cf050a7e95', '172.105.247.100', 1675291822, '__ci_last_regenerate|i:1675291822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7988e77e1a97c4949a6abfc10f1781bbadd42cc', '172.105.247.100', 1675291823, '__ci_last_regenerate|i:1675291823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c787db1610c11e0f4f74d10ab11e6b9ea31bdac6', '172.105.247.100', 1675291823, '__ci_last_regenerate|i:1675291823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0010994df40b44e3f79e005db985a4d58c2637b8', '172.105.247.100', 1675291823, '__ci_last_regenerate|i:1675291823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097724f8bb4a6d5cc2f99c22af62f21b066fab22', '172.105.247.100', 1675291824, '__ci_last_regenerate|i:1675291823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3019893e9b29c06439c425ea39b68272fc631c74', '172.105.247.100', 1675291824, '__ci_last_regenerate|i:1675291824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32069ae11b1357f2b934adbfb555bff756274a0', '172.105.247.100', 1675291824, '__ci_last_regenerate|i:1675291824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27da6e417bdde7cf61accbface449f8e345a518e', '172.105.247.100', 1675296020, '__ci_last_regenerate|i:1675296020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154c2d49582af9126b66f459c25ae399a647995c', '172.105.247.100', 1675296021, '__ci_last_regenerate|i:1675296021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad84bb893f41fe35467ae307e971cd3b87c78ab', '172.105.247.100', 1675296021, '__ci_last_regenerate|i:1675296021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e06433ba2454f93668ad1cf31d5f524f5c6b31', '172.105.247.100', 1675296021, '__ci_last_regenerate|i:1675296021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38156504521a52b560c68064ee00a6e1a3572845', '172.105.247.100', 1675296022, '__ci_last_regenerate|i:1675296022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955831e705857fa998e5f55a51d7a709dc7edbe0', '172.105.247.100', 1675296022, '__ci_last_regenerate|i:1675296022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0f314d85dcdff34f3c4eba8ec60bdfa8766bfdb', '172.105.247.100', 1675296022, '__ci_last_regenerate|i:1675296022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2fa862349761804d978ee6938a38ad22dca1e4a', '172.105.247.100', 1675296022, '__ci_last_regenerate|i:1675296022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e43930ffc7c4702c104b30cab79257f1f6b5e2b', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124ad3af0e1f707d30fdaad11da9134000518b8c', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ceef33c8acfad5f267f1773c259b5b2d88144a', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7a28aadca016eec297fd799bec103e9cae4b0b', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160bf36f7ece95bf1a5dc61de9a31d4bc7b97557', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ebd05d6e3d020600cbbb5b96753f8b7cdd9ddf', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a443c7e7ac66b028f05dd57e58651932655fafa', '172.105.247.100', 1675296023, '__ci_last_regenerate|i:1675296023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51f4405ffbb421788e0e57d0a89dc7b344cbb2b', '172.105.247.100', 1675296024, '__ci_last_regenerate|i:1675296023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cd1e979c604dfc54519be1ada739e9bef09225', '172.105.247.100', 1675296024, '__ci_last_regenerate|i:1675296024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f4dae930cd76bafb3f5d2390602b43b87265520', '172.105.247.100', 1675296024, '__ci_last_regenerate|i:1675296024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd40cb2a838fe01938fa2c99be07dee6e79ff86', '172.105.247.100', 1675296024, '__ci_last_regenerate|i:1675296024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0557ba9fb0718d69d1e275a4500c12b77a82f3b', '172.105.247.100', 1675296024, '__ci_last_regenerate|i:1675296024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5c04b6ebb949a60d2b43419fe5d8cce1e56c6c', '172.105.247.100', 1675296025, '__ci_last_regenerate|i:1675296025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d37f2353c057ce3361cf1a6cd851d35c88e6ea', '172.105.247.100', 1675296025, '__ci_last_regenerate|i:1675296025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648aa81e787cb9a7c0e89262a53e3085f15aab69', '172.105.247.100', 1675296025, '__ci_last_regenerate|i:1675296025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beef2ae9084f81fe8b5c14dfe95898be2d56a2dd', '172.105.247.100', 1675296026, '__ci_last_regenerate|i:1675296025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c435412979de7c3b5d9962b17c49d135879f37d2', '31.222.203.2', 1675299789, '__ci_last_regenerate|i:1675299789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12a3ada2746502a1f598d2e43391ba6694c737d4', '31.222.203.2', 1675299789, '__ci_last_regenerate|i:1675299789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102e780d16fa2a1c0bd13c526b878514f08abc7c', '31.222.203.2', 1675299789, '__ci_last_regenerate|i:1675299789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6433e611b68cf0061b813216339a5a831ea99f9', '31.222.203.2', 1675299789, '__ci_last_regenerate|i:1675299789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be93e057e742733de16dd6cfa6885b01e2abbd47', '31.222.203.2', 1675299789, '__ci_last_regenerate|i:1675299789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6110dc71ba991181495f03136a265e47c691265', '31.222.203.2', 1675299789, '__ci_last_regenerate|i:1675299789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4daa16add714ec3882c7008efa0971b1942546b3', '172.105.247.100', 1675300817, '__ci_last_regenerate|i:1675300817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af0f464cea6f9b824e3ce406eb3b25d2cfab525', '172.105.247.100', 1675300818, '__ci_last_regenerate|i:1675300818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('884e5c459bf2528feea4292b6ef7d294c7ccfbc2', '172.105.247.100', 1675300818, '__ci_last_regenerate|i:1675300818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb568089dfd73e7a885053dfb85c8715b23ff98', '172.105.247.100', 1675300818, '__ci_last_regenerate|i:1675300818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8c6a667cdc9400f436258351e810b1b0feb508a', '172.105.247.100', 1675300819, '__ci_last_regenerate|i:1675300819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596a70451ecd28ca6ba20d3e12f4dd1427bba74f', '172.105.247.100', 1675300819, '__ci_last_regenerate|i:1675300819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be8ba7c883bb83b05fdcd7ceeb6a2c3f42d9619', '172.105.247.100', 1675300819, '__ci_last_regenerate|i:1675300819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce53c32328100056b51c4b2900af882a559f9f95', '172.105.247.100', 1675300820, '__ci_last_regenerate|i:1675300819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b8e6ff98414cf2bc5cbbda9b430cfb6fa56310', '172.105.247.100', 1675300820, '__ci_last_regenerate|i:1675300820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5973e20c091d756981d96282a36b7c83df3229', '172.105.247.100', 1675300820, '__ci_last_regenerate|i:1675300820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f23c1ad7e125080be1806b793245c00aa0cd96', '172.105.247.100', 1675300820, '__ci_last_regenerate|i:1675300820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bd7323875070212f2036f916b4d2da2945fca8', '172.105.247.100', 1675300820, '__ci_last_regenerate|i:1675300820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7aa58feba38464a073bd2a83bb2876c06540f49', '172.105.247.100', 1675300821, '__ci_last_regenerate|i:1675300821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3fab8e2c2695a1e9cac1133919e6f51e03963e', '172.105.247.100', 1675300821, '__ci_last_regenerate|i:1675300821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e630502456276b5f0102aa02f88b965cdc868853', '172.105.247.100', 1675300821, '__ci_last_regenerate|i:1675300821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97d424a976f0c913c6751e784783178663c6911', '172.105.247.100', 1675300821, '__ci_last_regenerate|i:1675300821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e72bfec504377a8e718e1efc848e5a9b87449589', '172.105.247.100', 1675300821, '__ci_last_regenerate|i:1675300821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e7ce81ad894cac7746929289684d2406c65609', '172.105.247.100', 1675300822, '__ci_last_regenerate|i:1675300822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111ac13f9215930bae2258faf13c6f7977094d6b', '172.105.247.100', 1675300822, '__ci_last_regenerate|i:1675300822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ec5eaa1db9e3d01d431dc63ebf856c514f1ddc', '172.105.247.100', 1675300822, '__ci_last_regenerate|i:1675300822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca87eae99efed5f99e98255625df39e57f8d33e', '172.105.247.100', 1675300823, '__ci_last_regenerate|i:1675300823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770a24b801932e199a774c3c45eb09d880cff3f2', '172.105.247.100', 1675300823, '__ci_last_regenerate|i:1675300823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa5a953b146dec22ac006c4db4a7b89e81ed115', '172.105.247.100', 1675300823, '__ci_last_regenerate|i:1675300823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70baf8b22ed9559eead65554b1ba1fa4094b6688', '172.105.247.100', 1675300823, '__ci_last_regenerate|i:1675300823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4799599a16d7f462588c64cbc4c158a8eaa37b7', '172.105.247.100', 1675306218, '__ci_last_regenerate|i:1675306218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec2096edcded13de3baeb396571e91a5e7c56d7', '172.105.247.100', 1675306218, '__ci_last_regenerate|i:1675306218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68827649af7bca2d7eae54daaf6e8af039d86b4d', '172.105.247.100', 1675306218, '__ci_last_regenerate|i:1675306218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a756d7314825377e3412f30ed98b2357e60417c0', '172.105.247.100', 1675306218, '__ci_last_regenerate|i:1675306218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ac1497148bca846143ee5abdda1ed01b26ab85', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edef1b905db17d5bba5223060f61654c76c4ff0f', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c634cfe492d5af06df8f48883f8bb22a0f73cbe', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4e57db71368db0355d5597bf3c39b80f292b78', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10aba75c50f71bda4da60ee4eafe16f4f1467d0', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5549763f0ac14f864d8d80d7cf14e789be19269', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3aa94c6d6695601e6c8685c7a2f6a06c7ca8c45', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f02b2922db6a3a2e79e852ec1a2a2789a5a55966', '172.105.247.100', 1675306219, '__ci_last_regenerate|i:1675306219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a03913af9cb508a2a9e9fd1b7e217f3e44400767', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('725721a0d551aed26158e840596d1291a3d166e8', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12e02a15801108243d06a2b1062528e354a06da7', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f699b6896647bc756a05d8e2a15e8adea70e8f', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf647a1ea34bc2dfaa8ccb2852bf938bdc45a6c', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83dffacf7e03382f215879527325508d431d3418', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14b4a976400342b5c59f93ebbe9f3f66a7bfe9c1', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62054813a274388ff982c78e2291230a20910c78', '172.105.247.100', 1675306220, '__ci_last_regenerate|i:1675306220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa32f0f588383ead12018063f610f893ac844da', '172.105.247.100', 1675306221, '__ci_last_regenerate|i:1675306221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('019a8619c4cd4580e01a88eee933ac43326b2ab2', '172.105.247.100', 1675306221, '__ci_last_regenerate|i:1675306221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('315a1ecc4c54edc5d4892ce749800eae620fbbc0', '172.105.247.100', 1675306221, '__ci_last_regenerate|i:1675306221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769a818a8262de32f915a7bdebe6921429b075ff', '172.105.247.100', 1675306221, '__ci_last_regenerate|i:1675306221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa3eb8eda64cbb82d7615d37b004c38e4994c39', '31.222.203.2', 1675310615, '__ci_last_regenerate|i:1675310615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53ccdd975ec2eb491a78d7568eed21ef93fe59d', '31.222.203.2', 1675310615, '__ci_last_regenerate|i:1675310615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05551311fbb305611c4931dfe7413bae97a3588f', '31.222.203.2', 1675310615, '__ci_last_regenerate|i:1675310615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6872a3f2a97c7db93202a10de7789f2bc1094d56', '31.222.203.2', 1675310617, '__ci_last_regenerate|i:1675310617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d37c2cd32c80b56108bbaaadb3d0de133c1f90', '31.222.203.2', 1675310617, '__ci_last_regenerate|i:1675310617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a097c84fbd564daca8253eaf706d5d895e2d1a', '31.222.203.2', 1675310617, '__ci_last_regenerate|i:1675310617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e486128c5da7b5a744f772c1e410ca83172c1bbb', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe6d274d2183fc88ee36f4a7dfcdbe7d1ea004a0', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4265eed28c3fa9ae53ba1ad6f0f178fab7776340', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63bbe00c9f3b209afb70508072b407dd7139ca5', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dcdf924cc1c1f6440c7b49a40f6e8a33d21458', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('469a6bd59f8cbd7951f0706708e2a63f95e64088', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21390725b713086da649c1642d958b0d54b4b044', '172.105.247.100', 1675311621, '__ci_last_regenerate|i:1675311621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0eb42c54b177b2bafe753a5929bedeb6f27a6b8', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6be27dad5d3f7dc28e70775da65b019f9f725956', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de1d8a6bef0961a5aedffb3269ed77be548ac39', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d954815c7ebc6e768788d80d404b3176400d969', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047c1779d9cdb0a0076679358c4ff08a5cf0565c', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c36c5bec34a20972d1a6ae3743ae62845ccb0a', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186704660a4044b3e36757cd84c10c1943fcd28e', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af118c6b5ab802cea66dfd97bf33b9131491a4fc', '172.105.247.100', 1675311622, '__ci_last_regenerate|i:1675311622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe8d6f22648bed8e067bbe2113994c7d7641cfa', '172.105.247.100', 1675311623, '__ci_last_regenerate|i:1675311623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d1a615f2d63c7da37630febac67122eb93b76e', '172.105.247.100', 1675311623, '__ci_last_regenerate|i:1675311623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0778c01002274d243e3232828598ca55cfa9e49', '172.105.247.100', 1675311623, '__ci_last_regenerate|i:1675311623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a29173bc89eb5341afc03337f2cd115a7e0715', '172.105.247.100', 1675311623, '__ci_last_regenerate|i:1675311623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d13e3fe30187ebbea8d67e2262a9e9275faf3c62', '172.105.247.100', 1675311623, '__ci_last_regenerate|i:1675311623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08555efc3810b2c5cc483b7285894955f4123004', '172.105.247.100', 1675311623, '__ci_last_regenerate|i:1675311623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e60d6b8eefd40246ac677e5f3d1ff698613ae43', '172.105.247.100', 1675311624, '__ci_last_regenerate|i:1675311623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac46524ca20b16c1a5b5c6ab9366f3fe52bee151', '172.105.247.100', 1675311624, '__ci_last_regenerate|i:1675311624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad204e2eb8cc6db30685fe19f5fa0c8d315e243', '172.105.247.100', 1675311624, '__ci_last_regenerate|i:1675311624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ed43bc8a3ad0c7f9b5767690e5d4908d29fee8', '31.222.203.2', 1675312466, '__ci_last_regenerate|i:1675312466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2634b3612cd9b96ba29c3d420d4643ca46481d', '31.222.203.2', 1675312466, '__ci_last_regenerate|i:1675312466;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49dd245119c1d3907ca19419b7a91d4495257aa7', '31.222.203.2', 1675312466, '__ci_last_regenerate|i:1675312466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f601cde0a357ab7e5a5c32003413bff32fd3967', '31.222.203.2', 1675312466, '__ci_last_regenerate|i:1675312466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef329a3202fd030dbffac1cdf64d35a8e95346b', '31.222.203.2', 1675312466, '__ci_last_regenerate|i:1675312466;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc835252e5419608f1237c28e4524446b6edcdc', '31.222.203.2', 1675312466, '__ci_last_regenerate|i:1675312466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa7f6bf6cc24c77d35ab5a99d114f707faeeb1e', '45.120.39.89', 1675315316, '__ci_last_regenerate|i:1675315316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675259621\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675315244;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1aaa7afcd895cb15041ab38c11dd6735f62ac90', '45.120.39.89', 1675319896, '__ci_last_regenerate|i:1675319896;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675259621\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675317278;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0e49724354b1cd201895c0cd454d70ec299f1bb', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015de531807782d95d694cdd4e568f21d8a8b1a0', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed660cbe08851608e39e67776d2b28e6e98a727', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b100580d713a2605a43d7a7c9030ae7d054b7515', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224d70e6f1951ec16fdeb114791f0d6e881af9db', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17696639d3c1844a87fbec4f4a67ab319bdade07', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3bf42fde4c033ee4f909c9c9e2d9d7236c72e1', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0167c5c2732ac66749baac4ecfde045e3fdf23b4', '172.105.247.100', 1675317021, '__ci_last_regenerate|i:1675317021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747e8c6f738eae21c72255af156d4af745c21924', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f3f33f5187c1eca6f86d2c1abe1c3dbe044160', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8fe157b83a2e2c2888028a1ebc624df2e3d6c32', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109ff8b09719dbfd3b48117d9b3e83f34f0b8b42', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88877888ac4a869bf0ec205b844c80d06298d722', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82630c26743de860f9f2f57c88b9dc93f77f00e6', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f1d647b26d0c02d133e51bdd29c1cfccbbe751', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42c71f74a5eb594b8d2517531a517eb64aa2d35', '172.105.247.100', 1675317022, '__ci_last_regenerate|i:1675317022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c5016bde250765194b81339bd510786731bbcd4', '172.105.247.100', 1675317023, '__ci_last_regenerate|i:1675317023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dfa18e827ad9c491b33254059e84ae7d1a05ba', '172.105.247.100', 1675317023, '__ci_last_regenerate|i:1675317023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a512432ec851119b9cf67e72e75c4d7fa2a0e993', '172.105.247.100', 1675317023, '__ci_last_regenerate|i:1675317023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbba4ca68368d3b38de8b94c6dc38dcb5fb06063', '172.105.247.100', 1675317023, '__ci_last_regenerate|i:1675317023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf2ca0642c2768ab5d75236b3546f61bd8ee8c8', '172.105.247.100', 1675317023, '__ci_last_regenerate|i:1675317023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7867dc4015e849082882f2b4ceb5b1ddb6b9cd92', '172.105.247.100', 1675317023, '__ci_last_regenerate|i:1675317023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af10c65b0b6587f8c2ed82d211f142007816a3f9', '172.105.247.100', 1675317024, '__ci_last_regenerate|i:1675317023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c8f84d1fc8631b33497a6a9094ec872c622478', '172.105.247.100', 1675317024, '__ci_last_regenerate|i:1675317024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4117443a5fdd10f2d89e38635020e233fc9cd4', '45.120.39.89', 1675321203, '__ci_last_regenerate|i:1675321203;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675259621\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675319896;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfdaab44d062d538dba3d72b77acb3aad78e4188', '45.120.39.89', 1675321204, '__ci_last_regenerate|i:1675321203;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675259621\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675321203;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9134eb1160a224e6f6dfd05d5085df0bd27cd1', '172.105.247.100', 1675321821, '__ci_last_regenerate|i:1675321821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a6dfd0e3c975505c69ac8e707eefad8918e515', '172.105.247.100', 1675321821, '__ci_last_regenerate|i:1675321821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dbc4f630618d6577b54a10c8499dd61e67657da', '172.105.247.100', 1675321821, '__ci_last_regenerate|i:1675321821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e895efa1f584b71c501870f00febc5191866f45e', '172.105.247.100', 1675321821, '__ci_last_regenerate|i:1675321821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a6252e123e28932181e7af3c9f510920c931ee', '172.105.247.100', 1675321822, '__ci_last_regenerate|i:1675321822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f7e8186e1bb93792cbdb209d538f651e4c07df', '172.105.247.100', 1675321822, '__ci_last_regenerate|i:1675321822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c765337662c603acd0a61912769238ebe84010', '172.105.247.100', 1675321822, '__ci_last_regenerate|i:1675321822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d53f3cf9685c85a22e38213dd2ca709fada631', '172.105.247.100', 1675321822, '__ci_last_regenerate|i:1675321822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634f55fd290bf9e7df16285ccae958d0549f1280', '172.105.247.100', 1675321823, '__ci_last_regenerate|i:1675321823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a6d4a4611b210317639f7754b72d2d5db3aa9d', '172.105.247.100', 1675321823, '__ci_last_regenerate|i:1675321823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa13d41c9e7df9e1e2762396c3d2699687abb9ae', '172.105.247.100', 1675321823, '__ci_last_regenerate|i:1675321823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9515c5537536c8371258e4be0c3a5117e9a243', '172.105.247.100', 1675321823, '__ci_last_regenerate|i:1675321823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c5ce0cd6d20a26094d40a8a3fa8ca19d842980', '172.105.247.100', 1675321824, '__ci_last_regenerate|i:1675321824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4f1b582477bbd72c448c5fe5cddcc3e5da95fc', '172.105.247.100', 1675321824, '__ci_last_regenerate|i:1675321824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6196fb4f60f2eb962ab8c6e46ced3f1c5c28169d', '172.105.247.100', 1675321824, '__ci_last_regenerate|i:1675321824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1edd33231d1680f266d031ec931975c94534c9', '172.105.247.100', 1675321824, '__ci_last_regenerate|i:1675321824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2055ec5c55023f3f40ddb49ad8ec9ac97e0fed42', '172.105.247.100', 1675321824, '__ci_last_regenerate|i:1675321824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('790afaad88a7c622ae92a9ea9516417c5078d00f', '172.105.247.100', 1675321824, '__ci_last_regenerate|i:1675321824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe18a3b2f4d6aa1b4f62b996996bf807d235cd6', '172.105.247.100', 1675321825, '__ci_last_regenerate|i:1675321825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981b799f57cd258dee35fd951620c84730b97613', '172.105.247.100', 1675321825, '__ci_last_regenerate|i:1675321825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397a71041d263e5b3842b439edb123bee0f58046', '172.105.247.100', 1675321825, '__ci_last_regenerate|i:1675321825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe4db65bf3c505ddb922281a609697d2122fd70', '172.105.247.100', 1675321825, '__ci_last_regenerate|i:1675321825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6936b0714bed883b2c9f36b2ce92741e9bd75364', '172.105.247.100', 1675321826, '__ci_last_regenerate|i:1675321826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e6dfc5842d986ac8adb7403547d908e2f00b75', '172.105.247.100', 1675321826, '__ci_last_regenerate|i:1675321826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb96fd71629dc2ce2f17c5a7d68cbe384ab2921', '31.222.203.2', 1675323212, '__ci_last_regenerate|i:1675323212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cee72cea4eb545d0d91bef1cbd3541841260d75', '31.222.203.2', 1675323212, '__ci_last_regenerate|i:1675323212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03ee3b3d2e4418e3157ff943a1fd01f7568f1239', '31.222.203.2', 1675323212, '__ci_last_regenerate|i:1675323212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('465df4c1fa8d9110581a40ed470f09e3b77b36fb', '31.222.203.2', 1675323212, '__ci_last_regenerate|i:1675323212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c12b7c0f00dbdb47abd4c17929ca8e2d27c7da4', '31.222.203.2', 1675323212, '__ci_last_regenerate|i:1675323212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff84000700314bf3e71fb63f4d709f0cd1d20d5c', '31.222.203.2', 1675323212, '__ci_last_regenerate|i:1675323212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4a0f327aa342ba25d6b6166c25c64641467744', '31.222.203.2', 1675325062, '__ci_last_regenerate|i:1675325062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('080efaad9e324a556609542cd8f9a0812d44c692', '31.222.203.2', 1675325063, '__ci_last_regenerate|i:1675325063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751b97dea701927b36667eb92a44e0e596bec391', '31.222.203.2', 1675325063, '__ci_last_regenerate|i:1675325063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ecb35e2882742de1dbf18e57685a3b710bc7ed', '31.222.203.2', 1675325063, '__ci_last_regenerate|i:1675325063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf23aa7fc7d05b74ce002ae45b711b991106435', '31.222.203.2', 1675325063, '__ci_last_regenerate|i:1675325063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eebf651c0e3ad0e341b513e374a464fcd07a72c7', '31.222.203.2', 1675325063, '__ci_last_regenerate|i:1675325063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3847a372c55d0932a694198c07f606bc419bd5f2', '172.105.247.100', 1675326019, '__ci_last_regenerate|i:1675326019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648b27a2eff496b678f0e611902c22b262487c0a', '172.105.247.100', 1675326019, '__ci_last_regenerate|i:1675326019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d70fe1bc69eadff87421e8a4131d2e6cfcc926c', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3c82786d381800261d873084222f831e1a067a', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01f4632a34ef3d2ba8512594861af25964e8ea7', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49bfe27af5ec0bb8af0dabcc202295107ef6c03b', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16dba6553dc618daba4e0f7d82b7871344028098', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c85fe98f276d4bb9daad4be6c4f402a2089648d', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87012b7f6b0762814b974bb9d939b119df08ff63', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1e3a1ed61cee5cf91842b7f4ae6e0e7f5af8845', '172.105.247.100', 1675326020, '__ci_last_regenerate|i:1675326020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b01a2cc162f96a54bcbebc9b015c78238aa3e2', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc4297b00b89d7730a314180ad8f0c02e33f9da9', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f81721ceac62cc1241ef0589ddcde6c9ae09df91', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92529847e378abab94b0f37b46589a73404ea8c3', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b2aeefe57320fe404882db96126b0848d94c416', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d48a8f9dd206784c994bdab62c3e6e2a1687c6', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880f7b286c0b45c8faacdbdaa3a6777bb5073373', '172.105.247.100', 1675326021, '__ci_last_regenerate|i:1675326021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9655ec0ff482f5cb582dc6b27b8938779ed775ce', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdeeb5543252b8bc8fa9b2878b7a289dec5f6d3b', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('971cda19621474f5046335a8e8a3e18466ec9d16', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf34e08da7dc5bcda3217a108b311152d22c4da', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ce765df9178ac468353b35ebe2dc1b536bb26d', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d76a150bbb7d942733b38590aecc9402c86c99f', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726630cb6fbbfee6b1a6dde0a7f5e5f5070144d2', '172.105.247.100', 1675326022, '__ci_last_regenerate|i:1675326022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc79697bbaa5b6f3b9b94240a082cd6f3f7c64e', '172.105.247.100', 1675331420, '__ci_last_regenerate|i:1675331420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1541218b789f2c14559b6472a7e86e07cf44add6', '172.105.247.100', 1675331420, '__ci_last_regenerate|i:1675331420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ae55ef0e51292be5eadb8ecd40f4aabaef054a', '172.105.247.100', 1675331420, '__ci_last_regenerate|i:1675331420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3df8508bba1535a446f07c1a4bf18b54847abb6', '172.105.247.100', 1675331421, '__ci_last_regenerate|i:1675331421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21014432c3f6a8dccd2b9908e2e43eca41194f38', '172.105.247.100', 1675331421, '__ci_last_regenerate|i:1675331421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c436b17f790d08f9598b6699076390aa72858175', '172.105.247.100', 1675331421, '__ci_last_regenerate|i:1675331421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35260660e273782be61ad7c035340a0dd475821', '172.105.247.100', 1675331421, '__ci_last_regenerate|i:1675331421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff267efdee9972d51385c30590a6a68cebd95a1b', '172.105.247.100', 1675331422, '__ci_last_regenerate|i:1675331422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068e8c8e65b6dfda9a21b92de334b9cc8a18f173', '172.105.247.100', 1675331422, '__ci_last_regenerate|i:1675331422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493d5189a833dc1311f789266689d4ab0ba3798f', '172.105.247.100', 1675331422, '__ci_last_regenerate|i:1675331422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5140f906a2f2f5bebae5a76e53f164ac3c406b', '172.105.247.100', 1675331422, '__ci_last_regenerate|i:1675331422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37609139bea93a280ccc191410d19b33ab940382', '172.105.247.100', 1675331423, '__ci_last_regenerate|i:1675331423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcb62a1787da2105546dff932106a594f35f5166', '172.105.247.100', 1675331423, '__ci_last_regenerate|i:1675331423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6817898ad0c551e58f8fe2cf332992981312211b', '172.105.247.100', 1675331423, '__ci_last_regenerate|i:1675331423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce8b2013c5755058f662c21d1918c06a2ec6889', '172.105.247.100', 1675331423, '__ci_last_regenerate|i:1675331423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7600d38d2520709cbbf1360ed6cf3c9d6c6d78ae', '172.105.247.100', 1675331423, '__ci_last_regenerate|i:1675331423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4170a2368d3f8471b11fb59cbfc7a662a0c6fe51', '172.105.247.100', 1675331423, '__ci_last_regenerate|i:1675331423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b45117c3d91ae141c608a69397b985e6a8983bb', '172.105.247.100', 1675331424, '__ci_last_regenerate|i:1675331423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7426fc05fcce7c376652aa4c2f160ddecc8fcf12', '172.105.247.100', 1675331424, '__ci_last_regenerate|i:1675331424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47b435ce824330d2decce50b67d09ac2d255bfe', '172.105.247.100', 1675331424, '__ci_last_regenerate|i:1675331424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff5198643aa1cc8678be191310f118e3703994a6', '172.105.247.100', 1675331424, '__ci_last_regenerate|i:1675331424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aead6aa1aeae42ef323878b2614c9be6cda71ce1', '172.105.247.100', 1675331425, '__ci_last_regenerate|i:1675331425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2cedb97de0cc60dbf1e41bf76a4900c60b5e65', '172.105.247.100', 1675331425, '__ci_last_regenerate|i:1675331425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee31838f9073504720fee231129848f9fe9fe50d', '172.105.247.100', 1675331425, '__ci_last_regenerate|i:1675331425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2ab6a279ff9710b7a277cde0dbdcfded956606', '31.222.203.2', 1675334004, '__ci_last_regenerate|i:1675334004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bdb83979085f93fe33d181e3a4b1bcb3069ce8f', '31.222.203.2', 1675334004, '__ci_last_regenerate|i:1675334004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d8de2bce32f4299417eeb2f606092596c129df', '31.222.203.2', 1675334004, '__ci_last_regenerate|i:1675334004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bc7fa9b0c910d870bd484451675524e97b366f', '31.222.203.2', 1675334004, '__ci_last_regenerate|i:1675334004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32dad9a6de1c67ecd9a0efb578950d3b8be8e51', '31.222.203.2', 1675334004, '__ci_last_regenerate|i:1675334004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e365006ef5a3ce788be30f45661e4f387f8d1d0', '31.222.203.2', 1675334004, '__ci_last_regenerate|i:1675334004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1583f5a2ebce5e0c15381383473a89e8717e838d', '31.222.203.2', 1675335861, '__ci_last_regenerate|i:1675335861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f27fa3508629edf35f5805f2876e3535bf753d3', '31.222.203.2', 1675335861, '__ci_last_regenerate|i:1675335861;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19933ffe7c97cf930b2242da7ca863c8d90672d7', '31.222.203.2', 1675335861, '__ci_last_regenerate|i:1675335861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5634b678222809400423dbb516222e16676a7da8', '31.222.203.2', 1675335861, '__ci_last_regenerate|i:1675335861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800f684041c425246662d9520fca52aa5a7e8f2d', '31.222.203.2', 1675335861, '__ci_last_regenerate|i:1675335861;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa1ace61da859a0b1902ff2d626a83878ac18b3', '31.222.203.2', 1675335861, '__ci_last_regenerate|i:1675335861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97bc7cb13284589f07ee988d89882584131ceaae', '37.111.217.117', 1675336735, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ad8d1ca85c81aaa02d4f692dc1b61e751eb36a', '37.111.217.117', 1675339681, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675339681;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675336828;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b8b712b4fb4acb80e9122d956169dd4683c4a0', '37.111.217.117', 1675336735, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0893bd0a89486fba7bef2b73bb1a1213a9ba9605', '37.111.217.117', 1675336735, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66eaf8bdee2cbfcc018d6aee869241b66fb5b05a', '172.105.247.100', 1675337420, '__ci_last_regenerate|i:1675337420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db62aaef97147768d745b34349a2eaac66aae6b', '172.105.247.100', 1675337421, '__ci_last_regenerate|i:1675337421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc350119e212cbe4a041e08cf1ea1aeb1e7462d', '172.105.247.100', 1675337423, '__ci_last_regenerate|i:1675337423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb5f6446d495eb7a46fff1088fff986b488d4cd', '172.105.247.100', 1675337423, '__ci_last_regenerate|i:1675337423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e606904d6bf13233e828e0a725536969a3bda0', '172.105.247.100', 1675337424, '__ci_last_regenerate|i:1675337424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c746ab232f46fb009cf0661e2bd3be5f74ac07a', '172.105.247.100', 1675337424, '__ci_last_regenerate|i:1675337424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf6175b8f5c01683a6eb66868495f1f846a7f224', '172.105.247.100', 1675337424, '__ci_last_regenerate|i:1675337424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d63d26c1b3e837d0f265c9f7c6600a3ae6a274d', '172.105.247.100', 1675337424, '__ci_last_regenerate|i:1675337424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b051a97afe5400d104bea5995bba14c75ea83de', '172.105.247.100', 1675337424, '__ci_last_regenerate|i:1675337424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a370efc51d72873ae6f792b22cbefa26d7ad96', '172.105.247.100', 1675337424, '__ci_last_regenerate|i:1675337424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5779255eda086b93235bca9d7e7ed9e4a65745a5', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf4c3b8b724653cbe1a1cea254430a2c75b6866', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b913994da0ea5fa7b13029b34ca20cccab8839', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279b3bc5dc69ebe7f91befc19198d37575144ddf', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a4c1936064a13b8efe1a25557cc2eb7408e0c7', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aebf966a0c5a4698b5a9ff0a8b6a4696974b9872', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab0aed59adf39c6615c9fcffd29abb412c36c9c', '172.105.247.100', 1675337425, '__ci_last_regenerate|i:1675337425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc2141f5aca801b86646b8d1e1d3a865061f957', '172.105.247.100', 1675337426, '__ci_last_regenerate|i:1675337426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383b3b20b005e91b92d81eb9155fe0a13f2e07d0', '172.105.247.100', 1675337426, '__ci_last_regenerate|i:1675337426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5761eb1cd20ee3e2ed324e62c698d4378aad15eb', '172.105.247.100', 1675337426, '__ci_last_regenerate|i:1675337426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2056a311a9858e712a20336042c99b7081b6f67b', '172.105.247.100', 1675337426, '__ci_last_regenerate|i:1675337426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087512e0d15310c247ea168785ae410194be1206', '172.105.247.100', 1675337426, '__ci_last_regenerate|i:1675337426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e22ba6b752ddf24c4846aac5b2f39e946496323', '172.105.247.100', 1675337427, '__ci_last_regenerate|i:1675337427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784328240e045364ed88cdb90795c3b52a9daca3', '172.105.247.100', 1675337427, '__ci_last_regenerate|i:1675337427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b88b925b560b90feb2a9ac2577820b5b39358c', '37.111.217.117', 1675341269, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675341269;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675339687;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510a61657e68d43c95a65a5baedf57d9a82ddb4e', '37.111.217.117', 1675341856, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675341856;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675341845;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8f050e38027443c14019a0a955dcaeb72ccc94', '37.111.217.117', 1675342168, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675342168;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675341856;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4920e2a8886c5eedb03eb1205debedce6c737b2', '37.111.217.117', 1675348899, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675348899;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675342175;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff29c3274cb67113d66a69d7ad1caaf6c1eba1e', '172.105.247.100', 1675342219, '__ci_last_regenerate|i:1675342219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828c09512131add3b13fab07a73888b90572e37c', '172.105.247.100', 1675342220, '__ci_last_regenerate|i:1675342220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1850019f39614610142e4b5359dff1cdef6492a5', '172.105.247.100', 1675342220, '__ci_last_regenerate|i:1675342220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40edf9ebf83530fb3293949b1626d5189caed8ce', '172.105.247.100', 1675342220, '__ci_last_regenerate|i:1675342220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b00ddd7bbb3cd04c7b396b35d373b37e84d4ff62', '172.105.247.100', 1675342220, '__ci_last_regenerate|i:1675342220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72dac9185193cabddbee636f2be77127d86e81e1', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d445bb882ef57328d8e7542693036b21dee7fee0', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e1feec823c98da79f728107faab5c0daa87655', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36b9ea34427275a39e80b4782efe12a3ac222c82', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c645ae168696d5e940f79475116a199475bc4712', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67b0599fc6d1d460ca6c978a241be358ad63ca4', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa68615c6a2998d0ce8dcc9110092fc1da08be5', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f521d4498b9250722c93235d7fcfda3fa24ff8b2', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e535a1db85a96d85290b70f7726d9732c3f208ac', '172.105.247.100', 1675342221, '__ci_last_regenerate|i:1675342221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d956862a434f4f4dad956c7cff2182cc905a4ba3', '172.105.247.100', 1675342222, '__ci_last_regenerate|i:1675342222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ee24b66332c5fb8b036e82bee811be1fe4c2a5', '172.105.247.100', 1675342222, '__ci_last_regenerate|i:1675342222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a697170c9151438297efc277c9112136532c76', '172.105.247.100', 1675342222, '__ci_last_regenerate|i:1675342222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66f9cc49ac5516c35fb571d67f6d7707586fa6b', '172.105.247.100', 1675342222, '__ci_last_regenerate|i:1675342222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688b61095291552aec5e16240c0a9898485ac208', '172.105.247.100', 1675342222, '__ci_last_regenerate|i:1675342222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97c5e0f56876b0a4fa60db346cc69ce570f3d64', '172.105.247.100', 1675342222, '__ci_last_regenerate|i:1675342222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a474b6af6b09434fa059066faa9559c5a685c824', '172.105.247.100', 1675342223, '__ci_last_regenerate|i:1675342223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff299608e2600ceb30a1838c660e51090fee4b2', '172.105.247.100', 1675342223, '__ci_last_regenerate|i:1675342223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f50cd2db1b9f9299cb478a5831d7074662e472', '172.105.247.100', 1675342223, '__ci_last_regenerate|i:1675342223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa5007b551785f8971d2d0ad4341169b6932395', '172.105.247.100', 1675342223, '__ci_last_regenerate|i:1675342223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c0216087bc40b35f3745b0e6c57363d5ad61b2', '31.222.203.2', 1675344783, '__ci_last_regenerate|i:1675344783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d22f4520cf7cb755df9a29afccf4dc2922d371', '31.222.203.2', 1675344783, '__ci_last_regenerate|i:1675344783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74da0be372e797266c2dd435df80a531cc40dcef', '31.222.203.2', 1675344783, '__ci_last_regenerate|i:1675344783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245c8863c6851af03c2f3f3d4e3fc1e6409fb2c6', '31.222.203.2', 1675344785, '__ci_last_regenerate|i:1675344785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c4be82fb39f9a0116a3bc01ef9629fe76f05ed9', '31.222.203.2', 1675344785, '__ci_last_regenerate|i:1675344785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbb3158396913ac6bebb85f65973c7ff5935810', '31.222.203.2', 1675344785, '__ci_last_regenerate|i:1675344785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb180d37ce01784b419fb899ec3e214732a3c2f3', '31.222.203.2', 1675346659, '__ci_last_regenerate|i:1675346659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43dac8e39fdfd9a5d1fd2032de43b16589a2d59e', '31.222.203.2', 1675346659, '__ci_last_regenerate|i:1675346659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eac0282fad145aa6938290c25152a9a94108957', '31.222.203.2', 1675346659, '__ci_last_regenerate|i:1675346659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ed2c2237f0c35a55e7d7b54410c6d4d21f8a3d', '31.222.203.2', 1675346659, '__ci_last_regenerate|i:1675346659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513eb21bbcea96cbbadb330251c7f075f267eb78', '31.222.203.2', 1675346659, '__ci_last_regenerate|i:1675346659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33bf5d981d774817d5cf0f0c7d92b1edc86a9c08', '31.222.203.2', 1675346659, '__ci_last_regenerate|i:1675346659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a63b68cbbe442c9a8ad287228e905850b1a305', '172.105.247.100', 1675347023, '__ci_last_regenerate|i:1675347023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7de42bd4704f756650bfb8cb8bab0fd94a281d', '172.105.247.100', 1675347023, '__ci_last_regenerate|i:1675347023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34efcb922b0d8a40e754c1690f244877becf86c3', '172.105.247.100', 1675347024, '__ci_last_regenerate|i:1675347024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e52e6756322f7e10e810ae3c53cc80d3c60778', '172.105.247.100', 1675347024, '__ci_last_regenerate|i:1675347024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8590d26852dac1621aa4bbc9825c344484defb89', '172.105.247.100', 1675347024, '__ci_last_regenerate|i:1675347024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaefed34310da5e4a2ce545b66a1993e3bb76de7', '172.105.247.100', 1675347024, '__ci_last_regenerate|i:1675347024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e1df76d1e78107abc448bfa74a7e000cd513d0', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e8bca84072c5a47a9bb57fc024951550a767df', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c553620ad8ed30b37eb25f060feebb1a24037a03', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('449f2822d34f34c307f2f10f9483a8d2a128a64b', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5961f72202f0ee69ec73a64b8f2473e4a66a16b4', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a88f2d5d68809dce94192969babc8f8dcd99eafa', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7bfd09f63aa98b3f3742f209e27f7699c613b8', '172.105.247.100', 1675347025, '__ci_last_regenerate|i:1675347025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cbdc2a2f0c0ca510f09927eae6f1b7b8a3e2d4e', '172.105.247.100', 1675347026, '__ci_last_regenerate|i:1675347025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54749618ad837dfb07a7321b4a61bace8f17b56a', '172.105.247.100', 1675347026, '__ci_last_regenerate|i:1675347026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43147b1923134f095b8680a0db2d14f3280fcf63', '172.105.247.100', 1675347026, '__ci_last_regenerate|i:1675347026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687d337cfc68495947b7936df3be1b0beb16cfc3', '172.105.247.100', 1675347026, '__ci_last_regenerate|i:1675347026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e63b2e882895df1a3c75990bc26bc3ff8f4d43', '172.105.247.100', 1675347026, '__ci_last_regenerate|i:1675347026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97befe3bc792ad5e30cdec9e9c175035c672e4a3', '172.105.247.100', 1675347026, '__ci_last_regenerate|i:1675347026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d244fbfe61d2263a6b5bc5eb368f4522c42b89a0', '172.105.247.100', 1675347027, '__ci_last_regenerate|i:1675347026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8125ae6c53e062efb45610b6ddccd44e07386edf', '172.105.247.100', 1675347027, '__ci_last_regenerate|i:1675347027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc33a8810c86136cd400728b89b8537501ddadd', '172.105.247.100', 1675347027, '__ci_last_regenerate|i:1675347027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29ee18b52397c5a53bd7b345336320256f0ce2e', '172.105.247.100', 1675347027, '__ci_last_regenerate|i:1675347027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b7e46897dfdc5d24783e1e8c8937859c949132', '172.105.247.100', 1675347028, '__ci_last_regenerate|i:1675347028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bed261d826cf435086d992552276aae9db7f6c6', '37.111.217.117', 1675349393, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675349393;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675349386;register_id|s:3:\"329\";cash_in_hand|s:9:\"3600.0000\";register_open_time|s:19:\"2023-02-01 19:54:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4d357e2ba7a4776c2a13d92d102fca41ddcf9f', '37.111.217.117', 1675349410, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675349393;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675315003\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675349410;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0b1c123d71d4850b1c350b2efcbf2cfa0ba6c3', '172.105.247.100', 1675351217, '__ci_last_regenerate|i:1675351217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf0d9da4eb003cc1bdae70edc0295e037fbdc99', '172.105.247.100', 1675351217, '__ci_last_regenerate|i:1675351217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32cd1ee69ae7bc34394b1b0419dae43ecc44bef', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79279705871578b369ef24bdbbf235dff9ff6b0e', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d6dc4a83e301f3b56578cffbbe4af8d02e2014', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9195a3655152ad77a53068bb9b589fb1275eaa4b', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c271b0d1becc9c337ceb4fcb68da57cfb86669', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f86d4b8f875d9754e68dbb120cd4a72755714c', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff4f76420c4190c3115bbe68abdca7bf77809b0', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa35c567da36a1f26948c98a61e68437ab5e3162', '172.105.247.100', 1675351218, '__ci_last_regenerate|i:1675351218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca56fa6392343cbb47bbb9291e3a93213bff3158', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19af56fda5b9f36f21210bc57df444991940ae67', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd150b61f6579f33e1d9426b718b614384791dc', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17bcb15cda521a8a5fdc355226518dbc82d1b50f', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863a7565ec3aef38e89e48352edf97ead607586f', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd67e642dfea46c4c452577e1d3ed248b66b5cca', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da43d182a2f1ef33f80ea01aaf7f4d6db3a535b2', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a79c6148efae1b48b44bfec9552608b6231978', '172.105.247.100', 1675351219, '__ci_last_regenerate|i:1675351219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3860468f84e4923e4952adf6d836e8694c552f55', '172.105.247.100', 1675351220, '__ci_last_regenerate|i:1675351220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62535363b633cf5cc426875e2138e1dfee3a5d7a', '172.105.247.100', 1675351220, '__ci_last_regenerate|i:1675351220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fa54f85b11082272ab135d5ce2adff3653d5515', '172.105.247.100', 1675351220, '__ci_last_regenerate|i:1675351220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe40405613dee634a061702f8d6a5baace8b9f5', '172.105.247.100', 1675351220, '__ci_last_regenerate|i:1675351220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a5ca7cf98598e3bdb1ca30e4f3325f1556e98c', '172.105.247.100', 1675351220, '__ci_last_regenerate|i:1675351220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a02ad26f43aa42cedf1b7bc18d8ff7dd6ca450', '172.105.247.100', 1675351220, '__ci_last_regenerate|i:1675351220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7457fed88617eda3514e0a370ff9543788eda580', '31.222.203.2', 1675355605, '__ci_last_regenerate|i:1675355605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fc730985f0f7e40cd2909714de183e4231d6a52', '31.222.203.2', 1675355605, '__ci_last_regenerate|i:1675355605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0eb378a9ca779781bdd1151919baae9fa1d119', '31.222.203.2', 1675355605, '__ci_last_regenerate|i:1675355605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('875265735a3cc7b13dcd16e16bc7d20a76746bfd', '31.222.203.2', 1675355607, '__ci_last_regenerate|i:1675355607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1866b70ec492b43217a80b24753c5f7dc2471d9', '31.222.203.2', 1675355607, '__ci_last_regenerate|i:1675355607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b285b595c713c68a80fe6f4101fd3c8c2efb01', '31.222.203.2', 1675355607, '__ci_last_regenerate|i:1675355607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8eb463681ebc5825927503f1181b66e15b8b31', '172.105.247.100', 1675356617, '__ci_last_regenerate|i:1675356617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce8806298bec805ffc83238f156aa6d630817e5', '172.105.247.100', 1675356619, '__ci_last_regenerate|i:1675356619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02bc5d87c0ad583f47b1f57c973cac5d2d7539f0', '172.105.247.100', 1675356619, '__ci_last_regenerate|i:1675356619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c05d2a510c25b2b7023ae13fceb2fb8a683a1b7', '172.105.247.100', 1675356619, '__ci_last_regenerate|i:1675356619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5aed96de3511df9aa3f3ae9bbe27177166ae723', '172.105.247.100', 1675356619, '__ci_last_regenerate|i:1675356619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9d249111cc73ab68b2b2cd8c810949ccb5547e', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029505ea739731451afa21b8280aaae58225c566', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d1dbdd0cb3305f7d18c7026e699219f5092e88', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2139481a8c72400b405a78c3453239b62c0b41a4', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7af1724c239cd72b8f55346addc182ceed6dbd', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6d1223f5a01a2c8f44be39c1fa080f3cd3020e', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f122701098fdd5cf9be78961f8c35555486c9aa4', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e37d513cfebc34692a2b72c26668c2d470208af', '172.105.247.100', 1675356620, '__ci_last_regenerate|i:1675356620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9942f992722bd121b3ddde050d526c43b2dbc017', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3607b77dfaba185d2778c50d964a77f3b83bfaab', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba478915dc6dec009f66759e2f4294b3972fdf3', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a920501040ad85ea863d20a55738a0fa2f3e966', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7591f2bb02224d8800810cf0736028a7036b444b', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b642548a8cd468c41b9bcf57716631f3bc0772a1', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39bb773a7fe282415f4d09a2a76c0e1c8fd38c8a', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1179d977b3ffbec7d6c5a94cbc113c335547aa', '172.105.247.100', 1675356621, '__ci_last_regenerate|i:1675356621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f3089889d8c183dddef2e7fa8153d7725aaef5', '172.105.247.100', 1675356622, '__ci_last_regenerate|i:1675356622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef12bb61cc3069510f96c37fa4e84b88f804206', '172.105.247.100', 1675356622, '__ci_last_regenerate|i:1675356622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('197823d61e5f9e0355a4c46c31a252125ff824f1', '172.105.247.100', 1675356622, '__ci_last_regenerate|i:1675356622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103e3e6aca05ca3711292328a3b44da3d2a25e6c', '18.203.48.96', 1675357318, '__ci_last_regenerate|i:1675357318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0732e7d824f10bc02c252e14b16e6927b3f8c1a0', '31.222.203.2', 1675357457, '__ci_last_regenerate|i:1675357457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842f59acc8be7abd0a34b1c24ab005966b9209ad', '31.222.203.2', 1675357457, '__ci_last_regenerate|i:1675357457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721144bbdd6a79c900155c683dcaf7ec25af25b8', '31.222.203.2', 1675357457, '__ci_last_regenerate|i:1675357457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d65cc68245c4066b71ba46c2a4005b08d07104', '31.222.203.2', 1675357459, '__ci_last_regenerate|i:1675357459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a6b093cf0a70afa6deb67340a35fdf6c1c1429', '31.222.203.2', 1675357460, '__ci_last_regenerate|i:1675357460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80e2cf62fbb8d4892bc926a54332a6f00802b28', '31.222.203.2', 1675357460, '__ci_last_regenerate|i:1675357460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f25d0deac0ebc82c660f0db36fafd5e420a54cab', '172.105.247.100', 1675362017, '__ci_last_regenerate|i:1675362017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa12997cc192343d0c2543ce4dfb46c97dcc504', '172.105.247.100', 1675362017, '__ci_last_regenerate|i:1675362017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb604cec39b72ca5b6c356a6273c2f5bece61979', '172.105.247.100', 1675362017, '__ci_last_regenerate|i:1675362017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada1d4e3806d4efe01fc1252f8a11353b53068f5', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1464ca8e019cf6aa86c361058b36c25e6d518185', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61549ee63196fa851d5efc484bda80ef8a5a14a', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8380c600656f12c182c6663a92e2333dce725fed', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15fd0e2bd7ee7a3591902cfdf8b8ebcec60d539c', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d8152e7b9cfbbd783419ef1129bc3bb70f2c09', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80ce569ea9db857d392a686f3454de872db2d51', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01fe000741d0d10f8e25b3a60b81be00fa9dd13b', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8066389e9c7b034297afd95d7d083c59a8dbe97f', '172.105.247.100', 1675362018, '__ci_last_regenerate|i:1675362018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a89bc5a72450bb72cbe6183d10e3729427f08b', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c786499af7d9c98a63d3aff6ad36aa3c3c60150c', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4b090d39c8e1ed3dc8771068cc01581c84708c', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbad972fcea6ada3cd963aae5657fc516f69599', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273fa3ff0378978184188d05b6d6817d0af59846', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('365c6c409b52cd008f6a7e5883fc66058387349c', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f7ebf13ac4a96f39adf522775ac4569e9bc70c7', '172.105.247.100', 1675362019, '__ci_last_regenerate|i:1675362019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466af04b9412e00a97adc41ed1311a30498bdfc0', '172.105.247.100', 1675362020, '__ci_last_regenerate|i:1675362019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ebcb2028962ea34219f919e835b8e2cb9c22e08', '172.105.247.100', 1675362020, '__ci_last_regenerate|i:1675362020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96381ab8f2612b12dc8db40c84d9f0d2879f34ac', '172.105.247.100', 1675362020, '__ci_last_regenerate|i:1675362020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fcdb04382d804f98a8450cc0757141a23040579', '172.105.247.100', 1675362020, '__ci_last_regenerate|i:1675362020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f3a70c336fc573bebf6bae331309a73dbbd356', '172.105.247.100', 1675362020, '__ci_last_regenerate|i:1675362020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed61fc692c404a24910fc5d00380043ca156dbb', '52.213.210.134', 1675364700, '__ci_last_regenerate|i:1675364700;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4b163560d73faee93b623dc566ba03902630fb', '52.213.210.134', 1675364703, '__ci_last_regenerate|i:1675364703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d6634c6303c79268d430d4855dc4dc3fe20e431', '52.213.210.134', 1675364705, '__ci_last_regenerate|i:1675364705;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53d40a3c88e18362bf9b6450d31418b6fe18d48', '37.34.242.16', 1675365955, '__ci_last_regenerate|i:1675365955;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb9dd701912909e1e0695aa5781401c99e85b73', '37.34.242.16', 1675365956, '__ci_last_regenerate|i:1675365956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c097c9b30f224d53bb9f35c17d2bb94909917177', '104.248.75.7', 1675365957, '__ci_last_regenerate|i:1675365957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac3615bda41758ad23a20a89607dc23452f7b53', '162.243.4.24', 1675365958, '__ci_last_regenerate|i:1675365958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b708e0c4bfe735f64ed3e02bceb1770b2751b73', '37.34.242.16', 1675365959, '__ci_last_regenerate|i:1675365959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948164c71dc335563c8b594b7b4d717240595169', '192.241.137.43', 1675365961, '__ci_last_regenerate|i:1675365961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e84b2e2e66ab6a035aec3120abfdd0905efe948', '37.34.242.16', 1675365961, '__ci_last_regenerate|i:1675365961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8777afb8a9a31af0bf9c7d07fd3672816cdc071', '45.55.112.20', 1675365965, '__ci_last_regenerate|i:1675365965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44961bf66ca55ac61ef83b5f4508ec21cb52093d', '31.222.203.2', 1675366383, '__ci_last_regenerate|i:1675366383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b713c31263de43dea9dd16517e23eae08e0a4c89', '31.222.203.2', 1675366383, '__ci_last_regenerate|i:1675366383;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713130eb1eb1f859d3f2a10d4ba06f8e46b04976', '31.222.203.2', 1675366383, '__ci_last_regenerate|i:1675366383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977e722ed0eb2aa927aedb762f457d73b59045f0', '31.222.203.2', 1675366385, '__ci_last_regenerate|i:1675366385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6697f58b3f51b9c42a187908fa81d504210f3e0b', '31.222.203.2', 1675366385, '__ci_last_regenerate|i:1675366385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce5881c3205c492be00fd632da141a4042c35b4', '31.222.203.2', 1675366385, '__ci_last_regenerate|i:1675366385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d03f7853eaee79fe732dcbbf31c89467b27d75', '172.105.247.100', 1675367417, '__ci_last_regenerate|i:1675367417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c296feb7b484c954d9eca2980596f5b3c3f34c', '172.105.247.100', 1675367417, '__ci_last_regenerate|i:1675367417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf28946fa3fc500a6d2a9d2efa586cc1cdfa9d6', '172.105.247.100', 1675367417, '__ci_last_regenerate|i:1675367417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9719236c755704a4c5f8562a5c4f2a902abfeaba', '172.105.247.100', 1675367417, '__ci_last_regenerate|i:1675367417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae1d209661bed2990653a50f1ac5440fae8fc9b', '172.105.247.100', 1675367418, '__ci_last_regenerate|i:1675367418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb2766b11d186d7ea3482d222896675e2517fae', '172.105.247.100', 1675367418, '__ci_last_regenerate|i:1675367418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866edb56b628a7cf2828ec48e453f2928a32e16a', '172.105.247.100', 1675367418, '__ci_last_regenerate|i:1675367418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ae6e48f5063d94dc5230f8e98c001404e3196a', '172.105.247.100', 1675367418, '__ci_last_regenerate|i:1675367418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beaaa73edd633c368588774edc51c9962668d5e6', '172.105.247.100', 1675367419, '__ci_last_regenerate|i:1675367419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1aad8ae266c79381a896d4076e76a199809434d', '172.105.247.100', 1675367419, '__ci_last_regenerate|i:1675367419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf82c92812c2402be2f86ff0215ed99e08f05b44', '172.105.247.100', 1675367419, '__ci_last_regenerate|i:1675367419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c910261ba80e16538dfc224320eacda08ac6df5b', '172.105.247.100', 1675367420, '__ci_last_regenerate|i:1675367419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae3fd83381d607d955f3716d74bb26f6db72cc0', '172.105.247.100', 1675367420, '__ci_last_regenerate|i:1675367420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95618ad136f90ec54741efcdbb3c147a720ae7f7', '172.105.247.100', 1675367420, '__ci_last_regenerate|i:1675367420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea4d6b7a99748e0d1f72fc0a9c7fc72abf83442', '172.105.247.100', 1675367420, '__ci_last_regenerate|i:1675367420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846f2741d236276654c3f5be88764503e1aebc75', '172.105.247.100', 1675367420, '__ci_last_regenerate|i:1675367420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c050da736d52af408b9a324651ef94a2f3dcee2', '172.105.247.100', 1675367420, '__ci_last_regenerate|i:1675367420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d38681a089ec02f2628263e3f2d512d8284427', '172.105.247.100', 1675367421, '__ci_last_regenerate|i:1675367421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfdb4d8223dad840167ff9681fef47562a8657ae', '172.105.247.100', 1675367421, '__ci_last_regenerate|i:1675367421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42061339ac5acd6fc8f8344d015527830ccc5880', '172.105.247.100', 1675367421, '__ci_last_regenerate|i:1675367421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c108b78c07f7d4ab4697b8d11773c17819b3656', '172.105.247.100', 1675367422, '__ci_last_regenerate|i:1675367422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c375df54e817838dc0f23f881eb99bf35034d2a3', '172.105.247.100', 1675367422, '__ci_last_regenerate|i:1675367422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38e44ad457fcf6a057a6a5a778aa887c9ceb7fa', '172.105.247.100', 1675367422, '__ci_last_regenerate|i:1675367422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a6652a79c07271bfc4551bf4069ad02696944e', '172.105.247.100', 1675367422, '__ci_last_regenerate|i:1675367422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffba8e1099fb5b1dcfbabe77e59b45067edcbcbe', '31.222.203.2', 1675368258, '__ci_last_regenerate|i:1675368258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8bcbdd689a85a1458813976cdc201e1354ea065', '31.222.203.2', 1675368258, '__ci_last_regenerate|i:1675368258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3c289ed9b7d07accaacdf02c1d49f86e2953d3', '31.222.203.2', 1675368258, '__ci_last_regenerate|i:1675368258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396acbdf55c124463f9e6da5a01df5f23cc83f04', '31.222.203.2', 1675368258, '__ci_last_regenerate|i:1675368258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b6bafaf0ee8809bddae287462a2f30e4851769', '31.222.203.2', 1675368258, '__ci_last_regenerate|i:1675368258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9428f1be92ab49ebd902b3142ad00adc478f56', '31.222.203.2', 1675368258, '__ci_last_regenerate|i:1675368258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09e11bca2871033b5b78f3be0a02934556abe24', '172.105.247.100', 1675372217, '__ci_last_regenerate|i:1675372217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6aa038ece18e9954567bc6c3152c7f705d1880', '172.105.247.100', 1675372217, '__ci_last_regenerate|i:1675372217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a07cce1a7a64e11607080313e982a934a95d633', '172.105.247.100', 1675372218, '__ci_last_regenerate|i:1675372218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('799f19f3d377299011a106bde7595c9706350781', '172.105.247.100', 1675372218, '__ci_last_regenerate|i:1675372218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a70c1af2e595aa968d1f2b9115a691bbb563292', '172.105.247.100', 1675372218, '__ci_last_regenerate|i:1675372218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6526695f32bfd912169df930d83ee69fd7da938', '172.105.247.100', 1675372218, '__ci_last_regenerate|i:1675372218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887649b0a314550ef45ebb1d183b8e3a60df14a7', '172.105.247.100', 1675372219, '__ci_last_regenerate|i:1675372219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165b81055069e31433932a1543610b6585185efc', '172.105.247.100', 1675372219, '__ci_last_regenerate|i:1675372219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a7f6c6f7e341bf7c2b2120e84de7f2ea5dc6f7', '172.105.247.100', 1675372219, '__ci_last_regenerate|i:1675372219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab66c1e8636f9b1a4862e9ad2adf3f5da4612c36', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4246770574b17dd6c518c994114d0344d35762b', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5493d0289c8901d92b737040ac3430e065ef8d84', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf916ea8940a300d81b9a2312cff34585d32012b', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8668e23679d730d01913e559a94f9f7865cf282a', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6694d93546900640b15df68365ce3b5e545d39a', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4d1f8fe094dbcd3120435ee04fcbfe3c8d3a94', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802ca78f5730d5a0f6859fbd976f76f02b696900', '172.105.247.100', 1675372220, '__ci_last_regenerate|i:1675372220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bde344ade2f0369b160be3d8724e08e2f9d58c0', '172.105.247.100', 1675372221, '__ci_last_regenerate|i:1675372221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f43d03c20f19bf2e4c94ec1f5caf7e85f3e2cd1', '172.105.247.100', 1675372221, '__ci_last_regenerate|i:1675372221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('711fb2f660c71b19955dcb2b2c94d8af23b43b3e', '172.105.247.100', 1675372221, '__ci_last_regenerate|i:1675372221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('237a2ec490ab6fb3e348bd89369c804f1c0e2b00', '172.105.247.100', 1675372222, '__ci_last_regenerate|i:1675372222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4974c33a6b327304fed9869e6f7588fa4e95f60a', '172.105.247.100', 1675372222, '__ci_last_regenerate|i:1675372222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd17f9c70c5e8bea2a970b404bcca1a93be495b5', '172.105.247.100', 1675372222, '__ci_last_regenerate|i:1675372222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdf81d9a146cbc49c394de4639f12cb3f66c99ac', '172.105.247.100', 1675372222, '__ci_last_regenerate|i:1675372222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db7b216d053f0ac3857777ff1ab7da0939b54b27', '103.154.185.167', 1675374865, '__ci_last_regenerate|i:1675374865;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b3cd94919f04ce68c063c24a506d7329153fb2', '103.154.185.167', 1675374866, '__ci_last_regenerate|i:1675374866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a933d93e061996aa436a9ede9824c11ae28343', '103.154.185.167', 1675374869, '__ci_last_regenerate|i:1675374869;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538267187b35da2f21d5d3a755153f175d7c8a36', '103.154.185.167', 1675374870, '__ci_last_regenerate|i:1675374870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ba45873f549c6e4a002795afc65990a6794a9a', '172.105.247.100', 1675376421, '__ci_last_regenerate|i:1675376421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2adc6d69bed3d7ac67f127484926454e16c552e', '172.105.247.100', 1675376421, '__ci_last_regenerate|i:1675376421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d27c5773e7d97fd26ad84c3d78630c6b434d2a9', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc681c4a86ed27a5784e85e163e584c4be1ef4b7', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0368fbde10565137ee05e1d1c4e32283f82cf03e', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49391eedb683e511e86e9ed549ee7f535e4edf0a', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7d5c9894121936feb03d437e8f02e60990d7d2', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af064910bc7a221fa9b248980a6f2b1a17c08799', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fa0e3361fe0642c61bee71d8fe7bef28ecb8bc', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faaebbac9988c1d24efa958e1df9f14177ab65ab', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d33760a8308811ef769d835e7995e93d214b37d', '172.105.247.100', 1675376422, '__ci_last_regenerate|i:1675376422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a38eb4f6cd30ab82c94a25f6f820e1056d9f2b', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2d56db22d0e383f20f73af9048c021cba8fd40', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64cff83994baa1a6489d3f1e685907dd31a6503e', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0010eb10fc1d60a03a4ed4f882dba1b79c3e2e6e', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b2920877d2d2f87e1926456f6202329297549b', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c446f7781db497146d87924b329be854b16801fd', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf0e66e9c9eb055023ec066acec5ce249d9238b9', '172.105.247.100', 1675376423, '__ci_last_regenerate|i:1675376423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a711c383fb6bc4e22b5ac1dcdd17525e75ad8e', '172.105.247.100', 1675376424, '__ci_last_regenerate|i:1675376423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949e8a699cee74578accaa1d5f0e62d2e38846f4', '172.105.247.100', 1675376424, '__ci_last_regenerate|i:1675376424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca9f8bdf87087c27b3f0c19e7a395c5283529fc', '172.105.247.100', 1675376424, '__ci_last_regenerate|i:1675376424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257b8ba1a5a234e9ad54674ee84ac38d78ca8155', '172.105.247.100', 1675376424, '__ci_last_regenerate|i:1675376424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d93cdb2ace788beb0e37f95f2a5ac57066443e', '172.105.247.100', 1675376424, '__ci_last_regenerate|i:1675376424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59517171671e6e3c66e160a97ae47425e546194', '172.105.247.100', 1675376424, '__ci_last_regenerate|i:1675376424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b385947a777d80ed866458c14f692cdbc374c797', '31.222.203.2', 1675378985, '__ci_last_regenerate|i:1675378985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef62c5eccd5b3982c5705e07687dac89a0642bdb', '31.222.203.2', 1675378985, '__ci_last_regenerate|i:1675378985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314b2cfaf7b4a130d8bcb537fe809c4436fd52a1', '31.222.203.2', 1675378985, '__ci_last_regenerate|i:1675378985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ec219a49063d02308960bc7255305c073bc0a1', '31.222.203.2', 1675378985, '__ci_last_regenerate|i:1675378985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4f8b60946af386fc8b10cf0360be09dc200e80', '31.222.203.2', 1675378985, '__ci_last_regenerate|i:1675378985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a4c7a262c2bae3ea73c9453a545bd8f95bf580', '31.222.203.2', 1675378985, '__ci_last_regenerate|i:1675378985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8884f096ba8625f92677c41c5e920222c64d7bc6', '172.105.247.100', 1675381821, '__ci_last_regenerate|i:1675381821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27be21aa98bf696d51555caf090bdc873c9aff28', '172.105.247.100', 1675381821, '__ci_last_regenerate|i:1675381821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f108547fd67080655c70d4dc843d4e24312e6d3', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5069c31afaa9269a781be96a5d206c062a231fd', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e049a7230f9920974237de02991fecf88264bd', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec5a4138a380d7489b0a52d20029d17931925ff', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b3025e5ca8c681e2fd6f4e93c5c12bf7617a76', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4d55176044d86ecc71048e3695e81d516c339b3', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a136433d989db6c94420ac5988919f0994cef6', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae1f7d4fce5c99c42401de6b7e33508c0f13028', '172.105.247.100', 1675381822, '__ci_last_regenerate|i:1675381822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323a4ee59d6b75be0312bc78243ec56aa42984b2', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079cfbc5e19608b23722f0781bc3a3eef178d7da', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e836ddbe95e5d5d87de2769af6e07a4428fbee4c', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5a8fcd50f855e15a890b2f140e062bf493d305', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61bdae689ce94ec3e2d9145edd29cc12f8379114', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23eb22cf7af595e281b4e6965e1a65ee0d3b5222', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b00fdaa6cdc65501a79079ebbf6e4efdc88839e1', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c076089d773e6af48a90b6ef48419935af4bc0b4', '172.105.247.100', 1675381823, '__ci_last_regenerate|i:1675381823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce7f35bb6f5c8dac87e758adbd2827181da8bbfb', '172.105.247.100', 1675381824, '__ci_last_regenerate|i:1675381824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26389951c672f498c352cdcf122380bfa1db4e7c', '172.105.247.100', 1675381824, '__ci_last_regenerate|i:1675381824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b3154545e2200e16634055db0128daf57d931c', '172.105.247.100', 1675381824, '__ci_last_regenerate|i:1675381824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c08a26574d5801b674c29308f3b3368bd3a528c', '172.105.247.100', 1675381824, '__ci_last_regenerate|i:1675381824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66a8432d833f093f28c0eff4eec275709f9a060a', '172.105.247.100', 1675381824, '__ci_last_regenerate|i:1675381824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144c166bb2314abc893e44241cf16961456fad9a', '172.105.247.100', 1675381824, '__ci_last_regenerate|i:1675381824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c473f9396910866924d1dd458c10c86ad9c73035', '172.105.247.100', 1675387217, '__ci_last_regenerate|i:1675387217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7805e3fee1a2e54eaf9c00a029d9a81f44b097a', '172.105.247.100', 1675387217, '__ci_last_regenerate|i:1675387217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89686420efcc0d14b7ae07b809310aa79cdb0d63', '172.105.247.100', 1675387217, '__ci_last_regenerate|i:1675387217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2556fc0fe21b6cddf99679a6aada7b54a2980634', '172.105.247.100', 1675387217, '__ci_last_regenerate|i:1675387217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de98d937b4b352950247718997a0d76910d7c741', '172.105.247.100', 1675387217, '__ci_last_regenerate|i:1675387217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb0862eb76dd81ffaedcb2cfcbecef1ac3f6a84', '172.105.247.100', 1675387217, '__ci_last_regenerate|i:1675387217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5b25a455a75173bb5c15ee2a45c3cec40635d2', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a840a830579e675af6a2cb4a6cf13ad820f1d171', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2048411221eb04162b667e9db92d843b916c708', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129f2c2719bce72ab0338fb3e43f05aad853989e', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cd73bd68aed0e5c5da2d1d31086fd08edd5345a', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32d2fe66fe49e2c2d12c9e63b996a8e0fd00a96', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96eae8aa6c075af9c8a81ab8920c37effdca476b', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f3722297d60d14f766d184b1036300751a1697', '172.105.247.100', 1675387218, '__ci_last_regenerate|i:1675387218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91df2b874e1efa0d884a78a32a20d005e6a1a246', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca027d8fada1902eb2ab9b68ce5380e164aa803', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8eb0af0c0710aaa53b86fd48f96f6d002b82ef', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd26df7dabbd1d611da101f9698e25cb81305a9', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5d7d6adb94eb86821b69d44e558aea3fe222071', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d61efa470f4fcac2cc4cc9fa49ecf9812a0ce403', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b802646ca20b647d43151c530d80b388a5d0b395', '172.105.247.100', 1675387219, '__ci_last_regenerate|i:1675387219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdec745a9af6541b97c3a1b7169904a56600e26e', '172.105.247.100', 1675387220, '__ci_last_regenerate|i:1675387220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdbcb60cf848e2bf2ccf22e5eadbbfac3bebc7e5', '172.105.247.100', 1675387220, '__ci_last_regenerate|i:1675387220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64e4afef61e4b0382c7473a0d5b900f3491329d', '172.105.247.100', 1675387220, '__ci_last_regenerate|i:1675387220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff0007e4c1a7457cb183508d1c9f199cf07c9ef', '31.222.203.2', 1675389807, '__ci_last_regenerate|i:1675389807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa6cfc38bf12f08ddcb9669d84127c5e5a3d75a', '31.222.203.2', 1675389807, '__ci_last_regenerate|i:1675389807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4fa4aeab6b37d5c8c9bae50c1f1074e60443ee', '31.222.203.2', 1675389807, '__ci_last_regenerate|i:1675389807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d301ecd634b09baf278e1d4e369d6fb3e005bfbf', '31.222.203.2', 1675389809, '__ci_last_regenerate|i:1675389809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac8b6d1bd61ea1118081aa06c4ecf53cebef43c9', '31.222.203.2', 1675389809, '__ci_last_regenerate|i:1675389809;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5545e861a87b7dc220d6f00938aaeb427e47fd29', '31.222.203.2', 1675389809, '__ci_last_regenerate|i:1675389809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5672caee891cad589d1e4586ccd939a0194fcfa3', '31.222.203.2', 1675391661, '__ci_last_regenerate|i:1675391661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca28e83ca1c16190f3e9ccd5c685aa3755cb9286', '31.222.203.2', 1675391661, '__ci_last_regenerate|i:1675391661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129124852ee227380a474e6b406341b242eeb086', '31.222.203.2', 1675391661, '__ci_last_regenerate|i:1675391661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac7155e4dfebd9592b5bf0a8e7deb9fb348f847', '31.222.203.2', 1675391663, '__ci_last_regenerate|i:1675391663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5082a9066676e6e84e3448fe517f3ab2dd0a10a', '31.222.203.2', 1675391663, '__ci_last_regenerate|i:1675391663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a60be96691b810163d250fb6b16df54a848681', '31.222.203.2', 1675391663, '__ci_last_regenerate|i:1675391663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8632cd9d6368c7133b1c4c21e448e37afbfeef38', '172.105.247.100', 1675392617, '__ci_last_regenerate|i:1675392617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea39d67bbfab886ea6509da001f0bdbca30e9a29', '172.105.247.100', 1675392617, '__ci_last_regenerate|i:1675392617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d3a64fad7bdbe3483d655ba578cc45c7a3f248', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0bfce12e91380bfbf02e600356c50b3e3997809', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8010c01e41189956046cd1cf41e16b0906443ffc', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7000a32ba33581fe149c5839ea4f494985ae5c22', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3237df6ac1789e01a2c0b5aa5ef3cbf680ded57b', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc089de03d1fc909d0488f636b99c06d28f746aa', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378923492c3a4e8050de2a414ea937016e9487cb', '172.105.247.100', 1675392618, '__ci_last_regenerate|i:1675392618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1060f788b788560dc7af84444bbd069c62ed23ce', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46534e6d09425faef90cc93571a05d6c7fed256b', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d56a3269b870a6089f53881a9553e28ac073b47', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32984746741312ba94059e4998a7837ae5804a9a', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1521ed1298da1f9bc22b7e5dce8a01be9161579', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78153ee3647015f13e0edf1094e91ee49e3d72ae', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ac5d8cdc2386a010fe1f07bcb80842071091df', '172.105.247.100', 1675392619, '__ci_last_regenerate|i:1675392619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55436f79c68a028adc32506fe3f6cca2b7fdb3e1', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f482beb87a312f1dca7e83dda1598ce02450892', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c909bb1bc49912f6bcd33498a057996a3ff728e', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283a7498fcb3594eed4c13a2cb30f2ba9170fc12', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce50483b3d7111318208b9982976d601af1caab', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635cef2db9cd00c8726d7de60decd4414ed2a733', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb1ba323bc8526d49d29403eba71a049609102d', '172.105.247.100', 1675392620, '__ci_last_regenerate|i:1675392620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45b59a740b5b63a14ce3ca86d82dff53d060c51', '172.105.247.100', 1675392621, '__ci_last_regenerate|i:1675392620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f304ef4aa2ebe887b5b909b40b4b808631bdf94', '205.210.31.13', 1675394555, '__ci_last_regenerate|i:1675394555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47c823538c9359e1363ed8ac50b0bc6699a8ab0', '172.105.247.100', 1675398019, '__ci_last_regenerate|i:1675398019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812778a09b71f572d62b52d180dd74a6fe4d8dab', '172.105.247.100', 1675398021, '__ci_last_regenerate|i:1675398021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22935bb28d70fc20e48c604113baad3a42ff1aa0', '172.105.247.100', 1675398022, '__ci_last_regenerate|i:1675398021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22caced7ded3dc98e6a130b9d5b22a8e54638a88', '172.105.247.100', 1675398022, '__ci_last_regenerate|i:1675398022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bfeda1ab2d242419709dbbb79558a266b79b37', '172.105.247.100', 1675398022, '__ci_last_regenerate|i:1675398022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ce95fafda2241c5927709139855205d5e459a3', '172.105.247.100', 1675398022, '__ci_last_regenerate|i:1675398022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b1711ce1f20af13610f320611f46c05375f91e', '172.105.247.100', 1675398022, '__ci_last_regenerate|i:1675398022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa8ea7bd0e8e9a3edca68b08dd95387f188d56d0', '172.105.247.100', 1675398023, '__ci_last_regenerate|i:1675398023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27fc05e607ad56576f0d806656405dc4a7142ae2', '172.105.247.100', 1675398023, '__ci_last_regenerate|i:1675398023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27c6c2f6803cb656c6e6ceb8694ecf0ff29c6d3', '172.105.247.100', 1675398023, '__ci_last_regenerate|i:1675398023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('904c7763586c2954111235b1db8de6cd0e1609db', '172.105.247.100', 1675398024, '__ci_last_regenerate|i:1675398024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593aaf3f74777b626093aec1a10cb2138b8f5c1d', '172.105.247.100', 1675398024, '__ci_last_regenerate|i:1675398024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a33fd680f0040e9964971a645794accf604f57e', '172.105.247.100', 1675398024, '__ci_last_regenerate|i:1675398024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411f45ef717632b11f704fb35c109e677f45d179', '172.105.247.100', 1675398024, '__ci_last_regenerate|i:1675398024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a900933c14aca939300bbd86c8a93f07749921ad', '172.105.247.100', 1675398024, '__ci_last_regenerate|i:1675398024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7738cda0b91b652c7f14e80fb7df48e941f3efd3', '172.105.247.100', 1675398024, '__ci_last_regenerate|i:1675398024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19540d729bc6a99e2e4c9c2ceca0ce00857688b6', '172.105.247.100', 1675398025, '__ci_last_regenerate|i:1675398025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf6fe6bf2a30fcad624e772e27676110ecbb766', '172.105.247.100', 1675398025, '__ci_last_regenerate|i:1675398025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75fcca5f5bc152fa331e772f106edddcabb160f', '172.105.247.100', 1675398025, '__ci_last_regenerate|i:1675398025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2245de559dd24f7fd46c1cf5756cc8f21458592', '172.105.247.100', 1675398026, '__ci_last_regenerate|i:1675398025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a94a6fa81765d2e0cc5718e3f729fc05826d73', '172.105.247.100', 1675398026, '__ci_last_regenerate|i:1675398026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a883be9a1ec5db864f971e4d2760869053fb6bfb', '172.105.247.100', 1675398026, '__ci_last_regenerate|i:1675398026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528d07750a93830800a4fec58ec76accc22ce4e7', '172.105.247.100', 1675398026, '__ci_last_regenerate|i:1675398026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0bcb8cdf465d117bbaa233c50a7a8881669473a', '172.105.247.100', 1675398027, '__ci_last_regenerate|i:1675398027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40dd553688659f2d0a057d828ecf9226e6c0fc7', '31.222.203.2', 1675398817, '__ci_last_regenerate|i:1675398817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9290d134a2b42b9b42b38731e1bc5ad82b6e9f27', '31.222.203.2', 1675398819, '__ci_last_regenerate|i:1675398819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48760ec641c698e21a36ae42435052391cd0623e', '31.222.203.2', 1675398819, '__ci_last_regenerate|i:1675398819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d7705ea1f3d86a5bf082198a47c64e4c2c54cd', '31.222.203.2', 1675398819, '__ci_last_regenerate|i:1675398819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23c9a27256cece0e3e6a17e7b18f5490e5d836b', '31.222.203.2', 1675398819, '__ci_last_regenerate|i:1675398819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491031e1a0aaae58a3ac693ef8bfa10547077630', '31.222.203.2', 1675398819, '__ci_last_regenerate|i:1675398819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3046859f7bbcfa8ffbbc6619a97202d53c23b68e', '116.204.230.30', 1675401704, '__ci_last_regenerate|i:1675401704;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674893399\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff7afceec8e2455dbd8274eb7ed97999e2dfb99', '31.222.203.2', 1675400673, '__ci_last_regenerate|i:1675400673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e25787b10032927bc0b25b203c3aed0d26b99c', '31.222.203.2', 1675400673, '__ci_last_regenerate|i:1675400673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('972c121bacecce0ba92c39d945e27140e03db8ea', '31.222.203.2', 1675400673, '__ci_last_regenerate|i:1675400673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949b47fcef1dee2089a421d34ee90b0a78c14332', '31.222.203.2', 1675400673, '__ci_last_regenerate|i:1675400673;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab306879f8c3350b1d8c77f9b926d74c7a6c1c65', '31.222.203.2', 1675400673, '__ci_last_regenerate|i:1675400673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717fa3bda1babbb1ebc05eedbf1e693552aa2b85', '31.222.203.2', 1675400673, '__ci_last_regenerate|i:1675400673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e523b2e933d639e3c106b93be0495281a382a9', '116.204.230.30', 1675402139, '__ci_last_regenerate|i:1675402139;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674893399\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7713f95be57e62890b0eb276329ff6e5bb99988b', '116.204.230.30', 1675402446, '__ci_last_regenerate|i:1675402446;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674893399\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ad70f9ca01f40520144fd480ced7d53db5304cc', '116.204.230.30', 1675402787, '__ci_last_regenerate|i:1675402787;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674893399\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"tF0nirfQa5Izkgsj49c8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f111f94895d30a5e0e55ab152c0f8482086bad', '116.204.230.30', 1675402887, '__ci_last_regenerate|i:1675402787;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1674893399\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"tF0nirfQa5Izkgsj49c8\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b31baaa6bf648de41ae783f5958543047182ea', '172.105.247.100', 1675403417, '__ci_last_regenerate|i:1675403417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80befc22ad4e83a0b383c6744dcc5dd6a6a7d026', '172.105.247.100', 1675403417, '__ci_last_regenerate|i:1675403417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef2e6e57f2952cf884a35af6a2ffd2a64f81c44', '172.105.247.100', 1675403418, '__ci_last_regenerate|i:1675403417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a73ddb6d2c02da96d3ae7402d8d8a4d24299456', '172.105.247.100', 1675403418, '__ci_last_regenerate|i:1675403418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b82384d1ebee66237a4bdc4f53924d52ced6dd', '172.105.247.100', 1675403418, '__ci_last_regenerate|i:1675403418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d46f093aede855e20921970ccf0965ca3e5bf4a', '172.105.247.100', 1675403418, '__ci_last_regenerate|i:1675403418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc6987b2ac25a413e5f4a96e3487242767fe6704', '172.105.247.100', 1675403419, '__ci_last_regenerate|i:1675403418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c935db70899ff0139b0c66e6e67be5847d25f39', '172.105.247.100', 1675403419, '__ci_last_regenerate|i:1675403419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54320a90e3e6a89970558d6a4b38c8e88ee1ccbc', '172.105.247.100', 1675403419, '__ci_last_regenerate|i:1675403419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fa5f286f2d26328fbeb986e552e1492ec992b1', '172.105.247.100', 1675403419, '__ci_last_regenerate|i:1675403419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb2f30eeebc436ef6d2a17daaae174dd5da447b', '172.105.247.100', 1675403420, '__ci_last_regenerate|i:1675403420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c118037f9efb46e8e31cd09ae7b46ba7343cce6', '172.105.247.100', 1675403420, '__ci_last_regenerate|i:1675403420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8a52cdf1643e7b8059b92a6df296df94b547e91', '172.105.247.100', 1675403420, '__ci_last_regenerate|i:1675403420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67596c608e1ae8b44365dd9bdeb5e09cae0b7472', '172.105.247.100', 1675403420, '__ci_last_regenerate|i:1675403420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be39a95dfb45569e16ea4b8410ab3d6e2cc84df', '172.105.247.100', 1675403420, '__ci_last_regenerate|i:1675403420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfee92492f15e50204125feaf56d2b1ccfb36522', '172.105.247.100', 1675403420, '__ci_last_regenerate|i:1675403420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e83fecc7c8bdaa6cd2b09fd31f0aa10824bea72', '172.105.247.100', 1675403421, '__ci_last_regenerate|i:1675403421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf45eb4b1b6468c6d4bff1af21e68aec34ebd6a', '172.105.247.100', 1675403421, '__ci_last_regenerate|i:1675403421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04547bf4e6594c96cb22a911be954a40400b940d', '172.105.247.100', 1675403421, '__ci_last_regenerate|i:1675403421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b624e2ff60f7d021550d09c6776b5386c1002823', '172.105.247.100', 1675403421, '__ci_last_regenerate|i:1675403421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a78b2e22d20a1053e7c3f450a02545efb3ca1362', '172.105.247.100', 1675403422, '__ci_last_regenerate|i:1675403422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176cf27ee78884471d4bc9e4670cfaaa9703a35e', '172.105.247.100', 1675403422, '__ci_last_regenerate|i:1675403422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9add2c70b07519e9e122bb1727a86cd1ef9ad715', '172.105.247.100', 1675403422, '__ci_last_regenerate|i:1675403422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466977a2dfdc2c2c64d7f3f82b6013dd5d1c3e64', '172.105.247.100', 1675403423, '__ci_last_regenerate|i:1675403422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac45a983a9356b9a9d5c24f6b26d5250b41fdf81', '45.120.39.89', 1675405431, '__ci_last_regenerate|i:1675405431;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675336782\";last_ip|s:14:\"37.111.217.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675404605;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c519a0689488719f65eb5710e3ab55b25d06f08', '45.120.39.89', 1675407740, '__ci_last_regenerate|i:1675407740;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675336782\";last_ip|s:14:\"37.111.217.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675407410;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5e8a3c6da5831340069f66fda68fb1d26d0305', '45.120.39.89', 1675410375, '__ci_last_regenerate|i:1675410375;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675336782\";last_ip|s:14:\"37.111.217.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675407952;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e50c32abbdf7cc558117167a2c254227b360294', '45.120.39.89', 1675407022, '__ci_last_regenerate|i:1675407022;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675336782\";last_ip|s:14:\"37.111.217.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675407022;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5127e43731eb05c0bf4ebf04dd6d2b7d161379d3', '172.105.247.100', 1675408815, '__ci_last_regenerate|i:1675408815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231f88be5b00b9ef93369288329e9e58098f3d2a', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7569d2c35b0080d4017ff4630c44ea039f1a6ab5', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dba3db7d8ea407fb9676c6eb18c51a02f70f7c', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e827137316eff75e76e846d3eb4273230cc61b', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae048884f5831a2460ef56510f495ec39627ba66', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c95e7a027a5e4a708f84703567dc7f19e07f6b1', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390bcefeb0595a844b209993ab78d6b065ee4377', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c249f530569db66dd98a1877f4c8128dd9031a', '172.105.247.100', 1675408816, '__ci_last_regenerate|i:1675408816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29792f828fc24f62725cc593598317db4e813109', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6468de70bb26afdcf062d15e35df16caa68d117f', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2e0c768269fdddd5ff3596cee57719eb2652107', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f759393312ed5d8b0978733b05ee1124e3bcd09d', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f693db1422330ee40ae41c566d7bf4df0ac08fce', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7e498ce7eb503a4eba47bef059528ecfb57d79', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5889116238a4ad4a332d1d596a731a9633f5be25', '172.105.247.100', 1675408817, '__ci_last_regenerate|i:1675408817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f479122f3a7f89ef0801e2a4bc022617af6f8db', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e033ccacbebc8c0c0abb1ddc3ca77fa6e0a8d18', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde36363ba418b8b68321c9efcc010be31ec9acf', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce0b6c963802ec6f7616b7b83eeca29551ebc21', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d89baf9c10b6cb57556d295c9d0e0edc077295', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('473ffe887c8f515d3cd133b4ac748f2b83856579', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7ce91bbfe456fdf5d220f600534b24c8324ecf', '172.105.247.100', 1675408818, '__ci_last_regenerate|i:1675408818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81fb6bc90dbe3985b58b82576352b096dbcdef40', '172.105.247.100', 1675408819, '__ci_last_regenerate|i:1675408818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5116eaceb96dfdf98af9ef5c868fc33099f419cb', '45.120.39.89', 1675412352, '__ci_last_regenerate|i:1675412352;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675336782\";last_ip|s:14:\"37.111.217.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675410394;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06517463bffc50503f4c66cd00ca416ea9d2407', '31.222.203.2', 1675411411, '__ci_last_regenerate|i:1675411411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2be8e26846fcd34027e5851f3a3763d09d273be', '31.222.203.2', 1675411411, '__ci_last_regenerate|i:1675411411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('454b9731ebae3d44f18e5c9fe4b362412f9ac910', '31.222.203.2', 1675411411, '__ci_last_regenerate|i:1675411411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a136d7dc79927a6ae0d3bcdcc04bc7d318173ff4', '31.222.203.2', 1675411413, '__ci_last_regenerate|i:1675411413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4591f28d018539335f8f8fe18359401ebd1554', '31.222.203.2', 1675411413, '__ci_last_regenerate|i:1675411413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05114660f5f55b1d34e2fba36a7e76c82ffd5daa', '31.222.203.2', 1675411413, '__ci_last_regenerate|i:1675411413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3faf9702beb0d2d29c2833fb2c7725044704468d', '45.120.39.89', 1675412356, '__ci_last_regenerate|i:1675412352;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675336782\";last_ip|s:14:\"37.111.217.117\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675412356;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c48f54ee74224da5d2a79f3cb44f338c19ef38', '31.222.203.2', 1675413263, '__ci_last_regenerate|i:1675413263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bde762662d0b840bb3815d21141e0a252dd6e5f', '31.222.203.2', 1675413263, '__ci_last_regenerate|i:1675413263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b516cd5152b38174b8cf865d7c2c01c248f20b1', '31.222.203.2', 1675413263, '__ci_last_regenerate|i:1675413263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35da29bc1847943b4b0b7b3f889d83e73cac80c8', '31.222.203.2', 1675413263, '__ci_last_regenerate|i:1675413263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14df89f2cda19ae34acde89f40028df84de76426', '31.222.203.2', 1675413263, '__ci_last_regenerate|i:1675413263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cfcfacd5259e43f2d74d38492589d0039d9860', '31.222.203.2', 1675413263, '__ci_last_regenerate|i:1675413263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d278702db0bd5f894cba6be7c24b5598b820a63d', '172.105.247.100', 1675414217, '__ci_last_regenerate|i:1675414217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fd796c940d54908196ea9c330b327042ec2ac2b', '172.105.247.100', 1675414218, '__ci_last_regenerate|i:1675414218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d3e775ed0509120359f60d612b5b46cc7e63f7', '172.105.247.100', 1675414218, '__ci_last_regenerate|i:1675414218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7439353aed5d888db80254f5b034759d93abe451', '172.105.247.100', 1675414218, '__ci_last_regenerate|i:1675414218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8eadfa3e4496df76f3166753c10a8dc0defaa04', '172.105.247.100', 1675414218, '__ci_last_regenerate|i:1675414218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c6229e090a852e737cb0ac0d671eba41196e06', '172.105.247.100', 1675414218, '__ci_last_regenerate|i:1675414218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64cdb096ba54c893e6c72c48d68e59bfdff9161', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38afc761cd45a57269fe6250476ccc3c30e922b6', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ad9cca4e37ac1e01a0cf07829287cf736d557b', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3e5bad07a058340f3c1a555793c8afdb5003ca', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ee400afd5b549039f825c8ed4b9a736f96373a', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40bcb45797828e3037552cae5233a1e64bf80ffb', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69abc63296dc9e1f6973169f2d102fca0b5f18f7', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b72fdcff0caeac6153e621a08c0ad811a021c92', '172.105.247.100', 1675414219, '__ci_last_regenerate|i:1675414219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e9772fbf79267e97b6b08375247af214ec0762', '172.105.247.100', 1675414220, '__ci_last_regenerate|i:1675414220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a13d82794dfbcc11192681c31d35e487cae9b3c9', '172.105.247.100', 1675414220, '__ci_last_regenerate|i:1675414220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b21a26979df63067745e58277f73802bc3ca6b9', '172.105.247.100', 1675414220, '__ci_last_regenerate|i:1675414220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24ca7be940648c5f95ec7f4697dce81ac9d03f1', '172.105.247.100', 1675414220, '__ci_last_regenerate|i:1675414220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3340273501e4b9cc045b222ac2180389ce20de35', '172.105.247.100', 1675414220, '__ci_last_regenerate|i:1675414220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510f166d952e7818a8fd4f5a41067ad35da3f10b', '172.105.247.100', 1675414220, '__ci_last_regenerate|i:1675414220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d24f72fdf76fc71d572cb998d327f45032564df7', '172.105.247.100', 1675414221, '__ci_last_regenerate|i:1675414221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f3e879bffbf0b0b74783f71b78dba5a4fae80f', '172.105.247.100', 1675414221, '__ci_last_regenerate|i:1675414221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d441fdfe92fd2a942feca99db5324644238d48ae', '172.105.247.100', 1675414221, '__ci_last_regenerate|i:1675414221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f1b31c142c61111bbc474941a52b752a6669f64', '172.105.247.100', 1675414221, '__ci_last_regenerate|i:1675414221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ded3f4a3097519192a71229392bb21584bc2973', '167.248.133.63', 1675415698, '__ci_last_regenerate|i:1675415698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bd518113a9930e5b193aa7d7bf1bfeb22a8b8d', '167.248.133.63', 1675415698, '__ci_last_regenerate|i:1675415698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe61fbe4b02bf725fa08114e0fc5b96e7ac2aabd', '167.248.133.63', 1675415698, '__ci_last_regenerate|i:1675415698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95454bb49537d985e6917eada81c455cf251400', '167.248.133.63', 1675415698, '__ci_last_regenerate|i:1675415698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a731ddbb831ddf15f017ff48e39de9540c340e70', '167.248.133.63', 1675415698, '__ci_last_regenerate|i:1675415698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390b3652511fbba112554f96018460524f714aa9', '167.248.133.63', 1675415698, '__ci_last_regenerate|i:1675415698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238d87792400d79d3c51ade0b10f6dca6fccc75a', '172.105.247.100', 1675419616, '__ci_last_regenerate|i:1675419616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65531d9c116a40afeef5f5d99d51874a83f563ca', '172.105.247.100', 1675419616, '__ci_last_regenerate|i:1675419616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9607fbe85b21bab0b88a9b4afdda2aaf9c0ef6', '172.105.247.100', 1675419617, '__ci_last_regenerate|i:1675419617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df2094fb93d21f8c2453ebb2e6513f81cdca905', '172.105.247.100', 1675419617, '__ci_last_regenerate|i:1675419617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a913f504c5f096b7fe02c0248159abacf31d6bb', '172.105.247.100', 1675419617, '__ci_last_regenerate|i:1675419617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9a6eeddbd2e5349bb68abd9596ef5347b86c99', '172.105.247.100', 1675419618, '__ci_last_regenerate|i:1675419618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5de6e3f49cf0691c6d95dab7404f70c15a1f88', '172.105.247.100', 1675419618, '__ci_last_regenerate|i:1675419618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be7c133df5358adb85b45c75a2ff6e50037eb712', '172.105.247.100', 1675419618, '__ci_last_regenerate|i:1675419618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6985626527b8ba4a79769ba74d6651a21d2cd925', '172.105.247.100', 1675419618, '__ci_last_regenerate|i:1675419618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccad60f3ec68338e1759c3c669cfd4ba565dc36c', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e0ceffa49e8d71e5e0bb3d3e413a4a352fb59cf', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6842216956a094b8bc9482e01703baf95bf044c', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c154b5447c6d0b3197bb5747c65a4f7a75abcd31', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dec7a6d66eb90116e6e8b4f643f841e286e58ab', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6155f9d5b4a0363b897eb9a5090b66984c28e482', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a20f27e585d5d36d6946dcd360e380b427efde', '172.105.247.100', 1675419619, '__ci_last_regenerate|i:1675419619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e82038e5cc8c35ec67293bdc855112c3d4ca24', '172.105.247.100', 1675419620, '__ci_last_regenerate|i:1675419619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf8cdf8c14a94295a3d70e3c70e6a49de69df40', '172.105.247.100', 1675419620, '__ci_last_regenerate|i:1675419620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24b28e463852864836f13f57326715b8528d4db4', '172.105.247.100', 1675419620, '__ci_last_regenerate|i:1675419620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee531b89bcd6c0264e531c8e5af9113a1020113a', '172.105.247.100', 1675419620, '__ci_last_regenerate|i:1675419620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20af3dde83cc4d084003e73a69255db927d44fb8', '172.105.247.100', 1675419621, '__ci_last_regenerate|i:1675419621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf16f12dd73925778cea44e1a99661aeb6718671', '172.105.247.100', 1675419621, '__ci_last_regenerate|i:1675419621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29eede92c3d825f49b034d2fd9c3b5212583c49', '172.105.247.100', 1675419621, '__ci_last_regenerate|i:1675419621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4a66a3f23712e0aa46a1eeee32608f10f9e9f39', '172.105.247.100', 1675419621, '__ci_last_regenerate|i:1675419621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79fe6cad8af1e7a8965c43a2db7bf19a43324fed', '37.111.218.49', 1675427868, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675427868;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675427650;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe3654af48dec579f2d5f0a4c7c883f3ca397a1', '31.222.203.2', 1675423970, '__ci_last_regenerate|i:1675423970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf506fa2d00a48e6b09d028a8c54936a3bdb13d', '31.222.203.2', 1675423970, '__ci_last_regenerate|i:1675423970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5fcd9d6f1176a3f20849c8664fa705708bbe3b3', '31.222.203.2', 1675423970, '__ci_last_regenerate|i:1675423970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b278c0c6bc1e76a1d1c936abe37a716a76a99281', '31.222.203.2', 1675423970, '__ci_last_regenerate|i:1675423970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82caf70f11f96a5f925b665d101502d822284107', '31.222.203.2', 1675423970, '__ci_last_regenerate|i:1675423970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85deef5790af42583ead31f84c166e5ff79915b', '31.222.203.2', 1675423970, '__ci_last_regenerate|i:1675423970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae86eb37695baf362c2e76410fa77838847fafe5', '172.105.247.100', 1675425620, '__ci_last_regenerate|i:1675425620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9a79ef9373dbc6b7711534e6d673e84ff6f205c', '172.105.247.100', 1675425620, '__ci_last_regenerate|i:1675425620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50eab750c91603aef3d8b21d8a458ab12f4bf148', '172.105.247.100', 1675425620, '__ci_last_regenerate|i:1675425620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad81c516bf27385e182605c5eb439514c0d4d818', '172.105.247.100', 1675425621, '__ci_last_regenerate|i:1675425621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70038acb175cbf00068df832ea9c1c29493e705', '172.105.247.100', 1675425621, '__ci_last_regenerate|i:1675425621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc78a3a9f9f4bbb30165b06d151835f6e13c2ce', '172.105.247.100', 1675425621, '__ci_last_regenerate|i:1675425621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad58f3fcb2dfe38ef0b7cab29228159b2fcf07ad', '172.105.247.100', 1675425621, '__ci_last_regenerate|i:1675425621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae276e96c1c27f01390e7df34e3a6013bf71c6d', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a53ad4847edf44b492cb280871e35e13648c888', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f578cbeefabc569fb09c7686fb6cca29573c0b1', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76eb1badc7de846303097d8cb046a4180b702be6', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc6d80f43d9d582a1e202d757ae67a0b4e18ef7', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1cc256070aaae0e55573a86850250b3e1c24e93', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8677f51b793832768194b05313b2292e037d1ada', '172.105.247.100', 1675425623, '__ci_last_regenerate|i:1675425622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef445c0f820798be83fd86f09aa207da892daac9', '172.105.247.100', 1675425622, '__ci_last_regenerate|i:1675425622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92925101c61d2d280d773551a28e0e8400efb36f', '172.105.247.100', 1675425623, '__ci_last_regenerate|i:1675425623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83580de64ac1a3f72e15485a0b1686a8a56ff050', '172.105.247.100', 1675425623, '__ci_last_regenerate|i:1675425623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d00078dccd1d19b9173e7c5385c8cc7ec44f4d1', '172.105.247.100', 1675425623, '__ci_last_regenerate|i:1675425623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae86d959291aa99f63edfe56dec52993abef93d', '172.105.247.100', 1675425623, '__ci_last_regenerate|i:1675425623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779da306e653d933144acb7afa965e94a446e901', '172.105.247.100', 1675425624, '__ci_last_regenerate|i:1675425624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb87d96760c486db12bae48d0489083486f45f0e', '172.105.247.100', 1675425624, '__ci_last_regenerate|i:1675425624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10fc9250fd9e120b12b7d409384730e52fa4b38f', '172.105.247.100', 1675425624, '__ci_last_regenerate|i:1675425624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37113b85a93f490eb753a46fbd93bef8c473d5fb', '172.105.247.100', 1675425624, '__ci_last_regenerate|i:1675425624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04f13760fc0b472b15ac953a64402b8e53f40ec', '172.105.247.100', 1675425625, '__ci_last_regenerate|i:1675425625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b02af21a4085bcc8390788d457e099bd8247c41', '37.111.218.49', 1675428618, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675428618;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675427868;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe36f682981cc16607066916c7ae69accf6bbc54', '37.111.218.49', 1675432440, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675432440;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675428644;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('123ab0dccb169b61d7b976c95b6224bb774b69da', '172.105.247.100', 1675430417, '__ci_last_regenerate|i:1675430417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d1ad8eddc8c20e8ee88de34591d1855bc08ccba', '172.105.247.100', 1675430417, '__ci_last_regenerate|i:1675430417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77b580b3a344da67baf01505de3beb9c08febc0f', '172.105.247.100', 1675430417, '__ci_last_regenerate|i:1675430417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c2f53b87928be311024a878162b21a7000568da', '172.105.247.100', 1675430418, '__ci_last_regenerate|i:1675430418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef040a21e907466b77ca122441fa6771c0bba1be', '172.105.247.100', 1675430418, '__ci_last_regenerate|i:1675430418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd61ed12aede98cb1a5e4c16b73b946665bef92c', '172.105.247.100', 1675430418, '__ci_last_regenerate|i:1675430418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e909bd0825d6e44d77ab6dbfcdbe03f5e82bb1f', '172.105.247.100', 1675430418, '__ci_last_regenerate|i:1675430418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546c89c150fcd7d569418dd98d09aed02583f8eb', '172.105.247.100', 1675430419, '__ci_last_regenerate|i:1675430419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29e0233249b5ac101a6a37d4638e6d48fe3ce2f', '172.105.247.100', 1675430419, '__ci_last_regenerate|i:1675430419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ea7c4e9c8d4a42ce32fc410cbe67b6007f65d0c', '172.105.247.100', 1675430419, '__ci_last_regenerate|i:1675430419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c62c73f7ef458e3b8adc03f2ee21f2f5d8be2f6', '172.105.247.100', 1675430419, '__ci_last_regenerate|i:1675430419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e519c84dc026ee4fbbd63d4579836959bc0de2e3', '172.105.247.100', 1675430419, '__ci_last_regenerate|i:1675430419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ada143bddd4c2e7c24a413a774b9caf7c515c7b', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9a188f07ba1ab5562e9eaa91d3e82eec3b17ac', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731b90665d08bc089f80f4729a0f288f6acb2c8e', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96d50dc88916a3b7b1864997827cb0375e66174', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0efa36b49a702a7443c5900dd5286efab4a2d31', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f3c692124ff4baf4bfecd151291e8c4dbf8fcd', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e098d1fc01000e170b32133686d291ed30cacffb', '172.105.247.100', 1675430420, '__ci_last_regenerate|i:1675430420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b3fcf3d1d28d472636bb8c50e13a896ca8046d', '172.105.247.100', 1675430421, '__ci_last_regenerate|i:1675430421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32e4c8f5b6a24898a5f819b68b8fdb6f8988c083', '172.105.247.100', 1675430421, '__ci_last_regenerate|i:1675430421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044ff6e097b3da54a9343f4e805bb433dce4009b', '172.105.247.100', 1675430421, '__ci_last_regenerate|i:1675430421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03f6074773fc57f9fb385fca0fde1959735c8f2', '172.105.247.100', 1675430422, '__ci_last_regenerate|i:1675430422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b8929c45b51884a9f150edb1c3a1ae1ad4b9bb', '172.105.247.100', 1675430422, '__ci_last_regenerate|i:1675430422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4730431967962016d1782016f5f49d25e6b0fe21', '31.222.203.2', 1675431228, '__ci_last_regenerate|i:1675431228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007abdd00d48bcebc1790b35f97c690eeb9d3e30', '31.222.203.2', 1675431228, '__ci_last_regenerate|i:1675431228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0fd885b6bcfd07d2a433c92f12c5e0d8ce401f2', '31.222.203.2', 1675431228, '__ci_last_regenerate|i:1675431228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e21ff83f08a74339a82f76cbbfc8385907f48b', '31.222.203.2', 1675431228, '__ci_last_regenerate|i:1675431228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a520e6973ff96cb76e87bc5112ee9b016268fad7', '31.222.203.2', 1675431228, '__ci_last_regenerate|i:1675431228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('049a325f7a9e8eab8d1b049d7bd42b55b7dc009e', '31.222.203.2', 1675431228, '__ci_last_regenerate|i:1675431228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55e1aeb4e69af11ed3fcac4a2616b4ad91191005', '37.111.218.49', 1675432773, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675432773;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675432668;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb511c6115032d831a9f30f49ca9b743d7b8022a', '37.111.218.49', 1675435942, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675435942;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675435904;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff801b3b5167f91dfb3d4c4ef4621dc5c0b5989', '31.222.203.2', 1675433061, '__ci_last_regenerate|i:1675433061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d26cdd6092887064843d1bb658c8cb92889f30', '31.222.203.2', 1675433061, '__ci_last_regenerate|i:1675433061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fdfcdcdc100242bba72d86d11515e46df71c0f', '31.222.203.2', 1675433061, '__ci_last_regenerate|i:1675433061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631a1133ec603ac31bacafac64f39550624234b4', '31.222.203.2', 1675433063, '__ci_last_regenerate|i:1675433063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3db03ec6ad3788a08cb813179cc2351eccd76f3c', '31.222.203.2', 1675433063, '__ci_last_regenerate|i:1675433063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d2438701e4799ea01e50c65649228adadac999', '31.222.203.2', 1675433063, '__ci_last_regenerate|i:1675433063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d79cb08b8f1ede6662c51c21c5574c4c9674cf5', '172.105.247.100', 1675435217, '__ci_last_regenerate|i:1675435217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185960209fe99bad4cf30c6a3518f11156e4c5ee', '172.105.247.100', 1675435217, '__ci_last_regenerate|i:1675435217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd9d98883b0b49a70f6b3807b0e0c40da05ff27', '172.105.247.100', 1675435217, '__ci_last_regenerate|i:1675435217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29929b507228b9f3782266776a95402816ab020c', '172.105.247.100', 1675435217, '__ci_last_regenerate|i:1675435217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c378ae2c8b252f3781dc80a4e204a35e267e7c', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6069e37e561a872a2f8f0b5b4e77d72fd06de5cc', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079d8434bb7e6cd7fa4bc68517aa43c0ea0f1847', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5332d7a4544a6f00d99400f3c212ab0a6107538f', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb4660abbf018f2aaf2ee3cc77f6148ebe13d83', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8700748138c9e2838656d4b3a462df8957652a07', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8063e71677e88dbcf873c4d1129bd0e837b80655', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1c88870eabf67768eab830f430a8729dd475e0', '172.105.247.100', 1675435218, '__ci_last_regenerate|i:1675435218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa807d39b6ae42002e17375f24f75fe2fff2696', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84fcb24d2b9ab3ad512a01645cc4a88d03bf1316', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7a08d46c1fd3d16f91e1baf855f92a8f643cd6', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03ede42f4d06e90a5208cc9ee203eec02a690d9a', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87453ec6e5c563dd5da7f66f568642e430761d24', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7d764a169fe12c707ba73bcbba9223dddc37a5', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2919500dbfb01b7d66dfe57c81cc9d71b0bf8e9', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c5860aa0e54364e7bfc37a6ff6eab6e9d2de59', '172.105.247.100', 1675435219, '__ci_last_regenerate|i:1675435219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c46ee717f700221de585d5eb3581bc99b6caa22', '172.105.247.100', 1675435220, '__ci_last_regenerate|i:1675435220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42b0fc335cb75f3ef926b79dc2bc9b7dc6f98e6', '172.105.247.100', 1675435220, '__ci_last_regenerate|i:1675435220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67410fc861282ca22f7678a6b90d753e59f17309', '172.105.247.100', 1675435220, '__ci_last_regenerate|i:1675435220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3d405fab74c612cd128bd5c0a20f1aa2b5a101', '172.105.247.100', 1675435220, '__ci_last_regenerate|i:1675435220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b9c5676483e19fe38f4601edd2b9a2b940b0c8', '37.111.218.49', 1675437025, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675437025;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675437018;register_id|s:3:\"330\";cash_in_hand|s:8:\"870.0000\";register_open_time|s:19:\"2023-02-02 20:50:06\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab39b6a09c7161a55aa5e1f89bfb8a31d83e1e9', '37.111.218.49', 1675437173, 'requested_page|s:13:\"admin/welcome\";__ci_last_regenerate|i:1675437025;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675404587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675437173;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ec1df6ef660782f2fc2b5b33dd751a0513811c', '205.210.31.41', 1675438485, '__ci_last_regenerate|i:1675438485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4551e71325d1e4fbd7f5ceca504886918dd9f083', '172.105.247.100', 1675439417, '__ci_last_regenerate|i:1675439417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b47f7bd951a3e2bd5eac9d69f46716b37f015d0', '172.105.247.100', 1675439417, '__ci_last_regenerate|i:1675439417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c238151071acecdd32e5c414bbe70046b590e82', '172.105.247.100', 1675439417, '__ci_last_regenerate|i:1675439417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1fa4ec2b161342fecd564c2987834c24486d2f', '172.105.247.100', 1675439417, '__ci_last_regenerate|i:1675439417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ab8bf2e7a957cbd5fbbae10390b0b119963439', '172.105.247.100', 1675439417, '__ci_last_regenerate|i:1675439417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2375319065ac96ffc6c3fec2a2d31ffeccb57dcc', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab4ea80d0ee6d5e03643b1142e363a1f99986c7', '172.105.247.100', 1675439417, '__ci_last_regenerate|i:1675439417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82647cca983ae68e36b9fc25a00dc1612bad53a2', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91b73329fcf771e0e1182b85ee586ec26621b6c', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374b71615e41a98ae1bb733fc7a1916bb122bf3b', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c075749b96e83c07ea9ee0fd885ac187baccb2', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c47bfec6b30ceabb5edeeed9a7d281f619893c', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db83924c170f8111d4b3b455c0e04ba2fe5125f5', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6badb9459275d6e01319096fa89cb9bba444962a', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e9f4a5385b1668f28d07f9536ad5bf40efd988', '172.105.247.100', 1675439418, '__ci_last_regenerate|i:1675439418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae6a5231dc8b6519d780ec55e74b23c22436cf7', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714b81aa900bdedb7e17fdb29d6da26027e67c09', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c5d5f3ad3e7f28d16d0130b32dd7a00a3a4bea', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c03369a611039419601ea49ac1406701647dfb57', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3787eee44f4ded7e519f56855f3522f574060cea', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d085511198ef76c61b834c4cfa8bc67105f44796', '172.105.247.100', 1675439419, '__ci_last_regenerate|i:1675439419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc8c2bce39690583e1903fa097781e43639a46f', '172.105.247.100', 1675439420, '__ci_last_regenerate|i:1675439420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0c6c472393f76badfbb6039f74308339d4c446', '172.105.247.100', 1675439420, '__ci_last_regenerate|i:1675439420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fb1ac3cbb99dea61dc70524d248b8259a4049c', '172.105.247.100', 1675439420, '__ci_last_regenerate|i:1675439420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3575fb6b7a0ae9d6bf5b45ad6879b38a397b470f', '31.222.203.2', 1675441981, '__ci_last_regenerate|i:1675441981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24393c4113f34440f3b1845a9ea420fa32862cd6', '31.222.203.2', 1675441981, '__ci_last_regenerate|i:1675441981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f01c09ea4e32917e90e0016ac2f4f1c1bbeedf1', '31.222.203.2', 1675441981, '__ci_last_regenerate|i:1675441981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a09d6b76d6d605521f571ac84c4c184950d48fd', '31.222.203.2', 1675441983, '__ci_last_regenerate|i:1675441983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686a67568a5118430a392c17636de4aa6956e4de', '31.222.203.2', 1675441983, '__ci_last_regenerate|i:1675441983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4323aebcffe30158f6f7f971fe98bb9853c5f42', '31.222.203.2', 1675441983, '__ci_last_regenerate|i:1675441983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('921e4e13958547dc62ef6c4c6cf4520461c77694', '31.222.203.2', 1675443865, '__ci_last_regenerate|i:1675443865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe1207a63150804ec0d850d65d5c327fd04eed3', '31.222.203.2', 1675443865, '__ci_last_regenerate|i:1675443865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240d0cd969c38637bb9154bb0df00b6ae1dc9e65', '31.222.203.2', 1675443865, '__ci_last_regenerate|i:1675443865;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e926716506c4bc7a17b0a2ee9e00b8670c9994ca', '31.222.203.2', 1675443865, '__ci_last_regenerate|i:1675443865;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ade9f414b56ba3e5aa411bb6d3db2bb9220a167', '31.222.203.2', 1675443865, '__ci_last_regenerate|i:1675443865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd85ddf42f6772e01cd799dcad9548e444d4763', '31.222.203.2', 1675443865, '__ci_last_regenerate|i:1675443865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3844ebec9ea7becd9225d370c8cdd8c4ca929a30', '172.105.247.100', 1675444819, '__ci_last_regenerate|i:1675444819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508566d294c8f6437a4abeccae0e612db775b451', '172.105.247.100', 1675444820, '__ci_last_regenerate|i:1675444820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c34ca2b8067bd4073f462759b57c865ca8aeb335', '172.105.247.100', 1675444820, '__ci_last_regenerate|i:1675444820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70fcb1b423c4f179d862151948aa0b23b9dae3b4', '172.105.247.100', 1675444820, '__ci_last_regenerate|i:1675444820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f963617bb18f0e7648667e6a0822b280ced7bee0', '172.105.247.100', 1675444820, '__ci_last_regenerate|i:1675444820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34453e74706bcc718caeb5b0295398951449dfb6', '172.105.247.100', 1675444821, '__ci_last_regenerate|i:1675444821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ab3c9f8fb9c18dc8ef225b776ae6d5dfdbcf48', '172.105.247.100', 1675444821, '__ci_last_regenerate|i:1675444821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddbdf9e610f6d3176da39c3424de6c6429256597', '172.105.247.100', 1675444821, '__ci_last_regenerate|i:1675444821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e194109b3049299509aa9ddfe6cf190011fd648', '172.105.247.100', 1675444821, '__ci_last_regenerate|i:1675444821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8aec32716e65fc8ae1b0eda0d3c93f36e444d1f', '172.105.247.100', 1675444822, '__ci_last_regenerate|i:1675444822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f25bd85a06d4e463797343cf3efb6cfc1c73812', '172.105.247.100', 1675444822, '__ci_last_regenerate|i:1675444822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc5010da9fe5cd3e935993285872dfc6d31a7b3', '172.105.247.100', 1675444822, '__ci_last_regenerate|i:1675444822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b33553d582254780ca9d8d2f0cec9ac1255918a', '172.105.247.100', 1675444822, '__ci_last_regenerate|i:1675444822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b3a668b1db4c4991659e8d6a9b7ee339a146880', '172.105.247.100', 1675444823, '__ci_last_regenerate|i:1675444823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a6d14db1db4309f54b031939bd7323b5584b80', '172.105.247.100', 1675444823, '__ci_last_regenerate|i:1675444823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a38bd8a0ec70ab0f3d8967b6ae082456a91708', '172.105.247.100', 1675444823, '__ci_last_regenerate|i:1675444823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8261c14040fdff16b9f0a04229c8a1d8f790b2', '172.105.247.100', 1675444823, '__ci_last_regenerate|i:1675444823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7150b2a8dffe190e5d51df98cb0406215c8b97e', '172.105.247.100', 1675444824, '__ci_last_regenerate|i:1675444824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d983fc06839be683bae83a5db52b8f47aa5c46', '172.105.247.100', 1675444824, '__ci_last_regenerate|i:1675444824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de24b4c3b68b1fec2f413d8ac2c5e1f6a7a6bc2f', '172.105.247.100', 1675444824, '__ci_last_regenerate|i:1675444824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('475f3227071e14d21f3f4fd82bd78201b4390ead', '172.105.247.100', 1675444824, '__ci_last_regenerate|i:1675444824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e493761fd02c0949000f1089f70812e889275f', '172.105.247.100', 1675444825, '__ci_last_regenerate|i:1675444825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9865fdf00e797e90c70e6f62de3f5022f86157b8', '172.105.247.100', 1675444825, '__ci_last_regenerate|i:1675444825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6881b92fa7c75a3ec4021ebc11c0bae4f3a282fc', '172.105.247.100', 1675444825, '__ci_last_regenerate|i:1675444825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5525bbfc83640d748d1d9881a80356ef2a2663', '31.222.203.2', 1675445702, '__ci_last_regenerate|i:1675445702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb01ddd2d1c9e3b1033f3e936e5dd3923145398', '31.222.203.2', 1675445702, '__ci_last_regenerate|i:1675445702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d976bc9e3c9d1ad8b842619684bd462a89eded26', '31.222.203.2', 1675445703, '__ci_last_regenerate|i:1675445703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61b97b03eb44254ca55b1f9fe0e3b37178d8ad5', '31.222.203.2', 1675445703, '__ci_last_regenerate|i:1675445703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f60786a1c29825a4efaf9e19ed99e24b8c8ea4', '31.222.203.2', 1675445703, '__ci_last_regenerate|i:1675445703;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e498331bbfc944c64105a29d8297857b4db7b78d', '31.222.203.2', 1675445703, '__ci_last_regenerate|i:1675445703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b70f95e4d5ec49df8b9fafecbc89b5d440ff8c77', '172.105.247.100', 1675450220, '__ci_last_regenerate|i:1675450220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc91e980d1dd3de7567ab9a918895c3deb5063b', '172.105.247.100', 1675450220, '__ci_last_regenerate|i:1675450220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('565603137b11881d688d56902a230d266d14a849', '172.105.247.100', 1675450220, '__ci_last_regenerate|i:1675450220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be250dc803178f965381e937618a7176a230dde9', '172.105.247.100', 1675450220, '__ci_last_regenerate|i:1675450220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc55d886c00b8ba2b4df61fb187f2945da3e281e', '172.105.247.100', 1675450220, '__ci_last_regenerate|i:1675450220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2c15a8b3456256e008c8b90ec1047a6fd613c3', '172.105.247.100', 1675450220, '__ci_last_regenerate|i:1675450220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06175d3aa458b88ec060e869cb026183755f5772', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0cc96a3a6317b00ee496de0fa5de4a3128d8a9d', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('787d9ae789fc3cf2e73456fd4c622e16532aa622', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26cf71bfab3203311ed201a2b6d9c2dd17f9eb97', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8698d7129b0094f45d54f98c085f079ead2bfa8a', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9611ce0c58e3ccbcb3c70b1d38268a8dc4586914', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b20d0c8ac5da49760bb5f2c280517aaaaaaa7f2', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1de79954b86b657df153495363b3e97229cf56', '172.105.247.100', 1675450221, '__ci_last_regenerate|i:1675450221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ae18ca714607b22450b209b647d574787d2bde', '172.105.247.100', 1675450222, '__ci_last_regenerate|i:1675450222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('724f185d736b1eb4e1a55088596fafd67f21fdc4', '172.105.247.100', 1675450222, '__ci_last_regenerate|i:1675450222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51122c97a5ad1cdd9baa0f2559ac7c76d5201826', '172.105.247.100', 1675450222, '__ci_last_regenerate|i:1675450222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718cefa267b07f77ce8a810dbd098987915e425c', '172.105.247.100', 1675450222, '__ci_last_regenerate|i:1675450222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44faa2cf74f19280f81e991431bc5f882224a4c', '172.105.247.100', 1675450222, '__ci_last_regenerate|i:1675450222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26b8aa62760313c96deb4fa9f094247746f30b03', '172.105.247.100', 1675450222, '__ci_last_regenerate|i:1675450222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0beac9190b9fb8749ad9c13c22937494370fc7e', '172.105.247.100', 1675450223, '__ci_last_regenerate|i:1675450223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be14aaf53d7a1fdbe71ee801e33f65e2ccf19e2', '172.105.247.100', 1675450223, '__ci_last_regenerate|i:1675450223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea566bc568f9e8c487dfa47ea56a66d2a00ba57', '172.105.247.100', 1675450223, '__ci_last_regenerate|i:1675450223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32648880fa65bc9341ff6418682e006f08d3faec', '172.105.247.100', 1675450223, '__ci_last_regenerate|i:1675450223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbcdf98366e480f61ff6d80fe1d11a2641805a7f', '31.222.203.2', 1675454585, '__ci_last_regenerate|i:1675454585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d26a9a9c02cfca2fc8934b8e69480ae760b469', '31.222.203.2', 1675454585, '__ci_last_regenerate|i:1675454585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dbbf63357e35ccd44d417a63c84215fd32c43ad', '31.222.203.2', 1675454585, '__ci_last_regenerate|i:1675454585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d7742cb9f657a4c9a20277c5b633e8dfc3a7efb', '31.222.203.2', 1675454587, '__ci_last_regenerate|i:1675454587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e8678d0c6f18f05b267a280eef899d4fb2f515', '31.222.203.2', 1675454587, '__ci_last_regenerate|i:1675454587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff02639d33e49d60ee8784b0a0bfc61edb311fc', '31.222.203.2', 1675454587, '__ci_last_regenerate|i:1675454587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56676e1ef22641ca9c72bd219ce8aaf5c9cce1f1', '172.105.247.100', 1675456216, '__ci_last_regenerate|i:1675456216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665b60a458a673daa8bf4e17c24a59d54eb92adb', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e723c29be5b8c15716dac7147ef559c24e84d6', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd06c9eb9fd30d77fea4e34cff1e8e9161e9991', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d386dbfe5adfb5d5c833e30e6009b38b9a3ffa', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6ab5984b5c674eae9bd62f9c1e41ae80e32bc0', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121fcb495a17089c54bc7133cb4985e5e6c5f384', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6170b37929c16fc3e97d38730684dce73108848', '172.105.247.100', 1675456219, '__ci_last_regenerate|i:1675456219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5df41517f193600069effa9f3edeabca605406', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ea7d08eae9a56594477919fa07d994a1b6d1e0', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9930bbd5d9221b31a70da4d67b0a37450c32a1ce', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5468c66f0ddd0e8cbc76ce54fb58c9406cfbb780', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb9a023e7372d27e9a633175eeba4f07ace2b41', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1c47783808da8443751158ae0f9a7cb929ccbf', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd7231f663123d5548d0143ef7e75a5f2ef9307', '172.105.247.100', 1675456220, '__ci_last_regenerate|i:1675456220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdbc6804338a6f0a71644b49d1f34bab126605dd', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63750446cfa9ad450633a518c1aa05655b2c9d2', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c15af9fa3ae74179dda12e116962c4c49edb65', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ba53a11cb36b70091fdaeae23db7ff6c3d9f116', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9e63a205e704f827135ebabf827fe77bd9ba08', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8a13522c070760c4753cff86e7ceea5e2c2f30', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cacf0e7715379175e203d1250a544e931d52126', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2699ccef2a7f7da6ef3068f00312738054e89e47', '172.105.247.100', 1675456221, '__ci_last_regenerate|i:1675456221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ff28e331c361d5829c8660d1c3d2ac5a85ad28', '172.105.247.100', 1675456222, '__ci_last_regenerate|i:1675456222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754448e6b79e844253c4b8b90a1fe7d5b51806e3', '31.222.203.2', 1675456501, '__ci_last_regenerate|i:1675456501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f986676c32c6a1200ad2a3c45a4b32bb4fde26a', '31.222.203.2', 1675456501, '__ci_last_regenerate|i:1675456501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78efb0d5b00d0770688bd01e8d51c9dc75bf315b', '31.222.203.2', 1675456501, '__ci_last_regenerate|i:1675456501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2f849c52173bd2556749442432eaa82ec5f6dd', '31.222.203.2', 1675456501, '__ci_last_regenerate|i:1675456501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d1cf5f42273a709085809376b32d32445e08eb', '31.222.203.2', 1675456501, '__ci_last_regenerate|i:1675456501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86dc863b48a5b7f6778d0e3d1fba8464c152b2cf', '31.222.203.2', 1675456501, '__ci_last_regenerate|i:1675456501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42884716df9d21711f6f340d2b2afe395947da23', '172.105.247.100', 1675461016, '__ci_last_regenerate|i:1675461016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0836599e0d85cd5999ce403b8593abfb4b5e90', '172.105.247.100', 1675461016, '__ci_last_regenerate|i:1675461016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893acb8ffe280ddad1f16f26a102e8f37417f2ee', '172.105.247.100', 1675461016, '__ci_last_regenerate|i:1675461016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8e70767fb01405199934064b459a60ff474e489', '172.105.247.100', 1675461017, '__ci_last_regenerate|i:1675461017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5536cad744c2c17ccc4ae4c115cb571191d76a15', '172.105.247.100', 1675461017, '__ci_last_regenerate|i:1675461017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb889f3b91ce5671a6ef0a95fed08a02ec8fe723', '172.105.247.100', 1675461017, '__ci_last_regenerate|i:1675461017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf75114948900d4623a179afa0a1609f6602bd5', '172.105.247.100', 1675461017, '__ci_last_regenerate|i:1675461017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90bac8cf8b3a10b3ba995689c7c24bec94bdf9f0', '172.105.247.100', 1675461018, '__ci_last_regenerate|i:1675461018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd816e0cd6394662ddfd037c5217d2f98ff1a236', '172.105.247.100', 1675461018, '__ci_last_regenerate|i:1675461018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff91ede63d519e8726115bb2cf5d496948430be', '172.105.247.100', 1675461018, '__ci_last_regenerate|i:1675461018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd85ebbdae86b060befdaa702d55589aa82f556', '172.105.247.100', 1675461018, '__ci_last_regenerate|i:1675461018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5dbf05ad01244de1b176aab0c0b68d5bb05d14', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c6094839a934d0e3b5417255561a8e5ceb2894', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8726d2f7c4a07de3357795f3bf03d4093250712c', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1b9fc04907762510cc63de0ba065c0c46f93c28', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44feee3a2ede8f352c5d4affeea0d0f1349b0d71', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1888188d721a4f8bb95df1093c04978d789f34', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f1c97a312b4b4e920abc397e56977a4d870371', '172.105.247.100', 1675461019, '__ci_last_regenerate|i:1675461019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adacf2efc62141cdc9e3fd4ae9ed8590972aaf44', '172.105.247.100', 1675461020, '__ci_last_regenerate|i:1675461020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('700ee824e909b90670501383ad35e22367163f56', '172.105.247.100', 1675461020, '__ci_last_regenerate|i:1675461020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050fe2c25be1f7aa6f5c84839a769117104a0a21', '172.105.247.100', 1675461020, '__ci_last_regenerate|i:1675461020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574c17063cf4e7c3accd6b9edc2a1ec4a830ac0a', '172.105.247.100', 1675461020, '__ci_last_regenerate|i:1675461020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e600d794db83c2613a36dce4ef5681d1ab8de28', '172.105.247.100', 1675461021, '__ci_last_regenerate|i:1675461021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d75224c39d3f28a5ac04a6bdcad0a44e0722453', '172.105.247.100', 1675461021, '__ci_last_regenerate|i:1675461021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab7e15d23d4cb873d89e2060fb5e58442397105', '31.222.203.2', 1675465392, '__ci_last_regenerate|i:1675465392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bf5856356e5cb8c3961e84a6fbed52fa8522c9', '31.222.203.2', 1675465393, '__ci_last_regenerate|i:1675465393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077f326fc222a9ef0cb189c98c9f6c0d4fa62df0', '31.222.203.2', 1675465393, '__ci_last_regenerate|i:1675465393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55e6b77106e82d5eb5c4c38856836867b3451109', '31.222.203.2', 1675465393, '__ci_last_regenerate|i:1675465393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05892205480cbf7f3b236b2cc8c22fbb742a658', '31.222.203.2', 1675465393, '__ci_last_regenerate|i:1675465393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1e3e1624c084b4536d42e5563cfc177e6eee2e', '31.222.203.2', 1675465393, '__ci_last_regenerate|i:1675465393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f65866dd8673fa8ce84134a18144ab493758f2ba', '172.105.247.100', 1675466419, '__ci_last_regenerate|i:1675466419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1593cc199893e98b8cd666815cf88b8eabb08e', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86201974eabc91a0df2a51a9286236fbf704b4ac', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71366bbe05fb1e81232634fba248b57c5621a30a', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acac2ff3f01110ca4d77c79f8ab56c9b96a08b35', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0faac7471ff49855dc91396960b41009e6e4bc63', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f408a202bd41bc81972f0688e6acf18ba863e4b', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd47b5bf54f924cc6878e6997d65169ccd3a67ea', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44ed432989026f6771578b5f89ff1f1fda67e0b3', '172.105.247.100', 1675466420, '__ci_last_regenerate|i:1675466420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a93d75416b8e4b5ec7490f565508c095713af4', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888f6316602ea6a796eff4061d0e5e39d28f3463', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa8a4a7477d34c530ddc9b023fae279a931119f', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('220fb86f831935f17fe1fa84a22644d980049b99', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899b14b845bbef70601f70378a8497b6337b9f6c', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35dafb5191359ec53d45a67c7b7002f8954cfbdf', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1bef2bfa1a843ac4147ef1fe22301eeb7f42e13', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1df77231718be62741151f43347de4354571097', '172.105.247.100', 1675466421, '__ci_last_regenerate|i:1675466421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e70aa77c777f073ff5e7b566d4cf37049f401fd', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85e8c7275b47a01fc1c144e025b5e05d89b44fa', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deea3b58a2c6da9b1f360b0efb33a99f3830b0f0', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b0548196b229496cd48e1aea4eac77f99eb696', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45543eae766b7e03f9dc8c62ccb9ee4212ac0591', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e168390aa0cefbd8870119053b93314064bb1d', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69264772f797f291433c645c6a11fbdf2eb27630', '172.105.247.100', 1675466422, '__ci_last_regenerate|i:1675466422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb84aa84bb114229980c7930bde928053eb829a', '172.105.247.100', 1675471815, '__ci_last_regenerate|i:1675471815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f3b1ae6c557466eea33e44b3a5f48680f5247e', '172.105.247.100', 1675471816, '__ci_last_regenerate|i:1675471815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5bf56e3c07b02d542a705d6d009087a9992c814', '172.105.247.100', 1675471816, '__ci_last_regenerate|i:1675471816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9a79f6ddec60267ee54616a1d0729266d8e7f9', '172.105.247.100', 1675471816, '__ci_last_regenerate|i:1675471816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e508327d9baa5733a0b8701df087e60e5bd807a3', '172.105.247.100', 1675471816, '__ci_last_regenerate|i:1675471816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb8351e3742bc1dcb73c2f74ac061d7c4c52ce0', '172.105.247.100', 1675471816, '__ci_last_regenerate|i:1675471816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f054d8f94bad7432111e43e70de566ccdf36b045', '172.105.247.100', 1675471817, '__ci_last_regenerate|i:1675471817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbace5117ff7f03a7accf4fb0f7afd957788345', '172.105.247.100', 1675471817, '__ci_last_regenerate|i:1675471817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1e5b529d42f0a44aff334f02e745656acf3816', '172.105.247.100', 1675471817, '__ci_last_regenerate|i:1675471817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829ca66f7a3a8d86c4306669ecc0824ac149d350', '172.105.247.100', 1675471818, '__ci_last_regenerate|i:1675471817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09427449659abf7069e8f0f77a9969dd39865437', '172.105.247.100', 1675471818, '__ci_last_regenerate|i:1675471818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9b897952cc55ac7e8a9190e37f7b1cbd056d53', '172.105.247.100', 1675471818, '__ci_last_regenerate|i:1675471818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77b4096da3f8a96d0720c55ff7a8226c1034279', '172.105.247.100', 1675471819, '__ci_last_regenerate|i:1675471819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4479d574751562f4bc82521966b3c86b4a47ee16', '172.105.247.100', 1675471819, '__ci_last_regenerate|i:1675471819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c2fd1a3bbee9ced9259a45d64376a824492d38', '172.105.247.100', 1675471820, '__ci_last_regenerate|i:1675471820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8eaacef1d731bb771c47bb4bfe217d0f772331', '172.105.247.100', 1675471820, '__ci_last_regenerate|i:1675471820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b120902c39877f2c47f20cd988c6a5079184cc', '172.105.247.100', 1675471820, '__ci_last_regenerate|i:1675471820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbab5196e75a79d28c1e9ed001ba0171323a1b35', '172.105.247.100', 1675471820, '__ci_last_regenerate|i:1675471820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16014fea2d587ece63435af5e61e4443af7d51a5', '172.105.247.100', 1675471821, '__ci_last_regenerate|i:1675471821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f096a598d1f7005d6ed95b991edda47ba48d9da3', '172.105.247.100', 1675471821, '__ci_last_regenerate|i:1675471821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da55717e7b9783f342c3ff837d068027eccd7fc', '172.105.247.100', 1675471821, '__ci_last_regenerate|i:1675471821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c1691e3bb71e15e017d7f6cde75c963e6b7828', '172.105.247.100', 1675471822, '__ci_last_regenerate|i:1675471821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958fcff5103aaa86e9553b9ef287b23752cdb213', '172.105.247.100', 1675471822, '__ci_last_regenerate|i:1675471822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('522c2179e39617e2afc430059e0d59ff6c2d12b3', '172.105.247.100', 1675471822, '__ci_last_regenerate|i:1675471822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3431993326c64bbf0b5939c91c6222f538ef1fa', '205.210.31.164', 1675472897, '__ci_last_regenerate|i:1675472897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0063e98944b9f07645ec494eef7eebc316e9da', '205.210.31.164', 1675472898, '__ci_last_regenerate|i:1675472898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d4224188e543003144eb048537f3201184948c', '205.210.31.164', 1675472899, '__ci_last_regenerate|i:1675472899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf67aa04c7028076e607b0b14f0ae1fc6e911cf6', '31.222.203.2', 1675474395, '__ci_last_regenerate|i:1675474395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be4b6e2c0ff87e4bf05ca7d3052e90bc88087b8', '31.222.203.2', 1675474395, '__ci_last_regenerate|i:1675474395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17eabfabcb40ee1b98a248580b78cbc2a89ca228', '31.222.203.2', 1675474395, '__ci_last_regenerate|i:1675474395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5166f95ab7284b8b6df27803d3c5ecc0c6c4193f', '31.222.203.2', 1675474397, '__ci_last_regenerate|i:1675474397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc497557eb5a9ba6019a2f579b7854f07376f5c', '31.222.203.2', 1675474397, '__ci_last_regenerate|i:1675474397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a840eddeb015cdf728f2881f904ce8ab3ddfc5', '31.222.203.2', 1675474397, '__ci_last_regenerate|i:1675474397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6562f0bb4655971dba5d00dea98083780afac3b7', '31.222.203.2', 1675476252, '__ci_last_regenerate|i:1675476252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e542627870d28f2d5a53a93763ca3ef3240464f', '31.222.203.2', 1675476254, '__ci_last_regenerate|i:1675476253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd00a04c0e0d19288e5b8f00a6ca5812ea4695e0', '31.222.203.2', 1675476254, '__ci_last_regenerate|i:1675476254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dda87ee7ebf4f2157ee7d55049c2ba101e96269', '31.222.203.2', 1675476254, '__ci_last_regenerate|i:1675476254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6233b86fd9a47a6438e0975c60adbb44e487d5bc', '31.222.203.2', 1675476254, '__ci_last_regenerate|i:1675476254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87940a58da89eae3d23352fc10628276bac2f219', '31.222.203.2', 1675476254, '__ci_last_regenerate|i:1675476254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1c568ed66b8f9cb3d6ecd0a6c51d3ba012b5cf', '172.105.247.100', 1675477219, '__ci_last_regenerate|i:1675477219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8653d48648ddbcaa72aeb02dac0233d3495278a', '172.105.247.100', 1675477220, '__ci_last_regenerate|i:1675477220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee1d7d3e6bf7f39d42a1ba12958b40d7e61eddb', '172.105.247.100', 1675477220, '__ci_last_regenerate|i:1675477220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfcdbde8c2a7b31948dc5366e6c680d0bd43d19', '172.105.247.100', 1675477220, '__ci_last_regenerate|i:1675477220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f672d5aa817123de94756cc1239cf04a91653aed', '172.105.247.100', 1675477221, '__ci_last_regenerate|i:1675477220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6665c07586ee672a429b4590b8e9279938f5dba1', '172.105.247.100', 1675477221, '__ci_last_regenerate|i:1675477221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6764ff233c3d4c3396dd6606e8cfb40ed6c59366', '172.105.247.100', 1675477221, '__ci_last_regenerate|i:1675477221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9406a14456096121dbc89851bec5a2d498ee0ce5', '172.105.247.100', 1675477221, '__ci_last_regenerate|i:1675477221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f169b9439568a53579c546174aa5df14ff8f967', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1b69c122f43010e7b3745cfd58c029b3290a3f', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91174b21fb4bf137e98ed0ca1c931916e7de2cbd', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc7662cfb7a4cc2798b4834a72a26141bfef480', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f3d9ef9549c6662b45a337b87061245977bd4b', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af679e2c797d5a1fd9b4e07eda8081e68ae4da25', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4241f4fbdfb2ced691294efa32b1dd82b3199fb3', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb2ca33520bfc08fef73c81f81a85c813f6cce9', '172.105.247.100', 1675477223, '__ci_last_regenerate|i:1675477222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45fa8267f3fdf156f9ef6a35964aea2c9643b5e', '172.105.247.100', 1675477222, '__ci_last_regenerate|i:1675477222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0716b741e98e52de75f8b28a7a47881f9ebac267', '172.105.247.100', 1675477223, '__ci_last_regenerate|i:1675477223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75922742e68604121dfb991247b2240b53de786', '172.105.247.100', 1675477223, '__ci_last_regenerate|i:1675477223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830a234e7dd15a5d73688d108e94f80202e516aa', '172.105.247.100', 1675477223, '__ci_last_regenerate|i:1675477223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('136b98c47721b360174a15c2879c4dc90267eec1', '172.105.247.100', 1675477223, '__ci_last_regenerate|i:1675477223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca4af1b4527b8751f596569239abe3e54e9f859', '172.105.247.100', 1675477224, '__ci_last_regenerate|i:1675477224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf97547b136e2723049095b330714112638a57f', '172.105.247.100', 1675477224, '__ci_last_regenerate|i:1675477224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427a60fc5fb680f3162053e93a6cbcbc09f48faf', '172.105.247.100', 1675477224, '__ci_last_regenerate|i:1675477224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c3739f67f281110861befd71e13938bea4ba002', '116.204.230.20', 1675479661, '__ci_last_regenerate|i:1675479605;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1671525226\";last_ip|s:13:\"37.111.207.87\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4052178c3e13fae8d276b668813c73fea20fd324', '172.105.247.100', 1675482615, '__ci_last_regenerate|i:1675482615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357e5eb408c149e044410a099fda7755f567909b', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5355a88f43e6c53f868cf45245d3c26bf969a55e', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cd5d3cd8ea792d13632bd343a67355ba49fccd', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d491fa91ed89ad608ee04981a3bdcb09d9a8afd0', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1c996034e865387b6002ea26dc0d217b72cf6f', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e5d1ebe38ceddf2835f23023f93b68617f3957', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b04f9b2672926ed98d678e4aaed335bc9d0db795', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5230baca704da9f1cee3adae7d5b524ae3cf57c7', '172.105.247.100', 1675482618, '__ci_last_regenerate|i:1675482618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d12c96b80985d88ad72aa9a9e415e79e00d85b', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb7fae0abc6d673bc5b3597cbf9df004408476c0', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3773b31fed47c39893416cb200362f6d3bf27a5', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd9a977a687068a9a8302ce6d9cc190786da698e', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355c096924bd778cedb87754b65de592466af733', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9584fac2f70ed022da4e5a5d64f559e1a889d4be', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35cfe50ba0ef4e736701b3407b45fcceb6ff7ab1', '172.105.247.100', 1675482619, '__ci_last_regenerate|i:1675482619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487315c772380bf015956ba3a95dd62e1dc2f37f', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04982f624647355245125f67c89877db97aa1a52', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d56c53b7e840965960ed1a2b248db469d14a70', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86689a2364be3bde98eb3935949f1327d31ca5d2', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28ae76a3786fa6ad20c1a63dec3d6a08dfefe72', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4249ee6ddc252b26277b07e4cab41b81e5ea5b68', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('567b34317ccd8a01f44f14a3e4cf47699e77393c', '172.105.247.100', 1675482620, '__ci_last_regenerate|i:1675482620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6329b1ad70365839085d0794cdffed74fb560332', '172.105.247.100', 1675482621, '__ci_last_regenerate|i:1675482621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f2efb9dc6210cc02c3269edef78ff7e61b7fbe', '45.120.39.89', 1675483534, '__ci_last_regenerate|i:1675483513;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675423424\";last_ip|s:13:\"37.111.218.49\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675483534;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f3d3f576ff8ec35a1f2a4278d9b6758f44105d', '172.105.247.100', 1675486826, '__ci_last_regenerate|i:1675486826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78afa18d9ef62f9cc446a0bd51f74ee5b61a446a', '172.105.247.100', 1675486826, '__ci_last_regenerate|i:1675486826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9437c7e81bb28eb959989a0f5a06192a16059e34', '172.105.247.100', 1675486826, '__ci_last_regenerate|i:1675486826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d86d98f2ba04358cf851d85fec3e27ac95f161f', '172.105.247.100', 1675486827, '__ci_last_regenerate|i:1675486827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a05c7d207a08f56f2c4a65f5ff01179d85fbf0', '172.105.247.100', 1675486827, '__ci_last_regenerate|i:1675486827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abb78570eb5a4e294acf4eef958b548e12660d81', '172.105.247.100', 1675486827, '__ci_last_regenerate|i:1675486827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cf4dc59c9a938ef1b2e6758cbd091424a5f53ea', '172.105.247.100', 1675486827, '__ci_last_regenerate|i:1675486827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205cb47597cb774de6dc51337b1170a748d71a2b', '172.105.247.100', 1675486828, '__ci_last_regenerate|i:1675486828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44500a70d4f40e88339ac64dfa5697f29cde278c', '172.105.247.100', 1675486828, '__ci_last_regenerate|i:1675486828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3405dd92975a3e3c410258a9dba3846b1f9f4369', '172.105.247.100', 1675486828, '__ci_last_regenerate|i:1675486828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61201f2cfd8b576902363410a3b132e0419d22fb', '172.105.247.100', 1675486829, '__ci_last_regenerate|i:1675486829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9d0bc045e384bd87e6615a142f79cecddaae23', '172.105.247.100', 1675486829, '__ci_last_regenerate|i:1675486829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f16b28c6cfab18d0941c81a3f7fad5f69606986', '172.105.247.100', 1675486829, '__ci_last_regenerate|i:1675486829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1544510bf74dfcee8e9b48bb1fce1a70b55c35f4', '172.105.247.100', 1675486829, '__ci_last_regenerate|i:1675486829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8667f12afc303f46c0a5328b3318a0ee7b720d', '172.105.247.100', 1675486829, '__ci_last_regenerate|i:1675486829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e967b86dcfa8190ef8b739ceb9200cc73bc19542', '172.105.247.100', 1675486830, '__ci_last_regenerate|i:1675486830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a10694cae2844ee810415c9c3658328433d1b07', '172.105.247.100', 1675486830, '__ci_last_regenerate|i:1675486830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5e074e73ca94cbb2f4621b8b3906c2f6a8dbdf', '172.105.247.100', 1675486830, '__ci_last_regenerate|i:1675486830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0bf5906226f7398289ff3bb64e7a6b64c17dca', '172.105.247.100', 1675486830, '__ci_last_regenerate|i:1675486830;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c33febc2a28c88253109e00ef0fa4636e803dd6e', '172.105.247.100', 1675486831, '__ci_last_regenerate|i:1675486831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b03592b762159f2df368199e780d68f9f4770c2', '172.105.247.100', 1675486831, '__ci_last_regenerate|i:1675486831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d682c848f0d89657326817d2e1e694c77fda6ae7', '172.105.247.100', 1675486831, '__ci_last_regenerate|i:1675486831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc88d83a21ce142079eac049a7c3c4041c53d5f5', '172.105.247.100', 1675486832, '__ci_last_regenerate|i:1675486832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0bb5d0960a9f542467107fab4985a83e7c4628', '172.105.247.100', 1675486832, '__ci_last_regenerate|i:1675486832;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc36bfb80fe022c4edcb7c7b70b03e808be112da', '31.222.203.2', 1675487000, '__ci_last_regenerate|i:1675487000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296ed171b77395dd7eab2d1d8267ebfbef2c4a72', '31.222.203.2', 1675487000, '__ci_last_regenerate|i:1675487000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a81feac7247d34fff777345adaf5aa4bf92ff1', '31.222.203.2', 1675487000, '__ci_last_regenerate|i:1675487000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb0c976c5c9245f41cddf3fd7464b9bef10e25f', '31.222.203.2', 1675487000, '__ci_last_regenerate|i:1675487000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ea6971f94732a59fd43377d4f7990c0774a65b', '31.222.203.2', 1675487000, '__ci_last_regenerate|i:1675487000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d30ed307830baf44c275ef3f4be57d9dde30d0', '31.222.203.2', 1675487000, '__ci_last_regenerate|i:1675487000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1dea476b1b9d441723c2267ad6688b1ca7e1419', '31.222.203.2', 1675488852, '__ci_last_regenerate|i:1675488852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4587b5058694530465aaaa97b2abb2aca2b8953b', '31.222.203.2', 1675488854, '__ci_last_regenerate|i:1675488854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5960fd91cd1263726e36d5fb24b89abdd45e06de', '31.222.203.2', 1675488854, '__ci_last_regenerate|i:1675488854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01bd12bbaf93ca0b55681e118b1bccf19a78a4c', '31.222.203.2', 1675488854, '__ci_last_regenerate|i:1675488854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111835cafbcc09f95b80342c84ea50aa943867f5', '31.222.203.2', 1675488854, '__ci_last_regenerate|i:1675488854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346f2163e326bae5c552e5b29483f2a72fa0cc25', '31.222.203.2', 1675488854, '__ci_last_regenerate|i:1675488854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b9be129b473d932576a04efc03144f190d86eb', '45.120.39.89', 1675491729, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675491729;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675491724;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77530c366ffb0fb7554975a61ce3b534d014495e', '172.105.247.100', 1675491617, '__ci_last_regenerate|i:1675491617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6947dd5c001a55e2ea329a724703ee681e91c06', '172.105.247.100', 1675491618, '__ci_last_regenerate|i:1675491618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9017423c8940b37ff098d791f3f9ccd34a0438', '172.105.247.100', 1675491618, '__ci_last_regenerate|i:1675491618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769d9e4d7bd8b88f2c3ba12983b9c322ab4e0e1c', '172.105.247.100', 1675491618, '__ci_last_regenerate|i:1675491618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b135f139ce8bb579b38c79528da4db67074bef6', '172.105.247.100', 1675491618, '__ci_last_regenerate|i:1675491618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3a3e15d402b0fe80d8ef90fe3d348969856a25', '172.105.247.100', 1675491619, '__ci_last_regenerate|i:1675491619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff5e86202c6166400cb93cb9570543b39ee8b128', '172.105.247.100', 1675491619, '__ci_last_regenerate|i:1675491619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51eedb37d4d2d75a7fd18edda700452495e8f67f', '172.105.247.100', 1675491619, '__ci_last_regenerate|i:1675491619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f0b35363659ebbb3ee5741a2462eed9a407a9f', '172.105.247.100', 1675491619, '__ci_last_regenerate|i:1675491619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d369d2b54bf1bc46eea2e505d996f5a01e2cf76', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('326303f695e9b913d102be1a7ebd5bd9866e261e', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1db7da5a64b564d36d0d8fb61eb6ec6c514a9c8', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1891e20ffd938165a413ed3fb75289e7c6657363', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a747a42250493dca758d162f0fbf1d86411860af', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8464116aabc91b2cf385719df4956df7d352f68c', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf98186ac1d42bb618ceee7af31c608f083ee0e', '172.105.247.100', 1675491620, '__ci_last_regenerate|i:1675491620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0b6f76ecfc71e04fa5dfdbd476fb3c7740df2c', '172.105.247.100', 1675491621, '__ci_last_regenerate|i:1675491620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a488c3ad4a15792c3a411622c7feda7eea06d4e2', '172.105.247.100', 1675491621, '__ci_last_regenerate|i:1675491620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27cc67c5d3c04a88385a97c6a5289426e227adc8', '172.105.247.100', 1675491621, '__ci_last_regenerate|i:1675491621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b477ba2295b0566edede135ca634252a2833ee', '172.105.247.100', 1675491621, '__ci_last_regenerate|i:1675491621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e00bf0ae813e9c20132b3609b360d7c913e994d', '172.105.247.100', 1675491621, '__ci_last_regenerate|i:1675491621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b484db165aa1b9ca096b8a444ac7dbad44305620', '172.105.247.100', 1675491622, '__ci_last_regenerate|i:1675491622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aaa4e43637fab79c92db10fedb15736696506a5', '172.105.247.100', 1675491622, '__ci_last_regenerate|i:1675491622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003cbc7dc852977ffe32d4c3c901916caaa67829', '172.105.247.100', 1675491622, '__ci_last_regenerate|i:1675491622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef0e2e55e3e1ac1930609a70c3fbbd97aaf8d229', '45.120.39.89', 1675492396, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675492396;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675492388;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a699465286cf3ed57b2c193f8e193381cefbf70', '116.204.230.30', 1675492278, '__ci_last_regenerate|i:1675492273;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675400441\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79449615be7de298642fe2a84f1c0b78ffd06551', '45.120.39.89', 1675493429, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675493429;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675492414;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a34fb68e837871c7b5140d6d0a421cab7a92c2', '45.120.39.89', 1675495742, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675495742;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675495705;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6749c9bfbd20ea3ea8ccbe3f9fc7dcb67751232e', '37.111.217.101', 1675498121, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675498121;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675495806;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79db458c73b2986cfb698a30edd1313bccec9ce3', '31.222.203.2', 1675496009, '__ci_last_regenerate|i:1675496009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc29a828ef3cc9961374f6d9d4b882fff36b032', '31.222.203.2', 1675496009, '__ci_last_regenerate|i:1675496009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ff42ff376051ad3d5be629c9fc0a0e9a86bcda', '31.222.203.2', 1675496010, '__ci_last_regenerate|i:1675496010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2872627900421ff97ba208aefd4fd3d865116be', '31.222.203.2', 1675496010, '__ci_last_regenerate|i:1675496010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef3f0cd936755af8a20f090a5c9811a25a71628', '31.222.203.2', 1675496010, '__ci_last_regenerate|i:1675496010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a9f776c4f930076dd422ebbd9830381e144c99a', '31.222.203.2', 1675496010, '__ci_last_regenerate|i:1675496010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c41d03a09297180cbeca644d18b77bace24b5d0', '172.105.247.100', 1675496420, '__ci_last_regenerate|i:1675496420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b30129975bc40b29ede52a233a3f78b582f893', '172.105.247.100', 1675496420, '__ci_last_regenerate|i:1675496420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e950f6dcf54577ccfa67e22141c50ef6746dcc', '172.105.247.100', 1675496421, '__ci_last_regenerate|i:1675496420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b6e48f31e86537894425227b1703ba187770a0', '172.105.247.100', 1675496421, '__ci_last_regenerate|i:1675496421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8a1a9f44e4a68d8453e2dabcd816b68a917b52', '172.105.247.100', 1675496421, '__ci_last_regenerate|i:1675496421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521997886ff4ceb55831322e2a4b9e5bff2c62ea', '172.105.247.100', 1675496421, '__ci_last_regenerate|i:1675496421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6650d67ba055c600399bf6e4b0f28810204e27', '172.105.247.100', 1675496421, '__ci_last_regenerate|i:1675496421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae6bfef80a683e93336bad52e6e20e53eb1a156', '172.105.247.100', 1675496421, '__ci_last_regenerate|i:1675496421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a96793e07ecd6b723107e52a0e7674cbc16d590', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02059e07be776c956b480b8d0500ba79963a195c', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38cc5c91725ebe4ef9a0d838db7dc2a336617ef', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f747d85bbb9da868c14f16a45b1112c6afab14', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744097c63b1c63551e43a5d423b81c71d98c3e88', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ce8501ab967cb94432ab25cb670b5ef649ea9a', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817488dd1b144e3e52ab45697cfdf12a4fbca63f', '172.105.247.100', 1675496422, '__ci_last_regenerate|i:1675496422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb01c39d3df1b60ed50b82a899c7beeae68edd4', '172.105.247.100', 1675496423, '__ci_last_regenerate|i:1675496423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad323c95cbd6d1d0193d17939e8bdb3ecb4a23a', '172.105.247.100', 1675496423, '__ci_last_regenerate|i:1675496423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6749bb52790f05e6ee13aa22759593babff384', '172.105.247.100', 1675496423, '__ci_last_regenerate|i:1675496423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd7a1c56a225fa988b89786de5d2ce9193c3d78', '172.105.247.100', 1675496423, '__ci_last_regenerate|i:1675496423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca36abacc0095636c5009cf7b9a65482dffa97d', '172.105.247.100', 1675496423, '__ci_last_regenerate|i:1675496423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2083478a55d7f8bc5e96606787a7e6865a78a831', '172.105.247.100', 1675496423, '__ci_last_regenerate|i:1675496423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d6088be8eeb1a571a5088b266523e0a1c20990', '172.105.247.100', 1675496424, '__ci_last_regenerate|i:1675496423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37132c96a9e7f6cfe1e785274bc2a30bc8e5175d', '172.105.247.100', 1675496424, '__ci_last_regenerate|i:1675496424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d95e8e38aaf295b7180a5c7122ebc0a7e23433', '172.105.247.100', 1675496424, '__ci_last_regenerate|i:1675496424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3716024aa46cf2daf0d46358153407e6a0f81d8e', '37.111.217.101', 1675498471, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675498471;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675498331;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d42a0e69a0cf5a8eeffda1d352de30636887d542', '37.111.217.101', 1675500030, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675500030;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675500008;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d032afe4b9a9b37668316774295d51a8aa47bd32', '37.111.217.101', 1675500034, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1675500030;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675483518\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675500033;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44e62376852fb7e112f38103f9f594f29985c752', '172.105.247.100', 1675500619, '__ci_last_regenerate|i:1675500619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93426ee6d78c872ce168fa0afc0cabd9b7d5f0df', '172.105.247.100', 1675500619, '__ci_last_regenerate|i:1675500619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8ff1b033bb24563ec80536ed1d4c9ce955eb9c0', '172.105.247.100', 1675500619, '__ci_last_regenerate|i:1675500619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eadea03671204b88bb402367eb0156218121ff86', '172.105.247.100', 1675500620, '__ci_last_regenerate|i:1675500620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37773bddf54d01cf40ed563edac7d3bfd9a9588c', '172.105.247.100', 1675500620, '__ci_last_regenerate|i:1675500620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('043c7aad43e027737f33ba59f72c18291ebffac2', '172.105.247.100', 1675500620, '__ci_last_regenerate|i:1675500620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22a5d060761babcc17952a9c6915b2d468f592f6', '172.105.247.100', 1675500620, '__ci_last_regenerate|i:1675500620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dab1cad3dfb62f71f831102d5e67f2518b37c6a', '172.105.247.100', 1675500621, '__ci_last_regenerate|i:1675500621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dcc26ae88022f700757dd706f56f77964076367', '172.105.247.100', 1675500621, '__ci_last_regenerate|i:1675500621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e74767cab8e6282c1419e9f09063b741fc452b3', '172.105.247.100', 1675500621, '__ci_last_regenerate|i:1675500621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24319fb5305aede574f2a81358506ac744402432', '172.105.247.100', 1675500621, '__ci_last_regenerate|i:1675500621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb2a3160710a0d434aafad08dc86b55b71615b9b', '172.105.247.100', 1675500622, '__ci_last_regenerate|i:1675500622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27e8c17659fb2e9dfdbe132d46f09e101f8dc81', '172.105.247.100', 1675500622, '__ci_last_regenerate|i:1675500622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c3fabfd7946784269dcc6281c34ff39e7fec5ea', '172.105.247.100', 1675500622, '__ci_last_regenerate|i:1675500622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8d3cc45f2cac872fc0494a63817f061c7b8f0d', '172.105.247.100', 1675500622, '__ci_last_regenerate|i:1675500622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83cff5fb2087bc0355a7af8403778e2f53e9fbdc', '172.105.247.100', 1675500622, '__ci_last_regenerate|i:1675500622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9316cc31ab3d891bbc1fc6b6babff9452e642899', '172.105.247.100', 1675500622, '__ci_last_regenerate|i:1675500622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3e308dde2ec5ff836d63d9b734da0ba1a0231d', '172.105.247.100', 1675500623, '__ci_last_regenerate|i:1675500623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8921ca3f311935ba00ade214182986f65f476b', '172.105.247.100', 1675500623, '__ci_last_regenerate|i:1675500623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d58daf92d2ec59b990a7baf761f103c9eae37ab', '172.105.247.100', 1675500623, '__ci_last_regenerate|i:1675500623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18268dfe9b08949f78152f185b125a7d49c28460', '172.105.247.100', 1675500624, '__ci_last_regenerate|i:1675500624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe58fb63189cdd4b6febc94ca5b1c5d7cd750a44', '172.105.247.100', 1675500624, '__ci_last_regenerate|i:1675500624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a27e50eb445309ce39a65c3e076a0a8f118eac', '172.105.247.100', 1675500624, '__ci_last_regenerate|i:1675500624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cdbea7aa217262084a12efb2c106925a029ec20', '172.105.247.100', 1675500624, '__ci_last_regenerate|i:1675500624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3cdbc9def01b18d195b1466d321b7771bab89cc', '31.222.203.2', 1675503179, '__ci_last_regenerate|i:1675503179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17af971b4e9c1fc8cf35fd3dfc15028f8d60b209', '31.222.203.2', 1675503179, '__ci_last_regenerate|i:1675503179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2433935fe6e99ac702fd04392f1243aa0d95af18', '31.222.203.2', 1675503179, '__ci_last_regenerate|i:1675503179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52bdc970366b9b1823bc4325d2f542ac490d3d74', '31.222.203.2', 1675503181, '__ci_last_regenerate|i:1675503181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dcf3cacf78d4d4863c8ff07adaa3ad6fcfbf439', '31.222.203.2', 1675503181, '__ci_last_regenerate|i:1675503181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6229efe87630eb040b2d8ed2cf682caae46653', '31.222.203.2', 1675503181, '__ci_last_regenerate|i:1675503181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a950338e1b992b5ed234abccfae24cf4b6cd19a2', '31.222.203.2', 1675505056, '__ci_last_regenerate|i:1675505056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1589c91248b2f05526fb5b6ba08bed64e2a33914', '31.222.203.2', 1675505056, '__ci_last_regenerate|i:1675505056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5526af3a08378b78f2c526d96f5d256e718e91f0', '31.222.203.2', 1675505056, '__ci_last_regenerate|i:1675505056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf7d4d5a58ed4bd6702ed4b1460834143b9e74e', '31.222.203.2', 1675505056, '__ci_last_regenerate|i:1675505056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4babb6efc7bab50f89f115c1d1c105e10c449470', '31.222.203.2', 1675505056, '__ci_last_regenerate|i:1675505056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef28b4430e4fd67d4c5964e38a78ed73b7b205f', '31.222.203.2', 1675505056, '__ci_last_regenerate|i:1675505056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d93644737f64516b132bcc4707b9c9f428f898', '172.105.247.100', 1675506019, '__ci_last_regenerate|i:1675506019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e621d74bfbd5cc2ad44ec9cc284f19f832bf48f4', '172.105.247.100', 1675506019, '__ci_last_regenerate|i:1675506019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae9b1ba98bd07afe25bd0db0b3b0d6c3a130606', '172.105.247.100', 1675506019, '__ci_last_regenerate|i:1675506019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24cbdafbdab7942534fa95cfa83f48d8146c11d3', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('841e79023832937c502411d2bdd01be553154d07', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f392c7f1e092cf44626113f243c08cd1026622c4', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c773c646013813499d733be5a5d8dc5ba8899d57', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8e05ba82ac68acdd5643174f2ae27d5207b4fe', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01015cd943469c3fe0b1776a947bddf48ba8f83', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169abac164d189ffb1e97549fbe32532452a0c36', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37a439bb6afc265efe4253b129fb0c82175818a8', '172.105.247.100', 1675506020, '__ci_last_regenerate|i:1675506020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f90d52f7f97062478155d6646c5aff1d6a183a', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53054e0f48640e169138723df64d192c833bcd53', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d41b0c50edbf52ff6a5f84d8025bf725b99e05b9', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f65ec5629514b9a5a268caffdfd2895c50def0', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1e9e1df5fd1ad8f2186293feeee1b357910ccd', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf31abe860b7b5c63e1d9a4313cab6d33ee20e39', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02161a088f7c33d4c7ec9e0ca598b7aa679e10bc', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16031116106c3d6bfe72e12edd08901c32084694', '172.105.247.100', 1675506021, '__ci_last_regenerate|i:1675506021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ae88b32d5cf2ed9a3cc9e74dfa700d15d92e5a', '172.105.247.100', 1675506022, '__ci_last_regenerate|i:1675506022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26282782d6a234cc6801852a8d4db947629db9fb', '172.105.247.100', 1675506022, '__ci_last_regenerate|i:1675506022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a54b727ad00a8012ae1622539e3b563e3e0ac4d', '172.105.247.100', 1675506022, '__ci_last_regenerate|i:1675506022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f289acd9bf681ab165fa32f165ad25cc1f0e0be8', '172.105.247.100', 1675506022, '__ci_last_regenerate|i:1675506022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5534901fa7bccd09b7ac7b177685de595661ba', '172.105.247.100', 1675506022, '__ci_last_regenerate|i:1675506022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a114793a29b34e6e617f3e0fb8341a71c91d86c', '172.105.247.100', 1675511418, '__ci_last_regenerate|i:1675511418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12f5e8f50872deddfd6355b01490d15abaf85d4', '172.105.247.100', 1675511418, '__ci_last_regenerate|i:1675511418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7887a42958329dcf09a84c83d57f28a3a5547cd5', '172.105.247.100', 1675511418, '__ci_last_regenerate|i:1675511418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461fe0a2616b0147efdc2eb1e6553cdcba6d6787', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb2c86b1562bb3e4a4e01a30c81cd7a7fafb5a0', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37921a5ea64408ae37d7a61777cfd5ec7e9ebaa8', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d49d17567089eb983519c9974b433dbbc243d3c', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0f28ff9fbf275642457bc7f634cad4e724c6cc', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21302833ba509a1539cb7c897ab79e62566bc49', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14bd8761ac764ece5d25db7003e3986687a9a5f7', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7771280fc5dd58f3ba601db672b681dbb2df726d', '172.105.247.100', 1675511419, '__ci_last_regenerate|i:1675511419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15974f6c9b23679ae12d515141dd1798b890a4f8', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eccdb8f14fbb2a27e3901fe22742bb8f0b1ed0b9', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5396f984e07bea7f7b78a2f526a30dd20ef14963', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7dbade2732150a4d0c95c04b4ffb125183ab7db', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4a81c0074ce3fc4238249957913be8c7f16f26', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69358997116be9164e9a08ba8f1da7c903fcda97', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446c54be785ff7246c15d6efac74df968a3bd859', '172.105.247.100', 1675511420, '__ci_last_regenerate|i:1675511420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f4a90dfdd019a0da02740c8e268349ce3f9573', '172.105.247.100', 1675511421, '__ci_last_regenerate|i:1675511421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63d2777d064d040e95a0629fc9234eb5813302b', '172.105.247.100', 1675511421, '__ci_last_regenerate|i:1675511421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4222c651746e12068f553543e54437bed7bb0c67', '172.105.247.100', 1675511421, '__ci_last_regenerate|i:1675511421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5895ae52a44527fa4f7c194873708f5097a0a96b', '172.105.247.100', 1675511421, '__ci_last_regenerate|i:1675511421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd36fa4d91cad590809e6b5c097a2c25994c7cb8', '172.105.247.100', 1675511421, '__ci_last_regenerate|i:1675511421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9bc8b61b6732e46f0a6445ade989e7bd85ce14', '172.105.247.100', 1675511422, '__ci_last_regenerate|i:1675511421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e0ab5777d1feb9555d627614d497ffc50540d3', '31.222.203.2', 1675515787, '__ci_last_regenerate|i:1675515787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005cb87d1ea9ff54c77a99126c833ed15ddddb27', '31.222.203.2', 1675515787, '__ci_last_regenerate|i:1675515787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b9533061bbda5273b7fe320adca1e545f1101b', '31.222.203.2', 1675515787, '__ci_last_regenerate|i:1675515787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2ee705c41434e97550dcbcda4ebc0f70e7059a', '31.222.203.2', 1675515787, '__ci_last_regenerate|i:1675515787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd7a661bc10d2dc0f78712d664f3c6b276f9460', '31.222.203.2', 1675515787, '__ci_last_regenerate|i:1675515787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fff254edd4e4b7a5dd3376c41612ea125cea781', '31.222.203.2', 1675515787, '__ci_last_regenerate|i:1675515787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76c28bd94b6143889c0405f854cfc2f538dd763', '205.210.31.185', 1675517207, '__ci_last_regenerate|i:1675517207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a792914a4a089e61b817e44fd11b9305431f8aaf', '205.210.31.185', 1675517208, '__ci_last_regenerate|i:1675517208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2122ac784ee43bafe192d1fbe6a40ab459b488ef', '205.210.31.185', 1675517209, '__ci_last_regenerate|i:1675517209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe32880a08f50919147b8c124a82c2e4ea717122', '172.105.247.100', 1675517421, '__ci_last_regenerate|i:1675517421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f98c491263c6647846695dab7d8c9229f4f3205', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fecee44f7184226b3d06ddaaf0ea7ba741a3b52e', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d577620b29104ae4e5c14490ecf27e3d41e0e13', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c05e4bfba4d88df6a43ec6a72407cb261c6cfd1', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a916379d101b31386a703150bb78ddd800a2b35', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b38621a0d05be6f5ec21b1d2c6555073994b5c', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f7097b7870cac7ca87fbc67d6e9589a7ddb256d', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c4761d87d5b84f6753bc74668ab846ae18a9d5', '172.105.247.100', 1675517426, '__ci_last_regenerate|i:1675517426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b522acea5f19331e8897e3f68dad088be210b3a1', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527f7d372d81ce38611fe419cbdc273b8a5ff247', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f2f195c59ba043872dcb509be3de5dddfa8385', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b977e5d7d3b29fc822c22a01ff257c3d9f3c29', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e486b80273ce44187bb850dd1fb60757d72dd4', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9282e9b81b5026799af028b654717bde07f9564', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2fa28fbee865e64670e7f7f96a7a894f6936d5', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d11af18f03fee1436023cb7b65631861164d58df', '172.105.247.100', 1675517427, '__ci_last_regenerate|i:1675517427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58c24122e2b15cfc100f97dac92459fb22058b3', '172.105.247.100', 1675517428, '__ci_last_regenerate|i:1675517428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('787c4dc29f60d6bd5bbcde846939da2fec114aa5', '172.105.247.100', 1675517428, '__ci_last_regenerate|i:1675517428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6798de1e18c7ceb2e5dbc1f7322182a95939944', '172.105.247.100', 1675517428, '__ci_last_regenerate|i:1675517428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26cee081a1e0630f6b274de4dc8362403b593c3', '172.105.247.100', 1675517428, '__ci_last_regenerate|i:1675517428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd7d9704bd23488dc738fb2511418888014e73d', '172.105.247.100', 1675517428, '__ci_last_regenerate|i:1675517428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81017ad29c7e07d25fa11cf31abfb59218cfbcc', '172.105.247.100', 1675517428, '__ci_last_regenerate|i:1675517428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('940fa88722af96072a5d9676679c1c13dbf5d100', '172.105.247.100', 1675517429, '__ci_last_regenerate|i:1675517428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490e8ce59710195bbca2d6f3c0f9e7c42d150cfa', '31.222.203.2', 1675517658, '__ci_last_regenerate|i:1675517658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3fec8aaf783d4976e302f4decf5b4e43cbe079e', '31.222.203.2', 1675517658, '__ci_last_regenerate|i:1675517658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d393340b09eb2dffbdb15b4e43134593226c6c3', '31.222.203.2', 1675517658, '__ci_last_regenerate|i:1675517658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1957120f9ff5709da8138023a438e328c8014f2', '31.222.203.2', 1675517658, '__ci_last_regenerate|i:1675517658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a66a45271f76c25f484c6f753689eb487b1efa66', '31.222.203.2', 1675517658, '__ci_last_regenerate|i:1675517658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2b2a5a7c7793a5a6a0240655564059ddbf14bd', '31.222.203.2', 1675517658, '__ci_last_regenerate|i:1675517658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34684fee2a23c730d4addad8e918d0cf4270b1f0', '37.111.217.101', 1675519403, '__ci_last_regenerate|i:1675519403;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675519351;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3429084c0dae146dde69f0b605c848ccc87439', '37.111.217.101', 1675520129, '__ci_last_regenerate|i:1675520129;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675520119;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc27a5937c8ca6f74a8febddf0c8e0acb2b5864', '37.111.217.101', 1675520576, '__ci_last_regenerate|i:1675520576;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675520129;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5baa0867366dcb11a0e8457672e5848114096c77', '37.111.217.101', 1675521019, '__ci_last_regenerate|i:1675521019;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675521015;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749e0ea5b01b503f1b513a791ef2cae687d1fe3d', '37.111.217.101', 1675522020, '__ci_last_regenerate|i:1675522020;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675522015;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723171e2c75b58cbbf173325550fece565e687c6', '37.111.217.101', 1675522423, '__ci_last_regenerate|i:1675522423;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675522021;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87a003cf5c0bce1744d7dbcdaabdbe89a4c38a6', '172.105.247.100', 1675522217, '__ci_last_regenerate|i:1675522217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e01a106585a203a3dd8b8b9a39c7250f94e8b5', '172.105.247.100', 1675522217, '__ci_last_regenerate|i:1675522217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('153a9de3d0302ab073f443e14d792cca16ef7485', '172.105.247.100', 1675522217, '__ci_last_regenerate|i:1675522217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9224a9dbdbaaa77c417ff61e5f1f5e1b191a2a36', '172.105.247.100', 1675522217, '__ci_last_regenerate|i:1675522217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09730276651de171e3bf500cf002d30a42f0861c', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b66b77bb9156280382665c236f239d308ca102da', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b5e7ed9789ae135472876154f0eb0ad6da7e5d', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9c838d709fd410d8779d7cd103facaa4e93cfe', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525911285a6d3ece9da573abecf1572f81331c66', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b7d5e87515c021753b97549dbf6c0ebad8877d', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1816170cf43e5d180956c123e136997bea310fd', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77339e9be9169d902291632fdee4b833ac14003', '172.105.247.100', 1675522218, '__ci_last_regenerate|i:1675522218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31b2a213df8a969dad51c2af78636ac53b1a07f', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164259da04c21b83e8f3e137a057d6255eb0cb08', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b4b52bb389a3016bf6040ce963caa89fd096e5', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291b038b8b19517910e27900a824097ad52ba44d', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79da0101230c9ebac31209d0a72a30974f031b19', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0417fee687588f9ecc5b48e1914e5960b11ac695', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1dd04d14f99c60a5bdaa5f1dd90deb6547cb90e', '172.105.247.100', 1675522219, '__ci_last_regenerate|i:1675522219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525802653c711dd30214de5bf1698966dcb7eba2', '172.105.247.100', 1675522220, '__ci_last_regenerate|i:1675522219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6243a17c487e9c229e16b0055f0c2c6cc3c2cee', '172.105.247.100', 1675522220, '__ci_last_regenerate|i:1675522220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9576043ce06e1f5c9af820dd7cb620267d17010e', '172.105.247.100', 1675522220, '__ci_last_regenerate|i:1675522220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c04a36697c3e7016fe9b546c8f176075e8422e4', '172.105.247.100', 1675522220, '__ci_last_regenerate|i:1675522220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a94750e8c24b8c9a9c2cc0948e61de299d8d4e2', '172.105.247.100', 1675522220, '__ci_last_regenerate|i:1675522220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b35493869c68bc212e9afc8d11ae45d8aae620', '37.111.217.101', 1675522756, '__ci_last_regenerate|i:1675522756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675522749;register_id|s:3:\"331\";cash_in_hand|s:8:\"860.0000\";register_open_time|s:19:\"2023-02-03 21:10:46\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88db6f6cb67d87879895af0aeebf2b7c8160fd66', '124.70.98.118', 1675522661, '__ci_last_regenerate|i:1675522661;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2f03bff7fd2b61c8b62f8d3021f05829087bf19', '124.70.98.118', 1675522664, '__ci_last_regenerate|i:1675522664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('168e07ec442344efbb729db08531466d40464df5', '124.70.98.118', 1675522667, '__ci_last_regenerate|i:1675522667;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421fcd26421d839a9d4ed64f11b198b1309b730f', '124.70.98.118', 1675522669, '__ci_last_regenerate|i:1675522669;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916787d911cb8e595589b59078e2c8ff9db02fbb', '37.111.217.101', 1675522774, '__ci_last_regenerate|i:1675522756;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675491011\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675522774;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff12097ddda39522c372bce868390565c3a361b0', '31.222.203.2', 1675524793, '__ci_last_regenerate|i:1675524793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd05cacc1b4632368aa107fb95fe5d0cf880bfe', '31.222.203.2', 1675524793, '__ci_last_regenerate|i:1675524793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3930b071d3092852233dc3d8f4ae3837db79ff6c', '31.222.203.2', 1675524793, '__ci_last_regenerate|i:1675524793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da372ed09ce4a29f51b3baa82c22655a8144281c', '31.222.203.2', 1675524793, '__ci_last_regenerate|i:1675524793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cd4b2c79c69421cfeff4e0c11c876a585c1efd', '31.222.203.2', 1675524793, '__ci_last_regenerate|i:1675524793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea2b0df515318b47be33f13fda79ae05ba2f3a3', '31.222.203.2', 1675524793, '__ci_last_regenerate|i:1675524793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59607d84d8e7eceb11c5944258ebedf768a469f6', '186.234.80.87', 1675525708, '__ci_last_regenerate|i:1675525708;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc1964cc7488d84a24b7ecb33f7c6c92f6faeaa', '186.234.80.87', 1675525710, '__ci_last_regenerate|i:1675525710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561434c43c442dd00149f62774c536fa85895199', '186.234.80.87', 1675525711, '__ci_last_regenerate|i:1675525711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac9e9618849fcfde096a5892409441f206ba7c76', '186.234.80.87', 1675525712, '__ci_last_regenerate|i:1675525712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f344eacfebf296a10daebe683b73d1f6c5f79ff2', '172.105.247.100', 1675527619, '__ci_last_regenerate|i:1675527619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7e9cb6e711aa5111268e27237345f3579bbf0e', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440f6716983cd5943765a173a4ab3f7d4eae079b', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4ad2cc6764c295df1c069382c319171a55fe44e', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122ac454528798198d41f652bf00c5729f6c0b8e', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4903e9bf9b2a18e4f3a2195a1da9fa6e7ee92ba', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7954ca1c6d9e7b096aae564b94b397d322832e01', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d8a643e9075a495d0f52e0534b90e6d51a9d5a9', '172.105.247.100', 1675527620, '__ci_last_regenerate|i:1675527620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cacdb9e38193f2682c058b639a7fd96a638faa02', '172.105.247.100', 1675527621, '__ci_last_regenerate|i:1675527621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de732b24add098d6658ca45dc9e38ed92815f517', '172.105.247.100', 1675527621, '__ci_last_regenerate|i:1675527621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59cc8a24d186a051fe76af0ee8cc07aa8dcbe262', '172.105.247.100', 1675527621, '__ci_last_regenerate|i:1675527621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24f47ebc4181c7da4b93f02daa4a26602e31d8b', '172.105.247.100', 1675527621, '__ci_last_regenerate|i:1675527621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ea241115189738e6a06f44dfdc23c2b1d6bb2f', '172.105.247.100', 1675527621, '__ci_last_regenerate|i:1675527621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9aa5d191a638ff42c830a68cb5626d7753737c', '172.105.247.100', 1675527621, '__ci_last_regenerate|i:1675527621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27bdaea350b9773a4bd5490d58d46d3968e220b6', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d47749fae7a4eb11028600bb257b7744759406', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bdf7a417d1acd9593fec46d5dd10d55f3a70eaf', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f327d88e2bc71189a333cd72c3f9cc80f56bab69', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e3a2acee1df9ad7692ffe85be2ae1f61169531', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78f83c734bc65610b489d5f6fdf8eea33e065512', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('017f4651307cac20573baeba564b350cb23c7692', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2f92faaf50a22532a2386f1a34f8edcf4ef2a8', '172.105.247.100', 1675527622, '__ci_last_regenerate|i:1675527622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3ae2d1a389b2f7aa7ae5d3002e78beb8bfe34f4', '172.105.247.100', 1675527623, '__ci_last_regenerate|i:1675527623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('398d4cb72729f1e6ef8cc363d0eaca89677b93cd', '172.105.247.100', 1675527623, '__ci_last_regenerate|i:1675527623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7b0e7a7ad9edde4c5ad225602a64a43c43f6af', '162.214.112.108', 1675530918, '__ci_last_regenerate|i:1675530918;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('475a99d07e5b5697a5920946a45f11e396024326', '172.105.247.100', 1675533017, '__ci_last_regenerate|i:1675533017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3905a2b3dbb0970c78d00a9438992c19c3044821', '172.105.247.100', 1675533018, '__ci_last_regenerate|i:1675533018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9adbf1e08acb453a1fcc325962866487651f75', '172.105.247.100', 1675533018, '__ci_last_regenerate|i:1675533018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70769ee129b0334f77a31e6bfe4b8c4b90c23865', '172.105.247.100', 1675533018, '__ci_last_regenerate|i:1675533018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a0c6db3873cf5ba003313edd592c7f3dc8f19e', '172.105.247.100', 1675533019, '__ci_last_regenerate|i:1675533019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fbdf910f26d43d1c017960bc0c5de33a0d902a5', '172.105.247.100', 1675533019, '__ci_last_regenerate|i:1675533019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42133d9bf17e1d39acf68e2c3ff508aa8b5c80eb', '172.105.247.100', 1675533019, '__ci_last_regenerate|i:1675533019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97538322bc3938d76d64af585f6f9634f1b773db', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a5396347194237fbe459c5aeab6665856d5fe3', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08395ee2dbecb5ee55b40d220a4742576c8ab79', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5a658201536275a69d249fd2e0ea8b6113a3eb', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2911c2a4c8e135959f272f243fb5265f46a1cb1', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27aa605e32f06fbeddae7f830186d823425b323', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324b06196099c31c1bb0a5bbca80848c0a353035', '172.105.247.100', 1675533020, '__ci_last_regenerate|i:1675533020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edadaa682439ba8d3051ec03403fee035fc13cdb', '172.105.247.100', 1675533021, '__ci_last_regenerate|i:1675533020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b862a1499942f050f5f3b3f00ba47c4518a7d0b6', '172.105.247.100', 1675533021, '__ci_last_regenerate|i:1675533021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd6132f633ba5291849ca0f6979f6b43a4be862', '172.105.247.100', 1675533021, '__ci_last_regenerate|i:1675533021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c627cb9af061aa0c09b983869f71c0c4af1cbb', '172.105.247.100', 1675533021, '__ci_last_regenerate|i:1675533021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98501f201d271f9df69347b03bfc13f64f0bb9ee', '172.105.247.100', 1675533021, '__ci_last_regenerate|i:1675533021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74f41a20a8beafc3e2b236efc8329b3af18009f', '172.105.247.100', 1675533022, '__ci_last_regenerate|i:1675533021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b73f391ae3c170aa02da648bcbe1a2ece7897df', '172.105.247.100', 1675533022, '__ci_last_regenerate|i:1675533022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26464ea96d86faf06e82ad0212531a9db6d0d953', '172.105.247.100', 1675533022, '__ci_last_regenerate|i:1675533022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fdf8e8e6cb14b0645536761a2a74f2a8b131412', '172.105.247.100', 1675533022, '__ci_last_regenerate|i:1675533022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c3756faaaaa52f2e3d8daebb5a239f205d072c', '172.105.247.100', 1675533023, '__ci_last_regenerate|i:1675533023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee32f85084f854c91a463ab2fb54e4b9d82e43a2', '31.222.203.2', 1675535596, '__ci_last_regenerate|i:1675535596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50c0e2dd217148208c6a9081e4cf17a5c915a56', '31.222.203.2', 1675535596, '__ci_last_regenerate|i:1675535596;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2defa4b367f6dc7d666378668fe4e53629af58', '31.222.203.2', 1675535596, '__ci_last_regenerate|i:1675535596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40b4d7629dc5beb6c4d90f0549042492e82d3436', '31.222.203.2', 1675535599, '__ci_last_regenerate|i:1675535599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5aaf397b0ec0ac011276d23d174f3d64a7f39c', '31.222.203.2', 1675535599, '__ci_last_regenerate|i:1675535599;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64990ac642b33f113f98763f11cfd524f492f24b', '31.222.203.2', 1675535599, '__ci_last_regenerate|i:1675535599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a3f92f558823f37d1a0f2f634ad77747d296c5', '31.222.203.2', 1675537456, '__ci_last_regenerate|i:1675537456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496a8ab2871b02e0396ad4465ea44fca15f771dc', '31.222.203.2', 1675537458, '__ci_last_regenerate|i:1675537458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3310bafbbe8a50dfe5ba6dc45bd660058df208aa', '31.222.203.2', 1675537458, '__ci_last_regenerate|i:1675537458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc6818a845612d3e8961273123ab94cf6273fd1d', '31.222.203.2', 1675537458, '__ci_last_regenerate|i:1675537458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef2b9615c01107ba0b3dd0f47c087c69c17edbcd', '31.222.203.2', 1675537458, '__ci_last_regenerate|i:1675537458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb5bcf1f30f7857c4454a16b7deef31f9b74926', '31.222.203.2', 1675537458, '__ci_last_regenerate|i:1675537458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa9273209913853f981a1e982fe98a1ac84656e7', '172.105.247.100', 1675537816, '__ci_last_regenerate|i:1675537816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56adeae7244da5cc7fa33fd39df910245b8e554', '172.105.247.100', 1675537819, '__ci_last_regenerate|i:1675537819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a166c29f29fdc2f9b8603e6f103bc7ca9a14c0', '172.105.247.100', 1675537819, '__ci_last_regenerate|i:1675537819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6190a4d4e1559c6f8b099dba7259030284a49fee', '172.105.247.100', 1675537819, '__ci_last_regenerate|i:1675537819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('120389adfef761b719efae06bce40765c781d9bf', '172.105.247.100', 1675537820, '__ci_last_regenerate|i:1675537820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087322c14112720f14748766c6ee25056f33f239', '172.105.247.100', 1675537820, '__ci_last_regenerate|i:1675537820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a682a1e67a969054d143ce9d99509656b3aa869c', '172.105.247.100', 1675537820, '__ci_last_regenerate|i:1675537820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd1e09c359cae0f9f88785ef2ccf12da1ece746', '172.105.247.100', 1675537820, '__ci_last_regenerate|i:1675537820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7028bddb82136df1c5d36fbbe1e2a48cfcc68d6', '172.105.247.100', 1675537821, '__ci_last_regenerate|i:1675537821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b9e8a5b045702122a404850a5b62877f78f314', '172.105.247.100', 1675537821, '__ci_last_regenerate|i:1675537821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27e918e2a58efe3a1cbdf5cc0d4a8924be4ee955', '172.105.247.100', 1675537821, '__ci_last_regenerate|i:1675537821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2704dcf6376b02d9f7f80f34034c52c093c47636', '172.105.247.100', 1675537821, '__ci_last_regenerate|i:1675537821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e4b4d9e4b733ef496b8506c0435f9741a92b4c', '172.105.247.100', 1675537821, '__ci_last_regenerate|i:1675537821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9517c06045846f4303fc5f931b2417c1849374', '172.105.247.100', 1675537822, '__ci_last_regenerate|i:1675537822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72696004b181fe211660edb0819456857d7efc6b', '172.105.247.100', 1675537822, '__ci_last_regenerate|i:1675537822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f152c2c8ee171b7c80f90416daad1a59b505598f', '172.105.247.100', 1675537822, '__ci_last_regenerate|i:1675537822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7639841dae747453dce63bc4c3a10fa9f9e7737a', '172.105.247.100', 1675537822, '__ci_last_regenerate|i:1675537822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef2130dae6fea65b045ff2ea18fc27fafe4012c', '172.105.247.100', 1675537822, '__ci_last_regenerate|i:1675537822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b98aa73bf2a984c3cdf549a05f9a166caf8e396', '172.105.247.100', 1675537823, '__ci_last_regenerate|i:1675537823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9519dd9761f8713e76128eb2b1c22a810c3f7d', '172.105.247.100', 1675537823, '__ci_last_regenerate|i:1675537823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f9b4742a72148c9881533c6c902e8014da594c', '172.105.247.100', 1675537823, '__ci_last_regenerate|i:1675537823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ec10377d1314cc0dd280b57545ae1a46d427d8', '172.105.247.100', 1675537823, '__ci_last_regenerate|i:1675537823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3320976b12c58341426aef5102da1dd47444d7', '172.105.247.100', 1675537824, '__ci_last_regenerate|i:1675537824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd8f6f911128dd21bc9e62fe26af811f2efcc54', '172.105.247.100', 1675537824, '__ci_last_regenerate|i:1675537824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e47645270dae47b53416844b1b8e2f6e5f646e', '172.105.247.100', 1675543219, '__ci_last_regenerate|i:1675543219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c810f4d4c799d62e213a1f83e0ef22ae3b49a373', '172.105.247.100', 1675543219, '__ci_last_regenerate|i:1675543219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc34232dddb09abb9520b637ec74fd655297231', '172.105.247.100', 1675543220, '__ci_last_regenerate|i:1675543220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d88016074fdb5395d716bdc83458a8c1ea4d0a2', '172.105.247.100', 1675543221, '__ci_last_regenerate|i:1675543221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2ab1d437aa6639d194e1b41241c3511331de5b', '172.105.247.100', 1675543221, '__ci_last_regenerate|i:1675543221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c6d4982e934eacf8badaf2e3e337bd1666c816', '172.105.247.100', 1675543221, '__ci_last_regenerate|i:1675543221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d97c68eb18f92a28c6f63f83bfbdfc722718d7', '172.105.247.100', 1675543221, '__ci_last_regenerate|i:1675543221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b013bd171e2045c17ff5030e5cd034f9f9d8e1', '172.105.247.100', 1675543221, '__ci_last_regenerate|i:1675543221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac472856e6806ae9812c144286b6eaf11a3f1b5', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5439e8ae198d17d38a9f8ab5f507df17728b1e02', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e75e7865b50b94ed45aef6bde6e32d0769a342a', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e193e9723b49f12bf0c51af230edf1e55c06f3', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8660676d376e7f30f6f011e93df96e4264987866', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bc95f67d36c92cd4365767d28a31047620dd122', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7083ac9d8058a683e3dff5475dcd51b8f74da92', '172.105.247.100', 1675543222, '__ci_last_regenerate|i:1675543222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df00f134b3f77a43a25bf3ebaee899e4fe4f1261', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b9eb20e1f445ae051078a86eef716b52b23dd8', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ac6cf6283869b6d6dbffbdedc95ddfeebdcb43', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04bf0088c0ba142dc0d20038dd4eb2ed4eb67043', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252d9cd477073c2ed590f088f0c686d96f0ac102', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2795d1ea4f25212e390e0345a28cb98417bd4d70', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c163c178b7923c6a13f948e42d1b36432877925', '172.105.247.100', 1675543223, '__ci_last_regenerate|i:1675543223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad07050327cbffcd15d546b982c587505b5000ce', '172.105.247.100', 1675543224, '__ci_last_regenerate|i:1675543224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12221193f25d7cf17a30c62128ad8d4202d0b69', '172.105.247.100', 1675543224, '__ci_last_regenerate|i:1675543224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b8b45914c6cb7a5b1b910544fc47e7a0ff15ef', '31.222.203.2', 1675548198, '__ci_last_regenerate|i:1675548198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a457b756e057db45c0fa5f8537656a39793de170', '31.222.203.2', 1675548198, '__ci_last_regenerate|i:1675548198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67794783f79ce5432117d68bb38328d3bb9e51f3', '31.222.203.2', 1675548198, '__ci_last_regenerate|i:1675548198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5ce72d6c6a84f97b9736841004cb3acba8dac5', '31.222.203.2', 1675548198, '__ci_last_regenerate|i:1675548198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('282de923f76f542642b59ed1dbd649d654e75f40', '31.222.203.2', 1675548198, '__ci_last_regenerate|i:1675548198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e304442c3347a29e9fc84cc6f74a428722e1ecd', '31.222.203.2', 1675548198, '__ci_last_regenerate|i:1675548198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6a4bb0732c4e28a7f9ae62df82ef8ef5079317', '172.105.247.100', 1675548618, '__ci_last_regenerate|i:1675548618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8436015ebca4e98f3f4815bed2643f6723dfbf9', '172.105.247.100', 1675548618, '__ci_last_regenerate|i:1675548618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5754b43f09d3085c90fbb66a5ff164e3fe276fc', '172.105.247.100', 1675548618, '__ci_last_regenerate|i:1675548618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ffbcd41b4efe6a533051234dade703a83fac83e', '172.105.247.100', 1675548618, '__ci_last_regenerate|i:1675548618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac5f45253e323467fec8b39e42134e2a662b05e', '172.105.247.100', 1675548618, '__ci_last_regenerate|i:1675548618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27b27c580fd021cdbd332d496e6bf797b1bccd4', '172.105.247.100', 1675548619, '__ci_last_regenerate|i:1675548619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fac097a4303d6cc8a6337bc8000465c93ccb893', '172.105.247.100', 1675548619, '__ci_last_regenerate|i:1675548619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ae984062831cd33744972c163a3f03a8bbd2a5', '172.105.247.100', 1675548619, '__ci_last_regenerate|i:1675548619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b21a83a917baa32d7707829d98ec2162705885', '172.105.247.100', 1675548619, '__ci_last_regenerate|i:1675548619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('180c6fe58a8bdbf7fdf6e687a71be5db3db7a383', '172.105.247.100', 1675548620, '__ci_last_regenerate|i:1675548620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ce80caa0fd5dc80d912e713c315e6449148364', '172.105.247.100', 1675548620, '__ci_last_regenerate|i:1675548620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab39026224f0a06e7b260e20a06e7f4259a95fa', '172.105.247.100', 1675548620, '__ci_last_regenerate|i:1675548620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9289a78277287ceda68020ee688ca599a9537df1', '172.105.247.100', 1675548620, '__ci_last_regenerate|i:1675548620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de862eb83ee6fbb44dde8b8fcb3619766db2be06', '172.105.247.100', 1675548620, '__ci_last_regenerate|i:1675548620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618707d720dad32a4bc8ede82b1f1129db6e5222', '172.105.247.100', 1675548620, '__ci_last_regenerate|i:1675548620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd530c782c545e5e929349b5c10845c0a1e92a2', '172.105.247.100', 1675548621, '__ci_last_regenerate|i:1675548621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42cd55351b25ec015ced5ddf7c4f44cfd30936a5', '172.105.247.100', 1675548621, '__ci_last_regenerate|i:1675548621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97d5855ab9d90f695424dbdb0fb519c26381f8f', '172.105.247.100', 1675548621, '__ci_last_regenerate|i:1675548621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acab9871a679934cdd4b822b47dc8f387478023', '172.105.247.100', 1675548621, '__ci_last_regenerate|i:1675548621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f41ddb70589227cde7ba45794fdfd68d490a90f', '172.105.247.100', 1675548622, '__ci_last_regenerate|i:1675548621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60281298e7befdd54a63fbb73ecef7aec9e68ea8', '172.105.247.100', 1675548622, '__ci_last_regenerate|i:1675548622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a95a7e61b4a040cdebd54168829293ef3e8ef3', '172.105.247.100', 1675548622, '__ci_last_regenerate|i:1675548622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ede043c366a5b466275c66a40b3862b2697445', '172.105.247.100', 1675548622, '__ci_last_regenerate|i:1675548622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185c55dd3808e77d08d47423da62ac7f268f8170', '172.105.247.100', 1675548623, '__ci_last_regenerate|i:1675548623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4268b58e1a67d754d34d394b5e08da2cd7f8fb', '172.105.247.100', 1675553419, '__ci_last_regenerate|i:1675553419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de14b5496259012c8a923119e65103feace8103', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba86a1493426d5c865e482911d7718a59aaa7869', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0077554f54c49f9a54d9f34e1d2d9158ecbb1f7', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec5d34ed6eabde13cc51b86735b85ad483c674c', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a91c53f21101a0c03b09fddbdfece58f4818572', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea80b79038526e33d233f940d9f6da91ec07d73a', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141b923535853555745e7bbb8649e721f5a1f5b1', '172.105.247.100', 1675553422, '__ci_last_regenerate|i:1675553422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1042bea39884212bdbff17b661a610c3dd7f2642', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac7602da722e5e1ee74c22c491844fd5cc77787', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b11cadbfc2e9a2e543c61bcfed7fabb5c30ed02', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33182c94304a32e4a4d9b71e4581ed7f4167b81f', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310eca31f034a634f38066744fa395bf55be2f9c', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec41bb4c2d4eace3ae5e538226d2c41ef963a569', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf9c9fafcd70e87d0c7968128f01259e8774f68', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52524f18c7afe3ff3a2d6a9fe21d65f73c3c4852', '172.105.247.100', 1675553423, '__ci_last_regenerate|i:1675553423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ad26495bfa6a199f5e555611c37cbbbd763429', '172.105.247.100', 1675553424, '__ci_last_regenerate|i:1675553424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63c0abb120f03b49ff7d53244d127f16e4943440', '172.105.247.100', 1675553424, '__ci_last_regenerate|i:1675553424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04080fafed6a20583d7da1c2c91ba47b7a9d6cf', '172.105.247.100', 1675553424, '__ci_last_regenerate|i:1675553424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8785cf0bfba14b55b77c4d17550af7c60fc6875f', '172.105.247.100', 1675553424, '__ci_last_regenerate|i:1675553424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3065aa710807f76a9627ae63d44168a2aa6739', '172.105.247.100', 1675553424, '__ci_last_regenerate|i:1675553424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6335e8a65cc7dfdf24cea17dc629ba438a8223a3', '172.105.247.100', 1675553424, '__ci_last_regenerate|i:1675553424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ca9d4d122feddc2de201526e6847fad9a1f53f', '172.105.247.100', 1675553425, '__ci_last_regenerate|i:1675553424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc34748f8c43ee5c333aa210a8201daf80f1c0cd', '172.105.247.100', 1675553425, '__ci_last_regenerate|i:1675553425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9937908e6922c6a777d225c0d0c795cd5345233', '31.222.203.2', 1675555386, '__ci_last_regenerate|i:1675555386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84b721ce88d1f97a387abb2ced3e8c6e5734257', '31.222.203.2', 1675555386, '__ci_last_regenerate|i:1675555386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdad56a5221e9668e4ab8d82c2bc54e1460f6a0d', '31.222.203.2', 1675555386, '__ci_last_regenerate|i:1675555386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de7fdd5bb83fa5c879d5631114803a40f90dc8d', '31.222.203.2', 1675555388, '__ci_last_regenerate|i:1675555388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5085fd298f062fc475d7475abbdbc64687510b09', '31.222.203.2', 1675555388, '__ci_last_regenerate|i:1675555388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad54e4743857a1ca6b17cdd4510ccdcbff7d838e', '31.222.203.2', 1675555388, '__ci_last_regenerate|i:1675555388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1fd4db2c921bbcc0a57b218c1d0c34806ceb72', '172.105.247.100', 1675558820, '__ci_last_regenerate|i:1675558820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee07b04addac89aeafa7c5a2043caf9b8da47ed0', '172.105.247.100', 1675558821, '__ci_last_regenerate|i:1675558821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8f0a205c2dfe0cf805d7fb0d46f9dfab7d8467', '172.105.247.100', 1675558822, '__ci_last_regenerate|i:1675558822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a666e083c9309a6fc75706696e576ad3a4a4ad9f', '172.105.247.100', 1675558822, '__ci_last_regenerate|i:1675558822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a83c9364c8e9241fa9543d05fd070ca5489239', '172.105.247.100', 1675558822, '__ci_last_regenerate|i:1675558822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c14c0393cc8f7d65988c366a5900a2eb4bb233', '172.105.247.100', 1675558822, '__ci_last_regenerate|i:1675558822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c05082c88192412996a52022f14785e76b60d59', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('954a85388a0c61c4e208cd0fee1e6ec25aae8eb8', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cddd938ce0d3287490153ff9ca2c2a3c3fbadba', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e305f9d412eed6273c53ff9034b70aa2ef7655', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9732f1ef2217c6106c75dd04d281cecabd2b8338', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e458175971bccb206d4c95ce322ffe1701cdbdc', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee89ba87b39ec0f1407f7323bfec833159205f49', '172.105.247.100', 1675558823, '__ci_last_regenerate|i:1675558823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb37fb79466256850634f539bf458c894f60add1', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f4e41d7381ea63f9c4a758a365509b38ad370e', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2929852b9e1146b02559a674c4e117acb51ed0a3', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5e0330c3d23baaa4d6c70192df0d237ed7fc7d', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d641b0f5123ae826d76c1f033e1b48a2ed7d4a18', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53968ef7491b3f45703bb80d6009c9afb91bc98', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539a31989fc939fbe207920466e093efa46774a1', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11051e11297dfac83fd109ed963c69c44ea0c4e', '172.105.247.100', 1675558824, '__ci_last_regenerate|i:1675558824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d315811cab0b5c5c9f4f1d990270eaaa194ff66', '172.105.247.100', 1675558825, '__ci_last_regenerate|i:1675558825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aff542113fad0ea8af87356171a04c0f13be8a1', '172.105.247.100', 1675558825, '__ci_last_regenerate|i:1675558825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79eee7638f451a41ed700e153f4453283940d71a', '172.105.247.100', 1675558825, '__ci_last_regenerate|i:1675558825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4359f72cb235bb3a5d71638e4e6f3cbe3e2f45', '172.105.247.100', 1675564217, '__ci_last_regenerate|i:1675564217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154002937cabe58e4fa87f04e0cc03a15de11bde', '172.105.247.100', 1675564217, '__ci_last_regenerate|i:1675564217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59063fc46a94df8748a9b0fec097e464027d98a6', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38dc48750fbffb25a59cd0cbe7866c2ab76a18cb', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa4503668ebd3cd99ff51a992deb608650ce61ba', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3142e60133de5e215017cc16c33ba34d7a98d73b', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d21f140f28f3468295646a51238075d1f17edd', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c6b546bce848030b3fb3e90a63d4fdd79f82a9', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ccda593fe48ac823b0271ff6551d3640253fae', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc0615487f6422a698eab38d779621708f0b8fbe', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc66cd06d552f953dccf02c3a55204d44d8ac5e', '172.105.247.100', 1675564218, '__ci_last_regenerate|i:1675564218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358d57d491ca5404edebeef60e66d9803ecd4221', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dcc8f0f4c75d5971f4c0f86768ffaa75cf82af', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbf61f84e306de9499eabef8948699b621eb743', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f6df120b77fa7128f9065dfe9bc48fd468c38d', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c94885aec4f3d5c231aa544dfe9de4049357464', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797ca4690974b87c568712796adb40e4e282957d', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38a22e4ca6a3d0e8371d090efc608e3b6ec5b66', '172.105.247.100', 1675564219, '__ci_last_regenerate|i:1675564219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0c7efb36babfe410212815576846ff98dbb057', '172.105.247.100', 1675564220, '__ci_last_regenerate|i:1675564219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95924efb80cc41d576f2a345259ef0c535099237', '172.105.247.100', 1675564220, '__ci_last_regenerate|i:1675564220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a3fb647cd9a10de130ff05285cdb371102b182', '172.105.247.100', 1675564220, '__ci_last_regenerate|i:1675564220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720c3d96e252b192ba05856f9bcbc172e6f1b4c6', '172.105.247.100', 1675564220, '__ci_last_regenerate|i:1675564220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e013894c67e6aa5df1710dbbf7a221c4ed8fc518', '172.105.247.100', 1675564220, '__ci_last_regenerate|i:1675564220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc5ce41806debc2f555444c36f493b8e1aa4810', '172.105.247.100', 1675564220, '__ci_last_regenerate|i:1675564220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56088b0c962f22e01038e1f30fa6f7c0a89bb8e2', '31.222.203.2', 1675564384, '__ci_last_regenerate|i:1675564383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803c52ffa74198212b54effc28affe6b4e665bf0', '31.222.203.2', 1675564384, '__ci_last_regenerate|i:1675564384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85154c7a1a82438dfdf33697a083562c7717b5c', '31.222.203.2', 1675564384, '__ci_last_regenerate|i:1675564384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c3620eea9a4f528694e3612db2acf57884ecc6', '31.222.203.2', 1675564384, '__ci_last_regenerate|i:1675564384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5992be5bd52ac01152d2b46b9706a3b9a451637e', '31.222.203.2', 1675564384, '__ci_last_regenerate|i:1675564384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e53fb639e3345309f2e5879379cc7eb3aef70e', '31.222.203.2', 1675564384, '__ci_last_regenerate|i:1675564384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6cb94182aff945fb5c8a72e264681d1af38579', '31.222.203.2', 1675566259, '__ci_last_regenerate|i:1675566259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ecde8505ca11cf3bb97b64f2a10079636b026c', '31.222.203.2', 1675566259, '__ci_last_regenerate|i:1675566259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c51698654cffe639b865745078a6f1c9a497ec1', '31.222.203.2', 1675566259, '__ci_last_regenerate|i:1675566259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc81d0e27231319457c0053a766c51f2603c964', '31.222.203.2', 1675566260, '__ci_last_regenerate|i:1675566260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c381bbc2b7efeea255deafad7c23a4902226eabb', '31.222.203.2', 1675566260, '__ci_last_regenerate|i:1675566260;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da594a7c15791305b1628e218615755dd4de6944', '31.222.203.2', 1675566260, '__ci_last_regenerate|i:1675566260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54957c357de10a157f646b658598998010a09cb4', '172.105.247.100', 1675569016, '__ci_last_regenerate|i:1675569016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60dbd4383b6077cc99801ef20442b02b21aa30f1', '172.105.247.100', 1675569016, '__ci_last_regenerate|i:1675569016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121c250263dc9fe860b832da0b5b1b73fcb3b2f6', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d47444a954f7b4c0cb47bd5f54b2715041192d5', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc53f76a812c752f02b861395897952c8df40a3d', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881ea735b33319de7f5f90885f00b9b82f744bf2', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4dad8636994403819c74ae9f89c2403f2d93e7', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8318c24f2e6754669f9fde56ef1f24923b9798ec', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45dfbd3f565ca8ff325c239d8c27c6685d4701d8', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13344cdbd683412414332982f36f034baee062de', '172.105.247.100', 1675569017, '__ci_last_regenerate|i:1675569017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d5aae2f4bd6a7043d0d3565d2182e0e5399b15', '172.105.247.100', 1675569018, '__ci_last_regenerate|i:1675569018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a71262b40dc891baad7bbfd84225ec7ba18ee7', '172.105.247.100', 1675569018, '__ci_last_regenerate|i:1675569018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf8ac3f65840cf57016eb454970d6924327e158', '172.105.247.100', 1675569018, '__ci_last_regenerate|i:1675569018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f83ddf2c70d67ee56cc04d22eac88b983a98322', '172.105.247.100', 1675569018, '__ci_last_regenerate|i:1675569018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1aff659fc6498e0a07b0f7a484cdb6aa10f282b', '172.105.247.100', 1675569018, '__ci_last_regenerate|i:1675569018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6dc12605934a3cb9491a6f5306f6aef238c6397', '172.105.247.100', 1675569018, '__ci_last_regenerate|i:1675569018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803a32b35a78c1823e931583f980e6962d5b6b3a', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43be8080141b94f83dad6cc83c3ba74e2514dc31', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2498f0d6d23a2ff6ed7ee4c699af4c687db9882', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dcd4ebe170f61c2272a11fc50582e486a19b7f7', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a259117f07296e244ff49de4d51b12d23c6a982f', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2079254596c2a04ec3ef621c908a161d0b03df0', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55b22bee8cfc3436c98210d99882efb9a941dce', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1b382f070e59035afa83cfbae95f10c6a7f29b', '172.105.247.100', 1675569019, '__ci_last_regenerate|i:1675569019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cee5281e5c94532ad8909138b99d9f15085f2e', '172.105.247.100', 1675573220, '__ci_last_regenerate|i:1675573220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b01ed3f6cc63743da0cfc0df252e082db3c0cf', '172.105.247.100', 1675573220, '__ci_last_regenerate|i:1675573220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9012e8b3d1f41c78b0cf9375839bad636462accf', '172.105.247.100', 1675573220, '__ci_last_regenerate|i:1675573220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f659b88a773a70aacfdd60aa449a97cec40a0c', '172.105.247.100', 1675573220, '__ci_last_regenerate|i:1675573220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b969f4776d93c7731838333ab81ca2c3b2e7005', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8452800307ac21eca35dec6ae5d29c2b571a3e1c', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661c4ddb51482bf50efa58272fe31394c148bccb', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b258d69e696608ce903d97e997c55011492ba0', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0290b6af3a3d2b1dfa53fb1e23227c3cefae7f', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e92a5e9adb6c65449b3acf503126823e6080ec', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12cd4c31d14f329f5097afbfdaf20b3abd0692ea', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de29692de5fadd8430886afb73905e47253e649', '172.105.247.100', 1675573221, '__ci_last_regenerate|i:1675573221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a321232d55505475ea287029829fad72199c18', '172.105.247.100', 1675573222, '__ci_last_regenerate|i:1675573222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b7675a15546ba6c38ee6f71f81e152fbec5690', '172.105.247.100', 1675573222, '__ci_last_regenerate|i:1675573222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8906851f858732b6883ba2f1b5a7dab3f5ad1a8', '172.105.247.100', 1675573222, '__ci_last_regenerate|i:1675573222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33ffa976c887016286eccf4f82a03b327949313d', '172.105.247.100', 1675573222, '__ci_last_regenerate|i:1675573222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e41155821b7863a5879b7a5c90fe9561f93485ff', '172.105.247.100', 1675573222, '__ci_last_regenerate|i:1675573222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39bcca54e2d9ddcd128947d2a8eaadf5f807042b', '172.105.247.100', 1675573222, '__ci_last_regenerate|i:1675573222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff29829d305e3058f19b7484b8d285363955afa', '172.105.247.100', 1675573223, '__ci_last_regenerate|i:1675573222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab092d1a74654cfe15b97585f540bf4409170d8', '172.105.247.100', 1675573223, '__ci_last_regenerate|i:1675573223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe08a4c9a3a068e15699be84ade07ec14d99430', '172.105.247.100', 1675573223, '__ci_last_regenerate|i:1675573223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e145b956ebf71bee8d53543579de77d5b39fa893', '172.105.247.100', 1675573223, '__ci_last_regenerate|i:1675573223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53133dcac159ba23d65c1ced5bcece2a7fdbaec3', '172.105.247.100', 1675573223, '__ci_last_regenerate|i:1675573223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d209d252927152e5c4bd584d1f28699de083174', '172.105.247.100', 1675573223, '__ci_last_regenerate|i:1675573223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e4161c07194db60fb8db44144e8bd932af5143', '31.222.203.2', 1675573385, '__ci_last_regenerate|i:1675573385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b69fa26849c09ebab3242e1518fd2e9ffc6eb4', '31.222.203.2', 1675573385, '__ci_last_regenerate|i:1675573385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b57c9b76e1d75927a7aa61a4ffc22c5b11b8f2f', '31.222.203.2', 1675573385, '__ci_last_regenerate|i:1675573385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d733c9d725769b173c1b2646d9dcc6cea98ac31', '31.222.203.2', 1675573385, '__ci_last_regenerate|i:1675573385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfed085818db1ecdc6bf1ec27184ad1b0412bcb', '31.222.203.2', 1675573385, '__ci_last_regenerate|i:1675573385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913a5a881ceedf6535e618b533ad466bcdc11d78', '31.222.203.2', 1675573385, '__ci_last_regenerate|i:1675573385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d4a4be77854b8a3d2b3e4852a542d0677a202d', '45.120.39.89', 1675574710, '__ci_last_regenerate|i:1675574473;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675519091\";last_ip|s:14:\"37.111.217.101\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675574710;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b3044db785a9c075e0480d8c946241626e28b7', '31.222.203.2', 1675575257, '__ci_last_regenerate|i:1675575257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f7d7ad9561722fb38236b27ebd308f2aa9dccb', '31.222.203.2', 1675575259, '__ci_last_regenerate|i:1675575259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb347e9ed06158a05c5ba0d1af664629561ebc9', '31.222.203.2', 1675575259, '__ci_last_regenerate|i:1675575259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca04a22cc59aa64907c4803c647664e6eabe2ba4', '31.222.203.2', 1675575259, '__ci_last_regenerate|i:1675575259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea71bde993a8ccf1f451123814247d35e815eb7', '31.222.203.2', 1675575259, '__ci_last_regenerate|i:1675575259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115ba8be0ae9be8657831f939652c7e9fc3313bb', '31.222.203.2', 1675575259, '__ci_last_regenerate|i:1675575259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55be129a02fdbb2adf08d0c3f1b1279b2f05837', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6017b01eb049209f452589930112be07190b2a73', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cacdbf1123f60c35fd2cff16b135a26d5c0dab1', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a416d71f58b91a72b73b9f5d638761607d67c7', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84bd47f96625f84ecea969ba81770152da383d77', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f5e636d611be099279bf1d53f5b5bc9605ba23', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acbb5e016638ed172d010d3ceb1b91967896056b', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f2d31e391c82cb47f4e794c76db192fc5fa86d', '172.105.247.100', 1675578019, '__ci_last_regenerate|i:1675578019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586cfac991fb93fbaaeeec484adff0750f0f1667', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b2d12e76d059899a72ec969318ed0f307dba68', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4a4bc07d477a2f31ed35026d64d656db6408e9', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcad89c66c35613cd5206d76ff53716de446a8d6', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf8309d33361639d4591b68bcba9c473e114627', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a41ef8fa5a77b3667761dd98c2ba5368d7266b', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a822de230503788cb9c968faf350088fa45cb3cc', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d394f3551d14d36e6e32865c2a315037f44e9dc2', '172.105.247.100', 1675578020, '__ci_last_regenerate|i:1675578020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f0d8269ac36847a979b8853e521baff5d12c07', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2253e7b06be905ba88ff875a40f06e5147ca40cd', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b585affe81feb8ec57a5d8577a639302ef0dd6', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99da56b4bcab1152cfb05bffdbd4ed0da104135f', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38feffb56648160994a0a89851d84a3968d1be1f', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09006eea05ca842bff906701a3f46ddf22683cf', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f95103cf557750ec5ac3a740283f0fb4508d0c', '172.105.247.100', 1675578021, '__ci_last_regenerate|i:1675578021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58afe0be1f3dc0bef200f9c65d68cb3ec79d213a', '172.105.247.100', 1675578022, '__ci_last_regenerate|i:1675578021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f3bcc425075d9f40395187f8d3fa139aa9ff929', '31.222.203.2', 1675580612, '__ci_last_regenerate|i:1675580612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36d2b122c8fd7d312b0906833f419eff659e82f', '31.222.203.2', 1675580612, '__ci_last_regenerate|i:1675580612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c220f3ff7347490895317f569d3d597cbb826a82', '31.222.203.2', 1675580612, '__ci_last_regenerate|i:1675580612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5ddfd2fdaabd9eea65677c13280658fdaff7e0', '31.222.203.2', 1675580614, '__ci_last_regenerate|i:1675580614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ede2a10d40e2d490388f2364caff693ecd79ce', '31.222.203.2', 1675580614, '__ci_last_regenerate|i:1675580614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b62674d7cbaaa795db216811152922b805ddcc5', '31.222.203.2', 1675580614, '__ci_last_regenerate|i:1675580614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b49e84fd6f4136835b05003e0156190eb94dd40b', '31.222.203.2', 1675582451, '__ci_last_regenerate|i:1675582451;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae30540f40b9c605f65e4651bcff871d40637b72', '31.222.203.2', 1675582451, '__ci_last_regenerate|i:1675582451;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47873bab8e11f3b3ca07ea88ee0ec9fac3123b03', '31.222.203.2', 1675582451, '__ci_last_regenerate|i:1675582451;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d26b2cfe923063254e61274e44069665e5b7f6', '31.222.203.2', 1675582453, '__ci_last_regenerate|i:1675582453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1a19e1817796b14e1a032e379d8e58715f8248', '31.222.203.2', 1675582453, '__ci_last_regenerate|i:1675582453;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61f2a4ab6349cd378348615f856c769ac07c59a', '31.222.203.2', 1675582453, '__ci_last_regenerate|i:1675582453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124c9f5f08f3594b2b049ef43e9fa1f61ecee0cc', '45.120.39.89', 1675583062, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839deb8064b4a144e94cb726cb50ad2c23ba3a1e', '45.120.39.89', 1675583431, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675583431;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675583248;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b368afaed5bb1805ecc6e334b3d5f718d7e94d16', '172.105.247.100', 1675583417, '__ci_last_regenerate|i:1675583417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('943e6ecd24eb784748320d2db1ad6d2b099a7db6', '172.105.247.100', 1675583417, '__ci_last_regenerate|i:1675583417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccaf90bd1f9836b19e7d28eba61eb51d028f5289', '172.105.247.100', 1675583417, '__ci_last_regenerate|i:1675583417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3e5340f5d8f36ccee3956c0b954d27cd6008d98', '172.105.247.100', 1675583418, '__ci_last_regenerate|i:1675583418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f32f94bc08883b533ce13946116a52cf7ec793', '172.105.247.100', 1675583418, '__ci_last_regenerate|i:1675583418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ecb72ae28f803fd1ce3d0e373ad5bc4cd4efa42', '172.105.247.100', 1675583418, '__ci_last_regenerate|i:1675583418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8a6b8643a6564c7d2588ab3a53686b1cf514695', '172.105.247.100', 1675583419, '__ci_last_regenerate|i:1675583419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5528fb3713a175e2703a95eb74214543170321', '172.105.247.100', 1675583419, '__ci_last_regenerate|i:1675583419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525901156160ac5c1ca37e0737eb970c1265aaed', '172.105.247.100', 1675583419, '__ci_last_regenerate|i:1675583419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc601249c7ec9d4d8df26376b7d754a9c422038b', '172.105.247.100', 1675583419, '__ci_last_regenerate|i:1675583419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0653a2eda207141da48abae049686e8ae4af575d', '172.105.247.100', 1675583420, '__ci_last_regenerate|i:1675583420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f4bb9949088927fbb91ed402578377ab1373e4', '172.105.247.100', 1675583420, '__ci_last_regenerate|i:1675583420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3b484d94e722f4d82e5825204ab6b9a98a06f6', '172.105.247.100', 1675583420, '__ci_last_regenerate|i:1675583420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92cc4b2790abf4d185dee98aa8d445869fd8325a', '172.105.247.100', 1675583421, '__ci_last_regenerate|i:1675583420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0faebd906b21df8f46abb22a6e54e057e5ce5a7', '172.105.247.100', 1675583421, '__ci_last_regenerate|i:1675583421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d3b12e7c861f012502d9831f0d021c0535191b6', '172.105.247.100', 1675583421, '__ci_last_regenerate|i:1675583421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b59de423ae6626a6be9d0b0fb99944a395ca1b', '172.105.247.100', 1675583421, '__ci_last_regenerate|i:1675583421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c4186702576cb0d09c28eb8571f0dd76366f0f', '172.105.247.100', 1675583422, '__ci_last_regenerate|i:1675583421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97e9b6463d253a4654ce915968deed56327b4c7', '172.105.247.100', 1675583422, '__ci_last_regenerate|i:1675583422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0575aa8af3610168675640a6b47951378ee5af1b', '172.105.247.100', 1675583422, '__ci_last_regenerate|i:1675583422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e5dd3318ea5bb2dd6e2b32a80204caedf2815a', '172.105.247.100', 1675583422, '__ci_last_regenerate|i:1675583422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1703a27b7b2b0d20b9e5eebf876135004179127', '172.105.247.100', 1675583423, '__ci_last_regenerate|i:1675583423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2b11120177f4f788a71814d6a68468c34684c9', '172.105.247.100', 1675583423, '__ci_last_regenerate|i:1675583423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c304e7704f308e07532ff47c97ebb03d689846c', '172.105.247.100', 1675583423, '__ci_last_regenerate|i:1675583423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1985032857fd66ae8e0ec4dee357e3fee316c1e', '45.120.39.89', 1675583766, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675583766;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675583739;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c9aa25b0cf6223c06404519fdc2eb65b0e55e8', '45.120.39.89', 1675584389, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675584389;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675583806;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f422b8194827efb4fbe33b9cf0300e1b97b76b84', '45.120.39.89', 1675586317, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675586317;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675586286;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba3129377065c6d51ac39e4f6904af54e0c3e63', '45.120.39.89', 1675589911, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675589911;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675586318;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ba7c6963ea244859cd936f40efa0ddc77b8737', '172.105.247.100', 1675588218, '__ci_last_regenerate|i:1675588218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8921b08b9ced4e4f5aecbc12e8f362d89b2687', '172.105.247.100', 1675588219, '__ci_last_regenerate|i:1675588219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eafc6c1db39123b32cb3099888713f1ade01f0a', '172.105.247.100', 1675588219, '__ci_last_regenerate|i:1675588219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db16786dfc9db0432de06f38f0361ac54b0482b5', '172.105.247.100', 1675588219, '__ci_last_regenerate|i:1675588219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac07525e062f5236554ab5fe111e5d545ba4a50', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2beef648b2d81c8da630e2e536e2310dc28280', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcafd30717d9112877ba14082eb0c06bf6ad2230', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('402e4136e15ea04aa67646eabe8b60845c8723d8', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0677f5c31a02e91a6531cb0bfcedf81798d39a4', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc924bf103ad1530fb0d05a3a722b0755d10eec4', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58e36aa5c0a7c5aea8024ed21e0ea208840511d', '172.105.247.100', 1675588220, '__ci_last_regenerate|i:1675588220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367df26ed91a76ab9b9306df6b9d7db768861217', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9eefecd4f8ff9100329ff285dea3b5c443fc0b', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c2cfc040ee7289579711f8341f07295bf76152', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1a80c5a98b19b3e5a56c4e421a0ad1284237d6', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1520d97daabba3757c8d873a99a3758da1f7605a', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3ab87a750417f67db5325958c64878a7f5af86', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a778cdaba7acd3e7d063a62e34da41dc42dcb30d', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b539793e8ac3ccae60537d7b6cc3602043a872f1', '172.105.247.100', 1675588221, '__ci_last_regenerate|i:1675588221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03dcefec208b4e2c8da16ab894ea7297eeb79a5d', '172.105.247.100', 1675588222, '__ci_last_regenerate|i:1675588222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160a7290cb129e21ea63360d63e0d3c90756c8a7', '172.105.247.100', 1675588222, '__ci_last_regenerate|i:1675588222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49600239d1a3beff6700c4ad7e856282c72e1bd', '172.105.247.100', 1675588222, '__ci_last_regenerate|i:1675588222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa73d694eba4a7b1e4e7bea7bb96a84332a8755', '172.105.247.100', 1675588222, '__ci_last_regenerate|i:1675588222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60856af2ae4fc593ceab01b52131af102d9cace8', '172.105.247.100', 1675588223, '__ci_last_regenerate|i:1675588222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e1c07c801ced66ec0ce4810d123dc563e7de8b', '37.111.219.132', 1675595878, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675595878;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675589921;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02bed14af97d7433384f0eba1e0335f14b307a8d', '172.105.247.100', 1675593619, '__ci_last_regenerate|i:1675593619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e195ac9d1a84d72940e265f11bbefc738bb5265', '172.105.247.100', 1675593619, '__ci_last_regenerate|i:1675593619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b4a3cb65338e66751f60495bb7983c2532f504', '172.105.247.100', 1675593619, '__ci_last_regenerate|i:1675593619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47185a93df433543bc6ecfc2f8f276fed9c9665d', '172.105.247.100', 1675593619, '__ci_last_regenerate|i:1675593619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9bdb2b78294fa85f4176e64a41bd29d6adbf1f', '172.105.247.100', 1675593619, '__ci_last_regenerate|i:1675593619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d12af644f6264427ad47b7a0f91f450d93ed335', '172.105.247.100', 1675593620, '__ci_last_regenerate|i:1675593620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f323989ece6c3b25ce1ba2d2fb674f973ae83cd', '172.105.247.100', 1675593620, '__ci_last_regenerate|i:1675593620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('847e9017560aefd9cb70d5a881fb730b02146cb9', '172.105.247.100', 1675593620, '__ci_last_regenerate|i:1675593620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e76f82d55f45f824193e68ed2feb300fba9e6a6', '172.105.247.100', 1675593620, '__ci_last_regenerate|i:1675593620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f3aef627415dad9f7c6e477041a7520b2df1e2', '172.105.247.100', 1675593620, '__ci_last_regenerate|i:1675593620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c63d0e179e0ddbf5279471dec46d1a424f5e4b74', '172.105.247.100', 1675593620, '__ci_last_regenerate|i:1675593620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f416eba8d804faa6901bac593461e132e40e4f', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5055454a39d03850559b044904a75db0f067f1', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bdf4a3faecd9e7d330965fc48c4bee2099fdf24', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3adbe4445187ec5359e23b6d39e06b38d04f1db1', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1148b7a2a74309609ba6a2fcac604e9d521a738', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18c74b42813e6f2c29c0c73b3cd52094e82107ba', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ba1dc1e5e4b625722695e42d5aa0648fd3e691', '172.105.247.100', 1675593621, '__ci_last_regenerate|i:1675593621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea4d7802ffbf02c36235a721ddb87510bc604d2', '172.105.247.100', 1675593622, '__ci_last_regenerate|i:1675593622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30c6025a79f1eaaa4e7b8b936a157d9cc02e8b5', '172.105.247.100', 1675593622, '__ci_last_regenerate|i:1675593622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe6e01b500ac6bcca7acc38bcfc36b8f71d9c221', '172.105.247.100', 1675593622, '__ci_last_regenerate|i:1675593622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4096c49ce7aa11294a925209a34cb026f592297', '172.105.247.100', 1675593622, '__ci_last_regenerate|i:1675593622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e357896fd36696ef893c97731bd6a4735d7f8e', '172.105.247.100', 1675593623, '__ci_last_regenerate|i:1675593623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61993702a67cd7353231f38be4bb3b9538199672', '172.105.247.100', 1675593623, '__ci_last_regenerate|i:1675593623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1ce9e43ff5b3837f565c73f8ec0d3be9e6d29ae', '31.222.203.2', 1675594982, '__ci_last_regenerate|i:1675594982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d212a6bb6aab03ba7992698d5001c45c45cbd3fa', '31.222.203.2', 1675594982, '__ci_last_regenerate|i:1675594982;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eec8c6a7e3550832c31083d086927787f2f1b63', '31.222.203.2', 1675594982, '__ci_last_regenerate|i:1675594982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86376a70e208988a64b05a0ba1ed7ed4b1add49', '31.222.203.2', 1675594983, '__ci_last_regenerate|i:1675594983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b185afa9cd2d9cabbcd3781ed2cec2489540f4', '31.222.203.2', 1675594983, '__ci_last_regenerate|i:1675594983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e936ccd41e31284a382e9a883c5f563b3cafad', '31.222.203.2', 1675594983, '__ci_last_regenerate|i:1675594983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa4f40cc36ba0f9532fe0c47141bc5859a3eac7c', '37.111.219.132', 1675603422, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675603422;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675595941;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540f01da236e7ace58db906848749765384e17f6', '31.222.203.2', 1675596861, '__ci_last_regenerate|i:1675596861;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f195e6e989bb9f40447fd1c403ef1bb28666d370', '31.222.203.2', 1675596862, '__ci_last_regenerate|i:1675596862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('609751220847413a8cc00b62314ade8ccfcab982', '31.222.203.2', 1675596862, '__ci_last_regenerate|i:1675596862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7fcafae1da18f37542b2ce8d30ce190856e766', '31.222.203.2', 1675596862, '__ci_last_regenerate|i:1675596862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c94eed1ec24ffaaf8d5178fd0fc650d65f5bb57', '31.222.203.2', 1675596862, '__ci_last_regenerate|i:1675596862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f5044d0a0614c1811faeca0b622b39df61d4fd8', '31.222.203.2', 1675596862, '__ci_last_regenerate|i:1675596862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da11407d5c43ee3736984decc857a67c81813d22', '172.105.247.100', 1675599016, '__ci_last_regenerate|i:1675599016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1bf451a9782bd1a3df1726c8a0fd664b8715a8', '172.105.247.100', 1675599016, '__ci_last_regenerate|i:1675599016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e116d680b3523d0c0aa071ae75e57bcbcd14d9', '172.105.247.100', 1675599016, '__ci_last_regenerate|i:1675599016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf9a8024dc459b17ffa7f715731cb3efa4a13ef', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74c40bff786ee10c4b0680d6ddfd39ca96225f70', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708e5f77fd973ba01031f91555e9280c88cd864c', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c436bb68e24f61258c745e5705d80d59e6b936', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a335d345b1721747929e50b76001b7936ca8639', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f8fa4184937e9c7ce05f050fea00fc6834efd3', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd837958e598877988d3d705ee9da2a5759dd5d8', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2112fcddd9475d78b33816e32adad4e5f991c71e', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462b40d02b6703fbf786abf9d60d0792b3abdd9c', '172.105.247.100', 1675599017, '__ci_last_regenerate|i:1675599017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed425cd6c103ebbbe9ea8b9ee7d329e9cf22d0e', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2f90218c28ae9f76eba203d4983d34e4a5d587', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a0cd9f19ab4bb27b37d98827683212eaf0e338', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f40766902623e4dc0394f70017e3656e06d8e6', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b7c5e9e1d05caee10d4509371380825e68e647a', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2a2a44fd6db14f4613bab7bfdd422485523a01', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84bb1e67b7191438ea9fcd2d4261c015f3986516', '172.105.247.100', 1675599018, '__ci_last_regenerate|i:1675599018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60cb70270d1049e6adf183c8a320fbdaea771115', '172.105.247.100', 1675599019, '__ci_last_regenerate|i:1675599018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ee68b0cfacc8aa59af59e992859f2e4367de56', '172.105.247.100', 1675599019, '__ci_last_regenerate|i:1675599019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de6fec6cdd6313d290f59334e4ddced00fa8cd6', '172.105.247.100', 1675599019, '__ci_last_regenerate|i:1675599019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c945f452380be42bc919fecd66d9d691af2319', '172.105.247.100', 1675599019, '__ci_last_regenerate|i:1675599019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a8cc44d3ca48a16e27c156668194f0a8ed1cb5', '172.105.247.100', 1675599019, '__ci_last_regenerate|i:1675599019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ea9fdf1376ebea86c7db0f18f62f914d563c92', '154.12.227.174', 1675601972, '__ci_last_regenerate|i:1675601972;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070d7144ab26b17294e5c0aef549c741b7769203', '154.12.227.174', 1675601974, '__ci_last_regenerate|i:1675601974;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500efb799236ba128ccc61fd88b55a70f1e2e695', '37.111.219.132', 1675603825, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675603825;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675603649;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb8292c2b7ec7a326b6775a91cba6e58d7d4115', '37.111.219.132', 1675606113, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675606113;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675603839;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66785dd20abd2240eabf6f0d102a4b35bc18cc1e', '172.105.247.100', 1675604419, '__ci_last_regenerate|i:1675604419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d350290cf181ac40ce360536f680a024ab484ca0', '172.105.247.100', 1675604419, '__ci_last_regenerate|i:1675604419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eeac7f58db52c207efca20dff7427f5c2e658b8', '172.105.247.100', 1675604419, '__ci_last_regenerate|i:1675604419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f30e8d4b51c2e241f9a7772a9f0ca5197b7b99d', '172.105.247.100', 1675604419, '__ci_last_regenerate|i:1675604419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5023419a3f0eea967afa8cf764db37620b633573', '172.105.247.100', 1675604420, '__ci_last_regenerate|i:1675604420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3813811d920ff886a9804d46774270fa3dcf3960', '172.105.247.100', 1675604420, '__ci_last_regenerate|i:1675604420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5213132126755614000b17e2316ea86b28f0f6', '172.105.247.100', 1675604420, '__ci_last_regenerate|i:1675604420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b5fcb41817132cc1cd122e7e722997be2597343', '172.105.247.100', 1675604420, '__ci_last_regenerate|i:1675604420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5871bd7d2f94ddbd88e1431dd90ebc77a7da61a6', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83219ed3ea62b7f3a1ed2f2b4f725fe0199c276d', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e50795efaf0e5a2a24c21bb70bde66f433d3e8cd', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d3f8ab8802dd88a610d0e339f74cea4b304f70', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00ca1de3af15829deb4462fa95b32774b401cacf', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c84ce4bccb98643c2c406d957db8bf427dba2d', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbdf7ecd510fb7afc5b0cf2bb0b5bb776daeeb5e', '172.105.247.100', 1675604421, '__ci_last_regenerate|i:1675604421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b711829c04fb8eb34c984fdbd555ebd829003909', '172.105.247.100', 1675604422, '__ci_last_regenerate|i:1675604422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae949d2f59543fd281050ae3fbc52fea2ae00c1', '172.105.247.100', 1675604422, '__ci_last_regenerate|i:1675604422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a697c180ad854bca1339e03045df476f2519fb2d', '172.105.247.100', 1675604422, '__ci_last_regenerate|i:1675604422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95819641982e150fbdbe779f2885f2c7030d95c5', '172.105.247.100', 1675604422, '__ci_last_regenerate|i:1675604422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc16a7941b6c631e7410204040f1c41b630656ed', '172.105.247.100', 1675604423, '__ci_last_regenerate|i:1675604422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59dad21655d1dfebdc393a668358d6f5a33fbdc6', '172.105.247.100', 1675604423, '__ci_last_regenerate|i:1675604423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25029604b2854896a784190b13c64a0acb57887d', '172.105.247.100', 1675604423, '__ci_last_regenerate|i:1675604423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce90758ee8dc31026ade339dcdeb5181b0cbc852', '172.105.247.100', 1675604423, '__ci_last_regenerate|i:1675604423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8985d6d663a63049efbfc788203437bdb461562d', '172.105.247.100', 1675604424, '__ci_last_regenerate|i:1675604424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32221b5d845e398bf8089b0759722cc14608cf94', '87.236.176.237', 1675605502, '__ci_last_regenerate|i:1675605502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f306b69aecd3786077c85f88639a9548772e8256', '37.111.219.132', 1675607521, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675607521;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675607514;register_id|s:3:\"332\";cash_in_hand|s:8:\"220.0000\";register_open_time|s:19:\"2023-02-04 20:59:28\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a6d27ac2e5084688d0f8e1fbcacc22fd252bc87', '205.210.31.53', 1675606939, '__ci_last_regenerate|i:1675606939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c181304eceb944d38df7ad951609f5d471984dbb', '205.210.31.53', 1675606941, '__ci_last_regenerate|i:1675606941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c9654249827431e06d0202b845515b7e6bebcf9', '205.210.31.53', 1675606941, '__ci_last_regenerate|i:1675606941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96963cf0c54a8a0e92514265c8205815a6f1792a', '37.111.219.132', 1675607539, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675607521;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675574489\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675607539;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f478f90fb70192881b01cdc49c686113f076b0e', '31.222.203.2', 1675607583, '__ci_last_regenerate|i:1675607583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44ea496c7e10889204cb00280e28aeeedaa8fd7', '31.222.203.2', 1675607583, '__ci_last_regenerate|i:1675607583;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bbdf4d1d845da92d05b590c302e98087f4f764f', '31.222.203.2', 1675607583, '__ci_last_regenerate|i:1675607583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31c61130d91ce82b06ace2a8700d658d9eb1171', '31.222.203.2', 1675607585, '__ci_last_regenerate|i:1675607585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d086511606deaadbd418687757a95c9c8e6c21', '31.222.203.2', 1675607585, '__ci_last_regenerate|i:1675607585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3732692347634585241f7eb943f1c4b2d2aafa39', '31.222.203.2', 1675607585, '__ci_last_regenerate|i:1675607585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('516d8ffda2dbdcdb24dd880178b2a83454dcea26', '31.222.203.2', 1675609457, '__ci_last_regenerate|i:1675609457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb1397f919f4652a0a0ab618f8e4e071fca4654', '31.222.203.2', 1675609457, '__ci_last_regenerate|i:1675609457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c58e3c4e703d532d7670946ca6c1a6db908a96', '31.222.203.2', 1675609457, '__ci_last_regenerate|i:1675609457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd5a91091f22d93afb5f615918f2983dff2eb80', '31.222.203.2', 1675609457, '__ci_last_regenerate|i:1675609457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b2d31fb68572d5f9135833df35815b594a9259', '31.222.203.2', 1675609457, '__ci_last_regenerate|i:1675609457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb8c61b853ccaf6a2fd8f24322c73ffc6ca04be4', '31.222.203.2', 1675609457, '__ci_last_regenerate|i:1675609457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa58067c0d57c430389e11579f6ccce8d112da9', '172.105.247.100', 1675609816, '__ci_last_regenerate|i:1675609816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac5a9404328aa46e09b7974051923a467631eba', '172.105.247.100', 1675609816, '__ci_last_regenerate|i:1675609816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de51f7a9bed76a342a9aae5e36033293d2f70488', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1ad76e0212a93c40abe03fe54f4063f04c3773', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af9390ccf3b3a105777f48a16d5205592a9b181', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e5bee26ed28050ed16d56dc820a38e9285880f', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e249ac7eeed0110ad6e039151e35ac363809170', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77bc90428d36209b4d7cb3b7dbbcf7fdc3f34d0', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076514517b1391de2f667e749e2c766532997c15', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08da044b1f3a6dc013cbe2ca83e4fde21ed45d07', '172.105.247.100', 1675609817, '__ci_last_regenerate|i:1675609817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eeab775e16af538f43c5539ff07ee0950f8eb62', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4399e81c8485be70ce872d69f981a43e65651d6', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83881ad8ab5c209d30ac38232cd60c3d487f101b', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aea175f347c1831616d03e06d0ff377bd1e5fac7', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('440b575d9b8fe9d9e9f91797846cdf56cfe2a76d', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff48c5e378e84dc1bfac215735489ff022445efd', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81a798677c6b17436704bbd7b876fdc2cd078c1', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf905a3d456c298b1e058e3d5c86912dea45625', '172.105.247.100', 1675609818, '__ci_last_regenerate|i:1675609818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e316c04e5cd8ea0c0d5492c85c550584179659', '172.105.247.100', 1675609819, '__ci_last_regenerate|i:1675609819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e890133577ad0928b465b187c20ffb2736efa56', '172.105.247.100', 1675609819, '__ci_last_regenerate|i:1675609819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78fc6cafe23a53a2f72fe2d1d1e4a488dff6077', '172.105.247.100', 1675609819, '__ci_last_regenerate|i:1675609819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f08013b5e330794b89f0a9a6716dc56d46ce735', '172.105.247.100', 1675609819, '__ci_last_regenerate|i:1675609819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf52207de8f35be7d67f51952c1b59395d86e01', '172.105.247.100', 1675609819, '__ci_last_regenerate|i:1675609819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('041530a32e8069d911772b3e997448bc8ef0faf4', '172.105.247.100', 1675609819, '__ci_last_regenerate|i:1675609819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b109fb516772a8bd30bc16e0c41abfc44466ce6', '172.105.247.100', 1675615218, '__ci_last_regenerate|i:1675615218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ddadba3ce8d0a73f8ab4c2797113297333956a9', '172.105.247.100', 1675615218, '__ci_last_regenerate|i:1675615218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece57b03f9ec3e77e379f55a6d1b3465291d2b30', '172.105.247.100', 1675615218, '__ci_last_regenerate|i:1675615218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8af5aba26b66736acfa929c437507511ce0ef14', '172.105.247.100', 1675615219, '__ci_last_regenerate|i:1675615218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09371262f339bbb0025c870cfbbe2d8b45c0e94', '172.105.247.100', 1675615219, '__ci_last_regenerate|i:1675615219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1a3cfcbe864a2e405f37d776d64ecec309c94a', '172.105.247.100', 1675615219, '__ci_last_regenerate|i:1675615219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b07c3fdfefad3bc4e91142aae0bb627dc26dc81', '172.105.247.100', 1675615219, '__ci_last_regenerate|i:1675615219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9425c13c01570eb91e92250b43d505b26865ccf8', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece25ad58e51a99e6ebef543a741c11a3cf8b10c', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81ecfecb76fa18895bb569e49d3d3b6aeb32265', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c1a4e057bf7cb0264992a15b1596cb72d6ad9e', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92623d117d8fa7767f7f85f3d9306c67b6806d3', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9261791e328fd0dd2d9fc118d317f96d631105a6', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8940f346bde9a7ffc0d9b85b0fc257fba72b78', '172.105.247.100', 1675615220, '__ci_last_regenerate|i:1675615220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c60aa705fee813d65ec6f94e0d3a74d60f553e9', '172.105.247.100', 1675615221, '__ci_last_regenerate|i:1675615221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af4192182095add1b0e9c3c0d0b71b637f697cd', '172.105.247.100', 1675615221, '__ci_last_regenerate|i:1675615221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62fd1e71162bc38f2acdf11d8a4424bd3c25ea08', '172.105.247.100', 1675615221, '__ci_last_regenerate|i:1675615221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98bc70951eb4e441ca52174c4fa1214a00bb594d', '172.105.247.100', 1675615221, '__ci_last_regenerate|i:1675615221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648c7faf127c9ab8305cfd1ac2e89db85564aa2e', '172.105.247.100', 1675615221, '__ci_last_regenerate|i:1675615221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94bc7651520ecb98087b5e196447e4a68d56ead1', '172.105.247.100', 1675615222, '__ci_last_regenerate|i:1675615222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fc517f0e5504658901bfd2bdd05fbc49047a48', '172.105.247.100', 1675615222, '__ci_last_regenerate|i:1675615222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f455917ebfdabd5c80be0543fc24a94bd432f2fe', '172.105.247.100', 1675615222, '__ci_last_regenerate|i:1675615222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ba4b2d2f7ab589d6010e838d10278887773ab3', '172.105.247.100', 1675615223, '__ci_last_regenerate|i:1675615223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e28dfad9c005039a01ae1c9f94236dcc248f51', '172.105.247.100', 1675615223, '__ci_last_regenerate|i:1675615223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9364bee86c1a4baac486b566d7fce19d6ec66c6', '205.210.31.59', 1675619262, '__ci_last_regenerate|i:1675619262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9479aef58d5dfa597bf74b943680d396458cca6', '205.210.31.59', 1675619263, '__ci_last_regenerate|i:1675619263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f297fcb7159b528de0b3f33608c3b23252ed6bfb', '205.210.31.59', 1675619263, '__ci_last_regenerate|i:1675619263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('412e16dad423e7d7a17798049ba23d3bd05989a6', '31.222.203.2', 1675620186, '__ci_last_regenerate|i:1675620186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047c3f7053a21703443c4c01eb86ecc7afc37ec2', '31.222.203.2', 1675620187, '__ci_last_regenerate|i:1675620187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164e0f87bd1fe7e85aca0229d06075f52f7b3ee9', '31.222.203.2', 1675620187, '__ci_last_regenerate|i:1675620187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba64218654d48ea90b6b869a2265529b5e7401bc', '31.222.203.2', 1675620187, '__ci_last_regenerate|i:1675620187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d3624f87ac28215bebd2b206969375aac5215f', '31.222.203.2', 1675620187, '__ci_last_regenerate|i:1675620187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16590efcc3ed33764961fdea3ffebbf3d18491d5', '31.222.203.2', 1675620187, '__ci_last_regenerate|i:1675620187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63bffed961be695755c53c7f9a2eea01444dbc18', '172.105.247.100', 1675620617, '__ci_last_regenerate|i:1675620617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87d5ff989f021d1b04e3050f9cc485f8f7bd58f', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54842cc4a373d1a17bc2cb5ce3fe040eed1c3322', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73467e991ff4d8e821744887e957b66433fb1c3', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb71982df574dd0d9a2c3fb7c6ca85ad967b93cb', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a58c5806df07d678d50624e776144f1a0d5cd7e', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8bfeea447c92a556cf16c9c5d0f14be9366512', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8864286eeda06d20e5cbb389c8894176a0e9909c', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885afd3f0202f81c37ca1c0132ed7bef3d43e1b3', '172.105.247.100', 1675620618, '__ci_last_regenerate|i:1675620618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee8125d304774d042e245c864a979306d0eedba', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('711dc8fb3700e7527b58aca9f159bd00eda9c8f7', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b661d27c1c6fc8683ae59da52c77897d3fd8725a', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859639fc59b83de8dcd36cdd6a7e3b78088c8d74', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72dbc94b169dee0212684001934d148396d2f59a', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281bba11cde6fa3f4d88fa108300979e5f514219', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c18909d3a882cbba7e8220499a0edbaf777fe81', '172.105.247.100', 1675620619, '__ci_last_regenerate|i:1675620619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0199a61bf5f6bf09eca7bc65e0212b24f47ae9bf', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5932ceac3b7f566c78b5a45bfbaa00882541fb34', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b44eef35c013b6c8b5fbebaa8d59cba2f898f9', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f59a2f968e15bfaeaadbb82d77207c7af71ec25', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a9aba5b865a2ba7542c06f30017ca471d15da9', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b427f74ba2365fb6f38debf8fcd0ed5d6335d64b', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a28f5342e4b5458ab46d0a4a72d7499dde9a0f7', '172.105.247.100', 1675620620, '__ci_last_regenerate|i:1675620620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694df85e2f7a0c63576396316ef8dade0ca98911', '172.105.247.100', 1675620621, '__ci_last_regenerate|i:1675620621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5835416d927fae6daf7e30b279f8015ebc6b6841', '31.222.203.2', 1675622062, '__ci_last_regenerate|i:1675622062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac20e77affc71dc627c611d6efe2bb7dd51e0b60', '31.222.203.2', 1675622062, '__ci_last_regenerate|i:1675622062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83276ee7a7e3ce3716d225ee2f2ef9f082ce7142', '31.222.203.2', 1675622062, '__ci_last_regenerate|i:1675622062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b12a2ee5f5af19141f376ab26a086da237b9ce8', '31.222.203.2', 1675622063, '__ci_last_regenerate|i:1675622063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02404e7afd710f6ce048372dd16a9b566884bd4d', '31.222.203.2', 1675622063, '__ci_last_regenerate|i:1675622063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a9804ebde7a03ce4dbcb1113c08ed7b6e874b6', '31.222.203.2', 1675622063, '__ci_last_regenerate|i:1675622063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41feed1d16c859a20df803d4d1d906e542370d43', '172.105.247.100', 1675625421, '__ci_last_regenerate|i:1675625421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('210fdcb1ef4fa4f2fa9d1e290acd43b8e6606af3', '172.105.247.100', 1675625422, '__ci_last_regenerate|i:1675625422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32019eb7c917c9cbb018ed1581358447028ed8f3', '172.105.247.100', 1675625422, '__ci_last_regenerate|i:1675625422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d72448ee3da388fa1a308adc18b6d7509a48479', '172.105.247.100', 1675625422, '__ci_last_regenerate|i:1675625422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7016596bd821457003795ce1157ec83fd2fa607', '172.105.247.100', 1675625422, '__ci_last_regenerate|i:1675625422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('043e3bf068fefc74a6a7ee528c515c267ad91e6b', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8274e68a1334aeebba0dadae0d468735483af0eb', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986c953131aface88cea8e1553670ffb78c2b2e7', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35c112c79de81831eff56a3f7f5b18dda56f253', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa42d60163479cacaa25441e0137542a8845458a', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2232671a8a283b00a2c3394c68ff5ba9c7ca905b', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78973e25e33afe3ab62b510a61968889213fb05c', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcfe3dcd7ed5dc3ac79767fcca9652a1877922b', '172.105.247.100', 1675625423, '__ci_last_regenerate|i:1675625423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bae5c4bdfe6beb97499927d5f341d44a90f2ce', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e86fd855359aa7264309078574e4a09a214e5a', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb3ac61ab785256284ee59ba8a6fcae79046c6e', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef6e199554edf64edf0cec74a995ab93d290210', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8817ce0c36280bbf11a25e2326126b9787b07943', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5775ea316296ecdd47ddca9c88da04ac2f1de3b', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d37f211f85b896aebf2c9ba0b52aee04f098f94', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a312b0852f247b3b91ce18f5a701d45d138273', '172.105.247.100', 1675625424, '__ci_last_regenerate|i:1675625424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10deffc1123d157f2d2745adf8f67706920ee11d', '172.105.247.100', 1675625425, '__ci_last_regenerate|i:1675625425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1ddd2a8fad074729020dd915dfb255c8a18825', '172.105.247.100', 1675625425, '__ci_last_regenerate|i:1675625425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e62c2bdd05c0453fd1e4ccec118b325c5e0437a', '172.105.247.100', 1675625425, '__ci_last_regenerate|i:1675625425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b888602d3129669564310b5d7f2495d06fd8e3', '209.141.36.231', 1675627345, '__ci_last_regenerate|i:1675627345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa26a971dc2e6a2af4e6f0b88add43d3bbe8105', '209.141.36.231', 1675627346, '__ci_last_regenerate|i:1675627346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e0e2819258ee5a5050d94c3587de005ea151cd', '209.141.36.231', 1675627346, '__ci_last_regenerate|i:1675627346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75418589b6ace55bcc9efa5ed52e0419c86a96e8', '172.105.247.100', 1675630216, '__ci_last_regenerate|i:1675630216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49467833ede4480971bca85c3fbf6fff95c00940', '172.105.247.100', 1675630216, '__ci_last_regenerate|i:1675630216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1ee40192dd8e72a52b7f6300a5d139b97f55df', '172.105.247.100', 1675630216, '__ci_last_regenerate|i:1675630216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce46055d2c543fb293d2173298f43810dd9e8488', '172.105.247.100', 1675630216, '__ci_last_regenerate|i:1675630216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6ac31e673d4a708b9d3e696296bc6c8f10a57a', '172.105.247.100', 1675630217, '__ci_last_regenerate|i:1675630217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0757a053b3e457f135fd5f40701b81e7d855b9e', '172.105.247.100', 1675630217, '__ci_last_regenerate|i:1675630217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55c23e5187e2705e594d859b0155a05b01f0c09', '172.105.247.100', 1675630217, '__ci_last_regenerate|i:1675630217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f6077d82025fb101816a4f4358cda227190049', '172.105.247.100', 1675630217, '__ci_last_regenerate|i:1675630217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357426e0860ce74dfb2df0586616f6d3b931d8a4', '172.105.247.100', 1675630218, '__ci_last_regenerate|i:1675630218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1f77b6c4c50a4da9c3969782e24694e61adb8f', '172.105.247.100', 1675630218, '__ci_last_regenerate|i:1675630218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab25fad92890d426d2317af74597e388a3431f1', '172.105.247.100', 1675630218, '__ci_last_regenerate|i:1675630218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918e47c4082dfc67d25b8fa3cef1072475c47b83', '172.105.247.100', 1675630218, '__ci_last_regenerate|i:1675630218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca80d25d1827781e137eecd1c13cad6a6adcd1ee', '172.105.247.100', 1675630219, '__ci_last_regenerate|i:1675630218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('655878892a693917e9eb5a17f5e9bbf65297f1a7', '172.105.247.100', 1675630219, '__ci_last_regenerate|i:1675630219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5420e79bf733a810f3fe0f68bdfca8edd330ef5', '172.105.247.100', 1675630219, '__ci_last_regenerate|i:1675630219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529af0178631a1d1b37b1daa6084849f382f61de', '172.105.247.100', 1675630219, '__ci_last_regenerate|i:1675630219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd96be83340563b04e00143f36f094535719707', '172.105.247.100', 1675630219, '__ci_last_regenerate|i:1675630219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afcb0fda3c42d14ced57e6c3dbeee6af251e7d9b', '172.105.247.100', 1675630220, '__ci_last_regenerate|i:1675630219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c8b740c5b31bcfaa0ad25f52e74fe6d1637d84e', '172.105.247.100', 1675630220, '__ci_last_regenerate|i:1675630220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526562d5f9b3f8d35e1fa5c79b93debf1e9ba899', '172.105.247.100', 1675630220, '__ci_last_regenerate|i:1675630220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52c6c68209deec2c89912f83180e537f78baa27', '172.105.247.100', 1675630220, '__ci_last_regenerate|i:1675630220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('053bff0ec420ac73a37ded21d24fa9f0c7e40ff6', '172.105.247.100', 1675630221, '__ci_last_regenerate|i:1675630221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ac7a14c68a03d2d8001a450c4fd890e58136e7', '172.105.247.100', 1675630221, '__ci_last_regenerate|i:1675630221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8ce984de2e5abf4feef15b666f509665ddcde2', '172.105.247.100', 1675630221, '__ci_last_regenerate|i:1675630221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ed2d4280717bcfb40e9f3aff752414144862a2', '31.222.203.2', 1675631004, '__ci_last_regenerate|i:1675631004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af039e5065e56dfc931726e15a897d1d59d56e8', '31.222.203.2', 1675631004, '__ci_last_regenerate|i:1675631004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8fae8cf89bde954157f0491124c66fdc023661', '31.222.203.2', 1675631004, '__ci_last_regenerate|i:1675631004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e206485b10a186082c295752934df22c3f59ce3', '31.222.203.2', 1675631005, '__ci_last_regenerate|i:1675631005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28a9f72be5ade5e3ca8fb8212e8e441a8a5a76f', '31.222.203.2', 1675631005, '__ci_last_regenerate|i:1675631005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd82fe3b66c2fe5e0caa235c173e582947f4c43', '31.222.203.2', 1675631005, '__ci_last_regenerate|i:1675631005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b4c5c1283b1eb81c85fdd4d024c5916ff227238', '172.105.247.100', 1675635619, '__ci_last_regenerate|i:1675635619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0698f628b2ed21ea6f498e9667c864ac2e9e97c1', '172.105.247.100', 1675635619, '__ci_last_regenerate|i:1675635619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962232315e8d490580cdecc7c549812a5bb9fae2', '172.105.247.100', 1675635619, '__ci_last_regenerate|i:1675635619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d869e8ffc9a6f4ca0549c0beb15f8fc7a5ade38c', '172.105.247.100', 1675635619, '__ci_last_regenerate|i:1675635619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c515a96ccf6fb1f2a1cb113e43caec0b095be4', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfaeff53d01280a4396e1101b03efed19d6e4942', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2c6867f49025a281e1bde80cd610b13b7cdb31', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54badf264e0837f5aef229361ec0663f65bfb004', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4198065a1c6575bb03150d73094b1fe9c303c906', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a0be5835ce9710b9ac0c5dfd1fed6690a08264', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24140aa7a92b74c02aa84b02b97ebbb0983706a', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b24d297c5a6806631dc7ffd5e9ed5dbeed8716', '172.105.247.100', 1675635620, '__ci_last_regenerate|i:1675635620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03df96d9a43965e2c7c5628092e77239438bdf7', '172.105.247.100', 1675635621, '__ci_last_regenerate|i:1675635621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b16f3ff3240533587bacff10b535d918a16824e7', '172.105.247.100', 1675635621, '__ci_last_regenerate|i:1675635621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf79c364514ab9c864d19a12ce778d363331580d', '172.105.247.100', 1675635621, '__ci_last_regenerate|i:1675635621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7611937f5985b1abc3f38f82e6a5aac0031a8970', '172.105.247.100', 1675635621, '__ci_last_regenerate|i:1675635621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39a661ddbbb3aef8dd2714692c20d6867a36c1fa', '172.105.247.100', 1675635621, '__ci_last_regenerate|i:1675635621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b053fd9141b3e8ecc57081c3f2f4286d1f069b7f', '172.105.247.100', 1675635621, '__ci_last_regenerate|i:1675635621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c475a8798efe5fea1bb7e757313bda24d8f2cb3d', '172.105.247.100', 1675635622, '__ci_last_regenerate|i:1675635621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6483bd5c720e0f4fd48b96801d2a0f74a3fa27', '172.105.247.100', 1675635622, '__ci_last_regenerate|i:1675635621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b652dcb485a4da79572103bb61906ebf197f7f', '172.105.247.100', 1675635622, '__ci_last_regenerate|i:1675635622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b27504db609ec076d92cacfbfe34242cfd4b61', '172.105.247.100', 1675635622, '__ci_last_regenerate|i:1675635622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa8c28c893e4a35e44babf587a3cfa33054c9bc', '172.105.247.100', 1675635622, '__ci_last_regenerate|i:1675635622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bebb1c5addb732da4a9abb858730bf1af991cd0', '172.105.247.100', 1675635622, '__ci_last_regenerate|i:1675635622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603f82ded24e562af12db9897584aa588f48a22c', '31.222.203.2', 1675639998, '__ci_last_regenerate|i:1675639998;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('112faaeb1781bf29f8305a0e7f86ced24d9cb6b2', '31.222.203.2', 1675640000, '__ci_last_regenerate|i:1675640000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6323c16beefb7620bf72c02b23cef3b84c4d67cd', '31.222.203.2', 1675640000, '__ci_last_regenerate|i:1675640000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e993c3a3abaed0412bc8fadd74648d159a4682', '31.222.203.2', 1675640000, '__ci_last_regenerate|i:1675640000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8645266f9b066f49a8fe12fd6d44a8c92da5a04', '31.222.203.2', 1675640000, '__ci_last_regenerate|i:1675640000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0e5fada7c1e15268eb56c9edb99d904daed6a1', '31.222.203.2', 1675640000, '__ci_last_regenerate|i:1675640000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57999932e7162e7243d65f9f4845c6f179c96858', '172.105.247.100', 1675641016, '__ci_last_regenerate|i:1675641016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f597b2345f5a359368104d43e3542132e4c2a0d', '172.105.247.100', 1675641016, '__ci_last_regenerate|i:1675641016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ab77eca0bb145ad4bbd97f2671554db3fc3a1b', '172.105.247.100', 1675641017, '__ci_last_regenerate|i:1675641017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22da29668094f83aa2e3a3d1855f95a2eec754a', '172.105.247.100', 1675641017, '__ci_last_regenerate|i:1675641017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6bbbd681d9723bbc78d027b82cfaa973f2c2f8', '172.105.247.100', 1675641017, '__ci_last_regenerate|i:1675641017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1681331baf83b01f12754217068e6a862cb53a2', '172.105.247.100', 1675641017, '__ci_last_regenerate|i:1675641017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3755ff910d8cf4bd7bcd75f52bc69bb2187c03', '172.105.247.100', 1675641018, '__ci_last_regenerate|i:1675641018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c92a1649e89147b08be78f4f23962b4e5322c7c', '172.105.247.100', 1675641018, '__ci_last_regenerate|i:1675641018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b9023c278c6172fb593842fb7c26cfcb94dbcf', '172.105.247.100', 1675641018, '__ci_last_regenerate|i:1675641018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b512e234817632cd5973a85a9846f0965b53b9a', '172.105.247.100', 1675641019, '__ci_last_regenerate|i:1675641018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb05fc5112d40d624170ce302ce863c4b9eeeef', '172.105.247.100', 1675641019, '__ci_last_regenerate|i:1675641019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be30fa235f332e2082c2465b9371b18bd20549a', '172.105.247.100', 1675641019, '__ci_last_regenerate|i:1675641019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d65b9247b9207238345738e9dcb8eba0464d7106', '172.105.247.100', 1675641020, '__ci_last_regenerate|i:1675641020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b495cf0167c1f0bd3f3521ff338850849524e612', '172.105.247.100', 1675641020, '__ci_last_regenerate|i:1675641020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a433e0d72b8a9891eb95997d915ca6b2c2cf919f', '172.105.247.100', 1675641020, '__ci_last_regenerate|i:1675641020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348d6a85eaf6cf25cbd50640c802e127b2ad849b', '172.105.247.100', 1675641020, '__ci_last_regenerate|i:1675641020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de910193f70ff883ca4d52b8a93b6be01a10d7b4', '172.105.247.100', 1675641021, '__ci_last_regenerate|i:1675641021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7791093c10ea861484499fe731b2c8cc76fa4c0c', '172.105.247.100', 1675641021, '__ci_last_regenerate|i:1675641021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee04211e3096a7e9c4ad1a4544426897818d46b8', '172.105.247.100', 1675641021, '__ci_last_regenerate|i:1675641021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa854c22f1e1db5af6ed6bced8d5ab9b88ac3588', '172.105.247.100', 1675641021, '__ci_last_regenerate|i:1675641021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3859665d56ac94e6f33ffc6edbfcf760ad1b88', '172.105.247.100', 1675641022, '__ci_last_regenerate|i:1675641022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95660ecea7e2651092396cbdf6c47b1cc125cd8', '172.105.247.100', 1675641022, '__ci_last_regenerate|i:1675641022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1a9be44f9a890bc152e6da8fff73f4be602e73', '172.105.247.100', 1675641022, '__ci_last_regenerate|i:1675641022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfeaefb19654e491bd765b20bfe4bc92212c7ac', '172.105.247.100', 1675641023, '__ci_last_regenerate|i:1675641022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f22c78ed23f4d496828d829e9d41601aff317b', '31.222.203.2', 1675641856, '__ci_last_regenerate|i:1675641856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2ddb5ffc3d2ceedf13838abb5b0e78b49084a6', '31.222.203.2', 1675641856, '__ci_last_regenerate|i:1675641856;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ad9d4d9093439edb43d9e0776b9e8e2aa18f8a', '31.222.203.2', 1675641856, '__ci_last_regenerate|i:1675641856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b32082f3152522b18eaf0f26c7b6c14bb5f85e8', '31.222.203.2', 1675641856, '__ci_last_regenerate|i:1675641856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48a0d6441fbb7ef22410f3773df6b27f63f3ec4', '31.222.203.2', 1675641856, '__ci_last_regenerate|i:1675641856;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edf05117988524e27607e2dada3dc9bfa001c49', '31.222.203.2', 1675641856, '__ci_last_regenerate|i:1675641856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b2bd430bfea16be569a59bf72fea9298bb7786', '172.105.247.100', 1675646417, '__ci_last_regenerate|i:1675646417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78db5ac191e759ee4fc6d7faf064dbe317fc3073', '172.105.247.100', 1675646417, '__ci_last_regenerate|i:1675646417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5745bf29e03db6baac51f07930c773b510fa0b16', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c622cb1d57bbda65f5a07785bb8ce0da9c51048d', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8acc99be84caa971ccac589de2334e42b84596', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e059b6157fc5311a6dc459c14f153d9385d321', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d75aa4ffebaed220dac862e6b64740902782596c', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b5ea42aabef459a0e75cd8bea5a4f193528710', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ab4313d1fbabadee72b7c9216771a3d7d148f3', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c97da5d45770df87b75d5d79a71535541e17af', '172.105.247.100', 1675646418, '__ci_last_regenerate|i:1675646418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5164ae2b508583af72f9752f5c964a2db0d763c', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba0a9672a5cc798336b47aa5f96da464368b8ab', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263af4326ccdd6bc43ae07defae204f906982b96', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a46cd792fed8ebce28a5c7fc6bb6e1413b064d1', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa967a0af3778604f726d6a44fac4f1d2a1a1c54', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df829a6e6c1f911e4683ec92113f571566342862', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186dd255f8701abad72c4643e42f5445afdc3aec', '172.105.247.100', 1675646419, '__ci_last_regenerate|i:1675646419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16a311fa21defa977c06b3bf31d7cd9a5f63938', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b16d9b6f9342ebb169d35b39349a5bb9f94d4f1', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df08d7f3aaa4b814f32ef743d4d89bfeea9ae9c9', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789b9f749389f58209110a5fe5f756dfbb814642', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91d0cfb2c4d3ed594dba071ce0e9a0b010eb0e6', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc2575f1450f5366b1ab454b84a0cf481a833b33', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a937fb562173a12e756c99191b0c57ea63dc75f', '172.105.247.100', 1675646420, '__ci_last_regenerate|i:1675646420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93944518d66091fc6554a8d2be0655df489bfda5', '31.222.203.2', 1675649010, '__ci_last_regenerate|i:1675649010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83c25cbe10f4d4a29b66ac404cbb9827d1f4c733', '31.222.203.2', 1675649010, '__ci_last_regenerate|i:1675649010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64021e26e75e75f930db7b3cdc15bdd51db873b', '31.222.203.2', 1675649010, '__ci_last_regenerate|i:1675649010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99bf22b3c4a86887c208cdca14bf3f17beff6370', '31.222.203.2', 1675649011, '__ci_last_regenerate|i:1675649011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c3182918c7f8528df4904b7aba7d254610cce2', '31.222.203.2', 1675649011, '__ci_last_regenerate|i:1675649011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('649242188070240bfd906886362f4a6a5ad4934d', '31.222.203.2', 1675649011, '__ci_last_regenerate|i:1675649011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef5985f8f38c8b9ea9dccb24cb9853a470c9099c', '172.105.247.100', 1675651820, '__ci_last_regenerate|i:1675651820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a00589f767bbd67c8b29c2cd00b4f1164646910', '172.105.247.100', 1675651821, '__ci_last_regenerate|i:1675651821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2c8d6aa366558f21bb3874f32c22fd8e954af2', '172.105.247.100', 1675651821, '__ci_last_regenerate|i:1675651821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515e54f7bd5157ef30a393e811e029ad485a353a', '172.105.247.100', 1675651821, '__ci_last_regenerate|i:1675651821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d1a8e55d14b89e1264e8151d0b7c52833b8f09', '172.105.247.100', 1675651822, '__ci_last_regenerate|i:1675651822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23f98137ce3931eb320f49124902c06d2150aad', '172.105.247.100', 1675651822, '__ci_last_regenerate|i:1675651822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e047de674f8d7f4eefa9c6a3a4fd443a970b0a', '172.105.247.100', 1675651822, '__ci_last_regenerate|i:1675651822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6c71f378ed1b5b8edb94619a78c050d6c78044', '172.105.247.100', 1675651822, '__ci_last_regenerate|i:1675651822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced8e6f8d4871d34b74c7a6f2fd9c1bf79c18bef', '172.105.247.100', 1675651822, '__ci_last_regenerate|i:1675651822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19f8a63a7cfc8b97e730e75900630a34f21b446', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e694f37e6ddf64e37da2d66fe9395b33c11c1b83', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0023df0fc534543f2662117e6f0fa3355e8005', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404507093b13dc5440296447142540f4056e992f', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed4b773b4950c3d4e1691a488830c4137c90962', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf79daf50bb90b5f76b63028e7894fce1f674b6', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f1f19487072721d173606fc3e2eb25f0e2db94c', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d201c19ff4b27d39ad682490d6fa808b2a336c', '172.105.247.100', 1675651823, '__ci_last_regenerate|i:1675651823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59163349502ed0bf2dcad2756b66859a933a8f91', '172.105.247.100', 1675651824, '__ci_last_regenerate|i:1675651823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc586b2f660dd86328e87a0a13a04c9749e4dc2', '172.105.247.100', 1675651824, '__ci_last_regenerate|i:1675651824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d7574c44558996dd828c89fa228d8c85eca063', '172.105.247.100', 1675651824, '__ci_last_regenerate|i:1675651824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b42f0f1bd83fb859d76e5d5cc81daabfede42d', '172.105.247.100', 1675651824, '__ci_last_regenerate|i:1675651824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e204dd4c06aead41283dc67933336152a362ccf', '172.105.247.100', 1675651825, '__ci_last_regenerate|i:1675651824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e63660bcbda68afa7155aa52710e0e30de8e5b', '172.105.247.100', 1675651825, '__ci_last_regenerate|i:1675651825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c313bc6f07a7de6af41a983bb3553438050343', '172.105.247.100', 1675651825, '__ci_last_regenerate|i:1675651825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa02c09a9693e17f11f0b0bde05ba07a3c6d4e06', '172.105.247.100', 1675657218, '__ci_last_regenerate|i:1675657218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8ea3e95605700e1b39090d180de4c4e1c95f5e', '172.105.247.100', 1675657220, '__ci_last_regenerate|i:1675657220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa8e8335d66c1b3b7b778931d09fb427d371d462', '172.105.247.100', 1675657220, '__ci_last_regenerate|i:1675657220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8563728902b68b8f9e45f25f435085bfa232bcc5', '172.105.247.100', 1675657220, '__ci_last_regenerate|i:1675657220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbdf6ebeb1d0aad6934f0052f34344d6af67e648', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b017506062bed79956e5f9107e92ea3a361357b2', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d039b274903b9d43cdfff2b79392db19d3ef939f', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbca413f583d0ec68c51d3aec2c9a285ce1d2846', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243d9b147b8bc05eb7db6aabf52853c54ce3c77d', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d6f81a6987ecc4d05676802bf7b0de7b4e55e9', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e4f3bcc6b240177e2735877501762c6a6e34b6', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037632579291083a9498adf3ff91ac8fa522d488', '172.105.247.100', 1675657221, '__ci_last_regenerate|i:1675657221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e446c0310d10d8bd2dd7bb228016c98ff24471e0', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7be132d96bc80ceff92cf8f603055c23e5a84b5', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53aaccadd476eff5f573d97aac66d3e2380ccfec', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a1935d16751bd64548ccbc329542202f8f82ba', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3f4e4844e512fdf88d84a95fa4c3e665495957', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e3f57cabf9dfa15f0d7fef0e983eb6f7d1db13', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d451237a03177a3e98d7b77a58e418a35bf6733', '172.105.247.100', 1675657222, '__ci_last_regenerate|i:1675657222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8618edb2e3431a44151b8ce6ef4c264846751f1e', '172.105.247.100', 1675657223, '__ci_last_regenerate|i:1675657222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1bde78b829555eb71539bac423ff39934ad88b', '172.105.247.100', 1675657223, '__ci_last_regenerate|i:1675657223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca4f6d93b5960d7f1eb912ebd1e5e905f493cbc1', '172.105.247.100', 1675657223, '__ci_last_regenerate|i:1675657223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c33a13f07f585a5a541a41297091d35b20a962b', '172.105.247.100', 1675657223, '__ci_last_regenerate|i:1675657223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6792a45c1642f94de344195fe8debf814c1a4b', '172.105.247.100', 1675657223, '__ci_last_regenerate|i:1675657223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716d025c426387351afe7dc962290319e78b72d7', '31.222.203.2', 1675659787, '__ci_last_regenerate|i:1675659787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8538be012b349570f6285906b4cceaa3d5ded7', '31.222.203.2', 1675659787, '__ci_last_regenerate|i:1675659787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b048a0e9afb4fd105f32b0740915cc6dd3bd43b', '31.222.203.2', 1675659787, '__ci_last_regenerate|i:1675659787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04fba87397df3a1fed5309b13107776b8da5cbe9', '31.222.203.2', 1675659788, '__ci_last_regenerate|i:1675659788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332ce50f97ff1711e0d869153f784afcf4d3bf27', '31.222.203.2', 1675659788, '__ci_last_regenerate|i:1675659788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f611eecfd680ba546fd8d5be2acf56cf1a4175bb', '31.222.203.2', 1675659788, '__ci_last_regenerate|i:1675659788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe146415dafb0dc567bda5b17ae516fdd527d60', '116.204.230.30', 1675660429, '__ci_last_regenerate|i:1675660425;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675492278\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5272e145c6f697572b6df5423590f37e62415f', '31.222.203.2', 1675661658, '__ci_last_regenerate|i:1675661658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5172be194a70d2057c5bcf2e335c1aadecc1d01e', '31.222.203.2', 1675661658, '__ci_last_regenerate|i:1675661658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6731f8a2fa626abccbf9047ae5add509d00c75d1', '31.222.203.2', 1675661658, '__ci_last_regenerate|i:1675661658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d741055a1c0c4c1a440d5f76c7eff7aa70d2ee', '31.222.203.2', 1675661658, '__ci_last_regenerate|i:1675661658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569ea095de17196c7a73962f80645b98b9dc54be', '31.222.203.2', 1675661658, '__ci_last_regenerate|i:1675661658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec5ef78dc47ce9c918f893aeb14422e58ee83f94', '31.222.203.2', 1675661658, '__ci_last_regenerate|i:1675661658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ac5c6d608e7fb3de76e629e6bfd31f554efce7', '172.105.247.100', 1675662620, '__ci_last_regenerate|i:1675662620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d57cbb2baace38ced71f84164c44f96b568bde', '172.105.247.100', 1675662620, '__ci_last_regenerate|i:1675662620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6910de5a970e615a7e18a3bd11dbd7b78162720a', '172.105.247.100', 1675662623, '__ci_last_regenerate|i:1675662623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b867f7f2e965b06f5d9dd3454925ab94dcf46a7c', '172.105.247.100', 1675662623, '__ci_last_regenerate|i:1675662623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb060246d42a549fe911b309cb7a4c4052ba209', '172.105.247.100', 1675662623, '__ci_last_regenerate|i:1675662623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96befaee434467e0bafcfe978d97a19eec44fa7a', '172.105.247.100', 1675662623, '__ci_last_regenerate|i:1675662623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62eeba0c07f91c1cc4f7d2d65ca42eecbeda9391', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76c176484c8122496bdd3825775a22843addb54b', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1736f284416b6671069525b6a4c1f4863eb1bc2c', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f34563ec39e755b7513e691749aa1d62dca6fc7b', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac2df04df7227a5a67a21e9e5f0b7ec7885c7ddb', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566a17184738c22baa41c8736f87e501625db474', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a897098996b64492328a103530e1fe46f840bce', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3d60036ab6bb3c8170bd3846e090bbdd0b30fa', '172.105.247.100', 1675662624, '__ci_last_regenerate|i:1675662624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635d4f974960405fa984d56486447690e1694a90', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f408697c299f596b506ec908923fa303a0ea011f', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f6f1f4bef3485b328a6ad0b5c1d8fcf031bde8', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7e0a4c6879eec9149e06bf73c0f05c18533311', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa70d491fc6d3f30c818a4c36a74d9f7a9e25ec', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca18000c5a323e1a89335e3885de57d65571a076', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc3978354b1646d3bc8a87da715e3134377554e', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13feb82838497472d73cd00fcf1894cbc9074a0a', '172.105.247.100', 1675662625, '__ci_last_regenerate|i:1675662625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20db21c4664a5693a9185141d4a179933dca6766', '172.105.247.100', 1675662626, '__ci_last_regenerate|i:1675662626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6486d5c9f12f3445506539dae22d00cefe62740d', '172.105.247.100', 1675662626, '__ci_last_regenerate|i:1675662626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2a89616931b0c54b2062928f6899c4dba3b3b7', '45.120.39.89', 1675663485, '__ci_last_regenerate|i:1675663470;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675583092\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675663483;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a650fa77d4056a298aa1e75d88823afadccdebd2', '172.105.247.100', 1675668018, '__ci_last_regenerate|i:1675668018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdfff3bd7bb159e55c4f31c235394bf78df057e6', '172.105.247.100', 1675668018, '__ci_last_regenerate|i:1675668018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ceb1215d81163861f75558e4be38c56ba673eb', '172.105.247.100', 1675668019, '__ci_last_regenerate|i:1675668019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325f82478ad8eee0567d492cef47c416f4bccbe3', '172.105.247.100', 1675668019, '__ci_last_regenerate|i:1675668019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30077e71727fc8be89cb0c00ce79747d76ec36f6', '172.105.247.100', 1675668019, '__ci_last_regenerate|i:1675668019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901307497c37ed077f932fb4d65b1c4b7b64a2ff', '172.105.247.100', 1675668019, '__ci_last_regenerate|i:1675668019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddafe6f819554c7875514417b8bc8f635e5320cd', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75859faa9a9fd3dad27133bae58bd1fe458e811e', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85144c38ffe16dd24089875eb5b26216812ffa51', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2181658d6fc39f45d03480a27e7ffae7a47c8d2d', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838a759cfe4fcfac75d45451ec21a0fa83d3ab2c', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('151466dc0268071c8ccd6a94f55b6678bf6189e4', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aabedbe1be2bba9cae8fd5d23383c8ee7d38211', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f832315a3e618bdeb05c5e9b896cf65301692521', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2e122c04b23357363e6a3b4d3d29744fb49320c', '172.105.247.100', 1675668020, '__ci_last_regenerate|i:1675668020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa597a38e14c2aab6e8e182ea098b0b249a5710e', '172.105.247.100', 1675668021, '__ci_last_regenerate|i:1675668021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5f7b2674ec4789b1eecbe54465f7653adf805b', '172.105.247.100', 1675668021, '__ci_last_regenerate|i:1675668021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8aeb9414e96fb0f9095649c6705fd9b9b39d71', '172.105.247.100', 1675668021, '__ci_last_regenerate|i:1675668021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('590e8a4edfca83df31204c49fbdb3a26c0116eb7', '172.105.247.100', 1675668021, '__ci_last_regenerate|i:1675668021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce429f6fbc58df2c6e2eb7f2b159085b349f65a0', '172.105.247.100', 1675668021, '__ci_last_regenerate|i:1675668021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8949ecdf87a8a97240a19bb74e869390b8fd868b', '172.105.247.100', 1675668022, '__ci_last_regenerate|i:1675668022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7076bdfc7ea9fb50ef561f373f0e59616fd7342a', '172.105.247.100', 1675668022, '__ci_last_regenerate|i:1675668022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd77b9e2a3b31f56e2fa482c01038756ff69f87', '172.105.247.100', 1675668022, '__ci_last_regenerate|i:1675668022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a940cf980e016a5a28a67c7dfd8e4f9fba0c0771', '172.105.247.100', 1675668022, '__ci_last_regenerate|i:1675668022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f834d591cd7420ea35cf53d10ec7a169ad8f415b', '31.222.203.2', 1675672386, '__ci_last_regenerate|i:1675672386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20956029c08c09df4c1c8b098de31460c58e9ea2', '31.222.203.2', 1675672386, '__ci_last_regenerate|i:1675672386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad6d962c9f93105f5191ac8ebdee1027677068dd', '31.222.203.2', 1675672386, '__ci_last_regenerate|i:1675672386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90207e63012ae6edbcd9fec00b5f85f14fec755d', '31.222.203.2', 1675672386, '__ci_last_regenerate|i:1675672386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f603dcba1a68326a7ecdd1233e9387926412986', '31.222.203.2', 1675672386, '__ci_last_regenerate|i:1675672386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7290d7adb9c7d5e54f633f5d6615e548897119fe', '31.222.203.2', 1675672386, '__ci_last_regenerate|i:1675672386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224f81a63c0a9050c2081f4dbada8de31e85ab5a', '172.105.247.100', 1675673418, '__ci_last_regenerate|i:1675673418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e8198b9c30cab15a6d40b5c44a6bf5172befb6', '172.105.247.100', 1675673418, '__ci_last_regenerate|i:1675673418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1459486b32050c16b9dbe96d4dad962be5b9b254', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7df977a5d1d5a15b5448986ad373a46be94a0a9', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae1bdb93c6f8d508a5f10387a7435de2d536b657', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b83a7460080db58126d6b178f80c54628b40f2', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb062e35197009eea5cc3bd77bc1d7535b072b1', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f19908a8797128138897e74d613d38240678a18', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e278099898ed88b1d5c91955cd69a0cad35a8969', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ca99c87bc0174d19aeffc2bc215680092e99fa', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a14971ee9fa7d1cfbe32edde2e736bbe6e01e7d', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6bedf1c866415cce066ce4339bbfdecf9a1334', '172.105.247.100', 1675673419, '__ci_last_regenerate|i:1675673419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37fe0ae84591b5d5062b5e656ec636915b77074f', '172.105.247.100', 1675673420, '__ci_last_regenerate|i:1675673420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be11ff39ed4dfe210d16bd03fc69243a1d2e0387', '172.105.247.100', 1675673420, '__ci_last_regenerate|i:1675673420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cba3fb59468ca1fe9de44deab4f769e9513565', '172.105.247.100', 1675673420, '__ci_last_regenerate|i:1675673420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08ec1edfb856ecab76417f2a59b38dbac82490c', '172.105.247.100', 1675673420, '__ci_last_regenerate|i:1675673420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7607295b1e84b5a4ae1c0e61b86005292817200c', '172.105.247.100', 1675673420, '__ci_last_regenerate|i:1675673420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bacfa46b7c771855810fd32aa58a66a959f0f637', '172.105.247.100', 1675673420, '__ci_last_regenerate|i:1675673420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601bd57ad9b6a32220f54e41774c3f9acd0c30fc', '172.105.247.100', 1675673421, '__ci_last_regenerate|i:1675673420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0337cfdf1d66a7337d3a644fd138226b02f7fa', '172.105.247.100', 1675673421, '__ci_last_regenerate|i:1675673420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('845a68cf73f7942cc08639562675d00baf3ad499', '172.105.247.100', 1675673421, '__ci_last_regenerate|i:1675673421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cfad3ca39827ce14923ddbc4ed7023460549b24', '172.105.247.100', 1675673421, '__ci_last_regenerate|i:1675673421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe248e5c9c0cf5606909ea5907de9655a906b2a', '172.105.247.100', 1675673421, '__ci_last_regenerate|i:1675673421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('306a2d7a3a94347e5a336c06806567db5e064606', '172.105.247.100', 1675673421, '__ci_last_regenerate|i:1675673421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfdd2ebc183ebfe85f9558f7409fa670ece9e1a9', '37.111.218.50', 1675673547, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7296797b46b14218ec7dee5458886a02a62cc0', '37.111.218.50', 1675673547, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255b45c90335205967bff0806e5cde55846a7137', '37.111.218.50', 1675675203, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675675203;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675663477\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675673790;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8510ebe31d1e2ba8750e42d1bc23359c59bf2e94', '31.222.203.2', 1675674258, '__ci_last_regenerate|i:1675674258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7471b18a3c677ca8bec408e743c2fc86b5b6aa0', '31.222.203.2', 1675674258, '__ci_last_regenerate|i:1675674258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97689ef8b11ba75baac98f76e4ed2d9bcf403adf', '31.222.203.2', 1675674258, '__ci_last_regenerate|i:1675674258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100c005773348b8a2d403912b9874dcbb7ab2054', '31.222.203.2', 1675674258, '__ci_last_regenerate|i:1675674258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff09132390cdcff86669dec9ce4387cc542384a0', '31.222.203.2', 1675674258, '__ci_last_regenerate|i:1675674258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f790becaa9ccf4f7b6b9d0285d5380bcde6cd9e', '31.222.203.2', 1675674258, '__ci_last_regenerate|i:1675674258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77238753c03cc5a180c6b1726cda6ec643917e91', '37.111.218.50', 1675676268, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675676268;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675663477\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675675203;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a46c0f7647e5551dff3aae57fe090be16148e8a', '37.111.218.50', 1675676288, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675676268;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675663477\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675676288;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a4fc4225d06f6e3fd2066fc7ee8afa2ef7d03d', '172.105.247.100', 1675678818, '__ci_last_regenerate|i:1675678818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcfa469b1a350f9fa250a9c3b7c53ab076af0b82', '172.105.247.100', 1675678818, '__ci_last_regenerate|i:1675678818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea1f051cddd5577a2c4f25496e2701a78c6b693', '172.105.247.100', 1675678818, '__ci_last_regenerate|i:1675678818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad025fdb2b00d056132dee1c8507adafa12f7b02', '172.105.247.100', 1675678819, '__ci_last_regenerate|i:1675678819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115732a0b459b16474e4ea3f66eb163f959d7800', '172.105.247.100', 1675678819, '__ci_last_regenerate|i:1675678819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eebc345b0c289840db2cbdf0985a9a6a8d08e51', '172.105.247.100', 1675678819, '__ci_last_regenerate|i:1675678819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8b6adbfb6363abb7405784b26ea810e5c87944', '172.105.247.100', 1675678819, '__ci_last_regenerate|i:1675678819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb573be4b0a2f3b6084e08100bf8410990f5e215', '172.105.247.100', 1675678820, '__ci_last_regenerate|i:1675678820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b97156e4324c89bdf8034f956152f447c6ee9b', '172.105.247.100', 1675678820, '__ci_last_regenerate|i:1675678820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58200aba0b6fd5a469874f5241d2d4b623f97903', '172.105.247.100', 1675678820, '__ci_last_regenerate|i:1675678820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e7724312acd080554e62380b7c9a22328da4dcc', '172.105.247.100', 1675678820, '__ci_last_regenerate|i:1675678820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5a282f9b29ff36caf2162886b7b9673bbf0ef0', '172.105.247.100', 1675678820, '__ci_last_regenerate|i:1675678820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a799db3b3e2dca70cd21ca621a48aaec468dda52', '172.105.247.100', 1675678820, '__ci_last_regenerate|i:1675678820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae499e1d694ee42f8c2ad8431e6323b5d923d862', '172.105.247.100', 1675678821, '__ci_last_regenerate|i:1675678820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91822914c7902b132d2c464ff87ca9f8a242d56', '172.105.247.100', 1675678821, '__ci_last_regenerate|i:1675678821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac09be084ee9612f3e2e67ff1aa36103e9416bc', '172.105.247.100', 1675678821, '__ci_last_regenerate|i:1675678821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5fe1c87415d20d61a3015eeca9edb8076a8676b', '172.105.247.100', 1675678821, '__ci_last_regenerate|i:1675678821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457340ae25a9cf45cd9c65c77aa8354f12d16a52', '172.105.247.100', 1675678821, '__ci_last_regenerate|i:1675678821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81ac30e955394f59fc76324ca2f19297ec6dcf8', '172.105.247.100', 1675678821, '__ci_last_regenerate|i:1675678821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e37d9c990ebe217d221e6f9aabc3b950dc355a', '172.105.247.100', 1675678822, '__ci_last_regenerate|i:1675678821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2011b0fb5c489b812e99e961f6be493f3de881', '172.105.247.100', 1675678822, '__ci_last_regenerate|i:1675678822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406c7cdd0d013dfc9f486e3b493acbe884ac01ef', '172.105.247.100', 1675678822, '__ci_last_regenerate|i:1675678822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5838e95d99e219b13817c0798ebe9d29c07acb72', '172.105.247.100', 1675678822, '__ci_last_regenerate|i:1675678822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c35ca3cfc46a7fb04746fe9848ed2380b33e6d7', '172.105.247.100', 1675678823, '__ci_last_regenerate|i:1675678823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bddfcd5a4bca735b4ae352e2015e5df154188ede', '31.222.203.2', 1675683200, '__ci_last_regenerate|i:1675683200;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fac68d56772f8951d3d0b24a9c15b1ddcd581c66', '31.222.203.2', 1675683200, '__ci_last_regenerate|i:1675683200;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba8cd77e5bce17b7cffe6e692ed4b195390b956', '31.222.203.2', 1675683200, '__ci_last_regenerate|i:1675683200;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50b0f2368d6dbff67366f0acd1eab466ea5b788', '31.222.203.2', 1675683202, '__ci_last_regenerate|i:1675683202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc76e12b4a13482a873ffc4a06e0f75b54df286', '31.222.203.2', 1675683202, '__ci_last_regenerate|i:1675683202;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec54a8176a980332fc6a9cb63c7f04cc4efc37e7', '31.222.203.2', 1675683202, '__ci_last_regenerate|i:1675683202;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9416aa106e1b21ec45c5b67b568de53e9a8c28', '172.105.247.100', 1675684216, '__ci_last_regenerate|i:1675684216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7ee88d40c7b7352ee84f0b90d0466ec326481f', '172.105.247.100', 1675684217, '__ci_last_regenerate|i:1675684217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ec943da9f7e1597b82b993721ccbda2063671f', '172.105.247.100', 1675684217, '__ci_last_regenerate|i:1675684217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbfcf8d4656cdeb1baa1b1f04d0edceb11cc7b3', '172.105.247.100', 1675684217, '__ci_last_regenerate|i:1675684217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db484f21e74fdf0ba689ac6a5d7424a24b4aba2', '172.105.247.100', 1675684218, '__ci_last_regenerate|i:1675684217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a0bd1bde82ea168b7950d470ba1804605bf3b4', '172.105.247.100', 1675684218, '__ci_last_regenerate|i:1675684218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac5b22d542d04473f5e2cb8878b8b181d3812b6', '172.105.247.100', 1675684218, '__ci_last_regenerate|i:1675684218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39beda1d8939776da6fbd66a44963c9e4c969421', '172.105.247.100', 1675684218, '__ci_last_regenerate|i:1675684218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2bdcf494da18f0cb7e4c9ecf94e7907c22eaf2', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbfd9ddeb29deaa91fd78d6c929243c0c537763', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cfb9ba5741ee0129790bdce5099547b518b6045', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35990ff9b6d15ecacf653a2fd0f387269ad06dee', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be38e7728a46e4f0ba697af85dd5bd6d2d58256', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0d0022e71cb142a6778b87e0c1a33571fc7bc5', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d52f682eac014f2333da1fdf368988c2ef8cb49', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4905abe3e0b067eb41685f1cdbabf73253359e6f', '172.105.247.100', 1675684219, '__ci_last_regenerate|i:1675684219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a9f63324da7fc280c54ef53fc8fd58d6fa3b6e', '172.105.247.100', 1675684220, '__ci_last_regenerate|i:1675684219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977d6163108d1caa32be3febd438705e2a232631', '172.105.247.100', 1675684220, '__ci_last_regenerate|i:1675684220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92112c16fb1b6d58375d9a540ff3cfbdaaaa1560', '172.105.247.100', 1675684220, '__ci_last_regenerate|i:1675684220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ef426d675893f5929f82af962be4b33e888de6f', '172.105.247.100', 1675684220, '__ci_last_regenerate|i:1675684220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0f1be021c4ddcc752765be37983b4f6db5ea7a0', '172.105.247.100', 1675684220, '__ci_last_regenerate|i:1675684220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c8ade10ebab9d2405dc96ba3a322eab58da92f', '172.105.247.100', 1675684221, '__ci_last_regenerate|i:1675684221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7adb55adbeca111e1f58e2d7c09bd85a57ab7286', '172.105.247.100', 1675684221, '__ci_last_regenerate|i:1675684221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8778a63e3f3146a5e869183d0b419cdf178bc65', '172.105.247.100', 1675684221, '__ci_last_regenerate|i:1675684221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34cbb04e9f025b786e94585ce2ceb688b3b5fa2', '37.111.218.50', 1675689242, '__ci_last_regenerate|i:1675689242;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675673589\";last_ip|s:13:\"37.111.218.50\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675684343;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6d9e196d4075c26a419d8e3f45dd68f4e694932', '31.222.203.2', 1675685056, '__ci_last_regenerate|i:1675685056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e716afd1ac13cb026628b323c0a201e2e732e8', '31.222.203.2', 1675685056, '__ci_last_regenerate|i:1675685056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4d8d16a0ea4549b9b4d502eff388d4b5c13c78', '31.222.203.2', 1675685056, '__ci_last_regenerate|i:1675685056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64535bf246f8d84464df1d5a8863bae7f717854d', '31.222.203.2', 1675685057, '__ci_last_regenerate|i:1675685057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bfefeef7499de8d48b62684e3295c05a16b9bb7', '31.222.203.2', 1675685057, '__ci_last_regenerate|i:1675685057;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634d1048fddc8a4cd0e8c8d11491a3c7a82dddb6', '31.222.203.2', 1675685057, '__ci_last_regenerate|i:1675685057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8258e22979662442c095e53336dfc9688a2464', '37.111.218.50', 1675693664, '__ci_last_regenerate|i:1675693664;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675673589\";last_ip|s:13:\"37.111.218.50\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675693657;register_id|s:3:\"333\";cash_in_hand|s:7:\"30.0000\";register_open_time|s:19:\"2023-02-05 20:32:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43c8ceb74973316dd26c5f2f4663862d74ec62c1', '172.105.247.100', 1675689616, '__ci_last_regenerate|i:1675689616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a94298f4e469b7192047c345de50b615954932', '172.105.247.100', 1675689619, '__ci_last_regenerate|i:1675689619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538c47ff769bdd76ad2f0e32ec38c34f07ed076f', '172.105.247.100', 1675689619, '__ci_last_regenerate|i:1675689619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2dd8fd4636488ebd77726fe14d3425cea7601b', '172.105.247.100', 1675689619, '__ci_last_regenerate|i:1675689619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d645bdfd29a17ba9448fa377488ebd9f7ce4a5', '172.105.247.100', 1675689619, '__ci_last_regenerate|i:1675689619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f68cf6d83be804d5bb9a48e10827fe0f9202e5e5', '172.105.247.100', 1675689619, '__ci_last_regenerate|i:1675689619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7cabc8166b454843352330c6014c1f424c0a506', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41cfe0318b76014277ae2a7c8829a914e2373225', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5883f2ddc557434b9576048673ef323382c8ca7e', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa86004e56ac94edf66cf2e029900f7a40104442', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fa39bad8b24e1aa4f7a66b5f8ad31ff217d699', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bbcc19adfaa2fe3e10775262342567b44e331d', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e2d89c89f0e902b19b3a98c890fb53ece0befe', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3dda47c25867eb9c470789591ffa5e2ab5a1388', '172.105.247.100', 1675689620, '__ci_last_regenerate|i:1675689620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f1b441c36054aeed914c19271038734811b03f', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ecb5c6c779ae93f1847f6102bcb19bf06a6bdfa', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2075c0620b295e622df47cc0dae82dadfb7d552', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6818cc278198dc3e373f8355921c0e5cc8addf', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdda56828967dbb4888c83d1244cd1a935a44580', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82903b946f782a9a9c90e9c7a2b13f8e5845c741', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1682bf8ead99c5d5f12e4ab0c8ec0b616d508353', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fee5b108c6e2f8138f78417bd8cc4cb935f545', '172.105.247.100', 1675689621, '__ci_last_regenerate|i:1675689621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f65d0eaa6e23c6e447c4e8978b5d8026fd13d4', '172.105.247.100', 1675689622, '__ci_last_regenerate|i:1675689622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc308109bae4130d4e70c2e6566b42f3f3018b6', '172.105.247.100', 1675689622, '__ci_last_regenerate|i:1675689622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47a410e576fbf5bfe740c5ef5122c3d6e1552c5', '116.204.230.30', 1675693375, '__ci_last_regenerate|i:1675693343;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675660429\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44293220bf7658cee4f0b653f5d5a1a7ecdf67b', '37.111.218.50', 1675693686, '__ci_last_regenerate|i:1675693664;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675673589\";last_ip|s:13:\"37.111.218.50\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675693686;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5dbba40ec1ca110bcb48248e9c885e070b8bcf', '172.105.247.100', 1675695017, '__ci_last_regenerate|i:1675695017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0710b77030bbd2f00eb02a05cbfd8a52fba710', '172.105.247.100', 1675695019, '__ci_last_regenerate|i:1675695019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e38ed14b57c5dc1973dbc7564f489c92ec3d8c', '172.105.247.100', 1675695019, '__ci_last_regenerate|i:1675695019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b8d8d819338e429c741415a05fc133daf22722', '172.105.247.100', 1675695019, '__ci_last_regenerate|i:1675695019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0805667fac3e1c2a94a4ee58952409f0479e118', '172.105.247.100', 1675695019, '__ci_last_regenerate|i:1675695019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f0b0df6e16da1a2187dff3c2c22483752bd948', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca20e6e22c907357a1d52caf76110c3ee53053c', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85de1df9c9abe66fc25ef81e66fa99089ef345ab', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('884e9e731c845f162c512e1f1f927d8efd00259e', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3955bee9e4470f354e854d4eba70b2b70debdc6', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b50966a63972657ada9e2e1e903e2d8ac2f6e5a', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aca60fb66a9b79b0961f802ce5fcc41c6776573', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84a3c75e61a75d74bc28e13525a89e0eb20f369', '172.105.247.100', 1675695020, '__ci_last_regenerate|i:1675695020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e13ecf86e8089d43bba576c892f529fcce90776a', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b23dfff673eccbbd676cd00201c852361249240', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30112c1379c803588617675933219c659d237f1', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f272c9b76f4098ca34e9dfd98ac36b8ced0e4ac', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85dfe02e8d99377f3cf3be19ed78297191025eaf', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9effecfe58a020e0792999af269f97895f5e369e', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd6d8f1760fd7c2afb1f60f24632c1e3af06f72', '172.105.247.100', 1675695021, '__ci_last_regenerate|i:1675695021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c27fd1013969e2c12762f537c41db2a87ca557', '172.105.247.100', 1675695022, '__ci_last_regenerate|i:1675695022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6193e1a211f9edec5bd1239caf280a90f441db56', '172.105.247.100', 1675695022, '__ci_last_regenerate|i:1675695022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e7bd4cd00dd67a8a62f5a687cf928d064d0da4', '172.105.247.100', 1675695022, '__ci_last_regenerate|i:1675695022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91435f9b596b68d6610de964e90f0b75188a051', '172.105.247.100', 1675695023, '__ci_last_regenerate|i:1675695022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e2bbaa772d79a6e2858cda067709a38ea89d2f', '31.222.203.2', 1675695794, '__ci_last_regenerate|i:1675695794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b69dad8b6ad95a04c2486d316c8b1dd53e7b17e', '31.222.203.2', 1675695794, '__ci_last_regenerate|i:1675695794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca320cd6afd0c24e494dc3f77740f587d9599524', '31.222.203.2', 1675695794, '__ci_last_regenerate|i:1675695794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8929a8bb5e6b46cc425d8297087b8a0a422998b3', '31.222.203.2', 1675695794, '__ci_last_regenerate|i:1675695794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be311917a83cb4e398e870d3ffc614393136bc4', '31.222.203.2', 1675695794, '__ci_last_regenerate|i:1675695794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa79dd45e8958696b412dae628ae5f68a9072f1e', '31.222.203.2', 1675695794, '__ci_last_regenerate|i:1675695794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78862766bdf081a926b6eef466458679d6d65e6f', '31.222.203.2', 1675697657, '__ci_last_regenerate|i:1675697657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf40c422403ee65875f3f81cbf380a654e1c880', '31.222.203.2', 1675697657, '__ci_last_regenerate|i:1675697657;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b6858eb09d0cb39dbf2bd6626b348982716d3c', '31.222.203.2', 1675697657, '__ci_last_regenerate|i:1675697657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d5487bb56505ce05f5b48c76e6f76ac8f3a2b3', '31.222.203.2', 1675697659, '__ci_last_regenerate|i:1675697659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed43ad3f501aeffdb66023d19e8eb882a54d0af0', '31.222.203.2', 1675697659, '__ci_last_regenerate|i:1675697659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09ef0c5ca24994e8a6866fc30ba09b072cd48558', '31.222.203.2', 1675697659, '__ci_last_regenerate|i:1675697659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ffce0ca2397091882f739197cf0105fc1e7d63b', '31.222.203.2', 1675699503, '__ci_last_regenerate|i:1675699503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c322bb682a3485823138d2c19cc80c58293cbba9', '31.222.203.2', 1675699503, '__ci_last_regenerate|i:1675699503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358343dbd77d223e414439413a739f4cb13f9076', '31.222.203.2', 1675699503, '__ci_last_regenerate|i:1675699503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b217cab99b5dfb7ed25259307a3843c6ef02b4', '31.222.203.2', 1675699503, '__ci_last_regenerate|i:1675699503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277d54c989b86536d1165b2427c0ff633c7d2430', '31.222.203.2', 1675699503, '__ci_last_regenerate|i:1675699503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a80131f46a077fe721ba260fa6afa48aeefe50', '31.222.203.2', 1675699503, '__ci_last_regenerate|i:1675699503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d5e12f01e58168ce3a1b5fe8045ccad9d25d32', '172.105.247.100', 1675699818, '__ci_last_regenerate|i:1675699818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06239361c02072b3ee803393776b8388eccd0ee5', '172.105.247.100', 1675699820, '__ci_last_regenerate|i:1675699820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df325fa68e8b6ca2b89337410f04cf2c341b6be', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e440ef664f134a37e6669733ee333466292194', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f630f2319b6581312ac42d3677c72daf6681eeba', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f26ba4c32717a0df8280dfa1fe2180d7009752', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f356e3a16aee71aa92dd5936f7b5eff3d060b54d', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15534fed38f58eb3681b1fb2cc969940c98088b8', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe907721cd7dd17f5af215a2dec0d23fc037f9b0', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5a1198bc5b9113d23eabe3ffdf306f93ac914a', '172.105.247.100', 1675699821, '__ci_last_regenerate|i:1675699821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d8487c5e0ef60684d24895cb9bb1cd35b4e385', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c792c64cbb922da41f3ffcf1e7cba346aa6fa54', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9293c27eb373b2018822610345f3bc4e620f3bcd', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a59bbe97d804405d4dfae57fb552be158261146', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149b80ec431b64006016306d726a01c11ec1b4fc', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48aa62d101c6fd9bbc3bfc32ec44ef48fcec385', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48413cdfc855f4c319e44cbbfa1187b3f6cda55', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c90ce376e33d450ad77302f4790202877cb372', '172.105.247.100', 1675699822, '__ci_last_regenerate|i:1675699822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc128b6132a521bfa56c743814277863517ee0b3', '172.105.247.100', 1675699823, '__ci_last_regenerate|i:1675699823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01ecd8abeaa0ff526acc6a781e9307a35b0be4a', '172.105.247.100', 1675699823, '__ci_last_regenerate|i:1675699823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a327bc86aea9c4688322ed4ce09d2244941dcd30', '172.105.247.100', 1675699823, '__ci_last_regenerate|i:1675699823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a42416ac8cc9663accec58020331921d893d2b', '172.105.247.100', 1675699823, '__ci_last_regenerate|i:1675699823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83b214ea9a8483cde6f7157be83ec510dadadf4d', '172.105.247.100', 1675699823, '__ci_last_regenerate|i:1675699823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e3173b5e201d906938baf54aff1945395cd0da', '172.105.247.100', 1675699823, '__ci_last_regenerate|i:1675699823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cddffd82c1a7760cb457476fd4d7016011fb47f7', '199.182.169.174', 1675702821, '__ci_last_regenerate|i:1675702821;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452e423fc8f632b1de2f1162a1f084695a4471e5', '45.130.83.79', 1675702822, '__ci_last_regenerate|i:1675702822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15a92da11fb32214f3d57c1ce7e9ee97ee60f20f', '45.130.83.76', 1675702822, '__ci_last_regenerate|i:1675702822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad5957498414318214308bc69d42e6a0d7022b2', '45.130.83.86', 1675702822, '__ci_last_regenerate|i:1675702822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b786ad17167fdcadb87ff2241f0dced1601ba41', '172.105.247.100', 1675705217, '__ci_last_regenerate|i:1675705217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831c88340f970080bee123e234a4cf304d68be8a', '172.105.247.100', 1675705217, '__ci_last_regenerate|i:1675705217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7ba3335be371a7207a1da9ae19fbc622838dc9', '172.105.247.100', 1675705218, '__ci_last_regenerate|i:1675705218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f56f2afbe990b81c64613d815247f97245120056', '172.105.247.100', 1675705218, '__ci_last_regenerate|i:1675705218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dc5b08e2c1b6f84fd7df4e677c2f36a2b67b51', '172.105.247.100', 1675705218, '__ci_last_regenerate|i:1675705218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeee3913bbc51d923e8af489e83a2588522a667b', '172.105.247.100', 1675705218, '__ci_last_regenerate|i:1675705218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6001c782b149b65c891809b1ff35347be55cff8f', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa50f9a4261d619537b0e4856b6f5e7b07c4612', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3668e1cc06fcafdebdd5cef2c6433405b8742b', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2626f05c12ac00feb1a33c50af25adecfa2d77e9', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86b2ead1c40a7e64ea4a234b9580c5655976096', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef6e0c33e31c556378008675f68bf82e817652b', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0805ff4ae5843faeeb3bfa305f82906ef442ffba', '172.105.247.100', 1675705219, '__ci_last_regenerate|i:1675705219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d31d7f88ae10cab1acde4033e465abbf2abf381', '172.105.247.100', 1675705220, '__ci_last_regenerate|i:1675705220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('801af738708ea994ace172cf8684c4c805773ade', '172.105.247.100', 1675705220, '__ci_last_regenerate|i:1675705220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45331cdcb0ac34e5844cb3e84044be80fef9bea1', '172.105.247.100', 1675705220, '__ci_last_regenerate|i:1675705220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a071ca2b67993a6270bdf40aac3ed07534da5b21', '172.105.247.100', 1675705220, '__ci_last_regenerate|i:1675705220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('627def46c88ae34aefcac494788404b82ad3f1e7', '172.105.247.100', 1675705220, '__ci_last_regenerate|i:1675705220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a1f43aa550e8ffaad71df451cdb7e43aa7d518', '172.105.247.100', 1675705221, '__ci_last_regenerate|i:1675705221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5eb3909cdd8aa07bcb442857cdec9106d7c04f', '172.105.247.100', 1675705221, '__ci_last_regenerate|i:1675705221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd91c0cb2bf13ca09c6c005befa5b4cbf659a233', '172.105.247.100', 1675705221, '__ci_last_regenerate|i:1675705221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58bb32dc91fb7296b4afa09a995547477c53fa2', '172.105.247.100', 1675705221, '__ci_last_regenerate|i:1675705221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d9f3789c1d8a961323d54405aa7e3b1b436814', '172.105.247.100', 1675705222, '__ci_last_regenerate|i:1675705222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d64abb445ba84091651e274858ce661da1c1aa0', '172.105.247.100', 1675705222, '__ci_last_regenerate|i:1675705222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cd1cb7656284fa57902d8cf6a60f02ddaf39943', '35.201.224.83', 1675706331, '__ci_last_regenerate|i:1675706331;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73dfd22d0e828e69ecd41f0eab3cb57815f7bb26', '35.201.224.83', 1675706333, '__ci_last_regenerate|i:1675706333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1fd31d3abf66eb7bbe52cf49dd439f8501326a', '35.201.224.83', 1675706333, '__ci_last_regenerate|i:1675706333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc66799403047536e06cb43465817881ffaec351', '35.201.224.83', 1675706333, '__ci_last_regenerate|i:1675706333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7259d0e32b7f71ef921edfe77986bbb85cd92b', '31.222.203.2', 1675708401, '__ci_last_regenerate|i:1675708401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ccb9c2b657d9b5f1c59b8c8f1cfd631092145d', '31.222.203.2', 1675708401, '__ci_last_regenerate|i:1675708401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('549b91739ef557812a04c28806d8658fa19d04b1', '31.222.203.2', 1675708401, '__ci_last_regenerate|i:1675708401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c009df34bd6b6f3f914d76f5d178783bb88cf3', '31.222.203.2', 1675708403, '__ci_last_regenerate|i:1675708403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b068419e563fc11566607c94da21fa2d6c626c44', '31.222.203.2', 1675708403, '__ci_last_regenerate|i:1675708403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891bb46009e715b0fad8f15c0be6837c16fb0f8e', '31.222.203.2', 1675708403, '__ci_last_regenerate|i:1675708403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873db1259a20911a5192e7cf0dd591bdd0de8ea9', '31.222.203.2', 1675710259, '__ci_last_regenerate|i:1675710259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4348cf239f3f7beaf120d154cf2970764d13e443', '31.222.203.2', 1675710259, '__ci_last_regenerate|i:1675710259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64e2e2fa22895bf5b18a09e2b49eb1f85b2024f9', '31.222.203.2', 1675710259, '__ci_last_regenerate|i:1675710259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6115bade91a57ea2f15fcd0887239264ec3448b2', '31.222.203.2', 1675710261, '__ci_last_regenerate|i:1675710261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f7fd852eedad1679a57fa4e9e66479f4637c1b', '31.222.203.2', 1675710261, '__ci_last_regenerate|i:1675710261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113c8e748969be369b77f1f91e493336f26de4b3', '31.222.203.2', 1675710261, '__ci_last_regenerate|i:1675710261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7873a6b1f6f832f30fdb1cd1a9fd5a89d9f3c3', '172.105.247.100', 1675710619, '__ci_last_regenerate|i:1675710619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f362c719b9126534a339f074fcafc80fa028f4', '172.105.247.100', 1675710619, '__ci_last_regenerate|i:1675710619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d7d33372a34a147febcbf95aea3d7164fe14db', '172.105.247.100', 1675710619, '__ci_last_regenerate|i:1675710619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0e5e5314c839c3aed43db7ef0fb43c0aac8c97', '172.105.247.100', 1675710619, '__ci_last_regenerate|i:1675710619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfb29c92a2ae47f59eb02b376d749f747e9dd75', '172.105.247.100', 1675710619, '__ci_last_regenerate|i:1675710619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9f7d7ea3ef241971fd1fe4764bc3e696685923', '172.105.247.100', 1675710619, '__ci_last_regenerate|i:1675710619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7cc8c451c459a86ff62345c50cd6fa4670ccce1', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b4cdc56553b8c8b9fa1cf493b3ec6f3dfd54a7', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4097e7cee5ba6dd33bb41661e63544360b57a87', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c820b3a507f7702b62b7c2be81d06597623e871c', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb15ed797e6cc633dd729e06d56eb9c8dae6c55', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fca21072e5039d104288660c6edfe76d400c9fe', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ecba277a9eed01262865f84e2baec880b6d5fda', '172.105.247.100', 1675710620, '__ci_last_regenerate|i:1675710620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa07b7ab088665ef06b5548e951ed467c69c9dc3', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a25a58b2e8e596638d66bca3123fbb231824da85', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e61f9823e9192a90fe9080df3def62a77637fb', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29ff1ada3e0f63263f31ccf25a8452b69c878b6', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1c9ea73f43eff5afc8537763ce831682f0573f', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bbc785db228153d9cadc2da4196a3e24b3a75c4', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8997126e9026465468ffaf0eab0e65c989347e10', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc8163aaca58fa719c53aa09d8960d11c48be4a', '172.105.247.100', 1675710621, '__ci_last_regenerate|i:1675710621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488ca0023a893d85ff746f77a725a04a70af779b', '172.105.247.100', 1675710622, '__ci_last_regenerate|i:1675710622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7994ee38e96a5165cded15b5703ce27ff1ce931c', '172.105.247.100', 1675710622, '__ci_last_regenerate|i:1675710622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e0f91d3e663939098a301c14af58670f2a7821', '172.105.247.100', 1675710622, '__ci_last_regenerate|i:1675710622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('664a8ee6d208204fe121d3f7438785b424af0f7b', '185.197.195.173', 1675715983, '__ci_last_regenerate|i:1675715983;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3638549017cdebe2d18108040e3caf0455e4dceb', '185.197.195.173', 1675715986, '__ci_last_regenerate|i:1675715986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d875c0b20fe02066334294997a30dfd31bc66db', '185.197.195.173', 1675715986, '__ci_last_regenerate|i:1675715986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f00c6b13c8fa7dfea5e828a0667a3d8333d8f6', '185.197.195.173', 1675715986, '__ci_last_regenerate|i:1675715986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb70e700e8879e91ac399f63cef4a24896bd8f9', '172.105.247.100', 1675716017, '__ci_last_regenerate|i:1675716017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b915bdffc048a5fdcf562d94f54ab2d00db65c7', '172.105.247.100', 1675716018, '__ci_last_regenerate|i:1675716018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63caabdcc57eed5e236f37b17faa809f91f84d64', '172.105.247.100', 1675716018, '__ci_last_regenerate|i:1675716018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41829451bd12b942061990e5bc4edaa5b6d51f4e', '172.105.247.100', 1675716018, '__ci_last_regenerate|i:1675716018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91d7f5c8479762472c179657affe7e4e1c91891', '172.105.247.100', 1675716018, '__ci_last_regenerate|i:1675716018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e32531ad9ea0cf1fe2c255d366e1aa5efadef41a', '172.105.247.100', 1675716019, '__ci_last_regenerate|i:1675716019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481e5c61a2deee7c149405a48e0bf3f58f106f6c', '172.105.247.100', 1675716019, '__ci_last_regenerate|i:1675716019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629a2b24087d9a0273b4322ff205469d22fc2320', '172.105.247.100', 1675716019, '__ci_last_regenerate|i:1675716019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7c71e8af99ca7fa816cbc145068dae62c36b4c', '172.105.247.100', 1675716020, '__ci_last_regenerate|i:1675716020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775151e37cc2b7c4879b9f8b0307831cdd23fab3', '172.105.247.100', 1675716020, '__ci_last_regenerate|i:1675716020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c4f25fbeb5a33c4049cbf7436dfdf3051a92be', '172.105.247.100', 1675716020, '__ci_last_regenerate|i:1675716020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0679e7d01ea08c2edb035e898b37b0d5fd8abe2', '172.105.247.100', 1675716020, '__ci_last_regenerate|i:1675716020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee1e063daa3af6f3e687da326948bbcd71b79838', '172.105.247.100', 1675716021, '__ci_last_regenerate|i:1675716021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164cf012f24374a42c819b02f327977f6cde0cba', '172.105.247.100', 1675716021, '__ci_last_regenerate|i:1675716021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be069eddfc6306d4890b599f5369ccb9290d6f84', '172.105.247.100', 1675716021, '__ci_last_regenerate|i:1675716021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84171a74d583db76178f1e6aba183a6ae83942e', '172.105.247.100', 1675716022, '__ci_last_regenerate|i:1675716021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f55b7927e5c3b32d0d02acc52ad7fad6dd51e7f', '172.105.247.100', 1675716022, '__ci_last_regenerate|i:1675716022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83400b871197b86a5e623b6d84c5eb4cde06bfa8', '172.105.247.100', 1675716022, '__ci_last_regenerate|i:1675716022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53684bd1c677c30f3e87e7b9629e70bcaabbc16b', '172.105.247.100', 1675716022, '__ci_last_regenerate|i:1675716022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29cdf0255385f2d4fdd283579c0bc20c83df8df7', '172.105.247.100', 1675716023, '__ci_last_regenerate|i:1675716022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312cdcee36fe22ba2b91759b10a65efc293c7a41', '172.105.247.100', 1675716023, '__ci_last_regenerate|i:1675716023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003460c0ca902979015987bc34a4f8beef988e31', '172.105.247.100', 1675716023, '__ci_last_regenerate|i:1675716023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7ec239b943982859ad7e27375b3804982beaa7', '172.105.247.100', 1675716023, '__ci_last_regenerate|i:1675716023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('059c4382ce0154af703fd7d86a85fc7414563c5d', '172.105.247.100', 1675716024, '__ci_last_regenerate|i:1675716024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3265a3331fb81d4a2e5f325051e0bfdde6e99612', '31.222.203.2', 1675719190, '__ci_last_regenerate|i:1675719190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa45b913c8b83d29942269f9395adca355ddf18', '31.222.203.2', 1675719190, '__ci_last_regenerate|i:1675719190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d4f394252734d74ee6907920d6774fb18d1f73', '31.222.203.2', 1675719190, '__ci_last_regenerate|i:1675719190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7346077495a83555980d0aed0538c2460d5e37aa', '31.222.203.2', 1675719191, '__ci_last_regenerate|i:1675719191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76db4a61afef959c3fc3e517331af50999d939d7', '31.222.203.2', 1675719191, '__ci_last_regenerate|i:1675719191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833e91e259f0e01f31026f511fe2c9e08e054b1e', '31.222.203.2', 1675719191, '__ci_last_regenerate|i:1675719191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2a65c5819824a734439c21ee99a725d01f65c6', '172.105.247.100', 1675720219, '__ci_last_regenerate|i:1675720219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d2c06fd488e8fc6beabc01cb79d999fd12f5c7', '172.105.247.100', 1675720219, '__ci_last_regenerate|i:1675720219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4ea032d9c35b9dcc1c02f88e7f997b2e48ec62', '172.105.247.100', 1675720220, '__ci_last_regenerate|i:1675720220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5bda4000ef5d676d2cd3b72c08bd424bffce169', '172.105.247.100', 1675720220, '__ci_last_regenerate|i:1675720220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a12a84776b599076628d5d9d3522b3647f289de', '172.105.247.100', 1675720220, '__ci_last_regenerate|i:1675720220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ceee4755ff1ef7a4af8b91478f6fd5834cd171', '172.105.247.100', 1675720221, '__ci_last_regenerate|i:1675720221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15c98039ad68505668bdc2852420fce5f85db736', '172.105.247.100', 1675720221, '__ci_last_regenerate|i:1675720221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03a6b405f767e9cada6b0a3c1518d092fcacf0f', '172.105.247.100', 1675720221, '__ci_last_regenerate|i:1675720221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c180e7e67b157d1c817fbb9537927f926f4f46b', '172.105.247.100', 1675720221, '__ci_last_regenerate|i:1675720221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfb577f6369a79412510df2f0739fa67379cc65', '172.105.247.100', 1675720221, '__ci_last_regenerate|i:1675720221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6ff51abf621b65a266b20ecf9592cfb8212f113', '172.105.247.100', 1675720221, '__ci_last_regenerate|i:1675720221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f2ca0ab1f887ac506e0a0c189a4080f40d5d60', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3fb7fb2d05724bfca3878589bce8dff46bc4cb', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54ead2b5c0483a1d56c0aec13cad2fc433aee15', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c021c42b1c0c4057fbc1c50d0462bf7d83bb932b', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('351c072bbc9a88e2d9d656a80a62ea0eebb7c8cf', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa543b8dec6c353f122a47ab8c13e4f8cf0a2121', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c936fd11b29feaff5084f075fe3eab5dae4add', '172.105.247.100', 1675720222, '__ci_last_regenerate|i:1675720222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a4f0ba8749f407dec50afa91594450dff27a1b', '172.105.247.100', 1675720223, '__ci_last_regenerate|i:1675720222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b881653f94d108ac3438fa80daba7c4b772fd5', '172.105.247.100', 1675720223, '__ci_last_regenerate|i:1675720223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f65fa9dc95e5490c4c6cd53ef174816c10c3c6', '172.105.247.100', 1675720223, '__ci_last_regenerate|i:1675720223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc88c8e14881a4b7ffc7a0b69f8e12f58479bd6', '172.105.247.100', 1675720223, '__ci_last_regenerate|i:1675720223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86e69b21004a910539250c3049fbf53a4ccfb3d', '172.105.247.100', 1675720224, '__ci_last_regenerate|i:1675720224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7c43e8e789a69e26c791aad2d628bf2f559610', '172.105.247.100', 1675720224, '__ci_last_regenerate|i:1675720224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124fd90f70e883c8abccdacf9248879c2c46b895', '31.222.203.2', 1675721060, '__ci_last_regenerate|i:1675721060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3dc98c3fd30d571c72a3e4fdf9698c31bd9f40b', '31.222.203.2', 1675721060, '__ci_last_regenerate|i:1675721060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103b0231905fb6e0460a1fbbb807d94b939dec9d', '31.222.203.2', 1675721060, '__ci_last_regenerate|i:1675721060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1f8f3452de0879b030a16283515c91a1e0bb943', '31.222.203.2', 1675721061, '__ci_last_regenerate|i:1675721061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd07a724a7c2fc33e3ebc8bb9d5ffbb4cfc6e471', '31.222.203.2', 1675721061, '__ci_last_regenerate|i:1675721061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfabb414c500d74e003e3cedb9e1ac0b9b08731', '31.222.203.2', 1675721061, '__ci_last_regenerate|i:1675721061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85cf996428a162b594cd4fefdca1c12ca3f5fb58', '172.105.247.100', 1675725017, '__ci_last_regenerate|i:1675725017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ea900ced79e28f581eff18dbf8521268d354f5', '172.105.247.100', 1675725018, '__ci_last_regenerate|i:1675725018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b79fc64f8fae104a02e1c899b7c262eef495b46', '172.105.247.100', 1675725018, '__ci_last_regenerate|i:1675725018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a6de3d1479a2ed51a6256108f701fe388d6f94', '172.105.247.100', 1675725018, '__ci_last_regenerate|i:1675725018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9d624fc10c3f47a8370f607e37b4911944df06', '172.105.247.100', 1675725018, '__ci_last_regenerate|i:1675725018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f3b30727c94d262c161bd73e5ac1eeb75c7c86', '172.105.247.100', 1675725018, '__ci_last_regenerate|i:1675725018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3ecf741f36757f211a02b2c3738821458eaf65', '172.105.247.100', 1675725018, '__ci_last_regenerate|i:1675725018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34365c029cb5e712f35bb48d7a6dd29f02712e6c', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29aff004e164f1ef44cbc76defdcfa1dd4fe50e4', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e21795f3c80f3afdf72a39c3afb8e8cbe0bf4ef', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861d46de8d91821a2fd346bf8752296c68c9a07e', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab7add3dc338f19a1fe14226b21d42aca88ed06', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e73115be8ea59f7eaad71eb2ba3a16863877d75', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc19b1fba082248dd7fdbfe99666a0b24833b6d', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf348b792996f89fafac4114efd2a389948c2593', '172.105.247.100', 1675725019, '__ci_last_regenerate|i:1675725019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a1c3bbb5f2bf4c0eda62aee8476c6508b2da4b', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf14527669d8804335c3156035cf8960cbcb331e', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b1b9387058fa4329c14a0a22889f5d85144630', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51a9daaca496bbe0bcdad100a77d6dd90da39eb', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36038df03d66d6963d84a035b70d0af4cc1c6d49', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76820e36c8766c5427699a4ec242612997275eb7', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0b077d90cfa9e62870c1f5f09573c760656b1b0', '172.105.247.100', 1675725020, '__ci_last_regenerate|i:1675725020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22cd304697520cc9b01a738b69be508a3481f774', '172.105.247.100', 1675725021, '__ci_last_regenerate|i:1675725021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f82cadcf7804a817865113674ee3799849b4b5', '172.105.247.100', 1675725021, '__ci_last_regenerate|i:1675725021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f395845873c5a3fc4e413440aa6af14511e4d207', '31.222.203.2', 1675728181, '__ci_last_regenerate|i:1675728181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f833df14603553e7f007bc03a1f0828a196c19a7', '31.222.203.2', 1675728181, '__ci_last_regenerate|i:1675728181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0015fe6de8cea4e300a1b59bc47f1dfa87a8d10', '31.222.203.2', 1675728181, '__ci_last_regenerate|i:1675728181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b110d896136d24254ae7f1c0bd481e125fbe9a', '31.222.203.2', 1675728183, '__ci_last_regenerate|i:1675728183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79fdd0d1a176c8de92ae354cfbbd50895d61b42', '31.222.203.2', 1675728183, '__ci_last_regenerate|i:1675728183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5a1e1f5727cf9e628bef6a4371cb310a2a2b04', '31.222.203.2', 1675728183, '__ci_last_regenerate|i:1675728183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efe52c5d81f38d59272b0b0de5ca34ac54bf74a1', '31.222.203.2', 1675730056, '__ci_last_regenerate|i:1675730056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fb4b7bc77084465f75b176a08322d4a681fec1', '31.222.203.2', 1675730056, '__ci_last_regenerate|i:1675730056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3ae7d0890470ddc1a9783d15537cfad6ffbe36', '31.222.203.2', 1675730056, '__ci_last_regenerate|i:1675730056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f1d9b8d7c254bd47e4fa6387cd2113649c8540', '31.222.203.2', 1675730056, '__ci_last_regenerate|i:1675730056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fc0048da32d2229ec0b76cf9c4cade92ea318d', '31.222.203.2', 1675730056, '__ci_last_regenerate|i:1675730056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e80b1d6bc1f71fe7b4ed0c63abc6bafd6526d1', '31.222.203.2', 1675730056, '__ci_last_regenerate|i:1675730056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7daaca2348d074d46b5fc05583d4f93f7e36e4fb', '172.105.247.100', 1675730416, '__ci_last_regenerate|i:1675730416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc2fdfee27e46e0d5bd90b46d88713a8a32b873d', '172.105.247.100', 1675730416, '__ci_last_regenerate|i:1675730416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2413370e6332a028f7ad828a2cb0af256b066ab', '172.105.247.100', 1675730416, '__ci_last_regenerate|i:1675730416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ede2f3e0624e87237994d7cf554b3edd71b7e4', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f67fb1c371773351ef43c6d0bd08a0528dfecca1', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5236aba79899647ad9d7d29225a51eab718f9643', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b941c608da56e4cfb28b3ed7d5c23bc47ea3a9', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18fb676f7b0c6e6059a3b008a1caebe64cfdce39', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba28c614206596fff9ea4c6b5bd2ea1104b1975', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87f685dde65d732698d0a4d9aaa972f33d025f6', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a66714f80b23e9ec8aa305274490e7cb229410', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038cb077d91091c938147cc19fd8d51e556690c9', '172.105.247.100', 1675730417, '__ci_last_regenerate|i:1675730417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d748e39f33fe9618a1da0fd24a248daa19eeb1', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e32d8c8728f12163718477105198b46ab501ade', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f88bb41ca8ee8a3880a1e0c66c718a6bc56233d', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6ec805ec7c5c576a05bfa3cd54cfbf2cb4a10b', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb1ec6aa47e54bc8ce038b71914e232cff08c5a', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a487e635394733b512f514ee5a1c7e4cdf186d3', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4364c6ca3b2409cda83f0532e0367b56985ad1cb', '172.105.247.100', 1675730418, '__ci_last_regenerate|i:1675730418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec392a2af1ae29a3a4fbc534a9831fc09cdded01', '172.105.247.100', 1675730419, '__ci_last_regenerate|i:1675730419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d706554d17cd902ba362fade272f9cd937bb11b6', '172.105.247.100', 1675730419, '__ci_last_regenerate|i:1675730419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae67f3e1b28695d541c7078f0d604567c6781b16', '172.105.247.100', 1675730419, '__ci_last_regenerate|i:1675730419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84baca63f668d00dda23cc9e6dabf23ba7f45f1e', '172.105.247.100', 1675730419, '__ci_last_regenerate|i:1675730419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038e6de967b412a8c6b17cd3b9a69a1bda06e03b', '172.105.247.100', 1675730419, '__ci_last_regenerate|i:1675730419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763728f0074161c2b13755fe951eb54d3a4978f4', '172.105.247.100', 1675735822, '__ci_last_regenerate|i:1675735822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b386eab73682a414f2e2b38df5b34eb90c33a3d3', '172.105.247.100', 1675735822, '__ci_last_regenerate|i:1675735822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8df181884fa9b0a2d14b9ac679fc809085b586', '172.105.247.100', 1675735822, '__ci_last_regenerate|i:1675735822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a722cc6893507d85848dad95a8393429199a947', '172.105.247.100', 1675735822, '__ci_last_regenerate|i:1675735822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c5c9192a7318cdc08229bff0553c679221aed6', '172.105.247.100', 1675735822, '__ci_last_regenerate|i:1675735822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41b2295a60b9de8586c6e7aea5565c523ffe1f79', '172.105.247.100', 1675735822, '__ci_last_regenerate|i:1675735822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5a5540f032bcf425dc7d1385e7e69919e49d75', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8cfd869e89b93e0cefd76ff75f011a35b21e60', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd54cd3e5c5ad3df021958b3ef418a39c12d13c', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcee7849a5ed27e8e39e7652d4d3c1d5b0a6b2d1', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b38fa042668f069e7bed0dd2c28d0f8ceb91445', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5756b9e104928291699e39a755b350a10d63403', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0271df38fd4ee18929d55fc1d2d2b180495f91e0', '172.105.247.100', 1675735823, '__ci_last_regenerate|i:1675735823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd8704efc54a85ac91309fe580a418b99d35003', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541291d8953779d3a674e08d911ff51267c4a011', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b2acbf653290ed44d4e052c28ef6e4728d9939f', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a0f94ceb04b0a033a6a78aadcdc6d9ff255e6a', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('152642f1f0c5a94f8fd84dafc54b01e6aef80a7f', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e199574acf96adce3c67b99bdcb74b28320583', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95177075905d94977ba3f8f22fbefefef3d5daf', '172.105.247.100', 1675735824, '__ci_last_regenerate|i:1675735824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f3ed0f435735e08318d1ef00e93437ae73a2e1', '172.105.247.100', 1675735825, '__ci_last_regenerate|i:1675735825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c18f2a6537a02dfe5730f5f446748cfad752e6', '172.105.247.100', 1675735825, '__ci_last_regenerate|i:1675735825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5b9080d55335b1f498b24ca6a753aed844db7f', '172.105.247.100', 1675735825, '__ci_last_regenerate|i:1675735825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4b81b672e9d9490dc0da111a2e7e0a04585552', '172.105.247.100', 1675735825, '__ci_last_regenerate|i:1675735825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21b911b60df5d3b07c27ff180d441ed356f4a9a5', '31.222.203.2', 1675739004, '__ci_last_regenerate|i:1675739004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b94b65729e80019888c72458411ed1febd9c218', '31.222.203.2', 1675739004, '__ci_last_regenerate|i:1675739004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c310cf109867d88a02b01439909704bbc806597', '31.222.203.2', 1675739004, '__ci_last_regenerate|i:1675739004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd69e10071c1f17c24520802776f22f105aca29', '31.222.203.2', 1675739006, '__ci_last_regenerate|i:1675739006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('301de8a0d29b0429b885a8207f20702c40e8e0c0', '31.222.203.2', 1675739006, '__ci_last_regenerate|i:1675739006;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa65f310344c920f94f972788eb5c00114fc4548', '31.222.203.2', 1675739006, '__ci_last_regenerate|i:1675739006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ebfd437841e1542e0278b7675607a5257469576', '172.105.247.100', 1675740623, '__ci_last_regenerate|i:1675740623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31f9fbb4f1d6d8fa4858194eae89513cab929c2', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f99992559dd0f81d80f77a368989c413bafefad6', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991190539f1873021feb1c51e75635d4ee061bc5', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81d6fd1f6eb0e6f559f4b4aa03a5a22fbc4ff6c', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab66c0bdb4dafe1e40380ca9c0462562978dc371', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a392921acad8842f2c174a6ea89109677e71565a', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990c22a9cc7ceb8aa84b4e59dc6f8436f5b2e0e6', '172.105.247.100', 1675740624, '__ci_last_regenerate|i:1675740624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f36b2f4afe3284cae0b5907acac9b27ce38d78f0', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d373a804f51bf72048c94d4a164dbf35e8b097e', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a547251c8eeb1aeaa0c51eff375ffb912b882b0', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8829b7331037bf5bf4226e31814c6dd86e7248b0', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfcaa67422fea3f6bd17d86c3eefd0fd3987125', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8034ef38e71c722b0d31190e55c3e4c72ee6ba2c', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d6777848662f162471a27dba868917c104b70d', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a405e9130d73edb0456f08ff9e329c3d93962ea8', '172.105.247.100', 1675740625, '__ci_last_regenerate|i:1675740625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71ab285a6e9fa57d3a9228ab2bee42fbb9f7224', '172.105.247.100', 1675740626, '__ci_last_regenerate|i:1675740626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e7b7beb3364873b4883580dcb223b74df1b0a81', '172.105.247.100', 1675740626, '__ci_last_regenerate|i:1675740626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b5b303550f81949371b9c96ff2a84e30c6c385', '172.105.247.100', 1675740626, '__ci_last_regenerate|i:1675740626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d905f9d52277d88b98189085c4983f490f970222', '172.105.247.100', 1675740626, '__ci_last_regenerate|i:1675740626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f66e62e5d95520c77496e7321efc409230d7ece', '172.105.247.100', 1675740626, '__ci_last_regenerate|i:1675740626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a494d6e5dbb6a125bba2f1ee8325cd32de243f', '172.105.247.100', 1675740626, '__ci_last_regenerate|i:1675740626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3abb11600eb142c8c41a9f1bac18c4dae4d0b9', '172.105.247.100', 1675740627, '__ci_last_regenerate|i:1675740626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50fac375aeb8eec9e4a3445ce8b5a973d5f9f1a8', '172.105.247.100', 1675740627, '__ci_last_regenerate|i:1675740626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f14499332f06370de01ca3b7bde760bfa43c432', '31.222.203.2', 1675740860, '__ci_last_regenerate|i:1675740860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328c99582a77530607d0c878dafbac4d33480a5c', '31.222.203.2', 1675740860, '__ci_last_regenerate|i:1675740860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033522991df2f9573cd397b63c3c501ba37fe8fa', '31.222.203.2', 1675740860, '__ci_last_regenerate|i:1675740860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a6c1f0bccd857568637c3985e7e6608d2e05f6', '31.222.203.2', 1675740860, '__ci_last_regenerate|i:1675740860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f90f573c74d205ff2fb89c2844e619f63ba3c97', '31.222.203.2', 1675740860, '__ci_last_regenerate|i:1675740860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b072beac831adc53897839dfb9bc929f669752b', '31.222.203.2', 1675740860, '__ci_last_regenerate|i:1675740860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a33220a4a4afc77b43808124bc49f7abac19ba', '45.120.39.89', 1675745046, '__ci_last_regenerate|i:1675745046;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675684303\";last_ip|s:13:\"37.111.218.50\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0473a0094337ff4fcc27e3d0fcc9568a2c4a2095', '45.120.39.89', 1675745138, '__ci_last_regenerate|i:1675745046;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675684303\";last_ip|s:13:\"37.111.218.50\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675745090;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a16bf5c667f40aa0979cd449503044ec19da50', '172.105.247.100', 1675745417, '__ci_last_regenerate|i:1675745417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd0efd352a0be616742a27dbe2d6ebc633bb205', '172.105.247.100', 1675745418, '__ci_last_regenerate|i:1675745418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63de025e744f82e1265a0fb3167249907c31db44', '172.105.247.100', 1675745418, '__ci_last_regenerate|i:1675745418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c2cd9408b19054e055e19ed781b814568811eea', '172.105.247.100', 1675745418, '__ci_last_regenerate|i:1675745418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dd33d3102729015dbc2256c66955f46a1f3491b', '172.105.247.100', 1675745418, '__ci_last_regenerate|i:1675745418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d398c598f9e6238d9547f8b1078738476c64567', '172.105.247.100', 1675745419, '__ci_last_regenerate|i:1675745418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fc8b952cd64e127410b02c4f99394f9077bd373', '172.105.247.100', 1675745419, '__ci_last_regenerate|i:1675745419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d356e5e7a784516cd2aea3b745070c7d5554e30f', '172.105.247.100', 1675745419, '__ci_last_regenerate|i:1675745419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a3439132d59ce92debbe1e25184b6648d5d793', '172.105.247.100', 1675745419, '__ci_last_regenerate|i:1675745419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f78e2ed6b83aae36b78e655ed3433330cd122b98', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5005484dbc3d9b8972dd4c2574e3cda3bbc6037', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa08b12d5f078f91d989b9aea8fd71fa1d9a3e4', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c51337dcd82fdc3f0566e7c2da4e162a9d54dea', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76af6edd32ff7fc7aa45d47387a63a8bfa969985', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce849cca9699c134f03bffac9e1a5f8f6f5f8fb', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84eb81706bf31333d0d3c8c9d6a786df85017836', '172.105.247.100', 1675745420, '__ci_last_regenerate|i:1675745420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7532649a03214d529f400cd3b04183161424ae4b', '172.105.247.100', 1675745421, '__ci_last_regenerate|i:1675745421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ded5cf43d38fb9e53c4d96a279310885204e5bb', '172.105.247.100', 1675745421, '__ci_last_regenerate|i:1675745421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cadbae8912d8a6c44621e3c0b1f674e954490a', '172.105.247.100', 1675745421, '__ci_last_regenerate|i:1675745421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f51edec95ca9392797ed3423201f620cec6c62', '172.105.247.100', 1675745421, '__ci_last_regenerate|i:1675745421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada9544f61279308e9301ca14d22ae609b68a538', '172.105.247.100', 1675745422, '__ci_last_regenerate|i:1675745422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fd16c61dd1df891dff2826579d223619f28b673', '172.105.247.100', 1675745422, '__ci_last_regenerate|i:1675745422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfcecf8257872ac271beec6dca7ea0d84f40817', '172.105.247.100', 1675745422, '__ci_last_regenerate|i:1675745422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b44db6ff82737f5f82180f0d5da873a9276c9e2', '172.105.247.100', 1675745423, '__ci_last_regenerate|i:1675745422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aade843b805e49fd035acc700ab63db4aafd045d', '116.204.230.30', 1675747151, '__ci_last_regenerate|i:1675747151;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675693348\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da6084192278a4cf285c399ee76bad4dd0587b15', '116.204.230.30', 1675747597, '__ci_last_regenerate|i:1675747597;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675693348\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a79ea92da712b23d921d1215c1eec9d3af17961', '116.204.230.30', 1675752170, '__ci_last_regenerate|i:1675752170;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675693348\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"kKU1ndhpy52VqgCNYbG9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ca142d21ee42708fdcdc262cf5bdad0d4c2716', '31.222.203.2', 1675749746, '__ci_last_regenerate|i:1675749746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d47d72730b9176ce99b904998a33ce386f6a0dc', '31.222.203.2', 1675749746, '__ci_last_regenerate|i:1675749746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9256ee3d2e32e6b18761743f172b4709f2a9f283', '31.222.203.2', 1675749746, '__ci_last_regenerate|i:1675749746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08691648ab4367b2df3e3469dfcc0443c3f87358', '31.222.203.2', 1675749748, '__ci_last_regenerate|i:1675749748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71eeb0c2d0fd5f598b655911e16fc48574117bf6', '31.222.203.2', 1675749748, '__ci_last_regenerate|i:1675749748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e565385de63a39d88581497e127d637c51c94f58', '31.222.203.2', 1675749748, '__ci_last_regenerate|i:1675749748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b065c1992e7ee4b899d74c1a952dbfac7a3c12d', '172.105.247.100', 1675750217, '__ci_last_regenerate|i:1675750217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0554ec22c3968d0002469cc520dca80e44405cb2', '172.105.247.100', 1675750218, '__ci_last_regenerate|i:1675750218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640c760f5936b81d980fab86c75cf4cbbd417a82', '172.105.247.100', 1675750218, '__ci_last_regenerate|i:1675750218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3609666bdeb1b93b95345db14ef3c4545319bb', '172.105.247.100', 1675750218, '__ci_last_regenerate|i:1675750218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a83be4b512bbf9edf4721e86ead55c923b87bbf', '172.105.247.100', 1675750218, '__ci_last_regenerate|i:1675750218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997a1a7030f8636caacb7b7e282e828d8c802e16', '172.105.247.100', 1675750218, '__ci_last_regenerate|i:1675750218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a54ad0b3c06ab7065340ef3c165c3542c18550d', '172.105.247.100', 1675750218, '__ci_last_regenerate|i:1675750218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7e4a49169ff18c8dd0b6ce10592d8a378eb6a7', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21652399a007d6de7c8920e419abc988dbd07d64', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca7a3edb97d68ffca55cd8ef70bf7f461e2118c', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de0b88851a5849a3e5a23a737749ae2151c4657', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18cec1ce98d1064e8c49441dadda860225d406c', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ae9f0fef8da1a1a85a8d59a32b32ec39a4add2', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ec5c944e955ac8126944c2ce175496b3626d64', '172.105.247.100', 1675750219, '__ci_last_regenerate|i:1675750219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d1299d88ef285cb4d3a60ef75560c063dc7f08', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713f152fdb64a5392e6ef1dc0331c8dd40b0710a', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a12067c1b2efd83e1a1ff42d3d8099fa3972c4c', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc89d2c4fe7708d2de6d7a40dd6299109620004', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2391fd343ab417ec85cd48a377eda4d3ed7b1a', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54dd6b02e5289c7b3b60c206921128fc1f62d40d', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b0dae16371aa3f38f8f511b8ff091491c4f32c', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9821598858411695d4d8c1c8a06c1d44f9fbbd60', '172.105.247.100', 1675750220, '__ci_last_regenerate|i:1675750220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b92fcaac9d2f8703db12d3777233fb4902d5a24', '172.105.247.100', 1675750221, '__ci_last_regenerate|i:1675750221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3274b5487fe80b607d96c93f18102122d67647d', '172.105.247.100', 1675750221, '__ci_last_regenerate|i:1675750221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64059e4f64a587361c95b6024133058901fe46c5', '31.222.203.2', 1675751636, '__ci_last_regenerate|i:1675751636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddbd49ee633e145e4a6a08d6efbc15fb353d4d6', '31.222.203.2', 1675751636, '__ci_last_regenerate|i:1675751636;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31b0d40480e8d7d0cb94e66a14478a0da2f2b0b', '31.222.203.2', 1675751636, '__ci_last_regenerate|i:1675751636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9af057fd1a1a830eed7f5e31915bf92b778a96', '31.222.203.2', 1675751639, '__ci_last_regenerate|i:1675751639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987d5f9653563dce0afc1441e9705aeef6b3d850', '31.222.203.2', 1675751639, '__ci_last_regenerate|i:1675751639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361b568766ad8fcec2e86fc979c2bd40a9427c61', '31.222.203.2', 1675751639, '__ci_last_regenerate|i:1675751639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d09d874c48a3909f512e4594884ad30a632c68a', '116.204.230.30', 1675754805, '__ci_last_regenerate|i:1675754805;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675693348\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"kKU1ndhpy52VqgCNYbG9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa05b40a002319a2ecb0b9d581e701b66f510f7', '45.120.39.89', 1675756850, '__ci_last_regenerate|i:1675756850;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675744072\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675753155;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc54e35e2912c212d2dd174d9ac4aad7db99f629', '31.222.203.2', 1675753498, '__ci_last_regenerate|i:1675753498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d5918b662a985d3e967daa368a83ab0fec301e', '31.222.203.2', 1675753498, '__ci_last_regenerate|i:1675753498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5f6f5e440f4d68da255dfa74348092fbeac12b', '31.222.203.2', 1675753498, '__ci_last_regenerate|i:1675753498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7cf14c305238c69ee70c9f6ce8cde970ce8c2a', '31.222.203.2', 1675753498, '__ci_last_regenerate|i:1675753498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('404f7d9bdbc6e2e80e5366163f1789c7c7d029ee', '31.222.203.2', 1675753498, '__ci_last_regenerate|i:1675753498;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e1567bd2ee98a7b79ace8123079516a3cd47c4', '31.222.203.2', 1675753498, '__ci_last_regenerate|i:1675753498;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3845bf44e28ec60f326d3cbb6ec0694cefdd905f', '116.204.230.30', 1675754977, '__ci_last_regenerate|i:1675754805;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675693348\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"kKU1ndhpy52VqgCNYbG9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b668d9b87515fe3a09343704d8414e23f8317e', '172.105.247.100', 1675755021, '__ci_last_regenerate|i:1675755021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c4e4004d56a8d81de5360edf4ff094f0e93dce5', '172.105.247.100', 1675755022, '__ci_last_regenerate|i:1675755022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc9d6ae8a203a7f734d7950c435e3091ee8c6286', '172.105.247.100', 1675755023, '__ci_last_regenerate|i:1675755023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e81337d8f267c050c550c2870eeb73960b98cb1', '172.105.247.100', 1675755023, '__ci_last_regenerate|i:1675755023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02178a5b300c9e9d26a15e3eb21c804d36ced7dc', '172.105.247.100', 1675755023, '__ci_last_regenerate|i:1675755023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008726b095449ce5c0a44c021a5b95e0466b1f3b', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1903d7649a47fd8ca994fbabb7ae16e3638438', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327afbbb7aed8e673fe89dd20659cbe63d3ad0a3', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c145c2862a55ebd57013df534593b2be94eff4db', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04ef5b300950ea9793d2480f0d273673baa027e0', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487f8154fa827a8d619df6e150ab59288a767d0d', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8563144eb5617c96ea267cb6df7df2dca876fdcb', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19a2ca1036310013a1e3eefc8ecb508d26928d4', '172.105.247.100', 1675755024, '__ci_last_regenerate|i:1675755024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671f36a39aa8813e4e19578f2dde44899ae2b566', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a809932d303c3e2789a09b7e02b129d1b42288a0', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48fb3d27ca5f068182a59adb45192924e2b24e8', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09eadd5531aefa6af73b649b7f4c5260299d6675', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8baf087890308aad0221fb0f484477b1279d3d', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a2056d0a4040f4dd232f87368e7b94d9cf841f', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf85cf5ca6aed58482842bb55ca63c66d756d1c', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68763a9137065cb9e70ce73d952429a574a49b7d', '172.105.247.100', 1675755025, '__ci_last_regenerate|i:1675755025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a152b9f723da076dc70f4f54066cf6f173175c', '172.105.247.100', 1675755026, '__ci_last_regenerate|i:1675755026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007636d88923e3717819eed2cddc5bc6c3d60035', '172.105.247.100', 1675755026, '__ci_last_regenerate|i:1675755026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004d653377a3d3eb9f965c1dfd85d42a4c3602bf', '172.105.247.100', 1675755026, '__ci_last_regenerate|i:1675755026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b0fe7cdb07daba2dddcb88482360f070010625d', '45.120.39.89', 1675763136, '__ci_last_regenerate|i:1675763136;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675744072\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675756879;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491f2aa5b9445e420f226764b234f98c36481079', '172.105.247.100', 1675759818, '__ci_last_regenerate|i:1675759818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6bfe356ddb48ebe5d76e536a296e5044d4e0d61', '172.105.247.100', 1675759818, '__ci_last_regenerate|i:1675759818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640437cdcb98632131a503de9503b45ba6c6258f', '172.105.247.100', 1675759819, '__ci_last_regenerate|i:1675759819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76f20b22a38c495841f382f5ab669d275cbf7bb', '172.105.247.100', 1675759819, '__ci_last_regenerate|i:1675759819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c362f2901e9cb0d649bbf8c54c144d624b38f1', '172.105.247.100', 1675759819, '__ci_last_regenerate|i:1675759819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfe39ef09b21d915e0354e59b3018a8c341b116', '172.105.247.100', 1675759819, '__ci_last_regenerate|i:1675759819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a70fc13ad58bd544cdef9d004aeed9f9d56f3f', '172.105.247.100', 1675759819, '__ci_last_regenerate|i:1675759819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637fc8d300b8576461395eb8e4ff56d3c2991d27', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f46c73fa39a555fef84fb8c93c6bcd47bc7ba4', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70e767e8fdeeb24fb7bec84a9bb46f966caff3c', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06147ad2ea28138b5aa7c9e610e2936486067c6a', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1c9b2fdad0fffe572380beed09838eaa0c7e070', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19f06cb4ed3414b8d0f87ab07840627f01feb07', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54adf851b2767d7ab8ec6d871f382d087f914d8b', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('795928a7f100ad1f2ce21150190308f65abcaaba', '172.105.247.100', 1675759820, '__ci_last_regenerate|i:1675759820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1ee5c089f0439782ee1cbf1db59e24863fa394', '172.105.247.100', 1675759821, '__ci_last_regenerate|i:1675759821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9155d6406a4d9e3346a490d4383f0cc6c1a3363', '172.105.247.100', 1675759821, '__ci_last_regenerate|i:1675759821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f4c3d06b7bf7141b88c280ec74f62a3666bff9', '172.105.247.100', 1675759821, '__ci_last_regenerate|i:1675759821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c0fc656b397827c559fce2774cec9312e6d040', '172.105.247.100', 1675759821, '__ci_last_regenerate|i:1675759821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324948a5cbebaf3c52c681f5ec845f68e522bda3', '172.105.247.100', 1675759821, '__ci_last_regenerate|i:1675759821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507bae0e99be62c7d0a8650f31ba92221e9e1c6b', '172.105.247.100', 1675759822, '__ci_last_regenerate|i:1675759822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7badb9f46069cb96c7af77e0546b1b976cb9a899', '172.105.247.100', 1675759822, '__ci_last_regenerate|i:1675759822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09010ffa28acc1282590d3c946130d6433a6c931', '172.105.247.100', 1675759822, '__ci_last_regenerate|i:1675759822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe72251e9060561cd9396f35227198f416a23576', '172.105.247.100', 1675759822, '__ci_last_regenerate|i:1675759822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('933ff5ff7f92e337e7550738d407ff12cb6d7989', '31.222.203.2', 1675762452, '__ci_last_regenerate|i:1675762452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ab628ce27d4eeaec3372970204150a7b2c8061', '31.222.203.2', 1675762453, '__ci_last_regenerate|i:1675762453;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51558728256d7379cfeaac60a261de4b6dbc51f6', '31.222.203.2', 1675762453, '__ci_last_regenerate|i:1675762453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11e0ecea0dd2b776593772013238efd9bca98b4', '31.222.203.2', 1675762453, '__ci_last_regenerate|i:1675762453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8ac5e6fb9067a525d20f4bded76c598d785691', '31.222.203.2', 1675762453, '__ci_last_regenerate|i:1675762453;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c151dffeafea604dd21078ce328371308f667e2', '31.222.203.2', 1675762453, '__ci_last_regenerate|i:1675762453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d72a99e312bfab7a789230dbbc46cbe86184e1', '45.120.39.89', 1675763143, '__ci_last_regenerate|i:1675763136;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675744072\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675763143;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3806a949578a9a0b3a3c2f8364984f5d5a906cc3', '172.105.247.100', 1675764617, '__ci_last_regenerate|i:1675764617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb535ce5d8c2a39a07c72193e961a5b79db7078a', '172.105.247.100', 1675764619, '__ci_last_regenerate|i:1675764619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9911d670ebffacdd7ee3b7b7c2a4f78b181e7582', '172.105.247.100', 1675764619, '__ci_last_regenerate|i:1675764619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160e2b23a85c28e98827de02a833af77ef06fd9c', '172.105.247.100', 1675764619, '__ci_last_regenerate|i:1675764619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5cdbd53e51401891bfb9fedd859a60c611b5a0', '172.105.247.100', 1675764620, '__ci_last_regenerate|i:1675764620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7091ee35ed5ef37368c23d295179232942390d3', '172.105.247.100', 1675764620, '__ci_last_regenerate|i:1675764620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640b2fc508d7ce0037e522a79728fe15321755ed', '172.105.247.100', 1675764620, '__ci_last_regenerate|i:1675764620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('693ab85b3ea23da60451b92f893ef1f4c5b393e0', '172.105.247.100', 1675764620, '__ci_last_regenerate|i:1675764620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575017297c40f2c54062e0469b3c60840ff43913', '172.105.247.100', 1675764621, '__ci_last_regenerate|i:1675764621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1678b00319dd28468f7d9c68e99389d411090f65', '172.105.247.100', 1675764621, '__ci_last_regenerate|i:1675764621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc16158680a5886b3f2c27fd20e4d33fbfd283f', '172.105.247.100', 1675764621, '__ci_last_regenerate|i:1675764621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17220b6b182cb6bef7c7ebc769fa9b67dcbb7eb', '172.105.247.100', 1675764622, '__ci_last_regenerate|i:1675764621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('444ffe9b333597a875e383abe181c1412bcea364', '172.105.247.100', 1675764622, '__ci_last_regenerate|i:1675764622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeee64592729a25bd853f10b36e0e386b50117b6', '172.105.247.100', 1675764622, '__ci_last_regenerate|i:1675764622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e55d22e6e2f4d9737263f9ff9f09739c437c3d', '172.105.247.100', 1675764622, '__ci_last_regenerate|i:1675764622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35cb937c80c2420b9c41d71259f740b7a36e754a', '172.105.247.100', 1675764623, '__ci_last_regenerate|i:1675764623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e58d8b6476f889b031fffe0681d0e6a215832b', '172.105.247.100', 1675764623, '__ci_last_regenerate|i:1675764623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8984a0561b678e3c17032e915adce132403507', '172.105.247.100', 1675764623, '__ci_last_regenerate|i:1675764623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8b26aa4faf69b0e95ae90ac8bd75f9dd9776b8', '172.105.247.100', 1675764623, '__ci_last_regenerate|i:1675764623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1543d57cb8316512d08197703b27873aca647386', '172.105.247.100', 1675764624, '__ci_last_regenerate|i:1675764624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510f333cf94f3d519bb3fdc18ec90065bf62bf80', '172.105.247.100', 1675764624, '__ci_last_regenerate|i:1675764624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ceff01557fe46fe027e1c9be43780e4ee6d88e1', '172.105.247.100', 1675764624, '__ci_last_regenerate|i:1675764624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7195434b057a81dceb4d45d4ddfb0c9f2c9574', '172.105.247.100', 1675764625, '__ci_last_regenerate|i:1675764625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14b67899cb2d8562b6cb9c530226eb8a4e309d2', '172.105.247.100', 1675764625, '__ci_last_regenerate|i:1675764625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f7c4a56aa41e4d2991fcfc525be223532ced8e', '172.105.247.100', 1675769419, '__ci_last_regenerate|i:1675769419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4886c57a0d6b9a8d5ae1b429a8da32cd004709b4', '172.105.247.100', 1675769420, '__ci_last_regenerate|i:1675769420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2efd2de42aabbdf449954833f2864791301eaf', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1eb170d53e73c6c4270d2764675e33a2bdf6027', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e415871cf8d9cb6aae58992e96e9d79360c70dc', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3b9bbdd62b7856665ced4a24153c83ec5d8802', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232cb5bb275042a0c5e5023893cbf0a8b713cc90', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76c1e454da65a6d7795fc6125b6faf9887e4e931', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1df3b8e6647153e2191f9232d60abf6cb2ef657', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ef43a95a17490af8e9d201cafb8dfac55b5c6a', '172.105.247.100', 1675769421, '__ci_last_regenerate|i:1675769421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77dfb80b4eabccbe828f52039bd9f4ca73f38bcc', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbafca8947a25f4634a37762700f161bd7a5f3cc', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823b61bb7f450638e261a092f756ba05dc769f8e', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17667f419043d34693d75e4da99d88ec86f71b54', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad17bbbd7ed31ba1aad82a62c70dac375d0cf861', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f2e173545e1d6251f93e75028939559ee45172', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423f9b552255ec0582c33f773dd9bba505cb49b6', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cee78bebd6579c71fb2a7b8612acfe7d73fd5c', '172.105.247.100', 1675769422, '__ci_last_regenerate|i:1675769422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9dc48899eaa53af41727871186f314c925cf80', '172.105.247.100', 1675769423, '__ci_last_regenerate|i:1675769423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54f0a61966c185120e27f5092f6e6a8ec21b2107', '172.105.247.100', 1675769423, '__ci_last_regenerate|i:1675769423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8258a39becb16e02b4a812d17b9d4d00c1d7e205', '172.105.247.100', 1675769423, '__ci_last_regenerate|i:1675769423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca5ed0fb92a1cbe2947f6e838ae2cfa974bcded', '172.105.247.100', 1675769423, '__ci_last_regenerate|i:1675769423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d4ec7128511801dc8468978a8d5d700033df58', '172.105.247.100', 1675769423, '__ci_last_regenerate|i:1675769423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b02c53ef8e09054e07358be18b3d4ae275bc799', '172.105.247.100', 1675769424, '__ci_last_regenerate|i:1675769423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad541f02c43da65c94383291f151c85afb742253', '31.222.203.2', 1675769548, '__ci_last_regenerate|i:1675769548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5491b7ad0a339d11a675b4e964d71b95e98812a7', '31.222.203.2', 1675769548, '__ci_last_regenerate|i:1675769548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6ffd65aec2278d4c5262eae853495dc5d6642e', '31.222.203.2', 1675769548, '__ci_last_regenerate|i:1675769548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98447d73737913b9671db8e164a24c56b8f2f83', '31.222.203.2', 1675769548, '__ci_last_regenerate|i:1675769548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc5752ecbb131fa1a5b2e16bed6aeae25196db1', '31.222.203.2', 1675769548, '__ci_last_regenerate|i:1675769548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e40b1d771a2c833e62ff89d55d8ae55a35f131', '31.222.203.2', 1675769548, '__ci_last_regenerate|i:1675769548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe0c6cb966afa97494d6aa1ef5ca4b3d4679bab', '209.141.55.120', 1675769570, '__ci_last_regenerate|i:1675769570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f345407492a09cd34488ec424bc69f445a12accb', '209.141.55.120', 1675769572, '__ci_last_regenerate|i:1675769572;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d00a7cae5cf9a41567ce25064463640516c3171', '209.141.55.120', 1675769574, '__ci_last_regenerate|i:1675769574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b99b30deaf2126e4f8a00dd22ab0990eccf961', '31.222.203.2', 1675771440, '__ci_last_regenerate|i:1675771440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f809376934933cab8bda0162df3f62a725a900c', '31.222.203.2', 1675771440, '__ci_last_regenerate|i:1675771440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9d0c0e13eebc1cc126dd5d18f2c4d163f33c02', '31.222.203.2', 1675771440, '__ci_last_regenerate|i:1675771440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6b6fb36c32e9f3ce414f1d4451e95b9ba260f6', '31.222.203.2', 1675771442, '__ci_last_regenerate|i:1675771442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b090c657b612068701162a050e1e01a872ac71f9', '31.222.203.2', 1675771442, '__ci_last_regenerate|i:1675771442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcde121774f551020ea7c67c7ba3fceb6bd69898', '31.222.203.2', 1675771442, '__ci_last_regenerate|i:1675771442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('151129a6c4cf5bca6f65acf3d11aa0327705845f', '31.222.203.2', 1675773317, '__ci_last_regenerate|i:1675773317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4af8683c3b6a8038ba146f126503f1ea6a01f0', '31.222.203.2', 1675773318, '__ci_last_regenerate|i:1675773318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29a1d56de7b5737296029745a80d9519ee4cda61', '31.222.203.2', 1675773318, '__ci_last_regenerate|i:1675773318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb8508846cbec95c5343d3d22ec85403e384a6a', '31.222.203.2', 1675773318, '__ci_last_regenerate|i:1675773318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155c826aedd9c7eccbbcb26b04ec5ca31ac4b960', '31.222.203.2', 1675773318, '__ci_last_regenerate|i:1675773318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03fdd641d259cfd535c9efe1379053e45a3b220', '31.222.203.2', 1675773318, '__ci_last_regenerate|i:1675773318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51643ac6b24a495b42d65674816f86cec5fd7bd', '172.105.247.100', 1675774218, '__ci_last_regenerate|i:1675774218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d05e4112f73ff089bd808918f1c6ee3bdbeae13', '172.105.247.100', 1675774218, '__ci_last_regenerate|i:1675774218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dd1140d9f22d81e28c890217b4e9263ee16d01', '172.105.247.100', 1675774218, '__ci_last_regenerate|i:1675774218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe4d81c60ba9f664656a0a819457d880c8e7fd1', '172.105.247.100', 1675774218, '__ci_last_regenerate|i:1675774218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c8434fb4e57190341ecd7d2f72a1998134bba2', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8723ae685a4a10912ab34047087f7f24e185d6a', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e4aad7fbdae8e6ab5758e37d990a66b1dc6dd5', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e12c5211a0f0ff9170f8a999d62d71246672bba', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd3cdf242a53d7e4b6580ceb38086ca29f99ce2', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39234d8c614e8754e68c9498468208006e9a1f76', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b1126e49c239229032e1eb98fcc8dec6a20f5b', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b4f8fddd9ac5577009c8e73d19631e869ddec2', '172.105.247.100', 1675774219, '__ci_last_regenerate|i:1675774219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae26d7ff83c377f0e15f9ebc2976027d63c0a73', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de4ca0405f724a690a8258d58ce2d01a184752e', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc11f087b07282df8d0ea98d27e31b4a7cb11922', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7230603546c4e8cbcd175eae1eace5b81eebf9e', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff663ac7cb256997f3bb744b65d2c8b842f2b4b6', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa906f02873afc87d85322978bbe96d46d87d9a', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f41211a0eeca2c0093cc1b440c971ae5613351d', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5418b3de04107d54fd4e7ac9e9664b77fe981c', '172.105.247.100', 1675774220, '__ci_last_regenerate|i:1675774220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e107832df4341a26848986fe7a904cfd515c34', '172.105.247.100', 1675774221, '__ci_last_regenerate|i:1675774221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5664714d428fd9db6874e7d68fdec6bdd1ef5ef1', '172.105.247.100', 1675774221, '__ci_last_regenerate|i:1675774221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7d6eb1efc4b7bf04b927e4fba1cfe0ee748f63', '172.105.247.100', 1675774221, '__ci_last_regenerate|i:1675774221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a7191c8996a986d3cbcc2302aa4f6d087ac8879', '172.105.247.100', 1675774221, '__ci_last_regenerate|i:1675774221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c596b5056f3916eb865d8782f99401e578d4d0f1', '45.120.39.89', 1675774328, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e598b5903b7acf053fff3740b2cb654c260546', '45.120.39.89', 1675774328, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b78cbd98292f7a4d479ed52c52e61ca0c661ea2', '45.120.39.89', 1675780033, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675780033;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675753115\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675774755;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef52b961202d29ee13c83636e8bba833ddd6cc2b', '63.33.197.42', 1675776842, '__ci_last_regenerate|i:1675776842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d22c5ca7392c0a5ac7ce638e2366cad1d8a870', '54.217.14.30', 1675777936, '__ci_last_regenerate|i:1675777936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec10b89d4566fedbbc46fe38b3057d9d7a341463', '31.222.203.2', 1675778549, '__ci_last_regenerate|i:1675778549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3e7a73c3a8433fd3dc0d800381821162898931', '31.222.203.2', 1675778551, '__ci_last_regenerate|i:1675778551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83849052621cdc32586d3a77d1804a8b9119f100', '31.222.203.2', 1675778551, '__ci_last_regenerate|i:1675778551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f24d667c7f3afaf3a700cb6bc35920e53b4afa8', '31.222.203.2', 1675778551, '__ci_last_regenerate|i:1675778551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652a0cded44c5ca2741fd48c8bfffc0351a0bcab', '31.222.203.2', 1675778551, '__ci_last_regenerate|i:1675778551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85c5a093019507a4a0122b1931068c6725451f5c', '31.222.203.2', 1675778551, '__ci_last_regenerate|i:1675778551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07cd8ff5b07e847515087960244f22a4e85f24f7', '172.105.247.100', 1675779018, '__ci_last_regenerate|i:1675779018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5fd488c574181a4a3b3254a4f1e403fedb4b6e9', '172.105.247.100', 1675779020, '__ci_last_regenerate|i:1675779020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e52e31ed0deba46a889f210677416495d48300', '172.105.247.100', 1675779020, '__ci_last_regenerate|i:1675779020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a347a80eb41c2c97e715fdd8e5bf6b95194bd58', '172.105.247.100', 1675779020, '__ci_last_regenerate|i:1675779020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e235e8384d9e7b1da88b7a84475497c6acbc03', '172.105.247.100', 1675779020, '__ci_last_regenerate|i:1675779020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('114080bf16519c200446dda7e3e5698f389f2556', '172.105.247.100', 1675779020, '__ci_last_regenerate|i:1675779020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63f771ee74fccea591254b5718d04e37f6c1485', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ca387ca0de5afa2cca1728382ccc07d52d7238', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1828bf90687308b816c293348f7a5e182670050f', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f164880dae99e49cf1d9693217704a5bc95140', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c53dbb189d0f080a9ee6d437add1b10c5511909', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af36f4dc08710af54ebd6b28d706fb32d02843e', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0536a46fc2617ec7254fb725fd1b192b9d34e06', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7cd5325b6c54e64ae17f154530bcbe64f7549f', '172.105.247.100', 1675779021, '__ci_last_regenerate|i:1675779021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc3deb7df618fb35344b7ee3f9235f88a0dffb7', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c2f77e259dacc32a8adad638edf4821c4b626a7', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4dc6072f3e758cffb4e216e03da53cf395578cc', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea1f9a203beea89552a7956d6dbd78e5bd0fe73', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865e33e3b140cd8b4df0cfcf1aef32069fdb603c', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb1649618dcf8946ea7d25d18d9dc6fccc48c705', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('730f810e931af55e621b7b56635fac3ddb35e0ac', '172.105.247.100', 1675779022, '__ci_last_regenerate|i:1675779022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef65e3bef8886c4728b0e2851d9eac420bcac853', '172.105.247.100', 1675779023, '__ci_last_regenerate|i:1675779023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6526e4d09773a9d045870345e9278e387797b6cf', '172.105.247.100', 1675779023, '__ci_last_regenerate|i:1675779023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd46474abcc7b3780c91a580d00dd35c065e968', '172.105.247.100', 1675779023, '__ci_last_regenerate|i:1675779023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2282445fca19b95f845e9cadc2b2c568da1895bf', '45.120.39.89', 1675780464, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675780464;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675753115\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675774755;register_id|s:3:\"334\";cash_in_hand|s:9:\"1220.0000\";register_open_time|s:19:\"2023-02-06 20:27:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b617f82ba3fdd73bd50cdcbdd2e749de23baf313', '34.240.24.38', 1675780226, '__ci_last_regenerate|i:1675780226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1087018cdbeed916b8a0eb0b66058b171a44e693', '31.222.203.2', 1675780441, '__ci_last_regenerate|i:1675780441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78fc4d9ca1e031f16b2bf35444f15c02da331cb1', '31.222.203.2', 1675780441, '__ci_last_regenerate|i:1675780441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485d06b09cbdaa505a93d8fc412b76dcfb99e040', '31.222.203.2', 1675780441, '__ci_last_regenerate|i:1675780441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49e528bed654e2b0fece896a1a76fd96399354a7', '31.222.203.2', 1675780443, '__ci_last_regenerate|i:1675780443;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8233b044d3ed64169c699acc623e3903c6834933', '31.222.203.2', 1675780443, '__ci_last_regenerate|i:1675780443;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d146ba912e54a5da8ba3b7c4bed7a0b177e58e', '31.222.203.2', 1675780443, '__ci_last_regenerate|i:1675780443;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898c76728dd64c5ec6b3e93cf1b70a79da17b446', '45.120.39.89', 1675780577, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675780464;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675753115\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675780577;register_id|s:3:\"335\";cash_in_hand|s:9:\"2910.0000\";register_open_time|s:19:\"2023-02-07 20:36:11\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794ffc85fda28638ff07e8dd3a3deca7a42ef5a2', '31.222.203.2', 1675782316, '__ci_last_regenerate|i:1675782316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027e810f0e169557c3fad5abfbb098f33a4f11ee', '31.222.203.2', 1675782317, '__ci_last_regenerate|i:1675782317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a2bf505c50e35065f0b5022d4f9449ecd6f01d', '31.222.203.2', 1675782317, '__ci_last_regenerate|i:1675782317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf0dbbb7e2ad2f93df97fff7cfb69e1db5dc1bd', '31.222.203.2', 1675782317, '__ci_last_regenerate|i:1675782317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2811f65ae18d06aff91266e812ff104fe9f33da', '31.222.203.2', 1675782317, '__ci_last_regenerate|i:1675782317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef05730465fda90647653bc24ce9043fa6d0289d', '31.222.203.2', 1675782317, '__ci_last_regenerate|i:1675782317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e72e9d22cc9f62a0f8fb8f329c1300be1fc692', '172.105.247.100', 1675783819, '__ci_last_regenerate|i:1675783819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483367de696e47409aa81957e09499b42281903b', '172.105.247.100', 1675783819, '__ci_last_regenerate|i:1675783819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4453da149f4ac88187119dbe4fc18700d77b21ce', '172.105.247.100', 1675783819, '__ci_last_regenerate|i:1675783819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73100bfe6515198f878b272706917d67f354afb1', '172.105.247.100', 1675783820, '__ci_last_regenerate|i:1675783820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149e2f68854e40535a6c670b697624bb962b8067', '172.105.247.100', 1675783820, '__ci_last_regenerate|i:1675783820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67f69aa795794b2bf4d028cd19100dd78cefa90c', '172.105.247.100', 1675783820, '__ci_last_regenerate|i:1675783820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea4cef3e0f65d5a171ddca5b2ebeeb7020b7ca6b', '172.105.247.100', 1675783821, '__ci_last_regenerate|i:1675783821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac162e462cf5714a356ebc99185db0ee51f5ed1c', '172.105.247.100', 1675783821, '__ci_last_regenerate|i:1675783821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2c3a373ec88c644a45ac7e145ee511b34eb4f7', '172.105.247.100', 1675783821, '__ci_last_regenerate|i:1675783821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a17cccf8e70ab27040f1e34f704a880441fd608d', '172.105.247.100', 1675783821, '__ci_last_regenerate|i:1675783821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e970f4be36a229a3d41b571c373305d7270f81d0', '172.105.247.100', 1675783822, '__ci_last_regenerate|i:1675783822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20685c642e9e52b703d9c988471a8cf87095b1e', '172.105.247.100', 1675783822, '__ci_last_regenerate|i:1675783822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68aacc63b3247c03f602c035c60b7e56454f7c3', '172.105.247.100', 1675783823, '__ci_last_regenerate|i:1675783823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0dc43c7486e0847b443099cee8202a27f0213db', '172.105.247.100', 1675783824, '__ci_last_regenerate|i:1675783823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb1f186cfe8e86d8c72a49b4a6f6c82f62d4565', '172.105.247.100', 1675783824, '__ci_last_regenerate|i:1675783824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ccdd68a427ca9357df348edf5b7127aed2553f', '172.105.247.100', 1675783824, '__ci_last_regenerate|i:1675783824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b23963859532ccd6efdbf70ad74a3216434e123a', '172.105.247.100', 1675783824, '__ci_last_regenerate|i:1675783824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcdb4bd9ccc4d6f2dbf73abb0f5e7e7b96d118e', '172.105.247.100', 1675783824, '__ci_last_regenerate|i:1675783824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e82b72750e4fcb5d8913b36e22f2210c3fa93c', '172.105.247.100', 1675783825, '__ci_last_regenerate|i:1675783825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425ebb984e208d26fb44c6c31a0429762de58c14', '172.105.247.100', 1675783825, '__ci_last_regenerate|i:1675783825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7733d92a04202be0688e9a32785571738fc94ae9', '172.105.247.100', 1675783825, '__ci_last_regenerate|i:1675783825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bee159adedb4072d08330f1ac98aef8b3d0790', '172.105.247.100', 1675783826, '__ci_last_regenerate|i:1675783825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ee84b5ab8369414cfa1288e50f2c24867d4d4b', '172.105.247.100', 1675783826, '__ci_last_regenerate|i:1675783826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('117bb9c9e24b4f54cdeb3bb20c7371b247a41c21', '172.105.247.100', 1675783826, '__ci_last_regenerate|i:1675783826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d255768f3c640b387ef3e00ad82001727ca67d30', '34.243.132.233', 1675785464, '__ci_last_regenerate|i:1675785464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c7053969e1dfa996881a7a44f17132b1d0149d', '31.222.203.2', 1675785857, '__ci_last_regenerate|i:1675785857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27869e06046a4d36be290b538955d4fca38603ae', '31.222.203.2', 1675785857, '__ci_last_regenerate|i:1675785857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7343123b044edb4ea4956b3efb1acb3a8dd367', '31.222.203.2', 1675785857, '__ci_last_regenerate|i:1675785857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec61ee0d4bb476f33ee9c1a181b9973dc05d05e1', '31.222.203.2', 1675785857, '__ci_last_regenerate|i:1675785857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('500867c20edac2609e1a50c5ad78a4492e2e1bfe', '31.222.203.2', 1675785857, '__ci_last_regenerate|i:1675785857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32a03e8ae900ddc84fe66d160ca6e5d9189db282', '31.222.203.2', 1675785857, '__ci_last_regenerate|i:1675785857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb7d3cb459dec49cb04876908efa1f31212fff7', '172.105.247.100', 1675788019, '__ci_last_regenerate|i:1675788019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfa0fd42f58e899de052a0eebb46ff036350233', '172.105.247.100', 1675788019, '__ci_last_regenerate|i:1675788019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50ad8249ba5f87de2c41846a0e3febd255b1865', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5441836c9d4d42282319c977b4406a300b7b9abc', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53d4f62421de789d62065d286db54e3944d3a35', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3b2f014f4791dd3ea1caf4e866edfbe51656ea', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa34e6d8bf34689acc4ef36628081279998dda42', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dfa37a64974f58072c5b6bae18ec8fcefc0fd5b', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4bd9048f48ff3815eabd793fe33a118e12c198', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39781e2d206a5ec2a96cc228460cfd189116748', '172.105.247.100', 1675788020, '__ci_last_regenerate|i:1675788020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63dee9f987230aecd5b093e38bc70fa2b882f1b9', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb0d7f909c91ed0567131a90074b2455965fb3e', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9367a1726950126bc0ed5ed3290e807a84a13921', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510f75e02ec1bed32bd95f34d11c8319fb0fd36c', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb0c915b37d70549ab62b351401f01bfc2b40462', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515872efdba05d9a7bef1f6aa914b4b6e2772d96', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bf2c305ed2b2f75e174d28bfc5cd6bdaa91a43', '172.105.247.100', 1675788021, '__ci_last_regenerate|i:1675788021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4aadcd7e45d7da3880ddccd46ae3a1ea038c1ee', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9492e944c70b39b5930259ede9f5af5252d1d34d', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668abc33001d441ddcd2867eedddbb938cd27acf', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a56f210f10411d5a2fb9c0fabfccdff6ff58668', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f578f5b0c0e662a448e55c975c0f862cb564b4d', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b9a39cb9d0dce4a85306e33e2d020a0c254fb8', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029544d8fa47dcb8c146d6045a8a588232df0a78', '172.105.247.100', 1675788022, '__ci_last_regenerate|i:1675788022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6ffe363425d59803a3f8bb6a603d6296485786', '205.185.116.89', 1675789599, '__ci_last_regenerate|i:1675789599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c9603f73a0a349056389b4124b21e2ea8f8f7b', '205.185.116.89', 1675789600, '__ci_last_regenerate|i:1675789600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e23a26b3af822b415140c0dbfa0ca8785608b0', '205.185.116.89', 1675789601, '__ci_last_regenerate|i:1675789601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042eb2a71a7d4198443aa2de0cb571e82e75fd48', '172.105.247.100', 1675792220, '__ci_last_regenerate|i:1675792220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cd63da82ac760fc80a914162adf1fc3818e739', '172.105.247.100', 1675792222, '__ci_last_regenerate|i:1675792222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27cc1787f7449926a0d8046fb7e7484de1712b37', '172.105.247.100', 1675792222, '__ci_last_regenerate|i:1675792222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb9c47b25ae69b89b0ade1ab1a8a6e1593b8138', '172.105.247.100', 1675792222, '__ci_last_regenerate|i:1675792222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10418ae741bbf4a19c1f450fe76d602b87eb7cea', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584bc33751d53e440c574ea0b24b34fb73572e98', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a339ae0e3fbaab1642f70a7f64407cfc43518b7', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a8654c23b7917eadab7c187361dc12d020cbf3', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e8577f96e09cc74dcbb069a48c73eb22d83e1e', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8dea27fc6dc2544bb7ec6d11a47915fbe3ba88', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2745e2d037b9102eeac3a363481175626efe90e2', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537dd49d21f2fefce0ee038a555af232de3052ad', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2df8b5fb2f00a08430dd461eb74ac8a1e3ff0fc', '172.105.247.100', 1675792223, '__ci_last_regenerate|i:1675792223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b760c91fa89a3e868c2798058df4ebb8e061fd2b', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342b899b7c963f141e627869ce9c85f523c30586', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3783c9af903c72667323414105002e630325dd', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ebd7dfb929d06c955f23657fdd34c7cf0883131', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c013c0d09fad09b808afe0f02682f44d67412f93', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeaf47800a9ca1fbcf8383a6ff069b85838e3817', '172.105.247.100', 1675792224, '__ci_last_regenerate|i:1675792224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28c139320753200d49bece7ca80d2c55fd32fd4', '172.105.247.100', 1675792225, '__ci_last_regenerate|i:1675792225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c3e881751ff49704b15d443f6f16c146c91da1', '172.105.247.100', 1675792225, '__ci_last_regenerate|i:1675792225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2bac6065373e58d4eee198d955e858633cbc13', '172.105.247.100', 1675792225, '__ci_last_regenerate|i:1675792225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e68250fd9bb9cf41f0a85660f16ac2286e8a352', '172.105.247.100', 1675792225, '__ci_last_regenerate|i:1675792225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2748d6594aaf2ffbfa6fa04044aa346d2a0030', '172.105.247.100', 1675792225, '__ci_last_regenerate|i:1675792225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88db9de67ee246892700ed6c323b5faf7ff01f8', '31.222.203.2', 1675792951, '__ci_last_regenerate|i:1675792951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6af960aa3c4ac32c5ffaed1ac03188bcde70013', '31.222.203.2', 1675792951, '__ci_last_regenerate|i:1675792951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023171c25a10284c5cd62b38e3be44e3337547db', '31.222.203.2', 1675792951, '__ci_last_regenerate|i:1675792951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83489a0e0561dadea88d44a5c6ba976d619fd15', '31.222.203.2', 1675792951, '__ci_last_regenerate|i:1675792951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d025193068a866926dab69644d31f1e79accf5', '31.222.203.2', 1675792951, '__ci_last_regenerate|i:1675792951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54be0429913aa88b1a723c80a30e5aa39581ebbe', '31.222.203.2', 1675792951, '__ci_last_regenerate|i:1675792951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eadd0e8ef47eeaff14c23dcdecde55eed26dc3fb', '31.222.203.2', 1675794838, '__ci_last_regenerate|i:1675794838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50cf97b1400a72c4115225d4764820f70be5ef7', '31.222.203.2', 1675794838, '__ci_last_regenerate|i:1675794838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('945e240796c562aaa03e0bbb94f6a1dc6af07139', '31.222.203.2', 1675794838, '__ci_last_regenerate|i:1675794838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ec68424bb279907740d67162f6ea64f762f394', '31.222.203.2', 1675794838, '__ci_last_regenerate|i:1675794838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76e0111065b1841c011853a841bb006ac7d2f01', '31.222.203.2', 1675794838, '__ci_last_regenerate|i:1675794838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e3063bc3b103ee01feca338fabed07d6a265ef', '31.222.203.2', 1675794838, '__ci_last_regenerate|i:1675794838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da06bd35254a1e62d1e2c5d352493b2a7462052', '172.105.247.100', 1675797625, '__ci_last_regenerate|i:1675797625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace1a3deaa1ae04c72806b1abed3af50585607e4', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94dbdc9fa96b97c420f79fc3859e519473d9ed2a', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c850927ce4d9ab1fc433ecd9a23eb2061d99616', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff0efe76b63680b130a41125525f1883378f828', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ebb45027ea948297e0299548a4722a14076625', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f6caa0c668d512fe9820e68e6f161e58254358', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea63f0b295f30de1e6631d6d0e0401df8eb3bf41', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0aa51494023507b0a8fb266b42f29df713c37a', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7763e8a4c9feda500fec90c89a09d1fedf1322c', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a225dd22af011eef3004657eaceeb55e1d1949ff', '172.105.247.100', 1675797626, '__ci_last_regenerate|i:1675797626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161a2b91c6d6b13dcda509bf31c1fee41bd62d5d', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3ab2bc37624c1b0d3bd556923cfec51c0d0695', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33490462c2cf711b9a7dd37a9e9eff630a9b27a', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400da3f9d463c0e76d38ab6c6bb954b676fe388a', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5ac7cff6f94c62cd6d0f47ce3c1cf1207879fe', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('492dcf17f288c4abde29bf09bbca084a4653b310', '172.105.247.100', 1675797627, '__ci_last_regenerate|i:1675797627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a95cff0cc92c25d03c2132ed4968a6b9138772', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b0a857f77b7c1b4168ab730d4b8def7d560564', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a28c3c8381a1c69df3e7155892e0c59a6197886', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36060d34ec931c89e7a4d35ec9ac19b2e6598b6c', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0ce3d20d9e94258ce984ddd4fa4c869225ef5e', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb4cea3d7108077df96762b8a30efc2b5cd8259', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49ec3f6f6d3265737f5c586bd4901d5d5eb8e09f', '172.105.247.100', 1675797628, '__ci_last_regenerate|i:1675797628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41287ffe6c196c32c90cc6d01a85736eeabb5d43', '31.222.203.2', 1675800254, '__ci_last_regenerate|i:1675800254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5541bacfaa1c5f08da5858a2216089b482137492', '31.222.203.2', 1675800254, '__ci_last_regenerate|i:1675800254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793511b552d64e5592dc15f16f24233ee34987f2', '31.222.203.2', 1675800254, '__ci_last_regenerate|i:1675800254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49dd1d9f531f9e01639e5c1f0dace1ae5e101792', '31.222.203.2', 1675800254, '__ci_last_regenerate|i:1675800254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b077c9166e16f4616b3129e7a17461c1fb7d89c7', '31.222.203.2', 1675800254, '__ci_last_regenerate|i:1675800254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9f8959cdaf23b7d0314f84c7178518cc6c42ac', '31.222.203.2', 1675800254, '__ci_last_regenerate|i:1675800254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12bcd9a1ea681d253f9ac957fd06f6ed16f01728', '172.105.247.100', 1675802418, '__ci_last_regenerate|i:1675802418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed60ec315ec822557717a68bfccfbda331b32d8', '172.105.247.100', 1675802418, '__ci_last_regenerate|i:1675802418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db07589c91afe6bd247d8d767e1dd7efd2fd45d0', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27abf34cbdd5feb3303518218dc43c19d083e148', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898af67727684ea7f3466948874b29dd8774a268', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b067c44a14d121701ce93e4ac0b7c463fd2cb5be', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff386fce24239244ce5e6d0e3d43124cc161810d', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3294730054ff769f4453d020c942a21f4c02848b', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1738e275a31243c5e64aa22e1e7621f0b76e63c7', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a455096941aad83c878c2fa976d6d08fc04f57e2', '172.105.247.100', 1675802419, '__ci_last_regenerate|i:1675802419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d4ee55e6d29fa17a009467d56b4ec62df2414e', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9bcca74f54b128e4a50eae4bc45619922a1803', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cfffffdad4f78a731d98518c1b5a843e88aa02', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe0d0ea29aa5b016a781b8819110f3e690c2e41', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598619d9c2f31c2edb285715543767e9dac2d55e', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9e2a81fad0d300f718bfc1cbf3879e1178d989', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ea6682dafb3a66e42772a53bc0ed5e4bbc3efe8', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5763a55696b9d5b57e3e5186e4fa7776bc3fbba', '172.105.247.100', 1675802420, '__ci_last_regenerate|i:1675802420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d03f3fac2c8eac8e630cea1659e7dfdd453589', '172.105.247.100', 1675802421, '__ci_last_regenerate|i:1675802421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ba846082ac6beec11ab093ea8a758f497cea696', '172.105.247.100', 1675802421, '__ci_last_regenerate|i:1675802421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2413ca8c96da89e76cc08bc30741dbec7c3a5f', '172.105.247.100', 1675802421, '__ci_last_regenerate|i:1675802421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26d67794832b102b89c6846614c73813b74926a', '172.105.247.100', 1675802421, '__ci_last_regenerate|i:1675802421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24cba284e476b5dda4170175a9e029e838cefc17', '172.105.247.100', 1675802421, '__ci_last_regenerate|i:1675802421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0a59cc3e02b3b640da31c6444fef91adcd7447', '172.105.247.100', 1675802421, '__ci_last_regenerate|i:1675802421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb151ff48f966fe5ffffb4c9822e1cc21cfa31a', '104.168.35.234', 1675805955, '__ci_last_regenerate|i:1675805955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e260cae18cfb14abf8697839fd4e1a49ccf85b', '104.168.35.234', 1675805958, '__ci_last_regenerate|i:1675805958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab0986f3038239b8bfd0eccfd0df1e45c34d33e', '104.168.35.234', 1675805959, '__ci_last_regenerate|i:1675805959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7016501effdcaa77c70930595cb0b55db61a132e', '172.105.247.100', 1675807220, '__ci_last_regenerate|i:1675807220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a8f0d62edf34768e2046d40637d3ce81d272ae', '172.105.247.100', 1675807220, '__ci_last_regenerate|i:1675807220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24043cdc86c970cec4538522ac81b06a4aa46a23', '172.105.247.100', 1675807221, '__ci_last_regenerate|i:1675807221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cb563fe4e50d23a2f99b0848f1f823c98184d30', '172.105.247.100', 1675807221, '__ci_last_regenerate|i:1675807221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587f1a8a84a988cc76a34d4f75a3239997fbfc67', '172.105.247.100', 1675807221, '__ci_last_regenerate|i:1675807221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea22b8db7e5830a54e60494b8483628d8bf8c3a', '172.105.247.100', 1675807221, '__ci_last_regenerate|i:1675807221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f6ff48759402f34e73b0d5ff72e319d34b1afc', '172.105.247.100', 1675807222, '__ci_last_regenerate|i:1675807222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce1695abca059d3bdc29464abdbb21e605b0e71', '172.105.247.100', 1675807222, '__ci_last_regenerate|i:1675807222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef52a750d9e176f8faf815803cbe8e611db5bb1f', '172.105.247.100', 1675807222, '__ci_last_regenerate|i:1675807222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919a68504b0bc1ae385f6205ac7349ce88f717ce', '172.105.247.100', 1675807222, '__ci_last_regenerate|i:1675807222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff16f27b5237a4f7dbb0403a070e54b1096407e2', '172.105.247.100', 1675807222, '__ci_last_regenerate|i:1675807222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f115e764fd4ad43327ed1fc3a7b05fc723ae95', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd698b432f5d2d400eca6c9452b3e7e04b4e363', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b2445e241acd26bd2e7e0bfc5e7fd1425905e7b', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9041dcafa34040af5d6e7b9c3df5310632b5ec88', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30e165d432d6ac931aec71ac3957483518b94b7', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb245305ec3f5b94670d7c93d9c0c014d87797d', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd2660d1083c3acc38f8abbc67c7702bb203fc6', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1599615d640d2dd6eb032b8e1cbc5b174e327d15', '172.105.247.100', 1675807223, '__ci_last_regenerate|i:1675807223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524ec40f6080652d3e50b8b88a3f008784823c46', '172.105.247.100', 1675807224, '__ci_last_regenerate|i:1675807223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163cc7d49534c4e79fbf7c29115065c0d1b6e315', '172.105.247.100', 1675807224, '__ci_last_regenerate|i:1675807224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d410e293f164d09d3e99bd00d64a34cf066f5076', '172.105.247.100', 1675807224, '__ci_last_regenerate|i:1675807224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c253eb2f119ca89346f9396f9da2ec084a75307', '172.105.247.100', 1675807224, '__ci_last_regenerate|i:1675807224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185c047dc1845c349900237ff517843977df4119', '172.105.247.100', 1675807225, '__ci_last_regenerate|i:1675807225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8609f55f0177f16243393cdd2ef0616b9ff74320', '31.222.203.2', 1675807348, '__ci_last_regenerate|i:1675807348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2ae2cb852a7162791c138b5bed27315e0fc8b12', '31.222.203.2', 1675807348, '__ci_last_regenerate|i:1675807348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46854c36ab1f0eb360f274a7bcca596797985734', '31.222.203.2', 1675807348, '__ci_last_regenerate|i:1675807348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62251fc9432fa15800a507f1d19c7c7c67be6ad0', '31.222.203.2', 1675807350, '__ci_last_regenerate|i:1675807350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59fe3d805324cb4130b41bd4086f7fd413502508', '31.222.203.2', 1675807350, '__ci_last_regenerate|i:1675807350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54561e88fee752a25a2ff60f9dc7696c3c6cfe1', '31.222.203.2', 1675807350, '__ci_last_regenerate|i:1675807350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5b1930c55eedb97cbbb4d769c6763dd3fc1eb2', '31.222.203.2', 1675809237, '__ci_last_regenerate|i:1675809237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8593c0c83187c785a027bf42a9aa5095ff9503', '31.222.203.2', 1675809239, '__ci_last_regenerate|i:1675809239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbb685af924e1a625075ce3ddf5aba07c606d35', '31.222.203.2', 1675809239, '__ci_last_regenerate|i:1675809239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b22fadba83376942ddd631c98b7b8e67975abd', '31.222.203.2', 1675809239, '__ci_last_regenerate|i:1675809239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85dc343d96d91a1d4002863e7567821cecc9cd7a', '31.222.203.2', 1675809239, '__ci_last_regenerate|i:1675809239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a9176483e6ab0d1608dd08245597ebefa43809', '31.222.203.2', 1675809239, '__ci_last_regenerate|i:1675809239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddddf49c2ef1e6db2547095853b59abd04f30c11', '172.105.247.100', 1675812021, '__ci_last_regenerate|i:1675812021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff00a86a764eed3b509c1744533d7ce50cdc8c00', '172.105.247.100', 1675812021, '__ci_last_regenerate|i:1675812021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0344b37b3c99834e4a4537fb3b9138b385cfd568', '172.105.247.100', 1675812021, '__ci_last_regenerate|i:1675812021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25829f812acb5bb9335894a4b5daf52ba54a0bda', '172.105.247.100', 1675812021, '__ci_last_regenerate|i:1675812021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c30cae30d31babdedc419f53ed47fbfb70dd3521', '172.105.247.100', 1675812021, '__ci_last_regenerate|i:1675812021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2826a3f48f13144f6070a3a2646825d842dba91', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353925a642a2b7aeb598f6010b0341d0cb6efbd3', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856604a4c46d3dcc2c19fcfecfa59d22eb45619f', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2166194af729dc643dda6281eefc4715b1c9f2e8', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ac284f4c4d7dbc615b7bf64678e7169e9a5634', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f716d16dae7c02e5c9bd2fadaecc6bbd4392d4', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2be7a97a6010e9cb353930511f2b93b0b676a9', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d4b9dc8a5a49bb86ecd6cbcdf15678900537de', '172.105.247.100', 1675812022, '__ci_last_regenerate|i:1675812022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('997c980b58a7f2f0c2b14fdd59ef9c72bbc40d43', '172.105.247.100', 1675812023, '__ci_last_regenerate|i:1675812023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51611ae98a78b746355ef4e322190a4c257f1364', '172.105.247.100', 1675812023, '__ci_last_regenerate|i:1675812023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8ca92eb0e8d2275775b94bf22ab34de08aedde', '172.105.247.100', 1675812023, '__ci_last_regenerate|i:1675812023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92576c2428954d1c9bb163bd0de7be5f2b73a1f', '172.105.247.100', 1675812023, '__ci_last_regenerate|i:1675812023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed62712fd044135e59bd69253731ab68cbebd23', '172.105.247.100', 1675812023, '__ci_last_regenerate|i:1675812023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669284e3fa1056878256028453f80b08bb6af794', '172.105.247.100', 1675812023, '__ci_last_regenerate|i:1675812023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9907b3b1f88042a6c4b8f52f9076546c5b9696', '172.105.247.100', 1675812024, '__ci_last_regenerate|i:1675812023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5adc0817623c7695d9094ac9fa822fa968b077b6', '172.105.247.100', 1675812024, '__ci_last_regenerate|i:1675812024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd71f39b734b6ef3219d7ebe42afeba32a21512', '172.105.247.100', 1675812024, '__ci_last_regenerate|i:1675812024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708ab337a420ff99977ea4819c7839ee124acef3', '172.105.247.100', 1675812024, '__ci_last_regenerate|i:1675812024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9ae2d33cc05905e1302e915a00355e064c26a7', '172.105.247.100', 1675812024, '__ci_last_regenerate|i:1675812024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee5d6ec6808f0ca5c4e9b9363c272b4cc7cc2f4', '31.222.203.2', 1675814564, '__ci_last_regenerate|i:1675814564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393f0e0174803fc1628dbaabae739f539fc0d784', '31.222.203.2', 1675814564, '__ci_last_regenerate|i:1675814564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d72ce9b7031228f75e902cb70983f67afcff5d', '31.222.203.2', 1675814564, '__ci_last_regenerate|i:1675814564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a42598293535b3c4ed6fa819817a3b71800c1e7', '31.222.203.2', 1675814566, '__ci_last_regenerate|i:1675814566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6130790119f9ff9010054245a7273ceae8beb39', '31.222.203.2', 1675814566, '__ci_last_regenerate|i:1675814566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ad59eaaf64934fa8d2f54adb65f46bb778d009', '31.222.203.2', 1675814566, '__ci_last_regenerate|i:1675814566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a0c521f2065af00156812a7634fa97817f9c0a', '31.222.203.2', 1675816439, '__ci_last_regenerate|i:1675816439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e025929900707add765a13a9d9f7d4f021d7ae89', '31.222.203.2', 1675816439, '__ci_last_regenerate|i:1675816439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02639887dc3865d633ca3ff4a112c8142a50b48', '31.222.203.2', 1675816439, '__ci_last_regenerate|i:1675816439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dff6da5b64da66cbcaef9d7ab5738c0461de325', '31.222.203.2', 1675816439, '__ci_last_regenerate|i:1675816439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ce254405c824fd9e868e697875ce174b039b50', '31.222.203.2', 1675816439, '__ci_last_regenerate|i:1675816439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e4712d253edce130e450365f4926f03d238968', '31.222.203.2', 1675816439, '__ci_last_regenerate|i:1675816439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a03ceaa604cbae41ddba5e5aec14e778bd9c54', '172.105.247.100', 1675816819, '__ci_last_regenerate|i:1675816819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39fdf369bae2fc7c7b9ddef71d01e90eb5cfd614', '172.105.247.100', 1675816819, '__ci_last_regenerate|i:1675816819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41ae80067fd3901c5813b4c1103392ebee507d43', '172.105.247.100', 1675816820, '__ci_last_regenerate|i:1675816820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71e720429f80897de31cd5ac1bca2229d0aaac3', '172.105.247.100', 1675816820, '__ci_last_regenerate|i:1675816820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f417cde5c2192e858642602d0b3f36a2e84fcb9', '172.105.247.100', 1675816820, '__ci_last_regenerate|i:1675816820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb5aa5a21b6f298188abd185300acd1d77dc71f', '172.105.247.100', 1675816820, '__ci_last_regenerate|i:1675816820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f61f5bbb1ffb741a5d5ae9f2f003f24dbf29eca', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296e661a50831abfb8ddec81a7c9e7d246a2dd7a', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba1c69941a366432169cbb1f853acc78908c1247', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ac023310bb8acf0b1dfab6cb7dd644fce6fc11', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032102e4f8056eb979f4112bda09c3031569e2c7', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('259c1a0a26c52d97c26bace819186cedb28f8d58', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d14b17ac990d998ad2343fa329ce500c061ff4', '172.105.247.100', 1675816821, '__ci_last_regenerate|i:1675816821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4557e3357b54d02641f1e9320399082227919ca', '172.105.247.100', 1675816822, '__ci_last_regenerate|i:1675816822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40aaedd791a9150b2f98f49ab6edeba0b3f87d8b', '172.105.247.100', 1675816822, '__ci_last_regenerate|i:1675816822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a6ea57284d5494eda1e5b0e1f51afa0b5eb1b9', '172.105.247.100', 1675816822, '__ci_last_regenerate|i:1675816822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6271fa5f90a8f1d662b24b9e587c03e2869a9580', '172.105.247.100', 1675816822, '__ci_last_regenerate|i:1675816822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c900969f9be2144f860a5d0fd0504808b94a46', '172.105.247.100', 1675816822, '__ci_last_regenerate|i:1675816822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a6ac67f9c524ce816ab31af3d1d9a3987066070', '172.105.247.100', 1675816822, '__ci_last_regenerate|i:1675816822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb548d0afd0cc675b28c98f02ffbd0505fe1d66', '172.105.247.100', 1675816823, '__ci_last_regenerate|i:1675816823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73d9967e00a72793a64b561b47382c72d838b03', '172.105.247.100', 1675816823, '__ci_last_regenerate|i:1675816823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9329a0669745761d0f60527a194285b1b1b3e692', '172.105.247.100', 1675816823, '__ci_last_regenerate|i:1675816823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a642c0d91150263dac7fe2b5a1a17d2c5461bfa', '172.105.247.100', 1675816824, '__ci_last_regenerate|i:1675816824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8904a776c0c9745d3d89c42428340694313dc8', '172.105.247.100', 1675816824, '__ci_last_regenerate|i:1675816824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21cc42ad5b1ea738657eada1479ee1ad1103423', '198.235.24.42', 1675819655, '__ci_last_regenerate|i:1675819655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0363dc9239742164272c838a54b766e9122a081d', '172.105.247.100', 1675821021, '__ci_last_regenerate|i:1675821021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0273dee87707068ab14b2e0d179b848470682fac', '172.105.247.100', 1675821021, '__ci_last_regenerate|i:1675821021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f27f0e78b8c4f3283367e3c963a11efcf2044b', '172.105.247.100', 1675821021, '__ci_last_regenerate|i:1675821021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('286b3806b47e26beee646ec6a9426bd494c99c3f', '172.105.247.100', 1675821021, '__ci_last_regenerate|i:1675821021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c75bdb07c1df1e5f2a491e1543df0f8bc217e3', '172.105.247.100', 1675821021, '__ci_last_regenerate|i:1675821021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da30a3b65daed30146cedf8eaf467d2308a97627', '172.105.247.100', 1675821021, '__ci_last_regenerate|i:1675821021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c373f382b70f2eaa2604de8ffb12dc36ead3dc7c', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d81dd3e8e6e55e20fad39a38bd764908cb971fe', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312cc89a5e33f8974f5aec3ca7a6a1b030d3e05c', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384a934d4dc4a418da5ec5194e9bb57f3d08a8ae', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f653dabe26f83854ff881c2804b00ea612356f6', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6af0b77dd941271f99b6af17cb69ec0a0341cf1', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('028996606914f621cf43a907bfa85d3834e4e0e1', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f33dd01a8829ab7317b87aeef38608b925fc54a6', '172.105.247.100', 1675821022, '__ci_last_regenerate|i:1675821022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb030c65f3097f447903d7f2069087326560879', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3109911d50e4ddb88d18a35b4d29f42dd301efb2', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537eb7678f6f12e946ae29b06b3dacc17261528e', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f480516cb01a587765ab5b301235167c908fc355', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc8055a1e6f8e2a4658596808daeec7b6c4f97b', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20590f490c9862660bd57f33bf9bde6e40aaf51a', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3545660380981ac219332b935c6ce125e8b54e24', '172.105.247.100', 1675821023, '__ci_last_regenerate|i:1675821023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2798db1a7d385d92f4cc52f6c8b3015f9f16aa54', '172.105.247.100', 1675821024, '__ci_last_regenerate|i:1675821023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b7bd477aa1da5344a54b6683cfbf46c343d255', '172.105.247.100', 1675821024, '__ci_last_regenerate|i:1675821024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2639aeb30f76003ffd8da50b01773b15f6b5a7', '172.105.247.100', 1675821024, '__ci_last_regenerate|i:1675821024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5315ab15fb243e98245704e5bad225afdc1fb8da', '31.222.203.2', 1675823625, '__ci_last_regenerate|i:1675823625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe00241c0e9c07fa68c948194b54149cc59cda65', '31.222.203.2', 1675823625, '__ci_last_regenerate|i:1675823625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9b76842d36252ce1fbd4a6983977630b23ae79', '31.222.203.2', 1675823625, '__ci_last_regenerate|i:1675823625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0e029b7c2b4fbfa9c1387a713a161fadf8effb', '31.222.203.2', 1675823627, '__ci_last_regenerate|i:1675823627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efff9300e0308ea65337bc29a0eed38cd081b778', '31.222.203.2', 1675823627, '__ci_last_regenerate|i:1675823627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebc233ee96a768e18ae5ead2eefc2f4f4a3e645', '31.222.203.2', 1675823627, '__ci_last_regenerate|i:1675823627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0350ccc3264aa43f33d58fc1ec4cafbaaf0e0b15', '31.222.203.2', 1675825457, '__ci_last_regenerate|i:1675825457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f80a7f91021821a908e35a415302973f24e82e1', '31.222.203.2', 1675825457, '__ci_last_regenerate|i:1675825457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d41e702ccb8c21ec8f018534d4315aec67a8e6', '31.222.203.2', 1675825457, '__ci_last_regenerate|i:1675825457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f682177fe7f2ea0c082cf067c6ae4ad657a0709', '31.222.203.2', 1675825459, '__ci_last_regenerate|i:1675825459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ad26cffad8f168b9ba135f25ea9f3a692e207d', '31.222.203.2', 1675825459, '__ci_last_regenerate|i:1675825459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eecfee64926115e15f5eb78c8a71ddeeb36989b', '31.222.203.2', 1675825459, '__ci_last_regenerate|i:1675825459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c498860ea899de24a94af1766725c9f7660ac3b6', '172.105.247.100', 1675826418, '__ci_last_regenerate|i:1675826418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ccb07f5ecc3b57ed3f998655aa94f83d413fce5', '172.105.247.100', 1675826419, '__ci_last_regenerate|i:1675826419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf994bc0f49c970ea6b673a68466d0025e8c73f', '172.105.247.100', 1675826419, '__ci_last_regenerate|i:1675826419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc19ebc27a92ee1080b0e985ee1ef302fac9b66', '172.105.247.100', 1675826419, '__ci_last_regenerate|i:1675826419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4572f436b138f1f76e3a5b10a64ddf18101857', '172.105.247.100', 1675826419, '__ci_last_regenerate|i:1675826419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d7659ab9fd9fb159f676c634b3d302ec80e15d', '172.105.247.100', 1675826420, '__ci_last_regenerate|i:1675826420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a83593146a30c896d42abcd1e23dd3ed46ae258c', '172.105.247.100', 1675826420, '__ci_last_regenerate|i:1675826420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fb7cc296a913af064b82d8f3652540d985f7b9', '172.105.247.100', 1675826420, '__ci_last_regenerate|i:1675826420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63209aed44b9228ec80075e9f5e760223858388', '172.105.247.100', 1675826420, '__ci_last_regenerate|i:1675826420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2473e8423d0c7fbee04f968b677ee12e9a4897b7', '172.105.247.100', 1675826421, '__ci_last_regenerate|i:1675826421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39249b9963ee8cd90cf88680af46f1ffff49164', '172.105.247.100', 1675826421, '__ci_last_regenerate|i:1675826421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fce9e61a91c5d6b76220ba7797df8616931a502', '172.105.247.100', 1675826421, '__ci_last_regenerate|i:1675826421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53cd6c9af9687a79e31fb0368c863bdc813be17d', '172.105.247.100', 1675826421, '__ci_last_regenerate|i:1675826421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca10875c81e823af642acafe4383300cc1f7e47', '172.105.247.100', 1675826421, '__ci_last_regenerate|i:1675826421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b4a0962be8fe0a24afa04a99c64d18ee428026', '172.105.247.100', 1675826421, '__ci_last_regenerate|i:1675826421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ef2951c9ad501f9420703224dde8878f7b003a', '172.105.247.100', 1675826422, '__ci_last_regenerate|i:1675826421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39ee66a60663e67b5161ea852d0e90069e0ab53', '172.105.247.100', 1675826422, '__ci_last_regenerate|i:1675826422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046f06dbab740c690327d1f9d8c8e8b4a85f5941', '172.105.247.100', 1675826422, '__ci_last_regenerate|i:1675826422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1daf9e3592bbc5bfd501d3b1fced0e350497b0f7', '172.105.247.100', 1675826422, '__ci_last_regenerate|i:1675826422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d2ecb4c4663dcbf680b486b556e17319bce488', '172.105.247.100', 1675826423, '__ci_last_regenerate|i:1675826423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517cbf96707b25375885dd84dbacadde0d58f20a', '172.105.247.100', 1675826423, '__ci_last_regenerate|i:1675826423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39b2be86c0ddaed21f394d44a614d820f198d76', '172.105.247.100', 1675826423, '__ci_last_regenerate|i:1675826423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8292b3e9692b7745f5888bf3be704b7d56d2b16a', '172.105.247.100', 1675826423, '__ci_last_regenerate|i:1675826423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c58fa5ec21034b0959dd76a201d1013e72dade', '172.105.247.100', 1675826424, '__ci_last_regenerate|i:1675826424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6feba737f37ab32093def2c3578493414c90b2f5', '205.210.31.52', 1675828002, '__ci_last_regenerate|i:1675828002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34cdd86f7d380ae32462c1b601fc6f6596277580', '31.222.203.2', 1675830747, '__ci_last_regenerate|i:1675830747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9800fa00bcf9397cfd26f14b0a844367aa07daf', '31.222.203.2', 1675830747, '__ci_last_regenerate|i:1675830747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abce106512402ce571ca8dd44fb1cd7f16a3379', '31.222.203.2', 1675830747, '__ci_last_regenerate|i:1675830747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54600a8cf6acc63aee1d5ba54d76b13a47aa9054', '31.222.203.2', 1675830749, '__ci_last_regenerate|i:1675830749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8225f3385af687915f1bad128dbcf85269b425ee', '31.222.203.2', 1675830749, '__ci_last_regenerate|i:1675830749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba3b17e34af2e5bae323620c66aae013062d222', '31.222.203.2', 1675830749, '__ci_last_regenerate|i:1675830749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d73e92fce3a76451c5184812c68b917594772a1', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce283b62f88a597af2f630615bfaea42ff3a315', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac5d55dba309fffa8a6600675f8f63663e6f066', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19accaf2bc5dc19d99376df4eed96cab8299809', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3caba4e69d99cca6c6f02165d503bc53635e399c', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446bfc2f1c40c7d57d9080807d320b3ec487fe8e', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3341d8f382676302e50f705498f218187355b7', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3967dcca30daad4c107d6fa3b085a0c26fbb6de5', '172.105.247.100', 1675831819, '__ci_last_regenerate|i:1675831819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df6244c16028b50ab034d5e7b4981f97c670a9f', '172.105.247.100', 1675831820, '__ci_last_regenerate|i:1675831820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6525c36eed3792c04934e863d0a82d1555b360d4', '172.105.247.100', 1675831820, '__ci_last_regenerate|i:1675831820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9acea2025eeec9175defb708c7ef64e54c71f8', '172.105.247.100', 1675831820, '__ci_last_regenerate|i:1675831820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('555192248512152ff132901f8a1ed44ba9c819fe', '172.105.247.100', 1675831820, '__ci_last_regenerate|i:1675831820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1d58f287a8f72d4d58428c71bdebf35dee011c', '172.105.247.100', 1675831820, '__ci_last_regenerate|i:1675831820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb1dc4af89cc7cc2c2baef8eddf14d04c232273', '172.105.247.100', 1675831820, '__ci_last_regenerate|i:1675831820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7a62e395145bd827e4c0788e11fdc0fc0ee86a', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2c25b201b1387a2e8f92b373fca909764c1eca', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e795915cfff09096a7a676df6a84eb2e189b96d7', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9041de35fddf650257ec855ef115c4010298d4e3', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41744f05fe751de2fb47a0c1aa399304e11e9e6', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e866c7c503b31944ab8bb2c590daaf0f85a7383', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad1f16c339b5613aa8cc7f78376cc4b4ceb5de9', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3315d83ecb28f849711c33b938af16943cc41163', '172.105.247.100', 1675831821, '__ci_last_regenerate|i:1675831821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2455e94bf74785557e357dc5e0f26208a143ed', '172.105.247.100', 1675831822, '__ci_last_regenerate|i:1675831822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d12ace4d5fc9a9bc88c9822b0917e32a75ac9a', '172.105.247.100', 1675831822, '__ci_last_regenerate|i:1675831822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3022ec1e26d0239741773d8f5a30d4a7bc454a15', '31.222.203.2', 1675832639, '__ci_last_regenerate|i:1675832639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd15567535dfb4d0c8e31b455e3995460be1acb', '31.222.203.2', 1675832641, '__ci_last_regenerate|i:1675832641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('861b378adb41c4d0fc034b269f6569c0b8f34d91', '31.222.203.2', 1675832641, '__ci_last_regenerate|i:1675832641;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c079a24a15cde67e6c249c5044261825e187d6', '31.222.203.2', 1675832641, '__ci_last_regenerate|i:1675832641;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5690205e95a527030c4318f019c7462900151c', '31.222.203.2', 1675832641, '__ci_last_regenerate|i:1675832641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3209a85dd7ca25e4f2e3876c501e771c226649c4', '31.222.203.2', 1675832641, '__ci_last_regenerate|i:1675832641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec882579c27e93c308e102123e159d5ebcbab401', '172.105.247.100', 1675836022, '__ci_last_regenerate|i:1675836022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef57e074793139fc3f6d3effd947085c76b5a8f', '172.105.247.100', 1675836025, '__ci_last_regenerate|i:1675836025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b59f772448b89cc341d514c6108642324fdd3f0d', '172.105.247.100', 1675836025, '__ci_last_regenerate|i:1675836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343aca0533e948dc35b56ffbde1efff8fd7721eb', '172.105.247.100', 1675836025, '__ci_last_regenerate|i:1675836025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca9609a3deae5c52cd06441ff198fe8757e209b', '172.105.247.100', 1675836025, '__ci_last_regenerate|i:1675836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d9491bee68b38aee760dd4708932bd328ba818', '172.105.247.100', 1675836025, '__ci_last_regenerate|i:1675836025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4643c7b7858a4b1b53da709d3bb049ce6d5074f6', '172.105.247.100', 1675836025, '__ci_last_regenerate|i:1675836025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5035a7e601d3228eec1368468382b0b6038a07c', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d752d18417c5f100ca223188cb2c9ee6c80cde14', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ce82ea967e84f255829e6301af8244b8401598', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0d009b1fa4bb4f2aca26d899ed471f0c8d9fc8', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3724359c493f2b4b3ab76683a0fede95217b39', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f72104c532543bb3e2f5d057a761bf019708caa', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5b4b9c161373cb84b18b1f7afb5c771f147b71', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8232db9c196296d564dd44a35c78af8729b7301e', '172.105.247.100', 1675836026, '__ci_last_regenerate|i:1675836026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d091cf69155c0a28029113ef38bf4776cca14c', '172.105.247.100', 1675836027, '__ci_last_regenerate|i:1675836027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b272447f4de616d7c679b19b0c0b4cfec08cb29', '172.105.247.100', 1675836027, '__ci_last_regenerate|i:1675836027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8660c085f02f66dbaba8f5f81ef79fe87624ff70', '172.105.247.100', 1675836027, '__ci_last_regenerate|i:1675836027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd6d6d66c53ea995d3130e3b5540f0d85fe367f3', '172.105.247.100', 1675836027, '__ci_last_regenerate|i:1675836027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002c3f40aea405aad25dc09374f650107155bd93', '172.105.247.100', 1675836027, '__ci_last_regenerate|i:1675836027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8cc41674bf42ff272989e40ee89a06d1d518648', '172.105.247.100', 1675836027, '__ci_last_regenerate|i:1675836027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c666f019ffb3de487da0501cf620545c193e0f02', '172.105.247.100', 1675836028, '__ci_last_regenerate|i:1675836027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40ea93b13117f0ba34f3505ad22a5fec6585d4c', '172.105.247.100', 1675836028, '__ci_last_regenerate|i:1675836028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9562744a4a2d3205daa6a36af4d2977d01deb5bb', '172.105.247.100', 1675836028, '__ci_last_regenerate|i:1675836028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad2c89711f0bd8940aecc116c24639cd7a888993', '31.222.203.2', 1675837947, '__ci_last_regenerate|i:1675837947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c61c0a03ff905e45324c859d2ac685cb832d1b8', '31.222.203.2', 1675837949, '__ci_last_regenerate|i:1675837949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5ec1d46ee366553f9f39e1a57bd0b73fddb2d9', '31.222.203.2', 1675837949, '__ci_last_regenerate|i:1675837949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e286c2fec3e1b55d074070ac049a6b53e792d571', '31.222.203.2', 1675837949, '__ci_last_regenerate|i:1675837949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006c55d7f7a14bc648f218e8250b17371cdad343', '31.222.203.2', 1675837949, '__ci_last_regenerate|i:1675837949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad29cd7041ca4c2463e01d7f65b2198a7c9cab36', '31.222.203.2', 1675837949, '__ci_last_regenerate|i:1675837949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277721b59f1a123c71768a747a5509d0ce07b02f', '31.222.203.2', 1675839841, '__ci_last_regenerate|i:1675839841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de0db9635bec677903af01295e531e90f3a050b', '31.222.203.2', 1675839841, '__ci_last_regenerate|i:1675839841;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26eda5b43f197dff761670bbb86ca09d62c029f', '31.222.203.2', 1675839841, '__ci_last_regenerate|i:1675839841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b65f68edad97f08f95ff1db4ea4bf2be3f80c1b', '31.222.203.2', 1675839841, '__ci_last_regenerate|i:1675839841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95398b920f9ff4e88bbb8fd7da3b10fa3de8a7c0', '31.222.203.2', 1675839841, '__ci_last_regenerate|i:1675839841;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fefbf4640321be29dca42b3b02f11a9cede544', '31.222.203.2', 1675839841, '__ci_last_regenerate|i:1675839841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728ae0b6be4ce025620eb0eafb87787c2e0ad38b', '172.105.247.100', 1675840824, '__ci_last_regenerate|i:1675840824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d31e3d740229e243d60d7f24088d28a034292ce', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c42dc500fe12383797973a39ec26492ac638546', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e903ad534cbd59fe61a566ed46977166f2d3f3f', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d3cd4af8bbc0efe13c920f7a06f32ad82e35c8', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c063d8dd3bcafd7ffd565cc8e544ba0766da3b34', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc92f6acdef659730b37d78fb2775925303a2f46', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af3fb7c61775f1a52fdfdee4832434418838e98', '172.105.247.100', 1675840825, '__ci_last_regenerate|i:1675840825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad9682429c45dcc95d70e1da3e042e2b7d3c9a0', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aca73551b496b9b50396200bb6e0d2a4c087a9c', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe232baf959244275690a55defe2863bfd30b9ca', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018086d92672aad0ac597d4936b57eeb61862da4', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90af1a2a940be544412e8cb9a4e12bc50723290', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c6687793b721fcf3bae97556ee8551598911a3', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488c2cb43298b5d8ac36b25946ef7106355ed175', '172.105.247.100', 1675840826, '__ci_last_regenerate|i:1675840826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82ce3bf28ef454768be1ecc1c4d9a816f6f6871b', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ca833103b5465b8a426415a52068c48136d634', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e01d250c4fe0a025afabbd58ba555a1eb0ca93', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d27c4aaf83b8e8cb592947cc8d9e90cf52270de3', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e87e7e3bcb4cb9bb22bbea800bf0bc5efa36e4d', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83372242f3d0fe7e37078169d3f321958eaf12ad', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6cc87f72efcd8701cf40089932a809114cb9e3', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5275086a7430b9eabe6d1584fa863ef07cbc2ef6', '172.105.247.100', 1675840827, '__ci_last_regenerate|i:1675840827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15e277cc46b1ca09831bebff00b11ac233bf98f', '172.105.247.100', 1675840828, '__ci_last_regenerate|i:1675840828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b5a41647e9652e5f5d9920b2fe7ad273ecc1185', '31.222.203.2', 1675841714, '__ci_last_regenerate|i:1675841714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe52dd21ad7313786306e0de9bdc53a50c4cb78c', '31.222.203.2', 1675841714, '__ci_last_regenerate|i:1675841714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f15e74fab9e8ec6cf8122f92d8a6e0b75b1c19d', '31.222.203.2', 1675841714, '__ci_last_regenerate|i:1675841714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144a84f3577e88668c3fdca437326fcfbfda3cd8', '31.222.203.2', 1675841716, '__ci_last_regenerate|i:1675841716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef9d272908c6361823b967a4eca8522d563c497', '31.222.203.2', 1675841716, '__ci_last_regenerate|i:1675841716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('166d7df9c66b0a515844c60fdc555284d01da74d', '31.222.203.2', 1675841716, '__ci_last_regenerate|i:1675841716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd42a1cbcb02728e2bae134d20a9554de9d6f825', '31.222.203.2', 1675845149, '__ci_last_regenerate|i:1675845149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0013929a06d3cef3cfb3fc977eb356bf435e9e16', '31.222.203.2', 1675845149, '__ci_last_regenerate|i:1675845149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f50bcd8a98228bd3f57dde67d75051077b5c8b', '31.222.203.2', 1675845149, '__ci_last_regenerate|i:1675845149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e47c6dd9625afdc8731163f26d34b921cdf87a', '31.222.203.2', 1675845151, '__ci_last_regenerate|i:1675845151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f573f0f905b6d6857c0006ee0310eff45a8423d', '31.222.203.2', 1675845151, '__ci_last_regenerate|i:1675845151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eccce7918a5f673bbcf27d103dc8d3b79fb4663', '31.222.203.2', 1675845151, '__ci_last_regenerate|i:1675845151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21ca58d3b734cc74ed5df1381a0e553052c1852', '198.235.24.9', 1675845562, '__ci_last_regenerate|i:1675845562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2cbc2dea2d6a3d646efde73530ab9726e2b6e7', '172.105.247.100', 1675845621, '__ci_last_regenerate|i:1675845621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68534ddb675b66ab2d313bf124f0d6032dbc7f52', '172.105.247.100', 1675845621, '__ci_last_regenerate|i:1675845621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d630a54e5a7a6549477fa9054ad629dbb5428f7', '172.105.247.100', 1675845621, '__ci_last_regenerate|i:1675845621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9fa76becaa454adfb94389872d61a5f30ad69b9', '172.105.247.100', 1675845622, '__ci_last_regenerate|i:1675845622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc11325193bf26319d9bac735ad4fe4cef318257', '172.105.247.100', 1675845622, '__ci_last_regenerate|i:1675845622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8440e8b138f38670edf96b34315a7ce6d75f3e52', '172.105.247.100', 1675845622, '__ci_last_regenerate|i:1675845622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b759173c5796431f58e01cc3a4312e99f3063ce8', '172.105.247.100', 1675845622, '__ci_last_regenerate|i:1675845622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d40a4ca97330c216d11aa3e1fddc0243a26fd5e', '172.105.247.100', 1675845623, '__ci_last_regenerate|i:1675845623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c88aa8e54f34d764fd74cac550ce98f13ae609e', '172.105.247.100', 1675845623, '__ci_last_regenerate|i:1675845623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e83d6306be5de85612dcead40bda4eaa1c70cef', '172.105.247.100', 1675845623, '__ci_last_regenerate|i:1675845623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1d912ad98c230c3c0897279ed6c63e2c22884d', '172.105.247.100', 1675845624, '__ci_last_regenerate|i:1675845624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0cf3f1388262ca1fa684b1861332d21c7603a8', '172.105.247.100', 1675845624, '__ci_last_regenerate|i:1675845624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffa7d797de83e8263dfe7f2e5b43fad63efa3ea2', '172.105.247.100', 1675845624, '__ci_last_regenerate|i:1675845624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3785355ff9308c17298b23ef36f62827444c9bf6', '172.105.247.100', 1675845624, '__ci_last_regenerate|i:1675845624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4596b760a412eebb1c644fbcc9643af54408c775', '172.105.247.100', 1675845624, '__ci_last_regenerate|i:1675845624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f23a8ff20e92c913ec76787e116bf418e085b8', '172.105.247.100', 1675845624, '__ci_last_regenerate|i:1675845624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cabefb477e3898981eb510a3d7a13b116946dbe', '172.105.247.100', 1675845625, '__ci_last_regenerate|i:1675845625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fa37238bbbfc93cda21eace4b5f76b26ab23be', '172.105.247.100', 1675845625, '__ci_last_regenerate|i:1675845625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d5ff4009ffcb8e753f4ee9aa9c31dd0d1e3cd8', '172.105.247.100', 1675845625, '__ci_last_regenerate|i:1675845625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('133304940d00f1c42718718bfb2fec2d1afefa93', '172.105.247.100', 1675845625, '__ci_last_regenerate|i:1675845625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d871b0f30c16513050a5597e8e7574a42eb086', '172.105.247.100', 1675845626, '__ci_last_regenerate|i:1675845626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394e0a877fe7744160b14d978b30e3f5f3b02485', '172.105.247.100', 1675845626, '__ci_last_regenerate|i:1675845626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5409677edd3c193ba0f14f051c8f497701892f', '172.105.247.100', 1675845626, '__ci_last_regenerate|i:1675845626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea927aff36061f7450d95b0c894d7e1172cb19d1', '172.105.247.100', 1675845627, '__ci_last_regenerate|i:1675845626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a0e5c00f9dfeb144129d5c756ca31fbd6349f7', '31.222.203.2', 1675847035, '__ci_last_regenerate|i:1675847035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ead3a9daa41ae5916d374cc56ae28f85b2fe8f1', '31.222.203.2', 1675847035, '__ci_last_regenerate|i:1675847035;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa7aadd793dbe3b1bde41a88d729b867bdfd57ad', '31.222.203.2', 1675847035, '__ci_last_regenerate|i:1675847035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33eb472cf0b18933d88011ea834eb70bdab5d7f', '31.222.203.2', 1675847036, '__ci_last_regenerate|i:1675847036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35fd8869873381699ce526fa00a1a95228cd3141', '31.222.203.2', 1675847036, '__ci_last_regenerate|i:1675847036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e9cb64fd941cd66a965adb9a66d81576199911', '31.222.203.2', 1675847036, '__ci_last_regenerate|i:1675847036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61690e5534335cce0f9fb7c0267f216987a0ef21', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7212feb734a3a6268d23073cf0fd7a1f2e2f8cb1', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1193d3d6cc3784a27da2f8b3bc8e6b13eb69502c', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2301ff9ff4b3d24d66ef7511683a38a354f029', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e32560aa10f17402f07814106f09c292f4e72d', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('046cb4eefbfc5a808e929ceb9c9b7d1d716374c9', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e8d2a13d378ca36a5e8a672f02fc078aa297ca', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f8b7cda2b321430fb9276aeb1d8f98f2f09314', '172.105.247.100', 1675849821, '__ci_last_regenerate|i:1675849821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039d535f6232a4c17eeef943321e98e28ea05f28', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe884c4a17e3b802011f05e8c50ac4cd6931b28', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d963176256d0e1e7dbc225330fab3997267bc40', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798e9ae33b5502dbb78e0e4d78262f62df55e717', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13184818b4bfb2ba6027ffa759b9b76f0d2d94ae', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('715c4276d2fa599f2e49f6a1ac4cd655c01535f0', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d99bafd5b8e67a2bc5d4c8554bd709b16b14b70a', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a4cd016005e163f5e6fba7e25469de926deacc', '172.105.247.100', 1675849822, '__ci_last_regenerate|i:1675849822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84fed683297c56fe42ec1fc0805058b7dbfbc518', '172.105.247.100', 1675849823, '__ci_last_regenerate|i:1675849823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f6c4a487e6ccbef5f3495ff317c6244674f1d9', '172.105.247.100', 1675849823, '__ci_last_regenerate|i:1675849823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3063f36fecced488ab9a2eb3280cc61a19182ee4', '172.105.247.100', 1675849823, '__ci_last_regenerate|i:1675849823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d350bf87cb0e057d8b8e92efffde761ca40ffa', '172.105.247.100', 1675849823, '__ci_last_regenerate|i:1675849823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044d2f933a92cacc6371346316f01b71681e49f3', '172.105.247.100', 1675849823, '__ci_last_regenerate|i:1675849823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22717a9f9556df2ff4dc84bd6374dd24ae34f65a', '172.105.247.100', 1675849823, '__ci_last_regenerate|i:1675849823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0f9e856527b83b04ab0d249e2be6d1754fc343', '172.105.247.100', 1675849824, '__ci_last_regenerate|i:1675849823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83c73f2a76c20bbfaf235d4db73d6e12fea3c3e', '172.105.247.100', 1675849824, '__ci_last_regenerate|i:1675849824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bcbf017aa87fb6c0b31ea98ba49d99f9e39e2ca', '45.120.39.89', 1675856684, '__ci_last_regenerate|i:1675856684;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675774357\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b7c3edbfcbbd356ef41f73880b2e1d86dba9711', '31.222.203.2', 1675852346, '__ci_last_regenerate|i:1675852346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73c19ae9b2f7ff2e918dc39654f6dbd7ea5a191', '31.222.203.2', 1675852347, '__ci_last_regenerate|i:1675852347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab62674abe8af2fc5230f4aa88ae7f2c8738f34', '31.222.203.2', 1675852347, '__ci_last_regenerate|i:1675852347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678071b7e702f5fe31680cf15ff4c39a441406a9', '31.222.203.2', 1675852347, '__ci_last_regenerate|i:1675852347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('392bbf8d968f46c36d02a649f3e2654dc2ed28e4', '31.222.203.2', 1675852347, '__ci_last_regenerate|i:1675852347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461ff48e871a7bd2a83c1eb238d0a2a8d5de6333', '31.222.203.2', 1675852347, '__ci_last_regenerate|i:1675852347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23233a9a344ff01ca00a13eb8bd6967f42ad1917', '31.222.203.2', 1675854237, '__ci_last_regenerate|i:1675854237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29970a8c2c3ed7710550041688189c80b2369ea9', '31.222.203.2', 1675854237, '__ci_last_regenerate|i:1675854237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff7ede722ccac5721c686170d75696850e95555', '31.222.203.2', 1675854237, '__ci_last_regenerate|i:1675854237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb717722018a1dbec101f5c164308203647cae52', '31.222.203.2', 1675854238, '__ci_last_regenerate|i:1675854238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e0239988e583638e67fef86fec817b1d9b07a09', '31.222.203.2', 1675854238, '__ci_last_regenerate|i:1675854238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('481cfe1657940c0ac2c1c670f3174130313823d2', '31.222.203.2', 1675854238, '__ci_last_regenerate|i:1675854238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0f3ed75fed43a4fd96248b9e09965431b5e44e', '172.105.247.100', 1675855219, '__ci_last_regenerate|i:1675855219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e23002e7984bc8151d4a7bd17d25549e4c0f6693', '172.105.247.100', 1675855222, '__ci_last_regenerate|i:1675855222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a119064810bee0bdf5ff8da5d07c8c587e043f0f', '172.105.247.100', 1675855222, '__ci_last_regenerate|i:1675855222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfba697ca09e1e01fdd8241b4a08121bcf6ce0f0', '172.105.247.100', 1675855222, '__ci_last_regenerate|i:1675855222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11792dc013d715b8de235b0dd86e6a010b4a8006', '172.105.247.100', 1675855222, '__ci_last_regenerate|i:1675855222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b69e1b44a651c323f8933928b82abba0a7a624', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('696691945d9f494ddef4b79e92f7b97ace6404db', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e5586b95a1dd6d1ad7bbc32ac7fe08d22cb51d', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9109ec793681b4440d943ec60c5d882f691c29cf', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91aa7c5200b55f4bdc4f350dc0220fa52ae61800', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d29caf44c1c7636f5f9f84669b6365409078a10', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47017f46c07ec8f632ce9a7aa53c923909c74929', '172.105.247.100', 1675855223, '__ci_last_regenerate|i:1675855223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c65e3b8d5c4d9cbcb827b82048b122e0b5f32d0', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d516f51e7a8cc3cb6a48cd6c568d1c574da98362', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eabc0610819247b62570087d3ce84af666a182d', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8649bb54f7f79758c08f4d58f084cf369544628f', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc992fe127970c6aba49efd3a7bc86ad7f84bbdd', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4812461b0879caf83b9fcec0a14d244748fddfe', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3ec21fcb9c00a5b3cb29382babe57c0405d89b', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d13cccd7c7c4c2b8bb4b82161c73e23f369528', '172.105.247.100', 1675855224, '__ci_last_regenerate|i:1675855224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e06998c2dc9d80ea170e8309aa343ff823cb6ee', '172.105.247.100', 1675855225, '__ci_last_regenerate|i:1675855225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10ba9ed9164f86934397b8623811c9f7ae391c7', '172.105.247.100', 1675855225, '__ci_last_regenerate|i:1675855225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abad82f72a6893c376cf597dd48a80663b1b2b83', '172.105.247.100', 1675855225, '__ci_last_regenerate|i:1675855225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe3719d552734f6fa5d779ebc89a217b9e516d9', '172.105.247.100', 1675855225, '__ci_last_regenerate|i:1675855225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6877513577b0b0c92d090e71a7c2c1b8951deb2f', '45.120.39.89', 1675858382, '__ci_last_regenerate|i:1675858382;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675774357\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675858278;register_id|s:3:\"335\";cash_in_hand|s:9:\"2910.0000\";register_open_time|s:19:\"2023-02-07 20:36:11\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f436b2b349f3e82365ef907b41d898c18714941', '37.111.218.122', 1675858706, '__ci_last_regenerate|i:1675858706;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675774357\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675858699;register_id|s:3:\"335\";cash_in_hand|s:9:\"2910.0000\";register_open_time|s:19:\"2023-02-07 20:36:11\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8b68cfd0de26d054d3a3db9132b03d45a61534', '37.111.218.122', 1675859202, '__ci_last_regenerate|i:1675859202;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675774357\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675858781;register_id|s:3:\"335\";cash_in_hand|s:9:\"2910.0000\";register_open_time|s:19:\"2023-02-07 20:36:11\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7faca26646d3fea9cddc43e7a0a2ca3479f7ec', '37.111.218.122', 1675859207, '__ci_last_regenerate|i:1675859202;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675774357\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675859207;register_id|s:3:\"335\";cash_in_hand|s:9:\"2910.0000\";register_open_time|s:19:\"2023-02-07 20:36:11\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec60e08f3eafe6e4e78024728a388770d6c3354b', '172.105.247.100', 1675860621, '__ci_last_regenerate|i:1675860621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccabb6322be9aca82edb7dcacbc902551ade2475', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04462209453f22b81a8f87f8680b73bb76e3ca28', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a86597c53a099073b1090653d410888c86bbc5', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba1c211897f67aaf5913f1d887695b4bebf8322c', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b1fdb686fdecb3d272c494d44b8b3f51fafcdff', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4215974fff521329c0517214abf6b5f30179d01d', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c50d1fbda7d3f97d4f164010301c16c482ee480', '172.105.247.100', 1675860622, '__ci_last_regenerate|i:1675860622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251d76ceeccb9b14c86458f25a904823695e749f', '172.105.247.100', 1675860623, '__ci_last_regenerate|i:1675860623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9565bc1d2490ff3e8f623509a2f39fbbaa4c3525', '172.105.247.100', 1675860623, '__ci_last_regenerate|i:1675860623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458a1b155cfe337645b6a2a767616cf92d9521a0', '172.105.247.100', 1675860623, '__ci_last_regenerate|i:1675860623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6aa60694977faa68b9f4903cb7e74da80d6a74d', '172.105.247.100', 1675860623, '__ci_last_regenerate|i:1675860623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8612153b288f814269be3c3283847cfa079e01a', '172.105.247.100', 1675860623, '__ci_last_regenerate|i:1675860623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a4753f174ab45e6df02c6336e9b2b182a5fb63', '172.105.247.100', 1675860623, '__ci_last_regenerate|i:1675860623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4d3ab4b28ee082a3bd67b3646e9f46a8c5f8b1', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e12fa62653195194e450308041bc9db7fe61014', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1d3ab321a0c2a3429b0e46431dd23ed698568d', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d06ec309b9a3eddd15af1f4364eb3d0d596711e', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('781e1ca07f1d45608d0eb693d783ebc4a8cf0649', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb5a72fa8eacd9284cc2819363132cd79ab74192', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6e784e3a69a8d47a711042ef1ab6e5f4f1a3ab', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b00e0001be2bbc05af415c5776c9a98077a1dd', '172.105.247.100', 1675860624, '__ci_last_regenerate|i:1675860624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd53ffcb37cd63d358ff0aed44d4a1012f3b07e', '172.105.247.100', 1675860625, '__ci_last_regenerate|i:1675860625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2874ebcdada953a54560d954eecebc60af660bf7', '172.105.247.100', 1675860625, '__ci_last_regenerate|i:1675860625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b328ec9cd324023fb8530cd1e74d8d2e21fb2995', '31.222.203.2', 1675861349, '__ci_last_regenerate|i:1675861349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58733567e28862e92c80d859829870bb66561ca', '31.222.203.2', 1675861349, '__ci_last_regenerate|i:1675861349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff4385eef9c7bc6d746f463398f8a530d8d53d9', '31.222.203.2', 1675861349, '__ci_last_regenerate|i:1675861349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04bdf99a3922c9fb658da850896475775b6e5d90', '31.222.203.2', 1675861351, '__ci_last_regenerate|i:1675861351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae333f3a91e192b5f1bcaa9b41774a965cebec9', '31.222.203.2', 1675861351, '__ci_last_regenerate|i:1675861351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178cca547e5cb9db9c29ec1cd9097381170f2e13', '31.222.203.2', 1675861351, '__ci_last_regenerate|i:1675861351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c02c9d8f7f95bfa299f952a0f2a80fb2dffd05', '31.222.203.2', 1675863241, '__ci_last_regenerate|i:1675863241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1839c220e91fc51670f07a1e016e6f527cc7e383', '31.222.203.2', 1675863241, '__ci_last_regenerate|i:1675863241;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd90455b6d4d2c5154f33b586fb7235a61968b18', '31.222.203.2', 1675863241, '__ci_last_regenerate|i:1675863241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb09d11f52529517e743d82a55339026694cf34', '31.222.203.2', 1675863242, '__ci_last_regenerate|i:1675863242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb273152114d7de350ba6dbc310bfe2bc515024', '31.222.203.2', 1675863242, '__ci_last_regenerate|i:1675863242;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e96972e36860910796f74662ffff024a9da275c7', '31.222.203.2', 1675863242, '__ci_last_regenerate|i:1675863242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79b8ed76e771bd01a2b0016856b875db9395c14', '31.222.203.2', 1675865115, '__ci_last_regenerate|i:1675865115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d96cbe212db110fde9ea04be9e49c5806471e6c', '31.222.203.2', 1675865115, '__ci_last_regenerate|i:1675865115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56a0ff0e0a296ba80c112faa01b6d56b3191bc58', '31.222.203.2', 1675865115, '__ci_last_regenerate|i:1675865115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cb935f455648f44245a2fdd5f9c1f4211dddd4', '31.222.203.2', 1675865118, '__ci_last_regenerate|i:1675865118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f251fe15a23926abfb2dacf6a16b98196f0cbff0', '31.222.203.2', 1675865118, '__ci_last_regenerate|i:1675865118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91d8194150165c9279689ed96429b2164ffce1e1', '31.222.203.2', 1675865118, '__ci_last_regenerate|i:1675865118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc61f68ede7d0d4a9283e9f0f9e021af542f0b56', '172.105.247.100', 1675866017, '__ci_last_regenerate|i:1675866017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2aa890c8bd22acc229b83b34be1e55422e1c95a', '172.105.247.100', 1675866017, '__ci_last_regenerate|i:1675866017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa11e4e8942c27eeeb3d7474208684483fbe028', '172.105.247.100', 1675866017, '__ci_last_regenerate|i:1675866017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4475907c3d15d9e64150d8b29147ee9f2a1cf46', '172.105.247.100', 1675866017, '__ci_last_regenerate|i:1675866017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fac47c7b56b10ed12fdc5b96466f8828e2aba6', '172.105.247.100', 1675866017, '__ci_last_regenerate|i:1675866017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675ed5fc3d723f2a0bb0fdc5d0c20e8a6016081f', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f64e88a26a84401de51589bb16320241880c72', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e0d397a8623e03585cce39c47bec0d4f4adc3b', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed3ad475f7cd71d4a3b0e113fb720af3597dfd6c', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775682653697fe5caf1b3b8ea020a1cdea52ea85', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66bd3ce341a70c276c78788c52e2a56f8087dbf', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bbf9fc5aee287864e14477f4a75b0a76c05d058', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c435e0dbef431cb9faa6bf36e81c9955e383826f', '172.105.247.100', 1675866018, '__ci_last_regenerate|i:1675866018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7d1e722e49ca0f33563a7856826a480f0c5d3f', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c16a0553666a1a6189a309c2f2ba60e87037ffa', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f29eb67520f411fe78205cd9375d9729c9a3dfe', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d88133c5d11b3758b5d27cf718169165e47ea45', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52f7895ac76a2cf1083aa7153493e3d725dbe8f', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32a1a598bc5884a828bed73fa95a59db12261e44', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57da65cc79c16c7b593de7e13a5de794704efbd8', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239b7eebb75afcbb0267509c6ad446e753cbe21b', '172.105.247.100', 1675866019, '__ci_last_regenerate|i:1675866019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03648f9677e2f811690e52810d91adb8270b026f', '172.105.247.100', 1675866020, '__ci_last_regenerate|i:1675866020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8b4473f6ab571efde98b2544004282b4d04194', '172.105.247.100', 1675866020, '__ci_last_regenerate|i:1675866020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78462bc452dd4352eaa147149270e4bfeb371c29', '172.105.247.100', 1675866020, '__ci_last_regenerate|i:1675866020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d563874ba4ad0094105498f5484570c7327c22de', '31.222.203.2', 1675868552, '__ci_last_regenerate|i:1675868552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6752f0d318ab074e3e842b8baf85f471f5922320', '31.222.203.2', 1675868552, '__ci_last_regenerate|i:1675868552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4965db9a80c5d2b1e91d52de123a1115c3bafcb', '31.222.203.2', 1675868552, '__ci_last_regenerate|i:1675868552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc894d3aed193f522533c902a51c3954654058a6', '31.222.203.2', 1675868552, '__ci_last_regenerate|i:1675868552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc964279a0eee4b15d3735e05338b26a92f0443', '31.222.203.2', 1675868552, '__ci_last_regenerate|i:1675868552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a05cb2cd0af5596082bcd08bb0175883effef8e', '31.222.203.2', 1675868552, '__ci_last_regenerate|i:1675868552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f15657deeeb42fa6125f68a1a92808f0a51cf6', '31.222.203.2', 1675870440, '__ci_last_regenerate|i:1675870440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('057461258313344194bc8cf3d39ac4969ffa0c60', '31.222.203.2', 1675870442, '__ci_last_regenerate|i:1675870442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b593ffb6501a8c84c905d5c3c542479456e84e', '31.222.203.2', 1675870442, '__ci_last_regenerate|i:1675870442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38db87e39e7b28420e1e2253de927daac1f73ea', '31.222.203.2', 1675870442, '__ci_last_regenerate|i:1675870442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c0204e763f988a1e9a4cdd1e164f230dc4899a9', '31.222.203.2', 1675870442, '__ci_last_regenerate|i:1675870442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc5617c57380cae0f01b44e6f19dfc865b7fa14', '31.222.203.2', 1675870442, '__ci_last_regenerate|i:1675870442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b554db2e6f45c8ab559705c0441a1b75b4834ea', '172.105.247.100', 1675871418, '__ci_last_regenerate|i:1675871418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f9607d0d7c1b154257f0c168ed59b69cd1db0b', '172.105.247.100', 1675871418, '__ci_last_regenerate|i:1675871418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15037fcb396b42ce54049b61bca745d2902b3841', '172.105.247.100', 1675871418, '__ci_last_regenerate|i:1675871418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b1b5e4e498117d06df2d25c274b56167a251f0b', '172.105.247.100', 1675871418, '__ci_last_regenerate|i:1675871418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68cbe40273fed697a3eaf19f15f28f4dd91e83dc', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121cabec470bae85fca2cb51f8d7a5efc9d0a1f5', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2179551baee61d21832749d9209e8a4545fd2dc6', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7190eb324c854883349bd49368857f9010a3af', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d5effd9725ad4d7abe41b8675d946548601aa3', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038f070433940472cb680b9042d8e88236a86bdf', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc6f21e53be105495036d3b11f4c19b21300f1b', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0f0326205e72aeddba3d735d8f8a538fbd20a9', '172.105.247.100', 1675871419, '__ci_last_regenerate|i:1675871419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d71ff82230b52a59c844bbc291dc5b854f0686d', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0303e64bcadf95a681392ab53ca769b5e4b4bc7b', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5e94ab580fc6964e35509b0f691ddf3161191a', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65c9d0485620c98f2b0bd7d3d58496c67acd0d2', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e933c0f106b473a963b36443b0b71925fe29d963', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a4a94dce8d11d728790796d8662e941b8e6aa7', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a7d1305a6cb0b645c022763199357d0d6a2025', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85956f6f446de93e1b533cc17057747106b5f0d1', '172.105.247.100', 1675871420, '__ci_last_regenerate|i:1675871420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1ac20005a9b9f5f8cba29fb2042d0c4872e00d', '172.105.247.100', 1675871421, '__ci_last_regenerate|i:1675871421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973c33e40c46e3beb75d21b700d7f0227eb71591', '172.105.247.100', 1675871421, '__ci_last_regenerate|i:1675871421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d59afa9c404a8ba8f19b9594c3d0140000a22ca', '172.105.247.100', 1675871421, '__ci_last_regenerate|i:1675871421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323eceee1c8d874e08043a0cd1aae8e1ffbabd3f', '172.105.247.100', 1675871421, '__ci_last_regenerate|i:1675871421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ee39bc3d8d6e4a9229777d4e52a102aed3cd7f', '31.222.203.2', 1675872316, '__ci_last_regenerate|i:1675872316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517c998684cadd2613269fbe2e45b39327114ba1', '31.222.203.2', 1675872316, '__ci_last_regenerate|i:1675872316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c23232e299a356707631054d7b8fe0b464702ae2', '31.222.203.2', 1675872316, '__ci_last_regenerate|i:1675872316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74234473a3733fca3bed4155a76d0b5aa17f90ef', '31.222.203.2', 1675872317, '__ci_last_regenerate|i:1675872317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09eb3c709caeee8a53e1c4153c3b4f079cc795a8', '31.222.203.2', 1675872317, '__ci_last_regenerate|i:1675872317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0277c3e2a80af1dc9705d85495e712e25fc60c', '31.222.203.2', 1675872317, '__ci_last_regenerate|i:1675872317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2e018ba3865390694aa473e9c83cad432f1313', '172.105.247.100', 1675876818, '__ci_last_regenerate|i:1675876818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdd3c55b4a747ef8ca8b7b5fbc65421f2e3723d', '172.105.247.100', 1675876818, '__ci_last_regenerate|i:1675876818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f891b01fa4903d41859d7cf0fd1a290e5a9868', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b5f69ab8a7cdce66c9f872b14201a56422254e', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a39e671fa7d70aaeb69b3c2e3e1ba88cfe3278', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfda4d7612968fade067b2e1b04911b2df292946', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb7c33f797271a201b8b601a56ef6bc0838066a', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29102ad6f450969fafad85790ab17d725932c27', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84d103d7d74ff051cc801197c4abdb6162801924', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de5330b1ef5df2acefdf2cd0c09ba3faa6c1353', '172.105.247.100', 1675876819, '__ci_last_regenerate|i:1675876819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a02e99cf285e2de8ede7d5a1b2d7d78e65fe7ce', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687e164ad269f3b93b024429b0ea7b9613402f0e', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c5578d18196b66ae77def2c2abad82dc6d240e', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba40f9fc212aece1676dd5ed9cc5b9fd7cbd0e70', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d272b6f03dd980e3c9ef163489af28faa480ed69', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c603ed67d40f8b432d013f9eb13e9ec4edcee73', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed20f73294b53173e5c6514627840c97bdb4fca4', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c6cca456447ab6bcdadde3eb2f7976216d5e34', '172.105.247.100', 1675876820, '__ci_last_regenerate|i:1675876820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64e2ce196e3d1601a8056da5bf37be0fbb0505b', '172.105.247.100', 1675876821, '__ci_last_regenerate|i:1675876821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4288bf043a5887e16a769cf40c50cccae19b221', '172.105.247.100', 1675876821, '__ci_last_regenerate|i:1675876821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957168263d648365ccd32bd5bc99f4193cc476cf', '172.105.247.100', 1675876821, '__ci_last_regenerate|i:1675876821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42a704a01d9d6485660592222fd96fe128f7eca', '172.105.247.100', 1675876821, '__ci_last_regenerate|i:1675876821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de257db8fd0fcd9212ab912378f93c0c52cf07b4', '172.105.247.100', 1675876821, '__ci_last_regenerate|i:1675876821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f50b5445a0f2d1c8199e0e8f010b6d2b993707', '172.105.247.100', 1675876821, '__ci_last_regenerate|i:1675876821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c74affd5d2e93f763c1b3b8a39028ced7e6eea22', '31.222.203.2', 1675879370, '__ci_last_regenerate|i:1675879370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c2eac1602626d86f66b9ae9772bb4e1cae50c7c', '31.222.203.2', 1675879370, '__ci_last_regenerate|i:1675879370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd12a3dd49d7b528047b3cc375934c856bdf87f6', '31.222.203.2', 1675879370, '__ci_last_regenerate|i:1675879370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19500f3c88e7c7f120e59f5343105b7edc857c68', '31.222.203.2', 1675879372, '__ci_last_regenerate|i:1675879372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d50a5ef005911805d49c25157fb657b8f47449b', '31.222.203.2', 1675879372, '__ci_last_regenerate|i:1675879372;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00a8d5b5d6ff32dbd8ee672a6e7019905869e9d', '31.222.203.2', 1675879372, '__ci_last_regenerate|i:1675879372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b261f82172a58b3650b828cd3f579f7550d6cc', '31.222.203.2', 1675881241, '__ci_last_regenerate|i:1675881241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f590a33eaaf2d493a1846b27abd8f137c0e91e', '31.222.203.2', 1675881241, '__ci_last_regenerate|i:1675881241;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45be01d86f41b547472044c7ca870af91887ae44', '31.222.203.2', 1675881241, '__ci_last_regenerate|i:1675881241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9581fdd970816f0c7832e5e26615323f5917ce30', '31.222.203.2', 1675881242, '__ci_last_regenerate|i:1675881242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40f3b5353a6d60731b6524be172722b2bd6efca', '31.222.203.2', 1675881242, '__ci_last_regenerate|i:1675881242;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887a6e6cfff37469d666696f989cce9147bbe215', '31.222.203.2', 1675881242, '__ci_last_regenerate|i:1675881242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2252806fb3b62656c54d179c66a5453cb697e8d4', '172.105.247.100', 1675882217, '__ci_last_regenerate|i:1675882217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('054f95e5f7f9bcdd29fa523a9cbdeb618bc16e9c', '172.105.247.100', 1675882220, '__ci_last_regenerate|i:1675882220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73262b12b7f2e5b6f78d25c7c316d34ad51741c6', '172.105.247.100', 1675882220, '__ci_last_regenerate|i:1675882220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f69da1f116baabcfe0b48732be6806594c361b', '172.105.247.100', 1675882220, '__ci_last_regenerate|i:1675882220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f51d6e85ab05ce2e99947d05572e50d4fe2cd7b8', '172.105.247.100', 1675882221, '__ci_last_regenerate|i:1675882221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4592e79149b75b8bb39b2886a1fa306aae446e', '172.105.247.100', 1675882221, '__ci_last_regenerate|i:1675882221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750e40d030c26ee5b1959476a02a446da961011b', '172.105.247.100', 1675882221, '__ci_last_regenerate|i:1675882221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a24af4b7b3ed236a2022e5a0199f8ee2d1349e1', '172.105.247.100', 1675882221, '__ci_last_regenerate|i:1675882221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db1c28fb471c60838a62582d9eeb68a6a407ebf', '172.105.247.100', 1675882222, '__ci_last_regenerate|i:1675882222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a69e6dc786ddd58a00947abaf29f98ca43062499', '172.105.247.100', 1675882222, '__ci_last_regenerate|i:1675882222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6671397079dd1d929d13f0abaa8fe0273a10c36f', '172.105.247.100', 1675882222, '__ci_last_regenerate|i:1675882222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85dec5dbd7d3029b06b5a18f8f0873fd70f83013', '172.105.247.100', 1675882222, '__ci_last_regenerate|i:1675882222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc8755fc4fc5b97c805edcb77a75bdf4464b4d2', '172.105.247.100', 1675882222, '__ci_last_regenerate|i:1675882222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62821bf5847181dc01fdfc66bf2aa1eec76bca1f', '172.105.247.100', 1675882223, '__ci_last_regenerate|i:1675882222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('347d57ede5494931028901cd2769d4cb9cb14c59', '172.105.247.100', 1675882223, '__ci_last_regenerate|i:1675882223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c96846297e63406c262d9af8787cdf2d7ddcdd', '172.105.247.100', 1675882223, '__ci_last_regenerate|i:1675882223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7f8fbf6b22241334a3b0a645a7456ec242da77', '172.105.247.100', 1675882223, '__ci_last_regenerate|i:1675882223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c7af2fe11c65d2b694d314d0112265835a9000', '172.105.247.100', 1675882223, '__ci_last_regenerate|i:1675882223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99dcd4365e463b5e9baa7e273855c3e5ab7f033', '172.105.247.100', 1675882224, '__ci_last_regenerate|i:1675882224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42db40f10336ade8beb18dbb7339485620f92dc', '172.105.247.100', 1675882224, '__ci_last_regenerate|i:1675882224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961b667643bf2fa1c3d96d3eb8b8f912ce6a1ab7', '172.105.247.100', 1675882224, '__ci_last_regenerate|i:1675882224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552b3b6cf816e6978abb21a94ec25bcbcc616334', '172.105.247.100', 1675882224, '__ci_last_regenerate|i:1675882224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd18e87873efed8a9d3bea90d41ddc309c7978f', '172.105.247.100', 1675882225, '__ci_last_regenerate|i:1675882225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf651ea0d88f529e4dba413994edc896ce4c767', '172.105.247.100', 1675882225, '__ci_last_regenerate|i:1675882225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbbd7ed1e31ee590b61989e0f45ebe74c47b7421', '31.222.203.2', 1675883115, '__ci_last_regenerate|i:1675883115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28a99a7edcdd4d25a52808b5adedaccecc85a7ac', '31.222.203.2', 1675883115, '__ci_last_regenerate|i:1675883115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3882a8672991d04165e3e158a32393b38eaf2e98', '31.222.203.2', 1675883115, '__ci_last_regenerate|i:1675883115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9bb8320dbd0a03194bfc767e2b41f35b0149e8', '31.222.203.2', 1675883116, '__ci_last_regenerate|i:1675883116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7104152dcc1fadce2ee865d0ecb2bbd6ee7fcca8', '31.222.203.2', 1675883116, '__ci_last_regenerate|i:1675883116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a5c406d320bde6aaa4bde49c4344d65dacd3d7c', '31.222.203.2', 1675883116, '__ci_last_regenerate|i:1675883116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb6c9875242479d88bbe40bda47f089518fe5ea8', '31.222.203.2', 1675886557, '__ci_last_regenerate|i:1675886557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db207a7c8ddf6381831cab52c3c1d210822349db', '31.222.203.2', 1675886558, '__ci_last_regenerate|i:1675886558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856219851ff5c1584bea6626aa689c0974f77b47', '31.222.203.2', 1675886558, '__ci_last_regenerate|i:1675886558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d43b1869d3f51d19ad3c508035605eb1de0293f', '31.222.203.2', 1675886558, '__ci_last_regenerate|i:1675886558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e158e455a436ae23b959eb46fbd14d2457292e88', '31.222.203.2', 1675886558, '__ci_last_regenerate|i:1675886558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee13b5cc48707cc640ae12b71bfb1581ef3a19b', '31.222.203.2', 1675886558, '__ci_last_regenerate|i:1675886558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15b717ecace681f244b2882538f82204715d8e5', '172.105.247.100', 1675887616, '__ci_last_regenerate|i:1675887616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3e1f6e80f024b337edd5647636e9d884cbe55b', '172.105.247.100', 1675887616, '__ci_last_regenerate|i:1675887616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df69b3688a5d91e9e8b737dad5f5a012daa18901', '172.105.247.100', 1675887617, '__ci_last_regenerate|i:1675887617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24119104d01919d5c831ba82cfe8cd9a161784aa', '172.105.247.100', 1675887617, '__ci_last_regenerate|i:1675887617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa8ef479cd86ef0b5e65fc69266107b3611c8e9', '172.105.247.100', 1675887617, '__ci_last_regenerate|i:1675887617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395f4fb13ce9f15ad7f0d18c6aee741854d54232', '172.105.247.100', 1675887617, '__ci_last_regenerate|i:1675887617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('359a34d2c670f7b275ef7523bc28ef8e4058c64f', '172.105.247.100', 1675887617, '__ci_last_regenerate|i:1675887617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873279e5005a51b43667ddbf090ba37db66c7a69', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18942ddb031416953847a6f33c835945285ed41', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b749f8f63ae0133b33f56c79890df7d73f45d3', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('300ca187b3e4608fcc40a374d4dfca8b22455a39', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('262732fa3b85f11dfd6132969034619da8a953d3', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c59f2b3e447b5cb1f00ddbad072f60e56f6f10', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd23e7d66532cd3448077705ff4c0ea1e5e137e', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('621a14d5de658c748a5a391b6ca44611313661c4', '172.105.247.100', 1675887618, '__ci_last_regenerate|i:1675887618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c18574a73c059b37820105458df869b5e248ab0', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bad7b25ceb51a85aac7a6da035dd7fc881b01f', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c59f481a355d73e99da5331b6e3778d3d481cc', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdda6cdb747881a85a4aa230ac8b28aaef45fb75', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07358db2f882d3aff062fe47ba4af045b85dfef9', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ee0443b05f47b7024febf2706428e15fae72b3', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b03bb8b1759bcf81b6d05c1d8595a65411405f7', '172.105.247.100', 1675887619, '__ci_last_regenerate|i:1675887619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956df73b94e54eed74365aaca6769020d3ee5a3b', '172.105.247.100', 1675887620, '__ci_last_regenerate|i:1675887619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f91009f77013e310da934d7d1bcbae835752997', '172.105.247.100', 1675887620, '__ci_last_regenerate|i:1675887620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8f2310b6d53beeb8d6723333119a352050b642', '31.222.203.2', 1675888436, '__ci_last_regenerate|i:1675888436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8507f53e53d3750c4605354b4e181e9037f7479', '31.222.203.2', 1675888437, '__ci_last_regenerate|i:1675888437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d39c826aba314587cd9f404d9f77949729dba02', '31.222.203.2', 1675888437, '__ci_last_regenerate|i:1675888437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6f18aa513cba8deed5887a74d5376e056ad6d7', '31.222.203.2', 1675888437, '__ci_last_regenerate|i:1675888437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1efdd2a40b9a4ffebe136acc95fab176cc2d526', '31.222.203.2', 1675888437, '__ci_last_regenerate|i:1675888437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2478e655ad939ac97d952ffb2995ff272841be6', '31.222.203.2', 1675888437, '__ci_last_regenerate|i:1675888437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09f3f27df53b7d8826504a5ef9e0a3ee3f0380c', '31.222.203.2', 1675890262, '__ci_last_regenerate|i:1675890262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0321c1b70a24a3389fa5d075cdab08848cf418e6', '31.222.203.2', 1675890262, '__ci_last_regenerate|i:1675890262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64638d40bf5e4c80185eb6e9a9a7df8e26643b95', '31.222.203.2', 1675890262, '__ci_last_regenerate|i:1675890262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fca098952cd7aca078894f807341390044e5b54', '31.222.203.2', 1675890264, '__ci_last_regenerate|i:1675890264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7747ff93b2f62c57e7f359affa8377977da8a8', '31.222.203.2', 1675890264, '__ci_last_regenerate|i:1675890264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5dd7d3fcc52dccc7152ec13d62e70a5138c0e89', '31.222.203.2', 1675890264, '__ci_last_regenerate|i:1675890264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efaf876a0190bd8271f3ff59720be30f38b1690f', '172.105.247.100', 1675893017, '__ci_last_regenerate|i:1675893017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99790b232045bfd04277647b911bc77d563b13f', '172.105.247.100', 1675893017, '__ci_last_regenerate|i:1675893017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3123bae8576d4c9ea0caa2e218743c327c0bebb0', '172.105.247.100', 1675893017, '__ci_last_regenerate|i:1675893017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2687580b5ecaa793e075580b3007381ef4e72ed7', '172.105.247.100', 1675893018, '__ci_last_regenerate|i:1675893018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6008e4d5af9e864c66a2a2bb4574d3c33c6c57d1', '172.105.247.100', 1675893018, '__ci_last_regenerate|i:1675893018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413b5e797c1c9d4e9cc5790f39b03113ae69b3ad', '172.105.247.100', 1675893018, '__ci_last_regenerate|i:1675893018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24442a0718d8f4d7061cfb847732e971567be9e9', '172.105.247.100', 1675893018, '__ci_last_regenerate|i:1675893018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39b2db25eab08593f176e8417d05e361af443e6', '172.105.247.100', 1675893019, '__ci_last_regenerate|i:1675893019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aa2f6689c6a24105cd5dea1d5e9687ef79b1ac7', '172.105.247.100', 1675893019, '__ci_last_regenerate|i:1675893019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94f08eb3aa7aad3aa40d84a4be904a60d24964a', '172.105.247.100', 1675893019, '__ci_last_regenerate|i:1675893019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a44897566c1782710e4eb760c22a747ccee10a', '172.105.247.100', 1675893019, '__ci_last_regenerate|i:1675893019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fdbfaa1136d5ff1c46801ea44ddaaebd61cb57c', '172.105.247.100', 1675893019, '__ci_last_regenerate|i:1675893019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b223dd4b36fab9fb9af3e6c88b47934ef75b935e', '172.105.247.100', 1675893020, '__ci_last_regenerate|i:1675893020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df201bfaf477b9373aed5112d5681efb30cd260', '172.105.247.100', 1675893020, '__ci_last_regenerate|i:1675893020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eabbcc815110481309d5d20a9540d6644202cbed', '172.105.247.100', 1675893020, '__ci_last_regenerate|i:1675893020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca5d6048d7e8c4c625c705c7ba14cd2357e526a', '172.105.247.100', 1675893020, '__ci_last_regenerate|i:1675893020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6758f66b9990cb62403511cf7193bfd79321e3a', '172.105.247.100', 1675893020, '__ci_last_regenerate|i:1675893020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d737c4cf8f912e90a6e6a35af97c5e2df17a4d', '172.105.247.100', 1675893020, '__ci_last_regenerate|i:1675893020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6514a91f15feafd3bed35024dc3da5b14ee47759', '172.105.247.100', 1675893021, '__ci_last_regenerate|i:1675893021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d952fe6b60595b8568988460dceffbd46494d021', '172.105.247.100', 1675893021, '__ci_last_regenerate|i:1675893021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a352057bde7656719a6b907f3641974f7d876c', '172.105.247.100', 1675893021, '__ci_last_regenerate|i:1675893021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f44b8a58078a7f4e30c427f547e30cab5555f33', '172.105.247.100', 1675893021, '__ci_last_regenerate|i:1675893021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878682caf074b2c79e31980ccaeba5565e50aa44', '172.105.247.100', 1675893022, '__ci_last_regenerate|i:1675893022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110e60cd1274e35a9398ba49d5fd1aa43ae1ee3e', '172.105.247.100', 1675893022, '__ci_last_regenerate|i:1675893022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('133e24645ab2ecb1e0699fe2d0820889cf0ce05b', '172.105.247.100', 1675898418, '__ci_last_regenerate|i:1675898418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aa8577085082613e21ade7fc98ad6a1bd4a660e', '172.105.247.100', 1675898418, '__ci_last_regenerate|i:1675898418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7940b74e7cfc117c986a137953f8a1cfce6f1814', '172.105.247.100', 1675898419, '__ci_last_regenerate|i:1675898418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab47cd94c11ac6a0abd2d427ef0e72d857e0dd0', '172.105.247.100', 1675898419, '__ci_last_regenerate|i:1675898419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fc05572d0a8339d6d1ba49b529457fb156b43e', '172.105.247.100', 1675898419, '__ci_last_regenerate|i:1675898419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cf7b112b462e57e889cdf1d2fb6027527d5f5f', '172.105.247.100', 1675898419, '__ci_last_regenerate|i:1675898419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('443e0d3702fc9c9f8128c3e16b60226a02b77504', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ec28963a0f2d500b1c05bf14b58d9c54ca5833', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d6f052826ff2f6d36e4092680f4e06de7cd9c2', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5c735011a45459b27c7910666312839c2de643', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c89711fbbc1055d5bbea0362a6cbfe3d808eb5', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f82c627f5e58b0ea07292102146dcfc75620ffb', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1b3130f1ebe70a9712cb184f9101b064fb6fe4', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e313b5cf02530f6ee6297605f5effc3ca4004073', '172.105.247.100', 1675898420, '__ci_last_regenerate|i:1675898420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240c941023bd2f2b5f79e346a931f94a45904501', '172.105.247.100', 1675898421, '__ci_last_regenerate|i:1675898421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a9879b83085b771e1509684c1b4285c162dc77', '172.105.247.100', 1675898421, '__ci_last_regenerate|i:1675898421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cd1a867d73892c1388efca089682c91a8a9dcfc', '172.105.247.100', 1675898421, '__ci_last_regenerate|i:1675898421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb2327ae3af784b7a0ba9f623122d20041c26db', '172.105.247.100', 1675898421, '__ci_last_regenerate|i:1675898421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b50a248a84f6bdeed9a6e07926c913219ad3eda', '172.105.247.100', 1675898421, '__ci_last_regenerate|i:1675898421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b108656b6251550ff90e319e8050bc85e0e75e72', '172.105.247.100', 1675898421, '__ci_last_regenerate|i:1675898421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76bfb25d375e0daebd032413342228a18967d9eb', '172.105.247.100', 1675898422, '__ci_last_regenerate|i:1675898422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e63fa062aaebf6fa59799ec66b9439101c373d', '172.105.247.100', 1675898422, '__ci_last_regenerate|i:1675898422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7db736dfb750b0146628f27137955b385cd6709', '172.105.247.100', 1675898422, '__ci_last_regenerate|i:1675898422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76c60abe739a2a816d1c005b0646a0cf37c1d32', '172.105.247.100', 1675898422, '__ci_last_regenerate|i:1675898422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc6aea1b9832877b06e5357aead3250b0c14d4d7', '31.222.203.2', 1675899179, '__ci_last_regenerate|i:1675899179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf92d301a4e70d0fd4dd037e2b6e94302eb909cd', '31.222.203.2', 1675899179, '__ci_last_regenerate|i:1675899179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2ab14798787d27dbd672505d334fd9c04b73b2', '31.222.203.2', 1675899179, '__ci_last_regenerate|i:1675899179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341b20fabfd610838c1b0bfb4712995f0aaedf46', '31.222.203.2', 1675899180, '__ci_last_regenerate|i:1675899180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfca6cd0fb00b941807f491f41397ce63ef7c78', '31.222.203.2', 1675899180, '__ci_last_regenerate|i:1675899180;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d0fbc96a08e6c5672a7faf99d28f6de3013dd0', '31.222.203.2', 1675899180, '__ci_last_regenerate|i:1675899180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e561c140608f060843888cb4e5bfbaf97d31717', '31.222.203.2', 1675901101, '__ci_last_regenerate|i:1675901101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b98046d076903bc368d428a1f26cea26775e251', '31.222.203.2', 1675901101, '__ci_last_regenerate|i:1675901101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5e2b1fce4d8233bd4ce2e0c998220ddaabf3ae', '31.222.203.2', 1675901101, '__ci_last_regenerate|i:1675901101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b57cb6dbffb9ae878c2a0473c32a6380bc7510', '31.222.203.2', 1675901103, '__ci_last_regenerate|i:1675901103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa22f905adf339507d8a6a91e64136815e67c80', '31.222.203.2', 1675901103, '__ci_last_regenerate|i:1675901103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077babf3429068998de6fda93090f9d689d1493d', '31.222.203.2', 1675901103, '__ci_last_regenerate|i:1675901103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0fdb19e37d27cba5d292ca77832b37eeca43492', '172.105.247.100', 1675903816, '__ci_last_regenerate|i:1675903816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad6c99bfdf4b18115043364817120958a0234df3', '172.105.247.100', 1675903817, '__ci_last_regenerate|i:1675903817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4fe5d3c330fd98113c3e02ce988b67a56475f6', '172.105.247.100', 1675903817, '__ci_last_regenerate|i:1675903817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('820a14a1fa17cb66163cefb5e5a8dcd348fc5954', '172.105.247.100', 1675903817, '__ci_last_regenerate|i:1675903817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7145b7633a2fc72af9b19671b36664e33eada3a0', '172.105.247.100', 1675903818, '__ci_last_regenerate|i:1675903818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfcefcbdc5e9ed6243f46b9de8d3fa79a6034c21', '172.105.247.100', 1675903818, '__ci_last_regenerate|i:1675903818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264703e84e75d4cdf0f95b30bfcf65d25298dbe2', '172.105.247.100', 1675903818, '__ci_last_regenerate|i:1675903818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2352b460cdca9309f6a05a32e22dab54a2fdf320', '172.105.247.100', 1675903818, '__ci_last_regenerate|i:1675903818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3241fdf9b002fc136ae1c628695c52f710edb541', '172.105.247.100', 1675903819, '__ci_last_regenerate|i:1675903819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41787350ab0446edc10e6399c6ad0cc74b1530b2', '172.105.247.100', 1675903819, '__ci_last_regenerate|i:1675903819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f46a02339203a67b8994a17da5ac841cc3fc76', '172.105.247.100', 1675903819, '__ci_last_regenerate|i:1675903819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df8543f765f5c8bdb9fde4e99eb803c0938e000', '172.105.247.100', 1675903819, '__ci_last_regenerate|i:1675903819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c597119f93f22bdcd9ecff7505e09b013229c9eb', '172.105.247.100', 1675903819, '__ci_last_regenerate|i:1675903819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9814ffdd4aad8e412583475e284d7b1fc3d70a3', '172.105.247.100', 1675903820, '__ci_last_regenerate|i:1675903819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea24a60f7db3d9db58d92246e509b6225b594836', '172.105.247.100', 1675903820, '__ci_last_regenerate|i:1675903820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2212b5c5c582f3f5e0caf197fc685014ffe7d5e', '172.105.247.100', 1675903820, '__ci_last_regenerate|i:1675903820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a9ba2ae592fb9bb6c88fc442d7de67d9c16da8', '172.105.247.100', 1675903820, '__ci_last_regenerate|i:1675903820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7acbf0c5e8c68966294bbe3079de088c05f07829', '172.105.247.100', 1675903820, '__ci_last_regenerate|i:1675903820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ebe62fac1d80af5c36ba99877133f98f241958', '172.105.247.100', 1675903821, '__ci_last_regenerate|i:1675903821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19e987a2b5f135c21b8590b164453cb8d108e78', '172.105.247.100', 1675903821, '__ci_last_regenerate|i:1675903821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feed3cf54de7c0e805d16669478913a9c4cf474d', '172.105.247.100', 1675903821, '__ci_last_regenerate|i:1675903821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e17fce1084a8fcea32a0dc2ec10e13d1dc692d4', '172.105.247.100', 1675903821, '__ci_last_regenerate|i:1675903821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c715df3c72e98414537570991ee18e3cb1e4e6d9', '172.105.247.100', 1675903822, '__ci_last_regenerate|i:1675903822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd60647005b6d12a792b2381de21626a4f31c9e', '172.105.247.100', 1675903822, '__ci_last_regenerate|i:1675903822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdbf9c229d1fcbcfef27e14992309a0f2c5f4926', '31.222.203.2', 1675908172, '__ci_last_regenerate|i:1675908172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e68b00de514e7cf314287de4cd83f37f6106472', '31.222.203.2', 1675908172, '__ci_last_regenerate|i:1675908172;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c4243264ec84009ac0e861f022f0563254c7076', '31.222.203.2', 1675908172, '__ci_last_regenerate|i:1675908172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b911e1eb91da539dc409689ac6322648e3df3cb', '31.222.203.2', 1675908174, '__ci_last_regenerate|i:1675908174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3ecf1a064782c581f902f358d5d8be354fff3c', '31.222.203.2', 1675908174, '__ci_last_regenerate|i:1675908174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db71d0ad2b095d9dc16911274a9157d8435d161e', '31.222.203.2', 1675908174, '__ci_last_regenerate|i:1675908174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0845c32ecf74d52ddaf6a8bf1554ee1fbb529ca', '172.105.247.100', 1675909220, '__ci_last_regenerate|i:1675909220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f392cdd57c4d1b3f77bc744c73f93ebcef996f74', '172.105.247.100', 1675909220, '__ci_last_regenerate|i:1675909220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955f14ef955db17570f93d82720c99ac2aa69d5f', '172.105.247.100', 1675909220, '__ci_last_regenerate|i:1675909220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132070516b8a64dbef7f7177bffa4b3194007bc4', '172.105.247.100', 1675909220, '__ci_last_regenerate|i:1675909220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ed11a1007cd3b60d7db23e0bb6f28d8ea7f9d7', '172.105.247.100', 1675909220, '__ci_last_regenerate|i:1675909220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30e54aff8d683e42ce3a89c36bcb66bea6acadd', '172.105.247.100', 1675909220, '__ci_last_regenerate|i:1675909220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f24997c2ac827e19fba0d1a5ecca192a1e25dd', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5851809921c1795629283365dd125aacfc1067e4', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3cac2e288c03e4b6f910499e73e3b14c1a9725', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb19b00428502bf3631b49e1273f7e64c5355af0', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6869a8d012b8147d69ec28c83da25b00297f0461', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5fee1dbc92831b7f22ee1af624161f1bf0f111', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b08fe3e9b971fe41ff3c964fc78fa10fd880808', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb008209d49faffaaeb9419240cd2df1dec0ff5', '172.105.247.100', 1675909221, '__ci_last_regenerate|i:1675909221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0c58f75f7c80541ab71443a4b59da8ecc63d73', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce8d06724ed58a1c5ee1a99388263290a439c6dd', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68a8b6e8a2f8817cbfa679ff8bbc4b9fb6f7cc7c', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490fc826577d617b66f95a563058c95d359685c5', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2718512e64571cd95b1bb85d0d7359ee64449db', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb26141ce5bb3301b8c7763c5339faca3902ea7', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f264aadca4a9a7083b12c741c82f8d5d82234fd', '172.105.247.100', 1675909222, '__ci_last_regenerate|i:1675909222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913d9292e18389fd01760a8640b92e0bb44549e7', '172.105.247.100', 1675909223, '__ci_last_regenerate|i:1675909223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af48a73f57e46c89cc8ec689d1a3a249704c921', '172.105.247.100', 1675909223, '__ci_last_regenerate|i:1675909223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ab2179a42876f37851a38034a2a506f83749a2', '172.105.247.100', 1675909223, '__ci_last_regenerate|i:1675909223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c06cd606d6bfcb5fa3cca71b661e91fa527e7d20', '31.222.203.2', 1675910102, '__ci_last_regenerate|i:1675910102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5cc58f699ebe730e883288d2bd82e34d6663d30', '31.222.203.2', 1675910102, '__ci_last_regenerate|i:1675910102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d3749a525f5dfa032754160f1b9daae390dcb3', '31.222.203.2', 1675910102, '__ci_last_regenerate|i:1675910102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec162b4b19b4132353fe9662490e154cecd7346', '31.222.203.2', 1675913576, '__ci_last_regenerate|i:1675913576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb76dd8de4e9d970facfe8666a78a1cd3f28cce', '31.222.203.2', 1675913576, '__ci_last_regenerate|i:1675913576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc0af8983dfb8d418e95630d5f21d0c49e5abdf', '31.222.203.2', 1675913576, '__ci_last_regenerate|i:1675913576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3233b8a8e970270e0762d9f5709972a752db1038', '31.222.203.2', 1675913579, '__ci_last_regenerate|i:1675913579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('932c1045e6d808fa374891f9e836dd41bc713af1', '31.222.203.2', 1675913579, '__ci_last_regenerate|i:1675913579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe49c7abcccfc5b60cb098a7511738084a645a2', '31.222.203.2', 1675913579, '__ci_last_regenerate|i:1675913579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2edc33560926311da803a903369a724bc1933729', '172.105.247.100', 1675914618, '__ci_last_regenerate|i:1675914618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b1c15393043d368e0d0fea9971cdce81b6e5f9', '172.105.247.100', 1675914619, '__ci_last_regenerate|i:1675914618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c5f04b34626246655456974531f6b24c37de7e', '172.105.247.100', 1675914619, '__ci_last_regenerate|i:1675914619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b75615731d02b7c2baff3002fd697d90c9ac2da', '172.105.247.100', 1675914619, '__ci_last_regenerate|i:1675914619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d2e997d3ce7364ca7f595680917c8b932843b9', '172.105.247.100', 1675914619, '__ci_last_regenerate|i:1675914619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f4b04aef9415e9195c3fa8a184b42a9e98396a', '172.105.247.100', 1675914619, '__ci_last_regenerate|i:1675914619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54952bf9674ba76f9d3adf325ee53823e837e45e', '172.105.247.100', 1675914620, '__ci_last_regenerate|i:1675914620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ca177e1dfc241046be2484f2c81e52eca0b42f', '172.105.247.100', 1675914620, '__ci_last_regenerate|i:1675914620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10c8b124f5236e0b639c322a7b5c8079d7bb4ec', '172.105.247.100', 1675914620, '__ci_last_regenerate|i:1675914620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ab31b5e25723cab58cbcc837edc71f57179ba8', '172.105.247.100', 1675914620, '__ci_last_regenerate|i:1675914620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc59397f6133a935b244d65d4445dcf6d7b6a45b', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8e74344747489450f309f9d1c001780744525f', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791781dbb33ba8a254fcac22ee026c373d4678ff', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8659153e2556a6614f2e64efc8f3ccd3d150b2c9', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f52a3a93ec9d19acb42d4ecae3040c190a76a2', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1423bffdbe688bc1078ca598bdc52c84c43b68e8', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796914dc2d1aa1d4cd77b30f2632460eccaacc7b', '172.105.247.100', 1675914621, '__ci_last_regenerate|i:1675914621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2800cd55b2be6661725bf35784b946f838b05227', '172.105.247.100', 1675914622, '__ci_last_regenerate|i:1675914621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174239c9ee202d39defdf62cf80daac1d6dd9b00', '172.105.247.100', 1675914622, '__ci_last_regenerate|i:1675914622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('130dcdd704a139037ad4dc19e6af0c84770e7c46', '172.105.247.100', 1675914622, '__ci_last_regenerate|i:1675914622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fcc816409459bcec9632256323a833f6333d612', '172.105.247.100', 1675914622, '__ci_last_regenerate|i:1675914622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6374a48dea49330a8bca88da39e51d82101425', '172.105.247.100', 1675914623, '__ci_last_regenerate|i:1675914623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e7ab392ad189740f2cce3fdd50fab6f28f7466', '172.105.247.100', 1675914623, '__ci_last_regenerate|i:1675914623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87364308b8233f0dcca371e290068ad85baec575', '172.105.247.100', 1675914623, '__ci_last_regenerate|i:1675914623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61630d8552c6df3266c79c11659ead28a9a96430', '31.222.203.2', 1675919058, '__ci_last_regenerate|i:1675919058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2077c8ee7affb95d3430cfc42af4f485f79ea445', '31.222.203.2', 1675919058, '__ci_last_regenerate|i:1675919058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf89f7dee4536691ff0851ea31ccadfa40839bc', '31.222.203.2', 1675919058, '__ci_last_regenerate|i:1675919058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fca3af392c2cd62a26876be2d45ce75ed6e3181', '31.222.203.2', 1675919060, '__ci_last_regenerate|i:1675919060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e47ee805f48f320f3beb1212f7f1b75e58682db', '31.222.203.2', 1675919060, '__ci_last_regenerate|i:1675919060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29ae5150fe9988df13376c9aab250f4a36048bd5', '31.222.203.2', 1675919060, '__ci_last_regenerate|i:1675919060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f54b6e5505f7d7ae985d51a1c529bc141e46a0', '45.120.39.89', 1675919412, '__ci_last_regenerate|i:1675919210;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675850018\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675919412;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9259dff6ae3ce46816ba1e3742a41f106bb3188c', '172.105.247.100', 1675920022, '__ci_last_regenerate|i:1675920022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4792f00d27b3855643a7bd0e80f108e017b0ae5b', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bec366c09cb1401ddeaeecf0e1d3a3f617871e', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c725036cfed00fd64b8e335c7c9641175e7d78a', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f76774eebf09e0b708e0f35bcc687298d47e72', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87d4e6795ed135c4db0dffb0cb164cc30cbca132', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de3f2477d187740c52f77f2fbab9a2676ececd7', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00640be654c0edc2c2b13be0ae71e098cb70ac98', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60767644224aade41e13e5982da2ff8a90c7d8fc', '172.105.247.100', 1675920023, '__ci_last_regenerate|i:1675920023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1377f4ba46ef8ce318dbd5c7fc755e0ac5f72a4e', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0b1f02bfd43f7aadea9efddc7f7bf74fb87ac4', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6cf32a78807d771d437f16d12f8b5bec2025462', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2169b581e6ae899b630112905df28e20802c604f', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160ab507249e9f93932d6c0a14d6351ce23a1737', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0b451c6a4ce87f5f41837c262ace61c2063393', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48204b283a7fdc9be23bb3d49ee6199b58f09d6', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2a00335ef0ec81f5b8138ec8cd74edd6b36654', '172.105.247.100', 1675920024, '__ci_last_regenerate|i:1675920024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d077e45695f0cd59d9bf93bfaa804c490b57f087', '172.105.247.100', 1675920025, '__ci_last_regenerate|i:1675920025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8ea01b770e4b4efbce9d32c37aa25a9e219659', '172.105.247.100', 1675920025, '__ci_last_regenerate|i:1675920025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae9520ec62591e9609c233a3eb37d78bfb173aa', '172.105.247.100', 1675920025, '__ci_last_regenerate|i:1675920025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fabb3f51c9afa6df0d879846535a9a9f1abdb21', '172.105.247.100', 1675920025, '__ci_last_regenerate|i:1675920025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c39c6bec926dcd6d569ef177dc9ed33efb23db', '172.105.247.100', 1675920025, '__ci_last_regenerate|i:1675920025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4bd211338cf9674bf46c6443daa1ee6fc1182b7', '172.105.247.100', 1675920025, '__ci_last_regenerate|i:1675920025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749c356baf09e381e94c16e62ec1aee261ba3341', '172.105.247.100', 1675920026, '__ci_last_regenerate|i:1675920025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3758de03bb2e37494512db18a32cc4b03ac7d3', '31.222.203.2', 1675920902, '__ci_last_regenerate|i:1675920902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d767a5f7c6999e095f60caf0298d410fb7c51568', '31.222.203.2', 1675920902, '__ci_last_regenerate|i:1675920902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e60f49170037b0d13fec048f99974967b3136e', '31.222.203.2', 1675920902, '__ci_last_regenerate|i:1675920902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd2d3f5c95a731fc9c67ece5b28d21e9df3195d', '31.222.203.2', 1675920904, '__ci_last_regenerate|i:1675920904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('204852a38965e71de2e974151ca1d0eb94c7d287', '31.222.203.2', 1675920904, '__ci_last_regenerate|i:1675920904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc542d7673da8e92bbf49d7706bb06375276d97d', '31.222.203.2', 1675920904, '__ci_last_regenerate|i:1675920904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d189d3a47b75b7a8a0053e0911b996f4cfd9505', '31.222.203.2', 1675924350, '__ci_last_regenerate|i:1675924350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da723cf577251b23e94e82f9783bde7fa4997c8', '31.222.203.2', 1675924350, '__ci_last_regenerate|i:1675924350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025b3eec80457cc6386e3ede8d17d165ef1ce787', '31.222.203.2', 1675924350, '__ci_last_regenerate|i:1675924350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0568824ab7ddc57a9ca8279479ee0a25aa51d7cd', '31.222.203.2', 1675924351, '__ci_last_regenerate|i:1675924351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5113af3e5aba44dab0fcaf466bb41a82691d2b', '31.222.203.2', 1675924351, '__ci_last_regenerate|i:1675924351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96dc2b74cf89edad5f44c24f8ab71e17d1fe70fe', '31.222.203.2', 1675924351, '__ci_last_regenerate|i:1675924351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4686242504bcee1ebff12911717642c988a5e30', '172.105.247.100', 1675925420, '__ci_last_regenerate|i:1675925420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b72069beb3d0f46ad883d0b86848fd07759230d2', '172.105.247.100', 1675925421, '__ci_last_regenerate|i:1675925421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc35585cba3c9c1adf28b94810ca796e6c8c4e41', '172.105.247.100', 1675925421, '__ci_last_regenerate|i:1675925421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821a1523b0c45da8e479ff4a1f16481d86629a50', '172.105.247.100', 1675925421, '__ci_last_regenerate|i:1675925421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144499b5567402631749a957dd3150d78cd42864', '172.105.247.100', 1675925422, '__ci_last_regenerate|i:1675925422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b766ec4abdd7f0c9ced401b9e6f5abb3ceba09bc', '172.105.247.100', 1675925422, '__ci_last_regenerate|i:1675925422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cdcad9f13e1bc085d7a89fda32d5c6f3bda775f', '172.105.247.100', 1675925422, '__ci_last_regenerate|i:1675925422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1d3601da5caa9408c2435370f54fa3e93cd8f5', '172.105.247.100', 1675925422, '__ci_last_regenerate|i:1675925422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4db5256418d7593e8bb1389c1a2307b369320c67', '172.105.247.100', 1675925423, '__ci_last_regenerate|i:1675925423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b367f3ed0790500eb5c72967cbc1a2971b1050e6', '172.105.247.100', 1675925423, '__ci_last_regenerate|i:1675925423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab1ea40259524ba63b9972c48d5aea177291945', '172.105.247.100', 1675925423, '__ci_last_regenerate|i:1675925423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fd9a0af94fdcdf316313328ce2caaa789b6181d', '172.105.247.100', 1675925423, '__ci_last_regenerate|i:1675925423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239e29ba5e89261e62427fbdb9eaf2882fc08780', '172.105.247.100', 1675925423, '__ci_last_regenerate|i:1675925423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5544ae124abe73e7656c64608dd9c1ea0c59e900', '172.105.247.100', 1675925423, '__ci_last_regenerate|i:1675925423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a64d50f43538e2ab009f7368a0ce6cd8253566', '172.105.247.100', 1675925424, '__ci_last_regenerate|i:1675925424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6826094759c8e6888a7b6229fd0d02c39f6d26b', '172.105.247.100', 1675925424, '__ci_last_regenerate|i:1675925424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b7d9a5963a5fe535aaf3d3f207f3681ed024d2', '172.105.247.100', 1675925424, '__ci_last_regenerate|i:1675925424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2880802fc48e09f89b78e5bd4132e87daaf86a8d', '172.105.247.100', 1675925424, '__ci_last_regenerate|i:1675925424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c632c6ff6782fc9bc7b968ddf93729cb453ffbc3', '172.105.247.100', 1675925424, '__ci_last_regenerate|i:1675925424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52334c3a82ad05fa6cc0c027d7b76037b114f985', '172.105.247.100', 1675925425, '__ci_last_regenerate|i:1675925425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d516064778bad6ef887d60231e8b089f39822a', '172.105.247.100', 1675925425, '__ci_last_regenerate|i:1675925425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3120e48df1a3d3f3c022dbcff0e06bec735e1c6', '172.105.247.100', 1675925425, '__ci_last_regenerate|i:1675925425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81de1addab1685a7181e34b0279976dc1b88c99', '172.105.247.100', 1675925426, '__ci_last_regenerate|i:1675925426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985d1036c0e15330b91b65c8c25ac3572465178f', '172.105.247.100', 1675925426, '__ci_last_regenerate|i:1675925426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db517e3fcf23b51b4f430ff8aa12f45e7663ee06', '31.222.203.2', 1675926236, '__ci_last_regenerate|i:1675926236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5545a71c8e7b7070dddae7b5fc7472293ca8fcc3', '31.222.203.2', 1675926236, '__ci_last_regenerate|i:1675926236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5753380a680cfa2584bc994d16f33d75b582b7', '31.222.203.2', 1675926236, '__ci_last_regenerate|i:1675926236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f1320ddd1e8da8678ebb4bc2b75bcfe9059e070', '31.222.203.2', 1675926239, '__ci_last_regenerate|i:1675926239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9151d2f261af718b91f20a2923d9ac10499f9ef3', '31.222.203.2', 1675926239, '__ci_last_regenerate|i:1675926239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d575bf4afbe2745ca5afc77ac07e639d5ca20f', '31.222.203.2', 1675926239, '__ci_last_regenerate|i:1675926239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132fb5b74a141b1effcd8f42768805e7fda73f95', '31.222.203.2', 1675928093, '__ci_last_regenerate|i:1675928093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdc470653aecbb475ec079b332c60da9bbc389ee', '31.222.203.2', 1675928093, '__ci_last_regenerate|i:1675928093;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fbddf7e74037025ac27f7990d71b2e4107d957c', '31.222.203.2', 1675928093, '__ci_last_regenerate|i:1675928093;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16156327e1521da91e8e6dbff1c0fd38751ba64', '31.222.203.2', 1675928095, '__ci_last_regenerate|i:1675928095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87120a7b00ab5ab05b9a919e2716a63d271e0c70', '31.222.203.2', 1675928095, '__ci_last_regenerate|i:1675928095;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a618ff50fe9a73249c649f606afd79dcb1713912', '31.222.203.2', 1675928095, '__ci_last_regenerate|i:1675928095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1640f3582099b9d785d872a90dbf36b7cdb0059d', '31.222.203.2', 1675929938, '__ci_last_regenerate|i:1675929938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec58328a02688b826f81f7ebc59ae97e7708ff9', '31.222.203.2', 1675929938, '__ci_last_regenerate|i:1675929938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ee7c165cbfdb0c8954dde7b41ba3bb8bcacafd', '31.222.203.2', 1675929938, '__ci_last_regenerate|i:1675929938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a83dd29467221df538a4fd2401dd3e824fb09a6', '31.222.203.2', 1675929938, '__ci_last_regenerate|i:1675929938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63aa3fcb428384bc8a16abc878bad91011463e30', '31.222.203.2', 1675929938, '__ci_last_regenerate|i:1675929938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f151177d62823e341a6c4b1560ad1b85906380', '31.222.203.2', 1675929938, '__ci_last_regenerate|i:1675929938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654c20c1058db902c7438f889993deceeffeab10', '172.105.247.100', 1675930819, '__ci_last_regenerate|i:1675930819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3ac847ed5fe7fe29de19d86a59806baf0b5dfe', '172.105.247.100', 1675930819, '__ci_last_regenerate|i:1675930819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('368449b8a13fce0fb554f9a02122166ef2df7e7a', '172.105.247.100', 1675930820, '__ci_last_regenerate|i:1675930820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cf5134ea451009559c8bfd386fdaccd1e56d6b2', '172.105.247.100', 1675930820, '__ci_last_regenerate|i:1675930820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6907b6f26faae51296f1f11316b3d5fc3549c4', '172.105.247.100', 1675930820, '__ci_last_regenerate|i:1675930820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab7c1ada3119608367b3a27942e17220d2f78ef', '172.105.247.100', 1675930821, '__ci_last_regenerate|i:1675930821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0fd1fe3b79db47b21c782ea79f92fb086365e47', '172.105.247.100', 1675930821, '__ci_last_regenerate|i:1675930821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638abba7bc712c52844c7aab199953822edec7fd', '172.105.247.100', 1675930821, '__ci_last_regenerate|i:1675930821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7921820c8aa58f3b388d1d0d4faddd81037187f2', '172.105.247.100', 1675930821, '__ci_last_regenerate|i:1675930821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b7c1c1aad58a36e4059a0dd9b439f0a942937a', '172.105.247.100', 1675930822, '__ci_last_regenerate|i:1675930822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93217db4b760925db0b7ed36bd73aeb0397fd013', '172.105.247.100', 1675930822, '__ci_last_regenerate|i:1675930822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b959511a55915a66653a7066fb302f84645259', '172.105.247.100', 1675930822, '__ci_last_regenerate|i:1675930822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1c8dbb6eae6f7542ff127bf2b3540d7a75593f', '172.105.247.100', 1675930822, '__ci_last_regenerate|i:1675930822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9cc6e6638e8ac6b1d312e72764502217aca4458', '172.105.247.100', 1675930822, '__ci_last_regenerate|i:1675930822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d519c76550fe867ce801a8038f86e66d54430a', '172.105.247.100', 1675930822, '__ci_last_regenerate|i:1675930822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ab8f3b0256ba8207512456a2e895af757e7513', '172.105.247.100', 1675930823, '__ci_last_regenerate|i:1675930822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf427f940396a4fc80b4a94ac8a64cfb78396968', '172.105.247.100', 1675930823, '__ci_last_regenerate|i:1675930823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc8f48bba987183b484179ce5f13a5d43950dd8', '172.105.247.100', 1675930823, '__ci_last_regenerate|i:1675930823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f195c3292b7a914ece5d658a033412d113724be2', '172.105.247.100', 1675930823, '__ci_last_regenerate|i:1675930823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee98aeaf74eb805ac556bd44478984dfd7f9811f', '172.105.247.100', 1675930823, '__ci_last_regenerate|i:1675930823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('030657a33b2a6f73026370b4abbb966a7a9e9b78', '172.105.247.100', 1675930824, '__ci_last_regenerate|i:1675930824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4729bfddfa38d2aa63a65391ad678e5fa96f34', '172.105.247.100', 1675930824, '__ci_last_regenerate|i:1675930824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1906da4fc3729949c090fb6191b28de296624ff1', '172.105.247.100', 1675930824, '__ci_last_regenerate|i:1675930824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f8a82aec17a18441e4871f0d01402c3d6ec6ca', '172.105.247.100', 1675930825, '__ci_last_regenerate|i:1675930824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b609c675fdadd53486b98c4096739e39a3336e96', '31.222.203.2', 1675935257, '__ci_last_regenerate|i:1675935257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c72d726231c7f97f778e0ba9032073d7f35dcec8', '31.222.203.2', 1675935257, '__ci_last_regenerate|i:1675935257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ffdf6f0afe47371919c5b82aa2a163de89cf951', '31.222.203.2', 1675935257, '__ci_last_regenerate|i:1675935257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b829a520166cc6e296b7056d36109f7e3c55016', '31.222.203.2', 1675935259, '__ci_last_regenerate|i:1675935259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b666f9ea36dceb064785b64efc9514f6a52e4c32', '31.222.203.2', 1675935259, '__ci_last_regenerate|i:1675935259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638c44fc16310cf6f868b0b997276e0f95a415e5', '31.222.203.2', 1675935259, '__ci_last_regenerate|i:1675935259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587a1975756fe4bee2790a890c5babe7896cf018', '37.111.219.95', 1675936156, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f20d538abf8dc284273990f6597bdbf0fdbf3d8e', '37.111.219.95', 1675936156, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023fffecab88d4d30c15ddb58ce43b8602e53479', '37.111.219.95', 1675936156, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39b9c519facfe690d26a696c0aa9a8017f4cdaf', '37.111.219.95', 1675937889, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675937889;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675936365;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30c600e1e4b4c4ff5b30f0ab0c8c3c1376bcf6f', '172.105.247.100', 1675936217, '__ci_last_regenerate|i:1675936217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471a6a705e6b3aaa5841f0362e26376b0d7e04cb', '172.105.247.100', 1675936220, '__ci_last_regenerate|i:1675936220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df3d1419c98f707ec23f353352a213a6b2d188ea', '172.105.247.100', 1675936220, '__ci_last_regenerate|i:1675936220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc5be143f47fcc0272ae49918f48a95abe9ef64', '172.105.247.100', 1675936221, '__ci_last_regenerate|i:1675936221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('203329a0ec014e4c9cf386052045985598a566b2', '172.105.247.100', 1675936221, '__ci_last_regenerate|i:1675936221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14166050d39b05d13d6cdbd344735551d1acd0a0', '172.105.247.100', 1675936221, '__ci_last_regenerate|i:1675936221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344f95980b2129eaef3a729055908a1dcd74524d', '172.105.247.100', 1675936221, '__ci_last_regenerate|i:1675936221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cdaf26ff29dcd34d89e18198671ed4f09e42b5', '172.105.247.100', 1675936222, '__ci_last_regenerate|i:1675936222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecfb7c2086e259dd7308bb0d4558b8a759dcdfa6', '172.105.247.100', 1675936222, '__ci_last_regenerate|i:1675936222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a78af56308d4fbd380c45b4a24642704c3989b', '172.105.247.100', 1675936222, '__ci_last_regenerate|i:1675936222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f90cac367f6f3b2e91c0ed3f3dbe9865fb289dc', '172.105.247.100', 1675936222, '__ci_last_regenerate|i:1675936222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a49b56f325c747cd634605055275808a69aae5f', '172.105.247.100', 1675936223, '__ci_last_regenerate|i:1675936223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41d22503a86aa6d852391ef5d13327b053d97273', '172.105.247.100', 1675936223, '__ci_last_regenerate|i:1675936223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b36ae1c832b4d24b19221d77c1f714eee0535ee', '172.105.247.100', 1675936223, '__ci_last_regenerate|i:1675936223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8f9ee4431e843ddd83a3cd484958f43d454121', '172.105.247.100', 1675936223, '__ci_last_regenerate|i:1675936223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('970d3e654f35c28de415bb118088882dec8ac920', '172.105.247.100', 1675936223, '__ci_last_regenerate|i:1675936223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c19dca0d04e034384475a2aa2df63ea969cd94', '172.105.247.100', 1675936223, '__ci_last_regenerate|i:1675936223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad88478e0a4e376b17802441cd6f152f0426be27', '172.105.247.100', 1675936224, '__ci_last_regenerate|i:1675936224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90894b894baaba05fa5d51f23852baafbb84187', '172.105.247.100', 1675936224, '__ci_last_regenerate|i:1675936224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b111b752c6f005c3f23ddd9c4f35b9b87b453aa', '172.105.247.100', 1675936224, '__ci_last_regenerate|i:1675936224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ade8b9903eab2c8181264f09205cda21ec92c1', '172.105.247.100', 1675936225, '__ci_last_regenerate|i:1675936225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('debd4c5ae802e322902fe7b64c31161a4424aa00', '172.105.247.100', 1675936225, '__ci_last_regenerate|i:1675936225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0552c0cc586f64cdc35fbaaf682a375faed9a7', '172.105.247.100', 1675936225, '__ci_last_regenerate|i:1675936225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbad174b3e77018249b3d3a9bc35ca8cacc5bdf', '172.105.247.100', 1675936225, '__ci_last_regenerate|i:1675936225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b457bf12df1ef60dab5314aab253bddf56aec0d', '37.111.219.95', 1675941914, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675941914;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675937929;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89840e3dc00960115a2c86b9e35bfbf745157c7', '172.105.247.100', 1675941619, '__ci_last_regenerate|i:1675941619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1faf3f13fe15830be15ff1ad7657f1fa8577335', '172.105.247.100', 1675941619, '__ci_last_regenerate|i:1675941619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da23b7441d094f772f8a50a4ac65600ceb860e24', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d1d347508afdd18ef70cb6bacf350eb73c47b47', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55311a90b8968861294bf2352828a2643493ec2', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('676a8f375f6aacabb72314fdce234ab895bc6806', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46234667a67a1838d7408d98e979b0122d7f7c16', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('658494fbb81fcd4ae123b3e798faa7fbbaeb22e3', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980468fb20020c5d21037eea33a30fd0d00c0c2f', '172.105.247.100', 1675941620, '__ci_last_regenerate|i:1675941620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5cdac83aee9eedaaea016589218183c573b2b2', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49e1a2ef072f24de5b9080146b943143a9b37d8', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f19748eb83452d96bae7382514362d7bf75921', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1b88e7abed51377d53c742e20dba2e4687ad60', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8067b223183c9e82be57e95ec0367dfb08adcb7b', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff73f1bc03491cd11eab659fce31bc340563cd91', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd6db0e2191ffb7e5ce4afc58d60c53c51eedaf', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b1ac432d06f4faf1a6869906781eef39eb58ac', '172.105.247.100', 1675941621, '__ci_last_regenerate|i:1675941621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced9e86f5fca83d2bbd23f9d0f63d255ab1149f1', '172.105.247.100', 1675941622, '__ci_last_regenerate|i:1675941622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7642cd55ffa837f28ede0efacdf6c23861c415', '172.105.247.100', 1675941622, '__ci_last_regenerate|i:1675941622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e6c2d709554b12069f800f320ce89acfcfa7e1', '172.105.247.100', 1675941622, '__ci_last_regenerate|i:1675941622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4db52d830c0c27ee6f718a536526a25b192a10', '172.105.247.100', 1675941622, '__ci_last_regenerate|i:1675941622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23da9f51f004d020340d65a97bfa0dfb083a786c', '172.105.247.100', 1675941622, '__ci_last_regenerate|i:1675941622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c54d686af013025663ab6094348feb25cbf4bb', '172.105.247.100', 1675941623, '__ci_last_regenerate|i:1675941623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c753d52b9591db57bfc7e951687ef6e345c4025', '172.105.247.100', 1675941623, '__ci_last_regenerate|i:1675941623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c562f2743d85b339fbf8e48d9fd51089255b9b1', '37.111.219.95', 1675947245, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675947245;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675941927;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdbb0f688f63e03602db9baa9efe1834dd26def8', '31.222.203.2', 1675942357, '__ci_last_regenerate|i:1675942357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('495d096e5af4ddf8a001a22beeb5bc9ed5a891b2', '31.222.203.2', 1675942357, '__ci_last_regenerate|i:1675942357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e92ebdaabace28b314aad6d3a360fb5db15c5a06', '31.222.203.2', 1675942357, '__ci_last_regenerate|i:1675942357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a2b8f025489e1eae12f93069430ac1f55aab2f', '31.222.203.2', 1675942357, '__ci_last_regenerate|i:1675942357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf39e1cc00a38e8ec14edcf1a4ae1b81574ab8d', '31.222.203.2', 1675942358, '__ci_last_regenerate|i:1675942358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6dd668b9fe1684d11a38b1c1655fedff03a5061', '31.222.203.2', 1675942358, '__ci_last_regenerate|i:1675942358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3943aba0d46cbc3d0d7300d41082954d79185af5', '31.222.203.2', 1675944309, '__ci_last_regenerate|i:1675944309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeed9da664af95ae932af00d70dc135d410dc647', '31.222.203.2', 1675944309, '__ci_last_regenerate|i:1675944309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1230bc5bfaf21aab5bbae40668c94f3f66b3138', '31.222.203.2', 1675944309, '__ci_last_regenerate|i:1675944309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e97075372901e18a3a06e280dbe9674756b58d', '31.222.203.2', 1675944311, '__ci_last_regenerate|i:1675944311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74de9c1095660e3b9d92f2f40c8f356c0fe7f4c', '31.222.203.2', 1675944311, '__ci_last_regenerate|i:1675944311;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b710361c088c6c788f55c3589a8550bd824cf616', '31.222.203.2', 1675944311, '__ci_last_regenerate|i:1675944311;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077b9500c6fcdaa8c03238daf6a4da97fe9f6290', '172.105.247.100', 1675947017, '__ci_last_regenerate|i:1675947017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c600f23b472d0177a8ca13dcb6f78330c8ea1a', '172.105.247.100', 1675947017, '__ci_last_regenerate|i:1675947017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b42466f2eaa3d149d153893d1fdd273e22ed0f', '172.105.247.100', 1675947018, '__ci_last_regenerate|i:1675947018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154cbbcf42ecc28903667cbed5969cc970668db5', '172.105.247.100', 1675947018, '__ci_last_regenerate|i:1675947018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9b0eb11142ab5166e0037a21321249f90c78c4', '172.105.247.100', 1675947018, '__ci_last_regenerate|i:1675947018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232f09abdf6aea0d478fed2768d22fd009c0d7f2', '172.105.247.100', 1675947018, '__ci_last_regenerate|i:1675947018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d173841a68a15d40404690fed3e6c9499a5ee6', '172.105.247.100', 1675947019, '__ci_last_regenerate|i:1675947019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e607cd6c73b77ed6e68a9ca28811d515c510cc7', '172.105.247.100', 1675947019, '__ci_last_regenerate|i:1675947019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705c23757f0e8e42c859a30a105f261fa7dbc660', '172.105.247.100', 1675947019, '__ci_last_regenerate|i:1675947019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ddacdbcf8c27753623070ef0a50a086694f43c8', '172.105.247.100', 1675947019, '__ci_last_regenerate|i:1675947019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f14d78551a1f534143c8b6096548a934379f86', '172.105.247.100', 1675947019, '__ci_last_regenerate|i:1675947019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62415535dca942979bd308a5ca1e66f413ce6c7c', '172.105.247.100', 1675947020, '__ci_last_regenerate|i:1675947020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7facff587bfe969f0a12c718dec69e3151167801', '172.105.247.100', 1675947020, '__ci_last_regenerate|i:1675947020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947710d39c7b933acfe42090e951646ba82d17a7', '172.105.247.100', 1675947020, '__ci_last_regenerate|i:1675947020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1959f9186b65d7be90b7dca5d02183e89ce3d4c', '172.105.247.100', 1675947020, '__ci_last_regenerate|i:1675947020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb22b74395ed48b98dbf2103c906eea4a185aba1', '172.105.247.100', 1675947020, '__ci_last_regenerate|i:1675947020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aef393b981ca3c172081737c1d48c9d08431f222', '172.105.247.100', 1675947020, '__ci_last_regenerate|i:1675947020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f96fc32df7a48b6f08ede50240acfb784ea12a', '172.105.247.100', 1675947021, '__ci_last_regenerate|i:1675947020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0efe5d597644050dfc03e5dc027cc52374a1db2e', '172.105.247.100', 1675947021, '__ci_last_regenerate|i:1675947021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5999abe3c7d4aea0f24b04151742dc74f225f15f', '172.105.247.100', 1675947021, '__ci_last_regenerate|i:1675947021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a39d4a333981820672b07c3bb61749feb213fc', '172.105.247.100', 1675947021, '__ci_last_regenerate|i:1675947021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90eaf92a105bb1fe999bc583eda3a646b92a464', '172.105.247.100', 1675947022, '__ci_last_regenerate|i:1675947022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b205841ae386c71e4d5987419e8ea5ec1bc14e9b', '172.105.247.100', 1675947022, '__ci_last_regenerate|i:1675947022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34e0a9899123c5cec9f2b4c834f6d12be6f4919', '172.105.247.100', 1675947022, '__ci_last_regenerate|i:1675947022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcfa9cc016e9253941e4138cdc03b8f703858aba', '37.111.219.95', 1675947775, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675947775;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675947245;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5a6e89f9b10dd743f052f4e028390471eebca1', '37.111.219.95', 1675948116, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675948116;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675948110;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a43bb027099eada923afb1b0f9be07e30a90512c', '37.111.219.95', 1675953712, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675953712;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675948262;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113fdfea5edaf689f0b97e1cd07cbf09e6db1955', '31.222.203.2', 1675949632, '__ci_last_regenerate|i:1675949632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce8ea71a6b9853ae620be64ed667ab5f09a23f7', '31.222.203.2', 1675949632, '__ci_last_regenerate|i:1675949632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca117c02e6d0cb7d3d9a1e6d3f84af263ff2d92', '31.222.203.2', 1675949632, '__ci_last_regenerate|i:1675949632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb40f23e3f0f47c8a34a93edaecee48f5afb206', '31.222.203.2', 1675949632, '__ci_last_regenerate|i:1675949632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8283daa2c940f524db83d30340d3028bb0c6c0f', '31.222.203.2', 1675949632, '__ci_last_regenerate|i:1675949632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca5a2cb060bc8068d9d09367407508712773e43', '31.222.203.2', 1675949632, '__ci_last_regenerate|i:1675949632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27fbf0a80aa59d5158d32a1c727b3b3736b72cdd', '167.94.138.118', 1675950343, '__ci_last_regenerate|i:1675950343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0786a01b75896685c97cbcaa6502c827f1665f54', '167.94.138.118', 1675950343, '__ci_last_regenerate|i:1675950343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4130147d5265d25216a4cc83d6a6a4600450285', '167.94.138.118', 1675950344, '__ci_last_regenerate|i:1675950344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f25d83844d958c1f0c02196a6495f86e234ce3c', '167.94.138.118', 1675950344, '__ci_last_regenerate|i:1675950344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe6d3d6c98d67b21a0f476bb5d30e325a615130d', '167.94.138.118', 1675950344, '__ci_last_regenerate|i:1675950344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e3e60c707294961b32c4a5ee3abd20362ce089', '167.94.138.118', 1675950344, '__ci_last_regenerate|i:1675950344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c625fbc99497fa621d2aa5dbdb6881b2f26bef', '31.222.203.2', 1675951461, '__ci_last_regenerate|i:1675951461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe8a65abd3a1b7a5787860362253a2bd6fc0bc0', '31.222.203.2', 1675951461, '__ci_last_regenerate|i:1675951461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c854beafb531185e350e56a2303a1c745fb8c8e', '31.222.203.2', 1675951461, '__ci_last_regenerate|i:1675951461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08c6acf841b770125b1cfeb64beff11b0041e8d', '31.222.203.2', 1675951463, '__ci_last_regenerate|i:1675951463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e97e68d5c145168f55e6d97e081ff1ea4cbc47e', '31.222.203.2', 1675951463, '__ci_last_regenerate|i:1675951463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f502a186b70a3be7700ea590153014645e546aa', '31.222.203.2', 1675951463, '__ci_last_regenerate|i:1675951463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c886855fd301a07639902321aff812ea1ae1fbe8', '172.105.247.100', 1675952424, '__ci_last_regenerate|i:1675952424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab3292ef787757b22e30e77e59022d6bedec593', '172.105.247.100', 1675952425, '__ci_last_regenerate|i:1675952425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa7783db5fe5b8b0d327cc56fd14c9da079ee30f', '172.105.247.100', 1675952425, '__ci_last_regenerate|i:1675952425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8dc623221568d01be40e07433ccaaaf2be8b54', '172.105.247.100', 1675952425, '__ci_last_regenerate|i:1675952425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1b589de468f4a2478b6df44d72c014dbbb5e60', '172.105.247.100', 1675952425, '__ci_last_regenerate|i:1675952425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838170481f827eba26943a7dae9b40b2147c9fde', '172.105.247.100', 1675952425, '__ci_last_regenerate|i:1675952425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3fdc7e5c2f66b6620f93000fe030e4b38b9840c', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4a00e51fb182b048f73793ac93540b5f634501', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef919527f15050553ae2811b9f46f231eff67eb', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a57665f4f90e652813cac3e69a0ba49521efdd8a', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc67d618d4e62e0103842ccbf8c0cb1ca43c72a1', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80840c572cff03ffdca54f0c4d4c17b72711c221', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5cb692df7957fe89b80e579a32a4fffb9f2eaac', '172.105.247.100', 1675952426, '__ci_last_regenerate|i:1675952426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bc66d6af7729b48e480b5cf5dea87c48086823', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e891c01267550393d24cdf84e4a36972b0d26e9', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c952b222a1f9ff88b76ab6f513a8474ecbd93d1', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe6acbd5fa17aa62402f31e90ae86dd00581b00', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3adf0c6e15feb7c37e6f63b19e02d15077a81cd2', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11450d6abff89ec67e35be68a6e2e83a10a997dc', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('087ee8975310c480136f25c9c1838c82b7e9db77', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e7a23b03b88bb28b9f465da0838f2ee8819c67e', '172.105.247.100', 1675952427, '__ci_last_regenerate|i:1675952427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866e1502fe0bdd0f89c77eab373ab10dc775754d', '172.105.247.100', 1675952428, '__ci_last_regenerate|i:1675952428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672b22034479ff591d45c11178e511e724bfce53', '172.105.247.100', 1675952428, '__ci_last_regenerate|i:1675952428;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7c3b95309296771e9b99fdb93f223d53a6c6d0', '172.105.247.100', 1675952428, '__ci_last_regenerate|i:1675952428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe8c66fd718fa5dec4b7ac4c1e22cb6fe11901b', '31.222.203.2', 1675953302, '__ci_last_regenerate|i:1675953302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098e9028a19a040577e47c758b747a75604535be', '31.222.203.2', 1675953302, '__ci_last_regenerate|i:1675953302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb520d2a523b95fcb43e57119c09f6c3831fd85b', '31.222.203.2', 1675953302, '__ci_last_regenerate|i:1675953302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd28f0271b244aa781c6086817f2f2a5a1e9a650', '31.222.203.2', 1675953302, '__ci_last_regenerate|i:1675953302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1711fb6c0aa6b372f9f9fa24e4db0183bbb274e6', '31.222.203.2', 1675953303, '__ci_last_regenerate|i:1675953303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2570b7f767af91200258577d74dc1107540a30', '31.222.203.2', 1675953303, '__ci_last_regenerate|i:1675953303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa51839ded1eb1052d66a535036e59231fdf324f', '45.120.39.89', 1675954057, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675954057;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675954050;register_id|s:3:\"336\";cash_in_hand|s:9:\"3630.0000\";register_open_time|s:19:\"2023-02-09 11:10:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e82a3736b31b91e28f096bd225587746024d68d3', '45.120.39.89', 1675954074, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1675954057;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675919222\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1675954073;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2626076281085c6fcbe95aceaa4205c28be31740', '172.105.247.100', 1675957819, '__ci_last_regenerate|i:1675957819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afcd26caac1c729fb6f3be561a40c5f0bbd06368', '172.105.247.100', 1675957819, '__ci_last_regenerate|i:1675957819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102781bf68176d1b5f7f85b5dc8ed4faf1e4f244', '172.105.247.100', 1675957819, '__ci_last_regenerate|i:1675957819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b042b61e51cea45072f66bc077c8f82e4f210b8b', '172.105.247.100', 1675957820, '__ci_last_regenerate|i:1675957820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a94983e1d25ecfc154f918eea9b9bbe012be9b', '172.105.247.100', 1675957820, '__ci_last_regenerate|i:1675957820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9b51f58e3059a862065b3a56239b2c5bf7d537', '172.105.247.100', 1675957820, '__ci_last_regenerate|i:1675957820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa530be14f343873211aaf5bc44794e184dcdfd', '172.105.247.100', 1675957820, '__ci_last_regenerate|i:1675957820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ff57066e9ea960af9e081f43be4b242a58900a', '172.105.247.100', 1675957820, '__ci_last_regenerate|i:1675957820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f269cbb64916b61b54b58257c3951556ee532b4', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5758ed6716c185b2e20bce3f7233a7a94bd796bb', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7077adb4f8ede923bc79802b8fc13cd13934f4cf', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96472f86aa790d7adcd950dd1b2f78dada0ccba2', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380a5ecb9e81d23b67b195c185fbfe3a6bbc8048', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735a6b5250a0a0dae8ae19ee89d4ca8101c69686', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2628593499db6d112f7815cecf0058f1b0de9687', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110ec1b90a22e4071a20bdc851b17698fcbcb6d3', '172.105.247.100', 1675957821, '__ci_last_regenerate|i:1675957821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d8a9f56076577c2c213ca867bb9477776e4f31', '172.105.247.100', 1675957822, '__ci_last_regenerate|i:1675957821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343de39f213016157b5e8a29e74859b1a952e277', '172.105.247.100', 1675957822, '__ci_last_regenerate|i:1675957822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2030d6077b915e860fb876d8deca930f5ce98f4', '172.105.247.100', 1675957822, '__ci_last_regenerate|i:1675957822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc5245a412f57e5dac4272edeb28bedfdca94fd', '172.105.247.100', 1675957822, '__ci_last_regenerate|i:1675957822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef679c7d5bf6936a59575275488b16e5baa206b6', '172.105.247.100', 1675957822, '__ci_last_regenerate|i:1675957822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806785e4ae5da2f609610f7957c245d48d63827c', '172.105.247.100', 1675957823, '__ci_last_regenerate|i:1675957823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0ae5b79afd381f401a3af414dc4dc8bfaa60b0', '172.105.247.100', 1675957823, '__ci_last_regenerate|i:1675957823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6b1f15ca22448922900500eb14e637db818e7f', '172.105.247.100', 1675957823, '__ci_last_regenerate|i:1675957823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a747c077ebb48a232e2b61e93a49467a41a2d18c', '31.222.203.2', 1675958629, '__ci_last_regenerate|i:1675958629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c43c92cf2f4e3385a81e767fdf86a5fc9f69b79', '31.222.203.2', 1675958629, '__ci_last_regenerate|i:1675958629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3c83e48a938adaaeac9527e17d143de5f9f9dd', '31.222.203.2', 1675958629, '__ci_last_regenerate|i:1675958629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f56b9bc6d9cce4ba871b8e10751eea7d27ac57', '31.222.203.2', 1675958631, '__ci_last_regenerate|i:1675958631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('664cc7f00365918596acaf7597a089c78361867d', '31.222.203.2', 1675958631, '__ci_last_regenerate|i:1675958631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d69cf3cf3c474914654164a15d7706b0e2c9575', '31.222.203.2', 1675958631, '__ci_last_regenerate|i:1675958631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7bb3d3c97df0d129d93482fda6bc319f5f1e159', '31.222.203.2', 1675960458, '__ci_last_regenerate|i:1675960458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b588cf44581688793d6f7ede808de2d01af9296', '31.222.203.2', 1675960458, '__ci_last_regenerate|i:1675960458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9750d81ee109a8262ecfa37c3df21d31ccd41bb1', '31.222.203.2', 1675960458, '__ci_last_regenerate|i:1675960458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7c30321e487e75a379c8edcc0f2630e3734ea0', '31.222.203.2', 1675960460, '__ci_last_regenerate|i:1675960460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f46d7f7a44a807f5e8759ee746359e3ce0ed0e', '31.222.203.2', 1675960460, '__ci_last_regenerate|i:1675960460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2aa0837b739a0f5bdadec1098de90c2df7e4c2', '31.222.203.2', 1675960460, '__ci_last_regenerate|i:1675960460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7036588ef6845eb825c0d5cd29e14b8ab5d1f806', '172.105.247.100', 1675963218, '__ci_last_regenerate|i:1675963218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e0e5549c4759032c873bc1df1c628c7c8bbd7d', '172.105.247.100', 1675963218, '__ci_last_regenerate|i:1675963218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acbc3d1f227f8836134bb467eff44c89c28cf8f', '172.105.247.100', 1675963218, '__ci_last_regenerate|i:1675963218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6749f5065340e96ecb43f36a823a610f0b9af3f3', '172.105.247.100', 1675963219, '__ci_last_regenerate|i:1675963219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be87985c0608cc195f7c766e7ebb607f0fd1b518', '172.105.247.100', 1675963219, '__ci_last_regenerate|i:1675963219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb42754465030aa022b97c46327b8fff2b487ae4', '172.105.247.100', 1675963219, '__ci_last_regenerate|i:1675963219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e5d55aaa3a2ad6144723b21ee1a93f31f80597', '172.105.247.100', 1675963219, '__ci_last_regenerate|i:1675963219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0c7a3f1dda911572032eb8521cf0a6cd5c4bd9', '172.105.247.100', 1675963220, '__ci_last_regenerate|i:1675963220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b48f96642fb002ee89e4e7c44f16c213327f1a', '172.105.247.100', 1675963220, '__ci_last_regenerate|i:1675963220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23578ac3f2c39266a9c5b1b641a580611688b5a7', '172.105.247.100', 1675963220, '__ci_last_regenerate|i:1675963220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad4322a0a9597af95703f6359be436db7f43ddf', '172.105.247.100', 1675963220, '__ci_last_regenerate|i:1675963220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e86edc8dc501ab674603c863091d275bafc4d7f4', '172.105.247.100', 1675963220, '__ci_last_regenerate|i:1675963220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce8de8fc1fc3baa33a06e94b5e0031dfdc774cf', '172.105.247.100', 1675963220, '__ci_last_regenerate|i:1675963220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d68702176c95c50969e13ce92a24e812caa669', '172.105.247.100', 1675963221, '__ci_last_regenerate|i:1675963220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7120871b2d3d248d8407845b0f573481986436', '172.105.247.100', 1675963221, '__ci_last_regenerate|i:1675963221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf736f8dcfa80beaed243017bd89f6e02b2ffb2', '172.105.247.100', 1675963221, '__ci_last_regenerate|i:1675963221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a968cab16641437d28e7d3e685a3229b4f0cdc73', '172.105.247.100', 1675963221, '__ci_last_regenerate|i:1675963221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3601ee6d815d996f6b769be69dd6fbe64b556362', '172.105.247.100', 1675963221, '__ci_last_regenerate|i:1675963221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251ed11cf7e092181ab92c7b1acca50e10724808', '172.105.247.100', 1675963221, '__ci_last_regenerate|i:1675963221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae0ad2dd5606942c870911cbe696e0adfc5d5b2', '172.105.247.100', 1675963222, '__ci_last_regenerate|i:1675963221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e280de7eea721f0ebed0b1db1d9fe8b8d6578162', '172.105.247.100', 1675963222, '__ci_last_regenerate|i:1675963222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8348e9265bf4adafee76e726338239bc6dfc6332', '172.105.247.100', 1675963222, '__ci_last_regenerate|i:1675963222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe866731a02086e44f0410e46b0aecdebc3ed212', '172.105.247.100', 1675963222, '__ci_last_regenerate|i:1675963222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa122c5bc87a369739d4aea556a30f25d605db57', '172.105.247.100', 1675963223, '__ci_last_regenerate|i:1675963223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a261ff8b17c4ab20b586a57964da60d63c538beb', '31.222.203.2', 1675965860, '__ci_last_regenerate|i:1675965860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c57aa4f0ae867c9464ccf6f176b6609db6fba4e', '31.222.203.2', 1675965860, '__ci_last_regenerate|i:1675965860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020cf4ada01ed77e509819176fca3ab555f093a3', '31.222.203.2', 1675965860, '__ci_last_regenerate|i:1675965860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd70b1b1365b887606abb9c593f2fa64cee32af9', '31.222.203.2', 1675965860, '__ci_last_regenerate|i:1675965860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f85460e3d02e7aaaac6051f80ce003ca8abc7745', '31.222.203.2', 1675965860, '__ci_last_regenerate|i:1675965860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be40632a112b5904b5bcbd50536fb19b44b31be', '31.222.203.2', 1675965860, '__ci_last_regenerate|i:1675965860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f3c55c22e38516694a46c618048f1d2b6fc97b', '31.222.203.2', 1675967719, '__ci_last_regenerate|i:1675967719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32ffb7c1abc0a31cd547dbebe0cd4dcd4aa063bf', '31.222.203.2', 1675967719, '__ci_last_regenerate|i:1675967719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b5520a4da534d4471b42e164606d8368cccf64', '31.222.203.2', 1675967719, '__ci_last_regenerate|i:1675967719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee61cdc293f0ed5b59f0856a64aeb32de541357c', '31.222.203.2', 1675967721, '__ci_last_regenerate|i:1675967721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372b8248bbcc89836f3c1613afbbcbe9e0045be2', '31.222.203.2', 1675967721, '__ci_last_regenerate|i:1675967721;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb1bef7d6734322d4edee893a69e45e42c472140', '31.222.203.2', 1675967721, '__ci_last_regenerate|i:1675967721;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b80d9249d4b4659a0b5d4e85d9e7e9d0a518b9', '72.167.51.34', 1675967891, '__ci_last_regenerate|i:1675967891;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4e696b663ccf288e97913fc834656d5aa379e8', '72.167.51.34', 1675967892, '__ci_last_regenerate|i:1675967892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a65fa07b8e84dcd1f3f344a7f3e92921607e4ef0', '72.167.51.34', 1675967893, '__ci_last_regenerate|i:1675967893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c2caa683d778f80a9c9728ef894b780ebf2579', '72.167.51.34', 1675967893, '__ci_last_regenerate|i:1675967893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4a0269f53cf661a599ab33986d80140f9215945', '172.105.247.100', 1675968620, '__ci_last_regenerate|i:1675968620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3306b16d3abce9254e2f369a42edb476300670', '172.105.247.100', 1675968620, '__ci_last_regenerate|i:1675968620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b07d0c6731d501af3668f3910f19b4bda1def2d3', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0aa87156d2d814cd53e2616609d9718ab1289c', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba34312dd7b450fcc91fa7acccaafda48f82b27d', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45733825f26e55783e5c30f171ebba3f6e66f43', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('594cc6b7e34529e5d35e1b37604c54c3e4e79fe9', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9625271b34ec5a3fa7f8930d0b616bccf3793fd', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2aea52b3dc01d7c76e0e0f770d6b5446d5f82e', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1545dd7e28f95d815a16b5a4309c0384b3f331', '172.105.247.100', 1675968621, '__ci_last_regenerate|i:1675968621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78950daeccb9e1500b39201c1f567487c4abb337', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ee980389407d07e7b4d4e60a530e70512f7b17', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7844816dbf112191313bfda0757ce7e68a4b3a51', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021d936051e903ebf317f94218067ab9963d1e5a', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9746ae9ceb1e3f0c143ec8879b8f7065b027d02', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63acb33d8d075f6f6fe97ade88a06a7fd378596e', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cf7b1d5507822618237ad2ff246ca3c6eea1b8', '172.105.247.100', 1675968622, '__ci_last_regenerate|i:1675968622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb986c38f6b5ed29f2774f3fad27077137db6c10', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a163aaf8aadb92fa5e59947119a0b76885808b2', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4795418d90c703f2005552269b968db5fd7df29a', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c1444afacbe98c6887b958fad1acdfc47a0dc1', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00b52fde3adf083accbc7ddc2e0111c3158465f', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8a635d58dd67a3c44a64a54b14fb90c72929aa', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e663f9556d4163e049ef0c20d9291f1051f9d8', '172.105.247.100', 1675968623, '__ci_last_regenerate|i:1675968623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d50d094c965ba53428441e87a6c4aa780a986f', '31.222.203.2', 1675971155, '__ci_last_regenerate|i:1675971155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b562f19fdc2907add910566aa7914b3da97de7', '31.222.203.2', 1675971155, '__ci_last_regenerate|i:1675971155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35b919503511930008baf638f2f7ee009aa5e668', '31.222.203.2', 1675971155, '__ci_last_regenerate|i:1675971155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9344efe26e3a067b83ebf9f63859ba719de7e8', '31.222.203.2', 1675971157, '__ci_last_regenerate|i:1675971157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2344bc1cc6661207591005457ca16d03cd2556', '31.222.203.2', 1675971157, '__ci_last_regenerate|i:1675971157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8210ed0c23d4cccdc83040cd7df001df56fe3371', '31.222.203.2', 1675971157, '__ci_last_regenerate|i:1675971157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4e28f4b71f844ef8cba8d823b8f9fd4b14516a', '31.222.203.2', 1675973103, '__ci_last_regenerate|i:1675973103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73942e0c68f5277d361179e1f54e139d1a00b40c', '31.222.203.2', 1675973103, '__ci_last_regenerate|i:1675973103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ca16399ff6df9b6992282e3bc6360d15f74fa6', '31.222.203.2', 1675973103, '__ci_last_regenerate|i:1675973103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666e06a19ee31028c03ded6f64672e73b13169c6', '31.222.203.2', 1675973103, '__ci_last_regenerate|i:1675973103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624f4d2b73ce807a6b3199491ee3b760224c90db', '31.222.203.2', 1675973103, '__ci_last_regenerate|i:1675973103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aafd12b6cabbc474433718ea55e9af0faeb4cc6', '31.222.203.2', 1675973103, '__ci_last_regenerate|i:1675973103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f61a18298edd3a73257890ca94ec201c564fe74', '172.105.247.100', 1675974019, '__ci_last_regenerate|i:1675974019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18987347cdb5b1c8fb12ca89bb304d82ebb27aae', '172.105.247.100', 1675974020, '__ci_last_regenerate|i:1675974019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f67354b05dd20817954d790cd1f7afd10cecbb', '172.105.247.100', 1675974020, '__ci_last_regenerate|i:1675974020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ea512ed1727d5aec5a2ec42994b79dd7ba9be5', '172.105.247.100', 1675974020, '__ci_last_regenerate|i:1675974020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab2ec71d0bf1f4c4a823713e007498247f731b8', '172.105.247.100', 1675974020, '__ci_last_regenerate|i:1675974020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082db58897b8f64a4ec0d29b5781d616d5192131', '172.105.247.100', 1675974021, '__ci_last_regenerate|i:1675974020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce2663c78e497fe7c401fab2b4718fff168a720', '172.105.247.100', 1675974021, '__ci_last_regenerate|i:1675974021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdecd94ab1ce7b503440753fd8f5818ee2ca48b2', '172.105.247.100', 1675974021, '__ci_last_regenerate|i:1675974021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1375c609d8d6d6d8270b09273faa37bc93928f6', '172.105.247.100', 1675974021, '__ci_last_regenerate|i:1675974021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4642d9b442767a6ced1fbed39f6388869aeefab', '172.105.247.100', 1675974022, '__ci_last_regenerate|i:1675974022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cfcaa36e7ae216c5e41cd099dee505c56bfa55b', '172.105.247.100', 1675974022, '__ci_last_regenerate|i:1675974022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d22ab1f644ab07aa4b508b8ae43f24d4c7caed7', '172.105.247.100', 1675974022, '__ci_last_regenerate|i:1675974022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c4d511bd704999201b759220bc9493fa10af2d', '172.105.247.100', 1675974022, '__ci_last_regenerate|i:1675974022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7f1e29616c9c7fabddd704035d72beb4f8ab169', '172.105.247.100', 1675974022, '__ci_last_regenerate|i:1675974022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6222c3aaa8d630f1c2aaf4b67cb06d6d3607cf0', '172.105.247.100', 1675974022, '__ci_last_regenerate|i:1675974022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d295dca22165a6556bbb2f68d770961887544324', '172.105.247.100', 1675974023, '__ci_last_regenerate|i:1675974022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c390f3b1ab22ae46e578b09427da21b81f12298', '172.105.247.100', 1675974023, '__ci_last_regenerate|i:1675974023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdde966f13f1024c421cd990394ddc1654d6b5f0', '172.105.247.100', 1675974023, '__ci_last_regenerate|i:1675974023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2717c18e0c25c0ca3f2c1c06657e508bea24cfa3', '172.105.247.100', 1675974023, '__ci_last_regenerate|i:1675974023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae414ad7afad935ef2b530f36584d9567062fa0f', '172.105.247.100', 1675974024, '__ci_last_regenerate|i:1675974023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca533e03126071343bfddd5745ecfbe34005e85e', '172.105.247.100', 1675974024, '__ci_last_regenerate|i:1675974024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812ca15a77b252f41e9947451a2637b417f1cd9e', '172.105.247.100', 1675974024, '__ci_last_regenerate|i:1675974024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b68ac8a41169f72588c03b48ac5ce9ace110b03f', '172.105.247.100', 1675974024, '__ci_last_regenerate|i:1675974024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542a6058b53be547d85c0789799e478cb0de2be9', '172.105.247.100', 1675974025, '__ci_last_regenerate|i:1675974025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a775befe1a61e6b188f5ff85866579362b8c559', '159.223.168.91', 1675974760, '__ci_last_regenerate|i:1675974760;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa49f37c55167497b138c1681fec9e35ac3a25fa', '159.223.168.91', 1675974762, '__ci_last_regenerate|i:1675974762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d4a077d5d6bc677fa8480fe3a8909818e3be0f9', '159.223.168.91', 1675974762, '__ci_last_regenerate|i:1675974762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('124d3a01cbecf5b74a77fa418cfb011a6ba2d37d', '159.223.168.91', 1675974762, '__ci_last_regenerate|i:1675974762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec7507b2c17aa13d5320c1c93dcada274e79913', '172.105.247.100', 1675979417, '__ci_last_regenerate|i:1675979417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470eb5321a4066739739ea169fb8790c5e8f0c6f', '172.105.247.100', 1675979417, '__ci_last_regenerate|i:1675979417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdda51c6209515fd183d2c9db98a6a89f8fd27e3', '172.105.247.100', 1675979417, '__ci_last_regenerate|i:1675979417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b8a360099097b9107618139da0ebaabe8fd63b3', '172.105.247.100', 1675979417, '__ci_last_regenerate|i:1675979417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f568a7b09ba55a680fa171856542ebce07a6d78', '172.105.247.100', 1675979417, '__ci_last_regenerate|i:1675979417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40361d4c7cddb92c00319206980efed5d9a86ec1', '172.105.247.100', 1675979417, '__ci_last_regenerate|i:1675979417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a82f37331bd4ed9b35b9ae575c5255dafe5476d0', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a0a6b5e534b6d728b57fefb9a845564112ffa8', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0929cfd8b28fcb81d9e4c683d49a33b1248821b', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b64a90221b34aa321521e59cd7ff747c5c698b', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe60de7f26eb8187e1f3e80cb7ff5a346cd3019', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c729a0aa2ac25dd61008d7aab9e566d74c02b812', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1570e5d1cdbe80472858a2428f6e09da6ee00cbd', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7036eec42d806771ae93b9598f8f367f339124', '172.105.247.100', 1675979418, '__ci_last_regenerate|i:1675979418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b76c81b54ed1351a570a5f0990e37edc9a752c16', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409447d2d57b1e78ae5335e5f742933c07a633c3', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc0d2569538c314cc801fe0e2fc242f461132d6', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02cceda0b0d89c39aee32577049ea6f48ea157c1', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f6d7ed2286731bd486bc43d661913323576424c', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488700fda01942d8afbaf1bc9c6fa2af33653dff', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8f203c08dc3489f0cc19f88c8557831b1cd233', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5292848ab0b070601f3cc7f224adc60ea5c078e8', '172.105.247.100', 1675979419, '__ci_last_regenerate|i:1675979419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0d416258aebd62073d9e36c086262a5f9da975', '172.105.247.100', 1675979420, '__ci_last_regenerate|i:1675979420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54707e5da1d2beb15e5092aa44e8dec189a03b7', '172.105.247.100', 1675979420, '__ci_last_regenerate|i:1675979420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8e3682896d2b879cbd72d698eead930086d7e0', '31.222.203.2', 1675980158, '__ci_last_regenerate|i:1675980158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4b616385c75fc9ad45a6208252d5e788253f3b', '31.222.203.2', 1675980158, '__ci_last_regenerate|i:1675980158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16145bf642db2b8678af68fa7467b00541ec95a3', '31.222.203.2', 1675980158, '__ci_last_regenerate|i:1675980158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1473e75054ccc1ae646854a7a798f34d48f486f3', '31.222.203.2', 1675980160, '__ci_last_regenerate|i:1675980160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91b84be3a6b0efc13d8e32c46f54ea59f9a230a2', '31.222.203.2', 1675980160, '__ci_last_regenerate|i:1675980160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85190b3b29c70ffb601f586eb1de4032e60145b0', '31.222.203.2', 1675980160, '__ci_last_regenerate|i:1675980160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5dfa0ec614adffe99a5a7937637d65f396474a4', '31.222.203.2', 1675982039, '__ci_last_regenerate|i:1675982039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0efeee1da0c1bcf917215b6b693137d62f6e9c0', '31.222.203.2', 1675982039, '__ci_last_regenerate|i:1675982039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7361a6f79a25f770dfcfb64e9b1e31c1078280', '31.222.203.2', 1675982039, '__ci_last_regenerate|i:1675982039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813ef1be18eaecd72ebbd2c2b3928ae1fee699f9', '31.222.203.2', 1675982039, '__ci_last_regenerate|i:1675982039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7419c11c8c2053d626dd600a3fd00a6982de8e8b', '31.222.203.2', 1675982039, '__ci_last_regenerate|i:1675982039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b4889c254a7028a9ce054a85eea16807198d34f', '31.222.203.2', 1675982039, '__ci_last_regenerate|i:1675982039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa5ce4e4f95247dbddca4f2fd914501397449b41', '31.222.203.2', 1675983905, '__ci_last_regenerate|i:1675983905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bccb7d0d6a8c0914932d8c66dfa785006871b989', '31.222.203.2', 1675983905, '__ci_last_regenerate|i:1675983905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fadad0df95786a1c1a570aa8c00dea4eab2e11c', '31.222.203.2', 1675983905, '__ci_last_regenerate|i:1675983905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d0b2a736cafe6ab099bbe4ee31130bea71f3d4', '31.222.203.2', 1675983905, '__ci_last_regenerate|i:1675983905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76613edaeb27580ddce5719762f57a0b9bc4e43d', '31.222.203.2', 1675983905, '__ci_last_regenerate|i:1675983905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('420a1e714afc7c953c4210dfb0a450942965055d', '31.222.203.2', 1675983905, '__ci_last_regenerate|i:1675983905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ddf186dfbae5c908fac365954d791dbb1a1148', '172.105.247.100', 1675984822, '__ci_last_regenerate|i:1675984822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e3e8e2b45204ee519ce1f85820ec02f2e0ae56', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0abbd73475b39f5ab18e63b2f486450aa367ea62', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f6e3b21008b829396167923df1d28b2fa81d35', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89b5548b8e1234db916c88bf568ba23c3ffcd7a', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c96186c3ff6615d3229c8620e3ab55443e24039', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48595b1e03888945a748d23c697d8689cadd8292', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f19d353ce9c5bdb587cad99cb4436e65314ca7', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54cc46f2685172a58251888ec374fb0e08788117', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f7c87baa70a07438b2a64189a233a6bffe2869', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5d90248389d7377682870e066be88887c102f0', '172.105.247.100', 1675984823, '__ci_last_regenerate|i:1675984823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2215a0cb273012c3a0c0e9b5eb57d0a0c8e7e7', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8242d12303f74704c6f8eccd4064b6b941e75a8', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ffbb58df97ace0bb00e0a1bffa68e80c8cd392e', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be25db5dd6b4c1cc93bfb98ff02622e601214e6', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0350e73f08aab04d0f9f8bedbd9ae6db47eca816', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1e658e94dc244d7a9b2bae283dd6403f84240a5', '172.105.247.100', 1675984824, '__ci_last_regenerate|i:1675984824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf779ec9dc8cf2e8e40c50e185308b72a2b7b2e4', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e3a6ddf2afb70fe9732ccc43120e09ca89104d', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5434f90aff04f6bcf297d6859d8f3671f6772ee6', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc282c783f8ab352d429eb5d941f60cf0eb3f985', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b9d8dfb5e8a075245b478ac2733f1d387a91c2a', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3bc28685cc8e43f4193c8162a7000d749e9c98d', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96bd83608f943f94588eea5ad02cfc863705c781', '172.105.247.100', 1675984825, '__ci_last_regenerate|i:1675984825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e625bbcbdc2f63aef71a5d9bf711d8184559f9f8', '31.222.203.2', 1675989254, '__ci_last_regenerate|i:1675989254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3151a58e957493660bd9660fe0d1c5524e028509', '31.222.203.2', 1675989254, '__ci_last_regenerate|i:1675989254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c18a45ab3c603b2e1cecea20c55425869f2b74e', '31.222.203.2', 1675989254, '__ci_last_regenerate|i:1675989254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eebd36296279fc11c3516734b108977b4e00f947', '31.222.203.2', 1675989256, '__ci_last_regenerate|i:1675989256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d58806ed8d4b7661ef5c1bd3d4b0f37cb7cb97f', '31.222.203.2', 1675989256, '__ci_last_regenerate|i:1675989256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cadb0df8b304f33fd042de36ee8c7c4530f2b475', '31.222.203.2', 1675989256, '__ci_last_regenerate|i:1675989256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2618d3aea328abbe7f7706087a30baf1ac0d39f2', '172.105.247.100', 1675990217, '__ci_last_regenerate|i:1675990217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0cbed5aff87147c0bcd146452630d51d1acbea3', '172.105.247.100', 1675990217, '__ci_last_regenerate|i:1675990217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d341885d51c34c5890b1306d8f788f6c3b3ee08', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8ca7184bd7f16bd67afef5c74335f28ce83a4f', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1337870345e18c2b9224c46b6cc84ade70f333', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1cff87169a8465697ec9aa5fce62b876c5fc44d', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59cd75d5488a8fbb0913af5861fed4647878a3ec', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ffda300bc00b055fdf799e218295b2e8404ab8a', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63f1915253d0aac0f66b461e6e4873d17fe2c72', '172.105.247.100', 1675990218, '__ci_last_regenerate|i:1675990218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ac1571af43071e7b9b755bf3736a6dd527715e', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8559ab08e06b2934039aed38426c1fdaea3aed3b', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd6dcf1413674d87b8fea4d7a001ac9e737f4ad', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb92817dbf1cf6c6ea8faaabade961b8e73ca0f9', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('757b0d4dc734c8ce0fac1806f11b87436ae51660', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8632cd94f052a1c919948f7633c4c98ea9604bb', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d98abc6fa07ed175604d2fb6643007c1e106e75e', '172.105.247.100', 1675990220, '__ci_last_regenerate|i:1675990219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783d60bce9aa19cbeed23915546e1292d696868b', '172.105.247.100', 1675990219, '__ci_last_regenerate|i:1675990219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ff656bdffa24858b8092ba85cf545d1d670a25', '172.105.247.100', 1675990220, '__ci_last_regenerate|i:1675990220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a260654c8e21cb57f4b5b0f1973088a07971c5e5', '172.105.247.100', 1675990220, '__ci_last_regenerate|i:1675990220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe07774f64ef7960e25a1a8147a9824f7c5ca8b', '172.105.247.100', 1675990220, '__ci_last_regenerate|i:1675990220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e85009782beaae5c261e52e44566085c36d1f5', '172.105.247.100', 1675990220, '__ci_last_regenerate|i:1675990220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ead2fb674e0789f3550f727fe9c9e9521adb46', '172.105.247.100', 1675990220, '__ci_last_regenerate|i:1675990220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ffc30a4f8780b35cf9ec393295368fada0b9314', '172.105.247.100', 1675990221, '__ci_last_regenerate|i:1675990221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f991b4fde867f044fd60dbdb3591b788a5a306', '172.105.247.100', 1675990221, '__ci_last_regenerate|i:1675990221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764de3cbfe083ec879d3bb55a6552528e3eee9a7', '31.222.203.2', 1675990962, '__ci_last_regenerate|i:1675990962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e9b98abb6c5b92f26a48c86ecabfc440ca5f23', '31.222.203.2', 1675990962, '__ci_last_regenerate|i:1675990962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015900c5ac970412c0e3f8c9a2cc6261cdaf37ba', '31.222.203.2', 1675990962, '__ci_last_regenerate|i:1675990962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195d815ffa7bcb285bab7b6f92dda79148575642', '31.222.203.2', 1675990962, '__ci_last_regenerate|i:1675990962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce76b4c0fc425c7f85acfd9bf1337cb731b4c49', '31.222.203.2', 1675990962, '__ci_last_regenerate|i:1675990962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c922100c93099e89c1a1bb062e491b80f24b746d', '31.222.203.2', 1675990962, '__ci_last_regenerate|i:1675990962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c0fe014eeb19069734a611babf0b39cae6a1a2', '31.222.203.2', 1675992849, '__ci_last_regenerate|i:1675992849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40818855ae440d4d1da073a0a0f0e279602b6028', '31.222.203.2', 1675992849, '__ci_last_regenerate|i:1675992849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de1e155e96249d2489e7bb8253c9dcb3306bf26', '31.222.203.2', 1675992849, '__ci_last_regenerate|i:1675992849;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81029315202a246210b1491e2da8a931c952f761', '31.222.203.2', 1675992849, '__ci_last_regenerate|i:1675992849;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460079e81c4f4fb07a42fe32f78f1abcae9079de', '31.222.203.2', 1675992849, '__ci_last_regenerate|i:1675992849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34f6c39d2b64687260f45e7d8d55d93ea77fa00', '31.222.203.2', 1675992849, '__ci_last_regenerate|i:1675992849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5452f3852654f70001f3b41ff65a200af72412', '31.222.203.2', 1675994714, '__ci_last_regenerate|i:1675994714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('978e651d96c6eb96b09bb37adb9752695b136d97', '31.222.203.2', 1675994714, '__ci_last_regenerate|i:1675994714;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce6628be6cc843168adc43da12fa5652aa9e290', '31.222.203.2', 1675994714, '__ci_last_regenerate|i:1675994714;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bcfd62054551b8c4bae43ed0f43b0052aee2c88', '31.222.203.2', 1675994716, '__ci_last_regenerate|i:1675994716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4dd764d2f94e43bf32635bf7c5c5bbabd81ba7d', '31.222.203.2', 1675994716, '__ci_last_regenerate|i:1675994716;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c33b822a99c5fc9a2749b41c3a5ba5aecfb1dcad', '31.222.203.2', 1675994716, '__ci_last_regenerate|i:1675994716;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb408342dca2c37ec14789188f78ece5655aa458', '172.105.247.100', 1675995618, '__ci_last_regenerate|i:1675995618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033931dcbc629024edb33b3ffad5ce2c23cb6924', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c9e82efc43f0d8237a5a2ab9d47d8f838f72e0', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa2bf0c0f860d17773097eca06898bc68899b62f', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f97cd0a3b1387d15b8098207040fe8a53178a4', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f304cb467410fd57f0208afa1ecd68c823d1e7', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20407897872e2b8da8a3fa0589ea953e80ee95e4', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c07cad9881aaceece2e5c9043b4171cc02545db', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d53cf087c84e4604e634104e53152968b15b76', '172.105.247.100', 1675995619, '__ci_last_regenerate|i:1675995619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51655256335fa9f585933fd63376fd771557db22', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2845f1cf90157f0d693956d76261dba55257863a', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0489976d66eebd119ef73dbb21b30ec4292271e0', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98d57c3d389b63d6bbb5e6f2f55107eb2bee94f3', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661e1b752e1bda3a765cd8c9f39c1fadeb4cb2e2', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c351cfe421fa8a9877c160cf7cf0e8df777d492c', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef464583adcc8803960a1a9dbed85c47d40be29', '172.105.247.100', 1675995620, '__ci_last_regenerate|i:1675995620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb960f6e4e30b0755ce5fee8a2dea6a3d07bd89', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5ee8870204e769f8b0e4e556cbfdea8870fb2a', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea6b7e0e6ba40b8fb0037ee71dea5afbffadc2c', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf439e62bbf0da94e475287058d6d796119aef22', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7888978b94be6224144fcc0da86695f807b96b99', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90a127777d3f6fb2b01a4d836eb2233b4dffc4f', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666c76b8c0c5723b4acbd501a02a036d3eb63777', '172.105.247.100', 1675995621, '__ci_last_regenerate|i:1675995621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df375fffdb3076bc86ade3285dd84dec8ee25e16', '172.105.247.100', 1675995622, '__ci_last_regenerate|i:1675995622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c006261654e9198184a3deb06e8da6e19ad7cd', '31.222.203.2', 1675998148, '__ci_last_regenerate|i:1675998148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc54002f56926fe6853e63fab89c335449e161e', '31.222.203.2', 1675998148, '__ci_last_regenerate|i:1675998148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de5d64957941b94338b7b65b6935836601e78d4', '31.222.203.2', 1675998148, '__ci_last_regenerate|i:1675998148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8da2fd0cf4930f12d16471b2eabeaad13f9f6d7', '31.222.203.2', 1675998150, '__ci_last_regenerate|i:1675998150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3be3e684786c267f8bbd2a81996de4e8b900b228', '31.222.203.2', 1675998150, '__ci_last_regenerate|i:1675998150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7a388cc7a004f217635e50f9f1a6cbddcf7fe1', '31.222.203.2', 1675998150, '__ci_last_regenerate|i:1675998150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e1d918dd951c8f37962bfc4c848cc70779d0464', '31.222.203.2', 1676000037, '__ci_last_regenerate|i:1676000037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2638d597d174c9ccc44ce23a5a2e0e5cc943cacc', '31.222.203.2', 1676000037, '__ci_last_regenerate|i:1676000037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e094323d961e789634a115e029e4533ad2bb826', '31.222.203.2', 1676000037, '__ci_last_regenerate|i:1676000037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b982ff9bdd208d4c61c2b8b48263777786aa53', '31.222.203.2', 1676000037, '__ci_last_regenerate|i:1676000037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1acfdac84823a84798406bf4bf8636ac943ba24a', '31.222.203.2', 1676000037, '__ci_last_regenerate|i:1676000037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01df9d7c1b6c035224ffbd6c01d7f8c6316f8338', '31.222.203.2', 1676000037, '__ci_last_regenerate|i:1676000037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a16ba14f81908a9daab1271197c904de6b672ebc', '172.105.247.100', 1676000423, '__ci_last_regenerate|i:1676000423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebaf7c84198a1ded8fa663519ba926ab8fff865f', '172.105.247.100', 1676000423, '__ci_last_regenerate|i:1676000423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('356bdd10a98f0d81d0c042bc5020a895784903e7', '172.105.247.100', 1676000423, '__ci_last_regenerate|i:1676000423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54a0534ba284f1b4b07048bf032597a8c1346523', '172.105.247.100', 1676000423, '__ci_last_regenerate|i:1676000423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f247e69a05d7c7c45da8ebc1e9f33e5c858e6650', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e86085367b229303781a52e51b515653a406aba', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4696c019a74674402087bec9c94ac8adf6293553', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30f25e2997840dca5b32e50296556de32548fc3a', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a591c2b28a56228c572621cd1284a802e2583e', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd18627db096835a14a0f67df7b7731aacd3975', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c54dac3addabb6ec9b3082767ba5b3fcfac8b1', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd93571460cc6e3ba1b3413d469dac59f9df652e', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e9e8cacf9b0422becef24ff15d93b2777ba50a', '172.105.247.100', 1676000424, '__ci_last_regenerate|i:1676000424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ae4b1af5baaa6760cbbd505347b74cbfdbd200', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08e296e3da743af4ea522a716394845d1c308bfd', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64cd6233aa11998ee1491d7f3f010e449b37e0e0', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429d257b18bc623fbbd503f740d1c3a93ac878ec', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e8d60fa998dc6cdc0e1ce8e7aaf9e80a2683c5', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4888495b36f45d0f9977be8cb1593395509007', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a937d3adfbd2212d935d67b4c8267ea7db4fcb77', '172.105.247.100', 1676000426, '__ci_last_regenerate|i:1676000425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d66243e400063ec39bc7109e07a82abca7a147', '172.105.247.100', 1676000425, '__ci_last_regenerate|i:1676000425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3cd355cecbf1e85c337c38d8c9c54c8ef7f575c', '172.105.247.100', 1676000426, '__ci_last_regenerate|i:1676000426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a87a93541a4e628644d7ce8f887eab522075a64', '172.105.247.100', 1676000426, '__ci_last_regenerate|i:1676000426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cded786bff170bf14095f7b7a835c0233a55759', '172.105.247.100', 1676000426, '__ci_last_regenerate|i:1676000426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b72ddbbd1379635ced38d5396c634343635ed4bd', '31.222.203.2', 1676001895, '__ci_last_regenerate|i:1676001895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105e10355ff83d44ff41798b89ad513abf3a5aaa', '31.222.203.2', 1676001895, '__ci_last_regenerate|i:1676001895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e34e49036db8934e89eb457299ddecca80384be', '31.222.203.2', 1676001895, '__ci_last_regenerate|i:1676001895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2f8f31317b9de827a0d107029ec804178f532a', '31.222.203.2', 1676001898, '__ci_last_regenerate|i:1676001898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb5659f869d3166e62248239de4cf71e0580c88', '31.222.203.2', 1676001898, '__ci_last_regenerate|i:1676001898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212eeaffef5957bf621604f6e4242c59d9df38aa', '31.222.203.2', 1676001898, '__ci_last_regenerate|i:1676001898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720db84688a8f69b73ac5add3cc415949bb1cca3', '45.120.39.89', 1676008976, '__ci_last_regenerate|i:1676008976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675936182\";last_ip|s:13:\"37.111.219.95\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676007198;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42902a9f3fc61b8f53511cfcc21edcc5a266c6e', '31.222.203.2', 1676003717, '__ci_last_regenerate|i:1676003717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8e38f66572672fc338b01ea90125fa828253c1', '31.222.203.2', 1676003717, '__ci_last_regenerate|i:1676003717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad9660ec224faac62871515b87610530aa8089a', '31.222.203.2', 1676003717, '__ci_last_regenerate|i:1676003717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c15fb3e031fe0b7989fe10b7ae53eac9b1fdc47', '31.222.203.2', 1676003719, '__ci_last_regenerate|i:1676003719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba36bf2a9752cf2cb067186098e1bea0c098db2', '31.222.203.2', 1676003719, '__ci_last_regenerate|i:1676003719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c7873772f04049d6448d73d83afa72788a1787', '31.222.203.2', 1676003719, '__ci_last_regenerate|i:1676003719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115e57da5024f10f9c0a6b3e989a0c8d457a3e39', '172.105.247.100', 1676005822, '__ci_last_regenerate|i:1676005822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1fa26f4c9b15fdc1d19ac0eeba116c6e7df86f', '172.105.247.100', 1676005823, '__ci_last_regenerate|i:1676005823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e27918570b54c0f1b95cdc71bc5359c2da856a3e', '172.105.247.100', 1676005824, '__ci_last_regenerate|i:1676005824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff252a1c90ef4e3307166610969ed0a6f44599c', '172.105.247.100', 1676005824, '__ci_last_regenerate|i:1676005824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c36e2805a511ec3a572b3b9d529da5778135552', '172.105.247.100', 1676005825, '__ci_last_regenerate|i:1676005825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cffa4a36a4dc7b040497b86065d9e30c3338f71', '172.105.247.100', 1676005825, '__ci_last_regenerate|i:1676005825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64cf29552c1c3fe281af46af064f9e07523dc9b', '172.105.247.100', 1676005825, '__ci_last_regenerate|i:1676005825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fff2e3296ea43a283bb6a06d0d1cf91d965e6f', '172.105.247.100', 1676005825, '__ci_last_regenerate|i:1676005825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc865d1df39648837aa10831d79a4bfae9a394cd', '172.105.247.100', 1676005825, '__ci_last_regenerate|i:1676005825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27528ae272e507f71b0342a7d75d3ac4473fb550', '172.105.247.100', 1676005825, '__ci_last_regenerate|i:1676005825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63cade6824cb94f7d883e00f20a9d37919249e2', '172.105.247.100', 1676005826, '__ci_last_regenerate|i:1676005826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bec365e2c4e66738f11ae492214557c66baa55b', '172.105.247.100', 1676005826, '__ci_last_regenerate|i:1676005826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dfc5899a2210d28aadacb4f283da456e6a95c23', '172.105.247.100', 1676005826, '__ci_last_regenerate|i:1676005826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be95819ad90bb29d52a0c7bfde678de809bd1e3', '172.105.247.100', 1676005826, '__ci_last_regenerate|i:1676005826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4a164d20d723722b7bf2f575a2962f96c4af64', '172.105.247.100', 1676005826, '__ci_last_regenerate|i:1676005826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a745167b201d3682eb7b92b98cf7307c24c6a2ad', '172.105.247.100', 1676005826, '__ci_last_regenerate|i:1676005826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e4ad09c31f5d7f5bef31b1e92a5125a12b838b', '172.105.247.100', 1676005827, '__ci_last_regenerate|i:1676005827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1535919c6b56ee8b50c92ff8d203303bd0e39a', '172.105.247.100', 1676005827, '__ci_last_regenerate|i:1676005827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1b5c9ea5b2bdbf17a28aa78c11948bfef205e1', '172.105.247.100', 1676005827, '__ci_last_regenerate|i:1676005827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('943f6f8c3d4eff029a14133bf4592d1800fcc6be', '172.105.247.100', 1676005827, '__ci_last_regenerate|i:1676005827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('853db26ab4b914cafec7fd28583d28790daa043e', '172.105.247.100', 1676005827, '__ci_last_regenerate|i:1676005827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f206f3fecf740159cff136ee319e1516167cceb8', '172.105.247.100', 1676005827, '__ci_last_regenerate|i:1676005827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33c7c67bedf17ff1a7bda63f0900b0f07df521a', '172.105.247.100', 1676005828, '__ci_last_regenerate|i:1676005828;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025cd02a8188a70f427f8cc22221fd49ca3554f4', '172.105.247.100', 1676005828, '__ci_last_regenerate|i:1676005828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1eda0c71495622c1c5698c901986c17ea24591', '31.222.203.2', 1676007147, '__ci_last_regenerate|i:1676007147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5e28f6ec8e3c43cc382e9c6e558a84733b0cfe', '31.222.203.2', 1676007147, '__ci_last_regenerate|i:1676007147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c362552771dbd9a965a4e1d63d5bf257ec017a', '31.222.203.2', 1676007147, '__ci_last_regenerate|i:1676007147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d93a1c5184c8bc46e66943ec8aa348509a4153d', '31.222.203.2', 1676007147, '__ci_last_regenerate|i:1676007147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0619c2efe4cc638d633542add9913c658085d999', '31.222.203.2', 1676007147, '__ci_last_regenerate|i:1676007147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccc61aa2816d2f79597b6f09d72500140432b164', '31.222.203.2', 1676007147, '__ci_last_regenerate|i:1676007147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b664cc79f290d71391e80b3624982f98a4b57312', '45.120.39.89', 1676009212, '__ci_last_regenerate|i:1676008976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1675936182\";last_ip|s:13:\"37.111.219.95\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676009212;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708e62ce99fd019e3a1d33d0c5a0087eb69befa4', '31.222.203.2', 1676009102, '__ci_last_regenerate|i:1676009102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e455894bc024de9adc60a477cef14c7ea8ae3258', '31.222.203.2', 1676009102, '__ci_last_regenerate|i:1676009102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07baf30cc6d1ff0a9b5d4881be648e79a589b75b', '31.222.203.2', 1676009102, '__ci_last_regenerate|i:1676009102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7776effe8d04a79c0bfc52cc3d0bdfd4c9ebea', '31.222.203.2', 1676009104, '__ci_last_regenerate|i:1676009104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd79322d402a973e3363032237dcb66100c5af95', '31.222.203.2', 1676009104, '__ci_last_regenerate|i:1676009104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4453351d7a07ae7016887f058b064295f7ff6ee4', '31.222.203.2', 1676009104, '__ci_last_regenerate|i:1676009104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484772dd3b79f528a752342ab99ff25c7a237621', '172.105.247.100', 1676011223, '__ci_last_regenerate|i:1676011223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3596fd0354bbb14cb797391f8d51f4cd47cb9a01', '172.105.247.100', 1676011223, '__ci_last_regenerate|i:1676011223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('576b605866756640ceb69f471af8d3d72f4ca896', '172.105.247.100', 1676011223, '__ci_last_regenerate|i:1676011223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86601324f6628ab3027373bdd41ab6b7e8f8dee7', '172.105.247.100', 1676011223, '__ci_last_regenerate|i:1676011223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef40736fb4eac1923a51af336cd46c3d125bd665', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782bd6fc90d63fa97ebda491b26f80a7942e42ab', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3bc47de222f353e0dfed47868310ab0bb12d80', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8437b03ac0f226af1c2fa6ee3b5522ae35c3bf', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f5c3d5344e0150ee1e129bd3d10adfce275f9b', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3966bcf6511370a85167dd48fe3f52b069cd5566', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9790dcb3c2828118079ab38d36d97f467f1fbd52', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee60fe5546677d7c053660126ca169c54bf3775', '172.105.247.100', 1676011224, '__ci_last_regenerate|i:1676011224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9abcf8bc73bb5cef81e3427c385611fe9ed462', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48d42a7e8e46ffc6ffdb97138f4676d60f1b442', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcd639c988d24bd1d6bf15e15ebff4912ab5692', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82a2db6a09142d1df74ee4f2d426ce5db6bdec83', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927c962cf72f6b6334eb970a2319678fddc35c73', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3929d9b722b726f159bdf31669e589f51ada06ae', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f048dbcaad67378a6431984841015a1076f61aad', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c09eab979ffe80dfa79dbf53d075d4b5be618275', '172.105.247.100', 1676011225, '__ci_last_regenerate|i:1676011225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02addc169772423dd434b268974433e432f4931b', '172.105.247.100', 1676011226, '__ci_last_regenerate|i:1676011226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe6da03d20f2659c50b82de33111d499c86384e0', '172.105.247.100', 1676011226, '__ci_last_regenerate|i:1676011226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4a6e3f6e4e78c0ff45780e2c7df79fdb968e65', '172.105.247.100', 1676011226, '__ci_last_regenerate|i:1676011226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d0e44c53e9a1edb496ced93c4d748ab80e9ea3', '172.105.247.100', 1676011226, '__ci_last_regenerate|i:1676011226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add1670bdd61240ad0cfd0859c36550f55224e71', '31.222.203.2', 1676014357, '__ci_last_regenerate|i:1676014357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29673426778a0b20039d7c7d3dd7a998ded0a9c', '31.222.203.2', 1676014357, '__ci_last_regenerate|i:1676014357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('580e2076c14137f0adcb25048a5671dd37099b79', '31.222.203.2', 1676014357, '__ci_last_regenerate|i:1676014357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33a70fef422d265f4d64f90f16e1f5b01300006', '31.222.203.2', 1676014357, '__ci_last_regenerate|i:1676014357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68fb06e889ccbe1b042a05ae8225d44965139cad', '31.222.203.2', 1676014357, '__ci_last_regenerate|i:1676014357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b54de48c6d50e3d0cc6c40fd089abd829340ed', '31.222.203.2', 1676014357, '__ci_last_regenerate|i:1676014357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95214aedb51dbfb6aa0ca70209ba5382aa06c492', '31.222.203.2', 1676016244, '__ci_last_regenerate|i:1676016244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d3f62ebc216a0121b8e716c0139ae4bb67ec3d', '31.222.203.2', 1676016245, '__ci_last_regenerate|i:1676016245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70b60caa5b2521752d100a3e7546e75432bde47d', '31.222.203.2', 1676016245, '__ci_last_regenerate|i:1676016245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34755081110d28913378a2e5b92eeadacad78726', '31.222.203.2', 1676016245, '__ci_last_regenerate|i:1676016245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df831e26f85359640d42d96911b64162799fd7ba', '31.222.203.2', 1676016245, '__ci_last_regenerate|i:1676016245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5afebc3a57a96bfcbfec1da22da9bb3dc4cc2c53', '31.222.203.2', 1676016245, '__ci_last_regenerate|i:1676016245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a028f3001f69c3704703d7e03c2898863d90f7a6', '172.105.247.100', 1676016619, '__ci_last_regenerate|i:1676016619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337486e5c6d87ceb77b73670f77b4c1c5888c2c5', '172.105.247.100', 1676016620, '__ci_last_regenerate|i:1676016620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a9c667cd95a5bdaadd803f0b477c571c32712de', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8fe29f02cc16cbe395acb13f1098c6e5b016e98', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b11bd9b55b154be1b2d5b99366b36eb1b952ae7', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a442bd47bb58abff256091c864543e44c4d5b5', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d6196711f58c3434870d28e3399a79559c835b', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f12b911ab0df5b614a502248961bb5e49fc61fe', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeef696d8792bee01b0e8bd016451795b7d3ab7b', '172.105.247.100', 1676016622, '__ci_last_regenerate|i:1676016622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e587c490b6d5e6586e0a27426000ea21cb05a94', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e1efd67f302a662609f59d1da64156f0f4127d9', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b43f9bc3f2448ce381c5618aa41919b6cc0a0dfb', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddd412379149ed128343df0922042f425f71e42', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e5e88222c40cb45d15daf434c2c1b7809d862b', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a08e6d84848011f0f9b48adbaa55f32ef65fb3', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28863a6998a90bc7847b00c2fb74e1c717e17117', '172.105.247.100', 1676016623, '__ci_last_regenerate|i:1676016623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd57657724fba558feb2a437cb602556c153f1a2', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a517b5af3c6f59eb6216eeaa152310b1aec2807d', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b74f1d34549fca849fe35f420fa5bc8ff33d56', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b52b2d2eab87ee2a2a515718f4075c6aee4562', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d612a8f0881d917d1b2dc4ba0ad01e1669b574f', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78a5e1041b7f0877d8ff149c8cbfcd830797ad3', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5919735f0c32ec2e9e66260f38d7161aeaf44850', '172.105.247.100', 1676016624, '__ci_last_regenerate|i:1676016624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9a854a0057a657ddf4c22a90068bfbe07cad6f', '172.105.247.100', 1676016625, '__ci_last_regenerate|i:1676016624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9268c4e5464c91912fd2e07264cb2c80c9e6ebe', '45.120.39.89', 1676022593, '__ci_last_regenerate|i:1676022593;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676018895;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48627a90820a5db4fb5e0dd71c97915bdf3ea46', '31.222.203.2', 1676021653, '__ci_last_regenerate|i:1676021653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8aa5f669380764b86b817faa9291c2985b7cd7', '31.222.203.2', 1676021655, '__ci_last_regenerate|i:1676021655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('347bac77efc5bcb26729c1b3050730f85b62b3f6', '31.222.203.2', 1676021655, '__ci_last_regenerate|i:1676021655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('608282bd90b6ec0519f189431c5382f1be344a4b', '31.222.203.2', 1676021655, '__ci_last_regenerate|i:1676021655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741b8a485335a967c7126ea6250b8f3bc35cad0f', '31.222.203.2', 1676021655, '__ci_last_regenerate|i:1676021655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3df7f23ae82bb2355c849a7002c7f2a20e18679', '31.222.203.2', 1676021655, '__ci_last_regenerate|i:1676021655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879164351cb51039b451f91e65fa21f3abd5be89', '172.105.247.100', 1676022021, '__ci_last_regenerate|i:1676022021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74e20a5d4619041e84326e5a51e4c57bf7576a5', '172.105.247.100', 1676022021, '__ci_last_regenerate|i:1676022021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833f62ba8ce090e17b6ac79be64ab04ec04de6e3', '172.105.247.100', 1676022023, '__ci_last_regenerate|i:1676022023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d24a4303be9bf421fe7668c165196dc1404aae0', '172.105.247.100', 1676022023, '__ci_last_regenerate|i:1676022023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7117e43f592400c892239420749d3bb3ca6e4376', '172.105.247.100', 1676022023, '__ci_last_regenerate|i:1676022023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb47b3fa47526cef284575351513f0ac17a6459', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e0ebe0212cad718a01d82b047e89ce885fe9450', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfcaa58b12af59b2e846afbfad75e6e2d97a604b', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c357580fbe1019d35f9465a485e926becd43c92', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec5816ff11560e30e29f78fd60583b3d694237c7', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309814e41f966d7b8a71990de6eabbf8abe23d7b', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36aea6ea5fb5335840754d95c10eaf85edbc4fd0', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb3ce6d4a0bb1b1319b8370006f85c3006e0939', '172.105.247.100', 1676022024, '__ci_last_regenerate|i:1676022024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15539b7e957a07edf8465dcf716c7ef456ae98ed', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc895061515dff23b3f542d326a99dd82f6b5a7', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425e06f6be80a35011a613b5f6fa398ab0481b8c', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caec010d527da4084998756d0143a14d5085b80a', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6003942efae05bd230520ad635dbd7385586ab8', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3254c3a45b143b75acbd6297d821dad35180e3f', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e10dca985dfab2a72e0aeea093e2cd55342cd0c', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc74408f2a71e8e0b2e0a981e6d5bf7be7d0369', '172.105.247.100', 1676022025, '__ci_last_regenerate|i:1676022025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01cb280b1a2781b83f78bae5249c8f7ae298d338', '172.105.247.100', 1676022026, '__ci_last_regenerate|i:1676022026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bda1d7dff7af7e6be8affbea2e524b6cc90a884b', '172.105.247.100', 1676022026, '__ci_last_regenerate|i:1676022026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1836eafecfd0886de7e7024afab48623fe1607c1', '172.105.247.100', 1676022026, '__ci_last_regenerate|i:1676022026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91194267d07bafc3be4c5104ee588c070f9528e9', '45.120.39.89', 1676023222, '__ci_last_regenerate|i:1676023222;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676022621;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37718f3da82d5dadd755a309b46dcecd8aec33e', '45.120.39.89', 1676027320, '__ci_last_regenerate|i:1676027320;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676024855;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec5aaef7bd5b730d20df573df9f83dc97821b47', '45.120.39.89', 1676024810, '__ci_last_regenerate|i:1676024809;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676024810;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9927b606c8ce8e6e847120c3f831161a18e585d3', '31.222.203.2', 1676027056, '__ci_last_regenerate|i:1676027056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c861e54b7b016b7e0270381a8d572f56eb09126', '31.222.203.2', 1676027058, '__ci_last_regenerate|i:1676027058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ce0f3e36d03f536862bcc292a7ca258f5ac974', '31.222.203.2', 1676027058, '__ci_last_regenerate|i:1676027058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d88bc2e3dd1d40c66d2583f96dabc4efd40dcf6', '31.222.203.2', 1676027058, '__ci_last_regenerate|i:1676027058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bbaf11bfcdd444eb22526df44a00027bd8a4881', '31.222.203.2', 1676027058, '__ci_last_regenerate|i:1676027058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afca9df287e20f04a1196b6a8334b8e6c0ef9215', '31.222.203.2', 1676027058, '__ci_last_regenerate|i:1676027058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e73a6179271b62652fc4a68c7850cbf0062c065', '45.120.39.89', 1676034501, '__ci_last_regenerate|i:1676034501;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676027405;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee66da2b5a9cfe950039bb7a7d1dff5a6b314e06', '172.105.247.100', 1676027419, '__ci_last_regenerate|i:1676027419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09506bdc8fff56b898adb56509a76ae344a9e8eb', '172.105.247.100', 1676027419, '__ci_last_regenerate|i:1676027419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361dea1e525e88f849738c5f840cc438c468b2d3', '172.105.247.100', 1676027419, '__ci_last_regenerate|i:1676027419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b7c69dd09f84865da67533429040e5b277ec1c', '172.105.247.100', 1676027420, '__ci_last_regenerate|i:1676027420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c369ee6120a4cd04fefe58e7ac26ad0646124b69', '172.105.247.100', 1676027420, '__ci_last_regenerate|i:1676027420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452c1b66f04b77e679bbb11c6d69e6dd4df36ad7', '172.105.247.100', 1676027420, '__ci_last_regenerate|i:1676027420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2583daaf337df12c97112a6201d2da9e165d8b', '172.105.247.100', 1676027420, '__ci_last_regenerate|i:1676027420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e033d21300af8b36c0a20b39eb7f1b9a54e7a71b', '172.105.247.100', 1676027421, '__ci_last_regenerate|i:1676027421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9462af8f38422d35277a05ca415ecab889ed70c', '172.105.247.100', 1676027421, '__ci_last_regenerate|i:1676027421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d2adbd7932a792789a44f8ee3e45ebb68c4f081', '172.105.247.100', 1676027421, '__ci_last_regenerate|i:1676027421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f577a3007ecee0d1e288835fed853025b7d14e8', '172.105.247.100', 1676027421, '__ci_last_regenerate|i:1676027421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c677a21f59ca5b72147acdaa2976ed211be29996', '172.105.247.100', 1676027422, '__ci_last_regenerate|i:1676027422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f46dadc82575bcf76e74901518757c663916c4', '172.105.247.100', 1676027422, '__ci_last_regenerate|i:1676027422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238e0c85cc1130dee340e9e208b71ab4f2caa2ac', '172.105.247.100', 1676027422, '__ci_last_regenerate|i:1676027422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0523318f64620f794d4526357bd329f5a7ca1ff2', '172.105.247.100', 1676027422, '__ci_last_regenerate|i:1676027422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfc8f152c766f9a36af36830447d26f53a3da187', '172.105.247.100', 1676027422, '__ci_last_regenerate|i:1676027422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cba4b98c9b70bdb66176d50f801f31b803f0f98', '172.105.247.100', 1676027422, '__ci_last_regenerate|i:1676027422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963e9ef1488eabdd7cf9ace7d34eff602911319a', '172.105.247.100', 1676027423, '__ci_last_regenerate|i:1676027422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99d4bdffa702e494136b3e0a007b4b7b2427c1e', '172.105.247.100', 1676027423, '__ci_last_regenerate|i:1676027423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe250a1b3a5094ff232cd737b4e5771e5e09170', '172.105.247.100', 1676027423, '__ci_last_regenerate|i:1676027423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4b7e37485e8bcd58fc7cbe2eba3859ee0e8ac5', '172.105.247.100', 1676027423, '__ci_last_regenerate|i:1676027423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1203a451acb5987e17e16957d7e4c7766ad9a62f', '172.105.247.100', 1676027424, '__ci_last_regenerate|i:1676027424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b49a44be49c455df21e83ad81ca0145820a0b3', '172.105.247.100', 1676027424, '__ci_last_regenerate|i:1676027424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78af3f6dd85d0036051a3460b0f9360e559a19be', '172.105.247.100', 1676027424, '__ci_last_regenerate|i:1676027424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c208e41bff32209f5d2dcc9cad3fbf4f7ffa44e1', '172.105.247.100', 1676032818, '__ci_last_regenerate|i:1676032818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8f308dc9b5ca9384c962275784c87009c27635', '172.105.247.100', 1676032819, '__ci_last_regenerate|i:1676032819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66fba2ec514de63d654015436d88ee9e737fde0', '172.105.247.100', 1676032819, '__ci_last_regenerate|i:1676032819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf43ec52efbe9decc9ff8342069e8155be1ef5b2', '172.105.247.100', 1676032819, '__ci_last_regenerate|i:1676032819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e986d2e7870f160792cbe796cc99ef1c24aa3ecb', '172.105.247.100', 1676032819, '__ci_last_regenerate|i:1676032819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807722f8f4d1f7bc79ad7de0311a7dc4a3e6196c', '172.105.247.100', 1676032820, '__ci_last_regenerate|i:1676032820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0255256c92a9eb80e1aebc6287ff403d5af03a3', '172.105.247.100', 1676032820, '__ci_last_regenerate|i:1676032820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adb1c6d5bbbd8dec6574e6cf635cdd2055a1dd2', '172.105.247.100', 1676032820, '__ci_last_regenerate|i:1676032820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4094c16af7d620fb6c2e54a746447791fbb2106f', '172.105.247.100', 1676032821, '__ci_last_regenerate|i:1676032821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639398e205f9384302260e5f832e8c036625368a', '172.105.247.100', 1676032821, '__ci_last_regenerate|i:1676032821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8fe53360d5906672abadbf39d1952335d619e00', '172.105.247.100', 1676032821, '__ci_last_regenerate|i:1676032821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ec2efb0660f805bf476b259a3ebd9bd634510d', '172.105.247.100', 1676032821, '__ci_last_regenerate|i:1676032821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fcd2e1d278ca8f3efd5a62ba5faf5a6b7b89cd5', '172.105.247.100', 1676032823, '__ci_last_regenerate|i:1676032823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ea78717844695963e1331f5bc98f614433500d', '172.105.247.100', 1676032823, '__ci_last_regenerate|i:1676032823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f34dedd4fb7ecbd00603994eddd9e854b9073f7', '172.105.247.100', 1676032823, '__ci_last_regenerate|i:1676032823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5733d0b1bddf3d97500eb1daeb4fd9f16d35d128', '172.105.247.100', 1676032823, '__ci_last_regenerate|i:1676032823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9fedb7bdd2c91f2713ef094ebd118a4fc9831bb', '172.105.247.100', 1676032824, '__ci_last_regenerate|i:1676032824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ef073cd9c967c9d7581491a21b65b120b947c9', '172.105.247.100', 1676032824, '__ci_last_regenerate|i:1676032824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7502619957d86b65beb9097d7e5da894080e371', '172.105.247.100', 1676032824, '__ci_last_regenerate|i:1676032824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0921d98d58d02def665f0bff96a2e01bf4865a11', '172.105.247.100', 1676032824, '__ci_last_regenerate|i:1676032824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666c5ca285fcee6355c69a141850675b05f1bc31', '172.105.247.100', 1676032825, '__ci_last_regenerate|i:1676032825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca5391f24b8696c3684c26c7c88f0e41463e612', '172.105.247.100', 1676032825, '__ci_last_regenerate|i:1676032825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcaa788f880c95da578937174b7a3091b0d58fd', '172.105.247.100', 1676032825, '__ci_last_regenerate|i:1676032825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adbd16ec7f3746b6db4bca8934cb02e057b3e73a', '172.105.247.100', 1676032826, '__ci_last_regenerate|i:1676032825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('916296b7f1ca86bd94f52ca7c29228966a1e8c8e', '37.111.218.84', 1676038148, '__ci_last_regenerate|i:1676038148;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676034511;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26d6f0f2f8cc3147d673c126a18783d065a6e0c', '31.222.203.2', 1676036057, '__ci_last_regenerate|i:1676036057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24171ddf32c5450eeeca721f40e4bb7670c3d382', '31.222.203.2', 1676036059, '__ci_last_regenerate|i:1676036059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9146c606e3c9dfa8ec049ca28ca41f85c947a3bd', '31.222.203.2', 1676036059, '__ci_last_regenerate|i:1676036059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6603a80cde36fb68ff0d9be84046c7d4a7545827', '31.222.203.2', 1676036059, '__ci_last_regenerate|i:1676036059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd840c076fcfa8e17314e3fca178bf5ec9b0053', '31.222.203.2', 1676036059, '__ci_last_regenerate|i:1676036059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09acc3630c3dd9c3ba7df195f4bef4a2df4191f', '31.222.203.2', 1676036059, '__ci_last_regenerate|i:1676036059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ae13bcf937f8880faa598253c6d1bb91aa0551', '209.141.36.112', 1676037199, '__ci_last_regenerate|i:1676037199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd746867eaf45ae8dd1a1506fa9c7398285c3e5', '209.141.36.112', 1676037202, '__ci_last_regenerate|i:1676037202;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50577e0a2389fc35f0e37029f606dad2b4702b5', '209.141.36.112', 1676037204, '__ci_last_regenerate|i:1676037204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0a248b867324d996eb9d6be87a38414c9035a8', '45.120.39.89', 1676038962, '__ci_last_regenerate|i:1676038962;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676038200;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a896f32518b3fbb64418420200fe00dfeffe63ef', '172.105.247.100', 1676038221, '__ci_last_regenerate|i:1676038221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94e2caeab3ce7589790952f8d7f0cb5041784be', '172.105.247.100', 1676038222, '__ci_last_regenerate|i:1676038222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16481c9fa846daba7b98fc15f29ed89746a3cfda', '172.105.247.100', 1676038223, '__ci_last_regenerate|i:1676038223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf341196f9e55a4561d102490d7c4d31f5612bf', '172.105.247.100', 1676038223, '__ci_last_regenerate|i:1676038223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e838ad1d35dea47dca12eecf6339c7ace7199c2', '172.105.247.100', 1676038223, '__ci_last_regenerate|i:1676038223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f034337743823647ac7ff29cf6a741e39e907c32', '172.105.247.100', 1676038223, '__ci_last_regenerate|i:1676038223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd49f4e4c687ed692c91ad1524e3729a65abd248', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a295bf8120ee743e959781ad00d9076e08711c26', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a117b2b3b904bc3e6db200f1bf7c46b123d5902', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c1ec227dd39f892d407ecbfb3b543de1188bd3', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('233dacaefe7c9856377589f47ad6320986d650d7', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec7b29cb5e2e0317a0773d365fb995716ed5be25', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f449e881f3903f0e183f430dd16449bf2d41c6e', '172.105.247.100', 1676038224, '__ci_last_regenerate|i:1676038224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735b1526263d34041ec26210f64d1d517e385c90', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8baf052c24932817686bfebbfc1550b80533577e', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fa006a22d23327de5ca0764224da865d06c4762', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271cfe5e369faae640faf6d06e0f3d6e84a15fd7', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a6852b8b1e058a3df21e5578a7ce65091178847', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f51339b3fbc61ab787613567af321b8b11b5bc1', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8aed958ad543b23feb19a8eeef414a9433f4b9', '172.105.247.100', 1676038225, '__ci_last_regenerate|i:1676038225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e6cf46df6d40c6f1bd62d0f27bbc9c78ccbcbd', '172.105.247.100', 1676038226, '__ci_last_regenerate|i:1676038226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758dbe98a41dcfd4deb4c921baef1bd57b1e343d', '172.105.247.100', 1676038226, '__ci_last_regenerate|i:1676038226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b298ee2b6e58775991322406cef1e1b4d39c5d60', '172.105.247.100', 1676038226, '__ci_last_regenerate|i:1676038226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e2a500f9c39b009724471a8a0a5f62f67c8746', '172.105.247.100', 1676038226, '__ci_last_regenerate|i:1676038226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4a1c32062fd0dab0f138c64e53257dea5cc586', '45.120.39.89', 1676039385, '__ci_last_regenerate|i:1676039385;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676039181;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e534abb5781567d039f59447c1ef64645bc6c1', '45.120.39.89', 1676039771, '__ci_last_regenerate|i:1676039771;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676039758;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6affe6b61efcab3a130bb76f25b8e47fb12c6c87', '45.120.39.89', 1676040709, '__ci_last_regenerate|i:1676040709;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676040697;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9690521a51d0f003806114c6043228038fcd3fad', '45.120.39.89', 1676041353, '__ci_last_regenerate|i:1676041353;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676041040;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0901ba81a2262e76dd38efa1256d3284cb40014c', '45.120.39.89', 1676041810, '__ci_last_regenerate|i:1676041810;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1676041802;register_id|s:3:\"337\";cash_in_hand|s:9:\"1930.0000\";register_open_time|s:19:\"2023-02-09 20:47:53\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d322bb9a61f0310e83627575ceae9b562173bed', '45.120.39.89', 1676041836, '__ci_last_regenerate|i:1676041810;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676002262\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676041835;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6cc790b09476b84057238a5a225e0a63a20d260', '31.222.203.2', 1676043153, '__ci_last_regenerate|i:1676043153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb31dec9fc3c7286a59042e2da9383643866ac3', '31.222.203.2', 1676043155, '__ci_last_regenerate|i:1676043155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e4dc94df42dea49beaa6ada7c68711e218d421', '31.222.203.2', 1676043155, '__ci_last_regenerate|i:1676043155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c39cc63644ed388aedd11044fe32fba5856e924', '31.222.203.2', 1676043155, '__ci_last_regenerate|i:1676043155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231b1282f6154046134ae6130ebe7d3653d120b8', '31.222.203.2', 1676043155, '__ci_last_regenerate|i:1676043155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea4d104982b15ec2e1f43172d22c88ecc5f4abe', '31.222.203.2', 1676043155, '__ci_last_regenerate|i:1676043155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339e2a399a77f5937312780f9ab9531951d60872', '172.105.247.100', 1676043617, '__ci_last_regenerate|i:1676043617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c442046c2c2b0af01736cee91f66bc1fae746e64', '172.105.247.100', 1676043618, '__ci_last_regenerate|i:1676043618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67dcc2423853a7c0ec4bb5d316bd3d6931f34324', '172.105.247.100', 1676043618, '__ci_last_regenerate|i:1676043618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d92c0efa6fffa3aa104677fec440f6e8db1dfc1', '172.105.247.100', 1676043618, '__ci_last_regenerate|i:1676043618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b41e853876e67be3b79b2f90ae7bd899d18d0c', '172.105.247.100', 1676043619, '__ci_last_regenerate|i:1676043619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf2597edb1ee1151a89ac86090b2a79877de7a4', '172.105.247.100', 1676043619, '__ci_last_regenerate|i:1676043619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b00d35eb512cfddbfff67f579032222aa5821554', '172.105.247.100', 1676043619, '__ci_last_regenerate|i:1676043619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e602808de4016ae3b0fb48269b3e4a2b710c19ef', '172.105.247.100', 1676043619, '__ci_last_regenerate|i:1676043619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda413f2c228faad00b5daafc9c51a646d3ab05a', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1623c554f2113a1645c30962b6ed9eeb1c780f1', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56cd8824e2a80b754983d7fa2d1ddb511f8f100b', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614d922c8ef862c493ac765a4692462518652481', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a4f05592c192e77181da529f8ae11593db0efb', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858018da0f9e45d0a5d88adc22a9bb3e3e51dcf8', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73b98972f9836c2780682990f3d40eae5382fe4', '172.105.247.100', 1676043620, '__ci_last_regenerate|i:1676043620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b94a2dafe56b03e0bd3ff275e587e6abd93d24', '172.105.247.100', 1676043621, '__ci_last_regenerate|i:1676043620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6bd66f3ba5dda22802ee91aead2f23e498284ce', '172.105.247.100', 1676043621, '__ci_last_regenerate|i:1676043621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7514578080eb5b9cc7990ae0851f695c67dd6b5e', '172.105.247.100', 1676043621, '__ci_last_regenerate|i:1676043621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c454e91b0f727a5fa472b0dd7ffefb14e10f2d8a', '172.105.247.100', 1676043621, '__ci_last_regenerate|i:1676043621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d06b88f6547de08d550d5e6c374721bbdc430c88', '172.105.247.100', 1676043621, '__ci_last_regenerate|i:1676043621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c33bde85cee41dc89ac230014290da313d60ad', '172.105.247.100', 1676043622, '__ci_last_regenerate|i:1676043622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a89c178e4f5766dabb8fbfff897a0be753b1b84', '172.105.247.100', 1676043622, '__ci_last_regenerate|i:1676043622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865df91f38beef87326880cb02f7fc48e9bf1d97', '172.105.247.100', 1676043622, '__ci_last_regenerate|i:1676043622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52509172b8cba81e9611343d3c91062825c807cd', '172.105.247.100', 1676043623, '__ci_last_regenerate|i:1676043622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1de1b0c3c03d73b443e8d8e885ffefe12baf022', '31.222.203.2', 1676045043, '__ci_last_regenerate|i:1676045043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a8dd273535477bede14d77cf67bf16abb79e04f', '31.222.203.2', 1676045044, '__ci_last_regenerate|i:1676045044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ef8825576fa903fa432dab4d9f8607ba306f28', '31.222.203.2', 1676045044, '__ci_last_regenerate|i:1676045044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdc21ad5d295eac20bc0ca69a4b58b77955896c', '31.222.203.2', 1676045044, '__ci_last_regenerate|i:1676045044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485729a7d688987f886ee1cd6f4e537b5563da96', '31.222.203.2', 1676045044, '__ci_last_regenerate|i:1676045044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb7412771681511d9000b00ea5d3422cf216fba', '31.222.203.2', 1676045044, '__ci_last_regenerate|i:1676045044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759b8e0effa66319333286bf042cb9c2de6ab7e2', '31.222.203.2', 1676046918, '__ci_last_regenerate|i:1676046918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd55990dd07012e556850059ee905fb934f27d2', '31.222.203.2', 1676046918, '__ci_last_regenerate|i:1676046918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe5fa4646dc9c0c9a55a3203c2d82e74dbf1cfc', '31.222.203.2', 1676046918, '__ci_last_regenerate|i:1676046918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bd5f14914874df69a2acf99c2befa86a85a7096', '31.222.203.2', 1676046918, '__ci_last_regenerate|i:1676046918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96225cf973eac5a9ca3b31e5b1d1dcf17dcb2d40', '31.222.203.2', 1676046918, '__ci_last_regenerate|i:1676046918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('482e7b094e72917c01cf7238715e2d21edab5059', '31.222.203.2', 1676046918, '__ci_last_regenerate|i:1676046918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60341ccd51d4ba9d0822f368da7c1c15441901f', '31.222.203.2', 1676048565, '__ci_last_regenerate|i:1676048565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0793468606f1fa13e479196d0c4f897786b1a4f', '31.222.203.2', 1676048565, '__ci_last_regenerate|i:1676048565;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0b822f845972f277f903e6cebc8df700dadb47', '31.222.203.2', 1676048565, '__ci_last_regenerate|i:1676048565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099d19f7bf51ddce1705f4a05d5caaa85c03e969', '31.222.203.2', 1676048565, '__ci_last_regenerate|i:1676048565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7fdf14b6457b2e7b3fffb03a002f6f96c382399', '31.222.203.2', 1676048565, '__ci_last_regenerate|i:1676048565;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c178a6fcdd155c33aeb3ce164fe5ab29e0ea3bd3', '31.222.203.2', 1676048565, '__ci_last_regenerate|i:1676048565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f677ff859e0ad7851ddab6440e863be1860a5f', '172.105.247.100', 1676049019, '__ci_last_regenerate|i:1676049019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0956a4791f3e4832f70c2090fa13aeb20f032b', '172.105.247.100', 1676049019, '__ci_last_regenerate|i:1676049019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338805ffbe5f9252bff873313d0c9ceb070eb423', '172.105.247.100', 1676049019, '__ci_last_regenerate|i:1676049019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f5b05c103b52c410c01e98dea5c36c23da5d747', '172.105.247.100', 1676049020, '__ci_last_regenerate|i:1676049020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606b86dc4461fd79e5e7e446118ec45da97eb7e7', '172.105.247.100', 1676049020, '__ci_last_regenerate|i:1676049020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c29cdfd74ecd0957ff39ebdeeba06adb4fb237', '172.105.247.100', 1676049020, '__ci_last_regenerate|i:1676049020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3994e1dc219f1562b1247926952402583acbbd2e', '172.105.247.100', 1676049020, '__ci_last_regenerate|i:1676049020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06d74c7b116dda540541dd96eef77b18c89ff53', '172.105.247.100', 1676049021, '__ci_last_regenerate|i:1676049021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00bd7913843faec6a9962935349aa81089ea26e6', '172.105.247.100', 1676049021, '__ci_last_regenerate|i:1676049021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e1f4158a4a0d4441e5e605c6c36d70f17b2bc92', '172.105.247.100', 1676049021, '__ci_last_regenerate|i:1676049021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925a5bbb6c2d1cb8e249acb473386ad63e8d6a81', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f1bf469ff99973f9def3deba47cce90bb404dd1', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a519530daff3f1a481c50c306facf4006672ec17', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34269a330b49cac74bad939ff435cda6187c4088', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4047c05a305b974684c1d16f9dd1c2583598aa70', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802299a05e771e5a7560c04241cda0ab985da437', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec81797e3f4fe2f44eb5c03dba394d6c89274d0', '172.105.247.100', 1676049022, '__ci_last_regenerate|i:1676049022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4375e736c26d5004d7824b0207f788cffd9485', '172.105.247.100', 1676049023, '__ci_last_regenerate|i:1676049023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c247c5b54762b9287977235754566b04025cd6', '172.105.247.100', 1676049023, '__ci_last_regenerate|i:1676049023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb1d53427fd0e75fb3d41ba00dd421dd9e2fa85', '172.105.247.100', 1676049023, '__ci_last_regenerate|i:1676049023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('549d982bac178b8e8f6ec754acbd52f1b4866fa3', '172.105.247.100', 1676049023, '__ci_last_regenerate|i:1676049023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('296d95dba04ad806f66542542beaf40618f491f1', '172.105.247.100', 1676049024, '__ci_last_regenerate|i:1676049024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffdfc09f8bb507f142e725ed197f61a28a317a86', '172.105.247.100', 1676049024, '__ci_last_regenerate|i:1676049024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60fbe7957fdcc526fd3ea723fb52dc761b765796', '172.105.247.100', 1676049024, '__ci_last_regenerate|i:1676049024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d72b7d0d268339890e04f126481527b3dfb84a', '31.222.203.2', 1676050447, '__ci_last_regenerate|i:1676050447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31b758e4315b3cf9f1d727f1944c375cbe28e6a', '31.222.203.2', 1676050447, '__ci_last_regenerate|i:1676050447;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370e1a5fe703e70e7315527f9b86d7dd1e7063db', '31.222.203.2', 1676050447, '__ci_last_regenerate|i:1676050447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d169d4a4badcf93ac73d7b0d4143cc9e9e306a96', '31.222.203.2', 1676050447, '__ci_last_regenerate|i:1676050447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969d649b6f42abb19c2b4f0371f305f7ec70e8b7', '31.222.203.2', 1676050447, '__ci_last_regenerate|i:1676050447;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c0e1ecb0f4d740eeb9baa31203afa6f92904c8', '31.222.203.2', 1676050447, '__ci_last_regenerate|i:1676050447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5af1c305ac0b910f51c28ee9891caff10cfe7cc', '31.222.203.2', 1676052318, '__ci_last_regenerate|i:1676052318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a8c6837ad3404d3213e21996e3d99d948961c8', '31.222.203.2', 1676052318, '__ci_last_regenerate|i:1676052318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62dc97532daead380e249e6df0fbda85ef6160b2', '31.222.203.2', 1676052318, '__ci_last_regenerate|i:1676052318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7cc56249df7939c9a742bc8d2443545f1f3c1e8', '31.222.203.2', 1676052318, '__ci_last_regenerate|i:1676052318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a12465c9998cd30696bbfdbecaa43ce1d3c616a', '31.222.203.2', 1676052318, '__ci_last_regenerate|i:1676052318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2687c040d9f2505ad256cde7f1ac6daad2dc54d5', '31.222.203.2', 1676052318, '__ci_last_regenerate|i:1676052318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144657816c7553405c197edc40e8904115b04cca', '172.105.247.100', 1676054420, '__ci_last_regenerate|i:1676054420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581980efe09cc8d132d281612e697c957bb3e760', '172.105.247.100', 1676054422, '__ci_last_regenerate|i:1676054422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0096aaf3135e845ef15dd1cd96d4039c9d85a40', '172.105.247.100', 1676054422, '__ci_last_regenerate|i:1676054422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe58207543fe2b6f027b3ca3f4119379c38d9a3f', '172.105.247.100', 1676054422, '__ci_last_regenerate|i:1676054422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e8c729b2e186b50f8b2b1f9c453a75e04e4b95', '172.105.247.100', 1676054422, '__ci_last_regenerate|i:1676054422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935ff582c3ebf910bbad4c5966326565c0bac1ad', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df333f464143bc3494461780b229ee15a90d9353', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c25bfe71087c3066dd621f7e380a39bd0935e79', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e42ac9c5c5245c7fc2489c7f2954991137b19d5', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4784d1ac29e7a2c3d8e389f4bcbd2e0441570153', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c3c723e08615d84c1f0b9829b5b3441cfccde5', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c488a66d3b66e757fceca2e62d2f8f793bf0a3', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee2fc8e736054ff9e2d541d08b526659da40144d', '172.105.247.100', 1676054423, '__ci_last_regenerate|i:1676054423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03784549fa0fddc83dbb0ff6cbca19d27e7594fe', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496a56c3e100a3fbb4fccba47da96404fa177730', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc59564ab0c96b180dfdd087b7296a71a81acc25', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4342121350812d688bf9b9a960a81f250d7913', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d2e2de7eb588cf422fb7f0ada164e5c6de25e28', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1a9f72397e689b13f3817a389cd432852d6f4d', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e0d6e5b67fe7a0aca7cbb5e54e8f9da8fa976d9', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b6e5f8414790b391536fb94b3e36c3be7b8b07', '172.105.247.100', 1676054424, '__ci_last_regenerate|i:1676054424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef56e6c68ce892610e190e363583ab5b0222f07d', '172.105.247.100', 1676054425, '__ci_last_regenerate|i:1676054425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce67cfca248aead2fbdca44c1769de63cd40016a', '172.105.247.100', 1676054425, '__ci_last_regenerate|i:1676054425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0833c1872baafab997a5cc75da70a53366d9a0bf', '172.105.247.100', 1676054425, '__ci_last_regenerate|i:1676054425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda1d7c6d29bc85b80ca8bf566e51c214420239c', '31.222.203.2', 1676055773, '__ci_last_regenerate|i:1676055773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26bb8e0f12d26dba7796f29cf799b772ced11fcb', '31.222.203.2', 1676055773, '__ci_last_regenerate|i:1676055773;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7674f83fc2736383573f8de23847c70bf0d21f', '31.222.203.2', 1676055773, '__ci_last_regenerate|i:1676055773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7558e3b72e0212df99fe86d78d74864fbbbaf192', '31.222.203.2', 1676055774, '__ci_last_regenerate|i:1676055774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179aa23f5c136d16f02c8dae090c6cc25ee8d8e7', '31.222.203.2', 1676055774, '__ci_last_regenerate|i:1676055774;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6006c65831327d6c0ee526019f1e7713aa494f5', '31.222.203.2', 1676055774, '__ci_last_regenerate|i:1676055774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a725aaf2824e30fb3e755384e8eea797fe8849e0', '103.63.25.232', 1676057575, '__ci_last_regenerate|i:1676057575;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66af0e6503022ce6843711a897ba5a1aa177e29b', '103.63.25.232', 1676057576, '__ci_last_regenerate|i:1676057576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7da0b87022b0e08f9e5296d0d3339931607a89', '103.63.25.232', 1676057576, '__ci_last_regenerate|i:1676057576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d750c15dd3962a005fcbedd8589da73f9f3fd97', '103.63.25.232', 1676057577, '__ci_last_regenerate|i:1676057577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79d4893eb4b30569bd1a868526edfa27d4443b8', '31.222.203.2', 1676057639, '__ci_last_regenerate|i:1676057639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85529792b09b4b406801aa1518a9add5005e726', '31.222.203.2', 1676057639, '__ci_last_regenerate|i:1676057639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc466621adc13986fbac7161ffe7226405a802f', '31.222.203.2', 1676057639, '__ci_last_regenerate|i:1676057639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcbbc15c56d177e64e027a5a9f56acb33293b7c', '31.222.203.2', 1676057639, '__ci_last_regenerate|i:1676057639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fed780d143b4439932777ebb7d69910fdb8f651', '31.222.203.2', 1676057639, '__ci_last_regenerate|i:1676057639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc421e9946b5f012863f05fed11fcefa473a6548', '31.222.203.2', 1676057639, '__ci_last_regenerate|i:1676057639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9265ee3a0296164f88c49deb5cbc6000d6e0095f', '172.105.247.100', 1676059817, '__ci_last_regenerate|i:1676059817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ad23d63fd8515b4bf7f794cfff59f021a3e5e0', '172.105.247.100', 1676059818, '__ci_last_regenerate|i:1676059817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f181f10deebaf6a9c941b1a3bc11ec0b4b8f8e', '172.105.247.100', 1676059818, '__ci_last_regenerate|i:1676059818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db363434a143eb86fee4d77c47c44c256444953', '172.105.247.100', 1676059818, '__ci_last_regenerate|i:1676059818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6692f10337c326521c2660ab7fcec77b80422a', '172.105.247.100', 1676059818, '__ci_last_regenerate|i:1676059818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db47ac87b03e146b47ca48f52226ee9b80df8d2d', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a182cbe76fa30cc73e30d2a834325d1c672d4c', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a70bbf4ccec7ca0e43b4684d8dc2b36661e864', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a053bbd795a76fc3f08bc7d8e090d3ca792af7', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9407676d0c7c7d6f95dc8f9246bf3320d06e6ba9', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98357c9f609b9801d9acd382e8a18553ce21ad45', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3568556aab694631aa2c0f2f1cd71bb295519eb', '172.105.247.100', 1676059819, '__ci_last_regenerate|i:1676059819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9237c45887e89138e95503ff1ac6a151d87ec264', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e31ed81f2e0ca1878d9f44f79b968b007d0eb10', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f33c49083eccaf3171178e8c2d82e9b6a30f9844', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b105794d613c7797b17e11d704839dc91c9369', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10089da5bd411a375d05e23ade48568594e24f0', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a334d8bddf6fb841705ede929949086d17f6946a', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48bb03b3f8936077f642115c2d8dbaf21d8efef4', '172.105.247.100', 1676059820, '__ci_last_regenerate|i:1676059820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb2d00da87a3e5e21cf1745ee48592ef52d0c131', '172.105.247.100', 1676059821, '__ci_last_regenerate|i:1676059821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656326854659af4edbdba3645eeb22993dd9aa91', '172.105.247.100', 1676059821, '__ci_last_regenerate|i:1676059821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973826bc48979497c1fb0d8de71a210e7509dc22', '172.105.247.100', 1676059821, '__ci_last_regenerate|i:1676059821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('788971e489a42d402335ea9cd8108b11d6b39abc', '172.105.247.100', 1676059822, '__ci_last_regenerate|i:1676059822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b6cf1155f9008dd51d7cd92873c084236b12a6', '172.105.247.100', 1676059822, '__ci_last_regenerate|i:1676059822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e168c9d2081dcf0b69fa9ee7d6068309e3cddb', '190.107.177.243', 1676059873, '__ci_last_regenerate|i:1676059873;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebcdaf6e2556240adaea3029f2e78dbcac048897', '190.107.177.243', 1676059873, '__ci_last_regenerate|i:1676059873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b202cb06c1a1d7d2f976ec0d8900f13c27383dbb', '190.107.177.243', 1676059874, '__ci_last_regenerate|i:1676059874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039c5edde714b819041efba2d37a8809e425d720', '190.107.177.243', 1676059874, '__ci_last_regenerate|i:1676059874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae6834c97444ab88245725c3507a4a36675ad02', '31.222.203.2', 1676062965, '__ci_last_regenerate|i:1676062965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('895e51df571435811d0af732cdba1bfc6bae9297', '31.222.203.2', 1676062965, '__ci_last_regenerate|i:1676062965;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e76783ef7e825091ddcd73896e0a05a28ab890b', '31.222.203.2', 1676062965, '__ci_last_regenerate|i:1676062965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839ada4761d79778f1988dcc35a3e9a0477f8a29', '31.222.203.2', 1676062966, '__ci_last_regenerate|i:1676062966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8c50c21df2e29075d2cdbbb580f01b723f3190', '31.222.203.2', 1676062966, '__ci_last_regenerate|i:1676062966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5dfd41d2d7d907c76c683eebde3b9cf6241d6f', '31.222.203.2', 1676062966, '__ci_last_regenerate|i:1676062966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c041c120772df1ab3ec2d5ec55ce037a2bc10c8e', '31.222.203.2', 1676064835, '__ci_last_regenerate|i:1676064835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c81a5b6b60be6a90abf86dff6365a2872fa249f', '31.222.203.2', 1676064835, '__ci_last_regenerate|i:1676064835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4af1535a58b89afd7403e8f549e2dc9ec39949', '31.222.203.2', 1676064835, '__ci_last_regenerate|i:1676064835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d10b9113a1dac3b726dc60625f690dae1a93c5a', '31.222.203.2', 1676064835, '__ci_last_regenerate|i:1676064835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d23934967c9d0e8dbf525c93317d7911442977', '31.222.203.2', 1676064835, '__ci_last_regenerate|i:1676064835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04cdf030c3551e3e77311c0d45b96efab69ffae', '31.222.203.2', 1676064835, '__ci_last_regenerate|i:1676064835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92813da46393d5e64065eb2500421d2e1608a2b5', '172.105.247.100', 1676065221, '__ci_last_regenerate|i:1676065221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c588b4324ba1c2e7b7202eeb811d574db20dcd1', '172.105.247.100', 1676065221, '__ci_last_regenerate|i:1676065221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c30ec019692ef505f51c69ebab69c50a1b41fa6', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b267ad26c27e56964971bb77d11c1a4ecfc9e8', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a6837dce3b70db1051ae7e8ce2841bf6f678772', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8eb985dbd86dbfa4ec8ffd903bcefe2c69be176', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73393ffd5f9740ab01308d0af22bed50c60dc5f7', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf23bc9ad162f21612a0918b03567b61375260aa', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0789656c5ca6bad4eb785fb164fd6c6bb1d901f5', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f631d3c0032dd313a9428cf4d35b8417c6dfc1a', '172.105.247.100', 1676065222, '__ci_last_regenerate|i:1676065222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d831d126d6ef6442ed501db3a4a84005f73c55', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f9c8b3ca3bb711c47f190a2b17bed2040ed07a', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca68fc6688975cd4de0d2d94bfb9d1737a7d24e3', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bef77c8b4ac7d58dd2f4db22ce0534c62e31cb3', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3600b52da9ba71b1e22eab0b0a56cbb6d819bf4b', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f819087185564fc1185a2c42e066caa8dbdd846b', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912b84d188add86f9cb15b7bf134aacf817ecbb8', '172.105.247.100', 1676065223, '__ci_last_regenerate|i:1676065223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f0ab87b8f757ff477bea3d38e6c45ad45941f6', '172.105.247.100', 1676065224, '__ci_last_regenerate|i:1676065223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981b3eeaa4a0b1f9f90c2ca064c9615d005cfc29', '172.105.247.100', 1676065224, '__ci_last_regenerate|i:1676065224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b45cc4c85816d5923a4fc44fec70fa4923b532e4', '172.105.247.100', 1676065224, '__ci_last_regenerate|i:1676065224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0554f579fa13d09f01fbf05e40cd208af4ac1451', '172.105.247.100', 1676065224, '__ci_last_regenerate|i:1676065224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7195fe692f1359ea6d83e1cf30905e3861050ebd', '172.105.247.100', 1676065224, '__ci_last_regenerate|i:1676065224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e9563508822e3a9ac2341889e85f4ebbf7ff986', '172.105.247.100', 1676065224, '__ci_last_regenerate|i:1676065224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('467eb6552fdecc784e63a92e2132f5b08d4f1f0d', '172.105.247.100', 1676065225, '__ci_last_regenerate|i:1676065224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5a453ed3f7204b99937fd011ebb189434d5547', '31.222.203.2', 1676066694, '__ci_last_regenerate|i:1676066694;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c1ead8a266fde7578a2a5ffc9743c3d724e2b0', '31.222.203.2', 1676066695, '__ci_last_regenerate|i:1676066695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56a437553d857ca83aef4e13df8393ed7089202', '31.222.203.2', 1676066695, '__ci_last_regenerate|i:1676066695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc0769f5fbe8eb479c31e460d74e86fb0f26329f', '31.222.203.2', 1676066695, '__ci_last_regenerate|i:1676066695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73760e3b1a4172788b66aff4ecfe39830d853be5', '31.222.203.2', 1676066695, '__ci_last_regenerate|i:1676066695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154c572a24d493fc18fa507d363634690423bdaa', '31.222.203.2', 1676066695, '__ci_last_regenerate|i:1676066695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b5327c98cea69c22782057374fe48319fc0d95', '101.68.211.2', 1676068094, '__ci_last_regenerate|i:1676068094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47412780948b84223e747c2b71f518c1840c1ca1', '101.68.211.2', 1676068097, '__ci_last_regenerate|i:1676068097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2073b269816b74dd2658fc69a2d61e9ae1265fb', '101.68.211.2', 1676068192, '__ci_last_regenerate|i:1676068192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01489b2fd587999e720508c8840c28023277e563', '101.68.211.2', 1676068193, '__ci_last_regenerate|i:1676068193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85affd86b93570caa6afbe8d55d5ed99882afcfe', '101.68.211.2', 1676068315, '__ci_last_regenerate|i:1676068315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0735f79efb669d230fc9293b2a48e0098bc8313', '101.68.211.2', 1676068337, '__ci_last_regenerate|i:1676068337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9203097cbef43d3f17d431f3fa52fa9cb09cda', '101.68.211.2', 1676068653, '__ci_last_regenerate|i:1676068653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4fdc38f9bbd9f37a61fb44bc7c730dd9d6f56e', '101.68.211.2', 1676068674, '__ci_last_regenerate|i:1676068674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5ee1eb02f31442a27d27502db8ae33d08a95f9', '172.105.247.100', 1676070620, '__ci_last_regenerate|i:1676070620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47fc7b4b67b0c453333416923afa32367b1c2b15', '172.105.247.100', 1676070620, '__ci_last_regenerate|i:1676070620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c37c81eb898a8ce11b3eb82bd1da6724fd7d95a0', '172.105.247.100', 1676070621, '__ci_last_regenerate|i:1676070621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30efb6d90d0b98ba18b4cfd3636a6b5e9e4f4b64', '172.105.247.100', 1676070621, '__ci_last_regenerate|i:1676070621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21dcea2d5ae97f349f9a2eb00ba0411abe5815ac', '172.105.247.100', 1676070621, '__ci_last_regenerate|i:1676070621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273dfe9d9ae0c5de2598e47e0ef5a359e23ea423', '172.105.247.100', 1676070621, '__ci_last_regenerate|i:1676070621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7261346e2e85dfb0c2c468245a14f9c08c9623b', '172.105.247.100', 1676070621, '__ci_last_regenerate|i:1676070621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff80035cd18bbdc1ee2e046ae38061749c7dc9a9', '172.105.247.100', 1676070621, '__ci_last_regenerate|i:1676070621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06921c9e18818f3cc25fda5246635fdf1821486b', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70342c253cb700641b3385eea3e77cc79676ddc7', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d6f27e9ffab6e666b5b583314262474b8a69c3', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b02167997acd01418ca9d7e91af28d49ca7aed4', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b34ffae75d695b67357ce7473c333a285b3f124', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c092605356ff7891bf55abf38acc7a922083418', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b182b41e77932a8fdf3df64f65a1ff3e2e63954f', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428f83dc1ba937b4adbc7b75cb1291e4987d8aef', '172.105.247.100', 1676070622, '__ci_last_regenerate|i:1676070622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff81da5c494008f74a04753782e6746d07def22a', '172.105.247.100', 1676070623, '__ci_last_regenerate|i:1676070623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e0ef28e7687f41fc0e26db384fc4b8a69fa133', '172.105.247.100', 1676070623, '__ci_last_regenerate|i:1676070623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe3ab9292d4109dfc918abd11802cb897b1022a', '172.105.247.100', 1676070623, '__ci_last_regenerate|i:1676070623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6ba6475b9da72f681e1328acfc02df6e73c2bf', '172.105.247.100', 1676070623, '__ci_last_regenerate|i:1676070623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeab2c9aa123d267e1c9cf733049dc93dd6f1839', '172.105.247.100', 1676070623, '__ci_last_regenerate|i:1676070623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5484ac611c1bdde1389244fc76ac6fe0dde8068d', '172.105.247.100', 1676070623, '__ci_last_regenerate|i:1676070623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668c2769387c0ed6dedd5217fe1992f287bea221', '172.105.247.100', 1676070624, '__ci_last_regenerate|i:1676070624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ecaa17511047232e4213dacc3c95a9b17d9857', '172.105.247.100', 1676070624, '__ci_last_regenerate|i:1676070624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb4bcb6c50fbf022c1f114571d0c58400eb339e', '31.222.203.2', 1676073748, '__ci_last_regenerate|i:1676073748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad5be69e771896d965cfd092474de158376f9bc', '31.222.203.2', 1676073748, '__ci_last_regenerate|i:1676073748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e344820f54d4ce63642e4e23b4c82283be4b4f33', '31.222.203.2', 1676073748, '__ci_last_regenerate|i:1676073748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e5a98cb96515cd687ede4a6e0cff2d0818e989', '31.222.203.2', 1676073748, '__ci_last_regenerate|i:1676073748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72871b640f12a17a72c4e6714c71bf09b1a7949d', '31.222.203.2', 1676073748, '__ci_last_regenerate|i:1676073748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc6d960ae4ae26b5b822ab82db76da9f40b675c', '31.222.203.2', 1676073748, '__ci_last_regenerate|i:1676073748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84718f8f12bb63b9ec7c11dc0f321788a55d0a0c', '31.222.203.2', 1676075695, '__ci_last_regenerate|i:1676075695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('616143b29beef2ce13d072a9f20bfe5785c5d6ff', '31.222.203.2', 1676075695, '__ci_last_regenerate|i:1676075695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a43de63b388da7db64aa55684e0361733aa2e3ec', '31.222.203.2', 1676075695, '__ci_last_regenerate|i:1676075695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf1c74d8105a74c1922a21e6a64c0d1133877b7', '31.222.203.2', 1676075697, '__ci_last_regenerate|i:1676075697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d864e13b88950385ad6b2199fae47e97c91360', '31.222.203.2', 1676075697, '__ci_last_regenerate|i:1676075697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceba1fcda144acd49f56d5b60d2b859348400a5b', '31.222.203.2', 1676075697, '__ci_last_regenerate|i:1676075697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0603e74764f86089eebf42d3e003e0b66f1c7ac8', '172.105.247.100', 1676076016, '__ci_last_regenerate|i:1676076016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b5855ccc574674df3220047aa60863e4ffdd61', '172.105.247.100', 1676076017, '__ci_last_regenerate|i:1676076017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba795f9fb5445c3f78d9b2f5a4da653761171678', '172.105.247.100', 1676076017, '__ci_last_regenerate|i:1676076017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f5b2211da35fc3a48ff4c759569484202ab6aa', '172.105.247.100', 1676076017, '__ci_last_regenerate|i:1676076017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d25cae628ce957cbfa8c7a2f739397375ff542', '172.105.247.100', 1676076017, '__ci_last_regenerate|i:1676076017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8068123ef46121fc2d5186293308d453df31f518', '172.105.247.100', 1676076018, '__ci_last_regenerate|i:1676076018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd0f2ad31769ab262e2bf980066d2da91a9650d', '172.105.247.100', 1676076018, '__ci_last_regenerate|i:1676076018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b944e426948e92c842d4cbce807cb798bea217f4', '172.105.247.100', 1676076018, '__ci_last_regenerate|i:1676076018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095719e284c6158e526b8c16361f07c0da567ff6', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd6bb363716c600659c7b2edd5bf719c3067ccf', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e25e0e5a3a11af11237ba468c868c2021ad3623e', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661c540965935f345eea73a47a32a1c9dd73a9f3', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c3f83d029c687a9f572e622b0944b3340e7ad8', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531e49ef61f51e96e88fd8cd725ae17e69415849', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea44a43340aed02f972fb2742d2c41fc62aa0ef1', '172.105.247.100', 1676076019, '__ci_last_regenerate|i:1676076019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98ae34968e180ab336272467d69a5c2f9681fb8', '172.105.247.100', 1676076020, '__ci_last_regenerate|i:1676076020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb2faeb8e48b7c8d520b6ec0a50c04a0697f04a', '172.105.247.100', 1676076020, '__ci_last_regenerate|i:1676076020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3d48d8d835c786c1be0300cdc1d7f2ae4f0397', '172.105.247.100', 1676076020, '__ci_last_regenerate|i:1676076020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fee4b5356995a6c781ea167045977de35f37a0f9', '172.105.247.100', 1676076020, '__ci_last_regenerate|i:1676076020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b7042c9ddd92e025b331e8538509d4bbdbf3d3', '172.105.247.100', 1676076021, '__ci_last_regenerate|i:1676076021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88a293344508541006467b1107a26e5f542daca', '172.105.247.100', 1676076021, '__ci_last_regenerate|i:1676076021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5f4a5d7d9826ab9085d97523176eea22b59ee5', '172.105.247.100', 1676076021, '__ci_last_regenerate|i:1676076021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1868522d47e07f351768fdfea4ce930e9d549f53', '172.105.247.100', 1676076022, '__ci_last_regenerate|i:1676076022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d53398e1e1e27fae85111b96f5f3b5c660389b', '172.105.247.100', 1676076022, '__ci_last_regenerate|i:1676076022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e3c6c0b3d4169221cc48cead17d821ba28bbe4', '205.210.31.8', 1676077301, '__ci_last_regenerate|i:1676077301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b0f18848e0954b55d5166dca456b9ac9b6f7200', '205.210.31.8', 1676077302, '__ci_last_regenerate|i:1676077302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8832e41d48999c035fddd4836f844abd96528f', '205.210.31.8', 1676077302, '__ci_last_regenerate|i:1676077302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6310e329e653a6b20afa60df7d2d3a68a5bee6d', '31.222.203.2', 1676080947, '__ci_last_regenerate|i:1676080947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b283d5d25bd6d9cea054398a2fb99785677b3692', '31.222.203.2', 1676080947, '__ci_last_regenerate|i:1676080947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b170353cba7b132a223c1475976609dfc5868e77', '31.222.203.2', 1676080947, '__ci_last_regenerate|i:1676080947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f3fc9b272c995db11fa08b27ad0f01afe4f3ea4', '31.222.203.2', 1676080947, '__ci_last_regenerate|i:1676080947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b3b9c1d24b4d47bec32abee02914786ddec4fc5', '31.222.203.2', 1676080947, '__ci_last_regenerate|i:1676080947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed367643abe1681590edb1773d1c6a483ec845b', '31.222.203.2', 1676080947, '__ci_last_regenerate|i:1676080947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d9e71fc31e8fb458b159529d7852faf7337227', '172.105.247.100', 1676081417, '__ci_last_regenerate|i:1676081417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f013287e771ef6c2eb04d2d397b4c950a1a23398', '172.105.247.100', 1676081417, '__ci_last_regenerate|i:1676081417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e15d07b5d90823b9b4ff3a39213541716bced9', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f81e3f5fb59b7dd834934c5be51e80dc535851dd', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('796774474fd696d5a0fb0fbcff68aec9e81f1bc5', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d615d1a37d18bf8dbec21551c68908b1cef1fdfa', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46f893f3ff56f0f4e5ba5d69a981b85b29c7393', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ba945527b1bf95f90588eee6fc00e3a68e8e72', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880c9347f026d403893a8c511f38cedd9b4f05a3', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856ce8595aeda397af0ca2d3f4152b49cb7029f2', '172.105.247.100', 1676081420, '__ci_last_regenerate|i:1676081420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba48807a4326022119acdecb0d0205e15479d216', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379b5ff7870c89c022b489d8acd1a867a6d9bb23', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eefd6408d22a75c4b76328fc7141e80dea30a74', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc0e3392948595f8712d1c86ea5cb442f8e8db45', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddffc182d1a82eecff32a4c77b03db61081a3636', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2831498bc69a636a7bb3381470e38914b2cbe2', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0e1c815b871b43746f42135a4455ad564d5892', '172.105.247.100', 1676081421, '__ci_last_regenerate|i:1676081421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70457cdb32d29079027b77be8f90ceb496b6d84b', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0377c745aaaf442e2548fad61be6ca3118996888', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097782e0464186bd091f22b393f8ddbaf5d7e4b4', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd972e321a09dade9904f8644555d23a38f5ebfb', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe2d255429fd3adff18a3e694987d192d6d8a31f', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecff2cab3b625ee8f8def6cf301e57c6a0d6010f', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2204be03134981899ff4b1168753d9a8c188298c', '172.105.247.100', 1676081422, '__ci_last_regenerate|i:1676081422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2909c04f00653aa02488ef88941c708954ddbc82', '31.222.203.2', 1676082836, '__ci_last_regenerate|i:1676082836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb523116816157bee17de73f59e52848b86a575', '31.222.203.2', 1676082836, '__ci_last_regenerate|i:1676082836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b290f35ae9780b12208689bf5aa6fb85876feb3a', '31.222.203.2', 1676082836, '__ci_last_regenerate|i:1676082836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fba3330cb433e87a3ef53c6dab64e9a257047792', '31.222.203.2', 1676082836, '__ci_last_regenerate|i:1676082836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240d72ad0ea751f0befd345de676c354701c3505', '31.222.203.2', 1676082836, '__ci_last_regenerate|i:1676082836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71576ac8e42de1771f713d13f26da78888b908a4', '31.222.203.2', 1676082836, '__ci_last_regenerate|i:1676082836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee8c824112c2b87bc530a4ca0d9fb36215df81da', '31.222.203.2', 1676084696, '__ci_last_regenerate|i:1676084696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0066cde11610052ddb9dba58adad1075dd44a9', '31.222.203.2', 1676084696, '__ci_last_regenerate|i:1676084696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138483566c5a3635fd10243e4af6cc498d9bba80', '31.222.203.2', 1676084696, '__ci_last_regenerate|i:1676084696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380913f8ce7605f939ca64856cd26ca64f9bec25', '31.222.203.2', 1676084698, '__ci_last_regenerate|i:1676084698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707a0e316a6ecfad6760bb16b5f9d229b8c52258', '31.222.203.2', 1676084698, '__ci_last_regenerate|i:1676084698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb909cefa0275de2bd1bbe7887f22782b6269832', '31.222.203.2', 1676084698, '__ci_last_regenerate|i:1676084698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e854a7911d1e9e3a05371831ae689a36494e0a3b', '172.105.247.100', 1676086820, '__ci_last_regenerate|i:1676086820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e9e7cb631d97ae16bdf4a53a7060196a8f584f4', '172.105.247.100', 1676086820, '__ci_last_regenerate|i:1676086820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14b4e8c2a20e2bc9cb3a05e265139aa20a12c95', '172.105.247.100', 1676086820, '__ci_last_regenerate|i:1676086820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db9a0065df04fe2504a7c5a6c14f75d878b7f546', '172.105.247.100', 1676086820, '__ci_last_regenerate|i:1676086820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53a7e176ae4ccb7f25a02facfc415a6dedecaa2', '172.105.247.100', 1676086820, '__ci_last_regenerate|i:1676086820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9ca8216877e3d94fade03539d54f02a5f123ce', '172.105.247.100', 1676086820, '__ci_last_regenerate|i:1676086820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa00e83b42928694bdff64a91aab5f3023ba923e', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12a7b7c7f0e0662321f11b6fc2648987da8187bb', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86cac08884f2e298030a0879a5c08f3be1495120', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800c89c376aca753320285ed9087fce515939c77', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9baf3bac0b203a41e47aecbec6be55473a8b3939', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d586e01568f5689e276c2edf6bef17a96782418c', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432f5e92bd376131b5a61263c4aeba83dc7c6a24', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d236fb57ec16807adbc08e89b6ed263ee2696cc4', '172.105.247.100', 1676086821, '__ci_last_regenerate|i:1676086821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3cd34fcdb7e1e1adb0acd224375a6a43475e73', '172.105.247.100', 1676086822, '__ci_last_regenerate|i:1676086822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3808fb5a489a38ac9e7aa47acaa5adf1471b34a', '172.105.247.100', 1676086822, '__ci_last_regenerate|i:1676086822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ff35b2aac3c256e2f8f53288b5eb29ea3a91dc', '172.105.247.100', 1676086822, '__ci_last_regenerate|i:1676086822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3b03ed2ac73ca34fed1ee02c145d88bb10adbd', '172.105.247.100', 1676086822, '__ci_last_regenerate|i:1676086822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ac753b07abe4404734142e6fc6b08a8d07bce0', '172.105.247.100', 1676086822, '__ci_last_regenerate|i:1676086822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db3740edd676cd641cfe41186808055e614199d', '172.105.247.100', 1676086822, '__ci_last_regenerate|i:1676086822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d22cf0d569fc60f4efb6bfe28132660adbe2574', '172.105.247.100', 1676086823, '__ci_last_regenerate|i:1676086823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b619ae217c4298d3fb537758d3aeea427ce8d133', '172.105.247.100', 1676086823, '__ci_last_regenerate|i:1676086823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2509e649b8102e0e7458f3c9eac2c3877d1770f', '172.105.247.100', 1676086823, '__ci_last_regenerate|i:1676086823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9888f740f69e33a57522f57ce638623f7831dc67', '172.105.247.100', 1676086823, '__ci_last_regenerate|i:1676086823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e16939f9816db1edd5d4a4940375851f07f3a9', '45.120.39.89', 1676088600, '__ci_last_regenerate|i:1676088575;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676018849\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676088599;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d73f49e42a5159b18d47917a588d7b0164b406a', '172.105.247.100', 1676091620, '__ci_last_regenerate|i:1676091620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808a8ba935252db50cf9f3468a2bf3eada0ce90f', '172.105.247.100', 1676091623, '__ci_last_regenerate|i:1676091623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15867a36f221bfcadbc82dcd8006642072686d0b', '172.105.247.100', 1676091623, '__ci_last_regenerate|i:1676091623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f375a7951f45067a4df9430512744c7ee57f4579', '172.105.247.100', 1676091623, '__ci_last_regenerate|i:1676091623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f34f93934040f00e54640920602efd002eeb57', '172.105.247.100', 1676091623, '__ci_last_regenerate|i:1676091623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28f3754cf5a6f5db9e2e67f9d69f0e6151918c6f', '172.105.247.100', 1676091623, '__ci_last_regenerate|i:1676091623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dddf46811b03c15d3e2bb6f1bb24ef99285a117b', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d6db34be5b073e5f91a2ba75d6fdcf363f4420', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d81200a242282865deedec64f74d46c6e0a7eeef', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0668cd6ea2b96db1b795c1b1d000e5d8e547061', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038ad1365336509d076c35593e6a7d0560293f03', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974a88c66eeec975f320b42918611e41d7fc490b', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f0f67e0e9aa3e463145729a74e0229e7ba0bcf2', '172.105.247.100', 1676091624, '__ci_last_regenerate|i:1676091624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b00f4a47f520b26ce63fd91776347326f172ca', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbd22ad2b123207a0600067f23cfa21e4442c2c', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d401064cca3d5f5103db0720249bb99218e8df94', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0807018a381cf2e8c3fa55f8723ad52f0093850', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d76e2b4f9f84f5127a6a27c094ce8bd24e2502ac', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9dba7ef8c354bb2d744918ce1e93931dae7b26', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c85d93dd565d5e47ac2c2e9203ac01a4e95bbfe', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b83e42200b747d0f725ce00e16abbb967cca585f', '172.105.247.100', 1676091625, '__ci_last_regenerate|i:1676091625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45182f5c207bf783ce9b84d9642a2794f0d4bfc8', '172.105.247.100', 1676091626, '__ci_last_regenerate|i:1676091626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed852ff5650caa698844cd4363c5ddae4d4c39b3', '172.105.247.100', 1676091626, '__ci_last_regenerate|i:1676091626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deea7f895857d65eee172c5b22da61b1c706a0e6', '172.105.247.100', 1676091626, '__ci_last_regenerate|i:1676091626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c84199870fd3f8764a62b657cce078fe63cd5b', '31.222.203.2', 1676091754, '__ci_last_regenerate|i:1676091754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4d007bd93cb1133fa30ad70ba145456b7dfb29', '31.222.203.2', 1676091754, '__ci_last_regenerate|i:1676091754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427769993fe93a1ecf0204d2bcf4a5690e9039ec', '31.222.203.2', 1676091754, '__ci_last_regenerate|i:1676091754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f5f7375fbce78d20ba2ba1efb6adbd058d3f22', '31.222.203.2', 1676091754, '__ci_last_regenerate|i:1676091754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c064b084459808c0cf7e6b8acac213f5d47083', '31.222.203.2', 1676091754, '__ci_last_regenerate|i:1676091754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a7fe33fb7d6611e0949ec7ee4a8ab8164ff30a8', '31.222.203.2', 1676091754, '__ci_last_regenerate|i:1676091754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546a9af12eb2277e00a0e8c5927a11a5c62bc487', '116.204.230.21', 1676092213, '__ci_last_regenerate|i:1676092188;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1675745963\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0d66d43e6d2267da4513deb20e960b8ff2d4fb8', '31.222.203.2', 1676093636, '__ci_last_regenerate|i:1676093636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25058bf5ce12a0cb16307ecc0ae9f7e3f9f17a6e', '31.222.203.2', 1676093636, '__ci_last_regenerate|i:1676093636;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b082c64ffdaf6a52e31ee4b06debe8c46284fb', '31.222.203.2', 1676093636, '__ci_last_regenerate|i:1676093636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0293968e3075a26d3b24381406f80cca5e58ded4', '31.222.203.2', 1676093637, '__ci_last_regenerate|i:1676093637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0e7109f24c8ff32c048fa19569cff01c2499a10', '31.222.203.2', 1676093637, '__ci_last_regenerate|i:1676093637;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6f98bce880f6c521108e08f6f862cfd41e1bf8', '31.222.203.2', 1676093637, '__ci_last_regenerate|i:1676093637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3948120ea3edfaff00871b2fb427a4c16007ec7', '172.105.247.100', 1676097021, '__ci_last_regenerate|i:1676097021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e339bbd1ebcac80514dd11fb65c44f48f7de99c', '172.105.247.100', 1676097022, '__ci_last_regenerate|i:1676097022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9a53a516cdac1daaa12fbb6bb56cd09d724d90', '172.105.247.100', 1676097022, '__ci_last_regenerate|i:1676097022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901fd85b5756caa6453894e8d3f2e8f03ef7f483', '172.105.247.100', 1676097022, '__ci_last_regenerate|i:1676097022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b42238fba9bf546b40d721a98ac75667caceba7', '172.105.247.100', 1676097023, '__ci_last_regenerate|i:1676097023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7d354f0f1088d926bf41b56fe2dbb6555a0d31', '172.105.247.100', 1676097023, '__ci_last_regenerate|i:1676097023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f036cfaa951eb6ba5288438ec4c811816cc302', '172.105.247.100', 1676097023, '__ci_last_regenerate|i:1676097023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61db0b2d29a784fa7b89937ed58a309101279f18', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d742c28d8bdb83742f3845d0f90ae2091d12d0d5', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4460978f28e6fcc9cafc2b48cec0fa27d8363dbf', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faba7d3929575dbc4f303f824ddaa13dc97d8dd7', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44cc764b55d1093209b9d676afffb9f350ea36a0', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6a0fa923f04ce73b232a0938b9961e0aaca352', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88c50cd4dfa92fc3ab26d0e20cbb9335078b977c', '172.105.247.100', 1676097024, '__ci_last_regenerate|i:1676097024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30e3ee319111b9b2ac2261084234f796a325787', '172.105.247.100', 1676097025, '__ci_last_regenerate|i:1676097025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21126ac4fa62b435edf5a9a74c9b128e93ae19df', '172.105.247.100', 1676097025, '__ci_last_regenerate|i:1676097025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836a05928394de13b3c82d4d4dc4caa913fdd616', '172.105.247.100', 1676097025, '__ci_last_regenerate|i:1676097025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb9682ff3272fb63b775b9b9474e847800c9bcf', '172.105.247.100', 1676097025, '__ci_last_regenerate|i:1676097025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f799daedc310f3db2cac9eea0c9c93c62ba93b2', '172.105.247.100', 1676097025, '__ci_last_regenerate|i:1676097025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380bec7ac042db21657e735775ad9ee43827eae2', '172.105.247.100', 1676097025, '__ci_last_regenerate|i:1676097025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162562d6fbb316f0ee8b0745a7b27359748c6452', '172.105.247.100', 1676097026, '__ci_last_regenerate|i:1676097026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3995d0ea6c30ec99b132d5987ee54187236a0e4', '172.105.247.100', 1676097026, '__ci_last_regenerate|i:1676097026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c933be033dcf1de856b51f833acefdf36fac5b', '172.105.247.100', 1676097026, '__ci_last_regenerate|i:1676097026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3264804b3db693133f6d06a6af6092b026b6638', '172.105.247.100', 1676097027, '__ci_last_regenerate|i:1676097026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0177492cd66bbe1702ff68a3a37d11c06084bdc5', '205.210.31.5', 1676097394, '__ci_last_regenerate|i:1676097394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca442683b345d35f14fd423b4ccaf4a7b0663f8', '205.210.31.5', 1676097395, '__ci_last_regenerate|i:1676097395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4700d3831b077f9e587410a87e699ce4482f85f8', '205.210.31.5', 1676097395, '__ci_last_regenerate|i:1676097395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2259a4bb80fc012e410000fae58ff19bedbfd25', '31.222.203.2', 1676098950, '__ci_last_regenerate|i:1676098950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda1ccfd47944da06ac606eb4e5a67a6998bdb91', '31.222.203.2', 1676098950, '__ci_last_regenerate|i:1676098950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52ec930b26e3d3b2d639330bd4d869720fe9acd0', '31.222.203.2', 1676098950, '__ci_last_regenerate|i:1676098950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10fb91983ede665a13210bef393fec378fbcdbc8', '31.222.203.2', 1676098950, '__ci_last_regenerate|i:1676098950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df732d305505fd6dbc42cdfbb3f4811b1143e6b7', '31.222.203.2', 1676098950, '__ci_last_regenerate|i:1676098950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb964be2c0d9e6978019e33dbe7962eda0ed52b5', '31.222.203.2', 1676098950, '__ci_last_regenerate|i:1676098950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d531e91f5ffdd5f193e0052ba7fe24205ce0cc', '31.222.203.2', 1676100895, '__ci_last_regenerate|i:1676100895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89767453ff13381a2d95f72f35ca70a995ee5abb', '31.222.203.2', 1676100897, '__ci_last_regenerate|i:1676100897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1afe49c315a7824cc0c6a0ffcd5334c7443bf1a0', '31.222.203.2', 1676100897, '__ci_last_regenerate|i:1676100897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c493c7ae51da6ade89dd2fd2781cc4d8c5a0be', '31.222.203.2', 1676100897, '__ci_last_regenerate|i:1676100897;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6b37653ad34565370b0fdd0bbf636c2a2a3205', '31.222.203.2', 1676100897, '__ci_last_regenerate|i:1676100897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4be044b8c29161b84d1d488974fa213ff1e2610', '31.222.203.2', 1676100897, '__ci_last_regenerate|i:1676100897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9077002765bd02745c59535ddd6f3be4a485e288', '172.105.247.100', 1676102421, '__ci_last_regenerate|i:1676102421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c4d61ba29ecd91b3bd7914444f728d88ec6386', '172.105.247.100', 1676102421, '__ci_last_regenerate|i:1676102421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f764b5fe0c902b63c42788328d20584dfc921e', '172.105.247.100', 1676102423, '__ci_last_regenerate|i:1676102423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c5cac2bfb33b377b63b041c09371c2cb347210', '172.105.247.100', 1676102423, '__ci_last_regenerate|i:1676102423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719ebc051bbdc6de87f6de9ced9d5158c05b4a2e', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432a0206ba2b9caae9aeacf0a4c38c71057ef166', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6b02d06c93835b00f21225904d04a9d466480b', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31aa22506ff9ab65f381f3d89afeb1adc321e679', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63492d34b4109e0185479e784ad2f9a59eeed602', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6278c77ef469f7c1d4f09b2eae15248cd2bcb94', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6532f3f349822058862b80fa59cdc4e1239c30f0', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e63bd5b68da8b3a0735c20f8e2dce10b864cef', '172.105.247.100', 1676102424, '__ci_last_regenerate|i:1676102424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871d7c2ee9009f1191adb60545f594d05b4b4919', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1034723135530976798c85150574859e41e07c26', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1896100e1cb87d0de3eb52f22f4b01379195ce9f', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342aead7e8e12b6698cc69d33c4557a871fd0fe3', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b570e7bc1673f5dd5718967fb0bf4e3b06b393', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29994126ff9ef89108c7b87d6935883a397f37b7', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236ac87aa83055cb0d8486a6a2682ac7557e5605', '172.105.247.100', 1676102425, '__ci_last_regenerate|i:1676102425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020431561ee34c84f89d9fd54c20773ef7d3cba9', '172.105.247.100', 1676102426, '__ci_last_regenerate|i:1676102426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1a5ba36d09adfdb23655fc5959232a9ae6a88a', '172.105.247.100', 1676102426, '__ci_last_regenerate|i:1676102426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f96cd840d78ede1d2fc12f6fd0dc6f31a1aa17', '172.105.247.100', 1676102426, '__ci_last_regenerate|i:1676102426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87de7d836aabcde229a572385ddaaa81b2d61071', '172.105.247.100', 1676102426, '__ci_last_regenerate|i:1676102426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa31ac0a716a3b115a6b25a3e0f14398329521fd', '172.105.247.100', 1676102426, '__ci_last_regenerate|i:1676102426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f87f06d6e59e5a83dfbb687f348da0875c52f2', '31.222.203.2', 1676106150, '__ci_last_regenerate|i:1676106150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b52949614593f96221da98b11876a9ace747abb', '31.222.203.2', 1676106150, '__ci_last_regenerate|i:1676106150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23903c864ed23ed1536dbdc3b06f71c6eed0d01b', '31.222.203.2', 1676106150, '__ci_last_regenerate|i:1676106150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484ec5f1f2e6c29a116928a8f94497f8da07af6e', '31.222.203.2', 1676106152, '__ci_last_regenerate|i:1676106152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4463b1d11832e910bd07d476d4b8f039818b5856', '31.222.203.2', 1676106152, '__ci_last_regenerate|i:1676106152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59b8348934015cc8f916dee2b94831a50ea8463', '31.222.203.2', 1676106152, '__ci_last_regenerate|i:1676106152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b11255ed1c566a9633be876b71de168684300d', '45.120.39.89', 1676107723, '__ci_last_regenerate|i:1676107723;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676088587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676107331;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85fb865c0f08ccc632c28fbf8bb50ed6e125f33c', '45.120.39.89', 1676108700, '__ci_last_regenerate|i:1676108700;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676088587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676107739;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1935e6420a7a574785e0b4e3af8a4497b680ca53', '172.105.247.100', 1676107822, '__ci_last_regenerate|i:1676107822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed2a9c49a22bb30161022e57d6d155d24ecd616', '172.105.247.100', 1676107822, '__ci_last_regenerate|i:1676107822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98dadea92be9b9ee16b0f57b02123b1b591b3769', '172.105.247.100', 1676107822, '__ci_last_regenerate|i:1676107822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ddc6c2faedafc2091d9375a8d587c274303ff4', '172.105.247.100', 1676107822, '__ci_last_regenerate|i:1676107822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a160f5a4325022c7d02f07456aa73d2f9f568c40', '172.105.247.100', 1676107822, '__ci_last_regenerate|i:1676107822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64aafc768c9139a3486f89956d5df8d98b1c5aeb', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1905b22c4ee343e7eaf55b0815c1217028382cda', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa839ebf05891786a3f1f6eb9472c42073c66d2', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f33dd113d1ba9a9defb2c22d40308a906d073b', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf816abffb019e227f9822d8c4dabeae2ecdb86', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c81dff1c45a260818d57afc283e2957195719c63', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9952b0b8a40ee1aa9c0a6243c63f393bd2defb5', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039af0a08595b415b444d37ca665974cf6a81da5', '172.105.247.100', 1676107823, '__ci_last_regenerate|i:1676107823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5840a97758935c78b050acef304719c57ca1ea20', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261aa5891401f6c5be870bc912c993d767984225', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f56331c5b7f1c586b2b2fa3063563dec2e86b5d0', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ac1daa8ada401e0a900dbbefbf8ead4f5a407c', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70fb44164363569510c76601f1f5ee03a47805b0', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('294c84308ff952c76e2cb5489e01a28cf92bcc42', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cadc07697a74dd039a3e0e331318a3ef6a2297', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bdeae7c70c929c6e4c726ffae815499655d6827', '172.105.247.100', 1676107824, '__ci_last_regenerate|i:1676107824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a621f33c35d84b50d60de8ac8e57b8cbc198ac7', '172.105.247.100', 1676107825, '__ci_last_regenerate|i:1676107825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154472cbc55076cfa73d14f63f1102750e04db9e', '172.105.247.100', 1676107825, '__ci_last_regenerate|i:1676107825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('609dfb488b742af38eede0fd2f4b56f8fcf925bf', '172.105.247.100', 1676107825, '__ci_last_regenerate|i:1676107825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e3c609971e6fee728c0f8bc57fcebc1bce8731', '31.222.203.2', 1676108092, '__ci_last_regenerate|i:1676108092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33098c1fe2b788a70841c182d34d283a2ffc40f', '31.222.203.2', 1676108092, '__ci_last_regenerate|i:1676108092;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b3d57695293c9aad8c88a75e997901b5d156b5', '31.222.203.2', 1676108092, '__ci_last_regenerate|i:1676108092;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('449ab1e1fcc6396087be41dbea6d2193e39b6be9', '31.222.203.2', 1676108094, '__ci_last_regenerate|i:1676108094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12d54ff19a394273dffb78eac4bb9c257f5a51c', '31.222.203.2', 1676108094, '__ci_last_regenerate|i:1676108094;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5168f9181a8a5e30dd200cd58170d54a2a7c27e5', '31.222.203.2', 1676108094, '__ci_last_regenerate|i:1676108094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bf982910a84a39a6b59752d88afa2c19e02262', '205.210.31.9', 1676108195, '__ci_last_regenerate|i:1676108195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12631351b8d5e7cd7e73319bd44a7c8c97e8422f', '45.120.39.89', 1676108736, '__ci_last_regenerate|i:1676108700;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676088587\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676108736;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14821ff7d1fbada7a6670aa865ca9a2d289dee58', '172.105.247.100', 1676113221, '__ci_last_regenerate|i:1676113221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35031b476813f5e27bbaffd0a3ef02b931be2ec3', '172.105.247.100', 1676113222, '__ci_last_regenerate|i:1676113222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d13c16c19221483b09c19a30b7a51da2798c8b3', '172.105.247.100', 1676113222, '__ci_last_regenerate|i:1676113222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a379cf03a4fbcfff8a8231f234c6ad12c844745d', '172.105.247.100', 1676113222, '__ci_last_regenerate|i:1676113222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43cf1286febf584e968b394e9b710e0dccde045a', '172.105.247.100', 1676113223, '__ci_last_regenerate|i:1676113222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49f199d839f731145ccd240f0a06ed66cfd2dea', '172.105.247.100', 1676113223, '__ci_last_regenerate|i:1676113223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6eb0f6a60e9fae960d1b0cf77e781cd97a1914f', '172.105.247.100', 1676113223, '__ci_last_regenerate|i:1676113223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11385fad37e7815b60a07c15301193c746926d1f', '172.105.247.100', 1676113223, '__ci_last_regenerate|i:1676113223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44e08814d7c972d54b46e069fffc6145bd008aa', '172.105.247.100', 1676113223, '__ci_last_regenerate|i:1676113223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe7e596fc0653b2e9bf7786b126eac919c466e7', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f237cc76e00dae882bcc0f55e73bebd6a3ccd71d', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62644a0dbbd5994d78e00937ac18bcda00069c73', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d9d66ce15538ac3de510742b89e150844771ca5', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1138ad01826a7c703d33b3199844c039132abf2', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8994ddadd34c414cc910d9775fa9b64717c188a7', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f549b1b1b1d45c625a9ff72860101ff04b82bb4', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec7acf7458137b474ff75d1f053468ebb0922fb', '172.105.247.100', 1676113224, '__ci_last_regenerate|i:1676113224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18d661f72b0ab6d79135f5628f98b84c42a0498', '172.105.247.100', 1676113225, '__ci_last_regenerate|i:1676113225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8582808497df2fa6c4d0d3b2e2d2e853a653ce9', '172.105.247.100', 1676113225, '__ci_last_regenerate|i:1676113225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88107124df0dfb0d3962bd3c1c5e2805307202df', '172.105.247.100', 1676113225, '__ci_last_regenerate|i:1676113225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('671bb323b54c30315b14f94ad962a7cdaf2ea2fa', '172.105.247.100', 1676113225, '__ci_last_regenerate|i:1676113225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f636a0435ad03987cea4e85e99e188b91b2833e', '172.105.247.100', 1676113225, '__ci_last_regenerate|i:1676113225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d952e8878d6263dfbacb6740602ce280a9d086', '172.105.247.100', 1676113226, '__ci_last_regenerate|i:1676113226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1098ec3e5673d70703ece9a4b1bc837f63cb85', '172.105.247.100', 1676113226, '__ci_last_regenerate|i:1676113226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d315a94cf0c1ee7e15397ac6509b85017dc16b8', '38.90.148.174', 1676114892, '__ci_last_regenerate|i:1676114892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78eaaf741504046fdd43361a1b4c529b86603222', '38.90.148.174', 1676114892, '__ci_last_regenerate|i:1676114892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e9c57f16b7d6e9df867ad99adb7015ad1d0042', '38.90.148.174', 1676114893, '__ci_last_regenerate|i:1676114893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e45888854cc49e90524ec6f786408761c16873f', '31.222.203.2', 1676117014, '__ci_last_regenerate|i:1676117014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a57ba8b87e2e50e86ad07a74811f225b002ebb0', '31.222.203.2', 1676117014, '__ci_last_regenerate|i:1676117014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4faad660e14605c522938e2a16a885adbcc0dbd7', '31.222.203.2', 1676117014, '__ci_last_regenerate|i:1676117014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa2683cc79aef3ed3f1c6c82024dc546678d958', '31.222.203.2', 1676117014, '__ci_last_regenerate|i:1676117014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fab8e935579f6ddb236b704d0a3bad488186208', '31.222.203.2', 1676117014, '__ci_last_regenerate|i:1676117014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ea4c80e1d115c3b852859c93f0142915fbc77d1', '31.222.203.2', 1676117014, '__ci_last_regenerate|i:1676117014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2425c0286f697cabffc3d36637c9b38af851ee', '45.120.39.89', 1676117426, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed72ee873da4566bc9532ff7212de07153d0e8fa', '45.120.39.89', 1676118239, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676118239;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676117883;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4541cc880443e041ad11a729bce02dc62021698', '45.120.39.89', 1676118540, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676118540;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676118469;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a03b991f426ced28aee917cd5ebd154fc664094', '45.120.39.89', 1676122093, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676122093;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676118546;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec31c149f969f55ed554868cff285ea0f7e6125', '172.105.247.100', 1676118622, '__ci_last_regenerate|i:1676118622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2301e6e44ef3bdf3f00466714bcecd798a8e36', '172.105.247.100', 1676118622, '__ci_last_regenerate|i:1676118622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf1f1cb09e0a4370611edff9845b2fb9e90ece4', '172.105.247.100', 1676118624, '__ci_last_regenerate|i:1676118624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d0a35d98cfa5a04c050fcb04a08a71b74d7d13', '172.105.247.100', 1676118624, '__ci_last_regenerate|i:1676118624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d75963096836a49297c18837ee513b4e6d9dac', '172.105.247.100', 1676118624, '__ci_last_regenerate|i:1676118624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0728f2bbef4eea15fdd46513d0f30ad23d1054f2', '172.105.247.100', 1676118624, '__ci_last_regenerate|i:1676118624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d65a86b40c12c8cc305e593eaf8a851a19b28a', '172.105.247.100', 1676118625, '__ci_last_regenerate|i:1676118624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee55b097fec338f32d7ef22378f527ccd7e1af7', '172.105.247.100', 1676118625, '__ci_last_regenerate|i:1676118625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8e7076a7a2c494cf5e352b7197b3b33127d629', '172.105.247.100', 1676118625, '__ci_last_regenerate|i:1676118625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885a8dc803e9951e199407cee3ed3e5e1585392d', '172.105.247.100', 1676118625, '__ci_last_regenerate|i:1676118625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c90e54cbd38e9ba8f5b122039998147f69310ce', '172.105.247.100', 1676118625, '__ci_last_regenerate|i:1676118625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f903eac2932ceceff2a673aa19dd4341f3a62b3e', '172.105.247.100', 1676118625, '__ci_last_regenerate|i:1676118625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eaa9f0b00a476149aa286b3568ae68ccfa11cb3', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f876233555b1aee5531d99a4d76f5ebbbf86fcd2', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4a5a11a3fc130058e33e144a9521fd217559b7', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57103dfea3fc869b85593f417c31b2df7f52ae2', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('086083326adc43c10cdda46b3f22e8ef8e63296a', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fc5d5f8adf1b0ec0a33d4c1a6be503a11c947d', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a174457095c874bd5eee2eb0c9ed097dd426d7ea', '172.105.247.100', 1676118626, '__ci_last_regenerate|i:1676118626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f34c8a56785a22d80685daf944eabfb5ddf29b91', '172.105.247.100', 1676118627, '__ci_last_regenerate|i:1676118627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0490be5cdafb293cd049bfc30c6a5a2bcfeafadb', '172.105.247.100', 1676118627, '__ci_last_regenerate|i:1676118627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('965e6314695c4a24f0e21d0363a19e60b7f327b8', '172.105.247.100', 1676118627, '__ci_last_regenerate|i:1676118627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4b40d80e07b003f583339f683e4171c902ee600', '172.105.247.100', 1676118628, '__ci_last_regenerate|i:1676118627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d989e647c8d69694b7d6a6f187c304e124c8b644', '172.105.247.100', 1676118628, '__ci_last_regenerate|i:1676118628;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f71fff50daa147dc1f7daf9e1cd834c53188e2c', '31.222.203.2', 1676118864, '__ci_last_regenerate|i:1676118864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('098b30afbb2d8005c780460d7b86100c47103f86', '31.222.203.2', 1676118864, '__ci_last_regenerate|i:1676118864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70042313623b514e72e957cc556b7a67b3c9ae94', '31.222.203.2', 1676118864, '__ci_last_regenerate|i:1676118864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b85f6ef543da882a01a55b540688f2b2600fbaf', '31.222.203.2', 1676118866, '__ci_last_regenerate|i:1676118866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4ecb4cac8c4cc4a8581c90a04e247ca4e17d88', '31.222.203.2', 1676118866, '__ci_last_regenerate|i:1676118866;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17d7376deefa356576ee8bc3a42f54d0756c953', '31.222.203.2', 1676118866, '__ci_last_regenerate|i:1676118866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa1ddc01d9bc0a3c744663e37748f8013414152', '45.120.39.89', 1676122433, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676122433;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676122239;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc87aadd28fc7ed24e795eb4c8459b42fcf3286c', '45.120.39.89', 1676122854, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676122854;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676122436;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4be9914568280a9798a1066c574a8f52d26889', '45.120.39.89', 1676125973, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676125973;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676122897;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('422188db215c4bec6f26170e96f7e21ee744e13a', '37.111.207.112', 1676123030, '__ci_last_regenerate|i:1676122907;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1675479613\";last_ip|s:14:\"116.204.230.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6622a6e0d4cc2219a0e493e4c311c1b24e100812', '172.105.247.100', 1676124017, '__ci_last_regenerate|i:1676124017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4bb6f950394debc2d197e670789e0a5e6f0029', '172.105.247.100', 1676124018, '__ci_last_regenerate|i:1676124018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416c2a0d803189580e12fc6129f7e16581ce095a', '172.105.247.100', 1676124018, '__ci_last_regenerate|i:1676124018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0917b5903ddfc8fa3ab9948dbbbfe5d4e8f6a4e9', '172.105.247.100', 1676124018, '__ci_last_regenerate|i:1676124018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('556922b7f1ebf01204046f35034f999187668f99', '172.105.247.100', 1676124018, '__ci_last_regenerate|i:1676124018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13740dbe808250e74fcefdcc2c76885c66c7c189', '172.105.247.100', 1676124019, '__ci_last_regenerate|i:1676124019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf493a47cae385dcf6fbc7d2637b41e8aa3660c3', '172.105.247.100', 1676124019, '__ci_last_regenerate|i:1676124019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2caaa8077c25eb0db25a92b82d0fe034936655a5', '172.105.247.100', 1676124019, '__ci_last_regenerate|i:1676124019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50fe4cec98c0a37044ee49324c3dbfba7147df15', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc8f9d1ce51fa650ffdcc1c0ff5ca4106dae32f', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('112cd60b73f56d1a12cd8a6c9508cbc9e0d67750', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52565cfcc3d560f7c6d3a15a96ee47d101213a61', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2208bde99f5f534d3ec24cda99ec3b3db892ba6', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaebd25cc2384f225f8b8eae4c461b70e577e322', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3feae052aeda906c66979473bdd16026f4a574', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90c55685f90675a362d9254b130a8aa84615642', '172.105.247.100', 1676124020, '__ci_last_regenerate|i:1676124020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d1dd8c759897776630ae2f50418190aa297fe2', '172.105.247.100', 1676124021, '__ci_last_regenerate|i:1676124021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739afbf037e6ae611997f2f41d17916d69fecf38', '172.105.247.100', 1676124021, '__ci_last_regenerate|i:1676124021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60def9bb8714fdb41b84c940cb6966e4da1d0999', '172.105.247.100', 1676124021, '__ci_last_regenerate|i:1676124021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb469a958d8e39d25cbc25205ffe7e0ba8338d7', '172.105.247.100', 1676124021, '__ci_last_regenerate|i:1676124021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b374a3d0cc1b302cc49b8c608d8886e7191699', '172.105.247.100', 1676124022, '__ci_last_regenerate|i:1676124022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ecc11ec7b863c82db746041af2aa7495446045', '172.105.247.100', 1676124022, '__ci_last_regenerate|i:1676124022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d85cdba6101e68c8f3009b852ed0dfc5990078f', '172.105.247.100', 1676124022, '__ci_last_regenerate|i:1676124022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b0c5aa43efa947855a79976cc8258b5621805a', '172.105.247.100', 1676124023, '__ci_last_regenerate|i:1676124023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c446fc53150ac647f1736a0df19dec4ff7adbd', '116.204.230.21', 1676125252, '__ci_last_regenerate|i:1676125252;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676092203\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77f1c56d6d74d7ba384c8ca7175db02f69d9a14', '116.204.230.21', 1676125454, '__ci_last_regenerate|i:1676125252;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676092203\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3053e7fc44899a8df0be5824654b58742a0ce4d3', '45.120.39.89', 1676127374, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676127374;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676126662;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8bc0335f7aff16b36dafaff61a610081ce30f5d', '37.111.217.254', 1676127943, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676127943;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676127934;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f816d9bf8a19d3dc068de61d70c2961f6c40f6', '45.120.39.89', 1676126559, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676126559;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676126559;register_id|s:3:\"338\";cash_in_hand|s:9:\"8270.0000\";register_open_time|s:19:\"2023-02-10 21:10:35\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a021c8f5cbab058760703f198327ac905618f3', '31.222.203.2', 1676127806, '__ci_last_regenerate|i:1676127806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebfb1305592424027038d822192823b37818cb98', '31.222.203.2', 1676127806, '__ci_last_regenerate|i:1676127806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b2392fe9823d3cacb4e88940323e5c6a5c720c', '31.222.203.2', 1676127806, '__ci_last_regenerate|i:1676127806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314218e2447d2bf9fbdd6d17c5f2ccbcfe576273', '31.222.203.2', 1676127808, '__ci_last_regenerate|i:1676127808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8548852fc75a228bea74988238fbdf1d9f63334c', '31.222.203.2', 1676127808, '__ci_last_regenerate|i:1676127808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae98c757a16f30783718d936a6ce8964722a52f6', '31.222.203.2', 1676127808, '__ci_last_regenerate|i:1676127808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66bf490722e6ae6db5696edaf090f023adba90be', '37.111.217.254', 1676127970, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676127943;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676106384\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676127968;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b821ff985d7efff45d5e7ff967f02a4b8c9eb9d3', '172.105.247.100', 1676129418, '__ci_last_regenerate|i:1676129418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3800f16d70606a2daf4c353f4a231f541e244e3d', '172.105.247.100', 1676129419, '__ci_last_regenerate|i:1676129419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1860e851f74f8e51550fda0565cc4c23456d949', '172.105.247.100', 1676129419, '__ci_last_regenerate|i:1676129419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('464cb2097113aebbebe8563d5ec28cbdbc21f383', '172.105.247.100', 1676129419, '__ci_last_regenerate|i:1676129419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c28547dcb3f528cf476ec29bcb4209e820ef07', '172.105.247.100', 1676129419, '__ci_last_regenerate|i:1676129419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393a47aac6971fa2fcc4bb6ebb89cde46ab0833d', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd0a6cc7f62fdbf6425c4c468ceec1aa7046b55', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bbef401b3e4030c17972e353908ab49dcfac6f', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9570f7827b06b94fdf665f7498ecc85feb4ba40', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f44221d53f48230c10194bceeda8460225ac7f6', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c0deb1ce28122fbdb3a63ac6193f8f36c39f5d', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c193fefe2b7bc07a9a94cd39725d30850b7bc09', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158077e4a4b3871b0c23fc9e57e38c2679fbff5e', '172.105.247.100', 1676129420, '__ci_last_regenerate|i:1676129420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe5b51149b92cff63b4afe6a5c329185f28027e', '172.105.247.100', 1676129421, '__ci_last_regenerate|i:1676129421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a474dc566efa31be055309c4d10e75238e19e3', '172.105.247.100', 1676129421, '__ci_last_regenerate|i:1676129421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50913a37d50436aa7c106cd79c44de8a5f75cbd7', '172.105.247.100', 1676129421, '__ci_last_regenerate|i:1676129421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e8f0884f71f483948e182cb375cdc67ad9f67d', '172.105.247.100', 1676129421, '__ci_last_regenerate|i:1676129421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f154d3a72d7b1f82a3ac2e1652f827d3eba1c41f', '172.105.247.100', 1676129421, '__ci_last_regenerate|i:1676129421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd0fa2a50052c84f79d258989b3740ca30b3167', '172.105.247.100', 1676129421, '__ci_last_regenerate|i:1676129421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340da249053a3f54697577ad985e71fba95183ab', '172.105.247.100', 1676129422, '__ci_last_regenerate|i:1676129421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962292fb47842c88d555399ff9ccba47d0e4253b', '172.105.247.100', 1676129422, '__ci_last_regenerate|i:1676129422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b87343cdb7bfc5c637dde8e58c7b3705bb5955', '172.105.247.100', 1676129422, '__ci_last_regenerate|i:1676129422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70816a2a43f1e747f7a1c62277465517cfdb5c4e', '172.105.247.100', 1676129422, '__ci_last_regenerate|i:1676129422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('304d1f83caf3dd67e6c3aad93c4c1f545bb118f5', '172.105.247.100', 1676129423, '__ci_last_regenerate|i:1676129423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c708acd4334c1414acfd1fc33bb643ba422217ff', '31.222.203.2', 1676129668, '__ci_last_regenerate|i:1676129668;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f296d258116ddb9b6b5a2fc0b5d0d0912a77726', '31.222.203.2', 1676129670, '__ci_last_regenerate|i:1676129670;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc6d19d4eda2b46669e6684511c1acaacd6c3b46', '31.222.203.2', 1676129670, '__ci_last_regenerate|i:1676129670;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad81315100c3843844e39e8a7b6291df5f754eb', '31.222.203.2', 1676129670, '__ci_last_regenerate|i:1676129670;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff018506f6fd7d2392bfecfc8594490e810645a0', '31.222.203.2', 1676129670, '__ci_last_regenerate|i:1676129670;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb839ed3e10e8b8b7ff2b64f8e478166fa4986b', '31.222.203.2', 1676129670, '__ci_last_regenerate|i:1676129670;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862701023898798b63d5e42d6e6ff2fba016e4a0', '172.105.247.100', 1676134821, '__ci_last_regenerate|i:1676134821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ef917652511452c877350bf03801caea44d09c', '172.105.247.100', 1676134821, '__ci_last_regenerate|i:1676134821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7990a22448e8e1302439924ae03327e43de2cd8e', '172.105.247.100', 1676134821, '__ci_last_regenerate|i:1676134821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2bfd47c13c3ceda4d47800dcd438c9b30b1606', '172.105.247.100', 1676134821, '__ci_last_regenerate|i:1676134821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('426e0678467fde3f5343e4080c0acd03f964d5d2', '172.105.247.100', 1676134821, '__ci_last_regenerate|i:1676134821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc27f7ad399df83adf43ea4d433ddc9d8cfd634c', '172.105.247.100', 1676134821, '__ci_last_regenerate|i:1676134821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89da00b2c1b3a054e15e4e675ddbb690f29c55b9', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc1bc48b5ec53bd8ffba3e0b9bc98383d274e62', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178692efcda291cefbb5dc04cd78762e8bd6db29', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6c916332c5abbd769b5a2a7c44c1f4c6f4da980', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89fe5e3c16c9fba328f84385529df2541920e126', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87eed1c1ef34a63b75862567759fddc31ab6a4a1', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07b303b75241a530bfba0160c1fa5578877d5bcd', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('815f1d5eab6a586d8548914a4006548f68aef045', '172.105.247.100', 1676134822, '__ci_last_regenerate|i:1676134822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b28f71ccf5c35653a12ff0f4bb1a23f851478c', '172.105.247.100', 1676134823, '__ci_last_regenerate|i:1676134823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedafbcaaa508f1d3d139f960d5851c50bc700dc', '172.105.247.100', 1676134823, '__ci_last_regenerate|i:1676134823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554517fb3eabfea2af6525a90d06650b79a1180b', '172.105.247.100', 1676134823, '__ci_last_regenerate|i:1676134823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd1521271f3f284dd1d9996eca6854bfc68cf10', '172.105.247.100', 1676134823, '__ci_last_regenerate|i:1676134823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048da468c1d7e5dc90daafe071b13d07c50a5893', '172.105.247.100', 1676134823, '__ci_last_regenerate|i:1676134823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab7a8eb20eae71c9af3cd985e1cd21ddce0f8dc', '172.105.247.100', 1676134823, '__ci_last_regenerate|i:1676134823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5620da8f58aef42954a88a4aaadecdca0e476aa1', '172.105.247.100', 1676134824, '__ci_last_regenerate|i:1676134824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a06e239707c6e860aea033004f6da2111096ca14', '172.105.247.100', 1676134824, '__ci_last_regenerate|i:1676134824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77149be5d6836f0440f691565f4a8a42f70a6747', '172.105.247.100', 1676134824, '__ci_last_regenerate|i:1676134824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef388bd7a8fc70cb072fba3faf6512f530ebb1c', '172.105.247.100', 1676134824, '__ci_last_regenerate|i:1676134824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad42c8bfc54c18f6449d56c6b13ce2bf6bc4513', '31.222.203.2', 1676135028, '__ci_last_regenerate|i:1676135028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0077bc3f23883dcf578e045492f07b397102b7', '31.222.203.2', 1676135028, '__ci_last_regenerate|i:1676135028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de4b7949254a0c446e65278bbfe7b438d80d9b2', '31.222.203.2', 1676135028, '__ci_last_regenerate|i:1676135028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('933bb28afcb472d5dec245a10f56bf8051f93223', '31.222.203.2', 1676135028, '__ci_last_regenerate|i:1676135028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100a7fcad739b5adc366a8250df4b231080780d4', '31.222.203.2', 1676135028, '__ci_last_regenerate|i:1676135028;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f69ae57b9b03ee107a547a7cc3cc1b3b096296f', '31.222.203.2', 1676135028, '__ci_last_regenerate|i:1676135028;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0547a0cbe8190e17e99ce24e4e8e626fb0492fce', '31.222.203.2', 1676136901, '__ci_last_regenerate|i:1676136901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac45be330c7dc9b85e3afdb4547b3cca842d28ef', '31.222.203.2', 1676136901, '__ci_last_regenerate|i:1676136901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f333581598adf546a800da0d516f536f726e8832', '31.222.203.2', 1676136901, '__ci_last_regenerate|i:1676136901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250b49997270c03b7ee9852d65cf256f0d1cd873', '31.222.203.2', 1676136901, '__ci_last_regenerate|i:1676136901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c49ae026dc6e12800cdc21fa595d9944aa3b3514', '31.222.203.2', 1676136901, '__ci_last_regenerate|i:1676136901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c914e65d5c0d61fc13b3490d9944ad1da8dacb1b', '31.222.203.2', 1676136901, '__ci_last_regenerate|i:1676136901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b1a2df0ef60ec59616b61cd723bf3071243994', '172.105.247.100', 1676140218, '__ci_last_regenerate|i:1676140218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911de6745f7287ee36a4b751ddb49feb67b9edab', '172.105.247.100', 1676140218, '__ci_last_regenerate|i:1676140218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094364292f62c2ef0136d381b8756759ac332d54', '172.105.247.100', 1676140219, '__ci_last_regenerate|i:1676140219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad62d6300e2df5bce006845766dfe3a968e8cbe', '172.105.247.100', 1676140219, '__ci_last_regenerate|i:1676140219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879c0876120d7eabe28124e44446794b665c0792', '172.105.247.100', 1676140219, '__ci_last_regenerate|i:1676140219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e8e3fe59e48d6cef54ca9f6758a3ab78d7356e', '172.105.247.100', 1676140219, '__ci_last_regenerate|i:1676140219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e484d7e3b58c81cc958d42c4f0ca8a779fbdfb0', '172.105.247.100', 1676140220, '__ci_last_regenerate|i:1676140220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e60490f6a715b5c84a96dd62ef0346c3c10716', '172.105.247.100', 1676140220, '__ci_last_regenerate|i:1676140220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f0477f1357fd7a630bac72b542bc11c05afb8c', '172.105.247.100', 1676140220, '__ci_last_regenerate|i:1676140220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cf43d30ce3a6cff37ee5ef120ccf0ac82f9d60', '172.105.247.100', 1676140221, '__ci_last_regenerate|i:1676140220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1e69f26c46fc2d4fe0c8ebafca5ace2647bb8a', '172.105.247.100', 1676140221, '__ci_last_regenerate|i:1676140221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa03788b98b0795ed3890bf82a52ca20e68c458', '172.105.247.100', 1676140221, '__ci_last_regenerate|i:1676140221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04bdca03a02791d7a7cdf74ab0ae373df270dcaf', '172.105.247.100', 1676140222, '__ci_last_regenerate|i:1676140222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d06db7bd36e2d4ef3d5e63c93ff2e701265773c', '172.105.247.100', 1676140222, '__ci_last_regenerate|i:1676140222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9986bb5ba23fe75ce9e2420f015f8cfa8b58a2e2', '172.105.247.100', 1676140222, '__ci_last_regenerate|i:1676140222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beca866c5286aa9b5ddb65fc6b3994b25e4b8d7f', '172.105.247.100', 1676140223, '__ci_last_regenerate|i:1676140222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3935fc2569d6370338937f10856339f2819cea', '172.105.247.100', 1676140223, '__ci_last_regenerate|i:1676140223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a83a4a2c849d1f0cc2c9ea2705ef8a549d216fc', '172.105.247.100', 1676140223, '__ci_last_regenerate|i:1676140223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20081abf2dcd3c977537f1266cea4da9a71f81d0', '172.105.247.100', 1676140223, '__ci_last_regenerate|i:1676140223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('257c8e12e3a711e61a4ef6aac9fe61aa52e80e55', '172.105.247.100', 1676140224, '__ci_last_regenerate|i:1676140223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2829e309e23b31ae38a4e4196e6080e845a6d23e', '172.105.247.100', 1676140224, '__ci_last_regenerate|i:1676140224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0cf29a0fb6743bc41793a777fb8bfc32fbf100f', '172.105.247.100', 1676140224, '__ci_last_regenerate|i:1676140224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4a995998f69fac845ae1757d370fd982eb210f', '172.105.247.100', 1676140224, '__ci_last_regenerate|i:1676140224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00a4c55d24142b8ce9c5340d69a785b1712839b', '172.105.247.100', 1676140225, '__ci_last_regenerate|i:1676140225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca30ba011a9866e04b065dbdec2b9fffa5b9d470', '31.222.203.2', 1676143947, '__ci_last_regenerate|i:1676143947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eb7c3f6e46e6fdc9ce55b926e797184b3db660a', '31.222.203.2', 1676143947, '__ci_last_regenerate|i:1676143947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('558c2ca648c708b85fb4204e43f4729f15e8ea16', '31.222.203.2', 1676143947, '__ci_last_regenerate|i:1676143947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f84e141215caa0dba439d08a7af7cb315b2f9492', '31.222.203.2', 1676143949, '__ci_last_regenerate|i:1676143949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ba009f587607eb6b28d171032d08fb73f6c522', '31.222.203.2', 1676143949, '__ci_last_regenerate|i:1676143949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc04c063c4e534e614bfeae874ccd63020b1f9a0', '31.222.203.2', 1676143949, '__ci_last_regenerate|i:1676143949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b802153330ce480097af9c9d8a7cfa0e7386c1', '172.105.247.100', 1676145618, '__ci_last_regenerate|i:1676145618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('972f759ffa733d207e826ff0254bad484f2e2ec3', '172.105.247.100', 1676145618, '__ci_last_regenerate|i:1676145618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d67ef429b8a449bf7ec4cb2d5235aff52f4960', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6023dee9c97b7e9077c744c5e8858a71ea8625', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd85a2b9d987dcee014e6f647289a1682b889a5d', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de76ca95b87cf5a914575b509a888f73f0af251', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82183bf39f508a4b19e71f30a1de3469cac42741', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('175363359f707e8d12397b37fbd994abaa14f542', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d49ffff084c47b4e86ebccf50adbf7e7c8a0aa', '172.105.247.100', 1676145619, '__ci_last_regenerate|i:1676145619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ff6987464bc237de06ddea57372eeaf2b4ca95', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148d055b36fa14380ebf221837b3d408492973c0', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feddaf2e9fbec0ca9d7ab82216d067cc3508ce1b', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7387f76d2a21df577b1cdaddb6f465e231850479', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd41c1c85940de56eca21d018b45e52d7416197', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68fc6c169c0ecbba728ee1cd94e866c3093b3ab5', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a05474f4b32ae21bbdc0df5e146d77443fb42e2', '172.105.247.100', 1676145620, '__ci_last_regenerate|i:1676145620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052674e919c62ee20d4736891068069b33bd567c', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15c7f2f96a6707e42d1781dc5f2f822f0c3b0f6', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc70f59f609e8596c4f91c511e19d01e6a9cae9a', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918e875e36d977a5e7f44931d8e5d88751211c2f', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81652cf91a8dcea6070aac0086f7e9bdf644f832', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb9f66930985007bb2e04ab278642556aa5acf27', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0bed0bd1e0c7ece5a89d684bca4dd1144f1199', '172.105.247.100', 1676145621, '__ci_last_regenerate|i:1676145621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d38d8c359c92407df4238e78944c17afb97d057', '172.105.247.100', 1676145622, '__ci_last_regenerate|i:1676145621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0cc83ff9b2353f37572df2360b551492e6887b0', '31.222.203.2', 1676145898, '__ci_last_regenerate|i:1676145898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd89f4d183235d716f92689b927640c211449e88', '31.222.203.2', 1676145898, '__ci_last_regenerate|i:1676145898;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7facede17ddd94f5f9299215c011ab6a64028bb', '31.222.203.2', 1676145898, '__ci_last_regenerate|i:1676145898;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3978edc4ead72a17a2dee17f64caf00517749e', '31.222.203.2', 1676145901, '__ci_last_regenerate|i:1676145901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6eeb949ae800e9ef574a279c7f2464bc860275', '31.222.203.2', 1676145901, '__ci_last_regenerate|i:1676145901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1871cc2b846bc0998a219624007d03d049e790a', '31.222.203.2', 1676145901, '__ci_last_regenerate|i:1676145901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01affe7a01c29ab24df400ecdfd2df48f2bf1159', '172.105.247.100', 1676151019, '__ci_last_regenerate|i:1676151019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a55e4c53fa4d51cfde54c878b3ad4be3488c08', '172.105.247.100', 1676151022, '__ci_last_regenerate|i:1676151021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654e48f27fd5dbe9d62f000eb9d097bd153edd3b', '172.105.247.100', 1676151022, '__ci_last_regenerate|i:1676151022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c4dc1dee68df6a9be9ce790b30b98a9f07e3644', '172.105.247.100', 1676151022, '__ci_last_regenerate|i:1676151022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b79a57de62fb1c89c73b02d28812d28db07d16d', '172.105.247.100', 1676151022, '__ci_last_regenerate|i:1676151022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78e26a18970e8d8b6756e22175cf3586f33b522', '172.105.247.100', 1676151022, '__ci_last_regenerate|i:1676151022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598c5f5780bb68de98c3e2d6cd6b9a250ac9730e', '172.105.247.100', 1676151023, '__ci_last_regenerate|i:1676151023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea975b44de57dccc5380428e768433d85652ca78', '172.105.247.100', 1676151023, '__ci_last_regenerate|i:1676151023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35635ab8c850eaeb9a499476cf85efd79bca4e81', '172.105.247.100', 1676151023, '__ci_last_regenerate|i:1676151023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c363fe2d000986227be872dd47a31e5bc5640283', '172.105.247.100', 1676151023, '__ci_last_regenerate|i:1676151023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8a4f29f999aae7cb996a303d9ea4489935029e', '172.105.247.100', 1676151023, '__ci_last_regenerate|i:1676151023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51416e73de20b1c0b12f703cba8dd5893c331cc3', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a52ee6fffd1ef249594a9aa6267f4dce4b43dd', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a65a033b4eb44347d11fd5ffa4b1cb5e8ba7f2ba', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70dc28a2b735d2b57c7dc278fa6cbbd051ef438', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8458731486232883f36882bcb8feb0e4a83b591', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545f0f30c619928be3bb4f617e4539ab7fadc223', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47cea25dac4cf4b866cbba6536503f5cb6010444', '172.105.247.100', 1676151024, '__ci_last_regenerate|i:1676151024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b15253f5d762c66127dc8b0e0d1bd4fffaf2d6dc', '172.105.247.100', 1676151025, '__ci_last_regenerate|i:1676151025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5453012af01c4f6eda5f4f75c0b5f6e67587ac', '172.105.247.100', 1676151025, '__ci_last_regenerate|i:1676151025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830539b192264acee0ae06bf8c3a9505a9cdd6af', '172.105.247.100', 1676151025, '__ci_last_regenerate|i:1676151025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55677fe067ff3c043c639e54f75875c4f67283ca', '172.105.247.100', 1676151025, '__ci_last_regenerate|i:1676151025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752e139eebf976fcbbbbe330cf49374335faea39', '172.105.247.100', 1676151026, '__ci_last_regenerate|i:1676151026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200e8cd80e722f5b071d36cb3b0ac2f4a89c6616', '172.105.247.100', 1676151026, '__ci_last_regenerate|i:1676151026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe7f3ae5cf1bf1a1d9a53683edab473f3ea7e32', '31.222.203.2', 1676152951, '__ci_last_regenerate|i:1676152951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b9bb836544a76d976dac66519af556582ee37f', '31.222.203.2', 1676152951, '__ci_last_regenerate|i:1676152951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a99a39981c0b14ff350f9bdc876f8f7d04bde28', '31.222.203.2', 1676152951, '__ci_last_regenerate|i:1676152951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04f4ce47ec24ab4336fc91d5458dc6cbc931b0a', '31.222.203.2', 1676152952, '__ci_last_regenerate|i:1676152952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd28be4438bf696072681b5e4d9423860ebaa48c', '31.222.203.2', 1676152952, '__ci_last_regenerate|i:1676152952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c792de07d7cfbdc02e9ca40509745c509057aa06', '31.222.203.2', 1676152952, '__ci_last_regenerate|i:1676152952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda18e1ba97987d1c28fa1400b5f1612d98eb754', '31.222.203.2', 1676154831, '__ci_last_regenerate|i:1676154831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c6b897619b6b8214ee7602b27c9e694d42d34e', '31.222.203.2', 1676154831, '__ci_last_regenerate|i:1676154831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b03b951b87eb0d11f378e0b0e58bf30569a2ea', '31.222.203.2', 1676154831, '__ci_last_regenerate|i:1676154831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0602c63dfa7408f77ca3611b009385e7192d6202', '31.222.203.2', 1676154831, '__ci_last_regenerate|i:1676154831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd00e4d78480e58a86e71cf93759df58b0e5e1b5', '31.222.203.2', 1676154831, '__ci_last_regenerate|i:1676154831;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6afc5d6f41ceccc8ed3c8d82940d59fad8a380', '31.222.203.2', 1676154831, '__ci_last_regenerate|i:1676154831;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e192241a08ac40a6d8e2b573bffee570bb6f744', '172.105.247.100', 1676156421, '__ci_last_regenerate|i:1676156421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8775b31112aeb2bcdcbab6fb01581aeb9702d699', '172.105.247.100', 1676156421, '__ci_last_regenerate|i:1676156421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28feb1704568058da1c886bf67f76cbbfa537cbe', '172.105.247.100', 1676156421, '__ci_last_regenerate|i:1676156421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4831a8138bf4f4a573ae504b09facf591690e46e', '172.105.247.100', 1676156421, '__ci_last_regenerate|i:1676156421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbff691beaee708078eb4c652fbb330df0a2142c', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bb53fce6a3c158d6a92b7f5e63cc76d26ca9f30', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c4bf5f4212dda02fd22a81a5123d346b1809847', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05a829985e72f1809239678f07bc5415ad2ce14', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('233d125288d7cd14a348f135b2c58462bb8b41b3', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb61f2a3f45210f2cde63e967ebdd273955d35db', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf855355bd7a0576bc079dcb67d1f53844d741a', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5400f6593dc6ccae8f382c968fe19205e3a0ce8', '172.105.247.100', 1676156422, '__ci_last_regenerate|i:1676156422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b332d27c829e8aa9e8b0d872f100250057ae90', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c44891c27662c214848fa13f58ff65f3b3af98', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cc87559a4d53db8fa8af4628cb224800710f260', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa12e9d35354393fe515c1174c7bfff75278737', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f84124e11a639f395525383cf2a255714b94ce', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8bf7a94e966049377119e16964de888c19c166a', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2586680b08c4bb86cffd51e4c982a6aa3a3ca70e', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b25ca64be91858af8893faf7b53269bf4064e9', '172.105.247.100', 1676156423, '__ci_last_regenerate|i:1676156423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09fa1bd7998cd9936f142e1b999b9395dedccf60', '172.105.247.100', 1676156424, '__ci_last_regenerate|i:1676156424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('260125657315e1dc0f8e8d09ab19d69609d62295', '172.105.247.100', 1676156424, '__ci_last_regenerate|i:1676156424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fc724deafaa536735dc1b5d844715c998186e2f', '172.105.247.100', 1676156424, '__ci_last_regenerate|i:1676156424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec8cd956eecb757732fedb1008553ffc417466d9', '172.105.247.100', 1676156424, '__ci_last_regenerate|i:1676156424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b17eedf352ce6fa550d408a654e28ec04d938ecd', '87.236.176.25', 1676158483, '__ci_last_regenerate|i:1676158483;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6ee2ffc813b61e14065e622f184751f1c4b80d9', '87.236.176.25', 1676158494, '__ci_last_regenerate|i:1676158489;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ec8e9d59a22fd34c443e1fdec7591822e1cbe0', '172.105.247.100', 1676161821, '__ci_last_regenerate|i:1676161821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bdee0e7cc87696f9c15884b2691fd0f888da51', '172.105.247.100', 1676161821, '__ci_last_regenerate|i:1676161821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876600a8c3d89c9e1f5c2c5ce9d392fd94ff7972', '172.105.247.100', 1676161821, '__ci_last_regenerate|i:1676161821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e14bca2c8aadb24a11bb84658958ca0b34e64e5', '172.105.247.100', 1676161822, '__ci_last_regenerate|i:1676161821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9562c3e1c93c0664b2009f0efe4ee80c8421cd1e', '172.105.247.100', 1676161822, '__ci_last_regenerate|i:1676161822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ceb86110bb8af96470023013560d8c0070f339', '172.105.247.100', 1676161822, '__ci_last_regenerate|i:1676161822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcf40219cc29206de7313901b7d1f70de879369', '172.105.247.100', 1676161822, '__ci_last_regenerate|i:1676161822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ab9620dfaaa899bbd8d30d859fbdc4a73b7182', '172.105.247.100', 1676161823, '__ci_last_regenerate|i:1676161823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('304f61908f11707373dc7c1ebe64e6f47bccfa8f', '172.105.247.100', 1676161823, '__ci_last_regenerate|i:1676161823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145c34ebdad7f1130aa0bacd9eabf169eb6355c1', '172.105.247.100', 1676161823, '__ci_last_regenerate|i:1676161823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1db6eecacc92095bfcdd74b5ff3ca7de0763853', '172.105.247.100', 1676161823, '__ci_last_regenerate|i:1676161823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285f32d14944e32aa539581e5e6d2869667db912', '172.105.247.100', 1676161823, '__ci_last_regenerate|i:1676161823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('598d06470e9e3688c68d25306c71998f2d11f342', '172.105.247.100', 1676161823, '__ci_last_regenerate|i:1676161823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f02385fab93aa78df2fc7e8580d473b10359ba8', '172.105.247.100', 1676161824, '__ci_last_regenerate|i:1676161824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66420af8790e5033da1c5041dc05fcb5897df2d', '172.105.247.100', 1676161824, '__ci_last_regenerate|i:1676161824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('601363a5a3a2593fd6cf3fa7010a1dec3e5f8f23', '172.105.247.100', 1676161824, '__ci_last_regenerate|i:1676161824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6dab6c623c4fbed89aa07ee47972acd03e457c', '172.105.247.100', 1676161824, '__ci_last_regenerate|i:1676161824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad8b4724e1c8912be881b3ea0e79a6731d38265', '172.105.247.100', 1676161824, '__ci_last_regenerate|i:1676161824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db27db1acd6644f7d019ee46180993345552c909', '172.105.247.100', 1676161825, '__ci_last_regenerate|i:1676161825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f38122c9efd7ee05ddf6bab611180c4b04afbb1', '172.105.247.100', 1676161825, '__ci_last_regenerate|i:1676161825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d1d66be40873cc9fe3df4ebb244c82eaa225fe', '172.105.247.100', 1676161825, '__ci_last_regenerate|i:1676161825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84e481dcfa84a6187c2fa7a76f63ce634ea9bfe', '172.105.247.100', 1676161825, '__ci_last_regenerate|i:1676161825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ace79ac7b0d51b2fd7365ad2308ba851055780', '172.105.247.100', 1676161826, '__ci_last_regenerate|i:1676161826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3309a6eccd9a79421ae9067eadfdc8280ff7aa1', '172.105.247.100', 1676161826, '__ci_last_regenerate|i:1676161826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f1b90012c6d7547d616f438d7957ad6a889c356', '31.222.203.2', 1676161960, '__ci_last_regenerate|i:1676161960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61608c57a5d373b6946800206c9c4c265b369585', '31.222.203.2', 1676161960, '__ci_last_regenerate|i:1676161960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a514d395ec4eaad076881f915b15a29e018c7927', '31.222.203.2', 1676161960, '__ci_last_regenerate|i:1676161960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8eb1badb524987571e92ca6b41a4dc26cdef48a', '31.222.203.2', 1676161960, '__ci_last_regenerate|i:1676161960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab6b50525c1cab8da88c52d3753e361c962c13c', '31.222.203.2', 1676161960, '__ci_last_regenerate|i:1676161960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c26a7b42f6b928cbb26b43a4a6e9d6f0f24275', '31.222.203.2', 1676161960, '__ci_last_regenerate|i:1676161960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbc76ffd9e69276337e4e0cc95f9a1a42dd9d32', '31.222.203.2', 1676163900, '__ci_last_regenerate|i:1676163900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69082fcaa4330ae0fd8b3070ebccee4c86e00206', '31.222.203.2', 1676163900, '__ci_last_regenerate|i:1676163900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78457c0d5df6fe954df9df8beacdc194551cf5e6', '31.222.203.2', 1676163900, '__ci_last_regenerate|i:1676163900;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3254b8c51bfa7a0d5c564f71345a282e70958a1', '31.222.203.2', 1676163900, '__ci_last_regenerate|i:1676163900;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b32516de57a2254c8f6f3493dbc574a9d8520a', '31.222.203.2', 1676163900, '__ci_last_regenerate|i:1676163900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0078c6c42ee6e8456f2fa504b0d733e086875821', '31.222.203.2', 1676163900, '__ci_last_regenerate|i:1676163900;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b870f5ea16e3f05a389fb43b6b463b90a0103e', '31.222.203.2', 1676165702, '__ci_last_regenerate|i:1676165702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cab0d95ef4322961b45258929ef491f8a95ab1b', '31.222.203.2', 1676165702, '__ci_last_regenerate|i:1676165702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54820e3e27aee122c9b94e00012d00556b41501a', '31.222.203.2', 1676165702, '__ci_last_regenerate|i:1676165702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532542d01cf2066a502d1c2dda898e2ab6ebf0da', '31.222.203.2', 1676165702, '__ci_last_regenerate|i:1676165702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9eca3ac54dd0fdae444308b5f530a50fb8a231', '31.222.203.2', 1676165702, '__ci_last_regenerate|i:1676165702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9806e8b02ce08935500c6e83a903bb64986394b', '31.222.203.2', 1676165702, '__ci_last_regenerate|i:1676165702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2ad071a465a09a0736c1f3f020cd63434e511ec', '172.105.247.100', 1676166619, '__ci_last_regenerate|i:1676166619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83afff8ffdb56bc1f97d4ace168dec3e0518a75', '172.105.247.100', 1676166619, '__ci_last_regenerate|i:1676166619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a86ba7f803addc36ea4a0d84a0d3a48ee5b177', '172.105.247.100', 1676166619, '__ci_last_regenerate|i:1676166619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c198deab084572619d380ce5fbf5d2e217eff10', '172.105.247.100', 1676166619, '__ci_last_regenerate|i:1676166619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41d7022e28f2a164a8e462eaa36468b2feacebe', '172.105.247.100', 1676166620, '__ci_last_regenerate|i:1676166620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a04f6c04da5df08549738e28b14b7a94b96543be', '172.105.247.100', 1676166620, '__ci_last_regenerate|i:1676166620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cef7e530af08e8319a34f425f51af042669c1a', '172.105.247.100', 1676166620, '__ci_last_regenerate|i:1676166620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc57eca0896e7c96972fcbe1db6cc0d1a966685', '172.105.247.100', 1676166620, '__ci_last_regenerate|i:1676166620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc1096cadca33ffc663b79147b27079ed0b2079', '172.105.247.100', 1676166621, '__ci_last_regenerate|i:1676166621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef3ffb4deb27233f97362d2f16a9669b807c1b8', '172.105.247.100', 1676166621, '__ci_last_regenerate|i:1676166621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca00a29c80d2f426100b9cefed4480d352b31fe', '172.105.247.100', 1676166621, '__ci_last_regenerate|i:1676166621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427392a784219b5feca5284deb7b4d23c51390e4', '172.105.247.100', 1676166622, '__ci_last_regenerate|i:1676166621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a6357e4026f8c81623e4a1a91cbf5193f251b6', '172.105.247.100', 1676166622, '__ci_last_regenerate|i:1676166622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abafda91c23c80202673ca40c01cb917fb146df', '172.105.247.100', 1676166622, '__ci_last_regenerate|i:1676166622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4310cd0980629b45e7717695e18efb4d70c24ded', '172.105.247.100', 1676166622, '__ci_last_regenerate|i:1676166622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15403be7ef4bcbd40cca9af21df707c7bdb60c89', '172.105.247.100', 1676166622, '__ci_last_regenerate|i:1676166622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7dbe303fc7dba205d0f61c38e54b726ce00107', '172.105.247.100', 1676166622, '__ci_last_regenerate|i:1676166622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56b0664d13a5607909c984b747ce39a54829c6d', '172.105.247.100', 1676166623, '__ci_last_regenerate|i:1676166622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b36f1f6b5d088d8e1c87e343a570c249286e474', '172.105.247.100', 1676166623, '__ci_last_regenerate|i:1676166623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b98cc7a539e13218b1d12b9a42e6cbadd20bf7b', '172.105.247.100', 1676166623, '__ci_last_regenerate|i:1676166623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191ee5cdf544901dc0d1cea2ea16389ddae44bff', '172.105.247.100', 1676166623, '__ci_last_regenerate|i:1676166623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f41e2d3dd4b0e49f22c0b9c43144293a19d3c1d', '172.105.247.100', 1676166624, '__ci_last_regenerate|i:1676166624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66fab51e51687c196bd8e4b9d47d95c7647391b5', '172.105.247.100', 1676166624, '__ci_last_regenerate|i:1676166624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423d8455b70430a0d6ca8a289796797c00134fe1', '172.105.247.100', 1676166624, '__ci_last_regenerate|i:1676166624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78f9251a42ec2677880ae943a310a6aab68d35b8', '101.68.211.2', 1676169780, '__ci_last_regenerate|i:1676169780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea03b12f5cc80c83a6abefd66a12373f422fc22', '101.68.211.2', 1676169781, '__ci_last_regenerate|i:1676169781;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1116fd389fe05325080b7779ed702d1cee18f595', '101.68.211.2', 1676169945, '__ci_last_regenerate|i:1676169945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2010518a3c713070689e3e210765e0edb6ad2d', '101.68.211.2', 1676169947, '__ci_last_regenerate|i:1676169947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92e55b50b3abee1fb39bb5f44439bb1be564f5c', '31.222.203.2', 1676170964, '__ci_last_regenerate|i:1676170964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf1ca97c626b778efba5e1474e9936d986e4631', '31.222.203.2', 1676170964, '__ci_last_regenerate|i:1676170964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560b63be1f9ab6c6396d156656fa7ad7bf5ce41b', '31.222.203.2', 1676170964, '__ci_last_regenerate|i:1676170964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b2cce45ab67f993db328ef2640bf4416435a691', '31.222.203.2', 1676170966, '__ci_last_regenerate|i:1676170966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f7cb8766507a7966a96dbe46d0d8d7c404336e', '31.222.203.2', 1676170966, '__ci_last_regenerate|i:1676170966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2f1002ebb60e5791e8ebc987c2811414d30b79', '31.222.203.2', 1676170966, '__ci_last_regenerate|i:1676170966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c69c2ad4391f4b2812dbbef7f504f3124df9a9', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5843972af6c2a15341ab520dcf400585591b104', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5517884adfe0c9947ca9c6c9f8dc5bccad81a3', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a98ad0bc1265460d83b4ddee3fcca53624b5101', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3277edf07316dd88ae087cb0b9bfce9b8955beb1', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5f75ab40a84a3817d6556d6ac149ab2b0975b1', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99f99bc356a85523e1c3f9c3b1f8894ab17ac41', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86acb5f497ee1877daaa7204a78045170ffe2924', '172.105.247.100', 1676172018, '__ci_last_regenerate|i:1676172018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df40da9e9dc7bd81a6c977730012a1d52eaabbf', '172.105.247.100', 1676172019, '__ci_last_regenerate|i:1676172019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d1fb8cd30fea32b6d6a27805be538002187a5b', '172.105.247.100', 1676172019, '__ci_last_regenerate|i:1676172019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dd293beea0dec67c8c95517aace9de4f0c814fc', '172.105.247.100', 1676172019, '__ci_last_regenerate|i:1676172019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81b35cef6fb29ef58712c36c54454c14a40854b9', '172.105.247.100', 1676172019, '__ci_last_regenerate|i:1676172019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7771dc003be3e4a043812cb622c5de2afa5fb37', '172.105.247.100', 1676172019, '__ci_last_regenerate|i:1676172019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7d4e7c339558c772fd28d59b1cf7654c462e14', '172.105.247.100', 1676172019, '__ci_last_regenerate|i:1676172019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab482c91bc5e4c281336ec84bf71b5175c901e17', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c65b635ad325352873f3b68a912efeb49ba98e71', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac097fe4cc88a91ebc3fee2b5a19864844cde021', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55169d5cf769aed6295104b491c1e608f56cb1a', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337d005a8ac27c196d1fa6085ce2c96a69b41ce5', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8921efa77c887568b6d8b33ae904d1598a35fc', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edff6ec3e80a3f377b086bb0b657e54e2465ef0c', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ecc0041aad1d88a0fa8556bd171804202eceaf', '172.105.247.100', 1676172020, '__ci_last_regenerate|i:1676172020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf0c6ee19451d1acab3831baa478f6a354605d1', '172.105.247.100', 1676172021, '__ci_last_regenerate|i:1676172021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed86df4eda8b5822b51d0a5890f606f05f15221', '172.105.247.100', 1676172021, '__ci_last_regenerate|i:1676172021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('778c90181ab4f6ee05d91e64d7673a4cd74bd4f6', '31.222.203.2', 1676172836, '__ci_last_regenerate|i:1676172836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c649ca821cd2181ece69febf1dfcad419633d371', '31.222.203.2', 1676172838, '__ci_last_regenerate|i:1676172838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('085458e87966568611253eddf5534a12a90f9091', '31.222.203.2', 1676172838, '__ci_last_regenerate|i:1676172838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18358373dda2d8559fead804022574334501511', '31.222.203.2', 1676172838, '__ci_last_regenerate|i:1676172838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de22f317724f314f369472c8cd3d2ba7c182ef5d', '31.222.203.2', 1676172838, '__ci_last_regenerate|i:1676172838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8d1e8a61f03332859840d1df1a77b10d98636b', '31.222.203.2', 1676172838, '__ci_last_regenerate|i:1676172838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19aa260e2f145ba256692127773a3a78971fea6', '45.120.39.89', 1676177527, '__ci_last_regenerate|i:1676177527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676117657\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0e931e9f5b335c66e3620353d94ad07d2c9cda', '172.105.247.100', 1676177418, '__ci_last_regenerate|i:1676177418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9062ac697c6b85e62c1ce634c0286c61e717b1', '172.105.247.100', 1676177419, '__ci_last_regenerate|i:1676177419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('473634e57cb850de396d2c0d11729cb5820c0a16', '172.105.247.100', 1676177419, '__ci_last_regenerate|i:1676177419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d79f8f8b8aeadcc3099ec4d3da9a6d24713a30', '172.105.247.100', 1676177419, '__ci_last_regenerate|i:1676177419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37548a724b4ea7ee9d063d327362a49ad5ee706', '172.105.247.100', 1676177419, '__ci_last_regenerate|i:1676177419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf511bdaa732ace15716663b94f267020d778d4', '172.105.247.100', 1676177420, '__ci_last_regenerate|i:1676177420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def05f08d1b729fb26de426c0c33d268aa8abf17', '172.105.247.100', 1676177420, '__ci_last_regenerate|i:1676177420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56a2715fd80b9aaf75fe957ca8979c1dd1caa1a', '172.105.247.100', 1676177420, '__ci_last_regenerate|i:1676177420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcbde48f5e4ec548459ceaf0ed19f88720efa970', '172.105.247.100', 1676177420, '__ci_last_regenerate|i:1676177420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('039b6fde2a237c5cf04fe08a629c52164bc8fbf3', '172.105.247.100', 1676177421, '__ci_last_regenerate|i:1676177421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d42929e32d5afbcb655d5ed185662ee5b11c9f2', '172.105.247.100', 1676177421, '__ci_last_regenerate|i:1676177421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ded8a2e2a2583cc4bbcc829d5204ca1d59284717', '172.105.247.100', 1676177421, '__ci_last_regenerate|i:1676177421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3060527dd1a66c51813ac09b23e3de4a9998a6bc', '172.105.247.100', 1676177422, '__ci_last_regenerate|i:1676177422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda3d23bafe10e40bc15025ba4a121fbf7265815', '172.105.247.100', 1676177422, '__ci_last_regenerate|i:1676177422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67b2cd08ff0f4d451428182b84bdf297222a7d1', '172.105.247.100', 1676177422, '__ci_last_regenerate|i:1676177422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b1e9d662e53653727f402510541933db9a944d', '172.105.247.100', 1676177423, '__ci_last_regenerate|i:1676177423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ada9b23d720132cfd1044ca60fce7ad54c23d5', '172.105.247.100', 1676177423, '__ci_last_regenerate|i:1676177423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9ed2001e1eee11455f8ae7f023d74d7ac03d88', '172.105.247.100', 1676177423, '__ci_last_regenerate|i:1676177423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9655651fc39d8f21a5a3d49a46cf3dd86680d765', '172.105.247.100', 1676177423, '__ci_last_regenerate|i:1676177423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7912fdee3c93cdc837e38432f0289838ce9a3106', '172.105.247.100', 1676177424, '__ci_last_regenerate|i:1676177424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33795135cdba660a375bd2eda0aa7354a84e3d45', '172.105.247.100', 1676177424, '__ci_last_regenerate|i:1676177424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec261135e5ba4059556cbe02cc772238284c3117', '172.105.247.100', 1676177424, '__ci_last_regenerate|i:1676177424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc7914a0636c055ced7c6285f9007e8935b30fd', '172.105.247.100', 1676177425, '__ci_last_regenerate|i:1676177425;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37ce080d4b51d9e1531b2103ffcfd825d04b316', '172.105.247.100', 1676177425, '__ci_last_regenerate|i:1676177425;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc08e3729f04d914d702b7d2e35389ae8a261bd4', '45.120.39.89', 1676178205, '__ci_last_regenerate|i:1676178205;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676117657\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676178164;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54681f0282b58d22c94e76186f2fad6df1a12da2', '31.222.203.2', 1676178148, '__ci_last_regenerate|i:1676178148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7d67b66ab4244c099e43bbe234094d0a353e98', '31.222.203.2', 1676178148, '__ci_last_regenerate|i:1676178148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b19d5c48e42ec41a0cd40946dc297328f324273', '31.222.203.2', 1676178148, '__ci_last_regenerate|i:1676178148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fec7bbeab0b8fd8ad2bd75d1d2dc6e7e0863bcb', '31.222.203.2', 1676178150, '__ci_last_regenerate|i:1676178150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe89604f4a6eb46ea7ba9e1bbf805b328b572f38', '31.222.203.2', 1676178150, '__ci_last_regenerate|i:1676178150;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06139e715a71876a32d39532295bb58eae29d8ce', '31.222.203.2', 1676178150, '__ci_last_regenerate|i:1676178150;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479a22d76274263bf64be62ec974c77b49c17144', '45.120.39.89', 1676178777, '__ci_last_regenerate|i:1676178777;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676117657\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676178761;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3280b278ce3a449b14695a314a50f4a94c61b54', '45.120.39.89', 1676181505, '__ci_last_regenerate|i:1676181505;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676117657\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676178777;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23d9ff5f02ea91a6d3b07ade13c22f4e0ec966b', '51.81.186.254', 1676179626, '__ci_last_regenerate|i:1676179625;requested_page|s:25:\"admin/reports/daily_sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7854a14069dc904ae895ce0954cd56af6aeeccc8', '31.222.203.2', 1676180036, '__ci_last_regenerate|i:1676180036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('939b04e4894e1af04bc0aeaa284af86720f01906', '31.222.203.2', 1676180036, '__ci_last_regenerate|i:1676180036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c60fa7af42227ab8a0b0372b43686ba4d588f8', '31.222.203.2', 1676180036, '__ci_last_regenerate|i:1676180036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3844788ec9c3966ed4b32dbe4fe24c9e7f6aa070', '31.222.203.2', 1676180038, '__ci_last_regenerate|i:1676180038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cdc96f4fa8fca7df795ddc00cf8bf152bb17b2', '31.222.203.2', 1676180038, '__ci_last_regenerate|i:1676180038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e65dcaed02ba46bcf320b1251049f84e9c16032', '31.222.203.2', 1676180038, '__ci_last_regenerate|i:1676180038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2331ef94c925d3c17287455f73830f12ad4ec8ba', '45.120.39.89', 1676182839, '__ci_last_regenerate|i:1676182839;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676117657\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676181505;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b58c7dc4937ade6a4915415708841357ac9d2c3', '31.222.203.2', 1676181892, '__ci_last_regenerate|i:1676181892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad0505c3802263f3eba728aba3b158b38368117', '31.222.203.2', 1676181892, '__ci_last_regenerate|i:1676181892;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5042bf710cf2e2b1ddff580e2b9be3dff9b136', '31.222.203.2', 1676181892, '__ci_last_regenerate|i:1676181892;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764dc694ce8e41bd1e7d95cf38a0eccc65a057e9', '31.222.203.2', 1676181894, '__ci_last_regenerate|i:1676181894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('128c5604d3273d1f31c7eefe68e8d37d21bad55c', '31.222.203.2', 1676181894, '__ci_last_regenerate|i:1676181894;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d04f8d2e3188c2162c868dfa1a0f664517e6f4c', '31.222.203.2', 1676181894, '__ci_last_regenerate|i:1676181894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d02c8e88eec60f2ab1840ca7949d268eb928c1', '172.105.247.100', 1676182817, '__ci_last_regenerate|i:1676182817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cb055d32562da7953681cb6aa56ad4472642a98', '172.105.247.100', 1676182818, '__ci_last_regenerate|i:1676182818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923204df8cfe74b3e87d5d13911946613be7a645', '172.105.247.100', 1676182818, '__ci_last_regenerate|i:1676182818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db2d16d79cb3922f9ae8004a086f709a4871d310', '172.105.247.100', 1676182818, '__ci_last_regenerate|i:1676182818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1c647794fe500bce91c4eb4f291259b1c2d107b', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c35b54b9f641efd26cd31f7ab13563483e09a32', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5f4cdb4767895db819d0892a204a64affc60b63', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00979852290f1444e5c845c965cc2b2593e835e', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e3f83846870cc264e53fd189a2b328f7623fd4b', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2bf9ee009cf201b89781057a8948bd8c022060', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52aa763f13d000b5dae916dbddf3e317b3fdd797', '172.105.247.100', 1676182819, '__ci_last_regenerate|i:1676182819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a217b9edbb57e44bd1980862a580480b551d240e', '172.105.247.100', 1676182820, '__ci_last_regenerate|i:1676182820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a044979e480a3548c795bf6162ae2c9355b364a3', '172.105.247.100', 1676182820, '__ci_last_regenerate|i:1676182820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba17d72dd25c7ddc2b74bfcc4841fdba1ee0c783', '172.105.247.100', 1676182820, '__ci_last_regenerate|i:1676182820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1bd91b55e43efcf146ea0af3c2fd980d7b67902', '172.105.247.100', 1676182820, '__ci_last_regenerate|i:1676182820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a258ca5dcf0ff1e3abc230d91205fd37f433045', '172.105.247.100', 1676182820, '__ci_last_regenerate|i:1676182820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46983217d4a5afe1cf5e6f32b89f20c4afc4a74', '172.105.247.100', 1676182820, '__ci_last_regenerate|i:1676182820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9186d40a448a4f3d0298a5bf35e5ec7c2491552', '172.105.247.100', 1676182821, '__ci_last_regenerate|i:1676182820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de53ace162e44587f180073202d7423adbbe90ca', '172.105.247.100', 1676182821, '__ci_last_regenerate|i:1676182821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bba392e44e31cf4dc3ee179d9e7d2669dd149f7', '172.105.247.100', 1676182821, '__ci_last_regenerate|i:1676182821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b65596fd832733eb69a9789ea5db7e9bdc6babf', '172.105.247.100', 1676182821, '__ci_last_regenerate|i:1676182821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e45a9652b8e2fd27e64b53a296086fd91a36b6df', '172.105.247.100', 1676182821, '__ci_last_regenerate|i:1676182821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74397b0ca490f0178a712199480c27462136cddb', '172.105.247.100', 1676182822, '__ci_last_regenerate|i:1676182822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f596522c06c648a8c0da24e8d31b42aedc167f3', '172.105.247.100', 1676182822, '__ci_last_regenerate|i:1676182822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a776584f258cf489756ceabd5109442229a3ca', '45.120.39.89', 1676182840, '__ci_last_regenerate|i:1676182839;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676117657\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676182839;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3efbb1783ef0ccf10873eff4374456b50bbe6144', '172.105.247.100', 1676188219, '__ci_last_regenerate|i:1676188219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357f7281ead6b22b2c4d457fd79f4bdb799646c5', '172.105.247.100', 1676188219, '__ci_last_regenerate|i:1676188219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf6a211b6237995b2a734c9687bad6611da37f38', '172.105.247.100', 1676188221, '__ci_last_regenerate|i:1676188221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517a35b4c454209ce8555bc984247fd6490dc67e', '172.105.247.100', 1676188221, '__ci_last_regenerate|i:1676188221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd5aa122dad971683ff29c85130ba4cc6fa99b6', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae328b86760dfc2ff66bdec34a36ccc0bde4ed7', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd47a8d858b36730267b16cd0be6157e66a0ddb', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48237923dccce071861f1dd9848c74544b1f8e20', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11683ada3196135506e56863e292982a8c38b147', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('498c041e084f43fbb3892ae3494447e4a8fd88ca', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3fe15bcf41e9b90d0355d5b8f2f02c32578796', '172.105.247.100', 1676188222, '__ci_last_regenerate|i:1676188222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d09463c2cf48848aacffc47ff0920c6a5501f37', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b09dd906b0b148caf78e78189ece33be3a5dd9d', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a16ad26be28b2735af347bf3d151e6cddd5de79', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881511dd0f7a963ea03c0127ee193d85e073e4ad', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f5488be24e797350dafe71725fe80d1a530e61', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c975f1a3c13d24f20415fe933a7b55684ae5f37', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7900ac43e5e434a1f818959aabd054df8b101ec', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef36f68cae6a252f965ffb30a79f2e4e7f74ca1c', '172.105.247.100', 1676188223, '__ci_last_regenerate|i:1676188223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f68cad401a1c66127853aa018acc8c5c6c898d8', '172.105.247.100', 1676188224, '__ci_last_regenerate|i:1676188224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41503a4b05e2f83c661fd7258c1df7e023e69f63', '172.105.247.100', 1676188224, '__ci_last_regenerate|i:1676188224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9c3f0385cf9408f498359cdbcd90672747001d', '172.105.247.100', 1676188224, '__ci_last_regenerate|i:1676188224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c23785cca7fb04290e7a71af8d1de534e1a9eb', '172.105.247.100', 1676188224, '__ci_last_regenerate|i:1676188224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fecece097316fe489a7162c6c61429009aa2d81', '172.105.247.100', 1676188225, '__ci_last_regenerate|i:1676188225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2054c3010926517f24f8bb4323e8d260f0bfba4', '31.222.203.2', 1676188950, '__ci_last_regenerate|i:1676188950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df7ad89b88ec4daca00b093875cfaaf06f376f0', '31.222.203.2', 1676188950, '__ci_last_regenerate|i:1676188950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb1c85f8dbb6eb65a0d174cd81cac8b0f9ffeb4', '31.222.203.2', 1676188950, '__ci_last_regenerate|i:1676188950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e409d7b954e20c470a1726122de1d6d5e0fccda', '31.222.203.2', 1676188952, '__ci_last_regenerate|i:1676188952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc1ec4013a15e41089a46d1d71e732a759dc4de6', '31.222.203.2', 1676188952, '__ci_last_regenerate|i:1676188952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22553e71747d1189c2f615427ae43f7a48e2e163', '31.222.203.2', 1676188952, '__ci_last_regenerate|i:1676188952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa508521cf50467ccd75a3aba1cb15f74477108', '31.222.203.2', 1676190837, '__ci_last_regenerate|i:1676190837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1764a5dd4ac297fd236ffa7c4e0d1789b2648772', '31.222.203.2', 1676190837, '__ci_last_regenerate|i:1676190837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36035902864ad1ea4d1cf306a2182dbccfb4944a', '31.222.203.2', 1676190837, '__ci_last_regenerate|i:1676190837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405df762ccad40a1daf24c2ece0ecaa036b29353', '31.222.203.2', 1676190838, '__ci_last_regenerate|i:1676190838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635446b5d4d734a07dfa824582b046ef00b5fa1f', '31.222.203.2', 1676190838, '__ci_last_regenerate|i:1676190838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c36dd8b797ef5da03a45f70bc97c198f4e82f33', '31.222.203.2', 1676190838, '__ci_last_regenerate|i:1676190838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be4e75d21bb6eb636b38e29bc07d6e852a91c0a', '172.105.247.100', 1676193619, '__ci_last_regenerate|i:1676193619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e1ff8374e10541406ef27beb8ff27dbc4fced0', '172.105.247.100', 1676193621, '__ci_last_regenerate|i:1676193621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a6fa484cfef2ebe4375c952acdd3d3b5f720073', '172.105.247.100', 1676193621, '__ci_last_regenerate|i:1676193621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96688345a1fa2dec89a2556b9e3c784396a717b4', '172.105.247.100', 1676193621, '__ci_last_regenerate|i:1676193621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb523ecf5b932703b28a7ad28d597ef13e0a4d77', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c09cbcf7b20d923e573d4407c7251587e963a6', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6066d2d06902cd3c539dfb24e8b9f60a20181bd6', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52d27ee7485f619f8ec4e5414be716aa12eefbf', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf4027bd7f4f6131afb1349b556730b0f2c2dcdf', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5da08a4bbcf8bb4b1d85348a45a600e296d063', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a6bb8576b06528a4b1a44023246ef50644b547e', '172.105.247.100', 1676193622, '__ci_last_regenerate|i:1676193622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d697ad814aab1c01ec18d3512a194d1874d334d', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9694f87b6bc7ba39e967bec7cb59caff0f8ccd1', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728a194280e7bd45128b3ff54c9a4092510d5151', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c65cfd386a0486095bef22e5c4fbcae0cb1a14ce', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f3d28065a4585dc1e57430e5e2828c770bc42c', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502b7b2605ac061742c704c2a9a87304f9321ddb', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ccb43439f52fcf38cc44f4196cc4167c05ca6ff', '172.105.247.100', 1676193623, '__ci_last_regenerate|i:1676193623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c1a66a6fc7b483fcc6dcd1883ed351858cc44e', '172.105.247.100', 1676193624, '__ci_last_regenerate|i:1676193624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b441e75fe0958c4e22c88ae1b9aeed4c3f4587', '172.105.247.100', 1676193624, '__ci_last_regenerate|i:1676193624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0280de9387a979c1023ddedb78dbf478e7b11e', '172.105.247.100', 1676193624, '__ci_last_regenerate|i:1676193624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dfee64d6178d6d6d30d2970d1ae19574f1ebba4', '172.105.247.100', 1676193624, '__ci_last_regenerate|i:1676193624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419ef9ded0393ed7d313f7b8cecfcd3016a6681f', '172.105.247.100', 1676193624, '__ci_last_regenerate|i:1676193624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44860f29787adfee0ab091afcdffdd53e06d2be', '172.105.247.100', 1676193625, '__ci_last_regenerate|i:1676193625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb5e6c39d412e937f94e3f869a363611139e946', '45.120.39.89', 1676194290, '__ci_last_regenerate|i:1676194227;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676176337\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676194290;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39175f8575c5ec59c4f92f38e9c121227ab5e7da', '195.211.77.140', 1676195617, '__ci_last_regenerate|i:1676195617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5391a76d03041b858fdde9fdb17c869e410b82d6', '195.211.77.140', 1676195633, '__ci_last_regenerate|i:1676195633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b5fa1e07b793ea9393aacc09b7b45a25ca3010', '205.169.39.63', 1676195641, '__ci_last_regenerate|i:1676195639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8548b9c1326496f3ff9f9f9fa676b3a686200f84', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5fd4da480c3fb81fd8383c95f686f12b9e0b9c1', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002d411c8da0b7807c90b5ecd624c74e95649861', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dcd9232fa874ef2a521eb3b96ab70065a345ab7', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de096a5f5d0f88cbd2cb74d376e5f16617b9c355', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b5b2acd3ff07d63c34ab4cef1f0bd661bac689', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0359e1b0046ee33d2a54a2de94be8c14a8634074', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e934e8a79cd4500fe6ea18a0f387d9e5e0d013', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b461eb08f27928bc825c159a2db00143f8b788', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1420879624ba95fcaa7918d6d948ff3337653f4f', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d3e1dfe46e4471da140e95935bd73c7b810983', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877754575edaff725c5e742b6fc15c10dc772115', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b67c8f123117037c1882a837cf1333a8e63ca06', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e471b8365355283830b7018fbe878092b17e2e', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c255acdc72750de7c172b1f995af91682227d35', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0dafbc2e496dd2979e9fc92fc18e8d1487571b4', '67.205.130.223', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a864f024ec6ab17d296f61a3ab5391fe36e7439', '172.104.139.59', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54647e5833ef76c2bcec32a7e5f94ccdc2d25628', '170.187.164.225', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dddfcdaf36db3130e07273156fae47d2684e9bfe', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a5ef39b7a52f4e356271fed5e7ae6cd958697f', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a89e5113e52bfcf9bfc36632deb73444ac3d20c7', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b58f724b70e04bcfab3e5d4dc2e4ac787ddf4d9a', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a56a7032bed9e152918cde82b01ce87d775ac3a', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa2ec7fef7693854f2f5d6a7286eb493b603b65', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2543cfe6917fee820a04e61bba43142511309500', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56192075ec0299600f34058167c46d4e0bd8bb3c', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f969c869671b805d907e2d992265aeeba9918fd', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('765b44d1c77462aa7457267d467548c3a1932f7e', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28ee98072066f5e13c5c726c7090b28c498cbd2', '164.92.189.255', 1676195640, '__ci_last_regenerate|i:1676195640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c27f712d4a390d5f08709afd78c427778d979c8', '164.92.189.255', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660fb7544c9d2a0c133703dec2b4060863263914', '164.92.189.255', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90aea5aceb250b481f54a72330cb8511bd17175', '164.92.189.255', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ca84e1dd29e1f9e6863b5fd6876583c6d95d21', '164.92.189.255', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5833e7060df975ba9d7bff89f83bf84587fe97', '164.92.189.255', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d757cdca914ad4c2063917465cc2563b152ee272', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b32b6bf4bda4eae18c9e01d8c1f6cd30616b47f', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e8eda41afb839709810f99b335502a4288c7d4f', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f4e8d370acea2cae2b73c30ceb8d8865ef68f2', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef6d8572233410222770ca4312d5a6e62e5e5c1', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa2f992367bfb583a3ad6aa40d0ddee97f3d39f', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('519aeb84ca6312a5c4d50c992bee3533f075beef', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad594717ff2508fc1ee600d0971e27a7cce8eca', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183c18d9c411c6cc68c2c8ba94af9cc3bfae67e7', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94cc5c496c8ffac898fe5d05284ccd0e80fd8c27', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cee6214ea359929a711d96c7fbcee1e31f70c78', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a0b59577c629de94ad25de7ada8711a1097929', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a21292e7d773e027c3076cb2cd771e6994d3c0e', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fa28245940c465077817823004e973585f63c51', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a242f1bd89d897b136df88dc9b50a271719ef23e', '170.187.164.225', 1676195641, '__ci_last_regenerate|i:1676195641;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958347c6284cabc529b3672551d3eeb1cc5537d7', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871450191056d62cb8bbb52a32201758e4a5d219', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b298918e047db029b096391173e49afbd494bb88', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0524db683197ef33d9846e5c3f64785b8f466e', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2569d73130cabcbb988a0a9d063ccc72bc31062e', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd2c8c91a2e7b0b330a0373b369742ff39e7e0a', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea7050bda1a694c2a3e1c71d087d691e23b6b333', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03462b59ec2766c284cbabf36b4b08185c2d184', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c35c7824da1f4472a1764fec9e953caa620734c', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b09a0621b07b23e7867badba4c049f00a7d87c2', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0906ea0bcca64281eb8f2c7489f4f4d269139f7e', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60e8700f0b314d14be216a30cd12b8524142efe', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2403c23457fa21d1b0d84ea2fa0321df0bb09ea9', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a68b942ee07d139a903ac6da21a51f71eb7bd29', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6284c90c087d194383557b6a3afe337fa72e6a3c', '172.104.139.59', 1676195642, '__ci_last_regenerate|i:1676195642;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd23aa5ad391c94a7d02589d6a0024f90a7ae30', '209.141.36.231', 1676195662, '__ci_last_regenerate|i:1676195662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aef3786041584f6d9a02807f595b5c9832c1ff65', '209.141.51.222', 1676195663, '__ci_last_regenerate|i:1676195663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63a8300e1dbcfa9cf4eacb22861d3cfc4e4c4a4', '195.211.77.140', 1676195663, '__ci_last_regenerate|i:1676195663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3676e8fdb96395fb42c30f16f7ce734e70dcac', '209.141.51.222', 1676195663, '__ci_last_regenerate|i:1676195663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdbe8bb70819bb822e11fe0418a8cd8016650f0b', '148.113.142.65', 1676195713, '__ci_last_regenerate|i:1676195713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0e7a9287392846a1f763d860042643d9409fc1', '148.113.142.65', 1676195713, '__ci_last_regenerate|i:1676195713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3edf49cabd8ed4f71ddcc5d87da537b99a4568e4', '31.222.203.2', 1676196146, '__ci_last_regenerate|i:1676196146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7463bb9f680f19dd662e4b682760498daa302353', '31.222.203.2', 1676196146, '__ci_last_regenerate|i:1676196146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f109563ffb1b6b6a0902361f56a7c0802c4693a1', '31.222.203.2', 1676196146, '__ci_last_regenerate|i:1676196146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c6861b1a44cc5a37599415e72f099c62225319', '31.222.203.2', 1676196148, '__ci_last_regenerate|i:1676196148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e2d097b94def99885a74846008c806cc4d08363', '31.222.203.2', 1676196148, '__ci_last_regenerate|i:1676196148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f286908cbd5931ac16afb4d5c9b5dde114798e35', '31.222.203.2', 1676196148, '__ci_last_regenerate|i:1676196148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6457558cf1b8589871e7839a39c5c6dd549fb494', '31.222.203.2', 1676198036, '__ci_last_regenerate|i:1676198036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0060af24f5a2fd450c190e3406311a1886ed3b88', '31.222.203.2', 1676198036, '__ci_last_regenerate|i:1676198036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd755c52396afb36001534f2f133abbde17255a', '31.222.203.2', 1676198036, '__ci_last_regenerate|i:1676198036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6301d552e6accad8a805526597c00476dea5dabf', '31.222.203.2', 1676198037, '__ci_last_regenerate|i:1676198037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4708f31bb27f9db0c5628210d5b0b2c315c49c48', '31.222.203.2', 1676198037, '__ci_last_regenerate|i:1676198037;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665e540d575f015885700d3f464a6321fb482ea4', '31.222.203.2', 1676198037, '__ci_last_regenerate|i:1676198037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d980e7811e4d572e3fdfa144409bcae02e73434', '172.105.247.100', 1676198417, '__ci_last_regenerate|i:1676198417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd33399de307f13cc5d1ac2575cf17d7bbe5ecc', '172.105.247.100', 1676198418, '__ci_last_regenerate|i:1676198418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb7e93fcde6ce73a854c4a8eea33d571f59316e', '172.105.247.100', 1676198418, '__ci_last_regenerate|i:1676198418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34f3ee34f76278159ad7ed4425317570b7608e92', '172.105.247.100', 1676198418, '__ci_last_regenerate|i:1676198418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d3600541c0b2bd00112988f41364e81a8c43b0', '172.105.247.100', 1676198418, '__ci_last_regenerate|i:1676198418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cad3ccc5e2b7f3bc14b31124734f31825368a13', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38b812523466066611c39ab4fe428eb579475e3', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3bec23b214f6630a45cca34e07caafdf06007a', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16977df2e6db467babc4043199e4c425f6b2c53', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3c0aa4adbca043fdac3c407e09055fda6aa9db', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d95b8eb6bac4cde6c77181f05e7ac723f5ad46', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ff0fc001a11c9072f6b77c4e3dc6b0e3eae93b', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0176308b9ee9cadeb57f81d72a970e4aa1fb326', '172.105.247.100', 1676198419, '__ci_last_regenerate|i:1676198419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7117189531a896ad2ba9f1e21570205a501a705e', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f83426671a01028897fc612bc808c1c06ed043ed', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901cb192dcaeff5322bd7f15b0d7a69b4377db4a', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012156fadbd3a1c48ebcfe133b6fe11f28d72f38', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb99c7bb0ff950ceddc56a09742b3aed8d0d6dca', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dbbcaae23ea5896cd7c6df78771bad6fc3997ff', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e58323cac6859080702146d21c3803068981fad', '172.105.247.100', 1676198420, '__ci_last_regenerate|i:1676198420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba29140a650f2683961526e476da699979a3095', '172.105.247.100', 1676198421, '__ci_last_regenerate|i:1676198421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8cec7ee48dfbb0bd0f7785e4d582dfe7cd8d52', '172.105.247.100', 1676198421, '__ci_last_regenerate|i:1676198421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804f5f3869e063b0e6c92334a446a1a6c9b558ef', '172.105.247.100', 1676198421, '__ci_last_regenerate|i:1676198421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b0cbc28379cce801729e28e1df239e335023fa', '172.105.247.100', 1676198421, '__ci_last_regenerate|i:1676198421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e6a25982c2a5ddcd901404d24025df6c3a8d186', '45.120.39.89', 1676202449, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1676202449;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676194236\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('babdd3237599d5b119869f4933dfd77dfd6de922', '45.120.39.89', 1676208919, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1676208919;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676194236\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676208915;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f433c0beb897f8046a2d6413300966f462fc54e', '31.222.203.2', 1676203367, '__ci_last_regenerate|i:1676203367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a72e4e01a7d2daf1476935d19818e3aa249b0384', '31.222.203.2', 1676203367, '__ci_last_regenerate|i:1676203367;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27080920231524ca324f98365431612b4eca13d5', '31.222.203.2', 1676203367, '__ci_last_regenerate|i:1676203367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c62ca51fa6a27cc0a9d804dfd76ac0bf0dac08', '31.222.203.2', 1676203367, '__ci_last_regenerate|i:1676203367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa393f6e464eae607d54702263e65f1f3eb06a93', '31.222.203.2', 1676203367, '__ci_last_regenerate|i:1676203367;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7412715e4669605bcb02eb0d56dfe8cd61ca595', '31.222.203.2', 1676203367, '__ci_last_regenerate|i:1676203367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d0df4956cf46fb660080d636e712d7f4e4e203', '172.105.247.100', 1676203819, '__ci_last_regenerate|i:1676203819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36e30934ca510bfeaa3b9121628d472f51c9b09', '172.105.247.100', 1676203819, '__ci_last_regenerate|i:1676203819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d36f1ce18937a0566f91b76c54c9cca57cff7df', '172.105.247.100', 1676203821, '__ci_last_regenerate|i:1676203821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a94fb0538f522fe608b66a59423ffa546cf24b07', '172.105.247.100', 1676203821, '__ci_last_regenerate|i:1676203821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab813937a0bab69dd96fdb517668e0506c6617b', '172.105.247.100', 1676203821, '__ci_last_regenerate|i:1676203821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3a3d00a1894f081a4c39e4aeaf38defd32a66f', '172.105.247.100', 1676203821, '__ci_last_regenerate|i:1676203821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55dbc2e75183403e61c2575c20aa4d6efc1089a6', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90ce493e4d647c8db29b2e09f218ea9c0ab86f6', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f6abd9bd5153ac8b8bcb54dc342dcbf4ed82ad', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0357c7818023d6397aea1f0d086019f59d8a43f2', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f087ad2e990d8f5c2937ead310992fbd92cdebd5', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd79165267d37abc41a1b45e8480aee1063bdb5', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827690c157c1c670bdc2804c78d8c6febe5f1286', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77924ebfea2bfda9d96850992314a772bbc07f6a', '172.105.247.100', 1676203822, '__ci_last_regenerate|i:1676203822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5082a6ae12e03065aabee158b31e9f87df298b46', '172.105.247.100', 1676203823, '__ci_last_regenerate|i:1676203823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c03d08ce8d5e271268ef8ac79c3f20a4695f67', '172.105.247.100', 1676203823, '__ci_last_regenerate|i:1676203823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650773ca159b98db59a2d6dc06ad39fd21eca54d', '172.105.247.100', 1676203823, '__ci_last_regenerate|i:1676203823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22f1d4bdaba26ba3f23679191195abd5ff861d91', '172.105.247.100', 1676203823, '__ci_last_regenerate|i:1676203823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3fad92f2282ac9e0d3ea4fb62b9dd29dd640063', '172.105.247.100', 1676203823, '__ci_last_regenerate|i:1676203823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b432bea8ba92f9bba90d71e471f48cda62df525d', '172.105.247.100', 1676203823, '__ci_last_regenerate|i:1676203823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57bd834839c8dcf5e83b25c92e6a8d1e1f0a887', '172.105.247.100', 1676203824, '__ci_last_regenerate|i:1676203824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3c622ef91546f6fadacc4d7a45b832cd192c88', '172.105.247.100', 1676203824, '__ci_last_regenerate|i:1676203824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad43733305a2e8eb2b00b6349fdb1a49f4c502b0', '172.105.247.100', 1676203824, '__ci_last_regenerate|i:1676203824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e8ace751722a8054cbe39b47e0eade03a2f089', '172.105.247.100', 1676203824, '__ci_last_regenerate|i:1676203824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da5e7e1fc49a07332cba6bab8d4b9ce2ade58c5', '31.222.203.2', 1676205238, '__ci_last_regenerate|i:1676205238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5458be8eb4fb2e346f7fca57fd5545078b58c876', '31.222.203.2', 1676205240, '__ci_last_regenerate|i:1676205240;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04316bda2c8dda0e7a8c428e1a2699db46bdbfba', '31.222.203.2', 1676205240, '__ci_last_regenerate|i:1676205240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a73f35b0446765b0f2ebf62ae01bdd11fc96ee4', '31.222.203.2', 1676205240, '__ci_last_regenerate|i:1676205240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('159f53be00cd69bd271b302a6254a377e527f129', '31.222.203.2', 1676205240, '__ci_last_regenerate|i:1676205240;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088ff7ed01d685df89f7eb49631fe6bf5c0b6926', '31.222.203.2', 1676205240, '__ci_last_regenerate|i:1676205240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cb2daf4f0379fca770f5c3b0372b2b6890165b', '31.222.203.2', 1676207102, '__ci_last_regenerate|i:1676207102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291118266540bc831f2b24a299fb3b6ae3ff4b5a', '31.222.203.2', 1676207102, '__ci_last_regenerate|i:1676207102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed1440c95c79941fd00c937f86dd19893ad3ca3', '31.222.203.2', 1676207102, '__ci_last_regenerate|i:1676207102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e706ab6f59fda4d72ae0d34dfffd072b084f4d', '31.222.203.2', 1676207102, '__ci_last_regenerate|i:1676207102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f9afe796cf44417dc10c96296c8dea883cb846', '31.222.203.2', 1676207102, '__ci_last_regenerate|i:1676207102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924cdcf463b8b8bed3208e410b403474532f7ad2', '31.222.203.2', 1676207102, '__ci_last_regenerate|i:1676207102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f887eeb0a8f0a8d8c4d002a89c63437b71db7d7', '45.120.39.89', 1676211246, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1676211246;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676194236\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676208947;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7d030bde34d5d4a80ade07e9d309b55dd6e8f9', '172.105.247.100', 1676209219, '__ci_last_regenerate|i:1676209219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30bf2495076c67cd05abe3c3b6246e1efa7e0891', '172.105.247.100', 1676209219, '__ci_last_regenerate|i:1676209219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01cbbd8bf87ff0507b1df1b0bf7669a528f706c', '172.105.247.100', 1676209219, '__ci_last_regenerate|i:1676209219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a5f2247efef76c78d93bc9b904f1236166f933f', '172.105.247.100', 1676209220, '__ci_last_regenerate|i:1676209219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2eb8e22e37ffbfd29e86904e20dc4c0bb000349', '172.105.247.100', 1676209220, '__ci_last_regenerate|i:1676209220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea87dc24ce9cab8b635ffa4bd67de5d7cc322769', '172.105.247.100', 1676209220, '__ci_last_regenerate|i:1676209220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f060553d9a20c7a1c0903bd51499b8698942cc', '172.105.247.100', 1676209220, '__ci_last_regenerate|i:1676209220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859fd7d9c164e2bdf4c89870b36a0167253a9bec', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334e359bd2410636408750eb600c83c11a1dd129', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e72bce7bbed9015485dca7c17cf210f6f0c1e8', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d166fdd1fd08d854a200ae52b7c97853998326d', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52bcbb70d6f0ed68d2bb8a3baca37759cee9be97', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393a53e68c7d84542c8292aa74177d722674d25e', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6cddef164ac68a9bf77e9b50c5fa950356ab547', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee9ca2a7aa65262d46fbb790fec070f025c44a4', '172.105.247.100', 1676209221, '__ci_last_regenerate|i:1676209221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcbf6161f0497895375250cf79e88e1132013bd', '172.105.247.100', 1676209222, '__ci_last_regenerate|i:1676209222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d9fdce8c439752734c28bb8c8eb74dabbd87c5d', '172.105.247.100', 1676209222, '__ci_last_regenerate|i:1676209222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f533aef9bf3855998da23b4dfaee73229d032de', '172.105.247.100', 1676209222, '__ci_last_regenerate|i:1676209222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063ca8b19f35e99a88a085dbdc40bfd001d04a6e', '172.105.247.100', 1676209222, '__ci_last_regenerate|i:1676209222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0be32961d7227eb8b596d83c1d9a3862a357471', '172.105.247.100', 1676209222, '__ci_last_regenerate|i:1676209222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a250178e3d8b798a1ff5dd84d36b0cac3d39ac57', '172.105.247.100', 1676209223, '__ci_last_regenerate|i:1676209223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3dae78ae8beda84502b6ea276d4aafc4482ee91', '172.105.247.100', 1676209223, '__ci_last_regenerate|i:1676209223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2baefee7b0872da84f529fea9f3c9244821745f5', '172.105.247.100', 1676209223, '__ci_last_regenerate|i:1676209223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39eb26fe57205bedd3f6f56467dab9127ea070e1', '172.105.247.100', 1676209224, '__ci_last_regenerate|i:1676209224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a585c2938a8602ce04df68e52b8623dbcdc198a', '31.222.203.2', 1676210564, '__ci_last_regenerate|i:1676210564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9436ffc8186324d455501b625c9c639b33f602a', '31.222.203.2', 1676210564, '__ci_last_regenerate|i:1676210564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b7b1cd9d0c2d6945386f7a951a7c2d0c6524a4', '31.222.203.2', 1676210564, '__ci_last_regenerate|i:1676210564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661bbf09f038eb7d6f359ef05dff535959ebaad8', '31.222.203.2', 1676210566, '__ci_last_regenerate|i:1676210566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de58fe37c918990d02677d293819d17d18e9fa8', '31.222.203.2', 1676210566, '__ci_last_regenerate|i:1676210566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d2fb35ebc001aa2375b48ae75f9e978f2e20a9', '31.222.203.2', 1676210566, '__ci_last_regenerate|i:1676210566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2965c4edde01e4d662aaf7b0fdb2e2fbd0f508a', '45.120.39.89', 1676212898, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1676212898;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676194236\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676211267;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3844e62d5f3931a86ad7cf5cdda0eb37dc074cc3', '31.222.203.2', 1676212444, '__ci_last_regenerate|i:1676212444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8f480134a748adafd7b46dce7bc3784ec9b4b6', '31.222.203.2', 1676212444, '__ci_last_regenerate|i:1676212444;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e66cb4556bc6c5880f07b05a42794c8b48bfbf', '31.222.203.2', 1676212444, '__ci_last_regenerate|i:1676212444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e97cdbf26adc59d3bd47e3872822ea00fd3b89c', '31.222.203.2', 1676212444, '__ci_last_regenerate|i:1676212444;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1277095dc462e4aba4415fa09c3c5fa0d7893a1b', '31.222.203.2', 1676212444, '__ci_last_regenerate|i:1676212444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f50cd7b05ffcec59cacd36b979475277077a33', '31.222.203.2', 1676212444, '__ci_last_regenerate|i:1676212444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e768a6f689e435361b668c756f12932a933ce78d', '45.120.39.89', 1676213213, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1676213213;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676194236\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676213207;register_id|s:3:\"339\";cash_in_hand|s:10:\"15240.0000\";register_open_time|s:19:\"2023-02-11 21:06:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07ebd5f2393d586dd3283c6cd4ba7db5c995c9a', '45.120.39.89', 1676213254, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1676213213;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676194236\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676213254;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5bf9e414f274eeba227280e288a7d58a58e40b3', '31.222.203.2', 1676214318, '__ci_last_regenerate|i:1676214318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7216f44a435fbbf108f224c33a6b0c59b742eea', '31.222.203.2', 1676214318, '__ci_last_regenerate|i:1676214318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d579f6ce4058101fc7e72e74846f221e7ffeac60', '31.222.203.2', 1676214318, '__ci_last_regenerate|i:1676214318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef79c4a7a1ede523c782233c91d50d12312a291', '31.222.203.2', 1676214318, '__ci_last_regenerate|i:1676214318;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe72d8551e4b2dd4b6dab9db9274e56e73c76fd', '31.222.203.2', 1676214318, '__ci_last_regenerate|i:1676214318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86e16f8f286effa3dcfddeb42b05d3490ec9008', '31.222.203.2', 1676214318, '__ci_last_regenerate|i:1676214318;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb2b36382cb00c180d36f6941df3a366d5867c5', '172.105.247.100', 1676214617, '__ci_last_regenerate|i:1676214617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebcd4c2b82a6715dc5cb5f268f451867f9a5095b', '172.105.247.100', 1676214617, '__ci_last_regenerate|i:1676214617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828e3560bb0cecaf01dff69197757cff7062e09d', '172.105.247.100', 1676214617, '__ci_last_regenerate|i:1676214617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94caeb85a1fc4e1a526e8ba7e16367c9e013f293', '172.105.247.100', 1676214617, '__ci_last_regenerate|i:1676214617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe0c346eff72d00f6ce04787fc5db225c928175', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('322a96ca4f257e8f241b1781372fde977b501e21', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f822ce7f4acf11e464db338aa6d21c53046d63', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca7f93a8e781bc65526444dbddb3da95146f986', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36937df850ad958691905f1afffb3bcd20a93811', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eaea9c30f77be9c19a5f33602edd2bfe147e3c4', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8eba7f90a7be2ec7cf8be8ad291b78bef44343', '172.105.247.100', 1676214618, '__ci_last_regenerate|i:1676214618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06950fd66a435fe38426960873668e9fba10bbb', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f81df3ba77047d703ea8ffdd62d68cf75eff847', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93758e5e20e20281c50013728eb986ef6c00bb25', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35734ad43e2b3f55ae9d0f88b62bd07a5378ad99', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5d5b96d303b7651818d49efe13fd60752f8a36', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339bdaec842d2939795b406e6c02932308438d39', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8571ab02db159e391fbb96faa5ef6165a9fba89b', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d31662a0b0260be0009eaa79731534105adc66', '172.105.247.100', 1676214619, '__ci_last_regenerate|i:1676214619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90ad412e783fa0c1311b361dbffc3f38aa8efa9', '172.105.247.100', 1676214620, '__ci_last_regenerate|i:1676214620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b322d826b2a81fcf2f47bd628750644df3ecc43', '172.105.247.100', 1676214620, '__ci_last_regenerate|i:1676214620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b656ad68b426eef74afb245543ded17fa17ec6', '172.105.247.100', 1676214620, '__ci_last_regenerate|i:1676214620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57673a02f2af0459de44a08fd63666a95ae75d4', '172.105.247.100', 1676214620, '__ci_last_regenerate|i:1676214620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf57d0a1ab816c1b9f0002d25a1ae26f3dce2fb', '172.105.247.100', 1676214621, '__ci_last_regenerate|i:1676214620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145caed035efd469efbb4aab5f0d6f3e881bf825', '205.210.31.173', 1676215434, '__ci_last_regenerate|i:1676215434;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca828c0917f4b7528d5968def2a3ccdffac0320', '205.210.31.173', 1676215435, '__ci_last_regenerate|i:1676215435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d235dd9d95823d77dfe1ab05262f6510344f4e8c', '205.210.31.173', 1676215435, '__ci_last_regenerate|i:1676215435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c959004a87e537124fc0833be6a9e7c2d5698390', '31.222.203.2', 1676217752, '__ci_last_regenerate|i:1676217752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8703bb87798207c2e5a29204b6c3ae3cacacd644', '31.222.203.2', 1676217752, '__ci_last_regenerate|i:1676217752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854c32aca75c0e2e589f893fc1b8a070632f08a2', '31.222.203.2', 1676217752, '__ci_last_regenerate|i:1676217752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c689696ccd7e875c2cab34b289119992d440d2', '31.222.203.2', 1676217754, '__ci_last_regenerate|i:1676217754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4077c633597a0eda8658312abfaaa2a7e39f58', '31.222.203.2', 1676217754, '__ci_last_regenerate|i:1676217754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037e5c3bd361519d8a30574085589676794b0f3e', '31.222.203.2', 1676217754, '__ci_last_regenerate|i:1676217754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602fee6ea3fed5fd7860aebaa2600c09f77e71f4', '31.222.203.2', 1676219642, '__ci_last_regenerate|i:1676219642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4103851e14aca5915c4257d4661f17af45d349', '31.222.203.2', 1676219642, '__ci_last_regenerate|i:1676219642;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9748d17497d9fe8d16dee9ad172ab95c591d14ad', '31.222.203.2', 1676219642, '__ci_last_regenerate|i:1676219642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be5bc2e4a9fd970cb64621ea4c126d8fdad30053', '31.222.203.2', 1676219643, '__ci_last_regenerate|i:1676219643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cbe1a7f0b9544d9f0396f6bdb5c13dc6bf2bed', '31.222.203.2', 1676219643, '__ci_last_regenerate|i:1676219643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c33d955073ce6111e41eb7b1250f74840e9b6a79', '31.222.203.2', 1676219643, '__ci_last_regenerate|i:1676219643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c82e13505a035df850e8ebf8d0f7a13311ea48d', '172.105.247.100', 1676220017, '__ci_last_regenerate|i:1676220017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2019b5517081237cc189fec206499b2412cd5920', '172.105.247.100', 1676220017, '__ci_last_regenerate|i:1676220017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46bb8d50736d41466072166716199f185f896bc5', '172.105.247.100', 1676220017, '__ci_last_regenerate|i:1676220017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd8aec4601af82c625a0a856c5d99668d2de8b8', '172.105.247.100', 1676220018, '__ci_last_regenerate|i:1676220017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5369f18232f5329422ee82ac218618aa32213176', '172.105.247.100', 1676220018, '__ci_last_regenerate|i:1676220018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31629ba47dcee703775b8852b79ce30d97598a58', '172.105.247.100', 1676220018, '__ci_last_regenerate|i:1676220018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d003c6f1298e1a73bcc42386a47aaa2c967cd0a6', '172.105.247.100', 1676220018, '__ci_last_regenerate|i:1676220018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0fdc6bdb711bc908334041b7063c59fc4658c2', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8c2dc574ed3027ce8232a3e87476c35f50c53c', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17f308ab9dbe2818282f1f135504f611745fa51', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07cd2ec1861ecb26a707f8cd74a318b3d0a73c91', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b57679ffa809deb9b459487f5e7b623ba524559', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66057ce52f40517d277c7b8fba593443ae54c704', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447e59b728181ea6f7b98dd0bb89337d179a0487', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015cef12dafacfcfd97a580b78c1770d746a2195', '172.105.247.100', 1676220019, '__ci_last_regenerate|i:1676220019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523db5b56f3dacaefc56ca60e5d8f3d2c119e23c', '172.105.247.100', 1676220020, '__ci_last_regenerate|i:1676220020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('422ac8de38480c85b0c46864018b38e2f16a29bd', '172.105.247.100', 1676220020, '__ci_last_regenerate|i:1676220020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33ce1a745eb1720fd9f4796aed37d0ba56972c3', '172.105.247.100', 1676220020, '__ci_last_regenerate|i:1676220020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0feb4cfd1f900c14fe4703d28a30badc62bc63c9', '172.105.247.100', 1676220020, '__ci_last_regenerate|i:1676220020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8fd4f9a9d29e35a871d6fb559ea564790f8ed22', '172.105.247.100', 1676220020, '__ci_last_regenerate|i:1676220020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650aba63fc353e7e16ff2a338385cb7bb181c050', '172.105.247.100', 1676220021, '__ci_last_regenerate|i:1676220021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620f5bb3cdf79717fb891f88737d86c3d618b7ed', '172.105.247.100', 1676220021, '__ci_last_regenerate|i:1676220021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7600bf8b2fa5536d30d9bce79b6edaf1100dc877', '172.105.247.100', 1676220021, '__ci_last_regenerate|i:1676220021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1d3779cd34342080091351d873b4deab73b8c8', '172.105.247.100', 1676220022, '__ci_last_regenerate|i:1676220021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6582958cead81295b56342418c65f632ff7ee458', '159.89.239.57', 1676222771, '__ci_last_regenerate|i:1676222771;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ac76460ec2ac29ed70a1c05963d7a4f43430b1', '172.105.247.100', 1676225416, '__ci_last_regenerate|i:1676225416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5f19e00379d1e36c8e646fbc87ac8f9cddb368', '172.105.247.100', 1676225416, '__ci_last_regenerate|i:1676225416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1ea4dcff7417d2b620c99d93c9a4c1e4760d0c', '172.105.247.100', 1676225417, '__ci_last_regenerate|i:1676225417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c675dc592d75cb4fac2ffa08f42466dc476af3a', '172.105.247.100', 1676225417, '__ci_last_regenerate|i:1676225417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ef5ff110854616b6b040e46510118d681c42c9', '172.105.247.100', 1676225417, '__ci_last_regenerate|i:1676225417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e65ec6f2900eddb1e245c38c11f803dbcab6b61', '172.105.247.100', 1676225417, '__ci_last_regenerate|i:1676225417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b10a2f2f86c046f4d11c2caf92bd23fa40ae66eb', '172.105.247.100', 1676225418, '__ci_last_regenerate|i:1676225418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423ba321fba99bd15c6e12da561108145305576c', '172.105.247.100', 1676225418, '__ci_last_regenerate|i:1676225418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d31b3551cfc6c7e7a7625c1eb77855595fab86', '172.105.247.100', 1676225418, '__ci_last_regenerate|i:1676225418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3ab1245f538308fbc3f330f0b67b7cbc40eee89', '172.105.247.100', 1676225418, '__ci_last_regenerate|i:1676225418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a4f9f7a8414585a7c5dca21e98e6388d94f7e9', '172.105.247.100', 1676225418, '__ci_last_regenerate|i:1676225418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22756d0d59f20db51d1382ebcc14206101cbcfe', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d994ef0ab975025d0d832f1bc2bccc0c903058b', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c90a7cbf46fe2b3266285bb999d9b144945cc1', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e3e71850124ec157a31c5070540ec9be0fdfd7', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27099c2de7ca39dd617085765e6fe5fc4695338', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('392863b6b97cd1ae47a1e950b89d91a1b6c3ce75', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f287e22ecbe5307c3e9fc65a756e217047e37c', '172.105.247.100', 1676225419, '__ci_last_regenerate|i:1676225419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0fac77db6daf876a9c8302e43bae4c0b238b718', '172.105.247.100', 1676225420, '__ci_last_regenerate|i:1676225420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612995c4ceae2ae2f2fb804835fde4210cfe8c0b', '172.105.247.100', 1676225420, '__ci_last_regenerate|i:1676225420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a00ee39ab7bb9145835e59e3ec1c31bf2fb81f', '172.105.247.100', 1676225420, '__ci_last_regenerate|i:1676225420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4733750df10c065f720a96e13b300adb1265357', '172.105.247.100', 1676225421, '__ci_last_regenerate|i:1676225420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcba8c8f31bf6ca2524c8f24045bdb0a283aeb63', '172.105.247.100', 1676225421, '__ci_last_regenerate|i:1676225421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb0a3a35d9c3ab09ffb1e530373860eefda1bd8', '172.105.247.100', 1676225421, '__ci_last_regenerate|i:1676225421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25825ca2d50039441661996169f2d2a97294a966', '31.222.203.2', 1676226743, '__ci_last_regenerate|i:1676226743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714ea88afd138a3f0541f959a492474a4a1e18de', '31.222.203.2', 1676226743, '__ci_last_regenerate|i:1676226743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1adecc3b26c4f6b2cd8e100f3f8cf6a1797b6c01', '31.222.203.2', 1676226743, '__ci_last_regenerate|i:1676226743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3201da65cdbc1c98757cb4b1d89ae49d7cd582e', '31.222.203.2', 1676226745, '__ci_last_regenerate|i:1676226745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5f00af03e2bc9d76e0cbc48d13d51e7ae8d6079', '31.222.203.2', 1676226745, '__ci_last_regenerate|i:1676226745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c029a2217573bda5d8a32ab43f927c9efbb33a02', '31.222.203.2', 1676226745, '__ci_last_regenerate|i:1676226745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d033fb4866e92c8a5923014587019ea8cc5880', '31.222.203.2', 1676228637, '__ci_last_regenerate|i:1676228637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12287aed2671e921091dcb6f7462fe6f98ff580d', '31.222.203.2', 1676228639, '__ci_last_regenerate|i:1676228639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeee73191e7a2e0fc1eb2a69a38ebabf67c235bf', '31.222.203.2', 1676228639, '__ci_last_regenerate|i:1676228639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3789b4521754df5e8a58e347532675d739ce7d9', '31.222.203.2', 1676228639, '__ci_last_regenerate|i:1676228639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afcc928baff4d0765102d5abe6bd75b76999987a', '31.222.203.2', 1676228639, '__ci_last_regenerate|i:1676228639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4debee6e4284bb7c81a28ed3f6e7f157171d12b', '31.222.203.2', 1676228639, '__ci_last_regenerate|i:1676228639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8335e91a6f7762c61ae9de961ad95c852d7761ce', '172.105.247.100', 1676230818, '__ci_last_regenerate|i:1676230818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec6475993b25e2742ccca5f5c237b3ce16fb3fce', '172.105.247.100', 1676230818, '__ci_last_regenerate|i:1676230818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2d7550d9027c374b791f54a64a69a46b6c081c', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739c088424758822d43c9977fb4b4a0521a1c1d5', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ad8e97986d4be36df5821927b4d9440f264789', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4010cb85bc6cbadc7ea7bad269c9f508b86454dc', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a149f5272941d8eccdd8e5bad63f1562f3ad0c09', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b08caf2c47046c704761d561aeaa7c3b64b5e8', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('643667f1211d2e7381f9aaf17bf43798877861a3', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c88c99373c433c299abc1f17c145f853fa7b4d3', '172.105.247.100', 1676230821, '__ci_last_regenerate|i:1676230821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7efab84fc78ec38c4dbb0b17be27a1e126b04e2', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25db3de8207522ba8dba56466d1a29e9bb9f0cf8', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822f99f74c24a62f3a12286ef259062022ce72f2', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c3477612517ad130d2eeb423c62b53e7fda57f', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad4b8ac05102b4d0ee351e76706e86bb2a18094', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49229d6feef56e67ed21c3de19bad9cb8fabfa9', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f7fb4c83d58208f1997258c8855d213f01424b', '172.105.247.100', 1676230822, '__ci_last_regenerate|i:1676230822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2eee097c458c063c34eb82dff0376e3d23eafa', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2323edbc074b87bf00bcac741dd27152b44db20c', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5831ed52175abb3c6a9218ef9cf9ea2db582d9b', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6624df28f4705a0a41c305566613232e27695d1d', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1522577e45720444b802b933f7716ec9dea1af', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1462b84f4207fb0e064199bea2afdd975f4debe5', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ad22834c4702c4396b460bc871de92a077cb7b', '172.105.247.100', 1676230823, '__ci_last_regenerate|i:1676230823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feac0b48ccad609a52cb3091cae83bd63cfafe7f', '31.222.203.2', 1676233947, '__ci_last_regenerate|i:1676233947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dcd96dced1ca78428d02acec45eac81d390c29b', '31.222.203.2', 1676233947, '__ci_last_regenerate|i:1676233947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1894225996d1cac91e1792b908cffb5aeb6c3c5d', '31.222.203.2', 1676233947, '__ci_last_regenerate|i:1676233947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26097c42461597af1597c8785a0c0f5ce1545dc5', '31.222.203.2', 1676233947, '__ci_last_regenerate|i:1676233947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6f37327bf222139ea6b4d9a64ebf7ccc3685c2', '31.222.203.2', 1676233947, '__ci_last_regenerate|i:1676233947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d36bfc761a0727dc93c1e8ac2196d5eadfc79f', '31.222.203.2', 1676233947, '__ci_last_regenerate|i:1676233947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ed3044a41e3ca69c84a1387bb8cb7cfca41ccf', '31.222.203.2', 1676235902, '__ci_last_regenerate|i:1676235902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6b761a8a90e51d9bc39ffcb7046d52733bfd4e', '31.222.203.2', 1676235904, '__ci_last_regenerate|i:1676235904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2d747218e0ade113ab78106ac2ad2993d21a61', '31.222.203.2', 1676235904, '__ci_last_regenerate|i:1676235904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ac0b0a81240769e13d005d41420346f46c5e1d2', '31.222.203.2', 1676235904, '__ci_last_regenerate|i:1676235904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91090e248b8d8548eee36d9b6271e2134686d122', '31.222.203.2', 1676235904, '__ci_last_regenerate|i:1676235904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a13501a0c866f5e4a94d82387740fabe9086d2e', '31.222.203.2', 1676235904, '__ci_last_regenerate|i:1676235904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd91486724d41950bab0581860607038299863b1', '172.105.247.100', 1676236215, '__ci_last_regenerate|i:1676236215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca5627727b9656c9927396eda6e7f69161f1184', '172.105.247.100', 1676236216, '__ci_last_regenerate|i:1676236216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dcfd37ac7d6fcfdcf80e0068b04eafac6760d66', '172.105.247.100', 1676236216, '__ci_last_regenerate|i:1676236216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73997755305afc6e37985e3b7ee79d17d061479', '172.105.247.100', 1676236216, '__ci_last_regenerate|i:1676236216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d3a7892c4aa42fcf338a5f46237194609f7218', '172.105.247.100', 1676236216, '__ci_last_regenerate|i:1676236216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a051a16f5ab382ec172feb1eb2815e26a77fe0', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023107047f9965ca904df323db8f3b4dfab0c777', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('363083038140a6ac7b444dbeb3ac6442bdd3d83e', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2b07cb11d5bd9ed1c65e98f500accdbfde726c', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f84c0605c2e0d517a19f0c65ee2afbb432ef68', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79f6e70e223a98c9b266f590b2536fe2b976638', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d0d919721bb27aa5d74f898756f6c880b97574', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e606040a6f28400bc9273bad4bbb2f800e4f15ac', '172.105.247.100', 1676236217, '__ci_last_regenerate|i:1676236217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe0516db01d551d6736a46767d0d06bbc32d3df', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b93cb6e8b5296444ffdbe5cc98eeb191e2105dd', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e213bbe07dedf3506a1ed3de94f97c23a0fdff', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068f79837aee0cc5043b3afcbe32764f2b4969fc', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7334351c4e7fa8dc19d3bccb81e47aa993c646', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb56883adb3a7d2afa0e479c0070a38d2247901', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbf64db19a00a9a91c1c8a8de85fd88f6ca975d', '172.105.247.100', 1676236218, '__ci_last_regenerate|i:1676236218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a48817bf23e1e350b1842f6a25a683d36234e7d', '172.105.247.100', 1676236219, '__ci_last_regenerate|i:1676236218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('226efca57e6b3527cffbc9c6ed79ebc8adbbab27', '172.105.247.100', 1676236219, '__ci_last_regenerate|i:1676236219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252ecaebbdc69aab484011702b444837936f1f7d', '172.105.247.100', 1676236219, '__ci_last_regenerate|i:1676236219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1101192d774244e5d6f47c9511138ed8849c4e90', '172.105.247.100', 1676236219, '__ci_last_regenerate|i:1676236219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f9a2160a1c21a26c66238e948f2a7b527d6967', '47.254.16.187', 1676238941, '__ci_last_regenerate|i:1676238941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b881b9808b53786d77d2d7ca419f73a5d74f176a', '47.88.94.161', 1676238943, '__ci_last_regenerate|i:1676238943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73baaddc09bc42e516f3e29c4496a8f716a60a37', '47.89.193.162', 1676238944, '__ci_last_regenerate|i:1676238944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34eba5a82289dd609182d30ddbd7d187cab230b9', '47.88.6.178', 1676238944, '__ci_last_regenerate|i:1676238944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb49d0f7beb08a37c2e89f17bc11e08277aa164', '47.88.94.161', 1676238944, '__ci_last_regenerate|i:1676238944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db4973bd0dfb99d762bcb8716283c0104a854bf', '47.251.13.32', 1676238946, '__ci_last_regenerate|i:1676238946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f44865e73674953dff900ef123e0b7a82101fc', '47.254.76.138', 1676238947, '__ci_last_regenerate|i:1676238947;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93da7ad5b3a5a6fb5464e6d6b1fccc17da2d57fd', '47.254.85.182', 1676238948, '__ci_last_regenerate|i:1676238948;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8386688d33def0b1f01dba4d72df24a16c306b', '47.88.94.28', 1676238948, '__ci_last_regenerate|i:1676238948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7f58b0ad41026c34fc73dd20b769b36d6ed55f', '47.88.94.161', 1676238948, '__ci_last_regenerate|i:1676238948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d512418f67793001ed758cf1f9523776b5372c43', '47.88.86.63', 1676238948, '__ci_last_regenerate|i:1676238948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efe134eaff343536ac250372b0f4d43623b6780e', '47.88.94.28', 1676238948, '__ci_last_regenerate|i:1676238948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975de5cb2fd6658f9715bf699d4321e3eb45ef37', '47.88.90.156', 1676238948, '__ci_last_regenerate|i:1676238948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ae87a4d1e6ba933b88a2b7f78ad42bd1dfa761', '47.88.93.234', 1676238949, '__ci_last_regenerate|i:1676238949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab1d77755406de946fcf1f864f047d6ce49cebc', '47.88.94.28', 1676238950, '__ci_last_regenerate|i:1676238950;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f983942f34801fd80ef7d72706e3e5f949a2ea5', '47.254.74.59', 1676238951, '__ci_last_regenerate|i:1676238951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef07fb3c74320c79e742f9ed5ac7a8969f422a9', '47.88.86.63', 1676238951, '__ci_last_regenerate|i:1676238951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a5e471c80d5a24c93e52c20540e9c35610fb04', '47.88.5.56', 1676238951, '__ci_last_regenerate|i:1676238951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a82f583844a347a8b074cc786dbb770f6583b1b', '172.105.247.100', 1676241016, '__ci_last_regenerate|i:1676241016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a415bd092572f65cbe75ad6bf9e2b10532249e0', '172.105.247.100', 1676241016, '__ci_last_regenerate|i:1676241016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eb235c543e8bd5e7f6db8b3ee7ede2bb370fea2', '172.105.247.100', 1676241017, '__ci_last_regenerate|i:1676241017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf06745ca666cfbf5470800493ca035f41e4a78', '172.105.247.100', 1676241017, '__ci_last_regenerate|i:1676241017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e235b85c2ee11f54fcfbd9c9a9fec60d207a985', '172.105.247.100', 1676241018, '__ci_last_regenerate|i:1676241018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821bd84c797b20ac304bb352701711dd500de40a', '172.105.247.100', 1676241018, '__ci_last_regenerate|i:1676241018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ecc250eb960c70412dec66e548bb70d9a76432', '172.105.247.100', 1676241018, '__ci_last_regenerate|i:1676241018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab0887abe57248b6143aec56b99f5137e60072e', '172.105.247.100', 1676241018, '__ci_last_regenerate|i:1676241018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c44db6d328454af3123b7851d5842275bf72f64', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a86f45d7319141a4b88f5ff6d3fe05e3db7c28f1', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b889456695ee865ed9034ef667a5360a7c9744c', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201d0854319ef5a13de37c564d5b3929dd4e149c', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e348909aa986535bf17896af483e656774336681', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2706a9569bb905e8e02f4989077f36d84883bcc0', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf4549746274154a2c798799e6ab4cb97e5f6543', '172.105.247.100', 1676241019, '__ci_last_regenerate|i:1676241019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90b70c83ffd9959c18b3bf934f33525c6fa79cd', '172.105.247.100', 1676241020, '__ci_last_regenerate|i:1676241020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef71a1d24dfbabaa77ca976be653d6176bf45a2d', '172.105.247.100', 1676241020, '__ci_last_regenerate|i:1676241020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c4023d6b4e996569e949b39185b56642294578', '172.105.247.100', 1676241020, '__ci_last_regenerate|i:1676241020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30940993e0605abe2193ee55019ed728209e979d', '172.105.247.100', 1676241020, '__ci_last_regenerate|i:1676241020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ea077bf4513c7eb70dd35acd6c52daab9f56b01', '172.105.247.100', 1676241020, '__ci_last_regenerate|i:1676241020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d8257eaf2de4b49ad8a8d7b9baf78059565e00', '172.105.247.100', 1676241020, '__ci_last_regenerate|i:1676241020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b272ced14a9d7d9aaa519bed13eaa310c85ca122', '172.105.247.100', 1676241021, '__ci_last_regenerate|i:1676241021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee836005540ef174ee677c5f5367a44ce417553e', '172.105.247.100', 1676241021, '__ci_last_regenerate|i:1676241021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2db36dc698005944ff00015b7e4699d4c05e275', '172.105.247.100', 1676241021, '__ci_last_regenerate|i:1676241021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e4d0441202b77ab8b0b8b0986f83906c264a2c', '31.222.203.2', 1676242953, '__ci_last_regenerate|i:1676242953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1092a7bcefebe28a808d93abecf0b90b90275774', '31.222.203.2', 1676242953, '__ci_last_regenerate|i:1676242953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be2e9694f43c1836a56017739d9468ef91627ce', '31.222.203.2', 1676242953, '__ci_last_regenerate|i:1676242953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f97dd22dd6f6b1d322faba0bcdef849c941317a', '31.222.203.2', 1676242955, '__ci_last_regenerate|i:1676242955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb4105c38c23fdb9c4862f5ab90c01d7b24d5b0', '31.222.203.2', 1676242955, '__ci_last_regenerate|i:1676242955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fbc5347b78768eb585939e65a88d3d1fb99751c', '31.222.203.2', 1676242955, '__ci_last_regenerate|i:1676242955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97de9d1415f96eec3f1bfa0dc1a9cbda1b49c50', '31.222.203.2', 1676244895, '__ci_last_regenerate|i:1676244895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5559b29442371746352ba5658b536999afb1510c', '31.222.203.2', 1676244895, '__ci_last_regenerate|i:1676244895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa13cef87375175fe4d636726bf4a73a71d707ba', '31.222.203.2', 1676244895, '__ci_last_regenerate|i:1676244895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e5f304def7eaf7ab6f85d68f2319a930864423', '31.222.203.2', 1676244895, '__ci_last_regenerate|i:1676244895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1d3def4691c885f264b5c4979b9c4c05ac03a5', '31.222.203.2', 1676244895, '__ci_last_regenerate|i:1676244895;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c6cb17fb53ffbc106233d1c25b199641d6a093', '31.222.203.2', 1676244895, '__ci_last_regenerate|i:1676244895;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149d926910226c5b559136a92a54136240e74ae0', '172.105.247.100', 1676246421, '__ci_last_regenerate|i:1676246421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('089b679bafe4fdf0954c0b21ec3f1313b2df5ac2', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5abe08665270609ce16f2da55e50d567231e17', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050ba3874f167ea6f91e286d60af01da435dbcc3', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b57cfca03d656887e29a55af1f1bae44f0f68c1', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23411e0ac64a7dbc68199ab62038209035951ec2', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e573acb7dd2f107bd08729440c65e827d3f0ef', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223f1c85582880a286f239985a45dec87c76bd99', '172.105.247.100', 1676246422, '__ci_last_regenerate|i:1676246422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3392d5415cc801d76f981a0af5979c5e5e03c166', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3310265d73b5fc280f341b668971a1a15bdc7de9', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3eb858d85fc038225cd7c28e5bcab0de900908', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce1f3e1d68a207d63f7dfbeef2b79b4f873f43e', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cedb5a6ea449e24699caf9ce19dbc8879c2a0fe', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f36922f6ad9986234e0391ac8b37193fcb99463', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e70e286ede540f614b715b1331c79d5660cb45cc', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39af8ac4acb93f708feadb5356788d02fccac0fb', '172.105.247.100', 1676246423, '__ci_last_regenerate|i:1676246423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8d55f3d8bc619a4bb1db64244c898fb66afe6f', '172.105.247.100', 1676246424, '__ci_last_regenerate|i:1676246424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52289cec8139c13391f8b10b9da853f7aa930779', '172.105.247.100', 1676246424, '__ci_last_regenerate|i:1676246424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa8e62623cb8e88a3b1c1ed0d23826dba2105b8e', '172.105.247.100', 1676246424, '__ci_last_regenerate|i:1676246424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e0c92d90c8c6ab454168722aac59405cdabc40', '172.105.247.100', 1676246424, '__ci_last_regenerate|i:1676246424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf78c4c4dbeba03e95b5ca5d327814994af3d52', '172.105.247.100', 1676246424, '__ci_last_regenerate|i:1676246424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b13cbbbf0ec2351e0439c7fc2cf3522ab21db4', '172.105.247.100', 1676246424, '__ci_last_regenerate|i:1676246424;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9637ccd93f415a5fabf6b49b970c19d707e4ddb', '172.105.247.100', 1676246425, '__ci_last_regenerate|i:1676246424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e23928c2a73c7f11d6f55af3adb36b2b6b962d', '172.105.247.100', 1676246425, '__ci_last_regenerate|i:1676246424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b0eabb79a10d0cdaeea78069df5b596ef7370fe', '172.105.247.100', 1676251817, '__ci_last_regenerate|i:1676251817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9c080091518c85daa805a75aed34b1d87beb27', '172.105.247.100', 1676251818, '__ci_last_regenerate|i:1676251818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39758dff6dc0a2d8ffed1d722a847d5b56b44af9', '172.105.247.100', 1676251818, '__ci_last_regenerate|i:1676251818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8e04812a20abad181890dcbe5e9070610fd156', '172.105.247.100', 1676251818, '__ci_last_regenerate|i:1676251818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb75ce774b857c2a2d3eec4a746981bd7dda0ee', '172.105.247.100', 1676251818, '__ci_last_regenerate|i:1676251818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34f77c3fe13e7447b399e9a640801c6ad7ee45f', '172.105.247.100', 1676251818, '__ci_last_regenerate|i:1676251818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aafe71465e74296dcbb15c66b81a7b787931a99', '172.105.247.100', 1676251818, '__ci_last_regenerate|i:1676251818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c45d5e268d6e0abac4940f9d3daa392d8546e42', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdaaf2f9efc8d56e35c55df0945f6d846e957985', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aedf9bb8e8790205010f99727b8ad13593d90b8', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c75557e014cf613c48664db2ec4db7e3cb27c73', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2754a3c183a4d071a31ef661d72380e25808453', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19cf8d11d59518774f4ec5ec01f1b3ea57f17dc8', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abfb418c3c183cee8dc816b399c905f77113bf27', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec90887ad676f81f763dc539a749ed6aa27c368a', '172.105.247.100', 1676251819, '__ci_last_regenerate|i:1676251819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83cd684df610bee5f63edc2e5c2010b4a8950fc', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08bc229fd98184200992ffcee697343a124b0eff', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e598ae319bdba1e25b70b286c897691c424cbad', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e0f29a09c2fe345c869f24e90e37d490b0f326', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeaf028d63246987d62af2161037c60edc8dcde8', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64165e5d800c998576b9541c0e0e00a220b6c17', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb5157fa56346728c404dcc7d9d9367f8658cf9', '172.105.247.100', 1676251821, '__ci_last_regenerate|i:1676251820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cee8d3f998d6c48fb1b82be513971c86991e252', '172.105.247.100', 1676251820, '__ci_last_regenerate|i:1676251820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2504e86d19f483074412da2dd2b271bfe473d2c', '172.105.247.100', 1676251821, '__ci_last_regenerate|i:1676251821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c906b796fcfe9ffd92fbb5334a6728fead39188', '31.222.203.2', 1676251946, '__ci_last_regenerate|i:1676251946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8076d096d4a70e682fa6605ddf02d5599350dbf5', '31.222.203.2', 1676251948, '__ci_last_regenerate|i:1676251948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcefdbf462898b784fa87263a4eb669bda735a08', '31.222.203.2', 1676251948, '__ci_last_regenerate|i:1676251948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5ab706168ede8b1d75d5ed7389737fdd46728d7', '31.222.203.2', 1676251948, '__ci_last_regenerate|i:1676251948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005f41c5b19bfbd0023886e1f63251bb37121718', '31.222.203.2', 1676251948, '__ci_last_regenerate|i:1676251948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7328970bf4c574d2ffa4d35ab04b5608ade22305', '31.222.203.2', 1676251948, '__ci_last_regenerate|i:1676251948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b248aecb39f66a2fbb126b3e990a9241cbc193b6', '31.222.203.2', 1676253834, '__ci_last_regenerate|i:1676253834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b7d4e0e582b601e124ec44e821defc18bb21439', '31.222.203.2', 1676253834, '__ci_last_regenerate|i:1676253834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c028cb0ef4ce294d7e4552e4cc896bf72523c9ad', '31.222.203.2', 1676253834, '__ci_last_regenerate|i:1676253834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31e1b273f303c8be38e004aaa23db67a1ad3f94', '31.222.203.2', 1676253834, '__ci_last_regenerate|i:1676253834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d2f33ea4a560163441b28b6cf77f590022016d', '31.222.203.2', 1676253834, '__ci_last_regenerate|i:1676253834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebdcdee5b14750c1e21bda5ab9c63417416b3ad8', '31.222.203.2', 1676253834, '__ci_last_regenerate|i:1676253834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1423e33534faa91ee2f1c573a881134da08ad71', '31.222.203.2', 1676255697, '__ci_last_regenerate|i:1676255697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70344e437172ab9b2130bd6a7a73fc1ffdeb9fbc', '31.222.203.2', 1676255697, '__ci_last_regenerate|i:1676255697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a8010c59c1471089a25b89165a2e1303c5f4b0', '31.222.203.2', 1676255697, '__ci_last_regenerate|i:1676255697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb325072bcf3c8cd6a2b959880129c4d8508b78e', '31.222.203.2', 1676255697, '__ci_last_regenerate|i:1676255697;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33f5ce3de39c60810c80dbe8a791654f40b91ea3', '31.222.203.2', 1676255697, '__ci_last_regenerate|i:1676255697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45090069dda30d8dc859b9bfd0bfcea384c303ea', '31.222.203.2', 1676255697, '__ci_last_regenerate|i:1676255697;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41980eff5da20b22451689c7df4461bc3620c49', '208.109.39.235', 1676257132, '__ci_last_regenerate|i:1676257132;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e546d6d03fa41c6abf1dab9723c451f170506520', '208.109.39.235', 1676257133, '__ci_last_regenerate|i:1676257133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d20b4a59cc5f0a0bbc8ae3e6be2eac154b42d1', '208.109.39.235', 1676257133, '__ci_last_regenerate|i:1676257133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daac3914edb9ff7c9ec3c30091dba5b6770c1b59', '208.109.39.235', 1676257133, '__ci_last_regenerate|i:1676257133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c606c70c1831e5b582161e9863cf968e0a489b', '172.105.247.100', 1676257217, '__ci_last_regenerate|i:1676257217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c62adbfbfb6dbe91edba49ffa8ba8da588f737', '172.105.247.100', 1676257220, '__ci_last_regenerate|i:1676257220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b74d56a7dbc3a6e504a5ab0762e4af5e313dcc6', '172.105.247.100', 1676257220, '__ci_last_regenerate|i:1676257220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716deca7863546c380dfab87ebeded019769561a', '172.105.247.100', 1676257220, '__ci_last_regenerate|i:1676257220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53efa76a3914bd1978fc6171807c112c5430ad88', '172.105.247.100', 1676257220, '__ci_last_regenerate|i:1676257220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b936b410002421c077063461c635521d6540eab7', '172.105.247.100', 1676257220, '__ci_last_regenerate|i:1676257220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1841bd80fd4f118acb571ac697e09e8f794914f6', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db8f74084902671b3d03a75375d6cf5fa43d397', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af35f84f1ba480b352e9cf8322f3991d2da793c4', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14def64a1cda19c56e93908996d7e67e7eef3644', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81316c2f6e9e9c6b4f2f37a9203d941615cdc0ea', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ec9d27f89167d186f904769c7e80adc1b7df8a', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48677243017009b57d7dc1557157a6ed676894ad', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5442b3f9dc82d984bbe40c07ec424579f88ebb7', '172.105.247.100', 1676257221, '__ci_last_regenerate|i:1676257221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858a785d63b1de2e5b094a95f0b3cea1fa458eba', '172.105.247.100', 1676257222, '__ci_last_regenerate|i:1676257222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f3de9c687c3eb0bb9177117e60d485fb747a3b', '172.105.247.100', 1676257222, '__ci_last_regenerate|i:1676257222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4e1b5dcb708bb111e4a77a439c60a7f006167b', '172.105.247.100', 1676257222, '__ci_last_regenerate|i:1676257222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6e29bbc6b3c9ce5a44557962511e9f09fa7e4b7', '172.105.247.100', 1676257222, '__ci_last_regenerate|i:1676257222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e81f187dc1d335dec0d376dafef165054f6aa8', '172.105.247.100', 1676257222, '__ci_last_regenerate|i:1676257222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c15466d187a06a854c335d055775bd121d460e', '172.105.247.100', 1676257222, '__ci_last_regenerate|i:1676257222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f3b950164178f8b651c4aefb8298d6ccf48175', '172.105.247.100', 1676257223, '__ci_last_regenerate|i:1676257223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4867a23c33a226d642696a2b2b736f19bb63849', '172.105.247.100', 1676257223, '__ci_last_regenerate|i:1676257223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbf72bb0693ce6a86405b3c5503b9b820082fb8', '172.105.247.100', 1676257223, '__ci_last_regenerate|i:1676257223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a6e70efbbae5b8673c98ac4707053d9e41f93e', '172.105.247.100', 1676257223, '__ci_last_regenerate|i:1676257223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d352437948a0410b3fabfb2cdd8723b43171b6b1', '31.222.203.2', 1676260947, '__ci_last_regenerate|i:1676260947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d670c923f0a2a014f6a949a1592f350e8da1189', '31.222.203.2', 1676260947, '__ci_last_regenerate|i:1676260947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829c2acddb61156190718aaeedea405876ee0d35', '31.222.203.2', 1676260947, '__ci_last_regenerate|i:1676260947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0917f92387aae63b1f1df6d2f0e223e4a52880e7', '31.222.203.2', 1676260948, '__ci_last_regenerate|i:1676260948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2102209f86548789c74f919452b47b927bf537e1', '31.222.203.2', 1676260948, '__ci_last_regenerate|i:1676260948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b01fe3b4b3a530b4fd176dcbcc1cd54dabf3ce', '31.222.203.2', 1676260948, '__ci_last_regenerate|i:1676260948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae91dd74b55d8259b87982c5bc36c582e6b202b', '172.105.247.100', 1676262617, '__ci_last_regenerate|i:1676262617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f8241b16e35884768a157192a3407de440b417', '172.105.247.100', 1676262618, '__ci_last_regenerate|i:1676262617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a05fa4d83105a85560425f96a2c9331535a2ec', '172.105.247.100', 1676262618, '__ci_last_regenerate|i:1676262618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beca2627b02328f09d68acd357e64d296174eb30', '172.105.247.100', 1676262618, '__ci_last_regenerate|i:1676262618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd2c0e0f6d8bb8c3ab383d8dc92eb3d1ea0cfb1', '172.105.247.100', 1676262618, '__ci_last_regenerate|i:1676262618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0be33e1ed41f6c1111d01f24317db654352defc', '172.105.247.100', 1676262619, '__ci_last_regenerate|i:1676262618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab027f533bf1eb94585418de4e06ce5d1605779', '172.105.247.100', 1676262619, '__ci_last_regenerate|i:1676262619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27983ffefe26c31689d2c908233187c62038f163', '172.105.247.100', 1676262619, '__ci_last_regenerate|i:1676262619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a74bbe072e5e7168f9501a93d187c0d73e35640', '172.105.247.100', 1676262619, '__ci_last_regenerate|i:1676262619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b361398c39c53ca70687b2bfa7d4b2c6357f16dc', '172.105.247.100', 1676262619, '__ci_last_regenerate|i:1676262619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('addf324a41a1adff06fb441201d65b04259ea29e', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f054edfa2b26ee90f2149022532ade8ebfa9b9fa', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0e278cf54f17fe55827ba8ee9b501a12a0f77d3', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80810b3505b7059c09175fc187782277d7fded59', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fefbf0b5fc07db44e27e1f0eb4432bc1ab0a301', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb7948a12a42f560fb3142b79274f6aaba8d8a9', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85e40b678680b6ec85b50a3866d4440fbeb57d19', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a188c537d3dfadcbf6d76d884632f35db910926b', '172.105.247.100', 1676262620, '__ci_last_regenerate|i:1676262620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18aaf5def87dbb664fab8952711a820e2c02011', '172.105.247.100', 1676262621, '__ci_last_regenerate|i:1676262621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b5fd634199be6cbc9782f4fe177201919cac4e', '172.105.247.100', 1676262621, '__ci_last_regenerate|i:1676262621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c190674a74310b90ad1548ec8e2e0f7b12a3218b', '172.105.247.100', 1676262621, '__ci_last_regenerate|i:1676262621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923d32465af28f7c8936aadf5c9ead1633df0dc5', '172.105.247.100', 1676262622, '__ci_last_regenerate|i:1676262621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af566bbc712e7cd64f67d64f0fd2d2328606f12', '172.105.247.100', 1676262622, '__ci_last_regenerate|i:1676262622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42c6c76573597aae3c411eefe3e50b5464e149d', '172.105.247.100', 1676262622, '__ci_last_regenerate|i:1676262622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('510b4dc985ce2a7f9634ccb51ef74f88270503f9', '31.222.203.2', 1676262835, '__ci_last_regenerate|i:1676262835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8aef1721148e290d39b56166cb8f5afc31e11e8', '31.222.203.2', 1676262835, '__ci_last_regenerate|i:1676262835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964b223346fc8fddb3f261ed2680848169d6084f', '31.222.203.2', 1676262835, '__ci_last_regenerate|i:1676262835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd2fbfe66d9f3ba5c906b989bdbc057237d8446', '31.222.203.2', 1676262837, '__ci_last_regenerate|i:1676262837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07a7d6c37b68220557c46992fdcf5fb522f81c3', '31.222.203.2', 1676262837, '__ci_last_regenerate|i:1676262837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf61d5b07560b54d2ab657225f712399d83a91eb', '31.222.203.2', 1676262837, '__ci_last_regenerate|i:1676262837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa3eada2d96bb09bc294e5f8e2e83e6aaef1b29', '31.222.203.2', 1676264695, '__ci_last_regenerate|i:1676264695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c833506268e307fa3d092bc87143cbdd28786f64', '31.222.203.2', 1676264695, '__ci_last_regenerate|i:1676264695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65054fc7851253bb0db98593c7b9bdd6e4c0efb4', '31.222.203.2', 1676264695, '__ci_last_regenerate|i:1676264695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb10d97c043eda56fbc4a47223e11ecfe01f8b41', '31.222.203.2', 1676264695, '__ci_last_regenerate|i:1676264695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8408f59a8a9947c0ee9069a108839bf8d4674186', '31.222.203.2', 1676264695, '__ci_last_regenerate|i:1676264695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345333d75c73085bf2e3ec22c9d7f673c0142454', '31.222.203.2', 1676264695, '__ci_last_regenerate|i:1676264695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af7737660ab6936119ca6df91a600b85bf77e7f', '45.120.39.89', 1676268390, '__ci_last_regenerate|i:1676268390;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676266452;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ff5cad53866488641eea0ae33ed49f7308e796', '116.204.230.21', 1676267694, '__ci_last_regenerate|i:1676267694;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d9ccd840a8c0b7734b74206566f99049a59904', '116.204.230.21', 1676268146, '__ci_last_regenerate|i:1676268146;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5439c77706690131be9454394f15698e9a40230', '172.105.247.100', 1676268019, '__ci_last_regenerate|i:1676268019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421e93d7f9a052d68f51b69f5899941793fa492f', '172.105.247.100', 1676268021, '__ci_last_regenerate|i:1676268021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2adc5834ed3ce74595242e21b631c578903cc31c', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74dab63b403c156abb4d8ab3f1e2accf9052b770', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6717a82a95a42e028f06501c4329d497f07929da', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae3dd5ea9f2c04a6c0281ca7b58885f214243be', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba15a22abf574e89ab40a50bb46fb0d1822c57a', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50dc0e09096f0e3a69302bf0a4fa2db71de96a73', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8bbc5f1e0e4eb9c2176675caba607680c8fa30', '172.105.247.100', 1676268022, '__ci_last_regenerate|i:1676268022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f011955dbeae14b662c329d798ae65cb10b779a3', '172.105.247.100', 1676268023, '__ci_last_regenerate|i:1676268023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6217e37572573b8b8e6a3a1ad82325e728d080c', '172.105.247.100', 1676268023, '__ci_last_regenerate|i:1676268023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530001c7b6d11c098672d65844e965fd8d890244', '172.105.247.100', 1676268023, '__ci_last_regenerate|i:1676268023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04da3b5bff29d917f755a25f20a4537fb84f2fbc', '172.105.247.100', 1676268023, '__ci_last_regenerate|i:1676268023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c511c30c204763cf6fcc26610ea084a2ed07dd39', '172.105.247.100', 1676268023, '__ci_last_regenerate|i:1676268023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc566958987a1dc2ff5c66fe1a27af4a5fdd2818', '172.105.247.100', 1676268023, '__ci_last_regenerate|i:1676268023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819c57214995572571c4a1e4381bb6f29e72cef6', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902844c57d65705a93ce01c4d1eeec251a4f2b04', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b668e73b9ef7d72836ea38f11939c68028fc46', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b7299c71d6cc41eff73ecd52f23eef953517e0', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c877c5f567251ad2be65848c3cf34ef9b44cf594', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208dfc5d309dce6e0738c914b9af543f349f0685', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ef6bce7b3bc6612c3d5730e044384567c14601', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407d4d404d9fb36d4def107738a09981b798b223', '172.105.247.100', 1676268024, '__ci_last_regenerate|i:1676268024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779df0926f7bf77f21e8925986cfec6d1ba23889', '172.105.247.100', 1676268025, '__ci_last_regenerate|i:1676268025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e0710cd85121b3fefa12d5f55dd180150b8c089', '116.204.230.21', 1676268490, '__ci_last_regenerate|i:1676268490;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783ab0a0d04079805c722165d432204bcd6808c0', '45.120.39.89', 1676270208, '__ci_last_regenerate|i:1676270208;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676268559;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5397768afc949422afe4960c02ba2b4e97eb0b35', '116.204.230.21', 1676268811, '__ci_last_regenerate|i:1676268811;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe69d59c5a73559be13fe14bd389cf9018be8827', '116.204.230.21', 1676269159, '__ci_last_regenerate|i:1676269159;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a262a42799cfa799e204f9fccb3868b8b115fcb', '116.204.230.21', 1676269556, '__ci_last_regenerate|i:1676269556;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d61ca699e38f3c6205ed4dca7e929630b4a73089', '116.204.230.21', 1676269970, '__ci_last_regenerate|i:1676269970;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f002c647968f68a4f60c99b0163e121b67adb514', '31.222.203.2', 1676269948, '__ci_last_regenerate|i:1676269948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe6c2d3a60a2d17b79cb3a918baab941fd4ae96', '31.222.203.2', 1676269948, '__ci_last_regenerate|i:1676269948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c793ac12af1394addf78a36ffdf7c25432cab5', '31.222.203.2', 1676269948, '__ci_last_regenerate|i:1676269948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40914d461ac783730ef4b7bf3fbeb096ed70b5a', '31.222.203.2', 1676269948, '__ci_last_regenerate|i:1676269948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('780b4f1f33afb2143eac872d34f08f55aa130763', '31.222.203.2', 1676269948, '__ci_last_regenerate|i:1676269948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0721a34c8a0165a9501f4f5d39f238c400d5303', '31.222.203.2', 1676269948, '__ci_last_regenerate|i:1676269948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f355c7814a03aaef6e997a0e02f5fc0d695243', '116.204.230.21', 1676271133, '__ci_last_regenerate|i:1676271133;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2a50fefc36f0d78b82b59b05b8d405610deebb', '45.120.39.89', 1676270809, '__ci_last_regenerate|i:1676270809;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676270249;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eecf6bddad4640e0440b3c6829605bc9ea07fa2b', '45.120.39.89', 1676271902, '__ci_last_regenerate|i:1676271902;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676270848;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9b61e1defb1fc99244d4c40a19380842e8fbd4', '116.204.230.21', 1676274769, '__ci_last_regenerate|i:1676274769;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360664641328a3b4e5f5329f51d70c14d60960d7', '31.222.203.2', 1676271838, '__ci_last_regenerate|i:1676271838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d5155caecfc9fd0e1b5f6a09e79fa38b4a7c6a', '31.222.203.2', 1676271838, '__ci_last_regenerate|i:1676271838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b0a87c70bda05ebcf3f7a5ffa0f6e2e671e817', '31.222.203.2', 1676271838, '__ci_last_regenerate|i:1676271838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0d8038db6544d680e0987df355076ccfd38a75e', '31.222.203.2', 1676271840, '__ci_last_regenerate|i:1676271840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dc1e8e6296eb2d0d491e8707a050bdeb50187c', '31.222.203.2', 1676271840, '__ci_last_regenerate|i:1676271840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758c09c7b61356d774331d29d0cdfa9e76cfa956', '31.222.203.2', 1676271840, '__ci_last_regenerate|i:1676271840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507d147d58d777bf423c0c7d46894680eda3bd18', '45.120.39.89', 1676272308, '__ci_last_regenerate|i:1676272308;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676271941;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59d14a791fce9bb94c12e0aa14792ba66544bc9', '45.120.39.89', 1676276653, '__ci_last_regenerate|i:1676276653;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676272414;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e6572729bd32c16f6016f6625ef21bf28c2d21', '172.105.247.100', 1676273419, '__ci_last_regenerate|i:1676273419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f68a38c96932321c4632bc335c40a0e34cae8b0', '172.105.247.100', 1676273419, '__ci_last_regenerate|i:1676273419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec7a896777030c6ac49e140c041257521f67b94', '172.105.247.100', 1676273419, '__ci_last_regenerate|i:1676273419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418fcdeec8cbfdd43424cef77f05148dd8ffa37c', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29206c0c11cfd016e87162c07cd909a4a2533d46', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c652bdc898319d60d5e1e84c41c21588bd9f71e', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323aa431354f46582a235fcee7d4d492c7ec8341', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06eda6f87b696209e346cd542c7121e41441bc46', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831aed76edf7c419429a140436439040a007958f', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812050ce5f8f72e9f4e875a775bfaa25f2556f56', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('412b927dee2d05385d91de76b7bc535ddc30dabd', '172.105.247.100', 1676273420, '__ci_last_regenerate|i:1676273420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e11583680facf817d285b00bb5b31e376123269', '172.105.247.100', 1676273421, '__ci_last_regenerate|i:1676273421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('855db21b3f1553994977660457eecb038aaaf29a', '172.105.247.100', 1676273421, '__ci_last_regenerate|i:1676273421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd679615c60b1e2e9aa602329c26f00c4c07800e', '172.105.247.100', 1676273421, '__ci_last_regenerate|i:1676273421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5cbe2a80801f44558c3e3f09b07445b58aaec6c', '172.105.247.100', 1676273421, '__ci_last_regenerate|i:1676273421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29a4de285784d9f06e123177efc74d59abeb3798', '172.105.247.100', 1676273421, '__ci_last_regenerate|i:1676273421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e5ce7da56137b82de82d63d67c7bbc3a797e0d1', '172.105.247.100', 1676273421, '__ci_last_regenerate|i:1676273421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3db18fe3736fe5b257f5241e6cd5c3f335627ae4', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825db7a293101725a5a7b762edf348926c56c8a5', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f481288fb9db5ed33b6e186e273f133de5b880', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3a23820d3c4d5c9da354e33765185e24d4c8e2', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9275cad77585d31b45873e33ae270c1c1ef7ae', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4072f66af0afbd96b150f4524ae4b071c912a374', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6111a25ba10856f8a8beb593bca590bc5e351506', '172.105.247.100', 1676273422, '__ci_last_regenerate|i:1676273422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f5cc095cac4a31ec55f57f49461bb8cb7c4c6a5', '31.222.203.2', 1676273695, '__ci_last_regenerate|i:1676273695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766120d7ce5e508f2dca1799b389464b36d8b2d2', '31.222.203.2', 1676273695, '__ci_last_regenerate|i:1676273695;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad44a94fea1229e8ebbadddf0cae24bdb610586', '31.222.203.2', 1676273695, '__ci_last_regenerate|i:1676273695;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30036c35cd3b6a5aff5e0526a809fd14682f4644', '31.222.203.2', 1676273696, '__ci_last_regenerate|i:1676273696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77eb213f2c011c9fedd19455a4e688bdf91725e', '31.222.203.2', 1676273696, '__ci_last_regenerate|i:1676273696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20e6ad076c5062e1eacdaffafb88e399bd98d3d', '31.222.203.2', 1676273696, '__ci_last_regenerate|i:1676273696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5004809d5a49d7ecb9eaaff6dbdfde3709fbe844', '116.204.230.21', 1676275118, '__ci_last_regenerate|i:1676275118;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d446873b7dcd7d0b439484f953f28cf54e81de2a', '116.204.230.21', 1676275521, '__ci_last_regenerate|i:1676275521;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc3c992f774585748f10edb368add7653b21aa5', '116.204.230.21', 1676276117, '__ci_last_regenerate|i:1676276117;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533697fce0656f4366fb6b0629444af4f2f6dc9f', '116.204.230.21', 1676276463, '__ci_last_regenerate|i:1676276463;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace3e2b75325c909f464d248cb02ba6f24121f59', '116.204.230.21', 1676276911, '__ci_last_regenerate|i:1676276911;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45dfef7ab1d3d628c5ef7b9b6d8f5862e0194b4', '45.120.39.89', 1676281934, '__ci_last_regenerate|i:1676281934;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676281930;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984101f3fe3bdbd6cadf1715ecbb44a203fa9f79', '116.204.230.21', 1676277217, '__ci_last_regenerate|i:1676277217;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62be66c2c54288c3047f75cb11144e3f3301dcee', '116.204.230.21', 1676277545, '__ci_last_regenerate|i:1676277545;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfc475ceadbad175792bece866857b8f4347b6e0', '116.204.230.21', 1676277898, '__ci_last_regenerate|i:1676277898;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62469380f98d941852c8dd781b114cbb78a31914', '116.204.230.21', 1676278296, '__ci_last_regenerate|i:1676278296;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9343aee672880cc01f371050b1b76ad5e13e5e19', '116.204.230.21', 1676278601, '__ci_last_regenerate|i:1676278601;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64274f042a815256ad612015ac9883689eb34b01', '116.204.230.21', 1676279443, '__ci_last_regenerate|i:1676279443;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e0024da124369f7597c295bf4722bc9deb6a5d', '172.105.247.100', 1676278820, '__ci_last_regenerate|i:1676278820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c72f0c56fa6206b786793a3ea6923a07480f620', '172.105.247.100', 1676278820, '__ci_last_regenerate|i:1676278820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862867787f5b8671bce2db36b1d8ffb705e09adc', '172.105.247.100', 1676278820, '__ci_last_regenerate|i:1676278820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6765eb2c1d53fd2dd46ae8b65f5b9b00fefa0eae', '172.105.247.100', 1676278820, '__ci_last_regenerate|i:1676278820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6700588f12b0eff1ab6503b39806eb1eb3c4ebc8', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b873917b6dd13b519874f8cbfdcab825442e2375', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91d078d9299caf3127738542018891d0bd88f67', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d1ee3f5c15d7b8b286a0db03281124c4cbdd99', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2ba3d741f169e051fa78b5bb35d1e92d38d118', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b5c753f5652a4f7d7fd73bf3075500f1cd8e4f', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc498385d4875c6c0b8d8d33e4e83ea92f3ea58', '172.105.247.100', 1676278821, '__ci_last_regenerate|i:1676278821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fdf436b3733a16a714206b5a1e44abba447f79d', '172.105.247.100', 1676278822, '__ci_last_regenerate|i:1676278822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ad7fd97eeb3dff633e9da902807d8f04e317a4', '172.105.247.100', 1676278822, '__ci_last_regenerate|i:1676278822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed87bebdf9e13d1ef70f3aea7057add0b7016c8', '172.105.247.100', 1676278822, '__ci_last_regenerate|i:1676278822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ef9e0594dfa98477377ab6b2f9675c7f7ddc2a', '172.105.247.100', 1676278822, '__ci_last_regenerate|i:1676278822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626db8d9f1d3dee1e98207f0f6955090d1de611a', '172.105.247.100', 1676278822, '__ci_last_regenerate|i:1676278822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65eb6538fe1344ad79d6b6f6a2cc7a3a5cc17c8a', '172.105.247.100', 1676278822, '__ci_last_regenerate|i:1676278822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05b4379f8001eb758a4c25f2cd03b4ce6d5d7d9', '172.105.247.100', 1676278823, '__ci_last_regenerate|i:1676278822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3b090f6787ac217ffc338d284f559b5c987824', '172.105.247.100', 1676278823, '__ci_last_regenerate|i:1676278823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a83cb11061543ed2ec845cf04b2140f06b5f02a2', '172.105.247.100', 1676278823, '__ci_last_regenerate|i:1676278823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae7bb4f334d29167c00cd37771b9c6c272a24f9', '172.105.247.100', 1676278823, '__ci_last_regenerate|i:1676278823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1959fae5554286e8d443e7c8baf17ad3e91cb7b', '172.105.247.100', 1676278823, '__ci_last_regenerate|i:1676278823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01adab7f4f6ebad4400e089068f4578dfe88285a', '172.105.247.100', 1676278823, '__ci_last_regenerate|i:1676278823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f741e3de3e9615553b34e352cfc97d2e94990c', '172.105.247.100', 1676278824, '__ci_last_regenerate|i:1676278824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd57837ba6d2d5690e9815421df2c58cf066636', '116.204.230.21', 1676285584, '__ci_last_regenerate|i:1676285584;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('097fc91a42811067b7f0f095bd9d51d6514edc77', '31.222.203.2', 1676280854, '__ci_last_regenerate|i:1676280854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7b5a1ae7bfd56496c695b5f206da4d8243f535', '31.222.203.2', 1676280854, '__ci_last_regenerate|i:1676280854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4192b215b228e9a9b57871396928a717dbbbd0', '31.222.203.2', 1676280854, '__ci_last_regenerate|i:1676280854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f4cc6b7e670020b3c3b7f9d5189c94cfa90052', '31.222.203.2', 1676280855, '__ci_last_regenerate|i:1676280855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d9e7cab49aed755e992357887531f3c41ec4a2', '31.222.203.2', 1676280855, '__ci_last_regenerate|i:1676280855;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967043d66d89bf23070fa2835da6048be7f45815', '31.222.203.2', 1676280855, '__ci_last_regenerate|i:1676280855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5420f9519f5e813ec4f84e5accf3f1b4f58aefbc', '45.120.39.89', 1676287443, '__ci_last_regenerate|i:1676287443;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676281934;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279b6ca2db757930402fa6462457c5ca17185f3b', '172.105.247.100', 1676284218, '__ci_last_regenerate|i:1676284218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c2992ff02701bd9325de3b8bf8089d9ba9ee52', '172.105.247.100', 1676284220, '__ci_last_regenerate|i:1676284219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebb5f418a5d807ced34ea47d4aeae790b2c33ff9', '172.105.247.100', 1676284220, '__ci_last_regenerate|i:1676284220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdfd929b49eef8be19d21d2b512073a024abcbaa', '172.105.247.100', 1676284220, '__ci_last_regenerate|i:1676284220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07428826bb3a254c0a4d93d2294f002eca5d2713', '172.105.247.100', 1676284220, '__ci_last_regenerate|i:1676284220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad8c56a914b2b182939deb789e38448bf539df3', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cc38d1ac5e157fcdf5681a339fdad01eec97cf', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90eefb9bca76f5bab00d1ec7a77826b32d8f877', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b3131a71348b93563806bfa9317e5d9841e00f', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dd14434f09d47dfb3958dfc6e1a4641eb4e1cc6', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68276dc8537bbc3eefca5df1a3f1869ca8154a28', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812c8dedbeacf17add209c170f9e9e61fb8f7046', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024808a97ad4a3b73c4b75b102d4ff1daac5a666', '172.105.247.100', 1676284221, '__ci_last_regenerate|i:1676284221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666d7dccc2906d11ee0b90f1b4e1217331b2142e', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee677ef2fea32997b7c0ba3b3faa913340fa9d87', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b95fc8d3cfc00f35d80502fa7c848b0eab9c97', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14985dbcb59eddbafaffa804e7edfd26d9677f9', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047672175bd1a7c9c52cc50accb81a5a0c5ae6f6', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d9d85fb0450c494bcd9268bb1c6e05609e276c', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a382653ca3223231c86ece0c84946579c8657c2', '172.105.247.100', 1676284222, '__ci_last_regenerate|i:1676284222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65991d5e1c2215dd1edb9fad4860f75b2284cd42', '172.105.247.100', 1676284223, '__ci_last_regenerate|i:1676284223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2065db262fb967356c6938ace899c67051bf8da4', '172.105.247.100', 1676284223, '__ci_last_regenerate|i:1676284223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ba5b1357199c55866ea2acf4196204d49b82ee', '172.105.247.100', 1676284223, '__ci_last_regenerate|i:1676284223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868b6fdb183b1186b0c3eaae4d9d1d8ee7bf7906', '172.105.247.100', 1676284224, '__ci_last_regenerate|i:1676284223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd391c6bab0d826d4f3c7fce375fafaf6fc5284f', '116.204.230.21', 1676286195, '__ci_last_regenerate|i:1676286195;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"XlpfPIkqhKVxZSCj0eF9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3efe3c205ab94731db8f7d528fe19f43656df01e', '116.204.230.21', 1676287384, '__ci_last_regenerate|i:1676287384;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"XlpfPIkqhKVxZSCj0eF9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26a38300f266c93ef26baf0046781c3f3e689fb', '159.89.239.57', 1676287246, '__ci_last_regenerate|i:1676287246;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85db9c37534d31dc4cbfc88f9b07b8aa3af1ac4a', '116.204.230.21', 1676287687, '__ci_last_regenerate|i:1676287687;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"XlpfPIkqhKVxZSCj0eF9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb97a3ffb1107f9831791042b1b4059955a27f4', '45.120.39.89', 1676289436, '__ci_last_regenerate|i:1676289436;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676287443;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd496e867ee0264cbfd0ab8f60e23f787d5629ed', '116.204.230.21', 1676287707, '__ci_last_regenerate|i:1676287687;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676124956\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"XlpfPIkqhKVxZSCj0eF9\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e8f4561136243e6c28cc4fb0859f1b8a5e958f', '31.222.203.2', 1676288052, '__ci_last_regenerate|i:1676288052;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c82d912f828c0df1d940d1771bb99de2adbab49', '31.222.203.2', 1676288053, '__ci_last_regenerate|i:1676288053;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99cb6e9124d7ea53bbb63e9db4c77b83cd617aee', '31.222.203.2', 1676288053, '__ci_last_regenerate|i:1676288053;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce943a0a2374f8165b4665083f39c6c5c76da87', '31.222.203.2', 1676288053, '__ci_last_regenerate|i:1676288053;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8d96cabb90dcbd6366bfc91a8437147d7e1ab4', '31.222.203.2', 1676288053, '__ci_last_regenerate|i:1676288053;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6460dc1a3cf1e692101c6cc053bff1a2c4899d', '31.222.203.2', 1676288053, '__ci_last_regenerate|i:1676288053;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73564f49c8a66d58554f2a83fd2753840f1f5148', '45.120.39.89', 1676291023, '__ci_last_regenerate|i:1676291023;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676289461;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44fc2460dc4d9c4a375a648042dbe5569635d88', '172.105.247.100', 1676289619, '__ci_last_regenerate|i:1676289619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baaf157baf7533dd18862f2380d17d5eefcc5bba', '172.105.247.100', 1676289619, '__ci_last_regenerate|i:1676289619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e6641409fa9841f0e0d143dd6d4ef0563bb2ca', '172.105.247.100', 1676289619, '__ci_last_regenerate|i:1676289619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55510a67e38c454504a9d00fdac4c419ec41151c', '172.105.247.100', 1676289619, '__ci_last_regenerate|i:1676289619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686ee32d15bc72cfefa422b4d06f4a674e231965', '172.105.247.100', 1676289620, '__ci_last_regenerate|i:1676289620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e2ae0660491b95465f6e0a39ac65161d8105caa', '172.105.247.100', 1676289620, '__ci_last_regenerate|i:1676289620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e2b857a634cdfe445aabddf88bafebc39c639d', '172.105.247.100', 1676289620, '__ci_last_regenerate|i:1676289620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699c1fcf419dcd13a45130d5f791c57de84b7ba2', '172.105.247.100', 1676289620, '__ci_last_regenerate|i:1676289620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a582a2c9737256c875e565dbb790d7fe8889f293', '172.105.247.100', 1676289621, '__ci_last_regenerate|i:1676289621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93dd51779acb9fbf337ae12c6f9e98f3ced70380', '172.105.247.100', 1676289621, '__ci_last_regenerate|i:1676289621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d995013f8881d77d1c469285abf3e05a4d9140e', '172.105.247.100', 1676289621, '__ci_last_regenerate|i:1676289621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('198e226c8ca0393416efd30241d1bc2265d8d762', '172.105.247.100', 1676289622, '__ci_last_regenerate|i:1676289621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87efab6cd48f8f0e3dacee405ebe23061ea4964', '172.105.247.100', 1676289622, '__ci_last_regenerate|i:1676289622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb292f90d24328e442ec52ce0183269b36cba189', '172.105.247.100', 1676289622, '__ci_last_regenerate|i:1676289622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7a2e99443941724d55dc9b02b7c33172242852', '172.105.247.100', 1676289622, '__ci_last_regenerate|i:1676289622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d552807010241881cd8231af6334f4124c5082', '172.105.247.100', 1676289623, '__ci_last_regenerate|i:1676289623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb726d9bb557ce138f270d8187cd9173a4b66d68', '172.105.247.100', 1676289623, '__ci_last_regenerate|i:1676289623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed149d01e9410951e1c3dcf209792bf3bbe0533c', '172.105.247.100', 1676289623, '__ci_last_regenerate|i:1676289623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812d4203a91e0c5f569fb90fcf10b3faeaf1c771', '172.105.247.100', 1676289623, '__ci_last_regenerate|i:1676289623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93bef88898d44d16bcc75e1fe6bf0ec067d8f9f5', '172.105.247.100', 1676289624, '__ci_last_regenerate|i:1676289624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4e06133c425e6520c59160ae809e0b8d2f9d6d', '172.105.247.100', 1676289624, '__ci_last_regenerate|i:1676289624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db99ca6bc21e24151d43ed405b1f0f15823ea0cc', '172.105.247.100', 1676289624, '__ci_last_regenerate|i:1676289624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46864dc6024289a80206797a71fccfaaa23bf637', '172.105.247.100', 1676289625, '__ci_last_regenerate|i:1676289625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d0d768ad0b7d5ea1bf62ecab6dddfad8892aa8', '172.105.247.100', 1676289625, '__ci_last_regenerate|i:1676289625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a322bbc653306df2b9792f85ff3d2370fdd80330', '31.222.203.2', 1676289916, '__ci_last_regenerate|i:1676289916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52766a4dfc1fdcb5538335d2bab46019c464ae39', '31.222.203.2', 1676289916, '__ci_last_regenerate|i:1676289916;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2babd1a401bb8b74fc5d2903f50fd7545628546', '31.222.203.2', 1676289916, '__ci_last_regenerate|i:1676289916;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ed72fe203a823900be6ddec7e74d63e2254fd9', '31.222.203.2', 1676289918, '__ci_last_regenerate|i:1676289918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e885320be50753c13d7d3d75fa1fdc53eb1b640', '31.222.203.2', 1676289918, '__ci_last_regenerate|i:1676289918;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('022e42dca7a516b4fe793ddb15df16d06560d215', '31.222.203.2', 1676289918, '__ci_last_regenerate|i:1676289918;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652cf54b7552a6e601498e909fb409e38be669c2', '45.120.39.89', 1676291357, '__ci_last_regenerate|i:1676291357;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676291324;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6ee8eecd0039cdf17da9e0e93e3dd2455ff098c', '45.120.39.89', 1676291811, '__ci_last_regenerate|i:1676291811;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676291807;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261946c8f12cf8c53f436c2a67e36258ace1aa06', '45.120.39.89', 1676292618, '__ci_last_regenerate|i:1676292618;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676292613;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e679a0d37b0eb43c6d03c9e65fa61dbb25926102', '45.120.39.89', 1676295799, '__ci_last_regenerate|i:1676295799;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676295793;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22b22299a497c1c938b12f0edf3e2567e35b5978', '31.222.203.2', 1676293457, '__ci_last_regenerate|i:1676293457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81fcefef8b84fb162e3e86b503fed5946c1ca9b', '31.222.203.2', 1676293457, '__ci_last_regenerate|i:1676293457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee02a138260a3f85d0a7e82644c8cc6a9b0db048', '31.222.203.2', 1676293457, '__ci_last_regenerate|i:1676293457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b9d6ab91025291fd9f9356ab101220f1335863', '31.222.203.2', 1676293458, '__ci_last_regenerate|i:1676293458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe3aa16e380fb8d55c064a031619bdbb08164e3', '31.222.203.2', 1676293458, '__ci_last_regenerate|i:1676293458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2701e8a7626181fe649478a9ef7f502b51b8f5b7', '31.222.203.2', 1676293458, '__ci_last_regenerate|i:1676293458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42b55723d514a8dfe604c0718b678db31bb3e72', '172.105.247.100', 1676295018, '__ci_last_regenerate|i:1676295018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc35a526ff66761a873a386adf6aaa5f94541725', '172.105.247.100', 1676295018, '__ci_last_regenerate|i:1676295018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09a7c79b63c6cf4aa1c86dea409537b6ce2d79f7', '172.105.247.100', 1676295018, '__ci_last_regenerate|i:1676295018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2647ecaa41fecea6ee18b08bd8b793cf7c9944', '172.105.247.100', 1676295019, '__ci_last_regenerate|i:1676295019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3627ff5552f62abcec07dfa42c1a83e58a9853', '172.105.247.100', 1676295019, '__ci_last_regenerate|i:1676295019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aee706e8abfffe35f5433d0f81f574632ab5fb1', '172.105.247.100', 1676295019, '__ci_last_regenerate|i:1676295019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e6f2b396b0b3135edd2766cc74190b4f0cd1a0', '172.105.247.100', 1676295019, '__ci_last_regenerate|i:1676295019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfa1a70cace923386b5df533b76ec23437472f5', '172.105.247.100', 1676295019, '__ci_last_regenerate|i:1676295019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf68ff91da605a05d628499977fd8b8e68f0df5d', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991609da07f5e907689861467d7cc60d4f498710', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a36f8a3b6839a0da81073810ca24860dc9a8cfc', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58f698bbd769b339ad5ae6db91890222eff8a61', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4602880323068aa3d3604f2530f68c60796612d', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f6e44da2c93e92ed5ac57aa24f5cb1e2439e055', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24099597a091d276c13b0201d15e2d96d076a507', '172.105.247.100', 1676295020, '__ci_last_regenerate|i:1676295020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f082cc9cf75f629e44a84c193be3ca84f3e521f1', '172.105.247.100', 1676295021, '__ci_last_regenerate|i:1676295021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f727e5691333db04923320b210d27f158d8f0c', '172.105.247.100', 1676295021, '__ci_last_regenerate|i:1676295021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8384315ca50172e3a256dde58d4c8f80d24c2c7e', '172.105.247.100', 1676295021, '__ci_last_regenerate|i:1676295021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8160f5834354c3da0eafe1e7f4ca87909b3296b5', '172.105.247.100', 1676295021, '__ci_last_regenerate|i:1676295021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8315ac48669c5bf41812ddca1a6da6e5cf4e076', '172.105.247.100', 1676295021, '__ci_last_regenerate|i:1676295021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9167893d997a99064fc8aa877eec2bc880a2fff9', '172.105.247.100', 1676295022, '__ci_last_regenerate|i:1676295022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433b3753328bb0ac8aeeccce56fb7ae03dc3c337', '172.105.247.100', 1676295022, '__ci_last_regenerate|i:1676295022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8724eed80cca8a9b212955cc96018bd238da9b', '172.105.247.100', 1676295022, '__ci_last_regenerate|i:1676295022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca38d39013bef92a86ddaf5698e9ea96053bbd7', '172.105.247.100', 1676295022, '__ci_last_regenerate|i:1676295022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9761e0d455c553c5625872418aa033e6e394791', '31.222.203.2', 1676295317, '__ci_last_regenerate|i:1676295317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ececdb280760dd7eeb57d95c5e74c1142405ff30', '31.222.203.2', 1676295317, '__ci_last_regenerate|i:1676295317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fb6f7c66694aaabed63647f6650ae5c9a725e0', '31.222.203.2', 1676295317, '__ci_last_regenerate|i:1676295317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51d1c4d5a2bdf34fa061e392eefc6e298072636', '31.222.203.2', 1676295320, '__ci_last_regenerate|i:1676295320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cc7441d462a0c551d1660c63be696f89e0449f', '31.222.203.2', 1676295320, '__ci_last_regenerate|i:1676295320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1afbab13c04c87c51b0d7ec0158103d2ecaaf2c', '31.222.203.2', 1676295320, '__ci_last_regenerate|i:1676295320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e88150a4e43edf7c489553ec2b8a6cc37695a8', '45.120.39.89', 1676299082, '__ci_last_regenerate|i:1676299082;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676295959;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa32ade2f5be4f09e1a278c82d38bb703b2cdc40', '116.204.230.21', 1676297704, '__ci_last_regenerate|i:1676297626;requested_page|s:19:\"admin/purchases/add\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676266484\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"Uiu0gBVkFRLw5htfYeax\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa268527553eb64569c269554d6d55eb622eda1', '31.222.203.2', 1676298751, '__ci_last_regenerate|i:1676298751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038b08a1f864f7e762ac7e45d6ec5435ee502ef6', '31.222.203.2', 1676298751, '__ci_last_regenerate|i:1676298751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d81c1d34e5c9d8e5945411c6353a6f8f89c4718', '31.222.203.2', 1676298751, '__ci_last_regenerate|i:1676298751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e54336f7127e1858e2d3eb49c20dab4e28ce74', '31.222.203.2', 1676298751, '__ci_last_regenerate|i:1676298751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8adf73e7b21faaf87d5a3d9b7944b1685f3cfa', '31.222.203.2', 1676298751, '__ci_last_regenerate|i:1676298751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0211767314510f9abb590df954344aab9ee486ac', '31.222.203.2', 1676298751, '__ci_last_regenerate|i:1676298751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee518641167d92635fa6636bb50611634502d58', '45.120.39.89', 1676300558, '__ci_last_regenerate|i:1676300558;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676299110;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b0b96f643af1325c1ee4a1fcf5f431572228db', '172.105.247.100', 1676300417, '__ci_last_regenerate|i:1676300417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b90774a29faeb49ce617909827a5b86659ced3f', '172.105.247.100', 1676300418, '__ci_last_regenerate|i:1676300418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced3791062ca8a05bf34404d276ee96dd5f52fae', '172.105.247.100', 1676300418, '__ci_last_regenerate|i:1676300418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8a40789d068c623a2705de68ffc691fa6062e4', '172.105.247.100', 1676300418, '__ci_last_regenerate|i:1676300418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30f3ec918de6449df0b45637c671152a4a84356', '172.105.247.100', 1676300418, '__ci_last_regenerate|i:1676300418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc7db666a14c397136ffb7bbb7d369b37d103ef', '172.105.247.100', 1676300419, '__ci_last_regenerate|i:1676300419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ca4e54922fdaf09a886860fa835254294e86ef', '172.105.247.100', 1676300419, '__ci_last_regenerate|i:1676300419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92b499376e2f9d5e91fddddd1cb5386b6c93720d', '172.105.247.100', 1676300419, '__ci_last_regenerate|i:1676300419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195ea23b897018c8413b832aac973adebe5685e3', '172.105.247.100', 1676300419, '__ci_last_regenerate|i:1676300419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf81ce0b35c81fc07a9298455ff1780cccbf29be', '172.105.247.100', 1676300419, '__ci_last_regenerate|i:1676300419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e405529c7abb8474f4b3a453e3c394cf16d1ec9f', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8aa2832a8cadb7c1c70b001017342e2cd68df6b', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d096448eb45137f188b0cddd0ad133e1ccee49d', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295a6c775288a2f2074572ac2c1434ba24605ca5', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bd636dc0ca3dcfdbad73ef60e71bb8407ac49a', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bbb86bb50f73a9b9d265a004540e19c704bf789', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a691624d8d168f534e142585e59e9aee557009', '172.105.247.100', 1676300420, '__ci_last_regenerate|i:1676300420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26fbbb3a4f55102e1dc214b6cd38b0abb6ba05b', '172.105.247.100', 1676300421, '__ci_last_regenerate|i:1676300421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77468d6949c9ab3c6078504458f136b1ea441131', '172.105.247.100', 1676300421, '__ci_last_regenerate|i:1676300421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a150de25e01216c09315a7742f14176242e4f6', '172.105.247.100', 1676300421, '__ci_last_regenerate|i:1676300421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da59104fad1c68aa2b14ae70ded2713f34392aa0', '172.105.247.100', 1676300421, '__ci_last_regenerate|i:1676300421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a16e27eecec67cd464d96ee8439ef91217607130', '172.105.247.100', 1676300422, '__ci_last_regenerate|i:1676300422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1406879b556df72853271d82968ac033744339bb', '172.105.247.100', 1676300422, '__ci_last_regenerate|i:1676300422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acee569d866104e032fe7e4ba4c3a7f48b98a014', '172.105.247.100', 1676300422, '__ci_last_regenerate|i:1676300422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d701b2db82b5223d7eadc1dcea81a6063b28880', '45.120.39.89', 1676300869, '__ci_last_regenerate|i:1676300869;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676300863;register_id|s:3:\"340\";cash_in_hand|s:9:\"2530.0000\";register_open_time|s:19:\"2023-02-12 20:47:25\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf064fd0310925ec758225b1ba7c4ed37e09605c', '31.222.203.2', 1676300640, '__ci_last_regenerate|i:1676300640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b5b7f30b1ccf12ac1af1922df3fd4f5529c97b', '31.222.203.2', 1676300640, '__ci_last_regenerate|i:1676300640;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27945b6277f114fdbfd09b0e2f59673e87081fe6', '31.222.203.2', 1676300640, '__ci_last_regenerate|i:1676300640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d1aa98fc89dccd2f701990c11dfebb5d8c40a4', '31.222.203.2', 1676300640, '__ci_last_regenerate|i:1676300640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641d7096d592ce648377c046ae30ab9ff61617c6', '31.222.203.2', 1676300640, '__ci_last_regenerate|i:1676300640;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d2e64c8861902855f17ec6b209f9fbdd2693bc', '31.222.203.2', 1676300640, '__ci_last_regenerate|i:1676300640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4b593e491e0ddaa4ae80e1763244bcd4889eff', '45.120.39.89', 1676301030, '__ci_last_regenerate|i:1676300869;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676201859\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676301029;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91d0b771605ed260f7087ab538846efc9282a34', '31.222.203.2', 1676302495, '__ci_last_regenerate|i:1676302495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6df288176e28b9cea35ab8b99200e2dcd5e59e', '31.222.203.2', 1676302495, '__ci_last_regenerate|i:1676302495;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34166ab5f908e549725a5fc02620a9aa4ee09ba0', '31.222.203.2', 1676302495, '__ci_last_regenerate|i:1676302495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b651b8088311998e358b52a6fddb146829c5472a', '31.222.203.2', 1676302496, '__ci_last_regenerate|i:1676302496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbb5e3373a57416a01220050d06dca3a51bfeb9', '31.222.203.2', 1676302496, '__ci_last_regenerate|i:1676302496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b02d814d43e2873945f9d8916f4a7aea887ea1', '31.222.203.2', 1676302496, '__ci_last_regenerate|i:1676302496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4064f353cb845f4dbf581bfa3d9d9e66538c95af', '31.222.203.2', 1676304337, '__ci_last_regenerate|i:1676304337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d989a85c991e3f5e35d4cc94957bc5f3e129fe0f', '31.222.203.2', 1676304337, '__ci_last_regenerate|i:1676304337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d751f936d95b79a72b9cd36e987fc0fd8458a960', '31.222.203.2', 1676304337, '__ci_last_regenerate|i:1676304337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18c381ad1df497cbfbcf86d725df48db64178ace', '31.222.203.2', 1676304338, '__ci_last_regenerate|i:1676304338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da39bf2f647f527fce972abcb5c65e0342f2c492', '31.222.203.2', 1676304338, '__ci_last_regenerate|i:1676304338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b76fca77b79d10af338fa0af81afbad08046fbd1', '31.222.203.2', 1676304338, '__ci_last_regenerate|i:1676304338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f4fb455b7f2578b63c112153a0d2b6b28a4ccc', '172.105.247.100', 1676305821, '__ci_last_regenerate|i:1676305821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('303eaa541ec874d13d651399cde2ceca8e3d2237', '172.105.247.100', 1676305821, '__ci_last_regenerate|i:1676305821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f87d004df1df0f7f02018035067891c06303ae', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dadf1cd5fc52a47cb9c4ca0beb95d8d84b12ebf', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb0bda57193cb096dc5ed71e0a1e4d6d4236703', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ab9aa7648104da6cd793e39f485ab58959d452', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ef2428b4cf0caa7189967b7e3ac27c1747d62c', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c11e5c4182b4ca65b18e6094f56a5d02c0c1f2', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8d5eecacf87939353086f9ec4f806f1022523f', '172.105.247.100', 1676305822, '__ci_last_regenerate|i:1676305822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18757a2162acd92ffba3ae56db2eca15be241260', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03342486ced2850bc67db66aebdf2b221860f279', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf44758bbc62be095d095470e597952e7229434', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18f69606608c0994fad61280fe306241eb7b125', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14cb7d4639199b72bb5a0673f9ef0fd29c584290', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4f171dd92f80224dd06e8f5ed7506c60b85902', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff4727c03aca641a6195285bf74f0c4301657b6', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed9a025e2cb2bac81c6b51b5e33c9188f9cc652', '172.105.247.100', 1676305823, '__ci_last_regenerate|i:1676305823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8df7c5b1514f0a3535a54e98e474cd70948e74', '172.105.247.100', 1676305824, '__ci_last_regenerate|i:1676305824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b2b0767cbac8dc6570d9197e6958498ad7165a', '172.105.247.100', 1676305824, '__ci_last_regenerate|i:1676305824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850545e732ceba6126f91a99b71ed9ceedb7e406', '172.105.247.100', 1676305824, '__ci_last_regenerate|i:1676305824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('041cd7a58972d2049cbddd186a8d58d8d1cc0054', '172.105.247.100', 1676305824, '__ci_last_regenerate|i:1676305824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81284a5857ee98104a408bb01ed6b8b27fd0ab40', '172.105.247.100', 1676305824, '__ci_last_regenerate|i:1676305824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59da4820ff8c3ea043f205e0330f3413dd47e86f', '172.105.247.100', 1676305825, '__ci_last_regenerate|i:1676305825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d1eb6b251d4a329659a2d649ec0f19156cb8de2', '172.105.247.100', 1676305825, '__ci_last_regenerate|i:1676305825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a4eb8f8f17691a61d719eaf64086edb52f3b22', '159.89.239.57', 1676307133, '__ci_last_regenerate|i:1676307133;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf13f60d451244a8e059942b5a7b04a5951a9eec', '31.222.203.2', 1676307748, '__ci_last_regenerate|i:1676307748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40675feae2140a86b2efbe58654f58e3c88e1812', '31.222.203.2', 1676307748, '__ci_last_regenerate|i:1676307748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f6729459c081550d8706dbd1452c41795dc26b', '31.222.203.2', 1676307748, '__ci_last_regenerate|i:1676307748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a195ca5875eca7cb3922e903646841f573ada66', '31.222.203.2', 1676307750, '__ci_last_regenerate|i:1676307750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('219d974e11d04b39ea348c806d030d0d78b45eea', '31.222.203.2', 1676307750, '__ci_last_regenerate|i:1676307750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('300ebb3221c4a567b974f19d7420e9ae0c9a5319', '31.222.203.2', 1676307750, '__ci_last_regenerate|i:1676307750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae702ff8f075b1253796bc17c905ff357da0186', '31.222.203.2', 1676309635, '__ci_last_regenerate|i:1676309635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc30ea2ba75cfa878c9b746d80bf50457bb1dfbb', '31.222.203.2', 1676309635, '__ci_last_regenerate|i:1676309635;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6febac90fbe2a1f299280402ce6c13cb896eb05', '31.222.203.2', 1676309635, '__ci_last_regenerate|i:1676309635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('065112a1d0a0a0b8f86608b5a5cf6a5da183d17c', '31.222.203.2', 1676309638, '__ci_last_regenerate|i:1676309638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ce64b6597f09677b4ed823828317ffcf84bc7b', '31.222.203.2', 1676309638, '__ci_last_regenerate|i:1676309638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08be8f33f41c6922c3bda527b10fbe943253e33', '31.222.203.2', 1676309638, '__ci_last_regenerate|i:1676309638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37902d2b4adacf736319294b58b5ff9315fe8fd', '172.105.247.100', 1676311222, '__ci_last_regenerate|i:1676311222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aedec5ad2ec3c3e3992a518cd7b5588c651cd1b8', '172.105.247.100', 1676311222, '__ci_last_regenerate|i:1676311222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b1b8d09a07450c5884919d11e96acb713e08649', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('770fa260b7efedbcf932e60daca7111e3cf7c3cf', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd29f04a68d1a85dd626a726fa78732bcb536294', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac556e55d3e54ac5e4f1120053508a4cdb5062a6', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa1f57076a8828eb775de934f5a0f89f167ff26', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74bad5af88ffd78a687086078b2b4a3fb0459af7', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6785b07316b461b9a4721d4d9e268067b885c0f7', '172.105.247.100', 1676311223, '__ci_last_regenerate|i:1676311223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('330df34a544912d7fc1065df2cc81d141e73b274', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9bd39ef33b1790615e3da94809b79bcf4ff0d88', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f4e272d40c20f294b4ad6fc57e31ad7dd53d95b', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d0f7d698a22fb99a68d6e993e48f27443923cc', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4749ec0beef9a936db1c23b3ce12e86a0d089120', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7796ec42647cb926de269745253555a3a0da241', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e1e672219df3716fe51d3152418d03ca940443', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49fa1a0993ec7689a4fb9c5bd350aa284862af4b', '172.105.247.100', 1676311224, '__ci_last_regenerate|i:1676311224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb47266a0c1eb3255104c82ed16b1e31e10d9d29', '172.105.247.100', 1676311225, '__ci_last_regenerate|i:1676311225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e2ec64f07f15be5790b3c63c7894a2d97c5341', '172.105.247.100', 1676311225, '__ci_last_regenerate|i:1676311225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13dec21b46216b00f76a211cec551b00dd575e88', '172.105.247.100', 1676311225, '__ci_last_regenerate|i:1676311225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('207f102fb0b623a6cf766f7654159d9fa99b7f89', '172.105.247.100', 1676311225, '__ci_last_regenerate|i:1676311225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d10dda6f1e7414ccb094175137abe68ea46799', '172.105.247.100', 1676311225, '__ci_last_regenerate|i:1676311225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deeaeef1a2be7b7fe24c32a85fbb66589f033f00', '172.105.247.100', 1676311226, '__ci_last_regenerate|i:1676311226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26846f49ea90153b5a949ba12a33c993fa77978', '172.105.247.100', 1676311226, '__ci_last_regenerate|i:1676311226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcddcb3ffe76a97f94aeed83e8c27466751b1feb', '172.105.247.100', 1676316619, '__ci_last_regenerate|i:1676316619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c62c7a404c23c5fcd271a04ba22a14f15d9ee0', '172.105.247.100', 1676316621, '__ci_last_regenerate|i:1676316621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6660798294fd452b37983676621d296ba56c977', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17bff9957ca77332c55ffb25c70c70f846e50b6d', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0141ec41f883f774c71cc164f8235efd7989b8', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5441134aa6e70bc5ae04aaa3476208c7e888e628', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b8e3b61222c0b48143de2b24a3d70d8a0e38cc', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac83808789ded4b61c097fd135530b38ef50350', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('542274e97b153b0bbd02489c9dae334368907c18', '172.105.247.100', 1676316622, '__ci_last_regenerate|i:1676316622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91dcb12d787cefcd32822034175234fed6339b9b', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e466e7f8798fc052743497c513b35edfa080e837', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc889d76277bf7dd443762cdf477ee490ef0c19', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c69513afcc807aa8a60cfb7843397362b4851c', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2751c2cea0dd6d48bd44ea610712e74d67e2f518', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5037521e9fa1d61d32f8997c4ab227e7b22ea78f', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3e6fbdfffa2bd9aab28a99ea477c597fdf051c', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c690d58902958b920b3d6e694212cea386ef12', '172.105.247.100', 1676316623, '__ci_last_regenerate|i:1676316623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aad91cfad6ffa194e5f2d2f8cac8789881ddace', '172.105.247.100', 1676316624, '__ci_last_regenerate|i:1676316624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9cb4d77194656c819001107a932ea7d362f467', '172.105.247.100', 1676316624, '__ci_last_regenerate|i:1676316624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61a27737136da530b23162506f73d7cb8e6555d', '172.105.247.100', 1676316624, '__ci_last_regenerate|i:1676316624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea442d761ea3970a239711df3d996800c87ce5b', '172.105.247.100', 1676316624, '__ci_last_regenerate|i:1676316624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5591478ff589a9dd724b28a1770253a9c11420', '172.105.247.100', 1676316624, '__ci_last_regenerate|i:1676316624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b95422268ee936475aac958c850296efa7faa4d', '172.105.247.100', 1676316624, '__ci_last_regenerate|i:1676316624;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d09c003c92006414db9a7be6d07ade466f954e9', '172.105.247.100', 1676316625, '__ci_last_regenerate|i:1676316624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12bf26a37ba17aefbadbd74f5bbf1955a8c4df3', '31.222.203.2', 1676316745, '__ci_last_regenerate|i:1676316745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6db8d3de0d1c2e2a647cd38faba737d1e574d6', '31.222.203.2', 1676316745, '__ci_last_regenerate|i:1676316745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be69f6630b2befe5aa57cd70228df2142724715', '31.222.203.2', 1676316745, '__ci_last_regenerate|i:1676316745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400953b173109050dd2c0f5aeac559d13623ac39', '31.222.203.2', 1676316749, '__ci_last_regenerate|i:1676316749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64014ee1a7a54772b71a6e716754cff06921e97', '31.222.203.2', 1676316749, '__ci_last_regenerate|i:1676316749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721c7eaa13dfcd1787829c8aaa1367fe91ff86ce', '31.222.203.2', 1676316749, '__ci_last_regenerate|i:1676316749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90e0b299d68cc77e529d14478e090b05f192a11', '31.222.203.2', 1676318633, '__ci_last_regenerate|i:1676318633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265568c428e6c30842c44df92325f31467ea22df', '31.222.203.2', 1676318633, '__ci_last_regenerate|i:1676318633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('055fb0645b54e7f2f8ebb5976ead1633ed19b1f2', '31.222.203.2', 1676318633, '__ci_last_regenerate|i:1676318633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac484f1106746c9fee0a9322da352d643f686dc0', '31.222.203.2', 1676318636, '__ci_last_regenerate|i:1676318636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4b5435726274af90d47cd9e8e8a33651e89fe6', '31.222.203.2', 1676318636, '__ci_last_regenerate|i:1676318636;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f207e4f97e53b6962eb5518f82c67918ebc6b55', '31.222.203.2', 1676318636, '__ci_last_regenerate|i:1676318636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35fe9d70490e745f06bb7475bab5aecf14eaa71', '172.105.247.100', 1676322018, '__ci_last_regenerate|i:1676322018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8f85c569901d621fbe070d46c719e972edcefb', '172.105.247.100', 1676322018, '__ci_last_regenerate|i:1676322018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd8295f05542f62204573b41990854ed4c141eaf', '172.105.247.100', 1676322018, '__ci_last_regenerate|i:1676322018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('066ade3857c18f537b29b5bd65109c1ddf11b450', '172.105.247.100', 1676322019, '__ci_last_regenerate|i:1676322019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c70b6ec0dd4d4509f8ca392523e50c092664113', '172.105.247.100', 1676322019, '__ci_last_regenerate|i:1676322019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d073d0542993a793fc9e9b1e1855d13ea066f51', '172.105.247.100', 1676322019, '__ci_last_regenerate|i:1676322019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00dd82a8c7b8c9e35c22d2ba36f03eb692fb88d6', '172.105.247.100', 1676322019, '__ci_last_regenerate|i:1676322019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16dc0a617f06fce6acba6cc5b148a82f41cac521', '172.105.247.100', 1676322020, '__ci_last_regenerate|i:1676322020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec753ae5be11cbc34fd61ee988cc404e9bdb8a8', '172.105.247.100', 1676322020, '__ci_last_regenerate|i:1676322020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2963d78c1972417768042ec92e73448d5eb0ca', '172.105.247.100', 1676322020, '__ci_last_regenerate|i:1676322020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66410354bce1e41ad3a08db90b5c78d60ac266e', '172.105.247.100', 1676322020, '__ci_last_regenerate|i:1676322020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9575aecbf76356b436ef936212af7e7bd4a122a', '172.105.247.100', 1676322020, '__ci_last_regenerate|i:1676322020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760fa372af474341950d2992bcab81b0970c224a', '172.105.247.100', 1676322020, '__ci_last_regenerate|i:1676322020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08464bf3c2e30f4d240db7ba5b0bbd0b53e21ba', '172.105.247.100', 1676322021, '__ci_last_regenerate|i:1676322020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ce92687297c2e833e8d592b000b50204f5a770', '172.105.247.100', 1676322021, '__ci_last_regenerate|i:1676322021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecb5c8a838f8a6c1e5b49d81a9f425d062a2b887', '172.105.247.100', 1676322021, '__ci_last_regenerate|i:1676322021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd65bb5359ec35c2fe41c050581585b275520e57', '172.105.247.100', 1676322021, '__ci_last_regenerate|i:1676322021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e754aaa64f1285d0ae1efc3500885b5e317d6e75', '172.105.247.100', 1676322021, '__ci_last_regenerate|i:1676322021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a633511e65b04df835c6679018aa556b2da57d', '172.105.247.100', 1676322021, '__ci_last_regenerate|i:1676322021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239cae57acba7b975a42c7373fc16fc38c3de7ba', '172.105.247.100', 1676322022, '__ci_last_regenerate|i:1676322022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4bfbf7fc9cb2aa5cbf0e01ed2cd265c2abacc3e', '172.105.247.100', 1676322022, '__ci_last_regenerate|i:1676322022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b99bf3553dee25a82b6d3d212e6fcddd23001f7d', '172.105.247.100', 1676322022, '__ci_last_regenerate|i:1676322022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c8b861eb0ff2a124163980c855fb0cc4be7f7c', '172.105.247.100', 1676322022, '__ci_last_regenerate|i:1676322022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc1f29bba0bb6f6e2f701771df9ceffc95a12fb', '172.105.247.100', 1676322023, '__ci_last_regenerate|i:1676322023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6664e0c6ddb841d3110df393f5825b00d0985cbf', '31.222.203.2', 1676323946, '__ci_last_regenerate|i:1676323946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e96b57d0ad4bbeb5a4b73e150e2ba142c1868ab', '31.222.203.2', 1676323946, '__ci_last_regenerate|i:1676323946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800d5050a02a5d8f06202771321bdf1ea3596b19', '31.222.203.2', 1676323946, '__ci_last_regenerate|i:1676323946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c889d7a2003aa19a37401497e06e314a3eba8f76', '31.222.203.2', 1676323948, '__ci_last_regenerate|i:1676323948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e834539c9ac9c2c551df511c745dadf421e9c6', '31.222.203.2', 1676323948, '__ci_last_regenerate|i:1676323948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec1202ca72e5fe337b76b19ee4f701a1bb40ac7', '31.222.203.2', 1676323948, '__ci_last_regenerate|i:1676323948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6ffc8d5d788df16697609cf0a7a39b23b2835a', '31.222.203.2', 1676325837, '__ci_last_regenerate|i:1676325837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d664306f3af12791af92cfda1e4e6ecf32423d2f', '31.222.203.2', 1676325837, '__ci_last_regenerate|i:1676325837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dab59193885e51f803d713bc3d558dfaa76be37c', '31.222.203.2', 1676325837, '__ci_last_regenerate|i:1676325837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a59f7efba36ba593a7d62ff0859be464aa8da4f', '31.222.203.2', 1676325840, '__ci_last_regenerate|i:1676325840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8895d91f1b5275aa8f5fda9c851be7758d43702b', '31.222.203.2', 1676325840, '__ci_last_regenerate|i:1676325840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('143cf5cf2ef6c91b8b368d2b3f5730b17805d7dd', '31.222.203.2', 1676325840, '__ci_last_regenerate|i:1676325840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d74832f65822003d0d7be099f2d3b71c313ca11', '172.105.247.100', 1676327418, '__ci_last_regenerate|i:1676327418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c9bffd42782e75cdac80cbf6cd9bc04e871e75', '172.105.247.100', 1676327418, '__ci_last_regenerate|i:1676327418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6238d9d94a3f3b2525675bd3a4507e83fcb2edcc', '172.105.247.100', 1676327419, '__ci_last_regenerate|i:1676327419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6aba1be92d947b2315428b5adf78a505928b88', '172.105.247.100', 1676327419, '__ci_last_regenerate|i:1676327419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc8267f527e293c42a6164487dceff7a3e117543', '172.105.247.100', 1676327419, '__ci_last_regenerate|i:1676327419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20ffe602b3a9bfefa6f4905e2e12a5bfd0fc0cab', '172.105.247.100', 1676327419, '__ci_last_regenerate|i:1676327419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4ee89b461498ecb28baf3cc31a3d7536f47a8e', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3685edfb5ffaa3c17d8c24431654a342e2fd3636', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('291695e7d06ad2dec5d13fefa7141d6fc4e46f5b', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b59222884e288ab39cdebce9d4c8186a003ba448', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd66c31aa028a9e078d61c515e8470747ffb5d6', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2b30dab3a06baad13c912858a3e9212aefa3b3', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbfc9f58a245e76a4426ca6e157d048b9cfb35ec', '172.105.247.100', 1676327420, '__ci_last_regenerate|i:1676327420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2baa0ca5722ce6191967adef1e1dc86708652d09', '172.105.247.100', 1676327421, '__ci_last_regenerate|i:1676327420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73bc9aec4c9eb7a4a62340ae1962ff8d6e2801f1', '172.105.247.100', 1676327421, '__ci_last_regenerate|i:1676327421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e254265d668b709ea0e7248c9d43140400ea15e5', '172.105.247.100', 1676327421, '__ci_last_regenerate|i:1676327421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b267e0c035787f49584989843df144904347bd75', '172.105.247.100', 1676327421, '__ci_last_regenerate|i:1676327421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7482fb5c7f001aeed6339f01e08b97cd41ce61d', '172.105.247.100', 1676327421, '__ci_last_regenerate|i:1676327421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6494ab383c2b8831b4f55472a58c79ce9ecf6b9', '172.105.247.100', 1676327421, '__ci_last_regenerate|i:1676327421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8db75d6f0493502496e58d8e374b30389971e538', '172.105.247.100', 1676327422, '__ci_last_regenerate|i:1676327421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85595e0e2f0cec4d5982ae6f8ffe6f4bdc76d932', '172.105.247.100', 1676327422, '__ci_last_regenerate|i:1676327422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a92f37780d5e2f7552126eed1797ab7e55ff26f', '172.105.247.100', 1676327422, '__ci_last_regenerate|i:1676327422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd50f7ad57b770326c1918e174772a5b051c1b41', '172.105.247.100', 1676327422, '__ci_last_regenerate|i:1676327422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7d2f6dd26150714acf0c453f2a5009ea6ef9ea', '172.105.247.100', 1676327423, '__ci_last_regenerate|i:1676327423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f963c54766437edb157daa60f26c21af6e3185', '31.222.203.2', 1676331148, '__ci_last_regenerate|i:1676331148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b9cdd31fe3d82113898d0c5327f9decdd4d899', '31.222.203.2', 1676331148, '__ci_last_regenerate|i:1676331148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9144699f148e01b959796cefcb689fc41ac5a34e', '31.222.203.2', 1676331148, '__ci_last_regenerate|i:1676331148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dddf07df30d04621f2b97f9779d86465ae6956a3', '31.222.203.2', 1676331148, '__ci_last_regenerate|i:1676331148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec22f63ef466464f084a4797a29d0bd40c0bd783', '31.222.203.2', 1676331148, '__ci_last_regenerate|i:1676331148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a85d0fbd9528490e6016190fa38139226afe99', '31.222.203.2', 1676331148, '__ci_last_regenerate|i:1676331148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e5086ef2f12b41e0b3c070e83f5a78141108ee', '172.105.247.100', 1676332818, '__ci_last_regenerate|i:1676332818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f9ad533080fcf0e4445a0d822367620aab2091', '172.105.247.100', 1676332818, '__ci_last_regenerate|i:1676332818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f87f9b0a8fd4b0ab7a9d534990c3f975d65f1fd1', '172.105.247.100', 1676332818, '__ci_last_regenerate|i:1676332818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f8386bafed3cec10b9da8beb35c91cec5ecb9fc', '172.105.247.100', 1676332819, '__ci_last_regenerate|i:1676332819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('795c861f36007bccbea999454951783223596956', '172.105.247.100', 1676332819, '__ci_last_regenerate|i:1676332819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff183b67999efc3b392320d3c8b556102032dce3', '172.105.247.100', 1676332819, '__ci_last_regenerate|i:1676332819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e087818e22a5b607e73de788bd0b7741e1e90b52', '172.105.247.100', 1676332819, '__ci_last_regenerate|i:1676332819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf3c8fe967f11ce9c4ee4d78020a40e548fe044', '172.105.247.100', 1676332820, '__ci_last_regenerate|i:1676332820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7375c01f9db6d1eeaaa48147328ff1bd4683031', '172.105.247.100', 1676332820, '__ci_last_regenerate|i:1676332820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c0a59dee7328058620ee40237ccdce4157cb3e', '172.105.247.100', 1676332820, '__ci_last_regenerate|i:1676332820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950c502b4a307ece6c16f7634c71ba241a3b3440', '172.105.247.100', 1676332820, '__ci_last_regenerate|i:1676332820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a44965f17fc7f251bc8d7babfb31c5e3f2ca51b4', '172.105.247.100', 1676332821, '__ci_last_regenerate|i:1676332820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e7279515d7b929c0f6c07686d5402fe7f982274', '172.105.247.100', 1676332820, '__ci_last_regenerate|i:1676332820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d65faa06ce8af9e17427e9ff09468a1f276a29', '172.105.247.100', 1676332821, '__ci_last_regenerate|i:1676332821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d65cece756a5a840934d59bc676601e6da6e250', '172.105.247.100', 1676332821, '__ci_last_regenerate|i:1676332821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7561446a23c7eafd5021265c0c5a9ccbf4476f', '172.105.247.100', 1676332821, '__ci_last_regenerate|i:1676332821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b17513782b9018b58e9916e4479603965172b2dc', '172.105.247.100', 1676332821, '__ci_last_regenerate|i:1676332821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5d187db24fc28bfab95d9336ac9ba1f00c3676', '172.105.247.100', 1676332821, '__ci_last_regenerate|i:1676332821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ffe832f8ea7e8005710d95e1a2712e7566d38da', '172.105.247.100', 1676332822, '__ci_last_regenerate|i:1676332822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('895c64f72dcb3d6e2845a34440bacfb858304974', '172.105.247.100', 1676332822, '__ci_last_regenerate|i:1676332822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048e9ab99b83961c1a54c5ee1da5f06778078113', '172.105.247.100', 1676332822, '__ci_last_regenerate|i:1676332822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5048a350e0aa6719ea823a91fe49c9f6ff2565ad', '172.105.247.100', 1676332822, '__ci_last_regenerate|i:1676332822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385b0773c19cfd83b2c4dcee9b97dee1693bc756', '172.105.247.100', 1676332823, '__ci_last_regenerate|i:1676332823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892c033cb8c9953783a264de6bb92918a542783d', '172.105.247.100', 1676332823, '__ci_last_regenerate|i:1676332823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc8fe3708c36a8ff7f9f0a2f4e661375430d7a8', '31.222.203.2', 1676333038, '__ci_last_regenerate|i:1676333038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e468c15a8872e0dd3e13f4350fab0ae0f138f6e4', '31.222.203.2', 1676333038, '__ci_last_regenerate|i:1676333038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81fb3e49a85537bdb6c2ae74d926598bf9794bb1', '31.222.203.2', 1676333038, '__ci_last_regenerate|i:1676333038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dd0842e84d5805f294687b4bc82653ed3721ce', '31.222.203.2', 1676333040, '__ci_last_regenerate|i:1676333040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c85a902432bd26e05595f64b0601e5281152a0', '31.222.203.2', 1676333040, '__ci_last_regenerate|i:1676333040;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eecbe5c88eab323a89d0132e917de6cff059d5e1', '31.222.203.2', 1676333040, '__ci_last_regenerate|i:1676333040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5022583f5fabcbfce53c685d03d9b46ce54787', '172.105.247.100', 1676338216, '__ci_last_regenerate|i:1676338216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3a8fcad941fedbd1f3be23bdcb22931cc61a5d', '172.105.247.100', 1676338218, '__ci_last_regenerate|i:1676338218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c0f6fa447bbeb79cdb672bbb72b205cc2375f8', '172.105.247.100', 1676338218, '__ci_last_regenerate|i:1676338218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2b01a6c835d7e25cfd24a559c1cb5e2fbbf2bd', '172.105.247.100', 1676338218, '__ci_last_regenerate|i:1676338218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a74a82c0bc86d91cc7bcf9815023194c5653856', '172.105.247.100', 1676338218, '__ci_last_regenerate|i:1676338218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5cd501e005aa67d7c23fe9e7f4084747535a47', '172.105.247.100', 1676338219, '__ci_last_regenerate|i:1676338219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbbe535e79c0a75daf2fa646a5b86755fa853633', '172.105.247.100', 1676338219, '__ci_last_regenerate|i:1676338219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d04f71fe01432dca7faf00361f9b72efd0b188', '172.105.247.100', 1676338219, '__ci_last_regenerate|i:1676338219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90385865662ac13d7b3a5edcde895b2ea3daa122', '172.105.247.100', 1676338219, '__ci_last_regenerate|i:1676338219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad56185e949a612743932b5e7c8d54dc82c66e5', '172.105.247.100', 1676338219, '__ci_last_regenerate|i:1676338219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('269041baf061542fd681b9da9b8cb44db5f6ff8a', '172.105.247.100', 1676338219, '__ci_last_regenerate|i:1676338219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149d9f00ae534d01829fb7b73e7d155f72a1b2a0', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc681509df8c4282121655f6d9a895cf9a3e8b9', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58b72f9c2918895b724148874880a055c99a023', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a1342145431e7dc6a7b7b560d746d92a446074', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('745a1d7373ac380f1a94d89ec513491075652a66', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325f9038942e0eec269542df827e101b8171e96b', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4b2bcc27a85ffb76038ff4f9936280240a1a25', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2446f8e7f9cb4d36e56c6bbecc9dc90a3e7230', '172.105.247.100', 1676338220, '__ci_last_regenerate|i:1676338220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb929bc6f87dd0ddab872910f04e760390fc187b', '172.105.247.100', 1676338221, '__ci_last_regenerate|i:1676338221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea1760412628d306afd8ef01775d64d390076ae2', '172.105.247.100', 1676338221, '__ci_last_regenerate|i:1676338221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d4a9ab6678382534364537f1ad8b7367628763', '172.105.247.100', 1676338221, '__ci_last_regenerate|i:1676338221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100033c5274d1574cf14b7a14696476ba0aed152', '172.105.247.100', 1676338221, '__ci_last_regenerate|i:1676338221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0fe2b8b43abf9d20062ce91037fdb8b4a82e23', '172.105.247.100', 1676338222, '__ci_last_regenerate|i:1676338222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c90f3d1a1a3236ac95b20517a1b1f77cc640bd', '31.222.203.2', 1676338346, '__ci_last_regenerate|i:1676338346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d3fe148bd50614106276d7d72f1fb11aae1d83f', '31.222.203.2', 1676338346, '__ci_last_regenerate|i:1676338346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff290334d170e29dfdd2bb716456df0ea07e6143', '31.222.203.2', 1676338346, '__ci_last_regenerate|i:1676338346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feeedc59f8ca7bef51ae5ea651594116b27dacb0', '31.222.203.2', 1676338348, '__ci_last_regenerate|i:1676338348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0230bab5acc4111991eb0865a70de2ab93b9ea63', '31.222.203.2', 1676338348, '__ci_last_regenerate|i:1676338348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95920d3a11e754bebcd0b8480969c4a5b613d7e2', '31.222.203.2', 1676338348, '__ci_last_regenerate|i:1676338348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12ef99b2468fe985fc7065cdfcc4ec782f4f2f2', '31.222.203.2', 1676340235, '__ci_last_regenerate|i:1676340235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31281dac6053c3de8c32570114a0fedd3c1ba25', '31.222.203.2', 1676340235, '__ci_last_regenerate|i:1676340235;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f0eaac92a49a860b98509bc00f3ff8fb835ec6', '31.222.203.2', 1676340235, '__ci_last_regenerate|i:1676340235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9155051de99d8bfc0d34724e2fce03b4b5c7f67', '31.222.203.2', 1676340238, '__ci_last_regenerate|i:1676340238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b3fe26f4f0355f957d70c56d0388c93b9638df7', '31.222.203.2', 1676340238, '__ci_last_regenerate|i:1676340238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ef85c10f919eb9fb4f6ab4b81c0a08669cef2b', '31.222.203.2', 1676340238, '__ci_last_regenerate|i:1676340238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98cce157228236d584feb16a59630b8c05b32aac', '172.105.247.100', 1676343619, '__ci_last_regenerate|i:1676343619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca89c412db545b287f599d1297a3ac033b642ad1', '172.105.247.100', 1676343619, '__ci_last_regenerate|i:1676343619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afeecf031216dd39c049bd38ccf0e65e235742c4', '172.105.247.100', 1676343619, '__ci_last_regenerate|i:1676343619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd07d9c028fe95578a3a35920a72b0050c9d2d1f', '172.105.247.100', 1676343619, '__ci_last_regenerate|i:1676343619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6726d4027dfd7971e2ea749e7f64791ac346dbd6', '172.105.247.100', 1676343619, '__ci_last_regenerate|i:1676343619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58d920a2951b8cc02ef0b4ac68c27eb62d9e18d', '172.105.247.100', 1676343619, '__ci_last_regenerate|i:1676343619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d2daad26f2e877f2b0cd61edb6066ea3fa7347f', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('448bbd849b191ad261bb7ba374a51bb4e0102043', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('849be2b835555e0ab0e676e3f2be12e0ef8f334e', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a04cb16e01570273ac5287e9bb10c65f52e90f', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61057a641abfc7263a4d5c9b94af279b6091d0f6', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b858543dd8a80a82e2ac7e12d92091a888306ee9', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c56b6d383505b3e561439292965ac42ef77567', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a757b635cf5b38490b3e4dd0fe4f983d13781e4e', '172.105.247.100', 1676343620, '__ci_last_regenerate|i:1676343620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8a25f517ad769c8b3e21d8140389d93aefc30c', '172.105.247.100', 1676343621, '__ci_last_regenerate|i:1676343621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a8b60f4ee3b99fa9ae919d1f869a507700101e', '172.105.247.100', 1676343621, '__ci_last_regenerate|i:1676343621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d88b2a14b0a53c60448e6fdf56b9a89f5cbc92', '172.105.247.100', 1676343621, '__ci_last_regenerate|i:1676343621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d3a8a1431300d4f6e73a200a1cdb3fa3cd5842', '172.105.247.100', 1676343621, '__ci_last_regenerate|i:1676343621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6eda8befc60557d37adf4170c6f069a2d39cf3', '172.105.247.100', 1676343621, '__ci_last_regenerate|i:1676343621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb97e3e21615e51aa9dae6fc10f641f96af268bd', '172.105.247.100', 1676343621, '__ci_last_regenerate|i:1676343621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac5567e9e5ce88f8ec84e7029b0d8e607a90ae2', '172.105.247.100', 1676343622, '__ci_last_regenerate|i:1676343622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3833da9ade6dbe8abc731e16be82c2d8cf473f59', '172.105.247.100', 1676343622, '__ci_last_regenerate|i:1676343622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e91cf13714628a319df22434ea2b8f3b7832f00', '172.105.247.100', 1676343622, '__ci_last_regenerate|i:1676343622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6174ea2450bd0fc42ab2e8be0741d7a6a5a672c5', '172.105.247.100', 1676343622, '__ci_last_regenerate|i:1676343622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa0648ac0b65161298b9c2733df622f661dcd68', '31.222.203.2', 1676347456, '__ci_last_regenerate|i:1676347456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236dc66a7a60aad514c769fda36e29f419b939a4', '31.222.203.2', 1676347456, '__ci_last_regenerate|i:1676347456;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb2bbda5838a1b0f4630a62a419b2e1b41bdfc5', '31.222.203.2', 1676347456, '__ci_last_regenerate|i:1676347456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41564687b9c406ab4569322aa8d34c36a004e8b8', '31.222.203.2', 1676347457, '__ci_last_regenerate|i:1676347457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7771cbf14642e168aae7ede6dfd33f3acbf52200', '31.222.203.2', 1676347457, '__ci_last_regenerate|i:1676347457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c967d70815caee69401bb472e67b8a390a8d5a6', '31.222.203.2', 1676347458, '__ci_last_regenerate|i:1676347457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b9efb9e2d327ac8a34a52c10e927834a7ad29e1', '172.105.247.100', 1676349019, '__ci_last_regenerate|i:1676349019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dfebb1281750bd1c16759e2635bcdeca0d1a6c8', '172.105.247.100', 1676349021, '__ci_last_regenerate|i:1676349021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7818a5583ded762a9dcb2aa43cf4ae1be5d562bb', '172.105.247.100', 1676349021, '__ci_last_regenerate|i:1676349021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6264e14eff93887a4d6eab52a775eff15247a843', '172.105.247.100', 1676349021, '__ci_last_regenerate|i:1676349021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3480db024491812d7a338ec1e82171fcb4acf283', '172.105.247.100', 1676349021, '__ci_last_regenerate|i:1676349021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c5bc457585d03f28a7699338513c70301c7b7d', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e34d30b827fd5fc58cfdb929894b8adde301d8f', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4638ed2b6f34cdce9f901627cb0a99a3b225a8d', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4865a0417a304962a7eec5c40f092f71038fe1b2', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2efc92d2ff636175623d4f34fc13181896041eaa', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('767810ff0aca04bb2b7a5e58fc5cf6c8eab09058', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314e9f6e3871988a5b6dd79df4885d6485bf938a', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceffb5d12064340347778e49881775fba264aebc', '172.105.247.100', 1676349022, '__ci_last_regenerate|i:1676349022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8834afdce4ce6abd64d269b0c5e20a5f9871f091', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc567888176aa257ee1a3d63d67a300617195fad', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e6c51fa6a982af1ca284113a597edd33454aea0', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c481d3827cdc14e4f56bf25d0485a3c7f7435699', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a6a66cf49b5d0feb446b23b18ed9787eede215', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed1888bd712bf9a92937ea7509f29e4b14c1176', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec25cdafdc65daa849a01614ddb04a44520d041', '172.105.247.100', 1676349023, '__ci_last_regenerate|i:1676349023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1d924a494e10edef2cdabe677dd9d6a027fb7c', '172.105.247.100', 1676349024, '__ci_last_regenerate|i:1676349023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb113a691512acfbab4d6036cd68b4808e0e878', '172.105.247.100', 1676349024, '__ci_last_regenerate|i:1676349024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e794f2af7905440ac7db163998072cd66795df3', '172.105.247.100', 1676349024, '__ci_last_regenerate|i:1676349024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6ec8a72985a26daa5faf914fbd1b41442289a7', '172.105.247.100', 1676349024, '__ci_last_regenerate|i:1676349024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5947e48af90369af2c2cd26752580ec7fb369f26', '45.120.39.89', 1676350976, '__ci_last_regenerate|i:1676350976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676265697\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676349215;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9561cc0da027306b58fa71e549ed404e3f808aad', '45.120.39.89', 1676350976, '__ci_last_regenerate|i:1676350976;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676265697\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676349215;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0c6b65f66dabe863bde2b3b4ff3622fb53095f', '172.105.247.100', 1676354416, '__ci_last_regenerate|i:1676354416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce371ecd35255b84e5bd2860506031dc6cfe9b2', '172.105.247.100', 1676354416, '__ci_last_regenerate|i:1676354416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472e207213d2135f3d995f7c82b842ddb85c4f43', '172.105.247.100', 1676354416, '__ci_last_regenerate|i:1676354416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9e055c689f988c0a5b639cb12362fa45ac76cc', '172.105.247.100', 1676354416, '__ci_last_regenerate|i:1676354416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75fec43e772300ebb23d60a5079018b27069ec1a', '172.105.247.100', 1676354416, '__ci_last_regenerate|i:1676354416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de33bd33e87b3f6d2312b3abb7ac14f32b56df02', '172.105.247.100', 1676354416, '__ci_last_regenerate|i:1676354416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edbcfef14c2228069cb4c8c9ab3c3a38343b59a7', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9075527f4183b30700d6d6ea677a533443049a89', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('784adfd7a73e3031c8401e924c17cd7f8f8f1165', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0165497f054b6b4835348cf4693e0fc18cb24fcb', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b2f33c450b5d29e05dedfcf39b08457b44319e', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c97947333d313008007cc1a89672ee703a10d6', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed15c161a5e3d1d466f3b052fc996a4ef645f8e0', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4caefda76151caf6f8faee89b21bc5c43a300f24', '172.105.247.100', 1676354417, '__ci_last_regenerate|i:1676354417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3448769ecfcb739745cf279395c783f5f6ce4f2c', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9760d0aa99fd54c9aa63acfe761b84754d66684', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec6ef1972bc32dc8528113a9f426a15438fca54', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a04a593715d15f61914827eb12e3192fd853457', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c68867e12ffa83006be78c4d23bbcaf0a57b50cd', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357459b2390fc532cbf6d2f4358eeb81b9eab937', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abad4458ab468581912ecacd3fa3caae44b1a18e', '172.105.247.100', 1676354418, '__ci_last_regenerate|i:1676354418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b9023fb7e30b5eadd96d136d79072eda088993', '172.105.247.100', 1676354419, '__ci_last_regenerate|i:1676354419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433d54d2f668f82b54fccb6ab1d4d946991370dd', '172.105.247.100', 1676354419, '__ci_last_regenerate|i:1676354419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccf4bc063932f416a9235b03d4d9b10afa7ae206', '172.105.247.100', 1676354419, '__ci_last_regenerate|i:1676354419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab73a9b9c41a7c223c9a861522ee446ec0f42c5', '198.235.24.45', 1676354688, '__ci_last_regenerate|i:1676354688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac775bbdadbcb6ce50af3e822e07c0e03d3a736', '31.222.203.2', 1676358210, '__ci_last_regenerate|i:1676358210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f1d73814ea3b0aed0e83479c262517886dbc88', '31.222.203.2', 1676358210, '__ci_last_regenerate|i:1676358210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c7ea22704afc37d45cfb9befc64413b3e4cef40', '31.222.203.2', 1676358210, '__ci_last_regenerate|i:1676358210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af61207f61e1424075b883a2208e8df0e23dc68', '31.222.203.2', 1676358212, '__ci_last_regenerate|i:1676358212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4aa222711ca8c1a7b807f05ee10a19003774bfe', '31.222.203.2', 1676358212, '__ci_last_regenerate|i:1676358212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6323e54d293ef2498e6f3a8c69f32c41ed61b688', '31.222.203.2', 1676358212, '__ci_last_regenerate|i:1676358212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b43674fca1bc898860a638c666d1e7cf564c35c', '37.111.218.171', 1676362035, '__ci_last_regenerate|i:1676362035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676359385;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92c25aff37bf2511dd6f7beebefe9dcbb0d0513', '172.105.247.100', 1676359816, '__ci_last_regenerate|i:1676359816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822fd70fa58bd62220a69f09d6efe9c55d851a37', '172.105.247.100', 1676359817, '__ci_last_regenerate|i:1676359816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dddd051ec53c07e5fa86b4b0068ef2d3af2f09', '172.105.247.100', 1676359817, '__ci_last_regenerate|i:1676359817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36fb12c4b88ded28817555ad851322a421316ee5', '172.105.247.100', 1676359817, '__ci_last_regenerate|i:1676359817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e18489db0f38dac4a8a391581703e58076bb9df', '172.105.247.100', 1676359817, '__ci_last_regenerate|i:1676359817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5863cf3215e5f84c68beb6ed72d70540f0e3626b', '172.105.247.100', 1676359818, '__ci_last_regenerate|i:1676359817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96c6dce7615d9b5edd244fc7d13c6c74b6a99782', '172.105.247.100', 1676359818, '__ci_last_regenerate|i:1676359818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff6972e2b8c701dc30086848a7b8ee268ee991e', '172.105.247.100', 1676359818, '__ci_last_regenerate|i:1676359818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f309e5d60c3539e6646b84276dd38583d2302af2', '172.105.247.100', 1676359818, '__ci_last_regenerate|i:1676359818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a131d003c831879af889fa131f436989b792fc3c', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da132a5aba487f4e529af743d860adec9211913', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f09fe771a50cabcf32c7cfa2e0c9871013d12d5c', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316bef034a44bb6a7ffd09f52ef901d37f3e76f4', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade964829799b9a343937d7fd89e604cb6728022', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7dc8a957e0dfdc113edbe113e8158c495a0ac75', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0adfd407ea2966cda24b1add6b6362b2b6dcf3', '172.105.247.100', 1676359819, '__ci_last_regenerate|i:1676359819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f892e662f3a942614a691bbb40c4ba702da845', '172.105.247.100', 1676359820, '__ci_last_regenerate|i:1676359820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b8ea5c437942a8211a1a4303762ec228042453', '172.105.247.100', 1676359820, '__ci_last_regenerate|i:1676359820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f3bfb7168b76678ded0e390da4ef4e34e7c50a', '172.105.247.100', 1676359820, '__ci_last_regenerate|i:1676359820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb52cda9119da91f41a031899c8169233ba59f9f', '172.105.247.100', 1676359820, '__ci_last_regenerate|i:1676359820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41eb53be9806155394fa4d707c6577ff16662a53', '172.105.247.100', 1676359821, '__ci_last_regenerate|i:1676359821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('115c1093c3d9df0ae850098acda4a4a9856a96fc', '172.105.247.100', 1676359821, '__ci_last_regenerate|i:1676359821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faef978732d2dbf4057074c38b14d52a99b50b1b', '172.105.247.100', 1676359821, '__ci_last_regenerate|i:1676359821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37beb08b04eda5c5d32b86c5b63e008d6e30911f', '172.105.247.100', 1676359822, '__ci_last_regenerate|i:1676359821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('181ae3951e06fa2cb13b5ee9f874a690c58ca8a7', '31.222.203.2', 1676360065, '__ci_last_regenerate|i:1676360065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29482c5f86a8241f72128ca0a42ac8e1ba0d6818', '31.222.203.2', 1676360065, '__ci_last_regenerate|i:1676360065;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbe537410c4504360524c120d53de7b8e660acc', '31.222.203.2', 1676360065, '__ci_last_regenerate|i:1676360065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1109ec5976c8823014edaca8cbd9fce400635c', '31.222.203.2', 1676360066, '__ci_last_regenerate|i:1676360066;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0748b0fef6e7e693d6af1638ea2c6d2e8eaf1b63', '31.222.203.2', 1676360066, '__ci_last_regenerate|i:1676360066;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c858406ad05af4fc45df150e4527e0414e31da0', '31.222.203.2', 1676360066, '__ci_last_regenerate|i:1676360066;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcbf241463f544e3af47dcb8358d1f75ffc84d2', '37.111.218.171', 1676365490, '__ci_last_regenerate|i:1676365490;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676365483;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9182132e67dc298b48227d328a8a2cf769300d', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4a2cfdc7d721de4583cada46e11a9cf3408446', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('667f11dfc950026ecdb4d4e874217a886180a136', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde977274728fdf7cb7d165b89e88a93d2e5a70f', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7265638b58fe9e77c0a125ef100c96746014712', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7803ea920d2e46558e6b76f13eea0d2d345b7aae', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0429fc965ff7689793398be13ac01830602295a', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a937725fce7fcad9ca53f27a92ad605a7fde5a8', '172.105.247.100', 1676365217, '__ci_last_regenerate|i:1676365217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c981da4ac335a58cfededc8c85e25aa02999c9', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17bbdeeb49b7679837e9e2b3967297edf19841b1', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c9199da4de1516c5fbd5bbb577f096e67e441f', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7acebaef15d23601ddbbdf1466706d7b1f3ea5', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a4cf3d08f44a785f5bb495a13cc35025b723c0', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65350c105dc8400e0cde9ab9bdb5f531f851216a', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ed5eb0eba7fdd3e3ae084c38c827004dada4e4', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee24673cc12aa90698f84f3e9c01616b84dfe7d', '172.105.247.100', 1676365218, '__ci_last_regenerate|i:1676365218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb4eba0bf415c0f18b2a574649414217c948b91', '172.105.247.100', 1676365219, '__ci_last_regenerate|i:1676365219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ac1a4afd6de53cb7c9453649f5344de70b43c4', '172.105.247.100', 1676365219, '__ci_last_regenerate|i:1676365219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0edeffb8d1de4d3533417d264152a3c77ed441cc', '172.105.247.100', 1676365219, '__ci_last_regenerate|i:1676365219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa1bff1ca1f44f40d0f1949f7f28250882aef627', '172.105.247.100', 1676365219, '__ci_last_regenerate|i:1676365219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3afc5c65d5297751f5eae5d0219c28a459f4a4de', '172.105.247.100', 1676365219, '__ci_last_regenerate|i:1676365219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f11b7bbf747a8b9d2c731601e97628513aabf37', '172.105.247.100', 1676365219, '__ci_last_regenerate|i:1676365219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('979b9940af5a6e66841a3494eb3e6340ed99e289', '172.105.247.100', 1676365220, '__ci_last_regenerate|i:1676365219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2118bd8b2952d8d845da67946af3e2629d52f82f', '172.105.247.100', 1676365220, '__ci_last_regenerate|i:1676365220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97360a113fce935a2c04618ca0f49320cc99e882', '37.111.218.171', 1676371350, '__ci_last_regenerate|i:1676371350;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676365491;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfdde9a81bb6f44d24085c946330f66fbe41675', '31.222.203.2', 1676367255, '__ci_last_regenerate|i:1676367255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3fe111058f9a71e9d1cbbd7acc088ffa3ac3511', '31.222.203.2', 1676367255, '__ci_last_regenerate|i:1676367255;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c19769bffaf8a15afffa92e71b886534257cc8', '31.222.203.2', 1676367255, '__ci_last_regenerate|i:1676367255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2e03aa8ab481fdb13dc563e184c15bb7a788f9', '31.222.203.2', 1676367257, '__ci_last_regenerate|i:1676367257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d409c31a6329d37d65ff849c712e22144297df7', '31.222.203.2', 1676367257, '__ci_last_regenerate|i:1676367257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802f85a280b5da10d9fe7385183910976d29f981', '31.222.203.2', 1676367257, '__ci_last_regenerate|i:1676367257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39db24de094c4aa1c6e6ab8758ace9228e44e528', '31.222.203.2', 1676369116, '__ci_last_regenerate|i:1676369116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53ef2991a7edc3be8f476945ee56f2bb92ec3ad', '31.222.203.2', 1676369116, '__ci_last_regenerate|i:1676369116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8934e3fa975a4e714481a08f0800b9f5d3f606', '31.222.203.2', 1676369116, '__ci_last_regenerate|i:1676369116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab6d539251ea68877e751f0fc3e5b116bf632a1', '31.222.203.2', 1676369116, '__ci_last_regenerate|i:1676369116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d480979bb8ed2ff699403d4e246ae0a02b021b4', '31.222.203.2', 1676369116, '__ci_last_regenerate|i:1676369116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba0a51e2d33ad6e315b027d170b06a6f13f3a6c', '31.222.203.2', 1676369116, '__ci_last_regenerate|i:1676369116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b1d376a5a0ed7e428c9db7e4b25fa617c37d6b', '172.105.247.100', 1676370616, '__ci_last_regenerate|i:1676370616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156482f2caabd7ae995efa0b90d322e4f87f15c8', '172.105.247.100', 1676370616, '__ci_last_regenerate|i:1676370616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08f8d8d52f885573f356d347a4e4f46e1c7d042a', '172.105.247.100', 1676370617, '__ci_last_regenerate|i:1676370617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da61eb3a8605d126458af2ce7222b8d01a522793', '172.105.247.100', 1676370617, '__ci_last_regenerate|i:1676370617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2036c72512a70b4291979e002c404b54862d271b', '172.105.247.100', 1676370617, '__ci_last_regenerate|i:1676370617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9ce55fb70114df5598f799fc972b4fc27ee3f1', '172.105.247.100', 1676370617, '__ci_last_regenerate|i:1676370617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf7f87f15ef8a4763dcc33930153170976e2c4a', '172.105.247.100', 1676370618, '__ci_last_regenerate|i:1676370618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3968e6b209c7c4e711a848117a380b166a32f314', '172.105.247.100', 1676370618, '__ci_last_regenerate|i:1676370618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460c4c5e5224883c83e8ae8c597bb45c09473704', '172.105.247.100', 1676370618, '__ci_last_regenerate|i:1676370618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b15c6205e7e11f3c5fd6d1739cf7ab9863a8bf', '172.105.247.100', 1676370618, '__ci_last_regenerate|i:1676370618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5408d7df6b74f7c86c31364bf69c8d776d8da53', '172.105.247.100', 1676370618, '__ci_last_regenerate|i:1676370618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1501a4645590b0d58b3c38fb6b6f45960da97177', '172.105.247.100', 1676370619, '__ci_last_regenerate|i:1676370619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d5d372981ab2680de5221c8d4f5426c0b4fd03', '172.105.247.100', 1676370619, '__ci_last_regenerate|i:1676370619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd7353eb1c9d5362afbf326806eb6ebda61a129', '172.105.247.100', 1676370619, '__ci_last_regenerate|i:1676370619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e50c040664c87e5631700d24a85fd318813d9f6', '172.105.247.100', 1676370619, '__ci_last_regenerate|i:1676370619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a536e972fe6870805dc729a6a7afb154769510c7', '172.105.247.100', 1676370619, '__ci_last_regenerate|i:1676370619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('392c16b7d822ba52439fdb60d5db119362a12c21', '172.105.247.100', 1676370619, '__ci_last_regenerate|i:1676370619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f3c1b1a9f9e3b60b900bfe552dff67fefd8396', '172.105.247.100', 1676370620, '__ci_last_regenerate|i:1676370619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f3c520d6a8091295d47e0ea3fa707f153139ee', '172.105.247.100', 1676370620, '__ci_last_regenerate|i:1676370620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8750d07f9be3a4a000112c7b1a2bfb7ec61a9b5d', '172.105.247.100', 1676370620, '__ci_last_regenerate|i:1676370620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68c9c5683bac5418f5bdd59a642813c1164fad81', '172.105.247.100', 1676370620, '__ci_last_regenerate|i:1676370620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68927ff0a087474fc98a12709d0ec46e33992d8c', '172.105.247.100', 1676370621, '__ci_last_regenerate|i:1676370621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd1b133aebb4d591fba001d859ab1ed472511e2', '172.105.247.100', 1676370621, '__ci_last_regenerate|i:1676370621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7263bc51a8968ac2d095247433caaf1fb8496d6', '172.105.247.100', 1676370621, '__ci_last_regenerate|i:1676370621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0ab1d0a07390906b5333126c08002098c6c763', '31.222.203.2', 1676370836, '__ci_last_regenerate|i:1676370836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6a1f0d6b5eb5581e1e5316eaf91e59760e5b92', '31.222.203.2', 1676370836, '__ci_last_regenerate|i:1676370836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a725c8ab7a3d19de88178c76259257d502af8e61', '31.222.203.2', 1676370836, '__ci_last_regenerate|i:1676370836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7ac3ddebea96e84185bd0112fa6ba10fe7ab3d', '31.222.203.2', 1676370838, '__ci_last_regenerate|i:1676370838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c0d5e6dedd699a4bed592c8bc7348f9cdf0c7c3', '31.222.203.2', 1676370838, '__ci_last_regenerate|i:1676370838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef88009feca138d780ac5c8b75d1fa6986251a2a', '31.222.203.2', 1676370838, '__ci_last_regenerate|i:1676370838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8157561b4f928338f3b1202037484451aab7861a', '37.111.218.171', 1676373316, '__ci_last_regenerate|i:1676373316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676371350;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87608d3054166ac293023d2be77f123d4f9fd828', '31.222.203.2', 1676372665, '__ci_last_regenerate|i:1676372665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e1118d64eb76148b2d8fb1f2d93c363ac5e7ae', '31.222.203.2', 1676372667, '__ci_last_regenerate|i:1676372667;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d603a9afe1cf0ba3b616bef2800354f6e95573b', '31.222.203.2', 1676372667, '__ci_last_regenerate|i:1676372667;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e00f43e7a101c6dc2db75ab08134ee7f0da8dd8', '31.222.203.2', 1676372667, '__ci_last_regenerate|i:1676372667;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c0b219b1199250ee4d4265de831df0af4c5250', '31.222.203.2', 1676372667, '__ci_last_regenerate|i:1676372667;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d272c7be57abb96e0b3b117e5477adae643a478', '31.222.203.2', 1676372667, '__ci_last_regenerate|i:1676372667;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0d455c3588cec4132de96ed196555cf4cd4438', '37.111.218.171', 1676373901, '__ci_last_regenerate|i:1676373901;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676373398;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2270294092f1460846a4e14252d1b87b952045', '37.111.218.171', 1676377788, '__ci_last_regenerate|i:1676377788;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676373901;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0211153746adb90f71a7f5c88e3387c19696e526', '205.210.31.49', 1676374135, '__ci_last_regenerate|i:1676374135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95174df6af420ba64f18e5d4ef46f33d03b4917', '172.105.247.100', 1676376018, '__ci_last_regenerate|i:1676376018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5bcc4d22036157d8f8f04d8188823f81ea8c2c', '172.105.247.100', 1676376018, '__ci_last_regenerate|i:1676376018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5a78870366fc364522e02cf0d1b369a56b4ce6', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('270b6e75647f71bfdeccdc12afddcd68d2cdfe70', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f0226538ddecc3dd74b5203f65673c3ef77814', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b786030c526011746d90dac71d9ddfffe3b89d00', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a9d12209b3143e3a30342af75b951682c7b4b1', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3937e71335f046ab7213e97abd0b067fd4357b', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70de81bc4dca8ebe0a708be5fff2a7497a45e79', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6acd20aa6f1e5d6e230655eba3a7a20c261a113a', '172.105.247.100', 1676376019, '__ci_last_regenerate|i:1676376019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c30f23c7374768c1f29ba9f3776c5eb75098f8', '172.105.247.100', 1676376020, '__ci_last_regenerate|i:1676376020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913dafc3bdfeecc662a6f8c8c57a302332e1531c', '172.105.247.100', 1676376020, '__ci_last_regenerate|i:1676376020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91720aa50e883504028d9ba02bd83517b6361a8', '172.105.247.100', 1676376020, '__ci_last_regenerate|i:1676376020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b316b6079a5f301e9f923766d02f0dc95ad42551', '172.105.247.100', 1676376020, '__ci_last_regenerate|i:1676376020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91f5351b778d0cd6c0c4211222d464d11fa64d75', '172.105.247.100', 1676376020, '__ci_last_regenerate|i:1676376020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('152359cd2f28ba977f2455246083c55257308ec5', '172.105.247.100', 1676376020, '__ci_last_regenerate|i:1676376020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5788f783136238a069bd7c8edc5ea180142e9ee5', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbaa8a0797479b26b94c9e5b3c0c2cd644acc965', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fcf6148901a7bf9ac433d9c8b18d9d005215381', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e5a5ce4d8ba58b25ecd3461607b14460ef1c23', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c3bfb7802e983da5bf3ce3f247dc477f57ccc7', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f319601f01ab8199ea8eea07ba1de568128c28b', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c3a766e63dc8c31313a811c0942c2d9e10a0527', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba5ca16e2702e8c80e3e071ad812d5c2975e6a8', '172.105.247.100', 1676376021, '__ci_last_regenerate|i:1676376021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e7a971cd067cdc0bee6b4879cd7e9451dfb896', '31.222.203.2', 1676376148, '__ci_last_regenerate|i:1676376148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93b26c14621c89bbb3f8d341b05cab682fb00d63', '31.222.203.2', 1676376148, '__ci_last_regenerate|i:1676376148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def1ae185edfdff715c93add6ae1376f0354bdf3', '31.222.203.2', 1676376148, '__ci_last_regenerate|i:1676376148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('929de04d3275c80c67ebbfb00c52c79fd5070fbb', '31.222.203.2', 1676376149, '__ci_last_regenerate|i:1676376149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89321115c9839fe1eff1bdb04aa5564e1f6b158', '31.222.203.2', 1676376149, '__ci_last_regenerate|i:1676376149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990b214da6b7e9eb6d621328c608d9bde85af976', '31.222.203.2', 1676376149, '__ci_last_regenerate|i:1676376149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfbcaf478e13e76809273284a1a29b93bb762cbb', '37.111.218.171', 1676379604, '__ci_last_regenerate|i:1676379604;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676377927;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4d718f7b2906bb069fad97950d95de4c2adbee', '31.222.203.2', 1676378099, '__ci_last_regenerate|i:1676378099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bff059e09db2cd9e4899733c873e010f9c026e4', '31.222.203.2', 1676378099, '__ci_last_regenerate|i:1676378099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416ea5405a76ccf8cc13cd816a2a65ede158308f', '31.222.203.2', 1676378099, '__ci_last_regenerate|i:1676378099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('269ff74d16cf40f7b299d9f9186793f03ddba4fc', '31.222.203.2', 1676378099, '__ci_last_regenerate|i:1676378099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55540b89cb2db6f8bd3c7efb04370a8fdc2a1b80', '31.222.203.2', 1676378099, '__ci_last_regenerate|i:1676378099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74289f2d445d8c4fc3af0142e1ac7d099d89561a', '31.222.203.2', 1676378099, '__ci_last_regenerate|i:1676378099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('609ec9059049df0706437e23ea4ebaa0cca073c9', '37.111.218.171', 1676380974, '__ci_last_regenerate|i:1676380974;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676379610;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f35f8463b7e6e99f6e0e587dfbc457813804ef', '37.111.218.171', 1676383430, '__ci_last_regenerate|i:1676383430;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676380988;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d850815ab06938f0cb5bdc6f0f01886441f6f2', '172.105.247.100', 1676381418, '__ci_last_regenerate|i:1676381418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e500403dfb8f3a2636aad02d29a90059fa63da', '172.105.247.100', 1676381418, '__ci_last_regenerate|i:1676381418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37372ea1f2afeb572761faca57147ebcf646a9b3', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513457cd17fcd8ddf9f4d2d13100840d3f422020', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3df1bf1c5d84529e0dd58c31e8764c0716970d7e', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1c6eef7cfe60678e8cf2f61699c0371a0a076f', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b7eb0f0324d9a42a067a34a3ab46a3b8098e55', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a51526fb8e9c9dc5e56b75ec2be038b06df062', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b0ed258d913451410a5040ae37bf028fa12beec', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67889b711e6a8eba30aeeaceb10768a74acb7318', '172.105.247.100', 1676381419, '__ci_last_regenerate|i:1676381419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91a18e1462a157ada80dfac1fe47932a6b6c402', '172.105.247.100', 1676381420, '__ci_last_regenerate|i:1676381420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6f191843f5fb21850b281082fbb05bd7e55312', '172.105.247.100', 1676381420, '__ci_last_regenerate|i:1676381420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f283d9685ce83ed8ccf0c7a4220cf42559b4a7', '172.105.247.100', 1676381420, '__ci_last_regenerate|i:1676381420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281526126138d665c791caa036089f5de1fec889', '172.105.247.100', 1676381420, '__ci_last_regenerate|i:1676381420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016e371eda369e37df9d9f0e3f0ffa6edc487aba', '172.105.247.100', 1676381420, '__ci_last_regenerate|i:1676381420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65dbf6a571f63a4d4e60d813fc342e532c0f0799', '172.105.247.100', 1676381420, '__ci_last_regenerate|i:1676381420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d812b301240adfe2f9e3c373fb537f0771a830', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89738a834599cb13725adcf54ce3aa8259da493', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6355e9d8f5d14abad4b4f669a4fb2470220c971d', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b6a649b3b1e981faff53cebef8d52ad6a555dac', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16eaa9c068ca27a95f6ce01b0cd4835e8c59a6ac', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10b4e582ab5d7200481fd31710b6a1fa9de190c', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d12db222914568538144ac451dd0f41d05e1683', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c46421a51ada0a1efdfb788702b14ea156180c2', '172.105.247.100', 1676381421, '__ci_last_regenerate|i:1676381421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcae6423cbf17babf42c0e06aef18970b93caa2e', '31.222.203.2', 1676381555, '__ci_last_regenerate|i:1676381555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30dfd738d49e768c2a8d3884d2c61dc76f923da2', '31.222.203.2', 1676381555, '__ci_last_regenerate|i:1676381555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97f1ca9968f4a7a565f077b0f264706b31458c2', '31.222.203.2', 1676381555, '__ci_last_regenerate|i:1676381555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c3f823f9ad5a2ced693fd382021a8d946a7e78', '31.222.203.2', 1676381557, '__ci_last_regenerate|i:1676381557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0973cb41d9d56dfc41fde01b5d36917ec3c6e3f4', '31.222.203.2', 1676381557, '__ci_last_regenerate|i:1676381557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add60cbdf8065646fa5d02067d4e3a4708efc9ba', '31.222.203.2', 1676381557, '__ci_last_regenerate|i:1676381557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096ee8693c5298d39824c9b925c461ad2c43a795', '37.111.218.171', 1676385569, '__ci_last_regenerate|i:1676385569;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676383614;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfdfaba578f1f5fe2409f873585597ce230ad85', '31.222.203.2', 1676383514, '__ci_last_regenerate|i:1676383514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991e61790bcc8fa0663170988f4e4afb3ce393a7', '31.222.203.2', 1676383514, '__ci_last_regenerate|i:1676383514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96fadf6b7306d1636c7c809f8b45f95f83691062', '31.222.203.2', 1676383514, '__ci_last_regenerate|i:1676383514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f202fd89c188779ea3f805571bd7c4af9c1d19e', '31.222.203.2', 1676383514, '__ci_last_regenerate|i:1676383514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19088d55000e7482e4a0978e60a741344b95348', '31.222.203.2', 1676383514, '__ci_last_regenerate|i:1676383514;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2905ad683bf23d40dca59e73596fe651e2708db', '31.222.203.2', 1676383514, '__ci_last_regenerate|i:1676383514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f85a17d7fef7fdcf4447d9c2e81fefcc1abd8cb', '37.111.218.171', 1676386134, '__ci_last_regenerate|i:1676386134;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676386128;register_id|s:3:\"341\";cash_in_hand|s:9:\"2640.0000\";register_open_time|s:19:\"2023-02-13 21:10:29\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc895b4397bac52b1d64b8b2fb1fa2199687ebf', '37.111.218.171', 1676386153, '__ci_last_regenerate|i:1676386134;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676349207\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676386152;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d2aef8802416ef6a4185248cead86c0051a602', '172.105.247.100', 1676386822, '__ci_last_regenerate|i:1676386822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b4678bfc255b5682a924755624ab1913119dd9', '172.105.247.100', 1676386822, '__ci_last_regenerate|i:1676386822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541bb579852d7655e54d2d75a6c0d609df2db778', '172.105.247.100', 1676386822, '__ci_last_regenerate|i:1676386822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3875a2a437313cd6485d1ad4e45da8dceeaf12f', '172.105.247.100', 1676386823, '__ci_last_regenerate|i:1676386823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3969800d86c7537b2e1e81108f13b485645e17fc', '172.105.247.100', 1676386823, '__ci_last_regenerate|i:1676386823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01406ad6db44504ee700af9cb00e83610f9d0ca', '172.105.247.100', 1676386823, '__ci_last_regenerate|i:1676386823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7a0c5e0011bb2040399141c7637599c69964e2', '172.105.247.100', 1676386823, '__ci_last_regenerate|i:1676386823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeebe0d837baf1787887b6df558272dbb44ebd58', '172.105.247.100', 1676386824, '__ci_last_regenerate|i:1676386824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf463afed731da769637eaaaefa2fa523a3e4c1', '172.105.247.100', 1676386824, '__ci_last_regenerate|i:1676386824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23328a2580698d4b64aabe48bee8a28cf5da2a7f', '172.105.247.100', 1676386824, '__ci_last_regenerate|i:1676386824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff811123db976fb1c262ba68b9b305759ef90c3', '172.105.247.100', 1676386824, '__ci_last_regenerate|i:1676386824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592377c173684a3945b3d08455bf20e891902f46', '172.105.247.100', 1676386824, '__ci_last_regenerate|i:1676386824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('140886d1c8866bac8694c19e94c229d2db21394a', '172.105.247.100', 1676386824, '__ci_last_regenerate|i:1676386824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5399631053ec45167f58c2279086c1de6e458ca5', '172.105.247.100', 1676386825, '__ci_last_regenerate|i:1676386824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6afccb6be40d67f94fad8c9ed70fcb127766aec', '172.105.247.100', 1676386825, '__ci_last_regenerate|i:1676386825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('026ac7276f7a33e69f406c9ba9df02549733f958', '172.105.247.100', 1676386825, '__ci_last_regenerate|i:1676386825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0ab6515674b841db16e2f1ee74dbe140e9db48', '172.105.247.100', 1676386825, '__ci_last_regenerate|i:1676386825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d609abcac538e5a3ab426976b03aa31d3f0d721', '172.105.247.100', 1676386825, '__ci_last_regenerate|i:1676386825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961961b63530604e03430e903921b18f08cd6b93', '172.105.247.100', 1676386825, '__ci_last_regenerate|i:1676386825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338c72a5d2c2239c9dee955e8ba1e6a6d5fa40fe', '172.105.247.100', 1676386826, '__ci_last_regenerate|i:1676386826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0ba503e9c471fdd4bdc88eff0aa4b32d28a69f', '172.105.247.100', 1676386826, '__ci_last_regenerate|i:1676386826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c69ae86522599b7784e6c621ad1274d665f7b7ab', '172.105.247.100', 1676386826, '__ci_last_regenerate|i:1676386826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac5f5d1b74d090823396172847be7bb157e3dcc', '172.105.247.100', 1676386826, '__ci_last_regenerate|i:1676386826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73a5eddcdb0a49040fc3b57e8f52cb6eef8d4f5c', '172.105.247.100', 1676386827, '__ci_last_regenerate|i:1676386827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db78afb53c43478d0946a0cedfce380bd1b40a5d', '190.107.177.239', 1676389157, '__ci_last_regenerate|i:1676389157;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf417170dec93419100fedbfe89b4c706990e7b2', '190.107.177.239', 1676389158, '__ci_last_regenerate|i:1676389158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfb7e3c3f418a76c5dcda140425f4a87b4935e5', '190.107.177.239', 1676389158, '__ci_last_regenerate|i:1676389158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc18d108db91658b8b9b6ff8132e1ba08362190', '190.107.177.239', 1676389158, '__ci_last_regenerate|i:1676389158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac3494a0521a0a2cca4e301b25728d667548324', '31.222.203.2', 1676390576, '__ci_last_regenerate|i:1676390576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3e2bb728d9758b3b4f480ca84d4680879ac2cf', '31.222.203.2', 1676390576, '__ci_last_regenerate|i:1676390576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996420b6cb76890b089d5beefe9fa11f83b06e05', '31.222.203.2', 1676390576, '__ci_last_regenerate|i:1676390576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7fbf5236777b9f39feaad307e8ff680ef87a4b', '31.222.203.2', 1676390578, '__ci_last_regenerate|i:1676390578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2156492970c6928b70f395bf5a7077034d4ef1', '31.222.203.2', 1676390578, '__ci_last_regenerate|i:1676390578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9736f4a5fd9dc27c347d34d05f6cad9a693b500', '31.222.203.2', 1676390578, '__ci_last_regenerate|i:1676390578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7424c186844f60385a7b76133d0e1edbc96014', '51.255.64.58', 1676391414, '__ci_last_regenerate|i:1676391414;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b946dabf78e66a9772f9396b279ed39724721a04', '51.255.64.58', 1676391421, '__ci_last_regenerate|i:1676391421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d238d34df8473ae636d6f4434ded3bcecff8f4ce', '51.255.64.58', 1676391428, '__ci_last_regenerate|i:1676391428;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05aeca08bd080cb0786a9bd3a357896890ed4c4f', '51.255.64.58', 1676391433, '__ci_last_regenerate|i:1676391433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5a7a545f4a12378c8db13b27aee39ddf6def60', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ca20609e6caf907e0833c6d9b0ed2e8273a041', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca26024e667bd586d976f7150664327c0c035e10', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00cc3950a4baada36b02f19c0f375457461e75ae', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ac4ed5f838915d6f061c712238f87f819cf214', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd30d08b60530c8960c59ddee52ed5b611ee7cd9', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42c72646990de99da7f5b1bfe36caaa35aff492', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9de11097dbf0b39cd2112b90c96d5292a41e065', '172.105.247.100', 1676392217, '__ci_last_regenerate|i:1676392217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342013c9dd84248e51e9f178586a16ac74ffb153', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1599ccdab5241276dfbeb60035ce608d370d4f62', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0567e581efa904a2e76a28eba9de17dea35bdd', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759c161aadfb5499d5b7ccd3702161d86aaf0965', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2559da70cf4333c97987cbf61f6c928282b3d8', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c88417432961be6f573293a2166f5321f5f9ca', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d323d2a9e840b4d5a239aaffa022f9be7cf3a09', '172.105.247.100', 1676392218, '__ci_last_regenerate|i:1676392218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5958dfd5bf16d4ba029c0648b6276d9dd6522a0', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f0612293ec439590966e5215310dfa54c3e4b5', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245a8113ce351547dc873f2ce37718c5c5e8dc83', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b724cf762d459b1c7eb3d2256b3e2381aec5e5f6', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc1288f1044e14525e56d001ea4603b11308e5d', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99bd867592af8f57c39c31ff15838322fe98f931', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14413f17db58d117b6c8f77c49604e7e25f0e364', '172.105.247.100', 1676392219, '__ci_last_regenerate|i:1676392219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f75e1923b2c601eb04f058658597e1049c194c', '172.105.247.100', 1676392220, '__ci_last_regenerate|i:1676392219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a3bdc16ffeb4ed21d9b21887541d652db0125e9', '172.105.247.100', 1676392220, '__ci_last_regenerate|i:1676392220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcffd7caf5c73dff7daafa7da63fa9cfaaf5d467', '95.167.178.158', 1676394984, '__ci_last_regenerate|i:1676394984;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c39e1d6b08fda004150d1ad2faddc0d57bd8b78', '95.167.178.158', 1676394987, '__ci_last_regenerate|i:1676394987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7fad511ca63fa897623d29e93b3f7ed0bc7699', '95.167.178.158', 1676394987, '__ci_last_regenerate|i:1676394987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0f0968f7f492e646295078dbde1f563309ce9a', '95.167.178.158', 1676394988, '__ci_last_regenerate|i:1676394988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d783e950e90c03fce2d5edb99a21fb5f4cab17d', '172.105.247.100', 1676397617, '__ci_last_regenerate|i:1676397617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c3001755469a2ceee2d390a77e21e1f33a44e8f', '172.105.247.100', 1676397617, '__ci_last_regenerate|i:1676397617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcfeb312d5f951b5f4fda43b0aebabf9033e8481', '172.105.247.100', 1676397619, '__ci_last_regenerate|i:1676397619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5306ddce90e63cf82a00176cf3071452978fcfc7', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4065fd6f383de231855f4b1da6681a08e3598b05', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f85208271cf7f52f8601ab58b62481fdb4959d', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb3f96bc7818fe1d9794b6bae3f67272be90aa4', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00aeaae3fc825613ff16b08b0576f0b102c6d6a3', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e02af95f81c32c6e69ce63936bde0d0eaf5f5c', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8df1026bc3e399a65ed10fc010e14742fd1ac9', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b430e2dffd91aee628a87d85ef4738dcb86cb865', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759ea86e71e6d48c656fdc6b64d768c2e7173913', '172.105.247.100', 1676397620, '__ci_last_regenerate|i:1676397620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5dc982c07a4adf4c6384de84d4c806737525e9', '172.105.247.100', 1676397621, '__ci_last_regenerate|i:1676397621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302ddd13123e41a5f18613f6682fe77cff9ec7a7', '172.105.247.100', 1676397621, '__ci_last_regenerate|i:1676397621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6c485fd8f404b90f7b87d07c7b45a57835cf80', '172.105.247.100', 1676397621, '__ci_last_regenerate|i:1676397621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6be226cf039fba727ed7dc6f23b165207a512c6', '172.105.247.100', 1676397621, '__ci_last_regenerate|i:1676397621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81148e72e9c9624e75ea5dd036702b29acf7736', '172.105.247.100', 1676397621, '__ci_last_regenerate|i:1676397621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e913639027dbfb38f533e007d370fc7c421c62f', '172.105.247.100', 1676397621, '__ci_last_regenerate|i:1676397621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20336ee89420fcb2ecec4a2281a5e29ad69f81f', '172.105.247.100', 1676397622, '__ci_last_regenerate|i:1676397621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce9003d87d9e87cc2dbe4082d38c15c1b7bef4a', '172.105.247.100', 1676397622, '__ci_last_regenerate|i:1676397621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3869fe0fb84fb86ca0ad35ef9d71015074299fae', '172.105.247.100', 1676397622, '__ci_last_regenerate|i:1676397622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54936fee77b9d51b778b56a849bd9f054c51ad4f', '172.105.247.100', 1676397622, '__ci_last_regenerate|i:1676397622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('536bc70e1fa25b06edd41bbf193446e57c85fee7', '172.105.247.100', 1676397622, '__ci_last_regenerate|i:1676397622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d3268fde3171fcf3abe2c4a012fa4f23ebd125', '172.105.247.100', 1676397622, '__ci_last_regenerate|i:1676397622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1649476aceb9d292a61094233da6bd41ccbffa', '31.222.203.2', 1676399573, '__ci_last_regenerate|i:1676399573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee7407d7dd9fd584ddcec8b4b4f48a9451507b0', '31.222.203.2', 1676399575, '__ci_last_regenerate|i:1676399575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d1772ebabc50dfe39c48a118ec7b837d2278d9', '31.222.203.2', 1676399575, '__ci_last_regenerate|i:1676399575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912b7182a92ef2a2318639fa3c0218c5520fe0e3', '31.222.203.2', 1676399575, '__ci_last_regenerate|i:1676399575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377043be3861ddbcfb95db5ff8c1ef4009cc6c75', '31.222.203.2', 1676399575, '__ci_last_regenerate|i:1676399575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fc5167744f1fd86cd58fa08e1d9c97a0b3d576f', '31.222.203.2', 1676399575, '__ci_last_regenerate|i:1676399575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806623f88f630c0abd9b9f3f4d4dbb1b941400ea', '31.222.203.2', 1676401504, '__ci_last_regenerate|i:1676401504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f11d9e62dd7dc5b2b54de688e22a1b6fd35c65c', '31.222.203.2', 1676401504, '__ci_last_regenerate|i:1676401504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80603fb9594028e0f7b4e609468a3d615fb98ce', '31.222.203.2', 1676401504, '__ci_last_regenerate|i:1676401504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d211d05eaad240f7e6f7338d5545e28118795b', '31.222.203.2', 1676401504, '__ci_last_regenerate|i:1676401504;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ccaf0ae9f642e085f4205e7949cca3bf824d2d7', '31.222.203.2', 1676401504, '__ci_last_regenerate|i:1676401504;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('078503e43a077e294484b2ebce87b53b59da857b', '31.222.203.2', 1676401505, '__ci_last_regenerate|i:1676401505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4f3938d2e8de3eb875310af4866648f9f05fed', '172.105.247.100', 1676403018, '__ci_last_regenerate|i:1676403018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cccc437248078d5791c236de721b152a51cc1a77', '172.105.247.100', 1676403019, '__ci_last_regenerate|i:1676403019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5355d0891ed9a75cd74871e284845052c2b49d61', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8a3fa8dcf1aaf0cc42192d6a68b8555b8e920c', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6707e964ecba3aa3a658a6377f3fad4796bdda4b', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f5a78353f61c58e9ed059f8db6cb5713b7bbf6', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78fbcd9a0060d224f97f0d75d9e08f91c165e584', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f431fb58caea67ba1da5e665d795c1ec810950a', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00cba0753cb794c6adfa0e285daa4c0c246f3f3a', '172.105.247.100', 1676403021, '__ci_last_regenerate|i:1676403021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37db463cdcc94c25ac3520a858b0cea16146d586', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd89957b69397c8961eacfba07badbed5d7de845', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20215bbe6d4db02ea10e596e3ad842f840fd2337', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e0374f665f80e20767aca6e60b9f0e4f5c97bd', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f1d6a710a1f7051495ce92ff168c25599ad135b', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19c849b0043d8fc6d93427ee5b4079369ec6a757', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b5dd7395a95cccf51d221662de3cff4412ff6e', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eaaf88589c07b639336da1586b5e7a8ec3ec1c7', '172.105.247.100', 1676403022, '__ci_last_regenerate|i:1676403022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9283a40a078e3420e52fe5099fab7594953472af', '172.105.247.100', 1676403023, '__ci_last_regenerate|i:1676403023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdefe1dbb76fe3c41bdd61ea74af3c725476c38e', '172.105.247.100', 1676403023, '__ci_last_regenerate|i:1676403023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263a3b02e39e7b5bb5244456f36f88cc5a02d1f9', '172.105.247.100', 1676403023, '__ci_last_regenerate|i:1676403023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42fd803fd8f8d749f8954276b352af72ed1d08c5', '172.105.247.100', 1676403023, '__ci_last_regenerate|i:1676403023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17636ea9bd76444262c92cf061d496f5b84d2d2d', '172.105.247.100', 1676403023, '__ci_last_regenerate|i:1676403023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379b1eaabb4f2a5e5c4e6bc0214be3be6c914c96', '172.105.247.100', 1676403023, '__ci_last_regenerate|i:1676403023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0170fa3058467fb721adec0f71fd26d4c63214ae', '172.105.247.100', 1676403024, '__ci_last_regenerate|i:1676403024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7e070021248e227802735ae206eda4bd414b32', '142.4.22.16', 1676406034, '__ci_last_regenerate|i:1676406034;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f5ef69db9310d52c90eb4b5bcd7fe037c5d2720', '142.4.22.16', 1676406034, '__ci_last_regenerate|i:1676406034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de60c53128719aeb790a185faffea26e64e922a6', '142.4.22.16', 1676406036, '__ci_last_regenerate|i:1676406036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ab442031dfabdcdbc365b938d4d38134e4b029', '142.4.22.16', 1676406037, '__ci_last_regenerate|i:1676406037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050ccc9929b816087a861a9c0c416a92719b1608', '38.64.56.46', 1676406807, '__ci_last_regenerate|i:1676406807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('748021b2d3efb8eb29665e7953dfe6aaa20f3780', '38.64.56.46', 1676406808, '__ci_last_regenerate|i:1676406808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b234147ccad34819632234c9e0b64b8beb0490c', '38.64.56.46', 1676406809, '__ci_last_regenerate|i:1676406809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13194682de713e8370725205d952fd97fa90700b', '172.105.247.100', 1676407216, '__ci_last_regenerate|i:1676407216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5dc17b64daa419fd87b5d935de6a243fa3f0f8', '172.105.247.100', 1676407216, '__ci_last_regenerate|i:1676407216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a6b01eb3320668180a97a28e949bfa0321c71e', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7beaae85130e7f5483e47589e66efc8410cf47e0', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbcfd2d2b6ac1bd7925bd6f9bf8dd333c0f82e0e', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c969fd80364b18a716224491ba06e218f0545d98', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1bfc367a0a4607ae0c3e3c8ce7266dd098947a', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc05bc0b3e7e83866daf667ceef312281acd0ad2', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8253a3e320644ac504e13c1b5b067a6ac25726e', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('400c382553fe21e9605450d087273d61fbcb4869', '172.105.247.100', 1676407217, '__ci_last_regenerate|i:1676407217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2728f8bbdfb5c00ebe1f0959f12e97c3aef67163', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e11053f5eb0d46651d60acb8804b7935574d19d', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d8af4089fd6003385144b32ff7ccb3872cf674', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dca8efee523dddd6cc4d6f55f6b9314689acbae', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a01dc2c88b46b6ed833b694551320eafd4caa4', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea596099beb63e1f0517b0b48a2abd41d41db94', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b6bdd30daa1ebea19c36ac3fcc782c13c5778eb', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a314e27b506022b30123f84d6b9d1a124432782b', '172.105.247.100', 1676407218, '__ci_last_regenerate|i:1676407218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39bade2b6c6e0a79cbb2e1292757477ed64b15ca', '172.105.247.100', 1676407219, '__ci_last_regenerate|i:1676407219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c9edca22db5daf2cd071765cb4c127b10b82cd', '172.105.247.100', 1676407219, '__ci_last_regenerate|i:1676407219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd09108e8630307fa5ee388e1a10ed73ebcde9e', '172.105.247.100', 1676407219, '__ci_last_regenerate|i:1676407219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eb60205db3925b51a82b42950856ea68b3928a6', '172.105.247.100', 1676407219, '__ci_last_regenerate|i:1676407219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6939b1599403853f48f01643e96c01da92e801c1', '172.105.247.100', 1676407219, '__ci_last_regenerate|i:1676407219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47694bf91abd6e161525ef92c5d8449eabc61c94', '172.105.247.100', 1676407219, '__ci_last_regenerate|i:1676407219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41fbd27b4331dd2afd5e6df396b4a4f1e1c2c4b', '31.222.203.2', 1676408629, '__ci_last_regenerate|i:1676408629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63dafa07a615db03ab6df5fce310ae2d2496bf7', '31.222.203.2', 1676408629, '__ci_last_regenerate|i:1676408629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc1494ef3690bccfb8198d7dbf29f4f8009500b', '31.222.203.2', 1676408629, '__ci_last_regenerate|i:1676408629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8489967f1f259d39c141a61731767d7530b3c9d5', '31.222.203.2', 1676408631, '__ci_last_regenerate|i:1676408631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e40f536bc9b4e88c22dc26ba700e3af0199e030', '31.222.203.2', 1676408631, '__ci_last_regenerate|i:1676408631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b0e318518020dc5188330bd95fba23eaf02db6d', '31.222.203.2', 1676408631, '__ci_last_regenerate|i:1676408631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6841a3f3d6947d1b427231ec82ca2c91405c0f', '31.222.203.2', 1676410485, '__ci_last_regenerate|i:1676410485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6aac806999e3e705c43f8c3f8cc75f174cf975', '31.222.203.2', 1676410485, '__ci_last_regenerate|i:1676410485;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('918ad2779561a725709cde25981268f3222897ea', '31.222.203.2', 1676410485, '__ci_last_regenerate|i:1676410485;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11be23b18d3b625ceab1372780948e2c794fd9f0', '31.222.203.2', 1676410487, '__ci_last_regenerate|i:1676410487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbf98bb2ed7d206b476013439156993ef4b6a7d', '31.222.203.2', 1676410487, '__ci_last_regenerate|i:1676410487;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d96134e00f42d446bc6d26a3381ceffe4325c0', '31.222.203.2', 1676410487, '__ci_last_regenerate|i:1676410487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36fd5b2f66019c3376e57bafadcea8648151651f', '31.222.203.2', 1676412302, '__ci_last_regenerate|i:1676412302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80009727fa9de511908595687692f3e7759ec429', '31.222.203.2', 1676412302, '__ci_last_regenerate|i:1676412302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab58b9d2ebd780c2c74b08a47a954787275ec96', '31.222.203.2', 1676412302, '__ci_last_regenerate|i:1676412302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f7e8a519f81614b13d7d9f0f37fd683108c0c5', '31.222.203.2', 1676412302, '__ci_last_regenerate|i:1676412302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51a44d67c64375fd74d6aa3a10fc0e1a307e73e', '31.222.203.2', 1676412302, '__ci_last_regenerate|i:1676412302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e5fe8a68c295c3dcfb33b5f465e3cfe8052398', '31.222.203.2', 1676412302, '__ci_last_regenerate|i:1676412302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d889dc0460f01759ce170e311159e47f2c48ee6', '172.105.247.100', 1676413217, '__ci_last_regenerate|i:1676413217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c7276795103d115a07d5396b2ac4737ac9801f', '172.105.247.100', 1676413219, '__ci_last_regenerate|i:1676413219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24be3ce1b73684e765e8bfa09a1306ad42817d0', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4449a8355a09a1a1f8b2dbe2249a7953be99552', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c9fcac2446a1ca41e5b5bcefa4160ea38f93a0', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cecef29978d4f805c9c133652c2935e03f757cd', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c678f4ee960853be66aaee9fed30b0acb939a291', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29144b661636c177a0ecfc10245e907130dc59fa', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae75a100e9b3895ba59b3818cc0872a78db9eb4', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64c89e55a66d1e7878fe4852953d26e663d5440e', '172.105.247.100', 1676413220, '__ci_last_regenerate|i:1676413220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b056c83fbbe365ae79c396e31498cdfe6b1509ba', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091b74a5180fd122b349b4325a1a513f46753af6', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c9a35d318745d4eb7c355d711f88c484c9235e', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c1435b00af7c415395c733eaa25a20bc5741819', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f85903692aab82454c84e6586ca9006bd46cd2d', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f18c3feac7f581a8b284641ba0061c9dad743c4b', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b951731e502f234ac2313fa2dd5cf1141998a41', '172.105.247.100', 1676413221, '__ci_last_regenerate|i:1676413221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda8f5edd26e7f9f1ca6b90bd709c3049050b9c8', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec48081784bf30ff034a3343c58096accbb93d6', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36c6cca1bbc0c5ae12f5d102e93c3d1e2e8ac8c8', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc9261291fb049005aa3bbdda85a94e441b2de6', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a8381bf39e338fe2cf73e55a50f9b263992aa1', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('139b4c92fbb95d04ef305120e98c848cd212925d', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26645fdff16dfb9c4063a3ea59c3c799d0447562', '172.105.247.100', 1676413222, '__ci_last_regenerate|i:1676413222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c949c6e2f4c31d642308a399460c0b8ddbbfe6a', '31.222.203.2', 1676413957, '__ci_last_regenerate|i:1676413957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95bbec3e35b81e1b1998a1af68aed9d8a0bd525e', '31.222.203.2', 1676413958, '__ci_last_regenerate|i:1676413958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5023cb647a133e840b3187f55ac0f93299ed466a', '31.222.203.2', 1676413958, '__ci_last_regenerate|i:1676413958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6264e8e470ae6855658c5fa3a34da683450d2b0f', '31.222.203.2', 1676413958, '__ci_last_regenerate|i:1676413958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f17fe7efe1d02f2968f390296e262127bd3e6dd', '31.222.203.2', 1676413958, '__ci_last_regenerate|i:1676413958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54e75aa13901fb0e202d15217e08e1b532953f7', '31.222.203.2', 1676413958, '__ci_last_regenerate|i:1676413958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5fb62fa2136ab41df08777d09f351c71e1dc2e', '31.222.203.2', 1676415905, '__ci_last_regenerate|i:1676415905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fedf0bb0ffa9ba40c0053068b7fdc53cd62f3dc4', '31.222.203.2', 1676415905, '__ci_last_regenerate|i:1676415905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0f308211f23e76ec203159b065ae8afa9cf1c0d', '31.222.203.2', 1676415905, '__ci_last_regenerate|i:1676415905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05993ccf089be6d4550eb4954cfc1176c923a22e', '31.222.203.2', 1676415905, '__ci_last_regenerate|i:1676415905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be72375fefdac0741e6a2c0202e9492f301fb89', '31.222.203.2', 1676415905, '__ci_last_regenerate|i:1676415905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb1ed99ee19afaf70af96851a827e11e07afe30', '31.222.203.2', 1676415905, '__ci_last_regenerate|i:1676415905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7f1aaefbfa6d75d7321c0838819b0558f7e15d', '172.105.247.100', 1676418616, '__ci_last_regenerate|i:1676418616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac2e23d0d599ba1d26c729502d60616898c99002', '172.105.247.100', 1676418617, '__ci_last_regenerate|i:1676418617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab14c928c9807c87bfb3fa51eb61dd4df17cc5c', '172.105.247.100', 1676418617, '__ci_last_regenerate|i:1676418617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9185908d90cfab54f900cdbd9d0080aeb4990529', '172.105.247.100', 1676418617, '__ci_last_regenerate|i:1676418617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12b11df0af24b0c45ea7063dcc7d962dac03f9de', '172.105.247.100', 1676418617, '__ci_last_regenerate|i:1676418617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575652fa33ff2e6788ec5b111e4cc484b6cbec84', '172.105.247.100', 1676418618, '__ci_last_regenerate|i:1676418618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5954c621a45ac902db59ced1546261d6ee190b3', '172.105.247.100', 1676418618, '__ci_last_regenerate|i:1676418618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b29ef04f88670d11afa1f13ac075c28545d5807c', '172.105.247.100', 1676418618, '__ci_last_regenerate|i:1676418618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebaabae09c77d9c7ea1a602fbefaf7fc552b54a5', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('579cbea999e734416f882148cef8620cf429820a', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd7076245839b2f13763a03b89e208d0f09853a', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8878dea5897fbeb46314b0cdb344248c85f3d18', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d7da33203f3239bc586e2cc76cc583d56f48a6', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86edf081a47ba9a45daa2e45692b07572b6953b8', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20ae606636bb941bf05d42a994279366f5782ee', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03dbd11b8d41f8447ae90feaaf06e03e08c9d3cb', '172.105.247.100', 1676418619, '__ci_last_regenerate|i:1676418619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c4116e1adfc164ed140f689d8343d14a7d1f1b', '172.105.247.100', 1676418620, '__ci_last_regenerate|i:1676418620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c1328cbee64c8c2f80beed129e59cd8c67185b', '172.105.247.100', 1676418620, '__ci_last_regenerate|i:1676418620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8026d74a7f61d4869b40c613e37266dbdeac1e50', '172.105.247.100', 1676418620, '__ci_last_regenerate|i:1676418620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f1dd96f697f5beed7678d46467051dd5d69135', '172.105.247.100', 1676418621, '__ci_last_regenerate|i:1676418620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d126b863ddc68bdffed62ef6226ec193bb68538', '172.105.247.100', 1676418621, '__ci_last_regenerate|i:1676418621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5e23216dfb705fd35b227175f26e5086573ef1', '172.105.247.100', 1676418621, '__ci_last_regenerate|i:1676418621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd97075871f5ba0cbf49eb52208b966207a47a73', '172.105.247.100', 1676418621, '__ci_last_regenerate|i:1676418621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ceae1142574df7ad9a74293f4213f8e986c4a4', '172.105.247.100', 1676418622, '__ci_last_regenerate|i:1676418622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bc71e086183c54f357e4216d94028085e0fddd', '31.222.203.2', 1676421226, '__ci_last_regenerate|i:1676421226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b49c236a2677a748dc0ff25fd8109c40f2e17f', '31.222.203.2', 1676421228, '__ci_last_regenerate|i:1676421228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de0295eb70a5ccc80825e69b2e6d93bace64bb7', '31.222.203.2', 1676421228, '__ci_last_regenerate|i:1676421228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a29bcce42f4bfb1eb414dd8753e205f517c273', '31.222.203.2', 1676421228, '__ci_last_regenerate|i:1676421228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df62a57d1cd108756af270f76d19f1260bd4109f', '31.222.203.2', 1676421228, '__ci_last_regenerate|i:1676421228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bedb23d36ae461839158aaf0e5f47a7b4a0f42', '31.222.203.2', 1676421228, '__ci_last_regenerate|i:1676421228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550384ce61b44146e8896a00bc0456d63514d79d', '31.222.203.2', 1676423098, '__ci_last_regenerate|i:1676423098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f56b2ab4dd9d40c0728cfcf57b38050e9bc5f83', '31.222.203.2', 1676423098, '__ci_last_regenerate|i:1676423098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0f14db0bf648e1e64cfe9f52a2fe4aa7d67dcd', '31.222.203.2', 1676423098, '__ci_last_regenerate|i:1676423098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55fbe956a9c948ca97dcda5c14bb3c2555314155', '31.222.203.2', 1676423098, '__ci_last_regenerate|i:1676423098;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5316b21c5e57765289aadc4bebfd11d998be39', '31.222.203.2', 1676423098, '__ci_last_regenerate|i:1676423098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b03a6a9940410871ceafa88e5729b878ed506d', '31.222.203.2', 1676423098, '__ci_last_regenerate|i:1676423098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d33773bc37bcf75f89a6fe11a8648cdb44a7e0', '172.105.247.100', 1676423416, '__ci_last_regenerate|i:1676423416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d71a05aaf926b33207c4b8c7a64639e4c7d6fadf', '172.105.247.100', 1676423416, '__ci_last_regenerate|i:1676423416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2ffd6b935c44cfb1c0e6d974952548ecb22618', '172.105.247.100', 1676423416, '__ci_last_regenerate|i:1676423416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047fee3e7cca1f8733790dc6f1ecab3ec03e599e', '172.105.247.100', 1676423417, '__ci_last_regenerate|i:1676423417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912940decae819989bd04188607aaf05de3f3100', '172.105.247.100', 1676423417, '__ci_last_regenerate|i:1676423417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c731ed7f2ff2dd2c2dd8f635c877da5fd45e8497', '172.105.247.100', 1676423417, '__ci_last_regenerate|i:1676423417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('490a8059b8055f9266ff388f5e62edbefbf35094', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28a277b9df76a8bd1ce6e0ef85949eff5bc1745', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15906e131484d9e1eed08a4ca24dfde86e7d194', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7dff8a5522b7c080a5aaf28817e6da7eec4d04d', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d58b174def552a35b33179c9a4b1d784af5a106', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d733d28fc5a2912d11a6c843daf53a433e3065', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a2e899d3775e00b38962781decd52401823092', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea231ceb242ba9d9fe8600ce2a6164b7943e0d4b', '172.105.247.100', 1676423418, '__ci_last_regenerate|i:1676423418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad9f834741542547103fb6b6d53ea2ec2e28e715', '172.105.247.100', 1676423419, '__ci_last_regenerate|i:1676423419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a4fc33f051c65d6f6bd62d375d426c5f2c4c2e', '172.105.247.100', 1676423419, '__ci_last_regenerate|i:1676423419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb711437f35d9dcb55c328aa01b59e01ea2a51d', '172.105.247.100', 1676423419, '__ci_last_regenerate|i:1676423419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43032f52265839bb6fcbb43f9e079774d0d52cca', '172.105.247.100', 1676423419, '__ci_last_regenerate|i:1676423419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1e1534132202171cc192954036d2e3dda99228', '172.105.247.100', 1676423419, '__ci_last_regenerate|i:1676423419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5b5fdbaa3a3f38a25bdcd979b1902a3996b581', '172.105.247.100', 1676423420, '__ci_last_regenerate|i:1676423419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51643ffbaecdb27f6c1e4e2e5d90f7a9bd3d56b', '172.105.247.100', 1676423420, '__ci_last_regenerate|i:1676423420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4bd092d579754e6899a54543f2fcf1af3efe5b', '172.105.247.100', 1676423420, '__ci_last_regenerate|i:1676423420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc1220020ae1af844358f200a13c8134d0bb8847', '172.105.247.100', 1676423420, '__ci_last_regenerate|i:1676423420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7bdb294e2a546930bff7ae46893193140564ede', '172.105.247.100', 1676423421, '__ci_last_regenerate|i:1676423421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f7f0e56a67b060df944232392a984916b531ced', '31.222.203.2', 1676424904, '__ci_last_regenerate|i:1676424904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4b4cc560c8758a2a6400aed9046f2aae6ef6a6', '31.222.203.2', 1676424905, '__ci_last_regenerate|i:1676424905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2482d1627df1fa6b8d422ff33bc2277c482e6b0', '31.222.203.2', 1676424905, '__ci_last_regenerate|i:1676424905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d89e79daf52939a52b00239db430971ef193d32', '31.222.203.2', 1676424905, '__ci_last_regenerate|i:1676424905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9640cc8faca5de60a42ac2c4a13cdc9a24f31ba7', '31.222.203.2', 1676424905, '__ci_last_regenerate|i:1676424905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53aa3b675f50baa2cb9bff1a541a866e1d09ca6', '31.222.203.2', 1676424905, '__ci_last_regenerate|i:1676424905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b56bcfbc085a5b39674f1e600c2f4e909bc1bec', '205.210.31.30', 1676425013, '__ci_last_regenerate|i:1676425013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996e9222b6a47c70cb57b1a49bd5c7c1d396a172', '172.105.247.100', 1676428222, '__ci_last_regenerate|i:1676428222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0e7d3afbeb8d27bdf4837c4b9e58abf0e64371', '172.105.247.100', 1676428223, '__ci_last_regenerate|i:1676428223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accafd778af25724c4f32e3225c799f40d73f0cb', '172.105.247.100', 1676428225, '__ci_last_regenerate|i:1676428224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384d90f54821de98c95473239a2063f4832583cb', '172.105.247.100', 1676428225, '__ci_last_regenerate|i:1676428225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2091675f62babd8925eedfa8d942a7e5dd5e80', '172.105.247.100', 1676428225, '__ci_last_regenerate|i:1676428225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f91fe0d81590ae9fa8b0fcea40f438f75a8d5e', '172.105.247.100', 1676428225, '__ci_last_regenerate|i:1676428225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74f218a0b0a1b1338433f8c52dabb7507709408', '172.105.247.100', 1676428225, '__ci_last_regenerate|i:1676428225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fe3a60b8c57c27676149e6156c47d59b087624', '172.105.247.100', 1676428226, '__ci_last_regenerate|i:1676428226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f587f6781beb7ac95f11ba2dc11dc56c8bb95b', '172.105.247.100', 1676428226, '__ci_last_regenerate|i:1676428226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06325e88b0d2ea98883850d705370a1ba1026a61', '172.105.247.100', 1676428226, '__ci_last_regenerate|i:1676428226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95dc2981d70dbbdf7bfbaccc8d1a084070eca8e7', '172.105.247.100', 1676428226, '__ci_last_regenerate|i:1676428226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a64505199a90ffe757a7af77ce313ab4c933838', '172.105.247.100', 1676428226, '__ci_last_regenerate|i:1676428226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53acda6ca1a14f72b2516d73da18133d015461e', '172.105.247.100', 1676428226, '__ci_last_regenerate|i:1676428226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b907d9af7c42100e2598331a4c1ac582ce9c687', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7be79a22364a50f5b690ab3daf53faee11ad366', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28529911494d3932ca7945c7cbe70188ec433b9f', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7240532cba38f2ae1793491ab5657f250e7e5f8c', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132835e9b3977b3ad39d37ebf2ac3d801c55e46b', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec91ac86f582f9866854e3838861306eda326461', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8125a9e9a3001416e4abd50f51237fcdc248799e', '172.105.247.100', 1676428227, '__ci_last_regenerate|i:1676428227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a880526f3121d70069ccdf6000915257ca1c8a50', '172.105.247.100', 1676428228, '__ci_last_regenerate|i:1676428228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68960ead813f744fbfd37d59d8f491edb0d46936', '172.105.247.100', 1676428228, '__ci_last_regenerate|i:1676428228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f4ce624f633dbe3e80897c8193f24f68574989', '172.105.247.100', 1676428228, '__ci_last_regenerate|i:1676428228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a91110778112a9356e311a71f7a8ed00c6c5156c', '172.105.247.100', 1676428229, '__ci_last_regenerate|i:1676428228;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364c4b95625a9267ca54f08cec744374547178e0', '31.222.203.2', 1676430148, '__ci_last_regenerate|i:1676430148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5399e84701287cdc14e9d2296c5a788e4d7493b', '31.222.203.2', 1676430148, '__ci_last_regenerate|i:1676430148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1857657262a1ea8fbd44ebd7445e4a7eef69262a', '31.222.203.2', 1676430148, '__ci_last_regenerate|i:1676430148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f7dce72886b95db2a11be1f3ce34d28046909cb', '31.222.203.2', 1676430148, '__ci_last_regenerate|i:1676430148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3476106e85fdb6232b52cc6c3dc84a3c37fa93eb', '31.222.203.2', 1676430148, '__ci_last_regenerate|i:1676430148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b96b94b89a57b676099a16fbb212cd33118a06', '31.222.203.2', 1676430148, '__ci_last_regenerate|i:1676430148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c19e6811b06ed43605ae2c4f8934caf50cb0d02a', '205.210.31.180', 1676430699, '__ci_last_regenerate|i:1676430699;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87d4c9b884e5652fd9e3081d8adbc864455a4e3', '31.222.203.2', 1676432094, '__ci_last_regenerate|i:1676432094;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f3d633d3c253888b1a6a82b57896c14f34a926', '31.222.203.2', 1676432096, '__ci_last_regenerate|i:1676432096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777d0438ee8f70a2292392d99ea572d32da47b6f', '31.222.203.2', 1676432096, '__ci_last_regenerate|i:1676432096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bcccdd8857726528306fc91299ef06b54b1190a', '31.222.203.2', 1676432096, '__ci_last_regenerate|i:1676432096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2761e3e7ee7cd6fe06f30baa6a5e5df832b171', '31.222.203.2', 1676432096, '__ci_last_regenerate|i:1676432096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f6b9bc3fa986f8752c89c69f5125209c905905', '31.222.203.2', 1676432096, '__ci_last_regenerate|i:1676432096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05b03eae5c662e7aecd053af4d9a4f97c155f89', '172.105.247.100', 1676433020, '__ci_last_regenerate|i:1676433020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4fc73b4af2ff55e750d46d51814f7fa566b7695', '172.105.247.100', 1676433020, '__ci_last_regenerate|i:1676433020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a544f3b6468bec2705ff3b3539708a7aeecaa605', '172.105.247.100', 1676433021, '__ci_last_regenerate|i:1676433021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a18316754486fae9d1a0c030b66145d9336ced6', '172.105.247.100', 1676433021, '__ci_last_regenerate|i:1676433021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30cdcc327eec208b4ab7c0693b3e134b4e1bcdbb', '172.105.247.100', 1676433022, '__ci_last_regenerate|i:1676433021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b258ac2e3b4cba3ba014c083c29729a5edc9f33', '172.105.247.100', 1676433022, '__ci_last_regenerate|i:1676433022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0899160152e08ff830a7cbbf91542e473aada4', '172.105.247.100', 1676433022, '__ci_last_regenerate|i:1676433022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71527ab246f9387a2d19a760cb63cf3106912a50', '172.105.247.100', 1676433022, '__ci_last_regenerate|i:1676433022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bfe0a3360cb045e75062fc9864ee213de968077', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a076b4abcf24edb7752fb715af26e03f6d07def', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c6255521679e636650ebc413b3c4510fcf3eab', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7229584d33a1ebb91e2b02da9e8e9a69579a1fdf', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c75555de3c66595792f07701744d526508f3b7d', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825d6492c5288ebdf864e1fe2a1aae0a4fd6006c', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c192cfba20284cebe7c05e1d80f673eb4b7a547', '172.105.247.100', 1676433023, '__ci_last_regenerate|i:1676433023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c856f0913144327239c1cb5736ba0246f8dede58', '172.105.247.100', 1676433024, '__ci_last_regenerate|i:1676433024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bec186481470ebe3688ace1165c18e89a11a7d3', '172.105.247.100', 1676433024, '__ci_last_regenerate|i:1676433024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7251551c78ffd49e6170e3a639e4f39f326d9b79', '172.105.247.100', 1676433024, '__ci_last_regenerate|i:1676433024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4774ee37a84c75088bf6298426a0a4d713162bc', '172.105.247.100', 1676433024, '__ci_last_regenerate|i:1676433024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d91e924873e0509d81fac91f2876a715f3092b1', '172.105.247.100', 1676433024, '__ci_last_regenerate|i:1676433024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6feb997f669234267c9a542a72cead422b71c279', '172.105.247.100', 1676433025, '__ci_last_regenerate|i:1676433025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a094448210b8b93f0eb8a7110b62b7e6f3b1c70c', '172.105.247.100', 1676433025, '__ci_last_regenerate|i:1676433025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b39aa7b21dc1ab606a600c5e449c9b933381e16', '172.105.247.100', 1676433025, '__ci_last_regenerate|i:1676433025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c242eab1a9149b199013c86d741c296dcb906c', '172.105.247.100', 1676433025, '__ci_last_regenerate|i:1676433025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7890580549aeef6d891faf2db3b9971467050bcd', '31.222.203.2', 1676433901, '__ci_last_regenerate|i:1676433901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c5d021cde1399ef6d9f2c7be0629106fc4e5e3b', '31.222.203.2', 1676433901, '__ci_last_regenerate|i:1676433901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80b162abe5850fab72081e6b0e00442f3bb7578', '31.222.203.2', 1676433901, '__ci_last_regenerate|i:1676433901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e239dcd378ef62cd1b0a3a2cdc26cfbf5deb7a6', '31.222.203.2', 1676433903, '__ci_last_regenerate|i:1676433903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8846d277a2fac2dc00240d4042eab24e0b8c26b', '31.222.203.2', 1676433903, '__ci_last_regenerate|i:1676433903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1595507673c215ee4a031b79a92c8f8d0970b98', '31.222.203.2', 1676433903, '__ci_last_regenerate|i:1676433903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34d6ef78dd44fa8fc8f3206ae3456789b5c2f67', '31.222.203.2', 1676435544, '__ci_last_regenerate|i:1676435544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6829300017efa941ee49739ae3577498ef61e5', '31.222.203.2', 1676435546, '__ci_last_regenerate|i:1676435546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8d5387ce20e9fa2179307396dc5bf18de6bf8d', '31.222.203.2', 1676435546, '__ci_last_regenerate|i:1676435546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5641459111c80dc9719e68ef8ed4784527acbe', '31.222.203.2', 1676435546, '__ci_last_regenerate|i:1676435546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c98a8f5c1deb885f0fd8642b1547cb262f9a49a', '31.222.203.2', 1676435546, '__ci_last_regenerate|i:1676435546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a80daed075f5f040e4854cf4adb40c0343d369c', '31.222.203.2', 1676435546, '__ci_last_regenerate|i:1676435546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fdae78366343e6c061842c8c1eee2f623320d59', '31.222.203.2', 1676437493, '__ci_last_regenerate|i:1676437493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b56d08eb79d3b22c423402634656fb88854423', '31.222.203.2', 1676437493, '__ci_last_regenerate|i:1676437493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab0809c63df67ae0f7301c33ff09a6537bf81fd', '31.222.203.2', 1676437493, '__ci_last_regenerate|i:1676437493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cccdc2dc68c90331b2aad9b013b76f2d92261bed', '31.222.203.2', 1676437493, '__ci_last_regenerate|i:1676437493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1350089f1626570db8c5e77e8af50dcd8adc2ab2', '31.222.203.2', 1676437493, '__ci_last_regenerate|i:1676437493;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc00d079ba490482d55aa5647e67916dbc34365', '31.222.203.2', 1676437493, '__ci_last_regenerate|i:1676437493;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0598a64635b42006934129724f8b56934e997c85', '45.120.39.89', 1676437804, '__ci_last_regenerate|i:1676437680;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676359376\";last_ip|s:14:\"37.111.218.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676437804;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a9fd3e4ecef2a0feb7b3981f5282d56aedc1b1', '172.105.247.100', 1676437819, '__ci_last_regenerate|i:1676437819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cdc7047e99af976a4b485da5fd4beb1a473d45c', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d95a9222661cde5510ef9dd898536f5091c040', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee58743cb35667214605fd9489476ec90e3c0ea', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e2feff0e777f30ddfa9657f75ede508070a22b', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479efa358dd9fef50d5ca0261c997d8ebaa17b28', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431e06924f841ac996ae054ab6f0645ff82fa5d2', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302eee517d115129224658bdc8e04d2813553337', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d824f42bd4a6e2e695854856b5c4b5015d0b4e', '172.105.247.100', 1676437820, '__ci_last_regenerate|i:1676437820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad4875290948fca71ae730ee23934f9de06b80c', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae426f8cc4659453e2310f60ba3c60b93f9792a', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654e2a9988ce632e19cc7fdb59fe5a769ed604a1', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96bbc024d9e186cb8513622e70f4797cc66c9c3b', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db03cf52cfc90c59d1bc2e07018bdc65defc5801', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913bf2ee205d10663df1300e243d36e605cf8897', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3426390c0df0517a89b97c340ad34545d918226', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379741c67193e4bd8257376564383b92a059db54', '172.105.247.100', 1676437821, '__ci_last_regenerate|i:1676437821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ecb79f1c0e460281259e07b200593b95d065c8', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b10e8c11c8cff76085985f888fc824b64232d4b0', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b12c2780a60d58b6649f2920dc3758c30aa7aa8', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f995f891d22d99ffc52f68bd168d184b04fbd7', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388faba3b3c602cf358700a437dd92d2aace1b11', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b6ea66235ea0cdad708051d76093dc54a8abe1', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed759b0b9cc78cc6e61da387720e19a837b3c40', '172.105.247.100', 1676437822, '__ci_last_regenerate|i:1676437822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('051061b98eaf0c576dab4104c1c464ff8dae7f15', '31.222.203.2', 1676439304, '__ci_last_regenerate|i:1676439304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9849c8b6864a6ed7d8b5629e4ab25fa87e03bdcd', '31.222.203.2', 1676439304, '__ci_last_regenerate|i:1676439304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99bf30b15ba764916ce68022db72c485cdbe4e34', '31.222.203.2', 1676439304, '__ci_last_regenerate|i:1676439304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a22b09bce6b1014f4216db6cb7621c4ace3b47', '31.222.203.2', 1676439304, '__ci_last_regenerate|i:1676439304;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353e0ffdf7251676464160ff7effdb5d1f666f9b', '31.222.203.2', 1676439304, '__ci_last_regenerate|i:1676439304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f9428cf5ab719d5be71e3c8ee9729672b3b7b6', '31.222.203.2', 1676439304, '__ci_last_regenerate|i:1676439304;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3cb265b58e8929afab534003c750d97e0230770', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf3b6b38aba32cd18bbf3d12fc4fd5363120836', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b195b3918aca3cf5d38db2dc64818228411028e', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699d8a84f98a6de2cbb78a8d715918439d18592f', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871f398cbf9cc2fdf48f2dd4f52a24b4a02e2dc4', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f756070295abea08dc03d7a08e557de0e310dee', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e949623ede5c4c82b8d5b89072e3eb5b4b793c2', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b815ce404addff57ecc8379674d6c15be8f422dd', '172.105.247.100', 1676442617, '__ci_last_regenerate|i:1676442617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a535feb9279b632fb8325f43b3574365c5eab64e', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32687f42962ce9cca747de3d4b068becacda00f8', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5723d74fc554cee7dc7d0d5041f120ec95085cf', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b4ce01fbb8e2e6a77961237e8865c33d0802e2a', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b084482a970a2edb6ff2897d76879aa3eb02bff0', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352ace16255120e7e3221089a6c22184ebe193bf', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4bfc81c8c68c8e41e19fd4a109bfcfcc41cdbb', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99467ca2bfa405ce7d53e51b219d79c2af8217b', '172.105.247.100', 1676442618, '__ci_last_regenerate|i:1676442618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb4df9df90eaf05cd34613224653c957fe47457', '172.105.247.100', 1676442619, '__ci_last_regenerate|i:1676442619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2829649527e6dac8a5dffc92f6810d805c8953', '172.105.247.100', 1676442619, '__ci_last_regenerate|i:1676442619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a594e22d35944e9db1781e6105c813308117376d', '172.105.247.100', 1676442619, '__ci_last_regenerate|i:1676442619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ac0ff1139e87135e312ab3738aa3f35b076f13', '172.105.247.100', 1676442619, '__ci_last_regenerate|i:1676442619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24f050721852a4001a0477c42c1c6d9f01886c6', '172.105.247.100', 1676442619, '__ci_last_regenerate|i:1676442619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc099a1abadd9bb82eeea5e07d0e5cc10d739d4', '172.105.247.100', 1676442619, '__ci_last_regenerate|i:1676442619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8bd3929567dd5e96c788554590285b6c79c67d1', '172.105.247.100', 1676442620, '__ci_last_regenerate|i:1676442620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6a9a2fca5dde63abaaf8e76b5dc24b3a384cf8', '172.105.247.100', 1676442620, '__ci_last_regenerate|i:1676442620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827071dc6e4f16b5c73d7a0ed30c39f86c83fd52', '31.222.203.2', 1676444549, '__ci_last_regenerate|i:1676444549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aeae10b1af519b2161f35aeb9d0815626fedff4', '31.222.203.2', 1676444549, '__ci_last_regenerate|i:1676444549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93cbab986004743d4dbf29e9b5918806a4639717', '31.222.203.2', 1676444549, '__ci_last_regenerate|i:1676444549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f885d978284fac8edfe817387752dc806f4a94d', '31.222.203.2', 1676444549, '__ci_last_regenerate|i:1676444549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55e25ed4707c516a83cb0e8b08f0032f3899b53', '31.222.203.2', 1676444549, '__ci_last_regenerate|i:1676444549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d842d0ac6e4d0d3e776be5e115ee85b0621ec48', '31.222.203.2', 1676444549, '__ci_last_regenerate|i:1676444549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5154be229e503af56279f88be1e4008a11ccd402', '31.222.203.2', 1676446496, '__ci_last_regenerate|i:1676446496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e79dbad46f566c23914708501e9074bbd093e9f', '31.222.203.2', 1676446496, '__ci_last_regenerate|i:1676446496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d27f3e821953a34c7f8700fa6dd034444ed5415', '31.222.203.2', 1676446496, '__ci_last_regenerate|i:1676446496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14345894d45fcb83bc46cb99119f3cbe4dabc464', '31.222.203.2', 1676446496, '__ci_last_regenerate|i:1676446496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbce78660817e599232324c56d2647af4f9d5be9', '31.222.203.2', 1676446496, '__ci_last_regenerate|i:1676446496;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5fde244a2c3e05ce6f59449e91a45bc7c0c0d7', '31.222.203.2', 1676446496, '__ci_last_regenerate|i:1676446496;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e887e43aaee126f695c76954bb5704c5bf27110', '144.126.157.51', 1676446802, '__ci_last_regenerate|i:1676446802;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b68c5da78f2915e4be55c18397cfcd3ff1d1c0e', '144.126.157.51', 1676446805, '__ci_last_regenerate|i:1676446805;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441ca9b43fae2c7f16e693949ca20007ba3b454b', '172.105.247.100', 1676447416, '__ci_last_regenerate|i:1676447416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c6c7b02553452fdda7de488015a68f83b38097', '172.105.247.100', 1676447416, '__ci_last_regenerate|i:1676447416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa9897d8f3bb108cfaa9502d944a3e1f33e0a30', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f769e09dcfee5b25763ac9b866369a674152635a', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54af9567c04c4e8937228bfaa2e6de4f02a22294', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc5c1ce02c51f88a00e326f8ef6751a52d8e402', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3e342b02acc5ad5232b426a653ba49aba1356a9', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9763643aa292c4d8c1fb98f6ff7b8e4035a6d5d', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ea8c2a5a2ddeab702fd17e2bf9d9761648a251', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5da8e6fb238a91d5ba9141b886a63e9c7b5a1a5', '172.105.247.100', 1676447419, '__ci_last_regenerate|i:1676447419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b105438c54877e9a4f099d6272aba28ec77e514d', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b92657462fab63abcabaaab2357b5e8e7e6ba463', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9583c8b8f984673e266470cdc612dc67c0071fb', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6fd910ed2f40ef9605d6e1825bb17e21cc85b0f', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89976adab73b555d26ea01591a48488f55b1a4ef', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2592c70574deda0bfbb990f618723b3ab5307272', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd0a034222a06bb9d6e99eb5e0ae8648e939b72', '172.105.247.100', 1676447420, '__ci_last_regenerate|i:1676447420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4fccee2339f02d2dd7a753ca38b067a0c2ea80', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ec3b3c1869ae2431dc954a99fbd40597b67745', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c581f9f2deb77714ef6a90f85eda11c4a0f783', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc806d3e5c1ea2c70f03210e804616bdcd5fd53', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b2aebc6c3e78c40c421aafb083040d7cde3ad60', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41c14cd6119b719d50958bfb0133927e4e08565', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57f21fadcca4ce699e088508725c98cc593bf365', '172.105.247.100', 1676447421, '__ci_last_regenerate|i:1676447421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1270a2e88260eb66cf8515ccb06591b3de5e3922', '172.105.247.100', 1676452217, '__ci_last_regenerate|i:1676452217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2fb03e589dd59e00e8f8db0510d2626b80dac3', '172.105.247.100', 1676452217, '__ci_last_regenerate|i:1676452217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29a8510e2b3ff0891a5eaf77961a9c0ce126c27c', '172.105.247.100', 1676452217, '__ci_last_regenerate|i:1676452217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1787cd76ac8bcb6e7db42277addc97a467f607', '172.105.247.100', 1676452218, '__ci_last_regenerate|i:1676452217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5096b455d6743c27c49b8f8143878226f3a3a7a6', '172.105.247.100', 1676452218, '__ci_last_regenerate|i:1676452218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edcbb3f643708633d05f1be7eda67192f8bc3028', '172.105.247.100', 1676452218, '__ci_last_regenerate|i:1676452218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52ed5ad2a9edf2c7a1856e4cce6e7c4aac409c84', '172.105.247.100', 1676452218, '__ci_last_regenerate|i:1676452218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b32b05f3ec5012e6b7a50f11d555cfaed8e398a', '172.105.247.100', 1676452219, '__ci_last_regenerate|i:1676452218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bef6a15a529def40eea85e4f2401e764d579e4c2', '172.105.247.100', 1676452219, '__ci_last_regenerate|i:1676452219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('212f02230b7eed8f0bdee425a1887e7f5bfddaa1', '172.105.247.100', 1676452219, '__ci_last_regenerate|i:1676452219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9ed90241e06d13a89802916bbf50808575447c6', '172.105.247.100', 1676452219, '__ci_last_regenerate|i:1676452219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8019369799179e248f68e39f0ed7a721d368eb', '172.105.247.100', 1676452220, '__ci_last_regenerate|i:1676452220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('561b0699129f85ee985b2856343f0ea4003f5ec3', '172.105.247.100', 1676452221, '__ci_last_regenerate|i:1676452221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798c08dc198bd5eb293fa6fdec330da8f91cb1b9', '172.105.247.100', 1676452221, '__ci_last_regenerate|i:1676452221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e1085e1b16fdc695ad3ea9c8ddd395853f4be1', '172.105.247.100', 1676452221, '__ci_last_regenerate|i:1676452221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2130f9f70f62769de11c0c8e9874cdf1f88758a', '172.105.247.100', 1676452222, '__ci_last_regenerate|i:1676452222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0c3377877aa83d3000d325b3b12498443738da', '172.105.247.100', 1676452222, '__ci_last_regenerate|i:1676452222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9663600295639c34eb4304f2956e42098b327ac5', '172.105.247.100', 1676452222, '__ci_last_regenerate|i:1676452222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65274983571da491b03db4a74f3a33e92fec1fad', '172.105.247.100', 1676452222, '__ci_last_regenerate|i:1676452222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e98a05a03c6b0f90fb10249f5525ad07595f67', '172.105.247.100', 1676452223, '__ci_last_regenerate|i:1676452223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b4789c5797d6a0e40e44ac3b55c79f4ded57d26', '172.105.247.100', 1676452223, '__ci_last_regenerate|i:1676452223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc8263002bc02ae1e564bba609c1b5b4b62c468', '172.105.247.100', 1676452223, '__ci_last_regenerate|i:1676452223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca16bc192cba9498032fa8197d176a179ca179c1', '172.105.247.100', 1676452224, '__ci_last_regenerate|i:1676452224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c40c28c8eec2ca3a51315a08738a529e13dd4d4', '172.105.247.100', 1676452224, '__ci_last_regenerate|i:1676452224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0089652691a4c713d5911fc0b4d081c0ed2640eb', '31.222.203.2', 1676453654, '__ci_last_regenerate|i:1676453654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de251746c86d90c1103827f34aab292bdcc8f5a6', '31.222.203.2', 1676453654, '__ci_last_regenerate|i:1676453654;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b81fc1e36310483d5aef30f01f2d044f84c3090', '31.222.203.2', 1676453654, '__ci_last_regenerate|i:1676453654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc10f777b001bd71f11511862eff60f54c908158', '31.222.203.2', 1676453656, '__ci_last_regenerate|i:1676453656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7671a7d1b5d0af09669574108aa9a2017a4f8218', '31.222.203.2', 1676453656, '__ci_last_regenerate|i:1676453656;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524ea684ed045f27321f85b1d61bb6bd3c24bb65', '31.222.203.2', 1676453656, '__ci_last_regenerate|i:1676453656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb9e99de624c122153b6916bcab564dd48d22fc', '31.222.203.2', 1676455515, '__ci_last_regenerate|i:1676455515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e3bdf71cdf68cecac5fd93fb12ce56bf3fe189', '31.222.203.2', 1676455515, '__ci_last_regenerate|i:1676455515;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('041a5f4972883a6ef9d6e4d677bb3a01a572b2eb', '31.222.203.2', 1676455515, '__ci_last_regenerate|i:1676455515;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76cf38757b70726c9a20111cd3f966660f8fbcbc', '31.222.203.2', 1676455517, '__ci_last_regenerate|i:1676455517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ef7b7f71db8d1a3a17aad76697f277b8228ebb', '31.222.203.2', 1676455517, '__ci_last_regenerate|i:1676455517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c6ceb471f48792ec771da390b1ba75143bc611', '31.222.203.2', 1676455517, '__ci_last_regenerate|i:1676455517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e555fc879a1581b22293cbde1218332e2f894fb', '172.105.247.100', 1676457017, '__ci_last_regenerate|i:1676457017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a03e85612832f31fb9b1770b4b8c97eb0014f1', '172.105.247.100', 1676457017, '__ci_last_regenerate|i:1676457017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe255db709d6d97adda5962f037dc27e2fbd18c', '172.105.247.100', 1676457017, '__ci_last_regenerate|i:1676457017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4560690f3242cb54dc643a477e167ec723bde9e5', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f050b47bbc0464f3a62f2fd4f3000e51268e7e1', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d2166f240188a8bda3b294a07b403a7ca85e30', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45aadd6d893f609fe770bfca8a1f35357f834cb7', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2963f158eec2482bbaab2492e016d27972c68467', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8423675ade2f9dd445b20963fdc6a34569272a99', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d9b72b889770538e44bab249a0ed56f23f7294', '172.105.247.100', 1676457018, '__ci_last_regenerate|i:1676457018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714dfb65c4d04c0b9550567313973c45e42b89f4', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a66a863b576c1a8ca55a82e39b020aec8f09d11', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897ae15290dcc3594dbbcea757c7ef7f92f5b177', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f31b18fa48e9069166eefd34d56a6fb8a6511a1', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc9dd4d72374ca414bb9fabac3636b32cb833a7', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7e96b823d8727a13f3effd84b6f1501a2110220', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f72a00b282d989add8c97c4357153c63de8e20', '172.105.247.100', 1676457019, '__ci_last_regenerate|i:1676457019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90592610bf1b18a89920e5748ffcfaa0b6181bc8', '172.105.247.100', 1676457020, '__ci_last_regenerate|i:1676457020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff091d77a9f16a3550b23ab5f58d159fe5bcea1', '172.105.247.100', 1676457020, '__ci_last_regenerate|i:1676457020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bcb66e51d36b9e890a4b3781b6162ff8a524618', '172.105.247.100', 1676457020, '__ci_last_regenerate|i:1676457020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aca7d86cba544c919c35e60e122edb77aacdc1d2', '172.105.247.100', 1676457020, '__ci_last_regenerate|i:1676457020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793b673e682531cf2a1a73155612e417931bf3b3', '172.105.247.100', 1676457020, '__ci_last_regenerate|i:1676457020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3d6004498c1ff6bea66931c28d189e51477f67', '172.105.247.100', 1676457021, '__ci_last_regenerate|i:1676457021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c221a6f0ee64c9c804c742102aaa4f7c726ba2d', '172.105.247.100', 1676457021, '__ci_last_regenerate|i:1676457021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4491417aa259129340f7a58c81912a6cc03387f9', '31.222.203.2', 1676457224, '__ci_last_regenerate|i:1676457224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7786dd2396e484426af35d6ebfbf34c7e3630fc2', '31.222.203.2', 1676457224, '__ci_last_regenerate|i:1676457224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ca7b7c1dbe76d5966d553a7d34b3ae37cbd3ec9', '31.222.203.2', 1676457224, '__ci_last_regenerate|i:1676457224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7cb24206aa00607acc06793aec60b9db0b5f62', '31.222.203.2', 1676457224, '__ci_last_regenerate|i:1676457224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b665b06aa8bb46cf16a40c8cbde30c511278a023', '31.222.203.2', 1676457224, '__ci_last_regenerate|i:1676457224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0481c2a4020844b34c1963f4fb7ff904d5a7632', '31.222.203.2', 1676457224, '__ci_last_regenerate|i:1676457224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dee80b19556ac6baa2494ef7487f0e96993d3ed8', '45.120.39.89', 1676461494, '__ci_last_regenerate|i:1676461494;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('945fdd4155516ea77026a36b542a7311cefb4ade', '31.222.203.2', 1676459107, '__ci_last_regenerate|i:1676459107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325544844f59197e38c70ee451ce988d56f30bb2', '31.222.203.2', 1676459107, '__ci_last_regenerate|i:1676459107;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0c8e26f9258dedb54398e5429fdc37119d36f8', '31.222.203.2', 1676459107, '__ci_last_regenerate|i:1676459107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a9ed954d41d6775d955c087c6a10e27e80d037c', '31.222.203.2', 1676459109, '__ci_last_regenerate|i:1676459109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f4e05bc62c22db0e42cb7a59a1a2504dd353a2d', '31.222.203.2', 1676459109, '__ci_last_regenerate|i:1676459109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3030bc857d39bd988fede2763d3736895e8c7b4', '31.222.203.2', 1676459109, '__ci_last_regenerate|i:1676459109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a380449cbd89878e84fb69eb3543d4112dc6b1ea', '45.120.39.89', 1676462603, '__ci_last_regenerate|i:1676462603;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676461494;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e62d65a4adaee2ec021e57af8844d0e853503a', '172.105.247.100', 1676461817, '__ci_last_regenerate|i:1676461817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587da3120944df765b6be7d690b028ca0c904e50', '172.105.247.100', 1676461818, '__ci_last_regenerate|i:1676461817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98fcc9e508a7382203c6a60c170ed86f8c50a0f2', '172.105.247.100', 1676461818, '__ci_last_regenerate|i:1676461818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3a8e79d721be80ac5aaa625786a75bb5528c48', '172.105.247.100', 1676461818, '__ci_last_regenerate|i:1676461818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245537075551491e8bcc362e1fe41746574de708', '172.105.247.100', 1676461818, '__ci_last_regenerate|i:1676461818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9556de68d68834736025fcda22641e52500859f0', '172.105.247.100', 1676461818, '__ci_last_regenerate|i:1676461818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3e5344529253e686238874e73293aba6fc56b1a', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6aa77a3b34c5ab08e482cf44ac90c7f20eb61a6', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f2c30eb98ef980abbb7d8cb61b7498a67c3778', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3821103a41d2c132f087e1b4ad2763fccf5602a7', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2e10e111b5cea8cb922b21ac4c6c7eaa39557b', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948cc85909c4bb9f9de1897b6e836fc8cf68a751', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ecfa59f2008c2a44ba12e707693f5da7ef8a520', '172.105.247.100', 1676461819, '__ci_last_regenerate|i:1676461819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df206ea7f7bd1709ba36edb8f7d3c77a231c7c3', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbeb04a077c95df0f0611cf81c10fcd3b3ccadd5', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0642539529e6b1e4080769b82bc8cd3deab3c82f', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('846746f41d6856f3983ba88cec10c68a6f2f72ad', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee389f5fed7a4e4ad998b6e34438c9bc48295de', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2008ecccc424a5f1949b7fb93641cd78cb990ea', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4775b47c24a9e06cb4d5aedbaf11c2f39d5b5c21', '172.105.247.100', 1676461820, '__ci_last_regenerate|i:1676461820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98668b8eb8526b19caff4e48629a860b8a001429', '172.105.247.100', 1676461821, '__ci_last_regenerate|i:1676461821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5099289163d40fcccbb1392805a29ced19bab9c', '172.105.247.100', 1676461821, '__ci_last_regenerate|i:1676461821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cedd38830a5378d5e5c019bb44f1f66c299753', '172.105.247.100', 1676461821, '__ci_last_regenerate|i:1676461821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b09eb1da101503d33eba98696b13a7e2444341', '172.105.247.100', 1676461822, '__ci_last_regenerate|i:1676461821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515a22046cde78a3f4fdda8f7423b0873436db42', '45.120.39.89', 1676463588, '__ci_last_regenerate|i:1676463588;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676462832;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa926b5933680b81dd5607c6abf9e45ebfb49847', '45.120.39.89', 1676465810, '__ci_last_regenerate|i:1676465810;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676463700;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d9ecf67dae3fde682bc7be7b9f21426e30e4e9', '45.120.39.89', 1676468555, '__ci_last_regenerate|i:1676468555;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676465810;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d29cd749e3642b4ae7846057b140d335848a1e', '31.222.203.2', 1676466151, '__ci_last_regenerate|i:1676466151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6c4a902e67cce798fd470fd305aacfa603cbcc', '31.222.203.2', 1676466151, '__ci_last_regenerate|i:1676466151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e35038cf504f68b2193f2f5daafac4ac46475f2', '31.222.203.2', 1676466151, '__ci_last_regenerate|i:1676466151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd273b09eb7f58c74ca0311f852fd7d8752396a4', '31.222.203.2', 1676466152, '__ci_last_regenerate|i:1676466152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208bf1f124350dc9b68264a8d49181d2a00e8dec', '31.222.203.2', 1676466152, '__ci_last_regenerate|i:1676466152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c7976bcc30dfa7d01e557a3957e5a3c170efe26', '31.222.203.2', 1676466152, '__ci_last_regenerate|i:1676466152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('184bc91d22a82fc248fbb3c31e22f1731553881b', '172.105.247.100', 1676466617, '__ci_last_regenerate|i:1676466617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b160bdc95d62b030176b8d85194558cdbb8fe568', '172.105.247.100', 1676466619, '__ci_last_regenerate|i:1676466619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ce125fa0dfd27f8f4cae9980081453a9045876', '172.105.247.100', 1676466619, '__ci_last_regenerate|i:1676466619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2f1801a5dae47e85a6ad42a422822803a746ca', '172.105.247.100', 1676466619, '__ci_last_regenerate|i:1676466619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('199803b8e2d2b5fdcb3fd46f4f5133cfacb18401', '172.105.247.100', 1676466619, '__ci_last_regenerate|i:1676466619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862d61ddcf616f1ef2b20934517f8d6161c4b070', '172.105.247.100', 1676466619, '__ci_last_regenerate|i:1676466619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d639581b88aa4a4251135f22798ef4d14b23e1', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af80a51703540a4c953e839ca697332ea21f08b', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641115ce4ff547f6e5767f1acd1b69814a5d5d7a', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84dd7a2efcf38b2c6d8e9be2180a235e7459d12f', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48fb76951e0c5e8f0c63dd4711d60418965a174', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d695ba7b8f5ffa05331c3c757cfdb8514614a5af', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb56952dfd5c4b174bc46f563c218970bc1fb53', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6c4c3ae7d52353ab19c22ee8e8b42e20e8d3aa', '172.105.247.100', 1676466620, '__ci_last_regenerate|i:1676466620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e05cf0950c64c0d3068a1067125bec82c30855d', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ecc4cfc25050c9a3a254cf3064b9567c9a2fc00', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee688135085be7fb7084dea7805ac7d7bbd355d', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f35bbb35f8708dcd0afc228a15d2ea63949929ba', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ab4632b2aacf0338e6d4db94ab07a815ab6967', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30542cde28e6418d0f305ec547edb9aa1569e391', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6d3f9c98695ea0cefc1ee1d725e96190c162c8', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c81723b8e5449a0525dc390b1dc9228c0199efd', '172.105.247.100', 1676466621, '__ci_last_regenerate|i:1676466621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaeb2993a5d62bfc1b97514dc6c919496bb6a2e2', '172.105.247.100', 1676466622, '__ci_last_regenerate|i:1676466622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1690fcbc0aacb72edc3091a14b9440c3310f332', '172.105.247.100', 1676466622, '__ci_last_regenerate|i:1676466622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d954df1a5dd14701019bef2c4103f648fdec5c', '31.222.203.2', 1676468040, '__ci_last_regenerate|i:1676468040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58dd06de48c9477f4e1cbb222c36e064d350ff39', '31.222.203.2', 1676468041, '__ci_last_regenerate|i:1676468041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce924812c9a3e0388c81ab53d3065b58cf5aecab', '31.222.203.2', 1676468041, '__ci_last_regenerate|i:1676468041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f149b56033f5e17ad31c362509feb8907f216e', '31.222.203.2', 1676468041, '__ci_last_regenerate|i:1676468041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d568a82c11d8a8bbc9ae30da68f5d6fda3b616', '31.222.203.2', 1676468041, '__ci_last_regenerate|i:1676468041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f3e21954bdc46586836d8d5c56d9ed1fdb10665', '31.222.203.2', 1676468041, '__ci_last_regenerate|i:1676468041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c72473228cbfe0ba0ffa39a675f64c70928cb3', '45.120.39.89', 1676468949, '__ci_last_regenerate|i:1676468949;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676468644;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4ea30086064d378a6cdd4b82f43f5b31f3092c', '45.120.39.89', 1676469461, '__ci_last_regenerate|i:1676469461;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676469455;register_id|s:3:\"342\";cash_in_hand|s:9:\"2680.0000\";register_open_time|s:19:\"2023-02-14 20:49:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f838d799f858711305daa9c82cd16276eea68ad', '45.120.39.89', 1676469483, '__ci_last_regenerate|i:1676469461;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676437685\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676469482;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fa9fd0a17c1616206a5bf0830a7926170df7764', '31.222.203.2', 1676469915, '__ci_last_regenerate|i:1676469915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b4f19adb8ba3401a9e51cdaa0f9bd771283aba', '31.222.203.2', 1676469915, '__ci_last_regenerate|i:1676469915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0bab77133f7a02f1b3f2df1368431b91f30acd', '31.222.203.2', 1676469915, '__ci_last_regenerate|i:1676469915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82075859062f4eaae874385a6af9c37faddfe54b', '31.222.203.2', 1676469915, '__ci_last_regenerate|i:1676469915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d186ed9323a9d9df7b82c52d1ddcf5388442d4d', '31.222.203.2', 1676469915, '__ci_last_regenerate|i:1676469915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eacfd1883c7a06f86ab6bc4ac6e266a30486d65b', '31.222.203.2', 1676469915, '__ci_last_regenerate|i:1676469915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4beddccc809250cab160699457f57855b99a5711', '172.105.247.100', 1676471417, '__ci_last_regenerate|i:1676471417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c47df07c2c9682fe4265635cc8db33f3f9486b9', '172.105.247.100', 1676471418, '__ci_last_regenerate|i:1676471418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c030f41c3f674112625ba1a2cf4cf278a74dfbe', '172.105.247.100', 1676471418, '__ci_last_regenerate|i:1676471418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441944e2ae3738e47122e888d976dc071d9cc6db', '172.105.247.100', 1676471418, '__ci_last_regenerate|i:1676471418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afda472ec60c7ff5140874c91692b59a46a34ad9', '172.105.247.100', 1676471418, '__ci_last_regenerate|i:1676471418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab03fa5b20b3472a398ac5c27cf0e3ee08899f5', '172.105.247.100', 1676471419, '__ci_last_regenerate|i:1676471419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf8b355264aa352937428419454ab703b94a5bc', '172.105.247.100', 1676471419, '__ci_last_regenerate|i:1676471419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55480b6dc0a978de27c4c843edcdee0650519897', '172.105.247.100', 1676471419, '__ci_last_regenerate|i:1676471419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312aadcc1feadaaa196cc46a81d7bd24dadd083e', '172.105.247.100', 1676471419, '__ci_last_regenerate|i:1676471419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce597650d8a852248694191dfb888d26265ce07f', '172.105.247.100', 1676471419, '__ci_last_regenerate|i:1676471419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e517f5427697c2543a67ba3db722a32ccbdd6f4c', '172.105.247.100', 1676471419, '__ci_last_regenerate|i:1676471419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c06ab69c41340ca55f9d6833a1c24ab0f52293', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7778ffb3ef9aa7da6db76f283179d3d101a2618', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e057ccbd81cea457600c15a61d1e7a119f483e', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5474e0ed7b6a97f658755fbd9c6bd6a8adb8d7f8', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b50accf5d103064c275486cde99e5be608b5cce', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9773da19538f4bc7bae7374cff5264af56a323ea', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71b87fc724158e69225fb7e2206528524badce5', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4647a6b9bf20b624ac5224409e355bf4ccc0672', '172.105.247.100', 1676471420, '__ci_last_regenerate|i:1676471420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f5eaefe068fffe1fcf15ff6ecfb66caa1d46d74', '172.105.247.100', 1676471421, '__ci_last_regenerate|i:1676471420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4678534195986be43d3f3518429a307c1d3f8548', '172.105.247.100', 1676471421, '__ci_last_regenerate|i:1676471421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581a16e99dfedf9eb3e1f4abbd0c50e96b4136f6', '172.105.247.100', 1676471421, '__ci_last_regenerate|i:1676471421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622b41ddd5c166e0bbec8c8e409ea64c30eae67e', '172.105.247.100', 1676471421, '__ci_last_regenerate|i:1676471421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f109791aadb42ea8521736f9eec7ac1d8639b934', '172.105.247.100', 1676471422, '__ci_last_regenerate|i:1676471422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9840ed0222ace90e983944fe44a98524d35eca6d', '31.222.203.2', 1676471562, '__ci_last_regenerate|i:1676471562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5791b854e0e6b41f0bbe5c5b8968da020395f8a0', '31.222.203.2', 1676471562, '__ci_last_regenerate|i:1676471562;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644c52936b6d5f58daa4ea4cc9f2725091996aad', '31.222.203.2', 1676471562, '__ci_last_regenerate|i:1676471562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6641d8a2caf3e63a6986356fa2c71e198f8fe10f', '31.222.203.2', 1676471564, '__ci_last_regenerate|i:1676471564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cf06f203418b6e6d11b4cef2723d960b475635d', '31.222.203.2', 1676471564, '__ci_last_regenerate|i:1676471564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e9b9a831f653ba719b1ed8841f97a52a764507', '31.222.203.2', 1676471564, '__ci_last_regenerate|i:1676471564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abab847a14f483c6880df8fac96ca2050b9f28c', '31.222.203.2', 1676473439, '__ci_last_regenerate|i:1676473439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c499c2799ec3aee3692e7657042dbd47713e4e', '31.222.203.2', 1676473439, '__ci_last_regenerate|i:1676473439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c952e23617d89761acf99cf36daf11c8cda6771', '31.222.203.2', 1676473439, '__ci_last_regenerate|i:1676473439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfccd39d72e784990196fc312d2ef6e0eee7785e', '31.222.203.2', 1676473441, '__ci_last_regenerate|i:1676473441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('449ffcbbce07cc8db97e31a3ad388a24613e566a', '31.222.203.2', 1676473441, '__ci_last_regenerate|i:1676473441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc8f43d29b7b52754ce4d1d680782749bc7adc0f', '31.222.203.2', 1676473441, '__ci_last_regenerate|i:1676473441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2576d4f695b0147470d406a5f0bb59c4ab9cfcff', '31.222.203.2', 1676475317, '__ci_last_regenerate|i:1676475317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d2bbeb0d2cb3acf42324ed0cac32d7847e9bc4c', '31.222.203.2', 1676475317, '__ci_last_regenerate|i:1676475317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0937bd2d4ba76ab86bb7c571c7c0e79f44a49ea9', '31.222.203.2', 1676475317, '__ci_last_regenerate|i:1676475317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33ffeda1f3b4f05c43b1009b73647710a1768e3e', '31.222.203.2', 1676475319, '__ci_last_regenerate|i:1676475319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e856068ddbe42499326f7e6eb6d0968b2b593d3', '31.222.203.2', 1676475319, '__ci_last_regenerate|i:1676475319;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebf88e6416f9329ebcf4b804e1ec723243de7749', '31.222.203.2', 1676475319, '__ci_last_regenerate|i:1676475319;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1fd15d5235c361eeee9b0492c9edb549e2f6cd', '147.78.47.249', 1676475425, '__ci_last_regenerate|i:1676475425;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a96b6e6c1823ba573451d74decf53b875750103', '147.78.47.249', 1676475427, '__ci_last_regenerate|i:1676475427;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c851eee3535767f511a7204eb29110bb1c55843f', '147.78.47.249', 1676475429, '__ci_last_regenerate|i:1676475429;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7693338b68e886b51a61e2ad06ca43ec155f5593', '172.105.247.100', 1676476219, '__ci_last_regenerate|i:1676476219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2fc143ae170e7399d6b978ec93d9be5d2c5b50d', '172.105.247.100', 1676476219, '__ci_last_regenerate|i:1676476219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f90e6e28da14da02b6257dd0fa39c9e2d3a16a12', '172.105.247.100', 1676476219, '__ci_last_regenerate|i:1676476219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bdc52762eaaa0c81628256aace69f2ebcebdfec', '172.105.247.100', 1676476220, '__ci_last_regenerate|i:1676476220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75dd3dd2d9659e06fa03b0725b5ab10ef28612ad', '172.105.247.100', 1676476220, '__ci_last_regenerate|i:1676476220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee729ca2837d821e5f303a84184777bd0e25fdb2', '172.105.247.100', 1676476220, '__ci_last_regenerate|i:1676476220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87825c968c258b6b0b3b8dfa2d7c7096fc9f5ef', '172.105.247.100', 1676476220, '__ci_last_regenerate|i:1676476220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b82512af5096a84f15f55fbd9ee65e82879e81a', '172.105.247.100', 1676476221, '__ci_last_regenerate|i:1676476221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fadb4bedc6bd4224f3dda1a5930cf53f8d5cbb2', '172.105.247.100', 1676476221, '__ci_last_regenerate|i:1676476221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41371dde63fccaaf9022a6b9f117bbc476b49ab6', '172.105.247.100', 1676476221, '__ci_last_regenerate|i:1676476221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f93338a9018bac37abd20a7c4807f88ae8dfe6cf', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('926f56c8768fa947100628300b58aa8ce4489871', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a14f9da301e6460ecb770357374963e4677771', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a3c82bfa2243eb13dbda5f86fbbbee616d9476', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457058ab4d896537e11747a7cda4ac980b2f1fe2', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aaeccf26df4ae45c83ae612307f46283c147ce8', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e0932888a1fa8a1950eb6734832972c5aa2a2b9', '172.105.247.100', 1676476222, '__ci_last_regenerate|i:1676476222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7540e18770a72fb6b2961439c928b0259868892', '172.105.247.100', 1676476223, '__ci_last_regenerate|i:1676476223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a77f92ca97746b576bd52893a43f17326144d0b', '172.105.247.100', 1676476223, '__ci_last_regenerate|i:1676476223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc123bf5bc032bf9ae3928696ff8551010c44959', '172.105.247.100', 1676476223, '__ci_last_regenerate|i:1676476223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd5ea4ec9793d890c11af56065cfd3680e48079', '172.105.247.100', 1676476224, '__ci_last_regenerate|i:1676476224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2c8fc4a2bbdc40cc8ac6307705ddd1131fc31b', '172.105.247.100', 1676476224, '__ci_last_regenerate|i:1676476224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f675dbfdadc9497d08ee096b55aebc84443c9a7', '172.105.247.100', 1676476224, '__ci_last_regenerate|i:1676476224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20254f28121da55f1f69accfd97e2d16486e780', '172.105.247.100', 1676476224, '__ci_last_regenerate|i:1676476224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1643abbf98493444c4a6239bafbb0f0e61f3dd9', '31.222.203.2', 1676478760, '__ci_last_regenerate|i:1676478760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b7788644ba2c104279bd7574964ffb5f8ad7a3', '31.222.203.2', 1676478760, '__ci_last_regenerate|i:1676478760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ff59ce7b2083b69ad482e586360b2442d1bc9a', '31.222.203.2', 1676478760, '__ci_last_regenerate|i:1676478760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f704febfcf723aee19471aff1ad5c918059a779a', '31.222.203.2', 1676478762, '__ci_last_regenerate|i:1676478762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63a519b2a91f9bb12ed3aa20e4728c7a59b20747', '31.222.203.2', 1676478762, '__ci_last_regenerate|i:1676478762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca8640e590234053398925479d0dc8b0bc7e9aa', '31.222.203.2', 1676478762, '__ci_last_regenerate|i:1676478762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b34552b638774208569dfac29078d50d171e5b4', '31.222.203.2', 1676480646, '__ci_last_regenerate|i:1676480646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f0a34db0b82aad81da915d29847627c7561c10', '31.222.203.2', 1676480646, '__ci_last_regenerate|i:1676480646;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c236ab0fbb14f7dbf189adc3658ca20ee86f55da', '31.222.203.2', 1676480646, '__ci_last_regenerate|i:1676480646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfa19687291c827fc406ac9971b1c01e950e877', '31.222.203.2', 1676480646, '__ci_last_regenerate|i:1676480646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcd58e46e3d78db4a3166fc8d07a2a2a35aa9d1', '31.222.203.2', 1676480646, '__ci_last_regenerate|i:1676480646;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee967c45db49dfff236d246c3a7d8ac8086abd8', '31.222.203.2', 1676480646, '__ci_last_regenerate|i:1676480646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b453acc8a1ba753a5abe044532df489c92ec075', '172.105.247.100', 1676481619, '__ci_last_regenerate|i:1676481619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13686a0b1ec4716241024cd7590d5bb41f747e8c', '172.105.247.100', 1676481619, '__ci_last_regenerate|i:1676481619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19c7894b73c64c2d6a2150eb6636f18bc4140ea', '172.105.247.100', 1676481619, '__ci_last_regenerate|i:1676481619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3009d580e0abda9d406c5b9916ba45d107e21d21', '172.105.247.100', 1676481619, '__ci_last_regenerate|i:1676481619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e5dc283ab8914fe2cad83c14eb81678de7748ae', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1d3399850c25010f3adb2dcde51926e3efc460', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4cae246a1765acc0bb547cb6834719f1092d37', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6385b0cbabb29a95be2061d59d154958f856b75', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e1debe3953cf4c733c5c11affba66323e92e92b', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dcfff1ad68413bd318f887f46e094b8b479432e', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a395e23a1e89b663be0e7552f444a12d22d4d84e', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14cc8ea8a369d55a45963d26433b7f6d2c92c32c', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e37cc658bcb5a90403a59a49a52e49dc768646', '172.105.247.100', 1676481620, '__ci_last_regenerate|i:1676481620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254c8617f3245d26dab4cc7f617fe2669ede19a5', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150437f659faf4715a779e2291018c23f6530baf', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b606bba1416926e918d331787a6efc7113c246', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc4eb6c61e57cc1e9262822b3b4c83089160adf', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b7515605abb3b9ab3bf7678718723e0b2bcc1c', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ce16dd5d4885948564845fd04da1d252887c77', '172.105.247.100', 1676481621, '__ci_last_regenerate|i:1676481621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa0d1045cfbfe19f8d00a40730a118c23055ee4', '172.105.247.100', 1676481622, '__ci_last_regenerate|i:1676481622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2816f01d96afa054a784caa3a73884d23ae8cb00', '172.105.247.100', 1676481622, '__ci_last_regenerate|i:1676481622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f925077db659e636cd207692ecc49e33b08b7e60', '172.105.247.100', 1676481622, '__ci_last_regenerate|i:1676481622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef2bb103a1c2802652592814d1591496589f1496', '172.105.247.100', 1676481622, '__ci_last_regenerate|i:1676481622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78a966d2e4bb30158e8afd3174621a3866986f6', '172.105.247.100', 1676481622, '__ci_last_regenerate|i:1676481622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40e74bb41ba7951218ae4ed4080ee26c2a93967', '31.222.203.2', 1676482465, '__ci_last_regenerate|i:1676482465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('591a85bd87754ff8bc83ec8fe562a0eec2348f26', '31.222.203.2', 1676482466, '__ci_last_regenerate|i:1676482466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('412797092b6f16f5d112987ac1ba26ea7a714f57', '31.222.203.2', 1676482466, '__ci_last_regenerate|i:1676482466;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ce867d3161d9e0fce5793c42d6955f24da5406', '31.222.203.2', 1676482466, '__ci_last_regenerate|i:1676482466;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f8e3445e8c2c9ca2e4c340037853793240ce3e8', '31.222.203.2', 1676482466, '__ci_last_regenerate|i:1676482466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088682f06c9ecf5db3bf2abcddbc6a54936d30d1', '31.222.203.2', 1676482466, '__ci_last_regenerate|i:1676482466;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27adb08ea907b868d542e13ae24f2b1a0fd7e512', '172.105.247.100', 1676486416, '__ci_last_regenerate|i:1676486416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9919c7559649e21215632f97f5910c435775de9a', '172.105.247.100', 1676486417, '__ci_last_regenerate|i:1676486417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a995e9122f4c5d649fb1337e3e7088a1a9ab2294', '172.105.247.100', 1676486418, '__ci_last_regenerate|i:1676486418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab6c3142b712ae3e37bd15875d82ff10522319b', '172.105.247.100', 1676486418, '__ci_last_regenerate|i:1676486418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3beb33a4a61d41c6e4655ccb6d3a2a3c9bc8d0', '172.105.247.100', 1676486418, '__ci_last_regenerate|i:1676486418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('845f4b923cf7f1056912e9f641e6a0f4c75b925a', '172.105.247.100', 1676486418, '__ci_last_regenerate|i:1676486418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b978baea0fda8146b58f72da33338c55d896f9', '172.105.247.100', 1676486418, '__ci_last_regenerate|i:1676486418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58ee22420b635d87f816c10c09a526373b5b837b', '172.105.247.100', 1676486418, '__ci_last_regenerate|i:1676486418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6641245befd656b38889f051fd3c3ac876f64506', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d2d78fe017ba36b3c792ac5368f92e2da4bd3e6', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f2ae40fbaee23ba394bf36b8747aa457bd3784', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a0d27f575a6d2e017bf45042d245b2788cd7a9', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dea5dc0a0c579303ee3c409d9f3be06a4312dee', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b373480d0e2d0feffad35a0018bd5e8742eb71c', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc6efca7d03dc3c6bc82725a81e54854a7ee60aa', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6631fe672160b56d6227483d22bdeb846906542a', '172.105.247.100', 1676486419, '__ci_last_regenerate|i:1676486419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6e8f3e89ebd3eb62c2f2db989e13a98c1e6bac', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81bc18450391c04d863f6e43df52b2d991a83613', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1202dc9cf21e6d167df7c2f5e1e282befa72a5d3', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13783836d68b67df6daa9bb9a7fcbf75da09aa96', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d1261fc5b86c318778bb11c95aba225dd3cbf7', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75d78e7c719fdbe29f51a3688056f0cfb64ce763', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5635d4c3147cac8ba73f1d12b015118cccb115a', '172.105.247.100', 1676486420, '__ci_last_regenerate|i:1676486420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250bdc46a81dbbd05046022224deffb1f99b55e4', '172.105.247.100', 1676486421, '__ci_last_regenerate|i:1676486421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a322ad0af2807f0034384da6c2fd66c160c502c', '172.105.247.100', 1676491218, '__ci_last_regenerate|i:1676491218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9c49602f6208341a9af7dc0c4b00aa0ff23822', '172.105.247.100', 1676491219, '__ci_last_regenerate|i:1676491219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85afbc1045cf89a0503d1369b66dd1acb071da48', '172.105.247.100', 1676491219, '__ci_last_regenerate|i:1676491219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a577c821588418501dd8528dc3b3c039285eb62a', '172.105.247.100', 1676491219, '__ci_last_regenerate|i:1676491219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5dab8a22808c4c3118b762aa0054f9129871113', '172.105.247.100', 1676491220, '__ci_last_regenerate|i:1676491220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eabff331e39eecb0d3dfdc5fe711150b8fc86936', '172.105.247.100', 1676491220, '__ci_last_regenerate|i:1676491220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99dfb0f46c9bef316ecf32f3e126679fec433366', '172.105.247.100', 1676491220, '__ci_last_regenerate|i:1676491220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5358d5f55000ec1a2098bf5787cbb42bec448a43', '172.105.247.100', 1676491220, '__ci_last_regenerate|i:1676491220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3e599caace629cf4eb8427ea5accc979a4b743', '172.105.247.100', 1676491220, '__ci_last_regenerate|i:1676491220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8308d16611dce904a4d7525edeed57ce7b478e34', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8185f8714cda2e63e2cfeb6bb59fcd3be365d51', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1cf4150ac107602daca8c37486c2a98a4b1f932', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8be7d737ececaa1096ee3ca1c68fa154c545fe', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7170778b728ba2435ba818cbc2e5723977915ef', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44dc98dd79c70b60a343c03cd9cc88f04b2f9cd', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38e5ab8ea8bb621bbbf429134083a9e5840d463', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae3504b4ba3d5b61283e548cb0827ca6127395aa', '172.105.247.100', 1676491221, '__ci_last_regenerate|i:1676491221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7d6b54d46f0c6369d0b60ece630d13fdcb6d63', '172.105.247.100', 1676491222, '__ci_last_regenerate|i:1676491222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258ddfe55c5ae289ba2aee1d7ce8dee55c16f45b', '172.105.247.100', 1676491222, '__ci_last_regenerate|i:1676491222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1745e25b22d7e1d4588f7dbfc6ada7d1fa6c485f', '172.105.247.100', 1676491222, '__ci_last_regenerate|i:1676491222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('085c01f0b4bebab8901b36d33f5b9f61f1e996f4', '172.105.247.100', 1676491222, '__ci_last_regenerate|i:1676491222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40e74b63416c22ad36cc667ebff6f35367477115', '172.105.247.100', 1676491222, '__ci_last_regenerate|i:1676491222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57ec55f2d65dd81a977c3cdedb89b6e19ade72da', '172.105.247.100', 1676491223, '__ci_last_regenerate|i:1676491223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c923dc52d2d2af7d4dbd10bc7a202ed497024f3', '172.105.247.100', 1676491223, '__ci_last_regenerate|i:1676491223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cff4bfaec7be9c5f480bb25bfa9cc30e5ca161d', '31.222.203.2', 1676491370, '__ci_last_regenerate|i:1676491370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77a956532284070ad841d624d2b2e200938d782', '31.222.203.2', 1676491370, '__ci_last_regenerate|i:1676491370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec46ba3c14c0752a3f8863a33cf8a6c80aa59765', '31.222.203.2', 1676491370, '__ci_last_regenerate|i:1676491370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c888214be5f69880012ed02cbef2088bacd220ba', '31.222.203.2', 1676491370, '__ci_last_regenerate|i:1676491370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a298b9faa99e48ef549838d0bbcc4a3e618e91', '31.222.203.2', 1676491370, '__ci_last_regenerate|i:1676491370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca7557116a927a720f0d2f4a69fea03e60fa974', '31.222.203.2', 1676491370, '__ci_last_regenerate|i:1676491370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9a6bf6e0ea3ee40c79a663d149634fcb4e7274a', '31.222.203.2', 1676493249, '__ci_last_regenerate|i:1676493249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44022f48c513e5836d201684883589f275d0d684', '31.222.203.2', 1676493249, '__ci_last_regenerate|i:1676493249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9dcbef9190c5d12c065cf5c89bbba23a2647742', '31.222.203.2', 1676493249, '__ci_last_regenerate|i:1676493249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d882ed20d0198724b683af80ede87df1b9893715', '31.222.203.2', 1676493251, '__ci_last_regenerate|i:1676493251;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f3f191666ee336b02cf0a78e04dea9e151d770', '31.222.203.2', 1676493251, '__ci_last_regenerate|i:1676493251;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8551c609722c6e01bf7d1f02b68e4c43062ac17', '31.222.203.2', 1676493251, '__ci_last_regenerate|i:1676493251;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20386df53d485648e19c14e9b37d7e0332cbb94', '31.222.203.2', 1676495118, '__ci_last_regenerate|i:1676495118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('556744bb398411e7800eeb66bd5923bbad2de780', '31.222.203.2', 1676495118, '__ci_last_regenerate|i:1676495118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7de8c2817a466843217e7154634e0c2ab3f8dec', '31.222.203.2', 1676495118, '__ci_last_regenerate|i:1676495118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64556c4f7d8df1bc185e53c223b108443f304c2e', '31.222.203.2', 1676495118, '__ci_last_regenerate|i:1676495118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15a8a39cf6807f500b3341446a8a875aab1642b1', '31.222.203.2', 1676495118, '__ci_last_regenerate|i:1676495118;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('312976329ec48d1cb80e352ae29cc7b7374b022e', '31.222.203.2', 1676495118, '__ci_last_regenerate|i:1676495118;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11dba42c75c5776303622b1c2f721362ebe0f2f1', '172.105.247.100', 1676496017, '__ci_last_regenerate|i:1676496017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('090c531bbbfefe5d7c22e5f4b96ab22c4ead679a', '172.105.247.100', 1676496019, '__ci_last_regenerate|i:1676496019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd4af7a8346b1b9a994b8a84a2931e986ab92b4', '172.105.247.100', 1676496020, '__ci_last_regenerate|i:1676496020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192e32dd147cfcf54161f03112e379260e8693b5', '172.105.247.100', 1676496020, '__ci_last_regenerate|i:1676496020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b578d26fc0bf70c19f49d545d3ee8b8af12d73f0', '172.105.247.100', 1676496020, '__ci_last_regenerate|i:1676496020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823d47171982f96622a3386d97223c6727575b7e', '172.105.247.100', 1676496020, '__ci_last_regenerate|i:1676496020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840c7d1cf3a3d65d6cb1ff9139e604a2af7654ec', '172.105.247.100', 1676496021, '__ci_last_regenerate|i:1676496021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74be322464615a8244979b39995e82cdee4b8bf9', '172.105.247.100', 1676496021, '__ci_last_regenerate|i:1676496021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4b323e21789f997929347d4e60e3c1e3691fec', '172.105.247.100', 1676496021, '__ci_last_regenerate|i:1676496021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff87defdd8c722dffc48ff289460d16cad594b2', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e171736a8a8a571ac3fcf9a9757e4314a0bf52', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0406f55dcc49bdf4f8ea315fe109b655e138b7cc', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b55c9f57a0b19137fa967eb2992379194bc5fbf', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddbec1fa18456385688dc04c71052e4400aa154a', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8900723fd99d55ebd2ff2b7ca5ddd0ae56441b0d', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57f514dbc8130423260027dd27374c3b1928216', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403feffb9994d0a18e1426edd0a6e24905fe315e', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb9b9e802b09cfa26d59591d19e95134271f4919', '172.105.247.100', 1676496022, '__ci_last_regenerate|i:1676496022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dbca865a9ee48bc4a361286182027424bb4bb2e', '172.105.247.100', 1676496023, '__ci_last_regenerate|i:1676496023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a714afd762d61d732ac11c472d777aa1cc05de', '172.105.247.100', 1676496023, '__ci_last_regenerate|i:1676496023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96640943b25aa70beb042f3b34d09d55a354d38e', '172.105.247.100', 1676496023, '__ci_last_regenerate|i:1676496023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d263abbf790ea973fd2ad5683fc6dc7d16127e16', '172.105.247.100', 1676496024, '__ci_last_regenerate|i:1676496023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6f94d7061e4fc83cc3677a12178e7c94ab6dcd', '172.105.247.100', 1676496024, '__ci_last_regenerate|i:1676496024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d066980f4c37b0a757afec281a298c5c0adfd23', '172.105.247.100', 1676496024, '__ci_last_regenerate|i:1676496024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a26accfa29df161cda588e5f3b15d0bd9cc49598', '31.222.203.2', 1676496757, '__ci_last_regenerate|i:1676496757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb6c87b5c404491a5a688e96b8e5e26d1814b9e', '31.222.203.2', 1676496757, '__ci_last_regenerate|i:1676496757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8210efc0d24e45834c9bd1d836b8267a357f6c6c', '31.222.203.2', 1676496757, '__ci_last_regenerate|i:1676496757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c546b905e2378290730cbb1ee918ec5d49ef3cc4', '31.222.203.2', 1676496757, '__ci_last_regenerate|i:1676496757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5fe9c55add60f4160253192b2ebd1a716c2d3ca', '31.222.203.2', 1676496757, '__ci_last_regenerate|i:1676496757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812429ff388949d0dfbab74bbab4db4fa0d95413', '31.222.203.2', 1676496757, '__ci_last_regenerate|i:1676496757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6a2a6e94e502b6926d1a23f115f0546a1cb307', '31.222.203.2', 1676498645, '__ci_last_regenerate|i:1676498645;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26397e350827848ae29a0a7c7a17056afd68723c', '31.222.203.2', 1676498645, '__ci_last_regenerate|i:1676498645;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c57feb283f91be331f6124331ce3d71571a90b8', '31.222.203.2', 1676498645, '__ci_last_regenerate|i:1676498645;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd20ff76b2e4ce80a6687c2b0a039f41db1aac2f', '31.222.203.2', 1676498646, '__ci_last_regenerate|i:1676498646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb29ebf9621e856e3dd5422818df04e9f88f486', '31.222.203.2', 1676498646, '__ci_last_regenerate|i:1676498646;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d689576c5055146d323e636f08e71b8ea74e7957', '31.222.203.2', 1676498647, '__ci_last_regenerate|i:1676498647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e05cf84cca0630b0f44be8d3283b7ff41c9d255', '31.222.203.2', 1676500461, '__ci_last_regenerate|i:1676500461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292613c6323042b99d8fb89d5ff0d8c3e355e93d', '31.222.203.2', 1676500461, '__ci_last_regenerate|i:1676500461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('649d123a9ea56e9e5f3977f54fefab04d405decc', '31.222.203.2', 1676500461, '__ci_last_regenerate|i:1676500461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52133ce0288fa2ef82b58641fd7242b69f37c5c', '31.222.203.2', 1676500463, '__ci_last_regenerate|i:1676500463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43fed08712c834de4371db50bbfa700cbcbac94d', '31.222.203.2', 1676500463, '__ci_last_regenerate|i:1676500463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d51b7e2bf6a7d800f279266e22e26a0edef0ed', '31.222.203.2', 1676500463, '__ci_last_regenerate|i:1676500463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3f57b5b02bae43256c20ace1a67f759bbe3fe5d', '172.105.247.100', 1676501418, '__ci_last_regenerate|i:1676501418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff5f8aa9d25186bb742fe070a7d0005451d74db', '172.105.247.100', 1676501420, '__ci_last_regenerate|i:1676501420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddc54714f5b46a9c5b087ae940ad93dd092fde1', '172.105.247.100', 1676501420, '__ci_last_regenerate|i:1676501420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2edf1e5554b077ff2206117b440cb6b7375cf4d1', '172.105.247.100', 1676501420, '__ci_last_regenerate|i:1676501420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35e285402965976408c4c7fc0a382ed58d03eda', '172.105.247.100', 1676501420, '__ci_last_regenerate|i:1676501420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3037b2f0f084426d730404a4152e41fd318e8ad9', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c530395745b03cb8fa5ea641006b7165642e25e', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7747414e07e7e84aed6d2841c3ae3d94bc9cbbae', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbb1f689c9876dc90d8ff734a7474647fca5e3d', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a3d6f62de75253b37905f1d56abd937f17904a6', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5309961b1844a7972201c0cf6422182d35a3e340', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c1787893077651445dfd9d5d8fffa2bd8bd4960', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52059b8ffc7dbf32c9d269e60a11da718829e0a7', '172.105.247.100', 1676501421, '__ci_last_regenerate|i:1676501421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c65057779057904ec602e754691304ffd63b45e', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c9215654b5d58b4f5ba8ee5e1e69ad4dc91dbb', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37b598b9e52cd14b3288e42958a8b4f5ef38fab', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eaed03ad3f71d39e7aee11ac65e77e79063aa92', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbbd4a22281b82dbc964a07c475c42ec482a55f', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c295f0f943d09bf24ea6329bb1d500977b5a4502', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1dba9131516ecd0b2336fdfc9fe1ad0883db987', '172.105.247.100', 1676501422, '__ci_last_regenerate|i:1676501422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991f03182f29310fc3dda34f4d1631a8281adf8d', '172.105.247.100', 1676501423, '__ci_last_regenerate|i:1676501423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a18f92beccd3583a0b64f4d47e76f57a363c0ad3', '172.105.247.100', 1676501423, '__ci_last_regenerate|i:1676501423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1fe8cb94de35c7f98ddf2b65d7bcd18e75da734', '172.105.247.100', 1676501423, '__ci_last_regenerate|i:1676501423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eebd740d3b97dba7896dd843b07514feb4045f95', '172.105.247.100', 1676501423, '__ci_last_regenerate|i:1676501423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde82e2b57139208a7ed0ed5babf5e39c650f995', '172.105.247.100', 1676506217, '__ci_last_regenerate|i:1676506217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa0a71181309fa34a86a41393870de36b4d0f763', '172.105.247.100', 1676506217, '__ci_last_regenerate|i:1676506217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2d729c8c58e4673cc1909bbcc709d5d33e2e6a', '172.105.247.100', 1676506218, '__ci_last_regenerate|i:1676506218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e3d8cdb336106ec3a9d2767195695e8ca01adb', '172.105.247.100', 1676506219, '__ci_last_regenerate|i:1676506219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83211adadee194f0c626bd76c1b8a7e68fb069dd', '172.105.247.100', 1676506219, '__ci_last_regenerate|i:1676506219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d452564e74d3f78c39936f1fbff0e674179a8a2', '172.105.247.100', 1676506219, '__ci_last_regenerate|i:1676506219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a504a428617cc594cc142d9b8ded6d9b4b8d0e41', '172.105.247.100', 1676506220, '__ci_last_regenerate|i:1676506220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe2a181acfd8668af7cf6e5455c6a33c5a205696', '172.105.247.100', 1676506220, '__ci_last_regenerate|i:1676506220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84971e85aade81c21d58ebfe596a2ddd12262f0b', '172.105.247.100', 1676506221, '__ci_last_regenerate|i:1676506221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7b8144e0959f6139c709087968f6a0c7c775f4', '172.105.247.100', 1676506221, '__ci_last_regenerate|i:1676506221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbe0a873c4421b0382d8ea486f7afde62221fb7', '172.105.247.100', 1676506222, '__ci_last_regenerate|i:1676506221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97dee96b2f301a28ed7828f34c8f6cc409a9dbea', '172.105.247.100', 1676506223, '__ci_last_regenerate|i:1676506223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93844c0a6c473d3448f8c1a7dd28717788efcc56', '172.105.247.100', 1676506223, '__ci_last_regenerate|i:1676506223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff058a0597ae2660dca5f493666478d9ed352e9', '172.105.247.100', 1676506223, '__ci_last_regenerate|i:1676506223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebabab2154553eef8293c2a4d784c3ddf2643818', '172.105.247.100', 1676506223, '__ci_last_regenerate|i:1676506223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce6cc37ae9d4a53022ff3c2b4a2a30e9e782cd1c', '172.105.247.100', 1676506224, '__ci_last_regenerate|i:1676506224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea1393de5ea74b65e0998e5197837d5d815fe7d7', '172.105.247.100', 1676506224, '__ci_last_regenerate|i:1676506224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3db6ab607681517bdfe35e4c7523546e5165e5e', '172.105.247.100', 1676506225, '__ci_last_regenerate|i:1676506224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074d0420fe4f509ac5468236714c82a4b60a92da', '172.105.247.100', 1676506225, '__ci_last_regenerate|i:1676506225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb6bc7d6afadf9aa3b0cf2638669fb2864ec4d6', '172.105.247.100', 1676506226, '__ci_last_regenerate|i:1676506225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc6c89a5145869d1f1730128b18d0ffe3b759cf6', '172.105.247.100', 1676506225, '__ci_last_regenerate|i:1676506225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2594e5fd9fc420b85facff91a492335efbc98c75', '172.105.247.100', 1676506226, '__ci_last_regenerate|i:1676506226;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b313e2711bfacfe407ad021fbedfbf387de9fc1', '172.105.247.100', 1676506227, '__ci_last_regenerate|i:1676506227;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34ecc7bc675e9b90ab1896365e4a46b7ce6299e', '172.105.247.100', 1676506227, '__ci_last_regenerate|i:1676506227;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d15779051df6039eebe16168c8c1de35c3a00095', '31.222.203.2', 1676507552, '__ci_last_regenerate|i:1676507552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7afcaa8dad11515fd827dfaa9ec51dd0bed18471', '31.222.203.2', 1676507552, '__ci_last_regenerate|i:1676507552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11afa79f3c78e71618c3ab63a75a16749ccb1669', '31.222.203.2', 1676507552, '__ci_last_regenerate|i:1676507552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('036e00178324d00ebc2e825ee0ab3e6438ba7d40', '31.222.203.2', 1676507552, '__ci_last_regenerate|i:1676507552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09cd3b685f2593e73a2047d9fbe4ecd05b976e51', '31.222.203.2', 1676507552, '__ci_last_regenerate|i:1676507552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963f97758678549c27feaa4815f6e99aaa857334', '31.222.203.2', 1676507552, '__ci_last_regenerate|i:1676507552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac39d434a9a46f90b9c1dd284c7bab6611a3da8', '31.222.203.2', 1676509449, '__ci_last_regenerate|i:1676509449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94a8edce65fc95f364cd02d6ec26d757d587ee1', '31.222.203.2', 1676509449, '__ci_last_regenerate|i:1676509449;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac50c5908a83485360b9a5752a2d5f138d140b3', '31.222.203.2', 1676509449, '__ci_last_regenerate|i:1676509449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e709f93aa22b48a18626d95bcee12ebf3417cc70', '31.222.203.2', 1676509450, '__ci_last_regenerate|i:1676509450;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07114abe09ad100dabda32c752e60145a61ffa30', '31.222.203.2', 1676509450, '__ci_last_regenerate|i:1676509450;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de06f6075fcc713d8a252f96d67f858883d6d4ec', '31.222.203.2', 1676509450, '__ci_last_regenerate|i:1676509450;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2c785b57f6608c9d1031018a5834ffba4ebcbd', '31.222.203.2', 1676511256, '__ci_last_regenerate|i:1676511256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eec3457a4ae3527140bc1f8864da00e4ebddff1', '31.222.203.2', 1676511256, '__ci_last_regenerate|i:1676511256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4394f8accc27ed89aafca723c685cfaf0fb1694f', '31.222.203.2', 1676511256, '__ci_last_regenerate|i:1676511256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e137ac4588863ceb0e1d80f6bab96ff20831252', '31.222.203.2', 1676511256, '__ci_last_regenerate|i:1676511256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a5aeb101e999a183acff0d445ee7f620c1327d', '31.222.203.2', 1676511256, '__ci_last_regenerate|i:1676511256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807e3113ad455dc465d47a374a018b0be9f0eafb', '31.222.203.2', 1676511256, '__ci_last_regenerate|i:1676511256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('123b1b23fe9b195859c0312e01de6f5fdbe01478', '172.105.247.100', 1676511616, '__ci_last_regenerate|i:1676511616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629c098c96301529c0cea09840c611e80a40256a', '172.105.247.100', 1676511617, '__ci_last_regenerate|i:1676511616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80829c15e8113e10f076e1d4fdabe000ecb5b96', '172.105.247.100', 1676511617, '__ci_last_regenerate|i:1676511617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d0e50d485dec2c979d2a2b6031b80d2fc2ec24', '172.105.247.100', 1676511618, '__ci_last_regenerate|i:1676511618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deeb417ffcde96d5bb3e65da6ab5480d722f9352', '172.105.247.100', 1676511618, '__ci_last_regenerate|i:1676511618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f629e06ad69b1e24abe7d8c01ad63819b58f39ca', '172.105.247.100', 1676511619, '__ci_last_regenerate|i:1676511619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a6d6048dc0aae90c0f35d5c5c57e5209290b80a', '172.105.247.100', 1676511619, '__ci_last_regenerate|i:1676511619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c47cd928ac31b1fb1d32c83892ce9c110dbea6d0', '172.105.247.100', 1676511620, '__ci_last_regenerate|i:1676511619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73f4d002e1032588988165e97924a3ede56caea2', '172.105.247.100', 1676511620, '__ci_last_regenerate|i:1676511620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfba467af4d33f03dc600fb78f1b4c5ec92e5206', '172.105.247.100', 1676511620, '__ci_last_regenerate|i:1676511620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed43eeac688b287898213aaa305797ecdbb8de1', '172.105.247.100', 1676511620, '__ci_last_regenerate|i:1676511620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c9d5c63a1d63da5a41f49cadcf5e1c1b2aeafe', '172.105.247.100', 1676511621, '__ci_last_regenerate|i:1676511620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff1620a9fe345b8f0ddb83aad34a6e20a182237b', '172.105.247.100', 1676511621, '__ci_last_regenerate|i:1676511621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d93b3092b7b8d02b7c1f66a9a16a4ea50ca227e', '172.105.247.100', 1676511622, '__ci_last_regenerate|i:1676511621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b39f5f1cc84f1179b9a70bc17176ce5295a4057', '172.105.247.100', 1676511622, '__ci_last_regenerate|i:1676511622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fafb381c7ef0e11efa4b362abde47b76b312c45d', '172.105.247.100', 1676511622, '__ci_last_regenerate|i:1676511622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7842b73b99c9f577538932bab691d7e14eeebd7', '172.105.247.100', 1676511622, '__ci_last_regenerate|i:1676511622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a5bddd20f8cdcec5ace6fea2b4c8ccce5b1433', '172.105.247.100', 1676511623, '__ci_last_regenerate|i:1676511623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a08019d5ecef60d6a4c68ea83ccbe1da3cf192', '172.105.247.100', 1676511624, '__ci_last_regenerate|i:1676511623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffdb6c1a27c0d0d37b557943b53debded1f98076', '172.105.247.100', 1676511624, '__ci_last_regenerate|i:1676511624;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2be4f5c7a8a804bda364355dfce8188314a78e', '172.105.247.100', 1676511625, '__ci_last_regenerate|i:1676511625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a82b6559e763b88b9d0122af69d1486c4f506d5', '172.105.247.100', 1676511626, '__ci_last_regenerate|i:1676511625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d6fe7eb80855ff1c3279557b7df03bb3f65891', '172.105.247.100', 1676511626, '__ci_last_regenerate|i:1676511626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bb02eb063c78386c4f8f304e7cf63c3604af120', '172.105.247.100', 1676511627, '__ci_last_regenerate|i:1676511627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee8e0adda98487c57b9166fbefebce299a5ffea', '31.222.203.2', 1676512953, '__ci_last_regenerate|i:1676512953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314429bf155c029ebc586d1c5e0b40c3fa7d2d94', '31.222.203.2', 1676512953, '__ci_last_regenerate|i:1676512953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e193f8e3afde3400f434b3eb9ce3c13b82bcbd', '31.222.203.2', 1676512953, '__ci_last_regenerate|i:1676512953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('993ef10091be92fce475ed13de0b1e4de0b67525', '31.222.203.2', 1676512953, '__ci_last_regenerate|i:1676512953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d2c47c133d6319416e4c5e968e2e455a0e27e6d', '31.222.203.2', 1676512953, '__ci_last_regenerate|i:1676512953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd5efbfca1dd2c131e07db0cbf5b286fbd81e14', '31.222.203.2', 1676512953, '__ci_last_regenerate|i:1676512953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7df579027a4628957619c50a00e724225c435e1', '31.222.203.2', 1676514843, '__ci_last_regenerate|i:1676514843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4283db5119ff961ec5699aa0c0f34783fc958b5c', '31.222.203.2', 1676514844, '__ci_last_regenerate|i:1676514844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce6387e5577bc20b45a1bb8aa2450a3cd0dca8e', '31.222.203.2', 1676514844, '__ci_last_regenerate|i:1676514844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b35e53640b349ab5e3b2ccc82ab4244bfb8fd4', '31.222.203.2', 1676514844, '__ci_last_regenerate|i:1676514844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64bf4b26c6c036c2e31482f1fc3ed56cefb9fb4', '31.222.203.2', 1676514844, '__ci_last_regenerate|i:1676514844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ba126a87f72ade886f53775f94926b6677810a', '31.222.203.2', 1676514844, '__ci_last_regenerate|i:1676514844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fa26e66656dcdb6be7dea3400b4ce4f4835b94', '31.222.203.2', 1676516715, '__ci_last_regenerate|i:1676516715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dedf1a1436e5c6a1e805359e9d2c2d6eb036e897', '31.222.203.2', 1676516717, '__ci_last_regenerate|i:1676516717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00562a895ae098b3b082f640b143e7478a0f7a1', '31.222.203.2', 1676516717, '__ci_last_regenerate|i:1676516717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('104cab11e21fb3e99c754cab787c208f2420b268', '31.222.203.2', 1676516717, '__ci_last_regenerate|i:1676516717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1a7d7eeb8c53ee5415109ad88665bfc558a9e2', '31.222.203.2', 1676516717, '__ci_last_regenerate|i:1676516717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc27b8dd4204f242af142d5be70f1a755688780f', '31.222.203.2', 1676516717, '__ci_last_regenerate|i:1676516717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23179dc541b479780c6d9eb472a09bb963c5b5dd', '172.105.247.100', 1676517018, '__ci_last_regenerate|i:1676517018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701fedefc6d3df0c52d4e57d5a845d99caf84172', '172.105.247.100', 1676517019, '__ci_last_regenerate|i:1676517018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4660876efcd06196eeaa932dc508aea443c00f6d', '172.105.247.100', 1676517019, '__ci_last_regenerate|i:1676517019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3dc9318de423dc678fff2b4bfcf3a85d902072', '172.105.247.100', 1676517020, '__ci_last_regenerate|i:1676517019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50628204ded79a4829b822c4fd7e4b5069f736a3', '172.105.247.100', 1676517020, '__ci_last_regenerate|i:1676517020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67505b10e53e47b04c5fd18a125f146175ae53c6', '172.105.247.100', 1676517020, '__ci_last_regenerate|i:1676517020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d323c20e66e62842afec464f3c86034fa6f26768', '172.105.247.100', 1676517020, '__ci_last_regenerate|i:1676517020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f700c946e74aa7f50e5dbf37443dd2fefccba0a8', '172.105.247.100', 1676517020, '__ci_last_regenerate|i:1676517020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c910cc79f4dc0d126cca932372c88fde1e5a501', '172.105.247.100', 1676517021, '__ci_last_regenerate|i:1676517021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8efecb5a6d9bb28a2fec74cf94e8c97bcc0efbe5', '172.105.247.100', 1676517021, '__ci_last_regenerate|i:1676517021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c72e3f0d1004f8cafdd7d9336f576c6cc049d27', '172.105.247.100', 1676517021, '__ci_last_regenerate|i:1676517021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73648c8f2d743c1ac73aaa044029e4e6f147026d', '172.105.247.100', 1676517021, '__ci_last_regenerate|i:1676517021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55351ba739d90f90be94db7a39dddca9798b64b', '172.105.247.100', 1676517022, '__ci_last_regenerate|i:1676517022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a754c668ebe9026becafcabfa423f32499d00c1', '172.105.247.100', 1676517022, '__ci_last_regenerate|i:1676517022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f804de593adb926d171f58fd03713d48c32687', '172.105.247.100', 1676517023, '__ci_last_regenerate|i:1676517023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c2db4261aefbc63b144844242b421701486701', '172.105.247.100', 1676517023, '__ci_last_regenerate|i:1676517023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32f4536b13b05f217411125e3baec2d4dd5cb2f', '172.105.247.100', 1676517023, '__ci_last_regenerate|i:1676517023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e37ee6e8b981d03f51be511102ccc4dee09c53', '172.105.247.100', 1676517023, '__ci_last_regenerate|i:1676517023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e286ef58ede9e29e631515813f4e9018c1b2b484', '172.105.247.100', 1676517024, '__ci_last_regenerate|i:1676517024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3429b2aaccf6c73c6b2c71583e23938a3103dc39', '172.105.247.100', 1676517024, '__ci_last_regenerate|i:1676517024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c291e3d7a856f6e6937c3945711872f4d8717a6', '172.105.247.100', 1676517025, '__ci_last_regenerate|i:1676517024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be4afdc59a19ef11a8e6c71339717148612b29da', '172.105.247.100', 1676517025, '__ci_last_regenerate|i:1676517025;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c8336145eda9a9743aaa498a35f0a2815e37a7', '172.105.247.100', 1676517025, '__ci_last_regenerate|i:1676517025;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('205b8180ca2a1c7b9c1536c148312a82da993fce', '172.105.247.100', 1676517026, '__ci_last_regenerate|i:1676517026;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4a1dd6f153eb49d161297bce774268d16091a53', '31.222.203.2', 1676518385, '__ci_last_regenerate|i:1676518385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935583a3dc7a326d8b9b34a8cf79d7a3fed18979', '31.222.203.2', 1676518386, '__ci_last_regenerate|i:1676518386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4315dc4cd928ca85d7243f1522664dd95e3a3b5', '31.222.203.2', 1676518386, '__ci_last_regenerate|i:1676518386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186c5069a5f88f13a933136f0bf1b8e178a2e8ba', '31.222.203.2', 1676518386, '__ci_last_regenerate|i:1676518386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f9222ea62371333fb069edda028b02b3be5dcf', '31.222.203.2', 1676518386, '__ci_last_regenerate|i:1676518386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ccde69c1919633d0667c8dd09f3a91b456e2592', '31.222.203.2', 1676518386, '__ci_last_regenerate|i:1676518386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d967b4664cff2920107ef2bec01f85479bfd4c63', '31.222.203.2', 1676520195, '__ci_last_regenerate|i:1676520195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa451780e853288c972a7e021d85ba07296049b', '31.222.203.2', 1676520195, '__ci_last_regenerate|i:1676520195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9383a8a111ddf89a9f32131af84f7ae66f6adffc', '31.222.203.2', 1676520195, '__ci_last_regenerate|i:1676520195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1de441963be419185f9e54fd3ae0077682b36a', '31.222.203.2', 1676520195, '__ci_last_regenerate|i:1676520195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b643f6537045006b2cedfae1e1c74a2b66d393fb', '31.222.203.2', 1676520195, '__ci_last_regenerate|i:1676520195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3d5df5b9ffd4b33cad63014cc85f31696e91dbd', '31.222.203.2', 1676520195, '__ci_last_regenerate|i:1676520195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c3d62684a4978a604f1dc410ac653f1176d155c', '31.222.203.2', 1676522059, '__ci_last_regenerate|i:1676522059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38da0d915dd7cd51b498dd6c00d57cdc7eafd278', '31.222.203.2', 1676522059, '__ci_last_regenerate|i:1676522059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c95e89c26e1a241f5e4f615b69807bd36bbac8', '31.222.203.2', 1676522059, '__ci_last_regenerate|i:1676522059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e20f8ed6ebf7a87cdb0ade5020c934d953613e0', '31.222.203.2', 1676522059, '__ci_last_regenerate|i:1676522059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c2c7f7a47fccddded34c50bdaf1a668a0a1c75', '31.222.203.2', 1676522059, '__ci_last_regenerate|i:1676522059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b44bfd2ba3608952f6fd89c3f05d273a7d0a72d', '31.222.203.2', 1676522059, '__ci_last_regenerate|i:1676522059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b638eb16b778979dc7a8ddabaa205a97ba538d6', '172.105.247.100', 1676522418, '__ci_last_regenerate|i:1676522418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6144e1a8c2a26f6005d0d9e8ded2e46f4c54232', '172.105.247.100', 1676522418, '__ci_last_regenerate|i:1676522418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('186492474bd2bdff3e4a3d388cbe2e3fced577e4', '172.105.247.100', 1676522418, '__ci_last_regenerate|i:1676522418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7601a3b039c99d37ca750fdc945c4974558c84', '172.105.247.100', 1676522418, '__ci_last_regenerate|i:1676522418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d3126d0a769845939e6b41e50ad5640272190d', '172.105.247.100', 1676522418, '__ci_last_regenerate|i:1676522418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d831f57d2e46961a499413958100cdb03c75f64', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96baeea1b38cab33811e5f46af72d9313618f8fd', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('168e7c8873f06c848f61eb818fcd73dbb62c402b', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35068f2aa8611ccc302d31887e996b00c81d58fe', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e82505094174740d4aceb98193e9a57f7586cdb', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aca66dcaf9bcf74af52d3a1d62843ba4536983da', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c0f046d14c31212a2b3a812b26277dd7f359ac', '172.105.247.100', 1676522419, '__ci_last_regenerate|i:1676522419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14229c644f71cbba078ca7f7e98e18c034600b19', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afe903177b09eed4859ecbf99cd1d4830d21bc1f', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f2a6238d1336486f730fd558936f851f9662f2f', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20e394b22d2eeec00204fb44bd19c6967d45ea1', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c334b8e2e3dec3e52d9239f41ce5dbcdbdff691', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('176f268474e64efbe24eba3cb79f4fb5c198db0b', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177ff0b1225fa2dd6b22992ed090d13210b8e974', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2728321b9950df21b89a618fd325d478d6a77e8c', '172.105.247.100', 1676522420, '__ci_last_regenerate|i:1676522420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04a62c84b971cb331ec8ca283f3350379ce3518', '172.105.247.100', 1676522421, '__ci_last_regenerate|i:1676522421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18eb49d3ee2f2affd178533dabf60acc88d21c51', '172.105.247.100', 1676522421, '__ci_last_regenerate|i:1676522421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a0b2919905e68f17fb6deb87869c0d60feb8c9', '172.105.247.100', 1676522421, '__ci_last_regenerate|i:1676522421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a2ded23c3a1959b687bd8c2aa39ad44459129ec', '172.105.247.100', 1676522421, '__ci_last_regenerate|i:1676522421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd939f3c8b849efb3df6829386909a690e2160f', '31.222.203.2', 1676523859, '__ci_last_regenerate|i:1676523859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727087ce15b032874cd8d196ee7baf0a7d71ede8', '31.222.203.2', 1676523859, '__ci_last_regenerate|i:1676523859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22512f1f46c9a7e18a1e8e7ec7b1ac02087b66d8', '31.222.203.2', 1676523859, '__ci_last_regenerate|i:1676523859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da066f2b03a3af44cd26b1b126e36bb1008a6226', '31.222.203.2', 1676523859, '__ci_last_regenerate|i:1676523859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29ad9a07cb4ab6f79b6c798035a77ffd15fdd5d', '31.222.203.2', 1676523859, '__ci_last_regenerate|i:1676523859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af35275aecaf52ce90c71418e893a41b341be678', '31.222.203.2', 1676523859, '__ci_last_regenerate|i:1676523859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c61cd781c58d322f503d6bf36923b4b1b727c66', '45.120.39.89', 1676525125, '__ci_last_regenerate|i:1676525125;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676458007\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676525116;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00926453531b4103b618e2a110ead029968917f3', '45.120.39.89', 1676525137, '__ci_last_regenerate|i:1676525125;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676458007\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676525137;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11fd14c266b9b4d4917b2d830fabb6b5cb4c3917', '172.105.247.100', 1676527820, '__ci_last_regenerate|i:1676527820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9453c2b8681612a0ae0486d75d02909573da7051', '172.105.247.100', 1676527820, '__ci_last_regenerate|i:1676527820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909d6b3d3c15a2f14e13bae3a2198aeb1f05aeb1', '172.105.247.100', 1676527820, '__ci_last_regenerate|i:1676527820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9924dd76c201505d2ba6570704d5d739cb90ee62', '172.105.247.100', 1676527820, '__ci_last_regenerate|i:1676527820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5083a9838560c355d3f71cd7a07378ce7718908', '172.105.247.100', 1676527821, '__ci_last_regenerate|i:1676527821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd82246a5a13d14908b3e3ee49624c763253c8ec', '172.105.247.100', 1676527821, '__ci_last_regenerate|i:1676527821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a4aca4613c7414bf297495bf456f8537c77243', '172.105.247.100', 1676527821, '__ci_last_regenerate|i:1676527821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a53da999d09f04756542a9473119b9469b5aecc', '172.105.247.100', 1676527821, '__ci_last_regenerate|i:1676527821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00873107156926ca08df78f106e956a538dc55c6', '172.105.247.100', 1676527821, '__ci_last_regenerate|i:1676527821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd860d1ba766fabf34b3240cbc5bcea804c11971', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b06e18703f1b3cab40fcec48e39b729c8f2ff3fd', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b99ea5575a822145edb5d6d0e7c45ec6c32718', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fdcb64c46597fe3b9ef96bf3dfc5cb923989b3', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('414b5c863b718236f85834b55224a081146fd54b', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9af5b839bcbf6c2a34a553afab2a182001e72c6', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ca19a32e68f7a4db950c29605cb8741a189966', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8d1e3eecfcae094cdb2b942cf75cec49e39081', '172.105.247.100', 1676527822, '__ci_last_regenerate|i:1676527822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b37a4eab5cbd1c0b4ceb5c37594071ef93b58915', '172.105.247.100', 1676527823, '__ci_last_regenerate|i:1676527822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cacc6ec4b7ea5673c2e33101fbe5ddb6b02d84d6', '172.105.247.100', 1676527823, '__ci_last_regenerate|i:1676527823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d596716eb931f65c34fa1ae05b7c1910cd47a0', '172.105.247.100', 1676527823, '__ci_last_regenerate|i:1676527823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2be407c63551a63c9354b9571c9f49da6860971e', '172.105.247.100', 1676527823, '__ci_last_regenerate|i:1676527823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e67ff06c413a7e9835ece48eed6fbb0cb422cf0b', '172.105.247.100', 1676527824, '__ci_last_regenerate|i:1676527823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76855a3636d527a91723ce5bb89f1e2094fc7ed5', '172.105.247.100', 1676527824, '__ci_last_regenerate|i:1676527824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e7fa99b4bdb26a0b1a6c3ed011c1ab768c5a38', '172.105.247.100', 1676527824, '__ci_last_regenerate|i:1676527824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7cddbd553b27c431aa6cd9ad1fcef75582111b', '31.222.203.2', 1676531064, '__ci_last_regenerate|i:1676531064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c5cd70aead0daf8746789b6b33955e9dbd82a1', '31.222.203.2', 1676531064, '__ci_last_regenerate|i:1676531064;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27cc1e3349ea4fc8e4a468b02937a936005e3da2', '31.222.203.2', 1676531064, '__ci_last_regenerate|i:1676531064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40d21f22d29c5a673cc9df1dc305260a71689e5', '31.222.203.2', 1676531065, '__ci_last_regenerate|i:1676531065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eaba8382205defc84f8bf23816a89da74064fb9', '31.222.203.2', 1676531065, '__ci_last_regenerate|i:1676531065;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37057e60bb77e36523b9065c5dbffcb47cc62efd', '31.222.203.2', 1676531065, '__ci_last_regenerate|i:1676531065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0f13c45b12dec54d0a039d5475c3c1313dc601', '172.105.247.100', 1676533222, '__ci_last_regenerate|i:1676533222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d71916b31a75b734876a5d7e532962c8871f0f1', '172.105.247.100', 1676533222, '__ci_last_regenerate|i:1676533222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d046a6380957a722679e0947166561e20ced45', '172.105.247.100', 1676533222, '__ci_last_regenerate|i:1676533222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('890827baef85d3f12b0abd5ea3ec0f9ebd1025cb', '172.105.247.100', 1676533222, '__ci_last_regenerate|i:1676533222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5031dadb38ee0351bd47447b0bd84f1d79012e34', '172.105.247.100', 1676533222, '__ci_last_regenerate|i:1676533222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035a2a788d4a2262b908b897520f74e256943ae7', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b192101c1d8a12467e76fc5839d6988de07a820c', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c807bb0f35b45b828cd884952a55d0773921ca0', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ff685c05da95e23b61ff20c10afb990a3356c1', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5955e6104c552030083b214049db8cd6a7efc2b3', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed629b6f97bdc01b8ded2373db2931670c435ff1', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76343df1f4209f61a82b00a30696f6fce8f7f5af', '172.105.247.100', 1676533223, '__ci_last_regenerate|i:1676533223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b357da3c5c20aa943c2e053bce9762b32be28f5c', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c40a31ce23d2410f928a14c443035491c1e1ac', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('768dab606c932527a010b4a14df0a503a5d5e64c', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b7aa51257c26142da3c200d366cfa6b70006e8', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a22d3b0bd7bd4e2b1296d92a519e4eaf3c79ef', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4237f92ec73b9a8cada1144333785561a1398b1f', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438411e27692489ee48feacc92ec0fc695ff2092', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e32f5765d146fc3eee267ab2425e2b8d87d0e8e1', '172.105.247.100', 1676533224, '__ci_last_regenerate|i:1676533224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c43bcf4acffdb8faf84ab36d11e52a2c4a95eb', '172.105.247.100', 1676533225, '__ci_last_regenerate|i:1676533225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21f1f2413483491c87d585eb2748b8905196577', '172.105.247.100', 1676533225, '__ci_last_regenerate|i:1676533225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950defb4623374541d42578c1af8858dbb77508a', '172.105.247.100', 1676533225, '__ci_last_regenerate|i:1676533225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ff20811012bd2a57a6b8b8bee20b02a44b25ad', '172.105.247.100', 1676533225, '__ci_last_regenerate|i:1676533225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8893aca95ab6ef75fb6e093c46a1a214ae0725fe', '209.141.41.43', 1676534106, '__ci_last_regenerate|i:1676534106;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1083c8a851f4de994f1ae06af7df07c92f291a8', '209.141.41.43', 1676534107, '__ci_last_regenerate|i:1676534107;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da8b121040a92488c5874bf957131d65f9aaf71', '209.141.41.43', 1676534107, '__ci_last_regenerate|i:1676534107;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486e72ed560652d6f1b37be8306eb3276a866e73', '209.141.41.43', 1676534107, '__ci_last_regenerate|i:1676534107;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7955ecf058cff206775808a6e37bed8400548aca', '209.141.41.43', 1676534108, '__ci_last_regenerate|i:1676534108;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4448e35e79863f2dcb7b564f4533181dd466c1b', '209.141.41.43', 1676534108, '__ci_last_regenerate|i:1676534108;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a733f001b64c89bde62984d2a1d034154a7919e', '209.141.41.43', 1676534109, '__ci_last_regenerate|i:1676534109;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06c0d68f3f05abcf27317a459cca49d504d8960', '209.141.41.43', 1676534109, '__ci_last_regenerate|i:1676534109;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d1ad843968a41c710286386ae128af325c563d', '209.141.41.43', 1676534110, '__ci_last_regenerate|i:1676534110;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58b607aae62a0c8de227a30bdaf7620248f5fed4', '209.141.41.43', 1676534110, '__ci_last_regenerate|i:1676534110;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713fad95bbe5cd31f2165930b1ac07b9aa7a59a4', '209.141.41.43', 1676534111, '__ci_last_regenerate|i:1676534111;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ac1adc620155739ecddadc11fee52cd96bd8092', '209.141.41.43', 1676534112, '__ci_last_regenerate|i:1676534112;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a23d90aac2f63872b629d045d337afce9713b667', '209.141.41.43', 1676534112, '__ci_last_regenerate|i:1676534112;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9999d6eb59928cd5dd1cf7be5d414040dba250f8', '209.141.41.43', 1676534113, '__ci_last_regenerate|i:1676534113;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3896bfac02f180434fc25ddb6691f9da5860d071', '209.141.41.43', 1676534113, '__ci_last_regenerate|i:1676534113;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af9c54e64437f991d61d7eb9e437db73edc836ff', '209.141.41.43', 1676534114, '__ci_last_regenerate|i:1676534114;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1fb06aba22004003f49d325f7aa6e713339187', '209.141.41.43', 1676534114, '__ci_last_regenerate|i:1676534114;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d2056dea89561a5706e4e3525a858586702f0b', '209.141.41.43', 1676534115, '__ci_last_regenerate|i:1676534115;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11092fb573027e86cf2e4be2a3909b52cd88e418', '209.141.41.43', 1676534115, '__ci_last_regenerate|i:1676534115;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7aaae2b28d79bbdda2461c84a5d810c15e1c2e', '209.141.41.43', 1676534116, '__ci_last_regenerate|i:1676534116;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a75ff1f8c974137d698ab0da6dd562b1c09cd1', '209.141.41.43', 1676534116, '__ci_last_regenerate|i:1676534116;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ceb5db105139d8d08f1c6aa91f825f492a679b0', '209.141.41.43', 1676534117, '__ci_last_regenerate|i:1676534117;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cfaac4b345f682d3c2c18fb1e46b5f9d17ad94d', '209.141.41.43', 1676534117, '__ci_last_regenerate|i:1676534117;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25dbc50e73b4bdf1b1bc15c1a57609d67ec6be1', '209.141.41.43', 1676534118, '__ci_last_regenerate|i:1676534118;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c9d96eeb9d82be045c7a5979c905990db3829f', '209.141.41.43', 1676534118, '__ci_last_regenerate|i:1676534118;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534153163640658981c431a773ee21147fe668c7', '209.141.41.43', 1676534119, '__ci_last_regenerate|i:1676534119;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e05e4db5ee22772737e2edaaa88681827c5885', '209.141.41.43', 1676534119, '__ci_last_regenerate|i:1676534119;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c856af2cb1119465381432acad525dc3dd823702', '209.141.41.43', 1676534120, '__ci_last_regenerate|i:1676534120;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85a055cf8dae9bcb71ae4e687fd3441b38f4a0a', '209.141.41.43', 1676534120, '__ci_last_regenerate|i:1676534120;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('677b44a74c0dab3fd097f8b34d9a4c75812dad3d', '209.141.41.43', 1676534121, '__ci_last_regenerate|i:1676534121;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e92382a3a9d297efef96871284373d4a31a8c6d6', '209.141.41.43', 1676534121, '__ci_last_regenerate|i:1676534121;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd5ef185b52a0aef98a0c006bba80a4851c11f50', '209.141.41.43', 1676534122, '__ci_last_regenerate|i:1676534122;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3c11b72105f6f3d27e2e05e65434a88f738c4b', '209.141.41.43', 1676534122, '__ci_last_regenerate|i:1676534122;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9184795308c5c0d6d51a2d2d4c374f887e9f8a70', '209.141.41.43', 1676534123, '__ci_last_regenerate|i:1676534123;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08752d49227379f86e5559fd05dd71732f849ce', '209.141.41.43', 1676534123, '__ci_last_regenerate|i:1676534123;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17dfff9a501b6b9c61e27ab72992ff192484b035', '209.141.41.43', 1676534124, '__ci_last_regenerate|i:1676534124;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e1349d3cfb7e1c3f30f7782b0120e9135615ef', '209.141.41.43', 1676534124, '__ci_last_regenerate|i:1676534124;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79313b2e77b883d8fca170733bba3e38caf0bc45', '209.141.41.43', 1676534124, '__ci_last_regenerate|i:1676534124;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60367c3ed18bf3875700feba58d240b813f2f463', '209.141.41.43', 1676534125, '__ci_last_regenerate|i:1676534125;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e24653ce7311dcbbe42890ac27ad97b6e6668f', '209.141.41.43', 1676534126, '__ci_last_regenerate|i:1676534126;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76bdfb3ff13430ef8fd65a9e82a3a9197eeebf6', '209.141.41.43', 1676534126, '__ci_last_regenerate|i:1676534126;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7eb58c6cefc8a955ed0e9871eb563d643b2a474', '209.141.41.43', 1676534126, '__ci_last_regenerate|i:1676534126;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fe8b34f3598a78551f29b694c8916e7f9aa859', '209.141.41.43', 1676534127, '__ci_last_regenerate|i:1676534127;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3d53ab06f3525b1df0d21cbba11313db04c9ce', '209.141.41.43', 1676534127, '__ci_last_regenerate|i:1676534127;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543b33abf8fddeb51c5a1c9b19d190bf5430a4e8', '209.141.41.43', 1676534128, '__ci_last_regenerate|i:1676534128;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44674e5193c61ddbcba7384a4fc8a24dd1a11d33', '209.141.41.43', 1676534128, '__ci_last_regenerate|i:1676534128;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86c7b5290d8794862f45c6e364b7ebfe18ddd68f', '209.141.41.43', 1676534129, '__ci_last_regenerate|i:1676534129;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19543ca2405b34893d5a8d6e0acf6d50a12ff02d', '209.141.41.43', 1676534129, '__ci_last_regenerate|i:1676534129;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3abae0be6edf5e481873e1ce7be28b14d8e88fb2', '209.141.41.43', 1676534130, '__ci_last_regenerate|i:1676534130;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfda820d03920ea5259a56e2c256549900bfd253', '209.141.41.43', 1676534130, '__ci_last_regenerate|i:1676534130;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f670c125b0bb660f7f6b0c3947c9595ae0d77a', '209.141.41.43', 1676534131, '__ci_last_regenerate|i:1676534131;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1e01c54c076e3bb3374be6040e677a0c283f5c', '209.141.41.43', 1676534131, '__ci_last_regenerate|i:1676534131;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f6d7715bc554cec94dfb4fd4c8ec4cc7bfdbcd', '209.141.41.43', 1676534132, '__ci_last_regenerate|i:1676534132;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386633598752ad3294b98e93ab9f00113d0c7bdd', '209.141.41.43', 1676534132, '__ci_last_regenerate|i:1676534132;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a57d1e8e4d9b7520713b16d396ec1b59871dfe9', '209.141.41.43', 1676534133, '__ci_last_regenerate|i:1676534133;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd181f90be15989fb35446f4ebbdec5755824bed', '209.141.41.43', 1676534133, '__ci_last_regenerate|i:1676534133;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8298f1d4ae410d09678bc09b1e2efffc6a80f544', '172.105.247.100', 1676538617, '__ci_last_regenerate|i:1676538617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0972cc1ed9e9dc6002335058fac062b1521ba6f', '172.105.247.100', 1676538617, '__ci_last_regenerate|i:1676538617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b05cd0d0cc2c0bb22edad63482048816ad5599', '172.105.247.100', 1676538618, '__ci_last_regenerate|i:1676538618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('664fa857c26ade8e085f00ac91855e782530033b', '172.105.247.100', 1676538618, '__ci_last_regenerate|i:1676538618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e2b30b28329c1564571fad71abcea54839677b', '172.105.247.100', 1676538618, '__ci_last_regenerate|i:1676538618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34a2d3e8cb3464ccdd774b4326b62a131f32fb2', '172.105.247.100', 1676538618, '__ci_last_regenerate|i:1676538618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae952c882a2a2715f77de9b26f5764db84a8e00', '172.105.247.100', 1676538618, '__ci_last_regenerate|i:1676538618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67a3b306b5abc933482fd6c9861d190473bc8a8e', '172.105.247.100', 1676538618, '__ci_last_regenerate|i:1676538618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35abc6775a5832770c21888b056e3721d41fd424', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f7496277f98e43f5af8aaa0193fb502983d425', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2035d5390cdd9b69492575f3b1847f526857bdb7', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998834dd4f4f843beeee8f1defd736c6d389763a', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb7ce5dc2aaae6fb7f089ac3b95b9c221b4cbe76', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a623a731dc894d138aed8f50f857f1de8e7c0dc', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e7f5ab41b73598d41b5977d0dbeba3abfe1aa6', '172.105.247.100', 1676538619, '__ci_last_regenerate|i:1676538619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2722b7b48aed7191a8557fe69f75d5ddcd5e6d6a', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4545fd8c6d33173e41efeae28d924ef88224bfdf', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18dc4081d620a08e48ad1e188f0794e980739c31', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc565027dc7d023438941eeb673ad99dae3c82c', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a05960b7ba843afedc0b47643b43c1292a8ae12', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd54d95f51ae9f88338a5baffc1e16c4c4423a1', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc4af4a90cc1293637e436ead7ebca34dcf3726', '172.105.247.100', 1676538620, '__ci_last_regenerate|i:1676538620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b960f536f41f3bc8657ddd83d1f871a8e554bb3', '172.105.247.100', 1676538621, '__ci_last_regenerate|i:1676538621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc2ecee148ec3983848ab7430c40d6a7198944c', '172.105.247.100', 1676538621, '__ci_last_regenerate|i:1676538621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1839935513b7e5ddcf314d8b987142bdb55aa902', '31.222.203.2', 1676540062, '__ci_last_regenerate|i:1676540062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa271dce98aeb56c8b252ad7618236c5ccd8f2c7', '31.222.203.2', 1676540062, '__ci_last_regenerate|i:1676540062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0fb58926e026e6b0c3a37a89acababb1ca27a06', '31.222.203.2', 1676540062, '__ci_last_regenerate|i:1676540062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d576c5dae64e9f37b6c222c77eef4310f85568a9', '31.222.203.2', 1676540062, '__ci_last_regenerate|i:1676540062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697af3421bdfd7ccc03b990c63fd5c264df3ab17', '31.222.203.2', 1676540062, '__ci_last_regenerate|i:1676540062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b8468e0d3baad32cfd7b36bcad55b21431c94d', '31.222.203.2', 1676540062, '__ci_last_regenerate|i:1676540062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821c69a8d004ab4d725d28c873daaa4a8e6f043b', '37.111.219.63', 1676540560, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed58ff6069cc1af47171098ebc65095d279a1a63', '37.111.219.63', 1676540560, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92417b01e69bb738af1b52bc698314ebcf338603', '37.111.219.63', 1676540917, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676540917;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676524412\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676540601;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4e38eccbdd7fff204b0e1bd2d756e35ef0a533c', '37.111.219.63', 1676542181, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676542181;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676524412\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676540917;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726269e1a3947733a56dd802d525174b4b47137c', '31.222.203.2', 1676541921, '__ci_last_regenerate|i:1676541921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9224715d1d63dc676b30ec17554b25eea624cce9', '31.222.203.2', 1676541921, '__ci_last_regenerate|i:1676541921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b73918ade84f964b1120d573c928928f7aa5093', '31.222.203.2', 1676541921, '__ci_last_regenerate|i:1676541921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450c5f2c6d53f1dabb79b7499dd6370d0e913b58', '31.222.203.2', 1676541921, '__ci_last_regenerate|i:1676541921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1822dfc49c4af39aae83d4ce937d1f1485136e4', '31.222.203.2', 1676541921, '__ci_last_regenerate|i:1676541921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967bfe9b04e7e13ad5e477e87cb4dda35a0ace54', '31.222.203.2', 1676541921, '__ci_last_regenerate|i:1676541921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597571a8e01bb0fcc94a46897357bfa1851288fb', '37.111.219.63', 1676542186, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676542181;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676524412\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676542186;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016d11c7f6dda7234fe797a307ae9a85f793fbcb', '31.222.203.2', 1676543630, '__ci_last_regenerate|i:1676543630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31619b9998f70f96c85f76fca9e85246d7731ac', '31.222.203.2', 1676543632, '__ci_last_regenerate|i:1676543632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5234f0ebe0b414b7cebd81cbea616295bd4079b8', '31.222.203.2', 1676543632, '__ci_last_regenerate|i:1676543632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ea3ef3433ceaf62f7420682fab5679d8fee508', '31.222.203.2', 1676543632, '__ci_last_regenerate|i:1676543632;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881d1dcddac21762846da3b37c3d8cb436b0ccfe', '31.222.203.2', 1676543632, '__ci_last_regenerate|i:1676543632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f493dd14d027039180e9862cd2dd5213862ea486', '31.222.203.2', 1676543632, '__ci_last_regenerate|i:1676543632;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a3b7f19ca3d3268876373c7790ddfe51a5fee9', '172.105.247.100', 1676544015, '__ci_last_regenerate|i:1676544015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caa20fbab6353a8f38b9aacdc7730e670f674db8', '172.105.247.100', 1676544016, '__ci_last_regenerate|i:1676544016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08dde7f89e325cac037e6890d2bfc04b1a79c905', '172.105.247.100', 1676544016, '__ci_last_regenerate|i:1676544016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc9005b4cdaaaa4b20ebad88754f74ed8088aae', '172.105.247.100', 1676544016, '__ci_last_regenerate|i:1676544016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89218fd74b19bf9a6a4f2bf10736b13eb46a38ff', '172.105.247.100', 1676544017, '__ci_last_regenerate|i:1676544017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a90543a4c8a52a13009b51760205374f30c145e', '172.105.247.100', 1676544017, '__ci_last_regenerate|i:1676544017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac16add41873f1c6b9db6ddeebee8968952abad7', '172.105.247.100', 1676544017, '__ci_last_regenerate|i:1676544017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c960efb16ca1db52058863d188433c739d54ecec', '172.105.247.100', 1676544017, '__ci_last_regenerate|i:1676544017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f79e465484b237e2310828e3ec16c80a562164', '172.105.247.100', 1676544017, '__ci_last_regenerate|i:1676544017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ba3d1e1be79c0d83d679d0fad6b5bcb13a53a0', '172.105.247.100', 1676544017, '__ci_last_regenerate|i:1676544017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33a8301ed581eabf39cc5fa68adf9836cbbc536', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fdd6b5afe06b5d6895ee3709f9b604c3bbca61d', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d7ad7205e45ed7ef428c3cba94f414ec2e91fb', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07174f87cd9bd3d58f98b3157d8b5c2a2bcaf904', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd543ef3d17c339899a2395989c57e65227d59d', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dadd53b2641494acfe0adf371599eb1a5e12acb', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a5f424af97a18f77650191630501a0bd5b24e1', '172.105.247.100', 1676544018, '__ci_last_regenerate|i:1676544018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef6a69542751c815e0fd77abfdc554480a5b5da2', '172.105.247.100', 1676544019, '__ci_last_regenerate|i:1676544018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82cdf877299a7d7c605d950851c33145ed404166', '172.105.247.100', 1676544019, '__ci_last_regenerate|i:1676544019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8925a2300cc3dd7ce78311f562e238fc33136695', '172.105.247.100', 1676544019, '__ci_last_regenerate|i:1676544019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3ce53e402ccfb4975b65ded2d01b1b9a3a5441', '172.105.247.100', 1676544019, '__ci_last_regenerate|i:1676544019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af2a5c60f4f4e84d6c6a7d1e64f8536bf93e1e0', '172.105.247.100', 1676544020, '__ci_last_regenerate|i:1676544019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('158aa2184b66143ef3836a316453a522c51fae34', '172.105.247.100', 1676544020, '__ci_last_regenerate|i:1676544020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9dda9cf45fa718466001474f06a42a26eeb61de', '172.105.247.100', 1676544020, '__ci_last_regenerate|i:1676544020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8fd6693ca7075949b7cb7aa835ad9f6e36e3439', '31.222.203.2', 1676545458, '__ci_last_regenerate|i:1676545458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5b9b954b4ba3355c4122f5143152ac5dc6e1a4', '31.222.203.2', 1676545458, '__ci_last_regenerate|i:1676545458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caaf1c7f89bdf5fcaf5958319dc0c1340023ed1f', '31.222.203.2', 1676545458, '__ci_last_regenerate|i:1676545458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0838d821b3a0da1e52badd9797663533f078f01e', '31.222.203.2', 1676545458, '__ci_last_regenerate|i:1676545458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d64bb31a97b6b8714cf859b40298c2639b8936c', '31.222.203.2', 1676545458, '__ci_last_regenerate|i:1676545458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fe4ea477e4b74f693beefe2a22280a55ddc9cd', '31.222.203.2', 1676545458, '__ci_last_regenerate|i:1676545458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f4721214579ae4a2ff823347c871696bf601cc9', '31.222.203.2', 1676547154, '__ci_last_regenerate|i:1676547154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b08d0f102c7ccf84e5275600b1aad92326fbd8b', '31.222.203.2', 1676547154, '__ci_last_regenerate|i:1676547154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a97addbfc58527ca9bc3795bfc970045e25119', '31.222.203.2', 1676547154, '__ci_last_regenerate|i:1676547154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a67c08eae626e12d4f5c7a5cdae48144b1dea7ca', '31.222.203.2', 1676547154, '__ci_last_regenerate|i:1676547154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2406c9372c2e75fc1b7a6a191c73509f165d59db', '31.222.203.2', 1676547154, '__ci_last_regenerate|i:1676547154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a2ef0bbca80bfcb9786bdb09a29b0473951a2b', '31.222.203.2', 1676547155, '__ci_last_regenerate|i:1676547155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5e01e6168365706338c1a00857a367580998f8', '31.222.203.2', 1676549102, '__ci_last_regenerate|i:1676549102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc4d277c5581b7fc900aca56d155f1a63bc404a6', '31.222.203.2', 1676549102, '__ci_last_regenerate|i:1676549102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b7c481677ce6433d32c1f13e1df2ebea48af93', '31.222.203.2', 1676549102, '__ci_last_regenerate|i:1676549102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22e424bb326264dc289254bdb3da782a5aecb29', '31.222.203.2', 1676549104, '__ci_last_regenerate|i:1676549104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb1fd471ebfbf74f769e8d478d798fff25ac6c9', '31.222.203.2', 1676549104, '__ci_last_regenerate|i:1676549104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b116d5e2d45008c47bcc9873d1471b796ebea84d', '31.222.203.2', 1676549104, '__ci_last_regenerate|i:1676549104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99385f06e26d953aa738f16056a00e01995ce248', '172.105.247.100', 1676549420, '__ci_last_regenerate|i:1676549420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('727975e5c4ff217ceeaec0eff631c533903f95fd', '172.105.247.100', 1676549421, '__ci_last_regenerate|i:1676549421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7212ef7cdc8631f34b99d4048a9c729e335032bd', '172.105.247.100', 1676549421, '__ci_last_regenerate|i:1676549421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0d657d8bb40c3882eef1b9e75a494f817afa50', '172.105.247.100', 1676549421, '__ci_last_regenerate|i:1676549421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0892f61e7a42e12609b3d70b91c1824696e3e79', '172.105.247.100', 1676549421, '__ci_last_regenerate|i:1676549421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bead4922413c8762be58181721986db2d553297e', '172.105.247.100', 1676549421, '__ci_last_regenerate|i:1676549421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cadac79ea03da9f2902a8e52baced4b30eaa08c2', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69c3189c518587f3a7ffb6b40970a24753e8e94f', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587d6634f1bd40d040a128de9a632c91c8cf0b50', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d423ddf09c1d954771ea09905ad778ec9592aaf5', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2561d52f16ca92ec29f6ccc6d1dab7fde3628c', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f3c191ef1e96672752fc692d1cbaba726620f3', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0e71810673cb366b9110fb0122e034c99f195b6', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed7aefce71d7afcb19fac2a202695b6b1df53dcf', '172.105.247.100', 1676549422, '__ci_last_regenerate|i:1676549422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd116aa82f02d1652d7de06f0078a7d5651cc4f', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935ccf6011bbe3563570b8c620bd8b54fd66af85', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3ba950e9dc9dadaa7ba2e9fe9c7b8054a0e735', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7901dddfc5f7e641d04eaba60d9df4be110f783', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec9645975d58edac253f44b28f0b5ed36d8d117', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e80a41ad16b7cdfb7c6f3c428c4f7a94c5d73ab4', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c830410b068c1574db12c88b0e40723dd877eaf', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb675297c6e1f24f32454e217d304f2ce1cf84c', '172.105.247.100', 1676549423, '__ci_last_regenerate|i:1676549423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d916a40859bfbb944ac41fef218c03ada8f13260', '172.105.247.100', 1676549424, '__ci_last_regenerate|i:1676549424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5081015240b8b8e6261695aac043b0a25fd32d', '172.105.247.100', 1676549424, '__ci_last_regenerate|i:1676549424;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d2e1cf93953ab6a3d2011061c5866e4ada22d6', '172.105.247.100', 1676554218, '__ci_last_regenerate|i:1676554218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd1f814472f5706de6054a46c679ab39e519140', '172.105.247.100', 1676554219, '__ci_last_regenerate|i:1676554219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc0b84bce846f6bfa60004720c218688708cdac', '172.105.247.100', 1676554219, '__ci_last_regenerate|i:1676554219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eefb1aeb82a4b65688bf9706a933f9c14dd425a', '172.105.247.100', 1676554220, '__ci_last_regenerate|i:1676554219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618d737d216122714dbe71d6360abd7ee3a25735', '172.105.247.100', 1676554220, '__ci_last_regenerate|i:1676554220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7193e3a8c4e39276ac0231642b0db77e48f3d41', '172.105.247.100', 1676554220, '__ci_last_regenerate|i:1676554220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060fef52276628efb8b8be99f6d7700a7c2730cf', '172.105.247.100', 1676554220, '__ci_last_regenerate|i:1676554220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('193e460bc26abe9e920103f7ca79ac43993b323e', '172.105.247.100', 1676554220, '__ci_last_regenerate|i:1676554220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6091620021efcc14a3855e316348b7fda734e257', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e0fe32517231e0133f68c7b8cfe6391a9af529', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394214ddb282a8c3b48165e7ae2155bfef7dc136', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f574834f5a3bccd7e137c4cd8c3176838505c1c', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc80913ebe46cfbdf1816d53d624f4a5f49a569b', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd092a07392bb6f8c2bab2a7e4bf7a638499002', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cab41eb93ac4e8cb00305678c6cc6ce2f10ab81', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('711510e26f00a6e5d4fe96b290c4048922bfb68a', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375620895a7de4f353ed9cb088d41ce70888a1bd', '172.105.247.100', 1676554221, '__ci_last_regenerate|i:1676554221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d7fd37dffeea84dedce339573df2b4d492fc7a', '172.105.247.100', 1676554222, '__ci_last_regenerate|i:1676554222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe207afbc4c59d0ca45a52eb2864cc6640cb2d7', '172.105.247.100', 1676554222, '__ci_last_regenerate|i:1676554222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae41eb1121756598ebdea7e2a8e040a06399359', '172.105.247.100', 1676554222, '__ci_last_regenerate|i:1676554222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2480e33224bd7eb30a23255abb497bdd3b0ecafd', '172.105.247.100', 1676554222, '__ci_last_regenerate|i:1676554222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c609130367428e87ab18dd0d01f1746c473a06f0', '172.105.247.100', 1676554223, '__ci_last_regenerate|i:1676554222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342762800f5ef61369e9d06b6c3dd02413d67057', '172.105.247.100', 1676554223, '__ci_last_regenerate|i:1676554223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3357774cfeb5f21c2e85e1209305f276add07a31', '172.105.247.100', 1676554223, '__ci_last_regenerate|i:1676554223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22dadd937767560d26c9d7228da1e8b78ab4dd9', '31.222.203.2', 1676556156, '__ci_last_regenerate|i:1676556156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c319ac39b21642585c0374ff4c10300e66faaba0', '31.222.203.2', 1676556156, '__ci_last_regenerate|i:1676556156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7884cb3fb809e9259c21c5e8a0e61bec6f045aed', '31.222.203.2', 1676556156, '__ci_last_regenerate|i:1676556156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5882711fed485869a467d96b14ccdaa687c1dcdb', '31.222.203.2', 1676556157, '__ci_last_regenerate|i:1676556157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a113703931396a71ac225c1700aad6281d8371', '31.222.203.2', 1676556157, '__ci_last_regenerate|i:1676556157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802d485c944af268edf4cb5910919cd46d1cc297', '31.222.203.2', 1676556157, '__ci_last_regenerate|i:1676556157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c29bd3e9e8b84371f7a68b93b2a3a8c09076ce6', '31.222.203.2', 1676558039, '__ci_last_regenerate|i:1676558039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484f27be125bc9bbef26231fe530b08a5d93a639', '31.222.203.2', 1676558039, '__ci_last_regenerate|i:1676558039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a865a2873ce51fcc3380af69b9ff33eac8ca49', '31.222.203.2', 1676558039, '__ci_last_regenerate|i:1676558039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc568e6558ae94c750f5301cdc51adbdcfa1a6a', '31.222.203.2', 1676558039, '__ci_last_regenerate|i:1676558039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277d8c9bf2441e45dcfbbad25ec95a3a76f9b70e', '31.222.203.2', 1676558039, '__ci_last_regenerate|i:1676558039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f295d03e39acea5fbcf0d7703b805165142e83a', '31.222.203.2', 1676558039, '__ci_last_regenerate|i:1676558039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('391abafdfca983d6f1009b8a5cc5afcf5da9a9d0', '172.105.247.100', 1676559016, '__ci_last_regenerate|i:1676559016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae4092a55c29e3a92a96fcba09b2edd3d2035fd1', '172.105.247.100', 1676559016, '__ci_last_regenerate|i:1676559016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a4e4b2cb9e7a3ec03b968fdb8ad6d2828275db', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48b21e1cc9d2f16adba28158605f97fd8fd9cc1', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b946805fade6ccafbaac7473a23946654ddefe0c', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a3f9817c09acbcf81b962176ad6efd3a77573f', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78521977354c81c464406464477bc465e8138276', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ecfc39a432bf476b7201ddc861c79c8862a4675', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3c56b7bdd78aba49c2949c4cf4ace3be3b24a2', '172.105.247.100', 1676559017, '__ci_last_regenerate|i:1676559017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0567a8d93fa0393702c0285e3f26d2e31c56d71', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('951486e8e2a6c61f3c45e26c9b40f78d1ca73bea', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31e99184e798e1e57c77ac68f1b1492d5b7222b', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189697ada5d4043dd00b8ffef0aa54b9f41be9df', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd6ef19fe95bb03562e742e8e01c21f2122362c', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738a220f86d5f20725d0375764e3d745be975399', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef197940a8b019ffa6438416ffa6590b1699a9e8', '172.105.247.100', 1676559018, '__ci_last_regenerate|i:1676559018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7d587fa1c2cbcb657aea2f897c8b8d20a98043', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dadb8cb8beaeb9029c506a2a24e0f589dc769a7d', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eabb1338aa7ac56040c0d0c105f89b9ceac3ea0f', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7234957f3ec63d27f63bbb7f8c7019ad1f75b120', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183a3c5f9bab152a4712e1fb9625e2904b0a14a5', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48edd1c0ba6afe30e9060ba3ebf159acc30edff', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d792351b42592cbd7daa5723ea5dfc0eecd6ae46', '172.105.247.100', 1676559019, '__ci_last_regenerate|i:1676559019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d6559856da62c7857f8e776e64b5a04defe8e46', '172.105.247.100', 1676559020, '__ci_last_regenerate|i:1676559019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e54c3a7765ffaf1188fce858948da61f1e36d260', '31.222.203.2', 1676559765, '__ci_last_regenerate|i:1676559765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e9657195498ce47938d3d1c2edee4b6ac7929c', '31.222.203.2', 1676559766, '__ci_last_regenerate|i:1676559766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3f209dd3a1bd69af618b5ba32f21674c9d0582', '31.222.203.2', 1676559766, '__ci_last_regenerate|i:1676559766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6adf6154c5320c34f921b75f8601d3edae2a3b43', '31.222.203.2', 1676559766, '__ci_last_regenerate|i:1676559766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b1c31746272dee121e978e893839c19016a326c', '31.222.203.2', 1676559766, '__ci_last_regenerate|i:1676559766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d17336c1eaffc1b53e946b8e89a7215cd78839', '31.222.203.2', 1676559766, '__ci_last_regenerate|i:1676559766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae661ac02fd43b1873ecc6ecba9ec1154005323', '45.120.39.89', 1676560995, '__ci_last_regenerate|i:1676560995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676540584\";last_ip|s:13:\"37.111.219.63\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676560989;register_id|s:3:\"343\";cash_in_hand|s:9:\"5750.0000\";register_open_time|s:19:\"2023-02-15 19:58:01\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0ad61d0ab33e6fd4d896751c3d10814fbffafa', '45.120.39.89', 1676561058, '__ci_last_regenerate|i:1676560995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676540584\";last_ip|s:13:\"37.111.219.63\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676561058;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92edbcb2201513161c36982a03e962b48b7f311b', '31.222.203.2', 1676561651, '__ci_last_regenerate|i:1676561651;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc9d6cf8b9c58a525370f31039014fbe32e21f9', '31.222.203.2', 1676561651, '__ci_last_regenerate|i:1676561651;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8d54bd4efca2b7671268c92fc9dc0e027cc440', '31.222.203.2', 1676561651, '__ci_last_regenerate|i:1676561651;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76072244ec0997e2bf80fe9fb5ef71441d5907b2', '31.222.203.2', 1676561651, '__ci_last_regenerate|i:1676561651;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d233b9e4e088277442d884eefc94c60b396f2c3a', '31.222.203.2', 1676561651, '__ci_last_regenerate|i:1676561651;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56ec098b7d031daaef1fc9aa89ee94976f297f88', '31.222.203.2', 1676561651, '__ci_last_regenerate|i:1676561651;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ecc8863315ac6dc0115e6f0495c1c06cf986b3', '31.222.203.2', 1676563503, '__ci_last_regenerate|i:1676563503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32e3c1f5d7ea58e0c95a8548445d75a4e0dc132f', '31.222.203.2', 1676563503, '__ci_last_regenerate|i:1676563503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e130b50af6c327c56cf93cfafb35bcdd47708d8', '31.222.203.2', 1676563503, '__ci_last_regenerate|i:1676563503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d07fb5c1636a3b7f8aa5e903f568d0c35ddc0f6', '31.222.203.2', 1676563505, '__ci_last_regenerate|i:1676563505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a9f9271d91be73db0dddda0e63089983de8f2e', '31.222.203.2', 1676563505, '__ci_last_regenerate|i:1676563505;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef2132450cd26d20d201324af1001d48a8d92db', '31.222.203.2', 1676563505, '__ci_last_regenerate|i:1676563505;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd99b17f21df391f603baa823515815e05c5450', '172.105.247.100', 1676563817, '__ci_last_regenerate|i:1676563817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08c2c2adda8605244533f07145314b5bdc97353', '172.105.247.100', 1676563817, '__ci_last_regenerate|i:1676563817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71c97ff8f287527bfc1fb9e7cc0fd5da33f75e0', '172.105.247.100', 1676563817, '__ci_last_regenerate|i:1676563817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('535d2ec19b48801f444bbd73ac69ebdb00e01916', '172.105.247.100', 1676563817, '__ci_last_regenerate|i:1676563817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf7c730deaba94c8cfa22d5030c98aef13659357', '172.105.247.100', 1676563818, '__ci_last_regenerate|i:1676563818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29df0d220ff28b0fbb533f150c0cf2436d080416', '172.105.247.100', 1676563818, '__ci_last_regenerate|i:1676563818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89b5572061c00fd867976d9256f64f91fee9b3f8', '172.105.247.100', 1676563818, '__ci_last_regenerate|i:1676563818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c145f552e5340c7105c005a39eee8d21976b8a32', '172.105.247.100', 1676563818, '__ci_last_regenerate|i:1676563818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cefbc363947314f891d4f33c4e6b232df1a0a6e3', '172.105.247.100', 1676563819, '__ci_last_regenerate|i:1676563819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c35e74987223004b4b85f7bee9cbc0b6485030e', '172.105.247.100', 1676563819, '__ci_last_regenerate|i:1676563819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66a96d6d29f3e763f21cbb5d0fdd7556029d741', '172.105.247.100', 1676563819, '__ci_last_regenerate|i:1676563819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3dca4a32c9ded67150ac2da8ce6f4b808829cb1', '172.105.247.100', 1676563819, '__ci_last_regenerate|i:1676563819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7ad2227d91a1f6a4b8c31d2a2b50cc3f7be6c8', '172.105.247.100', 1676563820, '__ci_last_regenerate|i:1676563819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af461d3046c7ff3d4e53ca59c1f316ff5917a35', '172.105.247.100', 1676563820, '__ci_last_regenerate|i:1676563820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3981e1e0706338081b4f53f188615a54bb15387a', '172.105.247.100', 1676563820, '__ci_last_regenerate|i:1676563820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96468cf337b0d63dc4d2a115d519d2b7eaffee9', '172.105.247.100', 1676563820, '__ci_last_regenerate|i:1676563820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77345eebfce5c09d295b303dd14f3823e89aa7fa', '172.105.247.100', 1676563820, '__ci_last_regenerate|i:1676563820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2acbd03ec7cc491b7a90d16bad44c820cfab2c9', '172.105.247.100', 1676563821, '__ci_last_regenerate|i:1676563821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d364d7e5d5030d78a2a9834b602fbdb2ad5fa893', '172.105.247.100', 1676563821, '__ci_last_regenerate|i:1676563821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141d903800e69b5ed8f3675ccf805a5a7adfa953', '172.105.247.100', 1676563821, '__ci_last_regenerate|i:1676563821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4cb14e7151837977f368316fef8fb05312de632', '172.105.247.100', 1676563821, '__ci_last_regenerate|i:1676563821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f48995a2d240dba617aa3e95068b8a66902684ef', '172.105.247.100', 1676563822, '__ci_last_regenerate|i:1676563822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47fd8f5e7558421b60f261008d18245fbb8b5163', '172.105.247.100', 1676563822, '__ci_last_regenerate|i:1676563822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b0a0f08474c549c247477c32e0eb282f3a7866e', '172.105.247.100', 1676563822, '__ci_last_regenerate|i:1676563822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9433a69fd021aca1b6f8e9e76143a653d309c8a3', '31.222.203.2', 1676565171, '__ci_last_regenerate|i:1676565171;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8651a7eb196c7b53c655599103b60b3dd54899e3', '31.222.203.2', 1676565171, '__ci_last_regenerate|i:1676565171;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6982fd5a56593363b354473f93aa373d3c541d65', '31.222.203.2', 1676565171, '__ci_last_regenerate|i:1676565171;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d258b84a4c0f9e38de1e90edc28fd4c2872f3ed9', '31.222.203.2', 1676565172, '__ci_last_regenerate|i:1676565172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30a019b468cadb97c3b8aba4c8c998965afc7282', '31.222.203.2', 1676565172, '__ci_last_regenerate|i:1676565172;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f428f330075ab021c5d898a0e931d778b130cf1f', '31.222.203.2', 1676565172, '__ci_last_regenerate|i:1676565172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f65ddf400eed0eabf97c6d15ab413e8d6e981e8', '120.24.108.217', 1676566666, '__ci_last_regenerate|i:1676566666;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6609295dc470ad32a296cefe619e85ebeced997d', '120.24.108.217', 1676566668, '__ci_last_regenerate|i:1676566668;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12e35fa899d9632e575250b40108fe50d64c32ae', '120.24.108.217', 1676566672, '__ci_last_regenerate|i:1676566672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006356c2f298b8ffd1e9d03a7f3c76d1ef2dc5ed', '120.24.108.217', 1676566673, '__ci_last_regenerate|i:1676566673;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd775b9178c26e8519fd413cb4041f44ab4b438', '31.222.203.2', 1676567047, '__ci_last_regenerate|i:1676567047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3a5c8a2533df69405f5e7d2017ecccf90bfd15d', '31.222.203.2', 1676567047, '__ci_last_regenerate|i:1676567047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51318f23eccf8b8aa1c581b028a350d5d2fa51c3', '31.222.203.2', 1676567047, '__ci_last_regenerate|i:1676567047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3921600d62aaf6a7bbed69c101b12507b0321a7c', '31.222.203.2', 1676567047, '__ci_last_regenerate|i:1676567047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83dfcbb13f1423ea01c17504918334ff35eeb30b', '31.222.203.2', 1676567047, '__ci_last_regenerate|i:1676567047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6303584be84e956727a3ed5f3803316c7194432d', '31.222.203.2', 1676567047, '__ci_last_regenerate|i:1676567047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450e4b2c18e5fd9de75462b4153b1d479c25cbe8', '31.222.203.2', 1676568857, '__ci_last_regenerate|i:1676568857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb632a1580a6c6a9c992baed36e1292f55822f08', '31.222.203.2', 1676568857, '__ci_last_regenerate|i:1676568857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc6ed392a6febd9d7bc4e8bdf9de397752e29af', '31.222.203.2', 1676568857, '__ci_last_regenerate|i:1676568857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ba39239d01c9174fb877b5c08c0729ac441b57', '31.222.203.2', 1676568859, '__ci_last_regenerate|i:1676568859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b2a68242982017d5011d70fe880fe9b53d4d04', '31.222.203.2', 1676568859, '__ci_last_regenerate|i:1676568859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a39235bd0da868d437af6a84221d9072ff2237b', '31.222.203.2', 1676568859, '__ci_last_regenerate|i:1676568859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a597e1ed4afb1dbcdc5b281adceb428f240b4fd', '172.105.247.100', 1676569218, '__ci_last_regenerate|i:1676569218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae63739d6ed954171cf0ecefd0dc9c180e67bba', '172.105.247.100', 1676569218, '__ci_last_regenerate|i:1676569218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0f6c9fa380a62359405c6a0cba311d140fd234', '172.105.247.100', 1676569218, '__ci_last_regenerate|i:1676569218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b0e57e70c0b3f4d7f12401559c5e0ba5aab35a', '172.105.247.100', 1676569218, '__ci_last_regenerate|i:1676569218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04931a05140aa5b652c2f7cf94f314a79bb68e89', '172.105.247.100', 1676569219, '__ci_last_regenerate|i:1676569219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bcfb01431229fc2fa632d5aa42dd01aca9f87e6', '172.105.247.100', 1676569219, '__ci_last_regenerate|i:1676569219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8459a175be4adb2ac8ee33c2ff0b3a234754f500', '172.105.247.100', 1676569219, '__ci_last_regenerate|i:1676569219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20d505785bfc7ab14a5e2eabca3f8fcf838bb15', '172.105.247.100', 1676569219, '__ci_last_regenerate|i:1676569219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aef87a4bbcb1f50de9f636b2c6cf342ce976c05', '172.105.247.100', 1676569220, '__ci_last_regenerate|i:1676569220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0b54a731290e6861b0671b1182be1a081c4ff6', '172.105.247.100', 1676569220, '__ci_last_regenerate|i:1676569220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ddbf42e7ab7ff4204c1352c129d010a5299f74', '172.105.247.100', 1676569220, '__ci_last_regenerate|i:1676569220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1d6be12b3553b97d1df36662f7087969993d17', '172.105.247.100', 1676569220, '__ci_last_regenerate|i:1676569220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd474bf14a9ad6ceb7f1c936ceadf54f786c227', '172.105.247.100', 1676569220, '__ci_last_regenerate|i:1676569220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0682dd1a496967d03a5fe8977f13a87abfb955fc', '172.105.247.100', 1676569221, '__ci_last_regenerate|i:1676569220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1572d55eb7e37c411d2d86d121a66184dd8463fa', '172.105.247.100', 1676569221, '__ci_last_regenerate|i:1676569221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac77687efe931014731729603a5363e91b669fa5', '172.105.247.100', 1676569221, '__ci_last_regenerate|i:1676569221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7500531c747864ce39d32725af669ef0ea5d6425', '172.105.247.100', 1676569221, '__ci_last_regenerate|i:1676569221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdbc484f728b4df0a164fbd5fdc863c8ecf4906a', '172.105.247.100', 1676569221, '__ci_last_regenerate|i:1676569221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed2d14b8fdd644c455b996d5dd07a94dbaf48ce5', '172.105.247.100', 1676569221, '__ci_last_regenerate|i:1676569221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab18c5d2ccb128eb247927382ec59ec31da7938c', '172.105.247.100', 1676569222, '__ci_last_regenerate|i:1676569222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0723d3a9fca3857915ad4cb200f73f964d33ed44', '172.105.247.100', 1676569222, '__ci_last_regenerate|i:1676569222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2721409ba7481655300c361a64bb46efea6b309e', '172.105.247.100', 1676569222, '__ci_last_regenerate|i:1676569222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3041da277500bb0b3cd0502f6cfceb0f432e87', '172.105.247.100', 1676569222, '__ci_last_regenerate|i:1676569222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460bf7d182294348644e61d7c153159d29505c81', '172.105.247.100', 1676569223, '__ci_last_regenerate|i:1676569223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('938ff620a02f6d56e02b60035ce09cd0e5c6dedb', '45.77.37.210', 1676570339, '__ci_last_regenerate|i:1676570339;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d6d6b98cbf307fda8a46f5da67895f4169c641', '45.77.37.210', 1676570342, '__ci_last_regenerate|i:1676570342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fb775b608f948a0667402572a9935abf0fe91c9', '45.77.37.210', 1676570345, '__ci_last_regenerate|i:1676570345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37fb818c58d1d30714f6745cb3acd11a6f6a9ffd', '45.77.37.210', 1676570345, '__ci_last_regenerate|i:1676570345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3170966fee07f47238db038b32c1f3157e8c9c46', '31.222.203.2', 1676570715, '__ci_last_regenerate|i:1676570715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f418c09728d90f46cdd07d265d5b3c2dee418c0', '31.222.203.2', 1676570715, '__ci_last_regenerate|i:1676570715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f78ac674cbc5b358d14f4e906b8dabc10fde62', '31.222.203.2', 1676570715, '__ci_last_regenerate|i:1676570715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597604473e45eab97b77c9cf2ed551aa31b8e7fa', '31.222.203.2', 1676570717, '__ci_last_regenerate|i:1676570717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7f3217807bbda51831f22a0a9250f61a48b22e', '31.222.203.2', 1676570717, '__ci_last_regenerate|i:1676570717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07972fb8ff0b33f22f81ccd670589f7c8685d10e', '31.222.203.2', 1676570717, '__ci_last_regenerate|i:1676570717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9405bff932fe1f6e73106320e774b97c2ddb31f', '31.222.203.2', 1676572427, '__ci_last_regenerate|i:1676572427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef403a49efaed75d1906937ae7c737f9fa00aa98', '31.222.203.2', 1676572427, '__ci_last_regenerate|i:1676572427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6acaadc0fc89f6747423f4be29a7ec9a2a184bdd', '31.222.203.2', 1676572427, '__ci_last_regenerate|i:1676572427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('410560441311f272ebae5952c00b19dc84312030', '31.222.203.2', 1676572427, '__ci_last_regenerate|i:1676572427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c66d9c9a4ddfcb1fe6b477a54f9b8ebf811e62ba', '31.222.203.2', 1676572427, '__ci_last_regenerate|i:1676572427;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aefc7aa148c656167bc44bc86bf38042e61e7ce', '31.222.203.2', 1676572427, '__ci_last_regenerate|i:1676572427;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('667643bd1b21aa20709108c292becb815b4f1c92', '172.105.247.100', 1676574016, '__ci_last_regenerate|i:1676574016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2242636e01be3dfead4033ed02a2d5b038c193', '172.105.247.100', 1676574017, '__ci_last_regenerate|i:1676574017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da2e3cfe2e68b78d3db9018d49f1e19c292aa69', '172.105.247.100', 1676574017, '__ci_last_regenerate|i:1676574017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1020e54f23a48f32d9d4ec3928d2955c94de60d0', '172.105.247.100', 1676574017, '__ci_last_regenerate|i:1676574017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798b43ccf4b8cef99c83ed11aadd3f1f39cb3215', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('359877a9db7f12371244b6e6d55badafdcfb1e44', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d597c5f25a3f1de4a2e7b7de9b4ba210c9663925', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a41cade71d5ccb84a24cd85053ac83c857b529', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('720120d24f9e70b58b388facc53f337688aa00d2', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5bb542934f7049f2807ea229f2c61ff33bfeb7', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f2f465a83d063f1f805262ee93055b897ce3db', '172.105.247.100', 1676574018, '__ci_last_regenerate|i:1676574018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8828629debc41bfdd8278cfcc1e9d2892ab28ead', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aed077b2b858b5119d12b3b49cf0c74398177792', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28cb7d84a6cfe8f02a02ee42304d677ff805e1c6', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73ff05243339d1bedb3186a00e354e27acdcfbf', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5326d66138c6beaba39129637bbbab12c017e3', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bbef83421216adce01db943ab04984a5276c680', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d2110927a5a4fd378e15dcc731030d493bf4bf', '172.105.247.100', 1676574019, '__ci_last_regenerate|i:1676574019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d54dd256e7d91e59b2fd0272d94f37abfa392a5d', '172.105.247.100', 1676574020, '__ci_last_regenerate|i:1676574020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb515a53ef7f8a0ac2d2a49a0d72c8d535b246ee', '172.105.247.100', 1676574020, '__ci_last_regenerate|i:1676574020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cea9f7cf9052005e412e57510f9f07e9125c7bb', '172.105.247.100', 1676574020, '__ci_last_regenerate|i:1676574020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925547fe9725289acb38bc8b6146736caa1ea499', '172.105.247.100', 1676574020, '__ci_last_regenerate|i:1676574020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed20d378fe227342d4f01ba826b5b8f9e9f39dd', '172.105.247.100', 1676574020, '__ci_last_regenerate|i:1676574020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c4dfbc804844cf726c2565da63be849df583167', '172.105.247.100', 1676574021, '__ci_last_regenerate|i:1676574021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b0dabd977456d066a46c8ea6451f0e13ebbdcd', '31.222.203.2', 1676574301, '__ci_last_regenerate|i:1676574301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0921d269bc4c4d240866e22b98884aad45199e', '31.222.203.2', 1676574302, '__ci_last_regenerate|i:1676574302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb52d7d9f026680acf8258498887cebb9f2e77b0', '31.222.203.2', 1676574302, '__ci_last_regenerate|i:1676574302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a4096ab6ddfc925244f9f89919208d9d1c270c2', '31.222.203.2', 1676574302, '__ci_last_regenerate|i:1676574302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa40726971ecdc01666e7eb6825248c8415c533', '31.222.203.2', 1676574302, '__ci_last_regenerate|i:1676574302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc864b513d0c2aae95be20f10b2b9f8a24df2a2', '31.222.203.2', 1676574302, '__ci_last_regenerate|i:1676574302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbf05351289578b0c7996d62dc49e044c51d10d', '172.105.247.100', 1676578818, '__ci_last_regenerate|i:1676578818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5250666dfe49a9a116891f449fdc28f10839cbd', '172.105.247.100', 1676578818, '__ci_last_regenerate|i:1676578818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa98c6e6dca5d34514e4d5d9b4235a0dcc64b2f', '172.105.247.100', 1676578819, '__ci_last_regenerate|i:1676578819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94df160298e0a6736778ee56e10b80f7ff0915e1', '172.105.247.100', 1676578819, '__ci_last_regenerate|i:1676578819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('133b6339a03857cd30d6629772a1be343efbd3ac', '172.105.247.100', 1676578819, '__ci_last_regenerate|i:1676578819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89253e05e6f5e4a87b1643ab28bc5e4b749d516c', '172.105.247.100', 1676578819, '__ci_last_regenerate|i:1676578819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f767918ba0fcf96ce10c945ec3acafbc26a13178', '172.105.247.100', 1676578819, '__ci_last_regenerate|i:1676578819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fefad136db585b2f00a87f70e846c02dff6d349', '172.105.247.100', 1676578819, '__ci_last_regenerate|i:1676578819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2619bec0e269909802590a288e8789b607f975a7', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1518efc5893215dfc33766af4eda2e615cf3390b', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b4235a50c05fb8b9df84142570087dcebb023f2', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbdbd82cef993f774fc0022039f08a866511711', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ea3d9778b776cd21bb60a902fab6d5cdfe0044', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15188f697c047e8c38cb31fd6e8c866b4eec8f74', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b4a5de829e0209445bacc583a7a40f17fbd02b', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f16b93b96506f7f51d4ad5c4be238d73c36aad', '172.105.247.100', 1676578820, '__ci_last_regenerate|i:1676578820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f628fae0845cc20493b9e156eef8555955fa4d4', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38bf3d508f39d65aac03b015fd2e3eedc32758a8', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf28225f791742729a1e1a7f4f15a472198357d', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d11427153cbae87d82c1ee97b8319f3bb9a558fb', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d1383722e6fbbae8eaa601b360b63cacfcaac5', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3cc4a04a9ff5ca3049ed01e775ce2597a77f1a', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c5eb180438b56549433ea4ca96a2fc115411f9', '172.105.247.100', 1676578821, '__ci_last_regenerate|i:1676578821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d00d8923ad64a06c8c98a52c0708c1722192bc9e', '172.105.247.100', 1676578822, '__ci_last_regenerate|i:1676578822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f730a547a8bdec452de2f3c3254dee70f09b17', '31.222.203.2', 1676579546, '__ci_last_regenerate|i:1676579546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dad605791f85176f733585bd0d073363d45ab4b', '31.222.203.2', 1676579546, '__ci_last_regenerate|i:1676579546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6cf573ef9a6ddabf21ea6f315b5bf7ce0a81da1', '31.222.203.2', 1676579546, '__ci_last_regenerate|i:1676579546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ea6b77c7630b7deb3bef49d0ce9afa1f144489', '31.222.203.2', 1676579548, '__ci_last_regenerate|i:1676579548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf74d72744bba536ab170c3b3c8265a88d163352', '31.222.203.2', 1676579548, '__ci_last_regenerate|i:1676579548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8809f93be1efd7673900ac5b9f25bc53abae5c', '31.222.203.2', 1676579548, '__ci_last_regenerate|i:1676579548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11c810f90ed5c5db02201137162e6ce6d853165a', '31.222.203.2', 1676581437, '__ci_last_regenerate|i:1676581437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e6d485634d7a15acb222ed23dcc546b437e70e', '31.222.203.2', 1676581437, '__ci_last_regenerate|i:1676581437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709cbdefbbbf05ddc1bfb0bfa3328cfba1fc1f45', '31.222.203.2', 1676581437, '__ci_last_regenerate|i:1676581437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e42055937d1cced4d5975b477c7b651509fc72e', '31.222.203.2', 1676581438, '__ci_last_regenerate|i:1676581438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9093c5928a34971bd95df91533d21a62525bb1', '31.222.203.2', 1676581438, '__ci_last_regenerate|i:1676581438;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2737ece142f965547378550c9df6a79651c3ea5', '31.222.203.2', 1676581438, '__ci_last_regenerate|i:1676581438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405b98a4df4db2653c622b48c51b5b24bd1553e6', '31.222.203.2', 1676583315, '__ci_last_regenerate|i:1676583315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545a7cf53486b635c9e8e9fd5dbf4d8518a4db27', '31.222.203.2', 1676583317, '__ci_last_regenerate|i:1676583317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c369106ef4dba235865f9f64efa79c554b6370e0', '31.222.203.2', 1676583317, '__ci_last_regenerate|i:1676583317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1557243cd0c45ba513470c202404abdd63ae75b3', '31.222.203.2', 1676583317, '__ci_last_regenerate|i:1676583317;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df17520c2e5ae7c93611d7da4229b711a6a3509', '31.222.203.2', 1676583317, '__ci_last_regenerate|i:1676583317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bba8694eb074e0318d30846df79e8ca5867e885', '31.222.203.2', 1676583317, '__ci_last_regenerate|i:1676583317;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8d5b7606727bd908ef02c31817482e2802836c', '172.105.247.100', 1676583615, '__ci_last_regenerate|i:1676583615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39643378d6749513ec378c6e84a0a799d68fd16c', '172.105.247.100', 1676583615, '__ci_last_regenerate|i:1676583615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e299100e123743d36ce683ead56fd073477f282', '172.105.247.100', 1676583615, '__ci_last_regenerate|i:1676583615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e526156a3cbef0b607368177da48f1395a6592a5', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18626ab78a9e82434304a6827490caeb5fcacc54', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b6effba4c2d582d0cae22e0264602ce9f12519', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76bee596c79b4f7352392a81b7acc09f78e266c', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b7755aaf54962cd2c9228366a27d0d0077ec853', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bcd4b1f6b975762da57883b0d68a77bccc3e3f4', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32bc0797b5d6d1d0a2213e2f3daf26e0eb92a3cc', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d646e66b13da9c7d71f4fd6524c09d4cfc5b8e', '172.105.247.100', 1676583616, '__ci_last_regenerate|i:1676583616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1082c67fea183d4ebbb26d39fb887ea819bc6266', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2286266f0b4e2a04482b82898e1414d14676937f', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042f32b8f79716180bd28417c25f48e33cd9ea7a', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('316a6b90df5c1b73a9fa01629be6d13c161181a6', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ff5311efc694d58ac0b9cfc39116a7ced168bc', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b286706f477a43d1e0e17968f12f0dfedaeef20', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa508a80ca6f3325cf5ffb864eff07ea0b99d674', '172.105.247.100', 1676583617, '__ci_last_regenerate|i:1676583617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be588eabaebb2dd2cd3aa3b1cf787b07dc591158', '172.105.247.100', 1676583618, '__ci_last_regenerate|i:1676583617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e26550b9743040bbcae49bbf99e8953ed7b2b8', '172.105.247.100', 1676583618, '__ci_last_regenerate|i:1676583618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04fd96bbd64c8e57eea7617743936082dfb0e19f', '172.105.247.100', 1676583618, '__ci_last_regenerate|i:1676583618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4fcd648d7519c6123cb0c87d0c8d86eec56574', '172.105.247.100', 1676583618, '__ci_last_regenerate|i:1676583618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('960b020964c63a9f31450e9449dfcbfde9b29dcd', '172.105.247.100', 1676583618, '__ci_last_regenerate|i:1676583618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc0860615cf54721875dd9502fadadf7e4233e6', '172.105.247.100', 1676583618, '__ci_last_regenerate|i:1676583618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e008c60bea7dc97fdfb006530bc5198aee214018', '31.222.203.2', 1676586747, '__ci_last_regenerate|i:1676586747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165c254c16e8952a5414011a11b78dc2f4b9eb1c', '31.222.203.2', 1676586747, '__ci_last_regenerate|i:1676586747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf41ba0f792399e655fa078fa682c47745f884a', '31.222.203.2', 1676586747, '__ci_last_regenerate|i:1676586747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3643e4f95c6198d84c2e6299862eda97cb80e84', '31.222.203.2', 1676586749, '__ci_last_regenerate|i:1676586749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85a94c3e00e456a3770c0b88b76da7a831c0ef1', '31.222.203.2', 1676586749, '__ci_last_regenerate|i:1676586749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('194e2e2f83be8c4d8f7451cd3ffdb53719bbed01', '31.222.203.2', 1676586749, '__ci_last_regenerate|i:1676586749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51b067ead1ac8750701bb24e34c03c0f4479d93', '172.105.247.100', 1676588418, '__ci_last_regenerate|i:1676588418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46d38cf2650b6dbfaa6670d1a7cab1b711b1992e', '172.105.247.100', 1676588419, '__ci_last_regenerate|i:1676588419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('582c045d5db71dbc269e878386fa66e4701e7e19', '172.105.247.100', 1676588419, '__ci_last_regenerate|i:1676588419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a75c8f152ba63c918643dddd0bc88b2207e52b3', '172.105.247.100', 1676588419, '__ci_last_regenerate|i:1676588419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016aa3dd0774d757440075ea1c59e36a62088f2d', '172.105.247.100', 1676588419, '__ci_last_regenerate|i:1676588419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee47e6a96e02c9f7cda4d405c67a8452bd8f29ec', '172.105.247.100', 1676588420, '__ci_last_regenerate|i:1676588420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f6685c2c8a4f06449744eaa5025e21cae28088', '172.105.247.100', 1676588420, '__ci_last_regenerate|i:1676588420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a956758d80bb56803eb0628af4509c67b88c792b', '172.105.247.100', 1676588420, '__ci_last_regenerate|i:1676588420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a0e751482e06bd1c9e4e69b85a608929bc415e', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e4c54ff3c0e00aab0cbe7ffde0d6f0f8197347', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d618de1f4f180bca23e105d5269cbf232476c90', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae23f7d4afe8118df6b4362f994f04781935e26', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5f3f42b1250a729ffaceb64c22bc61dc4369c8', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa185762b8ea26b6e0649ef0ed5f1b44f717ec2', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7a99b7917ebd401479e3d3a2b6148bf6879b47', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa261a6712058e4a4f91b30a88b2d959f8276f95', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a1ac1bf02f93ba273f98c19f484e27b74b2929', '172.105.247.100', 1676588421, '__ci_last_regenerate|i:1676588421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30c95947010589cfcef02a6b558640636c59b9b', '172.105.247.100', 1676588422, '__ci_last_regenerate|i:1676588422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f85f4bfe52733498fb408eb7259bdbde411e2a40', '172.105.247.100', 1676588422, '__ci_last_regenerate|i:1676588422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d185263ec01964f930c5326d02527bedb566f9', '172.105.247.100', 1676588422, '__ci_last_regenerate|i:1676588422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc51cbcb957a69933aee920d04f9cd19bff2cc05', '172.105.247.100', 1676588423, '__ci_last_regenerate|i:1676588423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60b04a412532210b72cccab9cc7c009a65236abf', '172.105.247.100', 1676588423, '__ci_last_regenerate|i:1676588423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc08e78e8d0ac506e40bab3b34e04a3de4e076f', '172.105.247.100', 1676588423, '__ci_last_regenerate|i:1676588423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda7492876c9130d90886731ca64a31a05e98ebb', '172.105.247.100', 1676588423, '__ci_last_regenerate|i:1676588423;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f88397fc9aa12e1686210c4e816b7555d89ed2', '31.222.203.2', 1676588639, '__ci_last_regenerate|i:1676588639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5e4ce5a85c152b976bff54dd28b7eb8f5d5661', '31.222.203.2', 1676588639, '__ci_last_regenerate|i:1676588639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d315f362efdb369f738060b9d82b20de7b4c73cc', '31.222.203.2', 1676588639, '__ci_last_regenerate|i:1676588639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e422d693a1d572e8092f65e3ba69ab5084536f3d', '31.222.203.2', 1676588639, '__ci_last_regenerate|i:1676588639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15cb7c4dd40380514a34f16cb24c5329981968f5', '31.222.203.2', 1676588639, '__ci_last_regenerate|i:1676588639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7a869e2a25f5a08961dc266cd257094447ed69', '31.222.203.2', 1676588639, '__ci_last_regenerate|i:1676588639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da466c636e1d69448c4e4953eab337d26b91ac6', '103.92.27.198', 1676589421, '__ci_last_regenerate|i:1676589421;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8ea7049dc5518c63880ad7b3b86f487d3022c4', '103.92.27.198', 1676589431, '__ci_last_regenerate|i:1676589431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e143054b09869d293fe4e694e2606a8a0b9f0f34', '103.92.27.198', 1676589433, '__ci_last_regenerate|i:1676589433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f6b97e547230c6ac119819f6bfefa8e10687f5', '103.92.27.198', 1676589435, '__ci_last_regenerate|i:1676589435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419152cc1be2c1e464a6d3b99a8a7d5973b50bdf', '31.222.203.2', 1676590514, '__ci_last_regenerate|i:1676590514;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c49d1484f933a111510118d90a454db15c5d32', '31.222.203.2', 1676590516, '__ci_last_regenerate|i:1676590516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74aa03be174c4897b1c14ce87e16550ef1e1a9b8', '31.222.203.2', 1676590516, '__ci_last_regenerate|i:1676590516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5851395402e6a2db15056aa38c4811501a61b0cd', '31.222.203.2', 1676590516, '__ci_last_regenerate|i:1676590516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d63009d54198d5bb451ca23f3c1a38791bca7fe', '31.222.203.2', 1676590516, '__ci_last_regenerate|i:1676590516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb0fbf0fa92ba95472a241f6d582dbdb743d5f3f', '31.222.203.2', 1676590516, '__ci_last_regenerate|i:1676590516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed085ed15fed447132de8d83dfbd2af8d75895c7', '95.81.94.187', 1676592826, '__ci_last_regenerate|i:1676592826;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef07774a992401e6b9ba78b370c890643d6922a2', '95.81.94.187', 1676592827, '__ci_last_regenerate|i:1676592827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162b2c1b140f311dcd2d5b15ba089953e1440f77', '95.81.94.187', 1676592828, '__ci_last_regenerate|i:1676592828;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431cd319aff78c77143d2c4ae4e75605627d6fca', '95.81.94.187', 1676592829, '__ci_last_regenerate|i:1676592829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb5246b845595fc490566a48a835504c330c886', '172.105.247.100', 1676593216, '__ci_last_regenerate|i:1676593216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f212114d072d28beb2df456a101a0017a3464084', '172.105.247.100', 1676593219, '__ci_last_regenerate|i:1676593219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d646332630610a41949105a23470c02d7df155cc', '172.105.247.100', 1676593219, '__ci_last_regenerate|i:1676593219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a130c9244c0bbabb43a4ff7fdfc4d4ed7d371f9b', '172.105.247.100', 1676593219, '__ci_last_regenerate|i:1676593219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc12a9bfcace6400ac44d18aefc220e4aa7f3e47', '172.105.247.100', 1676593219, '__ci_last_regenerate|i:1676593219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6233617b5e737c11f2f3fa8eea40a30c51874d2', '172.105.247.100', 1676593219, '__ci_last_regenerate|i:1676593219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756463b27aebdd7243a6ed11225e707ab6deb8fc', '172.105.247.100', 1676593219, '__ci_last_regenerate|i:1676593219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bdda676d1c43f62a1a537d96e33564d35b91a3e', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378a724f35230031a205c6d6e43c76e1a1f3ede9', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7343e7eb544d8ad0d57d37cfa81f4a88098a9c02', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b3f113b0738e0304daf7261a7d29862ef89063', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e3a4370f626fbe2e1688ec1aae786cb238a121', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cab0a7c321657be91ac24a2778579cbebc687786', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2fcc4a3683106f6772008a9fb5836fc1308e2eb', '172.105.247.100', 1676593220, '__ci_last_regenerate|i:1676593220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30d8692c528899bcbbaad6ec93a55f5e9f99efa', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593b56af8e685dda79d8da0493338ef4bbc84864', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e34bdbcd4b615367b1c6130c1be8ecb96334658', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee1d9ba7c03d6a58e65ff65f3e98f12fa7e1fba', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b838fcb50e4220042219c1cb55f9591822b699f', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a434c93099977cc3cc4470925c492b0127fc86b', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18e3a14fff6d86cc2dcb8a11268f771b3edd07c8', '172.105.247.100', 1676593221, '__ci_last_regenerate|i:1676593221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2719635db0e48fd2e427628f20240f50c97f02e', '172.105.247.100', 1676593222, '__ci_last_regenerate|i:1676593221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd79b5840eee6650aae750f96f19977516d7e89', '172.105.247.100', 1676593222, '__ci_last_regenerate|i:1676593222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c0274361dcdec27bed0c2d716839e3121858c61', '172.105.247.100', 1676593222, '__ci_last_regenerate|i:1676593222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c6fbf553bdc1442d1ddacd8af32f651bc62a022', '31.222.203.2', 1676595751, '__ci_last_regenerate|i:1676595751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d44784f646d184b3da27a0305d525f70357aff', '31.222.203.2', 1676595751, '__ci_last_regenerate|i:1676595751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f0bb911509ba5c2cf217e667e66c64afddfe24', '31.222.203.2', 1676595751, '__ci_last_regenerate|i:1676595751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33fae691140aad476f65e674c6b7080e8d64678', '31.222.203.2', 1676595751, '__ci_last_regenerate|i:1676595751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a60d7e6f8dc0f714ec11e5d956110af17e6218b', '31.222.203.2', 1676595751, '__ci_last_regenerate|i:1676595751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d67f27c0a379e285377b9f3e78bd1e50c1add3ed', '31.222.203.2', 1676595751, '__ci_last_regenerate|i:1676595751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ea3fa656f9cd5a77c23097b34a3b509c681265', '31.222.203.2', 1676597637, '__ci_last_regenerate|i:1676597637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c5921ec8fac118786d4e1dec4281d01763121c', '31.222.203.2', 1676597638, '__ci_last_regenerate|i:1676597638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4657aefc21a002b11404a057ca47e197443d4b5', '31.222.203.2', 1676597638, '__ci_last_regenerate|i:1676597638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a28d49145f5c0fca0b2467a3fef0e41749cf84', '31.222.203.2', 1676597638, '__ci_last_regenerate|i:1676597638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751958a12a46655a3d490013dd4e20f796dcca0f', '31.222.203.2', 1676597638, '__ci_last_regenerate|i:1676597638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044eeb0abe3c71d02f4d26b1a227296897503470', '31.222.203.2', 1676597638, '__ci_last_regenerate|i:1676597638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e03a14d00cf233d3020919243647f1f97f520a', '172.105.247.100', 1676598018, '__ci_last_regenerate|i:1676598018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141c2a14a416b67fa29143b9b39885b94a7e3ee3', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28abc8312d4363f9ca907940c4d4d78b3320015f', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d366da26b9cfe9e9b454cbfce3b29d6560098fc', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fed7d8b57cae969b057f8d61b736c20db006fbf', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df91d95e5f017d15e493148eaaa874552355bcf6', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337e3608336b465ef19fde9e74e594329b849dfe', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dff0e1a9cd45aa2055dba48ed248bac8502bb9c', '172.105.247.100', 1676598021, '__ci_last_regenerate|i:1676598021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f569e1bc581811c7e0ae18f1560e6ea80e247a', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3e49dd7a027385ba3b16d48c6d821c9d565d4f1', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9622e04f047b9cb819561d2cd44791b2f942c109', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d79dd663e03977d5e42a3598f07e471895d81e', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900cb800176fe4822522c6204a27b5c85891226c', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab99d431a03692918d6f894fa4ccf16a431db34', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba47dec2be4a3fc8041a34673e9366a9e8c9f67f', '172.105.247.100', 1676598022, '__ci_last_regenerate|i:1676598022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d3d5f573b7183ce2378e6e55c0d256e2ec7f75', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598022;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29084e11681332cfe089c67a748a6ab6180398b4', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac463a8150e922916c0fe6c7c9e457c591f83fd1', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0dd2677bd2587ddfb415c83c86fa1ebbbc728d', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d3770a81e54060200e33d2134c8ad97125f550', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('248a9fa87ece9437771e5ea555449cec085dfc12', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95fd293b1825265c9fb19ac405c5961cfd8eee7d', '172.105.247.100', 1676598023, '__ci_last_regenerate|i:1676598023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcb9b29fcfc6f07f811d9dc17993244c2425eddf', '172.105.247.100', 1676598024, '__ci_last_regenerate|i:1676598024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40eadad7d5d23e95f74119ec85da28dd82c57761', '172.105.247.100', 1676598024, '__ci_last_regenerate|i:1676598024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8bbcf4513ae56d41e9c56adab12d1875422352', '31.222.203.2', 1676599516, '__ci_last_regenerate|i:1676599516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75fe105ccb9cb1e7622d997828ca11a2be96192f', '31.222.203.2', 1676599516, '__ci_last_regenerate|i:1676599516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c47f5297b1cbf45d9f3b53fe70ef8280a19c134', '31.222.203.2', 1676599516, '__ci_last_regenerate|i:1676599516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f2c39f76fa85effdf00c90ff7a96f697203f6a', '31.222.203.2', 1676599516, '__ci_last_regenerate|i:1676599516;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5405240ea3107da6c9008072bb51d76a83115190', '31.222.203.2', 1676599516, '__ci_last_regenerate|i:1676599516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d463bde0b900c3bff8b44e7551fb62f3dd2c6390', '31.222.203.2', 1676599516, '__ci_last_regenerate|i:1676599516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aaaa4dfbe467e0a73738e024fb84819c8a8ec78', '31.222.203.2', 1676601204, '__ci_last_regenerate|i:1676601204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec459cb3412517e9491739996d66d909319947b3', '31.222.203.2', 1676601204, '__ci_last_regenerate|i:1676601204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0d65cd36b1810c9df0a4472a7aea8e8dfb3c2e', '31.222.203.2', 1676601204, '__ci_last_regenerate|i:1676601204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e71f6a8b8f6e384a7d54b5df5afb9d85bd293f', '31.222.203.2', 1676601204, '__ci_last_regenerate|i:1676601204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463c9a0804691c53292caaaaa79f73a7da4b0e92', '31.222.203.2', 1676601204, '__ci_last_regenerate|i:1676601204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe642c17eb2888edaf1b3b49a904b04d4b57df9', '31.222.203.2', 1676601204, '__ci_last_regenerate|i:1676601204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1893c3e1370f00c59228efe43a8238cb46865f7', '172.105.247.100', 1676602817, '__ci_last_regenerate|i:1676602817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('214d766e2a05b05adb56c9b839f4dff1debae18c', '172.105.247.100', 1676602819, '__ci_last_regenerate|i:1676602819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('672d7f1548215abe9ed4de2faf32214b4ef78338', '172.105.247.100', 1676602820, '__ci_last_regenerate|i:1676602820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9daa6ad92be830b4b513700f71edc406900304', '172.105.247.100', 1676602820, '__ci_last_regenerate|i:1676602820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67e2ccf92aa31b0d630fff5d341503904057a80e', '172.105.247.100', 1676602820, '__ci_last_regenerate|i:1676602820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7e59e55861c193e96da3f789efa810e885fab84', '172.105.247.100', 1676602820, '__ci_last_regenerate|i:1676602820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8887f0a893baebd7ce59d002bca4a771a98dac74', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf8a7eb381914a0a8af20cd175367c8b5fa101c', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('356bf47558d5a1ff089899ce3adc0fe5af6083c3', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db493c9b8a4fe660b9313d1911f289e92f0af71', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb56a9202c827203a75985cc49528fd197a7305', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db272b7e86ad5e97bf1155dfd052fa919e371ec', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4491de20dac46f9f6b8be4d0a44d9d523f4fddfa', '172.105.247.100', 1676602821, '__ci_last_regenerate|i:1676602821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b217f51f4888f780c763b0ccfd563de3dac550', '172.105.247.100', 1676602822, '__ci_last_regenerate|i:1676602822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec8848d4693c6f1da274ff455401e5d73bd1cc4', '172.105.247.100', 1676602822, '__ci_last_regenerate|i:1676602822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0daf01d97829902db9b514ff0646f18807656e', '172.105.247.100', 1676602822, '__ci_last_regenerate|i:1676602822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e1d59905e127e0815ca82d375dcea4ee930e00e', '172.105.247.100', 1676602822, '__ci_last_regenerate|i:1676602822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3547438571a865105d1de8938e08baac29794e5', '172.105.247.100', 1676602822, '__ci_last_regenerate|i:1676602822;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53474b0758f7ac2e4f1ebff04078433b0eb6b5c', '172.105.247.100', 1676602822, '__ci_last_regenerate|i:1676602822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2e8303cb19ecc0208d076ade39ccfafdcf9dc3', '172.105.247.100', 1676602823, '__ci_last_regenerate|i:1676602823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b408bd8acb51f684dab67a3e354ce97efa11d85', '172.105.247.100', 1676602823, '__ci_last_regenerate|i:1676602823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4997bc292582dde44513e1dba53530bcb5addac9', '172.105.247.100', 1676602823, '__ci_last_regenerate|i:1676602823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cef1b6da95e556b958af508bfd45057973298941', '172.105.247.100', 1676602824, '__ci_last_regenerate|i:1676602824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77f40bf211d86eb174778cc6eacaf032c4581ab', '172.105.247.100', 1676602824, '__ci_last_regenerate|i:1676602824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa944c010b7fb8badec84a2759ca252c2e7b4934', '31.222.203.2', 1676603062, '__ci_last_regenerate|i:1676603062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fef14e1fbc572c07c1b39ca205487f97fede12b', '31.222.203.2', 1676603062, '__ci_last_regenerate|i:1676603062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7566e513b11571ac92b277a05daab673ce37c596', '31.222.203.2', 1676603062, '__ci_last_regenerate|i:1676603062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8b89c8bbc045d522887bc02bb98bf323ce7407', '31.222.203.2', 1676603062, '__ci_last_regenerate|i:1676603062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81bed550a029e49b6f4121e4a7c935789a2f7d42', '31.222.203.2', 1676603062, '__ci_last_regenerate|i:1676603062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ebebc2487756ea6f4e81939b9815da188eeebb', '31.222.203.2', 1676603062, '__ci_last_regenerate|i:1676603062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3448e022c1797448ad8d10b857d201a7db8090', '198.235.24.2', 1676606765, '__ci_last_regenerate|i:1676606765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4129951c63b48bb008fb61eaf87596f94cef1646', '172.105.247.100', 1676607618, '__ci_last_regenerate|i:1676607618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146d202125a570e11dc1f8b81a41d3f4c570b3b2', '172.105.247.100', 1676607618, '__ci_last_regenerate|i:1676607618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1ae801842ca9b51202903906e43099c06e732dd', '172.105.247.100', 1676607618, '__ci_last_regenerate|i:1676607618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb11dff6ea13020e6b7881fe6d86593f635cb78', '172.105.247.100', 1676607618, '__ci_last_regenerate|i:1676607618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5fd7fbef8f7aaa29c493ce10137c3db8a9b026', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6cb86538587a56179739afb48b6ea0f08252a3d', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb4a92bf7283db0fa87c841224bb78eac9fd509', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c826231640de6f2cd3ccd52c0b8890decd108a90', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa19bc16b4e6be6352813a936d113ef397b0c5c', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb24151ff184cbae9713d68d6e41513ea55c1686', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985334fb6c7132cef340a4086f266e475c9a42da', '172.105.247.100', 1676607619, '__ci_last_regenerate|i:1676607619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e361cba627a2384a46a64c7c358672c8963adb', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3865cae1cc300d74086f8ea3d05dce2a99a02346', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1445021f15bc72dca02a3aacb606d35292f3380e', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7fffbcfdc9b44b97386d8f542f5fb7a48b69081', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdf9f1843909905dd5d324afe3e50282b98a5592', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e188c3e10cfe917311528f06f81970a10a15de', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148d2fa337631a4289e4860e61c30a06b032499b', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e468a8297ea13a0c1567e44ed83871e64615d8bd', '172.105.247.100', 1676607620, '__ci_last_regenerate|i:1676607620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec5595665ec3cf713b084ddb3c5a58197363370', '172.105.247.100', 1676607621, '__ci_last_regenerate|i:1676607621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b549da4a08bbe52d6be4837c6f2b7297a6cad69a', '172.105.247.100', 1676607621, '__ci_last_regenerate|i:1676607621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('722fdee49f61a9dc4a236cea32775d300e75affb', '172.105.247.100', 1676607621, '__ci_last_regenerate|i:1676607621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e77ffc1c4f234cf0c79cbff89d270d3ac58ddc', '172.105.247.100', 1676607621, '__ci_last_regenerate|i:1676607621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c834a2f3fdf4cfd1dfedc72e8ba7ff540f1f2c83', '172.105.247.100', 1676607622, '__ci_last_regenerate|i:1676607621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e42bfe9ab0d2ecaf4b12cf91f6f4a4e5f987089c', '45.120.39.89', 1676613993, '__ci_last_regenerate|i:1676613993;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676560658\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676613988;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('894e3cc5fbd1f6a2710eff114ea802d79fb9f375', '31.222.203.2', 1676611956, '__ci_last_regenerate|i:1676611956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a84705faecf4b0d589a6fa283a433561fea3060', '31.222.203.2', 1676611956, '__ci_last_regenerate|i:1676611956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e33461a08e8a5e4f2046615c3d8a586040b561a', '31.222.203.2', 1676611956, '__ci_last_regenerate|i:1676611956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad0daa1be9aa24918196b62950261a24c88517a', '31.222.203.2', 1676611956, '__ci_last_regenerate|i:1676611956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d85936ecacd1cc997fe552a493f1b360903b84', '31.222.203.2', 1676611956, '__ci_last_regenerate|i:1676611956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d94465e68f04222c14527e0bbeebfc28b3533fc2', '31.222.203.2', 1676611956, '__ci_last_regenerate|i:1676611956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4030c39c6e74071492c9a29de364c3bcedf790e', '172.105.247.100', 1676612416, '__ci_last_regenerate|i:1676612416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5da951756a4ccf5c2ada489e20886e432d8704', '172.105.247.100', 1676612417, '__ci_last_regenerate|i:1676612417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeeb7f21d223044e5c6f7ff6681b4bf322075678', '172.105.247.100', 1676612419, '__ci_last_regenerate|i:1676612419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9b9ef093f324315a4360f6df6520ea9ac23634', '172.105.247.100', 1676612419, '__ci_last_regenerate|i:1676612419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739d7fe3b454b34b681b2abfc3747119a4950b6a', '172.105.247.100', 1676612419, '__ci_last_regenerate|i:1676612419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c238f7ccdfe6bcb7eccef96034b770305c653d8', '172.105.247.100', 1676612419, '__ci_last_regenerate|i:1676612419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901a460226241ea173138dd2ea18a61f4dd9f122', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6607fe5ff82f35ef81c187eb24d817d02fe924cd', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5bdc13f52b403f01af2aa9f28d7e92351f86c52', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f3b743b5c21f0635f5315b556fe67bb686efc7', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7581f8c3fcf5099bb72469f2af5ab19c07cc251f', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9844cb1970f3909719040ecf2c2c3eee02e97bd6', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bb870b68e1553808f9cf79bdbe3ebe70646438', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a031a58fed9116a28d6b53cd222b45ede0775ec8', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c0665fea80378fd2d5164b4c791921cb0ba249d', '172.105.247.100', 1676612420, '__ci_last_regenerate|i:1676612420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab7d121c3e2ba53896091f6bbd6c12e502821cb', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1a7b7b0400c2fb9f37503b8a7fc1933e71657c', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e04f3e43417a765d057e0c395fb7b9ed81d090f', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6ac8a7e5af47a2db570177ccf8e387abf873b03', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5491946cd373b562b9ee1924b7608b4afd1c406c', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8a273cf9cb6717cfd3ac268f2fabb856f77efd6', '172.105.247.100', 1676612421, '__ci_last_regenerate|i:1676612421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed34069cf5e6f2881c92743d5b01d65fdba6a48', '172.105.247.100', 1676612422, '__ci_last_regenerate|i:1676612422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5739ac2f637f86dbe4e390a1a0134abac58e191c', '172.105.247.100', 1676612422, '__ci_last_regenerate|i:1676612422;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6d64ac9ce5393a8f87e9e0a0450cab57faa577', '172.105.247.100', 1676612422, '__ci_last_regenerate|i:1676612422;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d2f969385aa440f3f486f5231888332f66f160', '31.222.203.2', 1676613839, '__ci_last_regenerate|i:1676613839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49921a3eb12c494af8a29a43bafef8402841e9f', '31.222.203.2', 1676613839, '__ci_last_regenerate|i:1676613839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b264067fafa445be35870e41d19a8333cb1e645e', '31.222.203.2', 1676613839, '__ci_last_regenerate|i:1676613839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec1a4991cc38140b42e48752a789858106c2262', '31.222.203.2', 1676613839, '__ci_last_regenerate|i:1676613839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6bd8c180a4db9819a0ebcb8762e868340bf89d7', '31.222.203.2', 1676613839, '__ci_last_regenerate|i:1676613839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91a14ff7616b9c9f3f108f3dbae432af66c9c072', '31.222.203.2', 1676613839, '__ci_last_regenerate|i:1676613839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbed16813c1cf575ef013ace08968a107439a03', '45.120.39.89', 1676617317, '__ci_last_regenerate|i:1676613993;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676560658\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676617317;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c91046e6ef4eac60718d4fbf016b8414cb2306', '31.222.203.2', 1676615717, '__ci_last_regenerate|i:1676615717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced127b78c6b0adf661c3c753e34513387e12ed5', '31.222.203.2', 1676615718, '__ci_last_regenerate|i:1676615718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195784446d1f9569f0f9bd34e49ab6393a6fc5c9', '31.222.203.2', 1676615718, '__ci_last_regenerate|i:1676615718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e12a75edb33c2a9b40630f4930fa37f6826f51', '31.222.203.2', 1676615718, '__ci_last_regenerate|i:1676615718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62708652ecff8420d5210fc58a5838cb35954f81', '31.222.203.2', 1676615718, '__ci_last_regenerate|i:1676615718;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8dfa206bbc20d80d269eb2e11d231ec7a9a6fa', '31.222.203.2', 1676615718, '__ci_last_regenerate|i:1676615718;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399e37f69cc8338257de9b012c9984e7f0303e66', '172.105.247.100', 1676617220, '__ci_last_regenerate|i:1676617220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052d642ef5f3e51cc98687678c9791064a6f52f7', '172.105.247.100', 1676617220, '__ci_last_regenerate|i:1676617220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60888e40f0a1e071274f3e81dc4e08caa8be29aa', '172.105.247.100', 1676617222, '__ci_last_regenerate|i:1676617222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc730a97c90605ac77cc8a889cf8a7a9b5a328d7', '172.105.247.100', 1676617222, '__ci_last_regenerate|i:1676617222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab33d91b3cf0c543fb8a59ba5696ced0172f0075', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b5272f143dbff6d171a220c45a3f8ea4ba5fda', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40414f5cd229e0409ec6f78dc9ea065319033742', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e2f06b21526ac1da614d35b5148969395a2b2e', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d338f976ccebf228c110d32601f6c9c19d6fabe1', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a816b67a83ff6a71625fa9a6f29f80b7b66cdcc8', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c655a12acfcdf6db1478a6e7550e85d59bfa7ca6', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fb42bb124a38d6b6e05da4b8aabf1a1fa530f20', '172.105.247.100', 1676617223, '__ci_last_regenerate|i:1676617223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbb48a208f12150521401251cd23053d88f0141', '172.105.247.100', 1676617224, '__ci_last_regenerate|i:1676617224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4d790ee7c46344a6772abc161f4a209a2b9e5e', '172.105.247.100', 1676617224, '__ci_last_regenerate|i:1676617224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8309f575e7f048af977ca822efeb48b3137351c6', '172.105.247.100', 1676617224, '__ci_last_regenerate|i:1676617224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234010c05452d683ec7d9992903175cbf519f752', '172.105.247.100', 1676617224, '__ci_last_regenerate|i:1676617224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249d806a7f96bc3eb8a1f619a77ad604dacdf637', '172.105.247.100', 1676617224, '__ci_last_regenerate|i:1676617224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd3c44b8a30bef5d293c999e232728727bab5c4', '172.105.247.100', 1676617224, '__ci_last_regenerate|i:1676617224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca91478fd3059a30ae94ee53b7df7ae039ff1567', '172.105.247.100', 1676617225, '__ci_last_regenerate|i:1676617224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8243fb468e53528e8e97675ab152904c79fc70fb', '172.105.247.100', 1676617225, '__ci_last_regenerate|i:1676617224;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a32525b950f78a1dd0d2e99c7ff38d336958bca', '172.105.247.100', 1676617225, '__ci_last_regenerate|i:1676617225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac527c80bd60d1a1ffc6e2e4b732881516c43d76', '172.105.247.100', 1676617225, '__ci_last_regenerate|i:1676617225;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cbb6b36f62219b246d332e2d60dd57b4b4338ac', '172.105.247.100', 1676617225, '__ci_last_regenerate|i:1676617225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3169fd009057f5b95f1a8ad47609b18b078f3837', '172.105.247.100', 1676617225, '__ci_last_regenerate|i:1676617225;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b11ffd5c67f82de29fa83e72fc30eb8f57559f9', '31.222.203.2', 1676617352, '__ci_last_regenerate|i:1676617352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b51cc7eb9afcd3c93654c408c45419e9c520ff3', '31.222.203.2', 1676617352, '__ci_last_regenerate|i:1676617352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a4c3b4dbe33b82d87216c051399364295766e9b', '31.222.203.2', 1676617352, '__ci_last_regenerate|i:1676617352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3efc484f3c28acb7892408f54f1141fa339a3881', '31.222.203.2', 1676617353, '__ci_last_regenerate|i:1676617353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f259f861727fa2fc81198c95c054b98bc437842', '31.222.203.2', 1676617353, '__ci_last_regenerate|i:1676617353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47b02e1f349a4388fc7c3aec1275f9bb69dbd261', '31.222.203.2', 1676617353, '__ci_last_regenerate|i:1676617353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0842efe66824ec67463241082c0e4cc143bf352', '31.222.203.2', 1676619305, '__ci_last_regenerate|i:1676619305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910dd3b4a5b25518ff121d27407de2409413a7af', '31.222.203.2', 1676619305, '__ci_last_regenerate|i:1676619305;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a7d58dda156241a3dc3098e51ac68838cee636', '31.222.203.2', 1676619305, '__ci_last_regenerate|i:1676619305;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d68ff6df6de62e2a25f2ec027faade3176cc4f6', '31.222.203.2', 1676619306, '__ci_last_regenerate|i:1676619306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0589aa1db8e6a83a7824ca28f3d7163127347a39', '31.222.203.2', 1676619306, '__ci_last_regenerate|i:1676619306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a15658aebaa762e77b9e6c19db373f525072e40', '31.222.203.2', 1676619306, '__ci_last_regenerate|i:1676619306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2426f59029a8999c0bbbda2fb51abd7343841fb', '163.172.180.25', 1676620261, '__ci_last_regenerate|i:1676620261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5329164a83d6c906f2092d9e62d78476ff071f9d', '198.235.24.57', 1676621297, '__ci_last_regenerate|i:1676621297;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6eddada2455c39fd8de2d1e49e1d606113b2c4d', '172.105.247.100', 1676623218, '__ci_last_regenerate|i:1676623218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c058dc8eb42f45553437298050e9a53bd7905e2', '172.105.247.100', 1676623218, '__ci_last_regenerate|i:1676623218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f238b12f68e1ffad668c73b92aea0c11eaf2f61d', '172.105.247.100', 1676623218, '__ci_last_regenerate|i:1676623218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e7d6e21c021f3e27198728b644be89a347f805', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be67af2bb0670fb1189412ca089dbd71078ca7f', '172.105.247.100', 1676623218, '__ci_last_regenerate|i:1676623218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30e242b5838325fbd7e4b6cde79cd3b0686c7e1', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f836df81feedff839191bf7cf102047fc06f2299', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08285295ddddc70e434d052c710eb74382d4d21a', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2526f37d6c0fadd12732e61ced724ee818171406', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fa0073a5a8618845acee8304c286c6818996c0', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('043679e3584d47c2e38733681940f1c22836ad1f', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c3be6275988a2b88005809c79fd55bb1232704', '172.105.247.100', 1676623219, '__ci_last_regenerate|i:1676623219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe349ebb5e83ce9ff900a7e77d4c1b27369181e5', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b9ffd0188a41df7773a3f9c88eec8e4911e3b1', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5eed97990ad1a404d86f4ac6bb815b33b723bd9', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908628bee2534b79e56bb3cdae8d0c797c963f26', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba04cccc196400f20b3ba54bb9b169dea1870f83', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ffd82cf7e6b05d302a2792783fd66ccf199c04c', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b99d042b0d4249fe3d5c07d23e4e4660e0912b', '172.105.247.100', 1676623220, '__ci_last_regenerate|i:1676623220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae42e9bbfccd1f038b72e8173db84ef162bf2b5', '172.105.247.100', 1676623221, '__ci_last_regenerate|i:1676623221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c680037d263e9eacae6e951d10e4d8e0ce4cb91', '172.105.247.100', 1676623221, '__ci_last_regenerate|i:1676623221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b14917b778f8b445c7a5fccb2012e16ba4f379e8', '172.105.247.100', 1676623221, '__ci_last_regenerate|i:1676623221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47ea68fe46b22a91870660fb6ab1adb83aa0cb18', '172.105.247.100', 1676623221, '__ci_last_regenerate|i:1676623221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ab687a74386ab21557f1485561ed345c4153a6', '172.105.247.100', 1676623221, '__ci_last_regenerate|i:1676623221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fc45f9b0540d0567182982852b9b1df289286b', '31.222.203.2', 1676624558, '__ci_last_regenerate|i:1676624558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58609a2c8a7b8da8553db6a694363abe9ddd796c', '31.222.203.2', 1676624559, '__ci_last_regenerate|i:1676624559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ebf87cf2778202b9d4846aebfbd4fc7ed06450', '31.222.203.2', 1676624559, '__ci_last_regenerate|i:1676624559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5804807542c38f7455424ec48fca9fbda6fa65f0', '31.222.203.2', 1676624559, '__ci_last_regenerate|i:1676624559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2339ab716486545a1c286bb9071638176b87ae30', '31.222.203.2', 1676624559, '__ci_last_regenerate|i:1676624559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0230c29fecba65cc223685eaf3d4368beb33898', '31.222.203.2', 1676624559, '__ci_last_regenerate|i:1676624559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491ace9c3552d919784e97641b8fb8c0bf70ff34', '31.222.203.2', 1676626437, '__ci_last_regenerate|i:1676626437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('578b5354c2ae40d5f2b2f941a8b1a95568ed6022', '31.222.203.2', 1676626437, '__ci_last_regenerate|i:1676626437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95169157d8b93573f00f37db249c0ee868593f8', '31.222.203.2', 1676626437, '__ci_last_regenerate|i:1676626437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c9a74b19842a3d5bec2ca4fb95010d81780f012', '31.222.203.2', 1676626439, '__ci_last_regenerate|i:1676626439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40139cd338f7d3bca063815c3db036ae135ced9', '31.222.203.2', 1676626439, '__ci_last_regenerate|i:1676626439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be14a474c4400e8de5b97ad8669c27ab5f6d8591', '31.222.203.2', 1676626439, '__ci_last_regenerate|i:1676626439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b3378cb144ff25b379693c406656c4387898fd', '172.105.247.100', 1676628017, '__ci_last_regenerate|i:1676628017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3836c912edd6ec59626e8898e95f272daba2233e', '172.105.247.100', 1676628017, '__ci_last_regenerate|i:1676628017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e2a0748821c9fa39a7b012300d507a8a90b439', '172.105.247.100', 1676628017, '__ci_last_regenerate|i:1676628017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('395c4490191b21a46ae9e612fce4e4923672f5bd', '172.105.247.100', 1676628017, '__ci_last_regenerate|i:1676628017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba02013cd57366cd736a836cb55bcd28e4aff41', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ecf3ab5ab4c71f580426dc3e2ba92ccd299330', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005bcbb65326823f23507cb676f037553f1dfd4d', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3c879893b48d01b6b566eff90b0763af6cd9b4', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22967201eac5400ce1b3de22d81759e4b2a8a25c', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879689a7788150608bad4f078fdbe3fa1766463f', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4289b4b2e7c3636f6920b729d788b3a0e495b377', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0abab9d8fe5ec9bd0f10d628928c974e3f68d5e6', '172.105.247.100', 1676628018, '__ci_last_regenerate|i:1676628018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8436231098c1eddfd051354821f0e122ea5aa47', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('558be2cc2e210205be817a3995a76f1c499de702', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aaad42f24dd562ab2aaebea83a2927c7a36d71a', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47817b1a67770bf5f196a1903bf4385de1ba61d1', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a68dbfd9c674abf655b06aecb4e342e58e091d', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac06ea271c156be9871cc2ff7a49f5bc713113e', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411add6167733a69c5fbf5642bcb2cc59448013f', '172.105.247.100', 1676628019, '__ci_last_regenerate|i:1676628019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8775c5e72888bf4dfc93e8c7ea96f5936cb1629d', '172.105.247.100', 1676628020, '__ci_last_regenerate|i:1676628019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46777e1e53006bc1733bc6660790498a189dd71e', '172.105.247.100', 1676628020, '__ci_last_regenerate|i:1676628020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0be8ad8ccc4414ed04a2b1b74756a3ec9e81ee52', '172.105.247.100', 1676628020, '__ci_last_regenerate|i:1676628020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fded9211c0431098c5f91b47c52e4f8112f7052', '172.105.247.100', 1676628020, '__ci_last_regenerate|i:1676628020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e886f03c31c737c368a03eea5c34f3ca7b64d069', '172.105.247.100', 1676628020, '__ci_last_regenerate|i:1676628020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0410e9c1318f186d2671104f7fb41ea574ca682b', '31.222.203.2', 1676628316, '__ci_last_regenerate|i:1676628316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec200a51a6f0c09d80936381198bbcbda62157a0', '31.222.203.2', 1676628316, '__ci_last_regenerate|i:1676628316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f25cdab07d243d90d989d4adc70ce011cce872', '31.222.203.2', 1676628316, '__ci_last_regenerate|i:1676628316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728ac8d39f34c9a819d77a603f10e5f5d7584393', '31.222.203.2', 1676628316, '__ci_last_regenerate|i:1676628316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6379734f481edcecdfd9a319c7d95875b260fb6e', '31.222.203.2', 1676628316, '__ci_last_regenerate|i:1676628316;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd5488145db5e824dad9c155adc477429bb45b25', '31.222.203.2', 1676628316, '__ci_last_regenerate|i:1676628316;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917f44f255c2be3d1cdc4b424c9524f62c618e2e', '31.222.203.2', 1676629946, '__ci_last_regenerate|i:1676629946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cca569950ee408d92c4ff01d0b309f6faa6124', '31.222.203.2', 1676629946, '__ci_last_regenerate|i:1676629946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f702258cfcb8e880347e53ddc76b2d7329ebc978', '31.222.203.2', 1676629946, '__ci_last_regenerate|i:1676629946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c126a113524a9c1f528ae46c491b9ee83de9a3fd', '31.222.203.2', 1676629946, '__ci_last_regenerate|i:1676629946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff7010749cec1975e5496fa73410d422877bf091', '31.222.203.2', 1676629946, '__ci_last_regenerate|i:1676629946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e637d6202a5ace06476b66583ac4e3d19f67cb3', '31.222.203.2', 1676629946, '__ci_last_regenerate|i:1676629946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fa243314ca08459c0321424a3cc87c3e0a2215', '45.120.39.89', 1676631049, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb485b9e1c39365c5cae00b0cb9647925455afad', '45.120.39.89', 1676632104, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676632104;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676632031;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a0ea5c791d4218ec7b2797608a9edb1f01405e', '31.222.203.2', 1676631838, '__ci_last_regenerate|i:1676631838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c77cf2bee30f0b5cb0beb75b4ef040f182f4005', '31.222.203.2', 1676631838, '__ci_last_regenerate|i:1676631838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c23ceaa1b498a034ffb6759e0690f58277feaf6', '31.222.203.2', 1676631838, '__ci_last_regenerate|i:1676631838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52b32ee6e525e5681a8f29fc023cef2ac0efa6b', '31.222.203.2', 1676631840, '__ci_last_regenerate|i:1676631840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf1a70f7ccff0459acc351f7f6c3340a93a35c78', '31.222.203.2', 1676631840, '__ci_last_regenerate|i:1676631840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809c76a2f05578dfaf8bc740b7723c4a2d370307', '31.222.203.2', 1676631840, '__ci_last_regenerate|i:1676631840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01f1fbb1dd714c5b0d822780dded33564b8625e', '45.120.39.89', 1676632526, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676632526;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676632509;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d773a8075687b531a60323adee8730d4fafc790', '45.120.39.89', 1676633094, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676633094;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676633088;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e38930443ca0a0d000cff412c18e95d3992ca88', '45.120.39.89', 1676633765, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676633765;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676633095;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e3e17fb4e2292910f801f82a10236be53b4a440', '172.105.247.100', 1676633416, '__ci_last_regenerate|i:1676633416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8878869141112aa2c2027cbc32b1097a6364f22', '172.105.247.100', 1676633417, '__ci_last_regenerate|i:1676633417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24bda3fda338c0b1c0991007152f7934b3da77ef', '172.105.247.100', 1676633417, '__ci_last_regenerate|i:1676633417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37d424d65c619f164d35e779ca9bb7fa4bd85e9b', '172.105.247.100', 1676633417, '__ci_last_regenerate|i:1676633417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8695f8603e5104ed6f4061b610a2ba3f8fd3d6', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0b27ac43d15dca5db22d582ae565fd8bc08865', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a33c3feb853005e64f882a4b5201ecfded3949', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f8ae2150100b03e87d33ad6c92a726cf4dd5fd', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f02bb49c477ccd9480ebae337838a4be9f0deb2', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd6fe9db6de8d4fe6ced8bf6a842ab9e5a51e3f', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a6de82f037f94933f1a51f6b42fdcaaa3baeab', '172.105.247.100', 1676633418, '__ci_last_regenerate|i:1676633418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ed6ed0d5a9c7a1ba956c81291047faf2f3c38b', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c4bfe39fe8cafeb998f7f824586c81e6ce5f00', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cdfbedb304467637361a1702769e9199f171cf', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8faa6cf4e4a0bcfa8cf57e7de73ba6c3ad0789b0', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92430c4346fd796635cfce46a78a954c305a9e24', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48bbccf23f63262793916120a2daf9512cbd3835', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350afd6530123282b2c45a3f56c3f8b020883c17', '172.105.247.100', 1676633419, '__ci_last_regenerate|i:1676633419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bbc8f3df031bd3f5700dc47fc483e6c7fcda9ef', '172.105.247.100', 1676633420, '__ci_last_regenerate|i:1676633419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2754376e189b16836565f2174f7bac4bcfce2f', '172.105.247.100', 1676633420, '__ci_last_regenerate|i:1676633419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372331ebef7db44579cd5c401a19492325d4b298', '172.105.247.100', 1676633420, '__ci_last_regenerate|i:1676633420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b900c616bf8fde12fdb60231821c3a3525224511', '172.105.247.100', 1676633420, '__ci_last_regenerate|i:1676633420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818dc7764a5080f8ed9401777cec00681022fbc8', '172.105.247.100', 1676633420, '__ci_last_regenerate|i:1676633420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c290ddbfe753515053dc1146c42a06286b1e10', '172.105.247.100', 1676633421, '__ci_last_regenerate|i:1676633421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a324c1e4666f3e2ec07749e387e8ae2d4d1046', '31.222.203.2', 1676633713, '__ci_last_regenerate|i:1676633713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f4629fbb0cdd9bf40f1dad13ed934c30c2daee', '31.222.203.2', 1676633713, '__ci_last_regenerate|i:1676633713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b1d35925e0ba9088c9bd8c73f0fe2b0dc3dbf40', '31.222.203.2', 1676633713, '__ci_last_regenerate|i:1676633713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2ec743c2a77c5583248bb991928a0f03cbd644f', '31.222.203.2', 1676633713, '__ci_last_regenerate|i:1676633713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1a83c629269c1ba56b0792a5a3b215c8cfbf35', '31.222.203.2', 1676633713, '__ci_last_regenerate|i:1676633713;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca530760053118da92f0eb41ba3135611bd38917', '31.222.203.2', 1676633713, '__ci_last_regenerate|i:1676633713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe9ed4f4e1a105d9babd83234a8d84ba7dffed75', '45.120.39.89', 1676636063, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676636063;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676636051;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26aa271ddd4c3e343fde13cb61e22de8585bb52', '31.222.203.2', 1676635351, '__ci_last_regenerate|i:1676635351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08549cbbc086d103b51e45ad5ed21ebd647390f2', '31.222.203.2', 1676635351, '__ci_last_regenerate|i:1676635351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f7ad517f8f9d2e8c8a0c2866b0ae6c67fdedcf', '31.222.203.2', 1676635351, '__ci_last_regenerate|i:1676635351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95d1dfcff588e278639b9d7bacf04fc4aca7e32', '31.222.203.2', 1676635352, '__ci_last_regenerate|i:1676635352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d4e417a0fdc4ae69e1ea0e2ab53482f2eeb1c91', '31.222.203.2', 1676635352, '__ci_last_regenerate|i:1676635352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76f376437944bdfd1d506797998c818c086e5f7', '31.222.203.2', 1676635352, '__ci_last_regenerate|i:1676635352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e47b490fe345d84fb66ca5eaef119d664e2efe36', '45.120.39.89', 1676636944, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676636944;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676636063;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505ba01ca4fd83a44341ea26a0ff39d111c32ffc', '45.120.39.89', 1676638719, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676638719;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676636968;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46aaeebbbded16ce011e4165f5d1a1fada7937e0', '31.222.203.2', 1676637240, '__ci_last_regenerate|i:1676637240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('518931d2e6f9f6481c60214d8396dc7d0ddc7e22', '31.222.203.2', 1676637240, '__ci_last_regenerate|i:1676637240;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f74c6c43541b1fa95982e0f53ea24fe3d7031c', '31.222.203.2', 1676637240, '__ci_last_regenerate|i:1676637240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5143fd8ea045c80e608e3b4d2f8855d7484839cf', '31.222.203.2', 1676637242, '__ci_last_regenerate|i:1676637242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bc1ae092cff2f207a7bd20882e46727b6aa344', '31.222.203.2', 1676637242, '__ci_last_regenerate|i:1676637242;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027c514da3fd80ea5f9e761ff4753d0e097d3f7e', '31.222.203.2', 1676637242, '__ci_last_regenerate|i:1676637242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ed387d54a2677225ec51318a64972d7e0daa04', '45.120.39.89', 1676641065, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676641065;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676641061;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f74a7089f883d33bfb588ca9c1bc96037d3ecd', '31.222.203.2', 1676639115, '__ci_last_regenerate|i:1676639115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d864fe72a0c047a47eaf00fae435ce3b838e9eb3', '31.222.203.2', 1676639117, '__ci_last_regenerate|i:1676639117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b70bebd09f7c7cdf958616716722fa5e9225602d', '31.222.203.2', 1676639117, '__ci_last_regenerate|i:1676639117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d61c5b31fdca2dd84e35542763f378b63f80268', '31.222.203.2', 1676639117, '__ci_last_regenerate|i:1676639117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5500e422cb214c089519e49b0fe1aa797b166f4', '31.222.203.2', 1676639117, '__ci_last_regenerate|i:1676639117;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29d059afbad920ca0d202ae873185ef9c450988', '31.222.203.2', 1676639117, '__ci_last_regenerate|i:1676639117;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('818c53422a70f5c2eaf849c174b7874e71e4ee3e', '172.105.247.100', 1676639417, '__ci_last_regenerate|i:1676639417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c52be16d4ef20c525084a590194f1711f1ec358', '172.105.247.100', 1676639417, '__ci_last_regenerate|i:1676639417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efb5a8dc5d33ab417501d301160a4e9fad01469a', '172.105.247.100', 1676639417, '__ci_last_regenerate|i:1676639417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7754422a7799dc20171282d5d87f81d2f699ac6b', '172.105.247.100', 1676639418, '__ci_last_regenerate|i:1676639417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ac8a8fa869061ee8d5871e886319cd64fad797', '172.105.247.100', 1676639418, '__ci_last_regenerate|i:1676639418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c065372074147445e9e378e0c511822c21450f08', '172.105.247.100', 1676639418, '__ci_last_regenerate|i:1676639418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b8527bd2becad1413e51a12fabb7a4b0d8190d', '172.105.247.100', 1676639418, '__ci_last_regenerate|i:1676639418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9619cfbdef4bafc5ba1c2179cd1f6b1262bcd8df', '172.105.247.100', 1676639418, '__ci_last_regenerate|i:1676639418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4e66b4d1d3f2c63c1c0b7d97011566d37e7b34', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c1ba53cb05c1f18555a7c7eac98b056f4ca0ebf', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f82149baf8b97d5e24a971bec939469412cc15', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7ce8e69d83e76ae8e2849a647ac476b758ed93', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26379601a23104f16c375fead2ca6c6ba5b09f41', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa278a73e414e3960132d369bbcaf3c1385cb7c', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e55593e1b531ed787d545a58878e8b091e4630', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4129ae4f97bfe589363be5b356154ac0f5e4bde', '172.105.247.100', 1676639420, '__ci_last_regenerate|i:1676639419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c211edd1703d15c88d0f3c89b65ef8fc0418c7', '172.105.247.100', 1676639419, '__ci_last_regenerate|i:1676639419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ab4df1d97faab9ecc80c05c78ee309940ceaa3', '172.105.247.100', 1676639420, '__ci_last_regenerate|i:1676639420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85be8cbbbc5ce6a148dd62b6279792cd85bcb87', '172.105.247.100', 1676639420, '__ci_last_regenerate|i:1676639420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785a4ecba4ee5b926c3b3fde0724ba8469fb5184', '172.105.247.100', 1676639420, '__ci_last_regenerate|i:1676639420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82bca62fd104cd491b5311a012af7f3d6a597ccd', '172.105.247.100', 1676639420, '__ci_last_regenerate|i:1676639420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2fd602414eba343b233285e866cc8929b46caa', '172.105.247.100', 1676639421, '__ci_last_regenerate|i:1676639421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4cd29a66c2e38df192786f0f6198e776f020b36', '172.105.247.100', 1676639421, '__ci_last_regenerate|i:1676639421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd754340c025105aff53f6cdd8a48ff9d34b5d7', '172.105.247.100', 1676639421, '__ci_last_regenerate|i:1676639421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95981c3e8e2ff0ddfebefd767c6244afc34908f4', '31.222.203.2', 1676640749, '__ci_last_regenerate|i:1676640749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba1f9986bc4dbadeb0b4e42d66138048b4e1268', '31.222.203.2', 1676640749, '__ci_last_regenerate|i:1676640749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b95012395fcf919647652f1d54be6a0c738e5b', '31.222.203.2', 1676640749, '__ci_last_regenerate|i:1676640749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868b86d52d70647227e84e807dd2b99d2c210c47', '31.222.203.2', 1676640749, '__ci_last_regenerate|i:1676640749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e5ea6e54a0d789e7c572f1ae425cd31ab514fa', '31.222.203.2', 1676640749, '__ci_last_regenerate|i:1676640749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc779424f0799f92708f682973a039b510fb7a9', '31.222.203.2', 1676640749, '__ci_last_regenerate|i:1676640749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5af42ca42af38b1ae110f4788b442751366a223', '51.158.98.24', 1676641042, '__ci_last_regenerate|i:1676641042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('626a82b6255096a33f605daf66857a59f0d738f6', '45.120.39.89', 1676641921, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676641921;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676641065;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5e401c40804aeadbd22f47c3d583a645d97e0a', '45.120.39.89', 1676643134, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676643134;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676641963;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91fb57c31fbc11a307007d4926a68afca482f5b', '31.222.203.2', 1676642637, '__ci_last_regenerate|i:1676642637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07a7e613bbc7525fc9f2c85e5136dea288a8067b', '31.222.203.2', 1676642637, '__ci_last_regenerate|i:1676642637;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8055e9f36bc2f5d71bbb36446eb60be1e54eebe', '31.222.203.2', 1676642637, '__ci_last_regenerate|i:1676642637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('134926818a236faff2a886a99e0c54fdb0cdadb8', '31.222.203.2', 1676642639, '__ci_last_regenerate|i:1676642639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aba6746559b780284f4f1575aa6f1d8bcdfc6aba', '31.222.203.2', 1676642639, '__ci_last_regenerate|i:1676642639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b122b3affd8e828677fc35451c8441d832a13651', '31.222.203.2', 1676642639, '__ci_last_regenerate|i:1676642639;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d50b133c3ed64ebc077a73ac15825248a8ec90', '45.120.39.89', 1676644451, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676644451;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676644355;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39dc44763f5173ec1fb16d1dac92a7261a6d233d', '116.204.230.29', 1676644030, '__ci_last_regenerate|i:1676644030;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676297631\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d0f3ade5a29338d2bba1cdb522739b20fe1c81', '116.204.230.29', 1676644095, '__ci_last_regenerate|i:1676644030;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676297631\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b8bfc435c8b2508e0d1ce49f9285591908e44dc', '45.120.39.89', 1676644814, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676644814;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676644784;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1d0958c002abe1a0de381ac75353e573864718', '45.120.39.89', 1676646789, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676646789;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676644814;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c8e784a53223f8ce3c257bef0ef29b5797512d7', '172.105.247.100', 1676645416, '__ci_last_regenerate|i:1676645416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd863aef7c184d4a7261ff438b2ce05023ce48d', '172.105.247.100', 1676645416, '__ci_last_regenerate|i:1676645416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060c1b0bc4f2a53a43012d0a5ea14fa8e52bc69a', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac7335ed815705c8aed8b773ceadec7fde37163', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b603c2df5495b1d83c740a5420c1bfdcd8a12f', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae76b1447421fcc204d95577053b5dde77d90ed', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bc6d16c4000ed23bbd097fb4667353e460eb7a', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5b4033b93162e52884d8f3f7fad278dc6b3feb', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c1a65eeff4d5cd15b3db607e226a42758ccf2e9', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97a882e08513aed96ab0b4be9203c0ff415a4396', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a55291152ca780443bd42381c1c2fc00057159', '172.105.247.100', 1676645417, '__ci_last_regenerate|i:1676645417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32e81882be9ace22bc2282c15fffc1432c8efbc', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f7d43e92ddfeb46ad3c6bbe630e67dfc41e67f', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ec77e8cc76153e4a6bcab8b5ca35b53a6c6fd6', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3a9ac7f7af8442326e5dcb035ce8d32d3a117c', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428e043a3d3b2d45fe161a80146d10c79cab2b90', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('617ba0bd0c747b48d60f259f5162cab1e50830bf', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4cf83f9f3ebf33aa48114e9586c1002e76fd78e', '172.105.247.100', 1676645418, '__ci_last_regenerate|i:1676645418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f96bfe6bd12dd51a154c1a3f24720d58704f3415', '172.105.247.100', 1676645419, '__ci_last_regenerate|i:1676645419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cba746f22a52fd0eedebbe8096f49823ca79684', '172.105.247.100', 1676645419, '__ci_last_regenerate|i:1676645419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889320786dbfb834def04a5b31fbf72141cb4e0f', '172.105.247.100', 1676645419, '__ci_last_regenerate|i:1676645419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486bbdbbdf069c5b26d993513efe181e6e550a41', '172.105.247.100', 1676645419, '__ci_last_regenerate|i:1676645419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0132076856adbdadc9480f902342bc09b4d3468f', '172.105.247.100', 1676645419, '__ci_last_regenerate|i:1676645419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4ec99ec7574eeda9823b9431a826ee93bd44ffb', '172.105.247.100', 1676645419, '__ci_last_regenerate|i:1676645419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d3837014b1402c6f47945e39c51d615aa3f34a', '45.120.39.89', 1676647241, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676647241;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676647235;register_id|s:3:\"344\";cash_in_hand|s:9:\"3020.0000\";register_open_time|s:19:\"2023-02-16 21:23:33\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f05f5a67c390477626abae44518a2c1223a115', '45.120.39.89', 1676647277, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1676647241;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676609280\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676647277;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5122dfaedb969bae4371af15d20a0d2b1fdf2a55', '31.222.203.2', 1676649806, '__ci_last_regenerate|i:1676649806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47bea7f889d75b0eeec4875daa88a550da63a7e0', '31.222.203.2', 1676649806, '__ci_last_regenerate|i:1676649806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a81acc8ae1b9213dfcd019f03984b4b40a9bdc2', '31.222.203.2', 1676649806, '__ci_last_regenerate|i:1676649806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba343f55f60a52407be31de23e5334ff6c59b037', '31.222.203.2', 1676649806, '__ci_last_regenerate|i:1676649806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b83c13bcddf0d4fb640945b117fb83b7711248', '31.222.203.2', 1676649806, '__ci_last_regenerate|i:1676649806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('083092c177389ef8646a792f2fc4877add99e294', '31.222.203.2', 1676649806, '__ci_last_regenerate|i:1676649806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da0cd7a4a65e708dd8e2eeb96ce81c3d1235fe45', '172.105.247.100', 1676651418, '__ci_last_regenerate|i:1676651418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1364ea7869a4252d198e4e9a17c58481e8d2cd', '172.105.247.100', 1676651418, '__ci_last_regenerate|i:1676651418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d70738ee484a1da39cdf44f7f63c6a041fc12d', '172.105.247.100', 1676651418, '__ci_last_regenerate|i:1676651418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624f5ca4eef76150f6b51757d9cd13503094d1b7', '172.105.247.100', 1676651418, '__ci_last_regenerate|i:1676651418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4b9b9b0541aacf0173eb0e411789b15c99c1b3', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc95717b7230aee8dcdd6138f2ee31e7922fdbcb', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5293d584ef545e299770c591d5a004e4bf0ec6eb', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51fc464f90acda3be2a5bef12ff239a6b05c83c', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('644a5cf0072a61d95c823872dda90a77c85497fd', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c66a6a4accfe5de094115edf388771c6fd1090', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fab81387e79d1e7a8f434c299a8e30d086e3fee', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec67487f2e4fa0790582ffd65332745243e9fd3', '172.105.247.100', 1676651419, '__ci_last_regenerate|i:1676651419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43232756c8ff304d1f0ab46320e788d03656a8b0', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2224115ce2ee55756991bc38809dde40658fcf8', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9bf6cbd6f3067b3a51ee8b90dc6e4c69ecd59da', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df089dd93084b438c8f8507287cee340b005c2ca', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466f6e13c24977eea6e5cba0687260a9b242d2e5', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b247cc9ce9b88b5d6cfc370497781793eb9b48', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d4c406d6162674db85b508d88dc71aebc941583', '172.105.247.100', 1676651420, '__ci_last_regenerate|i:1676651420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acedc26630a78e888f531508735a412ea0d83c21', '172.105.247.100', 1676651421, '__ci_last_regenerate|i:1676651420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b611bbb61ff59f4d6c8eb50c202427ce4b57a89', '172.105.247.100', 1676651421, '__ci_last_regenerate|i:1676651421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa51c5c69186627c3669ad266aa9636666d800e', '172.105.247.100', 1676651421, '__ci_last_regenerate|i:1676651421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83c60ad4d52b69cb4ccffaae43937a528b6013e', '172.105.247.100', 1676651421, '__ci_last_regenerate|i:1676651421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734e3310f430a420e8efe5f8f569bb5e15e84a22', '172.105.247.100', 1676651421, '__ci_last_regenerate|i:1676651421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45fc999b7c59b0be78ae16f49f3be7e7f76d06c', '31.222.203.2', 1676653431, '__ci_last_regenerate|i:1676653431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340571234a6f4b897054fb7dfe36b3e3ba528cc3', '31.222.203.2', 1676653431, '__ci_last_regenerate|i:1676653431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600350d650fe57fee7e43108171ce24e099e4183', '31.222.203.2', 1676653431, '__ci_last_regenerate|i:1676653431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e535af666607986f494b2b7d289f962a6971796', '31.222.203.2', 1676653431, '__ci_last_regenerate|i:1676653431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36d9f0366d34506fb587b0538b4f796392e3965', '31.222.203.2', 1676653431, '__ci_last_regenerate|i:1676653431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7947775c24ae61dadc377beb8346d84d9c8c0788', '31.222.203.2', 1676653431, '__ci_last_regenerate|i:1676653431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('244997f687f43d62e2e379745ecc4be0d4c0fc6a', '172.105.247.100', 1676657418, '__ci_last_regenerate|i:1676657418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80fc716aa93ec2a68c287ee538d7f560af8656f6', '172.105.247.100', 1676657418, '__ci_last_regenerate|i:1676657418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf664b201c03ef06b4d9fcfd3836498aaa19849', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25579ae89d440304a903f791f29164c083e3fa7', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21a722c9fbcb492b335795d21f9070aa741754e3', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a51c06b879414cbea75dc1fe1157d7ece04faf', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80da791e69ce34a3216d98ec924e915aa681c3fb', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9afc889b82cc7fcfc49593289954aed9eeb3cb81', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d06ec303101a4f4cc90b12a5f2b5c9a8a230953', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b61777acd545cf4a1a27999620314fbbd447e986', '172.105.247.100', 1676657419, '__ci_last_regenerate|i:1676657419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b4e3ab542b858f3e8819d582c806f0af65c395', '172.105.247.100', 1676657420, '__ci_last_regenerate|i:1676657420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2904f2a92bfffe3cff1b7c16ea8f53d0ebebf2', '172.105.247.100', 1676657420, '__ci_last_regenerate|i:1676657420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76cf167161f34f02a62b1b9ae7949d9b131dbfcd', '172.105.247.100', 1676657420, '__ci_last_regenerate|i:1676657420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ada2bcd96e8961a222f13d63c00063f87d69bf1', '172.105.247.100', 1676657420, '__ci_last_regenerate|i:1676657420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef29443039056938259e08739bc46d2c76ab64a3', '172.105.247.100', 1676657420, '__ci_last_regenerate|i:1676657420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4132532dbe4e55f7b12776281d58762f08108f0d', '172.105.247.100', 1676657420, '__ci_last_regenerate|i:1676657420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8e96d1ed687c3e4b1eaa3ef5d1bef8bd201ddc', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bfa3e7bf7d7ee489c7fec5191e9ee89e1612e7a', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a22bb630d7e138183339775cae7edff330ed1d7', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10cbd6a0a5cfe99510226b5da71ea3681b507a59', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b4b389677fea108993d3def544df6b69336304', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f264459a12b108bcfae72b4100a709c1dedc8c', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc5df5cbbfae9512b8101621494e0e2716d552a', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae91e10019e81c212e772127a984b106faba1118', '172.105.247.100', 1676657421, '__ci_last_regenerate|i:1676657421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aded3278804b0ee6c548150fe1825c94383bd972', '31.222.203.2', 1676662386, '__ci_last_regenerate|i:1676662386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abd9a1541551728771c394c7c142e0644727ff5e', '31.222.203.2', 1676662386, '__ci_last_regenerate|i:1676662386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97135376305b88269c21977923c5fb640d2b2c5', '31.222.203.2', 1676662386, '__ci_last_regenerate|i:1676662386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f23d83bba8e8bac530fd491c40d58036721611f', '31.222.203.2', 1676662386, '__ci_last_regenerate|i:1676662386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c29724002ac994afc14d043b0474e4687161c69', '31.222.203.2', 1676662386, '__ci_last_regenerate|i:1676662386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec9042405913681c46146c43cfbf24a5699187e', '31.222.203.2', 1676662386, '__ci_last_regenerate|i:1676662386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a295ce0d6dfe832531c44b5bccf2cd8df4604d', '172.105.247.100', 1676663417, '__ci_last_regenerate|i:1676663417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b525cfd81c9348b0257218a04780d13f0d5a72b0', '172.105.247.100', 1676663417, '__ci_last_regenerate|i:1676663417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3baeaaad21f1799e964ecbe7506d7c71a388047e', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e729d64a6f601f4f5f005e79563860d8217a6aaa', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f887ba1e77c0e301fff3a66c6abcf33877715026', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3ce9292dcf6db800a38ea40dfb53980caafe388', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515b8b2cf670e40e45d19a70993715b18ad2eb77', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1b4f042f1fccf03124ee766fc350a406cc2abe', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31354e3cd83618dde3b448e2c37559893c7ac49', '172.105.247.100', 1676663418, '__ci_last_regenerate|i:1676663418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c20af7d256235802b632a27c73b50ea2ec8360', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('071333788056720e8b51610662132a8a0bbbdf1a', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28775167283722524df74909ba81aaa945e18731', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2553020dd731d9fce10280b51039b06c55023e22', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425f29d26666b14e7a38159c0413a09e43c7abba', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d9630cdd4edb77ca8a34411f807c8f88857d2bb', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12d5a8f26f3fae8d4767064bcb43d7437fe7ec6', '172.105.247.100', 1676663419, '__ci_last_regenerate|i:1676663419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81caa24afa563c139d4be8c05584629030cd70b4', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31392dd882f25b7cd5ee1042017a396ee51e2cd9', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060033b2753d2dea3d5ee14a515e11f5da59d9db', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7857691052a1725eb536f23563658e9b28a0db6', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3eb3948531cbe2f44f88856c147f1b25116983', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbc8512a211abcdc68a1691318fdc6cd3a8af14', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcc26a5cab380a16db4dadceef4d4bdfc8cf878', '172.105.247.100', 1676663420, '__ci_last_regenerate|i:1676663420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('005192c1f21bd3d55104631faf437c542dae7d08', '172.105.247.100', 1676663421, '__ci_last_regenerate|i:1676663420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce204e109681a139723a5890369fe6ca853be8df', '31.222.203.2', 1676664262, '__ci_last_regenerate|i:1676664262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716572ee0f6af665c5f97baaec1331cf8af58f18', '31.222.203.2', 1676664262, '__ci_last_regenerate|i:1676664262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36baba562468220d8d282122db4cfe366c19c5ac', '31.222.203.2', 1676664262, '__ci_last_regenerate|i:1676664262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01a5e99a1da3991f17074bd40afff349e2c3e2a', '31.222.203.2', 1676664262, '__ci_last_regenerate|i:1676664262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3e98a32b79df4644cdec79f81af9565f845fd5', '31.222.203.2', 1676664262, '__ci_last_regenerate|i:1676664262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8be182de8ee8261c81cc2984dfd32ea608cb52', '31.222.203.2', 1676664262, '__ci_last_regenerate|i:1676664262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221d46b0a60b02c99dde2a337a15373031a905de', '172.105.247.100', 1676669416, '__ci_last_regenerate|i:1676669416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93c2726a94793877a28967c8f8fa025b93a8d9f9', '172.105.247.100', 1676669416, '__ci_last_regenerate|i:1676669416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ca562fe699d70e5fce13ce3114e1a388cd6f2d', '172.105.247.100', 1676669417, '__ci_last_regenerate|i:1676669417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367220b86f8a8b07108d921789e95b5653ee2fcc', '172.105.247.100', 1676669417, '__ci_last_regenerate|i:1676669417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d01245e68e594446efd83a73c1d2f21034cfd9', '172.105.247.100', 1676669417, '__ci_last_regenerate|i:1676669417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d22e3f4c8c18b0564d9cb6e9f534a8a1df59f808', '172.105.247.100', 1676669417, '__ci_last_regenerate|i:1676669417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f84690d9c124696d9e1d95e3676f6b4dbeae272', '172.105.247.100', 1676669417, '__ci_last_regenerate|i:1676669417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9e6f8f733655b9ca1e95cb801b14d6d711cf45', '172.105.247.100', 1676669417, '__ci_last_regenerate|i:1676669417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f957e97b550f7f96f4d8c40bd5c402e99e880ba', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd7672ef8b9601da1c3b70fadf9501fbcf3d5d1', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed62b1210b579e6d89ee175dc3520ec3e8106d14', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9592fb28498cb74604c9b065e97089f948b60ef4', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0c3b9e36622ebfb7136559c5e0b73b9e4097f1', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942b5f704bb11564a12a956c01871e077e192677', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea09f78c7419a41047f7f6b3fbb90dff560eb046', '172.105.247.100', 1676669418, '__ci_last_regenerate|i:1676669418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be4e64f11a27e7aec195be0f61a3ad645a4dba29', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d51377a3e54524eee6f9de31d1d9557d67abab', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524c2b7b8f91b9193ea61e59e9f393b201b3ff23', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df94a09bf35eab358ae8b808259c12a7e93063c', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1580eee171a2159102b72854a3cb878037214496', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55fe3786d2422e79c85a60b19f5ea5f8d9e07b72', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3e74deecc8322942f41f5d46d3fdb3aad19175', '172.105.247.100', 1676669419, '__ci_last_regenerate|i:1676669419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399d357c0eac4263f5e89627ff97ff747337a41d', '172.105.247.100', 1676669420, '__ci_last_regenerate|i:1676669419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('223fc3c549803dba82df3cdf734e5738c7933986', '172.105.247.100', 1676669420, '__ci_last_regenerate|i:1676669420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fba388315b15868b8abb7776207a5009402bf89', '31.222.203.2', 1676671388, '__ci_last_regenerate|i:1676671388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f401ebf3680fde2e65a3334b746e92885be62b5f', '31.222.203.2', 1676671388, '__ci_last_regenerate|i:1676671388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a05e7891e99fa96171f57f1187469caf6639db4', '31.222.203.2', 1676671388, '__ci_last_regenerate|i:1676671388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('debd30413ac178cf19f1aed2c9c921ecb1c24b01', '31.222.203.2', 1676671388, '__ci_last_regenerate|i:1676671388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd18d7ee306f587710c2114a84b08d1d87a0b7d1', '31.222.203.2', 1676671388, '__ci_last_regenerate|i:1676671388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528aa5708542ab0f31b5d576de18c16ace7af223', '31.222.203.2', 1676671388, '__ci_last_regenerate|i:1676671388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1019135d7802e5ab0aa501c2de0fcae1fae94d6', '31.222.203.2', 1676673260, '__ci_last_regenerate|i:1676673260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56200464a7a9c8dc8527a5196cce3eb5a79194c1', '31.222.203.2', 1676673260, '__ci_last_regenerate|i:1676673260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb048edaa5a8f81262c5cece491f795b05acf744', '31.222.203.2', 1676673261, '__ci_last_regenerate|i:1676673260;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be975a4570e806f62bb4f9e1a3d84e29b9121a2', '31.222.203.2', 1676673261, '__ci_last_regenerate|i:1676673261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4a195066138084ce2640916170577d8ff4426f', '31.222.203.2', 1676673261, '__ci_last_regenerate|i:1676673261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3f81340a0fdf65cd2011b8c04c9ec9d1d931b0', '31.222.203.2', 1676673261, '__ci_last_regenerate|i:1676673261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff48557232daae11f4081f4d542c8bb8f5cdc6c0', '172.105.247.100', 1676676015, '__ci_last_regenerate|i:1676676015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5dfd889f3cad1e2e2a11e6a97b8fa55d0562ec4', '172.105.247.100', 1676676015, '__ci_last_regenerate|i:1676676015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d821217b7b3b6a56c141b3eed33b060538c7d2b', '172.105.247.100', 1676676015, '__ci_last_regenerate|i:1676676015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac12716b46ee6048b935a2d3958d0151fb11f0b', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0561e2f7877d839d0a56997ff8331fdd4a0389cf', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc81d50df68f94a1ac71c4266c9d2f91050e822c', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cde31eb83654179571a3620eff6d5758935e27a', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c8f40a6205d86ca3e1ad0dcd601315a80fda37', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd63ea9ad36d4caa9e5fa238779d882ce34c7dd2', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583f3ade32736f82ff947b9de25975f2f6ead018', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f85f4c86e88849cc91f6c5e54fc55e14f56e11', '172.105.247.100', 1676676016, '__ci_last_regenerate|i:1676676016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('602a6573dfc5ec974f7daf65479b89841c35be2a', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4043f8842300a7c477ef536aab2c863b4b2d3def', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f499a1d61acb70fe7bdebceec413acbe07c1cfb', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7333a3960c0a5f915f6fe75835cc8243ce2afda', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2999cf4ce4fef40d65bd830f0d6ac4efb78da291', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f735bbe9470a49dddc78bab6b96de823f51e8f55', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16afe0df2f0b516bde18fcdfb3672193a349a911', '172.105.247.100', 1676676018, '__ci_last_regenerate|i:1676676017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eeaf0e1d501546bbfa0432eb416578858cc2a6c', '172.105.247.100', 1676676017, '__ci_last_regenerate|i:1676676017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d70069411a26dc996fce3f06a5de95123f6205', '172.105.247.100', 1676676018, '__ci_last_regenerate|i:1676676018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515dcc1e6cfab165dffb57e267c45c854bb71ecf', '172.105.247.100', 1676676018, '__ci_last_regenerate|i:1676676018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3301becec257c92ef5b379357db01655c1e821', '172.105.247.100', 1676676018, '__ci_last_regenerate|i:1676676018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6adb624e7361718e874af84fa7659c1e0496db81', '172.105.247.100', 1676676018, '__ci_last_regenerate|i:1676676018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d8a3dec35609c252541daa672d70bf2028f9036', '172.105.247.100', 1676676018, '__ci_last_regenerate|i:1676676018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33733656cd870d8b2112ff24028be92a5e93e4ff', '31.222.203.2', 1676676824, '__ci_last_regenerate|i:1676676824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a8b9029c5eed88ac20f30c350bdcb2563b431d', '31.222.203.2', 1676676824, '__ci_last_regenerate|i:1676676824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69469e3a5a1bd22e16524f70a20f3152b46fd1ec', '31.222.203.2', 1676676824, '__ci_last_regenerate|i:1676676824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d503415edc3eca76d7f7fd72ebfefdce1ef780', '31.222.203.2', 1676676824, '__ci_last_regenerate|i:1676676824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690884560ec91e8a3fceaa54594a0431a3e53939', '31.222.203.2', 1676676824, '__ci_last_regenerate|i:1676676824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88a40cbfcac86655052f33f25e884b012e0225ca', '31.222.203.2', 1676676824, '__ci_last_regenerate|i:1676676824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe70135c8a6355feb793681f2fff88a1411d36f5', '198.235.24.183', 1676678566, '__ci_last_regenerate|i:1676678566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f5bf50d409987505eb45655f2612e414b18fe6', '31.222.203.2', 1676678653, '__ci_last_regenerate|i:1676678653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a91e81f20f636d286f356446478f12b4c32ac8', '31.222.203.2', 1676678653, '__ci_last_regenerate|i:1676678653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca76a787d72103cada26f93ffecee3205aeec63e', '31.222.203.2', 1676678653, '__ci_last_regenerate|i:1676678653;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f959dd5eff14192099595ca7a1f11b6639e91dfb', '31.222.203.2', 1676678653, '__ci_last_regenerate|i:1676678653;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265b86e86fb77371e10bef57f7a27a8c177c382e', '31.222.203.2', 1676678653, '__ci_last_regenerate|i:1676678653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8907f488b76beefb604ffe6e2cb63aa0ec6081a6', '31.222.203.2', 1676678653, '__ci_last_regenerate|i:1676678653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75248776198ca6fd28cc0426c49a72b06b85c05b', '167.94.138.63', 1676680875, '__ci_last_regenerate|i:1676680875;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0efbf05fa7628047f53701e11c9681f0a3680619', '31.222.203.2', 1676682189, '__ci_last_regenerate|i:1676682189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d3482ae4f5452f0c19851012e3c96efa84a96b', '31.222.203.2', 1676682189, '__ci_last_regenerate|i:1676682189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2c011a2f556b9a77f603bc81eec5b48ba4aff9', '31.222.203.2', 1676682189, '__ci_last_regenerate|i:1676682189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109d936ccb3488e41bbb37664dfaf2998f4dcfd1', '31.222.203.2', 1676682189, '__ci_last_regenerate|i:1676682189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d16dae486db132a651ec57cde308fbdf2bbf10', '31.222.203.2', 1676682189, '__ci_last_regenerate|i:1676682189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac4f3aa7378656dff4c2c362718630d0352aaa4', '31.222.203.2', 1676682189, '__ci_last_regenerate|i:1676682189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('051000f8bc0dad6a43c6138b4895a181b485b635', '167.94.138.63', 1676683071, '__ci_last_regenerate|i:1676683071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e911e59233590894d6b48476f50aaddaa14b7e1c', '172.105.247.100', 1676683217, '__ci_last_regenerate|i:1676683217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f7e4fab13320ac0c41bd081a11101b9ba1963e', '172.105.247.100', 1676683217, '__ci_last_regenerate|i:1676683217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c45e3a7fc57ec81873f1d08654e6d6d9f1659b', '172.105.247.100', 1676683217, '__ci_last_regenerate|i:1676683217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084307f725c36540e2bab8b50e1561578d4efb6f', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d393ff9ed84ca164b9de43e7e13f83b76764c1b', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5da9334d71118e817c2006449ae77a9bd77eca1', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148d6f441c0ff908260a12f1307afadee416dee0', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f5675d57a248aa159df78a79d49f3365b0822ae', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0054f413c97f62cf8bab1516fe488b7b8b4b784b', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba15a136c5c99a765a779f2feccbd33124de77fa', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67cafdd8945fb1c34bf34b479ebce7001e0bbda7', '172.105.247.100', 1676683218, '__ci_last_regenerate|i:1676683218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d3e4a0d0c8dd5de6b990c396753bd4d8c8a59e', '172.105.247.100', 1676683219, '__ci_last_regenerate|i:1676683219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8099702f97f79c94ee8e89452c8ba9aa1294569d', '172.105.247.100', 1676683219, '__ci_last_regenerate|i:1676683219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32bbf36982d9f1b35d79add9327fd1c673689c26', '172.105.247.100', 1676683219, '__ci_last_regenerate|i:1676683219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5053ef9a21d91190db821917f46f2fd93baec6b', '172.105.247.100', 1676683219, '__ci_last_regenerate|i:1676683219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b42519c9d3fcbfe086743457edbaf2ba902aafb', '172.105.247.100', 1676683219, '__ci_last_regenerate|i:1676683219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bae285f1bb45d914fa15a658d9c3c8b0fc80615', '172.105.247.100', 1676683219, '__ci_last_regenerate|i:1676683219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94d685680b0ee20963e2c1438ff885ce80209923', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012a0d30c713abe6aa9e10169cf3e5c726a74110', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53f2f36e101cfb342c329b54c0d2c8deb97d60a9', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491d402314a301614087a446f0cc751c703dd354', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ed197c102d4cfc584342ee636bda19ef01d2bf', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01ff4def36c143438c46c9960d916e85d41bcfb', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8fe3e284b407a1ee5b344d87b277130ff91849', '172.105.247.100', 1676683220, '__ci_last_regenerate|i:1676683220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99952f0107824cd0eb6bd487fd82febee52901a', '162.142.125.210', 1676683620, '__ci_last_regenerate|i:1676683620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5910302d94afeb5083f4b316979f9bb027e9deb6', '31.222.203.2', 1676684101, '__ci_last_regenerate|i:1676684101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2def3b106ba9b9cf555be06a5e54f34dd0a76a52', '31.222.203.2', 1676684101, '__ci_last_regenerate|i:1676684101;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e73d03efea751dadbdc4e3650e73b01f94bc53a', '31.222.203.2', 1676684101, '__ci_last_regenerate|i:1676684101;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb70b2f2041fc1170822f095f110051f3c53b57f', '31.222.203.2', 1676684103, '__ci_last_regenerate|i:1676684103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('565f6dc6768f75f2c66fd53d1ec235925ac2aec0', '31.222.203.2', 1676684103, '__ci_last_regenerate|i:1676684103;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3286bcbf05a94eb587ba2bde777304f5981cd9a8', '31.222.203.2', 1676684103, '__ci_last_regenerate|i:1676684103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91dca82004d1b2f4710f97bbb804e641bf7c956', '198.235.24.149', 1676684341, '__ci_last_regenerate|i:1676684341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5875824011a980b3a395d8f21584d76e9a504a43', '167.248.133.61', 1676685186, '__ci_last_regenerate|i:1676685186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9aeafd095c184cbb59d5cea418f51a5ec17db91', '87.236.176.46', 1676689771, '__ci_last_regenerate|i:1676689771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3609d54149c91ccca82047cb287f8f79db3a73d', '87.236.176.46', 1676689771, '__ci_last_regenerate|i:1676689771;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e204750289e191a4e0c23b6d988637cd2988f05d', '172.105.247.100', 1676690416, '__ci_last_regenerate|i:1676690416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8389452ffc7089bad20d693b6ef128454898f13a', '172.105.247.100', 1676690416, '__ci_last_regenerate|i:1676690416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b3299212ef663eadbf060e4072625b41ea4278', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7b1f02ab804ddc56294757add57a5d24d5d9f6', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91728932ccc78fbecd9b1d979f3ef607e3fdc931', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6fc0f661ca5bfebd0f3e15d1b6d36c468035925', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3fba7aea1bfa9dbae286dd22760f33e702a23f8', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472c8ecd5158c9ec01f669b9e1fdfc214dd78fa7', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('036485365dce1d2d5ae0d71460eb7b8eb44a418f', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5189f57ac6637bde88928c39f13a501afa740110', '172.105.247.100', 1676690417, '__ci_last_regenerate|i:1676690417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472c7c79e5540cd5d52edecc744dd7c227ea4e47', '172.105.247.100', 1676690418, '__ci_last_regenerate|i:1676690418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18eafa7803b4c479fd5b75d4f075d08e09d7ce96', '172.105.247.100', 1676690418, '__ci_last_regenerate|i:1676690418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1976dd34a7c4be61de0341044f40e8e9f2978c4', '172.105.247.100', 1676690418, '__ci_last_regenerate|i:1676690418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac0002ffd959aad5529b93fc28d26d413d15ddd', '172.105.247.100', 1676690418, '__ci_last_regenerate|i:1676690418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('695ae6288fa75ec77c9c87a5d6924b670a543735', '172.105.247.100', 1676690418, '__ci_last_regenerate|i:1676690418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcc212d3d012fe91ae6f6d3f5808a626b04932a', '172.105.247.100', 1676690418, '__ci_last_regenerate|i:1676690418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('431e11838de0e8e176c6de220a9820f3e85717a6', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0cbb65aeb7749496459379bf503f0e9faa26de', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f100f49762b1570415300123c199f74d6ca9eaef', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54df5454e6bf5e7a189fd18acf163d829d6e069', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a1dfafcffc83dedf62bef93f5c5688346fc0de', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a90cbba580d89885031b10a084d3e8aeaeae7e1e', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c4cfa615734bf6da7a710864b92eebb73a4b798', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb08b9df2b2a0db452a56396b90fda086fef6b23', '172.105.247.100', 1676690419, '__ci_last_regenerate|i:1676690419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ddf8e45f96430e3873287c331f771d726eece41', '31.222.203.2', 1676691187, '__ci_last_regenerate|i:1676691187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98b1e1e2dda34df939daa256f76638a99b06560', '31.222.203.2', 1676691187, '__ci_last_regenerate|i:1676691187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fd3d8aec1889ee8d7844cc10f121373d7ad7bb', '31.222.203.2', 1676691187, '__ci_last_regenerate|i:1676691187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b583143139f7b41a7454c642a578db8290af34', '31.222.203.2', 1676691187, '__ci_last_regenerate|i:1676691187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcdc743124d025980a7df6a7578e8d8cfee63013', '31.222.203.2', 1676691187, '__ci_last_regenerate|i:1676691187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd0645127576c1026db02366a2fa99e6793f40f', '31.222.203.2', 1676691187, '__ci_last_regenerate|i:1676691187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fc0c9131c278d478bc3a77c09129f674e1f536', '31.222.203.2', 1676693063, '__ci_last_regenerate|i:1676693063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acade81a8b51d70d57a87299e2c55a84ab6700e', '31.222.203.2', 1676693063, '__ci_last_regenerate|i:1676693063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74452a66e2f2caff42378bbe944a46821fd7836a', '31.222.203.2', 1676693063, '__ci_last_regenerate|i:1676693063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('715fa4130f8f7ff2ae7029df610c99a7e58d0bc7', '31.222.203.2', 1676693063, '__ci_last_regenerate|i:1676693063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb50ab5b8ce9329eb0a29ea6a73efa9194e393f4', '31.222.203.2', 1676693063, '__ci_last_regenerate|i:1676693063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e82f99c4dc65560aaca2101cf7ad80764b35205', '31.222.203.2', 1676693063, '__ci_last_regenerate|i:1676693063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2191d90a4ba575b9931c60255f64631cbf052724', '45.120.39.89', 1676699806, '__ci_last_regenerate|i:1676699806;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676693506;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f02459933ddc38a4463afbc9c348ec90c933c8c5', '116.204.230.29', 1676696862, '__ci_last_regenerate|i:1676696862;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676643403\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b2aba7ffb7efda64951149b34b4f11a38a62485', '31.222.203.2', 1676696588, '__ci_last_regenerate|i:1676696588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b6f2516d74f312a1464efc13afa39c41d6dfe1', '31.222.203.2', 1676696588, '__ci_last_regenerate|i:1676696588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2513199f61f6503a4f4080176eb3da106319cb24', '31.222.203.2', 1676696588, '__ci_last_regenerate|i:1676696588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94de864b1f3b744b1463e52d3516d5fd2071955', '31.222.203.2', 1676696588, '__ci_last_regenerate|i:1676696588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('889e6f78a16f355c9472276731b871f38de65c72', '31.222.203.2', 1676696588, '__ci_last_regenerate|i:1676696588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('959a62c679852fcac8fc814ad5d850550dcf570b', '31.222.203.2', 1676696588, '__ci_last_regenerate|i:1676696588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f72cff0b5379d99d890a2975e5b216a796451b', '116.204.230.29', 1676697320, '__ci_last_regenerate|i:1676697320;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676643403\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a2b2cb7f86270ef22976343e0334b05430065e', '116.204.230.29', 1676697562, '__ci_last_regenerate|i:1676697320;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676643403\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"RbQodfNTUpst4WF9Daiw\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a350d51c582dedb81136cdf77d4f0dc4375bfda7', '172.105.247.100', 1676697619, '__ci_last_regenerate|i:1676697619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e2da34c503dc87f98bfde9aa81b795238af3ad', '172.105.247.100', 1676697619, '__ci_last_regenerate|i:1676697619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2008a4b68db63407da2e93c1353c1c393d98da0', '172.105.247.100', 1676697619, '__ci_last_regenerate|i:1676697619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4d06294d3daef7a1a55c14af2c15482993c596', '172.105.247.100', 1676697619, '__ci_last_regenerate|i:1676697619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7326b70ad6cd2668a9a115156ae366c46a042c8d', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8109d3cb1dfcf376cd39b0682c8926e50789d6f', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4265931fee0b68ea5cfad917840edd7a53ff491d', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa4cb0aaae56477ef20cb3a1a467adcc5aad7c3', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b6803f9c6a98d326757bdb4ae65a4c06c83d1a', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c6243d7427c117797f83b26bdd8bd530f3d7eb', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('499db66e00c56557d5fef9afeb1b36f8a7efd6b9', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e95b1aa12194bab9322200e3a640ba751e948f2', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0db35805f1c181a1337465ca839df81e0fbd6e8', '172.105.247.100', 1676697620, '__ci_last_regenerate|i:1676697620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4376a04b5d4a2b3cab784555a1c0e651dca028', '172.105.247.100', 1676697621, '__ci_last_regenerate|i:1676697621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2753438038762c4b98afc2d983c9feb6974a29b1', '172.105.247.100', 1676697621, '__ci_last_regenerate|i:1676697621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca16186110ae1fab8eaf09373b53ec74a2ada878', '172.105.247.100', 1676697621, '__ci_last_regenerate|i:1676697621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02969ad0444a7a0cfa0d1529a424121c41aa9d91', '172.105.247.100', 1676697621, '__ci_last_regenerate|i:1676697621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6fc4528d83b43766c3be297f1bb488a960d92a', '172.105.247.100', 1676697621, '__ci_last_regenerate|i:1676697621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485aecc7443435cd0a21c08b0e20db05faf3507e', '172.105.247.100', 1676697621, '__ci_last_regenerate|i:1676697621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ca34dc648f93ff97caaabbb9581d0caae268db', '172.105.247.100', 1676697622, '__ci_last_regenerate|i:1676697621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e78324e960ea18aab7e544df162b41ad57c004c', '172.105.247.100', 1676697622, '__ci_last_regenerate|i:1676697622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4580b355fc11abeb551293b89d1e635a724e84fe', '172.105.247.100', 1676697622, '__ci_last_regenerate|i:1676697622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e10b9b7a2c0287c72a571f4bc8f27773395e9f8', '172.105.247.100', 1676697622, '__ci_last_regenerate|i:1676697622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1537659739d2f6cd9acea1eee7c303ad80c79cda', '172.105.247.100', 1676697622, '__ci_last_regenerate|i:1676697622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25d0aab9644c7d9fd1c0c1f860d695edbbed8279', '31.222.203.2', 1676698502, '__ci_last_regenerate|i:1676698502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1763294eb70c02b08e9520c0519eb7feb3563ea', '31.222.203.2', 1676698502, '__ci_last_regenerate|i:1676698502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a493714cb9c8435f745140be772b306061ce181', '31.222.203.2', 1676698502, '__ci_last_regenerate|i:1676698502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cd976cc72bea52dd50267825838b1305e94444b', '31.222.203.2', 1676698503, '__ci_last_regenerate|i:1676698503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('080c4ecc3778a0a6738461c44749faa8f1e3ea92', '31.222.203.2', 1676698503, '__ci_last_regenerate|i:1676698503;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21bce4c90ccb0183771242981dfcb2ce8a53dbf5', '31.222.203.2', 1676698503, '__ci_last_regenerate|i:1676698503;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec47fe59ac65e3ec62bd57fe430358a5af80898', '45.120.39.89', 1676700770, '__ci_last_regenerate|i:1676700770;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676700765;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4a896c2abd545e4c38bc93380965a41111c97dc', '45.120.39.89', 1676706141, '__ci_last_regenerate|i:1676706141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676700770;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0ebabeeb9d2a7dc2aedfd77995acfe61550eda', '172.105.247.100', 1676704216, '__ci_last_regenerate|i:1676704216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19fe5336a5f5ee3817680e40b2efb4673a137c9', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcec6642bf0dde6fd0c8a03e58cf7d56aebe4191', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d298be276fbbc3b934716a381e5139eaaf376f3e', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9685c2e5712e5b1a8a1ae889099e0b9c1ec92196', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0faced53b67b17be956551a1a61bb25ce3ce757f', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82e0bc77f4dd5d13c01cccfc21be94f76874223', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8920c283dade6869485862006e94207da6d31457', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f385c801ae7896d737800fddefcf73f817f7ff71', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47525aceb2269c3ec6de56b2b17f9e8d722bdfb', '172.105.247.100', 1676704217, '__ci_last_regenerate|i:1676704217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9ba2ba52503bdb8bbbc4ef507b62025dc3a4d3b', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89105edd084079009574efd4669eee20d47e212', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be93c85806a12e3a45a45959a705069e34f413d9', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c7024b47cc52eab781065644edccf25062fc5fd', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('272e27daa3db763d67de469c0f74d88689838d49', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d172c812d500b063919883fac40368c44b5d64', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d5ff5f3ae09fb40e1e3f182a6ea1d98cdf075e', '172.105.247.100', 1676704218, '__ci_last_regenerate|i:1676704218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10dc14cac26aaeaa629e0721289cfe1d61a6b44e', '172.105.247.100', 1676704219, '__ci_last_regenerate|i:1676704219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a398ca766fdfa6e9835f18aa3bf2e48cd4c40f', '172.105.247.100', 1676704219, '__ci_last_regenerate|i:1676704219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44db29459f52092d0f8f4d8b7880c5ce8634575a', '172.105.247.100', 1676704219, '__ci_last_regenerate|i:1676704219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9b9e5875ac37dd52cf04f0012033d5b6731c16', '172.105.247.100', 1676704219, '__ci_last_regenerate|i:1676704219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7819c4c960b872a0282faefbb536fcf392c6641', '172.105.247.100', 1676704219, '__ci_last_regenerate|i:1676704219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('642fa17240d1256e71ab7c7cf1e8482e4e55e4a4', '172.105.247.100', 1676704219, '__ci_last_regenerate|i:1676704219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e601d9f6fecb80710631010a3efa61c926bc1b', '172.105.247.100', 1676704220, '__ci_last_regenerate|i:1676704219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6eb1ec5b7d7d8cd8a8c83a25c4aae5280c58d54', '31.222.203.2', 1676705585, '__ci_last_regenerate|i:1676705585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3170de8117f7fc920d2ccd77aaafdcc76cf6d9a', '31.222.203.2', 1676705585, '__ci_last_regenerate|i:1676705585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5558b39251e09a754758a985e790df644edd0a', '31.222.203.2', 1676705585, '__ci_last_regenerate|i:1676705585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7367905cfd0a53a3997a0dcb9fde586ba4d962a', '31.222.203.2', 1676705585, '__ci_last_regenerate|i:1676705585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f2f481e07898db9fe4fba25b785206abdfe4fa', '31.222.203.2', 1676705585, '__ci_last_regenerate|i:1676705585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72924f2e20273647793087a499d6561aeb857310', '31.222.203.2', 1676705585, '__ci_last_regenerate|i:1676705585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08360fdf4d65ea9136bdc5b4e40ee49095021d5e', '116.204.230.29', 1676706938, '__ci_last_regenerate|i:1676706938;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676696561\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb008047f3f42339e2486c599c3e1b527dc887cb', '45.120.39.89', 1676709565, '__ci_last_regenerate|i:1676709565;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676706149;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc2d4bbd91d494ef3447ec0103732393918626e7', '116.204.230.29', 1676706941, '__ci_last_regenerate|i:1676706938;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676696561\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e45cc730ed6904d29488c02ff30e5d4584c35b', '31.222.203.2', 1676707501, '__ci_last_regenerate|i:1676707501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588976d98cfee76ed4e475704bc18c18cbdc36d6', '31.222.203.2', 1676707501, '__ci_last_regenerate|i:1676707501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('616adbed39ba18ce9d12ce604d6c422f51128acb', '31.222.203.2', 1676707501, '__ci_last_regenerate|i:1676707501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b76165331d9a9fc504dd3231a820cee036689b', '31.222.203.2', 1676707502, '__ci_last_regenerate|i:1676707502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d742e42d08cc279e98aef06ad45c7788edb09c', '31.222.203.2', 1676707502, '__ci_last_regenerate|i:1676707502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b765b289771b763f6df5bc889d6236130a0b721f', '31.222.203.2', 1676707502, '__ci_last_regenerate|i:1676707502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14b451d892d76261eab8a7bacc0543db9b0e64e', '45.120.39.89', 1676712450, '__ci_last_regenerate|i:1676712450;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676712308;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('384ac0255ce13668b9d3de5f6dd561a4abaa40e5', '172.105.247.100', 1676711416, '__ci_last_regenerate|i:1676711416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1791035fab8e0491ef09aaee2819ea11cfa1d0c1', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e01b67900d6d817a1db09e2f823acf4cd4e5ab6', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a3ea20884688facd547fa982182c0e88034c6de', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48143e401157263279e340bab89053059a7e8a44', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84460ce897a3d689ad8179bc39993d1b26448947', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e52c7b52f9912678b840029ea8279ac9ff87a81d', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4124c8be2a6d48d807149c7c6f329dbea1c78c1', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfa3f7b37eece4746237064520b06c77bfd4e36', '172.105.247.100', 1676711417, '__ci_last_regenerate|i:1676711417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c1d49df2793fb2ec4191ad74ff541116797623', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f017e8a89c412812cbeea848a710158f37b4be4d', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b658b7327dc2d4dcc8dfeeb81b3aab75ae51e54', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ac090e3626092681b3f0414561c60bed8233f77', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f8b3bb05de9ec21fa37aa6c44b7da1308fde93', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692797709512f5bb0386fd48fd2b81ce3bd4bfee', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd8f6fc297c8526a7adf754263ce28128d04523', '172.105.247.100', 1676711418, '__ci_last_regenerate|i:1676711418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c05193479c943b556e3239976b34c143c3789ac', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8456a8e467f44ff7e8b9c4cd83999a0d60812f24', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479ecc80a768ee6c63fe3207424d4422dddb60dd', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d364e2bf3b9e738a187fda09461b1402b385bddb', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bbbb15722cf820437da0165ed05f6fbe09bf76c', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59263702a50c1178f85b71e247fb0303d7d1abef', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca16f5f05b38eafe8d3b02f5a0ab4c5a92d0a27', '172.105.247.100', 1676711419, '__ci_last_regenerate|i:1676711419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aba474115f1cad5eef5cf48d9f79b4dcf024486', '172.105.247.100', 1676711420, '__ci_last_regenerate|i:1676711420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1786bd964b160c1ceedc9681cf3137b727a460a', '45.120.39.89', 1676718457, '__ci_last_regenerate|i:1676718457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676712666;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6dbfdaa72ccf9542131e68faa9ca18c9a2fa9c1', '198.235.24.49', 1676713218, '__ci_last_regenerate|i:1676713218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c709529a883901b3d5d2539c1800225e76aafe', '205.210.31.166', 1676713603, '__ci_last_regenerate|i:1676713603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27ed814a7dce3f8c3d446e153c0bd859bcfc392', '205.210.31.166', 1676713604, '__ci_last_regenerate|i:1676713604;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84474f52ada4b67871c2eff49a686aafb7a7c42f', '205.210.31.166', 1676713604, '__ci_last_regenerate|i:1676713604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f7553dc536e667d06c3af74adc6b0ae8f5a95c', '31.222.203.2', 1676714627, '__ci_last_regenerate|i:1676714627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d147bdb59f8b2a068aee1b73e589eb60b755d627', '31.222.203.2', 1676714627, '__ci_last_regenerate|i:1676714627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('931f31c284a3912e5034ef422729fec6aa27b8e3', '31.222.203.2', 1676714627, '__ci_last_regenerate|i:1676714627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb4cd636dcb483ab669b783e7d8b00217346a8c', '31.222.203.2', 1676714627, '__ci_last_regenerate|i:1676714627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ea3759779c823656b49473d8d4fccd9113a0a4', '31.222.203.2', 1676714627, '__ci_last_regenerate|i:1676714627;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b8d9023f547fd38d8806dd4d407b2ec0c43bea', '31.222.203.2', 1676714627, '__ci_last_regenerate|i:1676714627;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903788cbff3186bdba89b4b5fdd12a99d121ba0e', '116.204.230.29', 1676720056, '__ci_last_regenerate|i:1676720056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a95abf26a7f729aa4c8d7b7b499c4b9daff6d6', '45.120.39.89', 1676724162, '__ci_last_regenerate|i:1676724162;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676718641;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ef2886891b456003025250c34927e07eca49f4', '205.210.31.135', 1676719096, '__ci_last_regenerate|i:1676719096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7360fdd72033a4acb809958064fd0dc3cb8699d9', '172.105.247.100', 1676718616, '__ci_last_regenerate|i:1676718616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b743daf93949adcbed2269d0e81678ce7e5017', '172.105.247.100', 1676718616, '__ci_last_regenerate|i:1676718616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9272f4d30ea6ab3205ce8258668b9d0e23c74e', '172.105.247.100', 1676718616, '__ci_last_regenerate|i:1676718616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075e8c375a2bfcc4e0e93dc498c554ad708096ca', '172.105.247.100', 1676718616, '__ci_last_regenerate|i:1676718616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e64dd11f3211473e756027adad2dc5d88f930a', '172.105.247.100', 1676718616, '__ci_last_regenerate|i:1676718616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cef8c6221d3917a49447706f2559dda4fb8f953', '172.105.247.100', 1676718616, '__ci_last_regenerate|i:1676718616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5454bcc4b49f3778c953c2887210754322de6d8', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('501343849cf5608f4138b90a20aef3e15dea5ef5', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9dceaa64fab39bef171452a16037d242641681a', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('886072e0e9e9aa1918387311f0c391a11df96eb1', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb7c46c5fa30d45b45e580b61e6c8e45d0f4268', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e3391275df46e0e6024f860c638d11f9e00817', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc657a9210866d7208300a69b62ba290115b5c8', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cefd5ce634faa994417f7a9997279aa018189b5', '172.105.247.100', 1676718617, '__ci_last_regenerate|i:1676718617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d35e1785e008a6a376ae456d0b103b0a083d869', '172.105.247.100', 1676718618, '__ci_last_regenerate|i:1676718618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9e65c8e3f66c87b248c9b422763bd5ac8eca7e', '172.105.247.100', 1676718618, '__ci_last_regenerate|i:1676718618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a003a08795449f489a7d02013e6732b1442a06c', '172.105.247.100', 1676718618, '__ci_last_regenerate|i:1676718618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb950fa0233d566a161ae58e1d8c7fa0d831940a', '172.105.247.100', 1676718618, '__ci_last_regenerate|i:1676718618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1077c0a756850681a74047719e9328b6f67e35b4', '172.105.247.100', 1676718618, '__ci_last_regenerate|i:1676718618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b4e2fb6fe0d67f11a90d43dc82bcd238184d7ac', '172.105.247.100', 1676718618, '__ci_last_regenerate|i:1676718618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42dbf019a83c918fff31632a4ec105ca484291d8', '172.105.247.100', 1676718619, '__ci_last_regenerate|i:1676718619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d329c8b76630f17292d816d0f7069aca50fe86', '172.105.247.100', 1676718619, '__ci_last_regenerate|i:1676718619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eebd6d56756e08f74856e8ec83a37095b58bf9e', '172.105.247.100', 1676718619, '__ci_last_regenerate|i:1676718619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e30c2204242d35568b4bc52f52b608c3a6fd5ba', '172.105.247.100', 1676718619, '__ci_last_regenerate|i:1676718619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1edc36997af34554a9c056969f7758e63fd377b9', '205.210.31.135', 1676719096, '__ci_last_regenerate|i:1676719096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7f526d18e6ea15333e375de29fc72c88f0c07e8', '205.210.31.135', 1676719097, '__ci_last_regenerate|i:1676719097;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d429df41aeb351e8e00ad36871332f0d4bcf67bf', '116.204.230.29', 1676720057, '__ci_last_regenerate|i:1676720056;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676705872\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7607f137dd2fe6ee82541a3dbaba6bfa6a56aef', '31.222.203.2', 1676723588, '__ci_last_regenerate|i:1676723588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ddeb07546a2e3a037d021e218f902cb6fb3d05', '31.222.203.2', 1676723588, '__ci_last_regenerate|i:1676723588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c7ce89f236727601303142d3e0374d8b824750', '31.222.203.2', 1676723588, '__ci_last_regenerate|i:1676723588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6adca835efefbf2c5bf5571e8481f628ad1c8a6c', '31.222.203.2', 1676723588, '__ci_last_regenerate|i:1676723588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ca5e1eb9f859844e4fbc709a2747353fd66bdb', '31.222.203.2', 1676723588, '__ci_last_regenerate|i:1676723588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4f72b9b6b55a2851d5dda712cd90c15734b9df', '31.222.203.2', 1676723588, '__ci_last_regenerate|i:1676723588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec3cfd3f89e5c53011aa373eb0935b69edc8d6a', '45.120.39.89', 1676725532, '__ci_last_regenerate|i:1676725532;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676724175;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f471a020094aeed4bc70120afee49aabed5e47c', '172.105.247.100', 1676725218, '__ci_last_regenerate|i:1676725218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461f5ae76e7253ac15f86fb12bc9bf913d8a7712', '172.105.247.100', 1676725218, '__ci_last_regenerate|i:1676725218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980cb94fdf1f448eccc0ec39c439c6f055c40a83', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cf1ce56b0adf8632ee42ffd5cb1b568752992ae', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bdb0aef8378544e181f1c4904c1d1ca2c4e9af8', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f940beeb2b6a8dfd58493c17a91cbde40080a761', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f596c6cc3e77cef83f7f1abae771aa9a293d6af4', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33b3cac01646e4a3565dca3421a3870eda495d6a', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54d0be096793d20139830029fcea9d71fe9a2b2', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b946fac977f1fabaa178112ee7a9a6bb5fbe0f8d', '172.105.247.100', 1676725219, '__ci_last_regenerate|i:1676725219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c86e5b077f74162b5cde3c9dd82e6f1be362b65', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4e15bab5282aca0615ed6aece0a57301b4720b', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9e05130a71f601104c3c584b03376c902cce1d', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0652c5082cd43409232213132adb2b66ca569f12', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10dfbc164b8d09b937b4e551aa344204139c2604', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdaec1335b46094b0eed2fac4755f4fcc95a79a7', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('995d857a300ce65a76b4619299ff7c064b09536a', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd172ab17634605e2be1beb2ad957f44857c1db', '172.105.247.100', 1676725220, '__ci_last_regenerate|i:1676725220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('347da0ade676c16062a0918936518c9043c59caf', '172.105.247.100', 1676725221, '__ci_last_regenerate|i:1676725221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e446e0ceddaa61412c41951a7c320cd714fa456', '172.105.247.100', 1676725221, '__ci_last_regenerate|i:1676725221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4a8d457e16179e5041e5a41676cafa4cbf38ff', '172.105.247.100', 1676725221, '__ci_last_regenerate|i:1676725221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c4f65daad500a316a5a65b35d7525ef5b613c6a', '172.105.247.100', 1676725221, '__ci_last_regenerate|i:1676725221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c39da5bba8d348da3171c1559f8abe012aa7527d', '172.105.247.100', 1676725221, '__ci_last_regenerate|i:1676725221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd492bd31ac3204a3d371b105c3ecdd6b8d5ebd', '172.105.247.100', 1676725222, '__ci_last_regenerate|i:1676725221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381da4888c2787f4a883dca97fb2983e4aeae2fe', '31.222.203.2', 1676725460, '__ci_last_regenerate|i:1676725460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c625973aa37a99bc735f96f0bd646bdfb7100c8', '31.222.203.2', 1676725460, '__ci_last_regenerate|i:1676725460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a00afb1fe6b3f866dc9c58bec90e9f4cb0715bb', '31.222.203.2', 1676725460, '__ci_last_regenerate|i:1676725460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dbd760693e155f8187c83f553141ab623822451', '31.222.203.2', 1676725460, '__ci_last_regenerate|i:1676725460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e3d1f56f97497136f0daca30065a58b8c77daa6', '31.222.203.2', 1676725460, '__ci_last_regenerate|i:1676725460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cda52944f00e45eefc83936b2d374a1763db964', '31.222.203.2', 1676725460, '__ci_last_regenerate|i:1676725460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50997a3d8d4a93ce33eec41f213408166b58824b', '45.120.39.89', 1676728422, '__ci_last_regenerate|i:1676728422;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676725532;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9a839bf6b214bf19ac08cae5a184ba0bdd1d96', '45.120.39.89', 1676729397, '__ci_last_regenerate|i:1676729397;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676729388;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a6422e98682ebea6d4e3e4918fbe18127ef0857', '31.222.203.2', 1676728989, '__ci_last_regenerate|i:1676728989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c565b147b6015b7c4bcf8d9d8d2fbd84b060af6a', '31.222.203.2', 1676728989, '__ci_last_regenerate|i:1676728989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3052bf412d73409f93d299d6e5062c3f5b8c311', '31.222.203.2', 1676728989, '__ci_last_regenerate|i:1676728989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa314114a05449e4f82733f607f9617be4f5527', '31.222.203.2', 1676728989, '__ci_last_regenerate|i:1676728989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b2d9d65e269ffebf67710ed0152fc38edb1efb', '31.222.203.2', 1676728989, '__ci_last_regenerate|i:1676728989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de252361f77d37e805ac8307428a9324fe1973b2', '31.222.203.2', 1676728989, '__ci_last_regenerate|i:1676728989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d9f6adfdaaaedcc39f166d1d462c362ff53958', '45.120.39.89', 1676731373, '__ci_last_regenerate|i:1676731373;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676729397;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3af72eeda718f734b8becc5217aef7fc7cef959', '31.222.203.2', 1676730901, '__ci_last_regenerate|i:1676730901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1575c2748b76d74bedb7c073e6bc85bb4a2b44aa', '31.222.203.2', 1676730901, '__ci_last_regenerate|i:1676730901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4052511ce9a07eaf593de4dc1ca7059a468ca1', '31.222.203.2', 1676730901, '__ci_last_regenerate|i:1676730901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830540a42320a68a280a44e26538d1fa911f27e7', '31.222.203.2', 1676730902, '__ci_last_regenerate|i:1676730902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28e0f83422090cefae4d70812e7b8c0ae2e8d4e8', '31.222.203.2', 1676730902, '__ci_last_regenerate|i:1676730902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0912d1d909a84099f2f23c7bb8b290f87489fcd0', '31.222.203.2', 1676730902, '__ci_last_regenerate|i:1676730902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51cbdf3aa640a4d96cddb70ac6453e68c04368f', '45.120.39.89', 1676731982, '__ci_last_regenerate|i:1676731982;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676731974;register_id|s:3:\"345\";cash_in_hand|s:8:\"470.0000\";register_open_time|s:19:\"2023-02-17 21:21:02\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3338e96e6469b5ddd6d895604b590ba159725c9', '172.105.247.100', 1676731818, '__ci_last_regenerate|i:1676731818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a77774279aa93bd53e125e2d307eb8036858df0a', '172.105.247.100', 1676731818, '__ci_last_regenerate|i:1676731818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24a087b5456b997406b08b908fdce0fa29afdf2', '172.105.247.100', 1676731818, '__ci_last_regenerate|i:1676731818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac82b1f88120a6c1b7ab5e59b2de78382e61ed2', '172.105.247.100', 1676731818, '__ci_last_regenerate|i:1676731818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a477849fd76625a7ee1bffeab32334e532db55c8', '172.105.247.100', 1676731818, '__ci_last_regenerate|i:1676731818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d470c0b0adc3fcb311709fc24d368cb39e0e7a5b', '172.105.247.100', 1676731818, '__ci_last_regenerate|i:1676731818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89900d9d5af1790463623486e3672ffe35b6f183', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15072b11586448588add9090d3720606a5eaceb3', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69cf1654d674727f50b6e4d044d3cd930dea96bd', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f2015b7b1bd92a61aff920ee4ceb22f4154172', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a5b7dca1b711889bfeb396f62ee5a73aa55d9b', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de37e6e03fda66b15aee2dc9a9fa8cbccb1b3744', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6667cdcee1007e4c4a151aa57ca5340df969c954', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e22decab66faffea1984e875d32f8c0d1334a8d', '172.105.247.100', 1676731819, '__ci_last_regenerate|i:1676731819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f422b9caaea0abada3c6aab06444cbbedbf94250', '172.105.247.100', 1676731820, '__ci_last_regenerate|i:1676731820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adeb517cb6c8d86ba5d51354a2846a6c8fc2b7d0', '172.105.247.100', 1676731820, '__ci_last_regenerate|i:1676731820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a531e300a7cb613bd5af0a2c196a15862971168a', '172.105.247.100', 1676731820, '__ci_last_regenerate|i:1676731820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5719adf3c3fa82b98393e9f826bb0de86c0bf96e', '172.105.247.100', 1676731820, '__ci_last_regenerate|i:1676731820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325497b5ff94dad30e9ef784681c6565808df23c', '172.105.247.100', 1676731820, '__ci_last_regenerate|i:1676731820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c392c5a42e68d6187546fa942f14bd099bde90c7', '172.105.247.100', 1676731820, '__ci_last_regenerate|i:1676731820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b401815e3f378f870d2167a9e9703ef80a3abe6', '172.105.247.100', 1676731821, '__ci_last_regenerate|i:1676731821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('094d95987c243bf112ba23e8d40b38d0adcc8877', '172.105.247.100', 1676731821, '__ci_last_regenerate|i:1676731821;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da9ee5fdd2d7d304ece6ddec4afc0df7e9af44f', '172.105.247.100', 1676731821, '__ci_last_regenerate|i:1676731821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52539bea162a3176d7c6928b644731384b491fa9', '172.105.247.100', 1676731821, '__ci_last_regenerate|i:1676731821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10dff096b53132f275fd7de91faaeca9e15ad76f', '45.120.39.89', 1676732008, '__ci_last_regenerate|i:1676731982;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676631082\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676732008;register_id|s:3:\"346\";cash_in_hand|s:9:\"2760.0000\";register_open_time|s:19:\"2023-02-18 20:53:23\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2597b46fb3bd409d8154d764b1dfd7ec80d6372d', '31.222.203.2', 1676736193, '__ci_last_regenerate|i:1676736193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f0022a17a0f377606368e0620db50576d9baf0', '31.222.203.2', 1676736193, '__ci_last_regenerate|i:1676736193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f88296e2df20f262f39ff12f8fde7268f59eb7', '31.222.203.2', 1676736193, '__ci_last_regenerate|i:1676736193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1cd1c5e81ec407193325c10850a37dea7017ba', '31.222.203.2', 1676736194, '__ci_last_regenerate|i:1676736194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d8164ed40bea6732548d519ec97bcf9a749078', '31.222.203.2', 1676736194, '__ci_last_regenerate|i:1676736194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10271b7166e02e8591d0e28627088ec0fa996557', '31.222.203.2', 1676736194, '__ci_last_regenerate|i:1676736194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ff86d95aa604d3c59ca06205748c511d209a1f', '31.222.203.2', 1676738063, '__ci_last_regenerate|i:1676738063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb7ac6a7a4a2cb1170b4bd65847a464d50329d1b', '31.222.203.2', 1676738063, '__ci_last_regenerate|i:1676738063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f6db4a232152430412b388416fe6cd9bd7f455', '31.222.203.2', 1676738063, '__ci_last_regenerate|i:1676738063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12099242ee12398bdac1fdc55b3ee0d379b58e3', '31.222.203.2', 1676738063, '__ci_last_regenerate|i:1676738063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c533f84f622845634ac441a1e70bb8a8a607a4', '31.222.203.2', 1676738063, '__ci_last_regenerate|i:1676738063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd3bdce9dd5a378720d82bf31e9d6347e95fde1', '31.222.203.2', 1676738063, '__ci_last_regenerate|i:1676738063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d91acf092cb36729bec230c78f5a94a94223ff', '172.105.247.100', 1676738415, '__ci_last_regenerate|i:1676738415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7158417632068132ef8cb6ac1305bfa8662136d6', '172.105.247.100', 1676738415, '__ci_last_regenerate|i:1676738415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7611654443d67b7dd62fe631a4c668aa3d99fb58', '172.105.247.100', 1676738415, '__ci_last_regenerate|i:1676738415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31ce576a12a6f9a9a3e13e12ed247ab6e950309', '172.105.247.100', 1676738415, '__ci_last_regenerate|i:1676738415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44486247019384cb4a1e478e83bd1b734293461d', '172.105.247.100', 1676738415, '__ci_last_regenerate|i:1676738415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7869b34d52153dc1c40e7488a641576b197d38', '172.105.247.100', 1676738415, '__ci_last_regenerate|i:1676738415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dfdf9eb5c0d4745e32401be0337726cd65f41e8', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717fa4c06457e3ec86179095ec506496f79c7087', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517d91debf073fcbe823456a7711f99a18e7a1a4', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd8820555eb2b1d2b6d92f1901def6d6fd9370e5', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7a68198488050a5a25f9e59e261662421cd2f1c', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a770826a00f8ff09b192f4e8639ff937b44214d9', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d77a77e5c337d77ea05e571af9b675355c67be', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36a5dbc7f1d6c04229667354ac434a2b6943fe3f', '172.105.247.100', 1676738416, '__ci_last_regenerate|i:1676738416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22c66be55339aea3b3bb4599d9940a11726896a', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919356677cfbfc79d5960fe95fc8d61f01402b06', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cafb7010c225801e72b92d09be1497fbde023ed1', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bfde7c2bc3ea8604ae4d4ff8b9799fb3b84fbe9', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c14cdd3c2a9454afd01827bb5e240b48560f8c', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b64b9ab99b0037a6d58722194249d9ba4db0040', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49db56a6f3b1558dab6f103e9b8bae3aeadae92', '172.105.247.100', 1676738417, '__ci_last_regenerate|i:1676738417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff4c7e72b6626a1db0db170477e16c502b6ef13', '172.105.247.100', 1676738418, '__ci_last_regenerate|i:1676738418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7214728380a2097d85f8a5986150de3b6c29a908', '172.105.247.100', 1676738418, '__ci_last_regenerate|i:1676738418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73adc2c4afe253567f1dd1bd724d44cf467f6269', '172.105.247.100', 1676738418, '__ci_last_regenerate|i:1676738418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a1259300f50987e568b9b074ce8ec10944dab03', '31.222.203.2', 1676741603, '__ci_last_regenerate|i:1676741603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c938ed983f0c98dfd9bd2289bef5a2968b2e5c15', '31.222.203.2', 1676741603, '__ci_last_regenerate|i:1676741603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78eb051028caf83a6ee2a12e7b22a477b2c234a8', '31.222.203.2', 1676741603, '__ci_last_regenerate|i:1676741603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8c144f95ff58e5248adf593709994323fc0dd7e', '31.222.203.2', 1676741603, '__ci_last_regenerate|i:1676741603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d538264df534cb04a62514de08a9860ffa1b6b', '31.222.203.2', 1676741603, '__ci_last_regenerate|i:1676741603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09b701e809b463250d68be5964fce64f8324426', '31.222.203.2', 1676741603, '__ci_last_regenerate|i:1676741603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86fdfe97daa1c451a793e87fa7107d38cf36157f', '31.222.203.2', 1676743480, '__ci_last_regenerate|i:1676743480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2b8d8ab9ef18e0c5050c0dcceb87c4e79b35dc', '31.222.203.2', 1676743480, '__ci_last_regenerate|i:1676743480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c3c2d028ecb63f8693ff7f702bb55b4d4673cd', '31.222.203.2', 1676743480, '__ci_last_regenerate|i:1676743480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f3beee3f0fa2758b7c61d9e79d8fdcef060635', '31.222.203.2', 1676743480, '__ci_last_regenerate|i:1676743480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae958f9aebc47a2538010666894768f364c65f91', '31.222.203.2', 1676743480, '__ci_last_regenerate|i:1676743480;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc2bb47110272676a381972b56d12d2a22b103ae', '31.222.203.2', 1676743480, '__ci_last_regenerate|i:1676743480;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9c297c36d9505a86e73ec6be768e9724e01a2e', '116.204.230.26', 1676744169, '__ci_last_regenerate|i:1676744162;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676720056\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc7fd75266d20e8355cff23cb44255e592563ca', '172.105.247.100', 1676744416, '__ci_last_regenerate|i:1676744416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c8a1985f60f07934f8a258aa8fc09948019ed1', '172.105.247.100', 1676744416, '__ci_last_regenerate|i:1676744416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('844206ca413168fb991c4b55bc877d31cb13a667', '172.105.247.100', 1676744416, '__ci_last_regenerate|i:1676744416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47bc6f27569bd0b5a0f2fd5ccad0125576efd26a', '172.105.247.100', 1676744416, '__ci_last_regenerate|i:1676744416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ec87bf7f28385c90567621728080af2df94a53', '172.105.247.100', 1676744416, '__ci_last_regenerate|i:1676744416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c65841fd06ebaf40d5088abdd268d6e43b839f1', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de929bddb33fdef365cca641074f7599033ee07', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9b1a5995e9e2e17d2712b33089d33281bc3833', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f210d308720aca430ace497c940b3b6a454f97e3', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd3e86cf7c5f52393dff57b4003ea1c6ee5b606', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd7fc024508dc0bcf3a475fc8df7d4415affbe8e', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac848ab29819722e1dd9cc63b3839e0f0e984c4b', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25cc55e1e8ca517b62d80eab604846bea07db85', '172.105.247.100', 1676744417, '__ci_last_regenerate|i:1676744417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7c18a7f8b9922da0caa98c54b3834fb9c2938b5', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89741f9aee43ca9609c221e31ff6af0b2aeabc99', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415d392f1c0029c670545d4709fae086330feab2', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('746eabcfb20bb7dd7aee13a4de4f08ced77b4ff2', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108297b3352913788d99430b691e684456fde4bd', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce30690e84e1bc37a8377c589ef0949c8bc487dc', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd2eea71829859eb22bfc7c3ac841db22bb22d6', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c23d3c746c857fd5c64c9e5018fc740edaa2f576', '172.105.247.100', 1676744418, '__ci_last_regenerate|i:1676744418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c200360330be04dede0fcbfc829e981dc00cf102', '172.105.247.100', 1676744419, '__ci_last_regenerate|i:1676744419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aae9e7cac1d4c7da320e2abaa9c7e429d89a810', '172.105.247.100', 1676744419, '__ci_last_regenerate|i:1676744419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11146fa8e8c028c15a15741790798e8d7d0827f4', '172.105.247.100', 1676744419, '__ci_last_regenerate|i:1676744419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e355c80f745e73b51abb4af6941a689e7c309a2', '172.105.247.100', 1676750417, '__ci_last_regenerate|i:1676750417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d05d359dadd41634125b69081706e8f86e1cc9', '172.105.247.100', 1676750417, '__ci_last_regenerate|i:1676750417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02721926c1ca8359b386369eab3eb51b0ce37ff1', '172.105.247.100', 1676750418, '__ci_last_regenerate|i:1676750418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97cbaa37ef9755a948fa5b024a622d0d020a8a4f', '172.105.247.100', 1676750418, '__ci_last_regenerate|i:1676750418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856f7f5da834cc0e744c2c693fe7386104f0cbe8', '172.105.247.100', 1676750418, '__ci_last_regenerate|i:1676750418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8e11292ae32b79d702b2556f3ebf7be486cd92', '172.105.247.100', 1676750418, '__ci_last_regenerate|i:1676750418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0782d9b4062193d38ec2924b2bf3a55fd363083d', '172.105.247.100', 1676750418, '__ci_last_regenerate|i:1676750418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f9cb4ea132bf79072ec1e28c6371aaefaec8970', '172.105.247.100', 1676750418, '__ci_last_regenerate|i:1676750418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84383b4954487dce561982f9ca5c129a5fd86411', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d919c4d7b8548b4a1489dacd502f7cea1f3bac', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ebdd993fd4440f31907f32e934ffcbae8a032ce', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc3320236accbc2f8497fcd02d3d80c4ecc7208', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8edc16145731c1a08c9d06ed1ea01e2faaaced', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a262edef4e8178210415108044da0de0bf3f20', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85c2cbeccf15be1e40f0cc799cbbd32b252e5d4b', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f66e1a47fc2ccca3f9ecbdcc0e0f8d8e80c8d9', '172.105.247.100', 1676750419, '__ci_last_regenerate|i:1676750419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a14923a6380cc07dcc85ee0e09e890442dfa222b', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c179c73405b0bb7da14b6454d9279d3fe6fb3b', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0c2e78732314e2f9a8eb42b2aa21c18da7c57a4', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04470e870c3328fd053b0601d52cad0e02c40242', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d3343fdc5770a1bf33df2804835274aa3c6a14', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9e91d4e5b16a78486153a774db3f1e944dece3', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b978e75dcae2860808060b7169ccdf1a43734e0b', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471d8ac86349becf855c00097fb1ce6f99e68b2b', '172.105.247.100', 1676750420, '__ci_last_regenerate|i:1676750420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f89a4bbbac1fb694f01510e39d491f1e33f61d57', '31.222.203.2', 1676750586, '__ci_last_regenerate|i:1676750586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce065a0736eff0c4da1afc432635814fb1641195', '31.222.203.2', 1676750586, '__ci_last_regenerate|i:1676750586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('573905db37a62ef757965a87f69abc732fefba39', '31.222.203.2', 1676750586, '__ci_last_regenerate|i:1676750586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c3b9123918a89f20407a9fb5c02a7c525706a19', '31.222.203.2', 1676750586, '__ci_last_regenerate|i:1676750586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659581aa474d27482b605785b82a811b1c9a82fa', '31.222.203.2', 1676750586, '__ci_last_regenerate|i:1676750586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53efbce9714dd7b14074733621909b649abfadf0', '31.222.203.2', 1676750586, '__ci_last_regenerate|i:1676750586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7426538ea1fe4334647f90974473b953d8e63f19', '31.222.203.2', 1676752501, '__ci_last_regenerate|i:1676752501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f123b07ba579e3da94325270a91d991fe794b15', '31.222.203.2', 1676752501, '__ci_last_regenerate|i:1676752501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aaf9eb606ccd8d8e786851fff87a894a5bfab34', '31.222.203.2', 1676752501, '__ci_last_regenerate|i:1676752501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07c339112134a36ce2068eda00822e0d99270ec', '31.222.203.2', 1676752501, '__ci_last_regenerate|i:1676752501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5ad7172e0226921fc88df5222b185eabf1cdaf', '31.222.203.2', 1676752501, '__ci_last_regenerate|i:1676752501;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68703f8d56efa13970eeffcc39a8ed84024a5654', '31.222.203.2', 1676752502, '__ci_last_regenerate|i:1676752501;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d3c84876fa3fb80e7ac03b8827aa1ed87be4f35', '172.105.247.100', 1676755816, '__ci_last_regenerate|i:1676755816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423ad5a74f084bc01626c44c0d032fdfc884f0eb', '172.105.247.100', 1676755816, '__ci_last_regenerate|i:1676755816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff675dd1d120be8c84366f3238ed3cda2d52c704', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19391b84b8252a45b899eeb77693fa7462f53020', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d0bede5cf4b85389846c17ce9e221fca202789', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efe362433eeb545367f674f9cacf46877f7e8c91', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('304597923a294dd1749e5638f9f0b3d6ca735311', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b3bc424b5de7ecdd7b8cd7714a4906b55b295f', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a685131d78f485175e2e6733e353cf8edb31a065', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90bde78c8bc9d87f7fb2bb7ed41a606cd43c248a', '172.105.247.100', 1676755817, '__ci_last_regenerate|i:1676755817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b0ddae43f8aa649537147bc843277458845cc03', '172.105.247.100', 1676755818, '__ci_last_regenerate|i:1676755818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91c735fe9152e0226342188d917bcb159f2c5567', '172.105.247.100', 1676755818, '__ci_last_regenerate|i:1676755818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc8249c028bb44d76c3f071008463156ec57c6e1', '172.105.247.100', 1676755818, '__ci_last_regenerate|i:1676755818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2398a95d64f8c257c9f69e21bd788f01b7edd85', '172.105.247.100', 1676755818, '__ci_last_regenerate|i:1676755818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ecd1b04d3e050c221ef906682d44ced9ae1863', '172.105.247.100', 1676755818, '__ci_last_regenerate|i:1676755818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b13d8f2aa0f2e223aa22bf9b56a9f83f091db4', '172.105.247.100', 1676755818, '__ci_last_regenerate|i:1676755818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e97a5a023e37dfb80ba91001fc34ebc55d4df22', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6e6e874229de05d0a3587f9d35f795abdbb73f', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aec85b8d46452c60af7d2f7a4c3ece9762e1d7d', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b81c58487ff8a9a2e1dd0cb3e0f09bebeaed122', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56bd03925b565ae0e8ae4872df8e44c184fd167b', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a459cf529fedde756215235757704a9dbbe4656', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f84a4a36e0bdbdc5c59913003585574995595b8', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d352368b51b22f1900413d1a3a153298ddf84d19', '172.105.247.100', 1676755819, '__ci_last_regenerate|i:1676755819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b2be31af55234be55d4bb14fe69daa525f382fa', '31.222.203.2', 1676757791, '__ci_last_regenerate|i:1676757791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1eacec8b63adebee784c620f2dbc277419828a5', '31.222.203.2', 1676757791, '__ci_last_regenerate|i:1676757791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40105ab0df065c241d91ecdaa398677ec287e169', '31.222.203.2', 1676757791, '__ci_last_regenerate|i:1676757791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0da39cfd584d742b36f934ff7c9fe822bbf71b', '31.222.203.2', 1676757791, '__ci_last_regenerate|i:1676757791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8903e8333678d850f8081e6e2c28973ee93f7d', '31.222.203.2', 1676757791, '__ci_last_regenerate|i:1676757791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89a79d33b5c2114bd87cdf3a919ce4657ca55b5a', '31.222.203.2', 1676757791, '__ci_last_regenerate|i:1676757791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab80459ba75ac184cf25771efaa37d32f9dac355', '31.222.203.2', 1676759702, '__ci_last_regenerate|i:1676759702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9814510a6a63b353c260c07943ffbd07f418bffb', '31.222.203.2', 1676759702, '__ci_last_regenerate|i:1676759702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc48e6f25a79326c09182297456af39c8af489db', '31.222.203.2', 1676759702, '__ci_last_regenerate|i:1676759702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3eca1ebe42a7cbf34c1b162c0091872b9a8fa88', '31.222.203.2', 1676759702, '__ci_last_regenerate|i:1676759702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfee05b9d0e5260fac2a0ddc9d10b07632e57477', '31.222.203.2', 1676759702, '__ci_last_regenerate|i:1676759702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('605d2f7f954c0b6a981dc314f4ab07ac39235d4e', '31.222.203.2', 1676759702, '__ci_last_regenerate|i:1676759702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d07e96f2592abeeb60e33c27aa8fa68f5eb66b', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1096542015013fbae1140194dc11a1fd47e8c9b', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee09cf497ff5e6a2b2fc6da01ea40fd0f5d3bab4', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7758e62f56cbe20df606a678aaca136f31b6a8aa', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20482805159c57b904f588f410297b23afb7ff00', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091c85330b624d6283e3880ce731829c4e83ba3b', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47e5bf59091c0970a1f0c42ccb0396b4ec350587', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74bd43e4931ba4979b9734eeccbe1edb144c3afa', '172.105.247.100', 1676761816, '__ci_last_regenerate|i:1676761816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('325eac9272663459aa11543e097451e72de02a38', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('759d645d7f4af3007bb5aa1c6fc9f5d583f8bfd6', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c20d9968b11b37d67c1f3ee6901c8e062ecfaa2', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('800829f528f5608f317af7cf7c87e602161107e3', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('630c5c9c5a6d27066e406c6399cc806adcd755b7', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738b66eab3897227f908cd49f3f6e57b836b047f', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('525b52c611d8b32b79f40d07370cbcdb3cfb7a7b', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bddd9a9076288e48517ada25e1089fce75f2641', '172.105.247.100', 1676761817, '__ci_last_regenerate|i:1676761817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d6735e9de68449fa757258665245b565a0052d4', '172.105.247.100', 1676761818, '__ci_last_regenerate|i:1676761818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dd7c4960a619fc02aa0bf10d474e66b116d091', '172.105.247.100', 1676761818, '__ci_last_regenerate|i:1676761818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd3470b61abcc3eb0cc656997d6357789a8ca92', '172.105.247.100', 1676761818, '__ci_last_regenerate|i:1676761818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0ad8eeb6d824473d87c5992d4b3da581f88e54', '172.105.247.100', 1676761818, '__ci_last_regenerate|i:1676761818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7a4450ea6b47b9b98bad9b8ff3944d4bbb874a', '172.105.247.100', 1676761818, '__ci_last_regenerate|i:1676761818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b0810d3ae852a570ebac7e715b73b51de68ade', '172.105.247.100', 1676761818, '__ci_last_regenerate|i:1676761818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27232776950db35db9cf1487e4223f1c765cabba', '172.105.247.100', 1676761819, '__ci_last_regenerate|i:1676761818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2748516443a4832e4fb06ef5a8baa82de70464b2', '172.105.247.100', 1676761819, '__ci_last_regenerate|i:1676761818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb42bafc6b6af7f962397a08c21211c36903e68c', '205.210.31.158', 1676761870, '__ci_last_regenerate|i:1676761870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d0285a95c2bff38d6c18e03a041e55323c7bd5', '205.210.31.158', 1676761870, '__ci_last_regenerate|i:1676761870;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bff41c7980bbb259e4ac7904409c08cd0d93af2', '205.210.31.158', 1676761871, '__ci_last_regenerate|i:1676761871;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3ed1887656ba98e37455e2d3cc6881c33ce0fe', '172.105.247.100', 1676766016, '__ci_last_regenerate|i:1676766016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16b690c09ec3b6b95e3459baacc158107f02d607', '172.105.247.100', 1676766016, '__ci_last_regenerate|i:1676766016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5c2f01d8d34c35babc0152c6a668bca159d5b0', '172.105.247.100', 1676766016, '__ci_last_regenerate|i:1676766016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c11ef06bc985171718769e4cd65352f4cb444104', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa93a7d2521792327169d203b8e38abec47ea0d3', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc5fa54c0ff3fb00976e2e122480e5d4d8ca3a2', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b6d8a20a219ec96609959b76bfbc94be88aeac3', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ad2a74e45f28af5ff47b4a9c1accffcf4a2865', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b1fd01bfeaed6677ac1ac326030eb0b301229b', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0abe882b95dbc6502cd9f29dff0e601b7dd3ae', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23281db2ab69b0098c281e1687cf27fc8d82326c', '172.105.247.100', 1676766017, '__ci_last_regenerate|i:1676766017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c73dadf5fcf92f288dffb6cb283db1bd9fbd6c7a', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a75288010bc2f6015144b12eb2e7bbd730e8c6f', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f70eab14eb82a161d265cc61629f2fea5dd6d2', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691280c454c74240b51096268efe7bff35da3986', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0414e8f9e8b239574c0b534e38d8c8dc90b32cf', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6bc52638945a885a3f1125da6ef8fb0b13c7985', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b78554f89b4df0aa88750a6d78075ec03127fc', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4258891eee482248f50bc05db48a64324abe4f9', '172.105.247.100', 1676766018, '__ci_last_regenerate|i:1676766018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9fa9eb4ca43f250b71930639dc394dc48cc42c', '172.105.247.100', 1676766019, '__ci_last_regenerate|i:1676766019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6c031b2161f5abc92a00ce0ad0eca2f30eab3c', '172.105.247.100', 1676766019, '__ci_last_regenerate|i:1676766019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6167c23070a76d912ade06528c3203b2a5803a', '172.105.247.100', 1676766019, '__ci_last_regenerate|i:1676766019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a3c6e2ade368f048e8d56d8711e0e08584c2d5', '172.105.247.100', 1676766019, '__ci_last_regenerate|i:1676766019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c84e62b035ca867b1009c0f41ca2a45beb2789e5', '172.105.247.100', 1676766019, '__ci_last_regenerate|i:1676766019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4d9c0f3cd57d54fe10f49b4f22e90046e015f59', '31.222.203.2', 1676766789, '__ci_last_regenerate|i:1676766789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7b7a357e89091d37dea09204498272823b408f', '31.222.203.2', 1676766789, '__ci_last_regenerate|i:1676766789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f632834aa48e24d73f36f740577a8c704948002', '31.222.203.2', 1676766789, '__ci_last_regenerate|i:1676766789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da81bb5e5ab6c3e4e8b0649de0949bc41a413c3', '31.222.203.2', 1676766789, '__ci_last_regenerate|i:1676766789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('290c5505e813f02dc005b4c8d13db4d5a06c535b', '31.222.203.2', 1676766789, '__ci_last_regenerate|i:1676766789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77be05fb50f8de90f19c0b465c84a1009b7cb0e4', '31.222.203.2', 1676766789, '__ci_last_regenerate|i:1676766789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b55cf52cbd4ce812b1d9328f0abde42437d46a1', '31.222.203.2', 1676768663, '__ci_last_regenerate|i:1676768663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b0ff41623e35e591fb1f9988a93b751527554a', '31.222.203.2', 1676768663, '__ci_last_regenerate|i:1676768663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f3f5507633af686ec9743e74f38b6344a3e2e8', '31.222.203.2', 1676768663, '__ci_last_regenerate|i:1676768663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d2eb0791fe52a97b4ee9a285662a675304371b', '31.222.203.2', 1676768663, '__ci_last_regenerate|i:1676768663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776a605cd71c46031cc2a7ec9683a4a61a9759f0', '31.222.203.2', 1676768663, '__ci_last_regenerate|i:1676768663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4054f8cc88a1f1f4af12709c063241248b8815', '31.222.203.2', 1676768663, '__ci_last_regenerate|i:1676768663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5430343f2b83a2df9a74074c31399f822c1815dd', '172.105.247.100', 1676771418, '__ci_last_regenerate|i:1676771418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1fca1f12a014340cf2ec255dc876090bbc2a494', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a95fa8bd5d5c69a4262dfc6214e23bcf51649a', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76ebfc3d5012b52cd415705ec8cbc2d63a3e914', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ef1802dc684dc6133a293d2bc5cf1084cda407', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06d638a4a716a414a49c2564393d4d43e111a1f', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7c61aa5100df1a7093d9f972d8dd7dac2a3fd5', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b9cb209a75230b86a12c50cbce265a44e9c1b31', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91584a77df3bac76caf9986b5bbf994a66bb3ba3', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fef605f8006d57e340122c2cf6f17e88dec82596', '172.105.247.100', 1676771419, '__ci_last_regenerate|i:1676771419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a5320bedf0c72e776b55c3dafb5dc5a1eb54233', '172.105.247.100', 1676771420, '__ci_last_regenerate|i:1676771420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429197069bdf31287772b8a5fef36fa309007405', '172.105.247.100', 1676771420, '__ci_last_regenerate|i:1676771420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17e7bb5e2e6f81dfbacff55b135b5b20989668c2', '172.105.247.100', 1676771420, '__ci_last_regenerate|i:1676771420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6e3c6e92d2107a48a842e91397c355cdcba6441', '172.105.247.100', 1676771420, '__ci_last_regenerate|i:1676771420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d32c52cc784aa9cd70487fba4110eda0328038', '172.105.247.100', 1676771420, '__ci_last_regenerate|i:1676771420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9542f9ff765c978489762fd1d1ebf6e76e572348', '172.105.247.100', 1676771420, '__ci_last_regenerate|i:1676771420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e58bf6263b7dc2e30e67997f1cd2b11926910f9', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fab171e5052890ff328423f0dd17962a04b87f5', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2300f4930be7ba6dbff46b0db27415f42c9cbbd2', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b492de3793355b507ad189320f619e1aa015d769', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88efa6ccc8e96cc8042bc92a06d916095dcca3ad', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55ee3d8ece142546981d3d10d57cf498fef0158', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10eb07ca1aa5c801de0bfc37cd8b0c4075634763', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2d688952477605650548bb4679c41d073b7b55', '172.105.247.100', 1676771421, '__ci_last_regenerate|i:1676771421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a213e568eb0f9feb4c991b46bb110099436733', '31.222.203.2', 1676775796, '__ci_last_regenerate|i:1676775796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51968ce4c2838ab8aa23d489e7451454f35993b', '31.222.203.2', 1676775796, '__ci_last_regenerate|i:1676775796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d781778f0b33873ffdd246b91091e90200ad0c5e', '31.222.203.2', 1676775796, '__ci_last_regenerate|i:1676775796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912d9be87384c1c2410b941a069751a624b35fa4', '31.222.203.2', 1676775796, '__ci_last_regenerate|i:1676775796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2987f78ab4062fdcc39a864094c85d26dbd1d231', '31.222.203.2', 1676775796, '__ci_last_regenerate|i:1676775796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8305535817188c2ad31eda4e5722208a4b241941', '31.222.203.2', 1676775796, '__ci_last_regenerate|i:1676775796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0731d1f6ece697962ab8f9aecd3dc2afae5bda68', '172.105.247.100', 1676776815, '__ci_last_regenerate|i:1676776815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d13d00cb3cf0b73d51f01d5efa58b44b7389ccc', '172.105.247.100', 1676776815, '__ci_last_regenerate|i:1676776815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ccd33c00b85bd4c159b77fb4606f77f8c8a9cce', '172.105.247.100', 1676776815, '__ci_last_regenerate|i:1676776815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b31875e7f6e65a61f708e1e620eb15668459f78', '172.105.247.100', 1676776815, '__ci_last_regenerate|i:1676776815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe1d525d153ab4479211496362895f8400c01a20', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf40fbde8d70836c607dc7083173ac307b828f29', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0e3a00693cb72848c2795de7cf74debb11c3cb', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2ffeecf3a7dbcc3f67caea3f1f7ca3d92d0403', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23721fc65de67e1e6f1d78cc9bf95acb365df936', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28fdebba4d550897994396c68edac925c922a380', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe9ec94d930a064d04698b3d90adcddd86de9bd', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18f00571f07105e93e896c62537e295907509685', '172.105.247.100', 1676776816, '__ci_last_regenerate|i:1676776816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95bb24f687b21a13f3e3ae8c6c1412a233adb8e2', '172.105.247.100', 1676776817, '__ci_last_regenerate|i:1676776817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2b258dcc1e9c6a63b172d3d855cb024a31256d', '172.105.247.100', 1676776817, '__ci_last_regenerate|i:1676776817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff28daa0e5a71eb30ce7805315efaaf76fa2565', '172.105.247.100', 1676776817, '__ci_last_regenerate|i:1676776817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5893e41cf0260fd18a905596c6841ae0473c5c74', '172.105.247.100', 1676776817, '__ci_last_regenerate|i:1676776817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b6b92f61fc9702d2abb3c7c0336590caf9d74c', '172.105.247.100', 1676776817, '__ci_last_regenerate|i:1676776817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e97711d6b61cc2851f661294183d46bff18b17', '172.105.247.100', 1676776817, '__ci_last_regenerate|i:1676776817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af1cc11a0b12faa35a920b60dd5b149b79e69c6', '172.105.247.100', 1676776818, '__ci_last_regenerate|i:1676776817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6305dbe2c6214fcc3aea4abb801d61f89f15860', '172.105.247.100', 1676776818, '__ci_last_regenerate|i:1676776817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5ef0e90375d0161725b28484c3a040005112f2', '172.105.247.100', 1676776818, '__ci_last_regenerate|i:1676776818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30fec7421622ca7757c50b9c80c04c538261e6ff', '172.105.247.100', 1676776818, '__ci_last_regenerate|i:1676776818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf44ad91d9a05f0f9b645835c31abf883cbced9', '172.105.247.100', 1676776818, '__ci_last_regenerate|i:1676776818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79010f50eb78cec11d45a1b42a8c9a1c1f9683ce', '172.105.247.100', 1676776818, '__ci_last_regenerate|i:1676776818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c36e722941ff8969297b88f1b34daa05a56793cc', '31.222.203.2', 1676777663, '__ci_last_regenerate|i:1676777663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5b3cb91e0119f7d29d41858c113de4bb7dabc4', '31.222.203.2', 1676777663, '__ci_last_regenerate|i:1676777663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923dcd6b13f7ebd14f2d850ae80ea945a39932b3', '31.222.203.2', 1676777663, '__ci_last_regenerate|i:1676777663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657c7cd0240e3ce9250093cefe2ab3c92d1236e1', '31.222.203.2', 1676777663, '__ci_last_regenerate|i:1676777663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f67c751c07adb0d0f11c449b6f39ba683cab15a', '31.222.203.2', 1676777664, '__ci_last_regenerate|i:1676777664;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e2d7a63621fd7484564c8767d54482ae2608b97', '31.222.203.2', 1676777664, '__ci_last_regenerate|i:1676777664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e3a992853b4639cafb992bf850b10d2ffea469e', '172.105.247.100', 1676781618, '__ci_last_regenerate|i:1676781618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d3f3be58f6fd74dbf39466fb48e05f0b434b87', '172.105.247.100', 1676781618, '__ci_last_regenerate|i:1676781618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a9ed18820164c0bb6b5c2d3b5fc3436f51b221', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c4f2dc2dc151837662a7ac43df9bfa96a2a7552', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827a35e028171e471e9993d2e7a4b8a9284b5967', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf292025dea0d74b0737bde19b7de04c1e5af3f', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5edf9f5ee86fda3433273a3053a9e1248d3e7f', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20300e431561e08ceafc81da92d48616bf481f29', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9785c40a60efcfec821285a767704ce7bdbb93b', '172.105.247.100', 1676781619, '__ci_last_regenerate|i:1676781619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6abfc4f02fed64df5ed363e296661ed7f0df829', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cf486c9dbc08cbf6dd72852c3e666aa7466a3c', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8aa06de71f8e37513102895c840d98db7433d6', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7666f627749a3969e7381e6e0f43742e03608259', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61250ea45611feeef5631a0a52fb92f5a4167b3a', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6054731ab0ebd9aee4599b7f72038bd6ed25741e', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f929ba1600a4b6fd76e5541d5ae05a6955f162', '172.105.247.100', 1676781620, '__ci_last_regenerate|i:1676781620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4662f8c20eae875d74e7ca6ac4bcf63587a2ca29', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156931659013912bf5d176585525ddb1a3397793', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da87af6365f123c18ec4807e62fba508963173fd', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d4ef506fd7d0966538f747e978d5d8c16d712bc', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b94231d051ce9ec23884c063b9c933167db4fb00', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e8094f6bbfa1a3f9f5e9016ff87f211b387627', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a53d0ef89e930299ca31f8771de0788f0c2072a', '172.105.247.100', 1676781621, '__ci_last_regenerate|i:1676781621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a629d4f3482195ec252d07ac9521dd32e5c29c', '172.105.247.100', 1676781622, '__ci_last_regenerate|i:1676781621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38fb7f2ddbe474d5b6d7b510e57a92777c4ee841', '31.222.203.2', 1676782988, '__ci_last_regenerate|i:1676782988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f03704633c822baceccfb889e15d39e9686630c', '31.222.203.2', 1676782988, '__ci_last_regenerate|i:1676782988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52e3a4bcb9135666a920d84c9974154f7ec766ed', '31.222.203.2', 1676782988, '__ci_last_regenerate|i:1676782988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17fc73eda4f17bd507e228ecb0094a935fb1c75c', '31.222.203.2', 1676782988, '__ci_last_regenerate|i:1676782988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec4fca27a8a4baa54d76c3550559cf4d007741f7', '31.222.203.2', 1676782988, '__ci_last_regenerate|i:1676782988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551966cd3dc18ed935218e5788c2fc5a620160c8', '31.222.203.2', 1676782988, '__ci_last_regenerate|i:1676782988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e99e66cedd7e58f0168f3ddeebb41019c2c0bf49', '31.222.203.2', 1676784902, '__ci_last_regenerate|i:1676784902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6187ec9be9401104c56eb209503ddd2eeb49f7e', '31.222.203.2', 1676784902, '__ci_last_regenerate|i:1676784902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09de2b30fc0c7311a4502ac55a9df50fed47fe17', '31.222.203.2', 1676784902, '__ci_last_regenerate|i:1676784902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed01e2574b18b834f8c4c5a6b87ab7577a5ab09b', '31.222.203.2', 1676784902, '__ci_last_regenerate|i:1676784902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21a7bf67ad990e032481770704ed751130b9d54', '31.222.203.2', 1676784902, '__ci_last_regenerate|i:1676784902;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f8931b4fe96e3dd05c7fc121b24c23ce8c219f', '31.222.203.2', 1676784902, '__ci_last_regenerate|i:1676784902;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d24fcedcbc0f86de50578d881f99159f922dcd', '172.105.247.100', 1676787016, '__ci_last_regenerate|i:1676787016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ccd1e9fca327f88ccbbc9e3d2a7fb53533b39f7', '172.105.247.100', 1676787017, '__ci_last_regenerate|i:1676787017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60a3dc67bfd44c6aea0822a0cd607388b325398', '172.105.247.100', 1676787017, '__ci_last_regenerate|i:1676787017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a12d11770e1caefa028d7b2168a1b94e136c28', '172.105.247.100', 1676787017, '__ci_last_regenerate|i:1676787017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4ce43aff78cb82265b319f334f194ac0b96d21', '172.105.247.100', 1676787017, '__ci_last_regenerate|i:1676787017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0118ae441573966470d330c4461efa903952f79f', '172.105.247.100', 1676787017, '__ci_last_regenerate|i:1676787017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476f0c04e24b932572b3ab1f2ee92818cb66f309', '172.105.247.100', 1676787017, '__ci_last_regenerate|i:1676787017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865b5c6cfa8a5b201f9e5a205d5d9b6b7feaa582', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545db3424d1a9879527b7f482b7f245f45ee71d4', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6956bc023aa22008a48ce493bf213c8d3672fd67', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3fd9fcfcb239c771d575bb9747c4190b87ffc90', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48275107360ae70d234aee5f86a5516e1a948a9e', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa6cadaed16d8c6f2e522317fd487bd800d0610', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5997257d45bb84108c4b2b358a7c946c90ddea', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af268ad0d81c87991f7645eec7c30c691126233f', '172.105.247.100', 1676787018, '__ci_last_regenerate|i:1676787018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927b2d5fe86dd052db423c69211cef3ebba2a2d9', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3c65cdd534938a7c9a4d06bc593b32363f2da1', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c648bb768e863eb68586fa60e20b00f7b49b39', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea9f6922cadee8d3a1ea6169485bde8ef2b96ac2', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50fe89d065c931f20d1e55a8cf30ee67e1f9fbb4', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5add9c547cc2a485406cef2afdfc17fd9070c7e4', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf1a4f6f0907200b886952e58689bb2bcb9c38f', '172.105.247.100', 1676787019, '__ci_last_regenerate|i:1676787019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d507de05286506a2281b673d26df008cfefd62f3', '172.105.247.100', 1676787020, '__ci_last_regenerate|i:1676787019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6906efa966b0f0cd7aacba4625628146c331ea6', '172.105.247.100', 1676787020, '__ci_last_regenerate|i:1676787020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('401af30094e69323e2dce39d4d6c2a8f7c8e3286', '45.120.39.89', 1676787768, '__ci_last_regenerate|i:1676787644;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676693465\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676787740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf00cb3f0319dc8c9d42a73c34b4fd8322ab46a0', '172.105.247.100', 1676791816, '__ci_last_regenerate|i:1676791816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3cd87b5b7cb0f140019d052a16a6795ade94a04', '172.105.247.100', 1676791816, '__ci_last_regenerate|i:1676791816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ef89e86460f12c3e98d0d8f25cf8afcc445af2', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b4d0bff1a8f5ede166226b2f023548d553a26b', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717df0633e93af4f34418ea5c797ce02d8d69b3e', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4991ea81edd7489ddfc02cadc655e0dc41bfda87', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86272bcd5af7e430bf8193672516409b43fe2355', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0ac3f7440e0f7915d4d95a9db8efbaf3126a5e', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07cc9be7f7575b3ed5323f0ad3330b00026321ad', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a96ccb09a5dde203ece0ca6211507f3773bc32e', '172.105.247.100', 1676791817, '__ci_last_regenerate|i:1676791817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d9aedb0431aaae692daacad2420a011a09a40a3', '172.105.247.100', 1676791818, '__ci_last_regenerate|i:1676791818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26f88fdb0d86b45d2470566b419c6a058bbfb953', '172.105.247.100', 1676791818, '__ci_last_regenerate|i:1676791818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffae44cf82bf50f0a7db59fbb357bd52c24d077', '172.105.247.100', 1676791818, '__ci_last_regenerate|i:1676791818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a583687ad8ea188d065d929413e13fdbd6ad3f08', '172.105.247.100', 1676791818, '__ci_last_regenerate|i:1676791818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beec5cfa0c6508961ba842883b689dc926c5de5f', '172.105.247.100', 1676791818, '__ci_last_regenerate|i:1676791818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1696a0b5f690d8244d83f09cfc11793e9f25f34', '172.105.247.100', 1676791818, '__ci_last_regenerate|i:1676791818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9bd0f81b2003676b0308bb51721a7c3d155fceb', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265a2897d96a8efd7fcb5966e368061888f66237', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92d24c1c7d555a6697e6448d47dbd759d9c9e8a', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('987e1463de0200286e559b8f966d6c39af6410fb', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b56778c4bc0fdc6d52ce94eebe41945fe3e4528', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ade8b404901e9464625be7ce6204976e2977f4', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf4b665a40f077a513127dbffd8f92cdeb080fc', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f877c2335d1f7d96c3979b628e59dfd64ba2ad92', '172.105.247.100', 1676791819, '__ci_last_regenerate|i:1676791819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df9d781579b28a3a49e74f7337df7507fce228e', '31.222.203.2', 1676791988, '__ci_last_regenerate|i:1676791988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba7dc1d01b250cd31583c7b22de9be322ab135c', '31.222.203.2', 1676791988, '__ci_last_regenerate|i:1676791988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe12c1d56dbcdbbd87e5b12e656647719587ce7', '31.222.203.2', 1676791988, '__ci_last_regenerate|i:1676791988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbaec34cdf6513ee623b6204b6cb2f175739e2b4', '31.222.203.2', 1676791989, '__ci_last_regenerate|i:1676791989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913c960eb35280e98041b00049dcff49f11d1dd8', '31.222.203.2', 1676791989, '__ci_last_regenerate|i:1676791989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3047030434249b8d2a234f4ecab389e9271bd280', '31.222.203.2', 1676791989, '__ci_last_regenerate|i:1676791989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd204b00c0c8ab8bb35b9f219b682c00f3b409c3', '31.222.203.2', 1676793901, '__ci_last_regenerate|i:1676793901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d9aa722a9a4a2b087071a2059681adf9f10cf70', '31.222.203.2', 1676793901, '__ci_last_regenerate|i:1676793901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa938c1af3e3ddb9107c4ee04fe6c9c66fa85a6e', '31.222.203.2', 1676793901, '__ci_last_regenerate|i:1676793901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef137b661eeb11f27051dec85fbc9b5ae7a4cdd2', '31.222.203.2', 1676793901, '__ci_last_regenerate|i:1676793901;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89ec1b85cecfd4cd714f51285808a6ff0e7b8b6', '31.222.203.2', 1676793901, '__ci_last_regenerate|i:1676793901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ab42e184212a2436a590335cc72a19996bc755', '31.222.203.2', 1676793901, '__ci_last_regenerate|i:1676793901;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08703abd290ca180d82615a84aa517eb7e1f3708', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3e5a5ae738cc6032726c6e475f40faded1fbc7', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3de76762b964f31514ba0b8fb9b0f6cbedb995', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35470d73a9019168efbd918963f2abba28202f1e', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a8cf88136467e34dff03d33ccbf13d526d032d', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299b95d559352ef2c6c098c752e56fa223748902', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d23c72c3f15aad3e9595a2f726d8e0862831f1dc', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817156f21194d1b085bf7c059647f56df806a21a', '172.105.247.100', 1676796018, '__ci_last_regenerate|i:1676796018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6a2a8c2f30d759407e51bf7783f65dde52c397', '172.105.247.100', 1676796019, '__ci_last_regenerate|i:1676796019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a8db41184a17dc7bc862dc5fc513a18b48c313', '172.105.247.100', 1676796019, '__ci_last_regenerate|i:1676796019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675f6a55fe778dddb18010c1ad72d80086a3e63e', '172.105.247.100', 1676796019, '__ci_last_regenerate|i:1676796019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a7b60bf67fbfd83043388d25fd9e65447a0c29', '172.105.247.100', 1676796019, '__ci_last_regenerate|i:1676796019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c74eec4ebe4921e6e03c6e21b9bb37950118e9d', '172.105.247.100', 1676796019, '__ci_last_regenerate|i:1676796019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fab8d22123383ff65578aad04dda57a44058aabf', '172.105.247.100', 1676796019, '__ci_last_regenerate|i:1676796019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264956343914f20b47f56a25950d2c354df1508c', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22382f6d2ae4572488e572567c0c809a3d64cb07', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc3ac83e66d9de319843325c7027dfa56919a28', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e56269936b55c9de87371b94afe88b2a1da6216', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252d59c743ef43b89ede8ece91229541cc2cbc26', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b2147b62b83c9f14922d3d714363aa0f72e873', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a45d0c43a6b62081675a606e2d98bbb045696f9', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6069518f63ecef6b0a579b2d3e2738f4b837fb00', '172.105.247.100', 1676796020, '__ci_last_regenerate|i:1676796020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e352eba355b21811b3159aae37421406d6e8391a', '172.105.247.100', 1676796021, '__ci_last_regenerate|i:1676796021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26030d3faec6144778c34f1b31dda5bcf4c2c26d', '172.105.247.100', 1676796021, '__ci_last_regenerate|i:1676796021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87fe9b83bb2b83dcaf267246582176e38cd49a9c', '31.222.203.2', 1676797337, '__ci_last_regenerate|i:1676797337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e921cbc92169c0d71a73bfa39039b7787dfb7f72', '31.222.203.2', 1676797337, '__ci_last_regenerate|i:1676797337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4db875156da7a82dd837653a02e7bac5d1d65c1', '31.222.203.2', 1676797337, '__ci_last_regenerate|i:1676797337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('504889b7cb9cb0342f8bab39874c9a13a6d0b3bf', '31.222.203.2', 1676797337, '__ci_last_regenerate|i:1676797337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12233e21887070f6fdaa36539800fff83764d05', '31.222.203.2', 1676797337, '__ci_last_regenerate|i:1676797337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c60598769201a73a96e382b021e03c377c1327', '31.222.203.2', 1676797337, '__ci_last_regenerate|i:1676797337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28d5be1045b77ada61b0d67c00eef4d8148a1645', '205.210.31.43', 1676798741, '__ci_last_regenerate|i:1676798741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfd689549462e4112f5b2589095ec37db36083c', '205.210.31.43', 1676798741, '__ci_last_regenerate|i:1676798741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dde8ec91b21b08a5d82e4259bc6ef3478376caa6', '205.210.31.43', 1676798741, '__ci_last_regenerate|i:1676798741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ede4374911800a705f2101c2c8ef7d6ef96f586', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3d16bbe3627ced2203a99a7f6fea67e041091e', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6ed886c77e12ef20794e55792f8e8cf9f77c38', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d65bd0b6e9b58f5cdbcd34d93ce5dfc9a1cc389', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f92a792f93a9e76eb19963890321e1440d3f810', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ff8ff7c1f0cd4bcd630417049148bf7de7812d', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29fe482db207ded800b89bb856a9491a30cb926', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d8127f16ccd99ce9b6cbf5bbf73e1969ba7475', '172.105.247.100', 1676800816, '__ci_last_regenerate|i:1676800816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5901a5c2b572bc08fa46cabf580b81661517a9', '172.105.247.100', 1676800817, '__ci_last_regenerate|i:1676800817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1158a390dbbb914a9ccbd0d7a21ebe5a933b085', '172.105.247.100', 1676800817, '__ci_last_regenerate|i:1676800817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47d5138122122e1882ae8fb967e6d06ed45cfae2', '172.105.247.100', 1676800817, '__ci_last_regenerate|i:1676800817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fa1375c91631474ccb5fb9ce50abce4ffe079b6', '172.105.247.100', 1676800817, '__ci_last_regenerate|i:1676800817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f87f0f8a9708906c3aa022dccc09efbe7cf3084', '172.105.247.100', 1676800817, '__ci_last_regenerate|i:1676800817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb135e7f699400eadda29fc59be8cf935a5b8db', '172.105.247.100', 1676800817, '__ci_last_regenerate|i:1676800817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c6d69fff6bd270397cbb2f1a395a8b252c3a2f', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df06d7477fd9cbe5abdad484ee743d0c64adb7a9', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346cdaf2623c06c9ef559d4d6d7e7084d63f3acd', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e050b6cd579355e6fd8099d557688340c2daf6', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7ffd63273dd9cb184ae3a2ecbe1a725918653d', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ec39741a07b5f20aa0d23d7a56fcd12b6ab689', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46276b0022471aaee40363f1e4f29d499544852f', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483746d3ec21712dbfa237bba8c4cf86adc775d8', '172.105.247.100', 1676800818, '__ci_last_regenerate|i:1676800818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146461d36535658bd930d3e4b8d3588c906b21e4', '172.105.247.100', 1676800819, '__ci_last_regenerate|i:1676800819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a864d0509b481ea4717cd6c7c2d0b53edf8a9e62', '172.105.247.100', 1676800819, '__ci_last_regenerate|i:1676800819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da40b1bd6c3fbaf31d00585ef1bdcda6b309088e', '31.222.203.2', 1676800970, '__ci_last_regenerate|i:1676800970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53822d89a6145035a3a1e5a73de53df32d1e536e', '31.222.203.2', 1676800970, '__ci_last_regenerate|i:1676800970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b353b6b634782a733ef76defab785239b35a7ea5', '31.222.203.2', 1676800970, '__ci_last_regenerate|i:1676800970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acfee50bb1e283b3f7d536a54724db4a2dff1da', '31.222.203.2', 1676800970, '__ci_last_regenerate|i:1676800970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('079a4ad5e15ee9640369a5bab31400a789cd90c3', '31.222.203.2', 1676800970, '__ci_last_regenerate|i:1676800970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0a30ef620236d13bd5e62492144435bedd5e10', '31.222.203.2', 1676800970, '__ci_last_regenerate|i:1676800970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6275d60d74a26fc91fe37288df7290f83ea264', '37.111.218.252', 1676805306, '__ci_last_regenerate|i:1676805306;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676787653\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676801860;register_id|s:3:\"346\";cash_in_hand|s:9:\"2760.0000\";register_open_time|s:19:\"2023-02-18 20:53:23\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f266229b0df1cf973c69ee188a861652ed2563', '31.222.203.2', 1676802862, '__ci_last_regenerate|i:1676802862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac060006ef28cd036f016ff6bc2d16e9dfc7956', '31.222.203.2', 1676802862, '__ci_last_regenerate|i:1676802862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbb39bfc328f17c75eea26318f55dd04884d233', '31.222.203.2', 1676802862, '__ci_last_regenerate|i:1676802862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254e7274b36bf33726949e50c11db61c0a9e5e72', '31.222.203.2', 1676802862, '__ci_last_regenerate|i:1676802862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ab5a6081fec94579633a067283a82e75bb8d54', '31.222.203.2', 1676802862, '__ci_last_regenerate|i:1676802862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3717adc441a2505f9ffbcf2d75b3a7128e5f5a9b', '31.222.203.2', 1676802862, '__ci_last_regenerate|i:1676802862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecaa0e92c9044f32dba8ea248ff605425da0b935', '172.105.247.100', 1676805017, '__ci_last_regenerate|i:1676805017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50722736488ac2b97c7e3bb516eb1eb1cdb57882', '172.105.247.100', 1676805017, '__ci_last_regenerate|i:1676805017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f322d89d7bc5127babcc491971f93142d44aea8', '172.105.247.100', 1676805017, '__ci_last_regenerate|i:1676805017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af4bde47bf44a6470566c35d841c2cbe0c0f90c', '172.105.247.100', 1676805017, '__ci_last_regenerate|i:1676805017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b750a79bfd3d8833d2b45836b80bae82446f22a3', '172.105.247.100', 1676805017, '__ci_last_regenerate|i:1676805017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47c8e0cabeed01898fd5d6e60d4cd4dba60bbcc4', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af560933bb4c17c80e984204c2ce0e24dc0afbf2', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94cda7d815f2250e3300589948ca10c6c10fc52a', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f55fbf4eb94c6c59d37e27e4cffd3418e30517', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d09cd29909d55312b47871c20b8b43b1d377662', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fd93d148f7c5c7bddde73c69ac47bafb081ba2', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57d0f98123a1dc839d2b026b0aa24d0ce2aa79bc', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5625a41bf0b64206fa2b398805716d7b0a2f1749', '172.105.247.100', 1676805018, '__ci_last_regenerate|i:1676805018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0699b380b32070b0c1684d754da2e1d9725d1213', '172.105.247.100', 1676805019, '__ci_last_regenerate|i:1676805019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e8f48a9312bb5eb9170e145c07a749bcc410254', '172.105.247.100', 1676805019, '__ci_last_regenerate|i:1676805019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0949ae12bb0e42980b53575b3ebf8f9547b72736', '172.105.247.100', 1676805019, '__ci_last_regenerate|i:1676805019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caee2916bd3e4226cb47a25fb76053637de3518b', '172.105.247.100', 1676805019, '__ci_last_regenerate|i:1676805019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a4cf0730012737d60fbfac0b080144d4a810843', '172.105.247.100', 1676805019, '__ci_last_regenerate|i:1676805019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430839048085453aac11affcaf7d01702a26b413', '172.105.247.100', 1676805019, '__ci_last_regenerate|i:1676805019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a787729fa75c25f5145ab2bce9993eea9086e3', '172.105.247.100', 1676805020, '__ci_last_regenerate|i:1676805019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91400903b1c1956ab1283f7d21b2713e093745ba', '172.105.247.100', 1676805020, '__ci_last_regenerate|i:1676805020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92014b1c0ab18f8ddfc9e085cde1029bc7cd3109', '172.105.247.100', 1676805020, '__ci_last_regenerate|i:1676805020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f60482b32ca829931ff4e8622243fdc16e2a94a', '172.105.247.100', 1676805020, '__ci_last_regenerate|i:1676805020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4837358c29d898d488e619f12b467ec60ada4e74', '172.105.247.100', 1676805020, '__ci_last_regenerate|i:1676805020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5311532a8eba24bfe27bea0c82e816e727d3c8', '37.111.218.252', 1676806278, '__ci_last_regenerate|i:1676806278;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676787653\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676805325;register_id|s:3:\"346\";cash_in_hand|s:9:\"2760.0000\";register_open_time|s:19:\"2023-02-18 20:53:23\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0765a951e7f231df395e1d5da3fdb8019d2d703d', '37.111.218.252', 1676812286, '__ci_last_regenerate|i:1676812286;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676787653\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676806278;register_id|s:3:\"346\";cash_in_hand|s:9:\"2760.0000\";register_open_time|s:19:\"2023-02-18 20:53:23\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7bd61e7e240713a9d318145e4a0c465a53d920', '31.222.203.2', 1676806390, '__ci_last_regenerate|i:1676806390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea40edd6b2d963c0e3f1c50d20dfee3f469c3b59', '31.222.203.2', 1676806390, '__ci_last_regenerate|i:1676806390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb4e986ea69c96451134ad713ddf29c06dd20e0', '31.222.203.2', 1676806390, '__ci_last_regenerate|i:1676806390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c1c2aebec99efa9d4c99cab66501cb4cd7ac09', '31.222.203.2', 1676806390, '__ci_last_regenerate|i:1676806390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e347e80b47f29cca0cc207cb708c1db087340c87', '31.222.203.2', 1676806390, '__ci_last_regenerate|i:1676806390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9e3d2954ad1db6735cf0d572543326aaa94648', '31.222.203.2', 1676806390, '__ci_last_regenerate|i:1676806390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fe785e599cd3ffb91a01073ac314c017f4dcac6', '31.222.203.2', 1676808302, '__ci_last_regenerate|i:1676808302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7faea1dfc184ee8bfbc6ef777d7d199014e038e', '31.222.203.2', 1676808302, '__ci_last_regenerate|i:1676808302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12b3d9ca252a506851e514c2d5b8688ad561b42', '31.222.203.2', 1676808302, '__ci_last_regenerate|i:1676808302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390f013006be4ddd8d9f6b122e0d0573b84172d9', '31.222.203.2', 1676808302, '__ci_last_regenerate|i:1676808302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213822886704fcff010c24dddb9a0697e71d4ffd', '31.222.203.2', 1676808302, '__ci_last_regenerate|i:1676808302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53542c37189ca9a24998bdd32b566ca52ab451f', '31.222.203.2', 1676808302, '__ci_last_regenerate|i:1676808302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c19043d7c2043dfa80b4eedb28979d618986d19d', '172.105.247.100', 1676809816, '__ci_last_regenerate|i:1676809816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e1846b0b67dbe35df533b14d42317648506f89', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2359df4bed67daa8b1b1b7f04ae756cbe6374ff', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa0487d6aa71ba2db07679db77291dd4c6edc12', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('459e0ca3c6ac72c0c0fe3d3c0bf1427718cbcf0a', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713afd0a9fea714fbb18d50c1afed2d103edc1fa', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35fdd3605b18fb76ca5e431d212e8a354eca9ebb', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f6407d13691538bce72dc73209912fe70cf31e', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20c5da3e92b6e598bb824c8c6e38563b09468ef5', '172.105.247.100', 1676809817, '__ci_last_regenerate|i:1676809817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f588efaab9ef8e2d8cf881abff3e2cac6287cfdb', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0478abc70038867c4fdd351ed6d4c90b85e48bba', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b688142c48a703f362e28c11f92958824ae709', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a3f84d61422793345d6ab02ffbfe7bc8cd3a49', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2000cd81cfef0891c08dd8b0b1af383568ed309', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804742de8e7093693e2ead22b5a59927967355b4', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6260a0cae084165d8f98a312555f8f67d24e021f', '172.105.247.100', 1676809818, '__ci_last_regenerate|i:1676809818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a15edd22c2c130c344de434aeeca2a90abfb05', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77e5026e58bf4663db1b5d3e5710e91de70f162', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa812f95dcd1caaf1be0d30bd9beed5f25f0f887', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1028a3c5f5503b25e5ffbd7168ecf397b8ef7815', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44ccaab454145b823802784af29ffe75acd44be', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c469c6f6ac541227568d78edd82876988235bf20', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a68e324a835899829ac7a943f0365b75c10e277', '172.105.247.100', 1676809819, '__ci_last_regenerate|i:1676809819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cac8f8f179d287cc5322c115a3efa9a3458310', '172.105.247.100', 1676809820, '__ci_last_regenerate|i:1676809820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c0c9273d56bb3ad21a73f9decbf687db223120', '45.120.39.89', 1676816106, '__ci_last_regenerate|i:1676816106;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676787653\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676812433;register_id|s:3:\"346\";cash_in_hand|s:9:\"2760.0000\";register_open_time|s:19:\"2023-02-18 20:53:23\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ce905e7d71738a232335254d6427d8ff70a3d2', '172.105.247.100', 1676814617, '__ci_last_regenerate|i:1676814617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('521ace02bd854db39182c2fce55d84a213d67a9f', '172.105.247.100', 1676814617, '__ci_last_regenerate|i:1676814617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f8d0e4cb208ffa8ffc9dd7a6573254422a0b31', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5cf684bfe7cfc2e30435fa696adc081f8f2ff7', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b384fa4484eb213b78006e22d6f9bc6cf125da3', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e673702efc76ba5a4304d23dc0ccdeaba8e5f0', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1a5cc584ee4385935868e5bb06cbe395f9cf7dc', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d64d16d9d873a43b132dfed02a4b78c0dbee18', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c1939bd7c73dcfd0f364d959f5bb65de82ef0f', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6bbf7d709e8eec738ec47ae90fbf465f830f471', '172.105.247.100', 1676814618, '__ci_last_regenerate|i:1676814618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fffa306189c64f751a3bc8df691c75fab9982f2', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30c702e2aab76592662e8b3df0609b337f3befbc', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375e7b8952a7068558b264e7139bc2e52596128b', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca7803c395d840fe393f2a98ad97a535e84bc5bd', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699b4134777c4b3cfa062e4402a61f4e565d5c96', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f8955f34b3ac7fb4067462df0102c558ab3ce7a', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a46145930b0f7af5424cfff9de6196a4702ce17e', '172.105.247.100', 1676814619, '__ci_last_regenerate|i:1676814619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8429e99a3ed958376560c2f01c48806f2601322c', '172.105.247.100', 1676814620, '__ci_last_regenerate|i:1676814619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('185b5812ff1e38ec2fc7d2cbac1e13395c1bcb59', '172.105.247.100', 1676814620, '__ci_last_regenerate|i:1676814620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d51c8ded4b0a4592b6ef3714321d870a889ccd80', '172.105.247.100', 1676814620, '__ci_last_regenerate|i:1676814620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3743f1c7ecc50107d1c9a7a2deadee60db5f1452', '172.105.247.100', 1676814620, '__ci_last_regenerate|i:1676814620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8c4076de31fd03aed2c8b4e23053a5746cf9f5', '172.105.247.100', 1676814620, '__ci_last_regenerate|i:1676814620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa98c56b9b009633b0f1debcdc2b7de9e0144659', '172.105.247.100', 1676814620, '__ci_last_regenerate|i:1676814620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb007e1d80985d20405c5c207c975f06f5a4f5d', '172.105.247.100', 1676814621, '__ci_last_regenerate|i:1676814620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9fec7c72abd542308dbf72cebc56bd70246a7a9', '116.204.230.29', 1676815331, '__ci_last_regenerate|i:1676815223;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676744168\";last_ip|s:14:\"116.204.230.26\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33668562f8cf1485d7f2ee731a9b5468135efce', '31.222.203.2', 1676815388, '__ci_last_regenerate|i:1676815388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2102fd19385baee68c6861a27e5ae8a0306b5fd3', '31.222.203.2', 1676815388, '__ci_last_regenerate|i:1676815388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d03ea9c1438e1a26772a37de244e5d8293a5cc', '31.222.203.2', 1676815388, '__ci_last_regenerate|i:1676815388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf79248bbb47999c99761427cf58da7804cfe9c1', '31.222.203.2', 1676815388, '__ci_last_regenerate|i:1676815388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd4b1926bb89668f602b452e77b3ac399c5b5ce', '31.222.203.2', 1676815388, '__ci_last_regenerate|i:1676815388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2b6209ef5659d1378833d736341fe6156b792fa', '31.222.203.2', 1676815388, '__ci_last_regenerate|i:1676815388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c74738e4c42ccb1bf3a7247d7f95c814644f372', '116.204.230.29', 1676816002, '__ci_last_regenerate|i:1676816001;requested_page|s:13:\"admin/welcome\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('977ab14cd97ef9be51301bbb9b7183134e761608', '45.120.39.89', 1676816738, '__ci_last_regenerate|i:1676816738;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676787653\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676816734;register_id|s:3:\"346\";cash_in_hand|s:9:\"2760.0000\";register_open_time|s:19:\"2023-02-18 20:53:23\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0473ee02f704c8ae60cb4393018d2069a65e7357', '45.120.39.89', 1676816763, '__ci_last_regenerate|i:1676816738;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676787653\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676816763;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3f69cffb6364cf22d0672515ad91317312ef09d', '31.222.203.2', 1676817265, '__ci_last_regenerate|i:1676817265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54c436c276379b6df99a1e70ee0dd536fe29927', '31.222.203.2', 1676817265, '__ci_last_regenerate|i:1676817265;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1ac75203fab94e666dd0a670ba9f0363f3ff39e', '31.222.203.2', 1676817265, '__ci_last_regenerate|i:1676817265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46533b604f2eee2a75efdfffecc5b24a3162f86a', '31.222.203.2', 1676817265, '__ci_last_regenerate|i:1676817265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8bfe36aa75f6e35e6a7fd03f50b6f1a2301ad4', '31.222.203.2', 1676817265, '__ci_last_regenerate|i:1676817265;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6cee78bab9b8892a3357f017c0c3a93380f1723', '31.222.203.2', 1676817265, '__ci_last_regenerate|i:1676817265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('229acd4876689dad32a90c8d9102f37f234e7ebb', '172.105.247.100', 1676818816, '__ci_last_regenerate|i:1676818816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9598f4e961f918b620fa7d3bbff17e8f098195d', '172.105.247.100', 1676818817, '__ci_last_regenerate|i:1676818817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df6b00a4fbbb670daecbce19d2027c419fbafe6', '172.105.247.100', 1676818817, '__ci_last_regenerate|i:1676818817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b2bd7189e8ed59875783c77d739faf26ba4249', '172.105.247.100', 1676818817, '__ci_last_regenerate|i:1676818817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec5acf34a1adb2112fa43549db7ab98b5975327', '172.105.247.100', 1676818817, '__ci_last_regenerate|i:1676818817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa8e1e2194ae242d48875f623cc01cf70958b74', '172.105.247.100', 1676818817, '__ci_last_regenerate|i:1676818817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd67ee22ad1a514ce8800a7154a3b076bb9c0b8c', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a4a8e9d83d7ef75d2b6b376ccbd70e1e43db61', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7673982b6cb85231daf82ff9d52e1874679b0449', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70160c2ad430d12943218f03fdcf7a26968be3a', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff818e54d3b08687631b545b7529ee0df155e063', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c62df2e9794f43b0a202cad4a72392965274906', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32e5796634bef3de7df8ac8ee341288f11ed61b', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('511f4ceb11e72cfafe647569ba77cf6563a576a0', '172.105.247.100', 1676818818, '__ci_last_regenerate|i:1676818818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c52f0a0e434ac63068cae9ed1ee05718ce89730', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ece95789fd14e11aa0f4717a35ebc54e0d1ae8', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07df62c708d9f6fa7b1c3a2f4e20e9c14b775149', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12af595ec54cc5789711fbb6b9ceacebb864d230', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2187a099ddccee52474572bf09c3104ff4cbb3', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9bc9754126cb4f851289de052beaac250219de', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5abe4024eb215f7ba20f557ca46febd0349ee94', '172.105.247.100', 1676818819, '__ci_last_regenerate|i:1676818819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d7137fe3e89982fb27b6b1facce67ef5a8eaad', '172.105.247.100', 1676818820, '__ci_last_regenerate|i:1676818819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73c12548c3a269a591fff6f02780f1711f3fe813', '172.105.247.100', 1676818820, '__ci_last_regenerate|i:1676818820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10c712e8837e5a8da00f49b0c011e0f94f71c4f', '172.105.247.100', 1676818820, '__ci_last_regenerate|i:1676818820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00b5c757dfd79602aaffd1843c666f431d5e0eb7', '172.105.247.100', 1676823617, '__ci_last_regenerate|i:1676823617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63dded67a222f0e9192d71b039c55314010d3e77', '172.105.247.100', 1676823617, '__ci_last_regenerate|i:1676823617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79a8838894859b7d25c4e5356b2638bccfc299f9', '172.105.247.100', 1676823617, '__ci_last_regenerate|i:1676823617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4511da89c87c2a5f81c5efe1ce54e5ec798c1316', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba9a1db1f97f87449ed0f5cc5f96a38b35e302e4', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596a1196a0c989cdcf4ed6920aee1eca185ae136', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61358412ee028b0e66c82b34031721bce51e797e', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3921d85602c2099dcede87cd8847c72c5878701e', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c38fbac6584f77d7306ecdb88d85a7199682ff9', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bcfb2c4d8ac85fb3319d9200e0414d8bd5fa2f', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a123f14ffb1574e26705ba2fd1e73f905d49c0', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842f9da4ed350dee87876bd809589187d6b7bfbe', '172.105.247.100', 1676823618, '__ci_last_regenerate|i:1676823618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e30026c12300436834d67f0cdc4d5f2633698bda', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('904c2c7fcaf9a9cfe7c318bab3cdc8b1f0e0da63', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1e401836b44639a9621e4cb3d47675ed5d7f186', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3d0d0b1e5c7feb76094a1de34343069650c0d8', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a0b2125441012cde3da7d021c4f3a36e60afdc', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b53ced96e82a4b861487f3c71728e784b0bc671', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c526920a146646454d09bc50c75221d004de2004', '172.105.247.100', 1676823619, '__ci_last_regenerate|i:1676823619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c543049d93714da479cc4819b7811f6fbe4095', '172.105.247.100', 1676823620, '__ci_last_regenerate|i:1676823620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8802d9ba02a6bf56c7531c9ae21ec3bddad114a0', '172.105.247.100', 1676823620, '__ci_last_regenerate|i:1676823620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5f36ab9e72b58fcca7302ac7164b12d434ceb8', '172.105.247.100', 1676823620, '__ci_last_regenerate|i:1676823620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f21762be424018d05eb3436b52e7ae701f2c7142', '172.105.247.100', 1676823620, '__ci_last_regenerate|i:1676823620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38ce48876fb89d8eeaafe39f50b4fd8e3917990a', '172.105.247.100', 1676823620, '__ci_last_regenerate|i:1676823620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fdd9f49c9f3261a51d32e408f6d7c99e92602c1', '31.222.203.2', 1676824391, '__ci_last_regenerate|i:1676824391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba76ffbcb72db6bbcd266e80a8e3b53076777667', '31.222.203.2', 1676824391, '__ci_last_regenerate|i:1676824391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8e6e29ea10475a3e09b21e61caa1a33528f176', '31.222.203.2', 1676824391, '__ci_last_regenerate|i:1676824391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc3e5307fe9645c990f8a450f6559edb141c575', '31.222.203.2', 1676824391, '__ci_last_regenerate|i:1676824391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca543851b9b8113bdbf092c56d05d537980da190', '31.222.203.2', 1676824391, '__ci_last_regenerate|i:1676824391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d692a7783c7c126585e9ab51f9660bd1d1c09a4e', '31.222.203.2', 1676824391, '__ci_last_regenerate|i:1676824391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dceb1f5c6b845223607374740b0b8355302e64c', '31.222.203.2', 1676826302, '__ci_last_regenerate|i:1676826302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021f44b484f9600a073c9fabafb8200cbe22a0e6', '31.222.203.2', 1676826302, '__ci_last_regenerate|i:1676826302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59542654c6677de2d003c6977f97b179a4c15127', '31.222.203.2', 1676826302, '__ci_last_regenerate|i:1676826302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b5bab8afd4538456a01b5fe653b20817688c3d5', '31.222.203.2', 1676826302, '__ci_last_regenerate|i:1676826302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('042395a01acfbc0e09eca97e24df946c473f903a', '31.222.203.2', 1676826302, '__ci_last_regenerate|i:1676826302;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aeecf2c938d0a25be4cfbe67f0e0f6781b417bb', '31.222.203.2', 1676826302, '__ci_last_regenerate|i:1676826302;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5aaf520895fdfebe3a489922d55ebb1ce40f290', '172.105.247.100', 1676828416, '__ci_last_regenerate|i:1676828416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcedff934d30e1cf73f026baedbc68f39e098c82', '172.105.247.100', 1676828416, '__ci_last_regenerate|i:1676828416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f60b27727fa17fc819d1d8e124086457f0048ea7', '172.105.247.100', 1676828416, '__ci_last_regenerate|i:1676828416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('131e042bc9ab95e7a1d9feed2f027b363cda8815', '172.105.247.100', 1676828416, '__ci_last_regenerate|i:1676828416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0efd3482716b8baeffe34be1a4af8bdffa71996', '172.105.247.100', 1676828416, '__ci_last_regenerate|i:1676828416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76dc3a2aad91103a6cc063877a5405b8fee90587', '172.105.247.100', 1676828416, '__ci_last_regenerate|i:1676828416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce462510f2ffdcdfeafe4fb2c9983c8058ac4799', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd37c36ecd28840e9faa24bd98841844ccd3a0e2', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc5fa8b9830a44e683b0d7970d879b40422f22f', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a642e9ae29756a6b5cb8f9d7a76b657d3fd03ed5', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93c097bae15e8a66d8b7fa5bedb2df32423294b', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae74b93679506469ea13933492a3d8623f1bacae', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d4c34fc9a5fa1ca5f3f9aaca503464a864297d', '172.105.247.100', 1676828417, '__ci_last_regenerate|i:1676828417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006fc026c7b0b8111ddec8d6336d48d341c07243', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bd0ea6c7c83b41ab466291350de53932ec6d83f', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c431bd0f00849eb9db3e9b13c37edb7ffb38b8a3', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4878ef4beb5c89e466feebd83ff02c1a53fc833e', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6f3d133a4d02973f8346b963c5a547a4eeab17', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1370918de924422a6d37445d2cf066c60d128c22', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4850bd520c614a4751e4aeff47a74f14224c8b', '172.105.247.100', 1676828418, '__ci_last_regenerate|i:1676828418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbfe1fb802a0661599cf6f3f01e422d8cff44db', '172.105.247.100', 1676828419, '__ci_last_regenerate|i:1676828419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('382dc0be975ae661023f35323f70061c1f2a81c6', '172.105.247.100', 1676828419, '__ci_last_regenerate|i:1676828419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a421adabdfb9b078650894bc653f6dfb52836a9', '172.105.247.100', 1676828419, '__ci_last_regenerate|i:1676828419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa9aaf04e4676c1dff64acccd33e29bac8247ad', '172.105.247.100', 1676828419, '__ci_last_regenerate|i:1676828419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10fefea1c269a0d19e1d6f4494d6f8068fc7d8d4', '205.210.31.41', 1676829538, '__ci_last_regenerate|i:1676829538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c1b4fe638f57e451cc3f7fe1fb636a86107848', '205.210.31.41', 1676829538, '__ci_last_regenerate|i:1676829538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e21799002f184126c59c94340c0e029a6eeb047', '205.210.31.41', 1676829538, '__ci_last_regenerate|i:1676829538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4524f33b872fe9a4e26927fab41e835f57e1b358', '172.105.247.100', 1676833219, '__ci_last_regenerate|i:1676833219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161d84843ea9b9fdc5f15778ec25d468e93a826c', '172.105.247.100', 1676833219, '__ci_last_regenerate|i:1676833219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b6c783bf5de5c0b9a2eaa1cc6d13ab3b80ea7b', '172.105.247.100', 1676833219, '__ci_last_regenerate|i:1676833219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4defc99e303891db5dff5f322d168f2c10dbe9a', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7261cb651ca39d13c665115d58c4cba2a83ee7ee', '172.105.247.100', 1676833219, '__ci_last_regenerate|i:1676833219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('147bffe77c11eb117ccf715de88f7129de216e31', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e807e7d4b9bcd5efb20916a871503ca8305fda', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581335bb5f16552a0ced9b7b143b43089bba2623', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029e3713b078b0ccae123e7d202bb90d4acd032b', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be5205f1b7913dd5b3c8af4c81233d05e1f14f0', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94907d534b227344a55a73de9cb4da77a76321b4', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9003f684f43f7110bd131f9dc0ce312473c86e4d', '172.105.247.100', 1676833220, '__ci_last_regenerate|i:1676833220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084c4106e283d72f6ded05a161ddf934151fe325', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99269e07da039ec5f024ad49d2cc79356a1521f1', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f62cb0bf362963ea02eb2e24b36bf299d59008de', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f271d3ae4bfd239ca616d399e3caaae93a0ed8f1', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a6c836b461ae5958d328323556229f393e40de', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33652c27bd024eafb78e15ed4414dcd2706c277a', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b91c5d2fc364131719d64fb2d51598149b1a84', '172.105.247.100', 1676833221, '__ci_last_regenerate|i:1676833221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7625065d07e18d6ae8481c69c9bbe45f57412291', '172.105.247.100', 1676833222, '__ci_last_regenerate|i:1676833221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8038bd011434e61e7fb5a6891435e47437fce4', '172.105.247.100', 1676833222, '__ci_last_regenerate|i:1676833222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9031447589558c9d98a70f8fc918a98274f9157', '172.105.247.100', 1676833222, '__ci_last_regenerate|i:1676833222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169811850561d6f6da0e0cd208e71ea6bda8e54b', '172.105.247.100', 1676833222, '__ci_last_regenerate|i:1676833222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9228c07ddcf66d0cd4f9d00835e59cdd8850e677', '172.105.247.100', 1676833222, '__ci_last_regenerate|i:1676833222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0cb87117aea814e75780e3f3d352ce4fdbf0c4a', '31.222.203.2', 1676833392, '__ci_last_regenerate|i:1676833392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f29704c164484f705c02972d68eac1cdc4410b4', '31.222.203.2', 1676833392, '__ci_last_regenerate|i:1676833392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a147690358fda69216323d8bbeec1cff3ea13d8', '31.222.203.2', 1676833392, '__ci_last_regenerate|i:1676833392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9f83aaf390833dc27aba5a60425f215cedd6a2b', '31.222.203.2', 1676833392, '__ci_last_regenerate|i:1676833392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e95cf79f8133b8779bdd36e62446d655991f3b6d', '31.222.203.2', 1676833392, '__ci_last_regenerate|i:1676833392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7616dabb39f09a751ed5b54759345b4d2c3c0b', '31.222.203.2', 1676833392, '__ci_last_regenerate|i:1676833392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a62d6170ec36c1d5035e06ce0e4976471817fb4', '31.222.203.2', 1676835262, '__ci_last_regenerate|i:1676835262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cbc450672445573778344c49ad1bc777108d94a', '31.222.203.2', 1676835262, '__ci_last_regenerate|i:1676835262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d593b354e0d47fad339a56191048e885045767fd', '31.222.203.2', 1676835262, '__ci_last_regenerate|i:1676835262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('083ce833e3f51460b7c460211d2cf83fc2945a1e', '31.222.203.2', 1676835262, '__ci_last_regenerate|i:1676835262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc2395a141de9ef51e12c5369bdba6118f68d88', '31.222.203.2', 1676835262, '__ci_last_regenerate|i:1676835262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('367677c7cd1122b7af492245538a1f3750812143', '31.222.203.2', 1676835262, '__ci_last_regenerate|i:1676835262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43dc1c21015cb3abac654c8f92383ffc8178f99e', '31.222.203.2', 1676836941, '__ci_last_regenerate|i:1676836941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f971dd5e1740c1e615300ff0df9b35fd3a9c5dbc', '31.222.203.2', 1676836941, '__ci_last_regenerate|i:1676836941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd796a4c6e5e7a2daaefc7f5a26258eb5fd43bc', '31.222.203.2', 1676836941, '__ci_last_regenerate|i:1676836941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe826205ba4aec30f8cc8456e470b8dba25ba1d', '31.222.203.2', 1676836941, '__ci_last_regenerate|i:1676836941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8dfa570ff416eded8074b2055632bc74498f7d', '31.222.203.2', 1676836941, '__ci_last_regenerate|i:1676836941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c52551e496b2c865c31ca49844b9effe675b801', '31.222.203.2', 1676836941, '__ci_last_regenerate|i:1676836941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29f495b2161321c443d71974e7fd413e390a9da', '172.105.247.100', 1676838017, '__ci_last_regenerate|i:1676838017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9affa75b7bbdc603b284f0db925a76e6b0772d37', '172.105.247.100', 1676838017, '__ci_last_regenerate|i:1676838017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f36ff7c7c0bcc8d8a7e1f5b8d68c40e72203cb', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b684f146add8d17f9e34f212863e6fb1d05f8f', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79aba67a17f3ca9dd17aaa89334a9b6d2e6ceec9', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7be5f9eae41d36b0d08c4ed4aa832cf12df66cf', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c93f4ae7aed51d0530d289cf905a105cf605372', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a32c0e2ac7218245ae3ec2830590c33e45879f7', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2014f10fcf9719b1a6884c2ba8a4b5b189d59d9b', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21124604f9e261ccfe92ea2fc62c5187ae99ffe', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbf21b1e744d338ae1f3f1eb2da26b0fb1e2546', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d17bced4218bd99b7b6390776aa7fa95b1a174c', '172.105.247.100', 1676838018, '__ci_last_regenerate|i:1676838018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8853f4c98e2852f3309fa2d012daa8d8dff011de', '172.105.247.100', 1676838019, '__ci_last_regenerate|i:1676838019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28ed82776141f9e917b547b1ab89c1ff9b9e4a31', '172.105.247.100', 1676838019, '__ci_last_regenerate|i:1676838019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fb4226d7685a74b0b649b00012e343ae2a96d5c', '172.105.247.100', 1676838019, '__ci_last_regenerate|i:1676838019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde464deba26831a979a2afef359c1b9269abb81', '172.105.247.100', 1676838019, '__ci_last_regenerate|i:1676838019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2845391907837b5523ccc173deb41844af4ab9a5', '172.105.247.100', 1676838019, '__ci_last_regenerate|i:1676838019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678eb321f550d3f65898a9aefdaa275050cb262c', '172.105.247.100', 1676838019, '__ci_last_regenerate|i:1676838019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678016dd43ed0f1e5cc472f2094ff965f63bea23', '172.105.247.100', 1676838020, '__ci_last_regenerate|i:1676838020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c643770be1f1f25e169fd6d5e854371e471448', '172.105.247.100', 1676838020, '__ci_last_regenerate|i:1676838020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d069d6c03b302106907f9119f3b9103d6964a42', '172.105.247.100', 1676838020, '__ci_last_regenerate|i:1676838020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d881bbbf3feeec60df0e75b0f720dbe6254c7c87', '172.105.247.100', 1676838020, '__ci_last_regenerate|i:1676838020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb3eca9e473de3af381b2bc25dc0dfe29b54927', '172.105.247.100', 1676838020, '__ci_last_regenerate|i:1676838020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7c2dacbef71d38ebb1d866bd719344d97d4ec9', '172.105.247.100', 1676838020, '__ci_last_regenerate|i:1676838020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ece3e1574401c78346d3aadfcb70e94ee96613', '31.222.203.2', 1676838783, '__ci_last_regenerate|i:1676838783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8d350dc506b7719bb7b6e00ed35b754b6cea8b7', '31.222.203.2', 1676838783, '__ci_last_regenerate|i:1676838783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee54be218625e6acc9cf397fa06afa1262861207', '31.222.203.2', 1676838783, '__ci_last_regenerate|i:1676838783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6af0907d4da3dc7375ec7c832f633de35e93db5', '31.222.203.2', 1676838783, '__ci_last_regenerate|i:1676838783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfca1939a87f1825dd73202b5b2b38f0def8dea0', '31.222.203.2', 1676838783, '__ci_last_regenerate|i:1676838783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0e1f33ec1f7c148c36e77d09103a181e6e0583', '31.222.203.2', 1676838783, '__ci_last_regenerate|i:1676838783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('272ce90bad6ea1e2ea929bee83c6c30da28f8145', '31.222.203.2', 1676840663, '__ci_last_regenerate|i:1676840663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('518acc4a06a37cea099eaf11b2209528a5efb91b', '31.222.203.2', 1676840663, '__ci_last_regenerate|i:1676840663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90b4fb730f94b4e2462787b48234cb0fc14062c0', '31.222.203.2', 1676840663, '__ci_last_regenerate|i:1676840663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be336709a4fda7fe15517be686cda64345a64d7e', '31.222.203.2', 1676840663, '__ci_last_regenerate|i:1676840663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e939abc0e8740347cf70b47ebc6c9f67988acc23', '31.222.203.2', 1676840663, '__ci_last_regenerate|i:1676840663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13cbc024d234c0366d77ef4a50db461835516ec2', '31.222.203.2', 1676840663, '__ci_last_regenerate|i:1676840663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fffcff5319e974aba34d819a45e92bc58f9402e', '172.105.247.100', 1676842218, '__ci_last_regenerate|i:1676842218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b77bc1d1e929a50359792afef8f463d06e6a00', '172.105.247.100', 1676842218, '__ci_last_regenerate|i:1676842218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41f3ba590895e6d964c992f8ece318313c63286', '172.105.247.100', 1676842218, '__ci_last_regenerate|i:1676842218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394cb58c51517fd0eda51209544534346f919af3', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de216907ac916b7ab65f5cc421768c0b2a16f172', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df903ea2a652db1dc5253e62c63601b93e7c3c49', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b131231bf1ce03db3ae272d3d62823f82b00b177', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964dac8f708ba8bebc8024bc20dc99aa02c4b6e1', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178b98bf3a81398815e023a9bc002beeb19b5ee8', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb9328ff1ab6cda95f06fcb32ad8cc6f16d6be0', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cf848ca5b249013d096f310d5196d3d2cfadf9', '172.105.247.100', 1676842219, '__ci_last_regenerate|i:1676842219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f17fd475fe4019da6efc0303fc8ee0a651d759', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8a9424fe7daffc5dac0f9eeedea1fb67c4620d2', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668970861ba483ce1b5060a08d871ea186472945', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6624d9af3c832d919d55e580a7d3640912d7f6', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec56387128031ff8f35ead1b42da99bf8e4f36d4', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83015c455792c9c30daaef3ef27955befb1bee86', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbf92cefc78fe95c41889b7d6cb4e0d595bda08f', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942c2da5ddb99f765b8642dffe6795c4becbc441', '172.105.247.100', 1676842220, '__ci_last_regenerate|i:1676842220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01cd20e00b42862ac075b5ee9d8c3ac429cafe60', '172.105.247.100', 1676842221, '__ci_last_regenerate|i:1676842221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d97a59f2debb68fde642b11f157ff1f1fb5e849', '172.105.247.100', 1676842221, '__ci_last_regenerate|i:1676842221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eddb33f7a0e2e82a544dc1b86fa544168dc72eb', '172.105.247.100', 1676842221, '__ci_last_regenerate|i:1676842221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8bea815779eae2b13543fd20b89735caa7815f0', '172.105.247.100', 1676842221, '__ci_last_regenerate|i:1676842221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e097fd9427d171c2f625fdcb1d717a7dd0ddf88', '172.105.247.100', 1676842221, '__ci_last_regenerate|i:1676842221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f570c83f54441b1d96b43fe4e002fd6692eb293', '31.222.203.2', 1676842513, '__ci_last_regenerate|i:1676842513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8324e83fc209fcc6a93be3b30f3c91f40b64c9a7', '31.222.203.2', 1676842513, '__ci_last_regenerate|i:1676842513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6de0bc3b4b5c33045eef25ab246dcddeadad7ea4', '31.222.203.2', 1676842513, '__ci_last_regenerate|i:1676842513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5a517010250e93ab8ac8da0db51fa3a801c7b3', '31.222.203.2', 1676842513, '__ci_last_regenerate|i:1676842513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94a471078538bf80a0bcbfcc5490bc3c00d3ad5', '31.222.203.2', 1676842513, '__ci_last_regenerate|i:1676842513;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390c057332c463db853f7efe0ff5ef7cf7cd81a6', '31.222.203.2', 1676842513, '__ci_last_regenerate|i:1676842513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c4c9bb69cefe46b3f437a239554e43eb56949e1', '172.105.247.100', 1676847017, '__ci_last_regenerate|i:1676847017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d421f9eecc1ee49c9aa8608a37779c33534421db', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac835bac427335703e7f67568a9977d6d32da28', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2113e0b56d4d76e7c2d2d4bd2b997c0cdc8e43', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1733cba54b6f96ce78de0231a84a352d597befc', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9af7162ec9c90f6d21a052225ca11d8c829c05b', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aee9744075f2c92243718fbcc43dd2c36944b48', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf7697001eff2f67a114ffa3b39942f83c41ebe', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d07156747cc7860bd2d9c4c5f89629c301ab9ab3', '172.105.247.100', 1676847018, '__ci_last_regenerate|i:1676847018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6484d5a7e80db8bd5e8f760bde0f3c484f1d49c8', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23775c4f9fbee246669d36fe713bb560addca7e3', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2da465e458984aec19f9f18cdf9152d83acc7c65', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2710220d5304346f1d8e66c58dcbe38f1474bd9e', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90653273b9272fc70f60b40793f32da4487615df', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85449c2aa89b864d113fd052431f94e65026908', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b5104088cbee83d918bccf6cde7da1b0d2c39e', '172.105.247.100', 1676847019, '__ci_last_regenerate|i:1676847019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4eb5182b0f82ecf6a5ba3beaaf74250e1418c1f', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1a1bf1eb2d50e6a7fda361916725582819fe3d', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6ad06d57d2a376e62348b12434027bf3285002b', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aab55e647a97cb465022290d119ea5e58c74731a', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f92dfd68e4c6b42a42acc63a13ac2d9a92992a4', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8920d1892ed4aeb0ffd7750763dd4788b90df24b', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3f863f3add5205f990d28da4e2e48113629386', '172.105.247.100', 1676847020, '__ci_last_regenerate|i:1676847020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33a9febb26be576402cc7b60710d65beee7cc32', '172.105.247.100', 1676847021, '__ci_last_regenerate|i:1676847020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c012c64bd3a358a16d6d7462b1237a25d92d0b9', '31.222.203.2', 1676849595, '__ci_last_regenerate|i:1676849595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27c379b98463172758a29b7ddea0d2bffd15e12', '31.222.203.2', 1676849595, '__ci_last_regenerate|i:1676849595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51174848a1b0db540b90c10293df4ab9560c9b82', '31.222.203.2', 1676849595, '__ci_last_regenerate|i:1676849595;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9b1b0a3d29025ee72ffa7c34b90ae410cb73d0', '31.222.203.2', 1676849595, '__ci_last_regenerate|i:1676849595;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5cf4fd1f9fedbcc1ba5f3e5f87865b22c93c61b', '31.222.203.2', 1676849595, '__ci_last_regenerate|i:1676849595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1cdc4c0fe48d5272d46de0bb28198381aa72af6', '31.222.203.2', 1676849595, '__ci_last_regenerate|i:1676849595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49385fbdee62cc3444cba12dcbb4d8124307b63f', '31.222.203.2', 1676851461, '__ci_last_regenerate|i:1676851461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7deaccad6d82031cb274b2f7163fae24c6725f5', '31.222.203.2', 1676851461, '__ci_last_regenerate|i:1676851461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59d8dbf8dafeb13e96a8f714dc28a04a79780a0', '31.222.203.2', 1676851461, '__ci_last_regenerate|i:1676851461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a95e5144645e605ecef45e0514f87f8c5e5eed28', '31.222.203.2', 1676851461, '__ci_last_regenerate|i:1676851461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a674d54c3061b730b76f12384157d401081cea', '31.222.203.2', 1676851461, '__ci_last_regenerate|i:1676851461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828e80a360e267433b4f86056b400a55467bca0e', '31.222.203.2', 1676851461, '__ci_last_regenerate|i:1676851461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b0c56dccf9e2546f5cce0b83dc8d5a0e29f16f', '172.105.247.100', 1676851818, '__ci_last_regenerate|i:1676851818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5eaa7f7e5f3a9db04653a25cf7f6212052e9cfd', '172.105.247.100', 1676851818, '__ci_last_regenerate|i:1676851818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aeabb6155b57f0250f90470ca2a0ee866bd244d', '172.105.247.100', 1676851818, '__ci_last_regenerate|i:1676851818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c690edde07cf9a5df201d23fe68a19e6832abb', '172.105.247.100', 1676851818, '__ci_last_regenerate|i:1676851818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e01ce799ac1b41cb8cd5dcce2c3e94e80457479', '172.105.247.100', 1676851818, '__ci_last_regenerate|i:1676851818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad9a4898326de85d01b68c087b8c3b18f02b4bf', '172.105.247.100', 1676851818, '__ci_last_regenerate|i:1676851818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8822d672208a75287ae1e2bdcee90c97005f0de7', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c048807175de78dcbe614d1bb98dc0ac8a63f72', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b698699f4d37acff224263e122102d28e2c8aabb', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9b62e68fdfb9dad77bc9029e87da7b0245a5f2', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ada6c69b31650b999c20f7389390e14184bfae', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6025b010273a96245693c25e589e8ff42c6e8669', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7377c2beb5943ccbc31da960c2d45976d8f1df8', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0c8041f3eca2dc6e50dcf295cbc6c63f9c2b05', '172.105.247.100', 1676851819, '__ci_last_regenerate|i:1676851819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('577d1a2877773f88dcef3fedb8ec7a2b90625903', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e03bfa968d3746fd2be230d0863bec8e55f2e0', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1536447fbb532e385ec98cd1457181728190d21b', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b557e4f31fae3485d266415b55ff0827a114e4b', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196bba23b603143e6682e208ac9c6a17b28ee6fb', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4269f97337e3bad9d5e8db2f09f63df1b727dd04', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afcd3eabd59bfdcdc6d959aeef3153a087a13e14', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ab22dc8e5564c9c7ea6c4eb08d465eaa898a57', '172.105.247.100', 1676851820, '__ci_last_regenerate|i:1676851820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8ecd96ac01330ff152dc0127d569762ee44a62e', '172.105.247.100', 1676851821, '__ci_last_regenerate|i:1676851821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e46d18ae94ba3770d6ca0feee34c6e7bf87d1175', '172.105.247.100', 1676851821, '__ci_last_regenerate|i:1676851821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9bb0fe9bb77386617bb0a4be84d580419ade744', '31.222.203.2', 1676853249, '__ci_last_regenerate|i:1676853249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b4c1e7143409ef9ddeb82ad6717f9e14fcbda3', '31.222.203.2', 1676853249, '__ci_last_regenerate|i:1676853249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a10dfb982fdb8ed9ce5698f1c39e2e970b31ca7', '31.222.203.2', 1676853249, '__ci_last_regenerate|i:1676853249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb482dac944a1d9a119e2f4a0e5b2339c6ccbc1', '31.222.203.2', 1676853249, '__ci_last_regenerate|i:1676853249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d55d8a70497fb7cb383f6fa818099f06d14b607f', '31.222.203.2', 1676853249, '__ci_last_regenerate|i:1676853249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e091987a881befc3fe5f36f940d43b16aca199', '31.222.203.2', 1676853249, '__ci_last_regenerate|i:1676853249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5daccfbadc3cc61dfb903c8f071ba35601e5fc', '172.105.247.100', 1676856618, '__ci_last_regenerate|i:1676856618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa048675c22e881e6a650c8698367a5380b2d46f', '172.105.247.100', 1676856618, '__ci_last_regenerate|i:1676856618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3fb291e862abf163b444c55abbc93e9e92d69d', '172.105.247.100', 1676856618, '__ci_last_regenerate|i:1676856618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec23da4a5820ef364ed991dc2d1d759739581e1', '172.105.247.100', 1676856618, '__ci_last_regenerate|i:1676856618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c41c8072f0153d64b2e7c3e5328512bc187c38', '172.105.247.100', 1676856618, '__ci_last_regenerate|i:1676856618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e92f72656399e1451970052d3261a9c12bfead7', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9fcef88d616af21ed48e95d63fd203d4c08083e', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4ffd41c76589ef025941e89b4e2255260212425', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998b415c37d0009901f418570c3b9cae51ef70ed', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d776898ebe08fb0cb4fad3227186dda0b356515', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b18e7581aad302bde7b47351403f075eaf6082a', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd37c7d9ec94902c34a725f510f3b0e24473f887', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ed8c3615d6e059fabd5d7f585ef4232a9ee95a', '172.105.247.100', 1676856619, '__ci_last_regenerate|i:1676856619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb49cf8069020ae4545d0d72df9436ca92245a9', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470e092575cc8306ef456ba87d517b430e41d847', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59102340efc89514f6eff01834e6f414fea98fef', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5828a89eab34ca9308fe4a3d29c0cfd33bd9c25e', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74166af5a4c861c87861e2f0306724bb16f68b1e', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8325152779d25839fee8d7b27957f4695392b22', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd228a98ba43ad67ed8c79331d816f175f7df709', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6947e518a9f9d8cf2c19e1046455b7ed2e129a8', '172.105.247.100', 1676856620, '__ci_last_regenerate|i:1676856620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0181079c5e04ee8d6b95f6ec4fd316b08de763e7', '172.105.247.100', 1676856621, '__ci_last_regenerate|i:1676856621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f862a35c157fdeb70139852be767082c08241f', '172.105.247.100', 1676856621, '__ci_last_regenerate|i:1676856621;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac309263df0964cb308c5e7cc31effada506039', '172.105.247.100', 1676856621, '__ci_last_regenerate|i:1676856621;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c7233979d3caf2513769fa99fabc5c773327644', '31.222.203.2', 1676856790, '__ci_last_regenerate|i:1676856790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18992624750e0dd976421d6d521c01d6121d05db', '31.222.203.2', 1676856790, '__ci_last_regenerate|i:1676856790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122a06ee27279635c350ac50afd30d0f1179b13a', '31.222.203.2', 1676856790, '__ci_last_regenerate|i:1676856790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e1adec633cf257bbb1ddb857a7e7d7f0f98df81', '31.222.203.2', 1676856790, '__ci_last_regenerate|i:1676856790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc6e78cc6e9ed3a29b0aac1f94100128f153066', '31.222.203.2', 1676856790, '__ci_last_regenerate|i:1676856790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('248d9769b83b525af65e6671ef0ebeae2c2e183f', '31.222.203.2', 1676856790, '__ci_last_regenerate|i:1676856790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77cc2ef663137a552f3bbba356b3c2e6e39db8ca', '31.222.203.2', 1676858660, '__ci_last_regenerate|i:1676858660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e14579c9caa9ed3994f2596fbd0760d2c4c493d', '31.222.203.2', 1676858660, '__ci_last_regenerate|i:1676858660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4692f91a07aafa984a65aec5cf2a13ca1403447', '31.222.203.2', 1676858660, '__ci_last_regenerate|i:1676858660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdeff9fc119fbb5193872e14dcfa5dc2f369d9ef', '31.222.203.2', 1676858660, '__ci_last_regenerate|i:1676858660;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e7b368227a4abcf14ace57cabb44945ff6ab9f8', '31.222.203.2', 1676858660, '__ci_last_regenerate|i:1676858660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564a1399365396098dc35c1a9c0e8c2fff0f883e', '31.222.203.2', 1676858660, '__ci_last_regenerate|i:1676858660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab74428330edf5f764c013bf165f65240fdf5b6f', '172.105.247.100', 1676861417, '__ci_last_regenerate|i:1676861417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a9c25abf2a0711829f108e44308280df5548ee', '172.105.247.100', 1676861417, '__ci_last_regenerate|i:1676861417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d965957a4faa017b6b7778ca737c787ec40b10f8', '172.105.247.100', 1676861417, '__ci_last_regenerate|i:1676861417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c7f37ae0ad1b02bd1f7e867c4f4bbf97b0402e', '172.105.247.100', 1676861417, '__ci_last_regenerate|i:1676861417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0adad2bdcffaad80e7fc5b2ee89f33f5111ca51a', '172.105.247.100', 1676861417, '__ci_last_regenerate|i:1676861417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b6f9e3defdbeaa8883842d32dc2a13b18a19007', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a1855e3d2a4ca3f679fd0c5117ad79818aa382', '172.105.247.100', 1676861417, '__ci_last_regenerate|i:1676861417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484f499022e25b76611acdab2929219c4e7f5ade', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0063d4612aca0cf1d1273779f3f91df16eb8123c', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('880b757b2b8f73a0573f1cbf4d4578dac6ef9b73', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecabe4627ce050acf9f61f6f616f704bbeeffbdb', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f06894c00358192aaaf73523685318339199f54', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c085d29ef39be2eec9af6fd3ee617dc6bab9ea', '172.105.247.100', 1676861418, '__ci_last_regenerate|i:1676861418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f5796d442e67a93513110b556d20fff3a527a4a', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea82382dcbdf279fbd99c419699971c10147d743', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad4709a00e43f9b2aaa37634e1e93f276d0ce18', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f0086be9cacee02162918ec0e39ac4e970b5a98', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39c097855e968fc587cffbd38f973b3da6043ac', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020ce2a4ca5d9e6bc0140f0e720bea1d2ef66031', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666962be4aaef6b801dd6bdc55ea888541efa95b', '172.105.247.100', 1676861419, '__ci_last_regenerate|i:1676861419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91637ed3309edaf98524c54ce573bfeb881ef69', '172.105.247.100', 1676861420, '__ci_last_regenerate|i:1676861419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68d2185ccb7158863e64c0237eaa6a6d94b849df', '172.105.247.100', 1676861420, '__ci_last_regenerate|i:1676861420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dabd5a927fecd635bc1c6ce5c9288151e8942754', '172.105.247.100', 1676861420, '__ci_last_regenerate|i:1676861420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db806363af33d69b4aaadd28258429d81340f7af', '172.105.247.100', 1676861420, '__ci_last_regenerate|i:1676861420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc19cec18978604468db6ed20f2ad2e5cd88433b', '31.222.203.2', 1676862189, '__ci_last_regenerate|i:1676862189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('716f8f7658545c1c06fa7be002a6c46caa13be77', '31.222.203.2', 1676862189, '__ci_last_regenerate|i:1676862189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3791a06b622d4d0f0a6f26b99cdd07dc380245', '31.222.203.2', 1676862189, '__ci_last_regenerate|i:1676862189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e94d60a8b7487098041f66853b4b4e8a9e9de961', '31.222.203.2', 1676862189, '__ci_last_regenerate|i:1676862189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4a8f2ea24b7498c00c1db354d8fb658a890d70', '31.222.203.2', 1676862189, '__ci_last_regenerate|i:1676862189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4279f7adce73462b2a104bc00d69dd030bce5379', '31.222.203.2', 1676862189, '__ci_last_regenerate|i:1676862189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c7758210f92d53cea1c62bec04d4f37ec6da18c', '31.222.203.2', 1676864059, '__ci_last_regenerate|i:1676864059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3177dab287a59660ea7694c06b59c9253847037b', '31.222.203.2', 1676864059, '__ci_last_regenerate|i:1676864059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03dce35de4e6629b22cc710926597f9f0427e8e', '31.222.203.2', 1676864059, '__ci_last_regenerate|i:1676864059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b92688d0b189a238bc0d123b99b529d6c6388a', '31.222.203.2', 1676864059, '__ci_last_regenerate|i:1676864059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3baee5dedeec7f1357ba129e83f7066aa27b87f6', '31.222.203.2', 1676864059, '__ci_last_regenerate|i:1676864059;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dd00b0b031b7d81ea39813d7c07b826a07e3a4', '31.222.203.2', 1676864059, '__ci_last_regenerate|i:1676864059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85a0c852f6176aa4d16e66ef5afed49cb4cf3cd', '45.120.39.89', 1676868350, '__ci_last_regenerate|i:1676868350;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676801654\";last_ip|s:14:\"37.111.218.252\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676866247;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e551ad792c052663ee3ff7a5224b6c7f09cb08', '172.105.247.100', 1676866218, '__ci_last_regenerate|i:1676866218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36e98b834fd5183fcec23c37912bc2432fdf1d66', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f97581304331e3b851b29d0861ae337e58ff5c', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5666310e70896cc5e008284e644f5e8a070fbd', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17cba719e94b4d65ff1823e44ff20b2897418d25', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88586d9b76d3e478144438b5145629cf9fdc0f43', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2bdb6371c2824e47ad886a14d150f437ff42766', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92ff7363c4307beaf486bd3c849aa5eec624875', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e919d024dc2c57d6930b706b8cab972764b50b27', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e1e372af6c38a916a097e9f97bcfcfff44ac52', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2370b1d4622887bb6865aa7ab40d85259a6579c8', '172.105.247.100', 1676866219, '__ci_last_regenerate|i:1676866219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f333e26d09897c75cfe705d0332f742230ff5c', '172.105.247.100', 1676866220, '__ci_last_regenerate|i:1676866220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db38fb21408459160422e6b94453152cb069609c', '172.105.247.100', 1676866220, '__ci_last_regenerate|i:1676866220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e113d2f5b347ff5985a2930a32aa98cfc394fe48', '172.105.247.100', 1676866220, '__ci_last_regenerate|i:1676866220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea10ffdbb1ec4b475dfae262c3fb855ac6454b62', '172.105.247.100', 1676866220, '__ci_last_regenerate|i:1676866220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52ae37906e023de41e85b4a50f6a797a459b5a1d', '172.105.247.100', 1676866220, '__ci_last_regenerate|i:1676866220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7af25990e3513d0e5dbb110844db6285d11a6bc', '172.105.247.100', 1676866220, '__ci_last_regenerate|i:1676866220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb35cbaf3d5c07f08805acfac4bbdfb41d88be1', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b800738d958fa95d41e28dbc417641a50d5e71f0', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86ce619dff4bed635826f31bc5c7cac9cd02e33', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202a57c3121c0bdf397a06a34fbd06644bf384a4', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc06d99f7336c7dac773498535bde53e90ee16d', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fffd1d3a7ad395425d48b4c094d9ebb16a2fef9', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9dda82309b93edd5bd12b34e8816c737d377a18', '172.105.247.100', 1676866221, '__ci_last_regenerate|i:1676866221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a6cac07fe55f964bb71947e70ee9bdd01633d8', '31.222.203.2', 1676867623, '__ci_last_regenerate|i:1676867623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da11ee12fcbfebae120bf231581c0269d9e8329e', '31.222.203.2', 1676867623, '__ci_last_regenerate|i:1676867623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4118b13f83afdc6051f88e5d2c106f875efab6', '31.222.203.2', 1676867623, '__ci_last_regenerate|i:1676867623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5275dd9c7599bb67a5b4d056ed879c4153c44793', '31.222.203.2', 1676867623, '__ci_last_regenerate|i:1676867623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82ecfc00c219964267cf28df452708cb4edc52e', '31.222.203.2', 1676867623, '__ci_last_regenerate|i:1676867623;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6fd510dfa5328da4bcd6db5eb8d554a1999ca6', '31.222.203.2', 1676867623, '__ci_last_regenerate|i:1676867623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d161e19b41a5544eda64bbe1c74cc9e4cdadea0a', '45.120.39.89', 1676869468, '__ci_last_regenerate|i:1676869468;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676801654\";last_ip|s:14:\"37.111.218.252\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676868472;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc08ccd6510eb88cfc0e79cda5f0b089b007575a', '45.120.39.89', 1676869469, '__ci_last_regenerate|i:1676869468;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676801654\";last_ip|s:14:\"37.111.218.252\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676869468;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41327d4c15258eaac7a5562fb6cac7751605bd39', '172.105.247.100', 1676870417, '__ci_last_regenerate|i:1676870417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('378bd1dd7d32c312ad61e75862d844e47d89ed82', '172.105.247.100', 1676870417, '__ci_last_regenerate|i:1676870417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce3c10a258913490c4520eaf14b2adc38175745', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299029eff50bef3cf1e9eb82ca7dd8301b717b03', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794918a44305a29c0c5dbe0de1fc3b10584d367b', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c708004d27347810dc5e13f8892c09909ab71ef3', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f05eb932226df536d3be8487416b9f5ceb982fd', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46b3c070bff52991873d975679181d3a57eb1f3', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fcff2bfb1b583050bcb4059fcd13ddb3808319', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9e5d3bce2be2dd3b650e422cf116e6b4d17131', '172.105.247.100', 1676870418, '__ci_last_regenerate|i:1676870418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c98c75eec871d9374146c80d31277db8ebd36242', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f68c57bcbabbb582f9c6d31bdb40c608f88e2a', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a01c7b35054994e8247defad1d6a69c4d0aad7', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f967ae82d9c316763c3a94361a3f8ed76f0ca79', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0583c71e3e07ebf4c7c1eea1f8782d36ab2b4cc2', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d48d6309c227e82d348a8a7edb3a6aae5faf411', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f535c2a1f628d799fa96cecf8cc40b814dcdc22a', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5c2dfabceffb384257895bf4c58f8e466271ed', '172.105.247.100', 1676870419, '__ci_last_regenerate|i:1676870419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be17df417f1f70f0aa5186dccc56700fb58da97', '172.105.247.100', 1676870420, '__ci_last_regenerate|i:1676870420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('415df0cc3426cd1253f9247309c42a68a7c0af4a', '172.105.247.100', 1676870420, '__ci_last_regenerate|i:1676870420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9971c15e3a9b8ff67250152b9086a4fc11e706d', '172.105.247.100', 1676870420, '__ci_last_regenerate|i:1676870420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386e74574283edc3d7d1dfedfd8396c13437ae1b', '172.105.247.100', 1676870420, '__ci_last_regenerate|i:1676870420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59288cdae6fd7377573e3282b6346c1dac9da6c2', '172.105.247.100', 1676870420, '__ci_last_regenerate|i:1676870420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('607b8b582017825a52f106004d785c108df3a87a', '172.105.247.100', 1676870420, '__ci_last_regenerate|i:1676870420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87b2224250ca25bc58fe2de86b12455f00024bf', '31.222.203.2', 1676872990, '__ci_last_regenerate|i:1676872990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f2f7cf3c499116830980a7410f4d6b5641ec470', '31.222.203.2', 1676872990, '__ci_last_regenerate|i:1676872990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c915bb96d6ce47ca8185fd9c2335b208f30c12', '31.222.203.2', 1676872990, '__ci_last_regenerate|i:1676872990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60731b07e96cdd3f0ad062fd98e0c5569281d56', '31.222.203.2', 1676872990, '__ci_last_regenerate|i:1676872990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d013fed2905271c901a062e0e63f909fc83c3d', '31.222.203.2', 1676872990, '__ci_last_regenerate|i:1676872990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f739a790c52498534181ecdcc1d7f402d41629e5', '31.222.203.2', 1676872990, '__ci_last_regenerate|i:1676872990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a7cfd2a332fb47ab47cb7041a452bf40a6f841', '31.222.203.2', 1676874859, '__ci_last_regenerate|i:1676874859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823df0d58037a0958ffd992b1e56d03221d74f23', '31.222.203.2', 1676874860, '__ci_last_regenerate|i:1676874860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4075b4974f7b2169963d11aac4faf1005c074fd6', '31.222.203.2', 1676874860, '__ci_last_regenerate|i:1676874860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17cb4c67ecd9ab2a554036d3c91c1e6b7ed7903', '31.222.203.2', 1676874860, '__ci_last_regenerate|i:1676874860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8058cee498f2089cd887aff4bcc8a83b311575b4', '31.222.203.2', 1676874860, '__ci_last_regenerate|i:1676874860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b834aaaa645a095ef05f343f9c945b5d983128e6', '31.222.203.2', 1676874860, '__ci_last_regenerate|i:1676874860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640fb736aa2024b503eb52db37e264731d21b114', '172.105.247.100', 1676875219, '__ci_last_regenerate|i:1676875219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f52738ee173de2de5ea1b9473300bfc325a8eee', '172.105.247.100', 1676875219, '__ci_last_regenerate|i:1676875219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7598584ac191d61e529c4f4db0f8b6b12ea2591', '172.105.247.100', 1676875219, '__ci_last_regenerate|i:1676875219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2297ddc2b407d7faf94c4bfc5e284d3e8bd11bd9', '172.105.247.100', 1676875219, '__ci_last_regenerate|i:1676875219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ff3d7b7562ab962e83f2d151f608ecf286bc4ad', '172.105.247.100', 1676875219, '__ci_last_regenerate|i:1676875219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bfb01f015e94976237cc3a61cf69319d001b76b', '172.105.247.100', 1676875219, '__ci_last_regenerate|i:1676875219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3659a0d49c0b2c509d6ddd7287e67a47be2e55ee', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df992fff0a05737377f2ea0010e6207491651f27', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db33683b25d8248f9aa07de6bdc4128556bea8d9', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119d2f32a81d413e50813008b59cf4b61061a9cf', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64ae10b1ec53666bd5912b5bff71508bbe51ce1', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d105fb53106daec90bcbb649a52608947ce925', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1061fc294fcda5ecfde039ccc0d897b166e186c', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829d999d519e450eaaad74eb864afd2bdee94725', '172.105.247.100', 1676875220, '__ci_last_regenerate|i:1676875220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d2580986a6d797a4390a9e8d0d12d711002b80', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6493a89f3683138059a3961fc097e6da5d47d22', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e453ecc03a8b067be3e87da92063ae655d38d6', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad23aeca22090356774c82ccdbab34bcd3f8b26', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f8fe7172a7c881db555916bdfc232c9480dab7', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cfc93770ed9e73ddba4ef8944bc93f2711ae99b', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045f90c552e8958c6c0855abc674cc100eb528b5', '172.105.247.100', 1676875221, '__ci_last_regenerate|i:1676875221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b4e91416a692fc3061d6de5f7e4b969f470e9c', '172.105.247.100', 1676875222, '__ci_last_regenerate|i:1676875222;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac1a849b605362541c16a7a2f2a50f9e9bbdca90', '172.105.247.100', 1676875222, '__ci_last_regenerate|i:1676875222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6421ba508d101e6078302083c387a8e7b624fdf', '172.105.247.100', 1676875222, '__ci_last_regenerate|i:1676875222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f36f285b9a7862d555296543eb18a75670f0311', '45.120.39.89', 1676880247, '__ci_last_regenerate|i:1676880247;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676880237;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95807695b0db4f5a301f7a515a704ab14b51d2b1', '31.222.203.2', 1676878386, '__ci_last_regenerate|i:1676878386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f5b4305af7fc716140f7c16012df03d9ff7af6', '31.222.203.2', 1676878386, '__ci_last_regenerate|i:1676878386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b91e22487b43068816ef6401fe4c6b5406a166f7', '31.222.203.2', 1676878386, '__ci_last_regenerate|i:1676878386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f59eb5b7b99e3bcf208a5ba0c247b291247d19', '31.222.203.2', 1676878386, '__ci_last_regenerate|i:1676878386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68344093787bb30f29b69aed80ec56e0013e7482', '31.222.203.2', 1676878386, '__ci_last_regenerate|i:1676878386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa4dd8a2b817115c61848f12fb367b8df525b4f', '31.222.203.2', 1676878386, '__ci_last_regenerate|i:1676878386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ac7bed5c053f27ec213c1d90b9a26fa8c5497ba', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20911a672f92ad3423baf51f518958cd71c25c0e', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b93c02d23e794be1454c2a0a64d824f57f2641e', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d932cb683459b074e799715e2ec1a1bbd5165bd', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20aa847b1731b0b6ce6ac69b1b02eee7b704475d', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e006ec38606660d7b31cdb691ccc183d23d9ab98', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b298b2af589a83f677a1530bb13c4ad511fa02', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64191c0694338fd238598ff51c0c9f420f7932d', '172.105.247.100', 1676880017, '__ci_last_regenerate|i:1676880017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecfee378960d270041d29ace8f29186acffb7983', '172.105.247.100', 1676880018, '__ci_last_regenerate|i:1676880018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bbf59267c4e1e0fad4a8da8825c28c7f535e771', '172.105.247.100', 1676880018, '__ci_last_regenerate|i:1676880018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e78a4dbe8af607edd0229ccfd957cb0f3eb009e', '172.105.247.100', 1676880018, '__ci_last_regenerate|i:1676880018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110f0f4787ee3df8e0e9c0fd39c9ee378e401beb', '172.105.247.100', 1676880018, '__ci_last_regenerate|i:1676880018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd1cd7dc274966d0b33de6a0720d6248f58c2201', '172.105.247.100', 1676880018, '__ci_last_regenerate|i:1676880018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9276508a1cd3c69cbaa842dd81f1e22e24d7fa04', '172.105.247.100', 1676880018, '__ci_last_regenerate|i:1676880018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34c42992e7ef337dff58d8feebbef0dd2aff74b', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c86d8daac975e34ee4e2a8e4c72af2a6c28b16', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3b98c167f6552ad5cdc41270f2461f0e6d4ffb', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8e612769bb8e7943a7c6513ba7454321bdbe2b3', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf4708a195f09d2903c63e5a0eb018f48f4795c9', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f152dc64745421de2f7900ca3e4fd01bbb36df1', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eed9ad42fdcada7973add077a16a9eb537d50dc', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c8089365174098954f880a3914b17831673eb6', '172.105.247.100', 1676880019, '__ci_last_regenerate|i:1676880019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('738aae6b411d7ceb1c2942011e03e8fab55d52f5', '172.105.247.100', 1676880020, '__ci_last_regenerate|i:1676880020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('081e6bbba7bfb133a5ba2fbd01c881fb75fcc4ae', '172.105.247.100', 1676880020, '__ci_last_regenerate|i:1676880020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffee969b38d24ad4bffd8aaca218f8c5f6c36193', '37.111.217.15', 1676882152, '__ci_last_regenerate|i:1676882152;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676880247;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('216021ca40cf52553aff5b927bed164c92d30409', '31.222.203.2', 1676880306, '__ci_last_regenerate|i:1676880306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc0a5552506bc9742dbfb7c8e4a22b512c3ecb1', '31.222.203.2', 1676880306, '__ci_last_regenerate|i:1676880306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbebcc580b81208455d9b2ce707464754e77b9a4', '31.222.203.2', 1676880306, '__ci_last_regenerate|i:1676880306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2cbde96955e8c54fcadb65fbba56a94c2f53718', '31.222.203.2', 1676880306, '__ci_last_regenerate|i:1676880306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008e93091aae6b2a8bdf40226326e5ee8b054e93', '31.222.203.2', 1676880306, '__ci_last_regenerate|i:1676880306;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('938fe58652eff31752adb1c2e99e74fb7d53b2ed', '31.222.203.2', 1676880306, '__ci_last_regenerate|i:1676880306;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a2830433e2a71e2c93aad306f3ec8337513603', '37.111.217.15', 1676886866, '__ci_last_regenerate|i:1676886866;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676882250;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65339041a586770cefeb6875f85d2634a463dfe', '172.105.247.100', 1676884216, '__ci_last_regenerate|i:1676884216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef76e088e576e92ab02c8f75affb10e7ea2d348', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cd68ef9a7d116b6da53728692f9408b49cb21a', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909e39ee1a03c49a61e6857057e31261c392bd01', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f2826172e5542e9178918277794c5c8de05886', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b2b137008b2609ad7bd939a1d4d3cef25194f3', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48664ed27a8a3f62e62d06e049c191f284431f86', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55256ef6b8c06aa33b5c9e247c6cfd9744e281f4', '172.105.247.100', 1676884217, '__ci_last_regenerate|i:1676884217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2ee92e3a01322186ba337d17c911e5f508389b', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7404de0261e33eacd4a1a0ce9a81f47217dfd63', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87704f7544303f021a2bdb4b0cf3ec9e9c4308d9', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4d688f1a364be225e16869156ce379d04ae596', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9a05ca2492984167d0a499c1e44869544834ed7', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6b323dbbb307f8e01e17e7f03debb639a3c9f6', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a80d09fcd0c2caf3dfd60c74de707556988950', '172.105.247.100', 1676884218, '__ci_last_regenerate|i:1676884218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c187b68a70e0bfe13af40374ca8af1951b072e', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e0568b577d6c4c9e76fcbdbe9f22eb1ab1d6275', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c8068d6e1476a95a0dc601e8d990abbbfc1617', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c55ca48268ed279af80c407e422b0bb6179eb62', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34c04af687d03bfbb32f7e9c00114b150307062e', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd1412951682975082ebe68c92f339295d391bc', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7c856fc25f4a591cccd5c8bc4eb70a625e4dd3', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c318deab08f31b9b5f48ee22c37de95f8777dc', '172.105.247.100', 1676884219, '__ci_last_regenerate|i:1676884219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('843f62be2b594f83f2330a145b846e9c33c75b84', '172.105.247.100', 1676884220, '__ci_last_regenerate|i:1676884220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdb2c193608171980b2483f7bcf319d30c87721', '31.222.203.2', 1676885675, '__ci_last_regenerate|i:1676885675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd042f8fb24006532cd4d3617d637e307174434', '31.222.203.2', 1676885675, '__ci_last_regenerate|i:1676885675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0632c3e2e1f9a590561321e482219aa58c3d483e', '31.222.203.2', 1676885675, '__ci_last_regenerate|i:1676885675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e9c848d6f768febdfe6fca28e5628652b217139', '31.222.203.2', 1676885675, '__ci_last_regenerate|i:1676885675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6869a86b0e5cfb521feae38e1d30de029a338711', '31.222.203.2', 1676885675, '__ci_last_regenerate|i:1676885675;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c053c0bf10456b949e9f87bce43bfb69559ff6ba', '31.222.203.2', 1676885675, '__ci_last_regenerate|i:1676885675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ca0117b804c98d24fcce048a2652f7eae3bb061', '45.120.39.89', 1676887957, '__ci_last_regenerate|i:1676887957;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676886879;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d200116862d5ed30d6df0da1957a0232f2b8a7', '45.120.39.89', 1676888788, '__ci_last_regenerate|i:1676888788;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676887957;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95c7ea63f279cfdfb197f7bf1e880f75e0eb704c', '172.105.247.100', 1676888416, '__ci_last_regenerate|i:1676888416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51312c2b80afd8907203185e3e961a1ab029a56e', '172.105.247.100', 1676888416, '__ci_last_regenerate|i:1676888416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2258fa530d8458376f9639edee371a70359b84c6', '172.105.247.100', 1676888416, '__ci_last_regenerate|i:1676888416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08c4c2dd4574a9d00c7c381645a162ca9d59142f', '172.105.247.100', 1676888416, '__ci_last_regenerate|i:1676888416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d9385fc92539072461e95469fcfc4d0bd1a52a8', '172.105.247.100', 1676888416, '__ci_last_regenerate|i:1676888416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b05bf16027984ae0d6fd338970f6797a82efcd', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b5e8c5cea73b590f6ec4a5b428b29ee11b74f5', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189c79b2a376a34e3c46c66de6f652f668077d95', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3134705da335a08132cc852e9039a847c40e8630', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acc61d238dca4985e333c4cdab44065f4c8ef2d', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c721151322e76ee1de971de1b3ed9cae56a6b58f', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('050694742a8aa4cec4fa2668573a752829412910', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58107cd0854ce8b8699a56edefb50b465ac7aee', '172.105.247.100', 1676888417, '__ci_last_regenerate|i:1676888417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c591c063235f905dc1c280c4aa0160ef8e92185', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d62412ae3785f54d9b119ce8ee1ff16bb5b0e457', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8950b89a3b05f89a298c6b2bf69e794723fb9c', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5015328f9b4535c0617c38498c0a43fb47dc4e8', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d80c55409f15852ad00ec76a6a6361cdd76342', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c67147c14c8a8fbe79e3ce19aceed8cbe7e9c0b', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd744d6ff4beb00249a49b6b71f54e47e48616f8', '172.105.247.100', 1676888418, '__ci_last_regenerate|i:1676888418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9adf4dd50c5d23abb10277793b5cd3a87c30a203', '172.105.247.100', 1676888419, '__ci_last_regenerate|i:1676888419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('060cc64f3cd9162af7ad141ada2971005fabade5', '172.105.247.100', 1676888419, '__ci_last_regenerate|i:1676888419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc09ea7f12989bbc8dfd753c8720fb3f68be03e', '172.105.247.100', 1676888419, '__ci_last_regenerate|i:1676888419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d381d5cee1f713844ba2e49e74cf2871b51bda96', '172.105.247.100', 1676888419, '__ci_last_regenerate|i:1676888419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dab7a3a0ba6c250460d3af7d4702fec21dae85d', '45.120.39.89', 1676895596, '__ci_last_regenerate|i:1676895596;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676891673;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fd5ffb0d87d97493d8222395b9e581c8ebcfe92', '31.222.203.2', 1676889184, '__ci_last_regenerate|i:1676889184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763c3763c49b21752acc1e80e7062d68a35b3cfa', '31.222.203.2', 1676889184, '__ci_last_regenerate|i:1676889184;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26966a5ffdf556244299b24dd504a0db00b25f51', '31.222.203.2', 1676889184, '__ci_last_regenerate|i:1676889184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a41d579616f9fe9701dd0456f64460b9c57b541', '31.222.203.2', 1676889184, '__ci_last_regenerate|i:1676889184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aab5f70c882587c0059de1e33450bf6efda3d6d', '31.222.203.2', 1676889184, '__ci_last_regenerate|i:1676889184;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d210d6e361754ee3b32b9caa71124ac33e0abc', '31.222.203.2', 1676889184, '__ci_last_regenerate|i:1676889184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80023ad89b5334cb155649a1642fa731ebeb163b', '31.222.203.2', 1676891102, '__ci_last_regenerate|i:1676891102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5ba8140b8a2416e13221946697e46e5b86019c', '31.222.203.2', 1676891102, '__ci_last_regenerate|i:1676891102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809dcd78a56c66fd381463b33d30bf89b2b2141f', '31.222.203.2', 1676891102, '__ci_last_regenerate|i:1676891102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd90efb6af460f13ed23cc5fd97593bd99472858', '31.222.203.2', 1676891102, '__ci_last_regenerate|i:1676891102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6872272674b316f7691c1a14170a42afd0d31196', '31.222.203.2', 1676891102, '__ci_last_regenerate|i:1676891102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d5b3e65953f284c28b2d1ea04be5ff671e9edf', '31.222.203.2', 1676891102, '__ci_last_regenerate|i:1676891102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7af8c57050ac33b5020fe775e826377306a8cd6', '172.105.247.100', 1676893217, '__ci_last_regenerate|i:1676893217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af3fce642436e9acfcb8336255000f8327203423', '172.105.247.100', 1676893217, '__ci_last_regenerate|i:1676893217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654c6874a59b11274524f5e6c9f03ac7bb96247b', '172.105.247.100', 1676893218, '__ci_last_regenerate|i:1676893218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafa71b747a4d06acde83fef35b0d930587789e2', '172.105.247.100', 1676893218, '__ci_last_regenerate|i:1676893218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc050868ea0f143fe1b831087d0ddda7cc5321a2', '172.105.247.100', 1676893218, '__ci_last_regenerate|i:1676893218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fc59cc89e86ecc5f8bb7f997979714ba1180051', '172.105.247.100', 1676893218, '__ci_last_regenerate|i:1676893218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dba4cf500795aed07c5b5ee68d1757b263e51a1', '172.105.247.100', 1676893218, '__ci_last_regenerate|i:1676893218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c16f25ebde90be7ec64eef69f88c494fa82f81fc', '172.105.247.100', 1676893218, '__ci_last_regenerate|i:1676893218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6d496efe60f3383b8f77a17d58c29e00bf6192', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0556ee6a6ed704824168a7e2f1210b474e283969', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbfbff8bd3a86267e6696862f3d75475275cd8ee', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11acd5b4cf23b10e8aadabad7ea3ac75180fa5c8', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cddaf802c011ef23a7a49defe12b2301e206d151', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8d8a2d2680d8f90517ef0c770221039b98385f', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d75bfcae07c4888380f2a55555f79d9fda70aa7', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f7d490bc0ac0c1dc35ecfcadf1ee913aa52f61', '172.105.247.100', 1676893219, '__ci_last_regenerate|i:1676893219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb7daff2da0b0dfeadc0299f5049d1da7e8db29', '172.105.247.100', 1676893220, '__ci_last_regenerate|i:1676893220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5802b9c51db8a25d3627709122508c9a6226a548', '172.105.247.100', 1676893220, '__ci_last_regenerate|i:1676893220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30d40acf8fd091ba53f6d207f423c1f4e6d8fb1', '172.105.247.100', 1676893220, '__ci_last_regenerate|i:1676893220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9500e3e7564c1546a66ef92bcc732deca0de2d8', '172.105.247.100', 1676893220, '__ci_last_regenerate|i:1676893220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec2db3431d0322793301b5d5f676db3bc03e664', '172.105.247.100', 1676893220, '__ci_last_regenerate|i:1676893220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def7188262d53ee910ecce5d8b5d3a8c2f36a553', '172.105.247.100', 1676893220, '__ci_last_regenerate|i:1676893220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79b108c3dce6dc6a76bcd71c7e453e16af0d173', '172.105.247.100', 1676893221, '__ci_last_regenerate|i:1676893220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd90de1d5b94213b0c686bffc68d8bb07c188b99', '172.105.247.100', 1676893221, '__ci_last_regenerate|i:1676893220;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f91cf8c9bc1aee6d828c8de54b71914d0586190', '37.111.217.15', 1676896588, '__ci_last_regenerate|i:1676896588;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676891673;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb7a331fc37e0b488a229635be77f4da9b49f565', '37.111.217.15', 1676899552, '__ci_last_regenerate|i:1676899552;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676896593;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b7e0c10c35f869fa04e3a26bb70811d0a4431a3', '172.105.247.100', 1676897415, '__ci_last_regenerate|i:1676897415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593f33dd85d28fb085fa41b7ed80767913c0aaa7', '172.105.247.100', 1676897415, '__ci_last_regenerate|i:1676897415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393178751fc58cbf9bdf8fc54b5f5678d5c63699', '172.105.247.100', 1676897415, '__ci_last_regenerate|i:1676897415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff85bf8df9d4107294bd4495f479a3929199ee36', '172.105.247.100', 1676897415, '__ci_last_regenerate|i:1676897415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0b4636cc0e996c9de098e3129f2dcfc1d0f1e4', '172.105.247.100', 1676897415, '__ci_last_regenerate|i:1676897415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eb70a111b45dc697c72c586186c917ad14df6a8', '172.105.247.100', 1676897415, '__ci_last_regenerate|i:1676897415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9281fa9bf0ffab9eed0d62c57823d4c2e7990aa6', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614a4501f6761b787939f90eb5152355f36ec1a9', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e97d9056de0d28d57229f66d6a1ab6c569f13d23', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8567794f7f44a182603046ca6e8f7ce4bd08da7', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6358bf31fa6c48f0eb6d2e8e930dff4ac26e847b', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ead863de5d8d60bbc13d58842c0ba91e2d896db3', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d1ddc3f947528a6dcc7bd4e62d93ba5f94366f', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5484fd5830c9b3b49aaf46bbeda9f7e279543acc', '172.105.247.100', 1676897416, '__ci_last_regenerate|i:1676897416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c0004aaff60f157fd5ba06953f4aa77c797f101', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd051c59ed0337ec98542146bfb2fc21dc1d46ac', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3daabe1dae2b66bff014e0ee461c9e69266b39', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08fc21f2c1b25d24c87c9aa7e089dcfec3d39888', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('742868dc85dc6bc12f380823b137cf3530814511', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cff2f8edfe3fbdee3d29448bc23bcd23c2b2cf0', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f67a6911001b1aace0ed5067dfba6ef42c322f23', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b22766e75105dde013f6fbd2d10ce53d1f3ace1', '172.105.247.100', 1676897417, '__ci_last_regenerate|i:1676897417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90bc8616f0cc0c6bdae13babb6ae9242691d735a', '172.105.247.100', 1676897418, '__ci_last_regenerate|i:1676897418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41f620d8b4935d539510751bbaa2a25ff08528d', '172.105.247.100', 1676897418, '__ci_last_regenerate|i:1676897418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785db804e6e3e92ce8f2c56990a300b6f29c75d6', '37.111.217.15', 1676900635, '__ci_last_regenerate|i:1676900635;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676900633;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a506dc5cb44c2505cfd0cc23c2f18793b243613e', '31.222.203.2', 1676899987, '__ci_last_regenerate|i:1676899987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a809f3a3823e92c100a0db5bf413005c70f65e', '31.222.203.2', 1676899987, '__ci_last_regenerate|i:1676899987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbc80e4e7593be0c3de691efc6195126a527d2a5', '31.222.203.2', 1676899987, '__ci_last_regenerate|i:1676899987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3efa89e9c910936aa7d2bddafa96a3b0a9009c8d', '31.222.203.2', 1676899987, '__ci_last_regenerate|i:1676899987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bb2677632f61651206c91f3b3a772906d979bf', '31.222.203.2', 1676899987, '__ci_last_regenerate|i:1676899987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d01b5f8dc87639ea06d9260dce80e3666286f5', '31.222.203.2', 1676899987, '__ci_last_regenerate|i:1676899987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1da66e384745dba214bbec444db4432e84843a38', '37.111.217.15', 1676901381, '__ci_last_regenerate|i:1676901381;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676900636;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3978321a200aecb9c720b991807900711f6433', '37.111.217.15', 1676901825, '__ci_last_regenerate|i:1676901825;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676901381;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb63e666e06c71349a09999326bca9acd814afef', '172.105.247.100', 1676901616, '__ci_last_regenerate|i:1676901616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c61646ee9eeceda6bf0d6f2611a91dd39b901aea', '172.105.247.100', 1676901616, '__ci_last_regenerate|i:1676901616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79fea1e5ea6893776c96ed168b56877cf24bb135', '172.105.247.100', 1676901616, '__ci_last_regenerate|i:1676901616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba4998755d04c9f4bce74534e3f00ea96abd132', '172.105.247.100', 1676901616, '__ci_last_regenerate|i:1676901616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9593b7e99f506b5968dffbabf1de3e0de8b0b4', '172.105.247.100', 1676901616, '__ci_last_regenerate|i:1676901616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0574d6e3c94942335b6ca8017087a758bf2ad74', '172.105.247.100', 1676901616, '__ci_last_regenerate|i:1676901616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694f9fc8a34a82827b20b9db7dc2ccc05c03194b', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d57725d397589c05956092647cd96af73c73574', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf20fd1730037360cb9c676adca7475dffd6eb7', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d6be3ef991c7da70352a930d9e756b2016a07dd', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3507c91d80856cbfb62dae3f11806753ce2e4eaf', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f983a150b6dcb6eac8b28ebab982e84251d3c5', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466ed223afa8c7f3cb3b91a2c059b14721869ee6', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ab94b912bde552a2cf231a8a0486211847cb53', '172.105.247.100', 1676901617, '__ci_last_regenerate|i:1676901617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff255acf208528e60b99d843a901d1da925c2004', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e36049f103cb35b02abd006c73e0951b930e21d', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72cc9535926ef7ca8e4c8107306add825936822c', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0dcf193a159c6931fd2b9880b11551681e4714', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ba50df25f218499485dd31d542d5b8a6fda75cb', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb752136177c21bf4af01f347d60dbca0a5a803a', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d2b1c2b501102ff388303239e63e965a71980f8', '172.105.247.100', 1676901618, '__ci_last_regenerate|i:1676901618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460ec9cb559ca4072fcb70d9f8465abd60461ca2', '172.105.247.100', 1676901619, '__ci_last_regenerate|i:1676901618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7d452aacd659b0206d4d420c2fdea279b8c064', '172.105.247.100', 1676901619, '__ci_last_regenerate|i:1676901619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5debe3b75f0c1b24731bb9d09796b8ba8348ef9', '172.105.247.100', 1676901619, '__ci_last_regenerate|i:1676901619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc52e1364b25050a7bcaf985ad8d30499b0110c', '37.111.217.15', 1676903125, '__ci_last_regenerate|i:1676903125;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676902052;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dac307e5e82a0237e17f26fd363062ac3bd6135', '31.222.203.2', 1676901862, '__ci_last_regenerate|i:1676901862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ab8fae57283ab2ca0f3af002a4389697fac74f', '31.222.203.2', 1676901862, '__ci_last_regenerate|i:1676901862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2ac6ff954e3a7ba253b1bec946346a10b1f08b6', '31.222.203.2', 1676901862, '__ci_last_regenerate|i:1676901862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45142547e4c514dd7c8634b816bd870ff297356c', '31.222.203.2', 1676901862, '__ci_last_regenerate|i:1676901862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6add25941269124f3ba7be890363a4747f11e331', '31.222.203.2', 1676901862, '__ci_last_regenerate|i:1676901862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef33ef7304f0225863b67dd2e5d53faf219d1128', '31.222.203.2', 1676901862, '__ci_last_regenerate|i:1676901862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc36c4c1d4ed2645fb50765251d5915b68893012', '37.111.217.15', 1676904563, '__ci_last_regenerate|i:1676904563;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676903208;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8165e20a8d4af6fb33f7374def23329597e1c022', '31.222.203.2', 1676903541, '__ci_last_regenerate|i:1676903541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89bb3b799ba47df8a93bfd0581ff6df1d54770a4', '31.222.203.2', 1676903541, '__ci_last_regenerate|i:1676903541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73b52436005efddfd8267a0531d3e9c9f5c9077', '31.222.203.2', 1676903541, '__ci_last_regenerate|i:1676903541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5372f2b1cdabe31aabc8384cd5b35521cc235d', '31.222.203.2', 1676903541, '__ci_last_regenerate|i:1676903541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7676dad7520a9dec036f555b639e49c84db3ccd', '31.222.203.2', 1676903541, '__ci_last_regenerate|i:1676903541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b7d3b8c9cbafe2aff7d7296e0c06abc40252c67', '31.222.203.2', 1676903541, '__ci_last_regenerate|i:1676903541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6553ad8e8176591af30f851fe1459d2050bbe33d', '45.120.39.89', 1676904957, '__ci_last_regenerate|i:1676904957;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676904949;register_id|s:3:\"347\";cash_in_hand|s:9:\"5070.0000\";register_open_time|s:19:\"2023-02-19 20:25:59\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf2f9423e8e0f87cde2a4f0c09ba8df6be1e8b9', '45.120.39.89', 1676904973, '__ci_last_regenerate|i:1676904957;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676866009\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676904973;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39aedb27a9945aea3b8dec70a04dd9214c7a5775', '31.222.203.2', 1676905433, '__ci_last_regenerate|i:1676905433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfab1adc4a85464b05806c6a41fa9a9da8ade8c7', '31.222.203.2', 1676905433, '__ci_last_regenerate|i:1676905433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5920ad0b3f5a4ccf1136edebc8952524af5be86a', '31.222.203.2', 1676905433, '__ci_last_regenerate|i:1676905433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c77412d657b69552e3f03003a57dd1536ce528f', '31.222.203.2', 1676905433, '__ci_last_regenerate|i:1676905433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84ceb26f3eafbde37b464523e8a5a53944760c5c', '31.222.203.2', 1676905433, '__ci_last_regenerate|i:1676905433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6abe51ddc28658999be998228373a5f3b5f9702', '31.222.203.2', 1676905433, '__ci_last_regenerate|i:1676905433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4287af11e51ec3b99fc5a12dd29e5477834aff5a', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e764d8ead7197611911f00e2c1e8db4e95ae9a1b', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8273fd0bb1ff8b656d1bf2301d6b2914dc0a0743', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bcfa4ea1bd17e9b3f041bffa087d20460e4840b', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8ebdfad54b7a2b6fdc1257a038b5970f1bee44', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0161443d6c627c60f74400754cf63f3ba919f3', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569421669f165b71af6d4efcca58ad49856451cd', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bed90f5a5bc34b35d8fda81d9433ae8cb2f84d6', '172.105.247.100', 1676905814, '__ci_last_regenerate|i:1676905814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d595789a59af499751eebecb1ac9af0ca25f506c', '172.105.247.100', 1676905815, '__ci_last_regenerate|i:1676905815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3095394bfb030e0859ab458ca97e2b125aec6c', '172.105.247.100', 1676905815, '__ci_last_regenerate|i:1676905815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52254bf6023b2fd9c10850b937ad4569a2dc0cb5', '172.105.247.100', 1676905815, '__ci_last_regenerate|i:1676905815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46f90b1def838583d6c482ee495f553d0f71c31', '172.105.247.100', 1676905815, '__ci_last_regenerate|i:1676905815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4fd1d2d7d9c41807d0d50872587322d58ca683', '172.105.247.100', 1676905815, '__ci_last_regenerate|i:1676905815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55f07caab90696da8d9544b8fe1811e0e218158', '172.105.247.100', 1676905815, '__ci_last_regenerate|i:1676905815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af8d036115ff9200a0090fc7be03988fd97a7b6a', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e0dc468feb3596dd61dcfff5dacc8ca20cbd20', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d5121d180a95cf1e650231ebd89cebe9541541', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79045ec2d66f0f3f83bd7658f7734106a8647e8', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c88387e585d338550f8fd972a4c4822491c7d8f3', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad01bd60686aecf0cf55f8e52f8ac2e576acd8d5', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9906975949d1144e2a031387dc4c8b354814db85', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38153cc2636eadd9dd5d48134d3eb5077fdbccbb', '172.105.247.100', 1676905816, '__ci_last_regenerate|i:1676905816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ae5225a2c2485857c9c75239bc1b011e45f66b', '172.105.247.100', 1676905817, '__ci_last_regenerate|i:1676905817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a937424a32cba05eb034cd87153558d9d692fb1', '172.105.247.100', 1676905817, '__ci_last_regenerate|i:1676905817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ee1fe17b81a0b3d4ec24bb7adad99f8ccf4ca3', '31.222.203.2', 1676907313, '__ci_last_regenerate|i:1676907313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110b5c4f077c4f65e9af14d59e510ac73da8eb8a', '31.222.203.2', 1676907313, '__ci_last_regenerate|i:1676907313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5ac0cb205ed3fdd348647902b8553810f1f3d1', '31.222.203.2', 1676907313, '__ci_last_regenerate|i:1676907313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ddeb7a6d91e9920452e0be6b4d4722dd4bc0a7', '31.222.203.2', 1676907313, '__ci_last_regenerate|i:1676907313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a959be8621d59d02df235096b21b96293fcf3885', '31.222.203.2', 1676907313, '__ci_last_regenerate|i:1676907313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d025f1d27416946dc06176b9a38bcfa2b8884003', '31.222.203.2', 1676907313, '__ci_last_regenerate|i:1676907313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada6fd273b2127609f563eb25670768898d69557', '8.131.70.17', 1676910004, '__ci_last_regenerate|i:1676910004;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d1ab830ad84f73819084b4974314b48e33bcec', '8.131.70.17', 1676910005, '__ci_last_regenerate|i:1676910005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c0dfb94adc5dd32a5a1c36ac9d698e079a8057', '8.131.70.17', 1676910007, '__ci_last_regenerate|i:1676910007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324c288e72a43a2b1139065f2f33b8db99dfb81d', '172.105.247.100', 1676910014, '__ci_last_regenerate|i:1676910014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2034da877e40c08005d17c2a8fb92e69f7fdde6b', '8.131.70.17', 1676910015, '__ci_last_regenerate|i:1676910015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb7f0f37d688d53a04e8e4fd7c5a7bcfcb4c004', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1669a7e4b12676b6e27f27170113b4e3904fe448', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d05ae11d17bf642c727cd7f15457e7b74d6db4', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7986eb4214173ec99153a9b5ee549e6e1464211e', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1916bb46a3a13138f4279f08f3977028abebefcd', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c426f75c930bbed90a8ace560e0dd289767839e', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97d2686db8376284308ce58b023a1eda485c6c3', '172.105.247.100', 1676910015, '__ci_last_regenerate|i:1676910015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d893e887ea246fc02ea5f447326551e3c29312a5', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad54316fe6299fe8283bb4b22571c1c9d69b549', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d697c65bab61dad71c33e2b22a8f6a5bfe968b', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21e80f0579ac6d3bf18e1df3ba14f88ce65ab26', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f09c4b6d3ca56f5abdbf750d3cc3d50abeb431', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc7c99ac2eb244c812859764e7ef492a73d8369', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19597fcaca2a258f52f619a006dc87560177bcc4', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f37606278447cee986112b7ebd3e3af97f18153', '172.105.247.100', 1676910016, '__ci_last_regenerate|i:1676910016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f9e099f4734b16b2ea6cc1cc05a949256211ec0', '172.105.247.100', 1676910017, '__ci_last_regenerate|i:1676910017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f2443d0d6cc3f5bf62f19ee7d03dca646ad6dbf', '172.105.247.100', 1676910017, '__ci_last_regenerate|i:1676910017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f907716e33ac4f4e7f28ff5213183e8ab426439', '172.105.247.100', 1676910017, '__ci_last_regenerate|i:1676910017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c7ea6c6ea6b9fe1de2103b0d38e71d12bacd959', '172.105.247.100', 1676910017, '__ci_last_regenerate|i:1676910017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a533bb67bf16018b5fdd5747ac0a4a91b2f8af74', '172.105.247.100', 1676910017, '__ci_last_regenerate|i:1676910017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbf74447ff8c3b7bd329cbb9e555999bcd4dc1a', '172.105.247.100', 1676910017, '__ci_last_regenerate|i:1676910017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d97b9b9f57b4d6e4c0639f29af7081baa963685', '172.105.247.100', 1676910018, '__ci_last_regenerate|i:1676910017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc628ce36abaa061516727a46a8d2b5612d9a93', '172.105.247.100', 1676910018, '__ci_last_regenerate|i:1676910017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0269c3163febf96c913ea08411ff20f80026d58', '172.105.247.100', 1676914214, '__ci_last_regenerate|i:1676914214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b9488030c118d0ddf041f0c9bf162f0bc657234', '172.105.247.100', 1676914214, '__ci_last_regenerate|i:1676914214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66f560b09f22a4ab95033dc82f358012564b6a25', '172.105.247.100', 1676914214, '__ci_last_regenerate|i:1676914214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b74148361c0259d13285b3bc00a1a4ab7c7511', '172.105.247.100', 1676914214, '__ci_last_regenerate|i:1676914214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b25e63596c775a815e6b59bac3913a6026890b4', '172.105.247.100', 1676914214, '__ci_last_regenerate|i:1676914214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a011c0d79274bae4115dd9aaad401e38d392ec5', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70adb703563b531346126752bb3ce9ecf64a21f0', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fc569ea9fe200bfc9f793eeaee3c68d6fa8ad0', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('174b4b7cab8b367e131044ee9f3399a249eb86f3', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aad8ce744c25a930380993a744fc7a4c460b773', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e16a1c465f6c999157fee4c1f8f4a6eff7a639b', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49b8759fb1b30e1f6e2122753ebefdec3f9f5f47', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb1b7af8d1c54a0fa85c0ed596a491bd2e31ac4b', '172.105.247.100', 1676914215, '__ci_last_regenerate|i:1676914215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb9f96c664e53e1e4b3a933be81aa81519f7bae9', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035569cdb21f8891917587fa7443e27d6cec6f7d', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cfb711249aca229f39a37c8c73d746daa6de784', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e9e14cb4908387b9c3b91e928a92e0f657a1530', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05fe2f072d311340df109f8d119d5cc0afd67cfc', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef133a3274058799d6c129ed5a113bad176f674', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe73dfbde4306796ecd180a5c4a73325c11632f', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5c7c6d779c7a69eee2b7aaa9a50a6249542484', '172.105.247.100', 1676914216, '__ci_last_regenerate|i:1676914216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d4a0183acca93dcf075d8cecd33d6fa461191ae', '172.105.247.100', 1676914217, '__ci_last_regenerate|i:1676914217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416d1d83f6d4c634dab0cb12b481ee31384dc1ab', '172.105.247.100', 1676914217, '__ci_last_regenerate|i:1676914217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5557b5e5403df7754a1194e54e3f8ca8f91bdb9e', '172.105.247.100', 1676914217, '__ci_last_regenerate|i:1676914217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('264e9cec913d762abd9afad504bb7ffd007c98c1', '31.222.203.2', 1676914387, '__ci_last_regenerate|i:1676914387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d3dae39133add3842428bbcd4fa7b4977483cc', '31.222.203.2', 1676914387, '__ci_last_regenerate|i:1676914387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2106d1aeda36f3fdfc41d7a57303c0665072659d', '31.222.203.2', 1676914388, '__ci_last_regenerate|i:1676914388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69bf51b6f3b2b33306bcf9ff8803e2af006e5747', '31.222.203.2', 1676914388, '__ci_last_regenerate|i:1676914388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a66f09c7b0482af6e1268ff01ee2c172663f5a', '31.222.203.2', 1676914388, '__ci_last_regenerate|i:1676914388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c811c6db81ab3d6592146ed0fdbe40e46299ea4', '31.222.203.2', 1676914388, '__ci_last_regenerate|i:1676914388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854e8354702def271736bbd7c373d3cf405fd4b2', '111.90.145.188', 1676915690, '__ci_last_regenerate|i:1676915690;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537fed85e781df0d947b01d807709830ff16963e', '111.90.145.188', 1676915691, '__ci_last_regenerate|i:1676915691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb3c0ca7875b8e5371e5f49716347078a64f55d', '111.90.145.188', 1676915691, '__ci_last_regenerate|i:1676915691;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5bb4167c5d03c21b9448856ff8b136defad573', '111.90.145.188', 1676915692, '__ci_last_regenerate|i:1676915692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b50240275001649a054358dfb931f2dfb3a8b3a', '31.222.203.2', 1676916262, '__ci_last_regenerate|i:1676916262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1093d044551e1cfd58a86450c090fe4a8562ab24', '31.222.203.2', 1676916262, '__ci_last_regenerate|i:1676916262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0829f674e9d9e1b07d81cf0be61d48b2332f8207', '31.222.203.2', 1676916262, '__ci_last_regenerate|i:1676916262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1414b61d1549cf35a4a072a3b77a72c0efe7bd24', '31.222.203.2', 1676916262, '__ci_last_regenerate|i:1676916262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a1a9962262d8285a14c52208cf493ac7c39361', '31.222.203.2', 1676916262, '__ci_last_regenerate|i:1676916262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d355613fe5a926f492477d75c8e73fcef13c3f', '31.222.203.2', 1676916262, '__ci_last_regenerate|i:1676916262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fb6e914af113a0a13ba9c0bd606a72654ebd2c', '172.105.247.100', 1676918411, '__ci_last_regenerate|i:1676918411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e4b632b205d62d183a5b35ca85e19aa9dadb7c', '172.105.247.100', 1676918411, '__ci_last_regenerate|i:1676918411;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b65f227fcec272e04a84aa598ae1fe10741433f', '172.105.247.100', 1676918411, '__ci_last_regenerate|i:1676918411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33e6b9f115c0a02705fadd47784d675ffe386fba', '172.105.247.100', 1676918411, '__ci_last_regenerate|i:1676918411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a8f3caf15f62447dee55b475fa9c642d4beaa9', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8056b55fddcd66679157b9c083d5a641624b7f3', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcdc1285a41b2c1c04781994f8d7ecc8563e1603', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d202bdb1376d78935aece666c5d28bf4291635', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90caf100332efcd569c04b93d5969c68a99877de', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ede597d6692aec18025330d22d0d27040c0e3e', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4297dd91828f9e3aac12d8199863d784c568a006', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd38406710c292a51839c7760c23f237c0cd0ca', '172.105.247.100', 1676918412, '__ci_last_regenerate|i:1676918412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c825eafe50e4ee1e3ae93013c3af8fb3737fb9f', '172.105.247.100', 1676918413, '__ci_last_regenerate|i:1676918413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd4221d5666ad9d7075968f469cc8a08c1c547f6', '172.105.247.100', 1676918413, '__ci_last_regenerate|i:1676918413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5bca70f0782fe53a110a97636f538f59aa47c8', '172.105.247.100', 1676918413, '__ci_last_regenerate|i:1676918413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c481ba36876bdcdea990d59a1f703491f5fc15', '172.105.247.100', 1676918413, '__ci_last_regenerate|i:1676918413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84bb2fec9bb527df6134150afe2563e15a9bc953', '172.105.247.100', 1676918413, '__ci_last_regenerate|i:1676918413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f579368f76e19750623150389963d3afd552aea', '172.105.247.100', 1676918413, '__ci_last_regenerate|i:1676918413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b8e9d96f60873acaa1675eaa07979bde71d310', '172.105.247.100', 1676918414, '__ci_last_regenerate|i:1676918414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eaf06b8b59edce6581b5b448743f87ac0f9405e', '172.105.247.100', 1676918414, '__ci_last_regenerate|i:1676918414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51f34485726ecf34e5e8291ef9d9755179fd4f96', '172.105.247.100', 1676918414, '__ci_last_regenerate|i:1676918414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496692b26c54ea9a50c86f7a836699800b45d014', '172.105.247.100', 1676918414, '__ci_last_regenerate|i:1676918414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530f439990258465e07faa400ea983ad627f5800', '172.105.247.100', 1676918414, '__ci_last_regenerate|i:1676918414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53518918863ed831588c0ddb6b84731aa4640512', '172.105.247.100', 1676918414, '__ci_last_regenerate|i:1676918414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7abbe2aec2d3cdbafdceff33194f8ea7506041', '172.105.247.100', 1676922614, '__ci_last_regenerate|i:1676922614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea1a5e938970f2bdaa171e98d3053dbcd56c7ab7', '172.105.247.100', 1676922614, '__ci_last_regenerate|i:1676922614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637fcc7a1b6da23a0d3ba1ca03c2758187f87640', '172.105.247.100', 1676922614, '__ci_last_regenerate|i:1676922614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed808d87af21e0ed1706753e4fe039e4c62afc75', '172.105.247.100', 1676922614, '__ci_last_regenerate|i:1676922614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3fb1db66e96d11b660086ae4ddcf57b2d7df829', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6beddb7a64d9790d528599adf4bfcc8339f27e3b', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08cde8404aca91026e3b15fd511f1ae707d36138', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d8b485f9af31c5d40539ced9ec0b8df678ad350', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba26a2e82f41c8c14d7d9b8daa2d1b3491040ad', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a6dbd3ba4e3829e10039d9f57c3014ea65680a9', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e480f15ba4841bcf3d28478916760e43e7a9e0', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a25aa61c7b4b2969c5b3e7f6248820fcfaeaa12', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa518c4fca7ced75907af4b5d0b2853c2e513395', '172.105.247.100', 1676922615, '__ci_last_regenerate|i:1676922615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611ad442f8db879e82deef89944b0dbf24711fe4', '172.105.247.100', 1676922616, '__ci_last_regenerate|i:1676922616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f75401eacb07e408e806ba2a4dca4e099125b8c', '172.105.247.100', 1676922616, '__ci_last_regenerate|i:1676922616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321a4642e24f3d184e97b6cbe0c6ee5de25d0a33', '172.105.247.100', 1676922616, '__ci_last_regenerate|i:1676922616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf50507582041a00dd1bf1800370e26ce3229407', '172.105.247.100', 1676922616, '__ci_last_regenerate|i:1676922616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a854ba271e2f57c1c9389622bb4708816a96d8a5', '172.105.247.100', 1676922616, '__ci_last_regenerate|i:1676922616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57aee4f48e2d7097cafd1711555353fb4ddf4ac5', '172.105.247.100', 1676922616, '__ci_last_regenerate|i:1676922616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a11309a28c842de92459a6857853957eb26051', '172.105.247.100', 1676922617, '__ci_last_regenerate|i:1676922617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2015d33f2f84154b127f0668ce8ef5c48edf668', '172.105.247.100', 1676922617, '__ci_last_regenerate|i:1676922617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3998b8c2afe0bc80f431c35ed311afed900b36e6', '172.105.247.100', 1676922617, '__ci_last_regenerate|i:1676922617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aeb5e9188166e3ca67a96494bafdfbcd7c5989c3', '172.105.247.100', 1676922617, '__ci_last_regenerate|i:1676922617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc50a19590c5d43e09f2ff1354d65903e5042947', '172.105.247.100', 1676922617, '__ci_last_regenerate|i:1676922617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e6a499e914fa48e37470183d57d44627f096a7', '31.222.203.2', 1676923391, '__ci_last_regenerate|i:1676923391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3727127553293dfdb232f47e277c5767d9c6ff45', '31.222.203.2', 1676923391, '__ci_last_regenerate|i:1676923391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65edb61f9a651f3422519a8792125814b303c870', '31.222.203.2', 1676923391, '__ci_last_regenerate|i:1676923391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41da8e48acbe9b2e44364d04d55cbe0363938325', '31.222.203.2', 1676923392, '__ci_last_regenerate|i:1676923392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760d455b305aa429e3fd025a6ee167c4fd9cc81e', '31.222.203.2', 1676923392, '__ci_last_regenerate|i:1676923392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603b8ad4dbdd4cf5f77f8b1c772c8feb60ec2d5e', '31.222.203.2', 1676923392, '__ci_last_regenerate|i:1676923392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd517bd2784f9f7226548b993bb10f1c7bd6470', '31.222.203.2', 1676925272, '__ci_last_regenerate|i:1676925272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a54986698b0071b8b375374b333b8f111b1b073', '31.222.203.2', 1676925272, '__ci_last_regenerate|i:1676925272;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57e1bb5127558884ac60d78eb25b56afea6ba9ef', '31.222.203.2', 1676925272, '__ci_last_regenerate|i:1676925272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce38bf5fb56e90aa77deb35144a1659ca80b963b', '31.222.203.2', 1676925272, '__ci_last_regenerate|i:1676925272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('596f1be472602303b6efc0beb904ba6ae286dfa8', '31.222.203.2', 1676925272, '__ci_last_regenerate|i:1676925272;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6146702a46e8f991f527718d4cd8b98465dbf9', '31.222.203.2', 1676925272, '__ci_last_regenerate|i:1676925272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3164e1d2822348dd4f94a84b31a5c4e84cd0da', '172.105.247.100', 1676926813, '__ci_last_regenerate|i:1676926813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf6ae21ff73fe0d11f7d7d1444e7872995eb39e', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0547c83b4b7e895b70d0c10fa9b4fc79b18e0f1e', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fee7534ef732c02a007ab384c6bc7f3ab67f8d8', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c5bab045f436253f765242e54ebe0c1b3bc609', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e60c1508eaf298afee64bab83656b02d6de5e5', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4a6ffdc02eef51cb66f565ebc262556822a335', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a81820361834ea32276312c17745058301915d', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb37bc79ee5dca747b28f7fbbca8bb538e25ef3', '172.105.247.100', 1676926814, '__ci_last_regenerate|i:1676926814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421a6804374f6a819f217ea0bce1970f56a0ac87', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee3b0fe95d11568672d0101d2322e94912506e99', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1377cac905a76328ae14a5ab2f855e402067a879', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4890697e0d133221cdc6ca5fbed3f8132cf3aa', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff01e47cf948b06f3e7d884b2d1863adef1b5908', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a56df1783493c0700d396bf4dfea78032afa353', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d157eb82c32363eded7d57939f8abcb14f96b1', '172.105.247.100', 1676926815, '__ci_last_regenerate|i:1676926815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22418bf5c50a6db20c69f5e5c6a0ae8ccf619a11', '172.105.247.100', 1676926816, '__ci_last_regenerate|i:1676926815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3a9875a83b12fc1cbfff35dc750f82a86627ad3', '172.105.247.100', 1676926816, '__ci_last_regenerate|i:1676926816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7999b0cd781d872e39da882089e947179c8c76e', '172.105.247.100', 1676926816, '__ci_last_regenerate|i:1676926816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6455eeaa74659f28bf32647cb1da5234f3d173bc', '172.105.247.100', 1676926816, '__ci_last_regenerate|i:1676926816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df6fb20a3b3cca780070d507d2d9b1889f8ec93', '172.105.247.100', 1676926816, '__ci_last_regenerate|i:1676926816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047773bd138c6d8b1da690e5c2770eff7742f728', '172.105.247.100', 1676926816, '__ci_last_regenerate|i:1676926816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2992002071d340b2e0029342f0f068ec02fe6246', '172.105.247.100', 1676926817, '__ci_last_regenerate|i:1676926817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144f3f69b11226577735f0bd04a60053e40cb4d9', '172.105.247.100', 1676926817, '__ci_last_regenerate|i:1676926817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7af50ed7d69e752f9eeb17a3a743c303758e6b4', '31.222.203.2', 1676928827, '__ci_last_regenerate|i:1676928827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4101ed8eb4dd75d86947ed5e055a1cff603e57a', '31.222.203.2', 1676928827, '__ci_last_regenerate|i:1676928827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b22eca697c690a93d481e4a73f6446158534858b', '31.222.203.2', 1676928827, '__ci_last_regenerate|i:1676928827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95fbf6ed0d3286c929373a7ae955700a7ab06128', '31.222.203.2', 1676928827, '__ci_last_regenerate|i:1676928827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc609de32c36a137ef2cf8f5006b830d48f4292', '31.222.203.2', 1676928827, '__ci_last_regenerate|i:1676928827;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af20421628e1f5169b6e65cf68ee5654bae98b92', '31.222.203.2', 1676928827, '__ci_last_regenerate|i:1676928827;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a4f6d5e28d03b77e30bb5ab50564d7c889364b', '172.105.247.100', 1676931013, '__ci_last_regenerate|i:1676931013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ce597d100cf71135acad46b53c7ee30437a452', '172.105.247.100', 1676931013, '__ci_last_regenerate|i:1676931013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d705662aabec217e14425ac039779d0dc95bf114', '172.105.247.100', 1676931014, '__ci_last_regenerate|i:1676931014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('282848ef595d5274f7aaf8ab150fd15fefbc3f41', '172.105.247.100', 1676931014, '__ci_last_regenerate|i:1676931014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1f4d60381b8145b788b651a50aa4b20cfdb524f', '172.105.247.100', 1676931014, '__ci_last_regenerate|i:1676931014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bbd9106827f7ce42d873d91f92c07ea429d636a', '172.105.247.100', 1676931014, '__ci_last_regenerate|i:1676931014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07ab3d2b22ec7d6fbe261dc0c319bbe6c36b1eaf', '172.105.247.100', 1676931014, '__ci_last_regenerate|i:1676931014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce4dda19d65721e05ec14aeecca06f0815c2920', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45138a0354177cb7a97f18d84285f73b3b441d14', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c68525e3d4b3ac3b4cd7e8b9fcf0531288a958e', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332f8a05472b4fe410e8cc923b9551a6cdc73f41', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf6ba3112cdbb9affa06d29aa2e5b52a8ca1d099', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c550b9408175ff8a7e64b77f72c261e5355981', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a11bccacf334bef5c32e7c4d100fdf4ca481873', '172.105.247.100', 1676931015, '__ci_last_regenerate|i:1676931015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3770ea86f364722b3bfd0af9f77905945bbf9e87', '172.105.247.100', 1676931016, '__ci_last_regenerate|i:1676931015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f331bbcf9287371780699a2bc89a0b8822300945', '172.105.247.100', 1676931016, '__ci_last_regenerate|i:1676931016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731b18daf17e0fe1dbb475a081e9c679417e12dc', '172.105.247.100', 1676931016, '__ci_last_regenerate|i:1676931016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c165beb744f45524bbc0d1d686009f41436659f9', '172.105.247.100', 1676931016, '__ci_last_regenerate|i:1676931016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c71971adceba53c502c31122c0af273c85c147af', '172.105.247.100', 1676931016, '__ci_last_regenerate|i:1676931016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8ee2d3cc64773882ccfcd87e9356c4573724e74', '172.105.247.100', 1676931016, '__ci_last_regenerate|i:1676931016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb18cd98200327b51370a197151c8f6d1539fa5', '172.105.247.100', 1676931017, '__ci_last_regenerate|i:1676931017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5b11d0b1da74491f2f395ae9dcb1035890694a', '172.105.247.100', 1676931017, '__ci_last_regenerate|i:1676931017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2776969eaf463210aa4d9661e1939e739fab107', '172.105.247.100', 1676931017, '__ci_last_regenerate|i:1676931017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0103e262219c08378bd8f6118abee6e1708770e4', '172.105.247.100', 1676931017, '__ci_last_regenerate|i:1676931017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de12e66e4438186e0a7374bfc266f1a6a163eebd', '51.158.108.77', 1676931778, '__ci_last_regenerate|i:1676931778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('093283035231e917f671947943afc404bed966b4', '172.105.247.100', 1676935213, '__ci_last_regenerate|i:1676935213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6574646606a06a34ef681d7328e4585f8bfa4361', '172.105.247.100', 1676935213, '__ci_last_regenerate|i:1676935213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f904a9c0f2475950366a6df174d379465752d787', '172.105.247.100', 1676935213, '__ci_last_regenerate|i:1676935213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912adf1b2b9d4ff60be1148d803b6d66de8891f5', '172.105.247.100', 1676935213, '__ci_last_regenerate|i:1676935213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff45d4dce4fa8022aaa6f1d0ed3401ca66ee3344', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8dbc4448f1eb2bb7a75feab83d300792ba898e2', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b2072284ab0f4d1523c5c42c9b1e80d0da0c84', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b73112ed433c3d85f67a196b7308f275efa2502', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce885fd8b50e618d91c41227c395a6f3acd4b92', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc4d452738f824a66a8ce0571f6ad9c02d90b3d9', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e2802e35f46abcbba8548734486527fdd7b00b', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b66b70ebdc2578b06bf424c8839f0732e83efc', '172.105.247.100', 1676935214, '__ci_last_regenerate|i:1676935214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4c084976fb3f939732cf91d1bab8486115d828a', '172.105.247.100', 1676935215, '__ci_last_regenerate|i:1676935215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d1b15bbce0bb8abf52b0a385a63a4dd32b2d58', '172.105.247.100', 1676935215, '__ci_last_regenerate|i:1676935215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e3a603a3aa3a8d60e84544fc2000573e4fb80c6', '172.105.247.100', 1676935215, '__ci_last_regenerate|i:1676935215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488e16e50ce8f2c2edddd7caef57aabd40d0950d', '172.105.247.100', 1676935215, '__ci_last_regenerate|i:1676935215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16a002386cf893afbeb94ab5d68cdc19af13a6fd', '172.105.247.100', 1676935215, '__ci_last_regenerate|i:1676935215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af99f8f97e069d05806bd28f77d9c9a8cf35671', '172.105.247.100', 1676935215, '__ci_last_regenerate|i:1676935215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbba304e715d1d0aa927bf69e856c665ad37285', '172.105.247.100', 1676935216, '__ci_last_regenerate|i:1676935216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1611db6ca4d69c3fbba48a7bafd8fc17c33de73', '172.105.247.100', 1676935216, '__ci_last_regenerate|i:1676935216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d7a1669294c12d58fbf765dffa594927c72052', '172.105.247.100', 1676935216, '__ci_last_regenerate|i:1676935216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc55c18c0191213c0c44819ea9dc071cf36e324e', '172.105.247.100', 1676935216, '__ci_last_regenerate|i:1676935216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7d5c7e38cf46fba4ffda06e9f23ab14ad31d96', '172.105.247.100', 1676935216, '__ci_last_regenerate|i:1676935216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebd25fec4f6e2dc0b2b9f2db457cdd979792f35', '172.105.247.100', 1676935216, '__ci_last_regenerate|i:1676935216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('165e8718910a8bf9d84bf393ffd5e2a59f466b86', '31.222.203.2', 1676936023, '__ci_last_regenerate|i:1676936023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bedbee42710bdbf0de1a2d0cadf43a3b851d19f', '31.222.203.2', 1676936024, '__ci_last_regenerate|i:1676936024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6194f4546bec448954747d0f1e89b1b0f0c243', '31.222.203.2', 1676936024, '__ci_last_regenerate|i:1676936024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0cd00eab7483df68e483c2b3bba6dc554813fd2', '31.222.203.2', 1676936024, '__ci_last_regenerate|i:1676936024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b15ac74a49a3a82c0347281003c28b36489af95', '31.222.203.2', 1676936024, '__ci_last_regenerate|i:1676936024;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b26f24319ec7b0edf574b48fe0cc9365155dcc', '31.222.203.2', 1676936024, '__ci_last_regenerate|i:1676936024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07907b3b79c256cb0ddbc1c56a480d9fcf16a0f3', '172.105.247.100', 1676939414, '__ci_last_regenerate|i:1676939414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df22e34e74711be2fac0054f7fe87129cae90cc9', '172.105.247.100', 1676939415, '__ci_last_regenerate|i:1676939415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f3ceaf4e9ef418a667078e220d2823a1b41a35', '172.105.247.100', 1676939415, '__ci_last_regenerate|i:1676939415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3c7983f9d04ee042fb992a3429ac7f79ad017f', '172.105.247.100', 1676939415, '__ci_last_regenerate|i:1676939415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5243e650842ee829914a9b1d4ce94a9adb06bc74', '172.105.247.100', 1676939415, '__ci_last_regenerate|i:1676939415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560ee151af17eb4d20bcebf044e655f098882f37', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8509644d6ef5e9b2319f674f08d7a29b74652c08', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60d572566c2f69afb3075174073a8b28d8afcc65', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32ef5507ee618451bb251409c2a668d09272aab', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd996d7b4028a39f6c3ce4f430e1f97d4160a4d', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24d276ade62567240d70150423d9320391bb42a', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b8680275d8665c6bc6038ce0338da70b3ff6d8', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1616d61f5c7f6b51352e5687d7b80e24f0fbc72d', '172.105.247.100', 1676939416, '__ci_last_regenerate|i:1676939416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f941dd13d339fe317a71aed1d03d8ad27646156', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c10d9ca5da23392d2009391ce07ae2c334b545', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7957796656c166a2606426944858b4e994a8258', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723f3576dd01f0d298548699f3b4cbff0e6de5ab', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17ed447cece07dafeb8cdb5ef2654422d486f0e', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ea28d3d25107dd8e65677303b4f47359400697', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2026298ab93597a365c1fbbffd474b72848f2f', '172.105.247.100', 1676939417, '__ci_last_regenerate|i:1676939417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c47590b59866a534a8028889e85193cefdafe67', '172.105.247.100', 1676939418, '__ci_last_regenerate|i:1676939417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3bfa1b8d892ff0f4da672c37c8f7cdcb24aaa80', '172.105.247.100', 1676939418, '__ci_last_regenerate|i:1676939418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dbcb0cf9cb275d1b9a63916feab21d1a66fc0b2', '172.105.247.100', 1676939418, '__ci_last_regenerate|i:1676939418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a48140edc8e3d97a105643df2ba188621f92881a', '172.105.247.100', 1676939418, '__ci_last_regenerate|i:1676939418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52043f8e3f44261f2b8c052001e1ee2ef0ef08b1', '31.222.203.2', 1676943185, '__ci_last_regenerate|i:1676943185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('931aaf5ee76eb80b01d77393d638d65e0b6ac7a0', '31.222.203.2', 1676943185, '__ci_last_regenerate|i:1676943185;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e704e209bff0e00ce9808b235d05d44f174b29a5', '31.222.203.2', 1676943185, '__ci_last_regenerate|i:1676943185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26dae3c6a9c325ac1a816483231609840b1b69ff', '31.222.203.2', 1676943185, '__ci_last_regenerate|i:1676943185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26378d54b35861117022d09dbbc0a33d9e34915c', '31.222.203.2', 1676943185, '__ci_last_regenerate|i:1676943185;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e330da2eb7e2f223372f3336f8b1a425ab08d017', '31.222.203.2', 1676943185, '__ci_last_regenerate|i:1676943185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6d597b9f3d4139f2bc0efa400ab39a3f4957d43', '172.105.247.100', 1676943611, '__ci_last_regenerate|i:1676943611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d516bd2a7558511a6bc5b413d0c01c81a4cf384', '172.105.247.100', 1676943611, '__ci_last_regenerate|i:1676943611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f459ef2108debff27187cb03e4a302ab86c68c', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db8e6178c6b08a2d5f18c017956fc20ee53b9ceb', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e331a105d2903c6a06377c33025c1b8f8274e6', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2b15df540bac33bacaa786b52104d22beb4479', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f7a7363b59dab211f5b433682506f10b3e365cd', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecbce45be9949e317c9beaaee5a3c11610460164', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bdcf798ab4ea77720a776da8df4405dbd353ad5', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9640b7be88ea8fd56b51839c8b782326c0ab2815', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eff0d4f895119d207b727a7e5c7bb6e69e72d19', '172.105.247.100', 1676943612, '__ci_last_regenerate|i:1676943612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ca0cb99c20c7a92365695f6a6f617d15659a89', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7640aa2009f79a2d8b63b27ed163d1b385a08f79', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0d0239915cd7e3ed4817ea96ff427f4ffb3f8be', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda694aaa73b62a7574f8fbd72a9c85037fd3507', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77fe9242b99de379677c12e7f48542200087b731', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9352b23fa3de7e00b18398b33d10cdf123009c23', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e146fb98f6ce8879e2d22dfc6a013ec2a74fb2', '172.105.247.100', 1676943613, '__ci_last_regenerate|i:1676943613;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b64bd90edb846956ece6b3a09c98870a9b293ba', '172.105.247.100', 1676943614, '__ci_last_regenerate|i:1676943614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f2cd4b84e7c7ee16152128615f56778ab6d5840', '172.105.247.100', 1676943614, '__ci_last_regenerate|i:1676943614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad139509f79d71bf4842b52b804dd3cb41d5e60', '172.105.247.100', 1676943614, '__ci_last_regenerate|i:1676943614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d0a8579cf241c727ea3de25b77cc61a0804375', '172.105.247.100', 1676943614, '__ci_last_regenerate|i:1676943614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a1be2c77880d8d494f61267951dd72f96ac00ef', '172.105.247.100', 1676943614, '__ci_last_regenerate|i:1676943614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d13e9bf9d6453b5d909205df4b60160675ce9932', '172.105.247.100', 1676943614, '__ci_last_regenerate|i:1676943614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59e450e8f6e17a77b7caf7ff61cf949baf315357', '213.165.169.54', 1676943664, '__ci_last_regenerate|i:1676943664;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b33229abe2910b705267b80ca56f9abbe05382d', '213.165.169.54', 1676943664, '__ci_last_regenerate|i:1676943664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b9ecdbb698dcca1cbcecef45803e14a7b70d14', '213.165.169.54', 1676943664, '__ci_last_regenerate|i:1676943664;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf8792f0f5341accb194d35f4f9608fc308a7b8', '213.165.169.54', 1676943665, '__ci_last_regenerate|i:1676943665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35d5c027b2d0f378a84c4a7656a2670793213bf4', '31.222.203.2', 1676945102, '__ci_last_regenerate|i:1676945102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a4ad36265d5e73f90b7cd0f7c13e61e752f5ce', '31.222.203.2', 1676945102, '__ci_last_regenerate|i:1676945102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826dda4ad7fc2b1dc0777910b36968894955c945', '31.222.203.2', 1676945102, '__ci_last_regenerate|i:1676945102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daaaefa4f57b2a68f8f7d9a6fdbcaff153b65abc', '31.222.203.2', 1676945102, '__ci_last_regenerate|i:1676945102;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6876b4c1df691c91d8502ddd47987a3d992c1b6', '31.222.203.2', 1676945102, '__ci_last_regenerate|i:1676945102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3506d1c36abbb251427947a4f2651a1199c7d6b0', '31.222.203.2', 1676945102, '__ci_last_regenerate|i:1676945102;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f6588d472133edca97481e0d9af515a9ec3cce2', '162.142.125.221', 1676947105, '__ci_last_regenerate|i:1676947105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59b0f1feac8f5fa6a6676a065bf65dda4345eb5', '162.142.125.221', 1676947105, '__ci_last_regenerate|i:1676947105;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96fd4dda484fcbee0b1ff4da8eb67f919e09a5d', '162.142.125.221', 1676947105, '__ci_last_regenerate|i:1676947105;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b86fe0c7199e088cafbbd28227d1b38c554898ef', '172.105.247.100', 1676947815, '__ci_last_regenerate|i:1676947815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce4b19323090da49319274a79c073476cefea80', '172.105.247.100', 1676947815, '__ci_last_regenerate|i:1676947815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9324fabd7c29af12f7f5aebe7693c443e09b88b7', '172.105.247.100', 1676947815, '__ci_last_regenerate|i:1676947815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc26136015e1b99bd9a47a4ca953309bd36ad27', '172.105.247.100', 1676947815, '__ci_last_regenerate|i:1676947815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b276cad7d5c55738ce1cf9c0aceb0ee1709969a6', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f574d21ace35c6c7fd9a5c758e90dfa89b09e3e7', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d3aec1260a26864b53f6d52f69d80968fee5f71', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b3c32b2929fbf16ff86db03ce746f14158b2ee', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b492643a04c26db33d544b162eb93be4c65429f', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eeb1c22e708fe90315c9a6c0dc9c15b2736ad30', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892155011050291d4d9dd5c7cc932313f7e374c4', '172.105.247.100', 1676947816, '__ci_last_regenerate|i:1676947816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb05793b177482aa6360bd4bfc3a3676c1b3ff4', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247d7155daf58c6dd9fe9ee8029d33dcfd5771ae', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bac928135364f3004d9bfd4f62d8e2dab142625', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a4ae11f12e97951dbb37c151231ae345d316d2', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ff63f165d0dc32264401b8761b045f0f6268a7', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce4f2ddfd5e542af601f4775e83dc27744ae577', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fe04e47ac23262e57fef7a1f5452339b8e44d58', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100a0afc775b2f4c2abaa87aa2b4d73b831d72ee', '172.105.247.100', 1676947817, '__ci_last_regenerate|i:1676947817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858f0cba5dc8be361f99eb045120f9f632ba89da', '172.105.247.100', 1676947818, '__ci_last_regenerate|i:1676947818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d62aaae8bb4c71ffb094e1f0757e60a98c7994b0', '172.105.247.100', 1676947818, '__ci_last_regenerate|i:1676947818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff27d1efbb4ab1bc4b114fd83102427e64b9730', '172.105.247.100', 1676947818, '__ci_last_regenerate|i:1676947818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e1465249fe456c38155a7af68667c0998d0de9', '172.105.247.100', 1676947818, '__ci_last_regenerate|i:1676947818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f948d4a67f1d7d63be7a985e04cd03997b11760', '172.105.247.100', 1676947818, '__ci_last_regenerate|i:1676947818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63269541ba9931d3703a040487a04c386fc0b263', '162.142.125.219', 1676949143, '__ci_last_regenerate|i:1676949143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab53d9c3e7ec2c676ebb6894bd67d82c6e152862', '162.142.125.219', 1676949143, '__ci_last_regenerate|i:1676949143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c1f068e608e806274e14caeb85d1b5a10027bc', '162.142.125.219', 1676949143, '__ci_last_regenerate|i:1676949143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3011c6e450dbd012b778639fa83d0449e64cc5', '172.105.247.100', 1676952014, '__ci_last_regenerate|i:1676952014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('980667e6d2e1602450b252e9a4e64b5d7d570b96', '172.105.247.100', 1676952014, '__ci_last_regenerate|i:1676952014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4510400580b85bf362fc3e2c459f124a91bdec6', '172.105.247.100', 1676952014, '__ci_last_regenerate|i:1676952014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff944e5e418861de8b0389959be24b4eaa40ccc0', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5164c741c373088ef26a9e71373951b31c9da202', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01a2a2fda1fb3c9acc4fbd0bf69b8de866f41fee', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee902805f13c367e13deab8afdb4dbc9627dfac', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1b12c8fea36411d6eb26eadc7f901173e87ffb2', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae3878b1bd87781c6335bd4fa494f5f487d80bf', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eea8c13d713273cf64664b2b1cd3c5ba1b0b5a89', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e641a8b833c1c5ae9e61c96fff02512a7f147815', '172.105.247.100', 1676952015, '__ci_last_regenerate|i:1676952015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09dd4636df67ed596d16b7e264f4824f94fdf5e2', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec49949d0fd40bfd5546ddc14c1ca975ebfc24b', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ae804178ae6d725cbc2cb26a173f07b31a6e79', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af62730cb5ab915b7ac8accb65ebf8a53f9ff62b', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8095efefb6f21e5c06e8cb17c09671fd8edda050', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad38771a8ca5383cb9b83b396177c2211556a851', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e81385acd58c8d8e01b877ce24971bacfbff0da', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc2de4f0c97ffa61464a87310c2fefd8fc45ade', '172.105.247.100', 1676952016, '__ci_last_regenerate|i:1676952016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef302af7f345a31eff2cca416a8e85bdb9fc6bd8', '172.105.247.100', 1676952017, '__ci_last_regenerate|i:1676952017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e62edb172a9693afd46351ab9ec8b1216cac2b', '172.105.247.100', 1676952017, '__ci_last_regenerate|i:1676952017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fb06a6b997b18ce6826f4aa4902230eec2296d', '172.105.247.100', 1676952017, '__ci_last_regenerate|i:1676952017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eef62046672aca2fa1ef95ebee894328aeaf879', '172.105.247.100', 1676952017, '__ci_last_regenerate|i:1676952017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e2bbb7a6b848c66203d3f02166bd71d821b5dd', '172.105.247.100', 1676952017, '__ci_last_regenerate|i:1676952017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c70e93c30099a890840fb54ec5a6d49084e3647', '31.222.203.2', 1676952191, '__ci_last_regenerate|i:1676952191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc34c29b5f4ff50c95f0ae1c1f570991485760d9', '31.222.203.2', 1676952191, '__ci_last_regenerate|i:1676952191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abaab34c3b48b3dc6d4701bb59dc02151e8676e3', '31.222.203.2', 1676952191, '__ci_last_regenerate|i:1676952191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caae4068eda9c1254548b2fc4e11e7d244eafd9c', '31.222.203.2', 1676952191, '__ci_last_regenerate|i:1676952191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430fc8763c756d88717e1cc1c73174a17bcd4fa4', '31.222.203.2', 1676952191, '__ci_last_regenerate|i:1676952191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936f42a1ad11b3bb40c6f197f71f0106c0f044ab', '31.222.203.2', 1676952191, '__ci_last_regenerate|i:1676952191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d81c169e64ed2554bcd1ffb684c9af3e3399b9c9', '31.222.203.2', 1676954062, '__ci_last_regenerate|i:1676954062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fc7567e89c6835cc2f9d5df9b2b04533baa00c8', '31.222.203.2', 1676954062, '__ci_last_regenerate|i:1676954062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30167fdbe4b6be4028cdf66e434261317a09f662', '31.222.203.2', 1676954062, '__ci_last_regenerate|i:1676954062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39470962cbb19aa80888614055cbee243e1a9de8', '31.222.203.2', 1676954062, '__ci_last_regenerate|i:1676954062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a50a846635d06a00c826cec8690ea9a29b4126fc', '31.222.203.2', 1676954062, '__ci_last_regenerate|i:1676954062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2f0fa911e1ffeb0743071282096287deffbbcc', '31.222.203.2', 1676954062, '__ci_last_regenerate|i:1676954062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f9cc4ca92b1a5c3077b4e766bf5d5832d1df4b5', '31.222.203.2', 1676955915, '__ci_last_regenerate|i:1676955915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ece501e4539361e89d3587eaaa820b44bbc053', '31.222.203.2', 1676955915, '__ci_last_regenerate|i:1676955915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf626d934d4bd586bc4f8f426b4e16f60e01696e', '31.222.203.2', 1676955915, '__ci_last_regenerate|i:1676955915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d86d69e1a68fbdc7172bddcc40d945f104cf8a', '31.222.203.2', 1676955915, '__ci_last_regenerate|i:1676955915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b9bd089c93b20a80c03f9848ca54a192276439', '31.222.203.2', 1676955915, '__ci_last_regenerate|i:1676955915;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df5034f23f0e19260c35f4455d21eb4b5a10e9fb', '31.222.203.2', 1676955915, '__ci_last_regenerate|i:1676955915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e43d349a5851f113afe6e4c858f2fdbed95ad45', '172.105.247.100', 1676956214, '__ci_last_regenerate|i:1676956214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7eefc010d9629699f8f3146464a8ef18a575f8d', '172.105.247.100', 1676956214, '__ci_last_regenerate|i:1676956214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dea3a27c801791e2ed0e03de74462ce8dad5562', '172.105.247.100', 1676956214, '__ci_last_regenerate|i:1676956214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962ac8446036922621e385cabf8597003f667b2f', '172.105.247.100', 1676956214, '__ci_last_regenerate|i:1676956214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2cd2f7a9291f0308cc223ed57f05249c96631c', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122d9628bdae069d16034300f01bd2e6400fd380', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2847d0e4aa48b2b196455d94ff7c4c5f1ceba7cb', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb42e2fc5515b221ce905a245372df6167f321ef', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15064e1b966aed56af9d6b739f9167dcec900b09', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a459f092231fc38920c9a3abaf65aa6eeb48d194', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c66124d3306293476b7ef1467cabbe49c9e63f', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514d963e1dc0ed5953fb5f30d9ba2c8398b2fa9c', '172.105.247.100', 1676956215, '__ci_last_regenerate|i:1676956215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddfc137997d6291f3c7bdbe40c682a88bd77d5e7', '172.105.247.100', 1676956216, '__ci_last_regenerate|i:1676956216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314b2cc261f5248ef798023ba9a7b30eb74e2e86', '172.105.247.100', 1676956216, '__ci_last_regenerate|i:1676956216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca1a853d9950b02aa9ccd432b4a246e96c7cc6c', '172.105.247.100', 1676956216, '__ci_last_regenerate|i:1676956216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fee6896f61b4950cd6b3099bd1e289aed45bbab5', '172.105.247.100', 1676956216, '__ci_last_regenerate|i:1676956216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3648298602937e657265d7521f70790852a92c3', '172.105.247.100', 1676956216, '__ci_last_regenerate|i:1676956216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309a25c6aed81d6b5ac2adb7381f41c425194595', '172.105.247.100', 1676956216, '__ci_last_regenerate|i:1676956216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1060efe4cf72d2b6629f7c9ffb3a7bf0645e7c48', '172.105.247.100', 1676956217, '__ci_last_regenerate|i:1676956216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73b79d952e7e7d43689ff16d374b2e7e33194213', '172.105.247.100', 1676956217, '__ci_last_regenerate|i:1676956216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e397f459002838f65789f194e74112e8f8f3934', '172.105.247.100', 1676956217, '__ci_last_regenerate|i:1676956217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d985fe2cd1d3593cad408996dabede3dbd8a6aa4', '172.105.247.100', 1676956217, '__ci_last_regenerate|i:1676956217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821bb323a90186ae637d9586ddc4f24c553f6691', '172.105.247.100', 1676956217, '__ci_last_regenerate|i:1676956217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10ff43ed526f477676d98b3d26f9954b0c90aeeb', '172.105.247.100', 1676956217, '__ci_last_regenerate|i:1676956217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8516e74c28088de8086597190ff84bfd5a59ef3c', '45.120.39.89', 1676960076, '__ci_last_regenerate|i:1676960076;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676960008;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a2a9f764116d1def86080d71b8d7e047a6e2b3', '198.235.24.155', 1676959151, '__ci_last_regenerate|i:1676959151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b27b64867695115dbbac456c6b652f42ce2f25a', '31.222.203.2', 1676959338, '__ci_last_regenerate|i:1676959338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5011d014011c325c6e203e362de2edf5d683f372', '31.222.203.2', 1676959338, '__ci_last_regenerate|i:1676959338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b669a2862240dec8a369cdf99c552bf0293fed', '31.222.203.2', 1676959338, '__ci_last_regenerate|i:1676959338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fbc645597952431ce8eab51ca7475c4c2067b48', '31.222.203.2', 1676959338, '__ci_last_regenerate|i:1676959338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d089bd172541af0babdc0158e9c7370a32594b5', '31.222.203.2', 1676959338, '__ci_last_regenerate|i:1676959338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589e619901f4e60d6dc7fce74d9ac21b9373f675', '31.222.203.2', 1676959338, '__ci_last_regenerate|i:1676959338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d514b5bdcbed3d0ee35de2c0f37d51be83e9a15b', '45.120.39.89', 1676961135, '__ci_last_regenerate|i:1676961135;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676960354;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('222d0970b8623ad687da68f0b3bb6638643bb4ee', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c1918c8ab2407b5c0d352d6cf3ceaa26a45206d', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c100553934506a571849a83e636129d64a11194', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcf8d8bd8239434bdcd7c6846b9fa71012b686c6', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c482c2124cd0718120bd7502aac98cacf1bba8', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec2cce3b83ce3641e7da2a408f177b45ebb378e', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2205d9367c9c43224d2eb625dcb3de644513d6de', '172.105.247.100', 1676960413, '__ci_last_regenerate|i:1676960413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b5e86e97b4bf751632f846e3beca9c69c7bb8c', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984c73cc828936c5dfee99308a52f871ae5e0133', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c061bff06231c571e787e55ff0cebc8215bbf089', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81919be7b175876544ef992d9ac74a0c592eb236', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003c2bc5d439c88f0c65733e36a160859e7c5cb5', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c96ea4b3b54890c937b4659b875b3350add519', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f338a0e04d376132dbdfcd97ee488f3b71435477', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9fa61e73340db0dfc1024d6a597402f2a5cf943', '172.105.247.100', 1676960414, '__ci_last_regenerate|i:1676960414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f0ce9345e9d0c0a56effd5164495dcd2080e4d', '172.105.247.100', 1676960415, '__ci_last_regenerate|i:1676960415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('963271ba77167dfa341772a725eb8ca386c5f0df', '172.105.247.100', 1676960415, '__ci_last_regenerate|i:1676960415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24c77ec42ec8a6d1868822b133186059bbcf35ac', '172.105.247.100', 1676960415, '__ci_last_regenerate|i:1676960415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0402ac4ffdbd34c06b789aadf6fdef25f5d3306', '172.105.247.100', 1676960415, '__ci_last_regenerate|i:1676960415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c616de88a3afca51f66e2cad96094b265d81a3a5', '172.105.247.100', 1676960415, '__ci_last_regenerate|i:1676960415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035504e03caa22500521ba7c436ba551512d2fd2', '172.105.247.100', 1676960415, '__ci_last_regenerate|i:1676960415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e45ab34ed64f7f6c9b344662100a75a56242be6', '172.105.247.100', 1676960416, '__ci_last_regenerate|i:1676960415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031a604b54cf43e4da95a7ed88783002dab5946a', '172.105.247.100', 1676960416, '__ci_last_regenerate|i:1676960416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d5c82526ea6e66db439b2e33f7bdfb2a6ade93', '172.105.247.100', 1676960416, '__ci_last_regenerate|i:1676960416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4822807e22e60b82d183d563ed5de733304fff63', '45.120.39.89', 1676962384, '__ci_last_regenerate|i:1676962384;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676961188;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3a2a1a2f8eef8969247f4204f76a4a5148d4f2', '31.222.203.2', 1676961254, '__ci_last_regenerate|i:1676961254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37c4de3c3cdf472ae6264175845b364209ad78f4', '31.222.203.2', 1676961254, '__ci_last_regenerate|i:1676961254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f925e8895060fc348ac872f8c40ff18c1eca83e0', '31.222.203.2', 1676961254, '__ci_last_regenerate|i:1676961254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94160128ba954dbcc06f5578443664967977173b', '31.222.203.2', 1676961255, '__ci_last_regenerate|i:1676961255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160fa3fc6b44fb9f16cde4a63640e25a405fae1a', '31.222.203.2', 1676961255, '__ci_last_regenerate|i:1676961255;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d2cd7cbf3641caefd40a0e23d94a91d94569472', '31.222.203.2', 1676961255, '__ci_last_regenerate|i:1676961255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68764de5d8b2ca560da61b920a685d36a0733fb1', '198.235.24.137', 1676962293, '__ci_last_regenerate|i:1676962293;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af71471e130e9db40f49c15749fdc60fe32c393', '45.120.39.89', 1676965233, '__ci_last_regenerate|i:1676965233;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676962384;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b78497397e58dc5b6c160f466f729fb96f5a212e', '116.204.230.29', 1676970005, '__ci_last_regenerate|i:1676970005;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676964202\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224d7557c1b974346871eb8075cf8b59268a9cee', '172.105.247.100', 1676964616, '__ci_last_regenerate|i:1676964616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7865b6ac8ffdfe07d9fd7e31e58debc7aafa305a', '172.105.247.100', 1676964617, '__ci_last_regenerate|i:1676964617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee6e6776401152308f6edad4539e3bcf0aafd71', '172.105.247.100', 1676964617, '__ci_last_regenerate|i:1676964617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e89f35c0b2d1b38937ec7eb31cdb0e6e3e09ec', '172.105.247.100', 1676964617, '__ci_last_regenerate|i:1676964617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c96b61b4849540545e373fc225fa99deed9fd18d', '172.105.247.100', 1676964617, '__ci_last_regenerate|i:1676964617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3be06fef969459681b90092a241a4c1cab632d', '172.105.247.100', 1676964617, '__ci_last_regenerate|i:1676964617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5d203452bafc311d0f097e170dc3de6c63de23', '172.105.247.100', 1676964617, '__ci_last_regenerate|i:1676964617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b2f0ff6bf414bf5cc5a8c9fabb0696f3eb19a0', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5a3778c80d3cee74297d85fec3db8f040fb560', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e04e0114b9ecbe0c2c0947040f62692dbd606610', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2cf6ce99df3679b0dc3301206efb182aa3aa2d2', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55d901f4aadcc1f62ea65e8ec1e5bd2a95e7683', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f2f832fbc397edb84f70b615516be02e507dd8', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09fb5c3d764dca012bf5e4ae4cf4d00ecacd19aa', '172.105.247.100', 1676964618, '__ci_last_regenerate|i:1676964618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e1bfc555f4040d1300735a369e2abd8ab7a745', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c57bae4cb2739bbd31a6898cced9ed6a2324a3b8', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84c5980ec9369670f3b8cd78ae9fabd1718d64eb', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e93e64a58617574a7dbc96007af61e29f36d49f', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3a83096c33443e6435ad5fe09690fb8d53d32b', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e4cceb82fbf79057e31e0d1dbe0d389459b58d', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b91cc001cb0fc98f8906bc1ece1f6b7bf2390f4', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38c3f72067e4b497a9f996c789374473c099f8ea', '172.105.247.100', 1676964619, '__ci_last_regenerate|i:1676964619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa575968867e6f50b0a0e4efe745a48a2a0c04c3', '172.105.247.100', 1676964620, '__ci_last_regenerate|i:1676964620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55575b4fd277181696bf69cb0fc4e84a1994106b', '172.105.247.100', 1676964620, '__ci_last_regenerate|i:1676964620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ec633411c01fd9b75a4786b2cb4a311d5cde2b', '45.120.39.89', 1676965775, '__ci_last_regenerate|i:1676965775;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676965714;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f0908d4c79645094395e16e47f64416162f5a8', '45.120.39.89', 1676966654, '__ci_last_regenerate|i:1676966654;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676966515;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f9244b47f19aed76df79a984683b3348472bce', '45.120.39.89', 1676966236, '__ci_last_regenerate|i:1676966236;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676966236;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b91c1845ce480a6ca8d06df485d42ac87fa786', '31.222.203.2', 1676966586, '__ci_last_regenerate|i:1676966586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888c30f5fd6750f1af957a11a7f7973df4f9ce0c', '31.222.203.2', 1676966586, '__ci_last_regenerate|i:1676966586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a052525150b8eaeaa20b40327bdbc03b61837594', '31.222.203.2', 1676966586, '__ci_last_regenerate|i:1676966586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b610dd793fa93aa2cd7bae8c87cdc79b9f002d', '31.222.203.2', 1676966586, '__ci_last_regenerate|i:1676966586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68cd5551d34bd5148c67f52cb4db1381b94caeab', '31.222.203.2', 1676966586, '__ci_last_regenerate|i:1676966586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232749245539d59ff1a6668105033822e050ba16', '31.222.203.2', 1676966586, '__ci_last_regenerate|i:1676966586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33167335d0e22958e918bd201a1ddee95946f589', '45.120.39.89', 1676967518, '__ci_last_regenerate|i:1676967518;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676966655;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8f9892561c6189f868ab24618eafdd4ba7a937', '45.120.39.89', 1676974136, '__ci_last_regenerate|i:1676974136;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676974125;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c52c7c75102a820a2502edd81020bcaaa8be3da', '31.222.203.2', 1676968460, '__ci_last_regenerate|i:1676968460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49c73172c16423e31e3eb79269b0099853dc05a0', '31.222.203.2', 1676968460, '__ci_last_regenerate|i:1676968460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d0948e3056ee22b4db96d2029eb1bdb4662fd5c', '31.222.203.2', 1676968460, '__ci_last_regenerate|i:1676968460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2cd3a343f79b6615ea3c4426f81c583ab54876', '31.222.203.2', 1676968460, '__ci_last_regenerate|i:1676968460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd28731d0119294e71217bd78b1a302e3bc7399', '31.222.203.2', 1676968460, '__ci_last_regenerate|i:1676968460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcacc13a8668aa710c39a7f10dbc6b74297f664b', '31.222.203.2', 1676968460, '__ci_last_regenerate|i:1676968460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48653afaa600f6b311222b0fa44a0ca3666a335e', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c69ef4daf026c6bb07c0234a5479370a99b17be', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71be2f85de4451efb840fd30d77d18d463cbd644', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bad9f8b1e7ba8c899c778da491d674f35fe504', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c98828ce96dcbb9c957be4e3d21fa26646414420', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9899bacd4e11fd2fc804af95988fed758c7ebbe7', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83cf356ac274671dcf11682e427f706f27f5950', '172.105.247.100', 1676968814, '__ci_last_regenerate|i:1676968814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1bde8077d8a9e7c52e782501b658b2f43de4732', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de09cc2fd2fdd2141cc43dc38c5501eaf1b3178', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12c72833fbb492703ef828d2e91253b513a997db', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56cca7266f1c69e3e38ebe36d1d788eed4617b3', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b8584fcbe934d3e23ff9886794d6e410d88eda4', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe380e1794e95cd9e0e624ca76934f8d8a587f1', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abac133f4869e25c8a5abf57f3fa4f6261506ff8', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ca721f5f6f4a6f470414520cbcabba430cb8bb', '172.105.247.100', 1676968815, '__ci_last_regenerate|i:1676968815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df5339a5ce568505d543251a955a954060f3326', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d444af41d51c366a65e1d495aca5dfbdba0fe9', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40f22de55cc2007c8fbada2b5a1837dbfce9ecb4', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90e9c4767d8b085e656a4bb04cfa08ba440a75b', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1339430d570799495cf204b52eb02b4644715d8', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42520f3d96ce78fd056c1a54764f3500760d9d76', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ca41ad48ccfbdda921485db2da9df7a4fd6b9b', '172.105.247.100', 1676968816, '__ci_last_regenerate|i:1676968816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b57671b0159c191cccda280abaf215d11dc17ed', '172.105.247.100', 1676968817, '__ci_last_regenerate|i:1676968816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7bdd1540bbfea8b4dd4faf7c340dad61eaa493', '172.105.247.100', 1676968817, '__ci_last_regenerate|i:1676968817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdbada10334cd1149aacaaf8ce1bb72c1f27022', '116.204.230.29', 1676972681, '__ci_last_regenerate|i:1676972681;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676964202\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee979a4d438007d82b1faf897ea5f84ddb3c3ee', '116.204.230.29', 1676972766, '__ci_last_regenerate|i:1676972681;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676964202\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42894717dd99fa0b0454bf87284a71671f92450b', '172.105.247.100', 1676973014, '__ci_last_regenerate|i:1676973014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('565b3ae9c33410e5b2138dc52a1352bbaaa8b336', '172.105.247.100', 1676973014, '__ci_last_regenerate|i:1676973014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e38630970cd4c990dfd9891fd5fa97583074aa26', '172.105.247.100', 1676973014, '__ci_last_regenerate|i:1676973014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd23abc67d424390851d8d773f08c56ebdaa3cb9', '172.105.247.100', 1676973014, '__ci_last_regenerate|i:1676973014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b07718f42636e5dcca3f1fb6db9bb666f1a795', '172.105.247.100', 1676973014, '__ci_last_regenerate|i:1676973014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8ad8650a383edddaf3467b1e832699c98f2652', '172.105.247.100', 1676973014, '__ci_last_regenerate|i:1676973014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6e0453710ce54cea0c33786884fe18671f6eb05', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77fc9880483948da3e7ec98fc0612f3da27ae1c7', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbcc6dd8cfee4a06cf0ab325c183f8d88cdae330', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26437c480592d58b488916a1653018d3789ade84', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5d3236c71e8f1bbe293615483243c70e0ac4949', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edacab41638700c2e72afeaf224251d80de16804', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529a33270c7cceb144ac0715bce5439bd4b0d033', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6566b61327dd65b6c38b87cc4e25a89d76db864', '172.105.247.100', 1676973015, '__ci_last_regenerate|i:1676973015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfae06c1ee3d166ddb7bf89837457ea2843d8c62', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43cc3a6cc49c6cbece0e5037ad806e0a2f7f5170', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f905dcb41a2e09f6b513d8bfe60232170ee505d5', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('888cb4baf1fb28b6d504ddeb171a2d106c998c3c', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30342e299424c10d6f30180fab528cca316373a', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e362bdc651753bb26b9359f78aaf14abf5a8aea9', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87457daa2fbbd88462187f3498fb92b179b8d062', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bcb9b88f20014a4f86d9cf999254f09eec870d', '172.105.247.100', 1676973016, '__ci_last_regenerate|i:1676973016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('067426a20717727c557f57c63440911926ee7361', '172.105.247.100', 1676973017, '__ci_last_regenerate|i:1676973017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17cf693df52fc627874f68508e7b08fd2add0d1e', '172.105.247.100', 1676973017, '__ci_last_regenerate|i:1676973017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acfa5b15fe75f8cf015f2f9889c087158c345e52', '45.120.39.89', 1676974556, '__ci_last_regenerate|i:1676974556;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676974137;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c631f85e60ca50cbc033c317369d099f77257a0a', '45.120.39.89', 1676977485, '__ci_last_regenerate|i:1676977485;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676977481;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82013e5d975c9cbcff93870b9470d313b91a8de0', '31.222.203.2', 1676975584, '__ci_last_regenerate|i:1676975584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953a0f49cbd06c0086b23e30cd12ab783f100a08', '31.222.203.2', 1676975584, '__ci_last_regenerate|i:1676975584;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70c12cafea2814d193df6a4eb68cddf878d38856', '31.222.203.2', 1676975584, '__ci_last_regenerate|i:1676975584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef73b9cd79d0a252139867633579af162005db8', '31.222.203.2', 1676975584, '__ci_last_regenerate|i:1676975584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a790e9f8eb17326f14baba11331912c9a41dda', '31.222.203.2', 1676975584, '__ci_last_regenerate|i:1676975584;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acf4f80e2e045cceb037f3838523f2a6d800af11', '31.222.203.2', 1676975584, '__ci_last_regenerate|i:1676975584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ede993da2640c75ee3dc9c06e08613e9616d8e55', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4799e202f0eaea901c7c66332f53d3a1c8df0ba7', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a9b3ddceccf91199a4617a9b113d1b9ff6c2ae', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adad7ea4e7db0c5213f13e2a38e841f658bbbe78', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('033994505369ee48153d89ba13622e974cc35f81', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f19922cbfe8b0b4c0d7cb5612d491ba3f08af6', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b5a125d595e5a0f257284f61e20691f6afc7c2', '172.105.247.100', 1676977212, '__ci_last_regenerate|i:1676977212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7352e549ff072b14edebbb6e0324c22ec8dd2dee', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a09ed0306ed9f53d235835b2997a694b29413d77', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f96a0e00cb1ce1f4c9ee7fdaf59b8915c402b0c', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4743b8574a1ac50e0d9fa38d40ffcc0808fd51fb', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cabb30f6c4c5e2c296a679952556fcfc497748e', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d064e93e35d52256b65d89c21c014798c8b88dc5', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caac15b472896fec641b6d87bbe3a19d7b5f943f', '172.105.247.100', 1676977213, '__ci_last_regenerate|i:1676977213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631be6d383da51ba9a70de838769c736f7a7d2e4', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42931a48d79b39e5ee61d3b3c2a39088f0140176', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d0331c82987401b89b7c073d94b9e4ac27739dd', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb9e9065e06e1e9dc5f0a38cb89d32b8b8fa741', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b500702a4cc69932f9b2a6d1c92614b8dabddf84', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483abc5c07eeef679aa962a1fda32a36579d7e1f', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e23027266af395b33a0cf77ce8d195bbdf9d461', '172.105.247.100', 1676977214, '__ci_last_regenerate|i:1676977214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de678172785c8489bfc9bf3dc37233b0155e4e57', '172.105.247.100', 1676977215, '__ci_last_regenerate|i:1676977215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('801a58167cf11d5201d1ce290483571ce079929f', '172.105.247.100', 1676977215, '__ci_last_regenerate|i:1676977215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4842029b0526970d7ba358eaabef3b53c394ef4f', '172.105.247.100', 1676977215, '__ci_last_regenerate|i:1676977215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f41c8deb1ee0ec5819ad4f070b2568f937eaf8c', '45.120.39.89', 1676981118, '__ci_last_regenerate|i:1676981118;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676981017;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be9f9073ad34a30d7b319c2c214fec622ccd879', '31.222.203.2', 1676977502, '__ci_last_regenerate|i:1676977502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8bce94ce8c0e43f4b6a9665a4d62d1d37db3d82', '31.222.203.2', 1676977502, '__ci_last_regenerate|i:1676977502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02ddf87b54abfcf888651ae7d6aaa6cf2a552a3e', '31.222.203.2', 1676977502, '__ci_last_regenerate|i:1676977502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a841074c0cbb19cc8de198ccd46d1a0221f1efb4', '31.222.203.2', 1676977502, '__ci_last_regenerate|i:1676977502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486dc29e9b1e65c2585a139a45c39db64081a002', '31.222.203.2', 1676977502, '__ci_last_regenerate|i:1676977502;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f62faeb647143a3ee37c1a2719a44a07092f16', '31.222.203.2', 1676977502, '__ci_last_regenerate|i:1676977502;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcf1cbbd40ad372ed2927c06689ed2bf7d91e5b', '205.210.31.129', 1676979720, '__ci_last_regenerate|i:1676979720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7573e81745fc0ca2cc8c6fc0bb00ca9fc6c6038', '45.120.39.89', 1676981656, '__ci_last_regenerate|i:1676981656;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676981328;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a456b5d2a52da8380709f448b3c9693dfc4752c8', '45.120.39.89', 1676984141, '__ci_last_regenerate|i:1676984141;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676984137;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0bb77c7a18e26d06c60f6b3f3f34e51c2ae1cf0', '172.105.247.100', 1676982014, '__ci_last_regenerate|i:1676982014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2386c8e9e23b7bed1c6e09dc4c008a2f9b846465', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85b1dc8bf6655fa101205f9d5044eccfd60e4fe2', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0403bf251560743855c0df855053c9972e9b28d', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f18168c4f64d585482b1003c8ceb44f26a0c8b', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17ffd94da097fbc084a1d50d16c93d0b84acbaf0', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a76c73cdc8d8c505bc7b90b2f7a2aa7dc56a44', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f494e0cdaaa31622c7438c494cf26aed751170', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9873f62f0c5a766b7d39212793b7e23668f261ad', '172.105.247.100', 1676982015, '__ci_last_regenerate|i:1676982015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce5d470703a3e23636571438aa978477720ad03', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b97fd2ece4765b5b9a7456d2af2ec5afa105c9', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d12f9b64c7b3998bc1afe90a5589dcc8ece7bb', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db3cac3dc438b976d4795c73ad595bb9d29ff8e', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e1752978f89ef24f93f1f2a5c67c0f62773b0c9', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620d45f02b8a9521b3f6909c270a2b48e691f832', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0c0f6eaba1a157cf056dbc41fdd272dfa44cb3', '172.105.247.100', 1676982016, '__ci_last_regenerate|i:1676982016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962de7b6e2c0ef3b9ab4f7f23eb3b23daa212234', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('996c6afbb49408f96830083894098cf038eb58e4', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('564d9b18a31e11a1a726ab418a49a008e7fe4dac', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc603498816f9512fd041a35f5dee5c3b1dac483', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848a9c1115621d8c59e8219b87ae468aae9f36ed', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e57af89c951c5f2c1d808e61ee5b738fa62751a8', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8b572ee06690f29164695aa78d02563b5f16c9', '172.105.247.100', 1676982017, '__ci_last_regenerate|i:1676982017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4a7427200bd7cdd81c56d037d7d09ef1951c48', '172.105.247.100', 1676982018, '__ci_last_regenerate|i:1676982018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9590b2942d0ad8dd522d45a2ac63836e3ae202d', '45.120.39.89', 1676985102, '__ci_last_regenerate|i:1676985102;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676984315;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a5110dc172c64606a52c3579ece32fd29418969', '37.111.219.106', 1676986645, '__ci_last_regenerate|i:1676986645;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676985126;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6872bd5b04ce44ad27b350bbdff61061c66ad046', '31.222.203.2', 1676984540, '__ci_last_regenerate|i:1676984540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6274919b97a0a6c097f99ae4b02908b6b509e18', '31.222.203.2', 1676984540, '__ci_last_regenerate|i:1676984540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61168407dc8d11e182ab6d6d11d3f8441753168b', '31.222.203.2', 1676984540, '__ci_last_regenerate|i:1676984540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29057c7c17d7b36ae13da2a243850ed3972ba4e7', '31.222.203.2', 1676984540, '__ci_last_regenerate|i:1676984540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f37a5abbf22b2f9f1ffa8d0ad35b0d50b21f62', '31.222.203.2', 1676984540, '__ci_last_regenerate|i:1676984540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6388e962168ff6c68c4b271870c55b11ce53f7f6', '31.222.203.2', 1676984540, '__ci_last_regenerate|i:1676984540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f6bc4809c2e03777a2e50a3dd59207d6e95a39', '45.120.39.89', 1676984798, '__ci_last_regenerate|i:1676984798;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676984315;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8728d0e520200df6bbb17f7535857abeaa2a575', '172.105.247.100', 1676986213, '__ci_last_regenerate|i:1676986213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2bdb50fece4ad2f1a246130010a57a046f3725c', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfe056f5049ef1e5bbb7d0f7cde767e213a30838', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49bba2e8d42b340e4bb9daff8dc0dd9a8549a45f', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c6fb0ef79bf264ff13d6526ce437d2c32ac7562', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de445f174cf8ecd805e4f17ed037cec1b484ff5', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f4fa4bbce7308420faf0e768d77f917a898d0b', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31080c0bb21e223cbf757d49b96c8dc45fab5f6', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910434e840577a23ad33316d7305067e04708ade', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac96a99cc7cc74e325701cda1eb6e96a03086faf', '172.105.247.100', 1676986214, '__ci_last_regenerate|i:1676986214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df19e9d4b10d53e0bf3f21601378b82019d5d2e', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1316656041a31d043fc5124c5d5ab97b5df24e9', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e078bf827e36e075be96322b2d5a10abd78bc990', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f43b388aefd0d99c36fd7013c4100cf7df404e47', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5fdde335d868e06f554c6f309159ef35f797e0d', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('879370d25673087ab88f4eb93967ee5d3e326b44', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9cbd50a9cbdbf8ca8d6e901c1388c20e8d081f', '172.105.247.100', 1676986215, '__ci_last_regenerate|i:1676986215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('121683f1de6de0d9b63a5cbce004f5dfa8cd0c87', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4153ecf908cd8e6ede0b3ff17ba608a8122a99', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ed4111e90294fcbacd2838849af80fe6889392', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea39a0a951b8205e1eaca6fdaa5403def7c15bee', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f223bab539cd4c2872a01b457651d4d6b4cce2a', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707ae18df7e17067c11cdd5b60b9eb71f3548d75', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17cb87153b8a9c1687fdeeb6b05c2adf6f82f6e9', '172.105.247.100', 1676986216, '__ci_last_regenerate|i:1676986216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef629e62b5e5e15c4429ec8e6617bb96bd93f555', '31.222.203.2', 1676986435, '__ci_last_regenerate|i:1676986435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b39412602c5e4df31783e8e78a03a0377da92aa', '31.222.203.2', 1676986435, '__ci_last_regenerate|i:1676986435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1716743f8ecef8e8a3462c8242b1372aa43a1c4b', '31.222.203.2', 1676986435, '__ci_last_regenerate|i:1676986435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd890ca93097ee24b6ec5b9be290388cad907bd', '31.222.203.2', 1676986435, '__ci_last_regenerate|i:1676986435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c933003dab568a985178f31967e954426809445', '31.222.203.2', 1676986435, '__ci_last_regenerate|i:1676986435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce5e8771667acff01d2d225d77b90b0b0c6643a', '31.222.203.2', 1676986435, '__ci_last_regenerate|i:1676986435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc931690ae394e0c13aa9d1f206e42549237666b', '37.111.219.106', 1676986993, '__ci_last_regenerate|i:1676986993;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676986796;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6877d0df57ac3c1369d37999d66552838611ad80', '37.111.219.106', 1676988036, '__ci_last_regenerate|i:1676988036;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676987159;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6348a71a830cb81215af52b833dad90633e9d3', '37.111.219.106', 1676988577, '__ci_last_regenerate|i:1676988577;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676988167;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3935cce8e59b9f87678a0bb2b43faa81c3641b97', '31.222.203.2', 1676988313, '__ci_last_regenerate|i:1676988313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe112b23defefab0ee846fd4e84bcd6cd1bffdf1', '31.222.203.2', 1676988313, '__ci_last_regenerate|i:1676988313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25430da6ff9d04a729b10c4a58abfac9105818c9', '31.222.203.2', 1676988313, '__ci_last_regenerate|i:1676988313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020f1ba76c7ea64d2982de76b7925faa61676cfb', '31.222.203.2', 1676988313, '__ci_last_regenerate|i:1676988313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd3d8b09e8fc99777dc1693730c0abf827383b1d', '31.222.203.2', 1676988313, '__ci_last_regenerate|i:1676988313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d4afcd49db0f8ca6e431ad677107e7027ef5bdf', '31.222.203.2', 1676988313, '__ci_last_regenerate|i:1676988313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89821b9ab10ec6da1e82b3c52ddb6bbd07af4392', '37.111.219.106', 1676989134, '__ci_last_regenerate|i:1676989134;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676988577;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099e8aee431dfe4687a1303736a9c6c2ba88f078', '37.111.219.106', 1676990212, '__ci_last_regenerate|i:1676990212;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676989690;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ec0240ca05aae71a57a6653b064fcb2b9ad8c53', '37.111.219.106', 1676989437, '__ci_last_regenerate|i:1676989437;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676989437;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b07e0fbab259dcadfb54515a11bed7ac249462', '37.111.219.106', 1676991559, '__ci_last_regenerate|i:1676991559;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676991537;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('267b3a3447a92cae28b0aebb559364d7788a0a1a', '172.105.247.100', 1676990415, '__ci_last_regenerate|i:1676990415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d97833257ccc4e06fd73fb65b810f4e771af57', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c13e81aa22ccf5cd701c11a9cfb9fa5df779453b', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6560a801069891098b1db36bf65954774fc17e25', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3452cc3638e28977302983be29086046aabfef', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3bc7e8a8b036738ce238f735a9fb2bba85b3a3', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a05a8332de311da8c6149bc1050ccf64ae2c42', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91e0c94246ba1d817000ce8513bb0e49e4e964b', '172.105.247.100', 1676990416, '__ci_last_regenerate|i:1676990416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caefa69ae4bdab9d94c67927a951d94fd955818b', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fefccafe1e868149489fcd8ddd1405a8c565c945', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9488b6768715c5afe0c3af7599559f038a78de65', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02f45b00847800a9c5a9009d882d3017ac7314a6', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('072fa12d1739f803e4fee01909c152f1feb16ca4', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fa3c4ece21381cf1cc33c1923a11656619dbb5e', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e3ebfaf2ffd0a746bd1135846e6b118be58a7bb', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19c573ba468d3bcb0d36d8296d83d247538e71a', '172.105.247.100', 1676990417, '__ci_last_regenerate|i:1676990417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36c8c65976442cb330dbe7af6751e889f33ce33', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c29e99c96bbee8aacec910eac60707befbfffe8b', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275ad5ca545da9f4212f5e2e663a39003ae3c92a', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1516ea0b25bedaaa9b42932e43d1de14fe4f2537', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('071646520b3d617d570e0e42e13e2face0752288', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a361cfdec444e799e44b69d4d3f95391b65633a1', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538e03b203adbb415a65fc0ce08682065192f62f', '172.105.247.100', 1676990418, '__ci_last_regenerate|i:1676990418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1949b001f63afc470f5acd9c5b64fbff8f6efdfa', '172.105.247.100', 1676990419, '__ci_last_regenerate|i:1676990418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df19879bd2863bae81c53390d898cdb8bce86ea4', '37.111.219.106', 1676991868, '__ci_last_regenerate|i:1676991868;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676991852;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e452abc3e239073366c8a087b644b9b3a2bc9f', '37.111.219.106', 1676992792, '__ci_last_regenerate|i:1676992792;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676992783;register_id|s:3:\"348\";cash_in_hand|s:9:\"5020.0000\";register_open_time|s:19:\"2023-02-20 20:56:12\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142ccd877813a48c3d1450abdc95bc796b94702d', '93.114.235.167', 1676992001, '__ci_last_regenerate|i:1676992001;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbf57dee29c696df3623503cf5a687795f959840', '93.114.235.167', 1676992001, '__ci_last_regenerate|i:1676992001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b6b27467a9421e5617975a444d90a2741278a4', '93.114.235.167', 1676992001, '__ci_last_regenerate|i:1676992001;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('020fe2244a85a046c275ebfd2f085275f324c968', '93.114.235.167', 1676992001, '__ci_last_regenerate|i:1676992001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6358c6b2c1cfe61b8b1a92aa078038b08e27ede5', '37.111.219.106', 1676992819, '__ci_last_regenerate|i:1676992792;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676878221\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1676992819;register_id|s:3:\"349\";cash_in_hand|s:9:\"5370.0000\";register_open_time|s:19:\"2023-02-21 21:20:14\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65b0e7616c14a7b02763a8a6aa7a6f2f16cb9d0a', '172.105.247.100', 1676994614, '__ci_last_regenerate|i:1676994614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9297f9e3a9e4e1657ebe65611d1a0eb9bf5a4bc5', '172.105.247.100', 1676994614, '__ci_last_regenerate|i:1676994614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29bc0e6a8fc3acdeec21e395b8846baff411f4f1', '172.105.247.100', 1676994614, '__ci_last_regenerate|i:1676994614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f901389cec7f381da3609686cf0f95ce998e49', '172.105.247.100', 1676994614, '__ci_last_regenerate|i:1676994614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91502f8fb223994e963127b33c8f0c40fed7319c', '172.105.247.100', 1676994614, '__ci_last_regenerate|i:1676994614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('362fe8e9e181b6e6cead76f1b786e3bd389bf132', '172.105.247.100', 1676994614, '__ci_last_regenerate|i:1676994614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecfe9b1e92bdd4d4ab02f130ec892db318e28774', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b87d762a5b5808e308c5da0383ceb32ba4ff542', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde2db9da4d58c1bcf99bbb99beba7cd0140e9da', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de84972999029a11a6c72e2c768a42d0edd1cec1', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8198bbd7b73ee6447717c26e8f09d1e8fe41e6d', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a14f3e5c969c32e2da0739fb54a6ed2099ab7797', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('952ee0b2ec04129775da8aba214ed5573849187c', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95cc35669b0278ec701e0a3a135bee98fa6222eb', '172.105.247.100', 1676994615, '__ci_last_regenerate|i:1676994615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b461f39a1f737713ae3219a4806b809c9e6b9b18', '172.105.247.100', 1676994616, '__ci_last_regenerate|i:1676994616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f16ee39451a0089468df626d54e476fd1b812aa', '172.105.247.100', 1676994616, '__ci_last_regenerate|i:1676994616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a416fdeb0967e9891c29de0ff40d2bf5ac4cad7d', '172.105.247.100', 1676994616, '__ci_last_regenerate|i:1676994616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fbe377e610b34e7653d288d60ec1a08de59bd1', '172.105.247.100', 1676994616, '__ci_last_regenerate|i:1676994616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1858c2dd2fb4ca513583a30ac273a74ea83fbec', '172.105.247.100', 1676994616, '__ci_last_regenerate|i:1676994616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adffbafe637ccd92063412e7442f220c3cf00279', '172.105.247.100', 1676994616, '__ci_last_regenerate|i:1676994616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891905542d385d30a940cee08aa0ac6d6583cd97', '172.105.247.100', 1676994617, '__ci_last_regenerate|i:1676994617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b2f60be8aec9065e692a3253f41d4e4c8b6c1b', '172.105.247.100', 1676994617, '__ci_last_regenerate|i:1676994617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16db611950c8c34b182c9519616a721e2e24442a', '172.105.247.100', 1676994617, '__ci_last_regenerate|i:1676994617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72654f046613973abb6a03900ecc71a4c805eac8', '172.105.247.100', 1676994617, '__ci_last_regenerate|i:1676994617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56874d4126ea74363b54bac26044a4f4a5b94610', '31.222.203.2', 1676995452, '__ci_last_regenerate|i:1676995452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b346427a65e599f823f1ed122f7e41c438fb9a5e', '31.222.203.2', 1676995452, '__ci_last_regenerate|i:1676995452;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc3d6312c40cc32fb0bd11d87efaf2dbb59914d', '31.222.203.2', 1676995452, '__ci_last_regenerate|i:1676995452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffce05506b6a2a82480e018d090e9a967473197', '31.222.203.2', 1676995452, '__ci_last_regenerate|i:1676995452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8b102787444de1dfeece9664ae1fd3e9a4d7a4b', '31.222.203.2', 1676995452, '__ci_last_regenerate|i:1676995452;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6211c897f6f90c57ebfaf34b14d8952ae79dd613', '31.222.203.2', 1676995452, '__ci_last_regenerate|i:1676995452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31842aeaaba1fd7954428ca39d45eaf21bd6e1cc', '172.105.247.100', 1676998815, '__ci_last_regenerate|i:1676998815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f137d0c06a3318d6f993744fb6640f75816f38', '172.105.247.100', 1676998815, '__ci_last_regenerate|i:1676998815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee14bc442fc509ba1d1276ca559f4ca0ca48f457', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d72265f080a0b5aa0b6dcfbf66bc37ec25b85ce8', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1719dc1b2c728d8d51555cfa1d4d4966fbee315b', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92495760db8f7186a466665828b5d7e84d33261', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52ae397d99aa9139816399bc80a5883fb1c1283', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6487864491496ae58b2548bffa945803d37f72', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('228726bd1b6ff2bd0a98b65252fcb2783548df63', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3487b9b2e9d8953bbf23e0dfde995b30d9be94c', '172.105.247.100', 1676998816, '__ci_last_regenerate|i:1676998816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5bf13580443d0ef6def4f1468b3e2805d7754c7', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c6175bc6e2519039b632d502532776b7e479d11', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01e6211ffc7189a1691a6790005fed5f78c1f6e', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0a0db35ab5a008b206b21a3a4d60bcdd9845ff', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c07b66d7baaff8fe688db7837f18302867d57a', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd663e7ce333ef5e550a414570794fb0240c48aa', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8cb8c154d079db16d1344163877cde723033542', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d7753ac65df03fff26134beb983f1be2e025ae', '172.105.247.100', 1676998817, '__ci_last_regenerate|i:1676998817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80c4312f611d01f8f4dfe2b6039323375aa6989', '172.105.247.100', 1676998818, '__ci_last_regenerate|i:1676998818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ebbdffea34ded993ef4d0c1ba6b15ad81c831c', '172.105.247.100', 1676998818, '__ci_last_regenerate|i:1676998818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550e8a27731670ad84056812e06dccf76be57b51', '172.105.247.100', 1676998818, '__ci_last_regenerate|i:1676998818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02fd495df9aefda58c6b626ce36253f742a604ea', '172.105.247.100', 1676998818, '__ci_last_regenerate|i:1676998818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c5a99a6553f803008794d6bac439267d3f4095', '172.105.247.100', 1676998818, '__ci_last_regenerate|i:1676998818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c4d08382a0ce13b05f121287172bf4470e3d2ca', '172.105.247.100', 1676998818, '__ci_last_regenerate|i:1676998818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6eb2667df7763506ce0d39ef4e5515a0567376c', '72.9.158.112', 1677000585, '__ci_last_regenerate|i:1677000585;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c271e2a2a22617965f413c307bbd71aff550e572', '72.9.158.112', 1677000585, '__ci_last_regenerate|i:1677000585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e8c961d544009ec4c243ef88e96631ebf60aa9', '72.9.158.112', 1677000585, '__ci_last_regenerate|i:1677000585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c229a99c495f4dd9ed08a5a167651a5dca64c54', '72.9.158.112', 1677000586, '__ci_last_regenerate|i:1677000586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24d7ed758b13dd0559a8265d6c222fb4540292b9', '168.235.94.63', 1677000625, '__ci_last_regenerate|i:1677000625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b0cab305faffba770199fa5a032e9f864c34d5', '168.235.94.63', 1677000625, '__ci_last_regenerate|i:1677000625;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff5f2c09636906dc528803afb09a408939ad710', '168.235.94.63', 1677000625, '__ci_last_regenerate|i:1677000625;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c422dd4c5b726325e0267038bec1d1ea0dd8722f', '82.165.184.76', 1677001663, '__ci_last_regenerate|i:1677001663;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0211dfb34b18765d2366796e882043e314be7be1', '82.165.184.76', 1677001663, '__ci_last_regenerate|i:1677001663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7499a66436ac0a196b26c6e55d2409699c475ffc', '82.165.184.76', 1677001663, '__ci_last_regenerate|i:1677001663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e1eb6cd4fe2b33aaea14139d38c9f62e17d91e', '82.165.184.76', 1677001664, '__ci_last_regenerate|i:1677001664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea79a91baa1e76c974aef0f98f5be6b87010f735', '31.222.203.2', 1677002540, '__ci_last_regenerate|i:1677002540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bf5a6e0522d44d316af80ed0f70820b73c535d', '31.222.203.2', 1677002540, '__ci_last_regenerate|i:1677002540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ae22715b9451cb87c31797d49f6ad0bd1919c4', '31.222.203.2', 1677002540, '__ci_last_regenerate|i:1677002540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e0d5e3639363a2c403671201e5c13331c6dee17', '31.222.203.2', 1677002540, '__ci_last_regenerate|i:1677002540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55984b4b617e4a26ebbc13e9764948d74705249e', '31.222.203.2', 1677002540, '__ci_last_regenerate|i:1677002540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce8e31fbd8fef2d9c1e108f1826eeb11b93beb2', '31.222.203.2', 1677002540, '__ci_last_regenerate|i:1677002540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b53865f63735759973fbc86b2dbb6e626f4399ba', '172.105.247.100', 1677003015, '__ci_last_regenerate|i:1677003015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d4253b83a13052b6707fefe9e203252f48f1e5', '172.105.247.100', 1677003015, '__ci_last_regenerate|i:1677003015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4e12997218a3a237287c5c8febae263f50472d', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b432b25d49a2e6a82f65c016292dba74b366737', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cadf807f011754c1021f5833a82dc70b9b180b8', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e14bb644268a6f2d0ad80e4553ad7e05b3da25f', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600b8e16a38e9234e75dffbed3b232cb04abc0e1', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94af86dac8b3be92c127ef77296d569dac2ab8c4', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c87af1b52e92ac19eb188d41d10fb64dc1417a37', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901900a01e00dea25aa34ff7fe75ab14e82b5286', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d709d07c176992a126a536d165f90ad6fd41eb', '172.105.247.100', 1677003016, '__ci_last_regenerate|i:1677003016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff628b0ca1a27fc3c341dd11f9324db06081906', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75a30f7032983c4d02898a836e11063c2c638284', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40852db904ea2f4632d2ddb1797f3503682da389', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1535bfb29b4b337edce26edb1a9f668c7ef3fe48', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9dc1b006e76f57afa50ef67b3f0ced651e8bfde', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcad0c5cba6605c4e6e1354fc2fc96627c49dc2', '172.105.247.100', 1677003017, '__ci_last_regenerate|i:1677003017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e896d4998449c12a9503cc953f5070e972e4b3', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1996488bc7dac2df7daca9bf5b86d3bc662102f3', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cf79b688587a7c422e3d9b7fa3264b0f3e0d1a', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6223d83d631cda0268b3194c196db278690101b6', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99d94ff2d69346b28210db5af1b1174224faf2c9', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bb52362737f0e03cd27400992a360f9de0087ae', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48479ab71fee254c6ebdc44eba153369298ed344', '172.105.247.100', 1677003018, '__ci_last_regenerate|i:1677003018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('379c22bad3defec50e078fa669b15a041d841d90', '150.230.247.143', 1677004326, '__ci_last_regenerate|i:1677004326;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08cc38a2588e494a5a9d3169c116995c11b4d4e', '150.230.247.143', 1677004327, '__ci_last_regenerate|i:1677004327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fa51b078b40a2adb90d5a5faf804db54553728', '150.230.247.143', 1677004327, '__ci_last_regenerate|i:1677004327;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31042076e2fe0299f74fc5dd769301e4c49086d0', '150.230.247.143', 1677004327, '__ci_last_regenerate|i:1677004327;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1729f799f83cf816fe7b7ad315c40fce7a916b1', '31.222.203.2', 1677004435, '__ci_last_regenerate|i:1677004435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4527d9ee498a91b7b2a31f5d969711917766abf4', '31.222.203.2', 1677004435, '__ci_last_regenerate|i:1677004435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f521ecd0e07192658161e885116d88b2e51984d', '31.222.203.2', 1677004435, '__ci_last_regenerate|i:1677004435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4221cb6e7268b9a9b8c4457f4a2ffea05c23f4e', '31.222.203.2', 1677004435, '__ci_last_regenerate|i:1677004435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b9387d7dde0761b49a8f1c82ec5f4c969beb82', '31.222.203.2', 1677004435, '__ci_last_regenerate|i:1677004435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b9f8cac260f242910f076a580e10242346bd6b', '31.222.203.2', 1677004435, '__ci_last_regenerate|i:1677004435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ef8f746afaa97421f7b058335908cb81fe7cb9', '31.222.203.2', 1677006313, '__ci_last_regenerate|i:1677006313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51be61056206634272c43eee6bc8a35ef9b6d17e', '31.222.203.2', 1677006313, '__ci_last_regenerate|i:1677006313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('304fadfc07834f431933b5022eda0f4cad929ad1', '31.222.203.2', 1677006313, '__ci_last_regenerate|i:1677006313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e431fc03f82ecb00c96370c95670c0d54da5f3aa', '31.222.203.2', 1677006313, '__ci_last_regenerate|i:1677006313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338dc85eed43a71ccef4d684268bfd3b7e2d9343', '31.222.203.2', 1677006313, '__ci_last_regenerate|i:1677006313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f6993e64154df53d460d414f4d8d3035906db6', '31.222.203.2', 1677006313, '__ci_last_regenerate|i:1677006313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9026338c82b33efbe7068e17ac49481c3a3de06', '172.105.247.100', 1677007214, '__ci_last_regenerate|i:1677007214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b35c07459536c05cdadec89feb3c51bf5813daf', '172.105.247.100', 1677007214, '__ci_last_regenerate|i:1677007214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fba3582a1b74093c953f7f309e23877ec7e747', '172.105.247.100', 1677007214, '__ci_last_regenerate|i:1677007214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b3402cf6128f5b545851bfdb83655a67279b19', '172.105.247.100', 1677007214, '__ci_last_regenerate|i:1677007214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acca62bea423bd3805c4827fb89d290c1b4ec10', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76405e6e32ff9278071941e1cb5b9f138ad6ca7', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662cefb2cb03cbca25a3bc2509a31f6da9088fea', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf30c59314b7d82207c8fde653a12a339f149971', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d758b4713fa2d43930cb1de937135021cdbfd69f', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d13ad92d05fac7fd52e05d1d8e084ddfb02bf8', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863839f8b91a71bae206950d46736de2f07bbe67', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf737e53ed85435381c35c84cda9d1de301db79', '172.105.247.100', 1677007215, '__ci_last_regenerate|i:1677007215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2ba41b4adf91883d47dbfd74bbf221c7ba388a7', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b7b021a2932b90febc71098666ef4ad58cb17c1', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6495fbd834df63825ffaa69714f2733a32e090f5', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2950c638130e0d697e34f188a189bdd83ba6d14', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce36acbecad8d84ba1956711c15554ec05f7d5a9', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fddde804aed65278d7dc86fd3d6c3c9c97d99ad', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37ab60e21fdb190b6bcaa764eae0a10945346bb7', '172.105.247.100', 1677007216, '__ci_last_regenerate|i:1677007216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab41abb838c9dd20039d5981d5b3bdaf47dac4a', '172.105.247.100', 1677007217, '__ci_last_regenerate|i:1677007216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbabe80de7a446312bcd9f2220fc8aef4644bfd4', '172.105.247.100', 1677007217, '__ci_last_regenerate|i:1677007217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f06fbdcc47c8abf14183cfce4dcd04f56a6ec3', '172.105.247.100', 1677007217, '__ci_last_regenerate|i:1677007217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('703ede7c14d8ea695f5d3c9fea98853cd67328cc', '172.105.247.100', 1677007217, '__ci_last_regenerate|i:1677007217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63a93caf754a1f3bdea1da9431f2dba3d15bf2a', '172.105.247.100', 1677007217, '__ci_last_regenerate|i:1677007217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8270c030c4a569ed95755346589dbac66333988b', '172.105.247.100', 1677011413, '__ci_last_regenerate|i:1677011413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5b8e33729173be149e265014c639034ce281178', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4966596a34f440997e22fb49f8d7594ad62323c7', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85704882b772cdad2866419f1a1bda71bfd13a8e', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ea13d862ebc53c1312dd47d14210e6057a253d8', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b1ec887d2d5142deb46602f3bdcd23833fb518', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fc26918081b4a3518862df8e6a8a640efb1146f', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baabd325273bd86a72e611820e7861492386884d', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ea4dfb656e7f71e565af48090769fbd337e317', '172.105.247.100', 1677011414, '__ci_last_regenerate|i:1677011414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be516e82b77ff9424848e3e28abe9319f9f0a12c', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23cfd6d26a5f584ab9998dad4571559b7b8b41dd', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13806f87dc272013898c073a3e8377462fdcb17a', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a92bd23afe7bf2e179169c5ed26130970bc17a5', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e78c13dab701d705f5b9a94ae23bb3c6fbb903a', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a51a6d7e40b98e4bd329b6f62d279b32a2ae05d6', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b6cd1b4bf1225fb779d050a55beb967eab4a3c', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2adb953d878fb6c86373dfc2a6c0fe1f9b7236e', '172.105.247.100', 1677011415, '__ci_last_regenerate|i:1677011415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45d5b882bc3fc67c691a50b351308367e5062e7f', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b62ff890679479df21fc400ee5917b5acf3434', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3290f89076e39d59cc8572763856e6181ba85fe', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e17345b75b67b1d813b6609dc07be4e5f24be909', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d406c47044ba41c63d1c3e790857f8aee01038', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595ea39e686b2e87c20f461f6408a69f5f4a34ec', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb1866581e2a41d7e5392451d843412772b4545', '172.105.247.100', 1677011416, '__ci_last_regenerate|i:1677011416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d4cca7d3e34ffae73bc29906714876f48f01e2', '88.99.140.51', 1677013023, '__ci_last_regenerate|i:1677013023;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cc3205ab5d10d58218e2651341d0f35614632c2', '88.99.140.51', 1677013023, '__ci_last_regenerate|i:1677013023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99067dd1ebbc079f70ae3a30503c875e4f09f31c', '88.99.140.51', 1677013023, '__ci_last_regenerate|i:1677013023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7ac2325849dcfd33d4f1ee8e442da1251c6106', '88.99.140.51', 1677013024, '__ci_last_regenerate|i:1677013024;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42a13d1ff02beddf76c8a0c9512f4521d03f975', '31.222.203.2', 1677013444, '__ci_last_regenerate|i:1677013444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029c050ab47479e837de720558a919431543d856', '31.222.203.2', 1677013444, '__ci_last_regenerate|i:1677013444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeef36aa056564d677a49a20f8d4344c44954766', '31.222.203.2', 1677013444, '__ci_last_regenerate|i:1677013444;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045e125b2c8c4de26e11e9a5990363ddc9830b25', '31.222.203.2', 1677013444, '__ci_last_regenerate|i:1677013444;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f14dea875846dd06c1a5e547554b953b08d7b5', '31.222.203.2', 1677013444, '__ci_last_regenerate|i:1677013444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f78640d96b59d0d831844931f262d0bd22c6154d', '31.222.203.2', 1677013444, '__ci_last_regenerate|i:1677013444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e7d7b7d09c5fca7d7e15e19b7c6059ad69de24', '172.105.247.100', 1677015615, '__ci_last_regenerate|i:1677015615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf836ac96df7d0e1c5939eee6916d9ed047a835', '172.105.247.100', 1677015615, '__ci_last_regenerate|i:1677015615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2acb9ada468c7c59db899910da85c8af1a2a95a', '172.105.247.100', 1677015615, '__ci_last_regenerate|i:1677015615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a035ec010d77a03b837f064d7872d3d37234e08', '172.105.247.100', 1677015615, '__ci_last_regenerate|i:1677015615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a140846cf2c3fdcc4487e493679774a2fc552b5', '172.105.247.100', 1677015615, '__ci_last_regenerate|i:1677015615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bb2bf4646ff26ab57fc782e78a2534dc74f3675', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41bc775d46dca45b1af20f14076ed1d87cb7c3ac', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55533163efe2f0055411d8c33de22624d7873b71', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab30490efd974e72a77c47aae09dd93c267cc96', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125dfb5440b6bf9c980b83411c0a0cdf95623fb0', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dc8a3a850b3e2c02ba77317cbd6fb0ddd3ddac5', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da74c2cd3a82578ccd560556dee7da63f8c02034', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f2d27e381055b873e7d94b114a092f66c696446', '172.105.247.100', 1677015616, '__ci_last_regenerate|i:1677015616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64d3b75fad59acf9c91ad9f7696d1bf7e99a4eb', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9d16deb1bc19b771a5d8f6bc5afac03f4f3fda4', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52ffa58d6109ef41436c07dc5c56390e68fc4c0f', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456621b4464d5b087ef3526eaa264f6dc9179d0e', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9f7b3c09ab92236ef662672b2fa19b8b405081', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a484c1753cef96a9d6bfb06da4dc9bd0cc8a5e22', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d776f9b99faf16315613ce3e4064637785b705', '172.105.247.100', 1677015617, '__ci_last_regenerate|i:1677015617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c881af90192a4a8f10ae2ed08acac9bf939411a2', '172.105.247.100', 1677015618, '__ci_last_regenerate|i:1677015618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eabe18642f1674a44a0faa8d242c24b45c261207', '172.105.247.100', 1677015618, '__ci_last_regenerate|i:1677015618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cf5a7cdcda88fd9d51a593b0425a1ac90c3e6f4', '172.105.247.100', 1677015618, '__ci_last_regenerate|i:1677015618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690bc368f8f8cb45754da3daa684cc7cc7293342', '172.105.247.100', 1677015618, '__ci_last_regenerate|i:1677015618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89cf031f83d12b2bd83fcda6d4a4d705cef3bbc3', '101.68.211.2', 1677016386, '__ci_last_regenerate|i:1677016386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('611201b08a6c45bac35288f36cd2b948360335d1', '101.68.211.2', 1677016388, '__ci_last_regenerate|i:1677016388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba50e8327fc9e710a10eb34336ff62c9b87429c9', '101.68.211.2', 1677016545, '__ci_last_regenerate|i:1677016545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb635be8d5d65769a5080e9a797b5874baae27d0', '101.68.211.2', 1677016546, '__ci_last_regenerate|i:1677016546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9a0adb877a09dfc34911e873f683a863430c51', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('084fe17420652485b3817d48b5077dfd0a3ea44a', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('705ffef28f11d36e9bda37856094033f6179dffc', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('343ccef72938c50da626b08f2eab05457e7179e9', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2553f63b26917b3f4fc753cc0f79482deaacc8', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b519d7bf4c4085197f6ef36bbcbc8c1d8b6426', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf0c2c54c27c6faf0dfcd7f65657e629b122658', '172.105.247.100', 1677019815, '__ci_last_regenerate|i:1677019815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa385d2679b87b9a6359913f7e525c016b6635c', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acce35311bdb798df61f959127f3b7857e3563e8', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ead7d02356c24428f3845e9c8ed27d900bf7255f', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8164d75b31e16ccf0fc393aee22234c5c01fc407', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4115300c868416c7b97284f55da18641430d8140', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6081b680713cc6c6eb2bd7396669457c751e5c3', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceaa6285d1e365e31f2503437a19fc3da9732d01', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f8ddc3ca009760cd5e4f2c790f63176f8cfc83', '172.105.247.100', 1677019816, '__ci_last_regenerate|i:1677019816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b291571da8a9bda45027aa29ac08a147bd6ca367', '172.105.247.100', 1677019817, '__ci_last_regenerate|i:1677019817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7517c6cc8d1c96e1a95884710fea7c30ea086d0e', '172.105.247.100', 1677019817, '__ci_last_regenerate|i:1677019817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d656c0262728e9e8c02a9ffc2b2c610a91dea405', '172.105.247.100', 1677019817, '__ci_last_regenerate|i:1677019817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034d774127734eb01a99ce682a821c1a23f4b5c0', '172.105.247.100', 1677019817, '__ci_last_regenerate|i:1677019817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa67e2050c7e04c6242e6ff8d2e497d808796bbf', '172.105.247.100', 1677019817, '__ci_last_regenerate|i:1677019817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145c5470c7044a15cf665fd98e4c4cffedbbb1b1', '172.105.247.100', 1677019817, '__ci_last_regenerate|i:1677019817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314644e92c86f3e01f19cd6dcf660ec39e71a013', '172.105.247.100', 1677019818, '__ci_last_regenerate|i:1677019818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496d1dddb348323c3c6677d1e95260b65a666df0', '172.105.247.100', 1677019818, '__ci_last_regenerate|i:1677019818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9204689b5ef4a527f22630902f95307d5bbec7', '172.105.247.100', 1677019818, '__ci_last_regenerate|i:1677019818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2774d2d859852e42b0ec20476211850a735de767', '31.222.203.2', 1677020590, '__ci_last_regenerate|i:1677020590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d0b9dea11b144eda6b8d0a04ef875ad6599c9c8', '31.222.203.2', 1677020590, '__ci_last_regenerate|i:1677020590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bafa30d7a09feaaa6ea37abeeab63b42288b9a9', '31.222.203.2', 1677020590, '__ci_last_regenerate|i:1677020590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1698feb182a405f1e9fca6a6dff16381314eb50', '31.222.203.2', 1677020590, '__ci_last_regenerate|i:1677020590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5727c8492227cfe52c2d8022614ae0d6855d832e', '31.222.203.2', 1677020590, '__ci_last_regenerate|i:1677020590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d1d0b7d0f031dacfbea6258bd8e5b2e6466095', '31.222.203.2', 1677020590, '__ci_last_regenerate|i:1677020590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e074ed956a47a717253a96206f640e5854e1b3f', '31.222.203.2', 1677022461, '__ci_last_regenerate|i:1677022461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6103e7b90713f0d172de056236fb87528f6dda9c', '31.222.203.2', 1677022461, '__ci_last_regenerate|i:1677022461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32358017ce2195d421e4725e71f58f4094826730', '31.222.203.2', 1677022461, '__ci_last_regenerate|i:1677022461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13d1aa3e9ea72194b02452815581fccbd7b6c90', '31.222.203.2', 1677022461, '__ci_last_regenerate|i:1677022461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b61f9bb9e25f946d47573cd9e243c83a0b190d', '31.222.203.2', 1677022461, '__ci_last_regenerate|i:1677022461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8848a6eaffe0fa07fd3a6a0bb425813d082b4104', '31.222.203.2', 1677022461, '__ci_last_regenerate|i:1677022461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fd4c77970d6b5bc5529859b69b4ba6a425f8342', '172.105.247.100', 1677024015, '__ci_last_regenerate|i:1677024015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5cefa1a58c701c5c45473610624d4752b36573d', '172.105.247.100', 1677024015, '__ci_last_regenerate|i:1677024015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8b2bd9761014d61d8d14905a22570fe7030abda', '172.105.247.100', 1677024015, '__ci_last_regenerate|i:1677024015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b123166627b828a6f14e9552bfa9f2b7c206ec3', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302162bb2617ed0185a982a40e03afdd5d96f03a', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd16393c6a46bde6e8f2135df11198b2e589f8b4', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b8bd315c562c4c846873466d81e28eed1b4f76', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b38d4f811b72065475f1831ac392860990f1fb1', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceea3ad20a02f0975e70abcc61cf9eecca68e76c', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3188a158f1dc26f90838a0106852f4bd1da4874c', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da80a68ffc9305339e948bb806bcc2c94c12db36', '172.105.247.100', 1677024016, '__ci_last_regenerate|i:1677024016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8d5af1bb9e4230735da7b48cbd97f857bd907f', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806ac2b408a1c4ddb860bb1139cbda89ac38fcd3', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c399e7b2b34d33f21b8d3a834ec4c41f3d8b2f5', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb6905300d8b099edeb228fb423d8c876169f6a', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8c917c33906fb22991739c778528249c4885be8', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706062e8dd75c7d76da8529bc1c5b309504be053', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776d12b183257690dd9a38289d66ae7e65c0bd84', '172.105.247.100', 1677024017, '__ci_last_regenerate|i:1677024017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e609631ff129ecb1b449b8cfbfa3e01edffe7673', '172.105.247.100', 1677024018, '__ci_last_regenerate|i:1677024017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7782ba732c038c1fb6b9238885a02966774961', '172.105.247.100', 1677024018, '__ci_last_regenerate|i:1677024018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5620adf97d4517bcee4ca3a5a989e5e47ccc2789', '172.105.247.100', 1677024018, '__ci_last_regenerate|i:1677024018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12318a3696a51eb791b52925271fa8b1d18edee', '172.105.247.100', 1677024018, '__ci_last_regenerate|i:1677024018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f310f434590e5d9181176356279af445692d0f53', '172.105.247.100', 1677024018, '__ci_last_regenerate|i:1677024018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76274b674398f73f632047e33a5daf83aa56b49c', '172.105.247.100', 1677024018, '__ci_last_regenerate|i:1677024018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf19770392ce9496b36476ad857cae1c874d08a', '172.105.247.100', 1677028213, '__ci_last_regenerate|i:1677028212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339a17d8286cb38f61dcfe2eab2097c658bc75f2', '172.105.247.100', 1677028213, '__ci_last_regenerate|i:1677028213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9143bf333058c640d9246eaaf792bf86a145e4e', '172.105.247.100', 1677028213, '__ci_last_regenerate|i:1677028213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf4d31f3b269e811fcc809add16c26b33850cab', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e313002d823d38ad529803f253743b3ddaaa53c5', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6736d15b85c9cc1331c7a8e8952b4b3a156a7ca5', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9c16f0a5dd2e01c8fd94cd1d15783efbdc6c54a', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c792523624fd7d2cc3b915a9d1e805314dcc67', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7686b92ed8f88531b652710298ef078ffd199537', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cccbe65b52be5e0d56d77a180120827345bd8df', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71a7bdfdf82e00e97cd07eb2d845bf79013360c', '172.105.247.100', 1677028216, '__ci_last_regenerate|i:1677028216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa480b2fef24a16a34e3dfab7c012ee5c1711ec', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e904c653c94d1838c604ea0c4143f66dbef487', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cafedd074c1c5557e8dbbd923b29d8c46206533', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a0978ea323dfe07b578af12a4d486878bec97e', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896332dbc0498767564386c64ebc64176d529641', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8f1a511e1c6877f7ab739e64796af0f2945ceb', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63838518151eb8c746595ad202f29584f736847', '172.105.247.100', 1677028217, '__ci_last_regenerate|i:1677028217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8fe07fcbe20ad606c2b2123a73f6fa9fe8699d', '172.105.247.100', 1677028218, '__ci_last_regenerate|i:1677028218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162649023ae706d4f9d235a37127ea89e278010f', '172.105.247.100', 1677028218, '__ci_last_regenerate|i:1677028218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3490e8a08cb4693f3d719bc2a4e6d4591b87e335', '172.105.247.100', 1677028218, '__ci_last_regenerate|i:1677028218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f62bdf16a7703dd5d74b524fbdddebb6982d4b1', '172.105.247.100', 1677028218, '__ci_last_regenerate|i:1677028218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8048c890b9e77ad8cbaf7ac5671032011bcd7eef', '172.105.247.100', 1677028218, '__ci_last_regenerate|i:1677028218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f91b60601dbd4d4b78217ea2d04efde748d0ce6', '172.105.247.100', 1677028218, '__ci_last_regenerate|i:1677028218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a62f2852942027f2bb3658350d3fafd68d740571', '31.222.203.2', 1677029590, '__ci_last_regenerate|i:1677029590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2dc22f58a56ac0c9df1c581d4858665036730c', '31.222.203.2', 1677029590, '__ci_last_regenerate|i:1677029590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee311d3ef6a0506a93b12aa0554339dea0e439e2', '31.222.203.2', 1677029590, '__ci_last_regenerate|i:1677029590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('580002f550f3ae10409a243597e39cc4aabb343d', '31.222.203.2', 1677029590, '__ci_last_regenerate|i:1677029590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18ece37efce12e7c59da6e8e9e8ac92760e71732', '31.222.203.2', 1677029590, '__ci_last_regenerate|i:1677029590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a74675150af9011c781ab2edc9adfa21012c4455', '31.222.203.2', 1677029590, '__ci_last_regenerate|i:1677029590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8195459bd8d79541927f40d53aab76eec389c2', '198.235.24.46', 1677031309, '__ci_last_regenerate|i:1677031309;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91f07dee2d683ab646344277cb7706335588dbb', '31.222.203.2', 1677031461, '__ci_last_regenerate|i:1677031461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60526d21947c81af0223214f851db6013c7156dc', '31.222.203.2', 1677031461, '__ci_last_regenerate|i:1677031461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb2138cbede4503468bd5bb8386cd228688e8f9', '31.222.203.2', 1677031461, '__ci_last_regenerate|i:1677031461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc83df0b71689ee03996f7deb22d09c6a119df1c', '31.222.203.2', 1677031461, '__ci_last_regenerate|i:1677031461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96956c0f634d1108616b0e339d0abafdd37a7a1d', '31.222.203.2', 1677031461, '__ci_last_regenerate|i:1677031461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a08a65eaa12769b6997b336e2646956ba1a6bea', '31.222.203.2', 1677031461, '__ci_last_regenerate|i:1677031461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7516698ea76b1b2596e4e733037cc17650bac33d', '172.105.247.100', 1677032413, '__ci_last_regenerate|i:1677032413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aede994e1bec645d2955cf6f24fa5ff456ec54d5', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('903e2734349bc0943bec1f73a9061ebd5fb352db', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d32f76cb18dd1920f7d60c269ead3216100b752a', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d2d21a855d9dd717d02ad9191d612a4a82d0d0', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('777726c584f97483d7d34eccc65c5e2952b0c7aa', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de9246d4ff9071bbe269b0bbfe89b1e5016a16e3', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4dc19d91e2a565c8cde625c8612ce532c36997c', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49d8610d14d9715240e4da6875992628ba0622b', '172.105.247.100', 1677032414, '__ci_last_regenerate|i:1677032414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f880aaba00f2a07f4f6323236ee28da574fe099', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd0bff64367a1a73b74c30115e8e5f912d513b1', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6a1b38634f5285a9e3da01ce52212daa065cc7d', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5df609090c124b6d579437c9c6318434e0200b2', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f27e600fa35c120887e6a3a28eaf782bcb575a', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a363b777c8199af91b49772b4cef89301228ce24', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9583702989ddffab299bb0cd94811e5c585aa072', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c04bad873aee698e2ed2616c88b1d8bcf15f606', '172.105.247.100', 1677032415, '__ci_last_regenerate|i:1677032415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f00d220e10b74f66416bf7ef041976c4eba4b57', '172.105.247.100', 1677032416, '__ci_last_regenerate|i:1677032416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('286a4d8d1589cad35e9fa5c5393be6529832403b', '172.105.247.100', 1677032416, '__ci_last_regenerate|i:1677032416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814687b98ee61ee3114c69df335bd2510bada300', '172.105.247.100', 1677032416, '__ci_last_regenerate|i:1677032416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bca43dd75ddf63139ab7214bfd7549277a043be', '172.105.247.100', 1677032416, '__ci_last_regenerate|i:1677032416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ede12d0c443ecda8e03c317dd65c1e4c5829b5', '172.105.247.100', 1677032416, '__ci_last_regenerate|i:1677032416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf42c00f94a22ded7f4652439d3797f478620b4', '172.105.247.100', 1677032416, '__ci_last_regenerate|i:1677032416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c34bf92bf994cec0da74df2020e8ee3bf2e02f', '172.105.247.100', 1677032417, '__ci_last_regenerate|i:1677032416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9880069a941e1dada2ad0f1ee9adc8f9ed6426a8', '172.105.247.100', 1677036615, '__ci_last_regenerate|i:1677036615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275d0a4f196bbddb7f737435940837af457a93a0', '172.105.247.100', 1677036615, '__ci_last_regenerate|i:1677036615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d824b0f78bc37141ca6682588437e9d399fd90b3', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed4f1b1207e5130d8b3a8e6a938c5c860c181da', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2077858bfebb2ceec4403dea905c7c3a105b54ee', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a25181f8bc6d4896cd6bc503a25b290deb0847e', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e38714539cdfff19b8edb42900f07688fa0a11d', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6690b2c8c1190cb7e816413f9aee81e522490b', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a84a6716a7ca5a6c3f1c21d49f8a5126d9dd9d', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3587b2cef4c5e258b64c167ec64f81588b807d4', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac56b335a7a46c603964faedef61d61f49566fb6', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d52ebe2aeef9800c898702f5da4a3e1cf67b485d', '172.105.247.100', 1677036616, '__ci_last_regenerate|i:1677036616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accf15187b13c87bf88d01f79d0c4e42a6231746', '172.105.247.100', 1677036617, '__ci_last_regenerate|i:1677036617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb6ed8d0c826a3972972db61e3315f8248efb1f1', '172.105.247.100', 1677036617, '__ci_last_regenerate|i:1677036617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d398296039df0899d02c65ee8a91096116a7c6', '172.105.247.100', 1677036617, '__ci_last_regenerate|i:1677036617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec54fd3ddb7c7fa4b77fa37b799cc0aaceabc8be', '172.105.247.100', 1677036617, '__ci_last_regenerate|i:1677036617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825499222ec54b4454f0da685911233280eb612e', '172.105.247.100', 1677036617, '__ci_last_regenerate|i:1677036617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74be558a7552db38afc88342a3f848ea29cecf23', '172.105.247.100', 1677036617, '__ci_last_regenerate|i:1677036617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('842a1afae22e62c376ff990cd981185fd7cfe538', '172.105.247.100', 1677036618, '__ci_last_regenerate|i:1677036617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620238468b69c62ff46fcdd941b77b66905646ae', '172.105.247.100', 1677036618, '__ci_last_regenerate|i:1677036617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8851ea241e9151b5f52ca562585e32519e3b5784', '172.105.247.100', 1677036618, '__ci_last_regenerate|i:1677036618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dce15da218ad5d5548515afea69c4a0894fff06', '172.105.247.100', 1677036618, '__ci_last_regenerate|i:1677036618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77797efecdc3da25897b2d7f12aafcfb97ae9572', '172.105.247.100', 1677036618, '__ci_last_regenerate|i:1677036618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8958400d4b16e63ba4818a8401c0193e94bde269', '172.105.247.100', 1677036618, '__ci_last_regenerate|i:1677036618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf8a76e7e54342f672991109149e0ff0812625b1', '37.111.219.171', 1677037445, '__ci_last_regenerate|i:1677037403;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1676956651\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677037445;register_id|s:3:\"349\";cash_in_hand|s:9:\"5370.0000\";register_open_time|s:19:\"2023-02-21 21:20:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feba1def7d61f0705c5665f8ad31b5fb1de3908a', '31.222.203.2', 1677038588, '__ci_last_regenerate|i:1677038588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('021701085ffbbb420dfd96530d6edfcd0f8bdc3c', '31.222.203.2', 1677038588, '__ci_last_regenerate|i:1677038588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70e9d63e1fee02825b4d9c358266cd2867593e7', '31.222.203.2', 1677038588, '__ci_last_regenerate|i:1677038588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ed0963af26fc596d16d6e52d66b8d33a9cb5f2', '31.222.203.2', 1677038588, '__ci_last_regenerate|i:1677038588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0372a55172056bd830d2f6dae7909c9984cf563', '31.222.203.2', 1677038588, '__ci_last_regenerate|i:1677038588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8525bbb6bd525676806422ae0f2347f7acbaeb97', '31.222.203.2', 1677038588, '__ci_last_regenerate|i:1677038588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5525db122639fb649820190a7255f778955f81a1', '205.210.31.30', 1677039696, '__ci_last_regenerate|i:1677039696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a226596cd42d225ed1eac607d1c15cd744338d', '31.222.203.2', 1677040461, '__ci_last_regenerate|i:1677040461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cbef50abe7f48692aa543928881855f823057c9', '31.222.203.2', 1677040461, '__ci_last_regenerate|i:1677040461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aee0da2a0be116be8306a58014f84ec417c6605', '31.222.203.2', 1677040461, '__ci_last_regenerate|i:1677040461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b659b2b2d922c58e98f1a4a32b9a6b792d2c51e9', '31.222.203.2', 1677040461, '__ci_last_regenerate|i:1677040461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a17cb6b2f1142518e1462ff6436a22de19618c5', '31.222.203.2', 1677040461, '__ci_last_regenerate|i:1677040461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61bb41947fc4940e8584caf8ea347481541f9b29', '31.222.203.2', 1677040461, '__ci_last_regenerate|i:1677040461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3088c02c1d2ae8db4380e6690aad4c9dfe3df4', '172.105.247.100', 1677040814, '__ci_last_regenerate|i:1677040814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a247fcf2e470096533ada5e0181194f3bd6cf2', '172.105.247.100', 1677040814, '__ci_last_regenerate|i:1677040814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70aa22859e9168fd5f4bc92938f22a7fbaadba94', '172.105.247.100', 1677040814, '__ci_last_regenerate|i:1677040814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132d5e131fd7a1d98bc63d3c39b819968c745a00', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84dec7a3abf658f02c569cf261b3a83733db90ff', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02558fef5198a23f5138ddeb3a932c24827a541', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9c7b75d8649ecd06121159226f24f77d5b5d27', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d34cff2a03e774a190b498a3ee5f123e5f0042', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5873e214204085e565691e404be6c300975f29a', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc15bff4696d700643c21aef9dc2adc0d15bb4e', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cc71ba1e94bf8ee7c61ef3d9cdfef7311af9515', '172.105.247.100', 1677040815, '__ci_last_regenerate|i:1677040815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5de80e25dc92abda6c5df0dc0aadb86f49c4dbd', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('329f51480a13ee5e056b49783dbe14d19a6d0168', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04d280743970d4498f5cbe88e3bff8e8f0ba77a1', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cb57a76f29ef7af0a886ba692c685d15c1eaee', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29970fb93466177c8a1d4669e486e4ba2f86cf0', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3331d2d04b4c6f97966e3d8c2d9cbf11caae9b70', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b13c3bc0855f216907d5135b4bd3f48c4c0bffed', '172.105.247.100', 1677040816, '__ci_last_regenerate|i:1677040816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39c1ac3c56a0b87c8cfcd26a5ec62471b9677623', '172.105.247.100', 1677040817, '__ci_last_regenerate|i:1677040817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f4c88a3c4aed1e36336d34de874622a60d82b9', '172.105.247.100', 1677040817, '__ci_last_regenerate|i:1677040817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('573fcc1a68ed31740be22f832efd4a8d1245b31f', '172.105.247.100', 1677040817, '__ci_last_regenerate|i:1677040817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b892b0fc88e317c1ed03ac8b6507b0fbe30d0f2f', '172.105.247.100', 1677040817, '__ci_last_regenerate|i:1677040817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0057dc9855e3287ccd6c41ac694f1efd6b42d04d', '172.105.247.100', 1677040817, '__ci_last_regenerate|i:1677040817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a764b7b3b018e5c951f4fb76faa226ce191dbfcc', '172.105.247.100', 1677040817, '__ci_last_regenerate|i:1677040817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b28f057aba89d48e68b14d29c76305ebc860f6f', '31.222.203.2', 1677043989, '__ci_last_regenerate|i:1677043989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827fcc10f7b5c84e23134fa2f7ff1851a32190f6', '31.222.203.2', 1677043989, '__ci_last_regenerate|i:1677043989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcdb91bee68876f91820658218bb027f8f2b40e4', '31.222.203.2', 1677043989, '__ci_last_regenerate|i:1677043989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02df017d2f570149f6b46ff4fc80e242fa471e02', '31.222.203.2', 1677043989, '__ci_last_regenerate|i:1677043989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef3b6ccc8c0663b905c8b622258a75249b54a5f', '31.222.203.2', 1677043989, '__ci_last_regenerate|i:1677043989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae60b2c78317191018399ac44fadb178d14e1cf6', '31.222.203.2', 1677043989, '__ci_last_regenerate|i:1677043989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c0a77b1c5159368b200c37b8d164a96c1520c4', '116.204.230.27', 1677053240, '__ci_last_regenerate|i:1677053240;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676964284\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53c8a522564bcef9cdf6abfd54aa552ada400d51', '172.105.247.100', 1677045013, '__ci_last_regenerate|i:1677045013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5af4d641ea2e7fc741dfa1a877b37601a2cd21', '172.105.247.100', 1677045013, '__ci_last_regenerate|i:1677045013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f06016cb0fb2031f03a622a5f73cab59565f29', '172.105.247.100', 1677045013, '__ci_last_regenerate|i:1677045013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e43379a54fff84468d8c2e20c73c5909092eaac', '172.105.247.100', 1677045013, '__ci_last_regenerate|i:1677045013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88746d653392070ee2ea61e3eb0ceb41c8a4c918', '172.105.247.100', 1677045013, '__ci_last_regenerate|i:1677045013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec434ca3a1d40db6b71b83c2861bd1d2f536ccf', '172.105.247.100', 1677045013, '__ci_last_regenerate|i:1677045013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1ab70f16921172ec7eea240591553ab0e9fe56b', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2620376a644e36b8dfa532c500d177de0d7ee0f', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b26e1ab39d395e7682710c805a5f7dc661565b', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae846caf0b9f02e7839c5abf807b97dc601f8f6', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f6a27c3b1733b94d6fbf168bd3144f3cf7a1d0', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4af842ec3a186a07525e44b2a12d4a2ccf8262c', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ea4eff3fa1644c7828fce5679be4d4495bb295', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2877b4b93a4edbfe061fb98b97bf1280f82508b7', '172.105.247.100', 1677045014, '__ci_last_regenerate|i:1677045014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a17269b4be690a85a219dc2a34da3beeb36d170', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea36de05f8539f52a2ae31d34c9e4bb78922c8b', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7125222679ea1c0f6abadb28cefd8e4fcfe30d3', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33492b86b827c42191a2b4654ad252d359584b20', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276710a4ad4f007b0c3ed64cbc778304baec174d', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07377b7cb8430611c27c5aaba7991cc9cbf6f77', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('642eb0f09a5e78b6a18425b5ec71df22b38f56e9', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffc7ba96f1667793383824c7d9b23d4660b479f1', '172.105.247.100', 1677045015, '__ci_last_regenerate|i:1677045015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a71a86f84b82ad0fac561440c5d3a8d794c1298', '172.105.247.100', 1677045016, '__ci_last_regenerate|i:1677045016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac3bed786af356a60658b92abbb0c8c5e54a50b6', '172.105.247.100', 1677045016, '__ci_last_regenerate|i:1677045016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27512ceaf200ebac7ed4c27987b7bcace7128920', '37.111.219.171', 1677045769, '__ci_last_regenerate|i:1677045750;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677037413\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677045769;register_id|s:3:\"349\";cash_in_hand|s:9:\"5370.0000\";register_open_time|s:19:\"2023-02-21 21:20:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('896066cfbc4d6748deefe0b1a4e964211011945a', '31.222.203.2', 1677045860, '__ci_last_regenerate|i:1677045860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2d612c1c64980bea9d1af92c42339988d69c73', '31.222.203.2', 1677045860, '__ci_last_regenerate|i:1677045860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad13ddba196b0527ae37fc7fa12aaefe7f9ef84', '31.222.203.2', 1677045860, '__ci_last_regenerate|i:1677045860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4f71d0485b312db215c920c06601e0e00ebfc5', '31.222.203.2', 1677045860, '__ci_last_regenerate|i:1677045860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354527d26b1f24dac3ad5e87fb0d4220917a87d0', '31.222.203.2', 1677045860, '__ci_last_regenerate|i:1677045860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfeb9156a9b89e33abaa8454e52d2a8c777ad251', '31.222.203.2', 1677045860, '__ci_last_regenerate|i:1677045860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d74ff2fff351051c6cfd976eea1a059c18c17dc', '31.222.203.2', 1677047647, '__ci_last_regenerate|i:1677047647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b65ddd85edd283a8a4f8e768af75193392c484b', '31.222.203.2', 1677047647, '__ci_last_regenerate|i:1677047647;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fce4fcc7f6b68614251d8dd2341c706c57207f74', '31.222.203.2', 1677047647, '__ci_last_regenerate|i:1677047647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edf650ae0c8e55638f4a05485d081ac79ccc382', '31.222.203.2', 1677047647, '__ci_last_regenerate|i:1677047647;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142ee81066766e6b269273e233c4a4a1482dfdbb', '31.222.203.2', 1677047647, '__ci_last_regenerate|i:1677047647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc8597167b9422c44ff4ec8e799503a2552f6d2', '31.222.203.2', 1677047647, '__ci_last_regenerate|i:1677047647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36095781ce05af777652c1225cd726b17d20bba7', '172.105.247.100', 1677049216, '__ci_last_regenerate|i:1677049216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9869abc68e83856f6d1ed435c22375a9cd025a3', '172.105.247.100', 1677049216, '__ci_last_regenerate|i:1677049216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95dde6d3cdb7706b139efcf1e51bdf1ac7936e10', '172.105.247.100', 1677049216, '__ci_last_regenerate|i:1677049216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7ca6e6d6da42525963d6147f22dde617b9715e6', '172.105.247.100', 1677049216, '__ci_last_regenerate|i:1677049216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d31c497323c87ad77697798ead739b720732812e', '172.105.247.100', 1677049216, '__ci_last_regenerate|i:1677049216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('442688ecbc25dd923e6ff8dad072f421f95afaec', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac24ca2f4a9d07b1a32cb84817b021881002979a', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b50b9f27a3f0ceffc21737ae60fd88b50d9ac8', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265c7e4297d16e8286ce932d2ea6f9a43b2380f6', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ea92ec6745485d78405c871b89e220bf4f9312', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12041786f0ab948016ec84c9673ffa8bca0678c4', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18594859d06d8d048d96d826b370fd95ef041f0f', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea4ab1fd785e793ca8be9abe5888635144d23ef', '172.105.247.100', 1677049217, '__ci_last_regenerate|i:1677049217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcaed1a8ff0af83a78834c5d3e3e229aa6b7a3e', '172.105.247.100', 1677049218, '__ci_last_regenerate|i:1677049218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf3bfc796b5599e09de3bb6e83fd597ff68aa9ee', '172.105.247.100', 1677049218, '__ci_last_regenerate|i:1677049218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8efe43929415b85a171ff2b43298e2b111706fb1', '172.105.247.100', 1677049218, '__ci_last_regenerate|i:1677049218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db0edaa51efed5e9cd52f113e443eb22bbccac5', '172.105.247.100', 1677049218, '__ci_last_regenerate|i:1677049218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37980371bb9e248deff6e25b1fb1eb071d952afb', '172.105.247.100', 1677049218, '__ci_last_regenerate|i:1677049218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b95e3102607a5e26b7e4eae435ade9569398233d', '172.105.247.100', 1677049218, '__ci_last_regenerate|i:1677049218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf27c88a35a6ac6655563b9cb3d60f728f45d86', '172.105.247.100', 1677049219, '__ci_last_regenerate|i:1677049218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cc0f66313ec57304453e72d120e080842979a6', '172.105.247.100', 1677049219, '__ci_last_regenerate|i:1677049219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3881394efb4e1abcc013d3408d0a9c86845e4779', '172.105.247.100', 1677049219, '__ci_last_regenerate|i:1677049219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0010471d5004c5a6d4ecd65c0716bf5f8975ec', '172.105.247.100', 1677049219, '__ci_last_regenerate|i:1677049219;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859d6c1077282f9018bf3c1b83bf58ebee4f31c4', '172.105.247.100', 1677049219, '__ci_last_regenerate|i:1677049219;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7fc0312e85c11fab9b3f96c3f4220bde9f99435', '116.204.230.27', 1677053301, '__ci_last_regenerate|i:1677053240;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1676964284\";last_ip|s:14:\"116.204.230.29\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76c981f29c832c64d4dad47b52d18bf7dbebbaf9', '172.105.247.100', 1677053415, '__ci_last_regenerate|i:1677053415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47dee3e09d57b60db2423dd09a6003a05fbeb6d2', '172.105.247.100', 1677053415, '__ci_last_regenerate|i:1677053415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b10c497f4154b50bf7c59c4cd5fd1c1ca60c12', '172.105.247.100', 1677053415, '__ci_last_regenerate|i:1677053415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee620f45a705bf291b476c607216ceeaa107eef', '172.105.247.100', 1677053415, '__ci_last_regenerate|i:1677053415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445ece64cddd6667429c341cc76d493a818628c9', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56748aa73ef6ecd69d6b2400f6340d57c2fcaed', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a1485bfaa77bcd30bcbbbffb3d765f7baff37a', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2a552ff13c832abaaf3e5e3db3d7c52458eac95', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182a2eafec8f90cbd2e86aa0cdd7a0c4df2087e2', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c18076ba3639828dca20f33a312ccfa0c4cd3b9', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b6ae79820d5ceeab56aa3d11716c84c90aa992', '172.105.247.100', 1677053416, '__ci_last_regenerate|i:1677053416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f90db31252d773b717318638d54bf9bce19c0a', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e894d670f04587799cc482fba9d9b5ae1cfc55e', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b55fccd838925d9f8260700b6db6f69179ab8a5', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6777079e5f220515bef24263570dbca7a24f5f89', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43de8101f005617deeda0bd5bfd8e31cc92ebd42', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c353ba85b8368ccc029b49f456458d49e69cce', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b467eea1f2ff886609c8a50d1e4067c1d4042d4', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da8c05e736191438eb21e9b25fa939d79892f76c', '172.105.247.100', 1677053417, '__ci_last_regenerate|i:1677053417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52347d900b70469a404d70c6c614f2e56f2a0e8', '172.105.247.100', 1677053418, '__ci_last_regenerate|i:1677053418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66fc6f73fabcb363926f84a51b4786f383c80f77', '172.105.247.100', 1677053418, '__ci_last_regenerate|i:1677053418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6ad8ba57c4718da3dce3b0339da0e0a4cb01c6', '172.105.247.100', 1677053418, '__ci_last_regenerate|i:1677053418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a494f9260667b1f546aff3f7b69979b5618c4d6', '172.105.247.100', 1677053418, '__ci_last_regenerate|i:1677053418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073aa5b7e38f88fe4f3b41306c3c2b908e4347d7', '172.105.247.100', 1677053418, '__ci_last_regenerate|i:1677053418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14cd8fcaedaa6cca23a2759a0ae061cc33dec311', '31.222.203.2', 1677054788, '__ci_last_regenerate|i:1677054788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa6af91c43bf38400035cbe26f2db2e93d941236', '31.222.203.2', 1677054788, '__ci_last_regenerate|i:1677054788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e743360ca6f5ca8c5457fb2e6c9d54fa30483e57', '31.222.203.2', 1677054788, '__ci_last_regenerate|i:1677054788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f417cb27cf2646bf156363bc8c7376363423c8', '31.222.203.2', 1677054788, '__ci_last_regenerate|i:1677054788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d35bb524a7ff21427311036b1097bcdd35faebf', '31.222.203.2', 1677054788, '__ci_last_regenerate|i:1677054788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b334372960753c366369d65ee579904d880ffa3', '31.222.203.2', 1677054788, '__ci_last_regenerate|i:1677054788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbed48a158f35a70ef6f573d8bd46f7e46b43b83', '31.222.203.2', 1677056659, '__ci_last_regenerate|i:1677056659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8135127863aa9a3fff96be1a38e44058627fcd43', '31.222.203.2', 1677056659, '__ci_last_regenerate|i:1677056659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb47e26a312839fd082ba13dd34d6403393b672', '31.222.203.2', 1677056659, '__ci_last_regenerate|i:1677056659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6605bcca6f729881b19cf087723ba60c7296b7d', '31.222.203.2', 1677056659, '__ci_last_regenerate|i:1677056659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9502f186a2665560681670b3fb43f465af5f6b9', '31.222.203.2', 1677056659, '__ci_last_regenerate|i:1677056659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f63b41a3423f749c31035a4666bcb957218dabe9', '31.222.203.2', 1677056659, '__ci_last_regenerate|i:1677056659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b29f9b73d6d4afceb43bd5788cf416401b9e4b', '172.105.247.100', 1677057617, '__ci_last_regenerate|i:1677057617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6ac99c06179cbfc786b9725364d82749f63352', '172.105.247.100', 1677057617, '__ci_last_regenerate|i:1677057617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30101d4d55e0e64e79054f924e988bed18959ee9', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd201120e9de3ffad16b136a4733fec85b3bc56', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7900e0462b9003c55014a9d5ee4625e26c8c35', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00f3002efd34ff296a523d9b6c0a09f5616ca44', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2a0a0850c0305537bfa3d975a1bd81b53eb23c', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0013d7675dc603b19599357c1e4eeb4d51126a48', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dfb489f0b8dac571105e873322ac59a7a7ba295', '172.105.247.100', 1677057618, '__ci_last_regenerate|i:1677057618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793462633f8a496e86d11848c6524d9fdf691528', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2784e6215c125c1edf73610813c1c33427e41098', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754312d065527da010c9a5f15a338213a78a3bc3', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805916cc5c0bb0d29869aaa7905fb8fa086405d4', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f689609a2f9322d8842cfbf64e11067bfa50df3', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ae1a0c4e4c8be0a23a40ebad3f481a1c0421c47', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f862f70dde157b6c7a59561a9c3302dedd3bfb4', '172.105.247.100', 1677057619, '__ci_last_regenerate|i:1677057619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b78a37765332a86ec44728d28f9ceefa1ffe637', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a5afe05e040e74585b3de6a421448aefc011d4', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab45bcf131be1753f328cadf1b2218a4c2f73c8e', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ce8c62574e3f336a709773efd901c14bd0aa4b', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a86effaf48325d80dcef44cc0cbe19381997bf', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d8bc41c77a8dd1ac860ceedcdec3f6d70b32ba8', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85a43abeb579d9c49bf21af58fec3a7ec1571b6', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d30e542ddeb7b9e51d55cd38267f51e3d200cde4', '172.105.247.100', 1677057620, '__ci_last_regenerate|i:1677057620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fef74affd0a0ef7dcd7dcb07c6f5fe479634964', '31.222.203.2', 1677058447, '__ci_last_regenerate|i:1677058447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4066d85495f0f9b4846240e5b61ed3e3bdf83cf8', '31.222.203.2', 1677058447, '__ci_last_regenerate|i:1677058447;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0263d53cc2daf03ba4c0cadd2d177dcd04a52850', '31.222.203.2', 1677058447, '__ci_last_regenerate|i:1677058447;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4d1b4af89a56f092f1c489308eedc51b5e6ff3', '31.222.203.2', 1677058448, '__ci_last_regenerate|i:1677058448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab9a046fc146f5b27215314efbeb501be7b05d8c', '31.222.203.2', 1677058448, '__ci_last_regenerate|i:1677058448;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca5ca5d3e842c65d3fe5dd6f53734085ae8f675', '31.222.203.2', 1677058448, '__ci_last_regenerate|i:1677058448;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2cfae1ddaf6124edb3952b0cc55293956a1dd4', '37.111.219.171', 1677058886, '__ci_last_regenerate|i:1677058886;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677045758\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677058669;register_id|s:3:\"349\";cash_in_hand|s:9:\"5370.0000\";register_open_time|s:19:\"2023-02-21 21:20:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04415b4f064f3d59956900acd1418912c80c863e', '37.111.219.171', 1677058887, '__ci_last_regenerate|i:1677058886;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677045758\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677058886;register_id|s:3:\"349\";cash_in_hand|s:9:\"5370.0000\";register_open_time|s:19:\"2023-02-21 21:20:14\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72ed71f653faeec77b516bea0021e40075e95bcf', '152.32.138.241', 1677060270, '__ci_last_regenerate|i:1677060270;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1537233ecc3a1c125b7d38c526670bc3bd9fbe6', '152.32.138.241', 1677060277, '__ci_last_regenerate|i:1677060277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf6afb4a22d0b6b033c965b043de36c7a5fbb23', '152.32.138.241', 1677060301, '__ci_last_regenerate|i:1677060301;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0dd21f6ff9153dfed536cb17e3cdf453a6be7b5', '152.32.138.241', 1677060315, '__ci_last_regenerate|i:1677060315;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c40886e3d5f65499609fb7b7a51efdade741e3b2', '152.32.138.241', 1677060315, '__ci_last_regenerate|i:1677060315;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa5bb0f2f640b62bec16dd1a2bc7a95bc6aeccf', '152.32.138.241', 1677060332, '__ci_last_regenerate|i:1677060332;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c2f2bad51b80cba1042baa9e4150d9ef8ef687', '152.32.138.241', 1677060345, '__ci_last_regenerate|i:1677060345;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178285019016f5f3a69ebc48d327b4995ae8b5dd', '152.32.138.241', 1677060366, '__ci_last_regenerate|i:1677060366;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c2684ff87a325b76f73db1f2a32e3ef642dae7', '152.32.138.241', 1677060384, '__ci_last_regenerate|i:1677060384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5788e13162dcaf48fbc4aded74bd6ce37988a68', '152.32.138.241', 1677060384, '__ci_last_regenerate|i:1677060384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c88a4643511ba57d5fef812f739af21f79fcf0', '152.32.138.241', 1677060404, '__ci_last_regenerate|i:1677060404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a14b464f7d866f132d77b0f55aa7ce4d85914003', '152.32.138.241', 1677060415, '__ci_last_regenerate|i:1677060415;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c710d2c9a2a3b038b1a077effe0b43bff33a66b', '152.32.138.241', 1677060417, '__ci_last_regenerate|i:1677060417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df6e45b8dd040ede447b860d9110ddddbbffbee', '152.32.138.241', 1677060423, '__ci_last_regenerate|i:1677060423;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5362faaaeb04fec56badf369bd549e795d83ddc', '152.32.138.241', 1677060435, '__ci_last_regenerate|i:1677060435;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc04525d2351b574337a19d5c4795372b83a028', '152.32.138.241', 1677060440, '__ci_last_regenerate|i:1677060440;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8d4131d9e1fbbdbbf3b669f99067bf92ca9c47', '152.32.138.241', 1677060440, '__ci_last_regenerate|i:1677060440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31953abb04101b67c263d961b64e715b393f8b50', '152.32.138.241', 1677060441, '__ci_last_regenerate|i:1677060441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5552c56c05eace1f4178fce7a7bde2a7ff4e2f80', '152.32.138.241', 1677060441, '__ci_last_regenerate|i:1677060441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d24c2238d1cfb5700e7fab91b7ffe2db5134707a', '152.32.138.241', 1677060442, '__ci_last_regenerate|i:1677060442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89407f5fa8c718991ddbefbc28d21823e6ba5b1c', '152.32.138.241', 1677060442, '__ci_last_regenerate|i:1677060442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd081a2818ff66fb7b4c05f4e9d1655ec0cedc1d', '152.32.138.241', 1677060443, '__ci_last_regenerate|i:1677060443;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910adecaf53fcc2051df4b046769c5469656bcec', '152.32.138.241', 1677060449, '__ci_last_regenerate|i:1677060449;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70142c0061ba5c1079b1bba0a82f312ad0519546', '152.32.138.241', 1677060452, '__ci_last_regenerate|i:1677060452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5074def1116dc000d5b0f6236416df682f8896', '152.32.138.241', 1677060454, '__ci_last_regenerate|i:1677060454;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61ac356634b19b6f0644dbb334559d4d68e10100', '152.32.138.241', 1677060457, '__ci_last_regenerate|i:1677060457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221284503c5be6d63f665b2cc28a05d87223d43f', '172.105.247.100', 1677061815, '__ci_last_regenerate|i:1677061815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('396985db5f8ef20145feb9839f890441b9098c91', '172.105.247.100', 1677061815, '__ci_last_regenerate|i:1677061815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1827c9b3f3462f5896f7c796dbbcd1c7a1a1b0a0', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e0c730bc0fb9628a8f96f9cac5b7a5fe29bce1f', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d9012248da8ce1916505e57382bb1d86d9e460f', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b387116918b3a623e6944a831c5df1900d0fde', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0addce734da6ba4c02f991409164e1cec1a91a9', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1bc3f8d1f35d72f2e69c7ccc8722cb420548891', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fde6ba90f953c88d5db1f8ab10af868641b9a1a8', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29496905b7e203a00dc4830d70fc58ce77754f68', '172.105.247.100', 1677061816, '__ci_last_regenerate|i:1677061816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733b42455cad599bab06ec08ec1b649ae1754e8e', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e35b6335b746df67df14fe35054a452b1269fdf', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b7926f268269df574cc4538241c0c6a03ce0703', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c35d051e7c446a56c484e3fe0c7de92131b80c', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c334f56685d2f9cedfd3dc2c300000b859da19c', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403b6d9b7a48f9f97c9e3ebe6e2094eac69b72a5', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('576f5486677abb108ea12a7fd809b63aa920a88f', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba3ab938fd583d8c74d64791c4e8d9dc3a34264', '172.105.247.100', 1677061817, '__ci_last_regenerate|i:1677061817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c4ee5084c8112977d6178a31b56179dcbccfd5', '172.105.247.100', 1677061818, '__ci_last_regenerate|i:1677061818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa8732243aec6b432065bffbdce478b9c075d988', '172.105.247.100', 1677061818, '__ci_last_regenerate|i:1677061818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29dfc8884a701900a2533c23f20bc8f0f6bbf6c7', '172.105.247.100', 1677061818, '__ci_last_regenerate|i:1677061818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff49baf79047a614fb8700e74d7fdb3238be63c6', '172.105.247.100', 1677061818, '__ci_last_regenerate|i:1677061818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4acb79ba5142d3e0ef6d86a0045320c26bc1df', '172.105.247.100', 1677061818, '__ci_last_regenerate|i:1677061818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de41c0353642e92d250f76b30fc4242f0cf16e66', '172.105.247.100', 1677061818, '__ci_last_regenerate|i:1677061818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833bae318fcf89184dd757fc8fc23a7dd785cefa', '205.210.31.33', 1677065819, '__ci_last_regenerate|i:1677065819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468af2c7bab310c43e9846ae77ecec8881486996', '172.105.247.100', 1677066017, '__ci_last_regenerate|i:1677066017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d66b4d0e5180d809fd91da7039092e17f7cde42', '172.105.247.100', 1677066017, '__ci_last_regenerate|i:1677066017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de96a7f11138b57112728f516afce4e5dcdb33c0', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c702336bbf933e661d75e42bdfd0a2edac3c56a', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50a63a9b25953c713ef4632108e813f8be347096', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14615f102aa7b54605ff41d8464ef5fea0e5eb0f', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35291abba69797135fb7ac98f93395bce90f24b', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2eefa318589f674c9712a5d3d2f5647ad1d77f', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fee677e5a568a0ea313970aff9192481453753e9', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c97ad4db3fc3443f8dc394a7eab9d26634c81a4', '172.105.247.100', 1677066018, '__ci_last_regenerate|i:1677066018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec5c97faa0eef1c3c39637e2ea370eddf587ae31', '172.105.247.100', 1677066019, '__ci_last_regenerate|i:1677066019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18616b4fe68741699cd3cb72bae035503a16925', '172.105.247.100', 1677066019, '__ci_last_regenerate|i:1677066019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251cab6bca87f6ba86f48acd15671accd8ac5fb5', '172.105.247.100', 1677066019, '__ci_last_regenerate|i:1677066019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62d2c1cae8bd157d56c3ca2f250dec55b4ed4748', '172.105.247.100', 1677066019, '__ci_last_regenerate|i:1677066019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b19a4446502b913b6c1b04cc0359e0a92feb1a', '172.105.247.100', 1677066019, '__ci_last_regenerate|i:1677066019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3292cd90aae550882d2e69b189ec38986854fe', '172.105.247.100', 1677066019, '__ci_last_regenerate|i:1677066019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c11e07d9802cfa6e9178cfacdbdf1bf6e1a696f', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f7f4987a2c883f90800eacfb6662045430d2ac', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27da5b25f89b3b2b021722fee0ab5b3db6dc82b', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05fafafbe0c047c9f14add04a730ccec4994c007', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b810bc74993c880863131c5b6a555ac77a956d88', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668bc2a6af9c214bf9c3482e5c8b0b8af9db7ebc', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105dad4f23bf648dbb1a0b7c88fd6aadcde6e9d4', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7993b1a557f8ac3709d6e6eb05d54a3916af41', '172.105.247.100', 1677066020, '__ci_last_regenerate|i:1677066020;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97873372afd151aaa46c54342ceac678a3ff16fb', '37.111.219.171', 1677073716, '__ci_last_regenerate|i:1677073716;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677058584\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b661f507b6c15640e436a57d9a78a4d4a0e45fa0', '31.222.203.2', 1677067386, '__ci_last_regenerate|i:1677067386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6563296337af0007e79d91c80785a47ff443bea2', '31.222.203.2', 1677067386, '__ci_last_regenerate|i:1677067386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d82e1fe4baf0aa1e614b42281a0d5efe966d691', '31.222.203.2', 1677067386, '__ci_last_regenerate|i:1677067386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6e1520e56f971c8b815cfe56bdccf1427dd80a', '31.222.203.2', 1677067386, '__ci_last_regenerate|i:1677067386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbd8ef039f058326cb7cc2a29d87da449bf0956', '31.222.203.2', 1677067386, '__ci_last_regenerate|i:1677067386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a00786e5707d648a60975f3ddbbb4cd58b0847', '31.222.203.2', 1677067386, '__ci_last_regenerate|i:1677067386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('009d2e6b690f41d512dc54392e60d9d1d88972b0', '31.222.203.2', 1677069301, '__ci_last_regenerate|i:1677069301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1f68320b4b0d511a547fe6900f310f5a85154e', '31.222.203.2', 1677069301, '__ci_last_regenerate|i:1677069301;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2d525874659eb7f82d111f0c07c63a02468fc8', '31.222.203.2', 1677069301, '__ci_last_regenerate|i:1677069301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149b5781e5906fdd2c5c94d019821154e5dc1eac', '31.222.203.2', 1677069301, '__ci_last_regenerate|i:1677069301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aefadc670f5ea4c2be8f431d8fc13f1cc8717c5', '31.222.203.2', 1677069301, '__ci_last_regenerate|i:1677069301;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e672b79bafc06ae0b89cae32074b7c26085241', '31.222.203.2', 1677069301, '__ci_last_regenerate|i:1677069301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11666e5b4f8d12cd82ba602370a056c867a4ff5d', '172.105.247.100', 1677070214, '__ci_last_regenerate|i:1677070214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22fe5747298527899914a74a7e94b8dfbbb19ec1', '172.105.247.100', 1677070214, '__ci_last_regenerate|i:1677070214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92f18e05fa18086bc9d51a43f153a2392bb0faf', '172.105.247.100', 1677070214, '__ci_last_regenerate|i:1677070214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e2d9fb07d75bf47b1a52379bcd3b5d0836abbe2', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe8329ceecacbf8416659a99a0115e88a2286817', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a62eef3e0706d7dd6652191310482d6071ed5acc', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8752f6f0ebb7b895d832e0de45c660b8c6bf3e14', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c3e7e4935298e6c8b42a0d2e7933654466e479', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102e669fbcb9ad2e1f68616d4b0cc55b955e0529', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4945f0be89ac18db24205aab8c2e0bb56c7d6488', '172.105.247.100', 1677070215, '__ci_last_regenerate|i:1677070215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb4bca354679c7be899fe3feb2ef4b9215ebc2b', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ce7b1440fa10814623e6e9b31ec6b3e8540a6e', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db14d478c8b75ae530a8fa051a3189a231c1b2e7', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d80d6b3fd9c07bf9f3fa81a19d077d2980ec1c', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c4df2ba26d6cfd2219d58a4b777e4518e575ae0', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22e8af0bdcfa6ddff0e0ef2a0734f59be83b2510', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8b27ef30a96cfc1851398707ea94216d402a6c', '172.105.247.100', 1677070216, '__ci_last_regenerate|i:1677070216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed419b43ba8b17d5bd680d5ab3f980bd27147bd', '172.105.247.100', 1677070217, '__ci_last_regenerate|i:1677070217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d592e8a3e2e0d0313b631e949316d16f60721e', '172.105.247.100', 1677070217, '__ci_last_regenerate|i:1677070217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be71173718ebda70a3c3600cffd18b3a542e7575', '172.105.247.100', 1677070217, '__ci_last_regenerate|i:1677070217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e9a9a5fd18743d1139af6f8af2414b4ba4fd742', '172.105.247.100', 1677070217, '__ci_last_regenerate|i:1677070217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60853f71a1a519a7043af0d5689052d6a88cfbf2', '172.105.247.100', 1677070217, '__ci_last_regenerate|i:1677070217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfcf17aa7d4ae06d071bbdd85b3f0aa7966537f2', '172.105.247.100', 1677070218, '__ci_last_regenerate|i:1677070218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('781f509eb902f25403050b82472304ece2172ea5', '172.105.247.100', 1677070218, '__ci_last_regenerate|i:1677070218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13bc7283718aac8846a545c5dffc8f72727a3006', '37.111.219.171', 1677074283, '__ci_last_regenerate|i:1677073716;requested_page|s:5:\"admin\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677058584\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677074283;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3868cb941701444f4216c7c04f54b50d96fc7d3a', '172.105.247.100', 1677074415, '__ci_last_regenerate|i:1677074415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85cec4d97ee45058067108c1d8b912f18671bad', '172.105.247.100', 1677074415, '__ci_last_regenerate|i:1677074415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7eb0c7b8e838e4f398ea4e2590bc3cc3d6a1423', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b85e744b4d2da80147496c3506daac51b810459', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('299af3eba0209812b3759e54649616f8c7275271', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4ae39d29a3e3375fd90b2c26c5fb92db739ae7', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4234c3f764b57fa2e50b1abc195296afc5e8086b', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45b5ed4d71872be4712d08be60fb3e2cf377dc1', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51bc0badc550329d915e0d62c70a7bfd029e3b57', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8168465a49d281fc009fff8281b6fd744a713d', '172.105.247.100', 1677074416, '__ci_last_regenerate|i:1677074416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754e164bd5c029c3891ad539a9cd0aca9b464aa2', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfeae214da01cd66d893b82310050a618e5bd6f0', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8abdfa165fdef555e4be6a7da66fe9653fe1fe', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aecdd99a184ea5b54ec99a327370592e63cdca69', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0085740e7367021f358e091592333957fca1c174', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c0fedaaa4dfbe053628479322405a7ef89785b', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893c0303b62ccfedbfdbd7c0d99dd6a003bd72ab', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01209367005ae0af6c0c0a3d15d1e6265a36f55', '172.105.247.100', 1677074417, '__ci_last_regenerate|i:1677074417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a475ae24d10ff9d429e6d056b530037160d6c6cb', '172.105.247.100', 1677074418, '__ci_last_regenerate|i:1677074418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6bb809cd79b634fea9a83ed68c3170ea817c70', '172.105.247.100', 1677074418, '__ci_last_regenerate|i:1677074418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add92e758d7c17f90ee736913d9af5890b3b1365', '172.105.247.100', 1677074418, '__ci_last_regenerate|i:1677074418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df36ed00ef896233e6c945011448ecfdba4882a', '172.105.247.100', 1677074418, '__ci_last_regenerate|i:1677074418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95af009b0c9470733aebe413b06eece8c9af5b8a', '172.105.247.100', 1677074418, '__ci_last_regenerate|i:1677074418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c336ed3a7d1ce4dfc7444e29b13cdfce15e545c', '172.105.247.100', 1677074418, '__ci_last_regenerate|i:1677074418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835332bc7d4df2f6d5d64c057a74fcd50007a763', '31.222.203.2', 1677076389, '__ci_last_regenerate|i:1677076389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7630a6ea81c652943071933a7fe718f98f18cac4', '31.222.203.2', 1677076389, '__ci_last_regenerate|i:1677076389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce691d5d6a8c05cfd940da0a8f52fdf9c3aac3f', '31.222.203.2', 1677076389, '__ci_last_regenerate|i:1677076389;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33e9ecbf8cbc81819bd6f98752ea8ace657b10b', '31.222.203.2', 1677076389, '__ci_last_regenerate|i:1677076389;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5ce275f06c85e619ce5c2691d4c304ee9156a1', '31.222.203.2', 1677076389, '__ci_last_regenerate|i:1677076389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a804808c11941aee4f9576ebf759d5e8a5c4682e', '31.222.203.2', 1677076389, '__ci_last_regenerate|i:1677076389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37055c5c660634b5ade9a1916c538a7a1779e53', '31.222.203.2', 1677078260, '__ci_last_regenerate|i:1677078260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d119bdcf1a47d18a30ca8ff536dbc0d4011773df', '31.222.203.2', 1677078260, '__ci_last_regenerate|i:1677078260;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d8bc8e196e3ee6e28df482a6df7359966c0202', '31.222.203.2', 1677078260, '__ci_last_regenerate|i:1677078260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1cd978f4f5659d63980fe5cb9bc64a2b9fe3014', '31.222.203.2', 1677078260, '__ci_last_regenerate|i:1677078260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e424968fd1dc6ae3f44c82d95bd0cc528cf78d45', '31.222.203.2', 1677078260, '__ci_last_regenerate|i:1677078260;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e824fbdd9bb984d78d600ae96e06b14932bd15', '31.222.203.2', 1677078260, '__ci_last_regenerate|i:1677078260;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a26dd92c7cb2f8654b58cc6c070f58e2ad2285', '172.105.247.100', 1677078616, '__ci_last_regenerate|i:1677078616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2807bc4ac6525479ab2a17f3122236dedce1962', '172.105.247.100', 1677078616, '__ci_last_regenerate|i:1677078616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b513fa3e1947f9cff27274efec3b32d93702a0', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735057e097ecb8a4394c642af635cac46749ca8d', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5a2f684b62213c0d6dae679798c96a8c3b9a38', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6980c006c057753f19c802baeb9b6a03c3157c08', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0078810066f31b04307aa1d8c19ff3160a64dd11', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a97e1f3317a9b5bd343719890030d2c18e3c46c7', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae368a8312cac976a845142071712a9fc941121c', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ee4d0e69f42fb843917fa019466f332ed5b4a9', '172.105.247.100', 1677078617, '__ci_last_regenerate|i:1677078617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157d79850a0fe9278c86bbdcccf308c93fff1cad', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ee33c560e43f3817b73bb0db4f1fedbac8bbc1', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eccf7d603d3cf6fc4f936afb6084cd76eeef80a5', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65d33ed4c11923cc67fad0a14fa021d070e5472', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f54074c8e7c202a88b3f003d234222204a50938', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489a835e9447a2233b9ad3a6678c681d04ab38b0', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1688f63153a7ccbc3e4ee864d6dfd942174ec68', '172.105.247.100', 1677078618, '__ci_last_regenerate|i:1677078618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab43a0480d9e2726bd4201fd8e6dfb8ab8df68e9', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38753063e7d227904451f51b773cc6e7d463c75a', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebeae84f771e32306da9cb8119e76025b8a74578', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7736546b6de8558d743f21e6a615074200fab56a', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdb7c9e53cb45abe913d343db839853ec92a47a3', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb20908195069477e603ba1e037a101975bd021a', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d18c9491fc4beea6579fb8f49f4331419a9c9b', '172.105.247.100', 1677078619, '__ci_last_regenerate|i:1677078619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('041cccc9a18fe0101c565ed3af05aaee0f0687d7', '101.68.211.2', 1677079703, '__ci_last_regenerate|i:1677079703;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81772017783da261ec56dd2cd6c53834043bb3ad', '101.68.211.2', 1677079704, '__ci_last_regenerate|i:1677079704;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4595de583bac97b18c7aaa3bb72e83c3926d7b21', '101.68.211.2', 1677079905, '__ci_last_regenerate|i:1677079905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9b63e8d1e223524055ec7b7424d5e627b96d80', '101.68.211.2', 1677079906, '__ci_last_regenerate|i:1677079906;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c07f1ffa80eb44442320c6b3a300223ccf6754b9', '172.105.247.100', 1677082815, '__ci_last_regenerate|i:1677082815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8b4eadff5fdb28fe6fe377aa009dd82f67e018', '172.105.247.100', 1677082815, '__ci_last_regenerate|i:1677082815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6657b9415d8fff9862c1a41c7c29523ccf07ccb', '172.105.247.100', 1677082815, '__ci_last_regenerate|i:1677082815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b5095624ecbd5bd88d96673ea3c581c12ebd710', '172.105.247.100', 1677082815, '__ci_last_regenerate|i:1677082815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3c2fd241e1ce8898cccaba4b8409b9fbc67e66f', '172.105.247.100', 1677082815, '__ci_last_regenerate|i:1677082815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb59e508baf3f99bd99f3d5592b2db403423f69a', '172.105.247.100', 1677082815, '__ci_last_regenerate|i:1677082815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e5d48ae3b460fad72a2340df4285f76efe0383', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3b7aeda6aa462262018fb3b8bcfa40ad46b51f', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50add58a4e928e665d5d0272c769626aa923d441', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86dd484a5e757ed7c8ff60e058fc52f9c67b318a', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a5556fb61ec31e665fc8a423c175b0a1d874bd', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e04a8c7ebb5d967be7a5630314820e1ceed685f', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ce7070692ce3538733a9effcef9fe3e3178e2c3', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a777e62051559a600e356c29b854ebdb24df327c', '172.105.247.100', 1677082816, '__ci_last_regenerate|i:1677082816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae0527769dea160546a209bc7b240f679ad0c66', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d22af1d4ffbc11720f4e93e438673ec6fe18c7d', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524fd9616a8df4744466b632425adb87871ebb3d', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d169669f1bad206b83bdb2082f2d75f403f8c717', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d758847767dd37347613e04329fdd749ba140118', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d26dc1202257beb673e66e67b3bac7f7a3569ee', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed8dd1202f2dfe8d36843af2c5e5de1637871d0c', '172.105.247.100', 1677082817, '__ci_last_regenerate|i:1677082817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c25b9935e6f91450d7e6c6200cf9c35e54004dd9', '172.105.247.100', 1677082818, '__ci_last_regenerate|i:1677082818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd113b4fd52f948fa7cb25ed8a1bcf5800168c7e', '172.105.247.100', 1677082818, '__ci_last_regenerate|i:1677082818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3d82ca2a04f6b837ea4a1a9f891fd601cb09b3', '172.105.247.100', 1677082818, '__ci_last_regenerate|i:1677082818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82671505182a8375e79d6b40fbb501dea6c14921', '31.222.203.2', 1677085375, '__ci_last_regenerate|i:1677085375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c140562eebd9da8254f73d44de2a2086fa09be12', '31.222.203.2', 1677085375, '__ci_last_regenerate|i:1677085375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3505d0dbe06fbf5b353aa208ed99148eb48fe0', '31.222.203.2', 1677085375, '__ci_last_regenerate|i:1677085375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5234dc969ca893e8ec5bf39d039c69890ea00d', '31.222.203.2', 1677085375, '__ci_last_regenerate|i:1677085375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6033b99eee6707e6a12b998f39f9f7bf05e238e', '31.222.203.2', 1677085375, '__ci_last_regenerate|i:1677085375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9dd42bd4b70aa018d8e5a129101d1a9a40a8800', '31.222.203.2', 1677085375, '__ci_last_regenerate|i:1677085375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8ed3244ced2c2bf0cdcda851985c30a3e89a35', '172.105.247.100', 1677087012, '__ci_last_regenerate|i:1677087012;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a9862907a5d7fbf46a673fdce0d19e00930bd60', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49a9316f765babcd18385282c04bb3b3ec301b7d', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0ea4114d104d491fff93829d985b34d71c1f27', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd96075ed4ef7d735ff51390929d09cd1731e3f7', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9dfe5225e8bc0d4632f97105ed5c11a95eeb45', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70861551045576923f337f0cf7c196c790a2da8', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bb562d5fa6ce0235b776f29dd6aec534b2d5131', '172.105.247.100', 1677087013, '__ci_last_regenerate|i:1677087013;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48ffa55b7171d3c5c0120e3ce532cc805a36a08', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ed8cbca646cb1ee51b71a9ffea3cb80bf444db', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c4cc5bdb50e990d5acddecaf9ea6a8694d5769', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21b4e87889c91bba85f51b28521f75c01b0b650', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b65e6d3ffe3dcb8da45000bd32828db79c8b7e97', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758015a7f4b15b07a10bfbc98d06b457ba0e3bb8', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c639bd8e2af5afca9bb2f33c118f52a325c22f2', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250953b1634b94f41c70e797ab280feb6ce2aa7a', '172.105.247.100', 1677087014, '__ci_last_regenerate|i:1677087014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669a961ca03dcecc5725e8b389f54ccb118aa9b6', '172.105.247.100', 1677087015, '__ci_last_regenerate|i:1677087015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2acbce1c16b8fc8c9f999e76d4834626ceebb51e', '172.105.247.100', 1677087015, '__ci_last_regenerate|i:1677087015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161a96c512da527c0cb974c133d100db67ebf627', '172.105.247.100', 1677087015, '__ci_last_regenerate|i:1677087015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('463ea580261c49d04c9ad844bb2f987adbab45ad', '172.105.247.100', 1677087015, '__ci_last_regenerate|i:1677087015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2b4f281f6bb8f3ff517488a9ccc5a51e54f3fd6', '172.105.247.100', 1677087015, '__ci_last_regenerate|i:1677087015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d9bde10c078f22c214fefa20b3864aec57185a2', '172.105.247.100', 1677087015, '__ci_last_regenerate|i:1677087015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557d56347c08baf8bfc4a99d48dabd360daedb5c', '172.105.247.100', 1677087016, '__ci_last_regenerate|i:1677087015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e191a1284de9ae7d59da6d3541269ee0ff5e77a3', '172.105.247.100', 1677087016, '__ci_last_regenerate|i:1677087015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b913caba6c830232fd2ca2a8a71c54ec7443f05', '31.222.203.2', 1677087258, '__ci_last_regenerate|i:1677087258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8320c5bcb1098e4a7fa554122b94643f08bf180', '31.222.203.2', 1677087258, '__ci_last_regenerate|i:1677087258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0c30068fc37940ab57e982ac7e091dbc282315', '31.222.203.2', 1677087258, '__ci_last_regenerate|i:1677087258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e186d84fe6232360d8bcad976607dd7240d13ea4', '31.222.203.2', 1677087258, '__ci_last_regenerate|i:1677087258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88c68b93f07e153e5a38daf5a5fd8f095bf1ad2', '31.222.203.2', 1677087258, '__ci_last_regenerate|i:1677087258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6caff1298fc502b004a2321ffbaad892151eeab8', '31.222.203.2', 1677087258, '__ci_last_regenerate|i:1677087258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('732b9beb9e9b64589d22ab830978f31b08044c17', '31.222.203.2', 1677090826, '__ci_last_regenerate|i:1677090826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ffdb4fe18e1bad6554af58e1eddaff6c72e6ae0', '31.222.203.2', 1677090826, '__ci_last_regenerate|i:1677090826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6733afdc8cc157f16aebd111ae6ff0e56ee1ea3', '31.222.203.2', 1677090826, '__ci_last_regenerate|i:1677090826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba928f7f665e3fc5d5ef77c362edd4b75e914023', '31.222.203.2', 1677090826, '__ci_last_regenerate|i:1677090826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0275e7bc25714412d2205553b017999dba05dff9', '31.222.203.2', 1677090826, '__ci_last_regenerate|i:1677090826;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bd324f909cbccebaab3b42f966c916c1a374621', '31.222.203.2', 1677090826, '__ci_last_regenerate|i:1677090826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a642c2c89f5c4a27d7c8ac830480e256cc96e6af', '172.105.247.100', 1677091213, '__ci_last_regenerate|i:1677091213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2572c0ab2bc5ae676fd6e1f68fd263ef4aee498', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58624ca60a717ffb4fdf265de67a8e1f7462295', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db583febc682eabd210ec9325bd4c7f50a64556', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da4ac5de92f807d8dd9d84b6fffc685b928e131', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375b5c9926890db1c8cfe3d5543170043fc1b1e3', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b8bcff8fa4873c8fe9f7c063f76ba7cfd5f522', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409a28b2707d4e46d2553402d3cbb3bbf2b75e48', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ecb041c0bd3275623df22fc6a16d76638dd5c3b', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e8e64c25d028faadb963155a37a9c5ceedf999', '172.105.247.100', 1677091214, '__ci_last_regenerate|i:1677091214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb5002a1d203479fff0fec54ad790abbec7e82d5', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87cfce5157ddda16055d22981a8ef0aa9311983b', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e18e3405020cd79cf3bde15a9e2bc9c798cd0e1', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0bdb52c45844b2f10ae78a32fe01bf4c6dd3d3', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045dfd6dc4a763f06ca8cd5d21a3e8ab53b3833b', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302c10d1d4cb37b23ce6972f44a76e04650603db', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('271dfa666d85bf08c31e7ad0992b6df2739d4345', '172.105.247.100', 1677091215, '__ci_last_regenerate|i:1677091215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9791e2a63cbb7099f10a014dd91904b2de7aa378', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b8fcb802fe1b679c0f9e46d4c78430c17822fc', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bff96f34e9e87cc9dfe7c021cd6d5c0be0c63e3', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a76e6ebc1bb09cf646833d2a0ae448eb25b3a4', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22a91a7682211271405244971926cbcae9aad1a', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f4165804073f3b6d5847b3de647331c20a21a01', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2c88f0f08fc41ef180eb5de0f99eefeafe08d0f', '172.105.247.100', 1677091216, '__ci_last_regenerate|i:1677091216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437d234aac3a7f245d29b4dfac1816c0ff964cb3', '172.105.247.100', 1677095413, '__ci_last_regenerate|i:1677095413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702e3a057611ba319419ef36e81eecd9b70f7113', '172.105.247.100', 1677095413, '__ci_last_regenerate|i:1677095413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9cf6368f36c7420cc4b6bc107f2e0a3275ebd31', '172.105.247.100', 1677095413, '__ci_last_regenerate|i:1677095413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776665d981c75e1abfb30f842247688b543ae395', '172.105.247.100', 1677095413, '__ci_last_regenerate|i:1677095413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913a555cb117edcce5b22e43ffd07bb9e91a4d83', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad5a31f7e395c2949c46b697fb1bf96c3a0261a', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d7b1f81256b210977371f1c8c1582bea17cb423', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67bf6a8daf23f7026b0715d700ea1845de827534', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6e1f3802d59aafeb94589d523475a96fbaa0bd', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b1a6f8825840c7058ac29cc19f47cb684a06ea', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa4835c04754ca84b77147c6dced6e1088076ea2', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9325835a9a93c968f6be7564228179f6a726e90', '172.105.247.100', 1677095414, '__ci_last_regenerate|i:1677095414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('322c1afedf382e9df839a9cb29a45b93e1080756', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('871e339e6ded2255407e510a1d33cb6cc419993a', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af849698a0bec98fdd3e483a4f5bfda6e7e0be0', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534262ea43d9b8d3ebf458b0bae5561deb38e3d4', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd394204ff1dcd33a12021aef056c816eee86c97', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eeee5b2ff629cc5adfe5778a8de24727f25e5e4', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1564aeaa78113669f9b1991227e0f4e8f2ee7812', '172.105.247.100', 1677095415, '__ci_last_regenerate|i:1677095415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145f4c91f756062f4b4334f11df0d3475c43cb60', '172.105.247.100', 1677095416, '__ci_last_regenerate|i:1677095415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86841eb1be3208e302915c0fd1e0da2dc52885c1', '172.105.247.100', 1677095416, '__ci_last_regenerate|i:1677095416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a049ff543590097a8157afa426ca589e1f083b2e', '172.105.247.100', 1677095416, '__ci_last_regenerate|i:1677095416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb7ceebcb7e5fb3803a432c01af5ca7347eb0b0', '172.105.247.100', 1677095416, '__ci_last_regenerate|i:1677095416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bad93aa03e4428b63b282cb751e1497680c2c38', '172.105.247.100', 1677095416, '__ci_last_regenerate|i:1677095416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4d0e031a5167bc22688374893f110cb65072673', '31.222.203.2', 1677096187, '__ci_last_regenerate|i:1677096187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56071d9d4944257f3f0f69e4446a52deb6aa4c2', '31.222.203.2', 1677096187, '__ci_last_regenerate|i:1677096187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddcd6627b2cb217a7d931495a1668f0050c4dccd', '31.222.203.2', 1677096187, '__ci_last_regenerate|i:1677096187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b17bed28164bc41dc82eb99ffba5071f6460b50', '31.222.203.2', 1677096188, '__ci_last_regenerate|i:1677096188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aee15c36190df54ef7de9f689266f9d588ec67ad', '31.222.203.2', 1677096188, '__ci_last_regenerate|i:1677096188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df846ca28eb66e8b6fc2c21626abefea92d990ad', '31.222.203.2', 1677096188, '__ci_last_regenerate|i:1677096188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252ca7560d2376c555d89af3c3e5830609ab2aaa', '31.222.203.2', 1677098058, '__ci_last_regenerate|i:1677098058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1256a28733d5ecb421c0028d1b17deb3e9476dc6', '31.222.203.2', 1677098058, '__ci_last_regenerate|i:1677098058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1347ef4700ea41f875499853e4b398427ac9e3a', '31.222.203.2', 1677098058, '__ci_last_regenerate|i:1677098058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efc7018502a12223e7e39e2e1d475c4b181f06e', '31.222.203.2', 1677098058, '__ci_last_regenerate|i:1677098058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf54d37ce942f2d887fe128e66a6ca471c74133c', '31.222.203.2', 1677098058, '__ci_last_regenerate|i:1677098058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0240266f0fa5381283d4ded9722816d76afc9ee', '31.222.203.2', 1677098058, '__ci_last_regenerate|i:1677098058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24ad33edb0cb749212aa66c35a6ec8dba02d532f', '172.105.247.100', 1677099614, '__ci_last_regenerate|i:1677099614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc2137d019a1949972b11fb261f33381706f331e', '172.105.247.100', 1677099615, '__ci_last_regenerate|i:1677099615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f16cf9955a6c1697c5102a283725744f5b3bb7da', '172.105.247.100', 1677099615, '__ci_last_regenerate|i:1677099615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4888f42d49d0979cd74dbd64ffe2f611226aece', '172.105.247.100', 1677099615, '__ci_last_regenerate|i:1677099615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dda199528e5c5533bb27faceae01c6fdd830efa', '172.105.247.100', 1677099615, '__ci_last_regenerate|i:1677099615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdde615b4c72f175ebcd1313b31ca84b3095e9e', '172.105.247.100', 1677099615, '__ci_last_regenerate|i:1677099615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34c3b08ed2a7d56b4ddba0403075dcdf19712a1', '172.105.247.100', 1677099615, '__ci_last_regenerate|i:1677099615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c6dd9e5e72c3f3d6ec93a357c19a2fac0d86a4a', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e2fe4d13863fc290562d40ed14715c77f510519', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('375331429f52e021b22e8d52166c2967550b1637', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2a1f9a42a0a7811766833c0ab1933a231d7b50', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7603cc821f146d5bf7fc6f576738ee8925cdc33', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b168a5246d6c55932881d6f56a06b333d6cfc9c', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e9aa7e1db6b251722db2eb7891d17192fb79dd5', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0fe29814b596974139e0b9a44a448aa0a995fd3', '172.105.247.100', 1677099616, '__ci_last_regenerate|i:1677099616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77816ea43907c0e70739c152394fe3e37884256b', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('030cdefe1608c61ae686cd758c4a1601a995ba92', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e44c1882106a1027bbd116b6271010c492d5f37', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66684cc691943d47b173440cbe62764343492307', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17e1b568a083f26a368d800746539bcd1e52fe2', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b5c3ea64a53910a2bedcfcf29789b41abf621e', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7d8d796db625353ea3a9fe3ba41e8e3fe52326a', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827cb38589afaaebf0d2ba2d61755d1401f11e6f', '172.105.247.100', 1677099617, '__ci_last_regenerate|i:1677099617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd5793391b9d67a3ef1bc57929eed3d04041bab', '172.105.247.100', 1677099618, '__ci_last_regenerate|i:1677099618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b344d7b584cd33b85f88da121b3dbe5ad2a3a24', '31.222.203.2', 1677103387, '__ci_last_regenerate|i:1677103387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c13c44279a15e5dcbdc1ff6a5989cbd65e66ac', '31.222.203.2', 1677103387, '__ci_last_regenerate|i:1677103387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0802a7f5caa29520f3b27809b4eed4a3d1369d48', '31.222.203.2', 1677103387, '__ci_last_regenerate|i:1677103387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec85d0235ab79b6eb5acae354e70d1be496e274', '31.222.203.2', 1677103388, '__ci_last_regenerate|i:1677103388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a66b0ab91f10de7fdcb2196736b79d61a1b80a5', '31.222.203.2', 1677103388, '__ci_last_regenerate|i:1677103388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55262663e4b6324255820ed0f1327c5feccdcb58', '31.222.203.2', 1677103388, '__ci_last_regenerate|i:1677103388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab0ca4bedb67063f1aead79b1fd102fccf0c3f1c', '172.105.247.100', 1677103813, '__ci_last_regenerate|i:1677103813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e806e93c2584191226497ecd49de17e6415a0f', '172.105.247.100', 1677103813, '__ci_last_regenerate|i:1677103813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45206e597f3b736c1f0e1748e41938f0f0d5277f', '172.105.247.100', 1677103813, '__ci_last_regenerate|i:1677103813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ea1c578402e19d0a3ba336cf76724fb4e5ffad', '172.105.247.100', 1677103813, '__ci_last_regenerate|i:1677103813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc68767380931b7cd35de6373481e9c8239d8ac', '172.105.247.100', 1677103813, '__ci_last_regenerate|i:1677103813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('856b9cf9603b7c1c85a9654a5d9d5023186a83cb', '172.105.247.100', 1677103813, '__ci_last_regenerate|i:1677103813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27169879484a6fdf8435a28c424e7c8c66647000', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279c0c48e7932a77c78dc1d7fc73e4dc988f9df9', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaa2d2a7be519cc0b028cd78aeb226376cb25078', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d45a9e0199735ecc3bb2bc9ae3b95c009ffd58', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a17a0f9b9a8819d9362a1e3ee68998f0816362', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3347c7752739d2d4f8d8d24162c05538934b424d', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b41b8714e88e516dd96955f9f48f1fafe48f057', '172.105.247.100', 1677103814, '__ci_last_regenerate|i:1677103814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7669019f859b74879ef5773ed4a96807d9673b', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b09cc7901ff6e94c553ae7db76a3e8269aace655', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b40b0aa896ddc1ade4a04f3d472bdfd5a08daae1', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cdde70b97145d815f5fa6191d348c2e0636176c', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e30b790f1a8942017f09a8693f7618cd3216fa4', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebfaba82f0bd31327938a97b4ce4e03db9f5b9e', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc38c3cba4828839d906d8901045857dacef973f', '172.105.247.100', 1677103815, '__ci_last_regenerate|i:1677103815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bf0ab52b88b91479518fb32688810b0435ee5ff', '172.105.247.100', 1677103816, '__ci_last_regenerate|i:1677103816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ece2536f3c9c7d9d280ddea72920e97ab0ada42', '172.105.247.100', 1677103816, '__ci_last_regenerate|i:1677103816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5b8d6866a8367dfdeb60a32f13d9246842ac4d', '172.105.247.100', 1677103816, '__ci_last_regenerate|i:1677103816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac9d570770d0f438978ada2ba88e0592aba82040', '172.105.247.100', 1677103816, '__ci_last_regenerate|i:1677103816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4b604f62981bec1be96d89e71f71c3cac0c6d3f', '31.222.203.2', 1677105301, '__ci_last_regenerate|i:1677105301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7cf6fc5620f7a0679ae4961c8e2560b68adeb79', '31.222.203.2', 1677105301, '__ci_last_regenerate|i:1677105301;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc659d15c06082210e04f3813954bc8659dd9ac8', '31.222.203.2', 1677105301, '__ci_last_regenerate|i:1677105301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf024a17469fc8416735705300d4d4ee960aff6', '31.222.203.2', 1677105301, '__ci_last_regenerate|i:1677105301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8f17a69e43d2916780c733cbb6a0fa902fff81', '31.222.203.2', 1677105301, '__ci_last_regenerate|i:1677105301;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8405043e42cae837b8e00ea0c35102dc54a6fbb6', '31.222.203.2', 1677105301, '__ci_last_regenerate|i:1677105301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0e47dcb63528a0ed4a567c4079f6490653f355', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0186ef0ea51321f25dbcc4a98ababda3e4bcbad', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca8b3c0c9dccf1420395b8a12b9af509f99523c', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb11851a6c44f2a8f5529e55132a7a98de2af2ad', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('358f94e13be0a1097c322bf98454be7954a545f7', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0358ec806fca4c4f6a1a2ac217726122f8521f4', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37db9f17e97b022d84c16a6f3fa24b05e4ffc24e', '172.105.247.100', 1677108014, '__ci_last_regenerate|i:1677108014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7f54905abba0e026d76a266cbc27a1960eae0c', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0845706eb15e90642381f960d61d72aa94483881', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7e494eb148998220aa6c8e9266d049edf8938dd', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4360c09feee3164d69102a27f834caa44bda958', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d52fe761f8493a01faf00209122d0ab9bd1719', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d49318026da148af7b98ddcd3cf5ff0b8333d0', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27aaeda055f82b8b6ec872a41cd93bd1721a2280', '172.105.247.100', 1677108015, '__ci_last_regenerate|i:1677108015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f47f0d14cfcede307b988a15126cd09e412b8c8b', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f961347c20e9905af2975b9926097d43324fc8', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d878d54e0760fe7fe5fff9088097b912ce627fe', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ed745311dd839cf82602ee3f26c825e608b520c', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523a91facf33c919205f113de3cf1ef3d275cd1d', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c732f229f10ca09784dc599b8c534b5848e53b1a', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e2c41fc203af444a1909d3a46df3d07da67ee69', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2d4b11510c30c24eb4f8ce4db0c43b84a9991b', '172.105.247.100', 1677108016, '__ci_last_regenerate|i:1677108016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc203f22f11bf083ae26c36c63a3e156236bb32', '172.105.247.100', 1677108017, '__ci_last_regenerate|i:1677108017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c03ad980f8ce0c3e144b39da803817325d3853', '172.105.247.100', 1677108017, '__ci_last_regenerate|i:1677108017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1869267fdaefd7fbd77777afe98fd8bc12b3d745', '172.105.247.100', 1677112211, '__ci_last_regenerate|i:1677112211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a29ddf3f1593e02f27f82c840926361ad56044', '172.105.247.100', 1677112212, '__ci_last_regenerate|i:1677112212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839d55e0d439a2f7ee2273fcd89b5dfdf6522b58', '172.105.247.100', 1677112212, '__ci_last_regenerate|i:1677112212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef15ba678f17b5f577a65ddb322a97fd66c2f45e', '172.105.247.100', 1677112212, '__ci_last_regenerate|i:1677112212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456e68491ab815256cb926afc3f56b62f0a58f12', '172.105.247.100', 1677112212, '__ci_last_regenerate|i:1677112212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cbb87dc7fd0f87c0aec6f6ba0fbb334bcfd36d4', '172.105.247.100', 1677112212, '__ci_last_regenerate|i:1677112212;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cac61ed1d23966339671c65ee21571998d292b26', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112212;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d5db2db1c256abc9f20566a5b0f61af058c8df', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee602aec82c58111e3bf82cdf25b048f1405b97b', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188d9303962087879a0f04118ba29995653e422e', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e05820c23932d347b4e28c21904606b493d268', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ea0f922c295307a1c0bbbb59819c22aef6f15a', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e08dc02d74655e1d805d8ef5f7feadb04d35d8', '172.105.247.100', 1677112213, '__ci_last_regenerate|i:1677112213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5240d241eb0ee2464a15bd0fdac6fb5ac6ba6f5d', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112213;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474764def373b3c47bf2e855297d66db81951ff1', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd40c0672c9ac477dd5d95ce979caa436ef3cef9', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b4e30663414a172489d7f7ec72264fef7b7c00', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebf49483f9b70eeef767a29ed1d0e0ef3735170', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538b6bd73737d769ddc3d4339eba51809240ea4e', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdfd86ec885ee19459d5e9eff76d9de92dc8c5b', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47914cdcaa4257036fee3f120f553a9c4e7bdbb2', '172.105.247.100', 1677112214, '__ci_last_regenerate|i:1677112214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240763e7f3192c5714d156c7cb2ed3346b171f03', '172.105.247.100', 1677112215, '__ci_last_regenerate|i:1677112215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb05c77ca15ab5ff23df441625664b885e291dd', '172.105.247.100', 1677112215, '__ci_last_regenerate|i:1677112215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797003f46bfe8048f2b05ef5def3b2d3eae95968', '172.105.247.100', 1677112215, '__ci_last_regenerate|i:1677112215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b03ae0e34826622f7332ab9b46ac91edae8ecc5', '31.222.203.2', 1677114189, '__ci_last_regenerate|i:1677114189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b70e7b830394ede6c585fbd521f5d9b1eaa59c', '31.222.203.2', 1677114189, '__ci_last_regenerate|i:1677114189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8a10b899bb13b32b8355516c8b23f421e06751d', '31.222.203.2', 1677114189, '__ci_last_regenerate|i:1677114189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb8e88ef2fa65bd65ac24f1b849575d91ad47cdc', '31.222.203.2', 1677114189, '__ci_last_regenerate|i:1677114189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f9dc051b21c5f82260b3d9f497b2680da924b58', '31.222.203.2', 1677114189, '__ci_last_regenerate|i:1677114189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2d35db9c3ef09b9ab81b6e287a467d0aba4dc5b', '31.222.203.2', 1677114189, '__ci_last_regenerate|i:1677114189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e65039dcd004b469fb8277ff674b41bf9f39428', '31.222.203.2', 1677116058, '__ci_last_regenerate|i:1677116058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('771a02d01f17a21c1400d933bc0616c638f67efd', '31.222.203.2', 1677116058, '__ci_last_regenerate|i:1677116058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee61de673a6238d801b4682d90b2b3f7822abb3', '31.222.203.2', 1677116058, '__ci_last_regenerate|i:1677116058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1eb55b20d25ff83a89d7fb5df1ee0818a30cc2b', '31.222.203.2', 1677116058, '__ci_last_regenerate|i:1677116058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86cf13377d271ba5f260ec5ca77034c7767a8c24', '31.222.203.2', 1677116058, '__ci_last_regenerate|i:1677116058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b05118704ed3f5ce065e077504b3e61e30fc15', '31.222.203.2', 1677116058, '__ci_last_regenerate|i:1677116058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebfe5f235055da21763d5fbbd1e94656d6c8811', '172.105.247.100', 1677116415, '__ci_last_regenerate|i:1677116415;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db358085f6338c4da602676170f89d4ba35a2bf3', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa663e8b46f8865ece63cfa581fe343a92c75715', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7557c89d6fd27e56d5d91574cbcf5cc86d91683', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9c8bc7bec89be01ea5e1c1a4a2072c7a3bcce15', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4387858a3e789c714112ed98e7751525e0fcde1', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec4a685c3f52553f24044e6d5860ec5b7672cba', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1754e30797efe35854e4826e6a14e037bb6bccee', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f44db36d17701e157add0f0f5f378573c3eba42', '172.105.247.100', 1677116416, '__ci_last_regenerate|i:1677116416;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a26f825a88754c5c26f36221d66ab0d23522d273', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55237d286a0d3c0619a2f1131cfa9b071f7768bd', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cc83fe8fff54a69864a5315b295cb0dbfa24c8c', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f14ef9c30208eae055b0abd51ecddda15447e9b', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1252fb8cca6e1eef842fcd6319e25526325a7f77', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b522b64e2347e2ca1ac4aba61c96dad4edfc8c', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6daf709659a1ffc42989a3ddd156bae3472bbda8', '172.105.247.100', 1677116417, '__ci_last_regenerate|i:1677116417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9184e0066a19842bcfb55cd295a21794320d131', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dec10ee1c7f6d8fde9dac4eca793f08b4c670a7', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5d56ddcb566de8009980c7f1d5eb0aacbb0ce5', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec7f8bd30133c1e91128a09ff783747a50b54d4', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b9b309c056d487127f477802e79f32fbbcbded', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49591eff37956704305862cdddd26f4ee4f0c6a7', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77f30a66c73668c47f825caa4ca9cf124dece91', '172.105.247.100', 1677116418, '__ci_last_regenerate|i:1677116418;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f680121ac2831fba23ca2e34ee3922bbebc9cec', '172.105.247.100', 1677116419, '__ci_last_regenerate|i:1677116419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f09c8aa4ca0e5e3064e83e868721719f85c2036', '31.222.203.2', 1677119553, '__ci_last_regenerate|i:1677119553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e456e52ae8a9eda3a43bf5a9d40f5801f6fceb8', '31.222.203.2', 1677119553, '__ci_last_regenerate|i:1677119553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eee945da958a8e5029afb11b70540191b78b8d2d', '31.222.203.2', 1677119553, '__ci_last_regenerate|i:1677119553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ec4f6d4abdc37cffd0a08024f252ae974b6887', '31.222.203.2', 1677119558, '__ci_last_regenerate|i:1677119558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f392c2c34d63345aadebe6cc5aedc639aac0cb', '31.222.203.2', 1677119558, '__ci_last_regenerate|i:1677119558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e9c09c57bdfccdece8aaeb4dbacd7ea59dfd509', '31.222.203.2', 1677119558, '__ci_last_regenerate|i:1677119558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b647250c00e9618c539cf85f6a1a6029378f58', '172.105.247.100', 1677120615, '__ci_last_regenerate|i:1677120615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38655eb497ff4f138dc66f183639899dc090072c', '172.105.247.100', 1677120615, '__ci_last_regenerate|i:1677120615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33a4e2ea0b001b680a4ab3b6d845aa9186fbec84', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fc266152c3df51d995a41380450398ace1b815', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee89a4bdd758020787607cc8fe6d11f01819b0c6', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2151f8eb08cebd9c14a9888626fdcf9467a6d886', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1843a2544db9a2ca776ababe4005016322a462b8', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c996db68a615472d2531f7e9a2c5bf6323cbcc69', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a93437b8871d7150ca07e588edf76f6399003868', '172.105.247.100', 1677120616, '__ci_last_regenerate|i:1677120616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f68787a2c6576f555771a4e28bbccdb679377da5', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d140585b6e0faf52fb5b6dedfe7bc0e9455af33f', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c48496afab5b11b0976d6e732240695a6f20d20d', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c31844b2f72cc34d969c87e307d40a1cc7323b', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('204626bb79e943638c56bfc372cf901b8d77e659', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3ac4b30597c9a8cd301af4f84941e9bebccc2a', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3ef92336c2c1e415421e4e29541c062e1c54a9b', '172.105.247.100', 1677120617, '__ci_last_regenerate|i:1677120617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5698d65692880c021b27a744265acc1dfc5a630a', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be9e0784b4fda372dd979d6348531cebc659a743', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac9a72a7bf40f94367b6e023b80cfe1e713896af', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11c873774f01b64a80224accea2c23028315c66', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0701d2b19efba20960d9779f601ea690a3cbb800', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe48daa9d420a038a9479361b2a62fbe9d6bf85', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ca2601342efea183e8c9c83f5f7149c1ac467e', '172.105.247.100', 1677120618, '__ci_last_regenerate|i:1677120618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edbb8d23cd8e99bfbd25d42426aeff90c0478db6', '172.105.247.100', 1677120619, '__ci_last_regenerate|i:1677120618;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfac61af57c539502598d7038b7023f979b115f', '31.222.203.2', 1677121442, '__ci_last_regenerate|i:1677121442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f559ad1e749a567f1900abab10b9de9fa39f8f9', '31.222.203.2', 1677121442, '__ci_last_regenerate|i:1677121442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6317152225d31b9e0395271ce56c20db806d91', '31.222.203.2', 1677121442, '__ci_last_regenerate|i:1677121442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434e7ea70ff497e16bdcdee522d5c4bfcf41d778', '31.222.203.2', 1677121442, '__ci_last_regenerate|i:1677121442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c631c9dcbb464b0b64e9a4b48bc132078875742', '31.222.203.2', 1677121442, '__ci_last_regenerate|i:1677121442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7685e1942f3b5c5aa8f80f3f2c2c8852e2da12a', '31.222.203.2', 1677121442, '__ci_last_regenerate|i:1677121442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca723be14bf35027e9b97fb5352b5307c53436d', '31.222.203.2', 1677123312, '__ci_last_regenerate|i:1677123312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3afff004c43d2efea350ad5f87aeb6863539231', '31.222.203.2', 1677123312, '__ci_last_regenerate|i:1677123312;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('968c759ce562afc11059011d6a5fff0c46ff7631', '31.222.203.2', 1677123312, '__ci_last_regenerate|i:1677123312;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f7fe97925d8db7e8feaf1da4a7b1c8a6d936db', '31.222.203.2', 1677123313, '__ci_last_regenerate|i:1677123313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d21dc04876c31e1c94327d2809d0a8933c7c12', '31.222.203.2', 1677123313, '__ci_last_regenerate|i:1677123313;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b24e475f297b1d81700d8c1cd6e99aa3b84271c', '31.222.203.2', 1677123313, '__ci_last_regenerate|i:1677123313;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1f84cf25ef4a494b87098b12f8d926368480c6e', '172.105.247.100', 1677124812, '__ci_last_regenerate|i:1677124812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07631936e599bfd7a7804528534e87936c299ad9', '172.105.247.100', 1677124812, '__ci_last_regenerate|i:1677124812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6711e49e76b1661793f65ea04f345c7b7020663', '172.105.247.100', 1677124812, '__ci_last_regenerate|i:1677124812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3acd7f37019f13b92c4815b71a60981860cc7be0', '172.105.247.100', 1677124812, '__ci_last_regenerate|i:1677124812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91b69cf698f7b0cc80a7c125d92db330e66d9d2', '172.105.247.100', 1677124812, '__ci_last_regenerate|i:1677124812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e452d6b2a8e311b11e10f5f37f76fa6af5b663', '172.105.247.100', 1677124812, '__ci_last_regenerate|i:1677124812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334103087011210bb8ad0bd9a9d9247b0ccebb6a', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae6703130b0c37b49836b32161fa56864661a49', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f261a513955621c42bbbb6e65e4c59bf732ae6', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d836047146806b57c296224b92aff73c8a670c0', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8242b91aab48105832438b5482572aa7bb6e0c42', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('106ec1d11275ba97fa0ca36751af07e6c47fce53', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2258ce9438d767a3230b701bbe962820df4b11af', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e3cdf84b9091e25353064619efd9470be570a6', '172.105.247.100', 1677124813, '__ci_last_regenerate|i:1677124813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4b3b452cafcaeae2a40426f18004cc15a1b6b18', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0e02fed85f0b825e1400d1584717aa59c8f198b', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c2a7b909fe74357b54247a2ce23393488d22a5', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14f626a0fa1dae9a5703d14ccadf3df5c6147d0d', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49519d962a0ea0f913add219940b7471c320aa3', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91425ac98cdbe98cd799de43adf7ed60a23aa9f5', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23d58dfd710af126b2c0126ff08528c1b18b7dc7', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53196de4efa4f4e968b039266fdc70a1f3d284b7', '172.105.247.100', 1677124814, '__ci_last_regenerate|i:1677124814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('472c659269dce02face35b08b8954e2abb790173', '172.105.247.100', 1677124815, '__ci_last_regenerate|i:1677124815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ab18a5d875d97fb170020f6474a6244378a50c', '172.105.247.100', 1677124815, '__ci_last_regenerate|i:1677124815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d95f36d3791d77ccf91476c388bcd24e95346cf', '116.204.230.30', 1677125563, '__ci_last_regenerate|i:1677125438;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1676122921\";last_ip|s:14:\"37.111.207.112\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3534577ea1ceac4808b5ecd387a2d890464112', '116.204.230.27', 1677130176, '__ci_last_regenerate|i:1677130176;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677044078\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"Cgyv8mqtbYai5eOkPjUo\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ce2eb31f03928e8c374083378bab260b76dddcf', '172.105.247.100', 1677129015, '__ci_last_regenerate|i:1677129015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf0dae382df194e8b884f08d173f8272f1717c0', '172.105.247.100', 1677129015, '__ci_last_regenerate|i:1677129015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f5973f641d18fb221dcb461988723e90bf46f14', '172.105.247.100', 1677129015, '__ci_last_regenerate|i:1677129015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a81c78f2f37ec20c3be80d8cc3710a8ead88e13', '172.105.247.100', 1677129015, '__ci_last_regenerate|i:1677129015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8239f39ff61ab41766db920f2846ce792361f14', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80bd45747e3613841b4579455364d6091603424', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353607fa5ba4234f45353a5bdf7daf24f3f0e7d8', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd5176f7ba46fb74bf6296f586fc78a513eaaab', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830688a2776297bc4f6ab6e2fa0278a2e20e3abd', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38a2c3b55e7bfdbba3d1d9e74ccb8d63be2cce1e', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef614883c54f711216d289d62551ae998464a9dd', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3ca7612fbc18d52e9ddaa8c92fc34907223f0c', '172.105.247.100', 1677129016, '__ci_last_regenerate|i:1677129016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c148a1d3d06f6621e5a20402296f5ce4960740', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30107c001c8a4cbffc44b076b968b7f355ceb533', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f3db262fbb8ff4f4d57ad42d8b01e654269fa2', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57659488004f0aeabe200a72f3d6c6d2598f641f', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b408ab0dd3b5f6239497e867506cb623784feb7', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb5c2137562f38d73a86710dd5270ccbdb52d5b', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9774db28f82ddd68772d098480ebdf5a0b0aa6c3', '172.105.247.100', 1677129017, '__ci_last_regenerate|i:1677129017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bfc64664f3110887173852bfc5329d7efe045a5', '172.105.247.100', 1677129018, '__ci_last_regenerate|i:1677129018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d01668c8873843d23f94e2862fbd0c49b0dd2f9', '172.105.247.100', 1677129018, '__ci_last_regenerate|i:1677129018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f523f9f5de9bf85fc7483b73de11a98cca7d6e', '172.105.247.100', 1677129018, '__ci_last_regenerate|i:1677129018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20dc55144c44d449d67bbf0e0abc08c4cbfa7a82', '172.105.247.100', 1677129018, '__ci_last_regenerate|i:1677129018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35962a67d2c48c8767e47df180d58e6f564de22f', '172.105.247.100', 1677129018, '__ci_last_regenerate|i:1677129018;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631a5e69a97b1bfeddefa7bb587fcde1aeeede8d', '37.111.218.174', 1677131887, '__ci_last_regenerate|i:1677131887;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677130236;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8df77f424c067481f51abd555b514541a7c53a5', '116.204.230.27', 1677130190, '__ci_last_regenerate|i:1677130176;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677044078\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"Cgyv8mqtbYai5eOkPjUo\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48cce0e8941742ea4150adfcb9e32e902a2badeb', '31.222.203.2', 1677130401, '__ci_last_regenerate|i:1677130401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3caa3ca9bc0d0ecaf51864c514e27362568d20df', '31.222.203.2', 1677130401, '__ci_last_regenerate|i:1677130401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ed7ef5e8806f95f59bae81adcd7d4722b8badf0', '31.222.203.2', 1677130401, '__ci_last_regenerate|i:1677130401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f89ff503d768259a79262e3db06efec9141e920', '31.222.203.2', 1677130401, '__ci_last_regenerate|i:1677130401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e4e9bfd6c3b42f5f1056623e05e48581c24209e', '31.222.203.2', 1677130401, '__ci_last_regenerate|i:1677130401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1022a1b2f7e2efc52234d4014c1c4d6353856bba', '31.222.203.2', 1677130401, '__ci_last_regenerate|i:1677130401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61c3f6b97b31aa213d4f308317c672f65b81b5a6', '37.111.218.174', 1677134419, '__ci_last_regenerate|i:1677134419;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677131938;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056ae22638b2dc2a059ad75b5c0bd3ed87a0f891', '172.105.247.100', 1677133213, '__ci_last_regenerate|i:1677133213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c880379ca0662ec7b5dc92eeef79cac35f473b3b', '172.105.247.100', 1677133213, '__ci_last_regenerate|i:1677133213;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('961af200dd38b9ea286c74f414325c1c86951a21', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14ea3bcceec179f3b48518236ba0da97c861177', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7981208a7591c7ac246ae5b126ceed7fb3fe6d6', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f13cd9e825fca0aa784bc9cec174da1a313c105', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763dedf982ebdd297371267ae6c07b06dfecee89', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afcffdad7e0116b2e4bfe18f0dd3613ca743c395', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91589a041298b6165a529f8fbd7448bdc555347', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ea9fd6374c835bc3640a95cc0913c70b8b35fa', '172.105.247.100', 1677133214, '__ci_last_regenerate|i:1677133214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add72c153596ef9c01ee24417562c672196ad1b0', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006cecf8ed005757354ab707fa29adccb1407fed', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc36d080ca3d06689560257925e4f4bce0410f9', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe845a2660b5241a984268adeb13f6b582d07ffe', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17eab120ed2d4d1f28c20dd26ec4d8a5094c4464', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98dbe2de4d410cdd8359442c3f78471a2734532', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5823cc98ba2eb010178915fc790cd16a56af31d6', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171c3f40cc1e67c3dfba79374393ce81c3f3d8e9', '172.105.247.100', 1677133215, '__ci_last_regenerate|i:1677133215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a616e84efced754460baec513aa164e34dfa53', '172.105.247.100', 1677133216, '__ci_last_regenerate|i:1677133216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e35ffb6fa21034130323dcf168e518c024612b4', '172.105.247.100', 1677133216, '__ci_last_regenerate|i:1677133216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b229a9d2634be8f09e1f6566d378ba90109d2ca', '172.105.247.100', 1677133216, '__ci_last_regenerate|i:1677133216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64ba6946a6e98a393bdf32e9e3b9fa0e8694a751', '172.105.247.100', 1677133216, '__ci_last_regenerate|i:1677133216;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffce803c58f2777ea296012c66d946a20ba9081d', '172.105.247.100', 1677133216, '__ci_last_regenerate|i:1677133216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4496f5db37ae77c11e44c4afe43d7cf1869b8c6b', '172.105.247.100', 1677133216, '__ci_last_regenerate|i:1677133216;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e983478313d583fc6c0a35f197df53e67fb503fb', '31.222.203.2', 1677134041, '__ci_last_regenerate|i:1677134041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96deb13326857e75b87d95fb749366d5e5c2d605', '31.222.203.2', 1677134041, '__ci_last_regenerate|i:1677134041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0539446e62981e36d57cd1e3788e1c1b01460876', '31.222.203.2', 1677134042, '__ci_last_regenerate|i:1677134042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fa5c7e922002b376d8cffcc647d937c94961990', '31.222.203.2', 1677134042, '__ci_last_regenerate|i:1677134042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c5ccd8c6f7febc659bb8aabf0b08da46c554c0', '31.222.203.2', 1677134042, '__ci_last_regenerate|i:1677134042;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d28f6a99c1cdeae1a19f4fb11a7e65f1798b35', '31.222.203.2', 1677134042, '__ci_last_regenerate|i:1677134042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac556c85c44875bb9716eb2aed6d2a9cc7883cb1', '37.111.218.174', 1677135023, '__ci_last_regenerate|i:1677135023;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677134444;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f134fbbb60be050ad725f1ee7a0b682a2ee71cf0', '37.111.218.174', 1677135381, '__ci_last_regenerate|i:1677135381;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677135039;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8afedeb55700efe52366718bbd9013c37cd9fc5d', '37.111.218.174', 1677136376, '__ci_last_regenerate|i:1677136376;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677135514;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4280025b8f34ef47dc25c2e4a7b0111fa393cee', '37.111.218.174', 1677137956, '__ci_last_regenerate|i:1677137956;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677137646;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a81181edc26a2db7ec77c84359666cb6f23d38', '172.105.247.100', 1677137411, '__ci_last_regenerate|i:1677137411;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dfd93218e8e1702d25a7f6b161a9bde6cdbb836', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b63d1d1a5cea71c6ee0682a3606987a77bf76c4', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9e761eae4513a9d02cfb75d024dd63def24b4a0', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('380ace167ad10a29935526b4551f1fc0821c24a4', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1821cceebf8dbd465afb169a73769e9b533c6d45', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9780f103c73f1922597fd898bc3ca6a95b0e9a48', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4473e9e195b0681ca6b067400080f90d691628b5', '172.105.247.100', 1677137412, '__ci_last_regenerate|i:1677137412;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb84723d7eb89e90a5b9ab79cf77fbe60f22849', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137412;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f4e3972420408455f3d73739799d428be7f6f1', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31110a00e3800af5f90653de70cc8e090936f400', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e25226bac8096e9e333bdce8823368dc670c41', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f862c5c64213b34cf527097900baf05ddc1e7a54', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('943a02b7e54e6afe613c28d40ac79271ba4a0209', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f78122f62cbb50387acdb1807e8f493ed2c9f7e', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221dd16c68d3701baa3883572afea3011b6ecefd', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137413;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb905d096b6ee83f6854509f835c9c0bbee1263', '172.105.247.100', 1677137413, '__ci_last_regenerate|i:1677137413;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b34efe15724fb614bb6846f42feb62a8045dfc8', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f555f5c9e52b57fc85d936bfc8e46cdc2a7a0225', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0815462641c72278ae94b3a5e4b7512f96cd9f27', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5a0ebe730c08b204d4ffc48c727b2d66b964ff3', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf0ab90f9e30179a1d7828fc82e376ded5bc733b', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a66558c41e192aa918cfd29e40fd6d8b298e392', '172.105.247.100', 1677137414, '__ci_last_regenerate|i:1677137414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edc4c6c944065af4af40394ea50f350c64e99f3d', '172.105.247.100', 1677137415, '__ci_last_regenerate|i:1677137415;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b9d9d42e3cf51a7060da2640b02cbc6dc50cc3', '37.111.218.174', 1677144514, '__ci_last_regenerate|i:1677144514;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677137646;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('642446d5167713818bbb934f065089587a1669fb', '31.222.203.2', 1677141188, '__ci_last_regenerate|i:1677141188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ba2b5b388e8782094052be5ec3aa01d85aeebc', '31.222.203.2', 1677141188, '__ci_last_regenerate|i:1677141188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247b37c19af3ad0fe133051d9d9fac6284bcd53c', '31.222.203.2', 1677141188, '__ci_last_regenerate|i:1677141188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d01789540228e5760295ddff070940f9d26cd613', '31.222.203.2', 1677141188, '__ci_last_regenerate|i:1677141188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bdc9c336df52f70937f2b9993772af9c2fedfad', '31.222.203.2', 1677141188, '__ci_last_regenerate|i:1677141188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4f054e4415d1b0d8602065138c038222f60fcd5', '31.222.203.2', 1677141188, '__ci_last_regenerate|i:1677141188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c26a57fdc2f5bc0f30f98588f1fe904fdec36b8', '172.105.247.100', 1677141614, '__ci_last_regenerate|i:1677141614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de82fc5d1df50d8b3338eca287206ea75cd18524', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da73ab3a89e16f06c6ae90009d6aaf112eec20d', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3266a64cfcd3813ece96475be94df73be111374e', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0619f60e384cb64e15c097376c332021c2974a69', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b90070c4daa58cf2922bdaad1f93f4461b521d', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da94e4d1d43385c94a42470e1894a07130a9fd57', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e26d3eb8babdeac792d27c68974947352f8372', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('619faf47ef8d5a5e975d87cc07875435c3b62cea', '172.105.247.100', 1677141615, '__ci_last_regenerate|i:1677141615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d972e3e38264eff9732c84dfab1cd9b94513cec6', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78abddc3a2fdab3045bc254c60e650472d53e3a1', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70d04d6d262843166f136f2e90916b7ccb1437d', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('498e0a13374b9b29afd0fc063694580c7fc61627', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2246f24dfe1ea2e728f0b957399fc6c1f9975430', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d47739f9224b2b8b716aec23a4eff5db1d457e', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff246ddcd555ffae9c817518c73a0adeaeb41aa0', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87293a191f61ccc2c2695dfca89052d830ba4563', '172.105.247.100', 1677141616, '__ci_last_regenerate|i:1677141616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2af44cd05ab964e9a4f4bbda9851231e34b698a', '172.105.247.100', 1677141617, '__ci_last_regenerate|i:1677141617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f276dffac92bd28870b8825b3dff3e5e260877', '172.105.247.100', 1677141617, '__ci_last_regenerate|i:1677141617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c07058b73bb304adbf9579686f8c2bece309278', '172.105.247.100', 1677141617, '__ci_last_regenerate|i:1677141617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebf0eb071d3124409b47167968d8beb0d88b84b1', '172.105.247.100', 1677141617, '__ci_last_regenerate|i:1677141617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a73de5f1cecdc50af4dbf5f034073c8344b24848', '172.105.247.100', 1677141617, '__ci_last_regenerate|i:1677141617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2541ec89f575dae6f1228f58de38d9fd5691c6c', '172.105.247.100', 1677141617, '__ci_last_regenerate|i:1677141617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c44335c3996a6573e5bfecf8ec4e7d4c04d8c84', '172.105.247.100', 1677141618, '__ci_last_regenerate|i:1677141617;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa93920b048c247f7b040ad89f3435d849487a5b', '31.222.203.2', 1677143058, '__ci_last_regenerate|i:1677143058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374bdce635dbfa8c3c8af9e1af40e8fed2f800d7', '31.222.203.2', 1677143058, '__ci_last_regenerate|i:1677143058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2dcb397109026948c6972cc1a4ed21b175d618', '31.222.203.2', 1677143058, '__ci_last_regenerate|i:1677143058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e02998d1508442cbf6219fdf4b013bb2b394b6', '31.222.203.2', 1677143058, '__ci_last_regenerate|i:1677143058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8fe49f4bc3848e5015890a8b99956c1e82e44c3', '31.222.203.2', 1677143058, '__ci_last_regenerate|i:1677143058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a47be2d7df183d3d6e1c0a3862d93e2f65f6d4b', '31.222.203.2', 1677143058, '__ci_last_regenerate|i:1677143058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604473bd1f53bb4e1a0ded7a916c090a20d5b91a', '37.111.218.174', 1677145318, '__ci_last_regenerate|i:1677144514;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677067179\";last_ip|s:14:\"37.111.219.171\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677137646;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6911e329cf310ddc24dcc290bba26ba491b2d5ce', '172.105.247.100', 1677145812, '__ci_last_regenerate|i:1677145812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03b0c95e2a7591949774bff7973dfb51f9fba1c5', '172.105.247.100', 1677145812, '__ci_last_regenerate|i:1677145812;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c9fc407674f052c86e1b4a9ac2de4e2970fdd4', '172.105.247.100', 1677145812, '__ci_last_regenerate|i:1677145812;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbeba401e2729055e5527acca633554a68621f43', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('782ed41faf527e98e4139a89759101706dbae033', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('399582d6161053845afd88bc9a24a5dac00a8d4f', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9546098e294b46f6c31d8336686e393dc4fa36', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daff7747070de0bdebc6e1db9add3ccd9dfe7566', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862e41a54446619bb18ad8b9d1052e95597e824e', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f1b7a1948bd4d07634650bcecbeedf45b77a04', '172.105.247.100', 1677145813, '__ci_last_regenerate|i:1677145813;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('769aaa0b36c91f3f4413f917454278e8dfc40989', '172.105.247.100', 1677145814, '__ci_last_regenerate|i:1677145814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8cc9320ec95f438d903748ee9c9ef257a6a790', '172.105.247.100', 1677145814, '__ci_last_regenerate|i:1677145814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31e8eb6dfd16d0a85cf6034aa1a0849540b119e4', '172.105.247.100', 1677145814, '__ci_last_regenerate|i:1677145814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ebf08385c88b05a80befe7ef7410ecb2fadd70a', '172.105.247.100', 1677145814, '__ci_last_regenerate|i:1677145814;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a918319a39bf59c61eb64f15df7a2fe57b420b', '172.105.247.100', 1677145814, '__ci_last_regenerate|i:1677145814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68633c278bbb90ed903cd596474aaaabcfee94c0', '172.105.247.100', 1677145814, '__ci_last_regenerate|i:1677145814;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8806f363c1d914888a0808656e11fa87f1f593f', '172.105.247.100', 1677145815, '__ci_last_regenerate|i:1677145815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095e066312f73be6425e12ba090547a1ddbabe9c', '172.105.247.100', 1677145815, '__ci_last_regenerate|i:1677145815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b14130a9dcf3ea7fd5e4fc4e89934dba430ee3', '172.105.247.100', 1677145815, '__ci_last_regenerate|i:1677145815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7409ccb0b5c9311813e7f8d03d7fc308a1cada8e', '172.105.247.100', 1677145815, '__ci_last_regenerate|i:1677145815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0416c78b7eb2739220c9704367d2203018289a69', '172.105.247.100', 1677145815, '__ci_last_regenerate|i:1677145815;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc996b5e7849f82c9e86d00686eac38caf0a82a6', '172.105.247.100', 1677145815, '__ci_last_regenerate|i:1677145815;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70c7c5a5a162edd3a78ac00f0a7606f8d38f5ba', '172.105.247.100', 1677145816, '__ci_last_regenerate|i:1677145816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3829cf29c265271ce127dd9bc2413497d9461c22', '172.105.247.100', 1677145816, '__ci_last_regenerate|i:1677145816;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de318404455c03a10fb318920b99c6e5d7532c1', '31.222.203.2', 1677148362, '__ci_last_regenerate|i:1677148362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2879396a181bba83b488c4626717e1a45a71a72b', '31.222.203.2', 1677148362, '__ci_last_regenerate|i:1677148362;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285d5b791e5d4394966e4714aa532abbeb94c52c', '31.222.203.2', 1677148362, '__ci_last_regenerate|i:1677148362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57382203594a5995d4001722046ffaaa8dc53085', '31.222.203.2', 1677148362, '__ci_last_regenerate|i:1677148362;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dd2edcb26ac8511c23dd82be9a2d3d5bb054111', '31.222.203.2', 1677148362, '__ci_last_regenerate|i:1677148362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f5023361e4f6715e72c1a5ff1be0a25a132f8f', '31.222.203.2', 1677148362, '__ci_last_regenerate|i:1677148362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd912920e6aa7045f8ed2f450f9cc79d4021b9c', '31.222.203.2', 1677347354, '__ci_last_regenerate|i:1677347354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80312e25eedc38ff83273ceef4b99eac45da3023', '31.222.203.2', 1677347354, '__ci_last_regenerate|i:1677347354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e9908f7286d101ee18bba1984ff4fbc104072f', '31.222.203.2', 1677347354, '__ci_last_regenerate|i:1677347354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7b1623c7a0a65de98a2eada602af157cfd32ce', '31.222.203.2', 1677347354, '__ci_last_regenerate|i:1677347354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f51e722330138867cd589c6a597a1396f15903b', '31.222.203.2', 1677347354, '__ci_last_regenerate|i:1677347354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6e4a57a8ef0f487e51b8d839f3cc5d82ebff7b', '31.222.203.2', 1677347354, '__ci_last_regenerate|i:1677347354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11a36ab83c623c03f9443076a8c9de255de6b216', '31.222.203.2', 1677349140, '__ci_last_regenerate|i:1677349140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('928f26b0f84036e49aa938826b2f219302deb95f', '31.222.203.2', 1677349140, '__ci_last_regenerate|i:1677349140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2592e5cda3297580e902ab012380eed2fa80be', '31.222.203.2', 1677349140, '__ci_last_regenerate|i:1677349140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba4ea7986bb6b5dbd8e2882effcbf7ccff6a7e7', '31.222.203.2', 1677349140, '__ci_last_regenerate|i:1677349140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4ba5983b1b7a7db966c11511d83f1737c07f11', '31.222.203.2', 1677349140, '__ci_last_regenerate|i:1677349140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0426b0603589e0ceb716a3a3d00dc300aabf48b1', '31.222.203.2', 1677349140, '__ci_last_regenerate|i:1677349140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dbe39c8e8d759c53e21ea172e8f4a1aed6bb63d', '31.222.203.2', 1677350939, '__ci_last_regenerate|i:1677350939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21499102d580ead747dea0b88d895625417ee3f5', '31.222.203.2', 1677350939, '__ci_last_regenerate|i:1677350939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2d5a03629b320701e059db305b23cf05830f5c', '31.222.203.2', 1677350939, '__ci_last_regenerate|i:1677350939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2f893ff9205753dc57dec253e2e3f40a9ea7a2', '31.222.203.2', 1677350939, '__ci_last_regenerate|i:1677350939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b4f4f1a5da02c8a4ba275b6e9ce3aebc1acb7b', '31.222.203.2', 1677350939, '__ci_last_regenerate|i:1677350939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37f4c6678908c808d29b2e949a010f80bb16097e', '31.222.203.2', 1677350939, '__ci_last_regenerate|i:1677350939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1a54f8ffa8de36224a4c8cf3705aedcdc1f10f', '31.222.203.2', 1677352739, '__ci_last_regenerate|i:1677352739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c762799925cee2e3a2faa8cdf8c63f69ce8f9d', '31.222.203.2', 1677352739, '__ci_last_regenerate|i:1677352739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c4439d43fa4e06d205b95442126f2cf0a3470e', '31.222.203.2', 1677352739, '__ci_last_regenerate|i:1677352739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d533bc09de0f1a82999ad80a2a5c9e06c5c190a', '31.222.203.2', 1677352740, '__ci_last_regenerate|i:1677352740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ecdfe02c20a845776d29a4e4d4ec06b3edbe89', '31.222.203.2', 1677352740, '__ci_last_regenerate|i:1677352740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854ed64e09ae847c85f79ef0cab7a47a4447f02c', '31.222.203.2', 1677352740, '__ci_last_regenerate|i:1677352740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2b733fba7ebf905a7ac52a41a78273488951828', '31.222.203.2', 1677354537, '__ci_last_regenerate|i:1677354537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99846937ab304848b40a79408072f2b9a19b123', '31.222.203.2', 1677354538, '__ci_last_regenerate|i:1677354538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53c90ec0d6ce0fabcf2e1b6d3d4f0bfaac206d8', '31.222.203.2', 1677354538, '__ci_last_regenerate|i:1677354538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef8e388a77c9e4444cdc4fd1694e2de701028329', '31.222.203.2', 1677354538, '__ci_last_regenerate|i:1677354538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a075ec6206658e9a6749d9647768500882ec361', '31.222.203.2', 1677354538, '__ci_last_regenerate|i:1677354538;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43ce0839dbcab186ab498661e1168d4bdbb26b28', '31.222.203.2', 1677354538, '__ci_last_regenerate|i:1677354538;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5ec934b2faa20c13c71c6b7e03abdfe4e0d604', '31.222.203.2', 1677356338, '__ci_last_regenerate|i:1677356338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1747fff95a6031bb72f92372df531037d1d403a5', '31.222.203.2', 1677356338, '__ci_last_regenerate|i:1677356338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c485a3fe869cc6eb0b6d313d5ac0a6ff837fa4fd', '31.222.203.2', 1677356338, '__ci_last_regenerate|i:1677356338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcca77529bf94d0de0e0063fcdd3b83343a28154', '31.222.203.2', 1677356338, '__ci_last_regenerate|i:1677356338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07042d413b1bc4aceeb34fbfa6722982fbd232b9', '31.222.203.2', 1677356338, '__ci_last_regenerate|i:1677356338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fb5b3323be26364c73e961d56530d55698508d', '31.222.203.2', 1677356338, '__ci_last_regenerate|i:1677356338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452e5688575c484e4f70da0c99162f13d06dc0bd', '31.222.203.2', 1677358138, '__ci_last_regenerate|i:1677358138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b79c69a5477ee890951cd01a8f39fe797040196d', '31.222.203.2', 1677358138, '__ci_last_regenerate|i:1677358138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031528a7b2a9acbcae31c1349da4732360640c50', '31.222.203.2', 1677358138, '__ci_last_regenerate|i:1677358138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b675ba0e6d798689166eee62afe1ba447502e7a7', '31.222.203.2', 1677358138, '__ci_last_regenerate|i:1677358138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249a252488bc4db404445282629d885b23f32301', '31.222.203.2', 1677358138, '__ci_last_regenerate|i:1677358138;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3766ddf95447948f4476ed662cb53490401f94d5', '31.222.203.2', 1677358138, '__ci_last_regenerate|i:1677358138;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b571cd0968b7cd3bf803c763650f97f0609a056e', '31.222.203.2', 1677359835, '__ci_last_regenerate|i:1677359835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2613a28f6ff1eb76e79a9e73bd48df5a3094c853', '31.222.203.2', 1677359835, '__ci_last_regenerate|i:1677359835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('780d67e72b7782a3e03027654e1452947e170ef7', '31.222.203.2', 1677359835, '__ci_last_regenerate|i:1677359835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecde18ef67957c54977f1c57aa27ccb91b70ee4d', '31.222.203.2', 1677359835, '__ci_last_regenerate|i:1677359835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f75a2471304926e861664551dd050aa03509cd33', '31.222.203.2', 1677359835, '__ci_last_regenerate|i:1677359835;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89454cf4106ad591cede3071691c73337ed1ec62', '31.222.203.2', 1677359835, '__ci_last_regenerate|i:1677359835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2290dc42a8092ae893d3da71c030731006f52ca8', '31.222.203.2', 1677361629, '__ci_last_regenerate|i:1677361629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40bd9f26f181e55b16a811c0f3601f1b77e3abca', '31.222.203.2', 1677361629, '__ci_last_regenerate|i:1677361629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53f49c3ce3d0617b13272bb89f18bd13031e6e4', '31.222.203.2', 1677361629, '__ci_last_regenerate|i:1677361629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f829a9d9f58aafe76fb9e5dd5cc349e0214dde45', '31.222.203.2', 1677361630, '__ci_last_regenerate|i:1677361630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22703e525065b1eb22b3bdedb4c661c161215d9b', '31.222.203.2', 1677361630, '__ci_last_regenerate|i:1677361630;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eea430fe155e92301307bcb08684cd14c38b50f', '31.222.203.2', 1677361630, '__ci_last_regenerate|i:1677361630;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7386d032e4df985bdd6f8b91ce3b09a53d0872cc', '31.222.203.2', 1677363429, '__ci_last_regenerate|i:1677363429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0a7d7dd482ad7373173a549ab5cbecbac29f31', '31.222.203.2', 1677363429, '__ci_last_regenerate|i:1677363429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f20b3bd42d0e3faca766b90d455c9d31c398f3b9', '31.222.203.2', 1677363429, '__ci_last_regenerate|i:1677363429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af63619a4b5e14c96efc005a2c4df3eb07ae7ab', '31.222.203.2', 1677363429, '__ci_last_regenerate|i:1677363429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5d6e6aa803527794a4b23e9b0251e6fa240fbf', '31.222.203.2', 1677363429, '__ci_last_regenerate|i:1677363429;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9657ecbd66cf6ff14218e4fa4abd8d146778754', '31.222.203.2', 1677363429, '__ci_last_regenerate|i:1677363429;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33ab75d8a628ccae546f8fd532154a3a7de91fb9', '31.222.203.2', 1677365229, '__ci_last_regenerate|i:1677365229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5627365bbef7877128f9359d2464bd6db7cf5127', '31.222.203.2', 1677365229, '__ci_last_regenerate|i:1677365229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f572ee1fe8788a3e0661e7c60916b72dde129350', '31.222.203.2', 1677365229, '__ci_last_regenerate|i:1677365229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e01d3f9da9188400c80fd339c17637c45acc91f', '31.222.203.2', 1677365229, '__ci_last_regenerate|i:1677365229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f530ea5e9bb9fdda7e17335672f71cb8804015', '31.222.203.2', 1677365229, '__ci_last_regenerate|i:1677365229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a048ff308977e779cc1ff21f9119443c280f2f99', '31.222.203.2', 1677365229, '__ci_last_regenerate|i:1677365229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af935248cc289d5bc3ba7594b022397707bd03d', '31.222.203.2', 1677367030, '__ci_last_regenerate|i:1677367030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d739b0ad611c49fbd7fbb4f2ca0b7e531a407fb0', '31.222.203.2', 1677367030, '__ci_last_regenerate|i:1677367030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78d4526cf2879c59d13e6f73597accd5f09aeaa', '31.222.203.2', 1677367030, '__ci_last_regenerate|i:1677367030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdae27f133275b459cf1ce2fd75744eac1a05517', '31.222.203.2', 1677367030, '__ci_last_regenerate|i:1677367030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d8f5c6ea1aecd1dbfb8c8130a8fab56e15144c0', '31.222.203.2', 1677367030, '__ci_last_regenerate|i:1677367030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70697cdb3f0f3d4d502a1a5079d30664575e3cd1', '31.222.203.2', 1677367030, '__ci_last_regenerate|i:1677367030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02358646bc59cbd6aa9e6ec0c3db2644193624fa', '31.222.203.2', 1677368829, '__ci_last_regenerate|i:1677368829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0ab21a6f6d874e274e2c1bead31e873fd70d85f', '31.222.203.2', 1677368829, '__ci_last_regenerate|i:1677368829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf0ed6535b80556d95b964e41d2b61d0ad7733c', '31.222.203.2', 1677368829, '__ci_last_regenerate|i:1677368829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef0399a85e85a48edb7f27b7a9845a43ef83ef12', '31.222.203.2', 1677368829, '__ci_last_regenerate|i:1677368829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bdfa86b52d64d9ea423d8b11a866d3d9b50f810', '31.222.203.2', 1677368829, '__ci_last_regenerate|i:1677368829;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b82bc63a0d2c966f792c719b768bb5dbd6e4a1', '31.222.203.2', 1677368829, '__ci_last_regenerate|i:1677368829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354753f9446dffb943cc03f6052fa0aa2f2d513d', '31.222.203.2', 1677370631, '__ci_last_regenerate|i:1677370631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e10a5132007d68bb52dc0071e2eee7005376ecb', '31.222.203.2', 1677370631, '__ci_last_regenerate|i:1677370631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1690132d6d5ca8cedd35b1fe3faa34f858682629', '31.222.203.2', 1677370631, '__ci_last_regenerate|i:1677370631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d5ce75239698079d34b304a8e0c2bb457e34df', '31.222.203.2', 1677370631, '__ci_last_regenerate|i:1677370631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6807e855eda12367ec3d020654ae1ff2619c55', '31.222.203.2', 1677370631, '__ci_last_regenerate|i:1677370631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b89ebd57397c43e46f623ab8b7617198854881e', '31.222.203.2', 1677370631, '__ci_last_regenerate|i:1677370631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca16129b352760d840be874e370a8b5f895aa25', '159.89.239.57', 1677371813, '__ci_last_regenerate|i:1677371813;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f148c0a33ece54d6b052244eb50436620a8c8238', '31.222.203.2', 1677372433, '__ci_last_regenerate|i:1677372433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c55599f9be9f25dddee16ebab6bda80becd7df6d', '31.222.203.2', 1677372433, '__ci_last_regenerate|i:1677372433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02a9ceac1c5951661e10e5feeca29403c00abe87', '31.222.203.2', 1677372433, '__ci_last_regenerate|i:1677372433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43108ebe82162d5d91b2926503cebc8931a1804e', '31.222.203.2', 1677372433, '__ci_last_regenerate|i:1677372433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d19e85037a9ff6ac3e44c7c5529c6ffe0fb87de', '31.222.203.2', 1677372433, '__ci_last_regenerate|i:1677372433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff807b47edf505a6f04e5515c306fb9a12e4c029', '31.222.203.2', 1677372433, '__ci_last_regenerate|i:1677372433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60460bd11f72c00842898ebe5fd76158b193a67', '31.222.203.2', 1677374233, '__ci_last_regenerate|i:1677374233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b4971dd106e65660bc354a4ded4c52970c7d483', '31.222.203.2', 1677374233, '__ci_last_regenerate|i:1677374233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2260729149b47b72fd38cd59e8b22faabe91e8e9', '31.222.203.2', 1677374233, '__ci_last_regenerate|i:1677374233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4751505ed5629dabca7a45a5361d09950ff54ad3', '31.222.203.2', 1677374233, '__ci_last_regenerate|i:1677374233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4679093fcdf0a54b728391c239bf24db5715987c', '31.222.203.2', 1677374233, '__ci_last_regenerate|i:1677374233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004dde96de8892bcb7e2c1aa75e2022ac9e9d4dd', '31.222.203.2', 1677374233, '__ci_last_regenerate|i:1677374233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab8d29628b58f4ded40e4dbbaf130fc65f957b6', '31.222.203.2', 1677376032, '__ci_last_regenerate|i:1677376032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9ab6000bd9a3ff3ce3f95b31f0a6e804bbb563', '31.222.203.2', 1677376032, '__ci_last_regenerate|i:1677376032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc8b04eabf0fd080760fe9fb98ed5ca4ea4c7bbc', '31.222.203.2', 1677376032, '__ci_last_regenerate|i:1677376032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d526e5e9acd224b59164a838dcb824ba4e26009f', '31.222.203.2', 1677376032, '__ci_last_regenerate|i:1677376032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb98cb315112bb33485c2b1294c6d0c3fd33da67', '31.222.203.2', 1677376032, '__ci_last_regenerate|i:1677376032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a9f86b5454a3d30128f2ce064c2bdbeb8774676', '31.222.203.2', 1677376032, '__ci_last_regenerate|i:1677376032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817fc0940ef5d9401e10491c7aa0b76fe27fd3fe', '31.222.203.2', 1677377837, '__ci_last_regenerate|i:1677377837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64df949fa908cb01822a98b6df1146ab0605e225', '31.222.203.2', 1677377837, '__ci_last_regenerate|i:1677377837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900fdaeb40cfff6d7fce49aace8341b07a461c04', '31.222.203.2', 1677377837, '__ci_last_regenerate|i:1677377837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d3ddb0b29267f0081b4919a7dca3e21096d9a84', '31.222.203.2', 1677377837, '__ci_last_regenerate|i:1677377837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22100b5ff2196d87e33748879d60d80c39663dab', '31.222.203.2', 1677377837, '__ci_last_regenerate|i:1677377837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79c65d5feee39f5cd7c0bdbbb04362925f95e9d9', '31.222.203.2', 1677377837, '__ci_last_regenerate|i:1677377837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423f1ddf41bb3f23326c0bc2b285fbb396bfb3f6', '31.222.203.2', 1677379633, '__ci_last_regenerate|i:1677379633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a724b0392dbbc224dc9a6e9ad7048f66de4bb3', '31.222.203.2', 1677379633, '__ci_last_regenerate|i:1677379633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb98ca3852981ad4408835289c4c5bc730f7447', '31.222.203.2', 1677379633, '__ci_last_regenerate|i:1677379633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa1217a5a673c62965ed870c93544270bb8c6b8', '31.222.203.2', 1677379633, '__ci_last_regenerate|i:1677379633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd406c3ab12e6edc350c0fc9ef66f11a3bca1ecf', '31.222.203.2', 1677379633, '__ci_last_regenerate|i:1677379633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9135aeed85f3d7161ef7117328c77afc393063f', '31.222.203.2', 1677379633, '__ci_last_regenerate|i:1677379633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e51ae29cd86bb7684784b8641fa84dc73c26d1a', '198.235.24.166', 1677381223, '__ci_last_regenerate|i:1677381223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1359aa6438c6343d8121ac202cab53653fbb395f', '198.235.24.166', 1677381223, '__ci_last_regenerate|i:1677381223;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906a8a5b7af5c906b603036590551e7ebb329ef3', '198.235.24.166', 1677381223, '__ci_last_regenerate|i:1677381223;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d4438ac45628a962a792ee421984c875f684aa1', '31.222.203.2', 1677381431, '__ci_last_regenerate|i:1677381431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ef9fed70e68d7c097938e17bae540aec9ce304', '31.222.203.2', 1677381431, '__ci_last_regenerate|i:1677381431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b40daafb6530a08cc342cc387864308eae68de', '31.222.203.2', 1677381431, '__ci_last_regenerate|i:1677381431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06e3e16174b32d34f1aa7d3d5059a19665560402', '31.222.203.2', 1677381431, '__ci_last_regenerate|i:1677381431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9be75c9b61886b3db76256a3be7873e3b15feff2', '31.222.203.2', 1677381431, '__ci_last_regenerate|i:1677381431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892e344088e4db54e86c57bbabeaf47e6bb2f17f', '31.222.203.2', 1677381431, '__ci_last_regenerate|i:1677381431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c99122d6730c7556d1df1d45902a3795ca32184f', '31.222.203.2', 1677383233, '__ci_last_regenerate|i:1677383233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447c539a6bfec85d13ae0201058fff7f58f12862', '31.222.203.2', 1677383233, '__ci_last_regenerate|i:1677383233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ed006e6d11b58f9d7098bea5a15741adb73ae91', '31.222.203.2', 1677383233, '__ci_last_regenerate|i:1677383233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63cede11d5bdc6aacb4db4a6943b5deca2d0214f', '31.222.203.2', 1677383233, '__ci_last_regenerate|i:1677383233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ad0311ce9f61cf09679d56a6d7d9a14b8eec42', '31.222.203.2', 1677383233, '__ci_last_regenerate|i:1677383233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11fc39b744a0e36b466b4b7dce363d06e67881a3', '31.222.203.2', 1677383233, '__ci_last_regenerate|i:1677383233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0156c6d4acd312a1f44b82c69480d83bc4c46a', '31.222.203.2', 1677385034, '__ci_last_regenerate|i:1677385034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41e0bf4e7505787a10a5141f3902ceb01b535cc4', '31.222.203.2', 1677385034, '__ci_last_regenerate|i:1677385034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59437faac471b4932fc2cb8f7caf806596f4400', '31.222.203.2', 1677385034, '__ci_last_regenerate|i:1677385034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa4c4534ec894fdf0b39efa64a2b4973409b184', '31.222.203.2', 1677385034, '__ci_last_regenerate|i:1677385034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bece052b50b4a60116b4127a974a2b7cd5b7adb', '31.222.203.2', 1677385034, '__ci_last_regenerate|i:1677385034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe2652fcf5a222edd3f99456aa860b16709d9797', '31.222.203.2', 1677385034, '__ci_last_regenerate|i:1677385034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2710151d0d30983eae0769354663d01fc909d335', '31.222.203.2', 1677386832, '__ci_last_regenerate|i:1677386832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925a844e86f8ad6072bb2be59a4d48d52d2ba01a', '31.222.203.2', 1677386832, '__ci_last_regenerate|i:1677386832;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbfbd32587a6b4c2317127be0f03f9a0b1139132', '31.222.203.2', 1677386832, '__ci_last_regenerate|i:1677386832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07a7a9dbad6573e3d72cc2880c679b9595292d1', '31.222.203.2', 1677386832, '__ci_last_regenerate|i:1677386832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cdd0ece079924d1e0cfab0c96b5ed8d3d30a423', '31.222.203.2', 1677386832, '__ci_last_regenerate|i:1677386832;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19fd8882d9398b11c8fbb4cd128aa7285e37dc4', '31.222.203.2', 1677386833, '__ci_last_regenerate|i:1677386833;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ab064d5b6f87991582b85bf2389781d00ef163', '45.120.39.89', 1677388966, '__ci_last_regenerate|i:1677388966;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677388913;register_id|s:3:\"350\";cash_in_hand|s:9:\"9140.0000\";register_open_time|s:19:\"2023-02-22 19:53:08\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8d8a9b8097cb94ab061d6bb76e4e8e4d8dbb00', '116.204.230.27', 1677388579, '__ci_last_regenerate|i:1677388573;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677128986\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073dc6f18c57023242ede0754cf4c0b578ffaeaa', '31.222.203.2', 1677388635, '__ci_last_regenerate|i:1677388635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b987916c25e0024f5c95ce75b546b83f2bd9cb', '31.222.203.2', 1677388635, '__ci_last_regenerate|i:1677388635;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792d2d668972f34dfdfa318b0085f0784c62773b', '31.222.203.2', 1677388635, '__ci_last_regenerate|i:1677388635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a3aa777e012993ca616f3640182e17bfaed687', '31.222.203.2', 1677388635, '__ci_last_regenerate|i:1677388635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0fece9337a41c0c7e6c24e7cd946bea28c1e3af', '31.222.203.2', 1677388635, '__ci_last_regenerate|i:1677388635;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccc6da0aa0c361398e3741cc0e67a76e1d19182', '31.222.203.2', 1677388635, '__ci_last_regenerate|i:1677388635;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5300c06e8a7c1a3c500ec59aa0fbb8f31a54d1a8', '116.204.230.27', 1677391773, '__ci_last_regenerate|i:1677391773;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677388579\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"aNW0cZC69KO8BLysQA4T\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79559dbe930016dc3feea95411d7fcf40e165d2d', '45.120.39.89', 1677389966, '__ci_last_regenerate|i:1677389966;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677389951;register_id|s:3:\"351\";cash_in_hand|s:9:\"3890.0000\";register_open_time|s:19:\"2023-02-26 11:23:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26bc83f836f9bad358dc8f050ef529d955445d09', '45.120.39.89', 1677390648, '__ci_last_regenerate|i:1677390648;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677390187;register_id|s:3:\"351\";cash_in_hand|s:9:\"3890.0000\";register_open_time|s:19:\"2023-02-26 11:23:51\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee02b96c12533740d365fe7a840861f5536bf325', '31.222.203.2', 1677390435, '__ci_last_regenerate|i:1677390435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421770d8e94c63f47f42bf07123a154aa25e1109', '31.222.203.2', 1677390435, '__ci_last_regenerate|i:1677390435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baf204da25de16bfcc6bd9b66a3078f240fb35b0', '31.222.203.2', 1677390435, '__ci_last_regenerate|i:1677390435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e653b16eefa997b33d5b4061d93e4c778faf47', '31.222.203.2', 1677390435, '__ci_last_regenerate|i:1677390435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d5b09bb3b0b21ad285be77cc166b968f051438', '31.222.203.2', 1677390435, '__ci_last_regenerate|i:1677390435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5161840d5fb4e130e9f29354eaf58f3938a2d2b0', '31.222.203.2', 1677390435, '__ci_last_regenerate|i:1677390435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83da8a1d19dd43cfdc4a3c918b789a23bc04a4d7', '45.120.39.89', 1677391935, '__ci_last_regenerate|i:1677391935;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677391496;register_id|s:3:\"352\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2023-02-26 11:52:07\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1589e75703842c30b0059433cc0febbe1c62f93', '116.204.230.27', 1677391776, '__ci_last_regenerate|i:1677391773;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677388579\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"aNW0cZC69KO8BLysQA4T\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922f2f3c30d8a808314882e1d727eea7f6dc20a8', '45.120.39.89', 1677392482, '__ci_last_regenerate|i:1677392482;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677392456;register_id|s:3:\"352\";cash_in_hand|s:10:\"13750.0000\";register_open_time|s:19:\"2023-02-26 11:52:07\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac13e77a0c284c48fd74181424c6de4eb6eee473', '31.222.203.2', 1677392236, '__ci_last_regenerate|i:1677392236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44cc56f50a829ce943cfc032d32bcf926861658', '31.222.203.2', 1677392236, '__ci_last_regenerate|i:1677392236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fded0e93903153f189019c920864de012fa657ff', '31.222.203.2', 1677392236, '__ci_last_regenerate|i:1677392236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b1954a863c64eba624045c7177392260c31dc11', '31.222.203.2', 1677392236, '__ci_last_regenerate|i:1677392236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7283cec88ccf7e37f740a44b790f19ba06cc55', '31.222.203.2', 1677392236, '__ci_last_regenerate|i:1677392236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f3943fcb60c45f154b8b5513c441cf224fa9de1', '31.222.203.2', 1677392236, '__ci_last_regenerate|i:1677392236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2c183ced691c75411f29c84a995e6439034f82', '45.120.39.89', 1677393691, '__ci_last_regenerate|i:1677393691;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677393681;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6bb53636f5047f1cfee015d9faa5a7822cd5779', '45.120.39.89', 1677396298, '__ci_last_regenerate|i:1677396298;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677396292;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb14751453c1e2cb4973e7c9ef36c38b49a63df8', '31.222.203.2', 1677394033, '__ci_last_regenerate|i:1677394033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f73d01ec37aefd15414706d870e62a74f7fa0c', '31.222.203.2', 1677394033, '__ci_last_regenerate|i:1677394033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56308c0cdf218c40f7e1354aeaab3e4a905b0b87', '31.222.203.2', 1677394033, '__ci_last_regenerate|i:1677394033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c552231ce596f3a29faa370368bc45538f794f2', '31.222.203.2', 1677394033, '__ci_last_regenerate|i:1677394033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f2759d9cf4c120a60d7cd3b26277744e4afcb4', '31.222.203.2', 1677394033, '__ci_last_regenerate|i:1677394033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20171cf9e15a1492dfa013c6c9053977349f7a3', '31.222.203.2', 1677394033, '__ci_last_regenerate|i:1677394033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea464b4acdb25f63256384892e96a5b3b4c3d20d', '116.204.230.30', 1677395790, '__ci_last_regenerate|i:1677395524;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1677125444\";last_ip|s:14:\"116.204.230.30\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a758411702bcb44f75221950018abb9bd6ef26', '31.222.203.2', 1677395836, '__ci_last_regenerate|i:1677395836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413ea9bc0f7feedd5bd025e88a0081fe46619869', '31.222.203.2', 1677395836, '__ci_last_regenerate|i:1677395836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95b70892b99cb4e4e9c4eab360a222663bf8ba04', '31.222.203.2', 1677395836, '__ci_last_regenerate|i:1677395836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341e509e421af25cadd1dfaef96d7d37c1daa574', '31.222.203.2', 1677395836, '__ci_last_regenerate|i:1677395836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ab7e069cceab172a10c1f5b8dda302b8380639', '31.222.203.2', 1677395836, '__ci_last_regenerate|i:1677395836;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d6b311768e132067b92ba341d335bd7b153395', '31.222.203.2', 1677395836, '__ci_last_regenerate|i:1677395836;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a00b404837095c98ad5bbcf7f993361f1180a70', '45.120.39.89', 1677399418, '__ci_last_regenerate|i:1677399418;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677399408;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8daf96372bf21c064f54332e76be79628064eb', '31.222.203.2', 1677397634, '__ci_last_regenerate|i:1677397634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4e33b7f89db73eb41e5d5fd91211b1195b4ecf', '31.222.203.2', 1677397634, '__ci_last_regenerate|i:1677397634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ab73b78cd21317b550dc2d8f52b716ce2e191e8', '31.222.203.2', 1677397634, '__ci_last_regenerate|i:1677397634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1f2a54351581bb563f42675042ad9ae7b64bde8', '31.222.203.2', 1677397634, '__ci_last_regenerate|i:1677397634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b718d62b32f656d50238c0d499b0f117280de054', '31.222.203.2', 1677397634, '__ci_last_regenerate|i:1677397634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957b542b4e27445eb639871e1a182cc73edad4f4', '31.222.203.2', 1677397634, '__ci_last_regenerate|i:1677397634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e0ea655d02a254ec5c1ef8394893290657e523', '116.204.230.27', 1677397767, '__ci_last_regenerate|i:1677397766;requested_page|s:13:\"admin/welcome\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a181be8f339d41d9de99a693dab8a59a8f308433', '31.222.203.2', 1677398550, '__ci_last_regenerate|i:1677398550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81a5f87732ca7cc998fef76b8c36802f82ae7a39', '31.222.203.2', 1677398550, '__ci_last_regenerate|i:1677398550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4be20c8cb99924e3b554770d7945f4ad3642b9e', '31.222.203.2', 1677398550, '__ci_last_regenerate|i:1677398550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731eec8b07cc30eb09a218cf330c0e7b4562f8bb', '31.222.203.2', 1677398550, '__ci_last_regenerate|i:1677398550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240b703a915a6db5a842c787b84576128e4a64cb', '31.222.203.2', 1677398550, '__ci_last_regenerate|i:1677398550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3af27dfecf4bb32a0579e16c70cef9afa32f2bac', '31.222.203.2', 1677398550, '__ci_last_regenerate|i:1677398550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf5d0e9b3e54bfbffd1ecd43e8232a5bd9699d6', '45.120.39.89', 1677404201, '__ci_last_regenerate|i:1677404201;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677399418;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c4a22eac8870312ad48894a4c3fdc598dd466f', '116.204.230.27', 1677399516, '__ci_last_regenerate|i:1677399509;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677388744\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b1c2e16e1e1e47a3c3e8d7611279ba52bb29dd4', '31.222.203.2', 1677400335, '__ci_last_regenerate|i:1677400335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7dac62a765608f6c964233461d6f3d5087b901b', '31.222.203.2', 1677400335, '__ci_last_regenerate|i:1677400335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d26ac9e3c37c2ac1569c11117c73bbff2fc3e7d', '31.222.203.2', 1677400335, '__ci_last_regenerate|i:1677400335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c605dbc82265e0ffd78e3859a1914503729a6e47', '31.222.203.2', 1677400335, '__ci_last_regenerate|i:1677400335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a37b5ac46b2623f31fbe545eb839f4b9973f304', '31.222.203.2', 1677400335, '__ci_last_regenerate|i:1677400335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90695f25034067504dd4b7a0782db826fabb20c2', '31.222.203.2', 1677400335, '__ci_last_regenerate|i:1677400335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f852255e757533afe00c0b7b32b3155db19fcf', '31.222.203.2', 1677402136, '__ci_last_regenerate|i:1677402136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e64ef0ef60b2ca87b92544de44d878fe8be51e2', '31.222.203.2', 1677402136, '__ci_last_regenerate|i:1677402136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82767b5696c47368a90fd3cd696ae1b025f2fb46', '31.222.203.2', 1677402136, '__ci_last_regenerate|i:1677402136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b05d8997100e7adbca054967409659e7d6cb52c', '31.222.203.2', 1677402136, '__ci_last_regenerate|i:1677402136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d66ed6b8cbd100f5ebbfd222e12b84c948182a2a', '31.222.203.2', 1677402136, '__ci_last_regenerate|i:1677402136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f0cd33735ab7f7109125d20351b51fb90b871b0', '31.222.203.2', 1677402136, '__ci_last_regenerate|i:1677402136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b2ee8501aa45ac4cc6e75e00032aa3d4033540', '31.222.203.2', 1677403935, '__ci_last_regenerate|i:1677403935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80684efdb96c1e22b93a0b4a3ee4992a6735ffc0', '31.222.203.2', 1677403935, '__ci_last_regenerate|i:1677403935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f74af51e110af5f68f1fc1560236b0bd6db159', '31.222.203.2', 1677403935, '__ci_last_regenerate|i:1677403935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8988994ee6293ecc34c246c309c060b05ba28a72', '31.222.203.2', 1677403935, '__ci_last_regenerate|i:1677403935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd05645a5b6dde0c4954857dfaae0794d7fd4614', '31.222.203.2', 1677403935, '__ci_last_regenerate|i:1677403935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8318c55e1ac060351b5ae985b102c4fdd2a95fef', '31.222.203.2', 1677403935, '__ci_last_regenerate|i:1677403935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74900ed8512c3d0ee5137062b01a20967e0ff170', '45.120.39.89', 1677406666, '__ci_last_regenerate|i:1677406666;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677404274;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72055b4cc97ac0e0ebd9a3d8ab8a92da1060290d', '31.222.203.2', 1677405740, '__ci_last_regenerate|i:1677405740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41008076b7171c803350ee11e8a4694f12080e24', '31.222.203.2', 1677405740, '__ci_last_regenerate|i:1677405740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a54e2e1bfb6eb02ed7529188127b7750958e3fc', '31.222.203.2', 1677405740, '__ci_last_regenerate|i:1677405740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50aa99fd0f9f7fbf7354d0f70859b4717e4aea93', '31.222.203.2', 1677405740, '__ci_last_regenerate|i:1677405740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e59de5017be4856a477d55725903a48f5aca3119', '31.222.203.2', 1677405740, '__ci_last_regenerate|i:1677405740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a980b7806a954b1c2fdf3da5bd156dcf8013f40', '31.222.203.2', 1677405740, '__ci_last_regenerate|i:1677405740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ca5255216974528fd8003ec9a804e24521e777', '45.120.39.89', 1677414862, '__ci_last_regenerate|i:1677414862;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677414791;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3021865a4c8c138414a993a2cb361b2fbaf09393', '31.222.203.2', 1677407536, '__ci_last_regenerate|i:1677407536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa308003cfbe108c3bab297dde66fa135a2702ad', '31.222.203.2', 1677407536, '__ci_last_regenerate|i:1677407536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d98d0244865219649cb6e89eda14754ca129715c', '31.222.203.2', 1677407536, '__ci_last_regenerate|i:1677407536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da149279daaf668425dc3201004a94ee5371cf55', '31.222.203.2', 1677407536, '__ci_last_regenerate|i:1677407536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7753ac43563da62ef54b9facfa6ec301c62d4a8a', '31.222.203.2', 1677407536, '__ci_last_regenerate|i:1677407536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000317935cf8cbf381ab898c5e7957a5973991b9', '31.222.203.2', 1677407536, '__ci_last_regenerate|i:1677407536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5e9db369e4297299ee315ce0e4e2ab8ccebb19', '116.204.230.27', 1677407905, '__ci_last_regenerate|i:1677407861;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677399515\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27beb47d02838aec0eeab4f4ac2c2f5eb20ff742', '31.222.203.2', 1677409343, '__ci_last_regenerate|i:1677409343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e73310294d380f7cf09715d622004b269da5e304', '31.222.203.2', 1677409343, '__ci_last_regenerate|i:1677409343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cc0991c747e200979704b4558c295400094534', '31.222.203.2', 1677409343, '__ci_last_regenerate|i:1677409343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db783f05ced7a32dacb22904dcab16ad2ab062eb', '31.222.203.2', 1677409343, '__ci_last_regenerate|i:1677409343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6756aec0982c5e29c575739b7beb099bf283829d', '31.222.203.2', 1677409343, '__ci_last_regenerate|i:1677409343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71144139f666ec8350e873e14e1ef243b00682ea', '31.222.203.2', 1677409343, '__ci_last_regenerate|i:1677409343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2463db9fba3b4a7aaa377b14c16e0c9830aa898a', '31.222.203.2', 1677411135, '__ci_last_regenerate|i:1677411135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a810d13aa6c2fa5b73ab9f7f1df4cdc5f378689', '31.222.203.2', 1677411135, '__ci_last_regenerate|i:1677411135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cd64a3ab097d51e4474e83bf130ded54964bb56', '31.222.203.2', 1677411135, '__ci_last_regenerate|i:1677411135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33e8db1d3e1ac7c0a4b53ada546b06532796f99', '31.222.203.2', 1677411135, '__ci_last_regenerate|i:1677411135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5083a2ef78c6c8aa72055024f9b9b0059d165809', '31.222.203.2', 1677411135, '__ci_last_regenerate|i:1677411135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57fd0cccc375cf089be9a4c994c69dbc8490d46c', '31.222.203.2', 1677411135, '__ci_last_regenerate|i:1677411135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2838017ec7b641c9ff602811c3c5ea26d31194a6', '31.222.203.2', 1677412937, '__ci_last_regenerate|i:1677412937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cde4663287f60789dcd107ff42bb87459e5d2868', '31.222.203.2', 1677412937, '__ci_last_regenerate|i:1677412937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729039b6153721312d1d4aadf08a177531c953a0', '31.222.203.2', 1677412937, '__ci_last_regenerate|i:1677412937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aedff24afab241ee495f2657a8bd5e9e15ff87dc', '31.222.203.2', 1677412937, '__ci_last_regenerate|i:1677412937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5babe12d63d8fd2e4bac9edf221d95a7e0bb66', '31.222.203.2', 1677412937, '__ci_last_regenerate|i:1677412937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff99eef0910a2157127b7f5a232dc90057a5693', '31.222.203.2', 1677412937, '__ci_last_regenerate|i:1677412937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9449caed40706daad21dc94eed7758571b3eca', '198.235.24.26', 1677413528, '__ci_last_regenerate|i:1677413528;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9c7331af68c48dc42b1aeee6914a30470cbcc1e', '198.235.24.26', 1677413529, '__ci_last_regenerate|i:1677413529;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f190a4fd0df1029e3cbf06df51f8ec89a6aa4aee', '198.235.24.26', 1677413529, '__ci_last_regenerate|i:1677413529;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e332127feeff0c5eeea28c96f4054ae1b06d99', '31.222.203.2', 1677414739, '__ci_last_regenerate|i:1677414739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a25f7e5125760a3b10840001ad6c0a89da36609', '31.222.203.2', 1677414739, '__ci_last_regenerate|i:1677414739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425bae3d1ca8ba57ae00aed38ae92f9e6ebc81d4', '31.222.203.2', 1677414739, '__ci_last_regenerate|i:1677414739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370bc574b5c04c7e9a3a5441136710bda0b8ab89', '31.222.203.2', 1677414740, '__ci_last_regenerate|i:1677414740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e13235618f48734829a833d67b8ac628dc74bdd', '31.222.203.2', 1677414740, '__ci_last_regenerate|i:1677414740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('335032e7688d82cf19a338b109028997a69dc323', '31.222.203.2', 1677414740, '__ci_last_regenerate|i:1677414740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b71a49b6224aa3b3e5c26c210e8d78b8a0bfb0', '45.120.39.89', 1677418085, '__ci_last_regenerate|i:1677418085;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677414878;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae05057c74ae7f6c45bf01f35a623643f504e6c', '116.204.230.27', 1677415602, '__ci_last_regenerate|i:1677415602;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd331886acbe88bde9a3a7743f22b9b8e04ca5a', '31.222.203.2', 1677416542, '__ci_last_regenerate|i:1677416542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0158bff68f5537a125b239605e3995f7548a6cc', '31.222.203.2', 1677416542, '__ci_last_regenerate|i:1677416542;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e2c6f30bc7c960086e3699fc26d5b2c151b77c3', '31.222.203.2', 1677416543, '__ci_last_regenerate|i:1677416542;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a71ea144178db53012069deb0e6bc4d9553c72b', '31.222.203.2', 1677416543, '__ci_last_regenerate|i:1677416543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bfd7e063a087239eaede6c00f899f0d47d75397', '31.222.203.2', 1677416543, '__ci_last_regenerate|i:1677416543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d57983a57fceb6c24bb95ed727e73c5996a8b5', '31.222.203.2', 1677416543, '__ci_last_regenerate|i:1677416543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ceb132d547b485d2d32cacb9f42f2681ed68f0d', '45.120.39.89', 1677421553, '__ci_last_regenerate|i:1677421553;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677421543;register_id|s:3:\"353\";cash_in_hand|s:9:\"4790.0000\";register_open_time|s:19:\"2023-02-26 12:22:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0993c66c4170daef45926c17f586f1b821cd3bad', '31.222.203.2', 1677418336, '__ci_last_regenerate|i:1677418336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f00cee459730e996d4584741b27f8fd6fa83a37e', '31.222.203.2', 1677418336, '__ci_last_regenerate|i:1677418336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd281deea47801534aaf21e52fc599543a67ffb6', '31.222.203.2', 1677418336, '__ci_last_regenerate|i:1677418336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa43e50eb89b7c647bc26bb468f5a8fc9a2ba113', '31.222.203.2', 1677418336, '__ci_last_regenerate|i:1677418336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c98a48db040fb4284459c58964a7cf5e754fbc40', '31.222.203.2', 1677418336, '__ci_last_regenerate|i:1677418336;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9757a3bb7a2b3d0a326e5a3fdca1f995e3610568', '31.222.203.2', 1677418336, '__ci_last_regenerate|i:1677418336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac6d298e747141e33415321603558d3007f6da56', '31.222.203.2', 1677420143, '__ci_last_regenerate|i:1677420143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12ddae693deb23dadb454c12e95efec1be94a811', '31.222.203.2', 1677420143, '__ci_last_regenerate|i:1677420143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99c7dc95160e55391c6a1633a6c55554a1a9784', '31.222.203.2', 1677420143, '__ci_last_regenerate|i:1677420143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0422c7b22bcb98ea18f7772f361fb2c9320963b', '31.222.203.2', 1677420143, '__ci_last_regenerate|i:1677420143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8e7b7d71bdef47263b157794ca2c4f89abc3a7', '31.222.203.2', 1677420143, '__ci_last_regenerate|i:1677420143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40b9ac8ffa60c83d75c0e9de6e8f7880a4663d1e', '31.222.203.2', 1677420143, '__ci_last_regenerate|i:1677420143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cadc6b2ddaefdef5609a1eb3349590eaf8695a4', '45.120.39.89', 1677421582, '__ci_last_regenerate|i:1677421553;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677130178\";last_ip|s:14:\"37.111.218.174\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677421581;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c62b7bf224ef9b79483493892cc26b956a2739', '31.222.203.2', 1677421939, '__ci_last_regenerate|i:1677421939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b698b366032e2ef1f901820f005aa8a2a2c0fc9', '31.222.203.2', 1677421939, '__ci_last_regenerate|i:1677421939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e6078f10e2377f6216ee9ac122ca8e9968bcdfd', '31.222.203.2', 1677421939, '__ci_last_regenerate|i:1677421939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bafd7ae9941d1e718d8a93e019a7a56137e29d9', '31.222.203.2', 1677421939, '__ci_last_regenerate|i:1677421939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafcdd8f12e8ea917f5b73e634afc95ec435aab3', '31.222.203.2', 1677421939, '__ci_last_regenerate|i:1677421939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74512171f0cd9a6a61a8b55ba1611fc3fda31662', '31.222.203.2', 1677421939, '__ci_last_regenerate|i:1677421939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd7a7a4507c786faf3281fd24b660dfc2a48c23', '198.235.24.43', 1677422906, '__ci_last_regenerate|i:1677422906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39d23d9cfa514e617a49387635f0103fb329b880', '198.235.24.43', 1677422907, '__ci_last_regenerate|i:1677422907;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f1c19674e9f9f6dec033242a2660bfebe0c0e4', '198.235.24.43', 1677422907, '__ci_last_regenerate|i:1677422907;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e00fef1bbddebacababd7e64f3b6686c0ee49e0c', '31.222.203.2', 1677423750, '__ci_last_regenerate|i:1677423750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb9adc4de9cf3a1201f113aa0e09007795d5404', '31.222.203.2', 1677423751, '__ci_last_regenerate|i:1677423751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6155a2aaa084b9dd092d71a7a772a7de98fb5a46', '31.222.203.2', 1677423751, '__ci_last_regenerate|i:1677423751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a25303e54700bc2c0ec33e4b70aca3acde488b3', '31.222.203.2', 1677423751, '__ci_last_regenerate|i:1677423751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e39d09f1c1fc6c1715b41d3fdded829b51ebb39', '31.222.203.2', 1677423751, '__ci_last_regenerate|i:1677423751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f9fad2c345a295a4fcec643090b623d9a99438', '31.222.203.2', 1677423751, '__ci_last_regenerate|i:1677423751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26101e084b739d39d35172a3d14169135e17441c', '205.210.31.154', 1677423911, '__ci_last_regenerate|i:1677423911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('503462014251f991f6f9b20ee30086e1124a6bb4', '205.210.31.154', 1677423911, '__ci_last_regenerate|i:1677423911;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97240cd5564f700d43369698f1aa1e092a9bea4', '205.210.31.154', 1677423911, '__ci_last_regenerate|i:1677423911;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f592a3b980ade9df9ebbd032ecc54ed038881c', '31.222.203.2', 1677425537, '__ci_last_regenerate|i:1677425537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65971fdeab112f8fe4ae7cf9e1de952fa11bec04', '31.222.203.2', 1677425537, '__ci_last_regenerate|i:1677425537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687d88e402f8efeb847a84526ae1f340aea58c7d', '31.222.203.2', 1677425537, '__ci_last_regenerate|i:1677425537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cdaee0ac040018ba2951b98bffa8aa806180bed', '31.222.203.2', 1677425537, '__ci_last_regenerate|i:1677425537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661157e35880f419c07c03ba0c97e9608be7a489', '31.222.203.2', 1677425537, '__ci_last_regenerate|i:1677425537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ee0681aafc4fd13496e8eec01e9d839e87cb76', '31.222.203.2', 1677425537, '__ci_last_regenerate|i:1677425537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d994b490d5d4449ba4212c76b50154f865e51454', '31.222.203.2', 1677427343, '__ci_last_regenerate|i:1677427343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821be4870bdcda72852b138ca15a7821dc2dc3a3', '31.222.203.2', 1677427344, '__ci_last_regenerate|i:1677427344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46abe49ebbe731d776002292767b4d4315d3c90b', '31.222.203.2', 1677427344, '__ci_last_regenerate|i:1677427344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809db91061f5989d0d7bf5474aa2ef734b192f42', '31.222.203.2', 1677427344, '__ci_last_regenerate|i:1677427344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f9cdcfb3bf78734fd9bef141ba60a24f59e22e', '31.222.203.2', 1677427344, '__ci_last_regenerate|i:1677427344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344ca17437825e0d12decbd67ebc55364d13ce69', '31.222.203.2', 1677427344, '__ci_last_regenerate|i:1677427344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd1546ffee3e9878da070713d15e91e36ba46b85', '31.222.203.2', 1677429136, '__ci_last_regenerate|i:1677429136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb126a5ad811a82c75bd9203ae187cc581fa33e', '31.222.203.2', 1677429136, '__ci_last_regenerate|i:1677429136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b9feb9625949d7f6ddf37e3a761cd688e0fb87', '31.222.203.2', 1677429136, '__ci_last_regenerate|i:1677429136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4599bc50087eecee9997edd76835ba77f0982bcc', '31.222.203.2', 1677429136, '__ci_last_regenerate|i:1677429136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d6d9c9a278282d0ccc8e21c4014113ef69a9186', '31.222.203.2', 1677429136, '__ci_last_regenerate|i:1677429136;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4864110d1b137811929e22433ab7b86e44177cf1', '31.222.203.2', 1677429136, '__ci_last_regenerate|i:1677429136;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ecc54641b5d67cd8314f30ecab187a9933017a', '116.204.230.30', 1677430055, '__ci_last_regenerate|i:1677429992;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1677395534\";last_ip|s:14:\"116.204.230.30\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6563e49c158494a537b518e7e6385d2a2f047eb7', '31.222.203.2', 1677430943, '__ci_last_regenerate|i:1677430943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d146be85435a1935fa2ad87670855809e82cd12d', '31.222.203.2', 1677430943, '__ci_last_regenerate|i:1677430943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232a67bd3f79536131843edd93fd28d0ec2f4915', '31.222.203.2', 1677430943, '__ci_last_regenerate|i:1677430943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9e11311cfedf54fc9763889e4a41d3bb359ba7', '31.222.203.2', 1677430943, '__ci_last_regenerate|i:1677430943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33fd706b8bd4132a35eee5757555a19eb5cfd1a0', '31.222.203.2', 1677430943, '__ci_last_regenerate|i:1677430943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23628c45bb4f484d0f3b1f2a387b373d0cd4b67d', '31.222.203.2', 1677430943, '__ci_last_regenerate|i:1677430943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c259cc6655c4ee75cecf1022db125b458e1ee0', '198.235.24.152', 1677432614, '__ci_last_regenerate|i:1677432614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25f8030e627ce18670c10fa3696ca0866e1c7844', '198.235.24.152', 1677432614, '__ci_last_regenerate|i:1677432614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5d2e734533e0602ccae36f0074b6b7b6293bb2', '198.235.24.152', 1677432614, '__ci_last_regenerate|i:1677432614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53be38f028a7508b68a47c1200d37e66d8a2f0be', '31.222.203.2', 1677432737, '__ci_last_regenerate|i:1677432737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8243d7869f80a038f2207eb5ef8d9119261988fd', '31.222.203.2', 1677432737, '__ci_last_regenerate|i:1677432737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd33f66d47767b53cd3bca148617855f56e1f77', '31.222.203.2', 1677432737, '__ci_last_regenerate|i:1677432737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb362fe7674508b82d412fcc698cd9e1cd746cdf', '31.222.203.2', 1677432737, '__ci_last_regenerate|i:1677432737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44561015b40ab2ecb49044f6e8340fdfddb14dfa', '31.222.203.2', 1677432737, '__ci_last_regenerate|i:1677432737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f87c3076e1f0735149b12330f7cc9c2a399c9e2', '31.222.203.2', 1677432737, '__ci_last_regenerate|i:1677432737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6746285382eb0a05b18b2394b8c988089c72d07f', '31.222.203.2', 1677434543, '__ci_last_regenerate|i:1677434543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2888cc51a280fd09e28f69de3300cca63c2e4ae7', '31.222.203.2', 1677434543, '__ci_last_regenerate|i:1677434543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('508b0e1d44c3dd4fa2d93d3f1ab18fa2a60efe90', '31.222.203.2', 1677434543, '__ci_last_regenerate|i:1677434543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c13a8151a3ff5acb04b2da62fe74dbb8e643218', '31.222.203.2', 1677434543, '__ci_last_regenerate|i:1677434543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbb1f11da21813e4a4bf0e1464e3688aba3086e', '31.222.203.2', 1677434543, '__ci_last_regenerate|i:1677434543;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179cd69641fdf9f27195852cca3bf41793f3fcbe', '31.222.203.2', 1677434543, '__ci_last_regenerate|i:1677434543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592e8c443899f9b558dea35cef3fa484916954b9', '31.222.203.2', 1677436332, '__ci_last_regenerate|i:1677436332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07104f5842e7e63ee703ce89fc53db66bdbf6d03', '31.222.203.2', 1677436333, '__ci_last_regenerate|i:1677436333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bed336d236f576dcd7ddc0a56a9e81c46490940', '31.222.203.2', 1677436333, '__ci_last_regenerate|i:1677436333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d0a2e07a86d5958caf76f2865128d72d187231', '31.222.203.2', 1677436333, '__ci_last_regenerate|i:1677436333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2c111cefc7729ea080b8ee823229f759d03375', '31.222.203.2', 1677436333, '__ci_last_regenerate|i:1677436333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa018778c96068cf43a8046b4cafb99e44da15e', '31.222.203.2', 1677436333, '__ci_last_regenerate|i:1677436333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231d50d750dfc74d702e720de0c3ce049cfb4a0c', '31.222.203.2', 1677438139, '__ci_last_regenerate|i:1677438139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2878e5bbe6ca437591b039ef23970f9849f9bab', '31.222.203.2', 1677438139, '__ci_last_regenerate|i:1677438139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125c997f8aa781863388c83c333e7cf72db44fd0', '31.222.203.2', 1677438139, '__ci_last_regenerate|i:1677438139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf18c89633cb72ae1cb589aab0f0ffc039607c7', '31.222.203.2', 1677438139, '__ci_last_regenerate|i:1677438139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a28b212649fcaa240288bf8c2a7f7e37369576', '31.222.203.2', 1677438139, '__ci_last_regenerate|i:1677438139;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a08e18b8986c89d2bd8ded67213f510f92b5455', '31.222.203.2', 1677438139, '__ci_last_regenerate|i:1677438139;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92cdd331cd4d9d0681ad83b5ff14d2be41d36d62', '31.222.203.2', 1677439937, '__ci_last_regenerate|i:1677439937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dced5d79db4a378cf34a37fb10f284b987c2619b', '31.222.203.2', 1677439937, '__ci_last_regenerate|i:1677439937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8289f9b32da913a778f5d94131167916c0a83d45', '31.222.203.2', 1677439937, '__ci_last_regenerate|i:1677439937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a886ed41693adfee782aebd186110fa9ce1beb', '31.222.203.2', 1677439937, '__ci_last_regenerate|i:1677439937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a13dca5b0a7bc71125d806397d49976672f240', '31.222.203.2', 1677439937, '__ci_last_regenerate|i:1677439937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a760285ed9a205a15c184a81c6d8a152b841eaec', '31.222.203.2', 1677439937, '__ci_last_regenerate|i:1677439937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4e1a61ee57ee319c4a1125cf8a77a78f8a17e4', '31.222.203.2', 1677441740, '__ci_last_regenerate|i:1677441740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f6f7c1997702813f9180d284c3b99dfa3557ce4', '31.222.203.2', 1677441740, '__ci_last_regenerate|i:1677441740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3b6fda49be0c666cfa82423c4a341ef35d89bc9', '31.222.203.2', 1677441740, '__ci_last_regenerate|i:1677441740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21afbd0eed5421a65ad4fb3f604d9ac9a43976f3', '31.222.203.2', 1677441740, '__ci_last_regenerate|i:1677441740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('511aac4b3e69fa7903e257da8ac9c83dc71161bf', '31.222.203.2', 1677441740, '__ci_last_regenerate|i:1677441740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f6bf8dc5b0c24528c8634e8012f1c2b0992547', '31.222.203.2', 1677441740, '__ci_last_regenerate|i:1677441740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2bdcca9ee2d7deb29e8ccc859cb19587201a862', '31.222.203.2', 1677443536, '__ci_last_regenerate|i:1677443536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baff21cb05b06a48504a53bf61edd2c6cc70c3e6', '31.222.203.2', 1677443536, '__ci_last_regenerate|i:1677443536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('390654613eefef8342385d7406b4a88f5912dbe1', '31.222.203.2', 1677443536, '__ci_last_regenerate|i:1677443536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f80820ac1ce04ea17779747f30257a495eab9c', '31.222.203.2', 1677443536, '__ci_last_regenerate|i:1677443536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad403fd7caf8b9162364d6b334aa2ec6b6209ab', '31.222.203.2', 1677443536, '__ci_last_regenerate|i:1677443536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a8f9140dc358cb4740ecdfb27d3dd0ee1b4821', '31.222.203.2', 1677443536, '__ci_last_regenerate|i:1677443536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90793f71f2ffa95332341a200c14d562121ff25a', '31.222.203.2', 1677445342, '__ci_last_regenerate|i:1677445342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b9126a56f26d2c4834aee45e4515582f119e01e', '31.222.203.2', 1677445342, '__ci_last_regenerate|i:1677445342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f4bc89a940d54f06951b2c9135a6287ad6eebad', '31.222.203.2', 1677445342, '__ci_last_regenerate|i:1677445342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c9e5c30d039b94396b06483bad75f0c7a4cadf', '31.222.203.2', 1677445342, '__ci_last_regenerate|i:1677445342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a2ae54599b0decaa9b88f5f28990ce1e198cc5', '31.222.203.2', 1677445342, '__ci_last_regenerate|i:1677445342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1b7e5af7cc8115b3956a4a5a842ea89c052135', '31.222.203.2', 1677445342, '__ci_last_regenerate|i:1677445342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82b1c5c3e49bdead47511986bb8b4e8b8755b99', '31.222.203.2', 1677447133, '__ci_last_regenerate|i:1677447133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ac0192b89c23854f3d77294f21078e68348644', '31.222.203.2', 1677447133, '__ci_last_regenerate|i:1677447133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040df1eeb47f713ef93c6202e2d80fc2fff7186a', '31.222.203.2', 1677447133, '__ci_last_regenerate|i:1677447133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ad25cbf9126c7ecc32ccaef53fb0359aa1c878', '31.222.203.2', 1677447133, '__ci_last_regenerate|i:1677447133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b4990a40b45d8cde3d8f3d73c03fb6fbd74b62f', '31.222.203.2', 1677447133, '__ci_last_regenerate|i:1677447133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1741e96cc8507eff25d3c11559d858a3b4fd0e05', '31.222.203.2', 1677447133, '__ci_last_regenerate|i:1677447133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6aa7052c1fe750b162ead1efb29d5349a9bafbd', '31.222.203.2', 1677448944, '__ci_last_regenerate|i:1677448944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f902fc8c054e060958d9e43151bb91c7af380856', '31.222.203.2', 1677448944, '__ci_last_regenerate|i:1677448944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d4aba3a7ea86fbc00c7d4a575bb13d24dc5bfd8', '31.222.203.2', 1677448944, '__ci_last_regenerate|i:1677448944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e8236eaa549a1516d62697d52753693aa562c8f', '31.222.203.2', 1677448944, '__ci_last_regenerate|i:1677448944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa9aeace42863396b72724b0eb104f370d39430', '31.222.203.2', 1677448944, '__ci_last_regenerate|i:1677448944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640319202f3d61d1bc9ae04a852d06f066b954b9', '31.222.203.2', 1677448944, '__ci_last_regenerate|i:1677448944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0d613551c6f53ee20c1726628119745ad44d908', '31.222.203.2', 1677450736, '__ci_last_regenerate|i:1677450736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ede4816832ab9f5c4078be2990c29dfffb972d2d', '31.222.203.2', 1677450736, '__ci_last_regenerate|i:1677450736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8a989d9e28c6e1182b0af3b58fae845377e299', '31.222.203.2', 1677450736, '__ci_last_regenerate|i:1677450736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60c4e1c295566e257f9be980ab3d85bc50074cc', '31.222.203.2', 1677450736, '__ci_last_regenerate|i:1677450736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d96e6ae44adb73f1405d8e1ec5e694449429f9', '31.222.203.2', 1677450736, '__ci_last_regenerate|i:1677450736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caefd01d8fe2a785c54e5f2d71b4d77f2e1869ab', '31.222.203.2', 1677450736, '__ci_last_regenerate|i:1677450736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b04227634a1f56ea59732bab6e8d8c183665d32', '31.222.203.2', 1677452541, '__ci_last_regenerate|i:1677452541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92f2f941865b5f7aa4fb6167b71405554d827220', '31.222.203.2', 1677452541, '__ci_last_regenerate|i:1677452541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb301536283b21c1068e4c5bfea13cf5fff2a5ec', '31.222.203.2', 1677452541, '__ci_last_regenerate|i:1677452541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf2b9672b59f604654aa30ae326111317605e150', '31.222.203.2', 1677452541, '__ci_last_regenerate|i:1677452541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a4e86f9bd6b9fce81a68ade742b04eb325c873a', '31.222.203.2', 1677452541, '__ci_last_regenerate|i:1677452541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0dd499bcbe84d95c1c65b7ba6cb00d6571a285', '31.222.203.2', 1677452541, '__ci_last_regenerate|i:1677452541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('907f5699745398644b75234dd02c446dabc69820', '31.222.203.2', 1677454334, '__ci_last_regenerate|i:1677454334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff5f4e28f32c886c143a5d8809b3682b17d2bfd', '31.222.203.2', 1677454334, '__ci_last_regenerate|i:1677454334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aca830bb2067d28d436a03e845575b5b946d776', '31.222.203.2', 1677454334, '__ci_last_regenerate|i:1677454334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88550bb427660c1f21a29925de84e3cf5b5d11b', '31.222.203.2', 1677454334, '__ci_last_regenerate|i:1677454334;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e804858609d6540bfab0e5cb382b70d4a488ade', '31.222.203.2', 1677454335, '__ci_last_regenerate|i:1677454334;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b57be07c8ff8afa66ac1690657299975e66ac958', '31.222.203.2', 1677454335, '__ci_last_regenerate|i:1677454335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddc95f69c212d26df8e711f343dbd66ff1f822ba', '31.222.203.2', 1677456144, '__ci_last_regenerate|i:1677456144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca739cd0076e3fb9316bc63ac635e221c9caad3', '31.222.203.2', 1677456144, '__ci_last_regenerate|i:1677456144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a66cd3bd596baeb53aeb4e80c94c2afb27feeda', '31.222.203.2', 1677456144, '__ci_last_regenerate|i:1677456144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ca308a729682f0190b095a88125df7c0af4eaa9', '31.222.203.2', 1677456144, '__ci_last_regenerate|i:1677456144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5fe9e28d4db5c2537b2c8dce56333564b4736f2', '31.222.203.2', 1677456144, '__ci_last_regenerate|i:1677456144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8202c78132f4da48d6fd7cbb526c0c4131e289aa', '31.222.203.2', 1677456144, '__ci_last_regenerate|i:1677456144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dccb9930cb0fa343a5b7a61e75e19e3793335053', '31.222.203.2', 1677457937, '__ci_last_regenerate|i:1677457937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6bfda7d5dc6136fc550604d81269b146345d52', '31.222.203.2', 1677457937, '__ci_last_regenerate|i:1677457937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aca7abd868e3195fa633d539d2b205036a7ad17', '31.222.203.2', 1677457937, '__ci_last_regenerate|i:1677457937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457b66b5ee48f6b754d0cc3ce5f426128566494e', '31.222.203.2', 1677457937, '__ci_last_regenerate|i:1677457937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('220151fdb58fa0ce7d44e954b0f14540a3eda4cc', '31.222.203.2', 1677457937, '__ci_last_regenerate|i:1677457937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55dfceadc48dde6bbad113cf851103f855bfa57a', '31.222.203.2', 1677457937, '__ci_last_regenerate|i:1677457937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515c2f647a901a28698da64d70e30ae524b8527e', '31.222.203.2', 1677459756, '__ci_last_regenerate|i:1677459756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd82bb8a142ef9f16a1f9164212e4135b8cded6', '31.222.203.2', 1677459756, '__ci_last_regenerate|i:1677459756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4401bc08009f3bd785da4890cc4516b55ee1d0', '31.222.203.2', 1677459756, '__ci_last_regenerate|i:1677459756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5aa427d23e5a94a2c9a25c446654699099e1342', '31.222.203.2', 1677459756, '__ci_last_regenerate|i:1677459756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ebaae4f611d41e2d04acebe1554052656de8f9', '31.222.203.2', 1677459756, '__ci_last_regenerate|i:1677459756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8bb8e341303715e31c007f22a17e59eea6dbca', '31.222.203.2', 1677459756, '__ci_last_regenerate|i:1677459756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02911c5f6b0e2920deb8a09526a9401e17345828', '31.222.203.2', 1677461532, '__ci_last_regenerate|i:1677461532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3ae1b146213e73d441f784b4feac17688c4056', '31.222.203.2', 1677461532, '__ci_last_regenerate|i:1677461532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fe6a69e93656cad2dd75da84e888e45faab3c13', '31.222.203.2', 1677461532, '__ci_last_regenerate|i:1677461532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b09607d8becbbc3b47b066e9f5f2c17d6f4a4b', '31.222.203.2', 1677461532, '__ci_last_regenerate|i:1677461532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db1179bdbbd680c02f5fe67fa94a8b7164934ad', '31.222.203.2', 1677461532, '__ci_last_regenerate|i:1677461532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868ee642e47ac527264b9aa0b6752daeeca982e8', '31.222.203.2', 1677461532, '__ci_last_regenerate|i:1677461532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be30e0212a5f2bc9cf8fa8c7b183ef591551150', '31.222.203.2', 1677463341, '__ci_last_regenerate|i:1677463341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdce97f3d2022c5bc81832aa3fbf69b2129bf1ed', '31.222.203.2', 1677463341, '__ci_last_regenerate|i:1677463341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbb3e9cb52d9ae5904e94cd73addbf865924e20', '31.222.203.2', 1677463341, '__ci_last_regenerate|i:1677463341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6858eb141b35e933ea5d9c256b6a8671473ce70', '31.222.203.2', 1677463341, '__ci_last_regenerate|i:1677463341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e45406f3dfe9660a4d8afb48af3a68bed402fd', '31.222.203.2', 1677463341, '__ci_last_regenerate|i:1677463341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b81a37f39d264df2aa4aa63b6ef3b4ac12e6138', '31.222.203.2', 1677463341, '__ci_last_regenerate|i:1677463341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03c2f9a2d15dd13645dd31cf666583a8c077872', '31.222.203.2', 1677465132, '__ci_last_regenerate|i:1677465132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a8f044f183dd06a38b66f1517670dd4a5d58b4', '31.222.203.2', 1677465132, '__ci_last_regenerate|i:1677465132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f87c0b2853d4e65ae6c3201f2d77a48e6b74c2db', '31.222.203.2', 1677465132, '__ci_last_regenerate|i:1677465132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a430a6fa7bda8ec8890b6141a66c5decff73ae6f', '31.222.203.2', 1677465132, '__ci_last_regenerate|i:1677465132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e831715ba0010989965bf1ecb4a547d9f9397a23', '31.222.203.2', 1677465132, '__ci_last_regenerate|i:1677465132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002590527d541bc7d63a644023f2efbe28f0289e', '31.222.203.2', 1677465132, '__ci_last_regenerate|i:1677465132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9760134c7eccac17362d611cfc0eaf7c7778927', '31.222.203.2', 1677466944, '__ci_last_regenerate|i:1677466944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0052ed71000cd2189599c082959c09ea460b7809', '31.222.203.2', 1677466944, '__ci_last_regenerate|i:1677466944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e453f7a6325983ad522656aa9466c29f8a2f3c', '31.222.203.2', 1677466944, '__ci_last_regenerate|i:1677466944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db9151b85003e98f1a7c29cb264d1a3ac7b1c88a', '31.222.203.2', 1677466944, '__ci_last_regenerate|i:1677466944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ffe929c776a8f88d7b76635501fa8c15da25bd', '31.222.203.2', 1677466944, '__ci_last_regenerate|i:1677466944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4287863f42e4ed43338e06f4233cd94ccf9fa621', '31.222.203.2', 1677466944, '__ci_last_regenerate|i:1677466944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4081183fbfb5cfff7a92f5550b97573f8b2c3df3', '31.222.203.2', 1677468733, '__ci_last_regenerate|i:1677468733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774549de79c9ae6a4948ea4250fd7ebd860088c6', '31.222.203.2', 1677468733, '__ci_last_regenerate|i:1677468733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c81b842dfa95261a3ef743ac4b0320a86df5e7d4', '31.222.203.2', 1677468733, '__ci_last_regenerate|i:1677468733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be25af38c357a55db06c55c4644005962c54ab88', '31.222.203.2', 1677468733, '__ci_last_regenerate|i:1677468733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2639110b2d58a4946aff87e988da0548f5b2a587', '31.222.203.2', 1677468733, '__ci_last_regenerate|i:1677468733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('078e15c75c1aea6afefd76276be9d195ff14d009', '31.222.203.2', 1677468733, '__ci_last_regenerate|i:1677468733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b101968a2a8108e3f8d99c81c7897b86de19973', '31.222.203.2', 1677470541, '__ci_last_regenerate|i:1677470541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1b28dab52d270849c7c28cdf1b6329a276955f', '31.222.203.2', 1677470541, '__ci_last_regenerate|i:1677470541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46991c4de359302af012642d5d4e0157396b9ff3', '31.222.203.2', 1677470541, '__ci_last_regenerate|i:1677470541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21928e1e5aababc4dbc0daec621804cd77d352f', '31.222.203.2', 1677470541, '__ci_last_regenerate|i:1677470541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3142b9a6223d0aa4f5d41b70cb9a48eb006896a5', '31.222.203.2', 1677470541, '__ci_last_regenerate|i:1677470541;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f20e7538f3c522ba015d85fd6f2bd7bf484bdb3', '31.222.203.2', 1677470541, '__ci_last_regenerate|i:1677470541;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710a18c9f355ffe7697d21c40d6bae52bf75e1de', '45.120.39.89', 1677472257, '__ci_last_regenerate|i:1677472257;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677388394\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677471737;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f379c1381e2a9b7ddf4e23c254fbc7afbcb5d88', '45.120.39.89', 1677474432, '__ci_last_regenerate|i:1677474432;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677388394\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677472597;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cf68f66d9063da4cb464b4458360f955a050962', '31.222.203.2', 1677472338, '__ci_last_regenerate|i:1677472338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebaa82aeec7ac716541c42f7625f29a26ae770f7', '31.222.203.2', 1677472338, '__ci_last_regenerate|i:1677472338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b557cde584a35a297f52eb5f88e7052e7235b3af', '31.222.203.2', 1677472338, '__ci_last_regenerate|i:1677472338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e61ab6828cdf9461795a6fe43ab5021c46635e', '31.222.203.2', 1677472338, '__ci_last_regenerate|i:1677472338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e55708655a14db8de98eafa99558c1b00d2327c', '31.222.203.2', 1677472338, '__ci_last_regenerate|i:1677472338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d7199323beefc6ea97bf060a1e7c02cd7e08a00', '31.222.203.2', 1677472338, '__ci_last_regenerate|i:1677472338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b9b59562eeff01756695a74658acd07d9230b7c', '31.222.203.2', 1677474142, '__ci_last_regenerate|i:1677474142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee8af0fdce98e8649f55cb788d2d49d451886ba', '31.222.203.2', 1677474142, '__ci_last_regenerate|i:1677474142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c862a11cd4632db7900f7dcc723c115bcb71d02', '31.222.203.2', 1677474142, '__ci_last_regenerate|i:1677474142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fe5c614f901a81a93d20f65ea6d887254b136d', '31.222.203.2', 1677474142, '__ci_last_regenerate|i:1677474142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f6637aeb6727b2be4d0abb3e0f1c8693929007c', '31.222.203.2', 1677474142, '__ci_last_regenerate|i:1677474142;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e91b942417e88031885553772f548cf2e60c90ce', '31.222.203.2', 1677474142, '__ci_last_regenerate|i:1677474142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3df7bfc6623f7c330c412ce213364c425895a4', '45.120.39.89', 1677474639, '__ci_last_regenerate|i:1677474432;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677388394\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677474639;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a11f7de3b03504c97f3e3840ecd8daee2bee5e1e', '31.222.203.2', 1677475931, '__ci_last_regenerate|i:1677475931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12604fd9efff9b7881086f9e70cf54df0dd294fd', '31.222.203.2', 1677475931, '__ci_last_regenerate|i:1677475931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd6caf825c58361cfd6afcb23d6650ed2cf2dfca', '31.222.203.2', 1677475931, '__ci_last_regenerate|i:1677475931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b3c6bcbcda96c45efaf91e4c27ee972d980137', '31.222.203.2', 1677475931, '__ci_last_regenerate|i:1677475931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2532774d065e1b05075c2f21ac4c3335d0d6c03e', '31.222.203.2', 1677475931, '__ci_last_regenerate|i:1677475931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('956366d3bbadfeba327e11db321e8d369e760b3f', '31.222.203.2', 1677475931, '__ci_last_regenerate|i:1677475931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62e24d77b9f81d638742bcbca5c6e4c75e54cea', '31.222.203.2', 1677477737, '__ci_last_regenerate|i:1677477737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02e5d86fa82fec92bb21ed4bbefe311e07ef2dd7', '31.222.203.2', 1677477737, '__ci_last_regenerate|i:1677477737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529c255e6f5dd411afc8fa99dae56153593620b2', '31.222.203.2', 1677477737, '__ci_last_regenerate|i:1677477737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92088648b1dff945ab321fa59b3d10d493e7b830', '31.222.203.2', 1677477737, '__ci_last_regenerate|i:1677477737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8dc367bf29f123a064979196aa93ef6fe03edde', '31.222.203.2', 1677477737, '__ci_last_regenerate|i:1677477737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056834b7c3582f1381118eef76425a008fa15f6b', '31.222.203.2', 1677477737, '__ci_last_regenerate|i:1677477737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8895f5be45ca9bd5f2907daa03a00ad409e01fb0', '31.222.203.2', 1677479531, '__ci_last_regenerate|i:1677479531;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9326658b4e5baf2fa87526e9897ac0d3045624a', '31.222.203.2', 1677479532, '__ci_last_regenerate|i:1677479532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9721ad54e30f11d1b004050aa94b7aeb6557a5d4', '31.222.203.2', 1677479532, '__ci_last_regenerate|i:1677479532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d59e31a9ccaf99ad9eb986324ef8a24e1d53a0e', '31.222.203.2', 1677479532, '__ci_last_regenerate|i:1677479532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e30d44c6c56b97fc3ad1b5be7f261291b3c73f0', '31.222.203.2', 1677479532, '__ci_last_regenerate|i:1677479532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3beeae52e6753e18303e8dfa133c3cd59a41508', '31.222.203.2', 1677479532, '__ci_last_regenerate|i:1677479532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48b192e26f0260e758c1076770aad5398d66ea8', '31.222.203.2', 1677481340, '__ci_last_regenerate|i:1677481340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a063bde914f5fbd80365637e9465a70a5c6f94f', '31.222.203.2', 1677481340, '__ci_last_regenerate|i:1677481340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2127527ec0fd9c59e331fb2a514cbd4ceeee42a4', '31.222.203.2', 1677481340, '__ci_last_regenerate|i:1677481340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4afb087e9cefc1e0bbcf5aaad60ed6bbccf080', '31.222.203.2', 1677481340, '__ci_last_regenerate|i:1677481340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2835f4aeb35458dee1cfa552d377a83acc836f', '31.222.203.2', 1677481340, '__ci_last_regenerate|i:1677481340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a41a49eb42c077b143f292f98189d26223edb4', '31.222.203.2', 1677481340, '__ci_last_regenerate|i:1677481340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077c0e9867af084d153fc8f4cfef4741fb4138b2', '31.222.203.2', 1677483132, '__ci_last_regenerate|i:1677483132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24661df5d459baef5ee7b32ba5bdfd87691735b3', '31.222.203.2', 1677483132, '__ci_last_regenerate|i:1677483132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5deb26fb07af48845f41cb70efbb7a956dfbeb70', '31.222.203.2', 1677483132, '__ci_last_regenerate|i:1677483132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e6cce71d5b4639f6456036b757d403c70afd99', '31.222.203.2', 1677483132, '__ci_last_regenerate|i:1677483132;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('618abe286acf1dd43be719a2e27d0461c00397cc', '31.222.203.2', 1677483132, '__ci_last_regenerate|i:1677483132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef3ff5fd7e9507b55b6cecaaca254f5d7dce104', '31.222.203.2', 1677483132, '__ci_last_regenerate|i:1677483132;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40caa6454b2032c2bfae0d46623db994aeb89a75', '31.222.203.2', 1677484941, '__ci_last_regenerate|i:1677484941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('531cd32c0f416d21d73cfc4bff338544418ca218', '31.222.203.2', 1677484941, '__ci_last_regenerate|i:1677484941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eddf44ab69c509c4d2d3a8186f1e44034aaebc4', '31.222.203.2', 1677484941, '__ci_last_regenerate|i:1677484941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1085a56c9617c750d8219a350aead931b42d1b9', '31.222.203.2', 1677484942, '__ci_last_regenerate|i:1677484942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06c6b495b72c489f1767ba640ed6d212f452cb54', '31.222.203.2', 1677484942, '__ci_last_regenerate|i:1677484942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808d4563030f31c0c066733db0a22c4f28c7d0ab', '31.222.203.2', 1677484942, '__ci_last_regenerate|i:1677484942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6f4980d4603a208261f560e9b3f29b832ee328', '31.222.203.2', 1677486728, '__ci_last_regenerate|i:1677486728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c115026274689fd01d65b1c2bac85ff05ec728af', '31.222.203.2', 1677486728, '__ci_last_regenerate|i:1677486728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc2676b63cc0e5086d3e19ca29db35a9e4a5cf47', '31.222.203.2', 1677486728, '__ci_last_regenerate|i:1677486728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d59d69a8e85a9f01fdf690448091dd8ce6a3f329', '31.222.203.2', 1677486728, '__ci_last_regenerate|i:1677486728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447509b8aac7e6a07afd54bd7f0f5b4870c3c41e', '31.222.203.2', 1677486728, '__ci_last_regenerate|i:1677486728;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c95c9320874fad5a62983f33eb256d2095d0e3f', '31.222.203.2', 1677486728, '__ci_last_regenerate|i:1677486728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b369065bcf7a806d4b87e45395f138658486f823', '45.120.39.89', 1677487193, '__ci_last_regenerate|i:1677487193;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce7c27ae21d429715bf58e0e1af1735934aed2d', '45.120.39.89', 1677491396, '__ci_last_regenerate|i:1677491396;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8221ee1fb1f6b670d173982bdb776887dff914', '31.222.203.2', 1677488537, '__ci_last_regenerate|i:1677488537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05ebdf3b8d98e2d923edb379af6ee0b81afa239', '31.222.203.2', 1677488537, '__ci_last_regenerate|i:1677488537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919b3b936af156d3013603395c73fe01f4ce5b1b', '31.222.203.2', 1677488537, '__ci_last_regenerate|i:1677488537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e129db5ff9a7c4802df9488f3276f36725437f', '31.222.203.2', 1677488537, '__ci_last_regenerate|i:1677488537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b54f3a116449a8c78f8db6831c0e84150ba6f640', '31.222.203.2', 1677488537, '__ci_last_regenerate|i:1677488537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7068c58ba3335e0926c28445503268fd958f0896', '31.222.203.2', 1677488537, '__ci_last_regenerate|i:1677488537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdf89d88fdb41547852a2873e4bebdfff9311c5a', '31.222.203.2', 1677490333, '__ci_last_regenerate|i:1677490333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c81b4bbe3e8e9d6c3317cbf3b1afd51a5e5163', '31.222.203.2', 1677490333, '__ci_last_regenerate|i:1677490333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a4b755045b062acbc9c153e6ae747d9f3b09d5', '31.222.203.2', 1677490333, '__ci_last_regenerate|i:1677490333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83e50ca48389ad3b1aa2e2777c492d7b78b87eaf', '31.222.203.2', 1677490333, '__ci_last_regenerate|i:1677490333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff4b4277cb5031e1e57ccab29ded6bdf4851141', '31.222.203.2', 1677490333, '__ci_last_regenerate|i:1677490333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218bed72afc000ed3c38701a755e083c93178ec9', '31.222.203.2', 1677490333, '__ci_last_regenerate|i:1677490333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f436af2d11c526da1eb1844088f7baa87b0773', '45.120.39.89', 1677496946, '__ci_last_regenerate|i:1677496946;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677496940;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48194aac3f6fa89d46846c59aec84385c45e0b24', '31.222.203.2', 1677492140, '__ci_last_regenerate|i:1677492140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b39f9e3ccbb208cbab4f9620138263786045e5b1', '31.222.203.2', 1677492140, '__ci_last_regenerate|i:1677492140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e244c85c3ac9411d48b456002f81c72543182e27', '31.222.203.2', 1677492140, '__ci_last_regenerate|i:1677492140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b4985c0f5927c424d4d6ca8dc721184f78c3e7', '31.222.203.2', 1677492140, '__ci_last_regenerate|i:1677492140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4614b17ac18a61fa1bc8aa00a837724c4970c1e4', '31.222.203.2', 1677492140, '__ci_last_regenerate|i:1677492140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e339200342e63421c1873e5ac11a2f8f253e18f', '31.222.203.2', 1677492140, '__ci_last_regenerate|i:1677492140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4def282cdc754e72d71849d88146ac6832382069', '31.222.203.2', 1677493934, '__ci_last_regenerate|i:1677493934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e749df405c6db765881040854225989c49d236bb', '31.222.203.2', 1677493934, '__ci_last_regenerate|i:1677493934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d4daaf73c779f23a640e6b0107ca0714eb1868', '31.222.203.2', 1677493934, '__ci_last_regenerate|i:1677493934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5567bfb9ba0ef3be331293842ad0ab0c5c8bbd1', '31.222.203.2', 1677493934, '__ci_last_regenerate|i:1677493934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e60fe6601ab6a44f8b891f3aab690bb505f1b7d', '31.222.203.2', 1677493934, '__ci_last_regenerate|i:1677493934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac0544a26aed298f9b200cb61fdabdb3b617a15', '31.222.203.2', 1677493934, '__ci_last_regenerate|i:1677493934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75265080248d9abd1b328ed4f1de698d8c2438a', '31.222.203.2', 1677495739, '__ci_last_regenerate|i:1677495739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5566729a20534d4f97cda019721d62a3a5d0919', '31.222.203.2', 1677495739, '__ci_last_regenerate|i:1677495739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8706d587038dbda1f8fffd61ad8edb14ac32b2c9', '31.222.203.2', 1677495739, '__ci_last_regenerate|i:1677495739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a55f9b105e181328617c44f584e9968d6960492', '31.222.203.2', 1677495739, '__ci_last_regenerate|i:1677495739;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaff960f2bde76e37bcbc10ccee9fd6dbad6ac70', '31.222.203.2', 1677495739, '__ci_last_regenerate|i:1677495739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe76dc19e1a28aa72efc41850ebd0887ed8df0b', '31.222.203.2', 1677495739, '__ci_last_regenerate|i:1677495739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff8c3cef6150adbedca88dde92c993f66403f0f9', '45.120.39.89', 1677499593, '__ci_last_regenerate|i:1677499593;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677496950;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5c2fe6536e6529e07c4d4c540f53969ed59047', '31.222.203.2', 1677497532, '__ci_last_regenerate|i:1677497532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d097830158e2c016eb06bdd8ceef8d1af89f6a9', '31.222.203.2', 1677497532, '__ci_last_regenerate|i:1677497532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4febb5b17d55fbbe82c7338fd4cd6eed59e16ae', '31.222.203.2', 1677497532, '__ci_last_regenerate|i:1677497532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ba180b6739a50643b966e33b63c2174153c975', '31.222.203.2', 1677497532, '__ci_last_regenerate|i:1677497532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3815d1bacb20f6809bfef896b48ddd49968c000b', '31.222.203.2', 1677497532, '__ci_last_regenerate|i:1677497532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b58f6fbc4e0335901837e2d494144da258c442', '31.222.203.2', 1677497532, '__ci_last_regenerate|i:1677497532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e855d91c6342e46a7772539a6b473df6c2f8cf0', '31.222.203.2', 1677499338, '__ci_last_regenerate|i:1677499338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31eec42e15e79dc639bc6617a0fe9f781b6339b8', '31.222.203.2', 1677499338, '__ci_last_regenerate|i:1677499338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78636a5e88c7fc76cae2b042e5a962169cb0d251', '31.222.203.2', 1677499338, '__ci_last_regenerate|i:1677499338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f459a75f723c5d4236c3c0e66a4cb2342d0b65', '31.222.203.2', 1677499338, '__ci_last_regenerate|i:1677499338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d398033d8a6f2f7332ae3b702b8552fab65dd11c', '31.222.203.2', 1677499338, '__ci_last_regenerate|i:1677499338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18c6d05129028f83bdf2859d7cc510d3a8de555e', '31.222.203.2', 1677499338, '__ci_last_regenerate|i:1677499338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e970403a60b1adceb85155d6bc8dbd92c26bcda', '116.204.230.27', 1677500051, '__ci_last_regenerate|i:1677500051;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677407868\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"BWu7CDwYIVUpmET24R0a\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52d3c70794acf16baf9b1b2c74507a1ac476bb20', '45.120.39.89', 1677502999, '__ci_last_regenerate|i:1677502999;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677499593;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d1016847c8da650b72832f63266aee9ab3852a9', '116.204.230.27', 1677500448, '__ci_last_regenerate|i:1677500448;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677407868\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"BWu7CDwYIVUpmET24R0a\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db1f8593b0a317711f6924063cdda6aef5512d62', '116.204.230.27', 1677504117, '__ci_last_regenerate|i:1677504117;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677407868\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"BWu7CDwYIVUpmET24R0a\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d5db2c7437668ed950e6eb9298fdc488edb45d', '31.222.203.2', 1677501130, '__ci_last_regenerate|i:1677501130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea46dd8afdee11f12315ee49fc300285914d476', '31.222.203.2', 1677501130, '__ci_last_regenerate|i:1677501130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a61f2f255c0bb94c75b1b4527153692924ccf87', '31.222.203.2', 1677501131, '__ci_last_regenerate|i:1677501130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0793d09e95c839881c2815ce0efc556d972768f6', '31.222.203.2', 1677501131, '__ci_last_regenerate|i:1677501130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4859bc89d3c2fd4a504a7508389fb97578b75720', '31.222.203.2', 1677501131, '__ci_last_regenerate|i:1677501131;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f173d3dd6a466a7e5acbaa57c6b755e5c20ed1b', '31.222.203.2', 1677501131, '__ci_last_regenerate|i:1677501131;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38496e17fabd3516518d42b46c5efb162a6cd0ab', '31.222.203.2', 1677502940, '__ci_last_regenerate|i:1677502940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e41fec5df2edd35654267cac3e82263b1a09837', '31.222.203.2', 1677502940, '__ci_last_regenerate|i:1677502940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfcfd82a041c58b09b2055a27342db47fc76ed4d', '31.222.203.2', 1677502940, '__ci_last_regenerate|i:1677502940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172c8bfdca43b179f2cb4fcb993e05ff81e76636', '31.222.203.2', 1677502940, '__ci_last_regenerate|i:1677502940;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f4939f2a14a15fda39f792fc38f47af3f91791', '31.222.203.2', 1677502940, '__ci_last_regenerate|i:1677502940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8715973e020dc7a3d8d7b5e5d8639f6d07d92771', '31.222.203.2', 1677502940, '__ci_last_regenerate|i:1677502940;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c146a033b2c6bb2f5dc7804ae2596f341b1d274f', '45.120.39.89', 1677503353, '__ci_last_regenerate|i:1677503353;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677503018;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d2e92a21b1ff73dba90dbe54ecfcd2b2dc04be6', '45.120.39.89', 1677507188, '__ci_last_regenerate|i:1677507188;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677503353;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3380cb45b8f1ea7af435a77b2f6d895e8ade7d', '116.204.230.27', 1677504134, '__ci_last_regenerate|i:1677504117;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677407868\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"BWu7CDwYIVUpmET24R0a\";last_activity|i:1677504134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20e694949568f687f27029be959a31680b742de0', '31.222.203.2', 1677504744, '__ci_last_regenerate|i:1677504744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb491fe0f98b24d4589ddc5c6af5d5989aa6c708', '31.222.203.2', 1677504744, '__ci_last_regenerate|i:1677504744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b6463252bd48cabb16faf2d309083ac53022c3e', '31.222.203.2', 1677504744, '__ci_last_regenerate|i:1677504744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7132cb7a6668e1c26c68251b8b2baa93938c110a', '31.222.203.2', 1677504744, '__ci_last_regenerate|i:1677504744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61d45d0392dba27e13653bf423e77e74e11ced18', '31.222.203.2', 1677504744, '__ci_last_regenerate|i:1677504744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6a4446ef964389726d7722060f30a9ec5f069c', '31.222.203.2', 1677504744, '__ci_last_regenerate|i:1677504744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b666af1bb9e3777fa0d3bc74449042ecfd7be6d6', '31.222.203.2', 1677506537, '__ci_last_regenerate|i:1677506537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b830d50cf008e3be79a5a03f28e546361574d16', '31.222.203.2', 1677506537, '__ci_last_regenerate|i:1677506537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c2c70a0d6902c4656d76ceeea4e8a560636b93', '31.222.203.2', 1677506537, '__ci_last_regenerate|i:1677506537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ca5f6d6ea133d6dda1783f692abecbb4d875a81', '31.222.203.2', 1677506537, '__ci_last_regenerate|i:1677506537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37bc76e76b118d37890000375803aac6ca0c6ae1', '31.222.203.2', 1677506537, '__ci_last_regenerate|i:1677506537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc5bacf84c6cf027051c99396f77be2d81c5f83d', '31.222.203.2', 1677506537, '__ci_last_regenerate|i:1677506537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8136ea60381906d8b58a0510dea2c391f3ddf9b8', '45.120.39.89', 1677509017, '__ci_last_regenerate|i:1677509017;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677507225;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0676f5307f99f18b2fc3fee154d2f532515b30b3', '31.222.203.2', 1677508332, '__ci_last_regenerate|i:1677508332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58fba838d03378534cd2fc700d07e09588112f31', '31.222.203.2', 1677508332, '__ci_last_regenerate|i:1677508332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f556d9af06a0dfa6c65963aea2b4d47461ed354', '31.222.203.2', 1677508332, '__ci_last_regenerate|i:1677508332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca63e8a2146f1c7970208a7552ac1e4ed428c62', '31.222.203.2', 1677508332, '__ci_last_regenerate|i:1677508332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ee5af2be00bd1c3b6ea585956f68ed639dc4b4', '31.222.203.2', 1677508332, '__ci_last_regenerate|i:1677508332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b12fbf210578b842d827e8d01da4c91c011bdef', '31.222.203.2', 1677508332, '__ci_last_regenerate|i:1677508332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f45289fe77f465f0e7a49a38c583ab2a947ceb', '45.76.150.144', 1677508684, '__ci_last_regenerate|i:1677508684;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1b1369b9f8dbf101c69366eb9d1ee89fd0b5b2', '45.76.150.144', 1677508685, '__ci_last_regenerate|i:1677508685;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69901bfec919fb5873b8e5d0dc996bc2f051ca32', '45.76.150.144', 1677508686, '__ci_last_regenerate|i:1677508686;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e14524a5da0c9871244a1469df020ebdbb40f0', '45.76.150.144', 1677508687, '__ci_last_regenerate|i:1677508687;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bea10161295cf0d4801a0c95dd0830e93364cb06', '45.120.39.89', 1677509659, '__ci_last_regenerate|i:1677509659;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1677509651;register_id|s:3:\"354\";cash_in_hand|s:9:\"4130.0000\";register_open_time|s:19:\"2023-02-26 20:26:17\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dbb98940eb6b04750710084de42eea160bd7e6a', '45.120.39.89', 1677509700, '__ci_last_regenerate|i:1677509659;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677471656\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677509700;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a57c40fa70098efab112a785b452d3ab6d6540cd', '31.222.203.2', 1677510144, '__ci_last_regenerate|i:1677510144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd4a56887a516b320890c311356824256f7ad1e', '31.222.203.2', 1677510144, '__ci_last_regenerate|i:1677510144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369fcfa424c669072190dfbd199ea6a82bb07588', '31.222.203.2', 1677510144, '__ci_last_regenerate|i:1677510144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d128c57a3fe86affddfddb0e640b371ed889e0a0', '31.222.203.2', 1677510144, '__ci_last_regenerate|i:1677510144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('496a57a61dfeeb5a118affeb9ff38ce13bd8e05d', '31.222.203.2', 1677510144, '__ci_last_regenerate|i:1677510144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f84906d2e93ff54570aeceecd094b76e0f27183', '31.222.203.2', 1677510144, '__ci_last_regenerate|i:1677510144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f43566449c9fcb274e69c3470086efddb77c1e', '173.82.78.214', 1677510153, '__ci_last_regenerate|i:1677510153;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955e348864324cc04f914768e801c880cfe598bd', '173.82.78.214', 1677510153, '__ci_last_regenerate|i:1677510153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aac8e730acf6ca143b078dd0ad11321848a35a4', '173.82.78.214', 1677510154, '__ci_last_regenerate|i:1677510154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cddf3b44108756dd17da48638a24336799970dd', '173.82.78.214', 1677510154, '__ci_last_regenerate|i:1677510154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0691942e13cb010e085d8143dca1764d43315b10', '31.222.203.2', 1677511944, '__ci_last_regenerate|i:1677511944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709d52b8846b0c7430a356f93f1be3979ae51774', '31.222.203.2', 1677511944, '__ci_last_regenerate|i:1677511944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c214d3cc084bb2c231509d5802f625c6f069f3', '31.222.203.2', 1677511944, '__ci_last_regenerate|i:1677511944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c63b016c8564460ce82b382b1c24fc3c074ad10', '31.222.203.2', 1677511944, '__ci_last_regenerate|i:1677511944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c892f0adf6bd88b7162892a8446352314acbc194', '31.222.203.2', 1677511944, '__ci_last_regenerate|i:1677511944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdcaeb17f89488e12ffb85820550970d6352d3d0', '31.222.203.2', 1677511944, '__ci_last_regenerate|i:1677511944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b79370ea577d2f74bb77bff67f98fa185797fa', '31.222.203.2', 1677513743, '__ci_last_regenerate|i:1677513743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72c123db54bce8a765ed6552993bbb737f0886a0', '31.222.203.2', 1677513743, '__ci_last_regenerate|i:1677513743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b02f4bf95be245eff2b2fc912aea73055f3775b3', '31.222.203.2', 1677513743, '__ci_last_regenerate|i:1677513743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80652323dfd2b7d9eb2f071feae081844e0651b0', '31.222.203.2', 1677513743, '__ci_last_regenerate|i:1677513743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e787fc31df3a28c33f769e137990826915d954', '31.222.203.2', 1677513743, '__ci_last_regenerate|i:1677513743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc6bfa2401bc89868fd4a95a1e60e31daec7c03', '31.222.203.2', 1677513743, '__ci_last_regenerate|i:1677513743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfde6c757251647fd691836e3ef6956130bea7e4', '192.64.113.147', 1677514098, '__ci_last_regenerate|i:1677514098;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30aec8e2801da5471889e0180546a781b1c0dd7', '192.64.113.147', 1677514098, '__ci_last_regenerate|i:1677514098;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab701314b5f181ea8c3c895187643f8203d36401', '192.64.113.147', 1677514099, '__ci_last_regenerate|i:1677514099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cf4e7e3d2aa4726f08a3850bb9612d72433d635', '192.64.113.147', 1677514099, '__ci_last_regenerate|i:1677514099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e45da8d63bd415e1b5c64bbdc7e945018765cf', '31.222.203.2', 1677515532, '__ci_last_regenerate|i:1677515532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b22b8cd4204d18d35081c4d01f4260004527733', '31.222.203.2', 1677515532, '__ci_last_regenerate|i:1677515532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5178a55dbad3dff0812ef2edd6055a9346907a48', '31.222.203.2', 1677515532, '__ci_last_regenerate|i:1677515532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c78b8a76aba6275bf55fcf3ee9156a3ced7974', '31.222.203.2', 1677515532, '__ci_last_regenerate|i:1677515532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb1960ba633f700c9308067e2bfc155dbfc94ab', '31.222.203.2', 1677515532, '__ci_last_regenerate|i:1677515532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7fc8f200b8aaa1cd6b6c853f0f4a42f661beb1', '31.222.203.2', 1677515532, '__ci_last_regenerate|i:1677515532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96734562626e74ad03e3b4ea015b9f6d24c22d9d', '31.222.203.2', 1677517340, '__ci_last_regenerate|i:1677517340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4242cfc991a75acf35c5462a0f3ba3677971a9ad', '31.222.203.2', 1677517340, '__ci_last_regenerate|i:1677517340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dc456c95d7d88b72f71e4b9d9e30374f0179317', '31.222.203.2', 1677517340, '__ci_last_regenerate|i:1677517340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f45ed49208ccc240ecc56c2c45653c246cdc5b', '31.222.203.2', 1677517340, '__ci_last_regenerate|i:1677517340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648e2f8194d528e9fca2bd552ab1eda59d5aaae3', '31.222.203.2', 1677517340, '__ci_last_regenerate|i:1677517340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e9f3e4ec7691e6f3caaa448d9bac56bad414ea', '31.222.203.2', 1677517340, '__ci_last_regenerate|i:1677517340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295b8aaebc527d47ecdcb13aea374529cc1d02d0', '31.222.203.2', 1677519130, '__ci_last_regenerate|i:1677519130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62af74022d7135c7c19cb0a09abb77026f0fc4b', '31.222.203.2', 1677519130, '__ci_last_regenerate|i:1677519130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5090267cedc104fcc7c54cb63b71d9ca2ea42292', '31.222.203.2', 1677519130, '__ci_last_regenerate|i:1677519130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566b29486a5ad151f83116582286d962fdefe997', '31.222.203.2', 1677519130, '__ci_last_regenerate|i:1677519130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4a8089ebd825ec0cf9c58394d6932a69ec86b5', '31.222.203.2', 1677519130, '__ci_last_regenerate|i:1677519130;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db646bab7d2b563ebb8f8c3b48b40e42f3e4416c', '31.222.203.2', 1677519130, '__ci_last_regenerate|i:1677519130;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82294abaa0892b57af07cd40ad91c080a08a4731', '31.222.203.2', 1677520945, '__ci_last_regenerate|i:1677520945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef5efe440f0ff82d1d839ad5bd21e273ca0c108', '31.222.203.2', 1677520945, '__ci_last_regenerate|i:1677520945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f663448cef3e1d0576c40cade4336ab881ed77fd', '31.222.203.2', 1677520945, '__ci_last_regenerate|i:1677520945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5ec4503c02eef404061edd7c6ec2a0a6bf5ae4', '31.222.203.2', 1677520945, '__ci_last_regenerate|i:1677520945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd311d4ea7b9554f41d876f127d321e400d4848d', '31.222.203.2', 1677520945, '__ci_last_regenerate|i:1677520945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a31c11d304f67cbd16fcf556b1e3cbd0f5b801', '31.222.203.2', 1677520945, '__ci_last_regenerate|i:1677520945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4663607494c43a378f66e54f783a6690452b175', '31.222.203.2', 1677522733, '__ci_last_regenerate|i:1677522733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc165a0a86cbb2e3082f9fab285a3580f8276287', '31.222.203.2', 1677522733, '__ci_last_regenerate|i:1677522733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5ce45a85d9b199af8a9ee1b55b12f597092b0dc', '31.222.203.2', 1677522733, '__ci_last_regenerate|i:1677522733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cabe3ec9e2c9085e0f6ca5af280cec20cda9b18', '31.222.203.2', 1677522733, '__ci_last_regenerate|i:1677522733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd11f1d103c2673aa5eafe96a2f18451bd5d53f', '31.222.203.2', 1677522733, '__ci_last_regenerate|i:1677522733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c987fa68ad035d40f2177de0961684a2f8eea5', '31.222.203.2', 1677522733, '__ci_last_regenerate|i:1677522733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98a9013cf7db3bfbdad88649dd7cd7c3978d7db9', '125.227.127.195', 1677523515, '__ci_last_regenerate|i:1677523515;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfacdbe44f3199fd5f09d0dd9667785b0eebdb61', '125.227.127.195', 1677523516, '__ci_last_regenerate|i:1677523516;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('992b77731f64ac9d998ae95c45da8b8f21bf6ac2', '125.227.127.195', 1677523517, '__ci_last_regenerate|i:1677523517;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37826ab8c4d74603031ee5d38322d0e1ecf5886b', '125.227.127.195', 1677523517, '__ci_last_regenerate|i:1677523517;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce89c5062589e7c6889ecf3c1d6bcdaf4b782c74', '31.222.203.2', 1677524537, '__ci_last_regenerate|i:1677524537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7aab22d1923a0e8037e30f76759176dbfe827e33', '31.222.203.2', 1677524537, '__ci_last_regenerate|i:1677524537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('912a2082302e0d8ebd7eaf120962f9f4d791ef5b', '31.222.203.2', 1677524537, '__ci_last_regenerate|i:1677524537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2443f5e9362e485f8bb20720c6e1d690180ae3c', '31.222.203.2', 1677524537, '__ci_last_regenerate|i:1677524537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff7a164dab01c314173de7f56dd529471f100319', '31.222.203.2', 1677524537, '__ci_last_regenerate|i:1677524537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcc099062f6916a82b1cba63418d43bff02a383', '31.222.203.2', 1677524537, '__ci_last_regenerate|i:1677524537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8310580d6333a91474481f0b7591c6c5058e6d', '31.222.203.2', 1677526350, '__ci_last_regenerate|i:1677526350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee7424f4bdce4d8c02ea4690f88130c05e699546', '31.222.203.2', 1677526350, '__ci_last_regenerate|i:1677526350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('132703d321313c0a7906b13e3319ab603efd99b1', '31.222.203.2', 1677526350, '__ci_last_regenerate|i:1677526350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de014e65f3ed726111ac42ae0c29d51bfa3c0f4a', '31.222.203.2', 1677526350, '__ci_last_regenerate|i:1677526350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cdd0e9b7a3cc44b3275c138dec86147dba92b99', '31.222.203.2', 1677526350, '__ci_last_regenerate|i:1677526350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca5813e0ae4ff29bc69dc9d4910e968d89fe768c', '31.222.203.2', 1677526350, '__ci_last_regenerate|i:1677526350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dc0357db35286548920dff2f7450432b020f16e', '31.222.203.2', 1677528137, '__ci_last_regenerate|i:1677528137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0841180eca2c6917a25fdac00fc89ff53fe00382', '31.222.203.2', 1677528137, '__ci_last_regenerate|i:1677528137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca0775e918edbb216cf8f80b0c678ae9cf07ca07', '31.222.203.2', 1677528137, '__ci_last_regenerate|i:1677528137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6484ff74df5459be937c4f06c2be4e80f893405', '31.222.203.2', 1677528137, '__ci_last_regenerate|i:1677528137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae7dfd385c3b5868fbd5727f3b976e7110d4ded', '31.222.203.2', 1677528137, '__ci_last_regenerate|i:1677528137;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e52a445089f302bcfff2395f4e0634979b6c629c', '31.222.203.2', 1677528137, '__ci_last_regenerate|i:1677528137;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32df3d894aa55af5b2763c153e520401c896f6b1', '31.222.203.2', 1677529932, '__ci_last_regenerate|i:1677529932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66667b5be534818d533046b2ac70769039915145', '31.222.203.2', 1677529932, '__ci_last_regenerate|i:1677529932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05973e55d377e2579a5af5202bcdca4623ec9543', '31.222.203.2', 1677529932, '__ci_last_regenerate|i:1677529932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bdab5cbe9e4b7172c94c2bc631ea08f77c3171', '31.222.203.2', 1677529932, '__ci_last_regenerate|i:1677529932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28864ef33bfb7cc549cbea4129f7e73c908714b1', '31.222.203.2', 1677529932, '__ci_last_regenerate|i:1677529932;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429f6771f678a315969580efd496ce4a4beee23f', '31.222.203.2', 1677529932, '__ci_last_regenerate|i:1677529932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('690435d4149e73ad31f907caec615c8208a3c7d5', '205.210.31.167', 1677531543, '__ci_last_regenerate|i:1677531543;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ccd56f3f9721f0cfb6025d1fc8561fcba6fbbd9', '31.222.203.2', 1677531741, '__ci_last_regenerate|i:1677531741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7038f6caa9b11e1326fec1d6c629d34beab46643', '31.222.203.2', 1677531741, '__ci_last_regenerate|i:1677531741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2836f945152f10530051bea1932e55e49ce29281', '31.222.203.2', 1677531741, '__ci_last_regenerate|i:1677531741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('813cf98c0176db511deb72e6139cb0556a45d601', '31.222.203.2', 1677531741, '__ci_last_regenerate|i:1677531741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf5e540d637d81b47a02c17f6e80213418f71132', '31.222.203.2', 1677531741, '__ci_last_regenerate|i:1677531741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d248baab50a95e9b0a45b72864a6a6d5847303', '31.222.203.2', 1677531741, '__ci_last_regenerate|i:1677531741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a019ea4a8dafd8fd071e91c732a7224b6c909c1a', '31.222.203.2', 1677533530, '__ci_last_regenerate|i:1677533530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60ca8269a78865d1b8a491e060ac5ce1c2a7142e', '31.222.203.2', 1677533530, '__ci_last_regenerate|i:1677533530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c33c2f875f91114ca5fbcf6757f07976f5788b', '31.222.203.2', 1677533530, '__ci_last_regenerate|i:1677533530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('624a8e5101987ad1b19bed167a7293dc9af39bcc', '31.222.203.2', 1677533530, '__ci_last_regenerate|i:1677533530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd960f8651cc742bf970a4deaa54dda92e08dd73', '31.222.203.2', 1677533530, '__ci_last_regenerate|i:1677533530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18d0df2ea8f61ac91b31106c3c3bc2442d7d92c', '31.222.203.2', 1677533530, '__ci_last_regenerate|i:1677533530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1249adeb8d4c66c73343153adb6731132c605e9a', '31.222.203.2', 1677535340, '__ci_last_regenerate|i:1677535340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc15c2655d77a45bd3d2bfd33b4ef872fefe2e1b', '31.222.203.2', 1677535340, '__ci_last_regenerate|i:1677535340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9078d3f4fef7a06dc793e57c305944eb91ac3d2', '31.222.203.2', 1677535340, '__ci_last_regenerate|i:1677535340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd1be7fef97c0dc2cc2ea47c3ba5763da4e260a5', '31.222.203.2', 1677535340, '__ci_last_regenerate|i:1677535340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b245f03911f312ec23bbf470c428feb0573fdc9', '31.222.203.2', 1677535340, '__ci_last_regenerate|i:1677535340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b974fbc11c4ccb21f4998d547edde895872a1abb', '31.222.203.2', 1677535340, '__ci_last_regenerate|i:1677535340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79591645222ae831b72193c5a7e13f489de54c6', '31.222.203.2', 1677537135, '__ci_last_regenerate|i:1677537135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ce35ccd83ad2351e5a1056ad1d1e7e7f5e62ee', '31.222.203.2', 1677537135, '__ci_last_regenerate|i:1677537135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f15e45ed6f558be4d308db44337a73fafd7c99d0', '31.222.203.2', 1677537135, '__ci_last_regenerate|i:1677537135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b747056d9475816aeeaa1905f9804ec8d737e5c4', '31.222.203.2', 1677537135, '__ci_last_regenerate|i:1677537135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d57e8f27f21c76da0ad19d5a902809a3b3bd8049', '31.222.203.2', 1677537135, '__ci_last_regenerate|i:1677537135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d045aa5167412f46b637c1955706d5c7c4330f3e', '31.222.203.2', 1677537135, '__ci_last_regenerate|i:1677537135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0b326d71773701d4a2a13216576831dd38250d', '31.222.203.2', 1677538942, '__ci_last_regenerate|i:1677538942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3db0e326aaeaf25ccff213c296a2324b3af5aa', '31.222.203.2', 1677538942, '__ci_last_regenerate|i:1677538942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50a9ef2e0655d702e6e488cc5adac66a0b5e75c', '31.222.203.2', 1677538942, '__ci_last_regenerate|i:1677538942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b6757feeee699866f58ffa1a894735e05013d9', '31.222.203.2', 1677538942, '__ci_last_regenerate|i:1677538942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a02818cbb2eed991dd11e4cd4c5a3da261cecd58', '31.222.203.2', 1677538943, '__ci_last_regenerate|i:1677538942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b3545e3d6d468f2541ea55eeeb099bf43b7056', '31.222.203.2', 1677538943, '__ci_last_regenerate|i:1677538943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37cd51f09d541b60f39af1e867e1ec267182978', '31.222.203.2', 1677540738, '__ci_last_regenerate|i:1677540738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f289bdd014b3953043c4594e90bfde42f66bbaeb', '31.222.203.2', 1677540738, '__ci_last_regenerate|i:1677540738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de26f75bc2370fe3f63fc28482be1ddca00bbcc1', '31.222.203.2', 1677540738, '__ci_last_regenerate|i:1677540738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40096fd3d232ebca4a96ed71acbaa04652c0dc69', '31.222.203.2', 1677540738, '__ci_last_regenerate|i:1677540738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b2f63f8401c2ce13ec206f10ba398404fa1a396', '31.222.203.2', 1677540738, '__ci_last_regenerate|i:1677540738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df7a9b78204fbc08bf577062cef11b4a6ad729a', '31.222.203.2', 1677540738, '__ci_last_regenerate|i:1677540738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae5b99d4f0856efe5f7884f274d4a061f067dee', '31.222.203.2', 1677542551, '__ci_last_regenerate|i:1677542551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77620bc43063ed71aeeb598bfe4b9bc0d35844a8', '31.222.203.2', 1677542551, '__ci_last_regenerate|i:1677542551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('406e0b7f815f7590751e993e30b585e53e805210', '31.222.203.2', 1677542551, '__ci_last_regenerate|i:1677542551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df714f6486f3a5a1a21abc01cc93beff93b9508a', '31.222.203.2', 1677542551, '__ci_last_regenerate|i:1677542551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faba0384ba58f245f75dc0024ec669094aa5cddf', '31.222.203.2', 1677542551, '__ci_last_regenerate|i:1677542551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d46cf3f426c4dbac616a2a225ea2a0c8a0a3ff6', '31.222.203.2', 1677542551, '__ci_last_regenerate|i:1677542551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1487771c5baed131c91071e5d96c932a856c3c6', '31.222.203.2', 1677544333, '__ci_last_regenerate|i:1677544333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b55ddbc367514f8eaeefdb932e5f466b9253e695', '31.222.203.2', 1677544333, '__ci_last_regenerate|i:1677544333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c6e054a17e8cb284d7c06fcb8d9d5fef395eef', '31.222.203.2', 1677544333, '__ci_last_regenerate|i:1677544333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7acf4250195bf1fbab027d90ab0ee009dd4f80b3', '31.222.203.2', 1677544333, '__ci_last_regenerate|i:1677544333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66b643765882147ad9ad1746c474729bd51ced72', '31.222.203.2', 1677544333, '__ci_last_regenerate|i:1677544333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79b0e14a05f56bf6525f1aeda304119e2a3f118', '31.222.203.2', 1677544333, '__ci_last_regenerate|i:1677544333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eebceda255e9ac3db74995a9dab162a6b9efc7d', '31.222.203.2', 1677546151, '__ci_last_regenerate|i:1677546151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a3b47b18a46298d32abed5d9282e75438b4ae5', '31.222.203.2', 1677546151, '__ci_last_regenerate|i:1677546151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b8d6a6e8ba94247dc41430eccfa524060a19ea4', '31.222.203.2', 1677546151, '__ci_last_regenerate|i:1677546151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5b1803bb884ff2c2b04aa92bcbf3600ff1478f5', '31.222.203.2', 1677546151, '__ci_last_regenerate|i:1677546151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a66436ac8df964cdae463c0f081f285bdac956', '31.222.203.2', 1677546151, '__ci_last_regenerate|i:1677546151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7ed07e498b9b2950862a0178a10278ae46b050', '31.222.203.2', 1677546151, '__ci_last_regenerate|i:1677546151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a04f641729c66c43a3c673dacffc0bdd0823e02', '205.210.31.5', 1677546461, '__ci_last_regenerate|i:1677546461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3bb2bd36f1763b652646d27d2af0079e4de911', '31.222.203.2', 1677547931, '__ci_last_regenerate|i:1677547931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82204bc2b88d562b26b5135490224ff30712e414', '31.222.203.2', 1677547931, '__ci_last_regenerate|i:1677547931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773b0a4b1cbdef2a2e80cd62a1c75b583ed21bf0', '31.222.203.2', 1677547931, '__ci_last_regenerate|i:1677547931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed03f320ed4a90ffa50d7368c08134f478e950d', '31.222.203.2', 1677547931, '__ci_last_regenerate|i:1677547931;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f31f929070641b670cb220afe673ca989f14e1d', '31.222.203.2', 1677547931, '__ci_last_regenerate|i:1677547931;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7715c729343575a095064b177e1d1f465dd52b03', '31.222.203.2', 1677547932, '__ci_last_regenerate|i:1677547932;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cda677d3bb0f3088d94505ca098db72167ec6f', '31.222.203.2', 1677549738, '__ci_last_regenerate|i:1677549738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde1cceaf75baae03fab55cc75f9fed7543dec96', '31.222.203.2', 1677549738, '__ci_last_regenerate|i:1677549738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7536a5a6c61cec218af9cabb5a8a364eba9f832e', '31.222.203.2', 1677549738, '__ci_last_regenerate|i:1677549738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88f892848e5dc7b69e58101fb1a14d49ad2fe2ef', '31.222.203.2', 1677549738, '__ci_last_regenerate|i:1677549738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39e88c2ba43a7b79ae973067d95047fe8c8ad1c8', '31.222.203.2', 1677549739, '__ci_last_regenerate|i:1677549739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb880f27cbeb185e6b392cd49faee5d3d1e9cbd', '31.222.203.2', 1677549739, '__ci_last_regenerate|i:1677549739;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de61faeb3dfe76631bf0bc99b52603ab696753b6', '31.222.203.2', 1677551536, '__ci_last_regenerate|i:1677551536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bdfa6fd120c8e8838d3765f7452a298333570f3', '31.222.203.2', 1677551536, '__ci_last_regenerate|i:1677551536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434484c5592cd82b41d339f7e94ca459f1f335c3', '31.222.203.2', 1677551536, '__ci_last_regenerate|i:1677551536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49d41086adb4c0a9685e9b9b33ca20681e530df', '31.222.203.2', 1677551536, '__ci_last_regenerate|i:1677551536;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f05b5e96dd27785817837c4581a1b6c105041983', '31.222.203.2', 1677551536, '__ci_last_regenerate|i:1677551536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e389ca0431b2a5382cf21610907d7a669ab98215', '31.222.203.2', 1677551536, '__ci_last_regenerate|i:1677551536;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037452cd3b580c7c23c3b648fd5d7d0e99a879f7', '31.222.203.2', 1677553343, '__ci_last_regenerate|i:1677553343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db082f682566bb3641c20aa1066bfb59f6286d7', '31.222.203.2', 1677553343, '__ci_last_regenerate|i:1677553343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92e327b3db18d417f9831b2d54961c3943c1896', '31.222.203.2', 1677553343, '__ci_last_regenerate|i:1677553343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ef7ec8177981df05fc973d2958b20a5ebff3a1a', '31.222.203.2', 1677553343, '__ci_last_regenerate|i:1677553343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca24266ebc14d9f23b4b191810492f80fee8e66f', '31.222.203.2', 1677553343, '__ci_last_regenerate|i:1677553343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e8aed3538d09e4adeaa79ee822299b201ba99b', '31.222.203.2', 1677553343, '__ci_last_regenerate|i:1677553343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64693fdf811d0ca0db6d5c40e2dbf20b70394312', '31.222.203.2', 1677555133, '__ci_last_regenerate|i:1677555133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bf8cc5a8d12b50a99777b7fc53544109285f93', '31.222.203.2', 1677555133, '__ci_last_regenerate|i:1677555133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff47a72ddd0a56c2aa68c0272efe00f4f3a78cb9', '31.222.203.2', 1677555133, '__ci_last_regenerate|i:1677555133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd0c8cf906b159ffac83c319d135440d40ebf92', '31.222.203.2', 1677555133, '__ci_last_regenerate|i:1677555133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4203e84bd993a1aa4e848f31d9822efbf76f768f', '31.222.203.2', 1677555133, '__ci_last_regenerate|i:1677555133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ad18cda79462c0f8f4b8292acff201452b67ddd', '31.222.203.2', 1677555133, '__ci_last_regenerate|i:1677555133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bef28a4cfb863274848eb9fd3f400dd135d30e', '31.222.203.2', 1677556943, '__ci_last_regenerate|i:1677556943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('059d4e32207db902b54e8113dfa0e65c835cf51a', '31.222.203.2', 1677556943, '__ci_last_regenerate|i:1677556943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470679c61a187380c34f7b0dd414b908427d4102', '31.222.203.2', 1677556943, '__ci_last_regenerate|i:1677556943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14efe6b2834d14f9b4edf5a7c76b46360c79c51f', '31.222.203.2', 1677556943, '__ci_last_regenerate|i:1677556943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bce7bd1eeb0388c99abcbb99d677175919ea845', '31.222.203.2', 1677556943, '__ci_last_regenerate|i:1677556943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee91c3ef7a8ea8fbcdafeebc79f76a9d7b2affb0', '31.222.203.2', 1677556943, '__ci_last_regenerate|i:1677556943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4a16f502786c7d941cb2142fdd3790f9ac55c7', '45.120.39.89', 1677562513, '__ci_last_regenerate|i:1677562513;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677558571;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5333ccafd58241bc0378169d4e0689d9d3211a49', '31.222.203.2', 1677558736, '__ci_last_regenerate|i:1677558736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b03a34237705ca0d5ad7a344c9df8339d4ab3e1', '31.222.203.2', 1677558736, '__ci_last_regenerate|i:1677558736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7488da268f15cbe9b69b4dbb62b2eedb79b1b38a', '31.222.203.2', 1677558736, '__ci_last_regenerate|i:1677558736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00b11c353ce26bb4fb0ea9e6321f13dacebe946', '31.222.203.2', 1677558736, '__ci_last_regenerate|i:1677558736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ad2614cfd7626e9c0d5a8f713932321708a62c', '31.222.203.2', 1677558736, '__ci_last_regenerate|i:1677558736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e39db19fefe29aac916cf56b261fa14adca2954', '31.222.203.2', 1677558736, '__ci_last_regenerate|i:1677558736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aff3b85efc94a0a8870f405504cdbf5f9c97f0b', '31.222.203.2', 1677560545, '__ci_last_regenerate|i:1677560545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce52ace959459e62970943bd9d4e2fabf318c7c', '31.222.203.2', 1677560546, '__ci_last_regenerate|i:1677560545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b31e7458a8f497bb72cdda9999542854f61b1a39', '31.222.203.2', 1677560546, '__ci_last_regenerate|i:1677560546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34b852e20808e261f4deb50f49df1fba35e8ad5', '31.222.203.2', 1677560546, '__ci_last_regenerate|i:1677560546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a28acd9fa0afd8aa87bd6a7c7a88161b55f414d', '31.222.203.2', 1677560546, '__ci_last_regenerate|i:1677560546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67fcb0e1fea3ab56b13a12828e873612891ed06', '31.222.203.2', 1677560546, '__ci_last_regenerate|i:1677560546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82502ffd482461c1633973642b42a3e4bec956f2', '31.222.203.2', 1677562333, '__ci_last_regenerate|i:1677562333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f6e9efb1de46792156db266159234070824b2b', '31.222.203.2', 1677562333, '__ci_last_regenerate|i:1677562333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3d75725d775c307a2f70e99c5cf5a6c75dbe48', '31.222.203.2', 1677562333, '__ci_last_regenerate|i:1677562333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37d11890ab775757bf3e7ce6f0a01a3379dda318', '31.222.203.2', 1677562333, '__ci_last_regenerate|i:1677562333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0d4ffbdb6d78b9ba6fb9b60107b5132b611735b', '31.222.203.2', 1677562333, '__ci_last_regenerate|i:1677562333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dee9a6d9a6feb57986a9e85238cf56acc925cd83', '31.222.203.2', 1677562333, '__ci_last_regenerate|i:1677562333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92bd954e08b82e722fa12e4a09079c906fc1c924', '45.120.39.89', 1677564333, '__ci_last_regenerate|i:1677564333;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677562861;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f68a52805e161c3d00681ed2bb878588ff53f35c', '31.222.203.2', 1677564141, '__ci_last_regenerate|i:1677564141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c96533c73f1aea56ba753caae310b45b8757b2', '31.222.203.2', 1677564141, '__ci_last_regenerate|i:1677564141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5cc579a22e4701b629bd3f0bfdfc34115c604e4', '31.222.203.2', 1677564141, '__ci_last_regenerate|i:1677564141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4083c67dd7c400073cefe2f6128e574cd6a9896', '31.222.203.2', 1677564141, '__ci_last_regenerate|i:1677564141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d137accb2c6c5ae55e51fb37394af9a082c37563', '31.222.203.2', 1677564141, '__ci_last_regenerate|i:1677564141;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76f447b1441166d2c2091866c01966c66551e874', '31.222.203.2', 1677564141, '__ci_last_regenerate|i:1677564141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5f8f8f71fa7a45d820f0bca93ccde81c70189b', '45.120.39.89', 1677564660, '__ci_last_regenerate|i:1677564660;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677564577;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2671d6c88a209c1725275c6a01465fb98cab4080', '45.120.39.89', 1677565527, '__ci_last_regenerate|i:1677565527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677564664;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83a27293041fd2c55fd5e8d15dc8332fe12b9567', '45.120.39.89', 1677567123, '__ci_last_regenerate|i:1677567119;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677567123;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18ea4734b44aaff99f5cbb7bc1c3fa2f30cfdd7d', '31.222.203.2', 1677565935, '__ci_last_regenerate|i:1677565935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ba387796ef15debe6e65867575f74ed0033cb51', '31.222.203.2', 1677565935, '__ci_last_regenerate|i:1677565935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfeb9f9371fb942a374f484ebc96637a24b54425', '31.222.203.2', 1677565935, '__ci_last_regenerate|i:1677565935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a99589cc1aa26deded3b1e56e08e61fe39ff7c03', '31.222.203.2', 1677565935, '__ci_last_regenerate|i:1677565935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ffaf10ba83e777c5db7ec621e81571938be3f02', '31.222.203.2', 1677565935, '__ci_last_regenerate|i:1677565935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1158363e0c17f73aed8a82e83bb3105dbbb77d7', '31.222.203.2', 1677565935, '__ci_last_regenerate|i:1677565935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebef0a46407b3f98e1fea9b4c3f143e3b86f9db5', '45.120.39.89', 1677568450, '__ci_last_regenerate|i:1677568450;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677567119;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78fdced40cd8128bd11d71489ec3730724d9cf1e', '31.222.203.2', 1677567744, '__ci_last_regenerate|i:1677567744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b30712b114bcbfeb977c9649d3ea88c6e26d25fc', '31.222.203.2', 1677567744, '__ci_last_regenerate|i:1677567744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa84ab425de8f69e832913544f6290d96230e2b', '31.222.203.2', 1677567744, '__ci_last_regenerate|i:1677567744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839a1e10388ff03b146d6ad612bc4adce17fb633', '31.222.203.2', 1677567744, '__ci_last_regenerate|i:1677567744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98cf576c652c4d1c8fd9e155d33eca0fe799ce7e', '31.222.203.2', 1677567744, '__ci_last_regenerate|i:1677567744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a60ac52f3488f344d542689adbd8fc33c142989', '31.222.203.2', 1677567744, '__ci_last_regenerate|i:1677567744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5221c05badb88710ad92738893db33c53aeadce', '45.120.39.89', 1677576871, '__ci_last_regenerate|i:1677576871;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677573007;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('341f74114ee73d4cdfc502152cd4a96bb4adfd3d', '31.222.203.2', 1677569535, '__ci_last_regenerate|i:1677569535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50cc1007bc15d6a957ba5d15c87d648187272319', '31.222.203.2', 1677569535, '__ci_last_regenerate|i:1677569535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf56fe3e98b9e550b5b3551b210cbbef8de85f91', '31.222.203.2', 1677569535, '__ci_last_regenerate|i:1677569535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7651294cdebf9f3c7afc3417e4713e7c3a61474', '31.222.203.2', 1677569535, '__ci_last_regenerate|i:1677569535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55aa44a033afeccb58fd865d04b92ab7e61eac3', '31.222.203.2', 1677569535, '__ci_last_regenerate|i:1677569535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f621c75e28382df1551afce11918edc55577a4e0', '31.222.203.2', 1677569535, '__ci_last_regenerate|i:1677569535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d732d1666cf453601fbd9b695ab5ef1ca2550182', '31.222.203.2', 1677571343, '__ci_last_regenerate|i:1677571343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a267d3cb97471ba4670950f77f03c2d810ee54ab', '31.222.203.2', 1677571343, '__ci_last_regenerate|i:1677571343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a29701190f90b24abddc44393e53aa681bd5611', '31.222.203.2', 1677571343, '__ci_last_regenerate|i:1677571343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d59f99e7aa4ccd7b32693a7e402a2d0eef9393a', '31.222.203.2', 1677571343, '__ci_last_regenerate|i:1677571343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90d626cfd1774012d346450366b052fa99ebc05', '31.222.203.2', 1677571343, '__ci_last_regenerate|i:1677571343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c781aa53529b59619a1628f05d6d04d0e2109de8', '31.222.203.2', 1677571343, '__ci_last_regenerate|i:1677571343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07503aa98035061884abe1ec03257921629ada18', '31.222.203.2', 1677573140, '__ci_last_regenerate|i:1677573140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403dac6b8ce70b5c9017ff7076d2f1a3cbc02df8', '31.222.203.2', 1677573140, '__ci_last_regenerate|i:1677573140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4769ec6b890ea59cac4fb75512a7c8b1948896d6', '31.222.203.2', 1677573140, '__ci_last_regenerate|i:1677573140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c61b6aac4c1b249b0b0ed6ecacfff011681c00', '31.222.203.2', 1677573140, '__ci_last_regenerate|i:1677573140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32acc3e77e8a3e8a236e936934c5a653a9d82129', '31.222.203.2', 1677573140, '__ci_last_regenerate|i:1677573140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3d586456a7027a9e210f93e60bb1c862178e01', '31.222.203.2', 1677573140, '__ci_last_regenerate|i:1677573140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a04a2a0ddb9e963e8b72171412afefb811b873', '31.222.203.2', 1677574943, '__ci_last_regenerate|i:1677574943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d79687280643ed5455565e8b1110341535214ed', '31.222.203.2', 1677574943, '__ci_last_regenerate|i:1677574943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e453e2db9b955950980e2614f36e3dde34500e0e', '31.222.203.2', 1677574943, '__ci_last_regenerate|i:1677574943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45a9a5d130d83cef3de1c5e644206d5c495c2b84', '31.222.203.2', 1677574943, '__ci_last_regenerate|i:1677574943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc14501a7c74f7ccd58315c188913999432c45c', '31.222.203.2', 1677574943, '__ci_last_regenerate|i:1677574943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d17f2669c5de8c531feb4efd8e19ecfd68ba585', '31.222.203.2', 1677574943, '__ci_last_regenerate|i:1677574943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d57ddad0ecb7f8f973d5c03949b87b56df94bc2', '31.222.203.2', 1677576738, '__ci_last_regenerate|i:1677576738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c23d4a526effdaa266c74fdc3c8e5334286383cd', '31.222.203.2', 1677576738, '__ci_last_regenerate|i:1677576738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789ad4ad2458fdbbacd56a753a007dc08903947e', '31.222.203.2', 1677576738, '__ci_last_regenerate|i:1677576738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('664c884bb75a62af31d37f8a13b9b3124c864b7b', '31.222.203.2', 1677576738, '__ci_last_regenerate|i:1677576738;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96b28a7919c216cba41e91d4f824f51ffb08c7be', '31.222.203.2', 1677576738, '__ci_last_regenerate|i:1677576738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ef2b656890b0b148081ef34497ce04343af76c', '31.222.203.2', 1677576738, '__ci_last_regenerate|i:1677576738;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e1907dae1a35824a95fdecfc60393a689aab172', '45.120.39.89', 1677580080, '__ci_last_regenerate|i:1677580080;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677580065;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f17c3621cdfe1e45397b5b9caccaa69fb3a8ea', '31.222.203.2', 1677578537, '__ci_last_regenerate|i:1677578537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100a6846198377b17709040aac58587266792b24', '31.222.203.2', 1677578537, '__ci_last_regenerate|i:1677578537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c49a4126f1605ac7169d31a9590224d72026ee53', '31.222.203.2', 1677578537, '__ci_last_regenerate|i:1677578537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6f381f0cce3651426bab2fa3c06d2f588af5f5', '31.222.203.2', 1677578537, '__ci_last_regenerate|i:1677578537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006e8d565130ef1e2f049bc4b8594a25c15099ce', '31.222.203.2', 1677578537, '__ci_last_regenerate|i:1677578537;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b804eb14662015e678d369e164f8262b4b9f8cf', '31.222.203.2', 1677578537, '__ci_last_regenerate|i:1677578537;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8850ab0a97d8f4f0690cd5867bec690d6932ae3', '45.120.39.89', 1677582578, '__ci_last_regenerate|i:1677582578;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677580081;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('374fd83fe3458f96cefa76284a785e7c48d21bff', '31.222.203.2', 1677580333, '__ci_last_regenerate|i:1677580333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e3f0f5c3b0e405832a26a43c7b0b874c4ee5373', '31.222.203.2', 1677580333, '__ci_last_regenerate|i:1677580333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41f3610b949071d316bb66dc5b776ff984a85c7e', '31.222.203.2', 1677580333, '__ci_last_regenerate|i:1677580333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61336f31b4b2c2a987c4bf97c61d28ac926b900', '31.222.203.2', 1677580333, '__ci_last_regenerate|i:1677580333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a36b751fe80c9987b6731e4824504c04e976f93', '31.222.203.2', 1677580333, '__ci_last_regenerate|i:1677580333;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2542b180ba63dfc2a31e93311ffc79eb0e1b41fc', '31.222.203.2', 1677580333, '__ci_last_regenerate|i:1677580333;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eac7d62c02c6b53780fb5de4124af0a99defd90', '31.222.203.2', 1677582143, '__ci_last_regenerate|i:1677582143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f81304ad9fd4a405434288de763a05f9859bcc6', '31.222.203.2', 1677582143, '__ci_last_regenerate|i:1677582143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d6c4b27439d093abce8ba405c23c41c62abb15', '31.222.203.2', 1677582143, '__ci_last_regenerate|i:1677582143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274cbf0fe9b13a585866b1930f27ff01d5b4d887', '31.222.203.2', 1677582143, '__ci_last_regenerate|i:1677582143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c141e7567ec16dfa06d5b48cf749623d15fd533', '31.222.203.2', 1677582143, '__ci_last_regenerate|i:1677582143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8f53cdbbcd60b0a3c72da249cf7eb34d292e9f', '31.222.203.2', 1677582143, '__ci_last_regenerate|i:1677582143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab7d6aaa636f9cb492cf141860f57de701411cf2', '45.120.39.89', 1677584283, '__ci_last_regenerate|i:1677584283;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677582741;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebef308b2f88a6ed16e655c25c483c31cacd4a4', '198.235.24.18', 1677583103, '__ci_last_regenerate|i:1677583103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79dd4f16e77cce65e5b0cce750065f21f3a72085', '31.222.203.2', 1677583934, '__ci_last_regenerate|i:1677583934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0237473d1ccb1d9d0944944326eacc89ff478b', '31.222.203.2', 1677583934, '__ci_last_regenerate|i:1677583934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('154ff4cb6e41530dfe4ae4bc817c9983df64bd84', '31.222.203.2', 1677583934, '__ci_last_regenerate|i:1677583934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6d9b752b84193a50de58a0db9f36a7c9f20daa', '31.222.203.2', 1677583934, '__ci_last_regenerate|i:1677583934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47d1d00420f39e9d1b223a1df6af131c1f1df3f', '31.222.203.2', 1677583934, '__ci_last_regenerate|i:1677583934;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507e36d24145d7635264f34f7c739ab253778f03', '31.222.203.2', 1677583934, '__ci_last_regenerate|i:1677583934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bf52328c8c9f06f3c7b80bf9cea447b159e238c', '45.120.39.89', 1677587809, '__ci_last_regenerate|i:1677587809;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677584283;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55eb0954d523fc6e679bf89c439291c5c17aa2b', '116.204.230.27', 1677586010, '__ci_last_regenerate|i:1677586010;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677499549\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01c0453456c599296660e64de61baa5fbb8e317c', '31.222.203.2', 1677585743, '__ci_last_regenerate|i:1677585743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bed007a6b0bea466ccc1287a41174cc3dd55906', '31.222.203.2', 1677585743, '__ci_last_regenerate|i:1677585743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee9510de875b8e16b286f3c5a1980efc43a1e5e', '31.222.203.2', 1677585743, '__ci_last_regenerate|i:1677585743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e609e547e86e89cb0c81b01ba65e1d734fa3f4', '31.222.203.2', 1677585743, '__ci_last_regenerate|i:1677585743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d3f23393699987d67e9fe81b3a75183d5e4f841', '31.222.203.2', 1677585743, '__ci_last_regenerate|i:1677585743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9490d0eefc2a54bd9b5330bdd8cf27f357e7a7cd', '31.222.203.2', 1677585743, '__ci_last_regenerate|i:1677585743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6e63a6928abc6073cd4e074796e0c3b13b41a9', '116.204.230.30', 1677585969, '__ci_last_regenerate|i:1677585857;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1677429997\";last_ip|s:14:\"116.204.230.30\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ebfa3ff21fa1d7b821474ef64f555467e9ff11', '116.204.230.27', 1677586027, '__ci_last_regenerate|i:1677586010;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677499549\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21efeb4c7a6ea80ca82001e8166ab08545931f54', '31.222.203.2', 1677587535, '__ci_last_regenerate|i:1677587535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7db1d8a8b3088201c831dbf98c247e9adbaaca4', '31.222.203.2', 1677587535, '__ci_last_regenerate|i:1677587535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f8865b0e9b01574a994767f5b279dd550f949d', '31.222.203.2', 1677587535, '__ci_last_regenerate|i:1677587535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f541794d3571474a43af5e64623aa9081e4b69dc', '31.222.203.2', 1677587535, '__ci_last_regenerate|i:1677587535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eca03011a857825af9bf1f063a56988cbf1b3c0', '31.222.203.2', 1677587535, '__ci_last_regenerate|i:1677587535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78592be025947cb760cb42a20daaf0a4bda9a9b', '31.222.203.2', 1677587535, '__ci_last_regenerate|i:1677587535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daebcbf3405db48a28e34babbcc19932e8122fb5', '37.111.218.30', 1677588194, '__ci_last_regenerate|i:1677588194;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677588077;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab65100e0d47a3d84efa6885ac4c418df909eaa', '37.111.218.30', 1677591856, '__ci_last_regenerate|i:1677591856;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677591853;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5440fca5909028653251024de55ab16038fdee5', '31.222.203.2', 1677589343, '__ci_last_regenerate|i:1677589343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebacab0839f0c61cd5181eedc6a3762bb961004f', '31.222.203.2', 1677589343, '__ci_last_regenerate|i:1677589343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8a16a6617b2c8833546ae7d5d73be274ce5ab0', '31.222.203.2', 1677589343, '__ci_last_regenerate|i:1677589343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbd31c766cbc81564c6107e0b12faa0f122f7a5b', '31.222.203.2', 1677589343, '__ci_last_regenerate|i:1677589343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3d150c601f8ad0192557812d27df015153b38c', '31.222.203.2', 1677589343, '__ci_last_regenerate|i:1677589343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('affb10eada205edc7a452371078d49d269e280d4', '31.222.203.2', 1677589343, '__ci_last_regenerate|i:1677589343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66bc72b9187d330321494eb77606bc3532f8a427', '31.222.203.2', 1677591135, '__ci_last_regenerate|i:1677591135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93fdff73e7e3269445c95b3e56e370addc816f3d', '31.222.203.2', 1677591135, '__ci_last_regenerate|i:1677591135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3722ce056ea35f4f44ed098f50081d4a4cb08ece', '31.222.203.2', 1677591135, '__ci_last_regenerate|i:1677591135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f02ed81aac45689846273f6c75cdf37f30b94b3', '31.222.203.2', 1677591135, '__ci_last_regenerate|i:1677591135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d72098ef696ac79bef88cce3aed07436931255', '31.222.203.2', 1677591135, '__ci_last_regenerate|i:1677591135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df60217719867a7701291ed9cb1fc463130d464', '31.222.203.2', 1677591135, '__ci_last_regenerate|i:1677591135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c850e9b03ae6dd640846e592dc775ea8f0d0577a', '37.111.218.30', 1677593409, '__ci_last_regenerate|i:1677593409;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677591872;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9458261a76862964a1b67988fe14a273cd2f2ee', '31.222.203.2', 1677592944, '__ci_last_regenerate|i:1677592944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af8cd3b478520227e10ea53a0d882f77091bfc6', '31.222.203.2', 1677592944, '__ci_last_regenerate|i:1677592944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff4c380c2146225fb09c58d0d4fd20130fe3ee55', '31.222.203.2', 1677592944, '__ci_last_regenerate|i:1677592944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3849419a9659e955d4411a0d6c0e6130ede13e25', '31.222.203.2', 1677592944, '__ci_last_regenerate|i:1677592944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1feeb91df31a421716c162901b600704d7e279d', '31.222.203.2', 1677592944, '__ci_last_regenerate|i:1677592944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('426c6aabf62e64b8a5b6c0c15f8f9233b4bc77a9', '31.222.203.2', 1677592944, '__ci_last_regenerate|i:1677592944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05d1480398577be475ab2741a02975646e20245', '37.111.218.30', 1677594278, '__ci_last_regenerate|i:1677594278;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677593474;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8c9c82fd1b741e1939a832651fd1e88a555e84', '37.111.218.30', 1677596947, '__ci_last_regenerate|i:1677596947;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677594508;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9a68fe49fe6f46326218334ed942d4d2618919', '31.222.203.2', 1677594732, '__ci_last_regenerate|i:1677594732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2167614704baadcea3306efdcf88c1bd8463584', '31.222.203.2', 1677594732, '__ci_last_regenerate|i:1677594732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b1ff9f40879e39709bd0ce50cbf808c7e499ca', '31.222.203.2', 1677594732, '__ci_last_regenerate|i:1677594732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84aaf71284728f6c6c78e45acd356415614ba956', '31.222.203.2', 1677594732, '__ci_last_regenerate|i:1677594732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8443931fe136a5f6731801a4d5a51193eefaa8', '31.222.203.2', 1677594732, '__ci_last_regenerate|i:1677594732;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d166d8650d368be6fc005cf27c1cc0db1eb56542', '31.222.203.2', 1677594732, '__ci_last_regenerate|i:1677594732;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f551803815aeecb00f9dba399d00cbd63acdb3', '31.222.203.2', 1677596544, '__ci_last_regenerate|i:1677596544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e62285dc549ae699f082b731c180d2d49472b066', '31.222.203.2', 1677596544, '__ci_last_regenerate|i:1677596544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14d083a558ce3814d725bdf25569c8526f8126c', '31.222.203.2', 1677596544, '__ci_last_regenerate|i:1677596544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a44f560f5822dbb2fbdd23a8c375ae534aa6663', '31.222.203.2', 1677596544, '__ci_last_regenerate|i:1677596544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f8fea3869eb789acb4a5f7e2008dd69c311796', '31.222.203.2', 1677596544, '__ci_last_regenerate|i:1677596544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4d6966d0fbe414cdac5c1cf5f13860ba901182', '31.222.203.2', 1677596544, '__ci_last_regenerate|i:1677596544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bcaa0e106aad8619af55b093362afd8729fcb9', '37.111.218.30', 1677597470, '__ci_last_regenerate|i:1677597470;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677597462;register_id|s:3:\"355\";cash_in_hand|s:9:\"3980.0000\";register_open_time|s:19:\"2023-02-27 20:54:49\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9ace09d116527b53b677ddf21dcbe63298a346', '37.111.218.30', 1677597491, '__ci_last_regenerate|i:1677597470;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677487205\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677597491;register_id|s:3:\"356\";cash_in_hand|s:9:\"5730.0000\";register_open_time|s:19:\"2023-02-28 21:18:07\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9a53efec9f02290b02169be5a4d02edf1538fc8', '31.222.203.2', 1677598341, '__ci_last_regenerate|i:1677598341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e9380acfe48b66307143158d86809935b9546e', '31.222.203.2', 1677598341, '__ci_last_regenerate|i:1677598341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebf09efee208d82ca581a73025a2b7afcbbb6864', '31.222.203.2', 1677598341, '__ci_last_regenerate|i:1677598341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a849ea13de525a995815e59b8e81147af5147c2a', '31.222.203.2', 1677598341, '__ci_last_regenerate|i:1677598341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa70ade34369acd8c0fa779574f969b64f10b4eb', '31.222.203.2', 1677598341, '__ci_last_regenerate|i:1677598341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07735f282e37f4f1282df7b217070792b5548058', '31.222.203.2', 1677598341, '__ci_last_regenerate|i:1677598341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19ddfa6b219064f8407740134dd9c82267f69a32', '31.222.203.2', 1677600144, '__ci_last_regenerate|i:1677600144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3475623a0bea5561ac661022ae13effb348fd183', '31.222.203.2', 1677600144, '__ci_last_regenerate|i:1677600144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478bd5453aa3867706d6b4015d471c83ac344f0a', '31.222.203.2', 1677600144, '__ci_last_regenerate|i:1677600144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac078914d46a8126992b0c7d3135b10817fa2c7', '31.222.203.2', 1677600144, '__ci_last_regenerate|i:1677600144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ad7dafa94fbe72f0ce9783787ca483b1755384', '31.222.203.2', 1677600144, '__ci_last_regenerate|i:1677600144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('151a839398ebf9bb1fb97b894d3f80d902232307', '31.222.203.2', 1677600144, '__ci_last_regenerate|i:1677600144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c70f947804298478e86c208226d9bee8b365552', '31.222.203.2', 1677601933, '__ci_last_regenerate|i:1677601933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f9b4754d6267e1855fe778e355518b742f0dbd', '31.222.203.2', 1677601933, '__ci_last_regenerate|i:1677601933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef368e4980b85a3a62d5dded4e9632583ae82b2', '31.222.203.2', 1677601933, '__ci_last_regenerate|i:1677601933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66373e6d21b5a41734fe9f49495c086d3a21534d', '31.222.203.2', 1677601933, '__ci_last_regenerate|i:1677601933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc3705545092d37a9d57a46b572286f5c1b894c', '31.222.203.2', 1677601933, '__ci_last_regenerate|i:1677601933;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b908161090eb508cfc09c28d31b330a463937947', '31.222.203.2', 1677601933, '__ci_last_regenerate|i:1677601933;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146a12487a473281521684fcefe07b662b580d29', '31.222.203.2', 1677603746, '__ci_last_regenerate|i:1677603746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68de802a62067e79d54cafa15fe26cd9cf2a8fb1', '31.222.203.2', 1677603746, '__ci_last_regenerate|i:1677603746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2483467990b0658927b3c1cc79a372f2a307d4', '31.222.203.2', 1677603746, '__ci_last_regenerate|i:1677603746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71268ba0d9f4eafe47978dc338e77ccef321cdc0', '31.222.203.2', 1677603746, '__ci_last_regenerate|i:1677603746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c63e5583f434be4ca362abcd221457dcde1d4d', '31.222.203.2', 1677603746, '__ci_last_regenerate|i:1677603746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5389e679a17462f5ebabe2760741c861d3c2bf36', '31.222.203.2', 1677603746, '__ci_last_regenerate|i:1677603746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ccff9675c7732af77d9f5dea511efb196452b1', '31.222.203.2', 1677605534, '__ci_last_regenerate|i:1677605534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87a6639576bdbd0a0ed20f725668ff4c8bf6f453', '31.222.203.2', 1677605535, '__ci_last_regenerate|i:1677605535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fabd8c25e7a4b838322a4bb14f0daf9ee1b61790', '31.222.203.2', 1677605535, '__ci_last_regenerate|i:1677605535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b87702eac5b1ef1d9ed5efdc82ffce8ddf8b8399', '31.222.203.2', 1677605535, '__ci_last_regenerate|i:1677605535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e5bd0cab1f6775088cdd96341d156ef82a28b5', '31.222.203.2', 1677605535, '__ci_last_regenerate|i:1677605535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa6413c04310a6e444e380680bda3191925d7ca', '31.222.203.2', 1677605535, '__ci_last_regenerate|i:1677605535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c8541e339e29b4a3b93296a8f544f6b044f7b1', '31.222.203.2', 1677607348, '__ci_last_regenerate|i:1677607348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92afa13a9878bb9785c82d8e6390e15809fc1d7f', '31.222.203.2', 1677607348, '__ci_last_regenerate|i:1677607348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72e6cc5ada4e270132ab7f06a349c71d6cb61f77', '31.222.203.2', 1677607348, '__ci_last_regenerate|i:1677607348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2e6d395741d65d9633c4ff04cc83109b5bcd0eb', '31.222.203.2', 1677607348, '__ci_last_regenerate|i:1677607348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa9aa63a05ee09209961eb11f93be1a16d8a4377', '31.222.203.2', 1677607348, '__ci_last_regenerate|i:1677607348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b6914fc44a3aa57f6f7cb4c7eaf6d376e36b96', '31.222.203.2', 1677607348, '__ci_last_regenerate|i:1677607348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f6cb17c6139071dfdffe35933339b8ac66d4514', '31.222.203.2', 1677609143, '__ci_last_regenerate|i:1677609143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d9a84058b48da81078d14c1869735dd988ad38c', '31.222.203.2', 1677609143, '__ci_last_regenerate|i:1677609143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba02522aea8d0a10fd6f6295cb056f941a20f841', '31.222.203.2', 1677609143, '__ci_last_regenerate|i:1677609143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89197c447f5100d9b5b1de56d973fdd747d0f2d0', '31.222.203.2', 1677609143, '__ci_last_regenerate|i:1677609143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d338288c36d24141250a7ab8e29a95bcaaa7a4c', '31.222.203.2', 1677609143, '__ci_last_regenerate|i:1677609143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1979817a6e726a6f58c1c74f8435e183b1468a78', '31.222.203.2', 1677609143, '__ci_last_regenerate|i:1677609143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57b38094d32062ca703b151857da1ca634455bf5', '31.222.203.2', 1677610943, '__ci_last_regenerate|i:1677610943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218c4b04e51caf5ebff764a960db65d425384f9f', '31.222.203.2', 1677610943, '__ci_last_regenerate|i:1677610943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9368e26519eb6ce0332f5c35d8f4c252e45a1c87', '31.222.203.2', 1677610943, '__ci_last_regenerate|i:1677610943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('108273d06f973a2fe1572072bd6671fc78c60f47', '31.222.203.2', 1677610943, '__ci_last_regenerate|i:1677610943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0b4c504c70903fb2ad2eba3abb1b0b17092405', '31.222.203.2', 1677610943, '__ci_last_regenerate|i:1677610943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa31c0a8ffafb60f7866ffe78a8325d936048fe', '31.222.203.2', 1677610943, '__ci_last_regenerate|i:1677610943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0113a3c959809b8fab5c366ded3c55a73159216', '162.142.125.213', 1677611011, '__ci_last_regenerate|i:1677611011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0356d1eede4c5f988280714f972b27b665b732', '162.142.125.213', 1677611011, '__ci_last_regenerate|i:1677611011;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5659d63f0622deb2e083e9d5d040f204e25c7cc', '162.142.125.213', 1677611011, '__ci_last_regenerate|i:1677611011;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e5da8fb8a7c973b95a33958622005f5e1b45f26', '31.222.203.2', 1677612742, '__ci_last_regenerate|i:1677612742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df882d8cbe47fa8b4af71cb063e3d007b9a9514c', '31.222.203.2', 1677612742, '__ci_last_regenerate|i:1677612742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668a22cd7d6fdee698bd44c0d15bb98df2f2e25e', '31.222.203.2', 1677612742, '__ci_last_regenerate|i:1677612742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d4584f9a933bbac4bbb8da85705f0ad00ce3988', '31.222.203.2', 1677612742, '__ci_last_regenerate|i:1677612742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a798fb54ff265c23a9496ddb7cea332389bae7', '31.222.203.2', 1677612742, '__ci_last_regenerate|i:1677612742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b16c1e558aa0f41836047cc570d6f6ed990c41d', '31.222.203.2', 1677612742, '__ci_last_regenerate|i:1677612742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06df5f5797d69c4a10967161fd7d483d0afc257c', '31.222.203.2', 1677614540, '__ci_last_regenerate|i:1677614540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163e4a0fb59bfd78bf1f1c433f740dc0f637f43b', '31.222.203.2', 1677614540, '__ci_last_regenerate|i:1677614540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faebe03a1e8f7254f8c30517c4b592494ec807f5', '31.222.203.2', 1677614540, '__ci_last_regenerate|i:1677614540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b03798266e0254c8731bebc55713eb81971f9c', '31.222.203.2', 1677614540, '__ci_last_regenerate|i:1677614540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942809c18d2c72117e0b3a12ee2dbf6a85aa6440', '31.222.203.2', 1677614540, '__ci_last_regenerate|i:1677614540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a14db43b95f4713e2db001f9ca86fa5ac603c4bb', '31.222.203.2', 1677614540, '__ci_last_regenerate|i:1677614540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55d0ad3aa3751d5d93da8c0e3c31e54e99befd63', '31.222.203.2', 1677616341, '__ci_last_regenerate|i:1677616341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7180118e764c06f29e366443cb7b65dfc63b940f', '31.222.203.2', 1677616341, '__ci_last_regenerate|i:1677616341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24252516ae94734f582d3f3de3c166560221c18e', '31.222.203.2', 1677616342, '__ci_last_regenerate|i:1677616341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac03c54d1970fc64a442bc512b2777b8145188da', '31.222.203.2', 1677616342, '__ci_last_regenerate|i:1677616342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbb528509102c4922a810e91ec760509bc8ab39', '31.222.203.2', 1677616342, '__ci_last_regenerate|i:1677616342;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cadcdfae1ea0f93050e45f70c231644ea3a24d5', '31.222.203.2', 1677616342, '__ci_last_regenerate|i:1677616342;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56370b20a5f48949ff52628c189a4cbf7a437c05', '162.142.125.213', 1677616465, '__ci_last_regenerate|i:1677616465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc9b5cb1a7efb965ae102d0275157bad2544a98', '162.142.125.213', 1677616465, '__ci_last_regenerate|i:1677616465;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27f88c7c5dc6d66e16cb9d0a408e57610ed2589', '162.142.125.213', 1677616465, '__ci_last_regenerate|i:1677616465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2e7aae2b8fc3659c0abb3824550ebb1275ae9cd', '31.222.203.2', 1677618142, '__ci_last_regenerate|i:1677618142;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c908cd800daed5670ce919f1cb4a7459510292', '31.222.203.2', 1677618143, '__ci_last_regenerate|i:1677618143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beb0548f5c44136cbf08a33195342c763a6056be', '31.222.203.2', 1677618143, '__ci_last_regenerate|i:1677618143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41857ac411fe08280b7c997d60085f32edcccbc7', '31.222.203.2', 1677618143, '__ci_last_regenerate|i:1677618143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e863e13731c887d1aec25ec217e8dd14b4b427d6', '31.222.203.2', 1677618143, '__ci_last_regenerate|i:1677618143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34d459c5b7640ee8a7927cb053ede695a18fbc2', '31.222.203.2', 1677618143, '__ci_last_regenerate|i:1677618143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7db3bc2e5eeb3c78b672ef7fbba3b0ea648155e', '31.222.203.2', 1677619935, '__ci_last_regenerate|i:1677619935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81273a37dd6980aaa731d124780a54394588b86', '31.222.203.2', 1677619935, '__ci_last_regenerate|i:1677619935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94423720d1f448cd6fa4a5ed43f9a113c681288e', '31.222.203.2', 1677619935, '__ci_last_regenerate|i:1677619935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b86e9a7b44bbba2a91a885a63c5b3166281b7b1', '31.222.203.2', 1677619935, '__ci_last_regenerate|i:1677619935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55582f3af7e46bbbb26b725628fe79f76b7fa298', '31.222.203.2', 1677619935, '__ci_last_regenerate|i:1677619935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4741891bdac9db10c1cf8efa93b9a7cf03ca0e5e', '31.222.203.2', 1677619935, '__ci_last_regenerate|i:1677619935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0054519bb7b37caa860cb3ae31e9672e2b1d51f', '198.235.24.148', 1677620264, '__ci_last_regenerate|i:1677620264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db912e1c78ec9de801335e7f09a7e36fa2e51ec4', '52.48.6.20', 1677620527, '__ci_last_regenerate|i:1677620527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd09cf39b8005222cb52f1ddc59c8cf499a3412', '31.222.203.2', 1677621740, '__ci_last_regenerate|i:1677621740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5b99694a4d1b57c333b9a24bec7dd5071985bec', '31.222.203.2', 1677621740, '__ci_last_regenerate|i:1677621740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f5ba79fe6df928637166e187ff128212856d64', '31.222.203.2', 1677621740, '__ci_last_regenerate|i:1677621740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b17fbbc86620e6138bbee479b1ae2dfe372498f', '31.222.203.2', 1677621740, '__ci_last_regenerate|i:1677621740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149b3ca9e74a1ad5b68f78eddc086f2d64834a4d', '31.222.203.2', 1677621740, '__ci_last_regenerate|i:1677621740;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad9400c4fdcfbef8c920e2cbf0f7fef7c8ba531', '31.222.203.2', 1677621740, '__ci_last_regenerate|i:1677621740;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('213e53091526b8f0bda0fc79af6ffaa6102ae585', '31.222.203.2', 1677623544, '__ci_last_regenerate|i:1677623544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6b1f5a33d620a066355bf420a8ccaae09b0b039', '31.222.203.2', 1677623544, '__ci_last_regenerate|i:1677623544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d4976aa3e9ed21051234f251d4612e192fe7822', '31.222.203.2', 1677623544, '__ci_last_regenerate|i:1677623544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('553ab73bb847d25fc729e1cfdabd8dd3b72b6338', '31.222.203.2', 1677623544, '__ci_last_regenerate|i:1677623544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63d5a02cefdc8892e5bf3440b7ddabc51f5f40aa', '31.222.203.2', 1677623544, '__ci_last_regenerate|i:1677623544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7630cbcb3a0a21a8812114237b3c3d3ed6e077a7', '31.222.203.2', 1677623544, '__ci_last_regenerate|i:1677623544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('838f53cef017a4b9e4ae388771242757f2e5ef57', '87.236.176.157', 1677624587, '__ci_last_regenerate|i:1677624587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('575726c53d7ea912fade73a770c56ad2751b3a27', '87.236.176.157', 1677624587, '__ci_last_regenerate|i:1677624587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eea425544648908e5bf4c54c55cb4ce5b436125', '31.222.203.2', 1677625345, '__ci_last_regenerate|i:1677625345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f59138068ac04d4fa0df675ce4c78e71b2c3d6e', '31.222.203.2', 1677625345, '__ci_last_regenerate|i:1677625345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1118d0535f8db74bf73937bd8998c12e3c3cd488', '31.222.203.2', 1677625345, '__ci_last_regenerate|i:1677625345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ca6d7d589a866d1079864c8d194cfee281fd94', '31.222.203.2', 1677625345, '__ci_last_regenerate|i:1677625345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad909a9d39cc72f7821ae884abae0456666f224e', '31.222.203.2', 1677625345, '__ci_last_regenerate|i:1677625345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1bc91a2f423585c24ba55b97573857f8ec403b1', '31.222.203.2', 1677625345, '__ci_last_regenerate|i:1677625345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17c599e0b14bcb7ea244fb266f9d67f3a159b463', '31.222.203.2', 1677627147, '__ci_last_regenerate|i:1677627147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9ec2bff1d21a9a2eb934c5d1f41f28e61e82d1e', '31.222.203.2', 1677627147, '__ci_last_regenerate|i:1677627147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('645c327d8d2b7bbc6e52120f82c8c76173d94f76', '31.222.203.2', 1677627147, '__ci_last_regenerate|i:1677627147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a3af06b74e68516de3be1f9e1601c92016525da', '31.222.203.2', 1677627147, '__ci_last_regenerate|i:1677627147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2bcd87b7655aadad7608c9445d21c73d33befc', '31.222.203.2', 1677627147, '__ci_last_regenerate|i:1677627147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31decef2deac4a996207643f7e94b71a75636baa', '31.222.203.2', 1677627147, '__ci_last_regenerate|i:1677627147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cf1c41da329928a611c5d3ce20e0c4faa13f467', '31.222.203.2', 1677628942, '__ci_last_regenerate|i:1677628942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a62def5e790d36de81340aaf1f9025076faf332f', '31.222.203.2', 1677628942, '__ci_last_regenerate|i:1677628942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0f54de2f404e7a5000648bd8948a414c50ec55', '31.222.203.2', 1677628942, '__ci_last_regenerate|i:1677628942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21cb98baa8b1bd4282920560c51b5c740cb7b92b', '31.222.203.2', 1677628942, '__ci_last_regenerate|i:1677628942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82d54107a1db48c2fbb6b415283f691cfa9cc920', '31.222.203.2', 1677628942, '__ci_last_regenerate|i:1677628942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d43b60540becdd633a75c1aab7280b62b586a3a', '31.222.203.2', 1677628942, '__ci_last_regenerate|i:1677628942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff1dde24563927371724f06f7bea3544b5de7fb', '31.222.203.2', 1677630734, '__ci_last_regenerate|i:1677630734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423512eaa25da94acb6b7bb82c7010f0612ce306', '31.222.203.2', 1677630734, '__ci_last_regenerate|i:1677630734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7b1977ff7ffec802756b605796686e677036e21', '31.222.203.2', 1677630734, '__ci_last_regenerate|i:1677630734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2697dfd1e6f3dba9ba6055bd315e3f6562b076ff', '31.222.203.2', 1677630734, '__ci_last_regenerate|i:1677630734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ecdd0b92774b684bf83d8f5b881b475986650c', '31.222.203.2', 1677630734, '__ci_last_regenerate|i:1677630734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbeb714b69b02e4e4302aed05b130eae8869e23a', '31.222.203.2', 1677630734, '__ci_last_regenerate|i:1677630734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7543779242fba95509211da21af7c31f751c6a61', '31.222.203.2', 1677632546, '__ci_last_regenerate|i:1677632546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('099ea5f8cc745cb411855e6d6091caf2e0932640', '31.222.203.2', 1677632546, '__ci_last_regenerate|i:1677632546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63e24e047c52056ea339409dc206f37ed5a79b68', '31.222.203.2', 1677632546, '__ci_last_regenerate|i:1677632546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9a7e9e8113b54a44cecf1610d404b7e79971c7c', '31.222.203.2', 1677632546, '__ci_last_regenerate|i:1677632546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07d1272c91083a6b88fb71f3b8d1d6f9c9cd9001', '31.222.203.2', 1677632546, '__ci_last_regenerate|i:1677632546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('634ad93339167bdc1c0e36fc0afe77c18974514b', '31.222.203.2', 1677632546, '__ci_last_regenerate|i:1677632546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310ca1fd031141b88c98b474e145b9cfb99b4d63', '31.222.203.2', 1677634331, '__ci_last_regenerate|i:1677634331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04070144ee3442ac7a355042ab1c45a6bf99c90', '31.222.203.2', 1677634331, '__ci_last_regenerate|i:1677634331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f87c76284bce07b4ab1f2c0c6859ad366d9b20', '31.222.203.2', 1677634331, '__ci_last_regenerate|i:1677634331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339bbe4dad217776024f656e9c86c9b3a6bb81ec', '31.222.203.2', 1677634331, '__ci_last_regenerate|i:1677634331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b72335286fac4874f6a4ae0a91fe8adc2227d8', '31.222.203.2', 1677634331, '__ci_last_regenerate|i:1677634331;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a5851ce5487a7d8b6a0c5efc2ef7c78fe1f6ea', '31.222.203.2', 1677634331, '__ci_last_regenerate|i:1677634331;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b5a9c786c282c6ca096b1cf421b28f3e87fa58', '31.222.203.2', 1677636140, '__ci_last_regenerate|i:1677636140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8216929102ddff7d6e243111a92be1528091a5', '31.222.203.2', 1677636140, '__ci_last_regenerate|i:1677636140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aabf49e24668b5c49086f27510a7add0d10befb', '31.222.203.2', 1677636140, '__ci_last_regenerate|i:1677636140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a16c7f2bdb39905192ab9655ebd7f40a1f7f83', '31.222.203.2', 1677636140, '__ci_last_regenerate|i:1677636140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c11d5d8d225abd057537bb6950d20a0d4d60a9d', '31.222.203.2', 1677636140, '__ci_last_regenerate|i:1677636140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2469646992e023bf0bd9e1280bd8ac68c1a33a', '31.222.203.2', 1677636141, '__ci_last_regenerate|i:1677636141;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d1a435223ada1f2fd5e08e4b341f30473c995c3', '167.248.133.42', 1677637620, '__ci_last_regenerate|i:1677637620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96cc6a8c484c6c382ce1ac25852b3014d354673a', '167.248.133.42', 1677637620, '__ci_last_regenerate|i:1677637620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789084981631e9ae4c08d5fe853b351295d74b0e', '167.248.133.42', 1677637620, '__ci_last_regenerate|i:1677637620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67d089966e99d4f17ef82e23fb16e8a4835ca6d0', '31.222.203.2', 1677637939, '__ci_last_regenerate|i:1677637939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efdbfbf560df493f1d01fd0ef4cc20b0a01c3290', '31.222.203.2', 1677637939, '__ci_last_regenerate|i:1677637939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('968d0423fb048a06fb674f26f3a084e44b119828', '31.222.203.2', 1677637939, '__ci_last_regenerate|i:1677637939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52aa919e3b8f597eaf3c7b1a2d55b50c63b7ee5', '31.222.203.2', 1677637939, '__ci_last_regenerate|i:1677637939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ac5fac0ab27fc9588a37b40726db24ca966c5b', '31.222.203.2', 1677637939, '__ci_last_regenerate|i:1677637939;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e5aa827394299aafae563a1e94782f191e4eebe', '31.222.203.2', 1677637939, '__ci_last_regenerate|i:1677637939;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314f933ad2c719be1915bbf7fa8611a634d24099', '31.222.203.2', 1677639741, '__ci_last_regenerate|i:1677639741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98dcf742fed008fd97eb5532335126004551b1a', '31.222.203.2', 1677639741, '__ci_last_regenerate|i:1677639741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0c2ea9052778449a956cdb9bb432828f77e899', '31.222.203.2', 1677639741, '__ci_last_regenerate|i:1677639741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b081f37632f790e1153c89b2db2ba5992f332a3', '31.222.203.2', 1677639741, '__ci_last_regenerate|i:1677639741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcded060958a43a8b399b4309d89931069f438b1', '31.222.203.2', 1677639741, '__ci_last_regenerate|i:1677639741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fac76cf77f20f1108234a4571ffe6ca0cf844584', '31.222.203.2', 1677639741, '__ci_last_regenerate|i:1677639741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06d94cc21f1059919f5cbebe0c3509a4dd427f06', '31.222.203.2', 1677641535, '__ci_last_regenerate|i:1677641535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f50fb60952f90a47e91dbdc76b30e12f02c1f9', '31.222.203.2', 1677641535, '__ci_last_regenerate|i:1677641535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa1ef0db7d274031685a59e830b142afba264b3c', '31.222.203.2', 1677641535, '__ci_last_regenerate|i:1677641535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91fec4d21466cb8e776969a1a78209b271ce8e57', '31.222.203.2', 1677641535, '__ci_last_regenerate|i:1677641535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd26331e0c2305842daaaad3d738d9a6df811741', '31.222.203.2', 1677641535, '__ci_last_regenerate|i:1677641535;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d9cc47a3af3a185359f30c157b1bfcdba8cf09', '31.222.203.2', 1677641535, '__ci_last_regenerate|i:1677641535;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96abd150ec9b97383522aea0a93778de074a6b0e', '31.222.203.2', 1677643339, '__ci_last_regenerate|i:1677643339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff329591c17818d0e40594a308e290d49ffdb54', '31.222.203.2', 1677643339, '__ci_last_regenerate|i:1677643339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac999a057d64b5e377399e5a3e400a6e3173dfa', '31.222.203.2', 1677643339, '__ci_last_regenerate|i:1677643339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('359e59c309343444be806f204c216d519641165f', '31.222.203.2', 1677643339, '__ci_last_regenerate|i:1677643339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0825597d1fe9a009ddb0b43ce92119c2250643b4', '31.222.203.2', 1677643339, '__ci_last_regenerate|i:1677643339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a5454a714d117b6069a279e1176b33f2acc038', '31.222.203.2', 1677643339, '__ci_last_regenerate|i:1677643339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4cd7b143df049920cd8ea146a38985813d24b31', '31.222.203.2', 1677645133, '__ci_last_regenerate|i:1677645133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3391de126aa013cf221e0b57e89143a97a85857', '31.222.203.2', 1677645133, '__ci_last_regenerate|i:1677645133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e14848cd39574013fc8d15f9e90ed583dfe2c7a', '31.222.203.2', 1677645133, '__ci_last_regenerate|i:1677645133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554dc70f40e17c5945e636ac0bb7fa76c02878e6', '31.222.203.2', 1677645133, '__ci_last_regenerate|i:1677645133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa52c9e86967532cd19bb4da1caeea1134acc56', '31.222.203.2', 1677645133, '__ci_last_regenerate|i:1677645133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b32e827641baa92afac2dbec2dd2c66f3d7f47b', '31.222.203.2', 1677645133, '__ci_last_regenerate|i:1677645133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24aaf0551844b9a43a5a7c0408d72d2336557245', '31.222.203.2', 1677646948, '__ci_last_regenerate|i:1677646948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cecf40b582066a90cea9440083f2fdc27dab2293', '31.222.203.2', 1677646948, '__ci_last_regenerate|i:1677646948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('defd214ba6d2add758b7259746a73e00f2139eae', '31.222.203.2', 1677646948, '__ci_last_regenerate|i:1677646948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f21889b4ea29338d92857fd58d7ab3cf71fd302', '31.222.203.2', 1677646948, '__ci_last_regenerate|i:1677646948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acdec14b80d28ebf46a147a71d5e2520f3b47ef2', '31.222.203.2', 1677646948, '__ci_last_regenerate|i:1677646948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e5e8fa82252efd12ac40042bd59b55897e1d1f', '31.222.203.2', 1677646948, '__ci_last_regenerate|i:1677646948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('447d8405b9772da04ba6544dc9fa1bde7c8b0acc', '31.222.203.2', 1677648743, '__ci_last_regenerate|i:1677648743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ea1b985a2db17b2fa2362ff041686bbaea405b', '31.222.203.2', 1677648743, '__ci_last_regenerate|i:1677648743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee8e77df7f61158b1f327f612a31bb232c560eb', '31.222.203.2', 1677648743, '__ci_last_regenerate|i:1677648743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7c4d6c3fbbf094b8bffbdaf1e637777536646b3', '31.222.203.2', 1677648743, '__ci_last_regenerate|i:1677648743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da23ebafdaf71685844c873c2561129f5ca914c', '31.222.203.2', 1677648743, '__ci_last_regenerate|i:1677648743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70457af9f857aaedcef772df6c7f961896e2e8c6', '31.222.203.2', 1677648743, '__ci_last_regenerate|i:1677648743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388ff704c200cfef08b1ed6bfb4c5eed6c88553d', '31.222.203.2', 1677650547, '__ci_last_regenerate|i:1677650547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d4d16fcd0752b48d9cb771c2a291dcdede7b9c6', '31.222.203.2', 1677650547, '__ci_last_regenerate|i:1677650547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3795b41734695d52893e16840c8eb694da621526', '31.222.203.2', 1677650547, '__ci_last_regenerate|i:1677650547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c1fd07714092afd9ec5c2c6d1b1c49dc3303fc', '31.222.203.2', 1677650547, '__ci_last_regenerate|i:1677650547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ce44318ab71bec6c4b542792cf13b47569aa6a', '31.222.203.2', 1677650547, '__ci_last_regenerate|i:1677650547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca21424e6a305eeec790d3d5edacdb10c2b8a59', '31.222.203.2', 1677650547, '__ci_last_regenerate|i:1677650547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d16b06d6061f9b87c729fc947cf519a1c807a202', '198.235.24.58', 1677651955, '__ci_last_regenerate|i:1677651955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ce97b07b5105b0173ca5178adbe4bb8764a482c', '31.222.203.2', 1677652338, '__ci_last_regenerate|i:1677652338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5d679579ee40f66fcf0fceb9bf5d3a8098f1ae', '31.222.203.2', 1677652338, '__ci_last_regenerate|i:1677652338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ed9ebc73f2435cba91800a048d4bafdd3c3938', '31.222.203.2', 1677652338, '__ci_last_regenerate|i:1677652338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a01a6c4e1c8e887f8f8c697d4ff7019e392c92', '31.222.203.2', 1677652338, '__ci_last_regenerate|i:1677652338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca096ea1afc1f4bb1a0e906ebfa2e4499182a40', '31.222.203.2', 1677652338, '__ci_last_regenerate|i:1677652338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339d3866f09aafa9b99f031e93b16cfbdb847d16', '31.222.203.2', 1677652338, '__ci_last_regenerate|i:1677652338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce2f361418cc9413b5e98ef506753518be83d9d', '116.204.230.30', 1677653462, '__ci_last_regenerate|i:1677653454;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1677585876\";last_ip|s:14:\"116.204.230.30\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e71a9adb350a97365c98155d705d9f68498a0cf', '37.111.219.90', 1677653981, '__ci_last_regenerate|i:1677653860;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677558566\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677653981;register_id|s:3:\"356\";cash_in_hand|s:9:\"5730.0000\";register_open_time|s:19:\"2023-02-28 21:18:07\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6db2d104e96420c9b890f2f9d198fcaf89146514', '31.222.203.2', 1677654140, '__ci_last_regenerate|i:1677654140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd7903a947f95cb5b45519b8feea53f4c3bb0a1', '31.222.203.2', 1677654140, '__ci_last_regenerate|i:1677654140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e15aaa211eea331ef82e01a3372fc4239295aa', '31.222.203.2', 1677654140, '__ci_last_regenerate|i:1677654140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432d0bf0bec28c1efeaa13d9bcaf766f41518054', '31.222.203.2', 1677654140, '__ci_last_regenerate|i:1677654140;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f39df746acebee2bbbef781b61d88cb9c77da1', '31.222.203.2', 1677654140, '__ci_last_regenerate|i:1677654140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c01982615906698985215c082ca613e5eb6d2af', '31.222.203.2', 1677654140, '__ci_last_regenerate|i:1677654140;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a663ba527f8ada73f85439c5439bfba6a9bd54bb', '31.222.203.2', 1677655941, '__ci_last_regenerate|i:1677655941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb7f8ad969f49253bb770ae54423a25efde2bb31', '31.222.203.2', 1677655941, '__ci_last_regenerate|i:1677655941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bce924903812f0b925fe4c874e75e11672d63e3', '31.222.203.2', 1677655941, '__ci_last_regenerate|i:1677655941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84e4b1f544faf82896c30c6e8d054bccd4d1176', '31.222.203.2', 1677655941, '__ci_last_regenerate|i:1677655941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a732bdaa0ecf4d0df44057f8641dde30d52b5fba', '31.222.203.2', 1677655941, '__ci_last_regenerate|i:1677655941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87db3f965468a5c48a4ab849d2bb855be376d0c6', '31.222.203.2', 1677655941, '__ci_last_regenerate|i:1677655941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e780268bfcb77b6959e706e481be1adefd60f4e6', '31.222.203.2', 1677657747, '__ci_last_regenerate|i:1677657747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e6b1b33ad313368b3de80fe2646dd71601813d8', '31.222.203.2', 1677657747, '__ci_last_regenerate|i:1677657747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37286100d44297b3c842fde859dc636c4b2083a9', '31.222.203.2', 1677657747, '__ci_last_regenerate|i:1677657747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76544218255be71d2cafde553d254d727170efd5', '31.222.203.2', 1677657747, '__ci_last_regenerate|i:1677657747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40484a291d1fb73db794b1f0bcf1f7b78a0bff83', '31.222.203.2', 1677657747, '__ci_last_regenerate|i:1677657747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66330a240a1bbb8d9be2b45acf40818ad29f05c7', '31.222.203.2', 1677657748, '__ci_last_regenerate|i:1677657748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5f8144f4cdb6608dea165d3ea48428d59eca56', '116.204.230.27', 1677661702, '__ci_last_regenerate|i:1677661702;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677585310\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af5dde9f11fdc6ccbcee3f3728d5ab92e7bca1a', '31.222.203.2', 1677659533, '__ci_last_regenerate|i:1677659533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8d06682f500d7c6a18f7e10233490ba591f6698', '31.222.203.2', 1677659533, '__ci_last_regenerate|i:1677659533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75601fd27c38a49aeccdb7352f66d509e60af89e', '31.222.203.2', 1677659533, '__ci_last_regenerate|i:1677659533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d783d39892c7618632baf4e0a8a5cfd35bec330', '31.222.203.2', 1677659533, '__ci_last_regenerate|i:1677659533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d5e12e22b7acb155cb646fe803f9abedb379a0', '31.222.203.2', 1677659533, '__ci_last_regenerate|i:1677659533;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1262d2de62e2cea79aa491792bba15d3a1bfbfd', '31.222.203.2', 1677659533, '__ci_last_regenerate|i:1677659533;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed72d24fd37bffb4d63daf2426ed0c630c42c98', '31.222.203.2', 1677661343, '__ci_last_regenerate|i:1677661343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ad455fb6beb365020a3e5704645094ebbcb751', '31.222.203.2', 1677661343, '__ci_last_regenerate|i:1677661343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bf36b476719cc17717c6736eeb4c7d3cd3bbb18', '31.222.203.2', 1677661343, '__ci_last_regenerate|i:1677661343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be942ec56424552a0fde84f3a78b2d7b1de1a3ba', '31.222.203.2', 1677661343, '__ci_last_regenerate|i:1677661343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('353ca8d8dd4e01f077132c98f939b0b7b4f857dd', '31.222.203.2', 1677661343, '__ci_last_regenerate|i:1677661343;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a03643804a6f57745dd2ed00e9687445a72fd44', '31.222.203.2', 1677661343, '__ci_last_regenerate|i:1677661343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8df8c799778cb6bf34e0e545eca4290e1e1fa6', '45.120.39.89', 1677661633, '__ci_last_regenerate|i:1677661592;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677653955\";last_ip|s:13:\"37.111.219.90\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677661614;register_id|s:3:\"356\";cash_in_hand|s:9:\"5730.0000\";register_open_time|s:19:\"2023-02-28 21:18:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('704ffb0a8016d05bb12777a05ad94e9e9265111b', '116.204.230.27', 1677661714, '__ci_last_regenerate|i:1677661702;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677585310\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83675b989310e032e533ac6b8c84fe1bb610e1dd', '31.222.203.2', 1677663133, '__ci_last_regenerate|i:1677663133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371601fc09075b77130c8dec3acdbcf2e5a05d74', '31.222.203.2', 1677663133, '__ci_last_regenerate|i:1677663133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68aea2679f3e5216a810d74546adcad047239807', '31.222.203.2', 1677663133, '__ci_last_regenerate|i:1677663133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebed03e940c29044ddc2d648e84805d8c47e7b7b', '31.222.203.2', 1677663133, '__ci_last_regenerate|i:1677663133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('addc7a09e85e139c2ec837e2780c9744100baeb5', '31.222.203.2', 1677663133, '__ci_last_regenerate|i:1677663133;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af21120aa52656e7c8fb192bf3d56fe434ede75', '31.222.203.2', 1677663133, '__ci_last_regenerate|i:1677663133;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9f1f416215a9960df665a689cf561b099034df0', '31.222.203.2', 1677664941, '__ci_last_regenerate|i:1677664941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('180db037a1a59e45afbdb4d7652f656df0c1864b', '31.222.203.2', 1677664942, '__ci_last_regenerate|i:1677664942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51c2ace4fb670f6f7f5beded89ac5759302ba8a', '31.222.203.2', 1677664942, '__ci_last_regenerate|i:1677664942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d0d93aa4f694518d731c86fe998aa4753f0a01', '31.222.203.2', 1677664942, '__ci_last_regenerate|i:1677664942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d38bbad0182a3dcdd35fd6d87b3d5b30788503', '31.222.203.2', 1677664942, '__ci_last_regenerate|i:1677664942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48870e08f93e43e7af9a3b59c4719ae919bf4385', '31.222.203.2', 1677664942, '__ci_last_regenerate|i:1677664942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5d779fb5432f4ae20ffb95df4eb7281c40d857', '31.222.203.2', 1677666733, '__ci_last_regenerate|i:1677666733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b96080a72d702285204fc7f87dba8200fb342f97', '31.222.203.2', 1677666733, '__ci_last_regenerate|i:1677666733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1795830021b1ed2b1b9238f52d88bb773e9094a2', '31.222.203.2', 1677666734, '__ci_last_regenerate|i:1677666734;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82637d091980d27cdf2ca3236194e0bd55118fe', '31.222.203.2', 1677666734, '__ci_last_regenerate|i:1677666734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec67bd616d05c8a9c4ece8400884d95f8f7888e', '31.222.203.2', 1677666735, '__ci_last_regenerate|i:1677666735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d8cb724a06ebb5add98ecda5c03bbee4d9a081', '31.222.203.2', 1677666735, '__ci_last_regenerate|i:1677666735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1aecab4c6fcf7e724e76953f6bac05534fa65fe', '31.222.203.2', 1677668540, '__ci_last_regenerate|i:1677668540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34e2d73ed3a1fd7fd9683ac4b441e6c6b5c44d14', '31.222.203.2', 1677668540, '__ci_last_regenerate|i:1677668540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44d7666c20636b5304a871139b36c351d940beb', '31.222.203.2', 1677668540, '__ci_last_regenerate|i:1677668540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17caaea7e48f1906ad66355883e52df76e558ee3', '31.222.203.2', 1677668540, '__ci_last_regenerate|i:1677668540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cb323464f647239ab59cb412262ed110f6a41da', '31.222.203.2', 1677668540, '__ci_last_regenerate|i:1677668540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53bcb3f47854e09e619b069a1a967b36935be3c', '31.222.203.2', 1677668540, '__ci_last_regenerate|i:1677668540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c81a440dd8a6cd058c6d4e937cf14b356a4dd34', '31.222.203.2', 1677670337, '__ci_last_regenerate|i:1677670336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb825c02a24a48435fe23f86e2a8dde075790df', '31.222.203.2', 1677670337, '__ci_last_regenerate|i:1677670337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef49f795b567aa4056285f2ba548c3b4a776ed19', '31.222.203.2', 1677670337, '__ci_last_regenerate|i:1677670337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b640fb9cf954fc457b617a0b84e4b7207fddd7f', '31.222.203.2', 1677670337, '__ci_last_regenerate|i:1677670337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2561baafe5b9012ee7c7f850fbf6d5b4df47137', '31.222.203.2', 1677670337, '__ci_last_regenerate|i:1677670337;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02173e22e88faadc77b6a67560badf95fced945', '31.222.203.2', 1677670337, '__ci_last_regenerate|i:1677670337;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234be054336455607d4bc1cbeb977adbf51fb6f0', '45.120.39.89', 1677674821, '__ci_last_regenerate|i:1677674821;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677661599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9841671b0b1d8ddcdc785ccdbe4109267b16a89b', '31.222.203.2', 1677672145, '__ci_last_regenerate|i:1677672145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c595dc98c310d375d65d20d64bff43781c0aab', '31.222.203.2', 1677672145, '__ci_last_regenerate|i:1677672145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca51eadd82dfb4b5299e2952cb29d06bbe7b3e66', '31.222.203.2', 1677672145, '__ci_last_regenerate|i:1677672145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('155bfd61cb74704db334c204c4370e95c8a84c8f', '31.222.203.2', 1677672145, '__ci_last_regenerate|i:1677672145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66fa72b12b82fe853fd3df603cc82091ef6281df', '31.222.203.2', 1677672145, '__ci_last_regenerate|i:1677672145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5822883d52a08304a68ef8c0d51a8c9e509673', '31.222.203.2', 1677672145, '__ci_last_regenerate|i:1677672145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ad3c4b81b2c22c9aaf3db9b8f3f24601824c63', '31.222.203.2', 1677673941, '__ci_last_regenerate|i:1677673941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca3b5c4b88cd221de3114bf1fab86e4320e529f', '31.222.203.2', 1677673941, '__ci_last_regenerate|i:1677673941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f735bfc749c2e97aab33c012d4df92b6df8a27ad', '31.222.203.2', 1677673941, '__ci_last_regenerate|i:1677673941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca63cf945e363aad078a346b8a1d99bb4c87cd5', '31.222.203.2', 1677673941, '__ci_last_regenerate|i:1677673941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c086d016cf105e6ee2e859cffdc20526233d2ea', '31.222.203.2', 1677673941, '__ci_last_regenerate|i:1677673941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99d220a4d59205f864d1529fca9bf1f224c0026f', '31.222.203.2', 1677673941, '__ci_last_regenerate|i:1677673941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6565ce2e914bc95891a2fdc831d3dbd94e0beb4e', '37.111.218.122', 1677676555, '__ci_last_regenerate|i:1677676555;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677661599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677674821;register_id|s:3:\"356\";cash_in_hand|s:9:\"5730.0000\";register_open_time|s:19:\"2023-02-28 21:18:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e835ab81b0d84fa41d32e9e98c7908ebff25e090', '31.222.203.2', 1677675745, '__ci_last_regenerate|i:1677675745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2f6910dc1d44e90c17f6aae2f6a81c64b4b1363', '31.222.203.2', 1677675745, '__ci_last_regenerate|i:1677675745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d0043bb9775656a0af7559fe6d85a06bbd033c', '31.222.203.2', 1677675745, '__ci_last_regenerate|i:1677675745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b611ccf7d7223a2b9da481daeee11af65cd221', '31.222.203.2', 1677675745, '__ci_last_regenerate|i:1677675745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832f26797a823e711b5ed1704247ed620c166efc', '31.222.203.2', 1677675745, '__ci_last_regenerate|i:1677675745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb926ac310c1fc76d82ac68c8e9a1399fc12c2ea', '31.222.203.2', 1677675745, '__ci_last_regenerate|i:1677675745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3ba8ed57a37dc03c88937bc3b1f4dae4ef960d', '37.111.218.122', 1677678846, '__ci_last_regenerate|i:1677678846;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677661599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677676606;register_id|s:3:\"356\";cash_in_hand|s:9:\"5730.0000\";register_open_time|s:19:\"2023-02-28 21:18:07\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ed70c3905082d0babec834ff41ffd99c3cc2bf', '31.222.203.2', 1677677539, '__ci_last_regenerate|i:1677677539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d273a2808a9f606c64b40c54a06cd57b1efefb4', '31.222.203.2', 1677677539, '__ci_last_regenerate|i:1677677539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05c589d319c37a69cdc699517190857beff9db61', '31.222.203.2', 1677677539, '__ci_last_regenerate|i:1677677539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c2b36df367a81010e768db1a5ab692c3d49908', '31.222.203.2', 1677677540, '__ci_last_regenerate|i:1677677540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d44d86c84a4e1a38ae536e678b6d62432ae33bd', '31.222.203.2', 1677677540, '__ci_last_regenerate|i:1677677540;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7c4b8bee7a5c04dc9cc1a3b39fb8dc76d5f5fc', '31.222.203.2', 1677677540, '__ci_last_regenerate|i:1677677540;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f234aa7182440c2ee0ca02035bcf6c00bb42f2a', '37.111.218.122', 1677678878, '__ci_last_regenerate|i:1677678846;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677661599\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677678877;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d41baea967e2a32aa9ec1e4e95beba6656f4b86', '31.222.203.2', 1677679344, '__ci_last_regenerate|i:1677679343;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8ee377a50b78004cc5dbf96babd647e9dcbeea', '31.222.203.2', 1677679344, '__ci_last_regenerate|i:1677679344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4279a5c5503540ca7fbeb7bda5e588ee4094dea', '31.222.203.2', 1677679344, '__ci_last_regenerate|i:1677679344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d356daad2a473290852b612a96f4861fa890265', '31.222.203.2', 1677679344, '__ci_last_regenerate|i:1677679344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db220c162bcecf523777e62ad80a89a52ef1cdc', '31.222.203.2', 1677679344, '__ci_last_regenerate|i:1677679344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6eb309f01ce29d212a56a28a6c1f479ccc59121', '31.222.203.2', 1677679344, '__ci_last_regenerate|i:1677679344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c861562d491dd270b375eab3236a215e6cc1485', '31.222.203.2', 1677681154, '__ci_last_regenerate|i:1677681154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9fcb4a1ed907ee65d86ef14a9cb24b7755d3b44', '31.222.203.2', 1677681154, '__ci_last_regenerate|i:1677681154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457e9a7eba83f1d2cf3c1bc89816f57f4d82e6da', '31.222.203.2', 1677681154, '__ci_last_regenerate|i:1677681154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d30e71822f5624d3687995d7febb68323dc0627', '31.222.203.2', 1677681154, '__ci_last_regenerate|i:1677681154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bbf18f7a4476c221bf357833bd91bbb97c978d8', '31.222.203.2', 1677681154, '__ci_last_regenerate|i:1677681154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7420799703d5cc1351173dd0eddcec25c4ffd547', '31.222.203.2', 1677681154, '__ci_last_regenerate|i:1677681154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aebca9c23b32c39c5dbedb7b0708162100790231', '31.222.203.2', 1677682947, '__ci_last_regenerate|i:1677682947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f660e5b418e8214e898b667292582bf2ac32d7db', '31.222.203.2', 1677682947, '__ci_last_regenerate|i:1677682947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5a024a592129a07fde2b7438964ad02ac61636', '31.222.203.2', 1677682947, '__ci_last_regenerate|i:1677682947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efa81ffc86656a7fe5f04f133ae19566fef914fc', '31.222.203.2', 1677682947, '__ci_last_regenerate|i:1677682947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75c52069e61e6688773d2bda88c3d71c45ffa644', '31.222.203.2', 1677682947, '__ci_last_regenerate|i:1677682947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c19daf444e04297a3a4f33d72e53a88b05b7298', '31.222.203.2', 1677682947, '__ci_last_regenerate|i:1677682947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a0e4d435e74aab0acf7908e711d84142a942cb', '31.222.203.2', 1677684737, '__ci_last_regenerate|i:1677684737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c0cdab0ff7cb48a2430ebb2318cb949f947bee', '31.222.203.2', 1677684737, '__ci_last_regenerate|i:1677684737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c48e2c865d9783fe02e71d4597e03be236028e', '31.222.203.2', 1677684737, '__ci_last_regenerate|i:1677684737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd8f9fc7deb599c3f75a14be40432c5ce76506c', '31.222.203.2', 1677684737, '__ci_last_regenerate|i:1677684737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754230b72422d2a5e2a978417a2b1e01086a7cbc', '31.222.203.2', 1677684737, '__ci_last_regenerate|i:1677684737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93f59e98642e9ad1b9c27dc3d2bfa688d9503dc3', '31.222.203.2', 1677684737, '__ci_last_regenerate|i:1677684737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a781bda1da7dfcae0ebf0c02066f4d09f279b30e', '31.222.203.2', 1677686547, '__ci_last_regenerate|i:1677686547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d97c35b7c3641222676ff048f7ec238c35ef91', '31.222.203.2', 1677686547, '__ci_last_regenerate|i:1677686547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('debc354660d2e11284eb245079936fa84dcb7104', '31.222.203.2', 1677686547, '__ci_last_regenerate|i:1677686547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caeaa82f894cd72a3b5b04931911e018c7ca514d', '31.222.203.2', 1677686548, '__ci_last_regenerate|i:1677686548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('254d0145eab17612468f726fa73cce6f82efcebf', '31.222.203.2', 1677686548, '__ci_last_regenerate|i:1677686548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd282603c694338493e5f5d1fa7baac18dcac49b', '31.222.203.2', 1677686548, '__ci_last_regenerate|i:1677686548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12829f6376a3d6acf3b69f2b020e78e4d1adfa2', '31.222.203.2', 1677688338, '__ci_last_regenerate|i:1677688338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36089b64aa76c886f0ab0788b6c05bf974d70544', '31.222.203.2', 1677688338, '__ci_last_regenerate|i:1677688338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64d2f4a26be5aa8848c253124135a8a14f1f20c', '31.222.203.2', 1677688338, '__ci_last_regenerate|i:1677688338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba0a7bd04b57af9e5bd3791832aadb6b9f6cb48', '31.222.203.2', 1677688338, '__ci_last_regenerate|i:1677688338;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe9dababdf55bc35ef5e7bd1519f5e679e27e97f', '31.222.203.2', 1677688338, '__ci_last_regenerate|i:1677688338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad556ad66eb844ad7fb5440cb1c864ec3cd0391', '31.222.203.2', 1677688338, '__ci_last_regenerate|i:1677688338;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('753caac05ff26b982dd4e53d2f5e667911769917', '31.222.203.2', 1677690143, '__ci_last_regenerate|i:1677690143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f1113294ad742563ca8448e2bff4981ef56757b', '31.222.203.2', 1677690143, '__ci_last_regenerate|i:1677690143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d0d5aa2f57305f7590ebefa9714f587152eece', '31.222.203.2', 1677690143, '__ci_last_regenerate|i:1677690143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437c14851787ec497b8f8115ca7676ac13ef0f01', '31.222.203.2', 1677690143, '__ci_last_regenerate|i:1677690143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e17e07bb5a14d68e48301096f233d1f17699ce1', '31.222.203.2', 1677690143, '__ci_last_regenerate|i:1677690143;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b24fa5aa6420a4aeb9516e6a13acd1c280d7abd2', '31.222.203.2', 1677690143, '__ci_last_regenerate|i:1677690143;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1055358f7c3182ed5bdeb284f2fbe5cca7ebddc9', '31.222.203.2', 1677691941, '__ci_last_regenerate|i:1677691941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874716725abcf961bb18eaf0c136606cc960a3a6', '31.222.203.2', 1677691941, '__ci_last_regenerate|i:1677691941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f486670b987d7c68d1c86820fb36d6a3df8381', '31.222.203.2', 1677691941, '__ci_last_regenerate|i:1677691941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336b3355197f0c2f16e6ec341f6d94f93e9f1b9e', '31.222.203.2', 1677691941, '__ci_last_regenerate|i:1677691941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651ee49f3322af1caa0ce94faca3a558dae3802b', '31.222.203.2', 1677691941, '__ci_last_regenerate|i:1677691941;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c08853f2ff0cfee5bc36bb9193eca49ebfc43014', '31.222.203.2', 1677691941, '__ci_last_regenerate|i:1677691941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247faf1ae48d57fadc0dd1a4bbe8479ab4c46697', '31.222.203.2', 1677693744, '__ci_last_regenerate|i:1677693744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb3c7fe871178501bb8baf5d16cdb68b88010253', '31.222.203.2', 1677693745, '__ci_last_regenerate|i:1677693745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40923ee5e8d41609ca4f8852ebee634fde95e6ff', '31.222.203.2', 1677693745, '__ci_last_regenerate|i:1677693745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bda9d277ab0749d8c5e2fb2b28be112e3eaefc5b', '31.222.203.2', 1677693745, '__ci_last_regenerate|i:1677693745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed98c01fa84f596fd4791ec1457474b2bcb99e4b', '31.222.203.2', 1677693745, '__ci_last_regenerate|i:1677693745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b24d814b9e815867b4f03b87b3319afb7147c7c', '31.222.203.2', 1677693745, '__ci_last_regenerate|i:1677693745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660c8068fbfe4dabff0e39dd76ff829301c9568f', '209.141.36.231', 1677694272, '__ci_last_regenerate|i:1677694272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a659d5ce7f5bdad8a168c79190404fcd9f38606b', '209.141.36.231', 1677694272, '__ci_last_regenerate|i:1677694272;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d621a2716beadf7ccd16089d02d571221107335', '209.141.36.231', 1677694273, '__ci_last_regenerate|i:1677694272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ce14d137413db05bdff6e88e3d7d45850de2b5', '31.222.203.2', 1677695539, '__ci_last_regenerate|i:1677695539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ddd98dbbc7b46994637ff404ab8838f43543732', '31.222.203.2', 1677695539, '__ci_last_regenerate|i:1677695539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3611c0a32e031079a8c7c620fed2e6187c716234', '31.222.203.2', 1677695539, '__ci_last_regenerate|i:1677695539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17a8b8ef79d03e11989fc8d898ce11e4e24fb302', '31.222.203.2', 1677695539, '__ci_last_regenerate|i:1677695539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db3fb4e37e78554c243430235fd5ef5ff942eef', '31.222.203.2', 1677695539, '__ci_last_regenerate|i:1677695539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75bb499c3f11a762ac870759ad090f268470945', '31.222.203.2', 1677695539, '__ci_last_regenerate|i:1677695539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2db0dca6aaa45a32e502fb8906bfbd58c03874df', '31.222.203.2', 1677697341, '__ci_last_regenerate|i:1677697341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccdccb8122bf2afa7a621d2f1734f8f422a3cf9', '31.222.203.2', 1677697341, '__ci_last_regenerate|i:1677697341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9156f95732e09260bb5f94cd6896bdc24b6fff08', '31.222.203.2', 1677697341, '__ci_last_regenerate|i:1677697341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7364f81e38203336aef54c12ccdb332b51061ee', '31.222.203.2', 1677697341, '__ci_last_regenerate|i:1677697341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c336b8903e1f65e69f98be08e0c8213c106ad36', '31.222.203.2', 1677697341, '__ci_last_regenerate|i:1677697341;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0c1ed6c3fe41308abe87dad565dc015d1a0cfc', '31.222.203.2', 1677697341, '__ci_last_regenerate|i:1677697341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e88e1ee6006b2ac3824ece2b27b211e3f02f245', '184.171.244.231', 1677697660, '__ci_last_regenerate|i:1677697660;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0a3ae24a89095cce4767defa242cffa735a75cf', '184.171.244.231', 1677697660, '__ci_last_regenerate|i:1677697660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48a4277fd400e2cf5d42239a479999c68ef3eed', '184.171.244.231', 1677697661, '__ci_last_regenerate|i:1677697661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f522a4e45df352b84b76508de33a83e8ba98757', '184.171.244.231', 1677697661, '__ci_last_regenerate|i:1677697661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b379789f5c2884d84382d1f17e797ff9146bf022', '31.222.203.2', 1677699134, '__ci_last_regenerate|i:1677699134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4755550d444ff8ae3967925ff5ed107d1a92ea7', '31.222.203.2', 1677699134, '__ci_last_regenerate|i:1677699134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d759e4637a7a2d52b1ea9e6664a33d3ba6ea107', '31.222.203.2', 1677699134, '__ci_last_regenerate|i:1677699134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2202cbc9910cf95661dcfe8cf042aea08b8408f5', '31.222.203.2', 1677699135, '__ci_last_regenerate|i:1677699135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8249e4d5bcd8b921247c77818a51d1303636a5', '31.222.203.2', 1677699135, '__ci_last_regenerate|i:1677699135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9ddc8c722930bc955e2f9ee9db1c4849e70a74c', '31.222.203.2', 1677699135, '__ci_last_regenerate|i:1677699135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3735fa09775322578b74edb7866ee985ad487d', '31.222.203.2', 1677700937, '__ci_last_regenerate|i:1677700937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f5c0dfb8b182fcab702a298c5dd762842040091', '31.222.203.2', 1677700937, '__ci_last_regenerate|i:1677700937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8ad63604545b74762580cc4300a30050493aee', '31.222.203.2', 1677700937, '__ci_last_regenerate|i:1677700937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34fc343b5cbd9039130946293ec9e6677a94f215', '31.222.203.2', 1677700937, '__ci_last_regenerate|i:1677700937;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b226b58d9764e27902bbf4d9b9463129eea29a57', '31.222.203.2', 1677700937, '__ci_last_regenerate|i:1677700937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0b52051c6bb5a52d0926691a3e0812a10ca0d34', '31.222.203.2', 1677700937, '__ci_last_regenerate|i:1677700937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03e05925f9e31444f49fa4b302a95f2497c18b0c', '167.248.133.46', 1677701597, '__ci_last_regenerate|i:1677701597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452d302e1f954232e52cba040218b953da5a8f13', '167.248.133.46', 1677701597, '__ci_last_regenerate|i:1677701597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ded0505fa6ba3608c7501299e9b967418b3fed8', '167.248.133.46', 1677701597, '__ci_last_regenerate|i:1677701597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a32a4d1c4f4dbf962c8ed1aef7eac608e02a90e9', '31.222.203.2', 1677702733, '__ci_last_regenerate|i:1677702733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d46ef4de5d656d83e32e5f0e6d74e55d8d9d3c2', '31.222.203.2', 1677702733, '__ci_last_regenerate|i:1677702733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd8456d62e0402621a69c6b413b490b983cd5d1', '31.222.203.2', 1677702733, '__ci_last_regenerate|i:1677702733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f71dd28c7da4b4a6b2f90f4080ec4e5011fb4d', '31.222.203.2', 1677702733, '__ci_last_regenerate|i:1677702733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0d8a083e182f3ca316476b426a03ed00fd4823', '31.222.203.2', 1677702733, '__ci_last_regenerate|i:1677702733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af745e4b962d0f16fa6e1c10ccdba68c8ea41b3b', '31.222.203.2', 1677702733, '__ci_last_regenerate|i:1677702733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27c8478bc8b0b29ca7f4f045dbfd007e006852a', '209.17.114.78', 1677703218, '__ci_last_regenerate|i:1677703218;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9756b43327d71243b2cf3e5d095c1884ba22c2e7', '209.17.114.78', 1677703218, '__ci_last_regenerate|i:1677703218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98dff8796bd6e30b43425af15c34ad76fcd1a112', '209.17.114.78', 1677703218, '__ci_last_regenerate|i:1677703218;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047695583a882405633f5fd33715f8d5950299b7', '209.17.114.78', 1677703218, '__ci_last_regenerate|i:1677703218;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9ba2953771d68ecb696cacb7fdfa68e39baaade', '31.222.203.2', 1677704544, '__ci_last_regenerate|i:1677704544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411a0c087b87d637e0a0cd91ae2c44aaa071c57d', '31.222.203.2', 1677704544, '__ci_last_regenerate|i:1677704544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798e47a66d05c52605f467b24f6ebf5b7bce856d', '31.222.203.2', 1677704544, '__ci_last_regenerate|i:1677704544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ff4ccf485b190690bd223fb59d4f57f111c4e3', '31.222.203.2', 1677704544, '__ci_last_regenerate|i:1677704544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893fb055fb6c589070e5c495baf3e882e4d591ad', '31.222.203.2', 1677704544, '__ci_last_regenerate|i:1677704544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e09de585ba83a5ddd610929335204cce13ab50fb', '31.222.203.2', 1677704544, '__ci_last_regenerate|i:1677704544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7372de02b36c6608600d2d55a0cd125efec38f', '31.222.203.2', 1677706335, '__ci_last_regenerate|i:1677706335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0236a573d7986d3745daffe59227bfc54085b367', '31.222.203.2', 1677706335, '__ci_last_regenerate|i:1677706335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db686aa66319e73e835220fe3aa68949c5954882', '31.222.203.2', 1677706335, '__ci_last_regenerate|i:1677706335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4245ceb24c7f7c43c494840c770b1e8e6678bf4d', '31.222.203.2', 1677706335, '__ci_last_regenerate|i:1677706335;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed227bada02de49eef168da160bdc6575d2de872', '31.222.203.2', 1677706335, '__ci_last_regenerate|i:1677706335;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cb146e4300fa7d412c20f92315931aea9ce988', '31.222.203.2', 1677706336, '__ci_last_regenerate|i:1677706336;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774e357d0dd91a14bbe9d9e70e965c5b1d9bf0ef', '87.236.176.123', 1677707279, '__ci_last_regenerate|i:1677707279;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61669b60043e283301ca5f8c074cdc102b1d277a', '87.236.176.123', 1677707280, '__ci_last_regenerate|i:1677707280;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39991ceb2c9f65485e77f43a935d1b3beeb19124', '31.222.203.2', 1677708135, '__ci_last_regenerate|i:1677708135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c59dc249a0a1a62568761960dee5d3487f5a999', '31.222.203.2', 1677708135, '__ci_last_regenerate|i:1677708135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebe3a9ec5bbe8a09de582f7930fc421ee673431', '31.222.203.2', 1677708135, '__ci_last_regenerate|i:1677708135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612a919b557b8345b01ae0399f50e82630fa3cce', '31.222.203.2', 1677708135, '__ci_last_regenerate|i:1677708135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8579197c2f5eedfb0879c15f2802a8648072bca7', '31.222.203.2', 1677708135, '__ci_last_regenerate|i:1677708135;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('827b5e755fa815809cb133a3fdfac077f914c439', '31.222.203.2', 1677708135, '__ci_last_regenerate|i:1677708135;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a302b796cd74e1c141e32b5b31fa03da8b39fa86', '31.222.203.2', 1677709935, '__ci_last_regenerate|i:1677709935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825431fc0afa0f36aba965d89c7180a1976a5c35', '31.222.203.2', 1677709935, '__ci_last_regenerate|i:1677709935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc1cf640e19cea35ef6c560fec8457fbfa56ffb2', '31.222.203.2', 1677709935, '__ci_last_regenerate|i:1677709935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b896b3d024a66b034722f29925db1c9b6fef61f1', '31.222.203.2', 1677709935, '__ci_last_regenerate|i:1677709935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638b0cfbe6a8020fd128682a32c21d7f1c4883cb', '31.222.203.2', 1677709935, '__ci_last_regenerate|i:1677709935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('653099d0dffc9bc07177719ebbfee286d5df63bd', '31.222.203.2', 1677709935, '__ci_last_regenerate|i:1677709935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('391604bfd5454a3fe7761e827ef3130942104c77', '31.222.203.2', 1677711743, '__ci_last_regenerate|i:1677711743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd02697a1ab77eb7265c88f9ba0c5923643f4b3d', '31.222.203.2', 1677711743, '__ci_last_regenerate|i:1677711743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae22c7103f6e31d68f6bf3d0a7243390b3021286', '31.222.203.2', 1677711743, '__ci_last_regenerate|i:1677711743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d12b6f5f8d3691c8cf7b0d8efdd9dd98e3446285', '31.222.203.2', 1677711743, '__ci_last_regenerate|i:1677711743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b8a61407d00b36101af8d447a04b7c8a6bfcecb', '31.222.203.2', 1677711743, '__ci_last_regenerate|i:1677711743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2dde4c6ccc4fc79adac52d7eac1821404ebb6b', '31.222.203.2', 1677711743, '__ci_last_regenerate|i:1677711743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65056da1d3738d173b71594633ba3b020fd6139', '31.222.203.2', 1677713530, '__ci_last_regenerate|i:1677713530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac9e06cac4fc93f13400b3d633d3dda871a3a60', '31.222.203.2', 1677713530, '__ci_last_regenerate|i:1677713530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a69bf07eb2e7017f069d9142ac5f50e163f4c0c1', '31.222.203.2', 1677713530, '__ci_last_regenerate|i:1677713530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34dbea88bcd3b33712cbf734fe6debf9a660b3a1', '31.222.203.2', 1677713530, '__ci_last_regenerate|i:1677713530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32824f4541dcf3892e2d6361aac337eed333ba07', '31.222.203.2', 1677713530, '__ci_last_regenerate|i:1677713530;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e20e0ff773d5655b7a0d4354d9627968ec201562', '31.222.203.2', 1677713530, '__ci_last_regenerate|i:1677713530;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1b0c8999d8d3a4f3d867b68e652fc0550f136d', '31.222.203.2', 1677715339, '__ci_last_regenerate|i:1677715339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fe5fe0f3d0fbc06594ec34ba538dbf19b83cf8', '31.222.203.2', 1677715339, '__ci_last_regenerate|i:1677715339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f951e5d8cc4e86584bd8a96a53bab84e07ea4ed4', '31.222.203.2', 1677715339, '__ci_last_regenerate|i:1677715339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4238338e68c00eb15863e317c7d35f3798ee53cc', '31.222.203.2', 1677715339, '__ci_last_regenerate|i:1677715339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a7efe08fd0941a1b1a1a8985c14180540cd5399', '31.222.203.2', 1677715339, '__ci_last_regenerate|i:1677715339;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b3fef98286ee8217486f508e5eee7f49d79c693', '31.222.203.2', 1677715339, '__ci_last_regenerate|i:1677715339;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dcda16360d61645f2008626647ee4dda31c7607', '31.222.203.2', 1677717134, '__ci_last_regenerate|i:1677717134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1261a0368325189e62e8ad4dc3a9cd78de44668a', '31.222.203.2', 1677717134, '__ci_last_regenerate|i:1677717134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164ba2ff42a511ca38aa6132c97d9c990eb929a1', '31.222.203.2', 1677717134, '__ci_last_regenerate|i:1677717134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa0529151d75a48e77e7cbf5fe36b5469098b689', '31.222.203.2', 1677717134, '__ci_last_regenerate|i:1677717134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73b09f582400df7e6a7a83dd8bb270afec82747', '31.222.203.2', 1677717134, '__ci_last_regenerate|i:1677717134;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b666a4d6fe624d68e726b27d4b22825e9bbdc1e4', '31.222.203.2', 1677717134, '__ci_last_regenerate|i:1677717134;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24bc5eeb378d46f2b46d7f66732bb2a80243a690', '31.222.203.2', 1677718943, '__ci_last_regenerate|i:1677718943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394660d7b1b5f7871c6f5eb1e728b0b097c0749f', '31.222.203.2', 1677718943, '__ci_last_regenerate|i:1677718943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('819199548bcce30540848dd53032b29d59cbde5f', '31.222.203.2', 1677718943, '__ci_last_regenerate|i:1677718943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90265c86ae4ac7b47f5b8a09b9ff2d75d3198732', '31.222.203.2', 1677718943, '__ci_last_regenerate|i:1677718943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9470c597ebb7ae1267ffdf121a5694778247ec1a', '31.222.203.2', 1677718943, '__ci_last_regenerate|i:1677718943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b1e5bb2cc960275dd4c957aeb746e2afcf9757b', '31.222.203.2', 1677718943, '__ci_last_regenerate|i:1677718943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f837eadea9b5189688b116d0ad5d7302626996', '31.222.203.2', 1677720735, '__ci_last_regenerate|i:1677720735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953efc822011b7cf85356f5f12b866769ccb4392', '31.222.203.2', 1677720735, '__ci_last_regenerate|i:1677720735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311c80feb26ed24030696f33c219c66b017c5333', '31.222.203.2', 1677720735, '__ci_last_regenerate|i:1677720735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2c9a88853f9c7f9e7b8f66af153419e1756c80', '31.222.203.2', 1677720735, '__ci_last_regenerate|i:1677720735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e264a019987baf299b337e37a43fd180d426cef3', '31.222.203.2', 1677720735, '__ci_last_regenerate|i:1677720735;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11d0019e82341a06dc0f28e46b6c4e671fea140e', '31.222.203.2', 1677720735, '__ci_last_regenerate|i:1677720735;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735d5306460970248bf4f65fb72ce7f13e66f8bb', '31.222.203.2', 1677722544, '__ci_last_regenerate|i:1677722544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17525a4a3db5be8f98731f38ef766d23fd00b5fd', '31.222.203.2', 1677722544, '__ci_last_regenerate|i:1677722544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02fabcb2f852cc313308c3c6b97b0f1d0e7d806', '31.222.203.2', 1677722544, '__ci_last_regenerate|i:1677722544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc18626823102fc4d4e7504f9a153715b2ba3c09', '31.222.203.2', 1677722544, '__ci_last_regenerate|i:1677722544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1928cd8990c0ea2ee017412d60bbb6039843739', '31.222.203.2', 1677722544, '__ci_last_regenerate|i:1677722544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('686280fda09b2d32782a31781cf69bca1c5c8a6d', '31.222.203.2', 1677722544, '__ci_last_regenerate|i:1677722544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47f5d599f6e7ec1e76f118add2f74cbe1c1d54fc', '31.222.203.2', 1677724332, '__ci_last_regenerate|i:1677724332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73dd3d05e50b060ae16c461305153224df800815', '31.222.203.2', 1677724332, '__ci_last_regenerate|i:1677724332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6560c1b5c9dbed519dbdf8e55f801a47c215177b', '31.222.203.2', 1677724332, '__ci_last_regenerate|i:1677724332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cfc69176b16e4b3ffd2260dcaf97af7dd1ea5a4', '31.222.203.2', 1677724332, '__ci_last_regenerate|i:1677724332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263556bca9349bd186af2d4aacb285c8046d10c1', '31.222.203.2', 1677724332, '__ci_last_regenerate|i:1677724332;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3353909cf2eadb17619c5ff63448dea3ff267521', '31.222.203.2', 1677724332, '__ci_last_regenerate|i:1677724332;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e9fcf627eb46223ecbc787f3bcd9ccadf87307e', '31.222.203.2', 1677726145, '__ci_last_regenerate|i:1677726145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d4d8c12f0d73ad6f5039280b6514c8beac0c44', '31.222.203.2', 1677726145, '__ci_last_regenerate|i:1677726145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ff8bdab217a2826fe4a52d5bf8f9b772f1d29c6', '31.222.203.2', 1677726145, '__ci_last_regenerate|i:1677726145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('439419a808d602db49ea219e25959048638cc490', '31.222.203.2', 1677726145, '__ci_last_regenerate|i:1677726145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52773fa63598b76a809b23c9a161df665ffbf859', '31.222.203.2', 1677726145, '__ci_last_regenerate|i:1677726145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('129d72e8ca953cece8fed38e57dc702a4e723dfa', '31.222.203.2', 1677726145, '__ci_last_regenerate|i:1677726145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84bf2e8582185a9c887dccf0d1bfa390ad1ca219', '31.222.203.2', 1677727938, '__ci_last_regenerate|i:1677727938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2c0d4d1fc3b043ed13db7740acca81529fc567e', '31.222.203.2', 1677727938, '__ci_last_regenerate|i:1677727938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e433fd0c3a1502537d07620fa0bf09e2829402e', '31.222.203.2', 1677727938, '__ci_last_regenerate|i:1677727938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37f1d905d3b33a75cde6735986b2896b08ec331', '31.222.203.2', 1677727938, '__ci_last_regenerate|i:1677727938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a571ccc1c26ae4e5d6fd87d0f0ada22bb4baa34', '31.222.203.2', 1677727938, '__ci_last_regenerate|i:1677727938;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('256e8dc9f2d28f3ce0b3c7071eed9cb7c4dd7d98', '31.222.203.2', 1677727938, '__ci_last_regenerate|i:1677727938;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c41c682efe0750b842cbd0ac2d8ad9f94f1aa2b1', '31.222.203.2', 1677729742, '__ci_last_regenerate|i:1677729742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7d37c22aaec3777f469f6f7074a6bcabe8e6efb', '31.222.203.2', 1677729742, '__ci_last_regenerate|i:1677729742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('688e96606906602f07f96ba32e6adce7ea4ef438', '31.222.203.2', 1677729742, '__ci_last_regenerate|i:1677729742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571791d9f7d591168dca5f52ebd413e4d5168b8b', '31.222.203.2', 1677729742, '__ci_last_regenerate|i:1677729742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7c5cb2fcc4f9f6493525d7b5b6e7f45bd25472', '31.222.203.2', 1677729742, '__ci_last_regenerate|i:1677729742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65593ff254b50f54add1c0dad653c1a88e5e0e04', '31.222.203.2', 1677729742, '__ci_last_regenerate|i:1677729742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58be45f587d63d01027fd60fd534ff255b807f55', '31.222.203.2', 1677731534, '__ci_last_regenerate|i:1677731534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7a369a3004a6cb8d5d2fc9a317b37ccf1c3afc', '31.222.203.2', 1677731534, '__ci_last_regenerate|i:1677731534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b197c85ce8f82b6bbb1e92ddddd7ae5db8b608d', '31.222.203.2', 1677731534, '__ci_last_regenerate|i:1677731534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c425f69b3a3ff3d4ed6458cec508720bb6da619f', '31.222.203.2', 1677731534, '__ci_last_regenerate|i:1677731534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b250494e224227230df2eb778c5220dc7c75c2c', '31.222.203.2', 1677731534, '__ci_last_regenerate|i:1677731534;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf73591d0c7499f0c317ce3587f614e637cdfbf2', '31.222.203.2', 1677731534, '__ci_last_regenerate|i:1677731534;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ffc931f817220d602699a356b8d623b54f6085', '31.222.203.2', 1677733374, '__ci_last_regenerate|i:1677733374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f0cf683b0442050510277d208b611a6823d5924', '31.222.203.2', 1677733379, '__ci_last_regenerate|i:1677733379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3709014c0eaea50a5607fab0c20c924972578585', '31.222.203.2', 1677733379, '__ci_last_regenerate|i:1677733379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('056c2e3263fa1c67ccf5d757938653df50a50abf', '31.222.203.2', 1677733379, '__ci_last_regenerate|i:1677733379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2274f56623d3cf1165c1aa1ff6a0cbdd1f93d2f', '31.222.203.2', 1677733379, '__ci_last_regenerate|i:1677733379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('958a7e63c5b315e97bb25413ded9bede23b23954', '31.222.203.2', 1677733379, '__ci_last_regenerate|i:1677733379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8089446ac6d3c48a4bc1a6a0e7de24a9d374c2d8', '45.120.39.89', 1677734225, '__ci_last_regenerate|i:1677734225;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677670747\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c71abcde11dc8d62ea397b5fe91f45b2e7883f3', '45.120.39.89', 1677735752, '__ci_last_regenerate|i:1677735752;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677670747\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677734506;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('886f9201c1c87ffe519f1d19f0eca51b2061f51f', '31.222.203.2', 1677735182, '__ci_last_regenerate|i:1677735182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c44e0cdfa729b606ba256368847b08e99db81c23', '31.222.203.2', 1677735182, '__ci_last_regenerate|i:1677735182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d20507a63f41b7ae18e97dce1925b23dc6f4b421', '31.222.203.2', 1677735182, '__ci_last_regenerate|i:1677735182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06088ad645d8e6ba5395ee876c28a28997292a13', '31.222.203.2', 1677735182, '__ci_last_regenerate|i:1677735182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a528179c950b7de4a1b13b9452bf217563de551', '31.222.203.2', 1677735182, '__ci_last_regenerate|i:1677735182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4959516c546651303828c251825446488a554e27', '31.222.203.2', 1677735182, '__ci_last_regenerate|i:1677735182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ee84e46a297a8f0b478f416a561fee83d962ad', '45.120.39.89', 1677736362, '__ci_last_regenerate|i:1677736362;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677670747\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677735885;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74ffea2a7132986ceadde556e1f8bc399ff3f0bc', '45.120.39.89', 1677738085, '__ci_last_regenerate|i:1677738085;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677670747\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677738081;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff6c0c3d2d88dbf92f83196c0abb46bef55cf806', '31.222.203.2', 1677736991, '__ci_last_regenerate|i:1677736991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca8b20de21318236ae49b46c0ea8f39e03bdc262', '31.222.203.2', 1677736991, '__ci_last_regenerate|i:1677736991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7cc94774c243a6bc886ced11ef936960d4d271', '31.222.203.2', 1677736991, '__ci_last_regenerate|i:1677736991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d466d72dfe33ebbd14fa09a961a333b78c561717', '31.222.203.2', 1677736991, '__ci_last_regenerate|i:1677736991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff3e0b11e2c56ccc07de53a5831452e1d38e9ea1', '31.222.203.2', 1677736991, '__ci_last_regenerate|i:1677736991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4eabc7c0b6e23345ad4572febd1a39086c562a', '31.222.203.2', 1677736991, '__ci_last_regenerate|i:1677736991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02736791ec2ca718b76f9200f140c92a208078dd', '45.120.39.89', 1677738116, '__ci_last_regenerate|i:1677738085;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677670747\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677738115;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20607258fa80bc0d40add2ac1dc2229804230d3b', '31.222.203.2', 1677738770, '__ci_last_regenerate|i:1677738770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('999ba4abfe0419a3cd59d50f1fec9237e46ca759', '31.222.203.2', 1677738770, '__ci_last_regenerate|i:1677738770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e532a401f72fe197b4d629cb9896d6d3cf3a2444', '31.222.203.2', 1677738770, '__ci_last_regenerate|i:1677738770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2f4ad480a96cc6d8c55ced9a7b92f13b194eea5', '31.222.203.2', 1677738770, '__ci_last_regenerate|i:1677738770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbda9eedf8750032cce33355700b289e648e1c61', '31.222.203.2', 1677738770, '__ci_last_regenerate|i:1677738770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0bbd470fb0a542ec7b79e4e6433b55bfd92b2a', '31.222.203.2', 1677738770, '__ci_last_regenerate|i:1677738770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f11967fe00ce5b2db81bd7917bfdeea9410b8bf', '31.222.203.2', 1677740572, '__ci_last_regenerate|i:1677740572;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c670d3fb4593b0935aac44fd9fe0a444b1beb6', '31.222.203.2', 1677740572, '__ci_last_regenerate|i:1677740572;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a235bc92e7d88eff17d41f68d3d27a6d1aaa2728', '31.222.203.2', 1677740572, '__ci_last_regenerate|i:1677740572;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('362442d68461c3907ba4e92a01e804072bc5eab9', '31.222.203.2', 1677740572, '__ci_last_regenerate|i:1677740572;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdd3c548b0dcb39e2e0f5137abb3a119d060f72c', '31.222.203.2', 1677740572, '__ci_last_regenerate|i:1677740572;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c35aef58dc52b99dccd2088c760ba90c985b1b', '31.222.203.2', 1677740572, '__ci_last_regenerate|i:1677740572;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e4071bd6266a3173afe276aea6da116843d67e9', '31.222.203.2', 1677742359, '__ci_last_regenerate|i:1677742359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a927bbffa9fa91474865a382e6b9724d536ac08', '31.222.203.2', 1677742359, '__ci_last_regenerate|i:1677742359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37897794a16d9745b972ce3dc4c7ffa389ee82a2', '31.222.203.2', 1677742359, '__ci_last_regenerate|i:1677742359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebebfd95823f5b0a0b637b7f8e7e83481c477a88', '31.222.203.2', 1677742359, '__ci_last_regenerate|i:1677742359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1923bf9da6748b1840b9ab7b240554bccc6a1fd1', '31.222.203.2', 1677742359, '__ci_last_regenerate|i:1677742359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e88f26b69b3c8de26976a7aa49b92658eb798b', '31.222.203.2', 1677742359, '__ci_last_regenerate|i:1677742359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e9d5fff1970f7690c10cc557e2ef89b88017e79', '31.222.203.2', 1677744192, '__ci_last_regenerate|i:1677744192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ce2c80ef696b46f0270f09bed50071cccbe836', '31.222.203.2', 1677744192, '__ci_last_regenerate|i:1677744192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754b977e8ffb24265cdd7fb15ab2f4593c54a844', '31.222.203.2', 1677744192, '__ci_last_regenerate|i:1677744192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7d94e69d2ed3269badac68f47fcc4c2d54b213', '31.222.203.2', 1677744192, '__ci_last_regenerate|i:1677744192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3c9a39d2b77b5715b3f25e6ac43ddadb5c4c69', '31.222.203.2', 1677744192, '__ci_last_regenerate|i:1677744192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54b70a538b710b6e18d889caca101ebdbce26dde', '31.222.203.2', 1677744192, '__ci_last_regenerate|i:1677744192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d8f3fc8500631ec427afec0e2e0b2f9d3f736d8', '31.222.203.2', 1677745973, '__ci_last_regenerate|i:1677745973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7a762bea3cbeb67b5de5b62244ed8e1efaf0a0', '31.222.203.2', 1677745973, '__ci_last_regenerate|i:1677745973;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('065ef4cb4c26448f465554601274938cefdf9752', '31.222.203.2', 1677745973, '__ci_last_regenerate|i:1677745973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc9459b6289ad6779264c8cd2208ca3301ebc2d', '31.222.203.2', 1677745973, '__ci_last_regenerate|i:1677745973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aeb245647ad242490651101b6c81696e11fc110', '31.222.203.2', 1677745973, '__ci_last_regenerate|i:1677745973;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4af93dc86ae600b1540403cefaf3805dad0ac3', '31.222.203.2', 1677745973, '__ci_last_regenerate|i:1677745973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77559c08ddb18b5faaa8262125a5717621989e7', '31.222.203.2', 1677747772, '__ci_last_regenerate|i:1677747772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d0d5b4d0d042f2a07bfd19e08d00b587731db84', '31.222.203.2', 1677747772, '__ci_last_regenerate|i:1677747772;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44dfbcfb08914c6ec1e09c4e1b0c19629f6d109a', '31.222.203.2', 1677747772, '__ci_last_regenerate|i:1677747772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59db53146409eeea1419574a6e8f2f9175066347', '31.222.203.2', 1677747772, '__ci_last_regenerate|i:1677747772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0bb26faf625e7811ef2de2c01f07f0dc76e99e', '31.222.203.2', 1677747772, '__ci_last_regenerate|i:1677747772;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c4045f96e0b2f8329a7624b6d1ac024995cd6e', '31.222.203.2', 1677747772, '__ci_last_regenerate|i:1677747772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b112d6bccf3d1fd41f03f3f76a518b5166549af', '31.222.203.2', 1677749559, '__ci_last_regenerate|i:1677749559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0d98c99974930f13556a6932904c823e2e55aa', '31.222.203.2', 1677749559, '__ci_last_regenerate|i:1677749559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43761c4b8b6ac6eebfe86a5b840a55fd6bb1c525', '31.222.203.2', 1677749559, '__ci_last_regenerate|i:1677749559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1df0bfd14c9fb71621e12afb47624bdcf3ab1d28', '31.222.203.2', 1677749559, '__ci_last_regenerate|i:1677749559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836b84a67126784f97506b8618168d1d42428669', '31.222.203.2', 1677749559, '__ci_last_regenerate|i:1677749559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8310d7f823c12c1a22d6fd9a00051ebab1875e2', '31.222.203.2', 1677749559, '__ci_last_regenerate|i:1677749559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6618dd8028d87bd63767d2b16202038a7317065', '31.222.203.2', 1677751367, '__ci_last_regenerate|i:1677751367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b5f6e9ae0cd31b788a8a43116917bbb5fa03ac', '31.222.203.2', 1677751367, '__ci_last_regenerate|i:1677751367;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0512bef24fa90ecf922c64ce9f4a09648cb3b2e', '31.222.203.2', 1677751367, '__ci_last_regenerate|i:1677751367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277a286de889bacf53d9498ca7ba59fe836e90f7', '31.222.203.2', 1677751367, '__ci_last_regenerate|i:1677751367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e3d7087a69b8c4317018b6a4f52de30fd1c5ebe', '31.222.203.2', 1677751367, '__ci_last_regenerate|i:1677751367;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c51f460c1b81eeb755d06abafc6b6b84eb35477', '31.222.203.2', 1677751367, '__ci_last_regenerate|i:1677751367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af94c3b54dc8c8c777685873325c4c5a930eb22', '37.111.219.142', 1677752988, '__ci_last_regenerate|i:1677752988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677733948\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677752423;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb91260fe21469afa6b137d4e2e1e67754f5992', '45.120.39.89', 1677754623, '__ci_last_regenerate|i:1677754623;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677733948\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677754275;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122a636a94dbdba1ff3765e8b98d79c0494f7be2', '31.222.203.2', 1677753161, '__ci_last_regenerate|i:1677753161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d8a93fa03a57de907a573d750cb155b27f61cbd', '31.222.203.2', 1677753161, '__ci_last_regenerate|i:1677753161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd29aee50481fa834e10bd64bc9890f130339484', '31.222.203.2', 1677753161, '__ci_last_regenerate|i:1677753161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40a00f1aed2ffaa1c4774aa3bac8e2badf37e6f2', '31.222.203.2', 1677753161, '__ci_last_regenerate|i:1677753161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fccf9b3c5fb122b1b69aac0ef44fcfc6240e433', '31.222.203.2', 1677753161, '__ci_last_regenerate|i:1677753161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898e0a3948bb39723c5e7069e0c476078e7b97c5', '31.222.203.2', 1677753161, '__ci_last_regenerate|i:1677753161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdd8ab4b4a02df74021b27063efb70890fbc7c4d', '45.120.39.89', 1677757158, '__ci_last_regenerate|i:1677757158;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677733948\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677754643;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e5412b5814e044dfc0bb085f691cb2a9cb9873b', '31.222.203.2', 1677754964, '__ci_last_regenerate|i:1677754964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3d8fc99ac606eb3fb268aa5c0b71ee1b0c5986', '31.222.203.2', 1677754964, '__ci_last_regenerate|i:1677754964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701cc03d18ee223d37e95fde50a8e872f4365921', '31.222.203.2', 1677754964, '__ci_last_regenerate|i:1677754964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b30b7d7fc19ddd69e096e9c63215d92eb063ab9', '31.222.203.2', 1677754964, '__ci_last_regenerate|i:1677754964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea798ef41b6e5956c462c89683d05d4a91574b29', '31.222.203.2', 1677754964, '__ci_last_regenerate|i:1677754964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd14a3d455670c11b2c22cd45e5e5c87f59e38a', '31.222.203.2', 1677754964, '__ci_last_regenerate|i:1677754964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d7148437740327f16a8033dfc72649f38a8881', '31.222.203.2', 1677756755, '__ci_last_regenerate|i:1677756755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0491d59961c22158b6c00c3f257dec2d455a329a', '31.222.203.2', 1677756755, '__ci_last_regenerate|i:1677756755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('247086f3f147138842780f80efca4803a72bb70b', '31.222.203.2', 1677756755, '__ci_last_regenerate|i:1677756755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a9fcf9b2cb9ab67bc56e8cc34b051ed49dc1eec', '31.222.203.2', 1677756755, '__ci_last_regenerate|i:1677756755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00256da2cef931a29b400e82f21381c4b07413ba', '31.222.203.2', 1677756755, '__ci_last_regenerate|i:1677756755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bbef8783d3d2c9232c7b50843aa56974e21e765', '31.222.203.2', 1677756755, '__ci_last_regenerate|i:1677756755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb75a7b8233fb7c5db2b7df8e077d55dc7aff29', '45.120.39.89', 1677766880, '__ci_last_regenerate|i:1677766880;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677733948\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677762107;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b98366f263061520fb42a8cfd2aef82d7f8f9c8', '31.222.203.2', 1677758586, '__ci_last_regenerate|i:1677758586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feacd2d43ef17fc8b5496fe93aaa17f214a9e891', '31.222.203.2', 1677758586, '__ci_last_regenerate|i:1677758586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c6ef5e48aea0c501a4997623bbb777340697cf5', '31.222.203.2', 1677758586, '__ci_last_regenerate|i:1677758586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7341c2e36dd43d5b11c1a27cbccbecafcb6e5bfe', '31.222.203.2', 1677758586, '__ci_last_regenerate|i:1677758586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02013a240f542f7e8580be2b9c54a83010f4596', '31.222.203.2', 1677758586, '__ci_last_regenerate|i:1677758586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13e3acee1632ccb983052badcb675cda7d6e418e', '31.222.203.2', 1677758586, '__ci_last_regenerate|i:1677758586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f8e08549f37aba90e724fd5df688d45049fc56', '31.222.203.2', 1677760361, '__ci_last_regenerate|i:1677760361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fd7ae4b0ebad755ce7171089f947bfcfddde0ef', '31.222.203.2', 1677760361, '__ci_last_regenerate|i:1677760361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6789a746aca1d23559294a6228cb884e111d3d5d', '31.222.203.2', 1677760361, '__ci_last_regenerate|i:1677760361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371ab184705684f8f028a1bd325a422f8cdfbd5e', '31.222.203.2', 1677760361, '__ci_last_regenerate|i:1677760361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c691f075594927f18b5ac312c0c0aafce22a6fcd', '31.222.203.2', 1677760361, '__ci_last_regenerate|i:1677760361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f968ffde4e62653007db91ba181d42e067948f', '31.222.203.2', 1677760361, '__ci_last_regenerate|i:1677760361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af01def1a708374bbe9929c9b6900f21a3c9de7', '31.222.203.2', 1677762175, '__ci_last_regenerate|i:1677762175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6246033cd380283861fb07bcd56ad123fa3fbbb', '31.222.203.2', 1677762175, '__ci_last_regenerate|i:1677762175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd35fa2dcd1b9b54ab669c1eb8612b436c161356', '31.222.203.2', 1677762175, '__ci_last_regenerate|i:1677762175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b774872a5c0a48ee5c5f30cba884b162f7ba209d', '31.222.203.2', 1677762175, '__ci_last_regenerate|i:1677762175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea65232672b5399a41ddfee56f279323076b1280', '31.222.203.2', 1677762175, '__ci_last_regenerate|i:1677762175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0a3c8ae82530d872499bb7f80c6869fee4c336', '31.222.203.2', 1677762175, '__ci_last_regenerate|i:1677762175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fecd88bc2f34ea41cc37098805a1fb002c78570', '31.222.203.2', 1677763974, '__ci_last_regenerate|i:1677763974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b66c2ba9e358a3b085bc9fcab8b1d210202545', '31.222.203.2', 1677763979, '__ci_last_regenerate|i:1677763979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ae7f7c1f07a333173ea2770425d755053401b9', '31.222.203.2', 1677763979, '__ci_last_regenerate|i:1677763979;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f8ee94c0743c0c54a65a7e6e3280fc934590de', '31.222.203.2', 1677763979, '__ci_last_regenerate|i:1677763979;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814050a5855a00d5e5ab9ad04d8234785a94a402', '31.222.203.2', 1677763979, '__ci_last_regenerate|i:1677763979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fea6d8642f3dde1c2de1e67b302ac6a244ab428', '31.222.203.2', 1677763979, '__ci_last_regenerate|i:1677763979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15ec3342b8c537e495cb8efb106c311d752ec4e2', '31.222.203.2', 1677765777, '__ci_last_regenerate|i:1677765777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced9c5191a95717b851a09dc0b7274bf82e36ad3', '31.222.203.2', 1677765777, '__ci_last_regenerate|i:1677765777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6672d880e8ed6881738e9ca6512054c82f0ffa79', '31.222.203.2', 1677765777, '__ci_last_regenerate|i:1677765777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f8df44f77fb1b82f14261c48fae8e615cdede1', '31.222.203.2', 1677765777, '__ci_last_regenerate|i:1677765777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56230509e61cb5c42d860441c44570cb8299f298', '31.222.203.2', 1677765777, '__ci_last_regenerate|i:1677765777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d513c97d21f523dc0e4eb8cdd47a4bcb31ae8f0', '31.222.203.2', 1677765777, '__ci_last_regenerate|i:1677765777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1be3a6be9c8d049a24615eeb88daf837cb34863', '45.120.39.89', 1677767442, '__ci_last_regenerate|i:1677767442;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677733948\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677766890;register_id|s:3:\"357\";cash_in_hand|s:9:\"6060.0000\";register_open_time|s:19:\"2023-03-01 19:54:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b36b6a1593bfaac1cecf12ddf4ff0206db80d6', '45.120.39.89', 1677767464, '__ci_last_regenerate|i:1677767442;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677733948\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677767464;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e36b5cb95b7b3d2a701a38851ea433014c8ca6a', '31.222.203.2', 1677767556, '__ci_last_regenerate|i:1677767556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bf41acd60757fa084a1e4652c5a7730d4b47129', '31.222.203.2', 1677767556, '__ci_last_regenerate|i:1677767556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fda776095727353912d64d65238557b9fb27148', '31.222.203.2', 1677767556, '__ci_last_regenerate|i:1677767556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333d1f730eedfeafb710af6bd208c5f60c0cddfc', '31.222.203.2', 1677767556, '__ci_last_regenerate|i:1677767556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61a3d8c1ea8025df5034546e1b2d21705ec17b3d', '31.222.203.2', 1677767556, '__ci_last_regenerate|i:1677767556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044f2934733beb482be0fbe646b020a73087021d', '31.222.203.2', 1677767556, '__ci_last_regenerate|i:1677767556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27ce6b65a741eb29874c415e44c63363ea38a4c1', '31.222.203.2', 1677769369, '__ci_last_regenerate|i:1677769369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7908939f4af059be32935867f14a7d3b2701de', '31.222.203.2', 1677769369, '__ci_last_regenerate|i:1677769369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc30dc76059dcda4d4f826ec48d6eab00ac69b23', '31.222.203.2', 1677769369, '__ci_last_regenerate|i:1677769369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de997a4e392b6341fca76777f4309e83f1daea60', '31.222.203.2', 1677769369, '__ci_last_regenerate|i:1677769369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a4b86bca3f6852f416f7d53c56a2ef61639eb8', '31.222.203.2', 1677769369, '__ci_last_regenerate|i:1677769369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df252cf2aabdf811cc29ee7d29a3b4f77b1beec9', '31.222.203.2', 1677769369, '__ci_last_regenerate|i:1677769369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eebf56962411dd18c6e73a2faa05a30a6b9980dc', '31.222.203.2', 1677771163, '__ci_last_regenerate|i:1677771163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e058a70394e0e9a6465f243a588b19705e5dc1fd', '31.222.203.2', 1677771163, '__ci_last_regenerate|i:1677771163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad30f8037c645821a96ac2aae9a21d08fa5007c8', '31.222.203.2', 1677771163, '__ci_last_regenerate|i:1677771163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10d822f40b3af24803d4b68f5f48e12c5fcd69bd', '31.222.203.2', 1677771163, '__ci_last_regenerate|i:1677771163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1df095a0fd9d0f92f11806b50287d8cb10974f5', '31.222.203.2', 1677771163, '__ci_last_regenerate|i:1677771163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7dd261053fdd6e2aabfae2648b09f0d43928298', '31.222.203.2', 1677771163, '__ci_last_regenerate|i:1677771163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566d2074d9ed939a5d3dcff0c81785203f43453d', '31.222.203.2', 1677772970, '__ci_last_regenerate|i:1677772970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2f04dca383d475a8067f30e6ed915468326d1a', '31.222.203.2', 1677772970, '__ci_last_regenerate|i:1677772970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b456bbce79f9c001ef919be0e2740d41ed554a', '31.222.203.2', 1677772970, '__ci_last_regenerate|i:1677772970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2463313beea4058d8ba764ccce71f9313e2a8e', '31.222.203.2', 1677772970, '__ci_last_regenerate|i:1677772970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f5debef161acef3d0f6ec9623c0e3ca27fbd1f1', '31.222.203.2', 1677772970, '__ci_last_regenerate|i:1677772970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f1339ef00a0e81e02c43a1646ef10d521695e5', '31.222.203.2', 1677772970, '__ci_last_regenerate|i:1677772970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fa6f6bedb2e8328337d0d33f7fd5d1a00ba307', '31.222.203.2', 1677774770, '__ci_last_regenerate|i:1677774770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('693b8a62dc447125d234783b048585ba94ed249f', '31.222.203.2', 1677774770, '__ci_last_regenerate|i:1677774770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b43b3d96e509b4baa7f967ef5b7c796a4efd1238', '31.222.203.2', 1677774770, '__ci_last_regenerate|i:1677774770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13c3a80001b7a4bf330c0f0fee881c2567b4b188', '31.222.203.2', 1677774770, '__ci_last_regenerate|i:1677774770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f64dce54944f9dbff3830ac946d4cdb03b36543a', '31.222.203.2', 1677774770, '__ci_last_regenerate|i:1677774770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0269cb6d11684151a04b504bbb0184fdc0e761e6', '31.222.203.2', 1677774770, '__ci_last_regenerate|i:1677774770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb23ac196afb6bf1eb633de8dcb68d8d49ae8c65', '31.222.203.2', 1677776562, '__ci_last_regenerate|i:1677776562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ad4250587eb36c22a39e6f5988a493044dfc5c', '31.222.203.2', 1677776562, '__ci_last_regenerate|i:1677776562;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9abcce1e153a37f054a1aeaffa4ab75cafe218e', '31.222.203.2', 1677776562, '__ci_last_regenerate|i:1677776562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24e1bcb2c5a3f72eb0576ae5d33df7a630baafa3', '31.222.203.2', 1677776562, '__ci_last_regenerate|i:1677776562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f24e9c9d4d9badf5c61933b29e857d97376de6fb', '31.222.203.2', 1677776562, '__ci_last_regenerate|i:1677776562;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('014ad8b7edb0143ac0431db05e094e2866f35a9f', '31.222.203.2', 1677776562, '__ci_last_regenerate|i:1677776562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af9cd0183a97e18fc7ca624b0fa4d5dbc14541a2', '31.222.203.2', 1677778356, '__ci_last_regenerate|i:1677778356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e790ff9afa02229f1408f24577beb6dbed61f69f', '31.222.203.2', 1677778357, '__ci_last_regenerate|i:1677778357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d29b1a53c05a441687f5678ff5ce716aa8aae3e', '31.222.203.2', 1677778357, '__ci_last_regenerate|i:1677778357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57d30acfafe9d5e4cffa369e55f3f2004312c45f', '31.222.203.2', 1677778357, '__ci_last_regenerate|i:1677778357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dd61420c8fe02d7ccead79d4c586058c2c1ef86', '31.222.203.2', 1677778357, '__ci_last_regenerate|i:1677778357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf37aff5344f16d1bd5876d01184540ab29a4d4', '31.222.203.2', 1677778357, '__ci_last_regenerate|i:1677778357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a0fb7e5887d2dd241a060ac732fdd36c9cd09d', '31.222.203.2', 1677780179, '__ci_last_regenerate|i:1677780179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca2ca4d856729cce1f2f335cbc346ce4267c9a2f', '31.222.203.2', 1677780179, '__ci_last_regenerate|i:1677780179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ab341b402de6de6a7598dd772a7af1024b2e31', '31.222.203.2', 1677780179, '__ci_last_regenerate|i:1677780179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28247d57876dcc51864c0dd39ab3c7054a67f6d', '31.222.203.2', 1677780179, '__ci_last_regenerate|i:1677780179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1acb8ff6a5728c8a0673ff8a5032fea427f74d67', '31.222.203.2', 1677780179, '__ci_last_regenerate|i:1677780179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26cd007f2b23bb308a941db6fd4c7f5e8f54ea70', '31.222.203.2', 1677780179, '__ci_last_regenerate|i:1677780179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f261e087c5ab4e2b22a15f78cbcbc3c087c33bf4', '208.109.34.70', 1677780838, '__ci_last_regenerate|i:1677780838;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911162300dee34606662b2e9c51550e2dbf98d14', '208.109.34.70', 1677780839, '__ci_last_regenerate|i:1677780839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb742af6a9e97eb98c1e6c27c12a03643a32f54', '208.109.34.70', 1677780839, '__ci_last_regenerate|i:1677780839;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b446ba2e3f8a37e2b4b54560f275e32d2b7765e1', '208.109.34.70', 1677780839, '__ci_last_regenerate|i:1677780839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d933afdead95c6d87e5baa9cfa3e95d918defc6f', '31.222.203.2', 1677781963, '__ci_last_regenerate|i:1677781963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd7affc1e541f34b805e0a2f77640ca5f887e8b', '31.222.203.2', 1677781964, '__ci_last_regenerate|i:1677781964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191482c8afc6a7079cb40614f3c514290f19526f', '31.222.203.2', 1677781964, '__ci_last_regenerate|i:1677781964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3676356f42fdae83b3e23029b57af59b8787c5d2', '31.222.203.2', 1677781964, '__ci_last_regenerate|i:1677781964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af38892fba220d6eb0c12cbea9fabdfe605bf51b', '31.222.203.2', 1677781964, '__ci_last_regenerate|i:1677781964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09807b1ca3eefce0cf807849daf033f094ebaf5c', '31.222.203.2', 1677781964, '__ci_last_regenerate|i:1677781964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('add5afc2f88db07ec83b2f71988b499c414e82a1', '47.241.15.39', 1677782638, '__ci_last_regenerate|i:1677782638;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e51de24291a724bb5e98f6b56b1ef63a2fb6198e', '47.241.15.39', 1677782638, '__ci_last_regenerate|i:1677782638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('263673a7cbdb4a9cafc3311f47f3130e3396544e', '47.241.15.39', 1677782639, '__ci_last_regenerate|i:1677782639;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5dd52c63d9464e747f25d50e1740ca43e12501', '47.241.15.39', 1677782640, '__ci_last_regenerate|i:1677782640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1448a0b1e130fd0d5c3c857375b2fc6a25341161', '31.222.203.2', 1677783780, '__ci_last_regenerate|i:1677783779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abce67ca83e55d63bbb84b2d3c0a0ece65e071b3', '31.222.203.2', 1677783785, '__ci_last_regenerate|i:1677783785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0082099e54c14b8c02325f69876661a79b1af685', '31.222.203.2', 1677783785, '__ci_last_regenerate|i:1677783785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('497ffb2e616f6fcdd7a3db2652da906df9195d54', '31.222.203.2', 1677783785, '__ci_last_regenerate|i:1677783785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ab5fb2650a1d2fa596d59f35995d22c6ba41aa6', '31.222.203.2', 1677783785, '__ci_last_regenerate|i:1677783785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a05eef512f912215e37eed9511e55a903e2d9d9e', '31.222.203.2', 1677783785, '__ci_last_regenerate|i:1677783785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3177b8861a878f16b9c9e830c3c5bba886a6102d', '31.222.203.2', 1677785561, '__ci_last_regenerate|i:1677785561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aa0af540263628109dc9ffe4f1f13f1265df85e', '31.222.203.2', 1677785561, '__ci_last_regenerate|i:1677785561;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bac32dc8c2719e9457644f1fa1692f00217fff8', '31.222.203.2', 1677785561, '__ci_last_regenerate|i:1677785561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c759d23e173572dd48f9f6fe7bf2cd8efef8d1c', '31.222.203.2', 1677785561, '__ci_last_regenerate|i:1677785561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7a6b1ac84684b1b9dcf1fac31e732a6b38e4c8', '31.222.203.2', 1677785561, '__ci_last_regenerate|i:1677785561;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63f4314f16618b711cdd9c76a1d4e45510286aaa', '31.222.203.2', 1677785561, '__ci_last_regenerate|i:1677785561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238968fd68af2957017350b7ef4785246356731a', '31.222.203.2', 1677787383, '__ci_last_regenerate|i:1677787383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22faaceac53986321f0c200393d12952a61699d3', '31.222.203.2', 1677787383, '__ci_last_regenerate|i:1677787383;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fdd3c3094b27df93c6f10ced1e3b8ce01b7eaa', '31.222.203.2', 1677787383, '__ci_last_regenerate|i:1677787383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc303659b65cb3ed2c957a0d64c9d3b051697c7e', '31.222.203.2', 1677787383, '__ci_last_regenerate|i:1677787383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45e1692a9464b2a56c34234bcc531bdf03761bc7', '31.222.203.2', 1677787383, '__ci_last_regenerate|i:1677787383;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a27e9b6e1ca2dae244bf22ef56dd2e82f6fb533', '31.222.203.2', 1677787383, '__ci_last_regenerate|i:1677787383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae866fb11dce839180bd8a6588d0cc09c900a39', '31.222.203.2', 1677789158, '__ci_last_regenerate|i:1677789158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d093656ea8c75c852746493eedfcbe565947b88', '31.222.203.2', 1677789158, '__ci_last_regenerate|i:1677789158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19e5a81a4601ad9a931244346e6ac2e7e7e2346', '31.222.203.2', 1677789158, '__ci_last_regenerate|i:1677789158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd607b2184adba186d044dbf1dd022a2b14456ff', '31.222.203.2', 1677789158, '__ci_last_regenerate|i:1677789158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad22acb564f3c123c4190326f6c560fcc2adb82', '31.222.203.2', 1677789158, '__ci_last_regenerate|i:1677789158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd0bf480ffc935072b483b7e9c8754ade0a483a', '31.222.203.2', 1677789158, '__ci_last_regenerate|i:1677789158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70965ee59e6ac337658cdae7cc0205e77384e622', '31.222.203.2', 1677790983, '__ci_last_regenerate|i:1677790983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef207d3e59a3628415aa3346ff6b76ee036e877', '31.222.203.2', 1677790984, '__ci_last_regenerate|i:1677790984;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aa329a0157b4f7319844c95c025eb56ef74c41', '31.222.203.2', 1677790984, '__ci_last_regenerate|i:1677790984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('caf5911663875dd13545947a81173c875453bddc', '31.222.203.2', 1677790984, '__ci_last_regenerate|i:1677790984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4774541299a64ecc995a5ca48d16b499dcaf5ddd', '31.222.203.2', 1677790984, '__ci_last_regenerate|i:1677790984;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9045aae2bff7f804264542775c44e9aea08b8de', '31.222.203.2', 1677790984, '__ci_last_regenerate|i:1677790984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f90c7e5f6ea31bd3fffdaa5d97a12b4af3f982', '198.235.24.36', 1677791906, '__ci_last_regenerate|i:1677791906;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff7a2da2893263175c11265fe2eb15f243893e2', '31.222.203.2', 1677792765, '__ci_last_regenerate|i:1677792765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07c4dddabe12d281bcb8952e3f3053c985535cb8', '31.222.203.2', 1677792765, '__ci_last_regenerate|i:1677792765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae52fed29b8bbe92679924449ceb99c92643951', '31.222.203.2', 1677792765, '__ci_last_regenerate|i:1677792765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc95a6b69c302d77bc1cfae5618af0aa576e38b', '31.222.203.2', 1677792765, '__ci_last_regenerate|i:1677792765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cc190ee9109945f2e0ad7b6338bb01f2c849ed', '31.222.203.2', 1677792765, '__ci_last_regenerate|i:1677792765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3e3ba43d20f953a30a6ad4c19bfdccc6ba8bd5', '31.222.203.2', 1677792765, '__ci_last_regenerate|i:1677792765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b5bbdb543174cf63a4bcc0c9f330da0fbc63408', '31.222.203.2', 1677794566, '__ci_last_regenerate|i:1677794566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4699eb56ba026219dc601394a365f4f30b90f588', '31.222.203.2', 1677794566, '__ci_last_regenerate|i:1677794566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e907f92700743688ecdc84735e9ef97e0c79529', '31.222.203.2', 1677794566, '__ci_last_regenerate|i:1677794566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88b0b0a304863af64b718cd67622951d73be416', '31.222.203.2', 1677794566, '__ci_last_regenerate|i:1677794566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524a64f53a2df9cc3bd21b72bf68002dfa3f7a66', '31.222.203.2', 1677794566, '__ci_last_regenerate|i:1677794566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc36401ec6f3fcc2909f05a8783df3953d8d183c', '31.222.203.2', 1677794566, '__ci_last_regenerate|i:1677794566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5bd0f218686bed19b1375c3c69bee2b17143a03', '31.222.203.2', 1677796374, '__ci_last_regenerate|i:1677796374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7762f886dbf531ad5dee3a6aab2cdb33f4012fb1', '31.222.203.2', 1677796374, '__ci_last_regenerate|i:1677796374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d92427796dc8e3aba33469df564f92197ab3658a', '31.222.203.2', 1677796374, '__ci_last_regenerate|i:1677796374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebc70ded139bf483e5106fcd6d8b453eab8e3880', '31.222.203.2', 1677796374, '__ci_last_regenerate|i:1677796374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a21eb23b41d6327d5318646a2841a63a4d6952', '31.222.203.2', 1677796374, '__ci_last_regenerate|i:1677796374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41482fb02ccc96ebd248a5fa330b5b20c152a7ed', '31.222.203.2', 1677796374, '__ci_last_regenerate|i:1677796374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235df7a6a65d8a84a9cb09f037605df6c98b3846', '31.222.203.2', 1677798177, '__ci_last_regenerate|i:1677798176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('902181805e7c01307c59470c154c9489e7a04b00', '31.222.203.2', 1677798177, '__ci_last_regenerate|i:1677798177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c10fd28f8d925977684f9206ee3684084b04904a', '31.222.203.2', 1677798177, '__ci_last_regenerate|i:1677798177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfccb4460d15bb41a9601ea579e2e5b2eca51e1', '31.222.203.2', 1677798177, '__ci_last_regenerate|i:1677798177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514be0227f15a4dbc31538a5ce657c48600a7cae', '31.222.203.2', 1677798177, '__ci_last_regenerate|i:1677798177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f6aea3919391384f52fffa71b65bb4f114190a', '31.222.203.2', 1677798177, '__ci_last_regenerate|i:1677798177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e8af8b4294ceacdff6ece1659cf80bc88a02ce', '31.222.203.2', 1677799965, '__ci_last_regenerate|i:1677799965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2122dc30936f152bfbe69c76c0e67aad1693fcfc', '31.222.203.2', 1677799970, '__ci_last_regenerate|i:1677799970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8f36a635b18b2604718204c3b017fe73dc4239', '31.222.203.2', 1677799970, '__ci_last_regenerate|i:1677799970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec67039636ab36515c8ed300fe4b5b6abe2d87a', '31.222.203.2', 1677799970, '__ci_last_regenerate|i:1677799970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b0eee396501cd2d3149cb4f2c6442af4332afd', '31.222.203.2', 1677799970, '__ci_last_regenerate|i:1677799970;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9f56690e76deb58631e63a8f1be3584ac6d84a', '31.222.203.2', 1677799970, '__ci_last_regenerate|i:1677799970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6ce6857d042b382f3df333d54d6cb7b002e98c', '31.222.203.2', 1677801778, '__ci_last_regenerate|i:1677801778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3133e2d894080aecdab83062ebbddf08e14bc544', '31.222.203.2', 1677801778, '__ci_last_regenerate|i:1677801778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8017b5b7053c3091a192dfe3657f73004641fdc7', '31.222.203.2', 1677801778, '__ci_last_regenerate|i:1677801778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6215f858fed2f84e3d9be5ed80515ab3d6fbdc2', '31.222.203.2', 1677801778, '__ci_last_regenerate|i:1677801778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ec4188c9a08b13c1c8621274f6802fe61462b6', '31.222.203.2', 1677801778, '__ci_last_regenerate|i:1677801778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b93eef02a3caf5e08d62af46ad8a16a9b15df2c', '31.222.203.2', 1677801778, '__ci_last_regenerate|i:1677801778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2925e020ae2b2135e0e26052eb4ae2af9215b28e', '31.222.203.2', 1677803579, '__ci_last_regenerate|i:1677803579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1206dd20af4127afd940e7a403786d21f86e62d', '31.222.203.2', 1677803579, '__ci_last_regenerate|i:1677803579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9324f0dabb79efc254c6d6ca2e964d6be5748d3', '31.222.203.2', 1677803579, '__ci_last_regenerate|i:1677803579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa863325345f3acf9b403c366c0a4dba1e99fec1', '31.222.203.2', 1677803580, '__ci_last_regenerate|i:1677803580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('878ca041bf459b5550c52b5bf429e362f91a8601', '31.222.203.2', 1677803580, '__ci_last_regenerate|i:1677803580;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('453d4edadc8af0234051207133d12a1ae5de21c7', '31.222.203.2', 1677803580, '__ci_last_regenerate|i:1677803580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dcb590a7017354d5862cea9e7db2d775c141a72', '31.222.203.2', 1677805375, '__ci_last_regenerate|i:1677805375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8880b9b8d5a20356b8ec1c78d38025f38421ce', '31.222.203.2', 1677805375, '__ci_last_regenerate|i:1677805375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccb0d6fac7f2a0af2e1b04519ae881072520e444', '31.222.203.2', 1677805375, '__ci_last_regenerate|i:1677805375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4bb8f7a6f936d2df4d16f0940b46cd843e506ea', '31.222.203.2', 1677805375, '__ci_last_regenerate|i:1677805375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6267cba876caf1b7fe19e7ab68ee86b9e2374334', '31.222.203.2', 1677805375, '__ci_last_regenerate|i:1677805375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6500f47c7cf02133931a1eb71271fbcc3d7d2494', '31.222.203.2', 1677805375, '__ci_last_regenerate|i:1677805375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5577820becab1c3f84e806baedcfdade37a1eb88', '31.222.203.2', 1677807172, '__ci_last_regenerate|i:1677807172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f60c82fef2bedfa034b7dc683e190568cf2d4c', '31.222.203.2', 1677807172, '__ci_last_regenerate|i:1677807172;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acaf24ff56c33e5dffff2930edcfac95ae0d795', '31.222.203.2', 1677807172, '__ci_last_regenerate|i:1677807172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba6f77a7f026c318dd4f78b5f15ec2948cf95193', '31.222.203.2', 1677807172, '__ci_last_regenerate|i:1677807172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94bff467966f621dbc0378d3f3f4b06db57e65ae', '31.222.203.2', 1677807172, '__ci_last_regenerate|i:1677807172;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922bc76b378f7fd294a0411dfe4bc03cb32c6d27', '31.222.203.2', 1677807172, '__ci_last_regenerate|i:1677807172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a4409c5ecbeee94187bf024ffbc6bcd2c8c4f1', '31.222.203.2', 1677808968, '__ci_last_regenerate|i:1677808968;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56b5fffcafcbd8e27183f9a6b5b697a12239d4c', '31.222.203.2', 1677808969, '__ci_last_regenerate|i:1677808969;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d86b3621765580204f5d347ca22753a0ea16f8', '31.222.203.2', 1677808969, '__ci_last_regenerate|i:1677808969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbce86becb9ba12cf70f811e0314e86d01e94efd', '31.222.203.2', 1677808969, '__ci_last_regenerate|i:1677808969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082ff1df344998c08deaf93813bf965a8dceda43', '31.222.203.2', 1677808969, '__ci_last_regenerate|i:1677808969;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac4cf3e7e036463eddf6405f0447abbec734fe8a', '31.222.203.2', 1677808969, '__ci_last_regenerate|i:1677808969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3983d406b2d07a440675c7f4ed7b6599920283ff', '31.222.203.2', 1677810769, '__ci_last_regenerate|i:1677810769;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('284a89620ace5e345e898155a80f0c5d0b3fbad4', '31.222.203.2', 1677810769, '__ci_last_regenerate|i:1677810769;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc5ce5a7479d8bfd4087bc60b619b8ff3e7de5aa', '31.222.203.2', 1677810769, '__ci_last_regenerate|i:1677810769;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88bd75522c8c40a76a38a92e3abf5233a65cca42', '31.222.203.2', 1677810769, '__ci_last_regenerate|i:1677810769;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('040d1ac83f6ceea9f4f7993121929548e901f8b4', '31.222.203.2', 1677810769, '__ci_last_regenerate|i:1677810769;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abe57df19ff91749105dddaa95b360679caab0f9', '31.222.203.2', 1677810769, '__ci_last_regenerate|i:1677810769;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ece8bceedad5bf143ae884485c7ca7ab926f3cd', '31.222.203.2', 1677812581, '__ci_last_regenerate|i:1677812581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14396c96a8f8beed2cd55f8c1f8444156b0f82f2', '31.222.203.2', 1677812581, '__ci_last_regenerate|i:1677812581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19e9805e633b5da328197a30b65186d2f2415610', '31.222.203.2', 1677812581, '__ci_last_regenerate|i:1677812581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44b7bf0b28f6e10f2eba76383003476f717ff2fd', '31.222.203.2', 1677812581, '__ci_last_regenerate|i:1677812581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5fd735d356cafbd2956cb0593a1d1bf1d00a2c', '31.222.203.2', 1677812581, '__ci_last_regenerate|i:1677812581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d5510cc302735574781091f4642fab3821f0bbd', '31.222.203.2', 1677812581, '__ci_last_regenerate|i:1677812581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec8f90f551858a3dc1421c2cb62a5eb8cbf3bfe', '34.245.199.196', 1677813660, '__ci_last_regenerate|i:1677813660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f595eb0c405df62c90292ccce7012065d653a2', '31.222.203.2', 1677814376, '__ci_last_regenerate|i:1677814376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8b52483e6d2ace95bb16128e0077c44ad6397a', '31.222.203.2', 1677814376, '__ci_last_regenerate|i:1677814376;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9def50e96986c2486d65b223d48063f3b80f2723', '31.222.203.2', 1677814376, '__ci_last_regenerate|i:1677814376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b222cadcfcb56aa65cfb2febbc0565b1fa2bcbf', '31.222.203.2', 1677814381, '__ci_last_regenerate|i:1677814381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce62d7c2052ea402d45766c5cdfeedef6652e686', '31.222.203.2', 1677814381, '__ci_last_regenerate|i:1677814381;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c72cd47fb069de53e2d086e0f772642ef898613', '31.222.203.2', 1677814381, '__ci_last_regenerate|i:1677814381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b1268f99af1da389a3c11f6b9d417ea5a23601', '31.222.203.2', 1677816166, '__ci_last_regenerate|i:1677816166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b44cb359f1fbd27ca83970dc1ea9436e26d676', '31.222.203.2', 1677816166, '__ci_last_regenerate|i:1677816166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177c960164b33ec5bfad89a69ce67e79810dd68b', '31.222.203.2', 1677816166, '__ci_last_regenerate|i:1677816166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb971ee7484797293d7213f7f7cb5ec720c3230', '31.222.203.2', 1677816166, '__ci_last_regenerate|i:1677816166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d5f92d6a57c171e1a3a65562d97cbbd4bd65bb', '31.222.203.2', 1677816166, '__ci_last_regenerate|i:1677816166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1af2d45f3d0a2bf54d90b2f849cffb924d3b37fb', '31.222.203.2', 1677816166, '__ci_last_regenerate|i:1677816166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbbf1ba506d1ae8ce9104def4861509ff9d42c81', '31.222.203.2', 1677817984, '__ci_last_regenerate|i:1677817984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7045dc9da90f98626b673042e20da6d5d47dc4f3', '31.222.203.2', 1677817985, '__ci_last_regenerate|i:1677817985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fa1baaff5eea3cb650d5815b0ed38d6d6859e0', '31.222.203.2', 1677817985, '__ci_last_regenerate|i:1677817985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cd92873c53d544a3bed3c9e0a1f6f9f03788d3', '31.222.203.2', 1677817985, '__ci_last_regenerate|i:1677817985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38afcb59270c49b3c216ebc6bc2b287a850b038', '31.222.203.2', 1677817985, '__ci_last_regenerate|i:1677817985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42f4f3e6a6f705a63b3e6f10b8600d7e608eb5e2', '31.222.203.2', 1677817985, '__ci_last_regenerate|i:1677817985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e9ee9a775e50d0c1a1970e089d6515f6310fe48', '31.222.203.2', 1677819782, '__ci_last_regenerate|i:1677819782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea302778d41ae7a578994465ff01b4a180f0c438', '31.222.203.2', 1677819782, '__ci_last_regenerate|i:1677819782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a727f63ecdb72381bdded7e23cd319af732423a6', '31.222.203.2', 1677819782, '__ci_last_regenerate|i:1677819782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb83852dcd50468c84c755f5b05fddb778e8e694', '31.222.203.2', 1677819782, '__ci_last_regenerate|i:1677819782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0877bb1e864d263a7bda9a68c9326f9a5e768a44', '31.222.203.2', 1677819782, '__ci_last_regenerate|i:1677819782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c497d35db554702527de0963a4052fde7ffa4c27', '31.222.203.2', 1677819782, '__ci_last_regenerate|i:1677819782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3d0500fed944e2040360c1dd3522e26e24c657', '31.222.203.2', 1677821559, '__ci_last_regenerate|i:1677821559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72570e9a770faae3af25e6743c17d9103ad3ebfa', '31.222.203.2', 1677821559, '__ci_last_regenerate|i:1677821559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d20ac5d2fe592bb905a09258829ea35f3e4c09', '31.222.203.2', 1677821559, '__ci_last_regenerate|i:1677821559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b1c13c64dc65b3e47fb0105a4ebb5d358d67c9d', '31.222.203.2', 1677821559, '__ci_last_regenerate|i:1677821559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaea75962ac82c1343a2f09adccaa702179c6d14', '31.222.203.2', 1677821559, '__ci_last_regenerate|i:1677821559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793c17446ee628902a855bd9f23dbbd20e8ce6a4', '31.222.203.2', 1677821559, '__ci_last_regenerate|i:1677821559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc8ef842793e56f5959260d125c7b46c8c4e8b1', '45.120.39.89', 1677823988, '__ci_last_regenerate|i:1677823988;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677822817;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('515a41e1eef2bfc71319b02e68bdac436f99bc15', '116.204.230.24', 1677823241, '__ci_last_regenerate|i:1677823241;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677658101\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a6bb977f096a89601b0131c6ea8223d1647708', '116.204.230.24', 1677823301, '__ci_last_regenerate|i:1677823241;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677658101\";last_ip|s:14:\"116.204.230.27\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"aYohTb2Jr6NctEWjKVzL\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85b50e495cef48ac07889588bd622d38b8f8c67', '34.244.74.222', 1677823307, '__ci_last_regenerate|i:1677823307;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e38e8d97d4e4adaf7e46e14d167bbb5c64fd68', '34.244.74.222', 1677823309, '__ci_last_regenerate|i:1677823309;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8655dfa8da467744abb17c8288cecc3b7ce805e3', '34.244.74.222', 1677823310, '__ci_last_regenerate|i:1677823310;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('202cbc067b18b9ee915809f01214da8de6fd0127', '31.222.203.2', 1677823385, '__ci_last_regenerate|i:1677823385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc2ee2f3499a65b4d28941e20a7cc8b28e05d09d', '31.222.203.2', 1677823385, '__ci_last_regenerate|i:1677823385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fee9893dc535ac47249446ca9a1d7b9f3ac5bc5', '31.222.203.2', 1677823385, '__ci_last_regenerate|i:1677823385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a596e4329029d7ca0ddaab17058d2f8d916023cf', '31.222.203.2', 1677823385, '__ci_last_regenerate|i:1677823385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c88c28f8bea24974a46d72be9643a851ec1b56b', '31.222.203.2', 1677823385, '__ci_last_regenerate|i:1677823385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5800b8a2ca0b3e5c255d207eff43ee4cfbd6271', '31.222.203.2', 1677823385, '__ci_last_regenerate|i:1677823385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527803b9be491bedd59dac2b8444197842a2550c', '45.120.39.89', 1677824610, '__ci_last_regenerate|i:1677824610;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677823988;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eda2ec9fcf4a93ba6fa2227d21cbd403bb27991', '45.120.39.89', 1677826457, '__ci_last_regenerate|i:1677826457;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677824610;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1ff505ff30676f6361963a20f75fa727bdb130', '31.222.203.2', 1677825198, '__ci_last_regenerate|i:1677825198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4904848642ad645251d428c8425402c97e910965', '31.222.203.2', 1677825198, '__ci_last_regenerate|i:1677825198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6972098a9a91c3a80861056433ffa99de6925004', '31.222.203.2', 1677825198, '__ci_last_regenerate|i:1677825198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6bc2ca7ae69afd2dc275fe338ede2f982599f41', '31.222.203.2', 1677825198, '__ci_last_regenerate|i:1677825198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7606347224b3249f65b4fe819408234112033dd1', '31.222.203.2', 1677825198, '__ci_last_regenerate|i:1677825198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2908adbb8e97b5c4f913b1641ec20f2129c7b1ec', '31.222.203.2', 1677825198, '__ci_last_regenerate|i:1677825198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('048e7e2e0f69eaa653ba7b090a78c606744d47c9', '45.120.39.89', 1677827018, '__ci_last_regenerate|i:1677827018;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677826994;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f821495207c7a4aaa51b9825d36a85a88bf7d969', '31.222.203.2', 1677826972, '__ci_last_regenerate|i:1677826972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4f49a1f362effc6206422a7f07b3c118a5b8b22', '31.222.203.2', 1677826972, '__ci_last_regenerate|i:1677826972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed325baa3e297baa048f0a2a7d6f6a3bd503e4a', '31.222.203.2', 1677826972, '__ci_last_regenerate|i:1677826972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74f8beeedbf6f19aec830608cf40e70c96ec7ed', '31.222.203.2', 1677826972, '__ci_last_regenerate|i:1677826972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('545f8672150778ef083ea617c0016bbf9ffba925', '31.222.203.2', 1677826972, '__ci_last_regenerate|i:1677826972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42985a425e6316343a2f8fd9f38b24800f3707a2', '31.222.203.2', 1677826972, '__ci_last_regenerate|i:1677826972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e323db33f59a01d3fa985e68732a2dd52a906c', '45.120.39.89', 1677829459, '__ci_last_regenerate|i:1677829459;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677827085;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238d16cad0b1f9db44d961bbef2f3ed5ab098a1e', '31.222.203.2', 1677828767, '__ci_last_regenerate|i:1677828767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064d7e6ecd12f0d398f5dafd19b09fcce52c9006', '31.222.203.2', 1677828767, '__ci_last_regenerate|i:1677828767;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af4ac5f1d5a365f543612e24ef9beb805c5c12e8', '31.222.203.2', 1677828767, '__ci_last_regenerate|i:1677828767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739f652a26e881ccc461d1379387e0a2e7850a3a', '31.222.203.2', 1677828767, '__ci_last_regenerate|i:1677828767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7fce31ae2a1de873d2a07cc3940911b39f1a6bd', '31.222.203.2', 1677828767, '__ci_last_regenerate|i:1677828767;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d91b82b80f4ef470e204c4f8458cfdc6d324fa', '31.222.203.2', 1677828767, '__ci_last_regenerate|i:1677828767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e854a4301697259197f09e7a5b5f9950f95a3f1a', '45.120.39.89', 1677829896, '__ci_last_regenerate|i:1677829896;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677829463;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80b69f2121d55086888c22267f801d989997587a', '45.120.39.89', 1677831650, '__ci_last_regenerate|i:1677831650;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677829920;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4de726d0181ed556f862f8026bcd13eea5c15e', '31.222.203.2', 1677830589, '__ci_last_regenerate|i:1677830589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81aff94d34d9bfc61a9a0668bb7b411c2003b068', '31.222.203.2', 1677830589, '__ci_last_regenerate|i:1677830589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5713741db4d2be88cbe4c54ff1c01e222040ba64', '31.222.203.2', 1677830589, '__ci_last_regenerate|i:1677830589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be55861d46fbe74e475da3f7d8d3e251850dbc1', '31.222.203.2', 1677830589, '__ci_last_regenerate|i:1677830589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3552075ae97b012b1962a3ab402e6c56606d8917', '31.222.203.2', 1677830589, '__ci_last_regenerate|i:1677830589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc2ed24b9ffb95f288fdd4efdaa1c9e2de38d4d4', '31.222.203.2', 1677830589, '__ci_last_regenerate|i:1677830589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32358caa42d6b9d22d412958f0eca384448e226', '37.111.219.65', 1677833205, '__ci_last_regenerate|i:1677833205;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677833135;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff7c0cc9f3e062d63cd10569aceb0c0e9d22d85', '31.222.203.2', 1677832365, '__ci_last_regenerate|i:1677832365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6e6b3c7423e8ad82c7e30ddc01e597f03abb94e', '31.222.203.2', 1677832365, '__ci_last_regenerate|i:1677832365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('053de9aed35aa08a9b52cdfb208c0b066811e6e1', '31.222.203.2', 1677832365, '__ci_last_regenerate|i:1677832365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfaa3fc2d03f258e87e7aef99870ec245fe6d717', '31.222.203.2', 1677832365, '__ci_last_regenerate|i:1677832365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b18155e34c5196c6f741ddef8e773b09d289aba', '31.222.203.2', 1677832365, '__ci_last_regenerate|i:1677832365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a47d00f31cd3660c8d49f2c95a206174dd95c72', '31.222.203.2', 1677832365, '__ci_last_regenerate|i:1677832365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e6bd7dd277092f5099f0b1dc2c2dd4941daa98', '37.111.219.65', 1677838712, '__ci_last_regenerate|i:1677838712;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677834098;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13d8d70bc1cf042783370b834dac352b2d4023c0', '31.222.203.2', 1677834170, '__ci_last_regenerate|i:1677834170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d989ac965dafe71d052feebd66e2fb132a4f46', '31.222.203.2', 1677834170, '__ci_last_regenerate|i:1677834170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97ee62be0764362d13e232bfa60da4b8adbb2af', '31.222.203.2', 1677834170, '__ci_last_regenerate|i:1677834170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb7497a07c42f3d37064083d091217a2886e6c5', '31.222.203.2', 1677834170, '__ci_last_regenerate|i:1677834170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5fde1888c31cce89266fb08a65b971b737c3a9d', '31.222.203.2', 1677834170, '__ci_last_regenerate|i:1677834170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb4bc9cfb02908c4b4f0268684ecc46718fe4d31', '31.222.203.2', 1677834170, '__ci_last_regenerate|i:1677834170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec5f956c96696a20b1d3fcaa5f251b94371a7db', '31.222.203.2', 1677835972, '__ci_last_regenerate|i:1677835972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27f3ba5b909e4e87de7520b39d9f79865f230d4', '31.222.203.2', 1677835972, '__ci_last_regenerate|i:1677835972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb01c6ebcf9ab2826d2976268b4132d6320ed3e', '31.222.203.2', 1677835972, '__ci_last_regenerate|i:1677835972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a42222faaea37e24b169310fd7b349fd9d71c34a', '31.222.203.2', 1677835972, '__ci_last_regenerate|i:1677835972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acaa357bc0496ce94af9c32642c117b87ad9071f', '31.222.203.2', 1677835973, '__ci_last_regenerate|i:1677835973;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82835e8ae6c57a651d78a8462ca7169cbedf85d1', '31.222.203.2', 1677835973, '__ci_last_regenerate|i:1677835973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f53e01d3dd05a367e637666c1b40b3baa1f2fde5', '31.222.203.2', 1677837779, '__ci_last_regenerate|i:1677837779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85eff791d02553d5d8f0bbb70a71822dee3b91d4', '31.222.203.2', 1677837779, '__ci_last_regenerate|i:1677837779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52071f1812df1a85ca649f55ce4abf86645c4f4', '31.222.203.2', 1677837779, '__ci_last_regenerate|i:1677837779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65d1ddd139c368992d7ae9cf35b921dae4ec936', '31.222.203.2', 1677837779, '__ci_last_regenerate|i:1677837779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346b6e32f54d567146c765b2bd051bc7561fc334', '31.222.203.2', 1677837779, '__ci_last_regenerate|i:1677837779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f981a34557ff4d112fd5b1c140538c3ea2490f53', '31.222.203.2', 1677837779, '__ci_last_regenerate|i:1677837779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1864f2484a120fbc9696460c9239f74a823a7088', '37.111.219.65', 1677844278, '__ci_last_regenerate|i:1677844278;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677843912;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc6c1fffbc49d768585707a6890e64157d8f286', '31.222.203.2', 1677839565, '__ci_last_regenerate|i:1677839565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eace3128139b1523094d94ff136986671c08c2b0', '31.222.203.2', 1677839565, '__ci_last_regenerate|i:1677839565;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9153b85ec72ea6fe29bd6e736cb5b96743415d8a', '31.222.203.2', 1677839565, '__ci_last_regenerate|i:1677839565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c6e0d046d5decd5ae2550a317ae8fbeeda2808', '31.222.203.2', 1677839566, '__ci_last_regenerate|i:1677839566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682c37bb4665a54bbbdd2135b0264385a1145a14', '31.222.203.2', 1677839566, '__ci_last_regenerate|i:1677839566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d33cba6bdabea22dc1ecee0fa9f0d5208329dcf3', '31.222.203.2', 1677839566, '__ci_last_regenerate|i:1677839566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832ff98edfc13edc2d8cbd84cff3463cd6ace70c', '31.222.203.2', 1677841377, '__ci_last_regenerate|i:1677841377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8fd0fcf61989c88f41ea3f32a28d01e6b8e40f7', '31.222.203.2', 1677841377, '__ci_last_regenerate|i:1677841377;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('735b4a5e2c0e6ec20a5b6249b8adf79a825b9cd4', '31.222.203.2', 1677841377, '__ci_last_regenerate|i:1677841377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64dd999c503ee1030978eb87fe9f7ffbfa335bf2', '31.222.203.2', 1677841378, '__ci_last_regenerate|i:1677841378;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3ca9600255bc1a1be522b1a5106898b0d2f3419', '31.222.203.2', 1677841378, '__ci_last_regenerate|i:1677841378;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f14d84f3b2e48e5f247dbc4bd9705d68e3f3ffb3', '31.222.203.2', 1677841378, '__ci_last_regenerate|i:1677841378;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce979a432fa46e14466a381873cc0eabfc2a2631', '31.222.203.2', 1677843167, '__ci_last_regenerate|i:1677843167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2e6a64d941654306a4cc4231afbfe4baa7148e', '31.222.203.2', 1677843167, '__ci_last_regenerate|i:1677843167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('161c956c2abead3cef342151dce24e85d9e994da', '31.222.203.2', 1677843167, '__ci_last_regenerate|i:1677843167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20823ec3ce8668de12708b59bb0b3bac29c8b701', '31.222.203.2', 1677843167, '__ci_last_regenerate|i:1677843167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66648be605f2d5d8a077aa6c4a6bf192d54e8501', '31.222.203.2', 1677843167, '__ci_last_regenerate|i:1677843167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46bfbff3ba4ec510359183aeb8f7656b0a593012', '31.222.203.2', 1677843167, '__ci_last_regenerate|i:1677843167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5daa0c8942cf848a12c05ae6444bdb01731f27d2', '37.111.219.65', 1677846262, '__ci_last_regenerate|i:1677846262;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677846239;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15018ee2cce4c3a0ee326c2f4bd9c7d4dea497b4', '31.222.203.2', 1677844972, '__ci_last_regenerate|i:1677844972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f111a76c77631ed978f89a2e9e55da0b0872e8d2', '31.222.203.2', 1677844972, '__ci_last_regenerate|i:1677844972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab002f18ad484e31f7c716b2a6b90727bea5e12', '31.222.203.2', 1677844972, '__ci_last_regenerate|i:1677844972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d81487c737c9901e9aa02a409a5f3f99143c55', '31.222.203.2', 1677844972, '__ci_last_regenerate|i:1677844972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b15c02e5a0febfc1c466496d9ab844b7a93c15', '31.222.203.2', 1677844972, '__ci_last_regenerate|i:1677844972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42b30636ac9186771b028d76fbc7ed12df493e10', '31.222.203.2', 1677844972, '__ci_last_regenerate|i:1677844972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c2763def710dd3926e56e43a20c937c53c255d', '37.111.219.65', 1677847409, '__ci_last_regenerate|i:1677847409;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677847404;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46531674ff9a92e04ad9116e4978d915928bd21e', '31.222.203.2', 1677846757, '__ci_last_regenerate|i:1677846757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f6bc5f7ad5e18ae838a8f5aee602a9a2a18560', '31.222.203.2', 1677846757, '__ci_last_regenerate|i:1677846757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1fd22b9eec35e6c37765009b6e42f5ecbf23645', '31.222.203.2', 1677846757, '__ci_last_regenerate|i:1677846757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f954b8c5eb8a2c2c72a8700af53a73cc6939c5be', '31.222.203.2', 1677846757, '__ci_last_regenerate|i:1677846757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c73f921e60afb9ec7315af46d310a676c36f25', '31.222.203.2', 1677846757, '__ci_last_regenerate|i:1677846757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fcbba00218594c56d0bdb583055a8ef4a56ab6d', '31.222.203.2', 1677846757, '__ci_last_regenerate|i:1677846757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ffe87c5ebea9911761d20215d0b0bb2bc0a4d1', '37.111.219.65', 1677848316, '__ci_last_regenerate|i:1677848316;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677848216;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c03b27c2bd26eb165bc138de58de8a0708421c39', '37.111.219.65', 1677847966, '__ci_last_regenerate|i:1677847966;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677847966;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a64f2b4c6d081b4a0c8f97cd303fa323f0716ee5', '37.111.219.65', 1677850368, '__ci_last_regenerate|i:1677850368;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677850320;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d333cb0f5e71116383c46795e8fcd4c963d2f93', '31.222.203.2', 1677848576, '__ci_last_regenerate|i:1677848576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d26acb75f747d9664535aad82ac7cb8075db727f', '31.222.203.2', 1677848576, '__ci_last_regenerate|i:1677848576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1303730a39bbb3e209c130c6165a435e671d8d3', '31.222.203.2', 1677848576, '__ci_last_regenerate|i:1677848576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a81d2a74d2311e639196d08a9dbf4cee1776d9cc', '31.222.203.2', 1677848576, '__ci_last_regenerate|i:1677848576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b6e2c516d53e9118218fd10682f9e0ecbf0f29', '31.222.203.2', 1677848576, '__ci_last_regenerate|i:1677848576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6388ba644a7b2b567d37575ac11306c335dfc060', '31.222.203.2', 1677848576, '__ci_last_regenerate|i:1677848576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37e4d4a162e012c85234e824a80659de482dbe2d', '37.111.219.65', 1677849854, '__ci_last_regenerate|i:1677849854;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677848561;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65fc88431c47ba3493cbf2f72c8cd42ed735b7ff', '37.111.219.65', 1677851233, '__ci_last_regenerate|i:1677851233;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677850423;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823c35bb92146cb15222f653906a25e0371aff9a', '37.111.219.65', 1677851670, '__ci_last_regenerate|i:1677851670;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677851233;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a87c929a714ff6281f2089ae73232f71c25f42a', '31.222.203.2', 1677850376, '__ci_last_regenerate|i:1677850376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3763466396b390b81cdcf28e7526c9dc7a1767a2', '31.222.203.2', 1677850376, '__ci_last_regenerate|i:1677850376;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f922aa721fd0571fef8e44e02ca3421bc13bed61', '31.222.203.2', 1677850376, '__ci_last_regenerate|i:1677850376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6364be15d23d9b43ef8c78b654416b5c13c29552', '31.222.203.2', 1677850380, '__ci_last_regenerate|i:1677850380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b70bc1c5f9e01e5362755d709be1aa1a58282563', '31.222.203.2', 1677850380, '__ci_last_regenerate|i:1677850380;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fbe854af51aa5e3b3095f638227b00c20bc31fd', '31.222.203.2', 1677850380, '__ci_last_regenerate|i:1677850380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425c9ddf0417183eba11a1de1b117b06ef2e6895', '37.111.219.65', 1677852081, '__ci_last_regenerate|i:1677852081;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677851726;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab8c0f9530a4fbbe17b640e3236a0ec3c3dd774', '37.111.219.65', 1677852453, '__ci_last_regenerate|i:1677852453;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677852428;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb6f4fd9e673a194d1482577c5d9ae17ae85ee9a', '31.222.203.2', 1677852174, '__ci_last_regenerate|i:1677852174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8bcc264ede3b2e4ba2cf28ae5ee8320cd76334', '31.222.203.2', 1677852174, '__ci_last_regenerate|i:1677852174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37862745bbc3baad3eb37d5064df117a0c31589b', '31.222.203.2', 1677852174, '__ci_last_regenerate|i:1677852174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bd0e4fdfb09183a6df2a5622d1acbadb4c035e6', '31.222.203.2', 1677852174, '__ci_last_regenerate|i:1677852174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f16a4d199ff8fbb2202e829900cf6edc4ed06b', '31.222.203.2', 1677852174, '__ci_last_regenerate|i:1677852174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b97e9ac2131205638801f740bf8cdd69d9f17c', '31.222.203.2', 1677852174, '__ci_last_regenerate|i:1677852174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff5a6fd6aa9b4aeb0e7b6663d5b0d7290ea21103', '37.111.219.65', 1677852995, '__ci_last_regenerate|i:1677852995;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677852454;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721825c644e3523d4221a5b9ea443831f75f1003', '205.210.31.40', 1677852894, '__ci_last_regenerate|i:1677852894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f89d498dd6bfd4f116b5076c21c308821956d86f', '37.111.219.65', 1677853588, '__ci_last_regenerate|i:1677853588;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677853528;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1d9300559b4ea5c19b7395e2d1116800bfb767c', '37.111.219.65', 1677855595, '__ci_last_regenerate|i:1677855595;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677855584;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bd8907da3cb73d06c0280dbde10c33ccfc769c4', '31.222.203.2', 1677853964, '__ci_last_regenerate|i:1677853964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43a5c15b439b296af1c3a56c4a3eb54901a975c', '31.222.203.2', 1677853964, '__ci_last_regenerate|i:1677853964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54664a66292b4339b70625c064fc9456d6a447f', '31.222.203.2', 1677853964, '__ci_last_regenerate|i:1677853964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20496d04cfbbbc40fc08e3d7bb48902881f1f58b', '31.222.203.2', 1677853964, '__ci_last_regenerate|i:1677853964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87aa04630b84e14b254072212e71b0f851ed020a', '31.222.203.2', 1677853964, '__ci_last_regenerate|i:1677853964;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dd5823dfa9cc17fb0c40afc316aa8ed0af01429', '31.222.203.2', 1677853964, '__ci_last_regenerate|i:1677853964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6719d1e8abd20396edcdbe85639e296dd137c252', '80.251.212.62', 1677855403, '__ci_last_regenerate|i:1677855403;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f962353f0dce7c57d11174e5c0c4a145a66062bc', '80.251.212.62', 1677855403, '__ci_last_regenerate|i:1677855403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98ae820e69fcea2f1c69d8f3af1543c2eac7076', '80.251.212.62', 1677855404, '__ci_last_regenerate|i:1677855404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca19dce2d536285d13250535277dc0426991da1f', '80.251.212.62', 1677855409, '__ci_last_regenerate|i:1677855409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('befd64d148cbad5a1b7548fb6723f70089ba36fb', '37.111.219.65', 1677856258, '__ci_last_regenerate|i:1677856258;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677856251;register_id|s:3:\"358\";cash_in_hand|s:9:\"7800.0000\";register_open_time|s:19:\"2023-03-02 20:31:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c1946672178119e7948ae10735d1e30f02374b6', '31.222.203.2', 1677855775, '__ci_last_regenerate|i:1677855775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd54d7a8f44736f87e29401318a133bef3d0da6e', '31.222.203.2', 1677855775, '__ci_last_regenerate|i:1677855775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4035f5e171a6e3725d1dcf0f834fa932462aa13b', '31.222.203.2', 1677855775, '__ci_last_regenerate|i:1677855775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69230d03c84f8947deb29c6019f7b4c191e9e225', '31.222.203.2', 1677855775, '__ci_last_regenerate|i:1677855775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55bb96ae7f2d64d12ea08c9cd9cce3c2f4045f79', '31.222.203.2', 1677855775, '__ci_last_regenerate|i:1677855775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc1b618daf6b43067eb24ffac325a9b768bf1f98', '31.222.203.2', 1677855775, '__ci_last_regenerate|i:1677855775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('962ff0b79ff6d297d1e2373fccb6b7a0d2f23579', '37.111.219.65', 1677856284, '__ci_last_regenerate|i:1677856258;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677752403\";last_ip|s:14:\"37.111.219.142\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677856284;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43957b2f30ea7201db3d9a225c7863beee96c372', '162.240.214.96', 1677856605, '__ci_last_regenerate|i:1677856605;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4084b11766b8347e85b5b4f93763c324413d62d8', '162.240.214.96', 1677856605, '__ci_last_regenerate|i:1677856605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c57e24dd23e378643d5697536ff2afcb3aa7805', '162.240.214.96', 1677856605, '__ci_last_regenerate|i:1677856605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a9afaeb1a89096e7f017c5be5447cc93fae78b', '162.240.214.96', 1677856606, '__ci_last_regenerate|i:1677856606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb6cb44d23765e991731224cf017b7cf55b0e8c', '31.222.203.2', 1677857565, '__ci_last_regenerate|i:1677857565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff752a9922080db33ad85dce21d00c52003e407', '31.222.203.2', 1677857565, '__ci_last_regenerate|i:1677857565;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba71293651ada40a47ca1607c5854384315d50c5', '31.222.203.2', 1677857565, '__ci_last_regenerate|i:1677857565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86a293761d0a0ab879609cf63e5995d843b93848', '31.222.203.2', 1677857566, '__ci_last_regenerate|i:1677857566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d04b1ea7b4fa98a94230e18fc3001dca14448e', '31.222.203.2', 1677857566, '__ci_last_regenerate|i:1677857566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82b0384eb06e8721caafe2e47f3f83dea44d58c', '31.222.203.2', 1677857566, '__ci_last_regenerate|i:1677857566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf063f6424be6573513b8b341279223676494929', '31.222.203.2', 1677859375, '__ci_last_regenerate|i:1677859375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c664342b59b7c7595f614fb9a2925f2baf9416', '31.222.203.2', 1677859375, '__ci_last_regenerate|i:1677859375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('302c01b0236e38d4393c2be25cec852c7f74a683', '31.222.203.2', 1677859375, '__ci_last_regenerate|i:1677859375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c5638e7af98a3fca4e6cc4ed462b34ca6bdf33b', '31.222.203.2', 1677859375, '__ci_last_regenerate|i:1677859375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77acf21c828fa093e40cd0fc87f224d57568592', '31.222.203.2', 1677859375, '__ci_last_regenerate|i:1677859375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a17c9df541119fcbc6af24e02543588bb118274d', '31.222.203.2', 1677859375, '__ci_last_regenerate|i:1677859375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c7e6660124844ed963fa58d96a12be48f9132b', '213.165.169.54', 1677859723, '__ci_last_regenerate|i:1677859723;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e87ace6aff6eb8091562583d5a9bfbb6df47fb0', '213.165.169.54', 1677859724, '__ci_last_regenerate|i:1677859724;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26d6471c50c16eab8502422b7a47b63d2b3f903b', '213.165.169.54', 1677859725, '__ci_last_regenerate|i:1677859725;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb317c2fb4ea68f5f40235f90e45731fdcc815d8', '213.165.169.54', 1677859725, '__ci_last_regenerate|i:1677859725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da9b8db5d4b93066efe866c553b438b661c9d70', '31.222.203.2', 1677861156, '__ci_last_regenerate|i:1677861156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cac18391bd5154901656266b6114fec0c1bb5df', '31.222.203.2', 1677861156, '__ci_last_regenerate|i:1677861156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749072d6caab774ece4417538cf78fba402aa796', '31.222.203.2', 1677861156, '__ci_last_regenerate|i:1677861156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d38b6d3fbb9e1ab8cdadd66cd2291a1ca1d8351', '31.222.203.2', 1677861156, '__ci_last_regenerate|i:1677861156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4fc58c67085d22b45f6143dcb509df6c7ed750', '31.222.203.2', 1677861157, '__ci_last_regenerate|i:1677861157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372775d3c0eeb4941de4882ee6b05980ffaa5fc8', '31.222.203.2', 1677861157, '__ci_last_regenerate|i:1677861157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4cf85bf8b11d56008f006863a17c311de74d381', '31.222.203.2', 1677862958, '__ci_last_regenerate|i:1677862958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f373db11a3af409f4b0d217ec29991932a15adfe', '31.222.203.2', 1677862963, '__ci_last_regenerate|i:1677862963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bd72b05113605499d09f1344b488451dd6c8854', '31.222.203.2', 1677862963, '__ci_last_regenerate|i:1677862963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc7daed3d7771d21a74647f2d14e265b0bae844', '31.222.203.2', 1677862963, '__ci_last_regenerate|i:1677862963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d3b6d671807b0f3ce3e212025aaaadbd18fda6', '31.222.203.2', 1677862963, '__ci_last_regenerate|i:1677862963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adce9dd214448f9d2cb514a7f92bd9c4773a0a66', '31.222.203.2', 1677862963, '__ci_last_regenerate|i:1677862963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b35d81c187be0126352b52af640aca8dddd332c', '66.249.70.162', 1677863158, '__ci_last_regenerate|i:1677863158;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9a5b7effc3a3eb5a2230d039cf11c4cca40816', '66.249.70.191', 1677863158, '__ci_last_regenerate|i:1677863158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949a5e597c5e66f9085ab3239887c70cfefef3b9', '66.249.70.162', 1677863158, '__ci_last_regenerate|i:1677863158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bef665327596b9aabb306f6e3f5135954343c22', '66.249.70.162', 1677863158, '__ci_last_regenerate|i:1677863158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44212e51d3ec42b4d8e249221474f368b606acb1', '66.249.70.162', 1677863159, '__ci_last_regenerate|i:1677863158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f35ba4eb607b34a3a774e25badc375968eba29', '66.249.70.191', 1677863181, '__ci_last_regenerate|i:1677863180;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c13fb6143fd9e5776495eb80a266b67c60e8e4e6', '66.249.70.191', 1677863182, '__ci_last_regenerate|i:1677863182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b6e84dcf95d34b828e1a5d31da081a7968e275', '31.222.203.2', 1677864761, '__ci_last_regenerate|i:1677864761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e8040bb83e9e9bc4a1f48b267a5e579d6210a1', '31.222.203.2', 1677864761, '__ci_last_regenerate|i:1677864761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7b1c1d141222050c357fbbce6d4e84ababb335', '31.222.203.2', 1677864761, '__ci_last_regenerate|i:1677864761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e5f19fe3f3382b59a4d0c3ce2224c4d568bf662', '31.222.203.2', 1677864761, '__ci_last_regenerate|i:1677864761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6006b13ec43149aac0d5b52ab7471ab6b5bc0116', '31.222.203.2', 1677864761, '__ci_last_regenerate|i:1677864761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef7174eab6ecaa069869d907bed569b291ac1904', '31.222.203.2', 1677864761, '__ci_last_regenerate|i:1677864761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd3dc41a1cdb00a3f64dda581d17fe48415bc003', '31.222.203.2', 1677866567, '__ci_last_regenerate|i:1677866567;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e63c723c9a4f5a594397a341c5d7fe1a55db9519', '31.222.203.2', 1677866568, '__ci_last_regenerate|i:1677866568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e951e228b3314fcf8890fa78a909077d36c5040a', '31.222.203.2', 1677866568, '__ci_last_regenerate|i:1677866568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95234dfd5f6dadde6b2a73c8e6acebbd27a95a54', '31.222.203.2', 1677866568, '__ci_last_regenerate|i:1677866568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c142f658d5e301e2b190705f19f0d2c26aae28e', '31.222.203.2', 1677866568, '__ci_last_regenerate|i:1677866568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a4bdff756536789332aa5f38841dbf5a0449ab', '31.222.203.2', 1677866568, '__ci_last_regenerate|i:1677866568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e682bfd324906c9e9a9508f14086d45565d2d9f', '31.222.203.2', 1677868347, '__ci_last_regenerate|i:1677868347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d27f39e95e216044c7b9679ab33e5398c288a47', '31.222.203.2', 1677868347, '__ci_last_regenerate|i:1677868347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1941f4fa4169d979cc70e3feb705e98203fa51e2', '31.222.203.2', 1677868347, '__ci_last_regenerate|i:1677868347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75cf344116ba9276fccf722e6168c2a00c7183fc', '31.222.203.2', 1677868347, '__ci_last_regenerate|i:1677868347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc37d2a575d36e400135c16c4f83e96c3489fa3f', '31.222.203.2', 1677868347, '__ci_last_regenerate|i:1677868347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efe0cd6bda150eb711ea25aa06d9b9c3ac7c297f', '31.222.203.2', 1677868347, '__ci_last_regenerate|i:1677868347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9059daed7e5e4fbc3b8125e2f6c8877bf16f19f', '66.249.70.165', 1677868558, '__ci_last_regenerate|i:1677868558;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7360647bd7ec04ee0685932843cb1a52007c6ed8', '66.249.70.162', 1677868558, '__ci_last_regenerate|i:1677868558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ce6b638e6b251f5546a17d7c2039143af204ee', '66.249.70.191', 1677868558, '__ci_last_regenerate|i:1677868558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f525b698c2153c9417634f53d4a4520fa9cd393f', '66.249.70.191', 1677868558, '__ci_last_regenerate|i:1677868558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3d92d983bcefb0d316789e2d6d212db426bdfc', '66.249.70.165', 1677868559, '__ci_last_regenerate|i:1677868558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b136fe24d7c1dad34f9044d51d4b164b08983cc7', '79.143.85.14', 1677868675, '__ci_last_regenerate|i:1677868675;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac25739bc68e6ed3de3e737ae19f86b4a0ad976', '79.143.85.14', 1677868675, '__ci_last_regenerate|i:1677868675;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca15a6836b56abe8d8293e1911476244868b626e', '79.143.85.14', 1677868677, '__ci_last_regenerate|i:1677868677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88aeff3b803080fafb512ffa0bab3f8be97161fc', '79.143.85.14', 1677868677, '__ci_last_regenerate|i:1677868677;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bafcad4c2d63a156587ff5cf9366aa4b3551862', '31.222.203.2', 1677870166, '__ci_last_regenerate|i:1677870166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf26699db0987cc5da402816e75e412cb355ac5a', '31.222.203.2', 1677870166, '__ci_last_regenerate|i:1677870166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d93fba1565f6c3a08e82c59cb19e2b5c2498817', '31.222.203.2', 1677870166, '__ci_last_regenerate|i:1677870166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5aaece4692911cbfe94407ef193bf1a8aa157d32', '31.222.203.2', 1677870166, '__ci_last_regenerate|i:1677870166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d14ce66e767a0d52c078c5b6e8d37e7ace9b7d9', '31.222.203.2', 1677870166, '__ci_last_regenerate|i:1677870166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0768307a86223c63e1ee8dd822a030a6751a453', '31.222.203.2', 1677870166, '__ci_last_regenerate|i:1677870166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb8afecf51eda2c5ebeb1c94b9800d71aa380d05', '31.222.203.2', 1677871954, '__ci_last_regenerate|i:1677871954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b1ee112af39b2467c11fdef106705a3dee4708', '31.222.203.2', 1677871954, '__ci_last_regenerate|i:1677871954;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da684f6165dd4f10f09d9ab472402e26f9f8dac', '31.222.203.2', 1677871954, '__ci_last_regenerate|i:1677871954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('969955bdc762997f2f537fbc42aa8b1c20cf5c05', '31.222.203.2', 1677871954, '__ci_last_regenerate|i:1677871954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d80c869e26890d8a7838b3772a1fa567a8f6d0a', '31.222.203.2', 1677871954, '__ci_last_regenerate|i:1677871954;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2e1402cc38a3308194aa7c7f50e4b418f29962', '31.222.203.2', 1677871954, '__ci_last_regenerate|i:1677871954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b66816798e029918271ee7de44cb0ed6c05c9d2', '31.222.203.2', 1677873757, '__ci_last_regenerate|i:1677873757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b4ee4ae8a5d08caa30b83533e098ac4a9568e92', '31.222.203.2', 1677873757, '__ci_last_regenerate|i:1677873757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526fb07e99b4d1080a11aa7fbf99452bc1ddd07d', '31.222.203.2', 1677873757, '__ci_last_regenerate|i:1677873757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b118a2fedf533103ad2cf9272a41257dd711d61', '31.222.203.2', 1677873757, '__ci_last_regenerate|i:1677873757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7da1b0332e0d8b8e63a5ae90e6227ea6c7773d43', '31.222.203.2', 1677873757, '__ci_last_regenerate|i:1677873757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aedb8cb8db6fabf16bed3e07a49e1d6fe5a7c658', '31.222.203.2', 1677873757, '__ci_last_regenerate|i:1677873757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9c344760a1c2279103371aab3b191c1e280450', '66.249.70.191', 1677873958, '__ci_last_regenerate|i:1677873958;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ceac987338b42b5d348310d7dc1e240d66b175', '66.249.70.191', 1677873958, '__ci_last_regenerate|i:1677873958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3c8445e76ef7f87408d73091e9282b714d7ba0e', '66.249.70.191', 1677873958, '__ci_last_regenerate|i:1677873958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31802e571ba2f82c6251b62f8ea2cb2917efb77f', '66.249.70.165', 1677873959, '__ci_last_regenerate|i:1677873959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78f84c98592e41917cbcedb46f65073bafdcf8e', '31.222.203.2', 1677875546, '__ci_last_regenerate|i:1677875546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d722436e3cee07ba5ca6885b7fec675991af34bb', '31.222.203.2', 1677875546, '__ci_last_regenerate|i:1677875546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fb7c9bf8fd909df81764fbd44979f7a82afccf2', '31.222.203.2', 1677875546, '__ci_last_regenerate|i:1677875546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f018ecdd4a1485cdb389218f255a16292a4f6eab', '31.222.203.2', 1677875546, '__ci_last_regenerate|i:1677875546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9e28ba487cbea1be91dbd587ac50a4c51b69989', '31.222.203.2', 1677875546, '__ci_last_regenerate|i:1677875546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ef635c9c566dd9a064349d87f9e154b85c7768', '31.222.203.2', 1677875546, '__ci_last_regenerate|i:1677875546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec15bd51e99c111adff59a0f38248d40372b795', '31.222.203.2', 1677877358, '__ci_last_regenerate|i:1677877358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('868ff4b37d3ef6f391de4aff717d3bea74165140', '31.222.203.2', 1677877358, '__ci_last_regenerate|i:1677877358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1a035912d41138a3a57d9fcfc67364e3f2a67b', '31.222.203.2', 1677877358, '__ci_last_regenerate|i:1677877358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3812f27c8794b23ffe2c2d6437355c3c146a00da', '31.222.203.2', 1677877358, '__ci_last_regenerate|i:1677877358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('754408d6ab4bba29172ce85dd6f74158204a6978', '31.222.203.2', 1677877358, '__ci_last_regenerate|i:1677877358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81324889fd9e166b1066dd6c07d6dc3dc24eef1d', '31.222.203.2', 1677877358, '__ci_last_regenerate|i:1677877358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2674aa8a18c406e3689c27090288435657bbfc98', '31.222.203.2', 1677879151, '__ci_last_regenerate|i:1677879151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d2d45e11884e2e67fac17906a26713e5fb8bc3', '31.222.203.2', 1677879151, '__ci_last_regenerate|i:1677879151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86128a476dcb2a019842826f14fe3501ee5b068a', '31.222.203.2', 1677879151, '__ci_last_regenerate|i:1677879151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cb10542d8b64c6e509b333f3d73c2d26d6962a2', '31.222.203.2', 1677879151, '__ci_last_regenerate|i:1677879151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2a69b1de86029fb652bd1309cfe2f43e2b854f', '31.222.203.2', 1677879151, '__ci_last_regenerate|i:1677879151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87ca2bcd66c41a2e8e004ec9cc980ed00ce9cf38', '31.222.203.2', 1677879151, '__ci_last_regenerate|i:1677879151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9bbf128535d080d5ea3512bebcbb5284a8d409c', '31.222.203.2', 1677880952, '__ci_last_regenerate|i:1677880952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581ec3aa3e08c40b4cdb2418e803a0976eb9186f', '31.222.203.2', 1677880952, '__ci_last_regenerate|i:1677880952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2cdba8a8c7b6e5140c5eb72fe198d8a3716820', '31.222.203.2', 1677880952, '__ci_last_regenerate|i:1677880952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fd966b8b92c1328e447816e98ad09ce6b23aa5', '31.222.203.2', 1677880952, '__ci_last_regenerate|i:1677880952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dd6dcc01498e9403b6d8178769deb30999b696c', '31.222.203.2', 1677880952, '__ci_last_regenerate|i:1677880952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec74af336ef63ead78f5884a09a0392d6a2fa7a4', '31.222.203.2', 1677880952, '__ci_last_regenerate|i:1677880952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24d6084971b5c7aab5c42164cf6f7c7a2bf56dd6', '31.222.203.2', 1677882748, '__ci_last_regenerate|i:1677882748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42e9c25b43b7e87e9c9cb90edb85db9b2b1ce65', '31.222.203.2', 1677882748, '__ci_last_regenerate|i:1677882748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b832dd33f505610b92410a2ae2b97ca9187cfa78', '31.222.203.2', 1677882748, '__ci_last_regenerate|i:1677882748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a8cd298804bfa69fa825c1380853a863cfa466', '31.222.203.2', 1677882748, '__ci_last_regenerate|i:1677882748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc313b3fbfcefd6c527904066361abe92b093085', '31.222.203.2', 1677882748, '__ci_last_regenerate|i:1677882748;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1165dfad0ea25d9973a07f57a4f41cb5fe748aa', '31.222.203.2', 1677882748, '__ci_last_regenerate|i:1677882748;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa481f2193974f992083facf2dc0e47a0d52a7fa', '31.222.203.2', 1677884553, '__ci_last_regenerate|i:1677884553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773c0a243604cfada098193f31d07473e8b3b388', '31.222.203.2', 1677884553, '__ci_last_regenerate|i:1677884553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7edd450a69688fca3d64d290e43432eab807141c', '31.222.203.2', 1677884553, '__ci_last_regenerate|i:1677884553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab46f75a5cac46a38b8f78e01720c60dd2c27417', '31.222.203.2', 1677884558, '__ci_last_regenerate|i:1677884558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ad9677ba33203654b683c67021d548537717805', '31.222.203.2', 1677884558, '__ci_last_regenerate|i:1677884558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fe32a45736f31c00e667d791b0b23c493b67f75', '31.222.203.2', 1677884558, '__ci_last_regenerate|i:1677884558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ae25e642db391456420e1d98a24b2b97c1048d8', '31.222.203.2', 1677886344, '__ci_last_regenerate|i:1677886344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7f605ebe7032e32184ebc7516bcd8fb4ac9dcc9', '31.222.203.2', 1677886344, '__ci_last_regenerate|i:1677886344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb501374672c4cd0f7ef749349679246a685f710', '31.222.203.2', 1677886344, '__ci_last_regenerate|i:1677886344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8c43c6bf294aa29c8dac71d1c52c967ee37a1f', '31.222.203.2', 1677886344, '__ci_last_regenerate|i:1677886344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a6fe13ed56d91aec082cd8205ed800b35764be', '31.222.203.2', 1677886344, '__ci_last_regenerate|i:1677886344;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accdf8e72d2a47f6d94749f99c657693c81fb477', '31.222.203.2', 1677886344, '__ci_last_regenerate|i:1677886344;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('941a409bb8b0896ce116f125928666b4545a6c31', '66.249.70.165', 1677886720, '__ci_last_regenerate|i:1677886720;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ff2a58abe03a10d0d96db52133308078148525', '66.249.70.191', 1677886720, '__ci_last_regenerate|i:1677886720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('438b0c91ed1d06d859be4e5e073c3f08cc36c3cb', '66.249.70.162', 1677886720, '__ci_last_regenerate|i:1677886720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8abfc1f9e9ef551168b221af7cdd89fe62bf8f2', '66.249.70.162', 1677886720, '__ci_last_regenerate|i:1677886720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfb69381af7de42d10e199513bcbe10dea617e96', '66.249.70.191', 1677886721, '__ci_last_regenerate|i:1677886720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7be1b81ab5bf7928a217617a5e99a40aecde2792', '31.222.203.2', 1677888151, '__ci_last_regenerate|i:1677888151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2c86dcb42a0c14af45d23333e21b6d58294a1f', '31.222.203.2', 1677888151, '__ci_last_regenerate|i:1677888151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67713c75332c247d6f5274bf0d0ca93efae0793', '31.222.203.2', 1677888151, '__ci_last_regenerate|i:1677888151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('028575f83b1a47a2a3ae4460800f52e753099337', '31.222.203.2', 1677888151, '__ci_last_regenerate|i:1677888151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c408f1a40620471c691bb3ceb87802b52532a4e', '31.222.203.2', 1677888151, '__ci_last_regenerate|i:1677888151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60c59b8bfca78a92d3ffae55c80584fa4371199', '31.222.203.2', 1677888152, '__ci_last_regenerate|i:1677888152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ebf8fde66fd12902ac519e2548962d3f8ca5e8a', '31.222.203.2', 1677889947, '__ci_last_regenerate|i:1677889947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f97daa15bfe061e4984fc4497cd80178ee8a4da8', '31.222.203.2', 1677889947, '__ci_last_regenerate|i:1677889947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1131e24ffdea5a1306ab35f212118996ed40c0a', '31.222.203.2', 1677889947, '__ci_last_regenerate|i:1677889947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58d3a4710d5735f683803d7c62d66d1f52e35b6e', '31.222.203.2', 1677889948, '__ci_last_regenerate|i:1677889948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e0af6baa2435cf5a86dc47b80917b1eea7211a', '31.222.203.2', 1677889948, '__ci_last_regenerate|i:1677889948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2bb36e98160af1684cf3fa7625667d262c183e6', '31.222.203.2', 1677889948, '__ci_last_regenerate|i:1677889948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece95932943071b1fd7a41088ff51b96d483447a', '31.222.203.2', 1677891754, '__ci_last_regenerate|i:1677891754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31dac36918c5dbf51c45f90a5c570340cc474d6f', '31.222.203.2', 1677891754, '__ci_last_regenerate|i:1677891754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ef98a98658ad433afb7f3fdc67760a22f40712', '31.222.203.2', 1677891754, '__ci_last_regenerate|i:1677891754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8870005575222386d86f2c5da8b99e3537fc8c80', '31.222.203.2', 1677891754, '__ci_last_regenerate|i:1677891754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0b6b4af684342a1ae2de6e49b11064e25a2623', '31.222.203.2', 1677891754, '__ci_last_regenerate|i:1677891754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b584267645b1a35c1488999e94ff102fca2c328', '31.222.203.2', 1677891754, '__ci_last_regenerate|i:1677891754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66bd9c16cfffcc80f20c5fe50656dc686854664a', '31.222.203.2', 1677893553, '__ci_last_regenerate|i:1677893553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a160a6dbdb04a64ba6e73cf53035383d92109e21', '31.222.203.2', 1677893553, '__ci_last_regenerate|i:1677893553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897aacfcf63eabb79c7d2571c2f440331703f5c6', '31.222.203.2', 1677893553, '__ci_last_regenerate|i:1677893553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529360d6822932a3c85a44620ca18eb50b5c80ce', '31.222.203.2', 1677893553, '__ci_last_regenerate|i:1677893553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950de3089de422e16adeea4c1930ec9d45447f15', '31.222.203.2', 1677893553, '__ci_last_regenerate|i:1677893553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92cde1407e0e9e4a98ff20aa4c0af022c9cb2c35', '31.222.203.2', 1677893553, '__ci_last_regenerate|i:1677893553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50cf60cf1159dfaa685e811cf4d8f967a9a79d8', '31.222.203.2', 1677895355, '__ci_last_regenerate|i:1677895355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7212e64617633ae341526498d4b7e6758e4193e7', '31.222.203.2', 1677895355, '__ci_last_regenerate|i:1677895355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daf820040d4d4c271d212f906e9bacaaabea3166', '31.222.203.2', 1677895355, '__ci_last_regenerate|i:1677895355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1727b2a6665d884e2a766ff10e0efa43983446ba', '31.222.203.2', 1677895355, '__ci_last_regenerate|i:1677895355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f96dee067aae86da299eff6e792e5363ddd49e', '31.222.203.2', 1677895355, '__ci_last_regenerate|i:1677895355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('520ee6b2530f7ff6080d9e813df88a4c8aa7313d', '31.222.203.2', 1677895355, '__ci_last_regenerate|i:1677895355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f708cdc467a64addfdd799c2ef840eb303ada8', '31.222.203.2', 1677897148, '__ci_last_regenerate|i:1677897148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f0dc0f1dec727770fb896d665eeae82af569cbe', '31.222.203.2', 1677897148, '__ci_last_regenerate|i:1677897148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d834deb61a3e9e97457443d6a4f5018f0a4b2b0', '31.222.203.2', 1677897148, '__ci_last_regenerate|i:1677897148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3795be85e7adce2a9db72cc9a5261812e6077d6b', '31.222.203.2', 1677897148, '__ci_last_regenerate|i:1677897148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47aef6e8c66adab93532ba9b46734b777023b7b3', '31.222.203.2', 1677897148, '__ci_last_regenerate|i:1677897148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d9679d7d30a79f0871b5a84829bd83771f1ff0', '31.222.203.2', 1677897148, '__ci_last_regenerate|i:1677897148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26de50823812542979edc76cb5384ad0a96ba0b6', '31.222.203.2', 1677898958, '__ci_last_regenerate|i:1677898958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca3bc7bb0d9ee11f3eb34601f6758021feb4c0c', '31.222.203.2', 1677898958, '__ci_last_regenerate|i:1677898958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c7d9024d69b67f0fd9633b271ae193a91ff78b', '31.222.203.2', 1677898958, '__ci_last_regenerate|i:1677898958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597a82323ea107552137f7b30250cefe546996cc', '31.222.203.2', 1677898958, '__ci_last_regenerate|i:1677898958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a4ebed6b83a0e984967422765cb07c65c936fa', '31.222.203.2', 1677898958, '__ci_last_regenerate|i:1677898958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3487cbf3c8957c603e112bb59472c8d90bc8de0', '31.222.203.2', 1677898958, '__ci_last_regenerate|i:1677898958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79ca45c52487831045f5652ce806350f1b70604b', '31.222.203.2', 1677900749, '__ci_last_regenerate|i:1677900749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba7b5aa3fef3020d7680f03d8205c37be831a6c', '31.222.203.2', 1677900749, '__ci_last_regenerate|i:1677900749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b46052998912cc606ca9e69bf85cf6506f2788bb', '31.222.203.2', 1677900749, '__ci_last_regenerate|i:1677900749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4b0fdf454936f63b823cd18ec90c8e46738ce3', '31.222.203.2', 1677900749, '__ci_last_regenerate|i:1677900749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7579c3c04b5d642285b4b597a0acef4f55ca92', '31.222.203.2', 1677900749, '__ci_last_regenerate|i:1677900749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db404e089a174a77b078168ef97b158acc9688de', '31.222.203.2', 1677900749, '__ci_last_regenerate|i:1677900749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c7e85c5d542eb11f3c822b4538f29f7b9b2ce1', '45.120.39.89', 1677901700, '__ci_last_regenerate|i:1677901687;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677822654\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677901699;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687b170cbfa6bc69913ea2ff86fdfbc19f0e719b', '31.222.203.2', 1677902559, '__ci_last_regenerate|i:1677902559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3a273727196fb53b8fb75df8ba5dd9d7faf96a', '31.222.203.2', 1677902559, '__ci_last_regenerate|i:1677902559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45aca0e397e1d0934c447d7c5836f3b3809d568f', '31.222.203.2', 1677902559, '__ci_last_regenerate|i:1677902559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48a9431b69d34146c12afdaf0dc0524b88800900', '31.222.203.2', 1677902559, '__ci_last_regenerate|i:1677902559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5e6ef246367144cd09f2b32e7a6b33e77312ec', '31.222.203.2', 1677902559, '__ci_last_regenerate|i:1677902559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7def8a5bc6aff6310f06c82546c3f2a054f00c', '31.222.203.2', 1677902559, '__ci_last_regenerate|i:1677902559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9366c8804c231ca19b1aef96dc8daa4d262186', '31.222.203.2', 1677904348, '__ci_last_regenerate|i:1677904348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5fc2e402b8648d2650b1768771b3763878db742', '31.222.203.2', 1677904348, '__ci_last_regenerate|i:1677904348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6be4f13e85095b6e78e3f66717b4f405217ca9c', '31.222.203.2', 1677904348, '__ci_last_regenerate|i:1677904348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97c712ea5483fa73902353955b2dc7f9f182b8fd', '31.222.203.2', 1677904348, '__ci_last_regenerate|i:1677904348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c54189b06a1e036eef156b96b3d05e2c26b8a95', '31.222.203.2', 1677904348, '__ci_last_regenerate|i:1677904348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891c99c444cc256829fb3a3d603eb635b0d62b49', '31.222.203.2', 1677904348, '__ci_last_regenerate|i:1677904348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b9e83e88cff4b3793e5245afcfae213b52813c5', '31.222.203.2', 1677906146, '__ci_last_regenerate|i:1677906146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f358bf901e4f28e85083d1f9d2706c89d88cb185', '31.222.203.2', 1677906147, '__ci_last_regenerate|i:1677906147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2e970c68a353b40790860ad7bbcb0a14ae9c56', '31.222.203.2', 1677906147, '__ci_last_regenerate|i:1677906147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a98ef8733cbd40b6db7aac56a8ccf1ac69829428', '31.222.203.2', 1677906147, '__ci_last_regenerate|i:1677906147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c64174e9021ea88bac7603ad465c2e705b5da32e', '31.222.203.2', 1677906147, '__ci_last_regenerate|i:1677906147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b05095671edf0e773fcea4666c83c642c753e97', '31.222.203.2', 1677906147, '__ci_last_regenerate|i:1677906147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e08fbfddc967713c612e79f20f0cd850cc496de', '31.222.203.2', 1677907945, '__ci_last_regenerate|i:1677907945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee469e8125e99d4b1e28ce1dcf2eef362c42138', '31.222.203.2', 1677907945, '__ci_last_regenerate|i:1677907945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e8b47326b8709415fd7c815e733db05d96a3b1', '31.222.203.2', 1677907945, '__ci_last_regenerate|i:1677907945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d08ec6a43258d3252fdfbf1a8f9b83fd80e659d9', '31.222.203.2', 1677907945, '__ci_last_regenerate|i:1677907945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0ce6a943b9b61904e95f339333a8061e1860ec', '31.222.203.2', 1677907945, '__ci_last_regenerate|i:1677907945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8dc4d2f97ca99db0e4c84d3711449e011ba95fe', '31.222.203.2', 1677907945, '__ci_last_regenerate|i:1677907945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e479021d5a9b3c5251311805fd182db6398aeda2', '31.222.203.2', 1677909761, '__ci_last_regenerate|i:1677909761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913caff31445260009559ec09de872326754264a', '31.222.203.2', 1677909761, '__ci_last_regenerate|i:1677909761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ef636f813a3324ee83b5fd51547048315a9bf60', '31.222.203.2', 1677909761, '__ci_last_regenerate|i:1677909761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('265893b647a9201fd51eeba8150bfa52aa5215e0', '31.222.203.2', 1677909761, '__ci_last_regenerate|i:1677909761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d583cdc2601270e853b7b263ba3328ed60f5a5', '31.222.203.2', 1677909761, '__ci_last_regenerate|i:1677909761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51b99ea2d7583676b6eb86f8a44bf9e6159770c9', '31.222.203.2', 1677909761, '__ci_last_regenerate|i:1677909761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91df2e965f48f38860063c3d20b160a24e6c4706', '31.222.203.2', 1677911539, '__ci_last_regenerate|i:1677911539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('708dd0a4245d8f23cf7496d4278a28872f341a68', '31.222.203.2', 1677911539, '__ci_last_regenerate|i:1677911539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6670d53a5abf2ef67920560adbdd65fb473378b', '31.222.203.2', 1677911539, '__ci_last_regenerate|i:1677911539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d7a828a818015beee5adfa9c817c224e6ef416', '31.222.203.2', 1677911539, '__ci_last_regenerate|i:1677911539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee80fe422dc152e8f9cbfde4209039f7b2534404', '31.222.203.2', 1677911539, '__ci_last_regenerate|i:1677911539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d54e225ecff59188c38d6da3e9e7d36192c9966', '31.222.203.2', 1677911539, '__ci_last_regenerate|i:1677911539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9a3821b50acbe0c9e84c03e1473c9020f92349', '66.249.70.165', 1677913263, '__ci_last_regenerate|i:1677913263;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52589de491bbf83e8c765f85e848115748a19d12', '66.249.70.191', 1677913263, '__ci_last_regenerate|i:1677913263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e60bd7e5758cf6b884d44cd2eeae201d4c02944', '66.249.70.191', 1677913263, '__ci_last_regenerate|i:1677913263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c86ae4e0faa19dab9d7a5c147efd7f5301eb72c', '66.249.70.191', 1677913263, '__ci_last_regenerate|i:1677913263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09875bd33eba3d6479a7b882041e926ea4e03b91', '31.222.203.2', 1677913350, '__ci_last_regenerate|i:1677913350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19fd25e43881fc1a5e053727a210ee38826ba49e', '31.222.203.2', 1677913350, '__ci_last_regenerate|i:1677913350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65d51dbe1251220d69fc0c1115f8925f9ca5cd2', '31.222.203.2', 1677913350, '__ci_last_regenerate|i:1677913350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e70b0347e765e922a7eaa20bf17265e09a66b92', '31.222.203.2', 1677913350, '__ci_last_regenerate|i:1677913350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a996cdc5690fb8483b31f9df8de5aef7793d1d01', '31.222.203.2', 1677913350, '__ci_last_regenerate|i:1677913350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538b41e5ffc6ea2a7602756239184f89d5921922', '31.222.203.2', 1677913350, '__ci_last_regenerate|i:1677913350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5efdfb8560f4f4cc0b31bfa79cb9cc9c0ff985', '31.222.203.2', 1677915151, '__ci_last_regenerate|i:1677915151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2de02b3fd0f45bf3337b1f011090fd5c8561ab86', '31.222.203.2', 1677915151, '__ci_last_regenerate|i:1677915151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be257a2a840035e6a5903960fdcf7410c5089c2', '31.222.203.2', 1677915151, '__ci_last_regenerate|i:1677915151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8be82d3cad584c1e89411e78099990a21778c149', '31.222.203.2', 1677915151, '__ci_last_regenerate|i:1677915151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adaef4ce4135fc1d76fad2ac9a4d578b4ee6cb25', '31.222.203.2', 1677915151, '__ci_last_regenerate|i:1677915151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8fc3c2e94f6a86234381001b87c1a9095d953b', '31.222.203.2', 1677915151, '__ci_last_regenerate|i:1677915151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4637ea75d95e25c56d92d52e15b2785e394a6cf0', '31.222.203.2', 1677916966, '__ci_last_regenerate|i:1677916966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5ef518cfbc5e500261e937ec531e28451fcf1e', '31.222.203.2', 1677916966, '__ci_last_regenerate|i:1677916966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb068259c98ee8cc3cc9511e77a1e815ed11f23', '31.222.203.2', 1677916966, '__ci_last_regenerate|i:1677916966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f735401228da59ab34f34ed861fb03940cf2c40b', '31.222.203.2', 1677916966, '__ci_last_regenerate|i:1677916966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b6f1bef4714ee1162da095a7f31eab93d3081be', '31.222.203.2', 1677916966, '__ci_last_regenerate|i:1677916966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6a24b039caba27554ee2c4a6d0bce5da9bfdb0d', '31.222.203.2', 1677916966, '__ci_last_regenerate|i:1677916966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b27467b2209baf2840bfa4ebd55ae41afd10241', '66.249.70.165', 1677917221, '__ci_last_regenerate|i:1677917221;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ea2441e2ed23d178a5ed6bee615bae286a22a5', '66.249.70.162', 1677917221, '__ci_last_regenerate|i:1677917221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e635c94aca9137e18717ecd46c720ac2206daaee', '66.249.70.191', 1677917221, '__ci_last_regenerate|i:1677917221;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90a4bfce0868add410de712e3ab2b6c8968ed65a', '66.249.70.191', 1677917221, '__ci_last_regenerate|i:1677917221;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15148202906a2cdd4ad5e8c8aa883f6ccc46897e', '31.222.203.2', 1677918753, '__ci_last_regenerate|i:1677918753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae53af3140fdc8ae6675e14ff70d8743871f2abc', '31.222.203.2', 1677918753, '__ci_last_regenerate|i:1677918753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('926f0f3a3d0123a7761f6cf94166559f8062dd32', '31.222.203.2', 1677918753, '__ci_last_regenerate|i:1677918753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6017b500120a3de30f10ff1b90641d1ff01a43c4', '31.222.203.2', 1677918753, '__ci_last_regenerate|i:1677918753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e745c5114b11bf93d40099fabfe842a41e3e641', '31.222.203.2', 1677918753, '__ci_last_regenerate|i:1677918753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6e64334b0c1d9782510384c04a2c3fe657df8c', '31.222.203.2', 1677918753, '__ci_last_regenerate|i:1677918753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6752cee24e8ac34ae6e5c34b73b2812ab4545536', '37.111.219.237', 1677920486, 'requested_page|s:25:\"admin/sales/suggestions/1\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7384787b9d96cde3f7e4bb1164122db10606f1cc', '37.111.219.237', 1677921054, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677921054;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677920733;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed8b21b6aa6308436e92e6d3a098a3651f875af', '31.222.203.2', 1677920559, '__ci_last_regenerate|i:1677920559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18e8cb75cd43e3e8dc8827a6d701f533011a490', '31.222.203.2', 1677920559, '__ci_last_regenerate|i:1677920559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2098680610e3b20971191f93b0cd71fb9fc4c10f', '31.222.203.2', 1677920559, '__ci_last_regenerate|i:1677920559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f83751a7ee91d01444b455c2e678edb5456445', '31.222.203.2', 1677920559, '__ci_last_regenerate|i:1677920559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fca2161837ddc18105f640b32315847754b9a725', '31.222.203.2', 1677920559, '__ci_last_regenerate|i:1677920559;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd649a8db197feb20a644fb0442341652929c897', '31.222.203.2', 1677920559, '__ci_last_regenerate|i:1677920559;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75183f4987c5beeb6c63c05ccda3ebaea3defc74', '37.111.219.237', 1677922545, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677922545;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677921054;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dde8a3b0ce4c5dc233243442aeb16933174a10b', '31.222.203.2', 1677922355, '__ci_last_regenerate|i:1677922355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3599e7e722fb5476228fb53282e6fc22818e6e', '31.222.203.2', 1677922355, '__ci_last_regenerate|i:1677922355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de4ec8b73d15c99e7a8e71fd5b90a6702d8d820', '31.222.203.2', 1677922355, '__ci_last_regenerate|i:1677922355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c433f25f2e7c65e1556cae88d6873a67cf49b768', '31.222.203.2', 1677922355, '__ci_last_regenerate|i:1677922355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d41bdfb2a3def51ce694feebb5282ed32e8f103c', '31.222.203.2', 1677922355, '__ci_last_regenerate|i:1677922355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f97faac12d59b5da34a370db3c08df76144571', '31.222.203.2', 1677922355, '__ci_last_regenerate|i:1677922355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('349947ee3d015eec408e24b98e49501af8c724ab', '37.111.219.237', 1677926078, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677926078;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677926068;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9086fb786d6528da7baf482f2366521a4aa663ae', '198.235.24.8', 1677923956, '__ci_last_regenerate|i:1677923956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779bc9316626d4b22a4e58ed905ae28cfb9f8855', '31.222.203.2', 1677924155, '__ci_last_regenerate|i:1677924155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d36cdb8dd179fd962fc1d0a328455c139c5286e6', '31.222.203.2', 1677924155, '__ci_last_regenerate|i:1677924155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1599f3ea91c032d5539eb914893f12d2a302f6e', '31.222.203.2', 1677924155, '__ci_last_regenerate|i:1677924155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd6fd241f33152b205aab738466998cffd4cb9c', '31.222.203.2', 1677924155, '__ci_last_regenerate|i:1677924155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231d3fc20fb9a3a906cb8ae8dd3ef2649ba4d80d', '31.222.203.2', 1677924155, '__ci_last_regenerate|i:1677924155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43bc00e04ec58c4ef3deeeea2778fd7888ef399', '31.222.203.2', 1677924155, '__ci_last_regenerate|i:1677924155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802d4073d8e829c4e3c4877118f1aca6cf85dd25', '183.136.225.46', 1677925278, '__ci_last_regenerate|i:1677925278;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15740fa60a9b910e9d6c6c3a28d024fe0afbb31', '183.136.225.46', 1677925292, '__ci_last_regenerate|i:1677925292;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('405c702df02424ea00d9a69f51d4a331a8a0cdad', '183.136.225.46', 1677925469, '__ci_last_regenerate|i:1677925469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1d9eb32b2e2ac2692a24a6b8c0572e1cf227a97', '183.136.225.46', 1677925473, '__ci_last_regenerate|i:1677925473;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893848443db6375b0db5efdadd3113a89a91b1ba', '183.136.225.46', 1677925473, '__ci_last_regenerate|i:1677925473;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('493e52507bef9d97dc4870ce821dd26fe0db2624', '183.136.225.46', 1677925484, '__ci_last_regenerate|i:1677925484;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4ee55411ad044a54f15cd2532f7968f7c7c9df', '183.136.225.46', 1677925486, '__ci_last_regenerate|i:1677925486;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5172c83ec21ffd187d0da78c7027fcd997a243c0', '183.136.225.46', 1677925487, '__ci_last_regenerate|i:1677925487;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18bb57b934534c2b95e1f5357c023f62b6bab99e', '183.136.225.46', 1677925488, '__ci_last_regenerate|i:1677925488;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d297bdc22ce66e26eb01ebcfa13e1482533edc92', '183.136.225.46', 1677925491, '__ci_last_regenerate|i:1677925491;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89eb86e962ff9d7ebb739cc89d7db9313e7c8992', '183.136.225.46', 1677925491, '__ci_last_regenerate|i:1677925491;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f09bc00cff7545253494968c69cb6f071cfa4e3', '183.136.225.46', 1677925497, '__ci_last_regenerate|i:1677925497;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785e2dbe25b44bafd9a4136e373c37253540881a', '183.136.225.46', 1677925500, '__ci_last_regenerate|i:1677925500;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdaab843825f091d3c289afdbd09d6ed059620f4', '183.136.225.46', 1677925500, '__ci_last_regenerate|i:1677925500;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2ef59fbfdd76593775dde0802dcf628a9914eff', '31.222.203.2', 1677925951, '__ci_last_regenerate|i:1677925951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c717c64fb3e59ec63f6f71f5125d14dbdc71e750', '31.222.203.2', 1677925951, '__ci_last_regenerate|i:1677925951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3616ecf364cc729ab529a66bfd9d41efe2c54ec1', '31.222.203.2', 1677925951, '__ci_last_regenerate|i:1677925951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acabdc93bb4f90e641e9531a93fef7f8ee4f756a', '31.222.203.2', 1677925952, '__ci_last_regenerate|i:1677925952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7614ee06194cd64777e7a66e7fbd1f01c41593cd', '31.222.203.2', 1677925952, '__ci_last_regenerate|i:1677925952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02387291030c5efeb933d761ce75b91da319235d', '31.222.203.2', 1677925952, '__ci_last_regenerate|i:1677925952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90d2dbd4c40c93b5f186422a19ea8c2123b012ba', '37.111.219.237', 1677933106, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677933106;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677926079;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc553f1996ad53c4876a4cac6407a94163b11e8', '36.32.2.140', 1677927355, '__ci_last_regenerate|i:1677927351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee3addfe0eae6b3e88cd90f899ca7d38f4c0412', '31.222.203.2', 1677927755, '__ci_last_regenerate|i:1677927755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4526d04b54a0e21ea19efef1c44b96b31769c906', '31.222.203.2', 1677927755, '__ci_last_regenerate|i:1677927755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3c7353dcf7688ff37b9b82de17157ae4cd4e60', '31.222.203.2', 1677927756, '__ci_last_regenerate|i:1677927756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366ccad6822fada5c13c05bdfacde22a8e830146', '31.222.203.2', 1677927756, '__ci_last_regenerate|i:1677927756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5045b0125289319a2f365facf91feda98c88dc27', '31.222.203.2', 1677927756, '__ci_last_regenerate|i:1677927756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1335b0ffcce62457d6a49f2cb6f924757df56a51', '31.222.203.2', 1677927756, '__ci_last_regenerate|i:1677927756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe4549fccae01d7b6052d9a47f81139501d73fc', '116.204.230.28', 1677931854, '__ci_last_regenerate|i:1677931854;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677822913\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bf5d6c8d57b06456e17bd31e5730bd866ce106', '31.222.203.2', 1677929556, '__ci_last_regenerate|i:1677929556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a20c4d8df42acd260c3c51bcb76b2c8ee58a24', '31.222.203.2', 1677929556, '__ci_last_regenerate|i:1677929556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0baf7433c6f0b7ca1f1fbdce3e65edc25c24256a', '31.222.203.2', 1677929556, '__ci_last_regenerate|i:1677929556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b19dfb969c607523b2c2072a49d2b981e5e254', '31.222.203.2', 1677929556, '__ci_last_regenerate|i:1677929556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f470b38041c93cc314b0a38e35b8471e6494fe', '31.222.203.2', 1677929556, '__ci_last_regenerate|i:1677929556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e44c93201a70b42a76fc104a95160a66a872de71', '31.222.203.2', 1677929557, '__ci_last_regenerate|i:1677929557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cba07182be703beedea579923757a41b5617579', '87.236.176.33', 1677930303, '__ci_last_regenerate|i:1677930303;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dffea56198ffba2eace1415f10d4715fbe9001ce', '87.236.176.33', 1677930303, '__ci_last_regenerate|i:1677930303;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3568e5a1eaeccd58a866779863dec1c5920b70c5', '31.222.203.2', 1677931357, '__ci_last_regenerate|i:1677931357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('637db3053655d6b70d4135afbaeb3722d15b3c03', '31.222.203.2', 1677931357, '__ci_last_regenerate|i:1677931357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2df6a5810061ef3e838b7bcdb8df4db140e529', '31.222.203.2', 1677931357, '__ci_last_regenerate|i:1677931357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ad398e2bb0bd6ed2e246d2c1d05c64a919ea896', '31.222.203.2', 1677931357, '__ci_last_regenerate|i:1677931357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dac28419ffc9a245fd1c54415c13013dd0e6439', '31.222.203.2', 1677931357, '__ci_last_regenerate|i:1677931357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a039cb85b626149d7ab775ab20b231ed3af24b92', '31.222.203.2', 1677931357, '__ci_last_regenerate|i:1677931357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f1286230d3427f35d41f4b4afa30b6c1ed23c23', '116.204.230.28', 1677932669, '__ci_last_regenerate|i:1677932669;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677822913\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53e3dd07ab6fabb52d63e8a43f1ea789fdfaf60a', '116.204.230.28', 1677933818, '__ci_last_regenerate|i:1677933818;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677822913\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4818675dfa9ae99bf6414314eea789edec382b5', '37.111.219.237', 1677937187, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677937187;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677933318;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57aa4d6980732faf85d76982f9364ad59bef4a2', '31.222.203.2', 1677933151, '__ci_last_regenerate|i:1677933151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff7c781bbc3ad7b9858e2bd598d0a34709836a85', '31.222.203.2', 1677933151, '__ci_last_regenerate|i:1677933151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abfd77b208f2a595d041db15c2905f089f6912a2', '31.222.203.2', 1677933151, '__ci_last_regenerate|i:1677933151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ff78747bb589a070b68b35cd4c68dc8d15e9b49', '31.222.203.2', 1677933151, '__ci_last_regenerate|i:1677933151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba9d440728f61c517285ae837cdb6e7f53545476', '31.222.203.2', 1677933151, '__ci_last_regenerate|i:1677933151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42da563aa172625133e73a57801362fd573e4367', '31.222.203.2', 1677933151, '__ci_last_regenerate|i:1677933151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2af40c20e684947743bf4fbcb0bf0e42e20aa89d', '116.204.230.28', 1677933818, '__ci_last_regenerate|i:1677933818;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677822913\";last_ip|s:14:\"116.204.230.24\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('540dbe8fbe33fb936b278b699debbd3b0cb402fa', '205.210.31.11', 1677934058, '__ci_last_regenerate|i:1677934058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c8abd181f4583125778aedf4011b872a6ae5b0', '205.210.31.11', 1677934058, '__ci_last_regenerate|i:1677934058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('364b522c4e886cc4c7753ad39c462ccd9975ddc7', '205.210.31.11', 1677934058, '__ci_last_regenerate|i:1677934058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33641a92b588eaa5f3e82b9f7bb2024f4c6e110', '31.222.203.2', 1677934956, '__ci_last_regenerate|i:1677934956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6400474286634cfde99bf337ef665c1795ae7ad', '31.222.203.2', 1677934956, '__ci_last_regenerate|i:1677934956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b6792947dc1b9c3c70e8c996a4a913c61c19e5', '31.222.203.2', 1677934956, '__ci_last_regenerate|i:1677934956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4055c19f5bc489f48089c4bc90a104f28d6cf237', '31.222.203.2', 1677934956, '__ci_last_regenerate|i:1677934956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c4abeb8e48f1308a23715f115a95ebae11ddbae', '31.222.203.2', 1677934956, '__ci_last_regenerate|i:1677934956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88e9ac0148ae9b296e722b9dfe6ede2c203f2b9', '31.222.203.2', 1677934956, '__ci_last_regenerate|i:1677934956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64b77b29d1c3b6c0eba2c29e1d0c61a8c9958cb8', '31.222.203.2', 1677936754, '__ci_last_regenerate|i:1677936754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68f828408e97b49209255170b3153e65a604cc41', '31.222.203.2', 1677936754, '__ci_last_regenerate|i:1677936754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a50d244a139ed639ed4cc5bbd3144004a916162', '31.222.203.2', 1677936754, '__ci_last_regenerate|i:1677936754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa53f49b0213580515f9888657b5cc1fa56a5ec2', '31.222.203.2', 1677936754, '__ci_last_regenerate|i:1677936754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7fd7af12d97a7f858966bca7aff72ed044747b3', '31.222.203.2', 1677936754, '__ci_last_regenerate|i:1677936754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa391c87de464de9235a06efdb92d57b90208bf1', '31.222.203.2', 1677936754, '__ci_last_regenerate|i:1677936754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19ba4767ee6585d7ca21c7352ff066fe0b8dec01', '37.111.219.237', 1677938105, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677938105;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677937246;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0591fe85cedd1496336d570c0110ec6dfe178c62', '37.111.219.237', 1677941938, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677941938;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677941931;register_id|s:3:\"359\";cash_in_hand|s:10:\"29590.0000\";register_open_time|s:19:\"2023-03-03 21:11:18\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62932f8375c521d95551adf1df144b4d444216d5', '31.222.203.2', 1677938548, '__ci_last_regenerate|i:1677938548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11111e09f4ed9674333d0b8a712556d88150b4de', '31.222.203.2', 1677938548, '__ci_last_regenerate|i:1677938548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a22b4262050dbd920c274c2e68cf3ec23d588b2', '31.222.203.2', 1677938548, '__ci_last_regenerate|i:1677938548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec3635bdcb3fc3f25c833e8acbf552310b562652', '31.222.203.2', 1677938553, '__ci_last_regenerate|i:1677938553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2292dd6ba1ff9fa6ef6d0509b8c6d46c4d60027c', '31.222.203.2', 1677938553, '__ci_last_regenerate|i:1677938553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f3c62c6573ff58aaa790a5f8cfbc246b4f2ba9d', '31.222.203.2', 1677938553, '__ci_last_regenerate|i:1677938553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425dc17481ea83f30b1d39993ae5d2e30e4d0eec', '31.222.203.2', 1677940351, '__ci_last_regenerate|i:1677940351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4acde31155d82d6ac81c4733053882541c768f2f', '31.222.203.2', 1677940351, '__ci_last_regenerate|i:1677940351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e80e57df572ffe900cf6dcd0ee37e4e539674138', '31.222.203.2', 1677940351, '__ci_last_regenerate|i:1677940351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbe53b3eb6bbd0ec56f11143536435cc601a21ff', '31.222.203.2', 1677940351, '__ci_last_regenerate|i:1677940351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03146d1182402659e3404d35ff45c322f508e930', '31.222.203.2', 1677940351, '__ci_last_regenerate|i:1677940351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d682e4cfb70b6352778e3b9be3af1afdcd4882', '31.222.203.2', 1677940351, '__ci_last_regenerate|i:1677940351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2aa9860767472ba35f8a01282be742d5b46ea3', '37.111.219.237', 1677941974, 'requested_page|s:9:\"admin/pos\";__ci_last_regenerate|i:1677941938;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677901694\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677941974;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bfbb4388721a83ee0f88826bf17378d365b8105', '31.222.203.2', 1677942157, '__ci_last_regenerate|i:1677942157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93333b86d94c67bc2e0bebc0250d1b9702c1def9', '31.222.203.2', 1677942157, '__ci_last_regenerate|i:1677942157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9887bc44b0dbf8cbfebad01ae3d8883bb3ac970f', '31.222.203.2', 1677942157, '__ci_last_regenerate|i:1677942157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a79b635fa1f82bbc7fc85cf4329668341cb5c5a6', '31.222.203.2', 1677942157, '__ci_last_regenerate|i:1677942157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10d3ff5a5b876d2b6f4f04cac3463b01884d270', '31.222.203.2', 1677942157, '__ci_last_regenerate|i:1677942157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8599de32b4fef69e4ccfaa0010d8e01aed74650d', '31.222.203.2', 1677942157, '__ci_last_regenerate|i:1677942157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cc3f04cc5cf926f3039690e63cef2ee1b5489c', '205.210.31.155', 1677943241, '__ci_last_regenerate|i:1677943241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4f1bdb179543b62b35daa0e7a2fb0d5933aa33', '205.210.31.155', 1677943241, '__ci_last_regenerate|i:1677943241;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1aceb5c18f379340b87796e00f9423510961a3', '205.210.31.155', 1677943242, '__ci_last_regenerate|i:1677943242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6cb98de0235a19da80c24060b73e6bf3f553e10', '31.222.203.2', 1677943945, '__ci_last_regenerate|i:1677943945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a56f08a7d2489d7104f145f8e0cb50bc622dfc8', '31.222.203.2', 1677943945, '__ci_last_regenerate|i:1677943945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b56a03188f4cbdce6053ccd5066d7f17cdfec2', '31.222.203.2', 1677943945, '__ci_last_regenerate|i:1677943945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ada96415df48dc0c2435f8cc6fb4b42bfd29f42', '31.222.203.2', 1677943945, '__ci_last_regenerate|i:1677943945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59c9ab5df69acd1dd71f139e85990b2fc0ac0dc', '31.222.203.2', 1677943945, '__ci_last_regenerate|i:1677943945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7cac2ea45a3c98574dea92da883274cbb8bf33a', '31.222.203.2', 1677943945, '__ci_last_regenerate|i:1677943945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bddbfbeff3531c436687a9932305991b8e6069', '31.222.203.2', 1677945766, '__ci_last_regenerate|i:1677945766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0082a19ebe65788f427c1f1fa68078237fa492f', '31.222.203.2', 1677945766, '__ci_last_regenerate|i:1677945766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c50f593d8e5f998ad9a025859664cf0e5f2e326', '31.222.203.2', 1677945766, '__ci_last_regenerate|i:1677945766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6043bcd5cb40d65cdf3fe134d0852d1da30900f7', '31.222.203.2', 1677945766, '__ci_last_regenerate|i:1677945766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16d5c95bfb72c46e60bbe6f60a880f1a0966ec7e', '31.222.203.2', 1677945766, '__ci_last_regenerate|i:1677945766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91afbaf5f8620aef5a3437f2f988ae3e2ec9444a', '31.222.203.2', 1677945766, '__ci_last_regenerate|i:1677945766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73cda01a9b31c3f3a5783cdb8816ab35a50c2946', '31.222.203.2', 1677947544, '__ci_last_regenerate|i:1677947544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29e3a881d699c98afb6698c6f191817c38796917', '31.222.203.2', 1677947544, '__ci_last_regenerate|i:1677947544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e4f6dce2378a50a826f41aa3a9c8322f0cedf37', '31.222.203.2', 1677947544, '__ci_last_regenerate|i:1677947544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5e53836cd09a5b9400c4e208afbde24a23de9bf', '31.222.203.2', 1677947544, '__ci_last_regenerate|i:1677947544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cf64ed772e228f49e35d8a2b4353c5b22a3b41', '31.222.203.2', 1677947544, '__ci_last_regenerate|i:1677947544;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb7b776591dc3d5834347ade7224b2bf0897fbb', '31.222.203.2', 1677947544, '__ci_last_regenerate|i:1677947544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab455db2a9624449bc109570c9674fb56dd40ece', '31.222.203.2', 1677949360, '__ci_last_regenerate|i:1677949360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afcfe18b0066cbf3eb918d1398e908159106d3dc', '31.222.203.2', 1677949360, '__ci_last_regenerate|i:1677949360;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be7ab94cde409dde2b3d7826f43b976ab4b23653', '31.222.203.2', 1677949360, '__ci_last_regenerate|i:1677949360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a1eee5c7399f98b1a5bf405ae85434b567f1bc', '31.222.203.2', 1677949360, '__ci_last_regenerate|i:1677949360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f0f63f6abbd9d799c4261c3c9eb8dd78f2f793a', '31.222.203.2', 1677949360, '__ci_last_regenerate|i:1677949360;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff9ccc4434b97657ed66c3057ed5be827413c0b', '31.222.203.2', 1677949360, '__ci_last_regenerate|i:1677949360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a2d34a4bcc8a6ca19b7caa305f406670e974cab', '31.222.203.2', 1677951146, '__ci_last_regenerate|i:1677951146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6521f1fc8985c81e53962c66153e12d7c3d6076', '31.222.203.2', 1677951146, '__ci_last_regenerate|i:1677951146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('612ae5d29a1971efb95444d86c2cff2a043cc8c5', '31.222.203.2', 1677951146, '__ci_last_regenerate|i:1677951146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef16d4743f0391e94ea806c214c5993b20fd52cc', '31.222.203.2', 1677951146, '__ci_last_regenerate|i:1677951146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6884074879ebab52cec6af785cd20b5f289e6114', '31.222.203.2', 1677951146, '__ci_last_regenerate|i:1677951146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd9aab41059d39278fe55e3e60cde6e83f64e291', '31.222.203.2', 1677951146, '__ci_last_regenerate|i:1677951146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8470cb95ab0c6653b14d4bf091bf888d42e8f93b', '31.222.203.2', 1677952960, '__ci_last_regenerate|i:1677952960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5270ac51fd42cb4c02c817f6635b2ce8a4b80dc2', '31.222.203.2', 1677952960, '__ci_last_regenerate|i:1677952960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d0b8a9a1b8282925438bdabff6fd9a3bbae90a9', '31.222.203.2', 1677952960, '__ci_last_regenerate|i:1677952960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec1e9e95bbcaf0ef860f1c16c1f26ecd7e1479be', '31.222.203.2', 1677952960, '__ci_last_regenerate|i:1677952960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbb8f8c2e1fdc8d58d6f14ff7ee26845be12fa2b', '31.222.203.2', 1677952960, '__ci_last_regenerate|i:1677952960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('449904412a0b2d54dfe601d0acfde0544a0e0201', '31.222.203.2', 1677952960, '__ci_last_regenerate|i:1677952960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c07cad13bdc1130c21b7002f1180491094214098', '31.222.203.2', 1677954752, '__ci_last_regenerate|i:1677954752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1c12d2ccab22586993ea0236d40ae0e7e66abc', '31.222.203.2', 1677954752, '__ci_last_regenerate|i:1677954752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2678ed52f0272c564fea498225b6aff4372aa203', '31.222.203.2', 1677954752, '__ci_last_regenerate|i:1677954752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c148a9dc50e7c06dfb5ddefc6a86583f1d6c2e8', '31.222.203.2', 1677954753, '__ci_last_regenerate|i:1677954753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba8ee15f8a7aeb299654ddb5f73230314fa3976e', '31.222.203.2', 1677954753, '__ci_last_regenerate|i:1677954753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6717fe746c00e1a64f34d39a67f350fd34c08806', '31.222.203.2', 1677954753, '__ci_last_regenerate|i:1677954753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6ab8cc10a9a7b1f97413c0187db915fb793bf3', '31.222.203.2', 1677956556, '__ci_last_regenerate|i:1677956556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e9733d9e06865d5e13b4e71137b40153c81d779', '31.222.203.2', 1677956556, '__ci_last_regenerate|i:1677956556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e555964a27d70f3b9229b2883d7cdaa2014e3888', '31.222.203.2', 1677956556, '__ci_last_regenerate|i:1677956556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d316233a1262bce4d7319682eb430cbbfae0a77', '31.222.203.2', 1677956556, '__ci_last_regenerate|i:1677956556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998a0af791bacc912854e2a7f6b7d5e2d26f49b4', '31.222.203.2', 1677956556, '__ci_last_regenerate|i:1677956556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da213f001ca9c242d9870b412a17def66f5ecacb', '31.222.203.2', 1677956556, '__ci_last_regenerate|i:1677956556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b43fbaf4bd2058c5bce317ef16be9ac5b68075', '31.222.203.2', 1677958349, '__ci_last_regenerate|i:1677958349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85a5e16843ed8cb54aa463175c9790a5878fc677', '31.222.203.2', 1677958349, '__ci_last_regenerate|i:1677958349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcfa3a5298097e30481c1aa5a988d9e1bf19e269', '31.222.203.2', 1677958349, '__ci_last_regenerate|i:1677958349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10523780a3d078b0a62f50ad661e4910b910781b', '31.222.203.2', 1677958349, '__ci_last_regenerate|i:1677958349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6a21fc818fb9f7b4b688d2cc4df3a3021c07963', '31.222.203.2', 1677958349, '__ci_last_regenerate|i:1677958349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d221391eb568bfb49837840ee529a7e83f573c1', '31.222.203.2', 1677958349, '__ci_last_regenerate|i:1677958349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80cfb0f2c1505508679fb8c7c5bf6b80a403566', '31.222.203.2', 1677960155, '__ci_last_regenerate|i:1677960155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02826302ceb5f66a88ed0958b1b4dfd08caf3c1', '31.222.203.2', 1677960155, '__ci_last_regenerate|i:1677960155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b01a96c9446cb88edc82f1dc9dd5d7b6ac88716', '31.222.203.2', 1677960155, '__ci_last_regenerate|i:1677960155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22b495521f8d4dd9f97147142b19872d379e1a54', '31.222.203.2', 1677960160, '__ci_last_regenerate|i:1677960160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015327fff4aafc632b6c34aff8d29e96f2029a05', '31.222.203.2', 1677960160, '__ci_last_regenerate|i:1677960160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9738a3c66f73a2925ba7948c7ffee4f3897d1a7', '31.222.203.2', 1677960160, '__ci_last_regenerate|i:1677960160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efc02033aa2af701176d6f47a1defa7b39695385', '31.222.203.2', 1677961946, '__ci_last_regenerate|i:1677961946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('150cda731322caa754fb283a423f3002cf52de97', '31.222.203.2', 1677961946, '__ci_last_regenerate|i:1677961946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c3ace8224abb99b374b5af6dce97080ee312073', '31.222.203.2', 1677961946, '__ci_last_regenerate|i:1677961946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c50bb4ce3881d9f352023850eff50b3f34e2bf', '31.222.203.2', 1677961946, '__ci_last_regenerate|i:1677961946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9126cf67d1798bc0c532582b2b7a7285de2ff33', '31.222.203.2', 1677961946, '__ci_last_regenerate|i:1677961946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f6ff13dcf40cf0dedfed15039cf84bcf20ce52', '31.222.203.2', 1677961946, '__ci_last_regenerate|i:1677961946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a07dc4bc8d03efbd937f37c3558495522f2e8371', '31.222.203.2', 1677963762, '__ci_last_regenerate|i:1677963762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d99e620c94cba8e1bf3adfecaea4936db893c08', '31.222.203.2', 1677963762, '__ci_last_regenerate|i:1677963762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e0e5074b126582fc58518be4a0872199d2b9ee8', '31.222.203.2', 1677963762, '__ci_last_regenerate|i:1677963762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('182a896b22d19f912f95bb18c6a488229955e523', '31.222.203.2', 1677963763, '__ci_last_regenerate|i:1677963762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4410fbb58e4c20711467ea702ebd1c732b3f44', '31.222.203.2', 1677963763, '__ci_last_regenerate|i:1677963763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8acb8a559c73eb9bbae892599106a6a44e92bdbc', '31.222.203.2', 1677963763, '__ci_last_regenerate|i:1677963763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ced9e2644248905711356ed667dddb0305e8d04', '31.222.203.2', 1677965548, '__ci_last_regenerate|i:1677965548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dd0209491189da53b04ce68435636abb1dd8026', '31.222.203.2', 1677965548, '__ci_last_regenerate|i:1677965548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa0848f2b9b050d72f8895248291ac912e059f5', '31.222.203.2', 1677965548, '__ci_last_regenerate|i:1677965548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f365640e1e91c5b75a17d7baea820289dec8f36', '31.222.203.2', 1677965548, '__ci_last_regenerate|i:1677965548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b63208b3b6551de65e4ae6d4a812640ab56625', '31.222.203.2', 1677965548, '__ci_last_regenerate|i:1677965548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f402d443dfd18365f6acc4eb58aff3aaf2f47161', '31.222.203.2', 1677965548, '__ci_last_regenerate|i:1677965548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7721bfddd35e2b0a01e7de88eb4e646cef55b856', '31.222.203.2', 1677967349, '__ci_last_regenerate|i:1677967349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60474ba0617095e2e3b05c6e870d1980ece877b', '31.222.203.2', 1677967349, '__ci_last_regenerate|i:1677967349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ce9bf6b9a49703e131cc024ccf87d74b5e299d', '31.222.203.2', 1677967349, '__ci_last_regenerate|i:1677967349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e973ed8424a88911a1d7623f147e13f55f70050e', '31.222.203.2', 1677967349, '__ci_last_regenerate|i:1677967349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dbafd187afcbd67fcf01d4f38c0b121dae8ecea', '31.222.203.2', 1677967349, '__ci_last_regenerate|i:1677967349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7058081d23204bbbc6191a7e3fac985e4a346a4b', '31.222.203.2', 1677967349, '__ci_last_regenerate|i:1677967349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01f05ba64cf6faaac5fe693c448c67381b73c00', '31.222.203.2', 1677969149, '__ci_last_regenerate|i:1677969149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae99891570676db7905d63a035a3a5eda7acab93', '31.222.203.2', 1677969149, '__ci_last_regenerate|i:1677969149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbebfb73d835c6d8de588de5d84502c2a23986d6', '31.222.203.2', 1677969149, '__ci_last_regenerate|i:1677969149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407080c1cdb8c98aef7ef65ed5469b9db2f3aa1f', '31.222.203.2', 1677969149, '__ci_last_regenerate|i:1677969149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310fff6483f9ecaaaa674c5588acdb3ae672241c', '31.222.203.2', 1677969149, '__ci_last_regenerate|i:1677969149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ed199d865f152ed1f7b1b3c50902155b441348', '31.222.203.2', 1677969149, '__ci_last_regenerate|i:1677969149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb0ca6954a88e2361e1a4a50195df957616d9d87', '198.235.24.137', 1677970257, '__ci_last_regenerate|i:1677970257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a403d182eba979986b16508c00631916a42efbd9', '198.235.24.137', 1677970258, '__ci_last_regenerate|i:1677970258;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1f06fc1d0fb9c08a1b313a33bf16b702201475', '198.235.24.137', 1677970258, '__ci_last_regenerate|i:1677970258;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dfe4d677dbffa26905e3d908bc62d9c831c923f', '31.222.203.2', 1677970962, '__ci_last_regenerate|i:1677970962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cca5249b823468728ace8677dddc6104e86ed0eb', '31.222.203.2', 1677970962, '__ci_last_regenerate|i:1677970962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337747bef3d6c3f35d1df3f416f88e9024d99a1a', '31.222.203.2', 1677970962, '__ci_last_regenerate|i:1677970962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35946e777de9a916c16f3755c58d854e8e1edfa', '31.222.203.2', 1677970962, '__ci_last_regenerate|i:1677970962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c58e7da5ee69bea9ceaf44ea8e402d0ab2ae3f9', '31.222.203.2', 1677970962, '__ci_last_regenerate|i:1677970962;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee8e0dc97822f66c07332632fa463f05e8f3079', '31.222.203.2', 1677970962, '__ci_last_regenerate|i:1677970962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c863caf36c56e98258f10a074b4da2fca07c7fb', '31.222.203.2', 1677972750, '__ci_last_regenerate|i:1677972750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81dfc0d0df4a2f4db324584a303466265f68a196', '31.222.203.2', 1677972750, '__ci_last_regenerate|i:1677972750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ab45b3e54eef590e97959e05ea80e067660c59', '31.222.203.2', 1677972750, '__ci_last_regenerate|i:1677972750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fed2b66bbdde543456d8f9494e1102d2ab0eb69', '31.222.203.2', 1677972750, '__ci_last_regenerate|i:1677972750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238c9e45046985683326ff02ef54597309a093cc', '31.222.203.2', 1677972750, '__ci_last_regenerate|i:1677972750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3542e50a9bc06a847db481dde2464c8a3707719', '31.222.203.2', 1677972750, '__ci_last_regenerate|i:1677972750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20af52ad03f78778019793296bbae5b9404b348e', '31.222.203.2', 1677974556, '__ci_last_regenerate|i:1677974556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecdc23f1345f924465380d6d061e235cca9cc829', '31.222.203.2', 1677974556, '__ci_last_regenerate|i:1677974556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75dff2e70ce3dc5b16c2c3e17c3647becfda0fe8', '31.222.203.2', 1677974556, '__ci_last_regenerate|i:1677974556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9161a0e8215ab2eb2cb6bde925a61965ae5467', '31.222.203.2', 1677974556, '__ci_last_regenerate|i:1677974556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27911ab4f815e4e7e38c3dadb881bbc0701dba95', '31.222.203.2', 1677974557, '__ci_last_regenerate|i:1677974557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9556f5527e87bf62a006b91a71211022ba0fde10', '31.222.203.2', 1677974557, '__ci_last_regenerate|i:1677974557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9271a640478a9d699fc0a9f7e5f6439a909f15c8', '31.222.203.2', 1677976350, '__ci_last_regenerate|i:1677976350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107b9eb132b64c40740b1369fc9e1fd4f184dc2e', '31.222.203.2', 1677976350, '__ci_last_regenerate|i:1677976350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efebc1001f9589d352c7f1c5f5cc124d7dcc2d02', '31.222.203.2', 1677976350, '__ci_last_regenerate|i:1677976350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4613ff9be19f7f52c6a8d990bb7560b9080f24ea', '31.222.203.2', 1677976350, '__ci_last_regenerate|i:1677976350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35f0fcb5ba26e41258898668dee89f1ea8fb638d', '31.222.203.2', 1677976350, '__ci_last_regenerate|i:1677976350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6453b92d649a076ae9740f00604dbf5a66af501c', '31.222.203.2', 1677976350, '__ci_last_regenerate|i:1677976350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb08fd6c219630ee052ba0a1f33a2f58dba1840f', '31.222.203.2', 1677978153, '__ci_last_regenerate|i:1677978153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98bca2da832d0b22fa3a1a75b4ba0fa63bf866a7', '31.222.203.2', 1677978153, '__ci_last_regenerate|i:1677978153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a706f76227656846aa220fe45d369ef6d86db480', '31.222.203.2', 1677978153, '__ci_last_regenerate|i:1677978153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98f9ab2078690160bc35432bb1acee7a40ef14f6', '31.222.203.2', 1677978153, '__ci_last_regenerate|i:1677978153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71e416b79ae71860ce30a97dd3666573b50f97e5', '31.222.203.2', 1677978153, '__ci_last_regenerate|i:1677978153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ff46a52dbd5428ab7c2ec570e80eda26c5487e', '31.222.203.2', 1677978153, '__ci_last_regenerate|i:1677978153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee27115f00e1b2f74c9d8e87f10608ebc07ee73', '31.222.203.2', 1677979953, '__ci_last_regenerate|i:1677979953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8291eebacbdd2b9fb765112abe71de80ee8cf82', '31.222.203.2', 1677979953, '__ci_last_regenerate|i:1677979953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('168bbb6e97ea6783c79f4d05804e9982926a84e9', '31.222.203.2', 1677979953, '__ci_last_regenerate|i:1677979953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68573dbb5badb1172cfb51ea90dec74e4569d96d', '31.222.203.2', 1677979953, '__ci_last_regenerate|i:1677979953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d559c0271df71007dfc30e47aa57ce69ee6815c', '31.222.203.2', 1677979953, '__ci_last_regenerate|i:1677979953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4890cd6c47f7a90020351f812fd36a8bba8f7a1d', '31.222.203.2', 1677979953, '__ci_last_regenerate|i:1677979953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d89e636429518a178d78d43f7d98ecdac2dfbf8c', '31.222.203.2', 1677981758, '__ci_last_regenerate|i:1677981758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5c8e3d948242be1d8f116933bd6a446e0d8cca', '31.222.203.2', 1677981758, '__ci_last_regenerate|i:1677981758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d65e7beb741ee8de9b609449d72229af39dda388', '31.222.203.2', 1677981758, '__ci_last_regenerate|i:1677981758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed68bd95c66c064b91124cdaf692c0d191ba974', '31.222.203.2', 1677981758, '__ci_last_regenerate|i:1677981758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34ee45ada7d6931b5ce5855dd78e74e17bfec19b', '31.222.203.2', 1677981758, '__ci_last_regenerate|i:1677981758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333d7a11dc592ea309d86be3e6b787bc27ca9b87', '31.222.203.2', 1677981758, '__ci_last_regenerate|i:1677981758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d085b9464458937e513470139c7adbd1cdc7b53', '31.222.203.2', 1677983547, '__ci_last_regenerate|i:1677983547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9488b011673bd986639f33f7881e59c3a9288a24', '31.222.203.2', 1677983547, '__ci_last_regenerate|i:1677983547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b1b75a9d40a5d7386962134b1f725544e3b409a', '31.222.203.2', 1677983547, '__ci_last_regenerate|i:1677983547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebb63a505ee10578fa3eefc40392a1ad4101396', '31.222.203.2', 1677983547, '__ci_last_regenerate|i:1677983547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56af25ce8cf8a31363d660b121d29aa87c3d8b50', '31.222.203.2', 1677983547, '__ci_last_regenerate|i:1677983547;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbfa4d12ba3a44f103ab0dfcb67a9079f7c0267', '31.222.203.2', 1677983547, '__ci_last_regenerate|i:1677983547;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f7f59ca00675e9125cbec779b2ba40778469ca', '31.222.203.2', 1677985359, '__ci_last_regenerate|i:1677985359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c20e04885c266eaacedc3c7ee2acf9c3712ef03', '31.222.203.2', 1677985359, '__ci_last_regenerate|i:1677985359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3feb71a040f81558dc52ed2ab06da8b3f8ad938d', '31.222.203.2', 1677985359, '__ci_last_regenerate|i:1677985359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a46c0e72e94b5276405daa5e212f9525e59971f', '31.222.203.2', 1677985359, '__ci_last_regenerate|i:1677985359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdff441f417a6c19faec045f325175a5947f92f', '31.222.203.2', 1677985359, '__ci_last_regenerate|i:1677985359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('142889b9825b21e95fd62041a9c82a67630fcdef', '31.222.203.2', 1677985359, '__ci_last_regenerate|i:1677985359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c434fd3c97801535600cb073e739417b50d233', '31.222.203.2', 1677987152, '__ci_last_regenerate|i:1677987152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('892d6b9ff1979451824f581724a1f2a998968345', '31.222.203.2', 1677987152, '__ci_last_regenerate|i:1677987152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a396f3f34678ef8ef2c03a66c38c98f3a4549248', '31.222.203.2', 1677987152, '__ci_last_regenerate|i:1677987152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f76cf2fde6a96cb4f7f20ff031f49ad6740dbc6', '31.222.203.2', 1677987152, '__ci_last_regenerate|i:1677987152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a3fe42384bc495de343d1525fbe7bedb2af163', '31.222.203.2', 1677987152, '__ci_last_regenerate|i:1677987152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad4c06755784e72ae9fe8680539b2640653ffdf', '31.222.203.2', 1677987152, '__ci_last_regenerate|i:1677987152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('debeeebffe172b88b211c952f02ac19fecf6a2ac', '45.120.39.89', 1677993144, '__ci_last_regenerate|i:1677993144;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677987367;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b59b1d3f2600afbb45cea66b24f4a98dab33317', '31.222.203.2', 1677988958, '__ci_last_regenerate|i:1677988958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83191188566af5c41d732293712d66e1f3244cb', '31.222.203.2', 1677988958, '__ci_last_regenerate|i:1677988958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf10a5db39e5bd091408c6fb0a3279765e692c14', '31.222.203.2', 1677988958, '__ci_last_regenerate|i:1677988958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a685fc4a52420dfae67d1c865c921e8e64746a71', '31.222.203.2', 1677988958, '__ci_last_regenerate|i:1677988958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e8ffb195d4d94a0619b0902ef65bbb10bf1b98', '31.222.203.2', 1677988958, '__ci_last_regenerate|i:1677988958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075f8007bfc97ee62a6f9e385c0f24c7bb64df52', '31.222.203.2', 1677988958, '__ci_last_regenerate|i:1677988958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e585e61c4a081b74ecea31f32472d701f9e13f3b', '31.222.203.2', 1677990747, '__ci_last_regenerate|i:1677990747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edff68903f1195f9ad1b5d5a211d50a76e47eb1e', '31.222.203.2', 1677990747, '__ci_last_regenerate|i:1677990747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3133da6fc6300d365d19c322b562b3ab0c3b40', '31.222.203.2', 1677990747, '__ci_last_regenerate|i:1677990747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('852531a533201b4984bcd2f5007c0cc3bb8ab095', '31.222.203.2', 1677990747, '__ci_last_regenerate|i:1677990747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('592ce9a3e077eea221320aff1604e2c50858dab4', '31.222.203.2', 1677990747, '__ci_last_regenerate|i:1677990747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aff4e4011acfdd17681ad18a5b017acbfd6dec5d', '31.222.203.2', 1677990747, '__ci_last_regenerate|i:1677990747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2653082697963e3572b5f855736f777a6d39ebd5', '31.222.203.2', 1677992558, '__ci_last_regenerate|i:1677992558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d63aa6ed00852373561190c2922ea35717259186', '31.222.203.2', 1677992558, '__ci_last_regenerate|i:1677992558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60cdf75ebf7e9222ac8fa5cec194aaac1ce01e3d', '31.222.203.2', 1677992558, '__ci_last_regenerate|i:1677992558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24e417c7d67353510327c95c4217846083cb119f', '31.222.203.2', 1677992558, '__ci_last_regenerate|i:1677992558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de2716d353e486b3a254be205c471c7d4da45c3b', '31.222.203.2', 1677992558, '__ci_last_regenerate|i:1677992558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db37c204545aa4464aa76fe839a2f7f1a50335fa', '31.222.203.2', 1677992558, '__ci_last_regenerate|i:1677992558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('806272253dd7bff58ac58eedb76bee83e6baad7c', '45.120.39.89', 1677995388, '__ci_last_regenerate|i:1677995388;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677993417;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79931f37b420e9534dea1835d25a3942475e6c08', '31.222.203.2', 1677994352, '__ci_last_regenerate|i:1677994352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076ca0b4672c500b858913c8753d861888067e21', '31.222.203.2', 1677994352, '__ci_last_regenerate|i:1677994352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5371c2dc4d232de0ed6997079f309c2458f350', '31.222.203.2', 1677994352, '__ci_last_regenerate|i:1677994352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef5115e6264125071bd97455da7569634cd9391a', '31.222.203.2', 1677994352, '__ci_last_regenerate|i:1677994352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14330849f1a84d5b95f376b6697cb5e2bd1a0cd0', '31.222.203.2', 1677994352, '__ci_last_regenerate|i:1677994352;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4314413d3c5efe597212f34e3923835c3649b04d', '31.222.203.2', 1677994352, '__ci_last_regenerate|i:1677994352;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81abd845f896bbdebeb1e17cceb6dbdd4882d052', '45.120.39.89', 1677996878, '__ci_last_regenerate|i:1677996878;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677995388;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d0e52beadb248fb0b93a1da868e632f8bc553b', '116.204.230.28', 1677999479, '__ci_last_regenerate|i:1677999479;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a18c3e67f38339dd3ed161f58b5b8019b113f8c', '31.222.203.2', 1677996163, '__ci_last_regenerate|i:1677996163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a387857cfa51e2a7747c2743091edbc847d5ee4', '31.222.203.2', 1677996163, '__ci_last_regenerate|i:1677996163;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d8f87788e3d03da54a34a06e766563c4c78bd8', '31.222.203.2', 1677996163, '__ci_last_regenerate|i:1677996163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8a860c427f5af0dfa9452fb4f586fd358bb870c', '31.222.203.2', 1677996163, '__ci_last_regenerate|i:1677996163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0de46d4abbe6f86542a4104e8c01c7dd878f9f72', '31.222.203.2', 1677996164, '__ci_last_regenerate|i:1677996164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bfb91a87a089cec0a57634a13d772aaa5fa4f8', '31.222.203.2', 1677996164, '__ci_last_regenerate|i:1677996164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723b4907548c2adc0c3eebb505b26e6a7b927440', '45.120.39.89', 1677997212, '__ci_last_regenerate|i:1677997212;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677997129;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af0b791650283b01f7e90471379a7eba1e8a9a95', '45.120.39.89', 1677997727, '__ci_last_regenerate|i:1677997727;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677997212;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59cad417822e55bd9df311cdfece5fac89ccd424', '45.120.39.89', 1677998222, '__ci_last_regenerate|i:1677998222;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677997994;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03c4555c6b3286b16d6d12debdfce5dab418c6fc', '31.222.203.2', 1677997954, '__ci_last_regenerate|i:1677997954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b11c0baa076c47f0f46213a7b37a2cf6098a3f15', '31.222.203.2', 1677997954, '__ci_last_regenerate|i:1677997954;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8f4a281f43495f70c76c141da8ff06fe46fdf73', '31.222.203.2', 1677997954, '__ci_last_regenerate|i:1677997954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8689efe21f3fbd80f56529a67b99f7e9b5522b47', '31.222.203.2', 1677997954, '__ci_last_regenerate|i:1677997954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563265522b35ef4c9440534af394305b41d9c7ea', '31.222.203.2', 1677997954, '__ci_last_regenerate|i:1677997954;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac0f9fd5a03740a5af1df711a33e1a39ee9e1555', '31.222.203.2', 1677997954, '__ci_last_regenerate|i:1677997954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6185b9d937a1f6911d51279f4d6cccc7a99a37', '45.120.39.89', 1677998882, '__ci_last_regenerate|i:1677998882;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677998222;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651f9deb33a6f1d1ca5d5c885d2c44d64660a1f3', '45.120.39.89', 1678001767, '__ci_last_regenerate|i:1678001767;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1677998976;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4953982e4b52a1b3aa07c82eb60e30a118a3577a', '116.204.230.28', 1678000594, '__ci_last_regenerate|i:1678000594;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"WDNqUE5ilaIbJuvYz9Ks\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73eb0500e7d31ab345c2ca3afd04f3da815569b1', '31.222.203.2', 1677999758, '__ci_last_regenerate|i:1677999758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6d459f314ece0cf0eac54e9653ce7ce296e6a1', '31.222.203.2', 1677999758, '__ci_last_regenerate|i:1677999758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8890d3b07f389606f471934aed3a69c49c9c678', '31.222.203.2', 1677999758, '__ci_last_regenerate|i:1677999758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe5d6a792d0e085e566fa29c515783e1f51b7424', '31.222.203.2', 1677999758, '__ci_last_regenerate|i:1677999758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2a1452535b65fe3e672e595fde87651368ace4', '31.222.203.2', 1677999758, '__ci_last_regenerate|i:1677999758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adceb3943bde762df86d5d62219313ec624d00ac', '31.222.203.2', 1677999758, '__ci_last_regenerate|i:1677999758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56c7a0ad618d280a9d06647e6c35b68d966cdf5', '205.210.31.59', 1678000577, '__ci_last_regenerate|i:1678000577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d00bd299fda5b5c0ac202f7c9082d5d042153b', '205.210.31.59', 1678000577, '__ci_last_regenerate|i:1678000577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6320706f1fe1b7f61e2a89336893c591d81a04ed', '205.210.31.59', 1678000577, '__ci_last_regenerate|i:1678000577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79aea202f669d5df1b74fece9cf9b4cf99b7fe8', '116.204.230.28', 1678001448, '__ci_last_regenerate|i:1678001448;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"WDNqUE5ilaIbJuvYz9Ks\";last_activity|i:1678000948;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2d18e177fee2cc8dc4ab30b6d41ee29cb6601f', '116.204.230.28', 1678001789, '__ci_last_regenerate|i:1678001789;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"WDNqUE5ilaIbJuvYz9Ks\";last_activity|i:1678001729;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0859e6c3bba3df10f03bf968866d0baa0ec5839a', '45.120.39.89', 1678002454, '__ci_last_regenerate|i:1678002454;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678001992;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43d987626649e746411f4216011663a14c915af3', '31.222.203.2', 1678001551, '__ci_last_regenerate|i:1678001551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b259139bd5efba5919c76974ab54c255d92b5dc0', '31.222.203.2', 1678001551, '__ci_last_regenerate|i:1678001551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c76b6ee4dafb70ede3193bba3fb8bea6847f0aa7', '31.222.203.2', 1678001551, '__ci_last_regenerate|i:1678001551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e50f34c259f5c8be904625e4e7945c4ba50c65bb', '31.222.203.2', 1678001551, '__ci_last_regenerate|i:1678001551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c800ae4b4851a9d7bf92d07f0e36f6264dcdf490', '31.222.203.2', 1678001551, '__ci_last_regenerate|i:1678001551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4e9257370fd7c1bc9525a1f5a08afd68adffebd', '31.222.203.2', 1678001551, '__ci_last_regenerate|i:1678001551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e479d2c6b51b81e3d35f40ff30d0905b1579125', '116.204.230.28', 1678002381, '__ci_last_regenerate|i:1678002381;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"1VcWsm5n4BAJSFiIToUh\";last_activity|i:1678002034;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fcb5d3578c418a64b52e2abe0a11669bfb33d43', '116.204.230.28', 1678005316, '__ci_last_regenerate|i:1678005316;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"1VcWsm5n4BAJSFiIToUh\";last_activity|i:1678002034;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed12bbe754db04c60f78d013b12eaa3e875f6a06', '45.120.39.89', 1678002895, '__ci_last_regenerate|i:1678002895;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678002632;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc9b4156c9d0cde6eac183a8d51a4b830089fdd4', '45.120.39.89', 1678005675, '__ci_last_regenerate|i:1678005675;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678002632;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d6d329036f02bfba3ae5f04627a052cb5a6ce4', '31.222.203.2', 1678003359, '__ci_last_regenerate|i:1678003359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b04e69b10b8fc57c29f1897c8e07b5920b586dd', '31.222.203.2', 1678003359, '__ci_last_regenerate|i:1678003359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8a1f6f2352fc481470819b549908700a81f3e4', '31.222.203.2', 1678003359, '__ci_last_regenerate|i:1678003359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b70fcd04fbc7b105bed233ef51ac4d1e509e50', '31.222.203.2', 1678003359, '__ci_last_regenerate|i:1678003359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4912f313c70ac9b9e675710ec25b743500ef74f8', '31.222.203.2', 1678003359, '__ci_last_regenerate|i:1678003359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56cb579ec9f98771a67662f326a5760808ebc944', '31.222.203.2', 1678003359, '__ci_last_regenerate|i:1678003359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28e1799bc0d8b3c9396c8b57788c33da30a4b08', '31.222.203.2', 1678005152, '__ci_last_regenerate|i:1678005152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2b7c8dc85aac4690dd9cded09640ee6ecd84ff', '31.222.203.2', 1678005152, '__ci_last_regenerate|i:1678005152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f1d7fd7304a041d01ac444c924254d9b3b52440', '31.222.203.2', 1678005152, '__ci_last_regenerate|i:1678005152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fe644c305093fa1bcf639c3c82b010cebb74982', '31.222.203.2', 1678005152, '__ci_last_regenerate|i:1678005152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88453247d0d678afac37e02645fe0a028c7ccbb6', '31.222.203.2', 1678005152, '__ci_last_regenerate|i:1678005152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076c1cbc2283f9779bc4417c00a5259bc39e5c4e', '31.222.203.2', 1678005152, '__ci_last_regenerate|i:1678005152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e32e6ad3a8d89bd4e6c6b1fa6848f3e80e359d5', '116.204.230.28', 1678005461, '__ci_last_regenerate|i:1678005316;requested_page|s:14:\"admin/products\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677929359\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"1VcWsm5n4BAJSFiIToUh\";last_activity|i:1678005359;register_id|s:2:\"10\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-03-16 15:15:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29227c9604f07c7630f452352207cb2f100e5bb6', '45.120.39.89', 1678007395, '__ci_last_regenerate|i:1678007395;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678005686;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c341f670ef29d9229d8151a1caa325d45df34747', '147.78.47.249', 1678006405, '__ci_last_regenerate|i:1678006405;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f067dc577a9b1b7d7fad26bd21fc572b7c2d351', '147.78.47.249', 1678006407, '__ci_last_regenerate|i:1678006407;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72a3722cddd26ea07f5f1d410f6c780013c12244', '147.78.47.249', 1678006409, '__ci_last_regenerate|i:1678006409;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc316a0edc164c2a32c57ec7dbc455f40f6c16b5', '31.222.203.2', 1678006953, '__ci_last_regenerate|i:1678006953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca4c9deafb763c52f1ac803d0476fbb101c410e2', '31.222.203.2', 1678006953, '__ci_last_regenerate|i:1678006953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c2526171e435c4b5f094e4f385a2565cc315668', '31.222.203.2', 1678006953, '__ci_last_regenerate|i:1678006953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aec974c8c31f6c86e85ee24d84a743cf4fa03e3', '31.222.203.2', 1678006953, '__ci_last_regenerate|i:1678006953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72897c75918f8538c29580e6c5e3a3ec0c4d8899', '31.222.203.2', 1678006953, '__ci_last_regenerate|i:1678006953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8253169ab6e7e50b9b89a29e2073aa3b93acbf', '31.222.203.2', 1678006953, '__ci_last_regenerate|i:1678006953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79484b02bc07b12bc5daf8245d0870d4e9203648', '65.154.226.166', 1678007252, '__ci_last_regenerate|i:1678007251;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fe3779f3b4481de412b8c053706b91fcbb93a3', '45.120.39.89', 1678008974, '__ci_last_regenerate|i:1678008974;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678007527;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d241fe17df0e8eea3fd5fdea773ee26133eaa3f', '65.154.226.171', 1678008096, '__ci_last_regenerate|i:1678008096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96d092579d7b2a0eaca0e5d44519bc5a4e8d7905', '65.154.226.171', 1678008097, '__ci_last_regenerate|i:1678008097;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bbbe22ceb3f140dab2a62129c81202d484f2d97', '31.222.203.2', 1678008745, '__ci_last_regenerate|i:1678008745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7c83b0774703f74394d0f01691b1da580b9cb42', '31.222.203.2', 1678008745, '__ci_last_regenerate|i:1678008745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62ca84bac0f7abfbcf20c7c09803080ced4c4180', '31.222.203.2', 1678008745, '__ci_last_regenerate|i:1678008745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ba6f37c4d1ad0e00687edc28e954e2e26222a4', '31.222.203.2', 1678008745, '__ci_last_regenerate|i:1678008745;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640e877097c9bee5c98d0f74cead03a1beccabf3', '31.222.203.2', 1678008745, '__ci_last_regenerate|i:1678008745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('955ede0a8792ccb7a275eeab0d5eced6ef5449d5', '31.222.203.2', 1678008745, '__ci_last_regenerate|i:1678008745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('408d04fe940d5053caaa3044554efc77b574ca4a', '45.120.39.89', 1678009290, '__ci_last_regenerate|i:1678009290;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678009225;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221e3287c9fefeee7a7814f41cfcaa5ad6ae7643', '45.120.39.89', 1678012177, '__ci_last_regenerate|i:1678012177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678012167;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac08d4e565b10bbd9059341f9aba11892a8dff5f', '31.222.203.2', 1678010558, '__ci_last_regenerate|i:1678010558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04673f39bcef8ab33251341d70d7ce441b3f3890', '31.222.203.2', 1678010558, '__ci_last_regenerate|i:1678010558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6963b2d9835fc9c52a0338d6336f8e529d32884c', '31.222.203.2', 1678010558, '__ci_last_regenerate|i:1678010558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a117463c9028dc3ed8e905b730349be882b946b5', '31.222.203.2', 1678010558, '__ci_last_regenerate|i:1678010558;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7554aec505a637025b39d505a07a486b15e632', '31.222.203.2', 1678010558, '__ci_last_regenerate|i:1678010558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ab5cdc43e4ee0ffc96f8de78f5280bca0b1c059', '31.222.203.2', 1678010558, '__ci_last_regenerate|i:1678010558;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3b29f93e746c352d4b4316061b8cc2b408c5f2', '45.120.39.89', 1678016051, '__ci_last_regenerate|i:1678016051;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678015934;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8930a652a4dccdda0099e31e5283cb32750dbce1', '31.222.203.2', 1678012340, '__ci_last_regenerate|i:1678012340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a411604af3742989a7722bf7ff586c57fc5bdf1c', '31.222.203.2', 1678012340, '__ci_last_regenerate|i:1678012340;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4851a9842a465df37acba0569508acf3ade5efb5', '31.222.203.2', 1678012340, '__ci_last_regenerate|i:1678012340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed5b6044597453bc8e585b833f24cbf0964f971c', '31.222.203.2', 1678012340, '__ci_last_regenerate|i:1678012340;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b4a90e703bd2e8f22c88ee65b59a506208df5a4', '31.222.203.2', 1678012341, '__ci_last_regenerate|i:1678012341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d867ffaf21795ce81729942e89014396b9da7c', '31.222.203.2', 1678012341, '__ci_last_regenerate|i:1678012341;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947fa51475541a21d32bdd9be7baf04b379e5aba', '31.222.203.2', 1678014154, '__ci_last_regenerate|i:1678014154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35ffa199385fcc067b8a566ea932dbc22ddc63ba', '31.222.203.2', 1678014154, '__ci_last_regenerate|i:1678014154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cb2f7ebda24589bd72a6fa906418f98039c52f', '31.222.203.2', 1678014154, '__ci_last_regenerate|i:1678014154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471995a21d1457fe8e6a9132e9f33ebed28445f8', '31.222.203.2', 1678014154, '__ci_last_regenerate|i:1678014154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e84df5cd34be0b02ff989b55942ebd3275f8d6c', '31.222.203.2', 1678014154, '__ci_last_regenerate|i:1678014154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6ca19a235ea9d37514d5e1d17c398f4081080a4', '31.222.203.2', 1678014154, '__ci_last_regenerate|i:1678014154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ebf67c769e53cd33ed947fca97af97ea1144f8', '116.204.230.28', 1678015913, '__ci_last_regenerate|i:1678015893;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1677996020\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d83d69748ae6a6b2fa0ad71ab2323a3a496d70c7', '31.222.203.2', 1678015946, '__ci_last_regenerate|i:1678015946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc77600311b9dcfbd9df5d051e9f9066876757ee', '31.222.203.2', 1678015946, '__ci_last_regenerate|i:1678015946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723a313c76a1ce1554ebec2f3a748714d6c4665d', '31.222.203.2', 1678015946, '__ci_last_regenerate|i:1678015946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8d966034ffac7ed2f7c798d2e605cb560c29ab4', '31.222.203.2', 1678015946, '__ci_last_regenerate|i:1678015946;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a7c15a23ce89e21a23d1f7793d8be3f44f303ce', '31.222.203.2', 1678015946, '__ci_last_regenerate|i:1678015946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee67117e625b356aa2a87deecbe2b9a1a4df29f6', '31.222.203.2', 1678015946, '__ci_last_regenerate|i:1678015946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('568a78795a099ae4d8fe76e6cd3d44ad63b0334e', '45.120.39.89', 1678017757, '__ci_last_regenerate|i:1678017757;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678016349;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b044fb0297f2b4424fa989b3b0e2449c4a54ba23', '45.120.39.89', 1678019072, '__ci_last_regenerate|i:1678019072;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678017765;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fd303d150b2d3552b2b4808b37710b116826fc', '31.222.203.2', 1678017757, '__ci_last_regenerate|i:1678017757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb54399a4ddbd8c0924aaff3e38883f5a305b0b', '31.222.203.2', 1678017757, '__ci_last_regenerate|i:1678017757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7812f4e3d48805a8de14f5b4f23f868c9fd18e99', '31.222.203.2', 1678017757, '__ci_last_regenerate|i:1678017757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b50d215290bfd5d2638a1b8c21705c8a2d422d', '31.222.203.2', 1678017757, '__ci_last_regenerate|i:1678017757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c89bdf7576702853cb248eee31714d1ac47efafd', '31.222.203.2', 1678017757, '__ci_last_regenerate|i:1678017757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0dbe7328bb3c74872c4f1d5e4c46fe1966d2414', '31.222.203.2', 1678017757, '__ci_last_regenerate|i:1678017757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13efdc59c9651cf955982777290a8d6a0f99dcb7', '116.204.230.28', 1678018337, '__ci_last_regenerate|i:1678018316;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1677653461\";last_ip|s:14:\"116.204.230.30\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e236ebd5c5a17b20c9fc4cfcae631495aa8913', '45.120.39.89', 1678019077, '__ci_last_regenerate|i:1678019072;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677920507\";last_ip|s:14:\"37.111.219.237\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678019077;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('673d5769cdc20c38ccdba799ed2350a1dd06ee31', '31.222.203.2', 1678019554, '__ci_last_regenerate|i:1678019554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ebde2b35ff7ae770b540de1ade493dcbbcc1d2', '31.222.203.2', 1678019554, '__ci_last_regenerate|i:1678019554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc42eb4413741743a946f564cc198b79db607fa', '31.222.203.2', 1678019554, '__ci_last_regenerate|i:1678019554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942d211485364a81ef767750ce07f7e2f60c6310', '31.222.203.2', 1678019554, '__ci_last_regenerate|i:1678019554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6681bd1c3709325e07bd78129916779648116fcf', '31.222.203.2', 1678019554, '__ci_last_regenerate|i:1678019554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e19f6c74f99e8434a043bda33f6e6724d29ee20d', '31.222.203.2', 1678019554, '__ci_last_regenerate|i:1678019554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72202dee97e988643d97e1ac9ff0198ec99dbacb', '31.222.203.2', 1678021358, '__ci_last_regenerate|i:1678021358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e110a8afbeba3ce91b035db521f26154531e00d', '31.222.203.2', 1678021358, '__ci_last_regenerate|i:1678021358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c3935bb3c87f2144ae106d8b311004d61dec7b9', '31.222.203.2', 1678021358, '__ci_last_regenerate|i:1678021358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae0c3f216d983511224e0546626f0d733aa2b2f1', '31.222.203.2', 1678021358, '__ci_last_regenerate|i:1678021358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03a7ec23beb68d27dd39bfc779f45cc65d2ad5b', '31.222.203.2', 1678021358, '__ci_last_regenerate|i:1678021358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2612dc01ff4dd0a6db36c85e11ffc1efe37c5f27', '31.222.203.2', 1678021358, '__ci_last_regenerate|i:1678021358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ceb735ea672078d63d2d1463786ebc0f38a768b', '31.222.203.2', 1678023148, '__ci_last_regenerate|i:1678023148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24e0bae7fe6311850898698e9a7806523754647e', '31.222.203.2', 1678023148, '__ci_last_regenerate|i:1678023148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66ce41e9083a98814e1b6cdeac546c0742f632da', '31.222.203.2', 1678023148, '__ci_last_regenerate|i:1678023148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9689aeed26c3426a4e11974f77d0a42ccfc969', '31.222.203.2', 1678023148, '__ci_last_regenerate|i:1678023148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483448e4d1afcb3813d98e811f92219bbc4d78be', '31.222.203.2', 1678023148, '__ci_last_regenerate|i:1678023148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b885d0c2ea1c3dc5921f1c08ff0f4110e90f59ba', '31.222.203.2', 1678023148, '__ci_last_regenerate|i:1678023148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('507cb76cbd778c933ee78778b4a84503fa2dc0be', '31.222.203.2', 1678024951, '__ci_last_regenerate|i:1678024951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08101829d2bf837867845b44374ea60c7c5ed063', '31.222.203.2', 1678024951, '__ci_last_regenerate|i:1678024951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6f75dbd3971ecee298a29ade8cf89776b57ce64', '31.222.203.2', 1678024951, '__ci_last_regenerate|i:1678024951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d1798792859d31fa0c8aa018b03879101974df', '31.222.203.2', 1678024951, '__ci_last_regenerate|i:1678024951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c8308d74613d139248025b1e1d16d49e0ef9984', '31.222.203.2', 1678024951, '__ci_last_regenerate|i:1678024951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3e592bf75a613735985c8265c9f827c9276f20e', '31.222.203.2', 1678024951, '__ci_last_regenerate|i:1678024951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4333325acc6c46a2a4775c44c7ddfd07354a42fb', '45.120.39.89', 1678027895, '__ci_last_regenerate|i:1678027895;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677987358\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678027888;register_id|s:3:\"360\";cash_in_hand|s:9:\"2920.0000\";register_open_time|s:19:\"2023-03-04 20:59:30\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e39e60ac6c1265dfd84d6a6fc45db5e5e09e262', '31.222.203.2', 1678026743, '__ci_last_regenerate|i:1678026743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7a7bcbeadda952c1a3e5ed5944470700924ece', '31.222.203.2', 1678026744, '__ci_last_regenerate|i:1678026744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2095c2384d8081937529a6d99726596c386fdbd1', '31.222.203.2', 1678026744, '__ci_last_regenerate|i:1678026744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9a8c92b457650ddad3974557b6b7458a877f9d0', '31.222.203.2', 1678026744, '__ci_last_regenerate|i:1678026744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5699b0a4d83673964740e864f442d708e1511b19', '31.222.203.2', 1678026744, '__ci_last_regenerate|i:1678026744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('070efd27b56ade49e963eca20da528563e010c47', '31.222.203.2', 1678026744, '__ci_last_regenerate|i:1678026744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('462fc1f31ecc913badebaa2425cf78444bdda6a8', '45.120.39.89', 1678027922, '__ci_last_regenerate|i:1678027895;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1677987358\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678027922;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05b8ad2e9e57a2b74591adc15861221fccfa5314', '116.204.230.30', 1678029951, '__ci_last_regenerate|i:1678029951;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678015897\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1678028022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('529586919d8fe7fdfb4f6ed9c4d592c3cb05d35f', '116.204.230.19', 1678028421, '__ci_last_regenerate|i:1678028420;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('788798df2daa61f0212e30e8cfbd84d762296e90', '31.222.203.2', 1678028550, '__ci_last_regenerate|i:1678028550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e615dfd6a906ddc1660b0f4e6d6f829ac08444', '31.222.203.2', 1678028555, '__ci_last_regenerate|i:1678028555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0f7147bdf3d486964cc3829eeea3c093560211', '31.222.203.2', 1678028555, '__ci_last_regenerate|i:1678028555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64f32ce44c32e8392ab38b45d104ca4ddefb67e2', '31.222.203.2', 1678028555, '__ci_last_regenerate|i:1678028555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df05056c5ffcf34a92360dac6b756cd8d948ef28', '31.222.203.2', 1678028555, '__ci_last_regenerate|i:1678028555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fefd7824c6c291762a0fbea7c2e2b473bbb85761', '31.222.203.2', 1678028555, '__ci_last_regenerate|i:1678028555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937434806bcd0ccddcf1af42427adb1019f8c030', '205.210.31.156', 1678029707, '__ci_last_regenerate|i:1678029707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf5e9fd195ae28ef6cd41f4bd5e64008b5b7376', '205.210.31.156', 1678029707, '__ci_last_regenerate|i:1678029707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c96e6eafd7440ef21393a0c7e14d6fdc87cead', '205.210.31.156', 1678029707, '__ci_last_regenerate|i:1678029707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81486f3354f8e75302c560a6a51432ff8acb3d2a', '116.204.230.30', 1678029953, '__ci_last_regenerate|i:1678029951;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678015897\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1678029952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f54a0ede63b63bedba1e00d83ec91cae9afac37', '31.222.203.2', 1678030348, '__ci_last_regenerate|i:1678030348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eb4fa4658a1d225ed84e9eab5140db7271e8687', '31.222.203.2', 1678030348, '__ci_last_regenerate|i:1678030348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7d702ecfc0129ef8e442a9439195a0cefca9610', '31.222.203.2', 1678030348, '__ci_last_regenerate|i:1678030348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94413c0960ed395e3ea67d9756b2e14b6abf1fb7', '31.222.203.2', 1678030348, '__ci_last_regenerate|i:1678030348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792bacc00d8fc8d0cf13383c2a8b1f810d451ee6', '31.222.203.2', 1678030348, '__ci_last_regenerate|i:1678030348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('357a0807625e1ad5e218cb8df0738a8f4a189258', '31.222.203.2', 1678030348, '__ci_last_regenerate|i:1678030348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d037758a6cc7a2670d9f1147ac16f2c5a43d8ad', '31.222.203.2', 1678032157, '__ci_last_regenerate|i:1678032157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3122af611c21c2c4230d72170784d363fd5d19fa', '31.222.203.2', 1678032157, '__ci_last_regenerate|i:1678032157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f3c52e7e87cf0f32b832ba26fd196774a284b4', '31.222.203.2', 1678032157, '__ci_last_regenerate|i:1678032157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52745cfd8690f60518e53eea7e165918205f4d5e', '31.222.203.2', 1678032157, '__ci_last_regenerate|i:1678032157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c1239e544856a24de21b644bd3e93245bfa6124', '31.222.203.2', 1678032157, '__ci_last_regenerate|i:1678032157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fea45115d0bbb5f92b76513ece379246ecb9fcce', '31.222.203.2', 1678032157, '__ci_last_regenerate|i:1678032157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e4851029640d347e5348eca454c0ffb3be9a007', '31.222.203.2', 1678033950, '__ci_last_regenerate|i:1678033950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e664a0a0767571cb3fa62e6d4084af7eeabec6c', '31.222.203.2', 1678033950, '__ci_last_regenerate|i:1678033950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b471ff0304f0766840d2d5c101d29ab5fa377b', '31.222.203.2', 1678033950, '__ci_last_regenerate|i:1678033950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49d824c8ed7dcfe27aa1ae522888b16192c47ba3', '87.236.176.150', 1678035391, '__ci_last_regenerate|i:1678035391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b70f805d4aa66dc3dd1bf2936d7025a296bd46', '31.222.203.2', 1678035762, '__ci_last_regenerate|i:1678035762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbf1b63aff357d325513a2644e53fc456d1161a1', '31.222.203.2', 1678035762, '__ci_last_regenerate|i:1678035762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b0390a3940654ad340950bbed8379967a37f384', '31.222.203.2', 1678035762, '__ci_last_regenerate|i:1678035762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62bf6e2196d3d69a27d0ca1dd5fb8cd0972e773b', '31.222.203.2', 1678035762, '__ci_last_regenerate|i:1678035762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cba7933409bf79e35b4143d0983cff85737f1db', '31.222.203.2', 1678035762, '__ci_last_regenerate|i:1678035762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9cdfffba9344cb0da2321fed73a98193e9d2222', '31.222.203.2', 1678035762, '__ci_last_regenerate|i:1678035762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e700b141d530b72f4d33f7d13c43b321ed6cb4c3', '31.222.203.2', 1678037553, '__ci_last_regenerate|i:1678037553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b84d0cd389688b5117066ea585a7885ba47e07b', '31.222.203.2', 1678037553, '__ci_last_regenerate|i:1678037553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4173d0276cb047cf450e5f4c82ef2217ee0f2f', '31.222.203.2', 1678037553, '__ci_last_regenerate|i:1678037553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80da728c54b007d17f1e03b14f677daab4da649', '31.222.203.2', 1678037553, '__ci_last_regenerate|i:1678037553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0791a10897137e4351b79b8a88f2f3c7a4de6878', '31.222.203.2', 1678037553, '__ci_last_regenerate|i:1678037553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5cacd134a7e217bd6598567c350ca7c943c9103', '31.222.203.2', 1678037553, '__ci_last_regenerate|i:1678037553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d36a7797578ff25684760a21a40ebf870a9e7eb', '31.222.203.2', 1678039357, '__ci_last_regenerate|i:1678039357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d9193405f689f1bcf9b6284fe5efbb69088ea8', '31.222.203.2', 1678039357, '__ci_last_regenerate|i:1678039357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d823d73cde83ef6237197ca02adc82ff97bd5265', '31.222.203.2', 1678039357, '__ci_last_regenerate|i:1678039357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c35d1c6536c35c234c7219e816770efe3eb10040', '31.222.203.2', 1678039357, '__ci_last_regenerate|i:1678039357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a503ec3e552f5f7aad6faebcccea6d37bf4d5f10', '31.222.203.2', 1678039357, '__ci_last_regenerate|i:1678039357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c6d7727441199fd37a355651846c1c114b2f45', '31.222.203.2', 1678039357, '__ci_last_regenerate|i:1678039357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('106450aaeda956ef56f15119b8588170898cf1a2', '31.222.203.2', 1678041151, '__ci_last_regenerate|i:1678041151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f869b6a7ff6adcbb94b23c9c23b534552f8db960', '31.222.203.2', 1678041151, '__ci_last_regenerate|i:1678041151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ee8956a4f4c129a52aa671a40ab45be76776334', '31.222.203.2', 1678041151, '__ci_last_regenerate|i:1678041151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37e5d1c9225b75cdc8763691100c75f2fb308cd', '31.222.203.2', 1678041151, '__ci_last_regenerate|i:1678041151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b9dac46793d36eba767fe5b66b3c4587ac1e8be', '31.222.203.2', 1678041151, '__ci_last_regenerate|i:1678041151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b1655be0a76b183c22b855dbc8c6a38a181777b', '31.222.203.2', 1678041151, '__ci_last_regenerate|i:1678041151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fc4f3b48bb71949cdc86b95a6dae374624260a2', '31.222.203.2', 1678042953, '__ci_last_regenerate|i:1678042953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f5576c14e1e34d598cd37b9d72dd9a067fb102e', '31.222.203.2', 1678042953, '__ci_last_regenerate|i:1678042953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33eb807d15cf701775f62875952be6f3447a0b10', '31.222.203.2', 1678042953, '__ci_last_regenerate|i:1678042953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a9f8a57afb3668dfcdd55cf280791d4bffce124', '31.222.203.2', 1678042953, '__ci_last_regenerate|i:1678042953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('588eba48143a3c898b27e3c428b01dce2035827a', '31.222.203.2', 1678042953, '__ci_last_regenerate|i:1678042953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('790c68737608378267498eb7db782f01285d51c2', '31.222.203.2', 1678042953, '__ci_last_regenerate|i:1678042953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('517b85fc0dc2218e094919ef75076036a8fec7bb', '31.222.203.2', 1678044747, '__ci_last_regenerate|i:1678044747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df27de84cc37ea69d9a9cbaf1c43c2c321547551', '31.222.203.2', 1678044747, '__ci_last_regenerate|i:1678044747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('327758c52dc95667dd8e7f5bb8d8ad8067f349c2', '31.222.203.2', 1678044747, '__ci_last_regenerate|i:1678044747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5815bc3f492f17d37ac188ae4313d82fdb44f7f6', '31.222.203.2', 1678044747, '__ci_last_regenerate|i:1678044747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e06e56812c80045b3481b43db916f0c2db5e7f5', '31.222.203.2', 1678044747, '__ci_last_regenerate|i:1678044747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa2b68907a2fb1704c3c956741eac5cb7937f617', '31.222.203.2', 1678044747, '__ci_last_regenerate|i:1678044747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9858760111669b9aa7b055db1a180cf325352303', '31.222.203.2', 1678046555, '__ci_last_regenerate|i:1678046555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b540961b93896edab6003c6bc5378f58d33a96f9', '31.222.203.2', 1678046555, '__ci_last_regenerate|i:1678046555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e12b49e8e7969c3aa98f73168d0a09d359f3af7a', '31.222.203.2', 1678046555, '__ci_last_regenerate|i:1678046555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('289cff03b4386949cfe2c245bc6d60b57ed564b8', '31.222.203.2', 1678046555, '__ci_last_regenerate|i:1678046555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c16eb5410c43f1d612dfe726a96c5a68f8ed475', '31.222.203.2', 1678046555, '__ci_last_regenerate|i:1678046555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2b650ba0602d4a4ba2f4b53508ef01e7d00d73', '31.222.203.2', 1678046555, '__ci_last_regenerate|i:1678046555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f353491bc782012200a9a464690da6909a2796f7', '31.222.203.2', 1678048350, '__ci_last_regenerate|i:1678048350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53101f5e9cf2591e95f36d6364196e865622244', '31.222.203.2', 1678048350, '__ci_last_regenerate|i:1678048350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0faad897bf452980c0cac37897918da6ae100e', '31.222.203.2', 1678048350, '__ci_last_regenerate|i:1678048350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cd9fd4c7458e878192c9f3ff6a0cb3b7d22fb1c', '31.222.203.2', 1678048350, '__ci_last_regenerate|i:1678048350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faade009ca4d134a4e4ec6b7bd819c0e2069ed1f', '31.222.203.2', 1678048350, '__ci_last_regenerate|i:1678048350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c5fcba73db8af33c422deb2a3e4912c9d162e7b', '31.222.203.2', 1678048350, '__ci_last_regenerate|i:1678048350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427879c3634bc66c8f73b5d2c4b41c059fda2536', '31.222.203.2', 1678050149, '__ci_last_regenerate|i:1678050149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563173a317f6e9ad551a190b405cb5db7490c27c', '31.222.203.2', 1678050149, '__ci_last_regenerate|i:1678050149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab407600b03f9e808cfd10a0667b93b822dbf4d8', '31.222.203.2', 1678050149, '__ci_last_regenerate|i:1678050149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3f5b3682bb5cae5be1ddd00cb125929036682b7', '31.222.203.2', 1678050149, '__ci_last_regenerate|i:1678050149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527fd58b51a79594a6c7f594b9bd1736a5eadd61', '31.222.203.2', 1678050149, '__ci_last_regenerate|i:1678050149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7dfb1b4c59a377b9c6e7b42d77ca91477f25b8', '31.222.203.2', 1678050149, '__ci_last_regenerate|i:1678050149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb05958da8ed327a9c55ad6b81f3afdc45ae6d6', '31.222.203.2', 1678051945, '__ci_last_regenerate|i:1678051945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('974c3585f636bf6c658bcd7872d6b504f118538c', '31.222.203.2', 1678051945, '__ci_last_regenerate|i:1678051945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32400fe9916205bcaa80a10a8d7c5377c551ac9e', '31.222.203.2', 1678051945, '__ci_last_regenerate|i:1678051945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce38af61efec90fbb77e0038da63849d75908ef4', '31.222.203.2', 1678051949, '__ci_last_regenerate|i:1678051949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d85273e3177c96874b83040a6217d911fa0c3721', '31.222.203.2', 1678051949, '__ci_last_regenerate|i:1678051949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8bff6eb060996da032b589b8f73a9eb921fd017', '31.222.203.2', 1678051949, '__ci_last_regenerate|i:1678051949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88fd51da48e4e9eba9ea4a9c89e54dc69cff70a9', '31.222.203.2', 1678053760, '__ci_last_regenerate|i:1678053760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d0b6e20033277b1c604e3119bfadb4366ea4d07', '31.222.203.2', 1678053760, '__ci_last_regenerate|i:1678053760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a3749816be6cdd2bb4b6bb389a2a21a6e169c67', '31.222.203.2', 1678053760, '__ci_last_regenerate|i:1678053760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a0b65f1f35a725be55ebe9b6174f9a1b1d49685', '31.222.203.2', 1678053760, '__ci_last_regenerate|i:1678053760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6d82eaabe201a1338a4a9f4f79506e9601d267', '31.222.203.2', 1678053760, '__ci_last_regenerate|i:1678053760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e933c4889318d192fa381c625d9235438d9403', '31.222.203.2', 1678053760, '__ci_last_regenerate|i:1678053760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68e7247b4d94527f2393ec2384b6bf204847096b', '31.222.203.2', 1678055546, '__ci_last_regenerate|i:1678055546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468fe87905d42c7f7e8386d6da5799e273cfaece', '31.222.203.2', 1678055546, '__ci_last_regenerate|i:1678055546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf6c56b8090997a51421657614bbc4386816faf7', '31.222.203.2', 1678055546, '__ci_last_regenerate|i:1678055546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adafc1cee34d615e0acd853f29e2809c68d10a85', '31.222.203.2', 1678055546, '__ci_last_regenerate|i:1678055546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33c1f0b879a80f8ac5cb467d0f00b98f33b67dd8', '31.222.203.2', 1678055546, '__ci_last_regenerate|i:1678055546;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5cf2043a889f341ed0349f5b5b11ec18a1f44c', '31.222.203.2', 1678055546, '__ci_last_regenerate|i:1678055546;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e2f55e650795632b977d167463576eee384f1ff', '31.222.203.2', 1678057347, '__ci_last_regenerate|i:1678057347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e75845940a2ba650072b90c2118a3bfcdd8da0', '31.222.203.2', 1678057347, '__ci_last_regenerate|i:1678057347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ebe10332e1fd20ce523bb14aaa44ea5af63549e', '31.222.203.2', 1678057347, '__ci_last_regenerate|i:1678057347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('970d565a3bde072e95100a217ddddd9c1cfee4d8', '31.222.203.2', 1678057347, '__ci_last_regenerate|i:1678057347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a4594bb3867612e0b8c0af8d72ed82baed3e62', '31.222.203.2', 1678057347, '__ci_last_regenerate|i:1678057347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9daa67628be33292ce3c6ba5bf8be51f080c1da', '31.222.203.2', 1678057347, '__ci_last_regenerate|i:1678057347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85cee75e9711f6f98a86f18b038f5366aaa2d0e4', '31.222.203.2', 1678059144, '__ci_last_regenerate|i:1678059144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84ca92d3c52304b4fed76d5934f38109579a215', '31.222.203.2', 1678059144, '__ci_last_regenerate|i:1678059144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('206eb71de8b54f807aea52ba5fb187185aac6ce1', '31.222.203.2', 1678059144, '__ci_last_regenerate|i:1678059144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c382ad0a810a176ab077fcf6640c544a8eb4ac8', '31.222.203.2', 1678059144, '__ci_last_regenerate|i:1678059144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701bcc71d76f435c9d97549d9a94c29f3cf8140c', '31.222.203.2', 1678059144, '__ci_last_regenerate|i:1678059144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ebde41741b9c87b822608b5816b0203931b3d02', '31.222.203.2', 1678059144, '__ci_last_regenerate|i:1678059144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb6d3da51ac81295604d1d8bb585ae4cd587737', '31.222.203.2', 1678060950, '__ci_last_regenerate|i:1678060950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7793df2556e5ce93eb4d235c574960bd384af201', '31.222.203.2', 1678060950, '__ci_last_regenerate|i:1678060950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0634a79c5907d04474f6588be4eb782b454599e', '31.222.203.2', 1678060950, '__ci_last_regenerate|i:1678060950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('984038ce8495990f36da7ad549c40fa766fb56b5', '31.222.203.2', 1678060950, '__ci_last_regenerate|i:1678060950;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54cc27b8f4a6e86b23ea13edf05390c7060a46ec', '31.222.203.2', 1678060950, '__ci_last_regenerate|i:1678060950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5d9b9e912d3344297155fe2f98e32b56bc665d', '31.222.203.2', 1678060950, '__ci_last_regenerate|i:1678060950;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc0713ceb213437d358cc9a258219f8d3c0c02c', '31.222.203.2', 1678062751, '__ci_last_regenerate|i:1678062751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c2c32cbf7e31c760f899270ea79617f337d944', '31.222.203.2', 1678062751, '__ci_last_regenerate|i:1678062751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03d0f13c520aafd1a7f33e4e06eb6fecd7f5ad8', '31.222.203.2', 1678062751, '__ci_last_regenerate|i:1678062751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d18234c57c0fe8d0f9415560a555ee7c307b4c66', '31.222.203.2', 1678062751, '__ci_last_regenerate|i:1678062751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30e888e989ae2fc838508ab5f9f440e42fedd6d0', '31.222.203.2', 1678062751, '__ci_last_regenerate|i:1678062751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ee1d29b8297db687d4f51ed4ea2bce38353782a', '31.222.203.2', 1678062751, '__ci_last_regenerate|i:1678062751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c245f449536a2f4e319f683c553eb1c6ec54178', '31.222.203.2', 1678064551, '__ci_last_regenerate|i:1678064551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3b085e074d5603e0d6b596c2eea7fd8ec103f3', '31.222.203.2', 1678064551, '__ci_last_regenerate|i:1678064551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d74853071f467bcb4e3758a7d1874d4efbaa25', '31.222.203.2', 1678064551, '__ci_last_regenerate|i:1678064551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc427f4589ca77d0a2eadfb10343f11785ddb03c', '31.222.203.2', 1678064551, '__ci_last_regenerate|i:1678064551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec1442c4a7c5d7d667d7c8fd32247e354f6e4b3', '31.222.203.2', 1678064551, '__ci_last_regenerate|i:1678064551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d64ac5e1c4bf14d455cabd30b6346a906884a22', '31.222.203.2', 1678064551, '__ci_last_regenerate|i:1678064551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51c516cd9c8ace4d6ceb32c78e15d2e51976bc5a', '31.222.203.2', 1678066347, '__ci_last_regenerate|i:1678066347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9817c3f738090608a3883673809318b6047af758', '31.222.203.2', 1678066347, '__ci_last_regenerate|i:1678066347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58e8cd413e63f7ee9c66464a5d260959febeb0da', '31.222.203.2', 1678066347, '__ci_last_regenerate|i:1678066347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0153e4ccd968f29b12c66c4c0310f3b271edd83', '31.222.203.2', 1678066347, '__ci_last_regenerate|i:1678066347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a721874d95233c1c7eb53da4b4fc1c41f69cc06', '31.222.203.2', 1678066347, '__ci_last_regenerate|i:1678066347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eded5b0a27a6abe5fbd49327d2fed93b611dea5', '31.222.203.2', 1678066347, '__ci_last_regenerate|i:1678066347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84d499576f3e825407e3a34f1b222104b68f4443', '31.222.203.2', 1678068156, '__ci_last_regenerate|i:1678068156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccdf9d554d1b96df5aefc3c5daf950a77822b7b5', '31.222.203.2', 1678068156, '__ci_last_regenerate|i:1678068156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2297c1a13ccc39455d2b45ccbd7cf52197cb0e6', '31.222.203.2', 1678068156, '__ci_last_regenerate|i:1678068156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60700fcc9ca6c7cd42516af569f6b4d010618bdd', '31.222.203.2', 1678068156, '__ci_last_regenerate|i:1678068156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9558e2adcf446d06aa86d435391eba368c4592a9', '31.222.203.2', 1678068156, '__ci_last_regenerate|i:1678068156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3797dd7971d2e0a4b4c853d0c661441a7eefd2c', '31.222.203.2', 1678068156, '__ci_last_regenerate|i:1678068156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e4a15d51055975b847c9a602c8eae50685542c', '31.222.203.2', 1678069944, '__ci_last_regenerate|i:1678069944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8577cb17b9deb3a35b2af63bc519d44ce9628ce', '31.222.203.2', 1678069944, '__ci_last_regenerate|i:1678069944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05ad5151f6b1cd0ec5279e3552cf9a220a87af8', '31.222.203.2', 1678069944, '__ci_last_regenerate|i:1678069944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af40cfb07a9e2888c9137993b3e7d5b53e622511', '31.222.203.2', 1678069945, '__ci_last_regenerate|i:1678069945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3442b295a156e240c7a31f9debb07f63479df5', '31.222.203.2', 1678069945, '__ci_last_regenerate|i:1678069945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba8643948ebe1f58e3490619bcd7510821d95de', '31.222.203.2', 1678069945, '__ci_last_regenerate|i:1678069945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca9fc07dcd6f62670be2fe5c4d4e1a2a21721b9e', '31.222.203.2', 1678071750, '__ci_last_regenerate|i:1678071750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67fdccb9e8639aade944e06b22cf45db60062f44', '31.222.203.2', 1678071750, '__ci_last_regenerate|i:1678071750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ee9085cd31f90d9bb56c2d3757d43127b2edc42', '31.222.203.2', 1678071750, '__ci_last_regenerate|i:1678071750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc047accc087f9d72413257a21f8fa888395af4', '31.222.203.2', 1678071750, '__ci_last_regenerate|i:1678071750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46a66e61b5d9f2dd34c13e09ea0583a95a92aff4', '31.222.203.2', 1678071750, '__ci_last_regenerate|i:1678071750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0823df837bd828f586f7eabd14150e638178e40e', '31.222.203.2', 1678071750, '__ci_last_regenerate|i:1678071750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554b7e2a3a07277af49524c220b2de71f6b0ecc0', '31.222.203.2', 1678073545, '__ci_last_regenerate|i:1678073545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4354c7021ed9d6aec60d904c85ac49455abdc1', '31.222.203.2', 1678073545, '__ci_last_regenerate|i:1678073545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e3c823d6414f6293cf8a2d947e63f59460aa9e', '31.222.203.2', 1678073545, '__ci_last_regenerate|i:1678073545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('446eec8749ab8d888548b80661a2ded996552b65', '31.222.203.2', 1678073545, '__ci_last_regenerate|i:1678073545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a9ee6e61254d285b86613a4828c6297363bdbeb', '31.222.203.2', 1678073545, '__ci_last_regenerate|i:1678073545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59e2e5fb7ee108d598ba075e551d87360656d5c', '31.222.203.2', 1678073545, '__ci_last_regenerate|i:1678073545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0c3f3eea66edd81588a0371aec02a639a8a740', '31.222.203.2', 1678075361, '__ci_last_regenerate|i:1678075361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707891f92b3152e8f14b0f3157accc0f6e3e6aa3', '31.222.203.2', 1678075361, '__ci_last_regenerate|i:1678075361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2919771b9125fafa2800acf1ee30892ad9dc6b74', '31.222.203.2', 1678075361, '__ci_last_regenerate|i:1678075361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb153a23a266657185c8bff2b98ed8cbe3fc4392', '31.222.203.2', 1678075361, '__ci_last_regenerate|i:1678075361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fde10084d229f8e121402aa8414bc29cc6c184e', '31.222.203.2', 1678075361, '__ci_last_regenerate|i:1678075361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ba66836bc74369b25c7ad21eaf942a150ecc688', '31.222.203.2', 1678075361, '__ci_last_regenerate|i:1678075361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288fe07778873914ddbcbc32f612c8c8b616df28', '31.222.203.2', 1678077155, '__ci_last_regenerate|i:1678077155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10271df6a204816d9cf1ae690a8e3c0d13c5f38d', '31.222.203.2', 1678077155, '__ci_last_regenerate|i:1678077155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('917438ed83cf209c5d96e12370100524e1867457', '31.222.203.2', 1678077155, '__ci_last_regenerate|i:1678077155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27cee9b5c7499b0d7a9c56c3682de7952d41a6e0', '31.222.203.2', 1678077155, '__ci_last_regenerate|i:1678077155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10618457da87b861d54828d5eff792424fe1ed99', '31.222.203.2', 1678077155, '__ci_last_regenerate|i:1678077155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d57332777d58b65ba957a32fbe55f8ab3cf8227', '31.222.203.2', 1678077155, '__ci_last_regenerate|i:1678077155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d795df14c05c30ad393a96217919cf2c23ed5a0', '37.111.217.115', 1678078427, '__ci_last_regenerate|i:1678078427;requested_page|s:9:\"admin/pos\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e5f0f7557a25e3707f28af540a0e8aa9a6d258a', '37.111.217.115', 1678085699, '__ci_last_regenerate|i:1678085699;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678026689\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678078522;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d517832ad4d99b676831505db37f4b20a3e03a77', '31.222.203.2', 1678078955, '__ci_last_regenerate|i:1678078955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce9e9fe408b807c738c81ec1728227e60193511', '31.222.203.2', 1678078955, '__ci_last_regenerate|i:1678078955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('669d78a2e9ff072f978f309c67cf5c3f64b0a23d', '31.222.203.2', 1678078955, '__ci_last_regenerate|i:1678078955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1deb7ee4abdfe045c73678981069d636cde8e473', '31.222.203.2', 1678078955, '__ci_last_regenerate|i:1678078955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ffcd547dc3a18ad2b8b19ded63c89b9f3dbee5a', '31.222.203.2', 1678078955, '__ci_last_regenerate|i:1678078955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ac6e85fce91f063daf79dece38f85112cb6d229', '31.222.203.2', 1678078955, '__ci_last_regenerate|i:1678078955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e301307327ece480289c4ebe493e511eb73f427', '31.222.203.2', 1678080742, '__ci_last_regenerate|i:1678080742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b54e542772e80fd4ca9f55acd94d5be733d6b3', '31.222.203.2', 1678080742, '__ci_last_regenerate|i:1678080742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c18cd10fbb3efbd72b00387ac0f6569c739d5a7e', '31.222.203.2', 1678080742, '__ci_last_regenerate|i:1678080742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('863098676e4dd2086971db2c4e54e4127d08e11b', '31.222.203.2', 1678080742, '__ci_last_regenerate|i:1678080742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9badecfa3cdb92dd2df78be3eb02c6fc4ca9553', '31.222.203.2', 1678080742, '__ci_last_regenerate|i:1678080742;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc11f0880b51bb9ea3356f78ff0e76b986ee849', '31.222.203.2', 1678080742, '__ci_last_regenerate|i:1678080742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942f988c6dc195f762b5897bc7c701ee33d92c87', '31.222.203.2', 1678082569, '__ci_last_regenerate|i:1678082569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c5aaf55140ca6e80c2e6ba86821e2b99b628f4', '31.222.203.2', 1678082569, '__ci_last_regenerate|i:1678082569;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1990900dde1819e08e70511733f4c8461d7ed6c', '31.222.203.2', 1678082569, '__ci_last_regenerate|i:1678082569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534a3e63d12abc262c9af7e54dabb1bf2b195b1c', '31.222.203.2', 1678082569, '__ci_last_regenerate|i:1678082569;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b799e4fd23a652b1e5286a4e73064e3eb99c0726', '31.222.203.2', 1678082569, '__ci_last_regenerate|i:1678082569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2b4d7088520079b40c731eed5d075edfbb9f209', '31.222.203.2', 1678082569, '__ci_last_regenerate|i:1678082569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e431fc8032749c93664462bfc5a8f0e06724d9dc', '31.222.203.2', 1678084349, '__ci_last_regenerate|i:1678084349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e40b16abd9e6560b7c979dae19b9b3655b29901e', '31.222.203.2', 1678084349, '__ci_last_regenerate|i:1678084349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33283b2ba4f34ed6685b944741ae87d29ec28f58', '31.222.203.2', 1678084349, '__ci_last_regenerate|i:1678084349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e22df2c149c401511717a3a15d8f035ef131de66', '31.222.203.2', 1678084349, '__ci_last_regenerate|i:1678084349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dce2c313ec08b2a8a0738daba62a0086bb3c444', '31.222.203.2', 1678084349, '__ci_last_regenerate|i:1678084349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f011d99a2712369cb444bb313d432bead1d0161f', '31.222.203.2', 1678084349, '__ci_last_regenerate|i:1678084349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87766ff99d0193cee4a5a6fbf3f14b740e847c06', '37.111.217.115', 1678091077, '__ci_last_regenerate|i:1678091077;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678026689\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678085716;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('465301fd1a706d49ebd98426b03302a64608dfd8', '31.222.203.2', 1678086155, '__ci_last_regenerate|i:1678086155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b3786bda3b1859f20e3738ce6cb89be5880e67', '31.222.203.2', 1678086156, '__ci_last_regenerate|i:1678086156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cf1f6a29933138b665ce57f814b47bf05615582', '31.222.203.2', 1678086156, '__ci_last_regenerate|i:1678086156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc982af52cc952912d0c6d582c5f906a4b8a0909', '31.222.203.2', 1678086156, '__ci_last_regenerate|i:1678086156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a823d29849dad3b6256614392b3b763b33fceeb1', '31.222.203.2', 1678086156, '__ci_last_regenerate|i:1678086156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78b0e3877c64cb67e695556c3768294dc8f2a21e', '31.222.203.2', 1678086156, '__ci_last_regenerate|i:1678086156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae08c2eb57fec3f1de5b6610be5d716ac9c0ac67', '31.222.203.2', 1678087948, '__ci_last_regenerate|i:1678087948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('713af73475ac86fdc5c38b913a8b5a8c0b197de8', '31.222.203.2', 1678087948, '__ci_last_regenerate|i:1678087948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29de7a9cd39fdcb99c3e7e4e200ba24b0ff5c3fe', '31.222.203.2', 1678087948, '__ci_last_regenerate|i:1678087948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('614066d8b136ddac2dc63743a424b3b1aa57843a', '31.222.203.2', 1678087948, '__ci_last_regenerate|i:1678087948;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d05814966e429498f5d1ffcddab3915441b4da', '31.222.203.2', 1678087948, '__ci_last_regenerate|i:1678087948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73d9714c4f04f852ef78017648c5629d1b4bee78', '31.222.203.2', 1678087948, '__ci_last_regenerate|i:1678087948;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8e925c02c96a830b2ef66f31c4d4637c162201', '31.222.203.2', 1678089763, '__ci_last_regenerate|i:1678089763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc53ff2327b7f6bfa55cf5a3bae2bb8a7961e90a', '31.222.203.2', 1678089763, '__ci_last_regenerate|i:1678089763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed6dac8a53d056ba402e4545d6460f2d76fed60', '31.222.203.2', 1678089763, '__ci_last_regenerate|i:1678089763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0497547d3662e9a27bf94d4c9505a5d5b4df02a', '31.222.203.2', 1678089764, '__ci_last_regenerate|i:1678089764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cbdc14dc2e6b90119f98faa21ecbb401bf5a6a7', '31.222.203.2', 1678089764, '__ci_last_regenerate|i:1678089764;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae0152c7d08f9dee137b7aa58a8994509ff617c', '31.222.203.2', 1678089764, '__ci_last_regenerate|i:1678089764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9007ec55e9f647078b5d301fcbd796d61d746492', '116.204.230.28', 1678091402, '__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}requested_page|s:14:\"admin/products\";__ci_last_regenerate|i:1678091396;identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678027998\";last_ip|s:14:\"116.204.230.30\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ba646a598de137d18217d79919705d630b5cc4', '37.111.217.115', 1678091078, '__ci_last_regenerate|i:1678091077;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678026689\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678091077;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6c82a7ed2c2e40fe8ca550341e02886226dcf1', '31.222.203.2', 1678091551, '__ci_last_regenerate|i:1678091551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea65e7345d4da3d1c1deed14aea4f1eb7c0b2996', '31.222.203.2', 1678091551, '__ci_last_regenerate|i:1678091551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ee179fbec4234bb9b1d6f01cbe5b33eeb75996c', '31.222.203.2', 1678091551, '__ci_last_regenerate|i:1678091551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('604f6ff0ebb8a9f0f994882d084d7f30f25fd1f6', '31.222.203.2', 1678091551, '__ci_last_regenerate|i:1678091551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9374dc9ed3a2b691ed03fb16f3e6fad0f05da0', '31.222.203.2', 1678091551, '__ci_last_regenerate|i:1678091551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5111f62ce011e32c649ed483ceaafab34271e8f0', '31.222.203.2', 1678091551, '__ci_last_regenerate|i:1678091551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd433e77440a8e0908f6c5a5a257051b36b57549', '31.222.203.2', 1678093351, '__ci_last_regenerate|i:1678093351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7fae52afd4bc0112b1c3379e77e0a196186946', '31.222.203.2', 1678093351, '__ci_last_regenerate|i:1678093351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b93640ea8c1b99067fe94c18b23daf4b8b33740', '31.222.203.2', 1678093351, '__ci_last_regenerate|i:1678093351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae6a5b176d2bbaab0e0333d065eec38869681c9', '31.222.203.2', 1678093351, '__ci_last_regenerate|i:1678093351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6581b05df7a95de397a8fc6ced68e5e9e6136e', '31.222.203.2', 1678093351, '__ci_last_regenerate|i:1678093351;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7adabf9d71d9d35f8dc2666c3a5ce8afcf5d0bb', '31.222.203.2', 1678093351, '__ci_last_regenerate|i:1678093351;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb55244336f7bc4d042efa309ad0b65a40bb4b4', '31.222.203.2', 1678095155, '__ci_last_regenerate|i:1678095155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b06d5b9db99bdc385244d14ebdd87c71add60d9c', '31.222.203.2', 1678095156, '__ci_last_regenerate|i:1678095156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab11fb336cbc4ad172078a9a450c81949c59c1e0', '31.222.203.2', 1678095156, '__ci_last_regenerate|i:1678095156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da5a8152e7d36debcde34b724a66bc331c3ad15', '31.222.203.2', 1678095156, '__ci_last_regenerate|i:1678095156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c2f86dcb0b7eb68d44206e064f24fa60f86dd6', '31.222.203.2', 1678095156, '__ci_last_regenerate|i:1678095156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f3255d3959070c7de41f8ea638b3cdf75181fa', '31.222.203.2', 1678095156, '__ci_last_regenerate|i:1678095156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386b8bed6e1192ea2eae3b312038bab3f05b27ce', '31.222.203.2', 1678096955, '__ci_last_regenerate|i:1678096955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e763c2ba277b6a89dbcdbc05ee75eec7b7e5f7b', '31.222.203.2', 1678096955, '__ci_last_regenerate|i:1678096955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196903272a82f4d0384a971faef0f77485782659', '31.222.203.2', 1678096955, '__ci_last_regenerate|i:1678096955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27d0bead9b98d7d076f36e0b1cacd2bb443574c', '31.222.203.2', 1678096955, '__ci_last_regenerate|i:1678096955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26759a8ecf53349be37860d509e750c07501a47d', '31.222.203.2', 1678096955, '__ci_last_regenerate|i:1678096955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bdce495833ffaf766afad36110c980e3c4da3b9', '31.222.203.2', 1678096955, '__ci_last_regenerate|i:1678096955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49e0e3b7be7cde416b19b290043838f10289a55', '31.222.203.2', 1678098758, '__ci_last_regenerate|i:1678098758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bcdba2a5b9c52aea7b36c06effc6e1c81b567ce', '31.222.203.2', 1678098758, '__ci_last_regenerate|i:1678098758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb0292a60a27df2a20d809f093fd782e588962e', '31.222.203.2', 1678098758, '__ci_last_regenerate|i:1678098758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a8e979a8105aa98d2872c12ec0e9f98b856f1be', '31.222.203.2', 1678098758, '__ci_last_regenerate|i:1678098758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4880c093f9ad6f51929ef8f3842e46616b6d693f', '31.222.203.2', 1678098758, '__ci_last_regenerate|i:1678098758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29c2b86c032c2b9b8c9a0ec3563a684261bfdd7', '31.222.203.2', 1678098758, '__ci_last_regenerate|i:1678098758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d922a8f390f534346c700f4ed825b33ba36778', '31.222.203.2', 1678100554, '__ci_last_regenerate|i:1678100554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234f53ea7e34f145c3af98fe9c4ac74c9d563470', '31.222.203.2', 1678100555, '__ci_last_regenerate|i:1678100555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95fbe2ea66293e92bed7e4d6f06234a9f32eba3b', '31.222.203.2', 1678100555, '__ci_last_regenerate|i:1678100555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc22bbfba51cff494b89280245ef3d22470822c0', '31.222.203.2', 1678100555, '__ci_last_regenerate|i:1678100555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed06b49759699434ae40fc4b9611b981ccfacc8', '31.222.203.2', 1678100555, '__ci_last_regenerate|i:1678100555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2c7b2b12932f2c929a31a186f30126b786dd1d', '31.222.203.2', 1678100555, '__ci_last_regenerate|i:1678100555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831beeec08edca9876f96ffe6146ccf2205d91b8', '31.222.203.2', 1678102350, '__ci_last_regenerate|i:1678102350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891bb8c8819b0df815fa0e713caee91025745d2e', '31.222.203.2', 1678102350, '__ci_last_regenerate|i:1678102350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6084deb2b3013590960e0b0e9e8ae1800e74a3c', '31.222.203.2', 1678102350, '__ci_last_regenerate|i:1678102350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21e388ee01d2566b730fcf50c2f3163150acbf2f', '31.222.203.2', 1678102350, '__ci_last_regenerate|i:1678102350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d570c62a3343d7d68e103d2421e17339a79b6de8', '31.222.203.2', 1678102350, '__ci_last_regenerate|i:1678102350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1ce1b64c1c3bc8213717d8c6e722566de9d3a05', '31.222.203.2', 1678102350, '__ci_last_regenerate|i:1678102350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69da17a3ac878062c5b7324a69a863e09ed025d7', '37.111.217.115', 1678104194, '__ci_last_regenerate|i:1678104194;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678102814;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a084fc5601a078274e56d7819b174cc99ce78a1b', '116.204.230.28', 1678103555, '__ci_last_regenerate|i:1678103550;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678091401\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e800b32642b188ca9796405d79e7e1d4a334d66d', '31.222.203.2', 1678104153, '__ci_last_regenerate|i:1678104153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f7b5ea38198fac1930a7383c53751b40f97f3b', '31.222.203.2', 1678104153, '__ci_last_regenerate|i:1678104153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be300d53620d9cb605fc44aa5abeefe554d21e27', '31.222.203.2', 1678104153, '__ci_last_regenerate|i:1678104153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7321ee4592167718b7b93e62b94326ee4035b312', '31.222.203.2', 1678104153, '__ci_last_regenerate|i:1678104153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e43a22de20b4da7ffe8992d4355f3570892ae1', '31.222.203.2', 1678104153, '__ci_last_regenerate|i:1678104153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed10496b323b3eea30f16d38f0f88a527ac3f39', '31.222.203.2', 1678104153, '__ci_last_regenerate|i:1678104153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d7bbe4fbe2ba40c56b285f4c24fad72adfbdcb', '37.111.217.115', 1678105075, '__ci_last_regenerate|i:1678105075;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678104942;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed3e800cb89b775d6f0c868a35ef35a47a4e403', '37.111.217.115', 1678105561, '__ci_last_regenerate|i:1678105561;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678105312;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d436f8322c98eeab92ae293fec6b12c7a81e8147', '37.111.217.115', 1678106422, '__ci_last_regenerate|i:1678106422;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678106418;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8e1f7ce27e69705cd4a63319a4b7eba84f8566e', '31.222.203.2', 1678105943, '__ci_last_regenerate|i:1678105943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4beecf3abadaaec2b94222640174c1b0bc3ef20', '31.222.203.2', 1678105943, '__ci_last_regenerate|i:1678105943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381dcb842cdbd3e41372ec9525ae93969c983bce', '31.222.203.2', 1678105943, '__ci_last_regenerate|i:1678105943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d8396630fb3a810e97c5b63a89097c30f761c39', '31.222.203.2', 1678105943, '__ci_last_regenerate|i:1678105943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d168e9ebdce7c40e5ba7eea9417ff34cc9f20b4', '31.222.203.2', 1678105943, '__ci_last_regenerate|i:1678105943;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bbdde97e6c8a9ad93c39c30aa0a1075ec4afdd', '31.222.203.2', 1678105943, '__ci_last_regenerate|i:1678105943;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69803aa60987c5a356e8fe555104195421a746f4', '37.111.217.115', 1678108474, '__ci_last_regenerate|i:1678108474;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678106423;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7318ba6eee0c32c9ff2e7d25c4791532426975', '31.222.203.2', 1678107755, '__ci_last_regenerate|i:1678107755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c416d1b8e95078272ce01266fdaf880a91d01377', '31.222.203.2', 1678107755, '__ci_last_regenerate|i:1678107755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15682056b19b02e8aae1468d10fd7c5768ca0cfd', '31.222.203.2', 1678107755, '__ci_last_regenerate|i:1678107755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b904ba4642e0a95773817e8bbff1520d732363', '31.222.203.2', 1678107755, '__ci_last_regenerate|i:1678107755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfa27f76e3addaa6ed3d91340aec3906ae6dd67c', '31.222.203.2', 1678107755, '__ci_last_regenerate|i:1678107755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c9998e98e5b2ff38054ff28cf724e0414968a7', '31.222.203.2', 1678107755, '__ci_last_regenerate|i:1678107755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb142503e696d5695384c5e00d303113f6a2f871', '37.111.217.115', 1678111636, '__ci_last_regenerate|i:1678111636;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678111628;register_id|s:3:\"361\";cash_in_hand|s:9:\"2860.0000\";register_open_time|s:19:\"2023-03-05 20:51:51\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4b495ddf918f81f555d2b4fd0225486869649d', '31.222.203.2', 1678109549, '__ci_last_regenerate|i:1678109549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69282c951b6daac87bfc6b553ea43e95a182a157', '31.222.203.2', 1678109549, '__ci_last_regenerate|i:1678109549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d826fbe943a430823ccf70a075a2c5bb8ac58731', '31.222.203.2', 1678109549, '__ci_last_regenerate|i:1678109549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70db3131a00c55d00584c98a979605f8b32f345a', '31.222.203.2', 1678109549, '__ci_last_regenerate|i:1678109549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ddc81d8d1e7c3cd8439022768913dafceab8921', '31.222.203.2', 1678109549, '__ci_last_regenerate|i:1678109549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3101e8b01d562dc3ee819e262ed537fcfd92e6f2', '31.222.203.2', 1678109549, '__ci_last_regenerate|i:1678109549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccd080a1e9ce7803703cc596e2d01615c4a227c0', '31.222.203.2', 1678111355, '__ci_last_regenerate|i:1678111355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69858e3843e6285ec16c6c34f3fffbe30c56b527', '31.222.203.2', 1678111355, '__ci_last_regenerate|i:1678111355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01be09679565396cb91ac7685cf6ac4ddb59601b', '31.222.203.2', 1678111355, '__ci_last_regenerate|i:1678111355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c617d709bbd3b9a597f57d2975c71f19be2fe15', '31.222.203.2', 1678111355, '__ci_last_regenerate|i:1678111355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca108b8648032086e62b43eb7217170ec5cd861b', '31.222.203.2', 1678111355, '__ci_last_regenerate|i:1678111355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b72c4b58483d3eee027c06082cd88bec5ba7e7c', '31.222.203.2', 1678111355, '__ci_last_regenerate|i:1678111355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6955c9d24f03dc3a38a21b53ee83b0b214a18853', '45.120.39.89', 1678112579, '__ci_last_regenerate|i:1678112579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678111656;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c91e4d760784a2bf51084f75b65cdb6040f4614', '45.120.39.89', 1678112597, '__ci_last_regenerate|i:1678112579;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678078427\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678112597;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ac219c5210239447fb09992cbb88a46fa30d9f', '31.222.203.2', 1678113144, '__ci_last_regenerate|i:1678113144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f986176baf9d9237f28eafaf69945ec4ee3661', '31.222.203.2', 1678113144, '__ci_last_regenerate|i:1678113144;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb33cc51d228418fa1122218a1500c2832829254', '31.222.203.2', 1678113144, '__ci_last_regenerate|i:1678113144;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cabb9e6d46f634e2ec1659d03bf57acc35c31ce', '31.222.203.2', 1678113145, '__ci_last_regenerate|i:1678113145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfbac5476aef86b06a376ea52da57e8c0f8a1774', '31.222.203.2', 1678113145, '__ci_last_regenerate|i:1678113145;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3b5258025b818a5f51c9dbd2c01fdb52b77f30', '31.222.203.2', 1678113145, '__ci_last_regenerate|i:1678113145;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e5b303c7b75759d8b69fe85c7a463654dff840', '31.222.203.2', 1678114954, '__ci_last_regenerate|i:1678114954;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('967471aa5d25299e79d702216dd8197a3c9181a1', '31.222.203.2', 1678114959, '__ci_last_regenerate|i:1678114959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31d03c106594978031da530eebde1bf1c6464275', '31.222.203.2', 1678114959, '__ci_last_regenerate|i:1678114959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5af05a4df936d8a05c8c4945a0535137ca3318', '31.222.203.2', 1678114959, '__ci_last_regenerate|i:1678114959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60f1d1b6e5fc6d19539057eae2ffd6bd3b77ed62', '31.222.203.2', 1678114959, '__ci_last_regenerate|i:1678114959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100084c785513557e166bba1a7592457be8136c8', '31.222.203.2', 1678114959, '__ci_last_regenerate|i:1678114959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea4a57860513a1a7ea4bacb58b52a8ab83decd7', '31.222.203.2', 1678116744, '__ci_last_regenerate|i:1678116744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f8ed674beeb80a535bde55ba6de146c295d6a46', '31.222.203.2', 1678116744, '__ci_last_regenerate|i:1678116744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937812452aaefd77c7f1576c3d292daf88ae759c', '31.222.203.2', 1678116744, '__ci_last_regenerate|i:1678116744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48b774b289fb74c7a81bcabd5c8cfdd1af7e9ac4', '31.222.203.2', 1678116744, '__ci_last_regenerate|i:1678116744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460bc4c1b0ecb09acfff92b72f84ed3058503eb4', '31.222.203.2', 1678116744, '__ci_last_regenerate|i:1678116744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5fe51ecbbafa8faf01dda9f61006a2e7751938', '31.222.203.2', 1678116744, '__ci_last_regenerate|i:1678116744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e07799468e571b73779e0700e2485b8773c10105', '31.222.203.2', 1678118553, '__ci_last_regenerate|i:1678118553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb065b815d815131f45be0b2e922448c2d0edee', '31.222.203.2', 1678118553, '__ci_last_regenerate|i:1678118553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('feb308f3e6a2264e364ec0aa2231b36c69868e06', '31.222.203.2', 1678118553, '__ci_last_regenerate|i:1678118553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f4157ce49892bb53aff2534549c426746e79ba', '31.222.203.2', 1678118553, '__ci_last_regenerate|i:1678118553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a0f588ca2b6cee15afbc5a935ca7f2df4c89330', '31.222.203.2', 1678118553, '__ci_last_regenerate|i:1678118553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4357c59c631d1219de90a3a983c6ba324c867b57', '31.222.203.2', 1678118553, '__ci_last_regenerate|i:1678118553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('055e90cd57dc3121d75519f6f7873e6c0fa08535', '31.222.203.2', 1678120349, '__ci_last_regenerate|i:1678120349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('232de54a0670c06fc022221b06499e7b37382919', '31.222.203.2', 1678120349, '__ci_last_regenerate|i:1678120349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3898a8a5783793e49207bb63547778505ad88e9c', '31.222.203.2', 1678120349, '__ci_last_regenerate|i:1678120349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b74be33c639eb21195e47291ce2209cabbfab3', '31.222.203.2', 1678120349, '__ci_last_regenerate|i:1678120349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9570a2d66466525725abcf04a7c246c28e22132c', '31.222.203.2', 1678120349, '__ci_last_regenerate|i:1678120349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e718159affc97156b3e54d01fe96d2115f2dd66', '31.222.203.2', 1678120349, '__ci_last_regenerate|i:1678120349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91bf3ff21ea664692c7fa593e67a75a6d32da535', '31.222.203.2', 1678122158, '__ci_last_regenerate|i:1678122158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8f34c26d08e9750c2f19c5e7b17a73d0009fb1', '31.222.203.2', 1678122158, '__ci_last_regenerate|i:1678122158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('190422bdfb85f42984c86b272b9a259e76f96c73', '31.222.203.2', 1678122158, '__ci_last_regenerate|i:1678122158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9f4d6b6f702b761b6d3e4acc17d06f62b9ed07', '31.222.203.2', 1678122159, '__ci_last_regenerate|i:1678122159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad8f347b84a71f5c606be586aa29551a2335967', '31.222.203.2', 1678122159, '__ci_last_regenerate|i:1678122159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70f9ebfb769ce70bb869768d40f5a44f6e7ad529', '31.222.203.2', 1678122159, '__ci_last_regenerate|i:1678122159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92187102aee5a4932a5cc849f6c9060657f682e', '31.222.203.2', 1678123955, '__ci_last_regenerate|i:1678123955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d767e4f98ecfffb14995f213d46b91e214db863', '31.222.203.2', 1678123955, '__ci_last_regenerate|i:1678123955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f570d7ada5aa4b105bd0afa4b3f152cf16b8557', '31.222.203.2', 1678123955, '__ci_last_regenerate|i:1678123955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb529a4c1291dcda4fa264ff10e88ce30e3e7ca7', '31.222.203.2', 1678123955, '__ci_last_regenerate|i:1678123955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9998e4aeb19c3dee2f1620f56d2eaa517f657f64', '31.222.203.2', 1678123955, '__ci_last_regenerate|i:1678123955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8dacadbbcc6ecb9a235b316f8b6dc6ae0b0b63c', '31.222.203.2', 1678123955, '__ci_last_regenerate|i:1678123955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e87d6701169b98854ded3f8492ff5f51c5481fcb', '31.222.203.2', 1678125757, '__ci_last_regenerate|i:1678125757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11fc44bd7387a26236b0f69e601adb77f778a197', '31.222.203.2', 1678125757, '__ci_last_regenerate|i:1678125757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e26ca0140bde9ce9a95b507f07a48c34ebf191d3', '31.222.203.2', 1678125757, '__ci_last_regenerate|i:1678125757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba81731e659d57720bd432458aa31df08a9e3ad3', '31.222.203.2', 1678125757, '__ci_last_regenerate|i:1678125757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('539931cf65e1690ed52008b5ef4c022c2581687c', '31.222.203.2', 1678125757, '__ci_last_regenerate|i:1678125757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e4a92ba584c69c33ad4e3029f85db94d5244e1', '31.222.203.2', 1678125757, '__ci_last_regenerate|i:1678125757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('469b3909e24fa8043bacde5de235aefb2dbbbb6e', '31.222.203.2', 1678127550, '__ci_last_regenerate|i:1678127550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf2ee1c2940510ec942e2140c21feb87fc0e67a', '31.222.203.2', 1678127550, '__ci_last_regenerate|i:1678127550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67380293e756aebeb2a53e771883f619d2329df', '31.222.203.2', 1678127550, '__ci_last_regenerate|i:1678127550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7148ce53f0cd3ae1fd2c24b559bcc5eae9bd6d6b', '31.222.203.2', 1678127550, '__ci_last_regenerate|i:1678127550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733c5b5ed1cb9956f6a76dce1dbb6bd59024c5b4', '31.222.203.2', 1678127550, '__ci_last_regenerate|i:1678127550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('847b82bd70b03433656c5bf7b1cf458b303cdfa6', '31.222.203.2', 1678127550, '__ci_last_regenerate|i:1678127550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74253718434ae4b1a282181f19cadd5144aa7b40', '31.222.203.2', 1678129356, '__ci_last_regenerate|i:1678129356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215028f7b100ec1591e45ffaa6041597ebf8d71f', '31.222.203.2', 1678129356, '__ci_last_regenerate|i:1678129356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aef022faa54c027b662ee0aeb3f437a6e0960b03', '31.222.203.2', 1678129356, '__ci_last_regenerate|i:1678129356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('675fb21f580f083c12353058a3c5c43354abd0a2', '31.222.203.2', 1678129356, '__ci_last_regenerate|i:1678129356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('059ce98a5535b910c9e4b915b645e1ec407f52db', '31.222.203.2', 1678129356, '__ci_last_regenerate|i:1678129356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361ab96d0b95da6033f99ff14b19847122070e22', '31.222.203.2', 1678129356, '__ci_last_regenerate|i:1678129356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a9ac819b62dfd267f262643c7da85028228a18', '31.222.203.2', 1678131147, '__ci_last_regenerate|i:1678131147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a700f3952103550e5cc94dfd9d97b9ee23f95d05', '31.222.203.2', 1678131147, '__ci_last_regenerate|i:1678131147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1731d4566e81e3d91f91bc4f730a027da81fd8dd', '31.222.203.2', 1678131147, '__ci_last_regenerate|i:1678131147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b13431a8aeac9211b5d2534ad86125c1ae6133', '31.222.203.2', 1678131148, '__ci_last_regenerate|i:1678131148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4127dee91b6f3e6f558f1942861721905f0eafbe', '31.222.203.2', 1678131148, '__ci_last_regenerate|i:1678131148;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b050232ec2a4a78cccb66d5c5ed8bcf4487e0834', '31.222.203.2', 1678131148, '__ci_last_regenerate|i:1678131148;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be8ae8f6e52fbf4e23779a3d22c9ca29f00ef731', '31.222.203.2', 1678132960, '__ci_last_regenerate|i:1678132960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb56397e0e91dd652cf3e04f98717131f9bad33', '31.222.203.2', 1678132960, '__ci_last_regenerate|i:1678132960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08602c645ed81e4e884553ef86eaaf03df4f9440', '31.222.203.2', 1678132960, '__ci_last_regenerate|i:1678132960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13fdc111898d2732492908f27094014dd7299945', '31.222.203.2', 1678132960, '__ci_last_regenerate|i:1678132960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2393e34cdabc2a1d914b39e0c8f36fee103c41a5', '31.222.203.2', 1678132960, '__ci_last_regenerate|i:1678132960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d55c08c6124acd1928bec51351e87745058b65', '31.222.203.2', 1678132960, '__ci_last_regenerate|i:1678132960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6583c7acf7435917c8623b3a6d01488d5a364e12', '31.222.203.2', 1678134763, '__ci_last_regenerate|i:1678134763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df5c9cd8da1d7fc72bf306a4ab9af76fa960404', '31.222.203.2', 1678134763, '__ci_last_regenerate|i:1678134763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74eeae0684b0c5eba37a352a15114ce4ab594232', '31.222.203.2', 1678134763, '__ci_last_regenerate|i:1678134763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2620662128af74a3147ccb90e1057796a4c01b', '31.222.203.2', 1678134763, '__ci_last_regenerate|i:1678134763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b7be0cec66c2a44811501b97d0d41117a1858d3', '31.222.203.2', 1678134763, '__ci_last_regenerate|i:1678134763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a278b6fa9ec3c3eaedb6106f5bfd98e07e6d6c7', '31.222.203.2', 1678134763, '__ci_last_regenerate|i:1678134763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f479e6c3f360a6354ff2d003bd64211a5b58c1ed', '31.222.203.2', 1678136563, '__ci_last_regenerate|i:1678136563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8f2c9538c0b880d72648ad3804d491e90a23ada', '31.222.203.2', 1678136563, '__ci_last_regenerate|i:1678136563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df500149bec1158bf35cb9daef723e91b1f5709', '31.222.203.2', 1678136563, '__ci_last_regenerate|i:1678136563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('288f7e1524e4d0e5968c872d02ab439a3cd938ed', '31.222.203.2', 1678136563, '__ci_last_regenerate|i:1678136563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c882187b59766b2bea1a26933015fcc861e6d0a3', '31.222.203.2', 1678136563, '__ci_last_regenerate|i:1678136563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03da2158e506d40448f668658a6f8b9c3bc8d90', '31.222.203.2', 1678136563, '__ci_last_regenerate|i:1678136563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf2cdb7c4daaab40fa414d06232b5345eed838fc', '31.222.203.2', 1678138349, '__ci_last_regenerate|i:1678138349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43321759da2a29b684435cd7a84b97ffca4e37e9', '31.222.203.2', 1678138349, '__ci_last_regenerate|i:1678138349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1716269332f65935436fefa03ba586c189617ecb', '31.222.203.2', 1678138349, '__ci_last_regenerate|i:1678138349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b814aa3ac1184489176b73d03b4d58bad54a42d6', '31.222.203.2', 1678138349, '__ci_last_regenerate|i:1678138349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8fbb293353ba73c684ef0a874e50dcdfe153545', '31.222.203.2', 1678138349, '__ci_last_regenerate|i:1678138349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18afc5f8b2639cf2dbd6685aad19c1ddd1cbc43', '31.222.203.2', 1678138349, '__ci_last_regenerate|i:1678138349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b0ff45e3550ec47c8c6ec0d061857ffe9231e2', '31.222.203.2', 1678140163, '__ci_last_regenerate|i:1678140163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84fc556bb8aee1bb6545311ad883be19b30f6a6', '31.222.203.2', 1678140168, '__ci_last_regenerate|i:1678140168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d85dc1aa91d4974f1ff17a66df36e22ad8c1a03', '31.222.203.2', 1678140168, '__ci_last_regenerate|i:1678140168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7faadd71846ea979425851996bdaedc9a571c41', '31.222.203.2', 1678140168, '__ci_last_regenerate|i:1678140168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42791005e2c15423f4062c532a523399f1ea9af5', '31.222.203.2', 1678140168, '__ci_last_regenerate|i:1678140168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63403210a464fb592f86b37477c790de11ccb93', '31.222.203.2', 1678140169, '__ci_last_regenerate|i:1678140168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('785bbf99b270430a0b0cb07d9262cb213f1b3aa5', '31.222.203.2', 1678141953, '__ci_last_regenerate|i:1678141953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b70e811134a2fb2757d4d451c43672d8d8a5038', '31.222.203.2', 1678141953, '__ci_last_regenerate|i:1678141953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5517fb4eaefe6a3ceaddeaa17f2b3bb323b4c128', '31.222.203.2', 1678141953, '__ci_last_regenerate|i:1678141953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc31f053d749c50b900373094e841fa9189c6832', '31.222.203.2', 1678141953, '__ci_last_regenerate|i:1678141953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a9bf004fb68e3427a320e5e3eb53850b72b616a', '31.222.203.2', 1678141953, '__ci_last_regenerate|i:1678141953;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81add14bc6b32dd529cee34352ab476725f27c02', '31.222.203.2', 1678141953, '__ci_last_regenerate|i:1678141953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a30a505f22871a97f340434a0ec9a8207547591', '31.222.203.2', 1678143753, '__ci_last_regenerate|i:1678143753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ccc4458c1b39e04160ed852f917c6d52d23bbdd', '31.222.203.2', 1678143753, '__ci_last_regenerate|i:1678143753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aa4fdde2203a01624e8617a2beeae2f11cb601', '31.222.203.2', 1678143753, '__ci_last_regenerate|i:1678143753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd56c64e3d985719a397ba4672189e1dd06be2ef', '31.222.203.2', 1678143753, '__ci_last_regenerate|i:1678143753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ba72c5eaac9257eaa438e9498b7092d460b74ae', '31.222.203.2', 1678143753, '__ci_last_regenerate|i:1678143753;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bd943d69d491daf09fb99a08483fb62869a052', '31.222.203.2', 1678143753, '__ci_last_regenerate|i:1678143753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43a700dcdeae1f128a6931147acb41eb1fbefed3', '31.222.203.2', 1678145555, '__ci_last_regenerate|i:1678145555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f429c43f361f9671ed926ddef909387b35654abd', '31.222.203.2', 1678145555, '__ci_last_regenerate|i:1678145555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e0a73a14e8a7f9d31e172ff9ffe8db8216b27a0', '31.222.203.2', 1678145555, '__ci_last_regenerate|i:1678145555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ba7a2d4e6bc2a467c2c838ad8c7f53a58f4861', '31.222.203.2', 1678145555, '__ci_last_regenerate|i:1678145555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba9e9f3c80436ce33ca166ee86b34dfca4b9c60', '31.222.203.2', 1678145555, '__ci_last_regenerate|i:1678145555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095e95b84151adbc7a80bf1fc6a109d1a32c49a5', '31.222.203.2', 1678145555, '__ci_last_regenerate|i:1678145555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b66613080dfaf032e7df3a0da188976192b5be8', '31.222.203.2', 1678147356, '__ci_last_regenerate|i:1678147356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7383318df93eae7657cd304fd5e20f0fcdbcea1a', '31.222.203.2', 1678147356, '__ci_last_regenerate|i:1678147356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2bd53c6c4f22a0f6bf791ced9f901b0df1ab4b', '31.222.203.2', 1678147356, '__ci_last_regenerate|i:1678147356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa8f3000113fc5c9182a527ee02d694be7362e97', '31.222.203.2', 1678147356, '__ci_last_regenerate|i:1678147356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('352efa08c8cef4d6fcb0bf1cdc86633b2d2750c5', '31.222.203.2', 1678147356, '__ci_last_regenerate|i:1678147356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba74f6d62c8667ed52cdceecd0428e39d215f05', '31.222.203.2', 1678147356, '__ci_last_regenerate|i:1678147356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8980b8fb0ece92092a13789809faf70d710f5110', '31.222.203.2', 1678149152, '__ci_last_regenerate|i:1678149152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f033620e926a542abcaffe3cd79c61ac995746', '31.222.203.2', 1678149152, '__ci_last_regenerate|i:1678149152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d77bb5e853915d7972fcab8c4fa36823bb7f337d', '31.222.203.2', 1678149152, '__ci_last_regenerate|i:1678149152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8264c1ef161efefb87de7656504c07adcb23fea1', '31.222.203.2', 1678149152, '__ci_last_regenerate|i:1678149152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18264564a924e9a1366ad335c264c9b72b3121b', '31.222.203.2', 1678149152, '__ci_last_regenerate|i:1678149152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed519fe967d469e6da0b796af98760b89180f1c', '31.222.203.2', 1678149152, '__ci_last_regenerate|i:1678149152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09807c97f8305bed1e3a71ee92052f48f9cd02a8', '31.222.203.2', 1678150960, '__ci_last_regenerate|i:1678150960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd49d4c8fa19671117fcb58e6642643abfc2a8a5', '31.222.203.2', 1678150960, '__ci_last_regenerate|i:1678150960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9203492259037f9301946c1abee35c07c3d68c4', '31.222.203.2', 1678150960, '__ci_last_regenerate|i:1678150960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0d93e2a4b369d945a25039680c9fe61cd2eb34a', '31.222.203.2', 1678150960, '__ci_last_regenerate|i:1678150960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b32ebb400eca34705585476f2e83898d3eb37886', '31.222.203.2', 1678150961, '__ci_last_regenerate|i:1678150961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0934409745e959310be63e8eba959e077f0553db', '31.222.203.2', 1678150961, '__ci_last_regenerate|i:1678150961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de71e2d2576469fc5a92efdbd67943ce9ec49a3f', '31.222.203.2', 1678152743, '__ci_last_regenerate|i:1678152743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f815124f42b18e10b23971106ee2f90afc2aebf', '31.222.203.2', 1678152743, '__ci_last_regenerate|i:1678152743;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0da164f2117dbed15c24b098369a654bb55f711c', '31.222.203.2', 1678152743, '__ci_last_regenerate|i:1678152743;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c262a9525db496e091dbd3e44370de8a5fc8a84e', '31.222.203.2', 1678152744, '__ci_last_regenerate|i:1678152744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2bfb73ad0e302d3cd0e4f3f93934d0dee2572c0', '31.222.203.2', 1678152744, '__ci_last_regenerate|i:1678152744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8703031e32925136f7cf1c18181e8577fb16cb7', '31.222.203.2', 1678152744, '__ci_last_regenerate|i:1678152744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f8629b600c2001aac9c773fd88cf9ccde44ade7', '31.222.203.2', 1678154563, '__ci_last_regenerate|i:1678154563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829764ad33e8aaf52d2eeef58ee0c0999e9e4f68', '31.222.203.2', 1678154564, '__ci_last_regenerate|i:1678154564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50586ae8b484613da2f0eb1f9567b26fa13cdbba', '31.222.203.2', 1678154564, '__ci_last_regenerate|i:1678154564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46e1f03074fe0e4c7208be38f198c89e52f6b447', '31.222.203.2', 1678154564, '__ci_last_regenerate|i:1678154564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012f8c79bbb0854a37bacb3dc03eb0da08c8ce41', '31.222.203.2', 1678154564, '__ci_last_regenerate|i:1678154564;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541801712ecd082ab89dab9b9ccf9a41894d9c3b', '31.222.203.2', 1678154564, '__ci_last_regenerate|i:1678154564;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5d7d006efda1b31715a6b6e2f6d3617a6c81848', '31.222.203.2', 1678156345, '__ci_last_regenerate|i:1678156345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('553243f27ac1ccd6bbc2f019b60dbd04ecf1ccb0', '31.222.203.2', 1678156345, '__ci_last_regenerate|i:1678156345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0bb371d9302d556c4092527ec8c67c0da77b862', '31.222.203.2', 1678156345, '__ci_last_regenerate|i:1678156345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0799524e9a5d8f5eba76ea706008ec788d9867c7', '31.222.203.2', 1678156345, '__ci_last_regenerate|i:1678156345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bdbcf58b647dd27d3d2bb3e56689fb9c7a38c6e', '31.222.203.2', 1678156345, '__ci_last_regenerate|i:1678156345;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca339ca560a854c1dd6994a3d5a1abc0788374c', '31.222.203.2', 1678156345, '__ci_last_regenerate|i:1678156345;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14e8e08b10239cd281a7c3e0ab841c0ff93b262c', '31.222.203.2', 1678158155, '__ci_last_regenerate|i:1678158155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a5c5fe0c6056255dd8b0ece9de83d40fb27aede', '31.222.203.2', 1678158155, '__ci_last_regenerate|i:1678158155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e761040c6375c1bfea523a30cd8ad2131259e2e7', '31.222.203.2', 1678158155, '__ci_last_regenerate|i:1678158155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c308b3abcd58a2733358a05d3259fcab5d80fa74', '31.222.203.2', 1678158155, '__ci_last_regenerate|i:1678158155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbc9fa191c71dea1d70a79947d3d0a25ef40c38', '31.222.203.2', 1678158155, '__ci_last_regenerate|i:1678158155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21f608a3cfbff96401223e0c5462a7285eca5b74', '31.222.203.2', 1678158155, '__ci_last_regenerate|i:1678158155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ccae1b90a79c08eb3739870161580dad7cd431c', '31.222.203.2', 1678159946, '__ci_last_regenerate|i:1678159946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('476f8c2efcb4eb5c8fcaa1f5219cf0e5f4de6794', '31.222.203.2', 1678159951, '__ci_last_regenerate|i:1678159951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333542ae1496580e63e55d9eb0d3ea2c500fd18c', '31.222.203.2', 1678159951, '__ci_last_regenerate|i:1678159951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b74bf8c74f5fd1fb9305be6c3d44cde495f62e7b', '31.222.203.2', 1678159951, '__ci_last_regenerate|i:1678159951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a3a3473e22ac860e3740f2b95d70d91970d4077', '31.222.203.2', 1678159951, '__ci_last_regenerate|i:1678159951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0bf08ff65b0e1b598c01e47f9662d30cda16e50', '31.222.203.2', 1678159951, '__ci_last_regenerate|i:1678159951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bb66ac29bba5d47ab31f9cd17d22a4ec58fdad', '31.222.203.2', 1678161757, '__ci_last_regenerate|i:1678161757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a9bb31e4ab2d1aec79455cbee787c3b4357fd16', '31.222.203.2', 1678161757, '__ci_last_regenerate|i:1678161757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c082f44e76842618229e395c80c5156450ed612a', '31.222.203.2', 1678161757, '__ci_last_regenerate|i:1678161757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bed6b3f8c1e0b675bc819dea074e07cb4c72e49', '31.222.203.2', 1678161757, '__ci_last_regenerate|i:1678161757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb259bb44d40c0b67e829a9ed0168b4f06e0ad45', '31.222.203.2', 1678161757, '__ci_last_regenerate|i:1678161757;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710e096ef389276f61ab2e4ec2e004b7b97c52af', '31.222.203.2', 1678161757, '__ci_last_regenerate|i:1678161757;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c3f4aedb49046c0b9fd003af5b65674343951a', '31.222.203.2', 1678163551, '__ci_last_regenerate|i:1678163551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0b68aa70677c5e6dced807231119696cf04de3', '31.222.203.2', 1678163556, '__ci_last_regenerate|i:1678163556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f649dcb24085494c0d93d485daa449f39aa5b28', '31.222.203.2', 1678163556, '__ci_last_regenerate|i:1678163556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('971d21982aaca4bcb468e2e5c13a583540237f59', '31.222.203.2', 1678163556, '__ci_last_regenerate|i:1678163556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af8bf71a1959eebf9aec87348444dc201f731f8', '31.222.203.2', 1678163556, '__ci_last_regenerate|i:1678163556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9047ed778172d39dacb42e57c199d4b73b71c5b', '31.222.203.2', 1678163556, '__ci_last_regenerate|i:1678163556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0eca47c260f658fe44026f0d990825d16344cb4', '45.120.39.89', 1678166149, '__ci_last_regenerate|i:1678166149;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678102791\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678165343;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f83f4eccabad1064a546047a24be06a1494208e', '31.222.203.2', 1678165358, '__ci_last_regenerate|i:1678165358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1063ec8249357d64e94c869ebe299dff94e3c87f', '31.222.203.2', 1678165358, '__ci_last_regenerate|i:1678165358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaa777968e1928fe2bd64c2ed4fed75d4abc1daa', '31.222.203.2', 1678165358, '__ci_last_regenerate|i:1678165358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b6817096bb0078c195512ca27c2a2f1b5b5e2be', '31.222.203.2', 1678165358, '__ci_last_regenerate|i:1678165358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3f3da33b1ab991e8b701a21e7d18df505401f5', '31.222.203.2', 1678165358, '__ci_last_regenerate|i:1678165358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0ee993fca94ee49a53c238bbc07b49a03d09e5', '31.222.203.2', 1678165358, '__ci_last_regenerate|i:1678165358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19394c1489866956c59176b806c7f44e6925a6b6', '116.204.230.28', 1678166542, '__ci_last_regenerate|i:1678166542;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678103554\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46fdd23c72aec317f7d82615e2ff3c23b284e809', '45.120.39.89', 1678166972, '__ci_last_regenerate|i:1678166972;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678102791\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678166698;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee22c2eee3e3e037de0ca1e3c88619ea7206187b', '116.204.230.28', 1678166548, '__ci_last_regenerate|i:1678166542;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678103554\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f60ebc7ff1796c18661c5c5106100f20fe3634d', '45.120.39.89', 1678170044, '__ci_last_regenerate|i:1678170044;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678102791\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678166698;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f33b8dceb90a243b1fe08ffd9cb037cfc94200f', '31.222.203.2', 1678167146, '__ci_last_regenerate|i:1678167146;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f9667d37f505072a9f6ef6728a2ccacdda942a', '31.222.203.2', 1678167146, '__ci_last_regenerate|i:1678167146;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cd01368ed50c98d956bea6d33dd9ad8cf072a9e', '31.222.203.2', 1678167147, '__ci_last_regenerate|i:1678167147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b762bef9e0dcc822f1d5df1ca75bca27d326996b', '31.222.203.2', 1678167147, '__ci_last_regenerate|i:1678167147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1558e95d2019b77b91310d9065b3ec771b4b86c', '31.222.203.2', 1678167147, '__ci_last_regenerate|i:1678167147;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e4f61f661ce682abe37beb91726f7b330016c2', '31.222.203.2', 1678167147, '__ci_last_regenerate|i:1678167147;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7278ead771698f67d8c5f12e2c804044bc426de7', '31.222.203.2', 1678168957, '__ci_last_regenerate|i:1678168957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c95e00edb02ac0420ab37062f63177054c9e9ac', '31.222.203.2', 1678168957, '__ci_last_regenerate|i:1678168957;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71d71682d919862c092a93c0e5d615b900675c56', '31.222.203.2', 1678168957, '__ci_last_regenerate|i:1678168957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ca7323ac71ef9c0fff054f8b57f0d2fd874ee3', '31.222.203.2', 1678168958, '__ci_last_regenerate|i:1678168958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e093486a3cb82bf1be7b46c3cea2f2bffb59c4b6', '31.222.203.2', 1678168958, '__ci_last_regenerate|i:1678168958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f08c0839f6b865c6a21169eded987aaef0a666f', '31.222.203.2', 1678168958, '__ci_last_regenerate|i:1678168958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5fed92b0d8e19d6b1ccef743627e94095465430', '45.120.39.89', 1678171289, '__ci_last_regenerate|i:1678171289;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678102791\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678170059;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76ebbebd582d986f3ae416a014a2b263320ed5b', '31.222.203.2', 1678170759, '__ci_last_regenerate|i:1678170759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b0aac3a6900d8c564bd0d736493c091cc317e1f', '31.222.203.2', 1678170759, '__ci_last_regenerate|i:1678170759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db94d47ff5326982348cc91543438bc8d231d962', '31.222.203.2', 1678170759, '__ci_last_regenerate|i:1678170759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('548438cb693157889f3b409cbc5145512ca83d7a', '31.222.203.2', 1678170760, '__ci_last_regenerate|i:1678170760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195e0e8712aa7e53e0005434ddd33de623e29561', '31.222.203.2', 1678170760, '__ci_last_regenerate|i:1678170760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c4709124847f0ea15e5a2b386a5cc2379c9e98c', '31.222.203.2', 1678170760, '__ci_last_regenerate|i:1678170760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411b256b8d5205fd28b43a90610922f925175dde', '37.111.218.167', 1678171479, '__ci_last_regenerate|i:1678171289;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678102791\";last_ip|s:14:\"37.111.217.115\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678171479;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d7778e72be193e70aeb4a56fd7976837b411f4d', '31.222.203.2', 1678172561, '__ci_last_regenerate|i:1678172561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98318477316cc9c43abd35ac6ee81d9d8d3f688d', '31.222.203.2', 1678172561, '__ci_last_regenerate|i:1678172561;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ff8f04f41f888a7b3fd43602ad46ea9c191f3fd', '31.222.203.2', 1678172561, '__ci_last_regenerate|i:1678172561;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7552f1ab44112aa2b648b39f5b9a206d45ed2251', '31.222.203.2', 1678172563, '__ci_last_regenerate|i:1678172563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2caf27ad55b20557733c10a36e1dab269d4df0f', '31.222.203.2', 1678172563, '__ci_last_regenerate|i:1678172563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66c3024f21d24336a9eb2e76998860a7262cded1', '31.222.203.2', 1678172563, '__ci_last_regenerate|i:1678172563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2f6e890a6c6a34716677528e9714cf8e4169d3', '31.222.203.2', 1678174347, '__ci_last_regenerate|i:1678174347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243a7563a656fe3578562959cdfcfbaf80b99f61', '31.222.203.2', 1678174347, '__ci_last_regenerate|i:1678174347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65665b4750f6c21c331b26195d782ca5b5e93c84', '31.222.203.2', 1678174347, '__ci_last_regenerate|i:1678174347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc1890ded14eb24e8f7094d5c877c6fb4b81d65', '31.222.203.2', 1678174347, '__ci_last_regenerate|i:1678174347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2613d8211b3a6bb898a5c0f2f7a716e07918fe39', '31.222.203.2', 1678174347, '__ci_last_regenerate|i:1678174347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99622d6ece8727da6f5cdf01a12b5cb6ed10ad92', '31.222.203.2', 1678174347, '__ci_last_regenerate|i:1678174347;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f30b4f1af72e61cb75a15301ac5858ca6b3a3b', '116.204.230.28', 1678174668, '__ci_last_regenerate|i:1678174663;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678166021\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710d1e1ba75ceca676166bc43663265832c2ecf8', '31.222.203.2', 1678176168, '__ci_last_regenerate|i:1678176168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4342b10524393f6d7badb6ce6061da9238b5556', '31.222.203.2', 1678176168, '__ci_last_regenerate|i:1678176168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06cccdc7054f7668d8d0c00d663e3604a2cf311', '31.222.203.2', 1678176168, '__ci_last_regenerate|i:1678176168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d296b19482b1efd309eb4b3b14ceab1e6db035', '31.222.203.2', 1678176168, '__ci_last_regenerate|i:1678176168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8cffe5ebe830a64088ebf31d61ca9342781c644', '31.222.203.2', 1678176168, '__ci_last_regenerate|i:1678176168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9e2d99bf821089754aaa828dd69dc98830adb1', '31.222.203.2', 1678176168, '__ci_last_regenerate|i:1678176168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9555adc2830fd1077d41adf50a66897808712d79', '31.222.203.2', 1678177951, '__ci_last_regenerate|i:1678177951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8fc7160f47f00e0b6aebb6f25ab16c43b545b8', '31.222.203.2', 1678177951, '__ci_last_regenerate|i:1678177951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805b756df62d4183ad83cfd569ea263ea03fc578', '31.222.203.2', 1678177951, '__ci_last_regenerate|i:1678177951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9881df79c72a3af0799d2db39c3fbf3d908bb301', '31.222.203.2', 1678177951, '__ci_last_regenerate|i:1678177951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9aa3f39e57f4c2bcdd4249edf180cd636778c43', '31.222.203.2', 1678177951, '__ci_last_regenerate|i:1678177951;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9d2e578a0f21ef4ddd2c64528556a970a4c91b', '31.222.203.2', 1678177951, '__ci_last_regenerate|i:1678177951;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8119e76ab5ed440ad32a6728223214a6db3754', '45.120.39.89', 1678179644, '__ci_last_regenerate|i:1678179644;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678179283;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7e5a9f1283f0c68392c4fe4ed930ded1f8048e7', '45.120.39.89', 1678180333, '__ci_last_regenerate|i:1678180333;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678179692;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b8bc2e0932739b363418e7684dba6dc1359ea47', '31.222.203.2', 1678179751, '__ci_last_regenerate|i:1678179751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc4b76d2189de15ea8512910c1537b89ac607e67', '31.222.203.2', 1678179751, '__ci_last_regenerate|i:1678179751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3097cae5e720f0e6ab1210ded8d7bc28dc466228', '31.222.203.2', 1678179751, '__ci_last_regenerate|i:1678179751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd0cfdb9614ed9cc668321c1401737c44657b659', '31.222.203.2', 1678179751, '__ci_last_regenerate|i:1678179751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c70cf5df3c27a2bb0cfb5cd44fe3eae4c7da07e5', '31.222.203.2', 1678179751, '__ci_last_regenerate|i:1678179751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6c0dacb17e3de84face806c95447998ae953c18', '31.222.203.2', 1678179751, '__ci_last_regenerate|i:1678179751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1463d5012c36053cbd44aee68e24556204f4b8b8', '45.120.39.89', 1678186381, '__ci_last_regenerate|i:1678186381;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678180333;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d626865b2bba4fa65850b2a829f6afcb670f1d65', '31.222.203.2', 1678181548, '__ci_last_regenerate|i:1678181548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8239be47d3206934e9f82eac965b131cbb4973', '31.222.203.2', 1678181548, '__ci_last_regenerate|i:1678181548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d6d57c188514fcce9322787471cf6b415c579d', '31.222.203.2', 1678181548, '__ci_last_regenerate|i:1678181548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c906263415d4c63d47a41dd8b7d070d8db2d379f', '31.222.203.2', 1678181549, '__ci_last_regenerate|i:1678181549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c9abe1cb01e0f67d9bfe21c1dc2d1d412f761bb', '31.222.203.2', 1678181549, '__ci_last_regenerate|i:1678181549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3d136b25b5553d3114283909fcbd6695e5b4af', '31.222.203.2', 1678181549, '__ci_last_regenerate|i:1678181549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1318f7f85bc4526fe68db5d51b9bf253a17e68bd', '31.222.203.2', 1678183354, '__ci_last_regenerate|i:1678183354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('389df8900142a0f61d34c8cf919745bfc43bb58d', '31.222.203.2', 1678183354, '__ci_last_regenerate|i:1678183354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faf134add1bed312dfeba813f325237a2eab8f1a', '31.222.203.2', 1678183354, '__ci_last_regenerate|i:1678183354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e2f3b133b1318812887e7c093515b69ee4f24c7', '31.222.203.2', 1678183354, '__ci_last_regenerate|i:1678183354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7df6eb1ec0ee780588c427cc8d9cc8d1d4009a', '31.222.203.2', 1678183354, '__ci_last_regenerate|i:1678183354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bdae0b66e7b3ee21b6ce3a340af445b90e3527b', '31.222.203.2', 1678183354, '__ci_last_regenerate|i:1678183354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be9a7d6c2e3ade6d666adf7358820ed383c64b97', '31.222.203.2', 1678185149, '__ci_last_regenerate|i:1678185149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4067938dc2e0ea806a483564c7fa012acb060297', '31.222.203.2', 1678185149, '__ci_last_regenerate|i:1678185149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ec949687c63d9000761df3c28acf8ce3579509d', '31.222.203.2', 1678185149, '__ci_last_regenerate|i:1678185149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b621ea08dc23599b9a375e8af665ebdad063699d', '31.222.203.2', 1678185149, '__ci_last_regenerate|i:1678185149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef80ca118876a5f3ea1280a5868befef42a4e88e', '31.222.203.2', 1678185149, '__ci_last_regenerate|i:1678185149;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('168a0aad1cf0eaf122beb4d9cbc30a6559926c09', '31.222.203.2', 1678185149, '__ci_last_regenerate|i:1678185149;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('674d8788bb3a436aabb9136bfe817704fdfd695a', '45.120.39.89', 1678188693, '__ci_last_regenerate|i:1678188693;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678186567;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82c9bcb2a72c5e12b70b4c97f487684ce9df7484', '87.236.176.163', 1678186825, '__ci_last_regenerate|i:1678186825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c82c341e898683240c0bfb2f2e38056a8ee4b7e', '87.236.176.163', 1678186825, '__ci_last_regenerate|i:1678186825;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a484c3590076578a88b5c93ff4cfc01d4abad8de', '31.222.203.2', 1678186949, '__ci_last_regenerate|i:1678186949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08877e16112b58a635b0bcf88fc47d884906409', '31.222.203.2', 1678186949, '__ci_last_regenerate|i:1678186949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e7519172bc9f9a6afd01a744a5f68cb8d7878a', '31.222.203.2', 1678186949, '__ci_last_regenerate|i:1678186949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0571194434d807059e5885882ec4e8cda0f461d1', '31.222.203.2', 1678186949, '__ci_last_regenerate|i:1678186949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf1232d25777dc598b5081e234f1be7d64a217d', '31.222.203.2', 1678186949, '__ci_last_regenerate|i:1678186949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074c775a2805c2b1f1ab4cda4b69fb7cdae2d7a5', '31.222.203.2', 1678186949, '__ci_last_regenerate|i:1678186949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e39269dc19c869f78597fcf0be381c12d26d2096', '37.111.218.167', 1678191781, '__ci_last_regenerate|i:1678191781;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678188702;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9255f6e0d497134a594282baf16de575a6c5ddce', '31.222.203.2', 1678188744, '__ci_last_regenerate|i:1678188744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ea4f2977176889d47a318fd6ea2ea6aa6097a3', '31.222.203.2', 1678188744, '__ci_last_regenerate|i:1678188744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6146857bc4ce2488801d920f4c08c31b63bc7559', '31.222.203.2', 1678188744, '__ci_last_regenerate|i:1678188744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5755beb00a7ac5d7660f7681bc0d7243d49c7f08', '31.222.203.2', 1678188744, '__ci_last_regenerate|i:1678188744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5e4c9be956510045aca597ef96dd554d14f1b8', '31.222.203.2', 1678188744, '__ci_last_regenerate|i:1678188744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8b804829c276ce2784718c022afa0b651f0e99', '31.222.203.2', 1678188744, '__ci_last_regenerate|i:1678188744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0ed2f46fb05a836e23fd8d77b99f04ffafea3e6', '116.204.230.28', 1678189555, '__ci_last_regenerate|i:1678189555;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678174668\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5102afbedfb97ad1b5fc65b7a990ac31c7e325', '116.204.230.28', 1678189882, '__ci_last_regenerate|i:1678189882;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678174668\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"qAF06txB1YyWbc8jIdfk\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6c1702a674afcb0130d33d671ce9c565854544', '116.204.230.28', 1678190208, '__ci_last_regenerate|i:1678190208;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678174668\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"qAF06txB1YyWbc8jIdfk\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdb5d1f796d01af9b64d8df68ab55162212e1547', '116.204.230.28', 1678190389, '__ci_last_regenerate|i:1678190208;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678174668\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"qAF06txB1YyWbc8jIdfk\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65d001787232a3d5849498dbeb559dea0550499', '31.222.203.2', 1678190554, '__ci_last_regenerate|i:1678190554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('781d66c8c8c3a0b13c52d3274f84e7f730e6fc22', '31.222.203.2', 1678190554, '__ci_last_regenerate|i:1678190554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce4de5661e025b42496174f27a24f7578a68dd98', '31.222.203.2', 1678190554, '__ci_last_regenerate|i:1678190554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a838590b012b6e283449f6eef4d4d70dace882', '31.222.203.2', 1678190554, '__ci_last_regenerate|i:1678190554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af92a4bca49cf524426b51c2c4ad12d1288a6133', '31.222.203.2', 1678190554, '__ci_last_regenerate|i:1678190554;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906a79b3c7a683c278ae76ad04e7fd3a1e662b34', '31.222.203.2', 1678190554, '__ci_last_regenerate|i:1678190554;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d821decc8b3f93d1aa292fc80119c16646dc960c', '37.111.218.167', 1678193996, '__ci_last_regenerate|i:1678193996;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678191976;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('471f2ecd6d1ee7a7ec35fded000031cb3014147b', '31.222.203.2', 1678192350, '__ci_last_regenerate|i:1678192350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a296406d604a4004c87836e610c1243816ee51e', '31.222.203.2', 1678192350, '__ci_last_regenerate|i:1678192350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d46fae612848f5c40782f5139e05b5a7b39185a3', '31.222.203.2', 1678192350, '__ci_last_regenerate|i:1678192350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e417816359308329f5589c376f7af6086d6c1e1', '31.222.203.2', 1678192350, '__ci_last_regenerate|i:1678192350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff0ce2e01ad4a4e90dbd2c84c4a1abb54f3bc90', '31.222.203.2', 1678192350, '__ci_last_regenerate|i:1678192350;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8931a008f718d3881799ee6a3314eede988374a1', '31.222.203.2', 1678192350, '__ci_last_regenerate|i:1678192350;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b7a52f541ddc8500579fe75d70ef53fdbe806c8', '198.235.24.166', 1678193691, '__ci_last_regenerate|i:1678193691;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02bc463039bf36adf863329edc18e9c7e70e7a83', '37.111.218.167', 1678195589, '__ci_last_regenerate|i:1678195589;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678194110;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b7fd20d82c0362b7595117f4f8097e269235b2d', '31.222.203.2', 1678194164, '__ci_last_regenerate|i:1678194164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10bf26497f03bf74afd6255509e9d27124a02e7c', '31.222.203.2', 1678194164, '__ci_last_regenerate|i:1678194164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e4cac19739ef957b46b3b47d414fbbd78def54', '31.222.203.2', 1678194164, '__ci_last_regenerate|i:1678194164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de95453d75230af7ff75e74113dcfcbea024a5ef', '31.222.203.2', 1678194164, '__ci_last_regenerate|i:1678194164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37817abe327dff9ce16cb1ce8f726476ead5c71b', '31.222.203.2', 1678194164, '__ci_last_regenerate|i:1678194164;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb88540a0ca3b0d1f8a7e5806caef9d6d4bed4cf', '31.222.203.2', 1678194164, '__ci_last_regenerate|i:1678194164;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073603486dae8c8675adaa446e6c165e3d77f3cf', '37.111.218.167', 1678197603, '__ci_last_regenerate|i:1678197603;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678197599;register_id|s:3:\"362\";cash_in_hand|s:9:\"5450.0000\";register_open_time|s:19:\"2023-03-06 20:07:36\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8cb82413a66efbed052c4b6096549f190138b9', '31.222.203.2', 1678195944, '__ci_last_regenerate|i:1678195944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231aedd459c6e323b88a26e1c962539ff8020dc4', '31.222.203.2', 1678195944, '__ci_last_regenerate|i:1678195944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6ca08b3f73e8b389126f42857742b3dad230c5', '31.222.203.2', 1678195944, '__ci_last_regenerate|i:1678195944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80bb817ee2ba3a2079a63aaef5305e44b949f877', '31.222.203.2', 1678195944, '__ci_last_regenerate|i:1678195944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71cee7c4dc16805811a66dd3c83d5da9c71e09f7', '31.222.203.2', 1678195944, '__ci_last_regenerate|i:1678195944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b2060b07edaa9c35143389613eaa39b60ec1d25', '31.222.203.2', 1678195944, '__ci_last_regenerate|i:1678195944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2c77860b178f9e3555074efa959e5ccebe059a8', '37.111.218.167', 1678200003, '__ci_last_regenerate|i:1678200003;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678199361;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe6fb4b04dec6954748f77f3906d4e6bfaa92a8', '31.222.203.2', 1678197756, '__ci_last_regenerate|i:1678197756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8120e613b626f8a7ed0db1fe2b804e3719221374', '31.222.203.2', 1678197756, '__ci_last_regenerate|i:1678197756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77906e40f776be4f1c573a049cfd55afb66b5b96', '31.222.203.2', 1678197756, '__ci_last_regenerate|i:1678197756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b11b0572bc600821f585cae68989075873171c', '31.222.203.2', 1678197756, '__ci_last_regenerate|i:1678197756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33ef076fe271d2b591aea120dd6ebda02a3b0d84', '31.222.203.2', 1678197756, '__ci_last_regenerate|i:1678197756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2d070f5ae62287ca7e30e75d69c331170224d9', '31.222.203.2', 1678197756, '__ci_last_regenerate|i:1678197756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b744c727d604f079778c18a5e7e4899d42077d9', '37.111.218.167', 1678199224, '__ci_last_regenerate|i:1678199224;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678199224;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb4ff4e871457ad964e0a013671997a2ca6cdfc3', '31.222.203.2', 1678199544, '__ci_last_regenerate|i:1678199544;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6fa4556b6530ed76d71fee29eeffd157748c8d8', '31.222.203.2', 1678199545, '__ci_last_regenerate|i:1678199545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a11a260b8fd5ddf602d5b5b3673d758b4c1893', '31.222.203.2', 1678199545, '__ci_last_regenerate|i:1678199545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b44a1a01419457669dda5abb61f9dbd941109c12', '31.222.203.2', 1678199545, '__ci_last_regenerate|i:1678199545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9439aeb7a151d5855f857f31626fb7f32883c5', '31.222.203.2', 1678199545, '__ci_last_regenerate|i:1678199545;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77488758505ead7825bd49a40b62223887da2554', '31.222.203.2', 1678199545, '__ci_last_regenerate|i:1678199545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9c9951b7e25c7931ad8a5e60c1d5a74eade5579', '37.111.218.167', 1678200148, '__ci_last_regenerate|i:1678200003;requested_page|s:13:\"admin/welcome\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678165305\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678200148;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e76354a967318ce334d5a42f6437c3cfe3f04c44', '31.222.203.2', 1678201375, '__ci_last_regenerate|i:1678201375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eedb39b298a66947964a1db385cc7fbdbfd9a4fb', '31.222.203.2', 1678201375, '__ci_last_regenerate|i:1678201375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa68981d2af8154a4155b83400ccb549e25a1eb', '31.222.203.2', 1678201375, '__ci_last_regenerate|i:1678201375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5c54bcbbbc3cfd059664118fe7d2fa7cef56089', '31.222.203.2', 1678201376, '__ci_last_regenerate|i:1678201376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38e4b2b4da4a663f5ae135789a3380c667fcb780', '31.222.203.2', 1678201376, '__ci_last_regenerate|i:1678201376;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1bdedf264c3f9574185733df7d4f31d11b99f6b', '31.222.203.2', 1678201376, '__ci_last_regenerate|i:1678201376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd48c6d52d498c0c087e9d452673c36e5cdc1e46', '31.222.203.2', 1678203167, '__ci_last_regenerate|i:1678203167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc5cbdeb9ba0e94d4763611eb17b4b2df6cb125c', '31.222.203.2', 1678203167, '__ci_last_regenerate|i:1678203167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d8d9082bde53497e6ada660e5a22566aabb159b', '31.222.203.2', 1678203167, '__ci_last_regenerate|i:1678203167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d10c8e6e104b8bb7a5ad6ba8ae88fa8cf63cac4a', '31.222.203.2', 1678203167, '__ci_last_regenerate|i:1678203167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5f641e13a806799527aae18009a440ad99b1761', '31.222.203.2', 1678203167, '__ci_last_regenerate|i:1678203167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5505c68680857069a6cc9e5cd2c62e4d030ce1', '31.222.203.2', 1678203167, '__ci_last_regenerate|i:1678203167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6983567713e8cb31318d1e6592a726628ae51816', '31.222.203.2', 1678204966, '__ci_last_regenerate|i:1678204966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110d902651c8dce404529c954586395d8fdfa3da', '31.222.203.2', 1678204966, '__ci_last_regenerate|i:1678204966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('022c15d4c1c4ca83beb47926286ec30dd33f7453', '31.222.203.2', 1678204967, '__ci_last_regenerate|i:1678204967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9775aaaf64a4d5a1cede8bcaa4e29aa77b15dfc3', '31.222.203.2', 1678204967, '__ci_last_regenerate|i:1678204967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abf809a5884769cec8fb893a0bac6e156c839dd9', '31.222.203.2', 1678204967, '__ci_last_regenerate|i:1678204967;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d9173d3534ffcf8cd46cedf2b809f9f588c8453', '31.222.203.2', 1678204967, '__ci_last_regenerate|i:1678204967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a9c8646d57c991e2ce4c72caebd2a63c181ba5', '124.40.255.186', 1678205391, '__ci_last_regenerate|i:1678205391;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('012011005785c2daf7723c62643b3b4d647f7293', '124.40.255.186', 1678205396, '__ci_last_regenerate|i:1678205396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b534dc64028d0a426d0b87f141369ca53e2fc760', '124.40.255.186', 1678205396, '__ci_last_regenerate|i:1678205396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83761fe13eca10e9f20f8c526bcf163ff36d96be', '124.40.255.186', 1678205397, '__ci_last_regenerate|i:1678205397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00235e6507d6bff3081f7c1afef0f7a3bb4f876c', '54.229.242.159', 1678206513, '__ci_last_regenerate|i:1678206513;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0a90b744adadb0629b9090186a4101df39d8a3', '31.222.203.2', 1678206759, '__ci_last_regenerate|i:1678206759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e36d94c2bc94bccad80f95de65311c3afe3fdddc', '31.222.203.2', 1678206759, '__ci_last_regenerate|i:1678206759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4884a07be20f5752858e2789ab1f7faa6c39c6cd', '31.222.203.2', 1678206759, '__ci_last_regenerate|i:1678206759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3470c00c34afcd488d48c7c6018fcf586c9201', '31.222.203.2', 1678206759, '__ci_last_regenerate|i:1678206759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b4f370d9a0e182376515307417f65a36a13a24c', '31.222.203.2', 1678206759, '__ci_last_regenerate|i:1678206759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06cc3366fd1c36cc844497c1956291d2287dda26', '31.222.203.2', 1678206759, '__ci_last_regenerate|i:1678206759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb9b2446929a19b11d8c783a8a8e6a362d9c5c71', '162.240.214.96', 1678207351, '__ci_last_regenerate|i:1678207351;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac901f8deac2179d913dd2eb4c01c3b6c16faa5a', '162.240.214.96', 1678207353, '__ci_last_regenerate|i:1678207353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98a8e7076425455db50c33132221f0a94036b60', '162.240.214.96', 1678207353, '__ci_last_regenerate|i:1678207353;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c541660900d50221d43e2b841186d8ec116ed1', '162.240.214.96', 1678207353, '__ci_last_regenerate|i:1678207353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed55e441643932942b855dc9c772aa0ead317b0d', '31.222.203.2', 1678208563, '__ci_last_regenerate|i:1678208563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3657517b2a2bfcd05ada046022013e828a22dc', '31.222.203.2', 1678208563, '__ci_last_regenerate|i:1678208563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('def6d9959f7075daca6d5f82af1449c8688eae87', '31.222.203.2', 1678208563, '__ci_last_regenerate|i:1678208563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dc61259a17f8a16110abd2d836d94b83e6805c9', '31.222.203.2', 1678208563, '__ci_last_regenerate|i:1678208563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ee141cd58b5c970d2d07c860ce031dcb5795616', '31.222.203.2', 1678208563, '__ci_last_regenerate|i:1678208563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ef9e507f6b2b8216876354e6a12afc9d1022fc3', '31.222.203.2', 1678208563, '__ci_last_regenerate|i:1678208563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dbfe1df176880bebb5284fbfab125abfaf9421e', '34.245.106.107', 1678209519, '__ci_last_regenerate|i:1678209519;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e65ae9405cecb6c01c53a553d673d8de7b91215', '31.222.203.2', 1678210356, '__ci_last_regenerate|i:1678210356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2274997d322227113e3c40ac90bf3ee8e8e49658', '31.222.203.2', 1678210356, '__ci_last_regenerate|i:1678210356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3431488c0ec2a233e24bb16b7e62466ed659a6', '31.222.203.2', 1678210356, '__ci_last_regenerate|i:1678210356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1de17ed7e01bf12226eab0dc9966b296d416e0c', '31.222.203.2', 1678210357, '__ci_last_regenerate|i:1678210357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4fddcfaa21ca380a1b124b0c03db0839352d182', '31.222.203.2', 1678210357, '__ci_last_regenerate|i:1678210357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae9e18228ff3fc8f0834110721ee65426aabaa9', '31.222.203.2', 1678210357, '__ci_last_regenerate|i:1678210357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314da2e1d4c6d2bf20b57febaac0f75d75dd8282', '103.92.27.198', 1678210934, '__ci_last_regenerate|i:1678210934;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3858156d298d1686aac1b8f6170e04593f3c369f', '103.92.27.198', 1678210935, '__ci_last_regenerate|i:1678210935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30dff90f73dafce2dd6c3584624eb2cb04a1587a', '103.92.27.198', 1678210942, '__ci_last_regenerate|i:1678210942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1924ac1d8116e24b24e9f7a50ae3cbbde92c02b', '103.92.27.198', 1678210946, '__ci_last_regenerate|i:1678210946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0b257fd623105a47261acdf886a9a7b857cf89f', '31.222.203.2', 1678212170, '__ci_last_regenerate|i:1678212170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ad5369b2e4db5e6e2339d9cfcb59fbe3addf23', '31.222.203.2', 1678212170, '__ci_last_regenerate|i:1678212170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45bb4efa8bb0ad8eb4f29f157c667b7931ed5b8b', '31.222.203.2', 1678212170, '__ci_last_regenerate|i:1678212170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df8902db387908e83136fd0d31f53dee0134faef', '31.222.203.2', 1678212170, '__ci_last_regenerate|i:1678212170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb548ef96d7e124d11058439b2622da8c7703705', '31.222.203.2', 1678212170, '__ci_last_regenerate|i:1678212170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c2114435b3be22c64ed44acb4b6acd84643d050', '31.222.203.2', 1678212170, '__ci_last_regenerate|i:1678212170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('570640a5f99b1ebb081ab77d0cfb3b4aac14e9fc', '31.222.203.2', 1678213968, '__ci_last_regenerate|i:1678213968;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25e11925fee2739ed1f34be7ca06fa16dee5abc', '31.222.203.2', 1678213968, '__ci_last_regenerate|i:1678213968;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('547dd47404ed5c7568f2b41b5dd90c91d19e560f', '31.222.203.2', 1678213968, '__ci_last_regenerate|i:1678213968;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('044683033a8dcf8d4e5fa421fd92f4e4ac908264', '31.222.203.2', 1678213969, '__ci_last_regenerate|i:1678213969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452959993b2b908b23b74dc3279bae0950a73364', '31.222.203.2', 1678213969, '__ci_last_regenerate|i:1678213969;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f98ca9608f676996f49611ec7f115f92686a27f', '31.222.203.2', 1678213969, '__ci_last_regenerate|i:1678213969;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df439bd3bb9edc4f8c00a7448d3eb45cc0654c3a', '31.222.203.2', 1678215766, '__ci_last_regenerate|i:1678215766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5390479df3a36f4eb66147fb81312959803d9bf7', '31.222.203.2', 1678215766, '__ci_last_regenerate|i:1678215766;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a37efdbe76b004a377db5051e8dde37496378a4', '31.222.203.2', 1678215766, '__ci_last_regenerate|i:1678215766;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b5251b6c9c62cf11728c90e1e7f89666a89035a', '31.222.203.2', 1678215767, '__ci_last_regenerate|i:1678215767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8efd699a60461fe79b1c6547e65bb047fb08bbf', '31.222.203.2', 1678215767, '__ci_last_regenerate|i:1678215767;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23deb05f7ee58d0a068170caa8ef8cb77781bfb4', '31.222.203.2', 1678215767, '__ci_last_regenerate|i:1678215767;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c971259c08c8dce06b687beff8db618f89b4cd8f', '31.222.203.2', 1678217568, '__ci_last_regenerate|i:1678217568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc12dc6eae34820cbf7de40cb2ef55166285d42f', '31.222.203.2', 1678217568, '__ci_last_regenerate|i:1678217568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e33409aed06a824816a1c8bae1176a487a2942', '31.222.203.2', 1678217568, '__ci_last_regenerate|i:1678217568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b9cc23be7df2796947f2070decde1756bbfeba', '31.222.203.2', 1678217569, '__ci_last_regenerate|i:1678217569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc83c7db09f1731befbd1fded7ec3839403b7df2', '31.222.203.2', 1678217569, '__ci_last_regenerate|i:1678217569;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('646153b90e54f37819a5dfda25917c87f40365b1', '31.222.203.2', 1678217569, '__ci_last_regenerate|i:1678217569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a47418eac743339070357a2bae55ddebf75b70c', '31.222.203.2', 1678219362, '__ci_last_regenerate|i:1678219362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc181c267040dca1989b7c878ae0cb27357e4104', '31.222.203.2', 1678219363, '__ci_last_regenerate|i:1678219363;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea53e70f7f97a9564e523b0439aaed91ac3bbe84', '31.222.203.2', 1678219363, '__ci_last_regenerate|i:1678219363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e8cf8c6abfcd3eac5d0d1ec12f2c03c0922fbec', '31.222.203.2', 1678219363, '__ci_last_regenerate|i:1678219363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bbf8d2bb70819420202b91157044d86dd62e28b', '31.222.203.2', 1678219363, '__ci_last_regenerate|i:1678219363;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3907895f3c792fd63a071dc98b5af60c10f8b7c5', '31.222.203.2', 1678219363, '__ci_last_regenerate|i:1678219363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49acb0715c1ad01c034a11cf9f48d978ffb562a6', '34.251.241.166', 1678220449, '__ci_last_regenerate|i:1678220449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317f66dc704e10bceeede32375c87fe0dc0303dd', '87.236.176.115', 1678220575, '__ci_last_regenerate|i:1678220575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edb13ed1a0e74a362d6ba56f3ba8a335e7dd8ad0', '87.236.176.115', 1678220576, '__ci_last_regenerate|i:1678220575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77eab79b9eaf534e3a23f26938dbca294554b982', '192.169.244.239', 1678220763, '__ci_last_regenerate|i:1678220763;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9133d65306c923117295c11cd7a4addb16db15ad', '192.169.244.239', 1678220763, '__ci_last_regenerate|i:1678220763;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('267b3ec9afa384c4cb0e37f1b9be7c8b4a54ab1d', '192.169.244.239', 1678220763, '__ci_last_regenerate|i:1678220763;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4931fbc0a61037949abef52983c5abf0d2ff600e', '192.169.244.239', 1678220764, '__ci_last_regenerate|i:1678220764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d5c2e5ef45834a078a2bca06659a2af7501cc7f', '31.222.203.2', 1678221166, '__ci_last_regenerate|i:1678221166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8413b09769e22901291b30f6674ac36b718094', '31.222.203.2', 1678221166, '__ci_last_regenerate|i:1678221166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c960f31c949f0b216ac7eab2f5969526e1d61c', '31.222.203.2', 1678221166, '__ci_last_regenerate|i:1678221166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c66abcd5b5571aa82a048c6eda73e0dec0c408', '31.222.203.2', 1678221167, '__ci_last_regenerate|i:1678221167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72d021263df25124a96bfb1cefa4ed68587b540b', '31.222.203.2', 1678221167, '__ci_last_regenerate|i:1678221167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63884cfb81be08b66150e81becb15cfdeabe311c', '31.222.203.2', 1678221167, '__ci_last_regenerate|i:1678221167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7da93f6fa064343861fd1b89c034a92903627f', '31.222.203.2', 1678222966, '__ci_last_regenerate|i:1678222966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0fff9cc50b6ebe328cc30c3594134468e330bde', '31.222.203.2', 1678222966, '__ci_last_regenerate|i:1678222966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e747d4942d962923bb7249adcc198c800537eee9', '31.222.203.2', 1678222966, '__ci_last_regenerate|i:1678222966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b05757afa52387a51936ccb33d6f5d4d4a6c503f', '31.222.203.2', 1678222967, '__ci_last_regenerate|i:1678222967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4706bf203eca5809356cdd324b0590fd8bd849a', '31.222.203.2', 1678222967, '__ci_last_regenerate|i:1678222967;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('603a0baefb2ba9e8ac4ffc1ab437dc3445dbafb0', '31.222.203.2', 1678222967, '__ci_last_regenerate|i:1678222967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c4cdfa3aca16cfcf928a516812ead27a9fc5ecd', '3.249.223.76', 1678223779, '__ci_last_regenerate|i:1678223779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e215ad77e58c0dc3c8c9196edc33a2c5d80f1320', '31.222.203.2', 1678224761, '__ci_last_regenerate|i:1678224761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e32b6e53556227fa3f02c27434b2772cb24f9d0', '31.222.203.2', 1678224761, '__ci_last_regenerate|i:1678224761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bbdb7b85781b75ada692a7b0b89bf77ff5d94d', '31.222.203.2', 1678224761, '__ci_last_regenerate|i:1678224761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747e18ec5e763ce66c14f445ee23ba06075757c8', '31.222.203.2', 1678224761, '__ci_last_regenerate|i:1678224761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdefce9018b598eb4705b7d4e2066a6ad9d56610', '31.222.203.2', 1678224761, '__ci_last_regenerate|i:1678224761;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023ac89066c3e96b303e878c7b43d36c6f5cadb9', '31.222.203.2', 1678224761, '__ci_last_regenerate|i:1678224761;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01c43ee61ef70aa19a7ef51e486832e0012368c', '31.222.203.2', 1678226572, '__ci_last_regenerate|i:1678226572;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b61f4f37d31c362590c25d728e87306e67002e6', '31.222.203.2', 1678226573, '__ci_last_regenerate|i:1678226573;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d8d727662cdf7442ae88469bf33bc7c253a393', '31.222.203.2', 1678226573, '__ci_last_regenerate|i:1678226573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06f22e76c1e24fef4bdc62416438b710756116fa', '31.222.203.2', 1678226573, '__ci_last_regenerate|i:1678226573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef4150881e1707e3159c4ba1e0c61ea9db715ea7', '31.222.203.2', 1678226573, '__ci_last_regenerate|i:1678226573;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46ce0ea27726e15ddb56b309dfa2aff2124bcb67', '31.222.203.2', 1678226573, '__ci_last_regenerate|i:1678226573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efeac998ac64991d2d0fcee4bd82902681df9b38', '31.222.203.2', 1678228353, '__ci_last_regenerate|i:1678228353;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a30f6aebf30a2924f8b707d2070d767760b56a0', '31.222.203.2', 1678228354, '__ci_last_regenerate|i:1678228354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29a6f5e707581226abaa66a941c3b0022100c55', '31.222.203.2', 1678228354, '__ci_last_regenerate|i:1678228354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eee1e920c8ce22323f973d3846b7e83b05b13b9', '31.222.203.2', 1678228354, '__ci_last_regenerate|i:1678228354;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8048223725292c30a17e30d9c731bd8a05f3c57a', '31.222.203.2', 1678228354, '__ci_last_regenerate|i:1678228354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e8ac47f785d9bb13e05a9834749da52e556147', '31.222.203.2', 1678228354, '__ci_last_regenerate|i:1678228354;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b15ec6b054f107ba9a970d0ea9b357a4deed7bd', '31.222.203.2', 1678230166, '__ci_last_regenerate|i:1678230166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbda41765b880093bb837ab8105766b64244be2', '31.222.203.2', 1678230166, '__ci_last_regenerate|i:1678230166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29b48d745a6b338df779dcdae0a8b392cab36361', '31.222.203.2', 1678230166, '__ci_last_regenerate|i:1678230166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa3292f9fff7360983f178ec4e370041c5b7fbd7', '31.222.203.2', 1678230166, '__ci_last_regenerate|i:1678230166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95aa75262b10662f0c8c418bccf4d83aa8368417', '31.222.203.2', 1678230166, '__ci_last_regenerate|i:1678230166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44f4ab15c032eeebd62411beed41aba6ddcc333a', '31.222.203.2', 1678230166, '__ci_last_regenerate|i:1678230166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6a4ae219d88359a3761a4702464aebd61e38b5', '31.222.203.2', 1678231960, '__ci_last_regenerate|i:1678231960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('340c903857e54e8f25accda1395f44798ad55f6e', '31.222.203.2', 1678231960, '__ci_last_regenerate|i:1678231960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecbfa9437dd8c61faa0ae0e870417a055ad303b6', '31.222.203.2', 1678231960, '__ci_last_regenerate|i:1678231960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf55f3713df8201d4002d158679abb2212d8e90d', '31.222.203.2', 1678231960, '__ci_last_regenerate|i:1678231960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cfbc489b4a988131643d24fbd15a08fe719f217', '31.222.203.2', 1678231960, '__ci_last_regenerate|i:1678231960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24e79286d2e9257229eeb183167d8ed8019bc15', '31.222.203.2', 1678231960, '__ci_last_regenerate|i:1678231960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2a3b97608493a39a86c6aa2fd89f2efbc8870a', '31.222.203.2', 1678233765, '__ci_last_regenerate|i:1678233765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e09176320c09967fd5ee3cef0833800bfb63a0b', '31.222.203.2', 1678233765, '__ci_last_regenerate|i:1678233765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1796ad3814db9dec46fcdd52d1a1152b19c4f23d', '31.222.203.2', 1678233765, '__ci_last_regenerate|i:1678233765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f44a81a2b45d78ea1adb4afb7341345eb09915', '31.222.203.2', 1678233765, '__ci_last_regenerate|i:1678233765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ecd073ef8457538b3b7a1cc9cae67d9080ef56c', '31.222.203.2', 1678233765, '__ci_last_regenerate|i:1678233765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80e41434c2f747c3c4d14cec45030f07bf9580ed', '31.222.203.2', 1678233765, '__ci_last_regenerate|i:1678233765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b68c3916a5726220e5a1eccbbc552eb7a1e523', '198.235.24.186', 1678235010, '__ci_last_regenerate|i:1678235010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17aba4c84e094cfa500107553728cc07edb5db6c', '31.222.203.2', 1678235560, '__ci_last_regenerate|i:1678235560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4c29cd81a1ea8f23f9ffe80c63554312569160', '31.222.203.2', 1678235560, '__ci_last_regenerate|i:1678235560;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d5fcf8d95d1e412154fc059e98728ff8f3b409', '31.222.203.2', 1678235560, '__ci_last_regenerate|i:1678235560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10edaf787cb5e321722517caae593c1e54ac06a5', '31.222.203.2', 1678235562, '__ci_last_regenerate|i:1678235562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ce3abab1b82a3c9bce820dadd742fda7efdd8fa', '31.222.203.2', 1678235562, '__ci_last_regenerate|i:1678235562;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75da2c48b6b9ad1c5adf8ac9a9bc37e29a2ee782', '31.222.203.2', 1678235562, '__ci_last_regenerate|i:1678235562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10113e0062a0b701d21f56a208727f93f20dfaf5', '31.222.203.2', 1678237364, '__ci_last_regenerate|i:1678237364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4488edb5ef706a51ba9533ba0afdf686dde0d89', '31.222.203.2', 1678237364, '__ci_last_regenerate|i:1678237364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee99a72a6d46829229d2ac6b5c326a63378e86f7', '31.222.203.2', 1678237364, '__ci_last_regenerate|i:1678237364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('123f1c9df12aeb934511887a0ceec00831f7293d', '31.222.203.2', 1678237365, '__ci_last_regenerate|i:1678237365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990890957c145b28f50841e6689372bfda86a181', '31.222.203.2', 1678237365, '__ci_last_regenerate|i:1678237365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8f04ec2990f7d37d6a36675107a92dbe56e01a', '31.222.203.2', 1678237365, '__ci_last_regenerate|i:1678237365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a972f097b31edee73d28ea46ba6dd1d40c97bab3', '31.222.203.2', 1678239161, '__ci_last_regenerate|i:1678239161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0336718491c56c9b63897abc1c506e1cd08c5ef4', '31.222.203.2', 1678239161, '__ci_last_regenerate|i:1678239161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6f246c076509849990423ab2a504d50894ac0a', '31.222.203.2', 1678239162, '__ci_last_regenerate|i:1678239162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99c9cb0c087bdbf1feccceea68b00160fa308adc', '31.222.203.2', 1678239162, '__ci_last_regenerate|i:1678239162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4db288a5ba80bae513d396b1a41489c681f17b0', '31.222.203.2', 1678239162, '__ci_last_regenerate|i:1678239162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c465b2e66e884aa7c4f0a347326c61905967f18', '31.222.203.2', 1678239162, '__ci_last_regenerate|i:1678239162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b1ddcec7ec18a5463111fa68062097d83c8aa7e', '31.222.203.2', 1678240966, '__ci_last_regenerate|i:1678240966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af86a66698b1ab023333991605b26597dbc392f', '31.222.203.2', 1678240966, '__ci_last_regenerate|i:1678240966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ac24cdbcf4d46bc351d386dd234a607d6935fbf', '31.222.203.2', 1678240966, '__ci_last_regenerate|i:1678240966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f0996c2702795463970e7ec2ee5637b212cbb7c', '31.222.203.2', 1678240971, '__ci_last_regenerate|i:1678240971;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63ceff6477b2fdfb1508ea74f58b258fbec21b77', '31.222.203.2', 1678240971, '__ci_last_regenerate|i:1678240971;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db566ffb702e9ce50aa4b724401a6193e7d331c', '31.222.203.2', 1678240971, '__ci_last_regenerate|i:1678240971;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b08e3d3ef5eb857135b5ffb7c43a281658ce09d0', '31.222.203.2', 1678242779, '__ci_last_regenerate|i:1678242779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d518cc24b3466b20e85ac943406c3be3aed7e1df', '31.222.203.2', 1678242779, '__ci_last_regenerate|i:1678242779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec5fb65ae66585c5f964dc484d3080c996bc09e', '31.222.203.2', 1678242779, '__ci_last_regenerate|i:1678242779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('047c07972c14e59f8c8728cb48eb3d9d05a7b63f', '31.222.203.2', 1678242779, '__ci_last_regenerate|i:1678242779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec188b4866b8d6410fd29a37bbb85bd5efc91008', '31.222.203.2', 1678242779, '__ci_last_regenerate|i:1678242779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8027d3f4ac05afcff95d41cb36dd54eae0ae5d5e', '31.222.203.2', 1678242779, '__ci_last_regenerate|i:1678242779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5389f0ac11830b28b9bc3b4015cac258c0be4b0', '31.222.203.2', 1678244567, '__ci_last_regenerate|i:1678244567;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c475f2b3ff0d6369d6b2a4210223758ff54510fb', '31.222.203.2', 1678244567, '__ci_last_regenerate|i:1678244567;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b62f54e5b6958bd505340d2c08c06d705e58f15a', '31.222.203.2', 1678244567, '__ci_last_regenerate|i:1678244567;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370d74beadeeeca19f1663ea06216fc07f03d91b', '31.222.203.2', 1678244568, '__ci_last_regenerate|i:1678244568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03ef15995b08f03745cad5510a4e00ec028df93', '31.222.203.2', 1678244568, '__ci_last_regenerate|i:1678244568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c60bbce160b1ccb203f9be3fd429a32680cb3d27', '31.222.203.2', 1678244568, '__ci_last_regenerate|i:1678244568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec1e30214109edafbe5ed9ef30fa13bc9a693da', '31.222.203.2', 1678246356, '__ci_last_regenerate|i:1678246356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc734a7e7c8a6e11f91afb52f1ccd6b265c7c8be', '31.222.203.2', 1678246356, '__ci_last_regenerate|i:1678246356;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac13899dc1748a580a21f1a66bb4efe0c52d7d1', '31.222.203.2', 1678246356, '__ci_last_regenerate|i:1678246356;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34aa687318a4ac2723b1c1263bff1d5f04641f2f', '31.222.203.2', 1678246357, '__ci_last_regenerate|i:1678246357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcc54057de68950fa5713128a4adb7d0df9ac9cc', '31.222.203.2', 1678246357, '__ci_last_regenerate|i:1678246357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791a4f5eb90e3b0d0dc22aec68f07e50e01dbdfe', '31.222.203.2', 1678246357, '__ci_last_regenerate|i:1678246357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e88bfff6f9cbdc0e48b0cd2b850f990454cb54e8', '31.222.203.2', 1678248174, '__ci_last_regenerate|i:1678248174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98904573407dec2437c7443311710ffd5ddaad2e', '31.222.203.2', 1678248174, '__ci_last_regenerate|i:1678248174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('697892be9793f71f1d26cd50fbf15041f9bf038b', '31.222.203.2', 1678248174, '__ci_last_regenerate|i:1678248174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02beb3e08dd54ddc9b3d84b555eeb1e9f2c4d61c', '31.222.203.2', 1678248175, '__ci_last_regenerate|i:1678248175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81e1b77048538e354f7a3526f91ed4f58ae7613f', '31.222.203.2', 1678248175, '__ci_last_regenerate|i:1678248175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('924c7e631e8d4dce85a8ee3212b49456f171a823', '31.222.203.2', 1678248175, '__ci_last_regenerate|i:1678248175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7432e2fa7139713c96ae788f7e9dfe0e475f0927', '37.111.217.24', 1678254853, '__ci_last_regenerate|i:1678254853;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678179276\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678248607;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be6c07fb3f5e9c688da0b084f3c4de05e95f477c', '31.222.203.2', 1678249963, '__ci_last_regenerate|i:1678249962;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee8f0062913b1d938c5780f00cae1070c7bf7b6', '31.222.203.2', 1678249963, '__ci_last_regenerate|i:1678249963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04b8473f6d8fb3cffc93e499cd0bbbc2c5384b27', '31.222.203.2', 1678249963, '__ci_last_regenerate|i:1678249963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9cb803ff1ee72ba2557b52ea77936b43aca8f0e', '31.222.203.2', 1678249963, '__ci_last_regenerate|i:1678249963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accb5e73e031085e2d9e9990d772efedb51dee87', '31.222.203.2', 1678249963, '__ci_last_regenerate|i:1678249963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73551c59b2af44970b493eddf8ed28d7456c3e32', '31.222.203.2', 1678249963, '__ci_last_regenerate|i:1678249963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f5186543c8e9b8b8be0c29fe742a39c485d04bb', '31.222.203.2', 1678251784, '__ci_last_regenerate|i:1678251784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e467e9315d4ea29830a6e263d799e4e8137536', '31.222.203.2', 1678251784, '__ci_last_regenerate|i:1678251784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b421ea617534d50b04c6ed5a433a800aa3e8678', '31.222.203.2', 1678251784, '__ci_last_regenerate|i:1678251784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0abdfaaf38f0401401107392421fd45227fa4114', '31.222.203.2', 1678251784, '__ci_last_regenerate|i:1678251784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ee35b7214d9713d4a194af5fb2e185d761fdd15', '31.222.203.2', 1678251784, '__ci_last_regenerate|i:1678251784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ec41dc82e88a491b17bbd8ca8897cbaf5b999d', '31.222.203.2', 1678251784, '__ci_last_regenerate|i:1678251784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('976c76a555898945306410352dbc0d19a6f771d0', '31.222.203.2', 1678253568, '__ci_last_regenerate|i:1678253568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41f74df9e0c9e6a077837de1e7fded45a871616', '31.222.203.2', 1678253568, '__ci_last_regenerate|i:1678253568;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56bb31eb050a665c83206ac692b7c879c047903', '31.222.203.2', 1678253568, '__ci_last_regenerate|i:1678253568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0188bbd84f73b3a02ef268e33e41445a534b0dc', '31.222.203.2', 1678253569, '__ci_last_regenerate|i:1678253569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15801bd0558238e4c7a43596f060a0746eed706d', '31.222.203.2', 1678253569, '__ci_last_regenerate|i:1678253569;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae893c389d2e836f826e5bb7e3e014f56431b22', '31.222.203.2', 1678253569, '__ci_last_regenerate|i:1678253569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c8d9742085e41e8e872cff49422060d28f12653', '198.235.24.51', 1678253737, '__ci_last_regenerate|i:1678253737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b51016b24606e43f772cac75f458467d85609823', '37.111.217.24', 1678254866, '__ci_last_regenerate|i:1678254853;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678179276\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678254866;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49dccedb880cccaa8c0d8a166456690de24b9728', '31.222.203.2', 1678255374, '__ci_last_regenerate|i:1678255374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b7569e81f00c8f9f489582b7694c309e270af96', '31.222.203.2', 1678255374, '__ci_last_regenerate|i:1678255374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a51866e0afb7cf28a84a9694e365077343e40d7', '31.222.203.2', 1678255374, '__ci_last_regenerate|i:1678255374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('119356f43d82d18b87896053fa0662a21f653a54', '31.222.203.2', 1678255375, '__ci_last_regenerate|i:1678255375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31ee8bd9e94a1e7f5c44e1e9f5c253baf126d5bb', '31.222.203.2', 1678255375, '__ci_last_regenerate|i:1678255375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6a53e159427f8190701c1661a3e91b2453738b', '31.222.203.2', 1678255375, '__ci_last_regenerate|i:1678255375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b447dada42aa8f7696632cab6c39dcc1f4719b6', '116.204.230.28', 1678258133, '__ci_last_regenerate|i:1678258133;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678189240\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1678258126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a73fd4d0bd5ee3b1baca1f0167f505271e9f5f7', '31.222.203.2', 1678257174, '__ci_last_regenerate|i:1678257174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b09e6c1f1e8302a36db8bcd8f609dd37eb2b9e2', '31.222.203.2', 1678257174, '__ci_last_regenerate|i:1678257174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eb9a45e50c208653b51b5a402145ac23aa308c3', '31.222.203.2', 1678257174, '__ci_last_regenerate|i:1678257174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b84361c5abf05985f25c2633e851e25489f0bf97', '31.222.203.2', 1678257174, '__ci_last_regenerate|i:1678257174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f34bb64ce44f18904c2087cfbac4430f574287', '31.222.203.2', 1678257174, '__ci_last_regenerate|i:1678257174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994467d6ccfb02095887e06d29d196d1d41384f9', '31.222.203.2', 1678257174, '__ci_last_regenerate|i:1678257174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36ba0bea0265f1380277f23963171285726caab0', '116.204.230.28', 1678258243, '__ci_last_regenerate|i:1678258133;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678189240\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1678258126;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30078ef584d120c54aa18597fd65feaa20aece48', '31.222.203.2', 1678258976, '__ci_last_regenerate|i:1678258976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec9b210b404d5ffb35b7e48d2e8b6d2a51e1863', '31.222.203.2', 1678258976, '__ci_last_regenerate|i:1678258976;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd6fa1736d2edb65678f14ddfbe169e92c51c573', '31.222.203.2', 1678258976, '__ci_last_regenerate|i:1678258976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d05e950d191c0129460c2ff701969d9bbe6c76cb', '31.222.203.2', 1678258976, '__ci_last_regenerate|i:1678258976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a67173384b92e13be75e5ed0c42dae4364c5d65', '31.222.203.2', 1678258976, '__ci_last_regenerate|i:1678258976;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e0548d93e71d08f080bcbdb19a9b52b437845f', '31.222.203.2', 1678258976, '__ci_last_regenerate|i:1678258976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('258395800c85d096980d7b604c32c91e000fcf03', '31.222.203.2', 1678260768, '__ci_last_regenerate|i:1678260768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c3d601fc1fbbdad270325cd4207bfb66348b11', '31.222.203.2', 1678260768, '__ci_last_regenerate|i:1678260768;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('991f526dbfabdee8ebbaf2831002e08a03fd7a4a', '31.222.203.2', 1678260768, '__ci_last_regenerate|i:1678260768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55e460bffc03adf7dda1263ed3db55cad2e3717', '31.222.203.2', 1678260768, '__ci_last_regenerate|i:1678260768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('587131adabb26aa64912259646ec9fb88bb89649', '31.222.203.2', 1678260768, '__ci_last_regenerate|i:1678260768;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ce797baffc16333d4e264a7b2aa27518f5a1941', '31.222.203.2', 1678260768, '__ci_last_regenerate|i:1678260768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e33bc1f438942ca36d95c59876c94611fe07339', '31.222.203.2', 1678262570, '__ci_last_regenerate|i:1678262570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a04c275030522a75bb75ea19850723f1aa43827', '31.222.203.2', 1678262570, '__ci_last_regenerate|i:1678262570;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8092c05d91b2514950cefa6600315dabbf979944', '31.222.203.2', 1678262570, '__ci_last_regenerate|i:1678262570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11f23c4d48b945d9062b5914e6ff505974823878', '31.222.203.2', 1678262570, '__ci_last_regenerate|i:1678262570;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2298cb071c257fe3cbe2849c79055bad24b5edf', '31.222.203.2', 1678262570, '__ci_last_regenerate|i:1678262570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76987f25147abee77efe716af4f08f67c1d23e81', '31.222.203.2', 1678262570, '__ci_last_regenerate|i:1678262570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537129647570275d9fb2bb7820a3ddc74a4f6021', '31.222.203.2', 1678264369, '__ci_last_regenerate|i:1678264369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409d1f04e7ab5eed2e448745f5b93985de7e8cbd', '31.222.203.2', 1678264370, '__ci_last_regenerate|i:1678264370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e08c19a3ae95e7e3356a87b1d3ff46e938e0217a', '31.222.203.2', 1678264370, '__ci_last_regenerate|i:1678264370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6762d6e9c11bac0789b1d7f8516d4303eec82dc', '31.222.203.2', 1678264370, '__ci_last_regenerate|i:1678264370;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c8339876a3ccbd4ecdfc9b8658a1108294c1baa', '31.222.203.2', 1678264370, '__ci_last_regenerate|i:1678264370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f93f1b068cd2b67ebbf551f10531842cf9a17af', '31.222.203.2', 1678264370, '__ci_last_regenerate|i:1678264370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bb75d301e41c5301b64fcc252817a5cb3015668', '31.222.203.2', 1678266169, '__ci_last_regenerate|i:1678266169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc9cf831cd28835cbe678a529e54c5e9abb65cf6', '31.222.203.2', 1678266170, '__ci_last_regenerate|i:1678266170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8866886059ca24f45191aade60d5be987c7486bd', '31.222.203.2', 1678266170, '__ci_last_regenerate|i:1678266170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792a7e36f1d686fe82f5218fe1a6d606ddbd01d2', '31.222.203.2', 1678266170, '__ci_last_regenerate|i:1678266170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('661179d7cd4926b14c530e793f25350ab39bb547', '31.222.203.2', 1678266170, '__ci_last_regenerate|i:1678266170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ac08116db68912fbcac0ebe0c1b04e70377d2b', '31.222.203.2', 1678266170, '__ci_last_regenerate|i:1678266170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42964f558ae28d0fb15e02cefe0abc64e2258922', '31.222.203.2', 1678267955, '__ci_last_regenerate|i:1678267955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f2fc081ce32aa57c827057b60f57c1d63c8a0d', '31.222.203.2', 1678267955, '__ci_last_regenerate|i:1678267955;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702315a807a3425255d3a49aaf5bc2371359ea4e', '31.222.203.2', 1678267955, '__ci_last_regenerate|i:1678267955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7c6cf8b8073b2cef08991efba025e7e8cc78ea', '31.222.203.2', 1678267956, '__ci_last_regenerate|i:1678267956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e2a18b09fd4f0f481920a885b5521b6ab732c25', '31.222.203.2', 1678267956, '__ci_last_regenerate|i:1678267956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2bb928038028bd5d749045f9c68b1bb625249f', '31.222.203.2', 1678267956, '__ci_last_regenerate|i:1678267956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('877a814547b68c6cd9701dcb74284941e99f418c', '31.222.203.2', 1678269771, '__ci_last_regenerate|i:1678269771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4e0a7059c40f6fce101e4906e94c6141bb2d8b4', '31.222.203.2', 1678269771, '__ci_last_regenerate|i:1678269771;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9666ce18ef0f369be1b2985a7359f64990326bdc', '31.222.203.2', 1678269771, '__ci_last_regenerate|i:1678269771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91c25bdca17f41d515bfd4f971abaf38b1f64eb', '31.222.203.2', 1678269772, '__ci_last_regenerate|i:1678269772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6da397686a93cc409c334c4b57e0fbe46f72a5e', '31.222.203.2', 1678269772, '__ci_last_regenerate|i:1678269772;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4255a7129db70186bf3e666a3a872a8ad7abeb1', '31.222.203.2', 1678269772, '__ci_last_regenerate|i:1678269772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d298b947219aaa2bfb409508bf4a9e4ea0a98c67', '37.111.217.24', 1678272658, '__ci_last_regenerate|i:1678272658;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678248584\";last_ip|s:13:\"37.111.217.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678272647;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2125891c600d85a6e1b616f8847cd78c81933e39', '31.222.203.2', 1678271555, '__ci_last_regenerate|i:1678271555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a906c1e5e9843ee991bcd236a34b403e2244d14', '31.222.203.2', 1678271555, '__ci_last_regenerate|i:1678271555;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65d80c4b900ed4de6fc3e171a18251fd586baf01', '31.222.203.2', 1678271555, '__ci_last_regenerate|i:1678271555;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c56dccb9aa03ad74cf1f5d2c1c4c3f8afce3e3a7', '31.222.203.2', 1678271556, '__ci_last_regenerate|i:1678271556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6301f5a7b6c811493a295eb6ee69395a49215460', '31.222.203.2', 1678271556, '__ci_last_regenerate|i:1678271556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('691459831772bf3edba923c6de803319d4d49ab7', '31.222.203.2', 1678271556, '__ci_last_regenerate|i:1678271556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('196b12e07cf60bb5c3f3ed5c246a1261f431a396', '37.111.217.24', 1678272658, '__ci_last_regenerate|i:1678272658;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678248584\";last_ip|s:13:\"37.111.217.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678272658;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a1953762a4910f2bea3c32fb84c9851cb462be9', '31.222.203.2', 1678273366, '__ci_last_regenerate|i:1678273366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350908f8d6c3231354dfab3c30635298a34dff3f', '31.222.203.2', 1678273366, '__ci_last_regenerate|i:1678273366;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8c234de6612df7ad4a9ab4d1bc063c54aa1e54', '31.222.203.2', 1678273366, '__ci_last_regenerate|i:1678273366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27042cd37dabd8aa21b35297a907a81407ab160f', '31.222.203.2', 1678273366, '__ci_last_regenerate|i:1678273366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed0168a746547f6ee33dd664bd58dadc0207f36', '31.222.203.2', 1678273366, '__ci_last_regenerate|i:1678273366;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d791d07f963826b79d28d8435f3e24139b8eab3b', '31.222.203.2', 1678273366, '__ci_last_regenerate|i:1678273366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a4877e707efc7725f32aa3b6e476920cd88458f', '31.222.203.2', 1678275165, '__ci_last_regenerate|i:1678275165;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b7da6e7f84ca629eae3a88199f80b979542c10', '31.222.203.2', 1678275165, '__ci_last_regenerate|i:1678275165;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('215e0544d718a7cc5c4560c9e93aca941cae9103', '31.222.203.2', 1678275165, '__ci_last_regenerate|i:1678275165;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e14cffcf890e8eb42b85970d394f739cd486c423', '31.222.203.2', 1678275166, '__ci_last_regenerate|i:1678275166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27117cddbb187f8d15454534f1626bba8de8ce6d', '31.222.203.2', 1678275166, '__ci_last_regenerate|i:1678275166;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505c364f37c666b54026b676103f38b98513bb33', '31.222.203.2', 1678275166, '__ci_last_regenerate|i:1678275166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cc3e12b6fdd02541d985771d0fbec1eee924b5', '31.222.203.2', 1678276965, '__ci_last_regenerate|i:1678276965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae1845b07e03a86c51570afa2997e1fdbd0912d2', '31.222.203.2', 1678276965, '__ci_last_regenerate|i:1678276965;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0af5ea0e070fbdcecc840c322b898659d7bb1f', '31.222.203.2', 1678276965, '__ci_last_regenerate|i:1678276965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4c2f181c6ba48373e243debaf6b87aca2cfecb', '31.222.203.2', 1678276966, '__ci_last_regenerate|i:1678276966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39110fdb82dc254529e1295fe3cf0f469eafd28f', '31.222.203.2', 1678276966, '__ci_last_regenerate|i:1678276966;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0466ed00d15941a60d95c881d57952682c7f4bac', '31.222.203.2', 1678276966, '__ci_last_regenerate|i:1678276966;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78de012fe6ced963f6d5ef293d4e0893355d533d', '31.222.203.2', 1678278759, '__ci_last_regenerate|i:1678278759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c6b5ae56bf0659333cef1e9c71462ccf9bc087', '31.222.203.2', 1678278759, '__ci_last_regenerate|i:1678278759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca8b5abbd1c9d7d1613b8ca02a9d9e1e2dcb740', '31.222.203.2', 1678278759, '__ci_last_regenerate|i:1678278759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47dc9c40c583b7f2e7026a47cda1804f3412cde2', '31.222.203.2', 1678278759, '__ci_last_regenerate|i:1678278759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54379864605fb2837fb2a3d2fe4c6f3ff054a84d', '31.222.203.2', 1678278760, '__ci_last_regenerate|i:1678278760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa42cddc3842509060895ef922fb27ac0b8a7a8d', '31.222.203.2', 1678278760, '__ci_last_regenerate|i:1678278760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8365516cb60f756c151ceb6e048d9ddfe2f4474a', '31.222.203.2', 1678280565, '__ci_last_regenerate|i:1678280565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848a2f39817fb811dd065610b6c4e6224e002743', '31.222.203.2', 1678280565, '__ci_last_regenerate|i:1678280565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1e37f752090735c2f5d050717e008e0a043b3b', '31.222.203.2', 1678280565, '__ci_last_regenerate|i:1678280565;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('220a3a9feca4b2ff19c8a513e3772716883111f6', '31.222.203.2', 1678280565, '__ci_last_regenerate|i:1678280565;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b2e8ad36bcb389e1dfa61b47723cbcb6ae32cfa', '31.222.203.2', 1678280565, '__ci_last_regenerate|i:1678280565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8708e995a594a2b6f777c39b1672b3779c41c01', '31.222.203.2', 1678280565, '__ci_last_regenerate|i:1678280565;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c92952064632d817fc4e2e65986c0709bd30607', '31.222.203.2', 1678282362, '__ci_last_regenerate|i:1678282362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f3050f65f4f57f053babd6c2acad19217b070e', '31.222.203.2', 1678282366, '__ci_last_regenerate|i:1678282366;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3069acff45758c735dca75ef1f1a7262c70e2c96', '31.222.203.2', 1678282366, '__ci_last_regenerate|i:1678282366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b7e9844abe3fb0aa6bd589c1a9d4f4ae46ab7ba', '31.222.203.2', 1678282366, '__ci_last_regenerate|i:1678282366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('913e1f167f59cf2c50cb67ee409518b5d5c0e6e5', '31.222.203.2', 1678282366, '__ci_last_regenerate|i:1678282366;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460680b7ded69af0488c843b504c7856c1787f00', '31.222.203.2', 1678282366, '__ci_last_regenerate|i:1678282366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cbf29a950ef829c426d90a100c11a64641210c', '37.111.217.24', 1678283586, '__ci_last_regenerate|i:1678283586;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678270970\";last_ip|s:13:\"37.111.217.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678283575;register_id|s:3:\"363\";cash_in_hand|s:8:\"690.0000\";register_open_time|s:19:\"2023-03-07 20:00:14\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d22e3603f987be1702048d20b0c6761c73e64d', '37.111.217.24', 1678283613, '__ci_last_regenerate|i:1678283586;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678270970\";last_ip|s:13:\"37.111.217.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678283612;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d4e42c4a32eff321b3d9c58f32b38e0b0b6492', '31.222.203.2', 1678284174, '__ci_last_regenerate|i:1678284174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d2be762881cd113fe7f52fbf5c3c5d6a765ed0e', '31.222.203.2', 1678284174, '__ci_last_regenerate|i:1678284174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f736c6dbed9c2389edd4b202f09f9981eb737a7', '31.222.203.2', 1678284174, '__ci_last_regenerate|i:1678284174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a59b7418d519f0a2b67faf5d9338aae8f52add3', '31.222.203.2', 1678284174, '__ci_last_regenerate|i:1678284174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b94d8fa6482555474d2bf54ae759822765ff4bc', '31.222.203.2', 1678284174, '__ci_last_regenerate|i:1678284174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95311cbc13cfc4dc6f287accaae1ca9e4102cf7f', '31.222.203.2', 1678284174, '__ci_last_regenerate|i:1678284174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e56fd15fa723d58f1b4d3541607e35edcc4360a7', '31.222.203.2', 1678285973, '__ci_last_regenerate|i:1678285973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4842f0937d6041ea3344609cea2a3ee142d7e865', '31.222.203.2', 1678285974, '__ci_last_regenerate|i:1678285974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4339949f292c712d2f474d7dc4eb6b338ed68744', '31.222.203.2', 1678285974, '__ci_last_regenerate|i:1678285974;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb43133b6fe6569973d143a58ae65b8c08c0ed06', '31.222.203.2', 1678285974, '__ci_last_regenerate|i:1678285974;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67518adf1906edd70ef88681b67018b27716969a', '31.222.203.2', 1678285974, '__ci_last_regenerate|i:1678285974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc0f72abcd56eadd8e66e7f4462d82c45941fef', '31.222.203.2', 1678285974, '__ci_last_regenerate|i:1678285974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6a7a1c88b205ed64dcfadf9f08fe04527170fe5', '31.222.203.2', 1678287794, '__ci_last_regenerate|i:1678287794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9181475e5104cbb0694966751056092874cf0e72', '31.222.203.2', 1678287794, '__ci_last_regenerate|i:1678287794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c83178f10229e021a9c8473c218ec64c895e53', '31.222.203.2', 1678287794, '__ci_last_regenerate|i:1678287794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741713566145f854e1e7774a69a76956340f6485', '31.222.203.2', 1678287794, '__ci_last_regenerate|i:1678287794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ed574697d48f3f00972feadeba9f5912e7b5b4d', '31.222.203.2', 1678287794, '__ci_last_regenerate|i:1678287794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94c1f1f85c1f33f413cb5bd96a2bebaeff1efe21', '31.222.203.2', 1678287794, '__ci_last_regenerate|i:1678287794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3622040a2e88509a2527820e2c726b06ab72a4', '31.222.203.2', 1678289568, '__ci_last_regenerate|i:1678289568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b83d6247f94cc5c614b1de9864f7182848ab1c0', '31.222.203.2', 1678289569, '__ci_last_regenerate|i:1678289569;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102e625f4d12da9495a13b9ab1afff5f81524459', '31.222.203.2', 1678289569, '__ci_last_regenerate|i:1678289569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ac23d1bcd9ba146c67d5b3ac5b95821bdaffc7', '31.222.203.2', 1678289569, '__ci_last_regenerate|i:1678289569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b63d05ee9cdc41ac8cfae83d6c8ec2477af73bcb', '31.222.203.2', 1678289569, '__ci_last_regenerate|i:1678289569;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdc8792da71307bf70968ad922771556f4968f0b', '31.222.203.2', 1678289569, '__ci_last_regenerate|i:1678289569;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4640c07e9a9352f0e489265cff0921429baddd45', '31.222.203.2', 1678291371, '__ci_last_regenerate|i:1678291371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17bd73be74f4d109820a1225edcbc2207166b28', '31.222.203.2', 1678291371, '__ci_last_regenerate|i:1678291371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9460cf725ef7c25ff66312fa7b4b0640b06a71de', '31.222.203.2', 1678291371, '__ci_last_regenerate|i:1678291371;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5ea7b148697ce5cd4bcb847837f43f29420523', '31.222.203.2', 1678291371, '__ci_last_regenerate|i:1678291371;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3bf00497fa025fcaea3620c2495318e57f0ce25', '31.222.203.2', 1678291371, '__ci_last_regenerate|i:1678291371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25bb1c04880fcb0b2127a71c27f6afa79d63bc2c', '31.222.203.2', 1678291371, '__ci_last_regenerate|i:1678291371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4165a1ffbcbdf4b0718024262a6721c9331567e', '31.222.203.2', 1678293231, '__ci_last_regenerate|i:1678293231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cdb9e8cd0cd14b2484bf6fb509e93fe0dfcb5d0', '31.222.203.2', 1678293231, '__ci_last_regenerate|i:1678293231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('815da3979149910cfe281046bb7e9c775a92df62', '31.222.203.2', 1678293231, '__ci_last_regenerate|i:1678293231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21fc92ea94abc50a7442d45aa7e5ebeec959d7ba', '31.222.203.2', 1678293235, '__ci_last_regenerate|i:1678293235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25a59a673266ca0a399f62b2c1a49d08b125a6b', '31.222.203.2', 1678293235, '__ci_last_regenerate|i:1678293235;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a88a1cf862b391f7503b64af9f60e8630b4254e', '31.222.203.2', 1678293235, '__ci_last_regenerate|i:1678293235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692ac5092582baad60ac948f93e07bd82216b16f', '31.222.203.2', 1678295047, '__ci_last_regenerate|i:1678295047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('240d9ab37c03b2c34780def296f69231fa8d7129', '31.222.203.2', 1678295047, '__ci_last_regenerate|i:1678295047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('909fe7da205b093eb509589364a70df51509cd30', '31.222.203.2', 1678295047, '__ci_last_regenerate|i:1678295047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90e114a83c9cdd7e983e1a59b2e26dcee40aa7d5', '31.222.203.2', 1678295047, '__ci_last_regenerate|i:1678295047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a940ca7ea0bd68879869c33cc845097c08c20114', '31.222.203.2', 1678295047, '__ci_last_regenerate|i:1678295047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37a4ae19a8e2031540fb30541ed6c14b0955407', '31.222.203.2', 1678295047, '__ci_last_regenerate|i:1678295047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91aefe0d5655bd29a75d33b80222a12fc16b1696', '31.222.203.2', 1678296837, '__ci_last_regenerate|i:1678296837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b368c0f1bcbadd52904ce860e359227c1cbb55e7', '31.222.203.2', 1678296837, '__ci_last_regenerate|i:1678296837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8941a886ba53ad3cce435040be45d04f9156f85b', '31.222.203.2', 1678296837, '__ci_last_regenerate|i:1678296837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1c16a1d8a124fa6e5b9e8176b35a14d4da9e202', '31.222.203.2', 1678296837, '__ci_last_regenerate|i:1678296837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d68f74bdafdc4b6e856c3dbf81f589288dc16f7', '31.222.203.2', 1678296837, '__ci_last_regenerate|i:1678296837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74745feff1e2c13d1cca6689e14a7e37f89c7189', '31.222.203.2', 1678296837, '__ci_last_regenerate|i:1678296837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb001c8b74f47026572e89d0c1c7bb6492ced13', '31.222.203.2', 1678298649, '__ci_last_regenerate|i:1678298649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d102eb0b2f7bc4b41d61f574a47218251c3f2e9c', '31.222.203.2', 1678298649, '__ci_last_regenerate|i:1678298649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76d5c8a2b45de9b90fdb5ad0d4df83dd2c7eefef', '31.222.203.2', 1678298649, '__ci_last_regenerate|i:1678298649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96575e85b786ed0edfa592b280f6fa8068bbb0a1', '31.222.203.2', 1678298649, '__ci_last_regenerate|i:1678298649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543b9d005b0b6579a0c4dfebf9c61a8d19145c11', '31.222.203.2', 1678298649, '__ci_last_regenerate|i:1678298649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b27cf841a57dc8fcfaa780991c8a8596cb281ee', '31.222.203.2', 1678298649, '__ci_last_regenerate|i:1678298649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a42cb7d9969b14a4fe8380fb130eb6ab33a176d', '31.222.203.2', 1678300420, '__ci_last_regenerate|i:1678300420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b01eea5cc726d36942fbd0231c85468fcbfea149', '31.222.203.2', 1678300420, '__ci_last_regenerate|i:1678300420;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df0a46efe8f80761ae9573cfc89a3ee53f9187c1', '31.222.203.2', 1678300420, '__ci_last_regenerate|i:1678300420;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828a7e6d705c8e06205d0a728f8b631282969716', '31.222.203.2', 1678300421, '__ci_last_regenerate|i:1678300421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('689052f768114c9b776c174f694914fcc6661dd4', '31.222.203.2', 1678300421, '__ci_last_regenerate|i:1678300421;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c82593c7976199c0f8e3389cb184ec32f38e5d', '31.222.203.2', 1678300421, '__ci_last_regenerate|i:1678300421;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c034f5dc0f8b6638d352c1c9226af17cd8442f4', '31.222.203.2', 1678302254, '__ci_last_regenerate|i:1678302254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d52a5371b71beab31b535c659dc1042f61633546', '31.222.203.2', 1678302254, '__ci_last_regenerate|i:1678302254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3876211373bbb3024e91628610d616a95a0faf5', '31.222.203.2', 1678302254, '__ci_last_regenerate|i:1678302254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3def970e2b9c24c6fd8797cb9ab9682f445e528', '31.222.203.2', 1678302254, '__ci_last_regenerate|i:1678302254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a9bca4b2b7351ff8992988415de0016d4e389c', '31.222.203.2', 1678302254, '__ci_last_regenerate|i:1678302254;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9400d849cd4e70793a263a5c12c5d20da03c2e11', '31.222.203.2', 1678302254, '__ci_last_regenerate|i:1678302254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1773825198e823838d6335bdad65f1d953eadc2', '31.222.203.2', 1678304031, '__ci_last_regenerate|i:1678304031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ed85c68de643aee96e6e7ccd3288ac547cc03f1', '31.222.203.2', 1678304031, '__ci_last_regenerate|i:1678304031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd22c9baf6f8de4b9952e26046fa11ad6df834de', '31.222.203.2', 1678304031, '__ci_last_regenerate|i:1678304031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27b54ed0c53ac122c30e76a18d1446d9c3b977b5', '31.222.203.2', 1678304031, '__ci_last_regenerate|i:1678304031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f995a7fb34d8cb19da9c8e9a882224f7a04df180', '31.222.203.2', 1678304031, '__ci_last_regenerate|i:1678304031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb5f6e6c3aecabf399d9ed114ae4d032c307040', '31.222.203.2', 1678304031, '__ci_last_regenerate|i:1678304031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d223e3590a0f025e0cbb408236c90e0e4abe970', '31.222.203.2', 1678305837, '__ci_last_regenerate|i:1678305837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16092779399764b0c6a225aa6c08b8b5f59fe3b6', '31.222.203.2', 1678305837, '__ci_last_regenerate|i:1678305837;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328f6514e5d12fc8d75332538a4e75b927491cd0', '31.222.203.2', 1678305837, '__ci_last_regenerate|i:1678305837;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca0f13069bba66af34c613633d4567f93c997dd', '31.222.203.2', 1678305838, '__ci_last_regenerate|i:1678305838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a00c63f247f9e80c161bd1d664c586f725058976', '31.222.203.2', 1678305838, '__ci_last_regenerate|i:1678305838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533ca0dcb3957671d3bc079a71b56bbd00f8ecf4', '31.222.203.2', 1678305838, '__ci_last_regenerate|i:1678305838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dec7e2883af2b3140a958539f86a34695b07911', '31.222.203.2', 1678307633, '__ci_last_regenerate|i:1678307633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32fb66830955ce8326095f51e00c3417fa118d2f', '31.222.203.2', 1678307634, '__ci_last_regenerate|i:1678307634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1922c93fbdad99711c884cfbd3e0d681dcbc6403', '31.222.203.2', 1678307634, '__ci_last_regenerate|i:1678307634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43f8da373d19fe55bbb676c33208df09fcbad100', '31.222.203.2', 1678307634, '__ci_last_regenerate|i:1678307634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a28568228e478685682f0f3336f4c597c90233', '31.222.203.2', 1678307634, '__ci_last_regenerate|i:1678307634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f461796c7e08bce2efce154f2f9d6793e43f14', '31.222.203.2', 1678307634, '__ci_last_regenerate|i:1678307634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d23bdafa7c622220b84c666be85e9d22763cdb', '31.222.203.2', 1678309445, '__ci_last_regenerate|i:1678309445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab6ae8541736892fafa293db543531ac9b2c71e', '31.222.203.2', 1678309445, '__ci_last_regenerate|i:1678309445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b04984a2609b119b5e721208c06fe2f354c3b31', '31.222.203.2', 1678309445, '__ci_last_regenerate|i:1678309445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4b2c7a48802ec3fe532e16c47185c31449ae46c', '31.222.203.2', 1678309446, '__ci_last_regenerate|i:1678309446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58bd2fb4b6c3a8b7e6917c23c8afe28ea24b2b9', '31.222.203.2', 1678309446, '__ci_last_regenerate|i:1678309446;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b2fed2c8a2defe00f12793a3f114fd78984e68e', '31.222.203.2', 1678309446, '__ci_last_regenerate|i:1678309446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8105da4194a2cd89fc2bc73bc980330042f49735', '31.222.203.2', 1678311234, '__ci_last_regenerate|i:1678311234;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f214d3f4507ee4dc552041ea7c8db585b9e479b8', '31.222.203.2', 1678311234, '__ci_last_regenerate|i:1678311234;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c12ef16d06cb27eb5d774cf81f47deb8b5bd1d', '31.222.203.2', 1678311234, '__ci_last_regenerate|i:1678311234;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('597c65bac213477a53b849407bbf6a39f78d73a7', '31.222.203.2', 1678311235, '__ci_last_regenerate|i:1678311235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab268d9e82d9dbc5c59230674d4a0789759455dd', '31.222.203.2', 1678311235, '__ci_last_regenerate|i:1678311235;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('756644ff235d7a670a74496f7f5f3d6f399faadd', '31.222.203.2', 1678311235, '__ci_last_regenerate|i:1678311235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b26bf23c7b3aa31b1bf025210708e42b60248089', '31.222.203.2', 1678313043, '__ci_last_regenerate|i:1678313043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9605659958899ac476d77ac21f70088c104a2fa', '31.222.203.2', 1678313044, '__ci_last_regenerate|i:1678313044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('901f52cf81779a98c494e29fe36671b4973c5052', '31.222.203.2', 1678313044, '__ci_last_regenerate|i:1678313044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d771a4a5c2ab6a9919c4ec0d7b50a9dedb0ba0', '31.222.203.2', 1678313044, '__ci_last_regenerate|i:1678313044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('243d33bc246fa582c70c6df4c1c569d023c00e4f', '31.222.203.2', 1678313044, '__ci_last_regenerate|i:1678313044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca4fc75e1d968f463e7df4f18d0099ff9d76a6b6', '31.222.203.2', 1678313044, '__ci_last_regenerate|i:1678313044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a11383757b29c488bc53bc1a6fa9b26a362364', '31.222.203.2', 1678314844, '__ci_last_regenerate|i:1678314844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413e85cb2f233b21897071bf77198541e859a488', '31.222.203.2', 1678314844, '__ci_last_regenerate|i:1678314844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4c00a6eaa213cba82a56e836914700c0b8c0021', '31.222.203.2', 1678314844, '__ci_last_regenerate|i:1678314844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15039539381f886821a19731fcbb84de84a02458', '31.222.203.2', 1678314844, '__ci_last_regenerate|i:1678314844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091c506acbd47285c0fa51dfe5aec1810bd2a74c', '31.222.203.2', 1678314844, '__ci_last_regenerate|i:1678314844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db1e5327576aa11accf74354c904ff957c182c6a', '31.222.203.2', 1678314844, '__ci_last_regenerate|i:1678314844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4070bb19763b6baee8bf8f35fde6cd1c5bc13e', '31.222.203.2', 1678316604, '__ci_last_regenerate|i:1678316604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d68ac9835eb974ba38ef5a68310a6e9225846402', '31.222.203.2', 1678316604, '__ci_last_regenerate|i:1678316604;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb612044dc5f844ad5ba9806daffc3a758f8d01e', '31.222.203.2', 1678316604, '__ci_last_regenerate|i:1678316604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18eac64330e4a5594432f5554c265ff40bab7f43', '31.222.203.2', 1678316605, '__ci_last_regenerate|i:1678316605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c239a46bd0dc99409e7e3c7558a8014dac9b187c', '31.222.203.2', 1678316605, '__ci_last_regenerate|i:1678316605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd753fa1679201c48ac401e1b48a265d9950cc0', '31.222.203.2', 1678316605, '__ci_last_regenerate|i:1678316605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61fd806cb48ea5c405383c373367765e4f5d3773', '31.222.203.2', 1678318409, '__ci_last_regenerate|i:1678318409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7cad837e916fc26328ad0a4ddd3d2a48919dc75', '31.222.203.2', 1678318409, '__ci_last_regenerate|i:1678318409;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50f38963b253797225a1e865278b926d23242a1b', '31.222.203.2', 1678318409, '__ci_last_regenerate|i:1678318409;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f28f34c394b3b720aa73b5961cce7f19d3644587', '31.222.203.2', 1678318414, '__ci_last_regenerate|i:1678318414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c14a3aa413d77fac80312a4beb3495cf9a719b19', '31.222.203.2', 1678318414, '__ci_last_regenerate|i:1678318414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c6b3e84d9f64fb2b604bbccaee000e4f4314f43', '31.222.203.2', 1678318414, '__ci_last_regenerate|i:1678318414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf4e15fbd385014c7edf0148b8e18e2b79f20f4', '31.222.203.2', 1678320237, '__ci_last_regenerate|i:1678320237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0434f68d4813209c735a76894b18bda553f8067', '31.222.203.2', 1678320237, '__ci_last_regenerate|i:1678320237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cff70cf8820bf0b7b7274ab831b50fa59b3e2a9', '31.222.203.2', 1678320237, '__ci_last_regenerate|i:1678320237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da20ff54e1f23f8d12b01a804ebb835ee590d51', '31.222.203.2', 1678320238, '__ci_last_regenerate|i:1678320238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18396dd11ba731ba65a95aff24b808c103cff69e', '31.222.203.2', 1678320238, '__ci_last_regenerate|i:1678320238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d40f6929fc21a90b99e15438cd554b7ca255cbd6', '31.222.203.2', 1678320238, '__ci_last_regenerate|i:1678320238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7124cf7020a6cae059372ef7ba04848ca722c27', '31.222.203.2', 1678322035, '__ci_last_regenerate|i:1678322035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bb0aa9213ac6ab01314c3cfcee0b0d82812a97', '31.222.203.2', 1678322035, '__ci_last_regenerate|i:1678322035;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd6ed0cd625fa78fa2bfa250e11c88503cba9e5', '31.222.203.2', 1678322035, '__ci_last_regenerate|i:1678322035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23920d2d449beefbe91188f5cc06a2ef7faa0008', '31.222.203.2', 1678322035, '__ci_last_regenerate|i:1678322035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28221ca1d957f5c9c367e893e002a1c29bac5d1a', '31.222.203.2', 1678322035, '__ci_last_regenerate|i:1678322035;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84abc600fcb3afdbb016ae6507b81b8146c1d2c4', '31.222.203.2', 1678322035, '__ci_last_regenerate|i:1678322035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e98ec6cfd718408293a0838e6a8cc7e75ff3665', '31.222.203.2', 1678323840, '__ci_last_regenerate|i:1678323840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef62dec3ac9ac8b88125aa4fc2d7e766b351748', '31.222.203.2', 1678323840, '__ci_last_regenerate|i:1678323840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc9120fc453d13d1fa9d8b357350f987c588ee5', '31.222.203.2', 1678323840, '__ci_last_regenerate|i:1678323840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7df1c854e1b330c151b68e7d894f2d745f9781', '31.222.203.2', 1678323841, '__ci_last_regenerate|i:1678323841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3068fba93d8b1acfa27cdb7bcccee950081ce851', '31.222.203.2', 1678323841, '__ci_last_regenerate|i:1678323841;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4643ec1da640c30db0535da67084a0ea686d206', '31.222.203.2', 1678323841, '__ci_last_regenerate|i:1678323841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4032f21930b23c2dd0d7a74a2e5d951bfe070744', '31.222.203.2', 1678325633, '__ci_last_regenerate|i:1678325633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9df1cd2069958c077ed1c463f7280d363aab5c7d', '31.222.203.2', 1678325633, '__ci_last_regenerate|i:1678325633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4aceaa1077651e26727d0e58cad7bc19d550093', '31.222.203.2', 1678325633, '__ci_last_regenerate|i:1678325633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1566ee8a4bc21bdab4c084c768fa8c892a420781', '31.222.203.2', 1678325634, '__ci_last_regenerate|i:1678325634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1188b322dfdbf11cb0f91e2156f1998b6a162b7', '31.222.203.2', 1678325634, '__ci_last_regenerate|i:1678325634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6439b61531de2c62a317720bd2f928dd20fdef', '31.222.203.2', 1678325634, '__ci_last_regenerate|i:1678325634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bc2104c1ea2d3f7cb26f5dceaec5fa46baa7fda', '31.222.203.2', 1678327439, '__ci_last_regenerate|i:1678327439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d64db10dac68393b7ee464303f9f5d14000a250', '31.222.203.2', 1678327439, '__ci_last_regenerate|i:1678327439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2cecbbb06f58092f2ce0ef5bf562b5d75bb19ed', '31.222.203.2', 1678327440, '__ci_last_regenerate|i:1678327440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09c34be1a358673f21d12d569160c0393ce9539d', '31.222.203.2', 1678327440, '__ci_last_regenerate|i:1678327440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e262e8bf879c6c8054534bce72bb440fdec8c73a', '31.222.203.2', 1678327440, '__ci_last_regenerate|i:1678327440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b6ce51becda2e7395426f9f5df0dcc11a64eee8', '31.222.203.2', 1678327440, '__ci_last_regenerate|i:1678327440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a042f0ca181ba8169bdb870e3fa39c48bd2bb982', '31.222.203.2', 1678329234, '__ci_last_regenerate|i:1678329234;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ae71574acfc5db1e235624649d12317ab5ec620', '31.222.203.2', 1678329234, '__ci_last_regenerate|i:1678329234;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89559481fc421edeef2bf8fd5852bc54bb883c23', '31.222.203.2', 1678329234, '__ci_last_regenerate|i:1678329234;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ea2fdedaaa240a3951c886f1e8675db9b442388', '31.222.203.2', 1678329235, '__ci_last_regenerate|i:1678329235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452b6ff73a8fb273e74707d040db16014ba0fae0', '31.222.203.2', 1678329235, '__ci_last_regenerate|i:1678329235;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fecbfbf6e2ad7da35439453de0508bfd28ff3558', '31.222.203.2', 1678329235, '__ci_last_regenerate|i:1678329235;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a5b8a8ccfc000e2fb726c6e7e1003ed4a1ecc5', '31.222.203.2', 1678331034, '__ci_last_regenerate|i:1678331034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f0ef7a32974f73e0e0320e14d348525a4cd1cd', '31.222.203.2', 1678331034, '__ci_last_regenerate|i:1678331034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5077417dd3406831f73414e18db24db12a4b4ea0', '31.222.203.2', 1678331034, '__ci_last_regenerate|i:1678331034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c688950ad9fa347acd88326e0151e44fbfc92868', '31.222.203.2', 1678331034, '__ci_last_regenerate|i:1678331034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d7abbf718456b28fc417cfe08c6749ea011ad63', '31.222.203.2', 1678331034, '__ci_last_regenerate|i:1678331034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e83e84b750662eec201c748cf39aff71e2b9b9f9', '31.222.203.2', 1678331034, '__ci_last_regenerate|i:1678331034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be619be341ee2dac783d5e4dd0a069922c771c07', '31.222.203.2', 1678332823, '__ci_last_regenerate|i:1678332823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052897daa710cc1cfa5bb69f9734052910f7add8', '31.222.203.2', 1678332823, '__ci_last_regenerate|i:1678332823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('172705d80bcc741b2f8e0df9e52c7602ccb8ffd6', '31.222.203.2', 1678332823, '__ci_last_regenerate|i:1678332823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8cb715e7d1425161ecd9a17cf13c4f6ba8de8ed', '31.222.203.2', 1678332823, '__ci_last_regenerate|i:1678332823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b89046945c802c14b360f14f8a86a2e4ea203311', '31.222.203.2', 1678332823, '__ci_last_regenerate|i:1678332823;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae54e8f5ea6a6128bdb3e78dd3f761325f58b4e', '31.222.203.2', 1678332823, '__ci_last_regenerate|i:1678332823;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d559348c67c36ca12e3723a0762b5c8af4c4581', '31.222.203.2', 1678334671, '__ci_last_regenerate|i:1678334671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e8f84257b62d4c105a793ab6c4c49d373f2282e', '31.222.203.2', 1678334672, '__ci_last_regenerate|i:1678334672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce10d6eccd740fdc808b8c05f83d64f47ea1d6a1', '31.222.203.2', 1678334672, '__ci_last_regenerate|i:1678334672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8996debd6401ab1926862ecc5b2df39c55056895', '31.222.203.2', 1678334679, '__ci_last_regenerate|i:1678334679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b3385a3d75525d71704596f607911a1c6875c7', '31.222.203.2', 1678334679, '__ci_last_regenerate|i:1678334679;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a2febabf9be67610ed18825a31ffd931dfebb8c', '31.222.203.2', 1678334679, '__ci_last_regenerate|i:1678334679;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aad7792a16b70246d077f8855765fff525b37136', '31.222.203.2', 1678336435, '__ci_last_regenerate|i:1678336435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a1e7815ec2ebe9615cf9c30a0d3292f7961b845', '31.222.203.2', 1678336436, '__ci_last_regenerate|i:1678336436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd9e7857b36dbf16661aa79fe2c82409f37eee9', '31.222.203.2', 1678336436, '__ci_last_regenerate|i:1678336436;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141cf7d6965ca12c4013c4a961b22050506adc3d', '31.222.203.2', 1678336436, '__ci_last_regenerate|i:1678336436;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d0d66d20227531f24878ac178c0a1f2ce0fb62', '31.222.203.2', 1678336436, '__ci_last_regenerate|i:1678336436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beaf8f5dce4490d446afd43a64a056451d9ceb40', '31.222.203.2', 1678336436, '__ci_last_regenerate|i:1678336436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc74915bc5fc3dadccb3ec670d3ea7286d280b8', '37.111.218.68', 1678342628, '__ci_last_regenerate|i:1678342628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678282394\";last_ip|s:13:\"37.111.217.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678338291;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8732e12d70741ba09145a352c471a696758cc6', '31.222.203.2', 1678338239, '__ci_last_regenerate|i:1678338239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e521f6a59f7d49f2fa37a98179428610d926ff7a', '31.222.203.2', 1678338239, '__ci_last_regenerate|i:1678338239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd539bd96097474a3fa50fda6aebf957049208c0', '31.222.203.2', 1678338239, '__ci_last_regenerate|i:1678338239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('319848e8e2f3fc131f392581d000fecd92e1704f', '31.222.203.2', 1678338239, '__ci_last_regenerate|i:1678338239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80a2c9d8ae420f4f7d8d3fbcbdb6405b1e24ef66', '31.222.203.2', 1678338239, '__ci_last_regenerate|i:1678338239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd53f26f5c4cf05360f7ae94500e5b98ccf83834', '31.222.203.2', 1678338239, '__ci_last_regenerate|i:1678338239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58378471c77fab2ef6a6841ea5d6c2c6835d776', '31.222.203.2', 1678340035, '__ci_last_regenerate|i:1678340035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2927cc5499b47ac2aa2de095208df7b58f13cad', '31.222.203.2', 1678340035, '__ci_last_regenerate|i:1678340035;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bfb193c0c56b95de854ebab6ea4529ea3a076b3', '31.222.203.2', 1678340035, '__ci_last_regenerate|i:1678340035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc2d77bb6ad88dd96a5541c4e292e23bd05685f9', '31.222.203.2', 1678340036, '__ci_last_regenerate|i:1678340036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3107a9f2fc38eeebdfab5e54a90109cadd50083f', '31.222.203.2', 1678340036, '__ci_last_regenerate|i:1678340036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c825cf8414c8826f8dc43daca046ac065218738', '31.222.203.2', 1678340036, '__ci_last_regenerate|i:1678340036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('825371d8c3ff6819e475a410b58ce08d48541703', '31.222.203.2', 1678341845, '__ci_last_regenerate|i:1678341845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19438031e493fe5b8e7b340f68a94cac020b61aa', '31.222.203.2', 1678341845, '__ci_last_regenerate|i:1678341845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09363d9f1d255303ab8f32cf76c4c5d933ce4dd5', '31.222.203.2', 1678341845, '__ci_last_regenerate|i:1678341845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b52bde5dec24e0421a9e2dc7bc8cb542725a045', '31.222.203.2', 1678341845, '__ci_last_regenerate|i:1678341845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54ca8bf505173395897e49b67b206315462ab9b6', '31.222.203.2', 1678341845, '__ci_last_regenerate|i:1678341845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('010e784843c85b2890f2d869f5a3aacb8b42b53c', '31.222.203.2', 1678341845, '__ci_last_regenerate|i:1678341845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('290c5baefd3e6e55a0337e0ea98af6fc121ea4d0', '37.111.218.68', 1678342655, '__ci_last_regenerate|i:1678342628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678282394\";last_ip|s:13:\"37.111.217.24\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678342655;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e65d4837ea81c76d39131a62790bae421344f3de', '31.222.203.2', 1678343631, '__ci_last_regenerate|i:1678343631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da207d047818f53cabb9d7152f17f99ac884ab9', '31.222.203.2', 1678343631, '__ci_last_regenerate|i:1678343631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec0cd162cee6c7c7e97954f2ad6ad8adf953b83', '31.222.203.2', 1678343631, '__ci_last_regenerate|i:1678343631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f4f5cf49d8f1525b8f46c8bb95399305a68876c', '31.222.203.2', 1678343631, '__ci_last_regenerate|i:1678343631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef09deeaaab243158728ff076810651ff47f4720', '31.222.203.2', 1678343631, '__ci_last_regenerate|i:1678343631;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5dc1594f13c7ebb6a12757954ed9a0aa933178', '31.222.203.2', 1678343631, '__ci_last_regenerate|i:1678343631;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53b7b4b491d6965f91e69c2a6565decd12dc1889', '31.222.203.2', 1678345439, '__ci_last_regenerate|i:1678345439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab2dab614949479b2e877de5b2d63677d765c81', '31.222.203.2', 1678345439, '__ci_last_regenerate|i:1678345439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01f9c5fb013727cde9d13c5feb9a08728e6accd0', '31.222.203.2', 1678345439, '__ci_last_regenerate|i:1678345439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822ddf5b81014f0dd09b07d38457286bb24ee9f5', '31.222.203.2', 1678345440, '__ci_last_regenerate|i:1678345440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f806b9115ead0c62083eed4bf6a61ec55d291280', '31.222.203.2', 1678345440, '__ci_last_regenerate|i:1678345440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d3def1f0ddd786d371a195c77e4ba96c8be93a', '31.222.203.2', 1678345440, '__ci_last_regenerate|i:1678345440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa6682833fb6bca8c8c745eca29c98d72580c1d3', '31.222.203.2', 1678347208, '__ci_last_regenerate|i:1678347208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4c1c8872b49151224d30eba8973e84809017194', '31.222.203.2', 1678347208, '__ci_last_regenerate|i:1678347208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d9e244a37e88cf9706a5a4cd041fd2c5f3935c2', '31.222.203.2', 1678347208, '__ci_last_regenerate|i:1678347208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a33d20e273cfa1326657b21c2f45d819e919ffde', '31.222.203.2', 1678347208, '__ci_last_regenerate|i:1678347208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d17403c976ca3c6b14a58e5e79141bb4f4940f6', '31.222.203.2', 1678347208, '__ci_last_regenerate|i:1678347208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eea6bd52c6d8e5d9013f7f71ff54551477b4a69', '31.222.203.2', 1678347208, '__ci_last_regenerate|i:1678347208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d287e0fc92f386de50fe5ad4bdfdf136f929b90', '31.222.203.2', 1678349038, '__ci_last_regenerate|i:1678349038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76c4f80d0eb24a76f498bf2a3aeb356ecd13c4f', '31.222.203.2', 1678349038, '__ci_last_regenerate|i:1678349038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6cd02784c06e61c02a45b0dbe70d7792957fd794', '31.222.203.2', 1678349038, '__ci_last_regenerate|i:1678349038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64fd4256f6e936df0ebeb2487d51a086a80a8240', '31.222.203.2', 1678349038, '__ci_last_regenerate|i:1678349038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f423e3aeac0024c02f247a933c0d774d070d5c', '31.222.203.2', 1678349038, '__ci_last_regenerate|i:1678349038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8764e3505072e322641b97d22501c24d71109af5', '31.222.203.2', 1678349038, '__ci_last_regenerate|i:1678349038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44145ce678df9c02d278265f6f97122cefe0d643', '31.222.203.2', 1678350843, '__ci_last_regenerate|i:1678350843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fdaba94da99bc5e3dc56dd2b70350126460349b', '31.222.203.2', 1678350843, '__ci_last_regenerate|i:1678350843;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a83ca075c53168bac18aed576ee1471dfad20e8', '31.222.203.2', 1678350843, '__ci_last_regenerate|i:1678350843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc0bb74b472dd4151bef24803067872f8ed5d1e', '31.222.203.2', 1678350843, '__ci_last_regenerate|i:1678350843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c1b6af5a80c49487a49f5a7ecad90c54c51ef1', '31.222.203.2', 1678350843, '__ci_last_regenerate|i:1678350843;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec389e59b88f694166856083d1e2d664126141b', '31.222.203.2', 1678350843, '__ci_last_regenerate|i:1678350843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a287773867397f3b9f0c8479f845a4c648cc8add', '31.222.203.2', 1678352641, '__ci_last_regenerate|i:1678352641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ca52ae97bcbe075abbda4e6cecd0a1c5cd977a', '31.222.203.2', 1678352641, '__ci_last_regenerate|i:1678352641;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7cb4f4ffcbb7d034176ffbcbc6a969892bfb1b0', '31.222.203.2', 1678352641, '__ci_last_regenerate|i:1678352641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac420aa66452ee289949ef2d252df70cc8f65ead', '31.222.203.2', 1678352642, '__ci_last_regenerate|i:1678352642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e803dace9a6b8dc97341ba1fa87ce046b1a8ddb9', '31.222.203.2', 1678352642, '__ci_last_regenerate|i:1678352642;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd9cc53454aac58b97ba9f4bb5edbd27d1e23184', '31.222.203.2', 1678352642, '__ci_last_regenerate|i:1678352642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('350fc727997895917e820d9c8d26fe9538b43b3a', '31.222.203.2', 1678354433, '__ci_last_regenerate|i:1678354433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6704693bb2f862a04f02b15ee52707d239c915f7', '31.222.203.2', 1678354433, '__ci_last_regenerate|i:1678354433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ede6ebfc0657ae4027f6935794f6c26bfadccc9', '31.222.203.2', 1678354433, '__ci_last_regenerate|i:1678354433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45bde7caccdc8473c60a705f1efb029f6868b254', '31.222.203.2', 1678354433, '__ci_last_regenerate|i:1678354433;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('985cb441e44b83493b194fe9b28e5ed316a06355', '31.222.203.2', 1678354433, '__ci_last_regenerate|i:1678354433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebe51034cfc0ff639f150353093337b01aec49f8', '31.222.203.2', 1678354433, '__ci_last_regenerate|i:1678354433;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ead9335544e1d9f5c6d185b64aa5d9ff4f1817d', '37.111.218.68', 1678360210, '__ci_last_regenerate|i:1678360210;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678338244\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678360181;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3add195deb4e3af9ed12103f30dadf86dc41837', '31.222.203.2', 1678356217, '__ci_last_regenerate|i:1678356217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76290337c1dc5f9d8fcf454dac139022166b49aa', '31.222.203.2', 1678356217, '__ci_last_regenerate|i:1678356217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf4abf905150f5f70589345987594d603e814352', '31.222.203.2', 1678356217, '__ci_last_regenerate|i:1678356217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e71201b159c9aff7d1cd4b5d6e7cd7bb031a4f93', '31.222.203.2', 1678356217, '__ci_last_regenerate|i:1678356217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80aca0fc8aed0a6690311390ef4e4c2bcf85dfd', '31.222.203.2', 1678356217, '__ci_last_regenerate|i:1678356217;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a66c273bd4db7e4d4a70be409beec1f9f155197', '31.222.203.2', 1678356217, '__ci_last_regenerate|i:1678356217;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8001f49f0b247907c6a4973b0ae058f30ea92e8', '31.222.203.2', 1678358032, '__ci_last_regenerate|i:1678358032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6864a1e6d650094d9c22155342814e72f4d95e94', '31.222.203.2', 1678358032, '__ci_last_regenerate|i:1678358032;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f326ba57ce6315873a3d3e7a1cfd0de7a8ef8557', '31.222.203.2', 1678358032, '__ci_last_regenerate|i:1678358032;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec77909d992c1e0a2c187ef353db27c84290105e', '31.222.203.2', 1678358033, '__ci_last_regenerate|i:1678358033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ec4edbf8c30409f2c211e3cc83ebae450b74c8d', '31.222.203.2', 1678358033, '__ci_last_regenerate|i:1678358033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354095d481a1e6ab3afdf9fa7ce6f05af480542d', '31.222.203.2', 1678358033, '__ci_last_regenerate|i:1678358033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdc802d9ee11a2cb8a32da439ff6c6f04c6dda9c', '31.222.203.2', 1678359840, '__ci_last_regenerate|i:1678359840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bd959aede33c920b282c09eefdb63b35d3a474b', '31.222.203.2', 1678359840, '__ci_last_regenerate|i:1678359840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e398ec93b1968357fff8fcc23bb227ec0f4b187e', '31.222.203.2', 1678359841, '__ci_last_regenerate|i:1678359841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db67f27bfe9417f0317eaed0a2789c8af6234a44', '31.222.203.2', 1678359841, '__ci_last_regenerate|i:1678359841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1efc47dc380647fdd7b48fdeaea75a56ba4574b2', '31.222.203.2', 1678359841, '__ci_last_regenerate|i:1678359841;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d05ffa46a141b23211605e7f807208b20d47829f', '31.222.203.2', 1678359841, '__ci_last_regenerate|i:1678359841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fe29e1631f898ccc93a77593c7c83dec66bf5e9', '37.111.218.68', 1678364205, '__ci_last_regenerate|i:1678364205;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678338244\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678360210;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43013de1fee7c71c1b72b87dafdd97bb0d7ab965', '31.222.203.2', 1678361642, '__ci_last_regenerate|i:1678361642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('710a652c5bc8242cca00c4ee2ba160ea02c16cd9', '31.222.203.2', 1678361642, '__ci_last_regenerate|i:1678361642;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee5d42c5060e4f225e37d8557a9a4a4a9164ba91', '31.222.203.2', 1678361642, '__ci_last_regenerate|i:1678361642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e3eab058375b5f43d8553699f4c2078103885fe', '31.222.203.2', 1678361643, '__ci_last_regenerate|i:1678361643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa9933fca90c430dfb39cf76cf3378ba33badb19', '31.222.203.2', 1678361643, '__ci_last_regenerate|i:1678361643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2677a494b71bdfcf976e423b8f4454852af39db1', '31.222.203.2', 1678361643, '__ci_last_regenerate|i:1678361643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1322a21f243320e69d797933415d993bffa831ba', '31.222.203.2', 1678363436, '__ci_last_regenerate|i:1678363436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed909696877d8ada5236625f60354f1c30f4f70', '31.222.203.2', 1678363436, '__ci_last_regenerate|i:1678363436;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf9517f1ba6dede87bf8f6f149a6996d5f12ec0f', '31.222.203.2', 1678363436, '__ci_last_regenerate|i:1678363436;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8773f62708806b7351c3f7ebc201baaa039726d9', '31.222.203.2', 1678363437, '__ci_last_regenerate|i:1678363437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5beffc2f584373d1e346bdc2ca70d81b8fa37b', '31.222.203.2', 1678363437, '__ci_last_regenerate|i:1678363437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a7bad30ce39895d1a07142c8538cdf3533edc5f', '31.222.203.2', 1678363437, '__ci_last_regenerate|i:1678363437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b880b1025d4e24561d40ad145febfe15b0339f', '37.111.218.68', 1678367326, '__ci_last_regenerate|i:1678367326;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678338244\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678364224;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f5b0cf8afc84083d8ef4ada54d9ebe20401aec', '31.222.203.2', 1678365233, '__ci_last_regenerate|i:1678365233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e92435e057b6e45788311231a9515b7e7e53ee86', '31.222.203.2', 1678365233, '__ci_last_regenerate|i:1678365233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8cbdaebd2ca8bc5a32284ed8d5a71c747c7e98', '31.222.203.2', 1678365233, '__ci_last_regenerate|i:1678365233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe3434ea3abef9a570382899235503dac63b41bd', '31.222.203.2', 1678365233, '__ci_last_regenerate|i:1678365233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70fbfacc5e39ec328b11303cdb8ddcfbff457e1', '31.222.203.2', 1678365233, '__ci_last_regenerate|i:1678365233;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd2bd1ef7ac95d29a9aa97a1d8bec8c338db10c7', '31.222.203.2', 1678365233, '__ci_last_regenerate|i:1678365233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb4d70e107a17db89a8722f91ec785a45bf33157', '31.222.203.2', 1678367039, '__ci_last_regenerate|i:1678367039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523c5f41c3060095680dbb49d4a42318fb9d9811', '31.222.203.2', 1678367040, '__ci_last_regenerate|i:1678367040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc54c8ba28f57a44f76e5d9b51dc9dd6bf1464ab', '31.222.203.2', 1678367040, '__ci_last_regenerate|i:1678367040;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60d870d29f7248d735d35b7bb68baf3183fbe85', '31.222.203.2', 1678367040, '__ci_last_regenerate|i:1678367040;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e69457965f3794463cf5bfe1dc100e84a93db5', '31.222.203.2', 1678367040, '__ci_last_regenerate|i:1678367040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af7002b5ec6258e1b8ec6fb2ce2074d9a47506a3', '31.222.203.2', 1678367040, '__ci_last_regenerate|i:1678367040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96bdba5d0f3dcf74457328dceb9036c2556ae33', '37.111.218.68', 1678371585, '__ci_last_regenerate|i:1678371585;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678338244\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678367405;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5013287e46c361c7e029532f44f9c6f0e9df1c9f', '31.222.203.2', 1678368843, '__ci_last_regenerate|i:1678368843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ccfa43cb73dcb832fac9dcd54afcdbb68b26d64', '31.222.203.2', 1678368848, '__ci_last_regenerate|i:1678368848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db4965c6e2aa24e95012ab1b051e275ad816160a', '31.222.203.2', 1678368848, '__ci_last_regenerate|i:1678368848;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9c0dc35e06e0e922f2e1dac94001c7a03e8844', '31.222.203.2', 1678368848, '__ci_last_regenerate|i:1678368848;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f427b0c8c404b0d0f2e075582dfcfb4cefe6d6f7', '31.222.203.2', 1678368848, '__ci_last_regenerate|i:1678368848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d756daec611da02a0b19f378200cd0f8c8aef9', '31.222.203.2', 1678368848, '__ci_last_regenerate|i:1678368848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354558c7cd8cb7baaddd5d56f077af87f7595db1', '31.222.203.2', 1678370664, '__ci_last_regenerate|i:1678370664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064734b382634f05938130eb0b1612e8ad938d7e', '31.222.203.2', 1678370665, '__ci_last_regenerate|i:1678370665;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18faa7757c986fd10bf65f1a1ff5ea1acab941c', '31.222.203.2', 1678370665, '__ci_last_regenerate|i:1678370665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5134434575a353cca5afa1a7e5a1b037c03524a', '31.222.203.2', 1678370665, '__ci_last_regenerate|i:1678370665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3674d81739760257fd1f94c83cfdc89cf0324fd9', '31.222.203.2', 1678370665, '__ci_last_regenerate|i:1678370665;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aae62229945cdf807fc9fb8ef961b447d1d9f51', '31.222.203.2', 1678370665, '__ci_last_regenerate|i:1678370665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c23f744fbd1597ed9fb06252be474232169d614', '37.111.218.68', 1678372015, '__ci_last_regenerate|i:1678372015;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678338244\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678372008;register_id|s:3:\"364\";cash_in_hand|s:8:\"600.0000\";register_open_time|s:19:\"2023-03-08 19:53:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cbaa662a1374c5080c2b67d86cace9f40c9f6c7', '37.111.218.68', 1678372037, '__ci_last_regenerate|i:1678372015;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678338244\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678372037;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2555904ac2d6c7db55e451d7dbf54a34cb0bc1f', '31.222.203.2', 1678372457, '__ci_last_regenerate|i:1678372457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52fdf00961c13b7fa89f3f1e8b92c71b289c38b8', '31.222.203.2', 1678372457, '__ci_last_regenerate|i:1678372457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9b3289ca5d354412a9e864f94bb6940899e4c53', '31.222.203.2', 1678372457, '__ci_last_regenerate|i:1678372457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ccbec040e4eaaa6860c5de0bd3d67111361e3a6', '31.222.203.2', 1678372457, '__ci_last_regenerate|i:1678372457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50042e9f9cddc0b18d498276ee31a2c62c5a6744', '31.222.203.2', 1678372457, '__ci_last_regenerate|i:1678372457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3eaaa82ab2f94422e430a335f4932d7ae637c9', '31.222.203.2', 1678372457, '__ci_last_regenerate|i:1678372457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db710d93a4f86c140a0ec67826e6f50e43589b20', '31.222.203.2', 1678374243, '__ci_last_regenerate|i:1678374243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a38a6e072c58483c66f609ba32403fa85e0acdf6', '31.222.203.2', 1678374244, '__ci_last_regenerate|i:1678374244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74326b3bdb578b8d207f080d250db31bd811628d', '31.222.203.2', 1678374244, '__ci_last_regenerate|i:1678374244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbfce6b7a99b7eb0ffc2a6357dc831d17c6dc1e', '31.222.203.2', 1678374244, '__ci_last_regenerate|i:1678374244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fef70e6da627cb40e2d05064274fd5ef1a7635b', '31.222.203.2', 1678374244, '__ci_last_regenerate|i:1678374244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21e4ae6bc194b315b3baf76c450995e00ca0c14b', '31.222.203.2', 1678374244, '__ci_last_regenerate|i:1678374244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('981fe23e142f9debeecb619a935d9058d467d597', '31.222.203.2', 1678376046, '__ci_last_regenerate|i:1678376046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f6f43ee6621e3aa9cf7a6366ab8bf19ca6f2e1', '31.222.203.2', 1678376046, '__ci_last_regenerate|i:1678376046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('821a24a92f7c824e10b87a1b4bbb8a4a6d85e188', '31.222.203.2', 1678376046, '__ci_last_regenerate|i:1678376046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('078e23a81bc06795b3f56af9d3d3d6861e1bc814', '31.222.203.2', 1678376046, '__ci_last_regenerate|i:1678376046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2413969f3c0f68cbcc2a9e13732e5f426c4e9dc4', '31.222.203.2', 1678376046, '__ci_last_regenerate|i:1678376046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2bb576c57f8aa9ac30bbf5beafeb526bede129', '31.222.203.2', 1678376046, '__ci_last_regenerate|i:1678376046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b340d08bb60f03f57e4addd3a564b5601aa05fd0', '183.136.225.44', 1678377835, '__ci_last_regenerate|i:1678377835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd572bb408ac85250d5a76866de431de165a7ce8', '183.136.225.44', 1678377842, '__ci_last_regenerate|i:1678377842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82233da014f3ea5e1a0e00a78e1e6b90048acbc', '31.222.203.2', 1678377877, '__ci_last_regenerate|i:1678377877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f26f076eab9751d98aeef79b9865dfcd375cefd', '31.222.203.2', 1678377877, '__ci_last_regenerate|i:1678377877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('728569e6327f99b0a8b8499151b9932e2b753af4', '31.222.203.2', 1678377877, '__ci_last_regenerate|i:1678377877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c617fcc4b578526403133eb0f0aab31ba7edccd6', '31.222.203.2', 1678377877, '__ci_last_regenerate|i:1678377877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29abcd57d7b8e8a52cdf8a3ca13de535cb80fd7d', '31.222.203.2', 1678377877, '__ci_last_regenerate|i:1678377877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84f5a4b84043c484cf551630b524490c5f7dd0ff', '31.222.203.2', 1678377877, '__ci_last_regenerate|i:1678377877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733d15f2586401d5f72b59b509796ab79bea0be8', '183.136.225.44', 1678377878, '__ci_last_regenerate|i:1678377878;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d023d0820206e62478e1a0eef686cd1f4662a4c0', '183.136.225.44', 1678377880, '__ci_last_regenerate|i:1678377880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0686664d791d5f2fc401ef0b7f90e422c46bb9', '183.136.225.44', 1678377882, '__ci_last_regenerate|i:1678377882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf9f6e97eac5d202edb9299e35465c497c316b31', '183.136.225.44', 1678377885, '__ci_last_regenerate|i:1678377885;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361887512b5fb5977c53383b2659da6eca171db9', '183.136.225.44', 1678377886, '__ci_last_regenerate|i:1678377886;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6db2ad93326ade12c525252bb3f2088b50278ce', '183.136.225.44', 1678377886, '__ci_last_regenerate|i:1678377886;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c132f6c0b5438f44ea7dde2ec93ea11cc7badd75', '183.136.225.44', 1678377887, '__ci_last_regenerate|i:1678377887;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('758fe7571c5e5c2b568652bfa2ee2c7c76fe1253', '183.136.225.44', 1678377887, '__ci_last_regenerate|i:1678377887;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a37327786fc27ed78102f385ae683b4087e00c0d', '183.136.225.44', 1678377888, '__ci_last_regenerate|i:1678377888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41dc418580755a936bf226b7f3df1a97f7c87970', '183.136.225.44', 1678377890, '__ci_last_regenerate|i:1678377890;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2fff598e8908c972357eea535fe5d0db39bf7be', '183.136.225.44', 1678377890, '__ci_last_regenerate|i:1678377890;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38e1ac0352b94778f4d0214eba52c2f2c91c652', '183.136.225.44', 1678377891, '__ci_last_regenerate|i:1678377891;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfcea743c27d9bfe03209fc96fc880368e2dcf41', '31.222.203.2', 1678379622, '__ci_last_regenerate|i:1678379622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de7d6e5ca2936dad6210c0fdd52f22f2d719e3c4', '31.222.203.2', 1678379622, '__ci_last_regenerate|i:1678379622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80282a0baa7c97090880a52d3dcc0c30a03ccc7b', '31.222.203.2', 1678379622, '__ci_last_regenerate|i:1678379622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1153d96a6edb2893393c74b5f754f2571e256c88', '31.222.203.2', 1678379622, '__ci_last_regenerate|i:1678379622;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e21e11ebf4749fc72fab7a882ad53cd6d739d00d', '31.222.203.2', 1678379622, '__ci_last_regenerate|i:1678379622;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5fb9dbada87cb4097fce1002b6d837065ba281a', '31.222.203.2', 1678379623, '__ci_last_regenerate|i:1678379623;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d33372d1451d49c5b6ddc7358ed12e00622a706', '31.222.203.2', 1678381437, '__ci_last_regenerate|i:1678381437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('077037b233c8b00436bb66922de6aa7ea7fc2762', '31.222.203.2', 1678381437, '__ci_last_regenerate|i:1678381437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f385d863a62eb4ceb93313efbccf0e518a8b8a30', '31.222.203.2', 1678381437, '__ci_last_regenerate|i:1678381437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('823059c3279453c403dc37543e26311eb09a8050', '31.222.203.2', 1678381437, '__ci_last_regenerate|i:1678381437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa5371466af79bba5ce396c7990ce3c27c347844', '31.222.203.2', 1678381437, '__ci_last_regenerate|i:1678381437;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2abbb4af20b9c211a0855a8c3fe21e90dc478350', '31.222.203.2', 1678381437, '__ci_last_regenerate|i:1678381437;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f92068a7226127adc21976474893af6ad380eea', '31.222.203.2', 1678383256, '__ci_last_regenerate|i:1678383256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f9fcf3ca8c59c3a5c9dcd815183238a57fc5b7', '31.222.203.2', 1678383256, '__ci_last_regenerate|i:1678383256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe84bed21ea6884c8160301c8a7ebdf5bf7a0f69', '31.222.203.2', 1678383256, '__ci_last_regenerate|i:1678383256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b52da1efb32f68ff9326635c741da0f6a94bffcb', '31.222.203.2', 1678383256, '__ci_last_regenerate|i:1678383256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53dfda0a43df37c62d7f6b9936fe9af7b67ae49e', '31.222.203.2', 1678383256, '__ci_last_regenerate|i:1678383256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ffa4e97704cb20f0158e7a33455146b0aefdc6', '31.222.203.2', 1678383256, '__ci_last_regenerate|i:1678383256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('656a067b1f3d4993ae4afc02ec1e266a5889dc12', '31.222.203.2', 1678385051, '__ci_last_regenerate|i:1678385051;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7cdc6fe0d00050db826fb830f75ece437556ccc', '31.222.203.2', 1678385056, '__ci_last_regenerate|i:1678385056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12c29c676676c6ebdffec979ccbb3441cc1cfcb', '31.222.203.2', 1678385056, '__ci_last_regenerate|i:1678385056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640dc4357c0ff5d907fc9236989e4841e57ce298', '31.222.203.2', 1678385056, '__ci_last_regenerate|i:1678385056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d24e541a8eca491fc707f583e916efdb89b4225', '31.222.203.2', 1678385056, '__ci_last_regenerate|i:1678385056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e11e5abf96db38ae8c37aea59c8bb08df06177', '31.222.203.2', 1678385056, '__ci_last_regenerate|i:1678385056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d838a051349bf4b3ff84327451061894c9394d51', '31.222.203.2', 1678386856, '__ci_last_regenerate|i:1678386856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd88a0523510f62b85f3a6cff4f4809a581c9291', '31.222.203.2', 1678386856, '__ci_last_regenerate|i:1678386856;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1be0bdfbe26aec959caf78b8f7708a20e273b44c', '31.222.203.2', 1678386856, '__ci_last_regenerate|i:1678386856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('430e3c4001852381513e138e9c7421851338b7ce', '31.222.203.2', 1678386857, '__ci_last_regenerate|i:1678386857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7506417ce6128acb9c83f7f19840700d9fb71253', '31.222.203.2', 1678386857, '__ci_last_regenerate|i:1678386857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe287e5a6cc52148f017de3521e384623606473', '31.222.203.2', 1678386857, '__ci_last_regenerate|i:1678386857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('927791f2fe9c6c5fc7525bbfaf131fb9119c470a', '31.222.203.2', 1678388648, '__ci_last_regenerate|i:1678388648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbac658aafdfc5a4e1ead9172b07fcf2d2f365a9', '31.222.203.2', 1678388648, '__ci_last_regenerate|i:1678388648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0f77550ec892b36298cedafca8ed873c3365e15', '31.222.203.2', 1678388648, '__ci_last_regenerate|i:1678388648;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5402609a8e1e5be9c46d082c6fe78dcee7e9171', '31.222.203.2', 1678388648, '__ci_last_regenerate|i:1678388648;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6e6952a295bd60922a4bcb7bfa23249588fff58', '31.222.203.2', 1678388648, '__ci_last_regenerate|i:1678388648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a275b0c341ca981b066d3d7c5f41a1752c8f2e8', '31.222.203.2', 1678388648, '__ci_last_regenerate|i:1678388648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b335f7815d1b0c8a5ebfadd657e2739b8fae58d', '31.222.203.2', 1678390459, '__ci_last_regenerate|i:1678390459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b02510bf7b67de74eca446b3ae522d80d09f068', '31.222.203.2', 1678390459, '__ci_last_regenerate|i:1678390459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af63d8c8fa259950340d3b06c4f76f82ed57535', '31.222.203.2', 1678390459, '__ci_last_regenerate|i:1678390459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c279d8bd1a7646821b8277bb53edc543204b524', '31.222.203.2', 1678390459, '__ci_last_regenerate|i:1678390459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a791fb0c16d34a6d53ed1545572bfb89d48df9a0', '31.222.203.2', 1678390459, '__ci_last_regenerate|i:1678390459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('699a1cc0fff2307a5493868f92fdd614120d5cf9', '31.222.203.2', 1678390459, '__ci_last_regenerate|i:1678390459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27d272d5fb1a4e4204c6c20ee7c86321c7882fbf', '31.222.203.2', 1678392273, '__ci_last_regenerate|i:1678392273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72695be3db92a2a87dd44b55528dcedac4450c2f', '31.222.203.2', 1678392273, '__ci_last_regenerate|i:1678392273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ad221cd0bc2d2fca0dd33cf6c64f346136d9e62', '31.222.203.2', 1678392273, '__ci_last_regenerate|i:1678392273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6706fd69e7a2d4c7e7755551566021bd51bc057c', '31.222.203.2', 1678392274, '__ci_last_regenerate|i:1678392274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c20777258644f8977618d460eb5cd8d81049a55', '31.222.203.2', 1678392274, '__ci_last_regenerate|i:1678392274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('414c47f2eb6b5a8e4ce9010285063fc894139ae0', '31.222.203.2', 1678392274, '__ci_last_regenerate|i:1678392274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea57cb38af19659b9648160f6f6fe2d752b941a6', '31.222.203.2', 1678394041, '__ci_last_regenerate|i:1678394041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38d172d12148ce28f2b96a62b6e626687aec2f62', '31.222.203.2', 1678394041, '__ci_last_regenerate|i:1678394041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d96a53151681c6cbacf1202b74b5eaec2fd43d1c', '31.222.203.2', 1678394041, '__ci_last_regenerate|i:1678394041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a7713b6472a250d07aafce1655bc87dcab0dac', '31.222.203.2', 1678394041, '__ci_last_regenerate|i:1678394041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71224c22c50e91a2a420f7db105b4f7884224442', '31.222.203.2', 1678394041, '__ci_last_regenerate|i:1678394041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('486efb972651d426150062e9684f4861d3034bc1', '31.222.203.2', 1678394041, '__ci_last_regenerate|i:1678394041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42a2c75afec9ef7355bed73dc428fe3458458a2b', '31.222.203.2', 1678395852, '__ci_last_regenerate|i:1678395852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1deed3fd8c38df0da80ca3dacb7fcfe7b857798a', '31.222.203.2', 1678395852, '__ci_last_regenerate|i:1678395852;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ea5854482a7a47880b8002f672a099d55d53a0', '31.222.203.2', 1678395852, '__ci_last_regenerate|i:1678395852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42d425e4c2700776a12a490b39e2bf62d783eb6d', '31.222.203.2', 1678395852, '__ci_last_regenerate|i:1678395852;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e875847fce387c40f4a65cfc4ae0e8dac1d0bea', '31.222.203.2', 1678395852, '__ci_last_regenerate|i:1678395852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f6167669f273db3cc5e6ea2ae192b83e9d86b57', '31.222.203.2', 1678395852, '__ci_last_regenerate|i:1678395852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03011441ac0f805765ae6189cc7ba54854a80b1', '116.62.49.96', 1678397362, '__ci_last_regenerate|i:1678397362;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c276cc0182cc452c995c66317b29df0c7384a2c', '116.62.49.96', 1678397365, '__ci_last_regenerate|i:1678397365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70cd1d150f12c084697ac5609ed638d3c521d52e', '116.62.49.96', 1678397367, '__ci_last_regenerate|i:1678397367;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aacd8ca584010f218a62a327568004db8789ba5f', '116.62.49.96', 1678397367, '__ci_last_regenerate|i:1678397367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('711d2ee5bd830b28d48f77fbca37d35636dee996', '31.222.203.2', 1678397662, '__ci_last_regenerate|i:1678397662;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b76b2c9425bfbe15c96c8ca210b75ec0f0e2aac3', '31.222.203.2', 1678397663, '__ci_last_regenerate|i:1678397663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cce64003598bb642f65bc3378d82845df177f19', '31.222.203.2', 1678397663, '__ci_last_regenerate|i:1678397663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e695dab8ca97ad25bce0a74a3838ac05dcc3c789', '31.222.203.2', 1678397663, '__ci_last_regenerate|i:1678397663;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7fee87bbb4168af3058c33c08ff3d1db43ce54', '31.222.203.2', 1678397663, '__ci_last_regenerate|i:1678397663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11aa5478b45026b653e544e5537f546a1ba3b303', '31.222.203.2', 1678397663, '__ci_last_regenerate|i:1678397663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fba33b0b162f9e3e20c29f7052b0aef486b256b', '31.222.203.2', 1678399426, '__ci_last_regenerate|i:1678399426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096affe5fbc11cecf4a779282c8c52118688cf6e', '31.222.203.2', 1678399426, '__ci_last_regenerate|i:1678399426;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dab808d36ec7a3dd95b382fec01036c2a720a9e', '31.222.203.2', 1678399426, '__ci_last_regenerate|i:1678399426;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718b337fbbf2eddd7429cd2ded7372b06e570512', '31.222.203.2', 1678399431, '__ci_last_regenerate|i:1678399431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e10e9b052706e2a41ab4de26aea94b8377d542e3', '31.222.203.2', 1678399431, '__ci_last_regenerate|i:1678399431;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cd23f5cc41162655b56b1938423f6cefd773102', '31.222.203.2', 1678399431, '__ci_last_regenerate|i:1678399431;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d0779a6c624101426d769180d1e31e7a78a5f0', '31.222.203.2', 1678401264, '__ci_last_regenerate|i:1678401264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('919bbbbb2a999eecbf8c1d91d1e4214ba9532e16', '31.222.203.2', 1678401264, '__ci_last_regenerate|i:1678401264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4796cd0d5141deaafa3af796edef27e525af22', '31.222.203.2', 1678401264, '__ci_last_regenerate|i:1678401264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78ec5f88514c26aa185955679054f84e91b59423', '31.222.203.2', 1678401264, '__ci_last_regenerate|i:1678401264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec3960f3678ba9552263f054fa1620bcfe194c8', '31.222.203.2', 1678401264, '__ci_last_regenerate|i:1678401264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07108c274e8964756cad8aba5eda640b3c260e35', '31.222.203.2', 1678401264, '__ci_last_regenerate|i:1678401264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b3e702f1f67060e72e812abb1b8a130bf0d51b2', '31.222.203.2', 1678403058, '__ci_last_regenerate|i:1678403058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1bb18630456bfb35ecdd5fd69a9ca768a142a60', '31.222.203.2', 1678403058, '__ci_last_regenerate|i:1678403058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5231357525c33f56bbf4265092b7b661b40f766f', '31.222.203.2', 1678403058, '__ci_last_regenerate|i:1678403058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f910db34efa60a37f994bee49966c204c6cb907', '31.222.203.2', 1678403058, '__ci_last_regenerate|i:1678403058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8df340a1e248d7898042d09e7d50f8f30a2fa93', '31.222.203.2', 1678403058, '__ci_last_regenerate|i:1678403058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceba1319ab3445f640e17def415cd602316e7d1c', '31.222.203.2', 1678403058, '__ci_last_regenerate|i:1678403058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02d747343186e8422ee4d928d0f1518a734ebc61', '31.222.203.2', 1678404868, '__ci_last_regenerate|i:1678404868;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31beef8e02098d25361c2eabb3b0b6d374662981', '31.222.203.2', 1678404868, '__ci_last_regenerate|i:1678404868;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fbb63977ed1cf7776d9613c41cfa04bbb22e926', '31.222.203.2', 1678404868, '__ci_last_regenerate|i:1678404868;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e856cf8bdd188128de4418c33d4d648f279f8d7', '31.222.203.2', 1678404869, '__ci_last_regenerate|i:1678404869;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b9a47797aa04251127adf3dbdc6af2510ff0a96', '31.222.203.2', 1678404869, '__ci_last_regenerate|i:1678404869;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdb55b7f25365ecf3a3f0e70abde3c0e4ab26ff', '31.222.203.2', 1678404869, '__ci_last_regenerate|i:1678404869;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e199814df4e716adbcdfc6f591afb70535548f8', '31.222.203.2', 1678406656, '__ci_last_regenerate|i:1678406656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3b2f05e920d42767107e11523742fdb7d60a3db', '31.222.203.2', 1678406656, '__ci_last_regenerate|i:1678406656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8faa399a3b0511299ecdb67a93494ad21ca4d0d', '31.222.203.2', 1678406656, '__ci_last_regenerate|i:1678406656;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107014c2f607f0100c4b400311e4cd627d056c79', '31.222.203.2', 1678406656, '__ci_last_regenerate|i:1678406656;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54c22e8bf00cf84853e68671489fe71fb2fb0e5', '31.222.203.2', 1678406656, '__ci_last_regenerate|i:1678406656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c558c74801e07723dbc060102e1a7515bffc17', '31.222.203.2', 1678406656, '__ci_last_regenerate|i:1678406656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b1bcc4b762544d38c79b583201966ed8fd058c', '31.222.203.2', 1678408462, '__ci_last_regenerate|i:1678408462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1b3d639a2b7cca6c410534ec95d9cc814cef60', '31.222.203.2', 1678408462, '__ci_last_regenerate|i:1678408462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cefe9d2a3d756d8515a2cc553dc98d83c2dccf0d', '31.222.203.2', 1678408462, '__ci_last_regenerate|i:1678408462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f6398b93484b55aa003490bacb51b1390cfeda0', '31.222.203.2', 1678408463, '__ci_last_regenerate|i:1678408463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ffd967164015af2ca2be52a51a5e263ee1f04f0', '31.222.203.2', 1678408463, '__ci_last_regenerate|i:1678408463;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b90747124ddbc6f3db52b053ed0098efe037c4', '31.222.203.2', 1678408463, '__ci_last_regenerate|i:1678408463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1569309ffbcf6f80b74bff3601dfa7a5ca4e6086', '31.222.203.2', 1678410253, '__ci_last_regenerate|i:1678410253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b578c881456a49666e3621a21253ec5e5c6976', '31.222.203.2', 1678410253, '__ci_last_regenerate|i:1678410253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd5aa26e2786a22f4e34e4a400fff2c02dd167a', '31.222.203.2', 1678410253, '__ci_last_regenerate|i:1678410253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26925550c42b10dc3293e0810ea481f1dc00d33b', '31.222.203.2', 1678410253, '__ci_last_regenerate|i:1678410253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd7ec280d9bdd29beaa44606e4d8e376233dc7f', '31.222.203.2', 1678410253, '__ci_last_regenerate|i:1678410253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe43f7352318e91cb71608147f76b560a267ef4a', '31.222.203.2', 1678410253, '__ci_last_regenerate|i:1678410253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcaaee0733a12164cde28ceb29bf64ba24b00d4f', '31.222.203.2', 1678412068, '__ci_last_regenerate|i:1678412068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c42bfebf5ed93ee931d856741a2511a40020febd', '31.222.203.2', 1678412069, '__ci_last_regenerate|i:1678412069;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f81178a3d2cd4fd83c49d88679d0c7b8b28a405a', '31.222.203.2', 1678412069, '__ci_last_regenerate|i:1678412069;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c60c12ac4bc8f95844a3d763e86117b7e652a83', '31.222.203.2', 1678412069, '__ci_last_regenerate|i:1678412069;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc271753f1b68ea30a71a5eaa526abe6dff87dcb', '31.222.203.2', 1678412069, '__ci_last_regenerate|i:1678412069;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1894f608648af2e4587748250af1fb460ebe024e', '31.222.203.2', 1678412069, '__ci_last_regenerate|i:1678412069;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b215f1b10b44ce7ce972afe19c783bab15107265', '31.222.203.2', 1678413870, '__ci_last_regenerate|i:1678413870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d613f5d3144ee5fbd1ee5544b2b8f18f324c7db2', '31.222.203.2', 1678413870, '__ci_last_regenerate|i:1678413870;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd466cc526f2075a7407450c986f2e1fcafed00', '31.222.203.2', 1678413870, '__ci_last_regenerate|i:1678413870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3890698ce241e493c2f57b9872918700c491dc2d', '31.222.203.2', 1678413870, '__ci_last_regenerate|i:1678413870;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f2ff2478939e6dca85b3866b420c7dfb11ddce9', '31.222.203.2', 1678413870, '__ci_last_regenerate|i:1678413870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b61def63ae0b0e10a69911ba674037a7584701d', '31.222.203.2', 1678413870, '__ci_last_regenerate|i:1678413870;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aba5bd3e733becbfa059d4581cf1b77db3d1c09', '31.222.203.2', 1678415680, '__ci_last_regenerate|i:1678415680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e6df00c49e16f368998da901778fa41b51d8d6', '31.222.203.2', 1678415680, '__ci_last_regenerate|i:1678415680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f115da33c22bd16801ddea0555a2cde79b81b90', '31.222.203.2', 1678415680, '__ci_last_regenerate|i:1678415680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0100bb94719adbe4ffc239e742be8c4ed7923283', '31.222.203.2', 1678415680, '__ci_last_regenerate|i:1678415680;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836e3e63957e36940c6d43f3da156706dfa638de', '31.222.203.2', 1678415680, '__ci_last_regenerate|i:1678415680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100602adc593579cdec68fbd492b7e163ea6a37e', '31.222.203.2', 1678415680, '__ci_last_regenerate|i:1678415680;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c59abd646b4a466c133e771989a9761f28c60e2f', '31.222.203.2', 1678417469, '__ci_last_regenerate|i:1678417469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69fad58970d363637b473ce74c8abc7297e35cb', '31.222.203.2', 1678417469, '__ci_last_regenerate|i:1678417469;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27c8c2af832fbd96aef87ffee47e19013afb8ea', '31.222.203.2', 1678417469, '__ci_last_regenerate|i:1678417469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1035d7e5b07c74d3e7cef30c586ee293fedf05', '31.222.203.2', 1678417470, '__ci_last_regenerate|i:1678417470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c8656a21812d3f2c3f1ff26151d2e5ce979aa40', '31.222.203.2', 1678417470, '__ci_last_regenerate|i:1678417470;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c6e0093c2a194b2ecf2778f44e725be88ce396', '31.222.203.2', 1678417470, '__ci_last_regenerate|i:1678417470;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2f36864aff5033038f1f71095e2ea08ff4e4715', '31.222.203.2', 1678419247, '__ci_last_regenerate|i:1678419247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7d4e4ba97f30893983cb43472a0ebd5fa0645c6', '31.222.203.2', 1678419247, '__ci_last_regenerate|i:1678419247;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a04440658e7f79a73a5a52cb33622b4ac51b5c5', '31.222.203.2', 1678419247, '__ci_last_regenerate|i:1678419247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee0f82bdffc9431778e8d1e31c264820eac97ea0', '31.222.203.2', 1678419247, '__ci_last_regenerate|i:1678419247;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99a804c5b4206b3359af05eafb9fa448ef73296c', '31.222.203.2', 1678419247, '__ci_last_regenerate|i:1678419247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371d2cc03bae2b017c7f22f44e1968b9607211b8', '31.222.203.2', 1678419247, '__ci_last_regenerate|i:1678419247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea812f1d018b1ad01fe0abad2b765c6085fc0fe8', '31.222.203.2', 1678421063, '__ci_last_regenerate|i:1678421063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fcd631c89b6c16e97aecbfd037c1fcecaf42a12', '31.222.203.2', 1678421063, '__ci_last_regenerate|i:1678421063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e95cafb53354d83978856a025eefd0b76e0e26', '31.222.203.2', 1678421063, '__ci_last_regenerate|i:1678421063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747a03b5707338c43bcecf471cda9bf219908d7d', '31.222.203.2', 1678421063, '__ci_last_regenerate|i:1678421063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d725ee5b07b1207a5d66ca24094e17481ff4df27', '31.222.203.2', 1678421063, '__ci_last_regenerate|i:1678421063;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14683f92cbc777d68a46cad3320edeb4e9a87455', '31.222.203.2', 1678421063, '__ci_last_regenerate|i:1678421063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db7ee3ceaf971b78d453da6480266a7de84ae88', '37.111.219.163', 1678422939, '__ci_last_regenerate|i:1678422939;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678354899\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678422686;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ebbe147067acc2c4ba9acafb4d6b6fe5844fa29', '31.222.203.2', 1678422863, '__ci_last_regenerate|i:1678422863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be524e4de46f856ee2a1588d8c98201455240c5a', '31.222.203.2', 1678422863, '__ci_last_regenerate|i:1678422863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ed07ba1d235781822df9cfdc365ed53dec7b0d', '31.222.203.2', 1678422863, '__ci_last_regenerate|i:1678422863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('512d3c048aea137aff8fbadc4df844f72b79c397', '31.222.203.2', 1678422864, '__ci_last_regenerate|i:1678422864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cfc432e6bdca6aa20a48feb398ec4ea49f13c04', '31.222.203.2', 1678422864, '__ci_last_regenerate|i:1678422864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('929cfa0bd74d2c04f151a4ce0ca1f64fe0899bbe', '31.222.203.2', 1678422864, '__ci_last_regenerate|i:1678422864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bfa7c14e8c02bec3011b060086a1d86a09f60fb', '37.111.219.163', 1678424709, '__ci_last_regenerate|i:1678424709;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678354899\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678422686;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5962212a7d75efa7f746927bdd7356be97f5e007', '31.222.203.2', 1678424671, '__ci_last_regenerate|i:1678424671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f02001cca5b38777029e470f32f6befd3187ce3', '31.222.203.2', 1678424671, '__ci_last_regenerate|i:1678424671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2efa2da8a471378a9e7d01dfb0040abfab4086cc', '31.222.203.2', 1678424671, '__ci_last_regenerate|i:1678424671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466f9ec11edc281e46780eacf7261bcb8bfd7b9c', '31.222.203.2', 1678424671, '__ci_last_regenerate|i:1678424671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4167987c860e2dea442377d4ba37677a318ccd6', '31.222.203.2', 1678424671, '__ci_last_regenerate|i:1678424671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a4a565ee3256e8161ee075c7dfbe9bc1c6375d', '31.222.203.2', 1678424671, '__ci_last_regenerate|i:1678424671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c330cd08004364b775f48c108b88a613f649bb88', '37.111.219.163', 1678428319, '__ci_last_regenerate|i:1678428319;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678354899\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678428289;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a0e081c906025065f3697c65148e3dafd8ebc69', '31.222.203.2', 1678426467, '__ci_last_regenerate|i:1678426467;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7868cff1c9c5e361ce5da93f650205b354e9020', '31.222.203.2', 1678426467, '__ci_last_regenerate|i:1678426467;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80d0653b904ecda669ad3a7f78e0bb62d280965a', '31.222.203.2', 1678426467, '__ci_last_regenerate|i:1678426467;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2886497aabc9d55cbaeec10470a71b4a2afa421b', '31.222.203.2', 1678426467, '__ci_last_regenerate|i:1678426467;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f08582b792952080ad6f6fad69174da1dec13564', '31.222.203.2', 1678426467, '__ci_last_regenerate|i:1678426467;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1befb249ba102b772ef5875b32a57785a115f25', '31.222.203.2', 1678426467, '__ci_last_regenerate|i:1678426467;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83601df23d16f85bb4faf408902e135ef611d111', '31.222.203.2', 1678428268, '__ci_last_regenerate|i:1678428268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('534370c5974581c9f6c126c68cd00bb3c9d7da21', '31.222.203.2', 1678428268, '__ci_last_regenerate|i:1678428268;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('820509bf43854b923e0a1fce1f8299e9b785aa71', '31.222.203.2', 1678428268, '__ci_last_regenerate|i:1678428268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f96be8dffceab65a8bba5eefbe7c4cb1c7e865', '31.222.203.2', 1678428268, '__ci_last_regenerate|i:1678428268;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9766d1315409fd6965cd16558aae119884aef13b', '31.222.203.2', 1678428268, '__ci_last_regenerate|i:1678428268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4795c5deba47a6003fb6a797c9ee3f87dfe18103', '31.222.203.2', 1678428268, '__ci_last_regenerate|i:1678428268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('893ab1012b6a7a24b5308819df87eafb124c4546', '37.111.219.163', 1678431014, '__ci_last_regenerate|i:1678431014;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678354899\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678428320;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4391b6a86a2362844af6a3ef5bdbf9898871a7ef', '31.222.203.2', 1678430056, '__ci_last_regenerate|i:1678430056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbbde041230f07ffc2fe3685471d3d06d78482a8', '31.222.203.2', 1678430062, '__ci_last_regenerate|i:1678430062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75880975bb186c6c31228a98ce46d37b2d50fd35', '31.222.203.2', 1678430062, '__ci_last_regenerate|i:1678430062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5423b7b61e4cb458332dc0ac43a5aff390d8a9e', '31.222.203.2', 1678430062, '__ci_last_regenerate|i:1678430062;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be6cb2940e59f3c24bdfa4ac4308e523f0b2301', '31.222.203.2', 1678430062, '__ci_last_regenerate|i:1678430062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28bc4c09d7abab725f8c2a64a99aee9b582edd24', '31.222.203.2', 1678430062, '__ci_last_regenerate|i:1678430062;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13ba63b5daff45939db4d074abfc022f33f08f1', '37.111.219.163', 1678432630, '__ci_last_regenerate|i:1678432630;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678354899\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678432584;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25b0db6e74a141d6669c6f2d171840521fd7cc8', '31.222.203.2', 1678431862, '__ci_last_regenerate|i:1678431862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc95c33564950d8225b0b3f307f722a33a2e86dc', '31.222.203.2', 1678431864, '__ci_last_regenerate|i:1678431864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f63d457b1c03a2ae9a8067a5a53f483b34ac2a', '31.222.203.2', 1678431864, '__ci_last_regenerate|i:1678431864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64734e30acbe0ed3efaa78462529866ceb1ce3a1', '31.222.203.2', 1678431864, '__ci_last_regenerate|i:1678431864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b68f50e4d36a106757ef1a93fd3c2629d685ac1', '31.222.203.2', 1678431864, '__ci_last_regenerate|i:1678431864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55e5c51dc2c5f66ad6160838bdf251ecac300ede', '31.222.203.2', 1678431864, '__ci_last_regenerate|i:1678431864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bcbe554c5366540c8914ba99e32f861c56a3333', '37.111.219.163', 1678432650, '__ci_last_regenerate|i:1678432630;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678354899\";last_ip|s:13:\"37.111.218.68\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678432650;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eae53db6ec758d1ebc839698ac79bb8b95540c32', '31.222.203.2', 1678433664, '__ci_last_regenerate|i:1678433664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f10973bc13e359a7b5d6d9b078f20ac75728a8da', '31.222.203.2', 1678433664, '__ci_last_regenerate|i:1678433664;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9bcbb8d2ad4e69f572475def295f704adf9e61b', '31.222.203.2', 1678433664, '__ci_last_regenerate|i:1678433664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e6bdd8dfb3334ef8b88b756a702eb2dbae3563a', '31.222.203.2', 1678433665, '__ci_last_regenerate|i:1678433665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce3caf0cf296d31ff9ab94e3e256e2c0b285ee17', '31.222.203.2', 1678433665, '__ci_last_regenerate|i:1678433665;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fc2057b626049efb42a0b0918228464ed898c9', '31.222.203.2', 1678433665, '__ci_last_regenerate|i:1678433665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d6895a93739f53638118d35ecd86d6dd838788', '31.222.203.2', 1678435464, '__ci_last_regenerate|i:1678435464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71189b4517efc33efa940114b66c831eec857a1d', '31.222.203.2', 1678435464, '__ci_last_regenerate|i:1678435464;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('791b7c0fc4f3925de7f1c50518a85163ec02e89f', '31.222.203.2', 1678435464, '__ci_last_regenerate|i:1678435464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('666060ed3c9c5722a51d2c09305bcc7451c97bca', '31.222.203.2', 1678435465, '__ci_last_regenerate|i:1678435465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7565ef3817390f51d3e773910f89fb94889166', '31.222.203.2', 1678435465, '__ci_last_regenerate|i:1678435465;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af24fe575be25a36391cdbcc3f4a476445a01a8', '31.222.203.2', 1678435465, '__ci_last_regenerate|i:1678435465;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d3fcd7659cdf6043d181a1448cefacc9e447dd2', '205.210.31.14', 1678436314, '__ci_last_regenerate|i:1678436314;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f48d9fbe126b9aff4da10de2ea8ea5377c5c56c', '31.222.203.2', 1678437261, '__ci_last_regenerate|i:1678437261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6576b8162208ecb0624150bd3697ea222c505fac', '31.222.203.2', 1678437261, '__ci_last_regenerate|i:1678437261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93caef17654a83db3601c648124b0741021d3cae', '31.222.203.2', 1678437261, '__ci_last_regenerate|i:1678437261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('183eaf8b221b3bc516d015ee7c6601ed3ffc1a5a', '31.222.203.2', 1678437261, '__ci_last_regenerate|i:1678437261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0be702fdc353732159c645409801d202971ea6c', '31.222.203.2', 1678437261, '__ci_last_regenerate|i:1678437261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1adca65a398e1c65eb640e17c539027dcb59191d', '31.222.203.2', 1678437261, '__ci_last_regenerate|i:1678437261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8af51bb2d0d1b525213ebb24b37e56e65d756d2e', '31.222.203.2', 1678439077, '__ci_last_regenerate|i:1678439077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3677521549cbd2fd9f5ac29b6fd05773ff2e2ae', '31.222.203.2', 1678439077, '__ci_last_regenerate|i:1678439077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98c30f8bd9bc51d5e5f67b6d06648df878f2ca54', '31.222.203.2', 1678439077, '__ci_last_regenerate|i:1678439077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e95b76b93416b5d3cd503a1dd1ae90643b2288', '31.222.203.2', 1678439077, '__ci_last_regenerate|i:1678439077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('417dd7f6529c1c35b27a1f41b5e259647261ece8', '31.222.203.2', 1678439077, '__ci_last_regenerate|i:1678439077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418d42a2e104ebf6687d7af39572727c24068633', '31.222.203.2', 1678439077, '__ci_last_regenerate|i:1678439077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ccf9c70732074b49027920a17ca7dd27b8dfc31', '31.222.203.2', 1678440877, '__ci_last_regenerate|i:1678440877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752d9b2474ee9c81cf29c9fb23a602c3242126f9', '31.222.203.2', 1678440877, '__ci_last_regenerate|i:1678440877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d9f746d5da758bb7bc2bf00dc7345964d38beb', '31.222.203.2', 1678440877, '__ci_last_regenerate|i:1678440877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12952ab9d5f10be5859a81ce91050a67b736b025', '31.222.203.2', 1678440877, '__ci_last_regenerate|i:1678440877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d81b4094ced26ed71180585873124648db7c98e', '31.222.203.2', 1678440877, '__ci_last_regenerate|i:1678440877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d65e89e29682247ea9ccfc9918d9784511f451d8', '31.222.203.2', 1678440877, '__ci_last_regenerate|i:1678440877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c303507866934ddd5bc7e2db3e98e9700349d3c', '31.222.203.2', 1678442652, '__ci_last_regenerate|i:1678442652;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('245f6d3e0672967a7084aaea522c58eadbdb2a54', '31.222.203.2', 1678442652, '__ci_last_regenerate|i:1678442652;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804584a469d41ee8c72d4cfb1c067287b02e6ce3', '31.222.203.2', 1678442652, '__ci_last_regenerate|i:1678442652;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a540b5c030c4fa562762d7684be996b305832d5', '31.222.203.2', 1678442653, '__ci_last_regenerate|i:1678442653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5faa85fce24d3be307aae296c61ff0dd6c1b43df', '31.222.203.2', 1678442653, '__ci_last_regenerate|i:1678442653;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97990606a6eb4ad1d7b77f6ab5b5f6a8403d792b', '31.222.203.2', 1678442653, '__ci_last_regenerate|i:1678442653;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726240d7ce1cbd58635538e363630f5d81a62b33', '31.222.203.2', 1678444461, '__ci_last_regenerate|i:1678444461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4ad07e9933dbc410978af19dd5e212997a9b954', '31.222.203.2', 1678444461, '__ci_last_regenerate|i:1678444461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbcea4fb07eebe3d583fdbd3e3508327b62c146', '31.222.203.2', 1678444461, '__ci_last_regenerate|i:1678444461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9cd1a978db81e5dd25a96fea459e5ed49ed73d9', '31.222.203.2', 1678444461, '__ci_last_regenerate|i:1678444461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf8663067f3e0bce84b18e5ccd30e18e756fb61', '31.222.203.2', 1678444461, '__ci_last_regenerate|i:1678444461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e96bef6b45119bd92c27b201362db54e0116751', '31.222.203.2', 1678444461, '__ci_last_regenerate|i:1678444461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9468e466086b77b4ae1af478310333229f05074e', '31.222.203.2', 1678446268, '__ci_last_regenerate|i:1678446268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41eecf0a4e4c439115b466bd0fef6c16e5475d01', '31.222.203.2', 1678446273, '__ci_last_regenerate|i:1678446273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('063c3c9703c3c34025f52e848624953cb5302693', '31.222.203.2', 1678446273, '__ci_last_regenerate|i:1678446273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9212b3063f181dc6e30178492800dd9f2d3237f5', '31.222.203.2', 1678446273, '__ci_last_regenerate|i:1678446273;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ba960bbb64ba0d891274ccfee3c01e36b365f65', '31.222.203.2', 1678446273, '__ci_last_regenerate|i:1678446273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d71997d88cf641fdfdbffea0033973f1a2b501', '31.222.203.2', 1678446273, '__ci_last_regenerate|i:1678446273;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22cd2c00b58c90e9d5bad376d5d86b27265cb577', '37.111.219.163', 1678447280, '__ci_last_regenerate|i:1678447280;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678447241;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3ee69ac63d9a5ae8d0b08774ae04b5cc33279e2', '37.111.219.163', 1678448767, '__ci_last_regenerate|i:1678448767;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678448763;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3568aae312ad0f6557509740b64cb8edc93c6ce1', '31.222.203.2', 1678448077, '__ci_last_regenerate|i:1678448077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('141d47d17227e1e4ef3e0f6cec89a253e1936341', '31.222.203.2', 1678448077, '__ci_last_regenerate|i:1678448077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfc366bddc4bcd753f8d7b43b916b246137945be', '31.222.203.2', 1678448077, '__ci_last_regenerate|i:1678448077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df7649321fce0d6999b765646fc289f99412dcf2', '31.222.203.2', 1678448078, '__ci_last_regenerate|i:1678448078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b2619825ef332975c3591c1eff78d57250ab6a', '31.222.203.2', 1678448078, '__ci_last_regenerate|i:1678448078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e183af777cf65bd6e85ff82b528187eae67d240', '31.222.203.2', 1678448078, '__ci_last_regenerate|i:1678448078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01c19330bd7d1e6f151b393fafccc4ca3544b3e', '37.111.219.163', 1678451431, '__ci_last_regenerate|i:1678451431;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678451426;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52600d18f7b604703a4d99357befc97fd4a32eb', '205.210.31.134', 1678449226, '__ci_last_regenerate|i:1678449226;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f177a0d39f3144abb32e5890dca830685feb7b7d', '116.204.230.28', 1678452817, '__ci_last_regenerate|i:1678452817;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678255906\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('250f98ee07ce6da6ea73cac4133590bde0aace0d', '31.222.203.2', 1678449845, '__ci_last_regenerate|i:1678449845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e42bc56e93a5a5603e03d68416b93f829137f2b', '31.222.203.2', 1678449846, '__ci_last_regenerate|i:1678449846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47586ee300b7a25bdc5b7d4d01662b70f010079b', '31.222.203.2', 1678449846, '__ci_last_regenerate|i:1678449846;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b777b961c38eb239fd99afba0e518aa9cb883efc', '31.222.203.2', 1678449846, '__ci_last_regenerate|i:1678449846;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fbe9b79b4ce18ccf71faa7a706c451c8ad9ff1c', '31.222.203.2', 1678449846, '__ci_last_regenerate|i:1678449846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48815355396b5380a3c5f6c89469687c69c1021f', '31.222.203.2', 1678449846, '__ci_last_regenerate|i:1678449846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11e63450f7868bbfa030585a34ef6e7286b797db', '37.111.219.163', 1678451998, '__ci_last_regenerate|i:1678451998;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678451432;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('385a846cc8fbb81634658b8606ed82ce54a7cc13', '31.222.203.2', 1678451661, '__ci_last_regenerate|i:1678451661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb200dde2e6aa45f31d3bab64bbda3cfce443a5', '31.222.203.2', 1678451661, '__ci_last_regenerate|i:1678451661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8edce8563936b7253cc208025181fe9f047184', '31.222.203.2', 1678451661, '__ci_last_regenerate|i:1678451661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e179bc2e7b6b161233686fc9e7d43da0cf03389e', '31.222.203.2', 1678451661, '__ci_last_regenerate|i:1678451661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cbd38c1b3d3f22e76728a3b28104295ab718b76', '31.222.203.2', 1678451661, '__ci_last_regenerate|i:1678451661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b3df2773c45d9fc55b44e5186e327584f569c27', '31.222.203.2', 1678451661, '__ci_last_regenerate|i:1678451661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('797135efd1ed28f5ca3207e033753ac87339895c', '37.111.219.163', 1678454181, '__ci_last_regenerate|i:1678454181;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678452248;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('402b1e91a863b6f1c8da2e94f71240f41356e1b7', '116.204.230.28', 1678453656, '__ci_last_regenerate|i:1678453656;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678255906\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efe746c9158393341984c12b380358aec6e1db4', '31.222.203.2', 1678453458, '__ci_last_regenerate|i:1678453458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4255cdfd89fcc7efa37063b9a2d841de94e98a0', '31.222.203.2', 1678453458, '__ci_last_regenerate|i:1678453458;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb49e09a420ac76207ffb575b4558eae39fbfc6', '31.222.203.2', 1678453458, '__ci_last_regenerate|i:1678453458;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34bbcbcd1f9564bfeef404b397f44c0d7afd18c', '31.222.203.2', 1678453459, '__ci_last_regenerate|i:1678453459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c8705bf23178da4a0319821449494478b9feb9', '31.222.203.2', 1678453459, '__ci_last_regenerate|i:1678453459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10bc743880a0649c97e6bfebb3b389949c1f4523', '31.222.203.2', 1678453459, '__ci_last_regenerate|i:1678453459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41bf25ca3fb7470be842d6aab377c7bbbba6eff1', '116.204.230.28', 1678457041, '__ci_last_regenerate|i:1678457041;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678255906\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbbe02a5a49a4a840c714c8d87a80504f7938763', '37.111.219.163', 1678456230, '__ci_last_regenerate|i:1678456230;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678454362;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09e054038c1e5f7e074611f42850db07dba2215a', '31.222.203.2', 1678455264, '__ci_last_regenerate|i:1678455264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9659044f5a453504291c645d68e078448cdde10b', '31.222.203.2', 1678455264, '__ci_last_regenerate|i:1678455264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5be66f29f8a31ee66a9ed6e7341cb922e0fa64d', '31.222.203.2', 1678455264, '__ci_last_regenerate|i:1678455264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8babba0e2a91b39c31a092b3e471c2d018411e71', '31.222.203.2', 1678455264, '__ci_last_regenerate|i:1678455264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d9648c47337e3a1470fa5e590fb64b08ff1057', '31.222.203.2', 1678455264, '__ci_last_regenerate|i:1678455264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c437cc90505a812273791a975096d290815b90da', '31.222.203.2', 1678455264, '__ci_last_regenerate|i:1678455264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dfe10e3c07a869d42e4a9edc6c6f70cbd892aa2', '205.210.31.22', 1678455928, '__ci_last_regenerate|i:1678455928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0502fc4fd5cc3f38385b3ca62685b58e5d4c9220', '37.111.219.163', 1678456699, '__ci_last_regenerate|i:1678456699;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678456696;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b34488cc16f6b4b100e1ddf3702b720c2700ff6f', '37.111.219.163', 1678458349, '__ci_last_regenerate|i:1678458349;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678458343;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe004971e0177a3f87ed983b9cb964211a8aad63', '116.204.230.28', 1678457130, '__ci_last_regenerate|i:1678457041;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678255906\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('274f10f814ceaebba82863652eba0fbc79c71bef', '31.222.203.2', 1678457067, '__ci_last_regenerate|i:1678457067;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bbfebda3c98ed3849644a2ee728a041c4d5995d', '31.222.203.2', 1678457068, '__ci_last_regenerate|i:1678457068;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c8b3095e19a29166a212fca8765ce455f6b51d0', '31.222.203.2', 1678457068, '__ci_last_regenerate|i:1678457068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17219e2eb8f0e16b3ad6ac20a6348dfa0c692e11', '31.222.203.2', 1678457068, '__ci_last_regenerate|i:1678457068;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8986755f63ab398213ed2da6986b148869fd5b7b', '31.222.203.2', 1678457068, '__ci_last_regenerate|i:1678457068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a20ba31fdbe1a60922d0be6eb1e52063c3a208e3', '31.222.203.2', 1678457068, '__ci_last_regenerate|i:1678457068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0908e874921db8b155178028f1ab9c05915b75ea', '37.111.219.163', 1678461568, '__ci_last_regenerate|i:1678461568;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678458350;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a42ba8d21103760ccd80d65d06d6fc4de1ffb9f', '31.222.203.2', 1678458857, '__ci_last_regenerate|i:1678458857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5076c8d4f9b568292b49fd082c35892ab697ad5', '31.222.203.2', 1678458858, '__ci_last_regenerate|i:1678458858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('528633b654ae633f43f61adaea90207a539fe49f', '31.222.203.2', 1678458858, '__ci_last_regenerate|i:1678458858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00483462f00c6ea3f015e13eeeccd878cf0e41ff', '31.222.203.2', 1678458858, '__ci_last_regenerate|i:1678458858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4503f1f758f5260e42413d2b74ac3dd60723a405', '31.222.203.2', 1678458858, '__ci_last_regenerate|i:1678458858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('747605589a0e70c6a576885495150ba8bac66d5a', '31.222.203.2', 1678458858, '__ci_last_regenerate|i:1678458858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1557b20b392f4408fe23746921b3813e0d1e3c', '31.222.203.2', 1678460648, '__ci_last_regenerate|i:1678460648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479fe9a13284f7b9aa073a13420592a0557ca86d', '31.222.203.2', 1678460648, '__ci_last_regenerate|i:1678460648;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7473c378f939f6b793106cb0987236f6ff13ca8d', '31.222.203.2', 1678460648, '__ci_last_regenerate|i:1678460648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34fa81da265e30f41b852eda3d41b940771e5f9c', '31.222.203.2', 1678460649, '__ci_last_regenerate|i:1678460649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9532c15ef0ccd76e73ec0cab5affe1243dd766ca', '31.222.203.2', 1678460649, '__ci_last_regenerate|i:1678460649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebbddcd0f480ddf60dbd1aea81ca63ae0a55d426', '31.222.203.2', 1678460649, '__ci_last_regenerate|i:1678460649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865c886bb7f52104e8e56263d49b3c536daef7bb', '37.111.219.163', 1678462310, '__ci_last_regenerate|i:1678462310;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678462301;register_id|s:3:\"365\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-09 20:27:13\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f4e18c06adfa77bcaf126245d8627a4faa6511', '37.111.219.163', 1678462340, '__ci_last_regenerate|i:1678462310;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678422634\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678462340;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ebf73f59733d138e4cd246d330ff62711c3c02d', '34.122.21.166', 1678462318, '__ci_last_regenerate|i:1678462318;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006ce62065095bf3ddc1017ff624b02357cb4de4', '34.122.21.166', 1678462320, '__ci_last_regenerate|i:1678462320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd5e37e2a390eebb04819c1aa497a36ea70793cf', '34.122.21.166', 1678462320, '__ci_last_regenerate|i:1678462320;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('631b54da54754f5a42e50db8fe32aaeeb0b4648a', '34.122.21.166', 1678462320, '__ci_last_regenerate|i:1678462320;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('555abfb92ee394620f316f3fe41b28a3c8e59b77', '31.222.203.2', 1678462463, '__ci_last_regenerate|i:1678462463;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('095aa51c3c42feeb77400a2cae4b079c60bd776b', '31.222.203.2', 1678462464, '__ci_last_regenerate|i:1678462464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de6ea42479444791a6ee003847f4fa3a79c94ef', '31.222.203.2', 1678462464, '__ci_last_regenerate|i:1678462464;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2853a13fa646479ad31898473ca77e89fbf5f341', '31.222.203.2', 1678462464, '__ci_last_regenerate|i:1678462464;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c68c6e2188f867d3a045c5ab1aa50af1918f7dd', '31.222.203.2', 1678462464, '__ci_last_regenerate|i:1678462464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2217beb61eead5f848a534ebc4f3118e802aa2e', '31.222.203.2', 1678462464, '__ci_last_regenerate|i:1678462464;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbcbef8dec168014cec5375911606ab3a92c70c', '45.162.168.89', 1678464067, '__ci_last_regenerate|i:1678464067;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20cd48ec7e7e301671927d8cd2ba16ade7e556ee', '45.162.168.89', 1678464067, '__ci_last_regenerate|i:1678464067;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1dc4ea29261ce0a8bf2f2748071b91d138dbfde', '45.162.168.89', 1678464068, '__ci_last_regenerate|i:1678464068;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8108627c67d83f4fd5ad8a06090eab8e1dbb84ca', '45.162.168.89', 1678464068, '__ci_last_regenerate|i:1678464068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4e4d939853d93ba8f173ff92f9fbf19a9ea56f', '31.222.203.2', 1678464275, '__ci_last_regenerate|i:1678464275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cce3f7ec4cc6ffbe04d9b57964c8f1a14947a307', '31.222.203.2', 1678464275, '__ci_last_regenerate|i:1678464275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6acd0828660d0526d8f386b3ded6b47081ab85a9', '31.222.203.2', 1678464275, '__ci_last_regenerate|i:1678464275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0bd1af086fdce7c3b8702785e26765b5e122973', '31.222.203.2', 1678464275, '__ci_last_regenerate|i:1678464275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6d36e4c431f3b85c0e7d7bdcf8dcf3df3e7c5f1', '31.222.203.2', 1678464275, '__ci_last_regenerate|i:1678464275;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21baff8d13f6edd404c66875409596ee03ced1ce', '31.222.203.2', 1678464275, '__ci_last_regenerate|i:1678464275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5801d3b8af1775f4b0e28de902fa989b1eb6642c', '119.30.35.28', 1678464884, '__ci_last_regenerate|i:1678464842;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1678018325\";last_ip|s:14:\"116.204.230.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a2a2616569fda653d98b8baa41142171bf11d99', '31.222.203.2', 1678466046, '__ci_last_regenerate|i:1678466046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a9b8f2bc4518cd7cf8534373a5fb294755ef5db', '31.222.203.2', 1678466046, '__ci_last_regenerate|i:1678466046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea2a6b425e2baca08019371bc66e0bf78442d3c', '31.222.203.2', 1678466047, '__ci_last_regenerate|i:1678466046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ed0b5dbafa1a8d0163b4a0b305757e2e15d4b69', '31.222.203.2', 1678466047, '__ci_last_regenerate|i:1678466047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88d0f23e1a9d46273961202df971d6522f0d139', '31.222.203.2', 1678466047, '__ci_last_regenerate|i:1678466047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97023e9bb508de598eebb646b8a30af2e105a04f', '31.222.203.2', 1678466047, '__ci_last_regenerate|i:1678466047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f706dda70494b57d66e61fbb19f1eb7e647d6241', '31.222.203.2', 1678467849, '__ci_last_regenerate|i:1678467849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e795be938b1230e80d4e641edd1d63c9f4faa57', '31.222.203.2', 1678467850, '__ci_last_regenerate|i:1678467850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb8bf8abbacd8f7003e6c3181413a97697480d07', '31.222.203.2', 1678467850, '__ci_last_regenerate|i:1678467850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('986cc9905eaf8e006dfb0ba74de2f74867f01575', '31.222.203.2', 1678467850, '__ci_last_regenerate|i:1678467850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34b97dcfee466b958400377591c4251884a3a23e', '31.222.203.2', 1678467850, '__ci_last_regenerate|i:1678467850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1918d861dbeaea3dbe9d2cedd19f8c4d03b7065a', '31.222.203.2', 1678467850, '__ci_last_regenerate|i:1678467850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e68bd3e123b4d3518785d48ec234df5657e1deb4', '78.135.89.10', 1678469109, '__ci_last_regenerate|i:1678469109;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5788b6b2bc048176e25bc8bbf88ae6d3faee4b00', '78.135.89.10', 1678469112, '__ci_last_regenerate|i:1678469112;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('862e118bb74df944490a1630c93442fec6f847ad', '78.135.89.10', 1678469115, '__ci_last_regenerate|i:1678469115;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e24eb2951e1d821528cb8f51744c6a6ca796475', '78.135.89.10', 1678469115, '__ci_last_regenerate|i:1678469115;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18de1c528cadb161ab0e51e7864f065ea1af9c1', '198.235.24.44', 1678469277, '__ci_last_regenerate|i:1678469277;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d5fbcb2ae46fd0e1e023f98422842c4c1c6d695', '31.222.203.2', 1678469644, '__ci_last_regenerate|i:1678469644;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb372fda6b24134aa04316a0c2c360dca878de33', '31.222.203.2', 1678469644, '__ci_last_regenerate|i:1678469644;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2015e323be9ef302246ffecb3e5987435b0c578', '31.222.203.2', 1678469644, '__ci_last_regenerate|i:1678469644;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd9e2b15264e7209f0e4f93ed67bfe7f33d3e832', '31.222.203.2', 1678469645, '__ci_last_regenerate|i:1678469645;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf90d754b6012f169a2a5e1d04e8391c2cac21fe', '31.222.203.2', 1678469645, '__ci_last_regenerate|i:1678469645;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f4d9e82ab2f1e420cd15844c005738a9456a505', '31.222.203.2', 1678469645, '__ci_last_regenerate|i:1678469645;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80c0e6f74a60feab9cda9d11444b8cc56d711a2', '31.222.203.2', 1678471453, '__ci_last_regenerate|i:1678471453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4ddb01cc6778c1dcd0fa7248e0a4101f2eb2cfa', '31.222.203.2', 1678471453, '__ci_last_regenerate|i:1678471453;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8491f4598e74b4d5241021c7a6ad540d3d752f54', '31.222.203.2', 1678471453, '__ci_last_regenerate|i:1678471453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf434676c22cdfd235a9dca0d679292a8674f6d', '31.222.203.2', 1678471459, '__ci_last_regenerate|i:1678471459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29718f4df912dda1bc750e4c17b6eed9a463a94', '31.222.203.2', 1678471459, '__ci_last_regenerate|i:1678471459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbfeeb96aa5f6af1ad01903489382ed04d8f852e', '31.222.203.2', 1678471459, '__ci_last_regenerate|i:1678471459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03465596f9f26c88b6d0fa60e823fb0384fad722', '31.222.203.2', 1678473244, '__ci_last_regenerate|i:1678473244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef1ca529d3988f470e0b507c80a48f8ad8e82521', '31.222.203.2', 1678473245, '__ci_last_regenerate|i:1678473245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e921268d15d98bae7ec24c5cbbe7f353d846d0f0', '31.222.203.2', 1678473245, '__ci_last_regenerate|i:1678473245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411a8e8c7082b8d51213965eea438196e499d43f', '31.222.203.2', 1678473245, '__ci_last_regenerate|i:1678473245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ef157949d9d860fa1fae3a085f8df256e1d3b0', '31.222.203.2', 1678473245, '__ci_last_regenerate|i:1678473245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393ef4691844dc8dfab068998edbb487882c0301', '31.222.203.2', 1678473245, '__ci_last_regenerate|i:1678473245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9413ade3a090f6a985b95e6da655afcca2b60b13', '31.222.203.2', 1678475046, '__ci_last_regenerate|i:1678475046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('328a1a527834ad9d57d23cffa31f4074d7855e99', '31.222.203.2', 1678475046, '__ci_last_regenerate|i:1678475046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9401236d64bce91e8886b86f0c25e450e5b40e85', '31.222.203.2', 1678475046, '__ci_last_regenerate|i:1678475046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88b6d7bb75e530ae4c09dcc59ea1bb9749c9917f', '31.222.203.2', 1678475046, '__ci_last_regenerate|i:1678475046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d87c5faab3286f9077f424cb18ffc62c03ef33f8', '31.222.203.2', 1678475046, '__ci_last_regenerate|i:1678475046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c478fd4e1ec7dadba13390a13ac8280bf8fb41', '31.222.203.2', 1678475046, '__ci_last_regenerate|i:1678475046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31c180b78b9053caf1b6d490a12b3f7ef09c9250', '31.222.203.2', 1678476854, '__ci_last_regenerate|i:1678476854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668462ff007b53ad4f89d87ecec142e324c864ab', '31.222.203.2', 1678476858, '__ci_last_regenerate|i:1678476858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3811ddfd42ba10c0d6636f20ba0f4f0b6754abd6', '31.222.203.2', 1678476858, '__ci_last_regenerate|i:1678476858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('920c85e27844ebf7d3f413ced5d6e0e7e1b8ea6d', '31.222.203.2', 1678476858, '__ci_last_regenerate|i:1678476858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9095f1ed52532b399944512390daa8fee64622', '31.222.203.2', 1678476858, '__ci_last_regenerate|i:1678476858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663fa8b0fff547b3b53ec506d7e3cd3f29c8b2e2', '31.222.203.2', 1678476858, '__ci_last_regenerate|i:1678476858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d0ef916f70381b972a4b5aef9a5ab87cb9b34b', '31.222.203.2', 1678478649, '__ci_last_regenerate|i:1678478649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f37453c695c18078ccf03180f65a9f45c66c90d0', '31.222.203.2', 1678478649, '__ci_last_regenerate|i:1678478649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afdcf7e254adb8f5df96df7c16666f0e1c5a27b9', '31.222.203.2', 1678478649, '__ci_last_regenerate|i:1678478649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7310969ffbd0ecdc6499229a53a8c6efdb7a1cb2', '31.222.203.2', 1678478650, '__ci_last_regenerate|i:1678478650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d7b8cf9e17dd1eebe8196a3d3d0b445b438322', '31.222.203.2', 1678478650, '__ci_last_regenerate|i:1678478650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72578ac2dac7739e5ce11eb5c08acc3da18f45b6', '31.222.203.2', 1678478650, '__ci_last_regenerate|i:1678478650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99f26c30fb96d734ce06013ada8bd39cb5e5c689', '31.222.203.2', 1678480442, '__ci_last_regenerate|i:1678480442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9678876408bbf10971ba7dce596feda92a962cd', '31.222.203.2', 1678480442, '__ci_last_regenerate|i:1678480442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a6f7daecf86d798d17ed5e6f9e7fcbd3ef9a5bc', '31.222.203.2', 1678480442, '__ci_last_regenerate|i:1678480442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e40017bb9294cda2ac8f296d4c013f084ead58a', '31.222.203.2', 1678480442, '__ci_last_regenerate|i:1678480442;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7b2cc738c682c20484aad5d6a32750252f608d', '31.222.203.2', 1678480442, '__ci_last_regenerate|i:1678480442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57041f7c00b7ad500909b7279530edc018ffcf8e', '31.222.203.2', 1678480442, '__ci_last_regenerate|i:1678480442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d73aa070bf96acc3129251053fae89066016708d', '20.109.101.102', 1678481707, '__ci_last_regenerate|i:1678481707;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a56bdb428397d6629b23d484d030f265e8163fd6', '20.109.101.102', 1678481711, '__ci_last_regenerate|i:1678481711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe9b2f5031014242ae1200f7cc335d9fd7663d7', '20.109.101.102', 1678481711, '__ci_last_regenerate|i:1678481711;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df876d904430db38d3906e2a2e7f9592c7eb229f', '20.109.101.102', 1678481711, '__ci_last_regenerate|i:1678481711;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e60c9ebbf6d2961b09a82b61ff15c0043fd71864', '31.222.203.2', 1678482242, '__ci_last_regenerate|i:1678482242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('317244fd6aca8810f530eb0481e081eefa4561f3', '31.222.203.2', 1678482243, '__ci_last_regenerate|i:1678482243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8dd8bd3514e93354af809027f5d197c6897606', '31.222.203.2', 1678482244, '__ci_last_regenerate|i:1678482243;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa6efcf72951e375b7cb8444e2e12aacde9a56a', '31.222.203.2', 1678482244, '__ci_last_regenerate|i:1678482244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d6a3df24af5f2389c761517344e1d9a4732e165', '31.222.203.2', 1678482244, '__ci_last_regenerate|i:1678482244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88752810dd2ebfb50474b2a595586d7c4d9b4607', '31.222.203.2', 1678482244, '__ci_last_regenerate|i:1678482244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('342550ab999000be006be03786f32eaae01bae03', '31.222.203.2', 1678484018, '__ci_last_regenerate|i:1678484018;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ecbeb541b825b55afa34ab0eb454ee7eda314f', '31.222.203.2', 1678484019, '__ci_last_regenerate|i:1678484019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aade177c5ccb9411c616b0efeef565b38860a189', '31.222.203.2', 1678484019, '__ci_last_regenerate|i:1678484019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d15a51c78d6699561d3fe1625559716b02ea1fd', '31.222.203.2', 1678484019, '__ci_last_regenerate|i:1678484019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de890937ca9146933e14f584a3e9fc029673a6d', '31.222.203.2', 1678484019, '__ci_last_regenerate|i:1678484019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7311a27789ebbd56501947299d1c5b0ab19acdc6', '31.222.203.2', 1678484019, '__ci_last_regenerate|i:1678484019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8693ae79deeb11c8fd0ba454c6cc1bfdaef6973f', '31.222.203.2', 1678485845, '__ci_last_regenerate|i:1678485845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38faf7092879a3691d38bd174ff36d4632b9b37e', '31.222.203.2', 1678485847, '__ci_last_regenerate|i:1678485847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37d037aa8226b68e4e5a4db57e0f8182e750c7c', '31.222.203.2', 1678485847, '__ci_last_regenerate|i:1678485847;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4040143a0f68fd9b9f2d3f4f3afc5794607c84f', '31.222.203.2', 1678485847, '__ci_last_regenerate|i:1678485847;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c8eb8694f6148c30c1b8c74434d8f0ef7962c29', '31.222.203.2', 1678485847, '__ci_last_regenerate|i:1678485847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10858834026d9dd2b854ee5ec0b1c3ec4a899cc4', '31.222.203.2', 1678485847, '__ci_last_regenerate|i:1678485847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('679df84a48776a3bf34fb6d23054e8d34dc4b073', '31.222.203.2', 1678487615, '__ci_last_regenerate|i:1678487615;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9692e8643441093209ec5011aa24f30bf46445ff', '31.222.203.2', 1678487616, '__ci_last_regenerate|i:1678487616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4282a4850ca582a94e5398a368424ad87aca198e', '31.222.203.2', 1678487616, '__ci_last_regenerate|i:1678487616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef434cfef9dab8cbafad2d7e3182e56f89057c99', '31.222.203.2', 1678487616, '__ci_last_regenerate|i:1678487616;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a873f49c4ef42b38baf2817c6c7cb3da200271ce', '31.222.203.2', 1678487616, '__ci_last_regenerate|i:1678487616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d47e35c4c0ccdf1c375eaac89c4a29779d3591c', '31.222.203.2', 1678487616, '__ci_last_regenerate|i:1678487616;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f54a1c8cdbabce91a8bdecc208120785878a4bbb', '31.222.203.2', 1678489452, '__ci_last_regenerate|i:1678489452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0440b20dce0685c04232d9247251d5452fe23b47', '31.222.203.2', 1678489452, '__ci_last_regenerate|i:1678489452;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fad5ddf28292fd0e8065be69fa426c4c851254b', '31.222.203.2', 1678489452, '__ci_last_regenerate|i:1678489452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a115960b950c028ed76f6d222e24ecdfd26d00ad', '31.222.203.2', 1678489452, '__ci_last_regenerate|i:1678489452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb36930be7fe76d8e0c48ec20848143b29bb3bb0', '31.222.203.2', 1678489452, '__ci_last_regenerate|i:1678489452;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4d2553c2dd0bf3cc504980c661ced57b8107b7d', '31.222.203.2', 1678489452, '__ci_last_regenerate|i:1678489452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77213d4a83820470cf2f03b830d48e869c117243', '31.222.203.2', 1678491252, '__ci_last_regenerate|i:1678491252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ac9eeb88bdabb92be507a88f519239fb28fb9d', '31.222.203.2', 1678491252, '__ci_last_regenerate|i:1678491252;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485f0b1649ef4b01888b43f8f64dafac313a1b09', '31.222.203.2', 1678491252, '__ci_last_regenerate|i:1678491252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9dd95766d58628bc4668222f8caeb2c29098287', '31.222.203.2', 1678491253, '__ci_last_regenerate|i:1678491253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45684c6a5db24fb2bfc35b923476b524b9307ec5', '31.222.203.2', 1678491253, '__ci_last_regenerate|i:1678491253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ed6aa80085a074400ffae00bd3c1b76a9bac3e8', '31.222.203.2', 1678491253, '__ci_last_regenerate|i:1678491253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f64f64c4af541366c16e57ca7ea3641884ff11', '198.235.24.129', 1678492246, '__ci_last_regenerate|i:1678492246;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab54d8b1071bdf8258bdabb1e59ed7f41fff2540', '198.235.24.129', 1678492247, '__ci_last_regenerate|i:1678492247;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23aaf860d0cd6c0cebd4d0f30e3f9eaaee0e859c', '198.235.24.129', 1678492248, '__ci_last_regenerate|i:1678492248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c775d72f99c1a4d13c35c74071cfdcb5c11047b1', '31.222.203.2', 1678493037, '__ci_last_regenerate|i:1678493037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb834770a6a567f04f08e4f1a53f637450bb7902', '31.222.203.2', 1678493038, '__ci_last_regenerate|i:1678493038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23718f1457c08788bd68039be6a2cc80ad4dad72', '31.222.203.2', 1678493038, '__ci_last_regenerate|i:1678493038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('966f120f428d9cd3549c69b85f646bbbf179c341', '31.222.203.2', 1678493038, '__ci_last_regenerate|i:1678493038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb9fd193342b7d084f87f701f7a2b21ee4f391a', '31.222.203.2', 1678493038, '__ci_last_regenerate|i:1678493038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('905c88a512e737326a83ae81cd272a0d01d97713', '31.222.203.2', 1678493038, '__ci_last_regenerate|i:1678493038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa5aa5fe183ccbbde040a79b7d24b1075635d382', '31.222.203.2', 1678494845, '__ci_last_regenerate|i:1678494845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb95bcc722eb76a147f40b38221b14b70425fd6', '31.222.203.2', 1678494845, '__ci_last_regenerate|i:1678494845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f074c7b3703edd2faa588ff90475fee4e06e48', '31.222.203.2', 1678494845, '__ci_last_regenerate|i:1678494845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd4a09154b2521a0f3cca81af9775306fe806c8', '31.222.203.2', 1678494845, '__ci_last_regenerate|i:1678494845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36f8eada74681da9065db5eda4db89b4960ba238', '31.222.203.2', 1678494845, '__ci_last_regenerate|i:1678494845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037029431ab5467a353093d1d31ef1933c4a17f5', '31.222.203.2', 1678494845, '__ci_last_regenerate|i:1678494845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('241471715e758f7eb24341407e364df50e6626fb', '31.222.203.2', 1678496636, '__ci_last_regenerate|i:1678496636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a68e555f1ce6b55f7f12ef41dbf263565f70be5', '31.222.203.2', 1678496636, '__ci_last_regenerate|i:1678496636;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc277b8ca348ba4b434b1351ce7c8342ca7561f0', '31.222.203.2', 1678496636, '__ci_last_regenerate|i:1678496636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03fbb143fc060576ebd723bf75d70e99c1e87985', '31.222.203.2', 1678496636, '__ci_last_regenerate|i:1678496636;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deaff8b9d8e0736c7ef966b8416b1e32c7d1715c', '31.222.203.2', 1678496637, '__ci_last_regenerate|i:1678496637;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b15c6892a34fe59cfe9455212394b6feda9642d', '31.222.203.2', 1678496637, '__ci_last_regenerate|i:1678496637;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b79e02e50d5a47371a93e97e4a82efd82380688', '31.222.203.2', 1678498441, '__ci_last_regenerate|i:1678498441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e24f813464ac5ce6677a0b60d04e16c3e1410b9', '31.222.203.2', 1678498441, '__ci_last_regenerate|i:1678498441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b79aced2381e37d1d651b30a97a914272d2c0b6', '31.222.203.2', 1678498441, '__ci_last_regenerate|i:1678498441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1621dc77a322626869ded715b2c258da562ac3', '31.222.203.2', 1678498441, '__ci_last_regenerate|i:1678498441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12686c77bbd9181f2d4572ad632f9838e89fd4e1', '31.222.203.2', 1678498441, '__ci_last_regenerate|i:1678498441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6ffba42521a4c4ce5ec22ea69cce81ba71e640', '31.222.203.2', 1678498441, '__ci_last_regenerate|i:1678498441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb1cb240563503b533c074145b15deb242944c60', '31.222.203.2', 1678500249, '__ci_last_regenerate|i:1678500249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e835daf90a08a775a8cf6cb4a6b31675bfa0108', '31.222.203.2', 1678500249, '__ci_last_regenerate|i:1678500249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10435c0886dd37b02b13312e07877cc5298d10bd', '31.222.203.2', 1678500249, '__ci_last_regenerate|i:1678500249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06b99fdda5dae4de66ef5ae68c73df533a001141', '31.222.203.2', 1678500249, '__ci_last_regenerate|i:1678500249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03836fdf4ae24c9d47aa3359f3e2938c2ee8410', '31.222.203.2', 1678500249, '__ci_last_regenerate|i:1678500249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48d1d899e006740da76481e62a300dbec35b33a2', '31.222.203.2', 1678500249, '__ci_last_regenerate|i:1678500249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e65b96a57408dde375a50f9d6c8b9939b0e270', '31.222.203.2', 1678502060, '__ci_last_regenerate|i:1678502060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8236cece1be439dae6efa3313efc48bdd84784c3', '31.222.203.2', 1678502060, '__ci_last_regenerate|i:1678502060;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7c53a7436f26c3bd682c6341fb4340bc70845f3', '31.222.203.2', 1678502060, '__ci_last_regenerate|i:1678502060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49da1fc7893c6029f48110142795b28f0568ea0', '31.222.203.2', 1678502061, '__ci_last_regenerate|i:1678502061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a37d802cd4a8cc8e524776c5140397703448515', '31.222.203.2', 1678502061, '__ci_last_regenerate|i:1678502061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6e20fcc5b449945bacff7763c8814f6f13565a', '31.222.203.2', 1678502061, '__ci_last_regenerate|i:1678502061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd438c05c6e263a2a128056a780165263105be7c', '31.222.203.2', 1678503848, '__ci_last_regenerate|i:1678503848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47364f962ae746c078f4318748217757c06bb1a4', '31.222.203.2', 1678503848, '__ci_last_regenerate|i:1678503848;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cefe6f715109295a9a5e2786041061b4858abc72', '31.222.203.2', 1678503848, '__ci_last_regenerate|i:1678503848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9827f29f0d7e7f8905b11fb07dcdaf1307d26147', '31.222.203.2', 1678503848, '__ci_last_regenerate|i:1678503848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cabc036e0a7fa80cb2758dec7ce3624574139e4', '31.222.203.2', 1678503848, '__ci_last_regenerate|i:1678503848;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef05464717ae01e6f66c1de6cf922484279a467', '31.222.203.2', 1678503848, '__ci_last_regenerate|i:1678503848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc2ca00e141fb6d1d91559e074ee1095659a36ee', '198.235.24.146', 1678504656, '__ci_last_regenerate|i:1678504656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c529f85f48868aa5e045a8f6efdee5dd4d6e7e82', '31.222.203.2', 1678505638, '__ci_last_regenerate|i:1678505638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c168ff30f5904903c48a13f37f9a6643a098947f', '31.222.203.2', 1678505638, '__ci_last_regenerate|i:1678505638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8935dc0a46eaaf1cfbcc16ef74fcb591fa9f03c', '31.222.203.2', 1678505638, '__ci_last_regenerate|i:1678505638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2479a760580fa470f234ed07db08411c754e66', '31.222.203.2', 1678505638, '__ci_last_regenerate|i:1678505638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eea7d75afb48e0446e9a613bc097aecf46db4d2', '31.222.203.2', 1678505638, '__ci_last_regenerate|i:1678505638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b71bc5a7f8b48a2bee48fecb2fc43946cf2c7a30', '31.222.203.2', 1678505638, '__ci_last_regenerate|i:1678505638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('451cc2f45154d53b5c64ee0251e4d884b0810b09', '31.222.203.2', 1678507444, '__ci_last_regenerate|i:1678507444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a9267f61518fbc4ce224ac5b82382d4f407cea', '31.222.203.2', 1678507445, '__ci_last_regenerate|i:1678507445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fffba6cab0d60174b1caa347e732428343182e8c', '31.222.203.2', 1678507445, '__ci_last_regenerate|i:1678507445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2941267e575dcbbb6a6beedf085f09b9539a85cb', '31.222.203.2', 1678507445, '__ci_last_regenerate|i:1678507445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba7ea7236dea21d7c8dd652b4ed9ce3c99ebba0f', '31.222.203.2', 1678507445, '__ci_last_regenerate|i:1678507445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3576f2f32a39d2c0c0e43a218d6ad92f7a83994', '31.222.203.2', 1678507445, '__ci_last_regenerate|i:1678507445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd19805c175a3ef0f53933751f72f1350e674d6c', '31.222.203.2', 1678509236, '__ci_last_regenerate|i:1678509236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fda96e1395b3a8c6770629e86fa4303d4f86f3b', '31.222.203.2', 1678509236, '__ci_last_regenerate|i:1678509236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01a4304e224c55ebeee27a15196a6326e4eb7d8', '31.222.203.2', 1678509236, '__ci_last_regenerate|i:1678509236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27f9e5a82682d45e54491b842dfad53faaaf65a', '31.222.203.2', 1678509237, '__ci_last_regenerate|i:1678509236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b0ddfdf6855e385a05ac47c9c885beb855a4c9e', '31.222.203.2', 1678509237, '__ci_last_regenerate|i:1678509237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51e1d0c291dda5703a0ac9ffe514907b19c57db9', '31.222.203.2', 1678509237, '__ci_last_regenerate|i:1678509237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77bab3bdec105e3e1ab80d4dce9d36b8bf3394eb', '31.222.203.2', 1678511039, '__ci_last_regenerate|i:1678511039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ad55f08b510d1058ba78615aab529a542befab0', '31.222.203.2', 1678511040, '__ci_last_regenerate|i:1678511040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d121790e892076f2cdfa9c1a3ade744bdb8626ac', '31.222.203.2', 1678511040, '__ci_last_regenerate|i:1678511040;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf7746a0c12f972ef2966c304bf9b0f03ba6531', '31.222.203.2', 1678511040, '__ci_last_regenerate|i:1678511040;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188bcee6b464c8203c69ffd38af215d14b48f270', '31.222.203.2', 1678511040, '__ci_last_regenerate|i:1678511040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d0faf7b653531f8f5f1e9fd192ed3ddab3b5ca0', '31.222.203.2', 1678511040, '__ci_last_regenerate|i:1678511040;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c1cf6ff54be0d7cbdb2a79c9433905ac6ca81f', '37.111.219.135', 1678512443, '__ci_last_regenerate|i:1678512443;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678512398;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f044b321133b151ac8d0e1b500c25bc973a568e', '37.111.219.135', 1678512875, '__ci_last_regenerate|i:1678512875;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678512398;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30df94ffac9db24d0af607485ddb702fd51b1b6b', '31.222.203.2', 1678512857, '__ci_last_regenerate|i:1678512857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10511d13d2a548fab694546c32240e0e1041026f', '31.222.203.2', 1678512857, '__ci_last_regenerate|i:1678512857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada52aa1bbba3d9e01a333566def93a0f9faf795', '31.222.203.2', 1678512857, '__ci_last_regenerate|i:1678512857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5685645d54a86641a91bf61da672e043ee3e5966', '31.222.203.2', 1678512858, '__ci_last_regenerate|i:1678512858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cf2bbb18752bde8e3ff332051fd0f6e6e99e91f', '31.222.203.2', 1678512858, '__ci_last_regenerate|i:1678512858;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dafe5fcb8ebb8b2a9ee9dcede953189834b2e3dd', '31.222.203.2', 1678512858, '__ci_last_regenerate|i:1678512858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9e7ed6d55023fab388cd71e2b6b2934bbd07def', '37.111.219.135', 1678518622, '__ci_last_regenerate|i:1678518622;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678512908;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635a57046143bac461e9ee944de6b6122101025f', '31.222.203.2', 1678514650, '__ci_last_regenerate|i:1678514650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04f71888385e94138da7efc1bf7e54a0a04930a4', '31.222.203.2', 1678514650, '__ci_last_regenerate|i:1678514650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e59e75461c7e762d275f206f4a2f4c51264f7a50', '31.222.203.2', 1678514650, '__ci_last_regenerate|i:1678514650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e918100926b5cc2a20ca483e9a526a91af4a5969', '31.222.203.2', 1678514650, '__ci_last_regenerate|i:1678514650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687a0c7513d22ab2dcfe1d276261ff7eaabe101a', '31.222.203.2', 1678514650, '__ci_last_regenerate|i:1678514650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936164f927f1d58fbe48b7a7032e6cf36a2994b1', '31.222.203.2', 1678514650, '__ci_last_regenerate|i:1678514650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657f738286dc0f5d0d15cddc522fb6c04ca2ed9a', '31.222.203.2', 1678516434, '__ci_last_regenerate|i:1678516434;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bde73b850e83a105255e39a69fd69dd9680c916', '31.222.203.2', 1678516434, '__ci_last_regenerate|i:1678516434;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0079380ca0b21a359d639ebc2535d3b0a9c61039', '31.222.203.2', 1678516434, '__ci_last_regenerate|i:1678516434;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d3f47b571644bb3eb15cef1ca85dbe5a9a7126', '31.222.203.2', 1678516435, '__ci_last_regenerate|i:1678516435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a54e5f4bad866faa39432855789c91e8938eae1', '31.222.203.2', 1678516435, '__ci_last_regenerate|i:1678516435;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac992461b888b17f99a4fc455022e2a5d10761c', '31.222.203.2', 1678516435, '__ci_last_regenerate|i:1678516435;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84db5e68fe34a73fb1dcb1a4209d33635222eb91', '31.222.203.2', 1678518236, '__ci_last_regenerate|i:1678518236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cc595d92768bf21bcb71a18584ea501db9e7349', '31.222.203.2', 1678518236, '__ci_last_regenerate|i:1678518236;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37135394677279dc4dd20f72e25f36aa47014a5f', '31.222.203.2', 1678518236, '__ci_last_regenerate|i:1678518236;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b747104eba68a0d01d973ef116721ee112137c0', '31.222.203.2', 1678518237, '__ci_last_regenerate|i:1678518237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b704215357848e17ccddbde8b7719cec2d9af41', '31.222.203.2', 1678518237, '__ci_last_regenerate|i:1678518237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac84ec3f180e110ed99a88af087fdb9f17d79d7a', '31.222.203.2', 1678518237, '__ci_last_regenerate|i:1678518237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97ab43cdd76649695ca139bda738fd8cde7bbbcd', '37.111.219.135', 1678525482, '__ci_last_regenerate|i:1678525482;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678519473;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49b56918b64c13e90a9120d547cf7ce3eacb26d', '198.235.24.53', 1678519974, '__ci_last_regenerate|i:1678519974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a29d3f8508a773a77b1e700e1ffe73ccb4f0036b', '198.235.24.53', 1678519976, '__ci_last_regenerate|i:1678519976;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3285764825d294191a0f5b53d2089ec15374b90a', '198.235.24.53', 1678519976, '__ci_last_regenerate|i:1678519976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('100ad30f3178f5149ab3f39e316ea3f9b81e8a22', '31.222.203.2', 1678520033, '__ci_last_regenerate|i:1678520033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c802eb33a3f2eff5f27b79bc0e902fe38fea9c2', '31.222.203.2', 1678520033, '__ci_last_regenerate|i:1678520033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7086d41495eb8343deb60f854d13ccc6e3595ed0', '31.222.203.2', 1678520033, '__ci_last_regenerate|i:1678520033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5bc88f6f149307b209b826ff921a797cd77c9b', '31.222.203.2', 1678520033, '__ci_last_regenerate|i:1678520033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fdbb3a5d8cd5528b6111ab69323b90486b6661a', '31.222.203.2', 1678520033, '__ci_last_regenerate|i:1678520033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f683178b5ee0d29d17d86687997a9507db83a9c', '31.222.203.2', 1678520033, '__ci_last_regenerate|i:1678520033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71478c4e61bb6d7405a33eda39625d9c87e5478d', '31.222.203.2', 1678521833, '__ci_last_regenerate|i:1678521833;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca947935c695808552764fe1c773d4dc68f87d73', '31.222.203.2', 1678521834, '__ci_last_regenerate|i:1678521834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0a1c49e32c3264cf835ee6ac5f17ece3a10e0d', '31.222.203.2', 1678521834, '__ci_last_regenerate|i:1678521834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28efa3423e4a98baa74bf20ad59e0cce399b121', '31.222.203.2', 1678521834, '__ci_last_regenerate|i:1678521834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b50e9b1bc78de5e91486b770a480861fff4111b4', '31.222.203.2', 1678521834, '__ci_last_regenerate|i:1678521834;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96922bf88f3a93f60c1adea569b4ed215efca3fe', '31.222.203.2', 1678521834, '__ci_last_regenerate|i:1678521834;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9249d3b121993affee38ec667f0a1d365e362981', '31.222.203.2', 1678523634, '__ci_last_regenerate|i:1678523634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69cecd0dbf7c3a2b507020879b0ea4a07e623ba2', '31.222.203.2', 1678523634, '__ci_last_regenerate|i:1678523634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd309e687aac9cc23eb14468cd5bbb04b76659b', '31.222.203.2', 1678523634, '__ci_last_regenerate|i:1678523634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e0d3bdea0b57f9728b499a7bc9ea6b5100777c8', '31.222.203.2', 1678523634, '__ci_last_regenerate|i:1678523634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81109cde41a0cb28375e12af412f3ea844ceeb63', '31.222.203.2', 1678523634, '__ci_last_regenerate|i:1678523634;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1aafc48416d59a0eeb2fa0bebe3fb4d64c3b3c1', '31.222.203.2', 1678523634, '__ci_last_regenerate|i:1678523634;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b8c39d029995e4e742be4bd1fbf5f84b3d4488', '31.222.203.2', 1678525438, '__ci_last_regenerate|i:1678525438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3481b649c1638882f741fd5dd77cec0419f8df', '31.222.203.2', 1678525438, '__ci_last_regenerate|i:1678525438;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79f281319f2ab0b1c6ded3a68cb95e703dc2fce6', '31.222.203.2', 1678525438, '__ci_last_regenerate|i:1678525438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e74f0fcd82c86993d539066ce341a47a49a245e', '31.222.203.2', 1678525438, '__ci_last_regenerate|i:1678525438;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e6d62d6cf52c0d0738f7226bcd49dea372e2f82', '31.222.203.2', 1678525438, '__ci_last_regenerate|i:1678525438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8e327422f8381a2c38c6e67531443c22cc0a6ab', '31.222.203.2', 1678525438, '__ci_last_regenerate|i:1678525438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f0b249b9261746facd498ffd120da39b50d4d36', '37.111.219.135', 1678530208, '__ci_last_regenerate|i:1678530208;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678525482;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ec96e3f32c48a5945e1b49178d3a946f665f0b', '31.222.203.2', 1678527245, '__ci_last_regenerate|i:1678527245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('461e211406a0ebc3996357842c63f348ec699788', '31.222.203.2', 1678527245, '__ci_last_regenerate|i:1678527245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34dce4d496671f0457fa252cbfa4cc71a3dd9193', '31.222.203.2', 1678527245, '__ci_last_regenerate|i:1678527245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3127fe95dd1ae2c00b71d898f9208418d9635586', '31.222.203.2', 1678527245, '__ci_last_regenerate|i:1678527245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a0bf75dd20001df95bdcd03218cedcc82239e53', '31.222.203.2', 1678527245, '__ci_last_regenerate|i:1678527245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb2de09cf3557e65b07ed947ac1fe5322232645', '31.222.203.2', 1678527245, '__ci_last_regenerate|i:1678527245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ac08453560e83dff51d58da306dcdd75465e9f', '31.222.203.2', 1678529038, '__ci_last_regenerate|i:1678529038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0e471ecb867aa7854b355cde366709d770ee93f', '31.222.203.2', 1678529038, '__ci_last_regenerate|i:1678529038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9471d9a5f9f9bb4912c333f1bbdc1c2f8ced1a0f', '31.222.203.2', 1678529038, '__ci_last_regenerate|i:1678529038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39f31dc4955a2885bb9f4d3db3270b16e32a6325', '31.222.203.2', 1678529039, '__ci_last_regenerate|i:1678529039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14cdf6cb6454da51e4ca6a3d0fa157a97ca5105a', '31.222.203.2', 1678529039, '__ci_last_regenerate|i:1678529039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b83cf6c8092a999a3d3168c2c97203130a96ecfe', '31.222.203.2', 1678529039, '__ci_last_regenerate|i:1678529039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('388d6a91d79b456b3af0b83b8dba72c06e9b7cb6', '37.111.219.135', 1678531967, '__ci_last_regenerate|i:1678531967;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678530223;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5e7fa9767b864c7a842a5f6131d9b26c7c6eedc', '31.222.203.2', 1678530850, '__ci_last_regenerate|i:1678530850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c56906c87d175b2ff64baaf9e2bb76ba6642a9b9', '31.222.203.2', 1678530850, '__ci_last_regenerate|i:1678530850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c7932702b8961a6191cfa011bf7be3470c1678d', '31.222.203.2', 1678530850, '__ci_last_regenerate|i:1678530850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb2d2c2ea838e552acf4a0afd1aa60967e988f7e', '31.222.203.2', 1678530850, '__ci_last_regenerate|i:1678530850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e516494a4545c63e89f3ce5ad5a27f20b456a1a', '31.222.203.2', 1678530850, '__ci_last_regenerate|i:1678530850;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb828af53867136d0b3e461c8a6602384577c2ad', '31.222.203.2', 1678530850, '__ci_last_regenerate|i:1678530850;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7b16cbc17c9da2b4a01643e42f36af5544da07', '37.111.219.135', 1678532649, '__ci_last_regenerate|i:1678532649;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678530223;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d277974d30b07bffd4af1c32fe1831e2c1d386ab', '31.222.203.2', 1678532641, '__ci_last_regenerate|i:1678532641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aaf7b3444f340d2514eef418054e163d6c0b796', '31.222.203.2', 1678532643, '__ci_last_regenerate|i:1678532643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0454f7315ccc21295560c797741b8cdd72269f97', '31.222.203.2', 1678532643, '__ci_last_regenerate|i:1678532643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada88720db077cd194e0cd9b966bd3888c1de059', '31.222.203.2', 1678532643, '__ci_last_regenerate|i:1678532643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2a1d0a1fa4fe698ad28e263bb99689825f76604', '31.222.203.2', 1678532643, '__ci_last_regenerate|i:1678532643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('276282034538865ff150a41e439269061a60de87', '31.222.203.2', 1678532643, '__ci_last_regenerate|i:1678532643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0d893145120002c582b7c378f68a3212607497', '37.111.219.135', 1678536049, '__ci_last_regenerate|i:1678536049;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678532659;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aae13b91010104f43739bb9177ec6e095f9dd6d5', '31.222.203.2', 1678534452, '__ci_last_regenerate|i:1678534452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a061a12ebbad2abf5f7a8d207ee891956426fb', '31.222.203.2', 1678534454, '__ci_last_regenerate|i:1678534454;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c016cf160ee7328e1e165ba7c13ba7479f5566b8', '31.222.203.2', 1678534454, '__ci_last_regenerate|i:1678534454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb663cb028514592c3d0c5e2b8d2b74eaf69658', '31.222.203.2', 1678534454, '__ci_last_regenerate|i:1678534454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0cdb2887a6a363242b325dcf9ee31a547b74f45', '31.222.203.2', 1678534454, '__ci_last_regenerate|i:1678534454;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94b235f5a3f921a0d19c46aad39c674c4876cab1', '31.222.203.2', 1678534454, '__ci_last_regenerate|i:1678534454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5eb522c77900a1d3356f386eb3d3634b92cd3a0e', '37.111.219.135', 1678540382, '__ci_last_regenerate|i:1678540382;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678540357;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24a395c5a9fc64a7b70d2f42db5ae3003088c9e0', '31.222.203.2', 1678536239, '__ci_last_regenerate|i:1678536239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dba6d132bb0414d9f9f366f9ddcffde8ad4febe1', '31.222.203.2', 1678536239, '__ci_last_regenerate|i:1678536239;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2bbd25a60ef18b474b05cd475a3804e0e597089', '31.222.203.2', 1678536239, '__ci_last_regenerate|i:1678536239;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eb63e5c7359129821da35eff9bae53bbce8ee4f', '31.222.203.2', 1678536240, '__ci_last_regenerate|i:1678536240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e9c0507be30a786b9d3a37556810f562fbae6e3', '31.222.203.2', 1678536241, '__ci_last_regenerate|i:1678536241;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4de4a48883bc08aa3c5ef8c1f27f0ee322dc12c', '31.222.203.2', 1678536241, '__ci_last_regenerate|i:1678536241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('143668024a68f03d70a98467effc1c850c18efe0', '31.222.203.2', 1678538049, '__ci_last_regenerate|i:1678538049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ffa332cee472abc6227b978e2ff89bcd8b00ef', '31.222.203.2', 1678538049, '__ci_last_regenerate|i:1678538049;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5de380cc40b8cc874840cdbc0bd53eca3f44cb2a', '31.222.203.2', 1678538049, '__ci_last_regenerate|i:1678538049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdfbbee454a493fd5bdcb246d03dada7849e5218', '31.222.203.2', 1678538049, '__ci_last_regenerate|i:1678538049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16095d48efedd1d2477b8aa39ff6fd7e8a9dc965', '31.222.203.2', 1678538049, '__ci_last_regenerate|i:1678538049;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d30822be0e453f88f5dea28bdcf700f6e76cbb6', '31.222.203.2', 1678538049, '__ci_last_regenerate|i:1678538049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc0169e8ad0b80b9a11a84858a9d69878810dc8', '31.222.203.2', 1678539843, '__ci_last_regenerate|i:1678539843;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78c793ec3ef7636b7fad62752fb186c895b728f8', '31.222.203.2', 1678539844, '__ci_last_regenerate|i:1678539844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fed0a7c31b91d147cbd06e3488bc5d9f6853e447', '31.222.203.2', 1678539844, '__ci_last_regenerate|i:1678539844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c26da65bc20fdddab0a38c3921924f0f7c6ba24', '31.222.203.2', 1678539844, '__ci_last_regenerate|i:1678539844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2098a96eb8aaacf1350ea14ee1df2fba018bf361', '31.222.203.2', 1678539844, '__ci_last_regenerate|i:1678539844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75c5dd61ff804ba83c7b53f5f4cc5927f8bd950', '31.222.203.2', 1678539844, '__ci_last_regenerate|i:1678539844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4203a90ffe9330a8bf47fd19fe98d24be41afce1', '37.111.219.135', 1678542338, '__ci_last_regenerate|i:1678542338;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678540384;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230c7f7cecdaf0f0df38bf53be34e0d13cf218e0', '116.204.230.28', 1678541705, '__ci_last_regenerate|i:1678541419;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678449610\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"JQj4duwhYBKmbUVCtP0S\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d84ea5116d4a0a57ee635c7ca00946f259e08b2', '31.222.203.2', 1678541657, '__ci_last_regenerate|i:1678541657;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7baa2a79e3afc34852a766e8a70976d2e01a13e9', '31.222.203.2', 1678541658, '__ci_last_regenerate|i:1678541658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42cece732a3bb5e77dfb1721c723de4092665bbf', '31.222.203.2', 1678541658, '__ci_last_regenerate|i:1678541658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79efadb61d08aa6ad57849488afa8a388e30568', '31.222.203.2', 1678541658, '__ci_last_regenerate|i:1678541658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f8925b8aa32a57391b18cb9fadd3f52ee3bed2', '31.222.203.2', 1678541658, '__ci_last_regenerate|i:1678541658;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbf6ae684dc62b8c8ca1bca12f91c9063390ad3', '31.222.203.2', 1678541658, '__ci_last_regenerate|i:1678541658;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44f58b6a667dff35bc54d93f6b9a620c8fcfdfa', '37.111.219.135', 1678542849, '__ci_last_regenerate|i:1678542849;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678542845;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d32042e7ee506fad26116ea3c4a884f65b6eaf', '37.111.219.135', 1678546702, '__ci_last_regenerate|i:1678546702;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678542849;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7840a424bd22e1e630211d1d89cea8a515dbc759', '31.222.203.2', 1678543456, '__ci_last_regenerate|i:1678543456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b0685eb1155185e28c4d7ff0a5c9148300a141', '31.222.203.2', 1678543456, '__ci_last_regenerate|i:1678543456;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afaa8ecac67359b234e250b743ad7125a715a14c', '31.222.203.2', 1678543456, '__ci_last_regenerate|i:1678543456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7525052a95f6e9d54b27918834ccf9981cd8a22a', '31.222.203.2', 1678543457, '__ci_last_regenerate|i:1678543457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c7330c7662187e8d962a461e3a14e23867bd2c6', '31.222.203.2', 1678543457, '__ci_last_regenerate|i:1678543457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f974659d1d12f2c8013ac40b87dd53476f73277', '31.222.203.2', 1678543457, '__ci_last_regenerate|i:1678543457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58319134a44d6b6e6f3100bf15b6cba7c47d35bf', '31.222.203.2', 1678545261, '__ci_last_regenerate|i:1678545261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd0a3718c46b40e463a89422b250fb596109db67', '31.222.203.2', 1678545261, '__ci_last_regenerate|i:1678545261;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dae29228f7a3cc1c7ebc5926da5cc5943e43dd2', '31.222.203.2', 1678545261, '__ci_last_regenerate|i:1678545261;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a000efa06fcb45bb8517b4bd50d65b1ee79f0c56', '31.222.203.2', 1678545262, '__ci_last_regenerate|i:1678545262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dced92da9dc49ca795d19128e46afe2aa8959c7', '31.222.203.2', 1678545262, '__ci_last_regenerate|i:1678545262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d80e6a44858fcced57c6174cd5b2d08cde01ae9', '31.222.203.2', 1678545262, '__ci_last_regenerate|i:1678545262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf53b50787c4e8f046b33357bbb50661a41c1eb0', '37.111.219.135', 1678547005, '__ci_last_regenerate|i:1678547005;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678547000;register_id|s:3:\"366\";cash_in_hand|s:8:\"790.0000\";register_open_time|s:19:\"2023-03-10 21:32:15\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adcd560664154a387120c1c3bf93ee7e85dfa2d0', '37.111.219.135', 1678547029, '__ci_last_regenerate|i:1678547005;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678446960\";last_ip|s:14:\"37.111.219.163\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678547028;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('764bbae2f153040b8d31df99fd20c1f9d7aebb54', '31.222.203.2', 1678547042, '__ci_last_regenerate|i:1678547042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e046bacce8025225c75aeb82eb7a81e3bb7cb56', '31.222.203.2', 1678547042, '__ci_last_regenerate|i:1678547042;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a6f0904157ff782b5965372ba9221e083e0df9f', '31.222.203.2', 1678547042, '__ci_last_regenerate|i:1678547042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e5a022b257d556a33ca3e9e03ca6fae22d9bd7', '31.222.203.2', 1678547042, '__ci_last_regenerate|i:1678547042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e81b9176d0fcaf50275ea877447d1be4b4cb1c2', '31.222.203.2', 1678547042, '__ci_last_regenerate|i:1678547042;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7685665aeebf66e9ef896031d519cfe286c3aafc', '31.222.203.2', 1678547042, '__ci_last_regenerate|i:1678547042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16f2963fe3d5a1579466d404ac6cf7455a6c6966', '31.222.203.2', 1678548874, '__ci_last_regenerate|i:1678548874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d5c4b99847b6b9c4d57a5fc03a948f75720934f', '31.222.203.2', 1678548874, '__ci_last_regenerate|i:1678548874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c81dcfe61d93f7b9c188165a3e6ec3f18efbef', '31.222.203.2', 1678548874, '__ci_last_regenerate|i:1678548874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4fe8d1f62d3f7160a7f6c5e8e2499da44cb02c5', '31.222.203.2', 1678548874, '__ci_last_regenerate|i:1678548874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b0e778f98565409970a3c446276ced67dad31d', '31.222.203.2', 1678548874, '__ci_last_regenerate|i:1678548874;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0bd86ab98525d9de6165ba65bfbb4360d72a551', '31.222.203.2', 1678548874, '__ci_last_regenerate|i:1678548874;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9710a37c9e74e6ee2a353d9f8f82b564a95cfbc0', '31.222.203.2', 1678550640, '__ci_last_regenerate|i:1678550640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b1b904d48e7c7dfa4af67931d8c292ee747f2b', '31.222.203.2', 1678550640, '__ci_last_regenerate|i:1678550640;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9165caf55dca8229672a484536038c9fc6568ef5', '31.222.203.2', 1678550640, '__ci_last_regenerate|i:1678550640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a4f76b7b10ce4c10dd6aadf6000f57a18b79e9', '31.222.203.2', 1678550641, '__ci_last_regenerate|i:1678550641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad29e460338ce5de97ed903aa438d876954bf34f', '31.222.203.2', 1678550641, '__ci_last_regenerate|i:1678550641;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f0b4687d2201dc409afad4081e802be989238d', '31.222.203.2', 1678550641, '__ci_last_regenerate|i:1678550641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('990ae6e137c7aef462cbdb61f31be1253daaf476', '31.222.203.2', 1678552438, '__ci_last_regenerate|i:1678552438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eed39f1c3d7ca2e6c74bbe5bfcdbbd505105e47', '31.222.203.2', 1678552438, '__ci_last_regenerate|i:1678552438;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f080b0134c68b4f340d03b07ded2993b6a9c021f', '31.222.203.2', 1678552438, '__ci_last_regenerate|i:1678552438;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54af492d324824f5609a3be341f5d7ddc3f1ed3d', '31.222.203.2', 1678552440, '__ci_last_regenerate|i:1678552440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd5c0baf392dafb7503c731758d3c5197e36c25', '31.222.203.2', 1678552440, '__ci_last_regenerate|i:1678552440;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85abc4cb7fb03f007696b2330a23d873e092991', '31.222.203.2', 1678552440, '__ci_last_regenerate|i:1678552440;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb1a89c317f052aff44d3faa4625a6a7d72cb51', '31.222.203.2', 1678554272, '__ci_last_regenerate|i:1678554272;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58c0cee7162397d1eaa2a9901d1aa36455203282', '31.222.203.2', 1678554274, '__ci_last_regenerate|i:1678554274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bade948ef1aca299023b1a94815d8c98c8daf4f3', '31.222.203.2', 1678554274, '__ci_last_regenerate|i:1678554274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5bab4628d9d8ae3ac6bb3f0e6eb51a31b77baf1', '31.222.203.2', 1678554274, '__ci_last_regenerate|i:1678554274;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa47fe4d56bcdb62d7b97fcabe9ceff9d766ea15', '31.222.203.2', 1678554274, '__ci_last_regenerate|i:1678554274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51d8b3435cdf692dbd77f8e673b6445f544d1bfa', '31.222.203.2', 1678554274, '__ci_last_regenerate|i:1678554274;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e471665b27001e7a57048f62a7451bd4b7fac7', '31.222.203.2', 1678556071, '__ci_last_regenerate|i:1678556071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3f58b893c07b71b3756ab9e298ef51dc363e771', '31.222.203.2', 1678556071, '__ci_last_regenerate|i:1678556071;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dbf2da4734cd5b10a9a161559481ae4efd9200d', '31.222.203.2', 1678556071, '__ci_last_regenerate|i:1678556071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('994e8727682ac4e664004185d75078358e2ddd55', '31.222.203.2', 1678556071, '__ci_last_regenerate|i:1678556071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d978b2fb303e44ac3b5b30f9c18d27e97839adef', '31.222.203.2', 1678556071, '__ci_last_regenerate|i:1678556071;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f57548b69a71a083700df4d3eec4ffc118e098a6', '31.222.203.2', 1678556071, '__ci_last_regenerate|i:1678556071;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df529bc3b74e23fbd3d16c9a1bb2d41c61c259b', '31.222.203.2', 1678557877, '__ci_last_regenerate|i:1678557877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a9374a870132d48b900f9b351c6a9f79acb8733', '31.222.203.2', 1678557877, '__ci_last_regenerate|i:1678557877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbd663f181f33dbc1437d0e1c27ef8415616ff6b', '31.222.203.2', 1678557877, '__ci_last_regenerate|i:1678557877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2e3e810973e1fe231de66884c72eb04e16d707c', '31.222.203.2', 1678557877, '__ci_last_regenerate|i:1678557877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a5524c822714ca12d1a93705116e3c7a494ab1', '31.222.203.2', 1678557877, '__ci_last_regenerate|i:1678557877;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1199950bc340487dc8818d185f64c7f05c9b9c7b', '31.222.203.2', 1678557877, '__ci_last_regenerate|i:1678557877;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('034227b12fed07571ea0e164df5e5ae90d229c5d', '31.222.203.2', 1678559659, '__ci_last_regenerate|i:1678559659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9109c4175925d3e978fecc6f15998a2b28be7de1', '31.222.203.2', 1678559659, '__ci_last_regenerate|i:1678559659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17acb979bd06cef74e00ddc864ce7f6b2855a72c', '31.222.203.2', 1678559659, '__ci_last_regenerate|i:1678559659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd12f1290bc6a3f20b3495e03dcdf42fcf5d9d5', '31.222.203.2', 1678559659, '__ci_last_regenerate|i:1678559659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1475f993ddd311865d0684475366775503e5b2ed', '31.222.203.2', 1678559659, '__ci_last_regenerate|i:1678559659;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6aefbaea1aebffde0c9c66afbfe11b38fccd2fb', '31.222.203.2', 1678559659, '__ci_last_regenerate|i:1678559659;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c685199fe32113848cfd4106b4e21313b1ad84f4', '198.235.24.12', 1678560030, '__ci_last_regenerate|i:1678560030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fffe940fb29b531487dac384c2165c5fc1181785', '198.235.24.12', 1678560030, '__ci_last_regenerate|i:1678560030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('616530c3aa91514a5f7e1d944779fe037d0af14b', '198.235.24.12', 1678560031, '__ci_last_regenerate|i:1678560031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baca22c0c58730a287643ca795d9cbe845e49abc', '31.222.203.2', 1678561469, '__ci_last_regenerate|i:1678561469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ce7f8737942058663324a861d889dddb3193b38', '31.222.203.2', 1678561469, '__ci_last_regenerate|i:1678561469;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dc3770a0699fe3036318914410afcc06944283', '31.222.203.2', 1678561469, '__ci_last_regenerate|i:1678561469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22141b90f1ad5555ab4a73e9dc112185e3427e86', '31.222.203.2', 1678561469, '__ci_last_regenerate|i:1678561469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7026235191bb05a4d6ff0f4a03135a4375a34067', '31.222.203.2', 1678561469, '__ci_last_regenerate|i:1678561469;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4f22ea4ce9938c8527e13e2144c2ff109d79655', '31.222.203.2', 1678561469, '__ci_last_regenerate|i:1678561469;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('621ab2526538f10701d6c2c9203cc7e33bad3c2e', '31.222.203.2', 1678563262, '__ci_last_regenerate|i:1678563262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93d63e2616e507861bcf23c7b9713382bb2f0600', '31.222.203.2', 1678563262, '__ci_last_regenerate|i:1678563262;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e635e1694125dff7f0c81e2d59eb5658c66bfbd', '31.222.203.2', 1678563262, '__ci_last_regenerate|i:1678563262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f3e03dbfc48fb9bbcbe7815bbdd26fc5e4b7264', '31.222.203.2', 1678563263, '__ci_last_regenerate|i:1678563263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('808d9ddb1b75d5bd5d79b92f7043eec17d4610be', '31.222.203.2', 1678563263, '__ci_last_regenerate|i:1678563263;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da5477e590c85404af8b6f60cd3431d5cc11336', '31.222.203.2', 1678563263, '__ci_last_regenerate|i:1678563263;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('419901e170314cb1b48bf0c9717bc8069cfa4229', '31.222.203.2', 1678565068, '__ci_last_regenerate|i:1678565068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccbbda9c0e80913d626f398c532be24a9ee47f69', '31.222.203.2', 1678565068, '__ci_last_regenerate|i:1678565068;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f906c0c26744d6c88a767e95f7805d3628c0de75', '31.222.203.2', 1678565068, '__ci_last_regenerate|i:1678565068;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1451455dad04e73ef3a49a8ea0a277fcdd58dc2a', '31.222.203.2', 1678565069, '__ci_last_regenerate|i:1678565069;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9caa4218826f343bee3b4131f3a85511aaab580', '31.222.203.2', 1678565069, '__ci_last_regenerate|i:1678565069;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7576a7ec52eae5125613abed6e5e14dcb26d0c', '31.222.203.2', 1678565069, '__ci_last_regenerate|i:1678565069;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8090289f5c2ea41ba90fae1fadffe6aac23487a2', '31.222.203.2', 1678566858, '__ci_last_regenerate|i:1678566858;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314a53d5fead0c02a59f6fd56a60f4f3516ab564', '31.222.203.2', 1678566859, '__ci_last_regenerate|i:1678566859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9accc9c9fe7d2a41cdc1906ab22c95ce7e024c', '31.222.203.2', 1678566859, '__ci_last_regenerate|i:1678566859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc06e59884b802930a896a82a66d1ddb7122af2', '31.222.203.2', 1678566859, '__ci_last_regenerate|i:1678566859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f9adc48f36323de2ae76de337d9cb4b536ce87', '31.222.203.2', 1678566859, '__ci_last_regenerate|i:1678566859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('546a78ec68022132af11966a93b1fba9d8a98d2c', '31.222.203.2', 1678566859, '__ci_last_regenerate|i:1678566859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a185ed1356941127178d673fb93626f786c4b4c', '31.222.203.2', 1678568665, '__ci_last_regenerate|i:1678568665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ec9515a64c402a69dbbdf653845a11c02386070', '31.222.203.2', 1678568666, '__ci_last_regenerate|i:1678568666;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37f850f30721ad55f5d39519138559653a2e400', '31.222.203.2', 1678568666, '__ci_last_regenerate|i:1678568666;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10bbb42dfb2019154c5b3315a2132f9e902995a4', '31.222.203.2', 1678568666, '__ci_last_regenerate|i:1678568666;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ed9143c18f365471d9596c9d2fb7d9d454f2dcc', '31.222.203.2', 1678568666, '__ci_last_regenerate|i:1678568666;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92df1ba350b2e76ab87639fa8d59b865bfe1345b', '31.222.203.2', 1678568666, '__ci_last_regenerate|i:1678568666;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5a0678167a50b88245bcdc76cd7e0de6a9a99f7', '31.222.203.2', 1678570453, '__ci_last_regenerate|i:1678570453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9799e62d03c26a26c3b7da265b931ec1877036e9', '31.222.203.2', 1678570454, '__ci_last_regenerate|i:1678570454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('650f9b6c87f6ac34975127b7b13d9e3f7aba96a4', '31.222.203.2', 1678570454, '__ci_last_regenerate|i:1678570454;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4191a414068d602de6c93615cbffadc50d597479', '31.222.203.2', 1678570454, '__ci_last_regenerate|i:1678570454;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99250714adcd6daae9852c5572cb10223b6a8c71', '31.222.203.2', 1678570454, '__ci_last_regenerate|i:1678570454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34cc77b64ed8a1d681cae5624209dd00b6cdf980', '31.222.203.2', 1678570454, '__ci_last_regenerate|i:1678570454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('173930a7eb0a1dc0de83e61b4c257d37faa9decf', '31.222.203.2', 1678572229, '__ci_last_regenerate|i:1678572229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71662c2692e6cb358604c55b573bea84db8fc871', '31.222.203.2', 1678572229, '__ci_last_regenerate|i:1678572229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e23b742bdbf6a718187b3850e8815d8ef52b57', '31.222.203.2', 1678572229, '__ci_last_regenerate|i:1678572229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ad2e99f18c8fbb6fe1098e0dc0e7f412121191', '31.222.203.2', 1678572231, '__ci_last_regenerate|i:1678572231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('393b55397ad1ed052e22bc89331bf576771df659', '31.222.203.2', 1678572231, '__ci_last_regenerate|i:1678572231;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcdd3d3017185c855edec9d16e4065a4e004eea', '31.222.203.2', 1678572231, '__ci_last_regenerate|i:1678572231;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2621d845497996bbb75860258df3f8d3d2bedb3e', '31.222.203.2', 1678574039, '__ci_last_regenerate|i:1678574039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273bffbd6d98a050f5b8e957867b00ffde5212bb', '31.222.203.2', 1678574039, '__ci_last_regenerate|i:1678574039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80872c96d383a05bdb752437ded56358a1fef420', '31.222.203.2', 1678574039, '__ci_last_regenerate|i:1678574039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab007a4ff3d8b6aae6e612a56c0e30ed5cddcbe', '31.222.203.2', 1678574039, '__ci_last_regenerate|i:1678574039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0d298d6a1e7db3d2a675a30275f48ce5799ef0', '31.222.203.2', 1678574039, '__ci_last_regenerate|i:1678574039;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7364bbd45d8dc973ffa89a4a539f4d59761bae4', '31.222.203.2', 1678574039, '__ci_last_regenerate|i:1678574039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b7c784829b6bfeb72c95a7a3b5b9132183fca4', '31.222.203.2', 1678575852, '__ci_last_regenerate|i:1678575852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('294580ee537869f74675aefba3a33a068224c5cd', '31.222.203.2', 1678575854, '__ci_last_regenerate|i:1678575854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5e640136f6965dc1ff4f917165aa939cbb10d9', '31.222.203.2', 1678575854, '__ci_last_regenerate|i:1678575854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95b10034b620971774bc9216052cc5710a3e5320', '31.222.203.2', 1678575854, '__ci_last_regenerate|i:1678575854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbd87c921c56e03be047cf2481b7248291c4ef8a', '31.222.203.2', 1678575854, '__ci_last_regenerate|i:1678575854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c87fb46504f48cb2a51d1833c0a024ae4d8947', '31.222.203.2', 1678575854, '__ci_last_regenerate|i:1678575854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2d575e4ca43790b6dfaf2eba183a05d9a3f45a', '31.222.203.2', 1678577643, '__ci_last_regenerate|i:1678577643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f78e321eb79f82931c7186cc89bacb8407199a3', '31.222.203.2', 1678577643, '__ci_last_regenerate|i:1678577643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bb8d875caa98edcc285c21d3989e2b597b4e0c2', '31.222.203.2', 1678577643, '__ci_last_regenerate|i:1678577643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8926a48165f8da597204151bf5446cb4fd3e0e42', '31.222.203.2', 1678577643, '__ci_last_regenerate|i:1678577643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fa27f8aa6e744870c2421e64c53983ad420d5e', '31.222.203.2', 1678577643, '__ci_last_regenerate|i:1678577643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0664883f0709de62a0a724fca3e936909d24943e', '31.222.203.2', 1678577643, '__ci_last_regenerate|i:1678577643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f036315fe198516f538d6a8d7b6ade95215c60a6', '31.222.203.2', 1678579471, '__ci_last_regenerate|i:1678579471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be2f13df738bf2a1ea59f42232fea39699a8863d', '31.222.203.2', 1678579471, '__ci_last_regenerate|i:1678579471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068cd10364b5bd0a11471ef3a01ff8d58d27cc37', '31.222.203.2', 1678579471, '__ci_last_regenerate|i:1678579471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d765756e6e6c4cc3221a5b4f56c2bce12b72b08', '31.222.203.2', 1678579471, '__ci_last_regenerate|i:1678579471;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5237c6221d1de8bb96350d7f59585ce1b5de3d6', '31.222.203.2', 1678579471, '__ci_last_regenerate|i:1678579471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ec8750d605bc034380301b9c29cc3c512e1714b', '31.222.203.2', 1678579472, '__ci_last_regenerate|i:1678579471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0b129bf85bc0c4ab13459caaf7414a6f1c1b270', '31.222.203.2', 1678581256, '__ci_last_regenerate|i:1678581256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c17ce806ab11422351b24b24eac37b08d9bb1a53', '31.222.203.2', 1678581256, '__ci_last_regenerate|i:1678581256;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ba9490f5a93259259dde5edbfc4cb26ceb3ec58', '31.222.203.2', 1678581256, '__ci_last_regenerate|i:1678581256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a352332c0fb39cac31b36375fda9441a61bcc790', '31.222.203.2', 1678581257, '__ci_last_regenerate|i:1678581257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c104de06dfd0f98a860fad718ce89a5fa9e2b7', '31.222.203.2', 1678581257, '__ci_last_regenerate|i:1678581257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5baecd2b2b0ef783139508a8763e5f69256e11c5', '31.222.203.2', 1678581257, '__ci_last_regenerate|i:1678581257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b9e07698d48170a96331a356bdb304db43e4dc', '31.222.203.2', 1678583063, '__ci_last_regenerate|i:1678583063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f5f89bd1886c9822ecedb8937ad574b6e858efe', '31.222.203.2', 1678583064, '__ci_last_regenerate|i:1678583064;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48ea6e7d63c30e5c831567196b984c3f5a9a97a2', '31.222.203.2', 1678583064, '__ci_last_regenerate|i:1678583064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14534017edfe153b0b7dbc1eb0c577d0ae9fb4e9', '31.222.203.2', 1678583064, '__ci_last_regenerate|i:1678583064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c995a6b4d911d24db5f05ec8d4f02edd9a94988a', '31.222.203.2', 1678583064, '__ci_last_regenerate|i:1678583064;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4726b1b778a9f67b22d8f65f930317d94d558a42', '31.222.203.2', 1678583064, '__ci_last_regenerate|i:1678583064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9420225a6477138797cc7ab079de1de4e0d44195', '198.235.24.178', 1678583941, '__ci_last_regenerate|i:1678583941;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3cbf4eab2d68238a2f723f1dd46495011a1d0ea', '198.235.24.178', 1678583942, '__ci_last_regenerate|i:1678583942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2c139148a476f0de2d6643f58654377dc9bdd91', '198.235.24.178', 1678583942, '__ci_last_regenerate|i:1678583942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6c1f5c31c1538e48a39e502538a5b9b44e12e1', '31.222.203.2', 1678584859, '__ci_last_regenerate|i:1678584859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6495cae28bf62c94273422873104f7f60837ec0d', '31.222.203.2', 1678584860, '__ci_last_regenerate|i:1678584860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e884024a1dfc569b458cc959d02aec08a070f976', '31.222.203.2', 1678584860, '__ci_last_regenerate|i:1678584860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f624bcd0e5dda4be313d0dc51dfb36ab2a8db5e', '31.222.203.2', 1678584860, '__ci_last_regenerate|i:1678584860;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f58733cff32fea7f4094d7ee474ea914db527b2', '31.222.203.2', 1678584860, '__ci_last_regenerate|i:1678584860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f76aba48e1e4cb53d8677e829a274809f7d521a', '31.222.203.2', 1678584860, '__ci_last_regenerate|i:1678584860;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f5451e3a5ddd16efd11d5d1e143c7ca53209e2', '31.222.203.2', 1678586670, '__ci_last_regenerate|i:1678586670;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78cddc8aa48df641ffccd852ac16062349cf46f8', '31.222.203.2', 1678586672, '__ci_last_regenerate|i:1678586672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc74e4a447a251f1eaaea4032ecad84ba8256ffd', '31.222.203.2', 1678586672, '__ci_last_regenerate|i:1678586672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f628021f7b451d23bcd925d6b24a9b51ff2ced', '31.222.203.2', 1678586672, '__ci_last_regenerate|i:1678586672;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0363585bf5a1e51b82e1716608cf9b9854e58eb0', '31.222.203.2', 1678586672, '__ci_last_regenerate|i:1678586672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('138b9e8e4a6cb91921613f55f3caca9078b59770', '31.222.203.2', 1678586672, '__ci_last_regenerate|i:1678586672;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a3ec4eef81b85119d1d0b19782970df3ee28a36', '31.222.203.2', 1678588442, '__ci_last_regenerate|i:1678588442;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9aea6f91e98b239ce78370b96a643b0741109f9', '31.222.203.2', 1678588444, '__ci_last_regenerate|i:1678588444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8da584e23f0b6020dcec0b34efb1da2a9d07b44', '31.222.203.2', 1678588444, '__ci_last_regenerate|i:1678588444;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7466bf8047b0ba125aba695f284addceb3a439a2', '31.222.203.2', 1678588444, '__ci_last_regenerate|i:1678588444;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb9c6509689ac8955e48eb9e3d7e9c277e8f07f', '31.222.203.2', 1678588444, '__ci_last_regenerate|i:1678588444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6573104f4ca385b2790a30692f0202f46422d387', '31.222.203.2', 1678588444, '__ci_last_regenerate|i:1678588444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93124e6b0c4392048168f8d4244cd012654c2591', '31.222.203.2', 1678590242, '__ci_last_regenerate|i:1678590242;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7939e6c70d66e614a2bffa54e8d12d07008288bd', '31.222.203.2', 1678590243, '__ci_last_regenerate|i:1678590243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('339c9f656a3ad572b72be4a3762d9d5ec7a7538a', '31.222.203.2', 1678590243, '__ci_last_regenerate|i:1678590243;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ddfbef9e1de18a87e5545b5e4e0d88ef647c4ff', '31.222.203.2', 1678590243, '__ci_last_regenerate|i:1678590243;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('169f0593aebfacb763f9c88b86603455492d975b', '31.222.203.2', 1678590243, '__ci_last_regenerate|i:1678590243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('775a482f0da01594082e57d83061176a786561fa', '31.222.203.2', 1678590243, '__ci_last_regenerate|i:1678590243;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e61dfb59e28f22578e9612db121fb3692c04f140', '31.222.203.2', 1678592050, '__ci_last_regenerate|i:1678592050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6a035b69289788c31c40edc883c1997f2083ae', '31.222.203.2', 1678592050, '__ci_last_regenerate|i:1678592050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6616fd12ea70012acfb46934b96543fff63ac50e', '31.222.203.2', 1678592050, '__ci_last_regenerate|i:1678592050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('277f4d13688638b44f844a2bb9525b5453815a02', '31.222.203.2', 1678592050, '__ci_last_regenerate|i:1678592050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456013657b161c5ba70eb3c1ab7009679be6ac27', '31.222.203.2', 1678592050, '__ci_last_regenerate|i:1678592050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ad53b26ffde93719e47621ab11d872a1e3c9d0', '31.222.203.2', 1678592050, '__ci_last_regenerate|i:1678592050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('485ebf563a8f2574445fcb1cb5aae3113087492d', '31.222.203.2', 1678593844, '__ci_last_regenerate|i:1678593844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a205180b88168116d726f0b803bec624a2288e8a', '31.222.203.2', 1678593844, '__ci_last_regenerate|i:1678593844;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('004069a960142c213191d34054f5f9e7a0dfec4e', '31.222.203.2', 1678593844, '__ci_last_regenerate|i:1678593844;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4ec80515be73b91b52c7039422968c37876bbc', '31.222.203.2', 1678593845, '__ci_last_regenerate|i:1678593845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171bc465702e8a9f65d7473e225c6d3efa6b3aa2', '31.222.203.2', 1678593845, '__ci_last_regenerate|i:1678593845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6d1b30cfbe79396328b0a7c5b814a28d69e36b', '31.222.203.2', 1678593845, '__ci_last_regenerate|i:1678593845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd2db6fabd2eebb090a86c0582bc2081504b762', '31.222.203.2', 1678595661, '__ci_last_regenerate|i:1678595661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c9786e0f3c9869f690c6f489dc2c9f983cc937', '31.222.203.2', 1678595661, '__ci_last_regenerate|i:1678595661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c34473703b804aca4c7f83d441bf67d1ebf87f7', '31.222.203.2', 1678595661, '__ci_last_regenerate|i:1678595661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd0c61d40bcc3f64c1437868143d7d4f1eb6f4a1', '31.222.203.2', 1678595661, '__ci_last_regenerate|i:1678595661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('853f2bff25829a0ecbbf77a46d023389f9f5dec6', '31.222.203.2', 1678595661, '__ci_last_regenerate|i:1678595661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('120f36b644275b231c4d00c6382f1a6bce859172', '31.222.203.2', 1678595661, '__ci_last_regenerate|i:1678595661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb88872eda179ed60757bfacc8412f92b31e725', '31.222.203.2', 1678597460, '__ci_last_regenerate|i:1678597460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c337e20daef9e6dfcd4a66c5a327236b00d9761', '31.222.203.2', 1678597460, '__ci_last_regenerate|i:1678597460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f077de69d4756646262979ef700b87a8f55fba', '31.222.203.2', 1678597460, '__ci_last_regenerate|i:1678597460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c32c7e7707333758caada773134b8275f9f3a76', '31.222.203.2', 1678597460, '__ci_last_regenerate|i:1678597460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ecaa5b72ae634ce74b77911e7067a12e22c35fb', '31.222.203.2', 1678597461, '__ci_last_regenerate|i:1678597461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbe9daf7b7a1fc8027266a5fd3c4dd0a0a882911', '31.222.203.2', 1678597461, '__ci_last_regenerate|i:1678597461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a934688365578d17a45fd0de6da7d8fedf7c2b65', '31.222.203.2', 1678599268, '__ci_last_regenerate|i:1678599268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a96b54d16348577974e379c7577cea6132d05dac', '31.222.203.2', 1678599268, '__ci_last_regenerate|i:1678599268;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15bfab030b7e7ea61b02d53f211cc4890c6d77af', '31.222.203.2', 1678599268, '__ci_last_regenerate|i:1678599268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f04f749e96c3b839944793616b5f91cfd4fbad34', '31.222.203.2', 1678599268, '__ci_last_regenerate|i:1678599268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('298ac2d43d189d85340ee58ab24571d5762c30f9', '31.222.203.2', 1678599268, '__ci_last_regenerate|i:1678599268;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b28b12ffcb0fe7820d094e0beddbee6246349e', '31.222.203.2', 1678599268, '__ci_last_regenerate|i:1678599268;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5009541d7cdca7e1dabb777aadc80ecdf71a6e9d', '31.222.203.2', 1678601063, '__ci_last_regenerate|i:1678601063;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f186a50b8788ed9c94315b2c4111c6a4768fc305', '31.222.203.2', 1678601064, '__ci_last_regenerate|i:1678601064;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6b90312c9c6f2c58afa2a0f036f3679af5e74bf', '31.222.203.2', 1678601064, '__ci_last_regenerate|i:1678601064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4818037ad5e447a854bf5f53884bdd3ebc1de7fb', '31.222.203.2', 1678601064, '__ci_last_regenerate|i:1678601064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db36c26abb1ffd03de72380e77e1eaa5a1772249', '31.222.203.2', 1678601064, '__ci_last_regenerate|i:1678601064;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1055068fee1d7230f25b01ccc047decd36db3ae2', '31.222.203.2', 1678601064, '__ci_last_regenerate|i:1678601064;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0794bef46a6d3d6f688a3b7408334edc76b17e79', '31.222.203.2', 1678602857, '__ci_last_regenerate|i:1678602857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('835a0fc28ea66f9306ff3bb60b21f43c3d387093', '31.222.203.2', 1678602859, '__ci_last_regenerate|i:1678602859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31dc72e7c60235e1c0a7f867d3518d108dff8ce4', '31.222.203.2', 1678602859, '__ci_last_regenerate|i:1678602859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce36a5c31bb960074ee3cec61dc4abf163c0dcb', '31.222.203.2', 1678602859, '__ci_last_regenerate|i:1678602859;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2983ac7ab9affab6adfe0509053641f7ad45c671', '31.222.203.2', 1678602859, '__ci_last_regenerate|i:1678602859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54b0f8e5c173260741638ae8563e6b2b4630b75', '31.222.203.2', 1678602859, '__ci_last_regenerate|i:1678602859;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa028966815892eef09b18376d397e7a0abbf3d4', '205.210.31.23', 1678602928, '__ci_last_regenerate|i:1678602928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03d0e6083d8c28e311ba3d659151415bfd43e3ed', '205.210.31.23', 1678602929, '__ci_last_regenerate|i:1678602929;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1d5c5746574905ef7fc2f263bff19a0f1d95597', '205.210.31.23', 1678602929, '__ci_last_regenerate|i:1678602929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8a50a7109ead54ae3d075822f96e1beca4be9b3', '116.204.230.28', 1678604734, '__ci_last_regenerate|i:1678604734;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678541434\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1001145a4a14c4a8ddf625199b08adfd4271cc50', '31.222.203.2', 1678604646, '__ci_last_regenerate|i:1678604646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eaf988b2b34e23bd0cecd2c8fe0793a80acdb04', '31.222.203.2', 1678604646, '__ci_last_regenerate|i:1678604646;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581224e4a46f613ecfa7618eeae8251c320c99e3', '31.222.203.2', 1678604646, '__ci_last_regenerate|i:1678604646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f778a1aa17327f0296ea445a3be71f1ee36da6a2', '31.222.203.2', 1678604647, '__ci_last_regenerate|i:1678604647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5364c08f3f327dabe688ca0d63d524a068a342da', '31.222.203.2', 1678604647, '__ci_last_regenerate|i:1678604647;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('346432f00ee2fa5dd7fda7ce9201cf5eb457ef2d', '31.222.203.2', 1678604647, '__ci_last_regenerate|i:1678604647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e7b2e40bef1de4a5b1c4e2e7fe837cb55c05fba', '116.204.230.28', 1678604855, '__ci_last_regenerate|i:1678604734;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678541434\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abc12d5d1078873011c29aa32c07eb904ca2d4cd', '37.111.217.8', 1678609645, '__ci_last_regenerate|i:1678609645;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678512131\";last_ip|s:14:\"37.111.219.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678604951;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('897260b7579e71a0621d2a066f419b58a5ef8a1a', '31.222.203.2', 1678606460, '__ci_last_regenerate|i:1678606460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21387e9bcc9e615edabefa6cc0378571132b7132', '31.222.203.2', 1678606461, '__ci_last_regenerate|i:1678606461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43cb14f9949d5ad41834246c358ebc5d930c8725', '31.222.203.2', 1678606461, '__ci_last_regenerate|i:1678606461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eed9fe495b06822975f43fbef863457046900935', '31.222.203.2', 1678606461, '__ci_last_regenerate|i:1678606461;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b666c1477a4962b416ee4ae6819fccfbcfd0e5f0', '31.222.203.2', 1678606461, '__ci_last_regenerate|i:1678606461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe53aa60db48e4c4c28b42155b207be01ec39e56', '31.222.203.2', 1678606461, '__ci_last_regenerate|i:1678606461;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50dbd17a54617e7e9fcb892af71b07b038de678b', '31.222.203.2', 1678608252, '__ci_last_regenerate|i:1678608252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdfa13e284502362800b083d888a44b792fdfb6', '31.222.203.2', 1678608252, '__ci_last_regenerate|i:1678608252;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa269445dd577aec072d858cc70e6aa44167d0df', '31.222.203.2', 1678608252, '__ci_last_regenerate|i:1678608252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682757edbac3e424c766545f8872008fd3836a51', '31.222.203.2', 1678608252, '__ci_last_regenerate|i:1678608252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b78fa732eabaa60a3b2041df9bb519bf8bed3c', '31.222.203.2', 1678608252, '__ci_last_regenerate|i:1678608252;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7708e6da26c868894f7080a1883f8a211e6c60e', '31.222.203.2', 1678608252, '__ci_last_regenerate|i:1678608252;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2df80326de297c1dc9ff774b2247711d9ce680a1', '37.111.217.8', 1678609660, '__ci_last_regenerate|i:1678609645;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678512131\";last_ip|s:14:\"37.111.219.135\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678609660;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5557577ed2dbb537b6bdf323ad188e3d904276ea', '31.222.203.2', 1678610061, '__ci_last_regenerate|i:1678610061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3acf26b9d92b9e93c4557d6816512eb75d91316', '31.222.203.2', 1678610061, '__ci_last_regenerate|i:1678610061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5459aacbcf1305964cb3136b8328d5616c28ecf3', '31.222.203.2', 1678610061, '__ci_last_regenerate|i:1678610061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09dbc41804f753898554ddd34f69895150554ccd', '31.222.203.2', 1678610061, '__ci_last_regenerate|i:1678610061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54038e9b0feeaea1c01f8d1a6fde840dd34ce428', '31.222.203.2', 1678610061, '__ci_last_regenerate|i:1678610061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de5c724f19fdb940d1f9a45a58fac9ead3dddc40', '31.222.203.2', 1678610061, '__ci_last_regenerate|i:1678610061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af952d567ccef0f3a47022729f34b89f37fbfe5f', '198.235.24.11', 1678610492, '__ci_last_regenerate|i:1678610492;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7a7d43d31c5ab09d6d13b840054dd9bbdf0957f', '198.235.24.11', 1678610494, '__ci_last_regenerate|i:1678610494;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('549ed20ef3764b3391eabb00d49b142a06808680', '198.235.24.11', 1678610495, '__ci_last_regenerate|i:1678610495;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47fa0800e8690c4cdba147b83792dc06718f129', '31.222.203.2', 1678611853, '__ci_last_regenerate|i:1678611853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('538fa4da903a53ffae8d66fb5896b362c280cb4c', '31.222.203.2', 1678611853, '__ci_last_regenerate|i:1678611853;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c04641c4b6c60819df748fe301e1fa00962d00f9', '31.222.203.2', 1678611853, '__ci_last_regenerate|i:1678611853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381d5b3c357c6d6f8cd8dc0911eb4424e0a335ea', '31.222.203.2', 1678611855, '__ci_last_regenerate|i:1678611855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59303796f0fd2fd2cd2ae1e4ac5667c18325a1da', '31.222.203.2', 1678611855, '__ci_last_regenerate|i:1678611855;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6bbec3dcbff48cc4b764acae4a6d0da5aa0ae17', '31.222.203.2', 1678611855, '__ci_last_regenerate|i:1678611855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bf56af14e0312bb0e62f9156cac508f0d8cede2', '31.222.203.2', 1678613640, '__ci_last_regenerate|i:1678613640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a401cba46c98ec2b75550eab67de03b02f1f34f2', '31.222.203.2', 1678613640, '__ci_last_regenerate|i:1678613640;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6418219a442fef2da253fb5f179269cfc34b05d6', '31.222.203.2', 1678613640, '__ci_last_regenerate|i:1678613640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452cc99722c512b6b61b84fafaa99f83c312f695', '31.222.203.2', 1678613640, '__ci_last_regenerate|i:1678613640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f75f93ac148b2eeeaeec340293c70d1bc4dcc13c', '31.222.203.2', 1678613640, '__ci_last_regenerate|i:1678613640;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3b7da979360b51b52746a57b73497f7e40a7f8', '31.222.203.2', 1678613640, '__ci_last_regenerate|i:1678613640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03a7809755695a20b3d1c3985649018467d7de3b', '31.222.203.2', 1678615454, '__ci_last_regenerate|i:1678615454;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68dc045fed2cd0d54c82f05dbdf23b49ef8aa702', '31.222.203.2', 1678615455, '__ci_last_regenerate|i:1678615455;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb06d9337f8b08f7093576dc506b96dfe158f687', '31.222.203.2', 1678615455, '__ci_last_regenerate|i:1678615455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aafba14d1d338af8d6adfc3ced1cf7174554d7c9', '31.222.203.2', 1678615455, '__ci_last_regenerate|i:1678615455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7047a2a134f24d48b66dc6600804c16ec6fdc3d3', '31.222.203.2', 1678615455, '__ci_last_regenerate|i:1678615455;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6e6888eae11147f38426945f4f4f5cd7dd60d3', '31.222.203.2', 1678615455, '__ci_last_regenerate|i:1678615455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc03e5ab1a0ef54d8c11c4b315c6e7a99451d2c7', '31.222.203.2', 1678617266, '__ci_last_regenerate|i:1678617266;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e6f9e067b778f48ecd2e1988c18d3dfef393146', '31.222.203.2', 1678617266, '__ci_last_regenerate|i:1678617266;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58bf7539deb53e504d1dad389de7748991be24c9', '31.222.203.2', 1678617266, '__ci_last_regenerate|i:1678617266;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b68e2b7b02b3f7e005f7a59c3d9e17a8618faf', '31.222.203.2', 1678617266, '__ci_last_regenerate|i:1678617266;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c15cbea7d51d9132cbe5254e8da375534a810672', '31.222.203.2', 1678617266, '__ci_last_regenerate|i:1678617266;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32e52e6fbf90320687244aa767b27418f1d250ab', '31.222.203.2', 1678617266, '__ci_last_regenerate|i:1678617266;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9fc6369645738ecce4c3708998707209063f786', '37.111.217.8', 1678622324, '__ci_last_regenerate|i:1678622324;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678617529;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";error|N;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd7f1e6384fb38ced14b008cee3f9ecf043beb44', '31.222.203.2', 1678619047, '__ci_last_regenerate|i:1678619047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02817956c74a6dde88a05f4116e7cf2f3d42a515', '31.222.203.2', 1678619048, '__ci_last_regenerate|i:1678619048;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('723bf30952e01d5989e84dc0e2f8dc70989bbf95', '31.222.203.2', 1678619048, '__ci_last_regenerate|i:1678619048;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0215fc9b07678f1da993152592e55ced6302d3', '31.222.203.2', 1678619048, '__ci_last_regenerate|i:1678619048;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dea07b6654e126766b3a1d9ca0956ac815ccee6', '31.222.203.2', 1678619048, '__ci_last_regenerate|i:1678619048;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fb0f69a9c7b17f409471fb07f0ebd98e6652002', '31.222.203.2', 1678619048, '__ci_last_regenerate|i:1678619048;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b41f70e9a90d19c610aeb4f38b41db9989aad457', '31.222.203.2', 1678620852, '__ci_last_regenerate|i:1678620852;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87c2f22428e006fd7d287315b1f7f1370b08e800', '31.222.203.2', 1678620854, '__ci_last_regenerate|i:1678620854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cb73f75dbb72e766a89f4d354ce8fe7612478b9', '31.222.203.2', 1678620854, '__ci_last_regenerate|i:1678620854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a3febe3747c387e8177a606d53d56f91a23783b', '31.222.203.2', 1678620854, '__ci_last_regenerate|i:1678620854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2411506a651b3c79c177a839b333814f564cf1cc', '31.222.203.2', 1678620854, '__ci_last_regenerate|i:1678620854;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e44444cc3eba82bae50bdabb12ca22fce50938', '31.222.203.2', 1678620854, '__ci_last_regenerate|i:1678620854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc079780c442ee7adbec7a5b14f9df33be1066f', '37.111.217.8', 1678625967, '__ci_last_regenerate|i:1678625967;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678625892;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91bbcb962f2d82a702d77de8473b82cfbc7774ca', '31.222.203.2', 1678622648, '__ci_last_regenerate|i:1678622648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6309337aa45dcda91de126561bae9ef2b304bcd4', '31.222.203.2', 1678622648, '__ci_last_regenerate|i:1678622648;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb2a378da924365a0e698490a37befa25cfaae1', '31.222.203.2', 1678622648, '__ci_last_regenerate|i:1678622648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a4911ad908414f4f29d60d76c42c38de762c36a', '31.222.203.2', 1678622648, '__ci_last_regenerate|i:1678622648;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28081c42e2f1a199de307d887184a1d4ce81065a', '31.222.203.2', 1678622648, '__ci_last_regenerate|i:1678622648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5494e4f4c1857fcad127c676b30f809350cff45', '31.222.203.2', 1678622648, '__ci_last_regenerate|i:1678622648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eca32ac3c531b5262249597b64ba0413a1a9491', '31.222.203.2', 1678624452, '__ci_last_regenerate|i:1678624452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d75fa8e7708de42a0e66d9c6b87e8f5127f502d', '31.222.203.2', 1678624452, '__ci_last_regenerate|i:1678624452;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a90c638d9c1582143762ad717f3bda3a66043e1', '31.222.203.2', 1678624452, '__ci_last_regenerate|i:1678624452;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff36d6ae5db08acab7ec25bcc7782f0d735778e', '31.222.203.2', 1678624453, '__ci_last_regenerate|i:1678624453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06eab188592238fb0e593938bb18af40f1a92270', '31.222.203.2', 1678624453, '__ci_last_regenerate|i:1678624453;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93a6092c7c2571a8059d6598271ff50232bdf931', '31.222.203.2', 1678624453, '__ci_last_regenerate|i:1678624453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9d2b5a7d62ced1bcf08742e98e110c9884cee7e', '116.204.230.28', 1678627043, '__ci_last_regenerate|i:1678627043;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678603622\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bee5c66269bc18d10ce15270f5dd782d96e030f', '37.111.217.8', 1678627062, '__ci_last_regenerate|i:1678627062;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678626219;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab4dadc51c68a6c91751f40f60da75d203e04608', '31.222.203.2', 1678626248, '__ci_last_regenerate|i:1678626248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('218ff405495fafe0f39a64da0a390871b2dfcfad', '31.222.203.2', 1678626248, '__ci_last_regenerate|i:1678626248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a198e496edab109e244de66e2f8e8305eac5646', '31.222.203.2', 1678626248, '__ci_last_regenerate|i:1678626248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb2596fa4f53651aa96bc619e22ad7517db8b9b', '31.222.203.2', 1678626248, '__ci_last_regenerate|i:1678626248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9f9f8c8aff29be605dcc878aca2996288a6879', '31.222.203.2', 1678626248, '__ci_last_regenerate|i:1678626248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c9f46472fc2a13c1758bdec816d77c39679257', '31.222.203.2', 1678626248, '__ci_last_regenerate|i:1678626248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b16345cab997987649301b5cf8bc43021605682', '116.204.230.28', 1678632122, '__ci_last_regenerate|i:1678627043;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678603622\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c250259702af25bb0bc987d388e18df7eb3e6706', '37.111.217.8', 1678628719, '__ci_last_regenerate|i:1678628719;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678627082;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433ff8f8aa10f00ce759375fd406454c6216ccc6', '31.222.203.2', 1678628049, '__ci_last_regenerate|i:1678628049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b270f3b61f5ee9c1e1bdea9bdafb3adc55210773', '31.222.203.2', 1678628050, '__ci_last_regenerate|i:1678628050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a3c715f210ea59c7ba83133aa13a1c08cf9936', '31.222.203.2', 1678628050, '__ci_last_regenerate|i:1678628050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61847bb4ae151618d9af135f590d6f4c4e250722', '31.222.203.2', 1678628050, '__ci_last_regenerate|i:1678628050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dc2e4465bca5a4536e1d8d1f3152f8bf9d0b1df', '31.222.203.2', 1678628050, '__ci_last_regenerate|i:1678628050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4450e397ddc6c3b90926a335aa17c3dbcda54ad7', '31.222.203.2', 1678628050, '__ci_last_regenerate|i:1678628050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0721c2e5705499871d7d728a7f9b9466a2527ea4', '1.47.159.7', 1678628271, '__ci_last_regenerate|i:1678628253;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1678464851\";last_ip|s:12:\"119.30.35.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9692ddba971ab8fce9368b308bccfd2284c8fc9d', '37.111.217.8', 1678629591, '__ci_last_regenerate|i:1678629591;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678629580;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0efc18b2596fdd507567f410673acf4618caab4d', '37.111.217.8', 1678631069, '__ci_last_regenerate|i:1678631069;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678629591;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d285eaf7fac3150b6be471f58a5ed2287c6716', '31.222.203.2', 1678629847, '__ci_last_regenerate|i:1678629847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ade88943d039359c6c84900630ce49aa18653b8', '31.222.203.2', 1678629847, '__ci_last_regenerate|i:1678629847;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb8a66fccea55bebf0ccd87e7827cc317ac22a9', '31.222.203.2', 1678629847, '__ci_last_regenerate|i:1678629847;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8804e6664954ef28afacef3f89bdbaf81ea6035', '31.222.203.2', 1678629848, '__ci_last_regenerate|i:1678629848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7bcda2686c6dfeab48bffe571545873149e2b5c', '31.222.203.2', 1678629848, '__ci_last_regenerate|i:1678629848;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d52777d75fe36884c1788eea6bf6b85133149a14', '31.222.203.2', 1678629848, '__ci_last_regenerate|i:1678629848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6beaddc07b4ea888801111fa986d2a3a71b728cc', '37.111.217.8', 1678631628, '__ci_last_regenerate|i:1678631628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678631615;register_id|s:3:\"367\";cash_in_hand|s:8:\"820.0000\";register_open_time|s:19:\"2023-03-11 21:03:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7bffbddca513670f09b46131f5127329272db5', '37.111.217.8', 1678631649, '__ci_last_regenerate|i:1678631628;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678604920\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678631649;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('231279a42cf8efe9d2752a526518ab7f21c63457', '31.222.203.2', 1678631663, '__ci_last_regenerate|i:1678631663;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1a0c1ee2f3fdae26ae202480adb7afbae7496f', '31.222.203.2', 1678631664, '__ci_last_regenerate|i:1678631664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49bf1563deb5e93f2b299d20e05e9a677ccda9a5', '31.222.203.2', 1678631664, '__ci_last_regenerate|i:1678631664;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1adbb0813bd4b9aab20b5cc4490735f8d3c5daa0', '31.222.203.2', 1678631664, '__ci_last_regenerate|i:1678631664;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d63e16bfc83861cadadb67b1b5f621496d6e068', '31.222.203.2', 1678631664, '__ci_last_regenerate|i:1678631664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4207a48dede6887af882f9553c4cb5794dd2c11', '31.222.203.2', 1678631664, '__ci_last_regenerate|i:1678631664;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c7b85d76b989863910e11949c33ac5cc089e1ca', '31.222.203.2', 1678633446, '__ci_last_regenerate|i:1678633446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9847ccb089acc526a9a86bb291e5128c9b2944c0', '31.222.203.2', 1678633446, '__ci_last_regenerate|i:1678633446;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8e696a31e7b9f5bba6033ed4594f8bfcdf3dc9d', '31.222.203.2', 1678633446, '__ci_last_regenerate|i:1678633446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052186636f1afd567a54dcddf85bba7e9b7d8523', '31.222.203.2', 1678633446, '__ci_last_regenerate|i:1678633446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8b7be10fc7513658adda902f22aa850f96d6b41', '31.222.203.2', 1678633446, '__ci_last_regenerate|i:1678633446;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e81a071d93e34d21683afdec9fa8af169063efc0', '31.222.203.2', 1678633446, '__ci_last_regenerate|i:1678633446;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c482c1eb59e7f390067e573e80387cee105358a9', '31.222.203.2', 1678635240, '__ci_last_regenerate|i:1678635240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b20e623f13ef93a489519707fe60ce2834c04ac', '31.222.203.2', 1678635240, '__ci_last_regenerate|i:1678635240;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a196b9ba606a9d0f60c35ff4cc5b89cf80e9586', '31.222.203.2', 1678635240, '__ci_last_regenerate|i:1678635240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692bb9fc66a9ddf68a0c0c92b10a87291b4213e7', '31.222.203.2', 1678635240, '__ci_last_regenerate|i:1678635240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('285763a840f06adb053dae24ad220a006fdba004', '31.222.203.2', 1678635240, '__ci_last_regenerate|i:1678635240;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8cf57e7d26f5ceeb5ceacaa01088270f2d0d3da', '31.222.203.2', 1678635240, '__ci_last_regenerate|i:1678635240;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c656d1a164d06a02701d2491e73f9e7944f5efd9', '87.236.176.65', 1678635281, '__ci_last_regenerate|i:1678635281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c16e584bbbe866d058d77337e55af4ac57efb18', '87.236.176.65', 1678635293, '__ci_last_regenerate|i:1678635288;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1c465173b829ec8755e97c1576ee92d1a53c996', '31.222.203.2', 1678637046, '__ci_last_regenerate|i:1678637046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb2d19a3cf4976ee344b5f39e2b8309e1034ee14', '31.222.203.2', 1678637046, '__ci_last_regenerate|i:1678637046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc72d8f9a0102111818fdfc332fa30cd0cf39e03', '31.222.203.2', 1678637046, '__ci_last_regenerate|i:1678637046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50e63d5560ddbd727c830af22742db8077f5e66a', '31.222.203.2', 1678637047, '__ci_last_regenerate|i:1678637047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f240cb57290dc641c5ea9db6aa2fdb88a13f41ff', '31.222.203.2', 1678637047, '__ci_last_regenerate|i:1678637047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964077e1af734152682f4731385d593b67dfee97', '31.222.203.2', 1678637047, '__ci_last_regenerate|i:1678637047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc6425b202e515ce8c2ed04e7093afdd7473bd1', '31.222.203.2', 1678638866, '__ci_last_regenerate|i:1678638866;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f85ed34ce5792fd1960cbdd8c2d94bec0663fcd', '31.222.203.2', 1678638867, '__ci_last_regenerate|i:1678638867;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16267203b4f21636f3aca2f9bf47aafd2885757b', '31.222.203.2', 1678638867, '__ci_last_regenerate|i:1678638867;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41236623f6c6ce3d2e01ec59d2485e5a27e05a37', '31.222.203.2', 1678638867, '__ci_last_regenerate|i:1678638867;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b02b66a8b6befe04758c1e7a450fc3d4edf875', '31.222.203.2', 1678638867, '__ci_last_regenerate|i:1678638867;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('035732d2ee8613b0b0a752ad49d7134fa43a7256', '31.222.203.2', 1678638867, '__ci_last_regenerate|i:1678638867;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c719a596ebc3f9443c0b4d82acd50311e4e4c57', '31.222.203.2', 1678640643, '__ci_last_regenerate|i:1678640643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c28437d71454e4024c67f2e09868b8457e144b5e', '31.222.203.2', 1678640643, '__ci_last_regenerate|i:1678640643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9472a565e2fd799e0a34a09ce1f8ce3d567dc691', '31.222.203.2', 1678640643, '__ci_last_regenerate|i:1678640643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aa4745b80eae0bdbc0e8dad92f8f7de2ad87d42', '31.222.203.2', 1678640643, '__ci_last_regenerate|i:1678640643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e214db488ef4bdf77a50efa844133410aced8e', '31.222.203.2', 1678640643, '__ci_last_regenerate|i:1678640643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5ce3395c120d1a3aaa808ff045c8cf70fadea6f', '31.222.203.2', 1678640643, '__ci_last_regenerate|i:1678640643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c8cddf3d97f826c504a8fcb2dc6c743edf9564', '31.222.203.2', 1678642459, '__ci_last_regenerate|i:1678642459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75db1039ee142a80dc142f63fb54674e9b3dd9dd', '31.222.203.2', 1678642459, '__ci_last_regenerate|i:1678642459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c36a2a73f0156e4192f5a613ff47597af8d3c8cf', '31.222.203.2', 1678642459, '__ci_last_regenerate|i:1678642459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c200ad3f4e94751ba44dbb2b081e974765b9b95', '31.222.203.2', 1678642459, '__ci_last_regenerate|i:1678642459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4bf56ed6ad79a0d0ce667dd8d654559166c581', '31.222.203.2', 1678642459, '__ci_last_regenerate|i:1678642459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee52906452084ae06251831ea5c91a9bc1483820', '31.222.203.2', 1678642459, '__ci_last_regenerate|i:1678642459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f516b548fcfe716ee7d2e667e76c4c5137b5de', '31.222.203.2', 1678644264, '__ci_last_regenerate|i:1678644264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e234af3dcce97fb10e2d369c9bb0efca93cbe0a1', '31.222.203.2', 1678644264, '__ci_last_regenerate|i:1678644264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('300da452e4262fc7dd34ab429c4a6fc05d375b47', '31.222.203.2', 1678644264, '__ci_last_regenerate|i:1678644264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b639f5f0ceeddb5e804f435089ffd81375b8d69', '31.222.203.2', 1678644264, '__ci_last_regenerate|i:1678644264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a65470ce07eb49ecbfc49d800338872dbb1b02a', '31.222.203.2', 1678644264, '__ci_last_regenerate|i:1678644264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9bca51cbf214d3f7d568de43810ee240ef4f435', '31.222.203.2', 1678644264, '__ci_last_regenerate|i:1678644264;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd05ea64e7ddba39db3a6f177e65d83def560348', '31.222.203.2', 1678646046, '__ci_last_regenerate|i:1678646046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db7ee4a6271be7313d490f7461b25b1e098acf06', '31.222.203.2', 1678646046, '__ci_last_regenerate|i:1678646046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddf5ab03163dc6fe769508e46587cee5db621777', '31.222.203.2', 1678646046, '__ci_last_regenerate|i:1678646046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5025d95c3a036714e4133bc0e64278016013b568', '31.222.203.2', 1678646046, '__ci_last_regenerate|i:1678646046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba83deef636c1afe1c14e0f4ca79f785607c89c6', '31.222.203.2', 1678646046, '__ci_last_regenerate|i:1678646046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ae70794419f5c124cd6de92c59d856c38ec91eb', '31.222.203.2', 1678646046, '__ci_last_regenerate|i:1678646046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88b582a3d7dd0a0c32ff6c0ce7a42da7d40b192', '31.222.203.2', 1678647835, '__ci_last_regenerate|i:1678647835;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4b81614066b196bb1ab7deef23d78796d5966f', '31.222.203.2', 1678647838, '__ci_last_regenerate|i:1678647838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b880c9123c6f503c7fe3e98696e3ea227d4c12', '31.222.203.2', 1678647838, '__ci_last_regenerate|i:1678647838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b724141c79e74ef008699f22b79b9cd84201b7bd', '31.222.203.2', 1678647838, '__ci_last_regenerate|i:1678647838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d02d1a05b623db2b562e18497a78b861a57a6cb', '31.222.203.2', 1678647838, '__ci_last_regenerate|i:1678647838;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8a3392c31d1e4be902c3039490dfe5f4404d1f', '31.222.203.2', 1678647838, '__ci_last_regenerate|i:1678647838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35a6ebe3b507e15b684af9856a880817d0243333', '31.222.203.2', 1678649654, '__ci_last_regenerate|i:1678649654;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6f62b95dd6c7c715e15584e72727eb2929c341', '31.222.203.2', 1678649655, '__ci_last_regenerate|i:1678649655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1286a8a6d86b7e82136cb906e1bd4e2e5e6c2f56', '31.222.203.2', 1678649655, '__ci_last_regenerate|i:1678649655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc63db5b3778519610eecbb5be50b76c7a95d70', '31.222.203.2', 1678649655, '__ci_last_regenerate|i:1678649655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9144a46849fd6b5c1b37d86ebd557938cb5e8ea7', '31.222.203.2', 1678649655, '__ci_last_regenerate|i:1678649655;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afc2a8e5cbb48b1674cd15238112ee04d32145c0', '31.222.203.2', 1678649655, '__ci_last_regenerate|i:1678649655;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f448ab56e36613c32642a0a28e8ec24b33c87d', '31.222.203.2', 1678651444, '__ci_last_regenerate|i:1678651444;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f7882dde6e204de53ad0d81d870d2ecc3e7d11', '31.222.203.2', 1678651449, '__ci_last_regenerate|i:1678651449;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4588c682146c7e467ef757bb5ab955f7af1f47b', '31.222.203.2', 1678651449, '__ci_last_regenerate|i:1678651449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd588308cc8d779790fa9cbeb63f69ee05da2bb0', '31.222.203.2', 1678651449, '__ci_last_regenerate|i:1678651449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dae19209be7196a9494abf71ba89ca5b1490102d', '31.222.203.2', 1678651449, '__ci_last_regenerate|i:1678651449;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435c4a36fc5d202c48ba11dd23f084dd39b7b932', '31.222.203.2', 1678651449, '__ci_last_regenerate|i:1678651449;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7855008309ec2c1b31d407b542f093402173b8a9', '31.222.203.2', 1678653237, '__ci_last_regenerate|i:1678653237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcf64087f407e27fe8e2ea68156235a6f2f81764', '31.222.203.2', 1678653237, '__ci_last_regenerate|i:1678653237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e6abc965f6c0403e53a99382adbc7a9cea5d07', '31.222.203.2', 1678653237, '__ci_last_regenerate|i:1678653237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d78d47f78bf8e9bb8b0457ff56bbea89c4a02b56', '31.222.203.2', 1678653238, '__ci_last_regenerate|i:1678653238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a14952f6350be218dffb2e18ef8f59624ebd8f0d', '31.222.203.2', 1678653238, '__ci_last_regenerate|i:1678653238;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1266cbf09b9d5ecf36eedf7e5b0772bcd20bf63f', '31.222.203.2', 1678653238, '__ci_last_regenerate|i:1678653238;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf8cc382f4068eddc05e2a49e3ce9b8214d8042', '31.222.203.2', 1678655052, '__ci_last_regenerate|i:1678655052;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4905f6d7c8b99b907fafe1847f281fb43dc1e1a9', '31.222.203.2', 1678655055, '__ci_last_regenerate|i:1678655055;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bffdacb269bbd3bc07484c1ac7f037cea0b60ffd', '31.222.203.2', 1678655055, '__ci_last_regenerate|i:1678655055;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de34cdb2c30e84ce61b73b259e9055b3903ac13', '31.222.203.2', 1678655055, '__ci_last_regenerate|i:1678655055;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1af4d35d052d9054e513c889d2e2db8df8f0eff', '31.222.203.2', 1678655055, '__ci_last_regenerate|i:1678655055;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43468dabed31a04cc7410b51ddf384f918d26e7d', '31.222.203.2', 1678655055, '__ci_last_regenerate|i:1678655055;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670fa2bfe70686cb8b396e1818507665438f34f0', '31.222.203.2', 1678656840, '__ci_last_regenerate|i:1678656840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1defa3385d594d22683ec3cdeefe57004cf903ec', '31.222.203.2', 1678656842, '__ci_last_regenerate|i:1678656842;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2f43a507bcf5b479ea4620f587eedb4a34dd5c1', '31.222.203.2', 1678656842, '__ci_last_regenerate|i:1678656842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c2c17de9e8e577f21c22cc12230dd5b1e4f1c3', '31.222.203.2', 1678656842, '__ci_last_regenerate|i:1678656842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22735fffa7a63461cdbfd2a0f55cf5411c45a77', '31.222.203.2', 1678656842, '__ci_last_regenerate|i:1678656842;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31974a879c524f21e2fcd6cf80d4e47838246010', '31.222.203.2', 1678656842, '__ci_last_regenerate|i:1678656842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bab7689fb00a9439501ef3a111648425b7e70353', '31.222.203.2', 1678658660, '__ci_last_regenerate|i:1678658660;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c659cd9c311d64fb787bd5ff409f08be791c6f5', '31.222.203.2', 1678658661, '__ci_last_regenerate|i:1678658661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8352445a763b7d42b2d8c78395e4d87974817a5', '31.222.203.2', 1678658661, '__ci_last_regenerate|i:1678658661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766317c7bebf0982dbab169883622e3418baa6d5', '31.222.203.2', 1678658661, '__ci_last_regenerate|i:1678658661;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c27826b5c1a2d767156cfbf2726d2381248e64', '31.222.203.2', 1678658661, '__ci_last_regenerate|i:1678658661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53ac05d76c58e0b9ddd8178d02c10fcac029b74a', '31.222.203.2', 1678658661, '__ci_last_regenerate|i:1678658661;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3ba5d8f22d565e2b6e896379f8d88d261100ae', '31.222.203.2', 1678660457, '__ci_last_regenerate|i:1678660457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0da4231554d9c8f440fae8058b4c278b212cc98', '31.222.203.2', 1678660457, '__ci_last_regenerate|i:1678660457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8b005f97d15ac49e35d94232bc5c3e2a780a2d', '31.222.203.2', 1678660457, '__ci_last_regenerate|i:1678660457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('103f29a1ca3b643948e7e645ae66c5faf552f518', '31.222.203.2', 1678660457, '__ci_last_regenerate|i:1678660457;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3076890e2282a6879c6ece920130e1a01e00cb1f', '31.222.203.2', 1678660457, '__ci_last_regenerate|i:1678660457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f4ba220f4ebf328d26986f497a6c7b39e36af3', '31.222.203.2', 1678660457, '__ci_last_regenerate|i:1678660457;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7abbcd193d37656973f5f5377d07d99cf8a8f19e', '31.222.203.2', 1678662257, '__ci_last_regenerate|i:1678662257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('256206868c41b02b8088ec5414ab0c6fbc45ea1c', '31.222.203.2', 1678662259, '__ci_last_regenerate|i:1678662259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7efbd367bebef4904230b595693d8a2c8ecd59b2', '31.222.203.2', 1678662259, '__ci_last_regenerate|i:1678662259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794038c10705eec39c20408cc6386227605f5970', '31.222.203.2', 1678662259, '__ci_last_regenerate|i:1678662259;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('957929dc09a72cab5f98d7bb9f6995633bb703c2', '31.222.203.2', 1678662259, '__ci_last_regenerate|i:1678662259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abbf67c83ce685868b0fb045e2d12729757ee269', '31.222.203.2', 1678662259, '__ci_last_regenerate|i:1678662259;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9db9685d978fac8dfff6ce5bdd623d3220a26d3', '31.222.203.2', 1678664056, '__ci_last_regenerate|i:1678664056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c5bd3ca478dacd68a9a4f537a84465848a9d18', '31.222.203.2', 1678664056, '__ci_last_regenerate|i:1678664056;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e6af509bcfed34a5d1b8e5ad92161927a817eb', '31.222.203.2', 1678664056, '__ci_last_regenerate|i:1678664056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd7961640b74640ce392d80bd91bb4eaa04cde53', '31.222.203.2', 1678664057, '__ci_last_regenerate|i:1678664057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b97b6bb4124c2a3f803666a783f62c77193c9899', '31.222.203.2', 1678664057, '__ci_last_regenerate|i:1678664057;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a520f1a8e96e811d2a36b759a66ce84fd6180724', '31.222.203.2', 1678664057, '__ci_last_regenerate|i:1678664057;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c929b5805ce03da17a6d9903d995cc97cd91f474', '31.222.203.2', 1678665872, '__ci_last_regenerate|i:1678665872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b845802763e65a2e1e34e966f97ed8922ae0a1f', '31.222.203.2', 1678665872, '__ci_last_regenerate|i:1678665872;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('744c5ec7263b5de52d61c114416565917f1f4cc5', '31.222.203.2', 1678665872, '__ci_last_regenerate|i:1678665872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46fc54191ae3ea7b5772afbeda49ceb9e842c73e', '31.222.203.2', 1678665872, '__ci_last_regenerate|i:1678665872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc0dc3bb04315cb060f28cf8177f234cd34f5be4', '31.222.203.2', 1678665872, '__ci_last_regenerate|i:1678665872;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7008f49bc36ad6b83e358fae62d24bf985766905', '31.222.203.2', 1678665872, '__ci_last_regenerate|i:1678665872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f992e35e256ee7046863c2fb8ea85a22ddabf9f', '31.222.203.2', 1678667670, '__ci_last_regenerate|i:1678667670;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83d7befafaf302cbf1a70d76c9479d9403e19767', '31.222.203.2', 1678667671, '__ci_last_regenerate|i:1678667671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46b1332412735554af5bc3eae0c99cd2cba6fc1c', '31.222.203.2', 1678667671, '__ci_last_regenerate|i:1678667671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5a6d33e635b1d7da3da3798904efa62c07d165', '31.222.203.2', 1678667671, '__ci_last_regenerate|i:1678667671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2062c024ececd35c94aca28387f786b38d2e5b4a', '31.222.203.2', 1678667671, '__ci_last_regenerate|i:1678667671;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3aa02da59619e43b01dd1c3b574b7bf358db8f6', '31.222.203.2', 1678667671, '__ci_last_regenerate|i:1678667671;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17d47bcdd51f3679d8dc9b80e90fec3dde165573', '31.222.203.2', 1678669453, '__ci_last_regenerate|i:1678669453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bc57e280c1a8d47aeab4a313a5d2ad2cce6d30d', '31.222.203.2', 1678669455, '__ci_last_regenerate|i:1678669455;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36771b4a762acdb5a7c76291a3730f32f5bf52a8', '31.222.203.2', 1678669455, '__ci_last_regenerate|i:1678669455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa3dec12c35c37792d2254151b215858297c7c04', '31.222.203.2', 1678669455, '__ci_last_regenerate|i:1678669455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b7d44db30779b8fa1480c5be4e88b6f51e75285', '31.222.203.2', 1678669455, '__ci_last_regenerate|i:1678669455;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81cc929de3f30a903870a2b942bf53a93f8b623d', '31.222.203.2', 1678669455, '__ci_last_regenerate|i:1678669455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('572be6117ca4a31201c7a77d0cb3a4dad9058ff1', '31.222.203.2', 1678671253, '__ci_last_regenerate|i:1678671253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2f739ac3ab306f9763be19af2a42aede29dc6cb', '31.222.203.2', 1678671253, '__ci_last_regenerate|i:1678671253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67750e1e99dfdb094f43746048d355e24d426128', '31.222.203.2', 1678671253, '__ci_last_regenerate|i:1678671253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c81d65b425885514437aaa099bffecc10a7672c9', '31.222.203.2', 1678671253, '__ci_last_regenerate|i:1678671253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68229aaf21f7eeadda0a8c3ecf52f902dbc1cb37', '31.222.203.2', 1678671253, '__ci_last_regenerate|i:1678671253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26db3ae4e8cd38e84603d088587603f11dba68aa', '31.222.203.2', 1678671253, '__ci_last_regenerate|i:1678671253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33be31488278bcade9f745da1955901ecc453031', '31.222.203.2', 1678673043, '__ci_last_regenerate|i:1678673043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71c3eb4ecfde43b85637f590115082e40985b77f', '31.222.203.2', 1678673044, '__ci_last_regenerate|i:1678673044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bebc6b817bc5d6fd94442c1ac4b3dd975bf26761', '31.222.203.2', 1678673044, '__ci_last_regenerate|i:1678673044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6ba1349677f095a9f2c4af793011481732b035', '31.222.203.2', 1678673044, '__ci_last_regenerate|i:1678673044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44eb65c2789d50e78c75dcf3c40e9ae080338553', '31.222.203.2', 1678673044, '__ci_last_regenerate|i:1678673044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab5fea1d9d48a7d4cf7cb6f5ec4432d0d79b45bc', '31.222.203.2', 1678673044, '__ci_last_regenerate|i:1678673044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6381910fb88307479105d13804e490e7884b2fa4', '31.222.203.2', 1678674871, '__ci_last_regenerate|i:1678674871;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836007f42ac38ad92306b094c68c491727c62a20', '31.222.203.2', 1678674871, '__ci_last_regenerate|i:1678674871;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7cd18b36db204118454023d48679c82fdcc9dbc', '31.222.203.2', 1678674871, '__ci_last_regenerate|i:1678674871;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74e98a539106f928d9c1bb4d29bcd8344ac97631', '31.222.203.2', 1678674873, '__ci_last_regenerate|i:1678674873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22bd1883b82db70a92828e3f23cc086a7b8fb85e', '31.222.203.2', 1678674873, '__ci_last_regenerate|i:1678674873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0561f51b89cff0845108bb59893fad4adf0c8499', '31.222.203.2', 1678674873, '__ci_last_regenerate|i:1678674873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d34a908411756c7fa9cf35c19f7e45907702bc2', '31.222.203.2', 1678676642, '__ci_last_regenerate|i:1678676642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5e9c52a26f5ebcde7cc8a490b97cae246d0264', '31.222.203.2', 1678676642, '__ci_last_regenerate|i:1678676642;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16bd89806d16f0e2726941c0e6f1eccab6fe806a', '31.222.203.2', 1678676642, '__ci_last_regenerate|i:1678676642;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fd85e1a828ec1f994539f3cd4df941948e9dcff', '31.222.203.2', 1678676643, '__ci_last_regenerate|i:1678676643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee63526527d6fdb93fb60893cde8c9a678c7ca8d', '31.222.203.2', 1678676643, '__ci_last_regenerate|i:1678676643;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce9f98c284540fa259340b09879adc687c1a822', '31.222.203.2', 1678676643, '__ci_last_regenerate|i:1678676643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ba9c37e34d04e103edb567054516ddf0554e2e', '31.222.203.2', 1678678456, '__ci_last_regenerate|i:1678678456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f5ba3c5b7537fb0a31f7e64bfe86d847ed70bf5', '31.222.203.2', 1678678456, '__ci_last_regenerate|i:1678678456;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7855c31aa28f5a9f25db515e558455689bbe6af7', '31.222.203.2', 1678678456, '__ci_last_regenerate|i:1678678456;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08aeff9c3ff563f6c508d895347b36896d5cbcf9', '31.222.203.2', 1678678460, '__ci_last_regenerate|i:1678678460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ca07c581c496ddac856b4cdc74434e5afa026f', '31.222.203.2', 1678678460, '__ci_last_regenerate|i:1678678460;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea9ecbce0890d26dd7893d077f5d3035bd435d96', '31.222.203.2', 1678678460, '__ci_last_regenerate|i:1678678460;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80802aa4cec651398e4f89d21e1cd810d369819', '31.222.203.2', 1678680244, '__ci_last_regenerate|i:1678680244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d494de2cf7c29cdb64527c9c826f428269d37d4', '31.222.203.2', 1678680244, '__ci_last_regenerate|i:1678680244;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d11388e1a15120aee0b49365660b86bed37c356', '31.222.203.2', 1678680244, '__ci_last_regenerate|i:1678680244;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61baf8bb45e72c2fa4fd4e05aebfd26cef5e8f3d', '31.222.203.2', 1678680245, '__ci_last_regenerate|i:1678680245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18eb3af4f42e2fab6eb7ae3102eb195ac04594a2', '31.222.203.2', 1678680245, '__ci_last_regenerate|i:1678680245;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e276afb250b471db09276f49788f1a7d848d0561', '31.222.203.2', 1678680245, '__ci_last_regenerate|i:1678680245;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45cd5154e3a36e065e810a3eab284b8b48305507', '31.222.203.2', 1678682042, '__ci_last_regenerate|i:1678682042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('993395fa82fb477dd309fa6f59bedf4272221297', '31.222.203.2', 1678682043, '__ci_last_regenerate|i:1678682043;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb15f0b64153898d2b3ffcbdc786608279d47c4f', '31.222.203.2', 1678682043, '__ci_last_regenerate|i:1678682043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bad61ee4f29c3350ec360e4e29d0ccfd0bb5571', '31.222.203.2', 1678682043, '__ci_last_regenerate|i:1678682043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94a898e4bd77ab4cbe2ede0cf623fada2731a647', '31.222.203.2', 1678682043, '__ci_last_regenerate|i:1678682043;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0deca9a364d68164d1496ca5b3b3e12ac72b333', '31.222.203.2', 1678682043, '__ci_last_regenerate|i:1678682043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d934be1ac216297109a08e0ed823ba6de0101bf1', '116.204.230.21', 1678683151, '__ci_last_regenerate|i:1678683099;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678625953\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae7581201758af870d99dc550f2dd555d78b550', '31.222.203.2', 1678683862, '__ci_last_regenerate|i:1678683862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739e75290e34110278bca1db943b3085efec7a67', '31.222.203.2', 1678683862, '__ci_last_regenerate|i:1678683862;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f07c13ab1d970b56b1b960aceeefdcc526690739', '31.222.203.2', 1678683862, '__ci_last_regenerate|i:1678683862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c270a12ce9e15697fed256f1e08f5c0ea550801', '31.222.203.2', 1678683863, '__ci_last_regenerate|i:1678683863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7af728e2cc118e4f3d11efd6ee3602b06401cedc', '31.222.203.2', 1678683863, '__ci_last_regenerate|i:1678683863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8bf96fdc74953a92a07d4cc14942d07ece423ab', '31.222.203.2', 1678683863, '__ci_last_regenerate|i:1678683863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b82186a85623e64e88d36b6d54c74c8dba0ce0fa', '37.111.218.145', 1678688188, '__ci_last_regenerate|i:1678688188;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678685228;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('091aa0d066f5224ce8cc0df042fdc666e2d8e438', '116.204.230.28', 1678685755, '__ci_last_regenerate|i:1678685755;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678683105\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"lDSi9b3MyqUwx4B18EjF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9da26ce83183c4912c0ea9e4a5373469de56880', '31.222.203.2', 1678685640, '__ci_last_regenerate|i:1678685640;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a0ed6863180967aeb7176496e3625a8dc40bf5', '31.222.203.2', 1678685641, '__ci_last_regenerate|i:1678685641;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2687ddd4646de157328c818632aa0701a544b9bb', '31.222.203.2', 1678685641, '__ci_last_regenerate|i:1678685641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9dbf856f32b62edd5dbb21f6c5fad73af35014f', '31.222.203.2', 1678685641, '__ci_last_regenerate|i:1678685641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0220793b8f0afc784bbe049ffafd22e1d4927428', '31.222.203.2', 1678685641, '__ci_last_regenerate|i:1678685641;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc509e57126fa14f36d328ac661f404700e89a53', '31.222.203.2', 1678685641, '__ci_last_regenerate|i:1678685641;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06254c71f5dba0dad2ab5dd5498693e768f9d1fe', '116.204.230.28', 1678685810, '__ci_last_regenerate|i:1678685755;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678683105\";last_ip|s:14:\"116.204.230.21\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"lDSi9b3MyqUwx4B18EjF\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c82b5bd6c7ade8cf3823af2be54ce075fe535df', '31.222.203.2', 1678687445, '__ci_last_regenerate|i:1678687445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6020b39b3f05e9e1601c947a36c5668b66d44f42', '31.222.203.2', 1678687445, '__ci_last_regenerate|i:1678687445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af5f59e398a50a7682fa922f9dcf78d7f445c32a', '31.222.203.2', 1678687445, '__ci_last_regenerate|i:1678687445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94278fea113e21c96690745d9f365aa5b1d868d6', '31.222.203.2', 1678687445, '__ci_last_regenerate|i:1678687445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b44eb1a63b43d3633e0773b2e0e61f85c6f310', '31.222.203.2', 1678687445, '__ci_last_regenerate|i:1678687445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('450ecd59c339906c0afb73303799f56465949db1', '31.222.203.2', 1678687445, '__ci_last_regenerate|i:1678687445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4cf6cb9398fa64cf80ceb0b2886c281faecdff', '37.111.218.145', 1678689072, '__ci_last_regenerate|i:1678689072;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678688188;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('460fc37950fa560b90f1fda21bf49c54d0a9daa5', '37.111.218.145', 1678690874, '__ci_last_regenerate|i:1678690874;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678690869;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('491b95dc7c0d3222705c7d4bd9f52b9d90ef495f', '31.222.203.2', 1678689257, '__ci_last_regenerate|i:1678689257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79cc9396a9db58019bc257e3504e0402e2970074', '31.222.203.2', 1678689257, '__ci_last_regenerate|i:1678689257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed9b0f0004fa15ebda61258a7c6d8733dd1839f1', '31.222.203.2', 1678689257, '__ci_last_regenerate|i:1678689257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce5299cc5566ea4e517b3061a0f128803a4f822c', '31.222.203.2', 1678689257, '__ci_last_regenerate|i:1678689257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab47be8cb5aea59b4bbcb55fa673e08b7d6fce88', '31.222.203.2', 1678689257, '__ci_last_regenerate|i:1678689257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75bb6b992c707eef4153898452484e3d97547edb', '31.222.203.2', 1678689257, '__ci_last_regenerate|i:1678689257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6451715c765e7d97a63ebbe2147c1c01d42b7f', '37.111.218.145', 1678693632, '__ci_last_regenerate|i:1678693632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678690878;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac84d1aa423ae86a01146eff94e28a18385a58a0', '31.222.203.2', 1678691047, '__ci_last_regenerate|i:1678691047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a19cd9e75b60b26584f8fab5c4af4e5c89605614', '31.222.203.2', 1678691047, '__ci_last_regenerate|i:1678691047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32885d7722a12599eaedf4104c8ef8f4e8abc859', '31.222.203.2', 1678691047, '__ci_last_regenerate|i:1678691047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54e551a5f5d2d78b903c9f7510dd16dbaf5a7a8e', '31.222.203.2', 1678691048, '__ci_last_regenerate|i:1678691048;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd08312c379cdc1a755cd478a7d0008206905257', '31.222.203.2', 1678691048, '__ci_last_regenerate|i:1678691048;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29fcf33091a6869b456aac82b5b3ffb2d1fc711', '31.222.203.2', 1678691048, '__ci_last_regenerate|i:1678691048;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4414e004d83fd58487dcb87e68e56096a26bc99d', '31.222.203.2', 1678692855, '__ci_last_regenerate|i:1678692855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1079f31886eaf1385dd8a48549774ad14dee15be', '31.222.203.2', 1678692855, '__ci_last_regenerate|i:1678692855;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2890d07b03e00d03f825522ca50570aaa2dcde', '31.222.203.2', 1678692855, '__ci_last_regenerate|i:1678692855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fb62ed7c830483393e8627d6b42e3331cddc013', '31.222.203.2', 1678692855, '__ci_last_regenerate|i:1678692855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e4dcf6cf4e96f1451aa301ffa8840a0a19f393', '31.222.203.2', 1678692855, '__ci_last_regenerate|i:1678692855;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d9b415ecc20af514bff7721c101d26f8e19f945', '31.222.203.2', 1678692855, '__ci_last_regenerate|i:1678692855;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8298ec55ddfb19dfa2f247a77a75e2c6c3b42f', '37.111.218.145', 1678695139, '__ci_last_regenerate|i:1678695139;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678695102;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0b42ab0516f4709c9ce48d2a75d3dec887af7c', '116.204.230.28', 1678693871, '__ci_last_regenerate|i:1678693804;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678685420\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4284de8b6ea7fd2cba5545712490943804f6efd', '31.222.203.2', 1678694648, '__ci_last_regenerate|i:1678694648;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('454fd37bb4b61a10a87024165a6039f4ac1c25e1', '31.222.203.2', 1678694649, '__ci_last_regenerate|i:1678694649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5cc13cae37e04029444a3a52ab3f2c6e2a50e4e', '31.222.203.2', 1678694649, '__ci_last_regenerate|i:1678694649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b14724a997583caf55830658eb655b2fbacb171', '31.222.203.2', 1678694649, '__ci_last_regenerate|i:1678694649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73bd3658641b9a5deb1f6aea937d66f842540924', '31.222.203.2', 1678694649, '__ci_last_regenerate|i:1678694649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e171082b50330f419a5cde7f1216292bf088e2a3', '31.222.203.2', 1678694649, '__ci_last_regenerate|i:1678694649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d0ba696583624c60c51007036000cff4b8c4e42', '37.111.218.145', 1678698064, '__ci_last_regenerate|i:1678698064;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678695216;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92f0f85baf00c391101045b772f3ff7e8b6c779', '147.78.47.249', 1678695440, '__ci_last_regenerate|i:1678695440;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12f9cfded36a8be6e4983de8c1add48cd2725daa', '147.78.47.249', 1678695442, '__ci_last_regenerate|i:1678695442;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cea22b2c5b0c0f0e2b3b61ed3b768e669e5055d4', '147.78.47.249', 1678695444, '__ci_last_regenerate|i:1678695444;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d811bef03deda7766f7954423711d8bd8db9d3', '31.222.203.2', 1678696445, '__ci_last_regenerate|i:1678696445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('695ed2efa4452d8b2e69cc139647a48e511a7d27', '31.222.203.2', 1678696445, '__ci_last_regenerate|i:1678696445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b7e5192fa4487bde3fd193c035449a252346081', '31.222.203.2', 1678696445, '__ci_last_regenerate|i:1678696445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9622ade07a77cc57e16a5f81a74ae008c0fbfee8', '31.222.203.2', 1678696445, '__ci_last_regenerate|i:1678696445;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91010b35a1085c3f95ddc79ffb7dd422aa2c22c2', '31.222.203.2', 1678696445, '__ci_last_regenerate|i:1678696445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8da70576cd0663e54f63c35bf15392a560a0f572', '31.222.203.2', 1678696445, '__ci_last_regenerate|i:1678696445;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8806b05155b2ba281f3b37207900784b892e4959', '37.111.218.145', 1678698557, '__ci_last_regenerate|i:1678698557;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678698066;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa8cb4d4e8fa36745a721340d5a40ab44ed474e', '31.222.203.2', 1678698247, '__ci_last_regenerate|i:1678698247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('326b50aaa2e5ecf3deb1016c6125ce0cb78c3d97', '31.222.203.2', 1678698247, '__ci_last_regenerate|i:1678698247;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45d052dcfa49f7501398302dce30508cb7e8e24', '31.222.203.2', 1678698247, '__ci_last_regenerate|i:1678698247;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11df7679a9981787e54b5fd2296506f759e896a8', '31.222.203.2', 1678698249, '__ci_last_regenerate|i:1678698249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2e5a6e738b685835bdb061e5aeec334ec41865', '31.222.203.2', 1678698249, '__ci_last_regenerate|i:1678698249;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b9495e1048dc19a540cc05be2384406265df85', '31.222.203.2', 1678698249, '__ci_last_regenerate|i:1678698249;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('947f499eb534d97b175df28d6e43f7bf3dac61ca', '37.111.218.145', 1678699538, '__ci_last_regenerate|i:1678699538;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678698557;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d80a71a9b4c7567f0a81de8eb4ffb0ffa72ecfa', '37.111.218.145', 1678702325, '__ci_last_regenerate|i:1678702325;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678699571;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6ae458a5a92574dcd65659eb2c97e0ccafe14a', '31.222.203.2', 1678700070, '__ci_last_regenerate|i:1678700070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292dea8c59aa28f23ebc46e3f172e2e670ea1fe8', '31.222.203.2', 1678700074, '__ci_last_regenerate|i:1678700074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c79bc36acb69930d4104565da003f091ab0a72', '31.222.203.2', 1678700074, '__ci_last_regenerate|i:1678700074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a03e49dbf871b2ef24c3896880a4e63c1e1253f', '31.222.203.2', 1678700074, '__ci_last_regenerate|i:1678700074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86d3f411fd39294b99e218ead139c56d5b0fd5a5', '31.222.203.2', 1678700074, '__ci_last_regenerate|i:1678700074;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd98e0aac6e92015b178e9ee4a5512fac2a04850', '31.222.203.2', 1678700074, '__ci_last_regenerate|i:1678700074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e84851665f8393f2e3cf860ed626275768d008a4', '31.222.203.2', 1678701845, '__ci_last_regenerate|i:1678701845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69eec5443403cf2d9fed9faf3437c6b4c8776a06', '31.222.203.2', 1678701845, '__ci_last_regenerate|i:1678701845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167497d4ab50ba4346f1866212aa84c4b3523b37', '31.222.203.2', 1678701845, '__ci_last_regenerate|i:1678701845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c97d410ad1387c129ac1c46d0fff66aa47b6eaa8', '31.222.203.2', 1678701845, '__ci_last_regenerate|i:1678701845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30920fa30876bbc8d77109ad0b19e6c7feb5a655', '31.222.203.2', 1678701845, '__ci_last_regenerate|i:1678701845;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cae61e1ba2a9cb4523bff9c75b100a271f56faf5', '31.222.203.2', 1678701845, '__ci_last_regenerate|i:1678701845;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d3eb7754ab9302d9eff980dd91257f075df0797', '37.111.218.145', 1678703150, '__ci_last_regenerate|i:1678703150;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678702394;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7880e0c6d105cbe83700689ce3a21b3a15e7fd6a', '37.111.218.145', 1678704590, '__ci_last_regenerate|i:1678704590;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678703153;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a07ce41cccd7a98bd8547d1be7a629bf896e941', '31.222.203.2', 1678703649, '__ci_last_regenerate|i:1678703649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e1c67f747cb79f7b9a20a07b03e94d22d218161', '31.222.203.2', 1678703650, '__ci_last_regenerate|i:1678703650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c888ad86ad087ecc45cee6e6a2d2cf03e06c35df', '31.222.203.2', 1678703650, '__ci_last_regenerate|i:1678703650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c34a10fbbbe2bc0f425c4cd791a571744dc5997', '31.222.203.2', 1678703650, '__ci_last_regenerate|i:1678703650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a572316aea9504e3ad6cb7534c921c3c680620b8', '31.222.203.2', 1678703650, '__ci_last_regenerate|i:1678703650;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('857113d3a2e29b0257559f5867f5a8fecb1161ae', '31.222.203.2', 1678703650, '__ci_last_regenerate|i:1678703650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5196fe53aef2887f5d0b7cc0e9e4afb36149c63e', '37.111.218.145', 1678704898, '__ci_last_regenerate|i:1678704898;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678704885;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45b2a63601553604476e1e12732327f009e2a54e', '37.111.218.145', 1678705623, '__ci_last_regenerate|i:1678705623;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678704920;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce247d93ed6bfd86d69afcaf31e851db5a429e2', '31.222.203.2', 1678705439, '__ci_last_regenerate|i:1678705439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed0ed0a3785301157c9e2670e3c2f1f58643a893', '31.222.203.2', 1678705439, '__ci_last_regenerate|i:1678705439;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2366833c2aa5e010774059aae473e2d6d8ec26c0', '31.222.203.2', 1678705439, '__ci_last_regenerate|i:1678705439;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95b5a769bddd5c1f44c0900ced6ab1ab7a968f9c', '31.222.203.2', 1678705441, '__ci_last_regenerate|i:1678705441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7ff3ba458ba77660a93ad5a22c5f4b95d630c3', '31.222.203.2', 1678705441, '__ci_last_regenerate|i:1678705441;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b8c9109701258cf3af7bc3f86d49ca325b30dd', '31.222.203.2', 1678705441, '__ci_last_regenerate|i:1678705441;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61e462c7a8e8e6ecfbf8ca5e10f9ba352e32f82f', '116.204.230.28', 1678708151, '__ci_last_regenerate|i:1678708151;requested_page|s:15:\"admin/pos/sales\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678693807\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678705829;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50543da841a7ff49edac8787f62b71476a1544d4', '37.111.218.145', 1678707333, '__ci_last_regenerate|i:1678707333;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678707326;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d159c920918a8dfaaa69938a849b850054cbf8ad', '31.222.203.2', 1678707257, '__ci_last_regenerate|i:1678707257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8c135919b6a816dac6e882bb7432bf7012588b', '31.222.203.2', 1678707257, '__ci_last_regenerate|i:1678707257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9dc57f369ec530161141e0ee506c3b383d3bb5dc', '31.222.203.2', 1678707257, '__ci_last_regenerate|i:1678707257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c64a75144576a5c262bc944b71ee623dcafe8e8', '31.222.203.2', 1678707257, '__ci_last_regenerate|i:1678707257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a4f6d61f2fe6e48a8d9d770af83741f23d6148b', '31.222.203.2', 1678707257, '__ci_last_regenerate|i:1678707257;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43fa23040e17dcc76dd74af52c333e82caa8ff3f', '31.222.203.2', 1678707257, '__ci_last_regenerate|i:1678707257;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00fa6b0553bb1b050d900e65e0f73e4166ba8784', '37.111.218.145', 1678707725, '__ci_last_regenerate|i:1678707725;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678707469;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2cfae11e99f22d696f3a8fda1c9ea4a5fa5dd0b', '37.111.218.145', 1678708541, '__ci_last_regenerate|i:1678708541;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678707773;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac74688b0d891ade0445a540cfc9ea27862442c', '116.204.230.28', 1678711034, '__ci_last_regenerate|i:1678708151;requested_page|s:15:\"admin/pos/sales\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678693807\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678711034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2e13822773a2c674a8695e9def26ee0a0369881', '37.111.218.145', 1678709413, '__ci_last_regenerate|i:1678709413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678709404;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b5d952adf3e45fed60d276d7b586c2c6abebea', '31.222.203.2', 1678709046, '__ci_last_regenerate|i:1678709046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae96882b75eb5301a25939b37c5d400be50fde1', '31.222.203.2', 1678709046, '__ci_last_regenerate|i:1678709046;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60111e79a433a5847ac0f119482481845caf841e', '31.222.203.2', 1678709046, '__ci_last_regenerate|i:1678709046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f29d04d5f6744ce39ba19606284e139ce93eb69', '31.222.203.2', 1678709048, '__ci_last_regenerate|i:1678709047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d864f955d7123e9d56ead1229b03ae32bcad3ee5', '31.222.203.2', 1678709048, '__ci_last_regenerate|i:1678709048;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d7e5146b7cb868f6dee9c4373e6a5d061a01a28', '31.222.203.2', 1678709048, '__ci_last_regenerate|i:1678709048;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba29e7c4a6b4eaa4301d6f7039a7a77a2a12cc21', '37.111.218.145', 1678711804, '__ci_last_regenerate|i:1678711804;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678711312;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f94650d1d247297f83536e9cc7986b373c5ce963', '31.222.203.2', 1678710762, '__ci_last_regenerate|i:1678710762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a30ad870b8402a0a43c35beab0095e32687b308f', '31.222.203.2', 1678710762, '__ci_last_regenerate|i:1678710762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e816334a086c1231b4fc1f0fbcaceeca5b7601d2', '31.222.203.2', 1678710762, '__ci_last_regenerate|i:1678710762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8277789af7d0bb5e1b8d2218dabf6e6cc0c75307', '31.222.203.2', 1678710762, '__ci_last_regenerate|i:1678710762;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f40ddee90f785303b314da14ecd9a17453e42e', '31.222.203.2', 1678710762, '__ci_last_regenerate|i:1678710762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f485a63f440f17a6413b0dad52de6d34675b45f9', '31.222.203.2', 1678710762, '__ci_last_regenerate|i:1678710762;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c30c991f77764977e0456af03010ebf95458322', '37.111.218.145', 1678714847, '__ci_last_regenerate|i:1678714847;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678711815;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11efbb3cc2030f82d9a4ec1075f879a344e5716b', '31.222.203.2', 1678712577, '__ci_last_regenerate|i:1678712577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa378f79e8db02d41d6b6e99a8977dfd2584c6a', '31.222.203.2', 1678712577, '__ci_last_regenerate|i:1678712577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34c71745b872f1d072ed51e0defd126a45281db', '31.222.203.2', 1678712577, '__ci_last_regenerate|i:1678712577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9d552d0f203590d2af9099ccfa5e92a0f358e3', '31.222.203.2', 1678712577, '__ci_last_regenerate|i:1678712577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79b3bcd9c0ad0a4d11ed1aa84b3f9599240ef154', '31.222.203.2', 1678712577, '__ci_last_regenerate|i:1678712577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55bc350293b7af5157ceff06388c4f62c95d1043', '31.222.203.2', 1678712577, '__ci_last_regenerate|i:1678712577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f1b01806f24e35670e8ba6de43f32d1d5bdcc9d', '31.222.203.2', 1678714362, '__ci_last_regenerate|i:1678714362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a15c1ecc2876be9c4ca4655e49ebcf4dbc3b8a3', '31.222.203.2', 1678714362, '__ci_last_regenerate|i:1678714362;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27179cee6ed54a1876f3437319ab66df86d34aae', '31.222.203.2', 1678714362, '__ci_last_regenerate|i:1678714362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4afc97ab73eff85f088db57ecfeb9cc276099f', '31.222.203.2', 1678714362, '__ci_last_regenerate|i:1678714362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a41b3d0f929a4017fdd38c7b07734c0062f1ec2a', '31.222.203.2', 1678714362, '__ci_last_regenerate|i:1678714362;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e582d3c6cb413f9657cd49fee7de0f46ff92a914', '31.222.203.2', 1678714362, '__ci_last_regenerate|i:1678714362;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f81b6e8b5d788d9b02b0a87d337e813606755332', '37.111.218.145', 1678718038, '__ci_last_regenerate|i:1678718038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678718029;register_id|s:3:\"368\";cash_in_hand|s:8:\"630.0000\";register_open_time|s:19:\"2023-03-12 20:34:03\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0b89c3d9a11ba31659f46213510170da5d67084', '31.222.203.2', 1678716185, '__ci_last_regenerate|i:1678716185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9e856c77db2f241c46a745dcaf0d20af31b691f', '31.222.203.2', 1678716185, '__ci_last_regenerate|i:1678716185;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e5149263418c669282852f3e000d3f716ab19c', '31.222.203.2', 1678716185, '__ci_last_regenerate|i:1678716185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f30b302a8548680dfe6e2e3c9f0c73ef13d29926', '31.222.203.2', 1678716187, '__ci_last_regenerate|i:1678716187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9aced1eb1afdc4987b62ae052f9c643fccbbc84', '31.222.203.2', 1678716187, '__ci_last_regenerate|i:1678716187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0b3002d66182c2c6512669524b8bfb73bbd88a0', '31.222.203.2', 1678716187, '__ci_last_regenerate|i:1678716187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b179ffb94c5cdb1f1302ef411670e5efdea4889', '116.204.230.28', 1678720866, '__ci_last_regenerate|i:1678720866;requested_page|s:13:\"admin/welcome\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0716c014ac8da1221a7c7495a57714dd49ab0c4', '31.222.203.2', 1678717964, '__ci_last_regenerate|i:1678717964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1815aa1c27876c6c7a3cb4dae7f258a339e0b662', '31.222.203.2', 1678717965, '__ci_last_regenerate|i:1678717965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c526254fb972c851fac3f82c88fc71ef19b1d786', '31.222.203.2', 1678717965, '__ci_last_regenerate|i:1678717965;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e67fedb0f5d9779137d2a6386fbfd0c294ca931', '31.222.203.2', 1678717965, '__ci_last_regenerate|i:1678717965;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db01ae7904319d3a49a4850ef3d5653c7f9e06e', '31.222.203.2', 1678717965, '__ci_last_regenerate|i:1678717965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9fdc9a2436bff707e35c772c781983cde47b54', '31.222.203.2', 1678717965, '__ci_last_regenerate|i:1678717965;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ca2fe335a7f5e4c3b3c403091bb670237e7d98', '37.111.218.145', 1678718054, '__ci_last_regenerate|i:1678718038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678617491\";last_ip|s:12:\"37.111.217.8\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678718054;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac01e290fc57aa7758406a839028c2be8b5d1c6f', '31.222.203.2', 1678719770, '__ci_last_regenerate|i:1678719770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a10b1af187f1d425af8c29d0b213e952de271b37', '31.222.203.2', 1678719771, '__ci_last_regenerate|i:1678719771;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a0cf2955e77bf80276641045f971b57fb6682c6', '31.222.203.2', 1678719771, '__ci_last_regenerate|i:1678719771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e123ddf5b974102d09f162b077d039e7e7c9ddd2', '31.222.203.2', 1678719771, '__ci_last_regenerate|i:1678719771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7dc05ffe608ec6062f93b6c8948602493b683b', '31.222.203.2', 1678719771, '__ci_last_regenerate|i:1678719771;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3a3bf98fa807466c5d7c76440ad6afb22ea5e4b', '31.222.203.2', 1678719771, '__ci_last_regenerate|i:1678719771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b9a8728c132cfac43484af963dffeb2097c64a4', '119.30.32.225', 1678720866, '__ci_last_regenerate|i:1678720866;requested_page|s:13:\"admin/welcome\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639faa201119eace1ea84612ca83766bb1c561f8', '31.222.203.2', 1678721568, '__ci_last_regenerate|i:1678721568;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da6ae9942ba5db7991d4c014958068b9a34a94d', '31.222.203.2', 1678721570, '__ci_last_regenerate|i:1678721570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1414d0042cae06e3478ca71c1cc6eeae7a4d1620', '31.222.203.2', 1678721570, '__ci_last_regenerate|i:1678721570;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a2191e5bc72564373852a80edbb7212a91112c', '31.222.203.2', 1678721570, '__ci_last_regenerate|i:1678721570;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6421bca53f73d0d1563e1bf2b76d36a9d01c3852', '31.222.203.2', 1678721570, '__ci_last_regenerate|i:1678721570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('937e1607c183c9cf938c266636aec12f425f8ec6', '31.222.203.2', 1678721570, '__ci_last_regenerate|i:1678721570;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be78d8a07509e581846593ff2d4277a80cc2035c', '31.222.203.2', 1678723370, '__ci_last_regenerate|i:1678723370;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2079646ecd302e5acfcdc141bb29f86b5e0b9d81', '31.222.203.2', 1678723371, '__ci_last_regenerate|i:1678723371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec482634cb5bef8236c538c85dd62cd15cd94c99', '31.222.203.2', 1678723371, '__ci_last_regenerate|i:1678723371;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e523c14b64456bd8a5ad89d3b97fbd8cd3b828c3', '31.222.203.2', 1678723371, '__ci_last_regenerate|i:1678723371;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c6b1ac6e774c9a4b6e711a51db0a9b957cf90a8', '31.222.203.2', 1678723371, '__ci_last_regenerate|i:1678723371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('282920c8c87a300015112eafe02a1dca66da2408', '31.222.203.2', 1678723371, '__ci_last_regenerate|i:1678723371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('803826e4193398034a67d13ee5dfb87419504a68', '31.222.203.2', 1678725167, '__ci_last_regenerate|i:1678725167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98523bff4847f6673cdf1b2280591bb6064d7212', '31.222.203.2', 1678725167, '__ci_last_regenerate|i:1678725167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a693abb5990849b136b582f619e8bf756e67220c', '31.222.203.2', 1678725167, '__ci_last_regenerate|i:1678725167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae7caefc77f7206429c85cea3bd5c96a851e33a2', '31.222.203.2', 1678725167, '__ci_last_regenerate|i:1678725167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e90f60872df079bc6cfbd6fb4e4abb64d8fc1e', '31.222.203.2', 1678725167, '__ci_last_regenerate|i:1678725167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b09bba0c11c6ff1f12c68ce591fca664f6b4652', '31.222.203.2', 1678725167, '__ci_last_regenerate|i:1678725167;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31becc71fef46a1d574e0f12c3a9af8b8ed2388d', '31.222.203.2', 1678726971, '__ci_last_regenerate|i:1678726971;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a1556c4665d5a309099313dc5357cae0bb1c8b5', '31.222.203.2', 1678726973, '__ci_last_regenerate|i:1678726973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f629279f249e78737cc6df4f71c6d8c75c7929', '31.222.203.2', 1678726973, '__ci_last_regenerate|i:1678726973;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc7c9096ee8d1aec8f6be9bdb7ac104def583e1', '31.222.203.2', 1678726973, '__ci_last_regenerate|i:1678726973;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54af6bc2fb8f32e9a97631c6e5b6a827ae63072', '31.222.203.2', 1678726973, '__ci_last_regenerate|i:1678726973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19ba46f878a86500bc061cf5bc615b54fe841644', '31.222.203.2', 1678726973, '__ci_last_regenerate|i:1678726973;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f68f290328682b9bdffd1a4a72bd0ff8b1faea20', '31.222.203.2', 1678728758, '__ci_last_regenerate|i:1678728758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff56c4e7074d1d2d164a58028addb37f2d463880', '31.222.203.2', 1678728758, '__ci_last_regenerate|i:1678728758;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64034fb0129a9545469a842e44bd6ae2e0c81c23', '31.222.203.2', 1678728758, '__ci_last_regenerate|i:1678728758;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc5bdba11d0049d765594ec9af99157630e98ce', '31.222.203.2', 1678728759, '__ci_last_regenerate|i:1678728759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39fac083eea3c056b0bcdad16a853e39e4af01ea', '31.222.203.2', 1678728759, '__ci_last_regenerate|i:1678728759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8310b1063e8a699a6ad46248b4e85151ea9ee13', '31.222.203.2', 1678728759, '__ci_last_regenerate|i:1678728759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace1432622066c4a85ed04aa0a4ef98f0933b1bc', '31.222.203.2', 1678730580, '__ci_last_regenerate|i:1678730580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2617c35162bc3bddac161267949a23da15368f2', '31.222.203.2', 1678730580, '__ci_last_regenerate|i:1678730580;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0740ec56f635b6214e11aaba72fec14f7b08918d', '31.222.203.2', 1678730580, '__ci_last_regenerate|i:1678730580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db5f31be26ea3f4b382158e63483fb2488a057a9', '31.222.203.2', 1678730581, '__ci_last_regenerate|i:1678730581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c63d94bffb3c9899f0fff32e8fb0db639fcdc6b', '31.222.203.2', 1678730581, '__ci_last_regenerate|i:1678730581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c250e482d10f10a08e1c39553d6b4e3201e8ef86', '31.222.203.2', 1678730581, '__ci_last_regenerate|i:1678730581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c655e25cb9c1ef1e2afa322198c79601c3eb6eb', '31.222.203.2', 1678732374, '__ci_last_regenerate|i:1678732374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4759671950cedc0766a59137950442af7f7e09', '31.222.203.2', 1678732374, '__ci_last_regenerate|i:1678732374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fab679c4a7296c80539da1148dd2b8cd9a2acb9', '31.222.203.2', 1678732374, '__ci_last_regenerate|i:1678732374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a73ba9d6607b71ecb8c61dd635d8a8d0daf90ba', '31.222.203.2', 1678732374, '__ci_last_regenerate|i:1678732374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7212978729651d47b1f9d5b7e0598a4c97a29d86', '31.222.203.2', 1678732374, '__ci_last_regenerate|i:1678732374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6762feee2de4e4aa31b63c7d136ec9c9e852a340', '31.222.203.2', 1678732374, '__ci_last_regenerate|i:1678732374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef14dc3a930ae2b2ac59d3c92b0e6bc57784a97', '31.222.203.2', 1678734185, '__ci_last_regenerate|i:1678734185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5916e3db4df2bd08d5495a62a32a3c61caabe71', '31.222.203.2', 1678734185, '__ci_last_regenerate|i:1678734185;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ded5d1113b61fb871b7c28bc59aee01f2ec236b', '31.222.203.2', 1678734185, '__ci_last_regenerate|i:1678734185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da987dee572226d79c29a3edd2b1690159f0e032', '31.222.203.2', 1678734187, '__ci_last_regenerate|i:1678734187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63718fe7cd0239e943148a18f297688fb40fa35', '31.222.203.2', 1678734187, '__ci_last_regenerate|i:1678734187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('351030629b708e445bda63f6b9bdf3b0c6646589', '31.222.203.2', 1678734187, '__ci_last_regenerate|i:1678734187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f66f5a19c07e21dced26ee749d6a1254301b67a1', '31.222.203.2', 1678736000, '__ci_last_regenerate|i:1678736000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da12df03fd0da036bb4bbf3f6ebdc043aaafd34c', '31.222.203.2', 1678736001, '__ci_last_regenerate|i:1678736001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5567df5a988a5dd5c6a72c6e77abfb896ab4ef', '31.222.203.2', 1678736001, '__ci_last_regenerate|i:1678736001;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c05fbb1de94af22fb1bbdad156f0962525ba164', '31.222.203.2', 1678736001, '__ci_last_regenerate|i:1678736001;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e65a9a7033146a3a77800a86e0d5a77c9d5c6c6', '31.222.203.2', 1678736001, '__ci_last_regenerate|i:1678736001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687deb6caa3fc88ba86d2b9bd0a79d2d91d2f58d', '31.222.203.2', 1678736001, '__ci_last_regenerate|i:1678736001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90c2113dd2dbdd8deea337cce1f0996c1a52caf0', '31.222.203.2', 1678737786, '__ci_last_regenerate|i:1678737786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa2dd97dc382dc2af8e60907505b03dcbebc15b', '31.222.203.2', 1678737786, '__ci_last_regenerate|i:1678737786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eedd4521a13e0d8732d6efa8f40f29eb191bf3e', '31.222.203.2', 1678737786, '__ci_last_regenerate|i:1678737786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a022b294a27067aea4cd7101c6dff54c2ec4d739', '31.222.203.2', 1678737787, '__ci_last_regenerate|i:1678737787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8110aed3e3fc6d969c8c37c8adf2984f72414aa3', '31.222.203.2', 1678737787, '__ci_last_regenerate|i:1678737787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2332e0a91d5e63cc5585a3f8f3e6ec696d5e99cd', '31.222.203.2', 1678737787, '__ci_last_regenerate|i:1678737787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23f07540865fe0d91d7f14855d9ac254d51f0a50', '31.222.203.2', 1678739591, '__ci_last_regenerate|i:1678739591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c01b4fc704ef98dcea54d0cc9ce9188442f29220', '31.222.203.2', 1678739591, '__ci_last_regenerate|i:1678739591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307762c9308137ca14f3b00a79f1bd3f955a5a2f', '31.222.203.2', 1678739591, '__ci_last_regenerate|i:1678739591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a23c885cb04483131235b30bd962e1e253a3e24', '31.222.203.2', 1678739592, '__ci_last_regenerate|i:1678739592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4deada73fd71b2a681adf21841bce52e5bbc8b6', '31.222.203.2', 1678739592, '__ci_last_regenerate|i:1678739592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a31feb6d00db96f2192faa932d782cbf8567776e', '31.222.203.2', 1678739592, '__ci_last_regenerate|i:1678739592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ea2848f690b75f5917ae8b90eb640555f95a78', '31.222.203.2', 1678741397, '__ci_last_regenerate|i:1678741397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('029fd6c0addda021b35d6aa1b6a718e513aca6ef', '31.222.203.2', 1678741397, '__ci_last_regenerate|i:1678741397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc42f6863a5429d808079d707f4ee49a445a9c8d', '31.222.203.2', 1678741397, '__ci_last_regenerate|i:1678741397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c835e5c32cef530fe5e0c513ea2d52fb24ea7f', '31.222.203.2', 1678741398, '__ci_last_regenerate|i:1678741398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f047add512f479790d401faaabd05e6f824ef289', '31.222.203.2', 1678741398, '__ci_last_regenerate|i:1678741398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2893205c33211ba722836e64a185d566f0def9b0', '31.222.203.2', 1678741398, '__ci_last_regenerate|i:1678741398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43b6e7638aa7c43d9c976edf81a38d94de87c6cd', '31.222.203.2', 1678743176, '__ci_last_regenerate|i:1678743176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('112b492be5573cdb89b5868ff015248f9919db58', '31.222.203.2', 1678743176, '__ci_last_regenerate|i:1678743176;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a59c9ef42ae00e18e56669608a72e8e006a7f2e', '31.222.203.2', 1678743176, '__ci_last_regenerate|i:1678743176;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe7d7bf5e08695fe6f7c1be00abc3db54915dfde', '31.222.203.2', 1678743178, '__ci_last_regenerate|i:1678743178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0f535f5601a7ca9c55226d2ec9abf032855ae6b', '31.222.203.2', 1678743178, '__ci_last_regenerate|i:1678743178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e35f913c8a3ccb0e5a27e2eaee352ac547c958', '31.222.203.2', 1678743178, '__ci_last_regenerate|i:1678743178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de3edb7bfc9267705681f4bbad00701d9702d066', '31.222.203.2', 1678744993, '__ci_last_regenerate|i:1678744993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a361cad78d60f4384f873acc3edb44dee8301a04', '31.222.203.2', 1678744994, '__ci_last_regenerate|i:1678744994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437f4a7a90fca38070c558d05b0a9bc134c04920', '31.222.203.2', 1678744994, '__ci_last_regenerate|i:1678744994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f09c5e4fc7246a084e30ca0d4e5771bfb80d8bc', '31.222.203.2', 1678744994, '__ci_last_regenerate|i:1678744994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eee01e0c805d3a10922ad5e2bb53a0f80996e29', '31.222.203.2', 1678744994, '__ci_last_regenerate|i:1678744994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8342b4b17f6e2e195e4b2791354854d00c4f0b94', '31.222.203.2', 1678744994, '__ci_last_regenerate|i:1678744994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a11350a13fa8ad55ab7601dc1895e16ecc9f5d', '31.222.203.2', 1678746772, '__ci_last_regenerate|i:1678746772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ffafc9e2b95580684a71f2e86678c74f566ee4', '31.222.203.2', 1678746772, '__ci_last_regenerate|i:1678746772;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5dd8d82959e4f08e442b6dfb2d15a70f281b560', '31.222.203.2', 1678746772, '__ci_last_regenerate|i:1678746772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b921c5660e89329406c409fe1a7cf0044b3c344', '31.222.203.2', 1678746773, '__ci_last_regenerate|i:1678746773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7b2333fb3c85644a868d4a65603bb6ee0f5b1b4', '31.222.203.2', 1678746773, '__ci_last_regenerate|i:1678746773;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dc8a171a1886fe8ce1e25bda6fa047bd607f8d6', '31.222.203.2', 1678746773, '__ci_last_regenerate|i:1678746773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b324903c948d9b593ee90048141c1e14a7ff984', '31.222.203.2', 1678748589, '__ci_last_regenerate|i:1678748589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e548df093ccf34b9e97d812381f6f5528d3cbfc', '31.222.203.2', 1678748589, '__ci_last_regenerate|i:1678748589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be654dcc251f099a7af03443828355fbe562958a', '31.222.203.2', 1678748589, '__ci_last_regenerate|i:1678748589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4410d3d3db8447d6647269f6e079b04415febbe6', '31.222.203.2', 1678748590, '__ci_last_regenerate|i:1678748590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ced64bbd2cc9a614c5a5b95dbc2c5d3a3fd591a', '31.222.203.2', 1678748590, '__ci_last_regenerate|i:1678748590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ab149ee44f562f84fb648178857dab8c055d05a', '31.222.203.2', 1678748590, '__ci_last_regenerate|i:1678748590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8cbd835f56cec56517dc5daebe23571a4061dc', '31.222.203.2', 1678750374, '__ci_last_regenerate|i:1678750374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('830cdd01ac611b74d6027ee6627aecd3e340b0d1', '31.222.203.2', 1678750374, '__ci_last_regenerate|i:1678750374;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07f4339388d72d6f2e0bbc872bfdf10c6cdccb75', '31.222.203.2', 1678750374, '__ci_last_regenerate|i:1678750374;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42463680cd0a528743dc2271839b39aaf5b19013', '31.222.203.2', 1678750375, '__ci_last_regenerate|i:1678750375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09947f67826f86665d7d04cd0681c8a1f65aa45b', '31.222.203.2', 1678750375, '__ci_last_regenerate|i:1678750375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79a0e84ba539c00174cf74596682316a9d785fa', '31.222.203.2', 1678750375, '__ci_last_regenerate|i:1678750375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07da214144520579bdb87320e77add88ebd7c2f1', '31.222.203.2', 1678752191, '__ci_last_regenerate|i:1678752191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5647e195caca048fabd301102e07813a73bea297', '31.222.203.2', 1678752191, '__ci_last_regenerate|i:1678752191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ae0693a887dd0e0076ee49674c682bc326d6f3f', '31.222.203.2', 1678752191, '__ci_last_regenerate|i:1678752191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a790fb3076ea6bd98d074d4753aeb9ad8c2e438b', '31.222.203.2', 1678752192, '__ci_last_regenerate|i:1678752192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0731fe7366c369a89dd03a4b8f422153d4800d42', '31.222.203.2', 1678752192, '__ci_last_regenerate|i:1678752192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dce06d20e884424964dcb3e78ad3eca4bbd6b614', '31.222.203.2', 1678752192, '__ci_last_regenerate|i:1678752192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('208d2e580743d4601575419ab442a438e00be846', '31.222.203.2', 1678753983, '__ci_last_regenerate|i:1678753983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce0c5fbd981295ed112cfe3ba3f1cfcb81535ee2', '31.222.203.2', 1678753983, '__ci_last_regenerate|i:1678753983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab439201223868c115c58e9e578c1cbe2a96b04', '31.222.203.2', 1678753983, '__ci_last_regenerate|i:1678753983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b613b82f769dc9affa693f1f11c140b7c1bc0a83', '31.222.203.2', 1678753984, '__ci_last_regenerate|i:1678753984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('295a53514cb8ed1b571ad6330c31c7c5d308fa5d', '31.222.203.2', 1678753984, '__ci_last_regenerate|i:1678753984;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6512ad5a32c7d9d36ecf7c1fe2365337f96df15b', '31.222.203.2', 1678753984, '__ci_last_regenerate|i:1678753984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41326d19a0032efa6b303d0c0e5959da5b2b40ba', '31.222.203.2', 1678755792, '__ci_last_regenerate|i:1678755792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38b94ee60f3fa96ca36c1648cf35178f5cd72456', '31.222.203.2', 1678755792, '__ci_last_regenerate|i:1678755792;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d53c15de6bd3d17696261ecaf569eaac1c5680d1', '31.222.203.2', 1678755792, '__ci_last_regenerate|i:1678755792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b6156083a59ee4a03c23ff0ff8c4df862c72501', '31.222.203.2', 1678755796, '__ci_last_regenerate|i:1678755796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a89cbc9d8ce6677226c6585c0ee18a3f7adb192', '31.222.203.2', 1678755796, '__ci_last_regenerate|i:1678755796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86396f05d5818a8ea3cd7b0e6675236c75d472b2', '31.222.203.2', 1678755796, '__ci_last_regenerate|i:1678755796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a5a44d4f8acd3e00509d987fb600f09d332f629', '31.222.203.2', 1678757585, '__ci_last_regenerate|i:1678757585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c90732ade7ea36fa7794e2959bdb1d4c28c9a6', '31.222.203.2', 1678757585, '__ci_last_regenerate|i:1678757585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27741a62315ffda136a8ae2349e9b288259ffe5c', '31.222.203.2', 1678757585, '__ci_last_regenerate|i:1678757585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('483aa686ad0ee886aa5c31291333afe900708d7d', '31.222.203.2', 1678757585, '__ci_last_regenerate|i:1678757585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d5f0d9a236817167b61830e252ea895998fa1b0', '31.222.203.2', 1678757585, '__ci_last_regenerate|i:1678757585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('779d0ad09084e2c87e137dc176458cbaf7437c88', '31.222.203.2', 1678757585, '__ci_last_regenerate|i:1678757585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b25e1d466b72f7f369a3fe96d179965de1faec72', '31.222.203.2', 1678759380, '__ci_last_regenerate|i:1678759380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('160ad3450f1582fff9493a44a1019d27ae24fa9d', '31.222.203.2', 1678759382, '__ci_last_regenerate|i:1678759382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05e04786d0d2ef64408ecf73be1bc2a2dfbbe38d', '31.222.203.2', 1678759382, '__ci_last_regenerate|i:1678759382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c076f8608e62de724660031e82c8983b1c1896', '31.222.203.2', 1678759382, '__ci_last_regenerate|i:1678759382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2eb6fae881e347c91c63b29fccb3a7e58be999', '31.222.203.2', 1678759382, '__ci_last_regenerate|i:1678759382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40d7327c2ae8665a64dee129f2c7a93b26366fe3', '31.222.203.2', 1678759382, '__ci_last_regenerate|i:1678759382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72db85eaed40f6ba37e647b425b0880972ef0b52', '31.222.203.2', 1678761174, '__ci_last_regenerate|i:1678761174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2798e5c1cbaf64a8ca37ab9e66cf5ad37cd06a', '31.222.203.2', 1678761174, '__ci_last_regenerate|i:1678761174;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa6d991aca91be9178401a5e564f794b425ae20', '31.222.203.2', 1678761174, '__ci_last_regenerate|i:1678761174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b6faf1676a918343cba503cb13b734b238a8f43', '31.222.203.2', 1678761175, '__ci_last_regenerate|i:1678761175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbc2a8772987eadf56e7e4e135d8b1001633fd76', '31.222.203.2', 1678761175, '__ci_last_regenerate|i:1678761175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ecfa24a7bae88baccb5d7529792dbe0955878c5', '31.222.203.2', 1678761175, '__ci_last_regenerate|i:1678761175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4893d15a0caa226243892116b492627202a5ce', '31.222.203.2', 1678762988, '__ci_last_regenerate|i:1678762988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55e368589de032a15b603afe097a36e5198886ee', '31.222.203.2', 1678762988, '__ci_last_regenerate|i:1678762988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f0791629818eb802eea35016d5107ad79f4d155', '31.222.203.2', 1678762988, '__ci_last_regenerate|i:1678762988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36fcead81b79cc6dfaa84c1fd935d9422eff9355', '31.222.203.2', 1678762988, '__ci_last_regenerate|i:1678762988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1043f63b896ddb402b253849bfd0ae075e129169', '31.222.203.2', 1678762988, '__ci_last_regenerate|i:1678762988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('209028a7aedf6292f0b4e9850808053c68ad872b', '31.222.203.2', 1678762988, '__ci_last_regenerate|i:1678762988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0103cbf6e3739a202146c606300204d0f9b89fdb', '31.222.203.2', 1678764791, '__ci_last_regenerate|i:1678764791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87e8855862e94a5862ad159638286aa0bf503701', '31.222.203.2', 1678764791, '__ci_last_regenerate|i:1678764791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4530518d129705f3dcf816cb1792f0ea2ae7791b', '31.222.203.2', 1678764791, '__ci_last_regenerate|i:1678764791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d438e5c154872c403b2be122337a15fb93d2b8', '31.222.203.2', 1678764794, '__ci_last_regenerate|i:1678764794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('944c00d37a9a3b24270c3cc7838eae3042b8968d', '31.222.203.2', 1678764794, '__ci_last_regenerate|i:1678764794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('828607f40600110ffd7a3eeb436fd4e1aa7429ab', '31.222.203.2', 1678764794, '__ci_last_regenerate|i:1678764794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('407020eb62f7ace4ed36a94663eb7e7260173049', '31.222.203.2', 1678766585, '__ci_last_regenerate|i:1678766585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9cd96bd3a29dd9a0b879b6093d0cc839e9bceae', '31.222.203.2', 1678766587, '__ci_last_regenerate|i:1678766587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9aa808b728eeae3b6859a9bbb62acc48a721e97f', '31.222.203.2', 1678766587, '__ci_last_regenerate|i:1678766587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6e21aa51e6c392d4dc84b6fb04083e957983ee6', '31.222.203.2', 1678766587, '__ci_last_regenerate|i:1678766587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74a945c557bc3da10f19dab83182540fa1e221b6', '31.222.203.2', 1678766587, '__ci_last_regenerate|i:1678766587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91749cddcb1e5b5c49b9bb9e5ea388aa07d001e5', '31.222.203.2', 1678766587, '__ci_last_regenerate|i:1678766587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8221c44797c9cad2d0e65427de37c162c3b9afe', '37.111.218.247', 1678768865, '__ci_last_regenerate|i:1678768865;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c082f2c60599fd8ca41bf0af07975d02f7bcfb3', '31.222.203.2', 1678768377, '__ci_last_regenerate|i:1678768377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86c8c0b9d6afe313f79261e5054b952a3e7422e', '31.222.203.2', 1678768377, '__ci_last_regenerate|i:1678768377;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a97f12ffa8ce4ebffb686649b1628290df79c4c', '31.222.203.2', 1678768377, '__ci_last_regenerate|i:1678768377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8155170e78ef2fd7486620bfee256f7dc2186a66', '31.222.203.2', 1678768377, '__ci_last_regenerate|i:1678768377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45dc9b8a59eed712000f56589575394030c7bca8', '31.222.203.2', 1678768377, '__ci_last_regenerate|i:1678768377;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f5b1b339d79fe6dd37ef84b513f82ee0b753648', '31.222.203.2', 1678768377, '__ci_last_regenerate|i:1678768377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0efc3cdffdf53908ead03ef7ccb515f24f251afc', '37.111.218.247', 1678773223, '__ci_last_regenerate|i:1678773223;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678768907;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba0c65d1bb9e55c9cb6c09a738c5190db666467', '31.222.203.2', 1678770199, '__ci_last_regenerate|i:1678770199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78872e9b112c42871feb660e2ec1268d820bacf8', '31.222.203.2', 1678770199, '__ci_last_regenerate|i:1678770199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb705b69cd08c07e2abef88f3a715c7cec21697', '31.222.203.2', 1678770199, '__ci_last_regenerate|i:1678770199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58768ca34e45d9a0e7ba889b3d9626be1b9d8f0b', '31.222.203.2', 1678770201, '__ci_last_regenerate|i:1678770201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deb4e7f369434fe87c36bd8731cdf7837fc40112', '31.222.203.2', 1678770201, '__ci_last_regenerate|i:1678770201;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe0d5405651cbeb11b535610ea3c092e93453fb1', '31.222.203.2', 1678770201, '__ci_last_regenerate|i:1678770201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1d863a8287a74616639a4437990ee612b1edfe6', '31.222.203.2', 1678771979, '__ci_last_regenerate|i:1678771979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68bf17486636fcf9e545d6b0ff783dcc89a4f578', '31.222.203.2', 1678771979, '__ci_last_regenerate|i:1678771979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a89099e8dd60bb3eb806fb21cf5bd299d77466e', '31.222.203.2', 1678771979, '__ci_last_regenerate|i:1678771979;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c0fbe6932b2be4002a87d6f2d99ac44e91be99', '31.222.203.2', 1678771979, '__ci_last_regenerate|i:1678771979;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4038a67fd925bc5afab4cecb1a8ed22e4c9024d4', '31.222.203.2', 1678771979, '__ci_last_regenerate|i:1678771979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce6147860ad4475a46adf8b9441174949a59e106', '31.222.203.2', 1678771979, '__ci_last_regenerate|i:1678771979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3066caaeaf979357baa5958ebf1b1e02f2256b32', '37.111.218.247', 1678778378, '__ci_last_regenerate|i:1678778378;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678773223;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cfc57acab7cc3136dbad05d35f33431654f9d8', '31.222.203.2', 1678773779, '__ci_last_regenerate|i:1678773779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1794240d67c1ae8e950dc9dc28b1e787f73f5bec', '31.222.203.2', 1678773780, '__ci_last_regenerate|i:1678773780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031bf0cde4964f090b10df659edd47f6c756adcc', '31.222.203.2', 1678773780, '__ci_last_regenerate|i:1678773780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20d3884cd34b669167be05c0b02f95d0a53c7f90', '31.222.203.2', 1678773780, '__ci_last_regenerate|i:1678773780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4844827664fb2df83a549291c553bec4a08797a9', '31.222.203.2', 1678773780, '__ci_last_regenerate|i:1678773780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b7d7c70fdfdcc9ee8554fc663f53abf338ca34f', '31.222.203.2', 1678773780, '__ci_last_regenerate|i:1678773780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e1b3f2d3593aeb55a5b4dbe394cb4aede16fc04', '31.222.203.2', 1678775581, '__ci_last_regenerate|i:1678775581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1e55142b32cdb134320187c24b70a17ef71279', '31.222.203.2', 1678775581, '__ci_last_regenerate|i:1678775581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6abde5c33aa4aeaa534e695645aae5cdfef2e0b9', '31.222.203.2', 1678775581, '__ci_last_regenerate|i:1678775581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b60f6317356bbe77683bcefa452a3f2b92fcf1f0', '31.222.203.2', 1678775581, '__ci_last_regenerate|i:1678775581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f67a8c4d98b7d77e8aa633dd13f011793b851f9', '31.222.203.2', 1678775581, '__ci_last_regenerate|i:1678775581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b156bbd208a4419d7512781ee2254be01de3566', '31.222.203.2', 1678775581, '__ci_last_regenerate|i:1678775581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881a56b879ab7807dbcd2871822f4ed86583b4ee', '31.222.203.2', 1678777389, '__ci_last_regenerate|i:1678777389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3604458aa42592b4e846df27528fb77a4f43ce41', '31.222.203.2', 1678777389, '__ci_last_regenerate|i:1678777389;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('581699c06e56d0acf3594bcc82837607e3d67761', '31.222.203.2', 1678777389, '__ci_last_regenerate|i:1678777389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e029e2e07d7049fd715138ab18d5341726443d', '31.222.203.2', 1678777391, '__ci_last_regenerate|i:1678777391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ac71ee32c457321028e9de5993a98d1c6eac893', '31.222.203.2', 1678777391, '__ci_last_regenerate|i:1678777391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d0f445cf2ee46c57064c1dfad4b9e83f9f92b15', '31.222.203.2', 1678777391, '__ci_last_regenerate|i:1678777391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f8c849d2da476fd42f4ac78cde7b54990ea451', '116.204.230.28', 1678779634, '__ci_last_regenerate|i:1678779634;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678705538\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1f895d97df2455cd0e1be33bf8004ad61f0f7dc', '37.111.218.247', 1678779079, '__ci_last_regenerate|i:1678779079;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678778389;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f13d44be09070715f4991641d7dd515958695ef3', '37.111.218.247', 1678779867, '__ci_last_regenerate|i:1678779867;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678778389;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6eab531015d481a01cd0b80a0040616a41a450b', '31.222.203.2', 1678779168, '__ci_last_regenerate|i:1678779168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('251fe14f9852e4a29a9b974ccacb3eff72fb963f', '31.222.203.2', 1678779168, '__ci_last_regenerate|i:1678779168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac2d29d84c450c9cfb359dcd29d42f467167845', '31.222.203.2', 1678779168, '__ci_last_regenerate|i:1678779168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39169ad28ce69f9ebad6f0a61100f771db99f423', '31.222.203.2', 1678779169, '__ci_last_regenerate|i:1678779169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('943b31ba92cf06636a5c8b5cbfcc5514d6917932', '31.222.203.2', 1678779169, '__ci_last_regenerate|i:1678779169;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a84c080d951380024dccac275f5c3d34b1b83b11', '31.222.203.2', 1678779169, '__ci_last_regenerate|i:1678779169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffe64b597eeee45e88ca0cefa1caac3cd7757570', '116.204.230.28', 1678782391, '__ci_last_regenerate|i:1678782391;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678705538\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75e38df621973b8ea86a5459d43980b7e961f966', '37.111.218.247', 1678780243, '__ci_last_regenerate|i:1678780243;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678780146;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de64757cb8f9b4536b7add608090bee6886431f1', '37.111.218.247', 1678782924, '__ci_last_regenerate|i:1678782924;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678780323;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6da06e3102e38c6aa509bc8755b274d84fa3c4a6', '31.222.203.2', 1678781014, '__ci_last_regenerate|i:1678781014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b799029103e1e889b0eb86eef054bf61f8f86a17', '31.222.203.2', 1678781015, '__ci_last_regenerate|i:1678781015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4224508131ea9af8fe83f088077f47c15e725d', '31.222.203.2', 1678781015, '__ci_last_regenerate|i:1678781015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8664fa1a44471b918a9a7ea419469821d5454292', '31.222.203.2', 1678781015, '__ci_last_regenerate|i:1678781015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bd8f3841e22135fe0d30974eb7917e825524f9e', '31.222.203.2', 1678781015, '__ci_last_regenerate|i:1678781015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2ba8464ed5c6d38f4cacd4ea58d98d6ac0e7f6b', '31.222.203.2', 1678781015, '__ci_last_regenerate|i:1678781015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c72ae92c5ca3803db670b89c3e5fd2e63e3516', '116.204.230.28', 1678782391, '__ci_last_regenerate|i:1678782391;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678705538\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d320259a54fd598823776f0e1608f373b9e928', '31.222.203.2', 1678782800, '__ci_last_regenerate|i:1678782800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4fd05c1ed6c8ec8995a36bc12fae772e5166d43', '31.222.203.2', 1678782800, '__ci_last_regenerate|i:1678782800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0c8e15f9fef4774a95fd9289744e8a1f2caebc', '31.222.203.2', 1678782800, '__ci_last_regenerate|i:1678782800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c8e992ae25b2d121bfcdddd1d7d0902099fb4b', '31.222.203.2', 1678782802, '__ci_last_regenerate|i:1678782802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c02a7fd02c57932715326a1ef066f7ec3cfb8c', '31.222.203.2', 1678782802, '__ci_last_regenerate|i:1678782802;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b834fd4cd86b5d6fd01ecb77249b41066b8f2bc2', '31.222.203.2', 1678782802, '__ci_last_regenerate|i:1678782802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88e64d77925efbecd793bad18913f1529537de8f', '37.111.218.247', 1678786177, '__ci_last_regenerate|i:1678786177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678786146;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50923d14565e2b74eb4479df27235b5ad57e0eb8', '31.222.203.2', 1678784626, '__ci_last_regenerate|i:1678784626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36724cd911fc28392642903e6830f0610eea094f', '31.222.203.2', 1678784626, '__ci_last_regenerate|i:1678784626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0433be1bd171dcb612064d10897e4a317db56980', '31.222.203.2', 1678784626, '__ci_last_regenerate|i:1678784626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7e541f935231ab35afec5d2b0caaf0ab05937cd', '31.222.203.2', 1678784626, '__ci_last_regenerate|i:1678784626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cde6c38bbfcd5bbe5c07d87aebcf29a9eee4935', '31.222.203.2', 1678784626, '__ci_last_regenerate|i:1678784626;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3ac7a6f8d4c99b938e7cd8364b594a1f660cbe4', '31.222.203.2', 1678784626, '__ci_last_regenerate|i:1678784626;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0adb8dc5849bd2376a835599f976463fcbb6cbb5', '84.54.50.242', 1678785963, '__ci_last_regenerate|i:1678785963;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c60e3f15b776820d0058146baa8459b91455d0e', '84.54.50.242', 1678785965, '__ci_last_regenerate|i:1678785965;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e00a2d289e77f327ccd18fdf0e51f848568548b', '84.54.50.242', 1678785966, '__ci_last_regenerate|i:1678785966;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fde899fcd8cff5f6ad49ba1d57266a2971df9fb', '84.54.50.242', 1678785968, '__ci_last_regenerate|i:1678785968;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a774f4a9e5c70ef27e1bfe1b3d49bc98abe6860c', '84.54.50.242', 1678785970, '__ci_last_regenerate|i:1678785970;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8dbfc689a2ac316cb52125ceb6d296fa7d899684', '84.54.50.242', 1678785972, '__ci_last_regenerate|i:1678785972;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd57a1e729ce4fe14a0220988d925909076665fa', '84.54.50.242', 1678785974, '__ci_last_regenerate|i:1678785974;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('936a8d4c071e83a3b1ac52433f54eac036ba1e33', '84.54.50.242', 1678785975, '__ci_last_regenerate|i:1678785975;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34faa2abfa4d5b3a78cb851967c82d62a663278d', '84.54.50.242', 1678785977, '__ci_last_regenerate|i:1678785977;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d47571b099dfd85a406ab603cd577a40efa94c79', '84.54.50.242', 1678785979, '__ci_last_regenerate|i:1678785979;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59f641c2753018cfa55d95c34e7803f0043a7b54', '84.54.50.242', 1678785981, '__ci_last_regenerate|i:1678785981;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366e71c308192592518aa7efbcd5bd5ba78bea48', '84.54.50.242', 1678785982, '__ci_last_regenerate|i:1678785982;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a80717ece77e5afb60efe91f2fb78d822520cc55', '84.54.50.242', 1678785984, '__ci_last_regenerate|i:1678785984;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d49fc7a97527bb9bdea92c3bdabfdb26966a9e47', '84.54.50.242', 1678785986, '__ci_last_regenerate|i:1678785986;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d27d0c97389a018b366b9d150108d25504cca4', '84.54.50.242', 1678785987, '__ci_last_regenerate|i:1678785987;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a950717a68581aa4a8907766eff5fec428381f18', '84.54.50.242', 1678785989, '__ci_last_regenerate|i:1678785989;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560e6b1114fa63b56f5c28a4b97824c13ebbabce', '84.54.50.242', 1678785991, '__ci_last_regenerate|i:1678785991;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f835d9fe5dd82ef39ff3d164f13a8a7d09bb804e', '84.54.50.242', 1678785993, '__ci_last_regenerate|i:1678785993;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b5c2af3ad61dd5e407c271f970b2e06685d5d9', '84.54.50.242', 1678785994, '__ci_last_regenerate|i:1678785994;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('066442dfc5d8d7e52b9e380ca99ac6b26fbd142e', '84.54.50.242', 1678785996, '__ci_last_regenerate|i:1678785996;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0858667d19a9dca1a3fdf488a395832df917ca', '84.54.50.242', 1678785998, '__ci_last_regenerate|i:1678785998;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a3ee6dea8062189df83562fe37760d26b59d13', '84.54.50.242', 1678786000, '__ci_last_regenerate|i:1678786000;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9cecb4430942ca29c2b35d8e713129d5390ba97', '84.54.50.242', 1678786001, '__ci_last_regenerate|i:1678786001;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f46a580980c795272be73d0c3bad068b7a5a811', '84.54.50.242', 1678786003, '__ci_last_regenerate|i:1678786003;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('423e850837cc4589da65054c7efaa90338f02e5a', '84.54.50.242', 1678786008, '__ci_last_regenerate|i:1678786008;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dd7e1e44ee07a12a10924289051675e035c89e2', '84.54.50.242', 1678786010, '__ci_last_regenerate|i:1678786010;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9fd60b8042c93785f56fdb3f9a3d4c2b43d5367', '84.54.50.242', 1678786014, '__ci_last_regenerate|i:1678786014;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a61ec9889116959a130c4f30eca02ea46610249', '84.54.50.242', 1678786016, '__ci_last_regenerate|i:1678786016;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1cec87ec62047210fb49f0082430e056184d952', '84.54.50.242', 1678786018, '__ci_last_regenerate|i:1678786018;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fac1b7e85df06e2adcaafd405cebb8527d00a17', '84.54.50.242', 1678786020, '__ci_last_regenerate|i:1678786020;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('682d8549aa7444a360eb623de45d72d80d111eb7', '84.54.50.242', 1678786021, '__ci_last_regenerate|i:1678786021;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bc3a85fcc34acfc9e37a608a7a8715364ea3da9', '84.54.50.242', 1678786023, '__ci_last_regenerate|i:1678786023;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3d204fb71651db39ebf0eebd5f768ca3c097ef', '84.54.50.242', 1678786025, '__ci_last_regenerate|i:1678786025;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22eec2c892619d7140cbbb5ad20db02d579b461e', '84.54.50.242', 1678786028, '__ci_last_regenerate|i:1678786028;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7f0d1d69ce7e97877484dff174bc39114a9e3c', '84.54.50.242', 1678786030, '__ci_last_regenerate|i:1678786030;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a2a41be1eca2f396e638ff9c245bfd9d37f88b', '84.54.50.242', 1678786032, '__ci_last_regenerate|i:1678786032;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab1dc3653aac2fa2931fcaf539a00e286b4995d8', '84.54.50.242', 1678786034, '__ci_last_regenerate|i:1678786034;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e6fe8cbbfbbcd91f14c1473d45c4724795f55c5', '84.54.50.242', 1678786036, '__ci_last_regenerate|i:1678786036;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19898460b601d7ab1ea30b9532c5ebe6c4044b8e', '84.54.50.242', 1678786037, '__ci_last_regenerate|i:1678786037;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c59d733f0c08793516d91f115fd7317bd5b6c9', '84.54.50.242', 1678786039, '__ci_last_regenerate|i:1678786039;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5dfd7aaaa81fe556381a9a5a66f23df77e1039', '84.54.50.242', 1678786041, '__ci_last_regenerate|i:1678786041;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f6587fed763ff7d956071421224a51637150ee0', '84.54.50.242', 1678786043, '__ci_last_regenerate|i:1678786042;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ace383a387b2e601a2e68aaa5a620c7a60a1cc8', '84.54.50.242', 1678786045, '__ci_last_regenerate|i:1678786045;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c175b2977ac7fa09fa9df8ade23323bda5c592', '84.54.50.242', 1678786047, '__ci_last_regenerate|i:1678786047;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89d886262bdbef7a98d0bb36044e39bc38289bcb', '84.54.50.242', 1678786048, '__ci_last_regenerate|i:1678786048;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5ecc046d67b25e978489c47bf936ad14702089d', '84.54.50.242', 1678786050, '__ci_last_regenerate|i:1678786050;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03cd728b3e8078af2a58c0f8adca7874b62d518f', '84.54.50.242', 1678786052, '__ci_last_regenerate|i:1678786052;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('088e8d3932c86f92662c1abcaa9fd20f2003483c', '84.54.50.242', 1678786053, '__ci_last_regenerate|i:1678786053;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32c0780b1a95c878616a213ba8db240838f932d8', '84.54.50.242', 1678786055, '__ci_last_regenerate|i:1678786055;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21af15bbe17c12dec6cafa195c74e09b4f90cf0b', '84.54.50.242', 1678786057, '__ci_last_regenerate|i:1678786057;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10c74296456a40f09b76907902f29a874b08c44f', '84.54.50.242', 1678786059, '__ci_last_regenerate|i:1678786059;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3445f128ef5a0db2a6aedef0aa5e9fd7d5f1e873', '84.54.50.242', 1678786060, '__ci_last_regenerate|i:1678786060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bafb3182d3da0394e52c98a54dfeff3dcf8d9227', '84.54.50.242', 1678786062, '__ci_last_regenerate|i:1678786062;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d723db4d826c7baede2fdd3c79762503af07e7c0', '84.54.50.242', 1678786065, '__ci_last_regenerate|i:1678786065;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edecc7a20c3cf6abae7fae78a68b323563bbb2f2', '84.54.50.242', 1678786067, '__ci_last_regenerate|i:1678786067;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcaa2778216f52c034881069ded209e9d6c23258', '84.54.50.242', 1678786069, '__ci_last_regenerate|i:1678786069;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cff0231f1af7c3c4317c5bbec74a6f4cd424d765', '84.54.50.242', 1678786070, '__ci_last_regenerate|i:1678786070;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e5323afcbfb12b8c0c5dae93d3c5c3bf8a3ba33', '37.111.218.247', 1678786638, '__ci_last_regenerate|i:1678786638;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678786467;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19dcae60a2df66c79eedacbe735defdff2638c69', '37.111.218.247', 1678788424, '__ci_last_regenerate|i:1678788424;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678786882;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d88b66c43ca4de97cc724fc540df8b193c0d125a', '31.222.203.2', 1678786401, '__ci_last_regenerate|i:1678786401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33bdb356615ca67a5e3c468270a7c684b34b4d3f', '31.222.203.2', 1678786401, '__ci_last_regenerate|i:1678786401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48fc90e2edc2cef2f2688bb1f0e4922413e3f425', '31.222.203.2', 1678786401, '__ci_last_regenerate|i:1678786401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27119008e000a2cc91224af6c18a7d5cd7ff503', '31.222.203.2', 1678786406, '__ci_last_regenerate|i:1678786406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0deb0c35199ab434ed6adb7500d5fdb98b3db43a', '31.222.203.2', 1678786406, '__ci_last_regenerate|i:1678786406;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aebd6ee0968e13755762efc2c25395d92ef998c2', '31.222.203.2', 1678786406, '__ci_last_regenerate|i:1678786406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8c7cc825993f3c93aa8a442ae6eb9edc9f65977', '31.222.203.2', 1678788210, '__ci_last_regenerate|i:1678788210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1624252abbbf98e6853b046908a71ee890fd52db', '31.222.203.2', 1678788210, '__ci_last_regenerate|i:1678788210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1340a3217d0fc4624e24d48be3db9caf31c881ae', '31.222.203.2', 1678788210, '__ci_last_regenerate|i:1678788210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de0bc20cf386117935ef4b690a95f22e10b39a7', '31.222.203.2', 1678788210, '__ci_last_regenerate|i:1678788210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd637a236a38312156cc7f305e496ea4d803f507', '31.222.203.2', 1678788210, '__ci_last_regenerate|i:1678788210;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ffb40339ce38def420801d44e65ce242587b57', '31.222.203.2', 1678788210, '__ci_last_regenerate|i:1678788210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('881940be607d49844c92548ad90b2033b5f0b3e2', '37.111.218.247', 1678789196, '__ci_last_regenerate|i:1678789196;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678788432;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366706f93c5c3966d00947419f9ef44dae4852eb', '37.111.218.247', 1678792494, '__ci_last_regenerate|i:1678792494;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678789211;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee797f1287a974e8660509e747c4edec56c933a', '31.222.203.2', 1678789981, '__ci_last_regenerate|i:1678789981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833bbcef62c08ce84f3e668c0fdbd204df84a69e', '31.222.203.2', 1678789982, '__ci_last_regenerate|i:1678789982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a349b12ab2276c5a6631e1eb73cb5ecbb5ddba', '31.222.203.2', 1678789982, '__ci_last_regenerate|i:1678789982;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f2e315139497351c79d2044e4cfdbb5368779ca', '31.222.203.2', 1678789982, '__ci_last_regenerate|i:1678789982;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb6672d14b9ea8840a6e320e4953fd46408344d7', '31.222.203.2', 1678789982, '__ci_last_regenerate|i:1678789982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e616f7c7949c384387d644e10ad4ba17704f933', '31.222.203.2', 1678789982, '__ci_last_regenerate|i:1678789982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6aa00f420ab375b06a0cfff31361e8fe596d573', '31.222.203.2', 1678791786, '__ci_last_regenerate|i:1678791786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f87ec45b39208ea060b212046bfaf723c792e55', '31.222.203.2', 1678791786, '__ci_last_regenerate|i:1678791786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03e106e4be219ab1ba117e2670e9c227cb6337b', '31.222.203.2', 1678791786, '__ci_last_regenerate|i:1678791786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f079cdb7ef4234fb6f4a4c89cff2cbd9bc64f63c', '31.222.203.2', 1678791787, '__ci_last_regenerate|i:1678791787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb4b729fb702515ba4d66610f55e9427c7d7005', '31.222.203.2', 1678791787, '__ci_last_regenerate|i:1678791787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c28445b317675b228759949a07598c74a38b5f31', '31.222.203.2', 1678791787, '__ci_last_regenerate|i:1678791787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f6622f79d6a5a5d8b855f5862acf76df6ba3359', '37.111.218.247', 1678795355, '__ci_last_regenerate|i:1678795355;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678792608;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1426182cd78cbf1b5ca3a4f4966a7a3b44fd7a37', '31.222.203.2', 1678793576, '__ci_last_regenerate|i:1678793576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e5bb86a5315e35f2931b50f4faabdfc4a59e06', '31.222.203.2', 1678793576, '__ci_last_regenerate|i:1678793576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29aff534695535aa7cb291e80c1645088be999df', '31.222.203.2', 1678793576, '__ci_last_regenerate|i:1678793576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abdd8ec1c1979c0a4beb71ea5262d1f713a136c8', '31.222.203.2', 1678793577, '__ci_last_regenerate|i:1678793577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f85ed8ead696ee1a075388454f03d366d217856', '31.222.203.2', 1678793577, '__ci_last_regenerate|i:1678793577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97df4b6cfab35be02937e3c61019d40921e60064', '31.222.203.2', 1678793577, '__ci_last_regenerate|i:1678793577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002583eed471359f2a7d23396cc7863134313ad9', '37.111.218.247', 1678798441, '__ci_last_regenerate|i:1678798441;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678795361;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c6086fd777561183731612af52afb97bf4af84', '31.222.203.2', 1678795395, '__ci_last_regenerate|i:1678795395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e064c8aec87f6251623a04835fb80fbb4976f404', '31.222.203.2', 1678795395, '__ci_last_regenerate|i:1678795395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cba886bfbacd4bf189106a901fe19e6a588fc691', '31.222.203.2', 1678795395, '__ci_last_regenerate|i:1678795395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffb580b2730016133e7edbb720639d71c8c6b333', '31.222.203.2', 1678795395, '__ci_last_regenerate|i:1678795395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d233a4ba1e9ce505b58d8c8de48d5f6518297887', '31.222.203.2', 1678795395, '__ci_last_regenerate|i:1678795395;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e56b14e994c58694dd95fbe3295900e94d94fa0', '31.222.203.2', 1678795395, '__ci_last_regenerate|i:1678795395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd2bbf9d6b1f6c56f0289a383aa3322cf3fb59c', '31.222.203.2', 1678797174, '__ci_last_regenerate|i:1678797174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31cc8f429ba991fb73f55f33cffc2826f0b7a688', '31.222.203.2', 1678797175, '__ci_last_regenerate|i:1678797175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66af8a1727ed0b3dea17f3fb79f8a77948bd7028', '31.222.203.2', 1678797175, '__ci_last_regenerate|i:1678797175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ec02a390b28f54d1c3eb4cb86188a20b273d4a9', '31.222.203.2', 1678797175, '__ci_last_regenerate|i:1678797175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95996276e82bf8ede218e560c53bcd6f2c8adc8a', '31.222.203.2', 1678797175, '__ci_last_regenerate|i:1678797175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('858e0c23db88e33f80cb6ffdba9e35a5375109c1', '31.222.203.2', 1678797175, '__ci_last_regenerate|i:1678797175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac237656f9e8aeb94c933f3a00f639e7894e315', '37.111.218.247', 1678801151, '__ci_last_regenerate|i:1678801151;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678798660;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1236a51e7cadd5e3970058ef454a0e8f8a22bb1', '31.222.203.2', 1678798979, '__ci_last_regenerate|i:1678798979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7a8d4410ded18ba64361060ed6fdbc54179a66e', '31.222.203.2', 1678798980, '__ci_last_regenerate|i:1678798980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7976e4b7aeb530e21d2ff473cd3fbfdd33281a1', '31.222.203.2', 1678798980, '__ci_last_regenerate|i:1678798980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('110ac45012e9ff44a8fdddaa71476cb8ca8072ec', '31.222.203.2', 1678798980, '__ci_last_regenerate|i:1678798980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68a8452aed8711824734e2de5c16792361abeb7b', '31.222.203.2', 1678798980, '__ci_last_regenerate|i:1678798980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78de6ee45f42f13fec9c2c173cfd45cd6df106af', '31.222.203.2', 1678798980, '__ci_last_regenerate|i:1678798980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac4683c60d595e424948bf1b7b673975814d3d3', '31.222.203.2', 1678800774, '__ci_last_regenerate|i:1678800774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d3f47d109e00497a7ded8a193898fd0617cc0f1', '31.222.203.2', 1678800774, '__ci_last_regenerate|i:1678800774;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9380c4bfbeb0f3c8f1455a746d063b03610f9573', '31.222.203.2', 1678800774, '__ci_last_regenerate|i:1678800774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca6795144a1a8ea1a12da087fb93e203b42f6271', '31.222.203.2', 1678800774, '__ci_last_regenerate|i:1678800774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6071f13398973a9b21bdacf107ba6db45237588', '31.222.203.2', 1678800774, '__ci_last_regenerate|i:1678800774;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df316be83da8ffbdd2efa9c9b9486c10b093dc46', '31.222.203.2', 1678800774, '__ci_last_regenerate|i:1678800774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fbe302f95df470bb6f49fcd36e0131170530b1', '37.111.218.247', 1678804054, '__ci_last_regenerate|i:1678804054;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678801156;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8dc2592012824c09a5e9d5af0440bee993afc71', '31.222.203.2', 1678802577, '__ci_last_regenerate|i:1678802577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283a2b2791e3d677b80f88d061a90a3df8775e81', '31.222.203.2', 1678802577, '__ci_last_regenerate|i:1678802577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd715be0f831c24b75aa37434b163f407cf4ba6', '31.222.203.2', 1678802577, '__ci_last_regenerate|i:1678802577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3507e297c83779085969b8e39a2eb21aee7320f9', '31.222.203.2', 1678802579, '__ci_last_regenerate|i:1678802579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006b1e0072000cf752d66742af221fd6ec381bdc', '31.222.203.2', 1678802579, '__ci_last_regenerate|i:1678802579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d38c392d3ce00dc7d46a0b116b7ef60a0c77380a', '31.222.203.2', 1678802579, '__ci_last_regenerate|i:1678802579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64d8678c838f5bf428840c896deb4bef0d0f7672', '37.111.218.247', 1678804632, '__ci_last_regenerate|i:1678804632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678804262;register_id|s:3:\"369\";cash_in_hand|s:7:\"20.0000\";register_open_time|s:19:\"2023-03-13 20:34:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d8c61f534cb097d518ffebe7a544c4aa310372f', '31.222.203.2', 1678804381, '__ci_last_regenerate|i:1678804381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584ee67c7f51194305fe4fe2bafcf0bfbbf9437e', '31.222.203.2', 1678804382, '__ci_last_regenerate|i:1678804382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7eedd2b55d9a0dc4f00066adbcdf26c930568291', '31.222.203.2', 1678804382, '__ci_last_regenerate|i:1678804382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4158c174bd3b75e32417b4fac3b7dda25bf27347', '31.222.203.2', 1678804382, '__ci_last_regenerate|i:1678804382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('345cfb296ad0c842aea0027aa9ad1f1f7f7f4b70', '31.222.203.2', 1678804382, '__ci_last_regenerate|i:1678804382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f72c516faf7f3fd94eedf8c25f07872b538b68c', '31.222.203.2', 1678804382, '__ci_last_regenerate|i:1678804382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24f95f0703de1f51967671caf991959fd061294a', '37.111.218.247', 1678804660, '__ci_last_regenerate|i:1678804632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678685216\";last_ip|s:14:\"37.111.218.145\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1678804659;register_id|s:3:\"370\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-14 20:37:39\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb3aed274b2b8c535d18739ea733b01468639e5', '31.222.203.2', 1678806190, '__ci_last_regenerate|i:1678806190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8093a91e4d0888417b306af069efcfaf57df02de', '31.222.203.2', 1678806190, '__ci_last_regenerate|i:1678806190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be265c32928a5c1bd2309bed79c0d3a793da5632', '31.222.203.2', 1678806190, '__ci_last_regenerate|i:1678806190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1196c5da1d2ecafdd1c18e64522a8ae12baecc37', '31.222.203.2', 1678806190, '__ci_last_regenerate|i:1678806190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b90757974fdce65652a1a038387c3b6546f8a67c', '31.222.203.2', 1678806190, '__ci_last_regenerate|i:1678806190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f46cc7cef9a5d352c1ccc202a00f1c4502e2cbec', '31.222.203.2', 1678806190, '__ci_last_regenerate|i:1678806190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4bdf94cbeb0ebcfdfd6e4e2b8d0fe12e414ef90', '31.222.203.2', 1678807976, '__ci_last_regenerate|i:1678807976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac847cb1d6f98136dc0b2c05606377f2070e1c15', '31.222.203.2', 1678807976, '__ci_last_regenerate|i:1678807976;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0acf488acf07c6bb2a10f6d3c69f335922065d19', '31.222.203.2', 1678807976, '__ci_last_regenerate|i:1678807976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bda9404fce5b8aed30cd065f2b4f89d434ff520b', '31.222.203.2', 1678807977, '__ci_last_regenerate|i:1678807977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9813e6ba2084175ee0a0301484635e34f450d7a1', '31.222.203.2', 1678807977, '__ci_last_regenerate|i:1678807977;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3617bcaa412a11ebdf23cc3170b03e465d79999', '31.222.203.2', 1678807977, '__ci_last_regenerate|i:1678807977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4b6ee3010edf27ad276fe619b375890881c2bc', '183.89.94.249', 1678809383, '__ci_last_regenerate|i:1678809364;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1678628260\";last_ip|s:10:\"1.47.159.7\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2357b733b369c118d961f45d3d15142b820a8a', '31.222.203.2', 1678809759, '__ci_last_regenerate|i:1678809759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95da980f5f94152b826bb2334e525b2d4e79e0d9', '31.222.203.2', 1678809759, '__ci_last_regenerate|i:1678809759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a36e57faf0062d4cd4d95dd9cdb7e5a8b1c74cce', '31.222.203.2', 1678809759, '__ci_last_regenerate|i:1678809759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0fb8f3927e6674ac90542489de0aeec41ce2fc', '31.222.203.2', 1678809759, '__ci_last_regenerate|i:1678809759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec023bfc6c36775a3a3b72a2551d559843ece4a', '31.222.203.2', 1678809759, '__ci_last_regenerate|i:1678809759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('524126d7b68039b3ea729fe4dfbef44dd0e8beed', '31.222.203.2', 1678809759, '__ci_last_regenerate|i:1678809759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec46b1edeb267b78e083428b65aeb9c017dc938', '31.222.203.2', 1678811551, '__ci_last_regenerate|i:1678811551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cd6be22ae466dfb4d05dd0f78b90c3bc751a6b3', '31.222.203.2', 1678811552, '__ci_last_regenerate|i:1678811552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c77defaf06bc34914e7ae040425d75182ff7008', '31.222.203.2', 1678811552, '__ci_last_regenerate|i:1678811552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb3ed0904730d1c26470b068ae91bbd7f7519f82', '31.222.203.2', 1678811552, '__ci_last_regenerate|i:1678811552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f56a2079eb1200ca9e110ab55226d9fe6f052a', '31.222.203.2', 1678811552, '__ci_last_regenerate|i:1678811552;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f49f44f7f47d3c47cec43cc7c33300a19c6a00', '31.222.203.2', 1678811552, '__ci_last_regenerate|i:1678811552;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b12c9b90ef1eb2f6a988321ad56fd7245749ec', '205.210.31.159', 1678813188, '__ci_last_regenerate|i:1678813188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6680cfecf286f6cc034cebfe0165e5667f517925', '31.222.203.2', 1678813361, '__ci_last_regenerate|i:1678813361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38b3138c24e545e545faffdaa147a8e6cc9d599', '31.222.203.2', 1678813361, '__ci_last_regenerate|i:1678813361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a4efdcace4adf5cde8eb1a7782cb00708810c0a', '31.222.203.2', 1678813361, '__ci_last_regenerate|i:1678813361;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26a194c62bbfbdad8827205a57b9636428359d9f', '31.222.203.2', 1678813363, '__ci_last_regenerate|i:1678813363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ee513aea55ef1c5a18cb2047cbbed3997627e6', '31.222.203.2', 1678813363, '__ci_last_regenerate|i:1678813363;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3147d0e904305f7afd52befe0c36acf14a49049', '31.222.203.2', 1678813363, '__ci_last_regenerate|i:1678813363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d48bf33f164116c53351d73a507e43ee7c95f3e', '205.210.31.26', 1678813704, '__ci_last_regenerate|i:1678813704;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba2343bc6820cd135f8c7602dda88ab8899d1b91', '31.222.203.2', 1678815159, '__ci_last_regenerate|i:1678815159;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fd57507ae72d7c6ba7c30b019332aeb996d6bfa', '31.222.203.2', 1678815160, '__ci_last_regenerate|i:1678815160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f894a8c0808df71c1e51a21c080c2a816058ce', '31.222.203.2', 1678815160, '__ci_last_regenerate|i:1678815160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d298c3f80e9571413a467ce29a76fcea75b7ff6', '31.222.203.2', 1678815160, '__ci_last_regenerate|i:1678815160;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8879e78427db830888502f5aee8bb676bb6d52f', '31.222.203.2', 1678815160, '__ci_last_regenerate|i:1678815160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569856c0b575bc228f13df5c25a282500c126f29', '31.222.203.2', 1678815160, '__ci_last_regenerate|i:1678815160;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89da9ff75e5542a309529be643023b51cb1c42c7', '198.235.24.22', 1678816475, '__ci_last_regenerate|i:1678816475;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69a802e185606670766bc32b1d53d2d4ad0d4353', '31.222.203.2', 1678816956, '__ci_last_regenerate|i:1678816956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310dbf6fb84ef0e41979ca24a6bd5528428a0399', '31.222.203.2', 1678816958, '__ci_last_regenerate|i:1678816958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06aec4a068480b1d780a8cc1751830baeeb5ede', '31.222.203.2', 1678816958, '__ci_last_regenerate|i:1678816958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13a1b90f51fac453c8495d1793fbeb5371cf1101', '31.222.203.2', 1678816958, '__ci_last_regenerate|i:1678816958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fbc06880937d66d03302663482262f302dd390', '31.222.203.2', 1678816958, '__ci_last_regenerate|i:1678816958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78bc2de52f95f2aebc55406d17fb70a40bb46c69', '31.222.203.2', 1678816958, '__ci_last_regenerate|i:1678816958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('590e35ae9e5b9c4c6bd098975081c9f34f7455de', '31.222.203.2', 1678818747, '__ci_last_regenerate|i:1678818747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90592d781d7697885655449705ab8f9635532f2f', '31.222.203.2', 1678818749, '__ci_last_regenerate|i:1678818749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87833eb88b110b175dd32c7c7d4413288970a387', '31.222.203.2', 1678818749, '__ci_last_regenerate|i:1678818749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('deef7e9741169e4f35cc4c14e162bf5641aea01a', '31.222.203.2', 1678818749, '__ci_last_regenerate|i:1678818749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f06b4f920f32863e334bb7679abe9e5ada622d1a', '31.222.203.2', 1678818749, '__ci_last_regenerate|i:1678818749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948d303cd952b8ea20689d40d7295e1ca93543a3', '31.222.203.2', 1678818749, '__ci_last_regenerate|i:1678818749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64427290ae153d8239a2cb3316b75f8d879af3c9', '207.244.242.193', 1678819018, '__ci_last_regenerate|i:1678819018;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca28a82314f46e62162f66e1eece2768153ceb71', '207.244.242.193', 1678819019, '__ci_last_regenerate|i:1678819019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32d22e52a67650140a935ce1266b5e262f985321', '207.244.242.193', 1678819019, '__ci_last_regenerate|i:1678819019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba4e04e3a3aa7d604ea33bf35d50c4d9b7c095d4', '207.244.242.193', 1678819019, '__ci_last_regenerate|i:1678819019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaf290d8dd6b025b9840c234ee93a447f1dcc1b5', '31.222.203.2', 1678820556, '__ci_last_regenerate|i:1678820556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0052598318c2a4f9f30b32aa5397e3217e59b944', '31.222.203.2', 1678820556, '__ci_last_regenerate|i:1678820556;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873aea6488d552edef1c48d800683816208cb74f', '31.222.203.2', 1678820556, '__ci_last_regenerate|i:1678820556;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb776edd2e38913dc8ad08be391b775d4521e922', '31.222.203.2', 1678820557, '__ci_last_regenerate|i:1678820557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f44395745ad4ecd8a5ac9287b662e08b1924b988', '31.222.203.2', 1678820557, '__ci_last_regenerate|i:1678820557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cdd2dd0670b204f177b86f145478a0aceb81943', '31.222.203.2', 1678820557, '__ci_last_regenerate|i:1678820557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('156b7c5222016d7598a3a4d7c9e045f7a52062c3', '31.222.203.2', 1678822349, '__ci_last_regenerate|i:1678822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43850dec62399817a238329140441e10ddce11f4', '31.222.203.2', 1678822349, '__ci_last_regenerate|i:1678822349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c309c76e34b7f933929d8157a3ea3fffe46aef', '31.222.203.2', 1678822349, '__ci_last_regenerate|i:1678822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49efa52d7b7cbfbe211697ad5d4fada412587245', '31.222.203.2', 1678822349, '__ci_last_regenerate|i:1678822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7622d3d220d1e34b447ec9f65178d8190e6033cb', '31.222.203.2', 1678822349, '__ci_last_regenerate|i:1678822349;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('239d1d337c79823538fb546a3ea0ef6a69e6734b', '31.222.203.2', 1678822349, '__ci_last_regenerate|i:1678822349;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ac7bfb15121e9120d14b124d65dc0e42c61c30', '31.222.203.2', 1678824162, '__ci_last_regenerate|i:1678824162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('833ab6bc673f71ce61cc3421ee1631539451ee3a', '31.222.203.2', 1678824162, '__ci_last_regenerate|i:1678824162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('793dc4ab14abf8be19142e54b4ce9cc9228daaad', '31.222.203.2', 1678824162, '__ci_last_regenerate|i:1678824162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de65fb611b4d7a4345c30e2a52c5d8af48e015b0', '31.222.203.2', 1678824162, '__ci_last_regenerate|i:1678824162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c30fc3dbae2871312872025881aa90dd72590b7', '31.222.203.2', 1678824162, '__ci_last_regenerate|i:1678824162;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c83bc035b4cf1159e2f613c47fa6e96e51290a4d', '31.222.203.2', 1678824162, '__ci_last_regenerate|i:1678824162;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a64395f40e9fe814d72bf0e21f2dc7f2d50163', '64.37.56.40', 1678824631, '__ci_last_regenerate|i:1678824631;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f50cfa0078bd39321b8f856d241ac5e69d1aafcd', '64.37.56.40', 1678824633, '__ci_last_regenerate|i:1678824633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f2f8cb75b7a1c762cd76a389bb67047b223fc0b', '64.37.56.40', 1678824633, '__ci_last_regenerate|i:1678824633;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de326d5db1f3aed990f7b2dea939a3493c9188c', '64.37.56.40', 1678824633, '__ci_last_regenerate|i:1678824633;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1baa6a7b4e9896dafcc6e946a216c14cc91bb41d', '31.222.203.2', 1678825949, '__ci_last_regenerate|i:1678825949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3506b449e76f0cb9d6ab820b8319a36bd2d2a24c', '31.222.203.2', 1678825949, '__ci_last_regenerate|i:1678825949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ece3b67a5f3cbdbcb2433ae143290f9ff6e60271', '31.222.203.2', 1678825949, '__ci_last_regenerate|i:1678825949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ece1deb8ca75bb9246d737080a5ef99029b14be', '31.222.203.2', 1678825949, '__ci_last_regenerate|i:1678825949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77963fe69d850010ffc79adea869f57adeb81b7', '31.222.203.2', 1678825949, '__ci_last_regenerate|i:1678825949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a31f1fe7a9a5479d9c8db0a6ea4093ee65bbb19', '31.222.203.2', 1678825949, '__ci_last_regenerate|i:1678825949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03f2dcae3fb95db0ca8faaf71e9640c9f20fc73', '31.222.203.2', 1678827764, '__ci_last_regenerate|i:1678827764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f4c336761a70769f628d2f72fb7b1d851dd2acd', '31.222.203.2', 1678827765, '__ci_last_regenerate|i:1678827765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2bffeb14792f98e14a95c19619d312ed0128fd', '31.222.203.2', 1678827765, '__ci_last_regenerate|i:1678827765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee581e465b9783b5a184b91045d9bbf91dc91475', '31.222.203.2', 1678827765, '__ci_last_regenerate|i:1678827765;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f28a6462d4cc139a1fd411b9b64b591efab0ed4', '31.222.203.2', 1678827765, '__ci_last_regenerate|i:1678827765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569f0d4e98c65278606ec3028274fcf40fb9e29f', '31.222.203.2', 1678827765, '__ci_last_regenerate|i:1678827765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7913e7937bbed774ee0aee53563cd802fb0da550', '31.222.203.2', 1678829550, '__ci_last_regenerate|i:1678829550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08aa07f654247999fa89ca849b32876f7fd98dec', '31.222.203.2', 1678829550, '__ci_last_regenerate|i:1678829550;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dc6b6539f6e55595bcfd125eb21d5c9f7713d08', '31.222.203.2', 1678829550, '__ci_last_regenerate|i:1678829550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2321c1b0468444c2113e2118120e7a2a15e16c80', '31.222.203.2', 1678829550, '__ci_last_regenerate|i:1678829550;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38de86819a7c8f24ab04a51ffdd6c1dc2c4494d4', '31.222.203.2', 1678829551, '__ci_last_regenerate|i:1678829551;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4aaca45a4431be09399838c10837b063ea7d606', '31.222.203.2', 1678829551, '__ci_last_regenerate|i:1678829551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('002d923239021272fcb721d51350cec94733b6cb', '198.235.24.9', 1678830764, '__ci_last_regenerate|i:1678830764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68963d40b413ebcab643caedf72b85f1c2568606', '31.222.203.2', 1678831364, '__ci_last_regenerate|i:1678831364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c78b247beed6ed727082b4ed2e6a69337a51ac1d', '31.222.203.2', 1678831364, '__ci_last_regenerate|i:1678831364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc4b85cb8edf67870015abc2fd964021b11988ad', '31.222.203.2', 1678831364, '__ci_last_regenerate|i:1678831364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9088b44338ef7e067693451dbde19ea62f25e52e', '31.222.203.2', 1678831364, '__ci_last_regenerate|i:1678831364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ddca70a8a2a223d8ff06370e40531c934c1c3f9', '31.222.203.2', 1678831364, '__ci_last_regenerate|i:1678831364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659a9ac003f622cfb85652ccd892408107de240c', '31.222.203.2', 1678831364, '__ci_last_regenerate|i:1678831364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('556666dacf1e16ced1de9df95472d1b34570a5e6', '31.222.203.2', 1678833152, '__ci_last_regenerate|i:1678833152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f61f2d253302be814b65bd3f195eb894b2a4208', '31.222.203.2', 1678833152, '__ci_last_regenerate|i:1678833152;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5abe674bd7c4d6493aba7a728e9c2063a3cc4ff3', '31.222.203.2', 1678833152, '__ci_last_regenerate|i:1678833152;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05eab69d94e56081b6f56560669bdc2687219dc7', '31.222.203.2', 1678833153, '__ci_last_regenerate|i:1678833153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164661c7d66e43d4b59221652efb7903dff7e012', '31.222.203.2', 1678833153, '__ci_last_regenerate|i:1678833153;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca162c4e3ab9bb2751d8e6ce177679dc273ad0a0', '31.222.203.2', 1678833153, '__ci_last_regenerate|i:1678833153;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82e51285830e90884630afc6297d8c497fc54b3e', '31.222.203.2', 1678834956, '__ci_last_regenerate|i:1678834956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85f2776e9249339f2f44e5151b9126674709f79', '31.222.203.2', 1678834956, '__ci_last_regenerate|i:1678834956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('457ad852371abce27a03853ccd57f44f1fef22d7', '31.222.203.2', 1678834956, '__ci_last_regenerate|i:1678834956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5681fb44271fb78fbb765325641e950da996bc67', '31.222.203.2', 1678834956, '__ci_last_regenerate|i:1678834956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc2ab128e24f485789b2d1874f1b9db54317431c', '31.222.203.2', 1678834956, '__ci_last_regenerate|i:1678834956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4a9a5e1d4626e6ef3d3af6017a9946659ba66a7', '31.222.203.2', 1678834956, '__ci_last_regenerate|i:1678834956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d640a6776739747a662d8cbf460f2b4bfabbc2e', '31.222.203.2', 1678836751, '__ci_last_regenerate|i:1678836751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998f2004a15d8f2416d0af1536e2b80eefa4ce50', '31.222.203.2', 1678836751, '__ci_last_regenerate|i:1678836751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4245d013073346e29e3a3ddadcc96ebc5b0f40', '31.222.203.2', 1678836751, '__ci_last_regenerate|i:1678836751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba29d49feb0f7c00321b44b5cdccbbe9c9bf84b7', '31.222.203.2', 1678836751, '__ci_last_regenerate|i:1678836751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7256e0ed2f645cb6856ef135baf8897ceb1a1eb', '31.222.203.2', 1678836751, '__ci_last_regenerate|i:1678836751;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21e56af97e0c787c967f5a21085b5074dd29c8fc', '31.222.203.2', 1678836751, '__ci_last_regenerate|i:1678836751;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df1145e9b2a15097057bbcf1d186d2fa6e41b796', '162.142.125.12', 1678837667, '__ci_last_regenerate|i:1678837667;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2848ba9dc1e7b999f9da4dcfea7d04fde465bffe', '162.142.125.12', 1678837677, '__ci_last_regenerate|i:1678837677;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c75953cb4523f47e922964e2582d80944c2b36b1', '162.142.125.12', 1678837688, '__ci_last_regenerate|i:1678837688;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc79d60b3c2ad4e259a1f243334771a5cb5031a', '31.222.203.2', 1678838560, '__ci_last_regenerate|i:1678838560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb95b682b58ec6a150aea0d1b385d89d9dc5be3', '31.222.203.2', 1678838560, '__ci_last_regenerate|i:1678838560;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('323ad30aa66b522978ae719a116bf1e7b82bddb2', '31.222.203.2', 1678838560, '__ci_last_regenerate|i:1678838560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95f9b41edda1b2b887bbde565a391f99fe4e1d4e', '31.222.203.2', 1678838560, '__ci_last_regenerate|i:1678838560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5796320575f3a804db1be7935f9036ca89bb0f95', '31.222.203.2', 1678838560, '__ci_last_regenerate|i:1678838560;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12e4ffa970a7fc966278b28820aa5a1cc5940fd', '31.222.203.2', 1678838560, '__ci_last_regenerate|i:1678838560;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1544ca4ab0d92ab5c4df03291743284d1556fc01', '31.222.203.2', 1678840346, '__ci_last_regenerate|i:1678840346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44218fffe2e9064b8c998991b4b1eeb5bc819dff', '31.222.203.2', 1678840346, '__ci_last_regenerate|i:1678840346;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccec74ca70c9dd0217631d8339d0458106a64f5f', '31.222.203.2', 1678840346, '__ci_last_regenerate|i:1678840346;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1e229e9015c2d80f8de84fe06495af268d96961', '31.222.203.2', 1678840348, '__ci_last_regenerate|i:1678840348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d58afb42a30a6f723eb1a1e1561143f3e2404f0', '31.222.203.2', 1678840348, '__ci_last_regenerate|i:1678840348;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27963545194a506c1510157b8e1559b7cf9d9b9f', '31.222.203.2', 1678840348, '__ci_last_regenerate|i:1678840348;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bde64a453ea33d28573c983780cdbe47f30467d', '31.222.203.2', 1678842161, '__ci_last_regenerate|i:1678842161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec66205a22162d1748069d0e5426328cb86aeb6', '31.222.203.2', 1678842161, '__ci_last_regenerate|i:1678842161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21d142c0096d54d150a3eadca2c167b2afd5d7e', '31.222.203.2', 1678842161, '__ci_last_regenerate|i:1678842161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('347f3c6aa0b65b219504a7fb4e8fb5ea35886522', '31.222.203.2', 1678842161, '__ci_last_regenerate|i:1678842161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdbb8a0173a80b895eec720a07be077328a87dce', '31.222.203.2', 1678842161, '__ci_last_regenerate|i:1678842161;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a2aeb1b56eab7a1e6f86c812e03c2a555c1e46', '31.222.203.2', 1678842161, '__ci_last_regenerate|i:1678842161;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ee568e6cd0a16555ba988e0d5d30dd6f334c86', '31.222.203.2', 1678843947, '__ci_last_regenerate|i:1678843947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecc3f9cf19ad5f79bd2d31593c47f84647ce306f', '31.222.203.2', 1678843947, '__ci_last_regenerate|i:1678843947;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b404b95c2bd34b434049b18b24a79efd0fa85f1', '31.222.203.2', 1678843947, '__ci_last_regenerate|i:1678843947;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7db0e5cd0bb61282990dedc635a8bc20f4fe0c78', '31.222.203.2', 1678843949, '__ci_last_regenerate|i:1678843949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d327786e81895dc46265bc9fd03c261efc1c8653', '31.222.203.2', 1678843949, '__ci_last_regenerate|i:1678843949;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b154492ca37e1bd8de5e9091438651299c1ab5bb', '31.222.203.2', 1678843949, '__ci_last_regenerate|i:1678843949;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c92d46887d7d5a6461689afdf3b833a5a2ac756f', '31.222.203.2', 1678845752, '__ci_last_regenerate|i:1678845752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ceb3f495b8cc3f7c1dd5f9d9f404ea2e72f2bf', '31.222.203.2', 1678845754, '__ci_last_regenerate|i:1678845754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('089429e006f44f6489668c8d1841f2c289327ce8', '31.222.203.2', 1678845754, '__ci_last_regenerate|i:1678845754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50661297cd09a11619e83b41cfc5468328971722', '31.222.203.2', 1678845754, '__ci_last_regenerate|i:1678845754;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2a86b514844cd257f8ea4763be1ac2d9021ab4', '31.222.203.2', 1678845754, '__ci_last_regenerate|i:1678845754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36df6ee65e0a7376fd21f13542c0e9682ece5091', '31.222.203.2', 1678845754, '__ci_last_regenerate|i:1678845754;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9030f85ca038d8cb5c3f215e3fafcbaa5f396c', '31.222.203.2', 1678847549, '__ci_last_regenerate|i:1678847549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a5258dad371dfb2cdae792b463538c9ea16007', '31.222.203.2', 1678847549, '__ci_last_regenerate|i:1678847549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('432dfadbb5f461c7811b29d81f28d28a204b3cf2', '31.222.203.2', 1678847549, '__ci_last_regenerate|i:1678847549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32cc58b81c2af5fc37dc7fa8979a44e8b1bbdfc3', '31.222.203.2', 1678847549, '__ci_last_regenerate|i:1678847549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf30886705b227228d44959758505a17fd6db1e6', '31.222.203.2', 1678847549, '__ci_last_regenerate|i:1678847549;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9369e4bbacee7c95c0e12eafd0441beef0a6ab66', '31.222.203.2', 1678847549, '__ci_last_regenerate|i:1678847549;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af48c4faaacfedee3f0ba0ef40adb7366bc08f9e', '31.222.203.2', 1678849363, '__ci_last_regenerate|i:1678849363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9072993377112be2b80349d88030b66ff8c3822f', '31.222.203.2', 1678849363, '__ci_last_regenerate|i:1678849363;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05a0057883ff162edd827bcbd139e21de7067210', '31.222.203.2', 1678849363, '__ci_last_regenerate|i:1678849363;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40c5d31f485bc5898b17028dd8129ef02292afae', '31.222.203.2', 1678849366, '__ci_last_regenerate|i:1678849366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a73e9b7726dbea24db663cb331a2969e3ce9e0f', '31.222.203.2', 1678849366, '__ci_last_regenerate|i:1678849366;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d73c6d4abe04a69a456acce74cb9a01c29b93f9f', '31.222.203.2', 1678849366, '__ci_last_regenerate|i:1678849366;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66e1139dbd43ab9f41f591fcfc5f0f000a55ad6', '31.222.203.2', 1678851151, '__ci_last_regenerate|i:1678851151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4df5787fc8074b76f229051302a91d54e75ae1a', '31.222.203.2', 1678851151, '__ci_last_regenerate|i:1678851151;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3fe73f8c40dc21f4a76fcef6ff4bff7a4c691fa', '31.222.203.2', 1678851151, '__ci_last_regenerate|i:1678851151;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e90231b6cb36191adde589990bd73bc63bdc6fcf', '31.222.203.2', 1678851154, '__ci_last_regenerate|i:1678851154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('949ab15e1d8ea88f141301b75effb229f49266dc', '31.222.203.2', 1678851154, '__ci_last_regenerate|i:1678851154;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('595114a8d65c0a74c260aa8a5ad8e3b7b0b8e780', '31.222.203.2', 1678851154, '__ci_last_regenerate|i:1678851154;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('456ce3f59d047bbbe6d8fe41b015d1aa0e939d9b', '31.222.203.2', 1678852963, '__ci_last_regenerate|i:1678852963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f7dcef2bcb967c500ff5617f35a812bfbd6084d', '31.222.203.2', 1678852963, '__ci_last_regenerate|i:1678852963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade297105f4b2e6b811ce4c0126e6707f6926174', '31.222.203.2', 1678852963, '__ci_last_regenerate|i:1678852963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e943c8114b7f5758b3cdac00730b48fd55a6e69', '31.222.203.2', 1678852963, '__ci_last_regenerate|i:1678852963;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('964be0ad031785e49dd70c57046d230cb36a66af', '31.222.203.2', 1678852963, '__ci_last_regenerate|i:1678852963;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfbb8504f68e150f6dfa397b1b3b0fe1ecf44651', '31.222.203.2', 1678852964, '__ci_last_regenerate|i:1678852964;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5dc5905ae582491461d136bb89c0a0e5f1e1280e', '31.222.203.2', 1678854749, '__ci_last_regenerate|i:1678854749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5e79aa4f53a5604cc565dd69fc0f227ea01bc48', '31.222.203.2', 1678854749, '__ci_last_regenerate|i:1678854749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0586a42a9e7e1710d23b6884cc70dbd3dd3b27cc', '31.222.203.2', 1678854749, '__ci_last_regenerate|i:1678854749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca5232d7c2897dddfd551f171f722cc739a78f3', '31.222.203.2', 1678854750, '__ci_last_regenerate|i:1678854750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8a4fb5deccd0043417977d629c69f90c50618e8', '31.222.203.2', 1678854750, '__ci_last_regenerate|i:1678854750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77ab45f7b833175bdd103eb4101a676e1a093574', '31.222.203.2', 1678854750, '__ci_last_regenerate|i:1678854750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70faf77af711c76407637ff576b2c3c4c851548b', '31.222.203.2', 1678856553, '__ci_last_regenerate|i:1678856553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f214967079d7ac3af6c7f5c3f551ae70d2355469', '31.222.203.2', 1678856553, '__ci_last_regenerate|i:1678856553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22249d36e06222c3f54a0dca241471c67fd0d6a3', '31.222.203.2', 1678856553, '__ci_last_regenerate|i:1678856553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4748d41063586e2430d0d44e767b44a565ac3194', '31.222.203.2', 1678856553, '__ci_last_regenerate|i:1678856553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba227781425a5ebaef0c8d91ff99802ee6585dee', '31.222.203.2', 1678856553, '__ci_last_regenerate|i:1678856553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3fe8916a0ef1ce177239c51d88e4d0865af07cc', '31.222.203.2', 1678856553, '__ci_last_regenerate|i:1678856553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69ed5b2037de465562c68b45e430a46ec548a438', '162.142.125.214', 1678857610, '__ci_last_regenerate|i:1678857610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81370086fb3deba790f0876bc076cf5902b1a853', '162.142.125.214', 1678857610, '__ci_last_regenerate|i:1678857610;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dea45c16aa5a3cfada1a1a045b2222322a44bc1', '162.142.125.214', 1678857611, '__ci_last_regenerate|i:1678857611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e6d0be4a50b30980c412367f59cfb2ca9f25890', '31.222.203.2', 1678858358, '__ci_last_regenerate|i:1678858358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a0a72f439da6a7d7ba0eab9ccf86bf3c7736cc8', '31.222.203.2', 1678858358, '__ci_last_regenerate|i:1678858358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d1f6818f69a49015a2e8005d3c2bba15c36a9f', '31.222.203.2', 1678858358, '__ci_last_regenerate|i:1678858358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0cd392c066d69aec6fcecbc858f874c3becf57', '31.222.203.2', 1678858360, '__ci_last_regenerate|i:1678858360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ae8eca791c945a8bae28abe9f256998cffba14', '31.222.203.2', 1678858360, '__ci_last_regenerate|i:1678858360;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb1cd09cec9e6986f02cb67f9affa88e2aba8e8', '31.222.203.2', 1678858360, '__ci_last_regenerate|i:1678858360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f74477cdef4b1bdc576b90c41ace5a4e32041617', '31.222.203.2', 1679528171, '__ci_last_regenerate|i:1679528171;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca7426a9d0b55176fa3a32eac803f829eeb4cb7b', '31.222.203.2', 1679528172, '__ci_last_regenerate|i:1679528171;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('023c08f23ef43213b94100fab16ac4a9a01e1484', '31.222.203.2', 1679528172, '__ci_last_regenerate|i:1679528172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd53971cf4a5dfd50c6b22daf6e1f6bcf3b95870', '31.222.203.2', 1679528172, '__ci_last_regenerate|i:1679528172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccfe1dfdc19db5373508922b35fe6c5f21428fc9', '31.222.203.2', 1679528172, '__ci_last_regenerate|i:1679528172;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4790d0db48b7b467d5e2b23a61d82466fa00284d', '31.222.203.2', 1679528172, '__ci_last_regenerate|i:1679528172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae46f834507ccf3169cca62bcef05e37c54d891', '31.222.203.2', 1679529959, '__ci_last_regenerate|i:1679529959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5417cb7ca959604eb1297f69fc1f9dd60c8c3dad', '31.222.203.2', 1679529959, '__ci_last_regenerate|i:1679529959;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26ee1125052d63c213172f32ac4fa508a2ca432d', '31.222.203.2', 1679529959, '__ci_last_regenerate|i:1679529959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab1b139584e4c01aff6e5d136e11466d2639668', '31.222.203.2', 1679529960, '__ci_last_regenerate|i:1679529960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ecc7adfbbc5c97bde27d5149bade3aefd9e51f1', '31.222.203.2', 1679529960, '__ci_last_regenerate|i:1679529960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88e8bc02312de5274435d425be45a4e0fa61a04', '31.222.203.2', 1679529960, '__ci_last_regenerate|i:1679529960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0389e497609323109a6deec826f0d9cd2a7a19d9', '31.222.203.2', 1679531750, '__ci_last_regenerate|i:1679531750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da6e9dfc62f07e1efb4ed1e7a0ff2179e3cbc81', '31.222.203.2', 1679531750, '__ci_last_regenerate|i:1679531750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('016232f31ef50c16702d0301f5d7c4230be3cac5', '31.222.203.2', 1679531750, '__ci_last_regenerate|i:1679531750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f8ff981b6ed5c4ed2e103a319fc16bce5a1502b', '31.222.203.2', 1679531752, '__ci_last_regenerate|i:1679531752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd9c11eae5497732fa0e3078ceb68903f6e523e9', '31.222.203.2', 1679531752, '__ci_last_regenerate|i:1679531752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1734f3b9c384f280e1a2d5a7a4f63de98e43b58', '31.222.203.2', 1679531752, '__ci_last_regenerate|i:1679531752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bed2c897323808380a108af7eb4cb40cf34e86f', '31.222.203.2', 1679533562, '__ci_last_regenerate|i:1679533562;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5333c74d7f9acae6a5183ebf16995491fbf652e0', '31.222.203.2', 1679533563, '__ci_last_regenerate|i:1679533563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a23d91c6932137096a5b371e37fd1ccb494cb7', '31.222.203.2', 1679533563, '__ci_last_regenerate|i:1679533563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8b7e0f4c0f01fdeeac5de347a652d318c5729c9', '31.222.203.2', 1679533563, '__ci_last_regenerate|i:1679533563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a847ae785524603cc4211eec41b9400b9a63519', '31.222.203.2', 1679533563, '__ci_last_regenerate|i:1679533563;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc0cf46da167344f6b76f7397283ef999610989c', '31.222.203.2', 1679533563, '__ci_last_regenerate|i:1679533563;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f3e7860c0516b0f59801055d9183fb92156d71', '31.222.203.2', 1679535355, '__ci_last_regenerate|i:1679535355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f166ff06fde4b271e1690de7eeaedc72bc0c20ad', '31.222.203.2', 1679535355, '__ci_last_regenerate|i:1679535355;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e448e97b1613049e6755408a7f7b83e7cd5fb6b', '31.222.203.2', 1679535355, '__ci_last_regenerate|i:1679535355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff07d0f88b1d99db28d7bf45700f0307686ff71a', '31.222.203.2', 1679535357, '__ci_last_regenerate|i:1679535357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a51d0dcd68f0e6394cc250af9ec02d9b72d7c5c', '31.222.203.2', 1679535357, '__ci_last_regenerate|i:1679535357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1bf587641571dbc82dc7b68135e5fc5b1345ebd', '31.222.203.2', 1679535357, '__ci_last_regenerate|i:1679535357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8595ae5c57393a3f0c02bcc68716db54d564a815', '31.222.203.2', 1679537156, '__ci_last_regenerate|i:1679537156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e10c6268abdf256143f797d7a31788eb2771f1d', '31.222.203.2', 1679537156, '__ci_last_regenerate|i:1679537156;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('045f2509f5741168f768926b02032374b6045622', '31.222.203.2', 1679537156, '__ci_last_regenerate|i:1679537156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98df626e481753500012411913284b739af820e', '31.222.203.2', 1679537158, '__ci_last_regenerate|i:1679537158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8985ec646eb4462e9aa39501e6851691be4e211d', '31.222.203.2', 1679537158, '__ci_last_regenerate|i:1679537158;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('383a81bb8d8cf2b31d8fa913abbf49fd6af56e07', '31.222.203.2', 1679537158, '__ci_last_regenerate|i:1679537158;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f5612ea1b9e526eaad686dd51ac62b5637f7e2', '116.204.230.19', 1679538293, '__ci_last_regenerate|i:1679538285;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1678809372\";last_ip|s:13:\"183.89.94.249\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('662647f3bace9d621ffc35ec9c5e20dd01148a44', '31.222.203.2', 1679538970, '__ci_last_regenerate|i:1679538970;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a603068237fa534023a746067bdf46be4c6110a', '31.222.203.2', 1679538972, '__ci_last_regenerate|i:1679538972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc06b43866e4691170956bfa6204a80ecf34931', '31.222.203.2', 1679538972, '__ci_last_regenerate|i:1679538972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb3e828378c80d6af5656bfecd2bdb30a3871276', '31.222.203.2', 1679538972, '__ci_last_regenerate|i:1679538972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5661891c35dd0ee09ef57574489b6b5c9ff87892', '31.222.203.2', 1679538972, '__ci_last_regenerate|i:1679538972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfd2b17d9235936639a8fe0e29af06099d9d8c56', '31.222.203.2', 1679538972, '__ci_last_regenerate|i:1679538972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3ff3493ba848e1e053f14c4796c06a512ba9fa1', '31.222.203.2', 1679540749, '__ci_last_regenerate|i:1679540749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e041ba73106379b70e542514bd9bfe4dd211b26', '31.222.203.2', 1679540749, '__ci_last_regenerate|i:1679540749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234f7c41fb3816bffea37bad4ad3d7e4ce345261', '31.222.203.2', 1679540749, '__ci_last_regenerate|i:1679540749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e586a92b5dfc99f2927eadee4276801b26dfcb2f', '31.222.203.2', 1679540750, '__ci_last_regenerate|i:1679540750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('479a4ca30f7c8d3c8679cd22d357bff96e7e4d28', '31.222.203.2', 1679540750, '__ci_last_regenerate|i:1679540750;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31c0e167b30260947e4a189f9433b8bfcf441ac', '31.222.203.2', 1679540750, '__ci_last_regenerate|i:1679540750;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa7884e26a5b98d4efa8458c00df46103f9f1a4', '31.222.203.2', 1679542585, '__ci_last_regenerate|i:1679542585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a75c12b2636c8fea1558176e38e48ae7a550fcc', '31.222.203.2', 1679542585, '__ci_last_regenerate|i:1679542585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb2f14b514f2b49b6dc0e341abec6a40ce3b4cc9', '31.222.203.2', 1679542586, '__ci_last_regenerate|i:1679542586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a27ef70d80eddbeab17c55f9f34bb95b2189f627', '31.222.203.2', 1679542587, '__ci_last_regenerate|i:1679542587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51ea2cbfc699fdd45afac1276ee64579a42c5a4f', '31.222.203.2', 1679542587, '__ci_last_regenerate|i:1679542587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4672a35c26df1ec7620047bb1b81a7ab2b43c32', '31.222.203.2', 1679542587, '__ci_last_regenerate|i:1679542587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db2193f68d0ed604ee8cc8553961c3101787967d', '31.222.203.2', 1679544358, '__ci_last_regenerate|i:1679544358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c134b131a1e75e43cbbd23f6792b49719c8bfac5', '31.222.203.2', 1679544358, '__ci_last_regenerate|i:1679544358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8578776c1f5b5636602dbb263161319af231720', '31.222.203.2', 1679544358, '__ci_last_regenerate|i:1679544358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae503362b6d8ef5b37da1a33a1d5c99c5b8be7a5', '31.222.203.2', 1679544359, '__ci_last_regenerate|i:1679544359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05059722be8f413f2b84d854cb83532d78ca07e4', '31.222.203.2', 1679544359, '__ci_last_regenerate|i:1679544359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2145380eee6af2497ec40f2b99c81c4e23ca189', '31.222.203.2', 1679544359, '__ci_last_regenerate|i:1679544359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4e42f7777ed0955ff41c16f74b200394356c84d', '79.124.59.150', 1679545805, '__ci_last_regenerate|i:1679545805;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('452afada18fa27fe5197197b308709ebc2e91135', '79.124.59.150', 1679545810, '__ci_last_regenerate|i:1679545810;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('989d2af0ab668e8a81f2dcd86abf4c1b7b95fb55', '79.124.59.150', 1679545824, '__ci_last_regenerate|i:1679545824;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c388d8055fb0e88cbcd5cadb5cd266bb283645', '79.124.59.150', 1679545833, '__ci_last_regenerate|i:1679545833;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('330d4059be55e797c6fcb2a9bf596eea3fa449ed', '79.124.59.150', 1679545839, '__ci_last_regenerate|i:1679545839;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb89c5db5edce763efa9757895a34d9c195f1250', '79.124.59.150', 1679545845, '__ci_last_regenerate|i:1679545845;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3758e805688f0140a2db7e1215ab8d4645ea4377', '79.124.59.150', 1679545846, '__ci_last_regenerate|i:1679545846;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fdbb470d370ca1f487812414988387ac448ec1e', '79.124.59.150', 1679545848, '__ci_last_regenerate|i:1679545848;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57c57d666ef00dc9c2d9edc9184f278baf0a769e', '79.124.59.150', 1679545848, '__ci_last_regenerate|i:1679545848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c4c6fc27b40689c65c41788c3ea14e8679ad2a1', '79.124.59.150', 1679545853, '__ci_last_regenerate|i:1679545853;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3589600869ed8cb9217898b2318efeaaa39aee5a', '79.124.59.150', 1679545856, '__ci_last_regenerate|i:1679545856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f567e6177539aa5e4e5ba2e451c4f4ed66dcf9', '79.124.59.150', 1679545864, '__ci_last_regenerate|i:1679545864;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b696c8becf2c85eaeb57b6b38e83798bfed150d1', '79.124.59.150', 1679545865, '__ci_last_regenerate|i:1679545865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d75931bb224aee42611ca234e04345a0acf2911', '79.124.59.150', 1679545872, '__ci_last_regenerate|i:1679545872;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7f9908f7f1f6ac7efc91b2718623a7433858470', '79.124.59.150', 1679545875, '__ci_last_regenerate|i:1679545875;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8810dd5a8c9fac80e1391bf22f3f780ac58f53e0', '79.124.59.150', 1679545881, '__ci_last_regenerate|i:1679545881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('505c25184390972c857dbb2923ec51ad7954a4ec', '79.124.59.150', 1679545882, '__ci_last_regenerate|i:1679545882;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbe9c99b668af5179685e7d3de9dd15bc1fda980', '79.124.59.150', 1679545885, '__ci_last_regenerate|i:1679545885;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d7fb7f50f4b41275a4fb9426bdbee0dc91baeef', '79.124.59.150', 1679545895, '__ci_last_regenerate|i:1679545895;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('714610385b41b37b6e74e6bc6678f47795d5d233', '79.124.59.150', 1679545899, '__ci_last_regenerate|i:1679545899;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1018dcbd8822d140788179c635fd23842b07d53c', '79.124.59.150', 1679545903, '__ci_last_regenerate|i:1679545903;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50c1254cac6eb2e832f85cb30e7eb298138de15c', '79.124.59.150', 1679545908, '__ci_last_regenerate|i:1679545908;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e4cf354ff9ae9f2a82a2afb57297a867099ef92', '79.124.59.150', 1679545910, '__ci_last_regenerate|i:1679545910;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b0892faef5ebb3e0bf4cf9bd8bc31bfc825aca8', '79.124.59.150', 1679545920, '__ci_last_regenerate|i:1679545920;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c27b3eb7d18dc1ee9a9a2a7648a079d29fec1612', '79.124.59.150', 1679545924, '__ci_last_regenerate|i:1679545924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15fde0b520043778bfdd204205b45a7a73badcce', '79.124.59.150', 1679545927, '__ci_last_regenerate|i:1679545927;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2aaa143b4a3e87127317599dc586d0e64623270', '79.124.59.150', 1679545928, '__ci_last_regenerate|i:1679545928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5a82fbe1ed11126d1919ccf062968d1464d5e6', '79.124.59.150', 1679545932, '__ci_last_regenerate|i:1679545932;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45185c7017cc591a8f84f91b77c19c6f3db8a77d', '79.124.59.150', 1679545934, '__ci_last_regenerate|i:1679545934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86ff7c5794f211023c0b4d7335a40b4f1688c418', '79.124.59.150', 1679545935, '__ci_last_regenerate|i:1679545935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6601eb251553364b854d9213973758b64c4be1fd', '79.124.59.150', 1679545936, '__ci_last_regenerate|i:1679545936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8934145fa40cc8868ee8c06f0b617fe04e00364b', '79.124.59.150', 1679545938, '__ci_last_regenerate|i:1679545938;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7254bd717143293f7550d4f3f030176a46b41832', '79.124.59.150', 1679545942, '__ci_last_regenerate|i:1679545942;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b3147559b277974fd89910785f595d22088ac8', '79.124.59.150', 1679545942, '__ci_last_regenerate|i:1679545942;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee4ee2f092cb6730640935d6611d8be9281e1c67', '79.124.59.150', 1679545945, '__ci_last_regenerate|i:1679545945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c4f0bf9d5683598e4d0114f028300e79f1333e', '79.124.59.150', 1679545958, '__ci_last_regenerate|i:1679545958;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('311b404a29e10af6fa6fa0f2db33e3fd98651605', '79.124.59.150', 1679545959, '__ci_last_regenerate|i:1679545959;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648dbb136d583a21c3f462eba21181840124ab24', '79.124.59.150', 1679545975, '__ci_last_regenerate|i:1679545975;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f721bb3931ef6c993a20877dadb62fdba47e50e6', '79.124.59.150', 1679545976, '__ci_last_regenerate|i:1679545976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64893b3c622c13e6f742b1dcd2748fc38b0e335f', '79.124.59.150', 1679545978, '__ci_last_regenerate|i:1679545978;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8090679d94df6018d79a4b4b7bf90935d9ce0d0', '79.124.59.150', 1679545989, '__ci_last_regenerate|i:1679545989;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35b526c5e6412d24353a6cde22803cd278ac72e', '79.124.59.150', 1679545991, '__ci_last_regenerate|i:1679545991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e877d050d355cf6e75b682480b7ba1cb91ec09a2', '79.124.59.150', 1679545991, '__ci_last_regenerate|i:1679545991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a05c0836a277d469eb400a5c51a8ed9dd26c0ef', '79.124.59.150', 1679546003, '__ci_last_regenerate|i:1679546003;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c1147dfc17c2016162717ce5af6dd1b0110dd3', '79.124.59.150', 1679546018, '__ci_last_regenerate|i:1679546018;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eaa19e721366d8154fc2e6bc0fb8ab506ce0aab', '79.124.59.150', 1679546022, '__ci_last_regenerate|i:1679546022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421bd0d4c259cf10278ff1a267e603ddcdc1f96b', '79.124.59.150', 1679546029, '__ci_last_regenerate|i:1679546029;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('105d4445cc4e678927d0b134ddd84eddf6664ef2', '79.124.59.150', 1679546038, '__ci_last_regenerate|i:1679546038;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1527f673b85f7081d318329d2f55ea20c7aa91', '79.124.59.150', 1679546039, '__ci_last_regenerate|i:1679546039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4dbd1041b17757cc90cf85df4d006d3c23762b', '79.124.59.150', 1679546041, '__ci_last_regenerate|i:1679546041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d4af364be4061fea409a144c126f340765322e', '79.124.59.150', 1679546043, '__ci_last_regenerate|i:1679546043;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c60fe662a5af95afc208f8d7d0a648e9950265', '31.222.203.2', 1679546155, '__ci_last_regenerate|i:1679546155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5406fc98343b6389a7f6b7b5a40b31989860f42c', '31.222.203.2', 1679546155, '__ci_last_regenerate|i:1679546155;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c92f9b76ba4d3efe16c7932530f4f0adf707dc3', '31.222.203.2', 1679546155, '__ci_last_regenerate|i:1679546155;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a519c85656f87eaa66a8a4c646836d1158178fef', '31.222.203.2', 1679546157, '__ci_last_regenerate|i:1679546157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061b4f4fe31511db1c3f6bf1a230f97280ed7934', '31.222.203.2', 1679546157, '__ci_last_regenerate|i:1679546157;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a77fad4c6558b74e6e35f17a0146c2c02105a8', '31.222.203.2', 1679546157, '__ci_last_regenerate|i:1679546157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20783f775487e1a73863f71afb3f488047d26360', '31.222.203.2', 1679547957, '__ci_last_regenerate|i:1679547957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5acff0c33b8cc51630b0a48ee7976daaef20b0d8', '31.222.203.2', 1679547957, '__ci_last_regenerate|i:1679547957;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd446cb1bc307b2975c42da934ddeb49b63e22b', '31.222.203.2', 1679547957, '__ci_last_regenerate|i:1679547957;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2b18f0fabf252d1c65463c85c579a560ce4f30', '31.222.203.2', 1679547958, '__ci_last_regenerate|i:1679547958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16875366c6828de61ce15b6c3f2740eab12d533d', '31.222.203.2', 1679547958, '__ci_last_regenerate|i:1679547958;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8498301ff872b72855a7a8d661d3eafda4d8342b', '31.222.203.2', 1679547958, '__ci_last_regenerate|i:1679547958;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0a033fd7b80c799c07104fdaa5a8236ac537fcf', '31.222.203.2', 1679549785, '__ci_last_regenerate|i:1679549785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0255de0e72f632b57f1b34ac98ee223ef41bb205', '31.222.203.2', 1679549787, '__ci_last_regenerate|i:1679549787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('273577c529b8cc6d8266d8e2c66a14b415cdb5cf', '31.222.203.2', 1679549787, '__ci_last_regenerate|i:1679549787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aafa5700bc2e6bcfcc3d64f9bd5378b014c4381f', '31.222.203.2', 1679549787, '__ci_last_regenerate|i:1679549787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9339d9432aa18030dc0a1b9d42c4e9ed7abf3af1', '31.222.203.2', 1679549787, '__ci_last_regenerate|i:1679549787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99b11ae964b62edf7e37dd71d64a7fdb2faebec9', '31.222.203.2', 1679549787, '__ci_last_regenerate|i:1679549787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('368efb4901a42009d257d7308c0025b9fa480d9b', '119.30.45.122', 1679550898, '__ci_last_regenerate|i:1679550898;requested_page|s:25:\"admin/reports/daily_sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea490cf8bf1cebe4dd778b919f7c94d9aae9d318', '31.222.203.2', 1679551553, '__ci_last_regenerate|i:1679551553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3dfee46eee95072f08c512e86f4f3d359f50ecc7', '31.222.203.2', 1679551553, '__ci_last_regenerate|i:1679551553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50adc9fcf2b46c3c96106b42378e840963cb2632', '31.222.203.2', 1679551553, '__ci_last_regenerate|i:1679551553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d5d350bb3d9021c2c7a9ef4a60bc41adf278d5', '31.222.203.2', 1679551553, '__ci_last_regenerate|i:1679551553;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c866e858358b951b59b9961298dff73624581551', '31.222.203.2', 1679551553, '__ci_last_regenerate|i:1679551553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcb2296bcb20eb7f27a55424d5388e04fe061cac', '31.222.203.2', 1679551553, '__ci_last_regenerate|i:1679551553;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6343079247661458591b8990bbd28dbf0828fa5', '37.111.212.180', 1679552348, '__ci_last_regenerate|i:1679552347;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('489432c9e8fcc39f54e524bf550116b203fa7a10', '37.111.219.35', 1679553210, '__ci_last_regenerate|i:1679553210;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679553151;register_id|s:3:\"370\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-14 20:37:39\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0266917967cc674a32dac717715e82e6d830ac49', '37.111.219.35', 1679553626, '__ci_last_regenerate|i:1679553626;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679553603;register_id|s:3:\"371\";cash_in_hand|s:9:\"1140.0000\";register_open_time|s:19:\"2023-03-23 12:36:17\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cadd51b77ba4e48bbb4a295f22b6e87cfce76b3', '31.222.203.2', 1679553357, '__ci_last_regenerate|i:1679553357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82bce78b56b02cab9c8b74cf9cd4049a02f5ac90', '31.222.203.2', 1679553357, '__ci_last_regenerate|i:1679553357;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f5f67090c925a1b295652f704d6c563e93b138d', '31.222.203.2', 1679553357, '__ci_last_regenerate|i:1679553357;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883a08ba2ec465712e4a955bb8565450ae310ad5', '31.222.203.2', 1679553359, '__ci_last_regenerate|i:1679553359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc84f1b91135591e44b8dd1646e3a6350593d6a4', '31.222.203.2', 1679553359, '__ci_last_regenerate|i:1679553359;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c99c8416047eb692c2de923b8883c59808077d1', '31.222.203.2', 1679553359, '__ci_last_regenerate|i:1679553359;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('027b87d942dcc9efeeeec5ee6df82ef1c326cc44', '37.111.219.35', 1679554198, '__ci_last_regenerate|i:1679554198;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679554165;register_id|s:3:\"372\";cash_in_hand|s:9:\"2690.0000\";register_open_time|s:19:\"2023-03-23 12:41:41\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935505e9703ccdc91f86a377fe3579c22379ca20', '37.111.219.35', 1679554716, '__ci_last_regenerate|i:1679554716;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679554684;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d45ba6561b14b1ceb86e47f0400e1e3dd48953bc', '37.111.219.35', 1679555379, '__ci_last_regenerate|i:1679555379;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679555107;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2bfda083602adf7f9ee96e431c11d1628bfd34', '31.222.203.2', 1679554995, '__ci_last_regenerate|i:1679554995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee48a938a71e5b4eb2e7f6ff53b16157df17491', '31.222.203.2', 1679554995, '__ci_last_regenerate|i:1679554995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21b27bd2a5c5820d25fc7e53ccb57797c06405f2', '31.222.203.2', 1679554995, '__ci_last_regenerate|i:1679554995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ef62e903b2f320cc8f4e56726bae3598f699da4', '31.222.203.2', 1679554995, '__ci_last_regenerate|i:1679554995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8219cf31daa0c19763038f940b6818bf3a4f8a8', '31.222.203.2', 1679554995, '__ci_last_regenerate|i:1679554995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a8ba8e483fa661ded1c5d6e8bf9624f8f27555', '31.222.203.2', 1679554995, '__ci_last_regenerate|i:1679554995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3874b2bda5013fc09de58339bce269c71d0e5b54', '37.111.219.35', 1679555826, '__ci_last_regenerate|i:1679555826;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679555641;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae85d40dbd450494c3831b676db483136fb845cf', '37.111.219.35', 1679555892, '__ci_last_regenerate|i:1679555826;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1678768141\";last_ip|s:14:\"37.111.218.247\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679555641;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6ad39e00519c6c0ef17bf26e089cb9b20b304a8', '31.222.203.2', 1679556773, '__ci_last_regenerate|i:1679556773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3afad4e8777bea6a3e0324ae3604f67bd7476a', '31.222.203.2', 1679556773, '__ci_last_regenerate|i:1679556773;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bd88e68f1702293255da7c595562efed08bf17f', '31.222.203.2', 1679556773, '__ci_last_regenerate|i:1679556773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ace2a6df037473c39eb2df9f03fcef4ad4e681e7', '31.222.203.2', 1679556773, '__ci_last_regenerate|i:1679556773;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1326eda43c4fb6fe25fc38e1c6b555b5140ed4ef', '31.222.203.2', 1679556773, '__ci_last_regenerate|i:1679556773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad6da910c6a181e7a6d0ca3c3fcd162e811ff278', '31.222.203.2', 1679556773, '__ci_last_regenerate|i:1679556773;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de1de8bf098782f0de01af319af14c592f7a53ea', '31.222.203.2', 1679558575, '__ci_last_regenerate|i:1679558575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3f08d3a2ab18b8e2f1f479d19587c5bb6b7bb11', '31.222.203.2', 1679558575, '__ci_last_regenerate|i:1679558575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f9ef5159b64eec43ac49dbed29394a8dee8d27', '31.222.203.2', 1679558575, '__ci_last_regenerate|i:1679558575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bb0895fbff01a07a5e43cf645e83c2fe3a4320', '31.222.203.2', 1679558578, '__ci_last_regenerate|i:1679558578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e185e001fe1673ecf09aeb306f61b63779240ba', '31.222.203.2', 1679558578, '__ci_last_regenerate|i:1679558578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a1b792677e1f2c6fd7a39435fea8869dce47790', '31.222.203.2', 1679558578, '__ci_last_regenerate|i:1679558578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda6d674e122b89f2ef2eb3ec00851fa45c3ab48', '31.222.203.2', 1679560377, '__ci_last_regenerate|i:1679560377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad0ae2b4f9d5efd3250c0b738230aca9c9550201', '31.222.203.2', 1679560377, '__ci_last_regenerate|i:1679560377;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e4e2c25affc658edfccd08954bbaf3471b6c92', '31.222.203.2', 1679560377, '__ci_last_regenerate|i:1679560377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5231eabd6e46ddce3e46007063fceec0493b3f80', '31.222.203.2', 1679560379, '__ci_last_regenerate|i:1679560379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e52a843e589e4216de66480fd56c8a2008c66e0', '31.222.203.2', 1679560379, '__ci_last_regenerate|i:1679560379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd4ac33179733f9f3ec19e2a0b9f2d92952f4a5', '31.222.203.2', 1679560379, '__ci_last_regenerate|i:1679560379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f5038e70c0d0e535574451aed28286134a9e8ba', '31.222.203.2', 1679562175, '__ci_last_regenerate|i:1679562175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6032c5f78c0a8647a4a45530f989adbb8c564932', '31.222.203.2', 1679562177, '__ci_last_regenerate|i:1679562177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7503fbfc1804e2cd7219de36c19c9a728ec817d', '31.222.203.2', 1679562177, '__ci_last_regenerate|i:1679562177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fe9f358285c8ed13940ce59e5ee9fbefb9c04d0', '31.222.203.2', 1679562177, '__ci_last_regenerate|i:1679562177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f75a1271ca70415cbc157da9e3e71ebcd43b98a', '31.222.203.2', 1679562177, '__ci_last_regenerate|i:1679562177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25b89711c279ac67edcd7e65ca7b811aef38bbb4', '31.222.203.2', 1679562177, '__ci_last_regenerate|i:1679562177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5292fa15e0709c89293e00f069793560f89c317e', '31.222.203.2', 1679563980, '__ci_last_regenerate|i:1679563980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e802c8a6fa1ce5e4a15f1fc2e8c3a147de7c5a18', '31.222.203.2', 1679563980, '__ci_last_regenerate|i:1679563980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064e4f09e1c821442f8c2ca565ebb6da369f91e7', '31.222.203.2', 1679563980, '__ci_last_regenerate|i:1679563980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62477df3dbc33c3d05368adb313244c8e43d31fd', '31.222.203.2', 1679563981, '__ci_last_regenerate|i:1679563981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6b9117aa9f35944db6d9d74f0245b86a556c2d6', '31.222.203.2', 1679563981, '__ci_last_regenerate|i:1679563981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01a9a223f7d4faf54696d1557d626e09d495f348', '31.222.203.2', 1679563981, '__ci_last_regenerate|i:1679563981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde7250c4fca7adf2dbd5a67694b5c9967385c32', '157.230.249.205', 1679565001, '__ci_last_regenerate|i:1679565001;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16e96ad4fdc02e920a4742d0bd5779aacc7d3910', '157.230.249.205', 1679565003, '__ci_last_regenerate|i:1679565003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7a1b100283ce0ea2ed4bebeecd0b57b202b70c', '157.230.249.205', 1679565004, '__ci_last_regenerate|i:1679565004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6894786a659fb4091e6428ab9b79bd3349c610f', '157.230.249.205', 1679565005, '__ci_last_regenerate|i:1679565005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3a06c06a88bee8320cb1cd54e9c44ebb1c8d0b', '157.230.249.205', 1679565007, '__ci_last_regenerate|i:1679565007;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5d5eead5b845d688cccaa46e4e69214d895df9', '157.230.249.205', 1679565009, '__ci_last_regenerate|i:1679565009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9466df2d6f405668fb5470ddf9f614ca818e74aa', '157.230.249.205', 1679565009, '__ci_last_regenerate|i:1679565009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01758fbdd060b3d24fa70ba8aa12a1c5fb1fd715', '157.230.249.205', 1679565010, '__ci_last_regenerate|i:1679565010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f2e368e2b974063959d88dff9a8b0cfd0b78100', '157.230.249.205', 1679565013, '__ci_last_regenerate|i:1679565013;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4f72ede43c84350c9dca33dbc551fe293b1c753', '157.230.249.205', 1679565015, '__ci_last_regenerate|i:1679565015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f7752e7139dcebeb9ff7c768d6799a3662045aa', '157.230.249.205', 1679565015, '__ci_last_regenerate|i:1679565015;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddd3523c90fcf99a5c8c0de4fa282b252e3a6546', '157.230.249.205', 1679565016, '__ci_last_regenerate|i:1679565016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbeacce0877fcf3f5da41f29081038f8cd7127ba', '157.230.249.205', 1679565020, '__ci_last_regenerate|i:1679565020;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f03b465808a2e2d25a4ae4544d09048091532441', '157.230.249.205', 1679565021, '__ci_last_regenerate|i:1679565021;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ce03ccf7100329633a0feb873f0838541671ea3', '157.230.249.205', 1679565021, '__ci_last_regenerate|i:1679565021;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e587b541ff3e9ed30fa300a772c4b3fd570cc9f', '157.230.249.205', 1679565022, '__ci_last_regenerate|i:1679565022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31298e9629f290e6ab227cd90e4d51123609d06d', '157.230.249.205', 1679565029, '__ci_last_regenerate|i:1679565029;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75140cfdbfc62142ffe2c14bb57acf3d5f2041d6', '157.230.249.205', 1679565030, '__ci_last_regenerate|i:1679565030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b163567e5dd59f81c2fed2b860e892bf122a3f6', '157.230.249.205', 1679565030, '__ci_last_regenerate|i:1679565030;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45dfbc0f56ec97546a3692babede72df29f2af56', '157.230.249.205', 1679565030, '__ci_last_regenerate|i:1679565030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d4c4018bb6029974b025e2b7db5d32ee4de1f3', '157.230.249.205', 1679565032, '__ci_last_regenerate|i:1679565032;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2305a2724f9c665eba6fb6f4c318fc9745864c89', '157.230.249.205', 1679565033, '__ci_last_regenerate|i:1679565033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f362af7f0add634b26ed35fe7f2c40163c59d7b', '157.230.249.205', 1679565033, '__ci_last_regenerate|i:1679565033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1a022c488468e2942db789dd7fc1148bedf4c74', '157.230.249.205', 1679565033, '__ci_last_regenerate|i:1679565033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89c555319c7cc43a872d3580a5862ac36e396b9f', '157.230.249.205', 1679565034, '__ci_last_regenerate|i:1679565034;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd61a08226f7eb05d08df14d9b6e0a863c326b2', '157.230.249.205', 1679565035, '__ci_last_regenerate|i:1679565035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceb68991c49693fed1c03264824c0e6b74d8f80c', '157.230.249.205', 1679565036, '__ci_last_regenerate|i:1679565036;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9bd91b5e5386f23c6a8ab73f70460441c8e5ea', '157.230.249.205', 1679565036, '__ci_last_regenerate|i:1679565036;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('620cd596fc6b06455ba952f5105bcae15045c28c', '157.230.249.205', 1679565037, '__ci_last_regenerate|i:1679565037;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c09a84c48daf0c9f2a514fcb6974cbf2d39944', '157.230.249.205', 1679565038, '__ci_last_regenerate|i:1679565038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1190359a80a43e5adedd3af62c50b6c2e7ed3c48', '157.230.249.205', 1679565038, '__ci_last_regenerate|i:1679565038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922dba0095bbf8eca601732ccd8e8dbde1256a68', '157.230.249.205', 1679565038, '__ci_last_regenerate|i:1679565038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd19115331d1ffc5b82d9c0a678e1e3490101075', '157.230.249.205', 1679565040, '__ci_last_regenerate|i:1679565040;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('583d68e830ce708d85950511f7f14072ad3729fe', '157.230.249.205', 1679565041, '__ci_last_regenerate|i:1679565041;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6001440a549e0c2815bf038eeae2a906f99116e', '157.230.249.205', 1679565041, '__ci_last_regenerate|i:1679565041;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d637b35579586ccfcef7da3aeb94e9a3babffaf', '157.230.249.205', 1679565042, '__ci_last_regenerate|i:1679565042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94288c33d035726c34b2a4c70a53e27e2132835c', '157.230.249.205', 1679565043, '__ci_last_regenerate|i:1679565043;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23c0866b4a38adc289ac2037575ec2720cab16ce', '157.230.249.205', 1679565044, '__ci_last_regenerate|i:1679565044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6725b869345332a029cda0df946921a34ac1387', '157.230.249.205', 1679565044, '__ci_last_regenerate|i:1679565044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0006c7d9fb58e8e69882bedc5fc780509e030b80', '157.230.249.205', 1679565045, '__ci_last_regenerate|i:1679565045;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a37b82f8d43fb9dfd8ad078492466ee20c2c0f1', '157.230.249.205', 1679565046, '__ci_last_regenerate|i:1679565046;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c77f4c918e2a95605208f08887f5aeba22f20c4a', '157.230.249.205', 1679565047, '__ci_last_regenerate|i:1679565047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc6a424da06d21d1d11e018bed0e4e980390f1f9', '157.230.249.205', 1679565047, '__ci_last_regenerate|i:1679565047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('935c46a6a580eab05d07877ae35b1695c09f940c', '157.230.249.205', 1679565047, '__ci_last_regenerate|i:1679565047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61aa5c297264ef9a802327bef5215a5331f7d0af', '157.230.249.205', 1679565049, '__ci_last_regenerate|i:1679565049;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb2ea65cf8db86e0c0fbeb7e0afefca7655ec4b', '157.230.249.205', 1679565050, '__ci_last_regenerate|i:1679565050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c6e4cdf892d7bef68b9f3ea3c6de96eb3e913b', '157.230.249.205', 1679565050, '__ci_last_regenerate|i:1679565050;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fdbf9d1b48f8daeefa69108dd89a565711283d6', '157.230.249.205', 1679565050, '__ci_last_regenerate|i:1679565050;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a21aa085bb5cfb71b892966ecb54b821596ca853', '157.230.249.205', 1679565052, '__ci_last_regenerate|i:1679565052;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d840e55d118eb087358027c845a24fc495b1ddf8', '157.230.249.205', 1679565052, '__ci_last_regenerate|i:1679565052;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d43b7fc055e56753d344c27e0362c79a42bdee65', '157.230.249.205', 1679565053, '__ci_last_regenerate|i:1679565053;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6559a1e7f0644355e25153b1761078a2fdc2b309', '157.230.249.205', 1679565053, '__ci_last_regenerate|i:1679565053;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('332cd40f6fe742297e4396dad9352aeac482f5c0', '157.230.249.205', 1679565054, '__ci_last_regenerate|i:1679565054;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9829fa096f732e22b2b9f8582d3c9bab9a0e8c0', '157.230.249.205', 1679565055, '__ci_last_regenerate|i:1679565055;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d798fa213430ba66325ac0b7d4c1761f6e4c2967', '157.230.249.205', 1679565055, '__ci_last_regenerate|i:1679565055;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dc490a8291a37d3c8a1c179f4c1a0bf07cd42fb', '157.230.249.205', 1679565056, '__ci_last_regenerate|i:1679565056;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5abc93389785f7be124059f5f0b685b339b54da', '157.230.249.205', 1679565057, '__ci_last_regenerate|i:1679565057;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b1f5a5980a08ca5442757278cc70ed30b44547', '157.230.249.205', 1679565058, '__ci_last_regenerate|i:1679565058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f2491dff8784dec67f1cab6b47230aa69b45f5', '157.230.249.205', 1679565058, '__ci_last_regenerate|i:1679565058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5a04301617352d0606e7c120dd863224be02113', '157.230.249.205', 1679565059, '__ci_last_regenerate|i:1679565059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b59f15cf41d9854747c9c9d30a63b6bee13aa45', '157.230.249.205', 1679565060, '__ci_last_regenerate|i:1679565060;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76ef2800ce336387ef205ecf84f7394cb0ad8a0e', '157.230.249.205', 1679565060, '__ci_last_regenerate|i:1679565060;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6992072ae060bd94ffef9f586a23b92d42dd5b33', '157.230.249.205', 1679565061, '__ci_last_regenerate|i:1679565061;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('055f3eb655695b5b39243192852871e83208a640', '157.230.249.205', 1679565061, '__ci_last_regenerate|i:1679565061;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f1d10546e491751d33fa4adda51c54d61af3185', '157.230.249.205', 1679565066, '__ci_last_regenerate|i:1679565066;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('279019cba912c04ae6e8b16e336956aad723a87a', '157.230.249.205', 1679565067, '__ci_last_regenerate|i:1679565067;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be77f76559a2c6ac8c2964f93e3039855865987a', '157.230.249.205', 1679565067, '__ci_last_regenerate|i:1679565067;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aa7ef433f7848fc7ac4074ffd8762e4f4f8c7fd', '157.230.249.205', 1679565067, '__ci_last_regenerate|i:1679565067;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b78e907a8a21f814d29129848d68e6bd5ff3d6e5', '157.230.249.205', 1679565069, '__ci_last_regenerate|i:1679565069;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d630f4ccd2d4c6bd13e889e6469e28d4d2498b8', '157.230.249.205', 1679565069, '__ci_last_regenerate|i:1679565069;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0967293d0d44c3b864cf40185e2020791670457', '157.230.249.205', 1679565070, '__ci_last_regenerate|i:1679565070;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ba1af7ceb9d06e2d499b468aff229cb70a4ce3', '157.230.249.205', 1679565070, '__ci_last_regenerate|i:1679565070;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898dca63f9ee66ac5f1851f0ac1fb2a52e01f574', '157.230.249.205', 1679565071, '__ci_last_regenerate|i:1679565071;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a4e27865b0efa6788409acecfdd17d667e5f66', '157.230.249.205', 1679565072, '__ci_last_regenerate|i:1679565072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da444871b049cd968c376246c3404f94cb20aeb5', '157.230.249.205', 1679565072, '__ci_last_regenerate|i:1679565072;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6afd0b4facf2b79a700be0d1e087f458db713363', '157.230.249.205', 1679565072, '__ci_last_regenerate|i:1679565072;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e45f8c79eb3849d3591d1648d8fc5e85543a2b6', '157.230.249.205', 1679565074, '__ci_last_regenerate|i:1679565074;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('480de4b6f736aa1f73510806b249004575650cba', '157.230.249.205', 1679565074, '__ci_last_regenerate|i:1679565074;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('883c222e8c2668eb40983670e204211bcb8628da', '157.230.249.205', 1679565075, '__ci_last_regenerate|i:1679565075;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a5a9a5e9c8fa01fe8709aac712cbe83093a12d', '157.230.249.205', 1679565075, '__ci_last_regenerate|i:1679565075;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b34252d99dce6c156c3bd32c5e9d9040d79f79', '157.230.249.205', 1679565076, '__ci_last_regenerate|i:1679565076;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d437e4b2fcdbdcfd4766d02e284c3d4a40e16f', '157.230.249.205', 1679565077, '__ci_last_regenerate|i:1679565077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a263e658d2ecae9b89b0bc31d7c55c2bbfc5225', '157.230.249.205', 1679565077, '__ci_last_regenerate|i:1679565077;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9554826a13f45412b5efb2da40fbd0593f63ef94', '157.230.249.205', 1679565078, '__ci_last_regenerate|i:1679565078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8424d44228403b244b20df8db2afc91a3e1c988b', '157.230.249.205', 1679565079, '__ci_last_regenerate|i:1679565079;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('135a6fb88e06c4b0b8c3b3e73040d83af304d304', '157.230.249.205', 1679565080, '__ci_last_regenerate|i:1679565080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f065fe7d1a198d4b3ebb6317faafecc8af53312a', '157.230.249.205', 1679565080, '__ci_last_regenerate|i:1679565080;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('195a453ccc7fba7a12f6cccc943de0d57284f044', '157.230.249.205', 1679565080, '__ci_last_regenerate|i:1679565080;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88d57500aed9eab6172b9c3e7608edf35ab57c83', '157.230.249.205', 1679565081, '__ci_last_regenerate|i:1679565081;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bec8e72e91d0e86941ede0eea371aede98104bd', '157.230.249.205', 1679565082, '__ci_last_regenerate|i:1679565082;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8168aab95b454cc921d75e7a7349a1d1d8dd5dfd', '157.230.249.205', 1679565083, '__ci_last_regenerate|i:1679565083;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7010087fe8fb736f808c82b7908c3d83f8edde3e', '157.230.249.205', 1679565083, '__ci_last_regenerate|i:1679565083;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e8b563adc9bf690d4368343048bbbd2e94e79b1', '157.230.249.205', 1679565086, '__ci_last_regenerate|i:1679565086;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('702cbf6898381df595353fa8de3992eaf2fd1cf6', '157.230.249.205', 1679565086, '__ci_last_regenerate|i:1679565086;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0897206bf676307bdd0f3ccd0a42b69972a15a0', '157.230.249.205', 1679565087, '__ci_last_regenerate|i:1679565087;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98b8f5380880290892aa19ea564c0914a436ac7a', '157.230.249.205', 1679565087, '__ci_last_regenerate|i:1679565087;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85a1e1170630a3500cceb0d85ca7b4d8134f02c', '157.230.249.205', 1679565089, '__ci_last_regenerate|i:1679565089;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1572f2f62e1024dcf7522131e2fad5e61e673aa', '157.230.249.205', 1679565090, '__ci_last_regenerate|i:1679565090;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386610cdcd237dfe54a0fdd6085db0bf66e063bf', '157.230.249.205', 1679565091, '__ci_last_regenerate|i:1679565091;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8f2ee6de9f2e3e87860f7ab1ac0c5925324db61', '157.230.249.205', 1679565091, '__ci_last_regenerate|i:1679565091;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4b7a2dfc70cb39c9ab2475f0723f48052ee2e23', '157.230.249.205', 1679565095, '__ci_last_regenerate|i:1679565095;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06ffe95a927f2208a4bbeb12566beb792a971df5', '157.230.249.205', 1679565095, '__ci_last_regenerate|i:1679565095;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86bfb2e9d8fa10b507590d18a080b4adbbde7927', '157.230.249.205', 1679565096, '__ci_last_regenerate|i:1679565096;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe32f702c92003154bc2425c4a5d5546263b2353', '157.230.249.205', 1679565096, '__ci_last_regenerate|i:1679565096;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6507e91ff82b56cf1c6b2bc3a2811c6d24410dbe', '157.230.249.205', 1679565098, '__ci_last_regenerate|i:1679565098;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e178d03e9dc134bda9b27ae9580fdbf425582505', '157.230.249.205', 1679565099, '__ci_last_regenerate|i:1679565099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62c08d5ef366d66bbaaf472b35c59454d82a863a', '157.230.249.205', 1679565099, '__ci_last_regenerate|i:1679565099;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7734ca50042347d3228bc16fd40f9de8191aeb', '157.230.249.205', 1679565099, '__ci_last_regenerate|i:1679565099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('008a0d81093d341a59b58839ce3ae0ba4bc463c9', '157.230.249.205', 1679565103, '__ci_last_regenerate|i:1679565103;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25877d71276fa4e8de4863fb3f313fa340807bde', '157.230.249.205', 1679565103, '__ci_last_regenerate|i:1679565103;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4b918f62330951cfdb771108766bd8a213180d4', '157.230.249.205', 1679565104, '__ci_last_regenerate|i:1679565104;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37f3e96c50569f95b7e05175356ccfdfa41901cd', '157.230.249.205', 1679565104, '__ci_last_regenerate|i:1679565104;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d34bff65af6f626e51187eba61b38a71f55ad5ce', '157.230.249.205', 1679565105, '__ci_last_regenerate|i:1679565105;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ad3cd26261665885f37e75a021267ec0e12e03b', '157.230.249.205', 1679565106, '__ci_last_regenerate|i:1679565106;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('566a743006da4911399dd7130be6594b9f9c29d0', '157.230.249.205', 1679565106, '__ci_last_regenerate|i:1679565106;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85846bcac0aba45987bf7b98127100906e9e1b9', '157.230.249.205', 1679565107, '__ci_last_regenerate|i:1679565107;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e60eee990a9724a5ef3d66a168f1520043b6b56', '157.230.249.205', 1679565108, '__ci_last_regenerate|i:1679565108;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f59741867592f58036e53f6ddfd0903600fd327', '157.230.249.205', 1679565109, '__ci_last_regenerate|i:1679565109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a509ca9d37564d6ca4fcde7bd14cc37ffcda59dc', '157.230.249.205', 1679565109, '__ci_last_regenerate|i:1679565109;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('111f86b2efa6e0ce8f3360ce89df7e251dcf6dd0', '157.230.249.205', 1679565109, '__ci_last_regenerate|i:1679565109;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fdf46fefd8a54b08b239d0bd0996041a241c977', '157.230.249.205', 1679565112, '__ci_last_regenerate|i:1679565112;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e29c6176382d77dfb0ce7c1e4c364f861e634e3', '157.230.249.205', 1679565113, '__ci_last_regenerate|i:1679565113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('355b4d5179502097697b6fcf0d27fed5aa75a9cb', '157.230.249.205', 1679565113, '__ci_last_regenerate|i:1679565113;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ebd7ca603761a29e9851f95a1639216c727ee9b4', '157.230.249.205', 1679565113, '__ci_last_regenerate|i:1679565113;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e4235a49c223e8141c1291b05f11c098058985', '157.230.249.205', 1679565115, '__ci_last_regenerate|i:1679565115;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c15917ed20d19f30fbef295e5fc9e7abd7a444e', '157.230.249.205', 1679565116, '__ci_last_regenerate|i:1679565116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82e0b33f078089e531f7c51701497c3919baf7d3', '157.230.249.205', 1679565116, '__ci_last_regenerate|i:1679565116;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc338920fa4f93ad373d5cf4969ab1224637949a', '157.230.249.205', 1679565116, '__ci_last_regenerate|i:1679565116;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3bef131a4f3eaec45f39dd75673bb20bf428677', '37.111.219.35', 1679567195, '__ci_last_regenerate|i:1679567195;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679565641;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eac188d63552d890b190061b58e39cc750e0e69', '31.222.203.2', 1679565772, '__ci_last_regenerate|i:1679565772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef484c60c15b9e7a676a4739988677b872067258', '31.222.203.2', 1679565772, '__ci_last_regenerate|i:1679565772;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e9884d21dcbeb07923b2cb4ec4cd1decfc3514', '31.222.203.2', 1679565772, '__ci_last_regenerate|i:1679565772;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c9ab75ec776ea1bc804337d0ca637f437f6c9a4', '31.222.203.2', 1679565775, '__ci_last_regenerate|i:1679565775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dee1d43e9bd3a0bf48c704527017bf6c27132fd3', '31.222.203.2', 1679565775, '__ci_last_regenerate|i:1679565775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74d347d0ad7500e3820b048af467f252fb667c88', '31.222.203.2', 1679565775, '__ci_last_regenerate|i:1679565775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beff5c7aa73ba2e4894be0f6e3e2906bc785a041', '37.111.219.35', 1679568291, '__ci_last_regenerate|i:1679568291;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679565641;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9b98af31294334fc18014b588b5a0cac66c4b86', '31.222.203.2', 1679567581, '__ci_last_regenerate|i:1679567581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12d08b42735998c32cf27ffbcb1f6e893b2736a5', '31.222.203.2', 1679567581, '__ci_last_regenerate|i:1679567581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da4d6d47cb424959ed68e4dd94824c1ecd8ff8ba', '31.222.203.2', 1679567581, '__ci_last_regenerate|i:1679567581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc493c4a367bbf3c87824196ce3eed4ad1db66c', '31.222.203.2', 1679567582, '__ci_last_regenerate|i:1679567582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43903f22dd732042fb3207d048fe97138d613c12', '31.222.203.2', 1679567582, '__ci_last_regenerate|i:1679567582;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7700ad49e64fc7641fb128157bb326661a2f865', '31.222.203.2', 1679567582, '__ci_last_regenerate|i:1679567582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb78373326100ed10464cbd31540a698afa528df', '37.111.219.35', 1679576658, '__ci_last_regenerate|i:1679576658;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679568291;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a663c69dfce619f9bd13ba242380febea2429e0', '31.222.203.2', 1679569392, '__ci_last_regenerate|i:1679569392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8957a8f13ea46cfcf7ecacccb6456af13ff75f60', '31.222.203.2', 1679569392, '__ci_last_regenerate|i:1679569392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9edb91ad0c841ee4006dc3147cfe8e827bf27ca5', '31.222.203.2', 1679569392, '__ci_last_regenerate|i:1679569392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21530c84ec1d82397206a317d3181a80088c6b20', '31.222.203.2', 1679569393, '__ci_last_regenerate|i:1679569393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d2a2fd10155395867552476cf453dce13049bc7', '31.222.203.2', 1679569393, '__ci_last_regenerate|i:1679569393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8401a861b373f545a11101a61bd88a77ae9cf14', '31.222.203.2', 1679569393, '__ci_last_regenerate|i:1679569393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171808bad30733144e606f03d90a403366eaadb3', '31.222.203.2', 1679571178, '__ci_last_regenerate|i:1679571178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('751fb29865d83aebef7a734b3d6325181de9de9d', '31.222.203.2', 1679571178, '__ci_last_regenerate|i:1679571178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08d535087b71f99abcca316349826d286cea6be4', '31.222.203.2', 1679571178, '__ci_last_regenerate|i:1679571178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a2edc5df241e13281acf4959ead2d73b6f8332c', '31.222.203.2', 1679571178, '__ci_last_regenerate|i:1679571178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2c213bcf3c9244698305fab0dbb1d793f578662', '31.222.203.2', 1679571178, '__ci_last_regenerate|i:1679571178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eca17ab7c574ecf5a9eb6376b9fadc740ca895f', '31.222.203.2', 1679571178, '__ci_last_regenerate|i:1679571178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00a7d2bb1ca087f087f69cf5db5ffad411815cf5', '31.222.203.2', 1679572991, '__ci_last_regenerate|i:1679572991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afaa56d691a37e0adef2fd4cc64b27d7b9de13aa', '31.222.203.2', 1679572991, '__ci_last_regenerate|i:1679572991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65613ffdaee2bbf15493912524a518e04430353d', '31.222.203.2', 1679572991, '__ci_last_regenerate|i:1679572991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea5e55cd966856d55e8b17392d4eb0a98db12c6e', '31.222.203.2', 1679572991, '__ci_last_regenerate|i:1679572991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4024ef604c214430ba0a64842235d4c340861ae', '31.222.203.2', 1679572991, '__ci_last_regenerate|i:1679572991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60c00e03fcdd551ad91bbedc292fcfde6405042', '31.222.203.2', 1679572991, '__ci_last_regenerate|i:1679572991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba0f852eedec5681d73f941334ed3e3fe16799d3', '31.222.203.2', 1679574777, '__ci_last_regenerate|i:1679574777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a68c581e1e1b80c8f6365b839b8c81b1ea36141', '31.222.203.2', 1679574777, '__ci_last_regenerate|i:1679574777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baa36cbe28972b32610cf1a96b5e0f4eb560fde4', '31.222.203.2', 1679574777, '__ci_last_regenerate|i:1679574777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c5659ac7fda9cff27b9e7fd4b8009b74a6a4749', '31.222.203.2', 1679574779, '__ci_last_regenerate|i:1679574779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10b9ad54aae0a9e7b3e3dd3b3e325449d6929ed0', '31.222.203.2', 1679574779, '__ci_last_regenerate|i:1679574779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f09f9bcb0d0b87063e90d223d997d0c464652f3', '31.222.203.2', 1679574779, '__ci_last_regenerate|i:1679574779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89984d88b84a3de34255bbe18e700a78d0b2cb6c', '31.222.203.2', 1679576594, '__ci_last_regenerate|i:1679576594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbec1168211f361473d844b689fa1ee425156354', '31.222.203.2', 1679576594, '__ci_last_regenerate|i:1679576594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ab341901c846bf9690fcaed2be9f8488d041606', '31.222.203.2', 1679576594, '__ci_last_regenerate|i:1679576594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e501ff58580a5f80c276b70f4a0daee917052127', '31.222.203.2', 1679576597, '__ci_last_regenerate|i:1679576597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cb0b47ec7d645ad750ba6af2c31240211bc8541', '31.222.203.2', 1679576597, '__ci_last_regenerate|i:1679576597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02939784f089a551926932f1b9f00069be39fdc5', '31.222.203.2', 1679576597, '__ci_last_regenerate|i:1679576597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de6ba2575a7958508f1af013119a932367ba713d', '37.111.219.35', 1679577004, '__ci_last_regenerate|i:1679577004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679576658;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0c59ec09221f2c850e9e2e854063d72ccd9be7d', '37.111.219.35', 1679579212, '__ci_last_regenerate|i:1679579212;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679579121;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b10191cfc7bfeeea85005acde1ac89e06a0986e4', '31.222.203.2', 1679578371, '__ci_last_regenerate|i:1679578371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307c5d13e361cfa534e1da2007ecace0371ffde1', '31.222.203.2', 1679578371, '__ci_last_regenerate|i:1679578371;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c85552519ff492da782ab5307ae43e6d9a7346b3', '31.222.203.2', 1679578372, '__ci_last_regenerate|i:1679578371;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d037c7901c2e37713e3684648314899274ad8e3', '31.222.203.2', 1679578372, '__ci_last_regenerate|i:1679578372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678d8128ce6d6f428f1292fd67ad6c183838b862', '31.222.203.2', 1679578372, '__ci_last_regenerate|i:1679578372;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8dfc7a106ecf9801b4ea7a3f79bc184ff4929e1', '31.222.203.2', 1679578372, '__ci_last_regenerate|i:1679578372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc975dbf61f8db12c88fc5c2f77986236197c46', '37.111.212.218', 1679579487, '__ci_last_regenerate|i:1679579487;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"fdDNu0aoBjXn39PqGVwv\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e4d7ae95e0f197c2a0fe46a38207cd6cab2b87', '37.111.219.35', 1679579527, '__ci_last_regenerate|i:1679579527;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679579410;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7878ed27b85a9ea78fd58b6dcaa40992426eb46d', '37.111.212.218', 1679579792, '__ci_last_regenerate|i:1679579792;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe712176f69a9bfc4b0a50d99b74b69cae79933a', '37.111.219.35', 1679580117, '__ci_last_regenerate|i:1679580117;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679580056;register_id|s:3:\"373\";cash_in_hand|s:9:\"3380.0000\";register_open_time|s:19:\"2023-03-23 12:50:47\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9714f73eab4fc69443c4ae77f9c3577efc191ea', '37.111.212.218', 1679580102, '__ci_last_regenerate|i:1679580102;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2cc4b01e0e9e6a7c539078e76f69d08967783e2', '37.111.212.218', 1679580597, '__ci_last_regenerate|i:1679580597;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61b79093f23fbcef5410e41c2b01fa793842356f', '37.111.219.35', 1679580481, '__ci_last_regenerate|i:1679580481;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679580458;register_id|s:3:\"374\";cash_in_hand|s:9:\"2970.0000\";register_open_time|s:19:\"2023-03-23 20:05:07\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adcf6ebaa230d74a3c9da665d93d3cb1acf8531f', '31.222.203.2', 1679580181, '__ci_last_regenerate|i:1679580181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd91f7a731fee44bbe4cf58b65eea3202d3e9265', '31.222.203.2', 1679580181, '__ci_last_regenerate|i:1679580181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc5f0696ce7945318451f66c7ed8f392bd49f9b5', '31.222.203.2', 1679580181, '__ci_last_regenerate|i:1679580181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37bcc3df1c91d94928e61ba07a41fa9910ac376e', '31.222.203.2', 1679580184, '__ci_last_regenerate|i:1679580184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ac3d2e5de3fa4e66653e822bba9b96692c994f4', '31.222.203.2', 1679580184, '__ci_last_regenerate|i:1679580184;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('000339f9847990292052b6a157958cdc5a80028c', '31.222.203.2', 1679580184, '__ci_last_regenerate|i:1679580184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f55ffd8b85f6b202059cfb129c014283bf3ece03', '37.111.219.35', 1679580823, '__ci_last_regenerate|i:1679580823;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679580630;register_id|s:3:\"374\";cash_in_hand|s:9:\"2970.0000\";register_open_time|s:19:\"2023-03-23 20:05:07\";error|s:43:\"The quantity is out of stock for Bird House\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a76a352e96e339e710e3d6fb4528925321e40c64', '37.111.212.218', 1679580938, '__ci_last_regenerate|i:1679580938;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eae359f41fb04a22554810c07e7fdfd6115ef77', '37.111.219.35', 1679581213, '__ci_last_regenerate|i:1679581213;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679581107;register_id|s:3:\"374\";cash_in_hand|s:9:\"2970.0000\";register_open_time|s:19:\"2023-03-23 20:05:07\";error|s:43:\"The quantity is out of stock for Bird House\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de172000b1ce3fd8f07b5545db25a11ee035537e', '37.111.212.218', 1679581264, '__ci_last_regenerate|i:1679581264;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da8007d10b2abdc34ed4259bb9c71adc27b899f', '37.111.219.35', 1679581597, '__ci_last_regenerate|i:1679581597;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679581578;register_id|s:3:\"374\";cash_in_hand|s:9:\"2970.0000\";register_open_time|s:19:\"2023-03-23 20:05:07\";error|s:43:\"The quantity is out of stock for Bird House\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('743e0461f6b5ed7b3ccef38b88b490b56f0e83e7', '119.30.45.122', 1679584004, '__ci_last_regenerate|i:1679584004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a6d1a98db3b74151702c156417dce761d61c9f7', '119.30.45.122', 1679581228, '__ci_last_regenerate|i:1679581228;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5709987f3ba701e3decb74e33e6aa145d41c1d51', '119.30.45.122', 1679581229, '__ci_last_regenerate|i:1679581228;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"old\";}requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3f02b82ee36f59d0f41b479e5ffcbbff95d13a6', '119.30.45.122', 1679581228, '__ci_last_regenerate|i:1679581228;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8104fde8a6fd7b0ff10847c4811d978b008bba1', '119.30.45.122', 1679581233, '__ci_last_regenerate|i:1679581233;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6543d5f4d81104d6aedfba48fc156a09cbb66b39', '103.178.67.226', 1679581241, '__ci_last_regenerate|i:1679581241;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da479a8a2b1408e5360655ba12f9dda6308fcffb', '37.111.212.218', 1679581628, '__ci_last_regenerate|i:1679581628;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44228a838f863f1d04bac78b70754938d8c99926', '37.111.219.35', 1679581944, '__ci_last_regenerate|i:1679581944;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679581906;register_id|s:3:\"375\";cash_in_hand|s:9:\"2750.0000\";register_open_time|s:19:\"2023-03-23 20:30:46\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6a7782e2972301acbf851591de63c0a49156df', '37.111.212.218', 1679582450, '__ci_last_regenerate|i:1679582450;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd930044eb62faab62ee7d13d9497cb4d195e9b0', '37.111.219.35', 1679582600, '__ci_last_regenerate|i:1679582600;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679582545;register_id|s:3:\"376\";cash_in_hand|s:9:\"2960.0000\";register_open_time|s:19:\"2023-03-23 20:34:45\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('781557538050ed672f10376d7e35359fd0a43102', '31.222.203.2', 1679581983, '__ci_last_regenerate|i:1679581983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a58b448ec439a7e950869c02d62c100307e67bb2', '31.222.203.2', 1679581984, '__ci_last_regenerate|i:1679581984;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcfd7863f0b063b80b4fb74ee0419d05b3e1b385', '31.222.203.2', 1679581984, '__ci_last_regenerate|i:1679581984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a16c7af9e16bb53277a0b257354f93eac4b79e8', '31.222.203.2', 1679581984, '__ci_last_regenerate|i:1679581984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f212e51923924f183778a9cd19bbdcf82c0cb6f', '31.222.203.2', 1679581984, '__ci_last_regenerate|i:1679581984;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4aa669d105c11607dd60e67ce3927888a7e7ed3', '31.222.203.2', 1679581984, '__ci_last_regenerate|i:1679581984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f8e59cff38711f3284df3da89d778e5f897baf5', '37.111.212.218', 1679582878, '__ci_last_regenerate|i:1679582878;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f4b56dca4cf9631a48609dd0f842371680f51ce', '37.111.219.35', 1679582908, '__ci_last_regenerate|i:1679582908;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679582894;register_id|s:3:\"376\";cash_in_hand|s:9:\"2960.0000\";register_open_time|s:19:\"2023-03-23 20:34:45\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2baf39c4c885514341bd9dd9ee12d0c7d1327fa', '119.30.32.48', 1679583183, '__ci_last_regenerate|i:1679583183;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537db84cff32cfa2799a380427691e178077dfa3', '37.111.219.35', 1679583236, '__ci_last_regenerate|i:1679583236;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679583220;register_id|s:3:\"377\";cash_in_hand|s:9:\"2370.0000\";register_open_time|s:19:\"2023-03-23 20:48:28\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b9b075344e1bb2e9e39cdeffca24701ae0bb114', '119.30.32.48', 1679583551, '__ci_last_regenerate|i:1679583551;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679580256;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9a659283eed45e7d4d365891c1a72d748a8c286', '37.111.219.35', 1679583667, '__ci_last_regenerate|i:1679583667;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679583617;register_id|s:3:\"378\";cash_in_hand|s:9:\"2740.0000\";register_open_time|s:19:\"2023-03-23 20:54:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814d8f35782d4fa9afd064926a5b829e285fdde9', '119.30.32.48', 1679583571, '__ci_last_regenerate|i:1679583551;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1678778032\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}user_csrf|s:20:\"myGc7L5FjrPvzYgnDTfS\";last_activity|i:1679583571;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53d19cf2a58222f524ca879db378c068ae70db3f', '37.111.219.35', 1679583977, '__ci_last_regenerate|i:1679583977;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679583882;register_id|s:3:\"378\";cash_in_hand|s:9:\"2740.0000\";register_open_time|s:19:\"2023-03-23 20:54:41\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69623fd4527dffefdcf4f8ab59a41265826bdda8', '31.222.203.2', 1679583788, '__ci_last_regenerate|i:1679583788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('064ccd7b03c44a6847f920960763f2b70de460ba', '31.222.203.2', 1679583788, '__ci_last_regenerate|i:1679583788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1280df0b4c3538b85a9e050a1574ee8351d5f386', '31.222.203.2', 1679583788, '__ci_last_regenerate|i:1679583788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ef8a7ed80a96c2e39815f10faa2bb3a698c7cd', '31.222.203.2', 1679583790, '__ci_last_regenerate|i:1679583790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c9fa90f54578c6f89a996df7f5e05f3660471a2', '31.222.203.2', 1679583790, '__ci_last_regenerate|i:1679583790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9e6de45d030a5d3b2572fb463532cc39f9bcddc', '31.222.203.2', 1679583790, '__ci_last_regenerate|i:1679583790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8165f44ce30e98b863984750ac6328d612145559', '37.111.219.35', 1679584289, '__ci_last_regenerate|i:1679583977;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679552721\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679584289;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35b09bb2f086f563008b160dad67c7de9aa08e4', '119.30.45.122', 1679584004, '__ci_last_regenerate|i:1679584004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c50c2567dfcee81a2df2396b84113606bb2f97', '119.30.32.105', 1679584157, '__ci_last_regenerate|i:1679584157;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa3b6fdd2374e05caaeabe6177f6516cd6cf870', '31.222.203.2', 1679585585, '__ci_last_regenerate|i:1679585585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbc38f3dc4b2dfa5672a50e4b3fe5cf90edfa4c', '31.222.203.2', 1679585585, '__ci_last_regenerate|i:1679585585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c91c48246cf0f16acd7ce6fc13a51cdbcfc5c1', '31.222.203.2', 1679585585, '__ci_last_regenerate|i:1679585585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65e8cae0bab18677ffd63e3ca00081164150a66f', '31.222.203.2', 1679585589, '__ci_last_regenerate|i:1679585588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab08530ed927a213f0145b386c8cf0c93716507d', '31.222.203.2', 1679585589, '__ci_last_regenerate|i:1679585589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('854cb618465efdb796209cae298a523e13d8bf63', '31.222.203.2', 1679585589, '__ci_last_regenerate|i:1679585589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e55c06617d81c9ff3d3857f26216f12cd4b0c3ce', '51.79.144.41', 1679586152, '__ci_last_regenerate|i:1679586152;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652587d072d35fe9803544cce8f04aabf1d5e170', '51.79.144.41', 1679586156, '__ci_last_regenerate|i:1679586156;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('968fde4a6e63680f62e89f562ba237b4915566c8', '51.79.144.41', 1679586159, '__ci_last_regenerate|i:1679586159;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('832b9c87e6ee1dc92abde8ed27ab0bd185f1058b', '51.79.144.41', 1679586163, '__ci_last_regenerate|i:1679586163;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05989919871dae79a1372a744c89a00717fb322e', '111.90.145.188', 1679587165, '__ci_last_regenerate|i:1679587165;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a42bb062c1f452a9fa5ed62b220c9edd2ea8414', '111.90.145.188', 1679587166, '__ci_last_regenerate|i:1679587166;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f89715f70df2aa8d5da55f053be9cc84d1180d1', '111.90.145.188', 1679587167, '__ci_last_regenerate|i:1679587167;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('721e3632ad712acf97914bd7815835d0dbbae283', '111.90.145.188', 1679587169, '__ci_last_regenerate|i:1679587169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cfc2defd414741a253c93dfaf6433c106f20c52', '31.222.203.2', 1679587400, '__ci_last_regenerate|i:1679587400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('642472b8cf175fd8ff79d4ec40fee2555c47fb60', '31.222.203.2', 1679587401, '__ci_last_regenerate|i:1679587401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eac375890fd2bb3256ec3f59e6cc263006ee8eb2', '31.222.203.2', 1679587401, '__ci_last_regenerate|i:1679587401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4241a4d75d61e2940e050bbbae053868f6808960', '31.222.203.2', 1679587401, '__ci_last_regenerate|i:1679587401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739102497fed333fb39cfeb266210b80cf1d134d', '31.222.203.2', 1679587401, '__ci_last_regenerate|i:1679587401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7b7cc3ef57ca775130618f097b220603e284ba', '31.222.203.2', 1679587401, '__ci_last_regenerate|i:1679587401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e5ac205e0b65638944e242f874a6039a91f9baa', '31.222.203.2', 1679589182, '__ci_last_regenerate|i:1679589182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('998f10ea63cb76caadc1706da659e2acf6bc2a25', '31.222.203.2', 1679589182, '__ci_last_regenerate|i:1679589182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('733d603f622d53e2f68f9dd86ec50197961dac0e', '31.222.203.2', 1679589182, '__ci_last_regenerate|i:1679589182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56b73e383e3c21ad5cbcc3d1291ecc2bd440a94b', '31.222.203.2', 1679589183, '__ci_last_regenerate|i:1679589183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8aaa0029f6e28c075f0cd88d49ac7940b176031', '31.222.203.2', 1679589183, '__ci_last_regenerate|i:1679589183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78325054db0720d5ce9e0b88e3a7472768552aff', '31.222.203.2', 1679589183, '__ci_last_regenerate|i:1679589183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07bd5d4cd172e7d90d6ae8c2043ccc743da82760', '194.67.121.69', 1679589353, '__ci_last_regenerate|i:1679589353;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90965282c208014c6bf99cf31c36d80a93ea0f1e', '194.67.121.69', 1679589355, '__ci_last_regenerate|i:1679589355;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56f2b4cf7cfed657aeccb1473524372bc2ed439', '194.67.121.69', 1679589358, '__ci_last_regenerate|i:1679589358;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c5f0b9c6458a57ac78f575fad0e6e6fb4bad890', '194.67.121.69', 1679589358, '__ci_last_regenerate|i:1679589358;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1eba9b5616661fcaa9bd186fc8bf0a99447f3be1', '84.54.50.242', 1679590663, '__ci_last_regenerate|i:1679590663;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a0b7930960345e3620f225820cd2de78a0a5e7', '84.54.50.242', 1679590664, '__ci_last_regenerate|i:1679590664;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c95b4baf346907e3e7dfa678569a41affb46e56a', '84.54.50.242', 1679590667, '__ci_last_regenerate|i:1679590667;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('272747758e27fd36c6d71cee91bda7eeacd0a9df', '84.54.50.242', 1679590669, '__ci_last_regenerate|i:1679590669;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d86c1778ff0bc8c7c3825361591967f2c4658a75', '84.54.50.242', 1679590671, '__ci_last_regenerate|i:1679590671;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b68dea9c93863faeea05d11958d2896e95be62bc', '84.54.50.242', 1679590673, '__ci_last_regenerate|i:1679590673;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('362d18192ea404a34930dd73e66eb10e0a8e7383', '84.54.50.242', 1679590675, '__ci_last_regenerate|i:1679590675;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6124ca094cf007e1902db3a35fa30044a1b57a51', '84.54.50.242', 1679590677, '__ci_last_regenerate|i:1679590677;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('093ead6ec2978ca5a5952d77e8f43b1800af8236', '84.54.50.242', 1679590679, '__ci_last_regenerate|i:1679590679;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d3406cc00610c115885371ad71f3d3b2fb69d5b', '84.54.50.242', 1679590680, '__ci_last_regenerate|i:1679590680;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e4ccbafdc5de170cad57e5fbe19ab8316378d80', '84.54.50.242', 1679590682, '__ci_last_regenerate|i:1679590682;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f7ffa389461b343665e842cd66905a6bf79c3a8', '84.54.50.242', 1679590684, '__ci_last_regenerate|i:1679590684;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ced88aab9196c3e95b44485cd1e7777dcccd5db2', '84.54.50.242', 1679590686, '__ci_last_regenerate|i:1679590686;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b12633aff6c01281ca9a74da0346b6d5b9903a31', '84.54.50.242', 1679590688, '__ci_last_regenerate|i:1679590688;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9821b72d2bfa44ecb798d7188a2151757e0ed3d2', '84.54.50.242', 1679590690, '__ci_last_regenerate|i:1679590690;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe4422e927b9a769c2315db632a6eb0e59fadfe', '84.54.50.242', 1679590692, '__ci_last_regenerate|i:1679590692;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9977f48d4ad21387d349b1e76917e5dc65cbf5f0', '84.54.50.242', 1679590694, '__ci_last_regenerate|i:1679590694;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('173c5858b2195d437fa6a8edf2cb98abcc3e0f20', '84.54.50.242', 1679590696, '__ci_last_regenerate|i:1679590696;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c210a3677683710fef20536b2ff7b902b505f444', '84.54.50.242', 1679590698, '__ci_last_regenerate|i:1679590698;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86cd809db9205a58b043cc33bfe0fc560773513c', '84.54.50.242', 1679590700, '__ci_last_regenerate|i:1679590700;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19b615b96e359e14bb89c121a2ea3765205fce14', '84.54.50.242', 1679590704, '__ci_last_regenerate|i:1679590704;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b5bac9bd1c7735d320a1d87bdb5504a3337043f', '84.54.50.242', 1679590706, '__ci_last_regenerate|i:1679590706;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b8f1d9209ed3777c753a4b373149b3e226ac9e5', '84.54.50.242', 1679590708, '__ci_last_regenerate|i:1679590708;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502578aaa21d3dfc2a07b68fd87e6a3f3d45a5c5', '84.54.50.242', 1679590709, '__ci_last_regenerate|i:1679590709;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f22648efcb1f9a74b15553cc5ef3da210d21d609', '84.54.50.242', 1679590715, '__ci_last_regenerate|i:1679590715;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0df5fc984c78e92b69122de97f536670f0416598', '84.54.50.242', 1679590717, '__ci_last_regenerate|i:1679590717;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad4b6615bbe8acef9b287ce0f0a042d6029a1d32', '84.54.50.242', 1679590720, '__ci_last_regenerate|i:1679590720;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c62874ed3f4a3e6ada5a8e09c74926083bd0f3', '84.54.50.242', 1679590722, '__ci_last_regenerate|i:1679590722;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d032a82c93ead6385c9eda1fa8ef2a7639c5676', '84.54.50.242', 1679590724, '__ci_last_regenerate|i:1679590724;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85716f2c71d65bae180a98af0734df021f6f402f', '84.54.50.242', 1679590726, '__ci_last_regenerate|i:1679590726;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f487a4b5c9f538d1c614b3ee649d40083a9a1bd0', '84.54.50.242', 1679590730, '__ci_last_regenerate|i:1679590730;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fb061f3097bda3a2a85f692e76bb57038a9e07a', '84.54.50.242', 1679590732, '__ci_last_regenerate|i:1679590732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e01ca6152be7ef10d057596fdc7698f54412b0cb', '84.54.50.242', 1679590734, '__ci_last_regenerate|i:1679590734;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e71136b52c64dc4ca8496c9faa03768d4dc90b3', '84.54.50.242', 1679590736, '__ci_last_regenerate|i:1679590736;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8631f736ff9bb94450f06ddc1f7a3271106a07c3', '84.54.50.242', 1679590737, '__ci_last_regenerate|i:1679590737;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5dbf5a072e12c758dcd576b372cb545ea1e04e2', '84.54.50.242', 1679590739, '__ci_last_regenerate|i:1679590739;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d43020d2cc42aa09438d5f8359022ae6cf53c9c', '84.54.50.242', 1679590741, '__ci_last_regenerate|i:1679590741;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e583dfef72e7c7dbaaded90f615b2dd77faccb0', '84.54.50.242', 1679590743, '__ci_last_regenerate|i:1679590743;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61656959606518c63ecd236d401dfa0d55e54671', '84.54.50.242', 1679590748, '__ci_last_regenerate|i:1679590748;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f21413b236df8a7efb9f78e4f42235028526eb0', '84.54.50.242', 1679590750, '__ci_last_regenerate|i:1679590750;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('648e3724c797ba6723b3b3d5890e67fe8cc30ff2', '84.54.50.242', 1679590752, '__ci_last_regenerate|i:1679590752;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed7fd5da907d01784560c104e5358c67d73f4cb2', '84.54.50.242', 1679590753, '__ci_last_regenerate|i:1679590753;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e779a59d9eed0f80668d8ddce1a237ef68c4812a', '84.54.50.242', 1679590755, '__ci_last_regenerate|i:1679590755;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('275d90998c82dbe112f2ca22c9132d3994584ccf', '84.54.50.242', 1679590757, '__ci_last_regenerate|i:1679590757;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('061a06c9bf4903ce0134d890cd3d986cb6576b36', '84.54.50.242', 1679590759, '__ci_last_regenerate|i:1679590759;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb47ee3026da19c7626c33cb49d4d662139d7c1', '84.54.50.242', 1679590760, '__ci_last_regenerate|i:1679590760;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739715672b6c165c602412a7a38ec3e508ae3f13', '84.54.50.242', 1679590763, '__ci_last_regenerate|i:1679590763;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d91fc1e99a369a4c23f70c7958fbde2f18a5ce17', '84.54.50.242', 1679590764, '__ci_last_regenerate|i:1679590764;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1ae1ed43cd4bd301a57d26d16f7eaabc3e72f6a', '84.54.50.242', 1679590766, '__ci_last_regenerate|i:1679590766;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c6ea88ab9c913ff90741edcfa746f8dd3c0337b', '84.54.50.242', 1679590767, '__ci_last_regenerate|i:1679590767;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('554516d1ad6bd853216ae4278a5d003e0e529bc9', '84.54.50.242', 1679590769, '__ci_last_regenerate|i:1679590769;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('734b8a30595e284d91e3990c73feddd4a2a2ead6', '84.54.50.242', 1679590771, '__ci_last_regenerate|i:1679590771;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b28519da916a5a3763a0a95bce90cce46835ee9f', '84.54.50.242', 1679590772, '__ci_last_regenerate|i:1679590772;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f3c69e89a42084cfa32f046c9bd5521fcad4dbc', '84.54.50.242', 1679590774, '__ci_last_regenerate|i:1679590774;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('455c50c33ba445ab4d1b5aee3520a36002e58fe1', '84.54.50.242', 1679590776, '__ci_last_regenerate|i:1679590776;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b69e61351eac8f18ece59682acfa5de5de3f0791', '84.54.50.242', 1679590777, '__ci_last_regenerate|i:1679590777;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fddb0121458a95e6cfe8b74bef86372f90b1233', '84.54.50.242', 1679590779, '__ci_last_regenerate|i:1679590779;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d57fa8906dfc656d7507436f66f27f198b23247', '31.222.203.2', 1679590983, '__ci_last_regenerate|i:1679590983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('249cba0631bccfa6774087d07bf453a816ddc8a3', '31.222.203.2', 1679590983, '__ci_last_regenerate|i:1679590983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48bc49ff227be1d2fa54d289a703b062aab95f6', '31.222.203.2', 1679590983, '__ci_last_regenerate|i:1679590983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9088a37ddd6fa7425fca4bfc98c84cf46cded2', '31.222.203.2', 1679590985, '__ci_last_regenerate|i:1679590985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14fac5f3d93a854ca01b8ec18912c178a67825d3', '31.222.203.2', 1679590985, '__ci_last_regenerate|i:1679590985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9f9ae644a59289a4d2c9338ea98cab96e7b6fb9', '31.222.203.2', 1679590985, '__ci_last_regenerate|i:1679590985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58a9e601d8a8aa99f23db1b3dd044bbae18dd037', '31.222.203.2', 1679592779, '__ci_last_regenerate|i:1679592779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e3fca064fba03bff0a4b93a62e8dec62ddd3b6', '31.222.203.2', 1679592779, '__ci_last_regenerate|i:1679592779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403ea8ec10f19894aef0e0f63ff40b39ba3fca2e', '31.222.203.2', 1679592779, '__ci_last_regenerate|i:1679592779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48c147273fadcd72a1e78a527c405493d2f1d067', '31.222.203.2', 1679592780, '__ci_last_regenerate|i:1679592780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c3f092851842344abb8ec57b78e0ab8ee66fd4a', '31.222.203.2', 1679592780, '__ci_last_regenerate|i:1679592780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5314a018eb8cb1fef619f5ffd7b1778ae4db61c1', '31.222.203.2', 1679592780, '__ci_last_regenerate|i:1679592780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55ac18033a87a03842c7a13533acf655d1afee7c', '31.222.203.2', 1679594574, '__ci_last_regenerate|i:1679594574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed4716180b16ab9674a1fe9cce5e1099f4a74475', '31.222.203.2', 1679594574, '__ci_last_regenerate|i:1679594574;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d738198c06401ba9a5fcc23da69a89d98c9da7', '31.222.203.2', 1679594574, '__ci_last_regenerate|i:1679594574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf510b3e8b5124c8db0bdb56c7a600128201ef8f', '31.222.203.2', 1679594575, '__ci_last_regenerate|i:1679594575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a58519c9795cae2ef87e2e3ac71f84f131dc8db', '31.222.203.2', 1679594575, '__ci_last_regenerate|i:1679594575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ee00168a43d3513d391e7e8cc8389a111c96be', '31.222.203.2', 1679594575, '__ci_last_regenerate|i:1679594575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('428b66ee54bfe81d6160ef6045265aec547f2817', '31.222.203.2', 1679596381, '__ci_last_regenerate|i:1679596381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2aa30474bf87582d996a985ea69ce6c93822945e', '31.222.203.2', 1679596381, '__ci_last_regenerate|i:1679596381;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec6d9249d1983454cfe3b5b7d6ca7a2e3e880f2c', '31.222.203.2', 1679596381, '__ci_last_regenerate|i:1679596381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7cc767ce86b6908075e13965b8a60b515031e80', '31.222.203.2', 1679596384, '__ci_last_regenerate|i:1679596384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('822d70d12778e17e2253b79bb29efe4123be3acd', '31.222.203.2', 1679596384, '__ci_last_regenerate|i:1679596384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6c2075d150f6cc3085c3a271961aae59d69ce65', '31.222.203.2', 1679596384, '__ci_last_regenerate|i:1679596384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cba90ff15aa95bfe075b67e7c1fecc82fbc810f', '39.101.185.186', 1679596819, '__ci_last_regenerate|i:1679596819;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a2255e370bf0aae2f65566fbc03b0ede0d7198', '39.101.185.186', 1679596820, '__ci_last_regenerate|i:1679596820;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f506b57229d4f5cde2644039f466dce5062841e', '39.101.185.186', 1679596821, '__ci_last_regenerate|i:1679596821;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4424622d29b844ee14d7ac5144c49533e15ab0c0', '39.101.185.186', 1679596822, '__ci_last_regenerate|i:1679596822;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018643268d4a76866d161298396c34014c2e5188', '31.222.203.2', 1679598188, '__ci_last_regenerate|i:1679598188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5970cfbe3cf2755a266dbc46fe5c15779effb134', '31.222.203.2', 1679598188, '__ci_last_regenerate|i:1679598188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01fb0c288617a25625318ba4403da69c5e243d5a', '31.222.203.2', 1679598188, '__ci_last_regenerate|i:1679598188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ee24364c8b0b102da68cd2b7335dc0305ca0b93', '31.222.203.2', 1679598189, '__ci_last_regenerate|i:1679598189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2069664a90a8e55df9fbd3a1828a12e99a71cb3f', '31.222.203.2', 1679598189, '__ci_last_regenerate|i:1679598189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bcb43f193a8a3e0086bf2549888cdc16c080a63', '31.222.203.2', 1679598189, '__ci_last_regenerate|i:1679598189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16c9c1e8ed8a6582c95923642cee2547ec8c281f', '31.222.203.2', 1679599977, '__ci_last_regenerate|i:1679599977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3314549b97be6830e59473d35ff4a070a1bd8b25', '31.222.203.2', 1679599977, '__ci_last_regenerate|i:1679599977;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9845115a52946880070e893eb3b69ce9a89d8562', '31.222.203.2', 1679599977, '__ci_last_regenerate|i:1679599977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20baaf635864d6c5d5f28e02743bc0f9fb813d4e', '31.222.203.2', 1679599981, '__ci_last_regenerate|i:1679599981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a09da7d72a15d18bf985540801c283f7e4aa89e', '31.222.203.2', 1679599981, '__ci_last_regenerate|i:1679599981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f161efd288d5e8887a03126cb974bba604e47994', '31.222.203.2', 1679599981, '__ci_last_regenerate|i:1679599981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8853b9401a328c92d1b2d2c1f7689d1371e64375', '31.222.203.2', 1679601775, '__ci_last_regenerate|i:1679601775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7827676c257a5234f852d7797bdc2644ce4e8ad5', '31.222.203.2', 1679601775, '__ci_last_regenerate|i:1679601775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('188d083f11332a36a516a76debfff08fe67d37e2', '31.222.203.2', 1679601775, '__ci_last_regenerate|i:1679601775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e93286bf8beaa980f6ff46664072802acabe9258', '31.222.203.2', 1679601778, '__ci_last_regenerate|i:1679601778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5aec3468974640ed1333aa448c243f762a71657', '31.222.203.2', 1679601778, '__ci_last_regenerate|i:1679601778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3e9b021305cfdd1b4d6ad6dfc1226f1d269ddd', '31.222.203.2', 1679601778, '__ci_last_regenerate|i:1679601778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ce404f84d997d424e0b2fbc8e0fb627bccea895', '31.222.203.2', 1679603576, '__ci_last_regenerate|i:1679603576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c45b6f16538091d6ad2b7945b3c06901df86422', '31.222.203.2', 1679603576, '__ci_last_regenerate|i:1679603576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92329d5f11fe5ae42d1185dee427326b46ca5e7e', '31.222.203.2', 1679603576, '__ci_last_regenerate|i:1679603576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92bbf2d43b59ade93e34dd4eb19e4a82555df74b', '31.222.203.2', 1679603579, '__ci_last_regenerate|i:1679603579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('163d5de9142b6e59c516315840a099e99b3446e8', '31.222.203.2', 1679603579, '__ci_last_regenerate|i:1679603579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d9d8216fd54ef2e1f5ca05bb7ebdfb0bdb3975', '31.222.203.2', 1679603579, '__ci_last_regenerate|i:1679603579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3f4738b3c84a669d803ca27cd66ac7bcf5f4bc', '31.222.203.2', 1679605369, '__ci_last_regenerate|i:1679605369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51afd858213bde8d1c4c7ba96a68f58815aa61fb', '31.222.203.2', 1679605369, '__ci_last_regenerate|i:1679605369;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81673914f2eac1e76843656a9d8620b973b595ca', '31.222.203.2', 1679605369, '__ci_last_regenerate|i:1679605369;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45b1c4b83874d13e457af732b2dd46ffb62d58c', '31.222.203.2', 1679605372, '__ci_last_regenerate|i:1679605372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26389372dfdeb8c60af939f580600f20dd6ef20d', '31.222.203.2', 1679605372, '__ci_last_regenerate|i:1679605372;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a7c77a01043b6c60d69346103902bcf98e33471', '31.222.203.2', 1679605372, '__ci_last_regenerate|i:1679605372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c13ba1cf9a55c433d32c32eacdbfb4a3adbbcfa', '31.222.203.2', 1679607179, '__ci_last_regenerate|i:1679607179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a4c4525c17016120ed02c6bb80da2e69203fd30', '31.222.203.2', 1679607179, '__ci_last_regenerate|i:1679607179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96ff39deab0b24c7520c1e2b06e8cf223bedd9c4', '31.222.203.2', 1679607179, '__ci_last_regenerate|i:1679607179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b7cfb31099403c847e655ff3ab4e80afbc839f', '31.222.203.2', 1679607182, '__ci_last_regenerate|i:1679607182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6172f5745b2d340e092b20b91b9474e53880498', '31.222.203.2', 1679607182, '__ci_last_regenerate|i:1679607182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a697b3975fbdf6ee0ac78963d7b4088ecad1047', '31.222.203.2', 1679607182, '__ci_last_regenerate|i:1679607182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63b92ed13e0915a20bb95074f34705d49e3eec49', '116.204.230.21', 1679607935, '__ci_last_regenerate|i:1679607935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee24ad6ee3fe9b4c2febdba2f792810e40c8e33', '31.222.203.2', 1679608975, '__ci_last_regenerate|i:1679608975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1856295d5d96e8882a2dc867a42c29ada9c03d4', '31.222.203.2', 1679608975, '__ci_last_regenerate|i:1679608975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e2e6afd1fbd111100f8366ff49b75b3dce4129b', '31.222.203.2', 1679608975, '__ci_last_regenerate|i:1679608975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03f0802bb8857473abc1e4efb23d2075e1139340', '31.222.203.2', 1679608976, '__ci_last_regenerate|i:1679608976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e9321e366f5e9388790f0c22f8b4ec51b110568', '31.222.203.2', 1679608976, '__ci_last_regenerate|i:1679608976;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b33da52257ae289958873e9101484f31920c4c26', '31.222.203.2', 1679608976, '__ci_last_regenerate|i:1679608976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af1dd6d7fa860ce3d84493f3faf23d7c75c1b4f', '31.222.203.2', 1679610775, '__ci_last_regenerate|i:1679610775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06dd6df2fea3122d97bafad638abbbd6b673054', '31.222.203.2', 1679610775, '__ci_last_regenerate|i:1679610775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be7edcea133db4dcfd42293df126022b8455ee9c', '31.222.203.2', 1679610775, '__ci_last_regenerate|i:1679610775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a12dd9657dfccb6fb768c9804aaead86bfd4396', '31.222.203.2', 1679610778, '__ci_last_regenerate|i:1679610778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b864fc1d28750d320a32447a519cbd99f6e278d', '31.222.203.2', 1679610778, '__ci_last_regenerate|i:1679610778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3a943289806ea3c7261648c1d9de5efe081533f', '31.222.203.2', 1679610778, '__ci_last_regenerate|i:1679610778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('850969e8d0cb60735502103cf7405459934f6256', '31.222.203.2', 1679612575, '__ci_last_regenerate|i:1679612575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b169f95662db36f6c8903044ef0c8b3c68c9091c', '31.222.203.2', 1679612575, '__ci_last_regenerate|i:1679612575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56295c2d05b98b80bda493ea40b23f9e5994d5f7', '31.222.203.2', 1679612575, '__ci_last_regenerate|i:1679612575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2a9dbfeea4b4638955c10c91291d4f0cbce6f5', '31.222.203.2', 1679612578, '__ci_last_regenerate|i:1679612578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef47660989c5a556a995bb8446e59b4d2d5ba649', '31.222.203.2', 1679612578, '__ci_last_regenerate|i:1679612578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4de571dc014b83b4140982a3eb592ad8f3cef789', '31.222.203.2', 1679612578, '__ci_last_regenerate|i:1679612578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f211dbd58b7646862c2648d9d8ff99bf3f236400', '31.222.203.2', 1679614376, '__ci_last_regenerate|i:1679614376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6954647cbe23c8f170b6180013de71a94e718bad', '31.222.203.2', 1679614376, '__ci_last_regenerate|i:1679614376;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c278c64bcf3a11e7ed2224b368940a80f7be44d', '31.222.203.2', 1679614376, '__ci_last_regenerate|i:1679614376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a55d8d70a1f214cafb9adaf304897ddca5281f5a', '31.222.203.2', 1679614379, '__ci_last_regenerate|i:1679614379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e232172154b7db647c7ce4875fad1665eefbbac9', '31.222.203.2', 1679614379, '__ci_last_regenerate|i:1679614379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('297f6c45442d50b8b3dccafbda76e8a745cdac51', '31.222.203.2', 1679614379, '__ci_last_regenerate|i:1679614379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f2095e7fa1d1382aea2e98734f8118a099373a', '31.222.203.2', 1679616170, '__ci_last_regenerate|i:1679616170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f49bf22421a57071e211040d217e48b1df8f624d', '31.222.203.2', 1679616170, '__ci_last_regenerate|i:1679616170;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30043ffa0fda31834997f3944e30be98c4393ff4', '31.222.203.2', 1679616170, '__ci_last_regenerate|i:1679616170;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('075629509ac9c83e5a4522c7d8552c78d2c9b7fb', '31.222.203.2', 1679616173, '__ci_last_regenerate|i:1679616173;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12e3255c33254c9e24a314ce305cecd39f313959', '31.222.203.2', 1679616173, '__ci_last_regenerate|i:1679616173;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7faf7210aa2a69197d6b01412d834f4036ccc6cd', '31.222.203.2', 1679616173, '__ci_last_regenerate|i:1679616173;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da50d12220e6419aee2a875cf5fe9f4308407f7b', '31.222.203.2', 1679617972, '__ci_last_regenerate|i:1679617972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2d3348d4c09e231317466af0c7d3853e0e12421', '31.222.203.2', 1679617972, '__ci_last_regenerate|i:1679617972;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d3357a61d27ffe89bca22c38a900efb9f31ab95', '31.222.203.2', 1679617972, '__ci_last_regenerate|i:1679617972;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca1a1233dfdc790ac5294ae9f2fdf818d4191947', '31.222.203.2', 1679617975, '__ci_last_regenerate|i:1679617975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df09b41fdb4b69ccc60287ad20f62fe6ab750e3e', '31.222.203.2', 1679617975, '__ci_last_regenerate|i:1679617975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cbeb32eb600a48ef0efe453b0e357685470c769', '31.222.203.2', 1679617975, '__ci_last_regenerate|i:1679617975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ff1d40485057dbcb1d093430a0692b5a7468eb5', '31.222.203.2', 1679619778, '__ci_last_regenerate|i:1679619778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c1e39cfa20f5ca653382c66bd7462c6ededf0e0', '31.222.203.2', 1679619779, '__ci_last_regenerate|i:1679619779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('934694efeedabdcc08b52aadc38d4196870b7894', '31.222.203.2', 1679619779, '__ci_last_regenerate|i:1679619779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce2edffca67f9e1dfabfca1b7f2829d1840722fd', '31.222.203.2', 1679619779, '__ci_last_regenerate|i:1679619779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8fa5bfbc9f8a7964094e6d69ae93af963822326', '31.222.203.2', 1679619779, '__ci_last_regenerate|i:1679619779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8362a895773e9e755ccae8009bf1a80c121be2a5', '31.222.203.2', 1679619779, '__ci_last_regenerate|i:1679619779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6282745e1a25c62c58c4eee5d573c908f08643a4', '31.222.203.2', 1679621583, '__ci_last_regenerate|i:1679621583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd8d4c5928054391893e97820e7eadae2a0b16dc', '31.222.203.2', 1679621583, '__ci_last_regenerate|i:1679621583;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cfdf3acdbbbcc437707a26df21f90647b9fb1fc', '31.222.203.2', 1679621583, '__ci_last_regenerate|i:1679621583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5907f135ab5a829021d212b2d2485b8904af5a8c', '31.222.203.2', 1679621585, '__ci_last_regenerate|i:1679621585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61239eff82971b1014be1b698c8b12d51df92318', '31.222.203.2', 1679621585, '__ci_last_regenerate|i:1679621585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd0215eee2b8c2fed9911c43d5100e66ff8f454b', '31.222.203.2', 1679621585, '__ci_last_regenerate|i:1679621585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2eef6f77ef75225849702969418cfce18c2f2eac', '31.222.203.2', 1679623372, '__ci_last_regenerate|i:1679623372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ef419beeada909f19a45d3f426d4dfab34f7f74', '31.222.203.2', 1679623372, '__ci_last_regenerate|i:1679623372;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911be5a46167997c81f3f06a4c9f8f4753c35a14', '31.222.203.2', 1679623373, '__ci_last_regenerate|i:1679623373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7e5ec70f2ff16a351a950f68f9f5a641581b0a7', '31.222.203.2', 1679623375, '__ci_last_regenerate|i:1679623375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('113490b061c365e651c7c7c020691237a1707ad0', '31.222.203.2', 1679623375, '__ci_last_regenerate|i:1679623375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f11a3b4ad68ee49877f2ea6ae978a772e54ea3', '31.222.203.2', 1679623375, '__ci_last_regenerate|i:1679623375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660162fa2f89fe2719d9a4b92735d7ab38e82e24', '31.222.203.2', 1679625168, '__ci_last_regenerate|i:1679625168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ff7a71e39fbcb947648eed968e3eff116da66ca', '31.222.203.2', 1679625168, '__ci_last_regenerate|i:1679625168;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edacc72ca41a109a19cda594f2244df3a3fadc9a', '31.222.203.2', 1679625168, '__ci_last_regenerate|i:1679625168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75be154668c838456e14ab2d8df5645d5388d028', '31.222.203.2', 1679625169, '__ci_last_regenerate|i:1679625169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('192482c861ad9ca4bd04743490f8700b08ed7c3a', '31.222.203.2', 1679625169, '__ci_last_regenerate|i:1679625169;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e434b06742a1ce4a176878d98f9a123b55dec7c', '31.222.203.2', 1679625169, '__ci_last_regenerate|i:1679625169;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3431546939be6cb1388f5d6587a31f4c001f111f', '2.57.122.88', 1679626290, '__ci_last_regenerate|i:1679626290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8ad441858b37b274a0cd55b1374672a76ffec3e', '2.57.122.88', 1679626290, '__ci_last_regenerate|i:1679626290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ca50fe937427a2bb9e5e3bab31c0d1ecbb0310', '2.57.122.88', 1679626290, '__ci_last_regenerate|i:1679626290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('148eb2193d043d49634b906b015e6845a4e005e7', '2.57.122.88', 1679626290, '__ci_last_regenerate|i:1679626290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('310d00980bb8a63edaa21f1ae10ddfd616663f5a', '2.57.122.88', 1679626290, '__ci_last_regenerate|i:1679626290;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9aa4a7703b9e9237fe0852bb3c45837556988a3', '2.57.122.88', 1679626290, '__ci_last_regenerate|i:1679626290;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b629115c80ca546ecf986a953b15033e6f8e810', '31.222.203.2', 1679626974, '__ci_last_regenerate|i:1679626974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17227df3ae539eb268565edf40f68a763c144193', '31.222.203.2', 1679626975, '__ci_last_regenerate|i:1679626974;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2260934eef6d57ccce8574a44a1f6fa13fae19', '31.222.203.2', 1679626975, '__ci_last_regenerate|i:1679626974;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04837ae74036eff4b1af89923a57a29451cc02a2', '31.222.203.2', 1679626975, '__ci_last_regenerate|i:1679626975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e77fcdc53b1512b48b1caa269a3c8a22fe23b107', '31.222.203.2', 1679626975, '__ci_last_regenerate|i:1679626975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65a8f753b3e14e092fddbff8d308ffe2b3261cb7', '31.222.203.2', 1679626975, '__ci_last_regenerate|i:1679626975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2870759e196743ea0a12297e90ba022a2f85be15', '31.222.203.2', 1679628770, '__ci_last_regenerate|i:1679628770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35a6c70bd96c648d84f3a5d1fd1a0dda7104549', '31.222.203.2', 1679628770, '__ci_last_regenerate|i:1679628770;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83ff8adb74686efa74bff1f3b2d1fe014bbcac96', '31.222.203.2', 1679628770, '__ci_last_regenerate|i:1679628770;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8b3ed54d6739f8ad0e7ccd34656ceafb218b4cf', '31.222.203.2', 1679628771, '__ci_last_regenerate|i:1679628771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5cbf5713dc54b561018d9f554d68a5c44774bd', '31.222.203.2', 1679628771, '__ci_last_regenerate|i:1679628771;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d957614066fb6a974cecebfecb9799dbe3afc53', '31.222.203.2', 1679628771, '__ci_last_regenerate|i:1679628771;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a120b8685e8b2fd5e8c8a954986898ae22db9eb', '31.222.203.2', 1679630604, '__ci_last_regenerate|i:1679630604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7373479f6a0ce18feaa5d73ce6693669cfeac845', '31.222.203.2', 1679630604, '__ci_last_regenerate|i:1679630604;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c822ac728f18971f005cb32a5b13a8b47fcb99', '31.222.203.2', 1679630604, '__ci_last_regenerate|i:1679630604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd4d2c39f73fac7d2feae5f51afe47c6c704e9e', '31.222.203.2', 1679630606, '__ci_last_regenerate|i:1679630606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf00a003a674217bab233e86b37ca6ea53963ecd', '31.222.203.2', 1679630606, '__ci_last_regenerate|i:1679630606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cfacde14979fd196f625deb85ef30059c7ae26', '31.222.203.2', 1679630606, '__ci_last_regenerate|i:1679630606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88bb54c6b9518b310c3c8fd1b6592d32c4290ccd', '31.222.203.2', 1679632387, '__ci_last_regenerate|i:1679632387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ca3a9cb6e428bd2bdfa33f99a6f1acec919d8b', '31.222.203.2', 1679632387, '__ci_last_regenerate|i:1679632387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cacdd7dd907e0970093ec420a72874464f0973f', '31.222.203.2', 1679632387, '__ci_last_regenerate|i:1679632387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a49acd71ec7c7581db16c5580b0b48654b4112e6', '31.222.203.2', 1679632388, '__ci_last_regenerate|i:1679632388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edf3772a28d0fc7b6795ab616ebbcf82cd728b4f', '31.222.203.2', 1679632388, '__ci_last_regenerate|i:1679632388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ad4faa3e17b8f4e68aff6e7e437ad51a6ada4af', '31.222.203.2', 1679632388, '__ci_last_regenerate|i:1679632388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a3f18b16d90fb56d3eb04f3580f2a361cead38', '37.111.218.43', 1679633638, '__ci_last_regenerate|i:1679633638;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679565634\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679632553;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ac7ad7be51998ea4f0628caa485b6097b2eaf3', '37.111.218.43', 1679640313, '__ci_last_regenerate|i:1679640313;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679565634\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679634473;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac14b0518b54563884b46656247cbe4790bde84b', '31.222.203.2', 1679634189, '__ci_last_regenerate|i:1679634189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('434f7411b1f3e2d7dabdb049008a95433d1935d9', '31.222.203.2', 1679634189, '__ci_last_regenerate|i:1679634189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b659c47b6e0cfb8dc8d7be16472bac94dd02de1', '31.222.203.2', 1679634189, '__ci_last_regenerate|i:1679634189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f75c8b2a0e416c0e2e2331c397e4d936a8c5238', '31.222.203.2', 1679634191, '__ci_last_regenerate|i:1679634191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068415b0b8c50c706c8c13e730e4637f061cb056', '31.222.203.2', 1679634191, '__ci_last_regenerate|i:1679634191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d80fca1503612a7c9f6403f2b885cc6f1ddaae12', '31.222.203.2', 1679634191, '__ci_last_regenerate|i:1679634191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08b9b8582b08ea2d2cac278c6c8558790234dcc8', '31.222.203.2', 1679635977, '__ci_last_regenerate|i:1679635977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3da5c639ddab204491df3f8e5cea8a03d9721c0f', '31.222.203.2', 1679635977, '__ci_last_regenerate|i:1679635977;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b942ac3686a7b1287b0942b453868a4207ebe5', '31.222.203.2', 1679635977, '__ci_last_regenerate|i:1679635977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d06ac480bb66ed2cdf276fd88ca10429cbe0a9', '31.222.203.2', 1679635977, '__ci_last_regenerate|i:1679635977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78d0e6733043b6334f43513ee620d3fe754aac01', '31.222.203.2', 1679635977, '__ci_last_regenerate|i:1679635977;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18d951ec4bfa38da49dae8c2b4fbcd7b5eca38d3', '31.222.203.2', 1679635977, '__ci_last_regenerate|i:1679635977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98ccf95e2f6d3a94eded1babb3e279f1b67663a8', '116.204.230.28', 1679637835, '__ci_last_regenerate|i:1679637835;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679579079\";last_ip|s:14:\"37.111.212.218\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ed22d04832ad12d8c3858a2e63310c7dc6bb6a2', '31.222.203.2', 1679637779, '__ci_last_regenerate|i:1679637779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b33aa9de692dc88886750bff72aef7148a9dce5', '31.222.203.2', 1679637779, '__ci_last_regenerate|i:1679637779;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1b5672ab62d8fb4480b31fc450e0c428cf38e28', '31.222.203.2', 1679637779, '__ci_last_regenerate|i:1679637779;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad3cd793b211124ae82840a88fa90e1ac09aaeae', '31.222.203.2', 1679637782, '__ci_last_regenerate|i:1679637782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b581f3d8531f085617a9b43f6e3b86e2f2290c', '31.222.203.2', 1679637782, '__ci_last_regenerate|i:1679637782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('622bda21061b1e48ebd6fa8f6b9890343397b309', '31.222.203.2', 1679637783, '__ci_last_regenerate|i:1679637783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d2eff38d4b7391c2d708f088fbb20ea573a6e9', '116.204.230.28', 1679639905, '__ci_last_regenerate|i:1679639905;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679579079\";last_ip|s:14:\"37.111.212.218\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09d2e014281957dfa8b3ca1bad78f56f045017f6', '31.222.203.2', 1679639581, '__ci_last_regenerate|i:1679639581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac353a461eb5414d47dfcbc5c3224d83c81ebe0', '31.222.203.2', 1679639581, '__ci_last_regenerate|i:1679639581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93e95b03706f185c4110873a6aae27cd952b092e', '31.222.203.2', 1679639581, '__ci_last_regenerate|i:1679639581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b3c5e70f6c3e1453cfdc7de840c4f740236ac3c', '31.222.203.2', 1679639582, '__ci_last_regenerate|i:1679639582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92e8d8c9905561f031aa1fc91f70eb8bf74db4c1', '31.222.203.2', 1679639582, '__ci_last_regenerate|i:1679639582;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0bcbdd9ce53c67e8358846da3af7fb382ca993', '31.222.203.2', 1679639582, '__ci_last_regenerate|i:1679639582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f86a4730466c940807feb0f2e364bffa4c735b4', '116.204.230.28', 1679639909, '__ci_last_regenerate|i:1679639905;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679579079\";last_ip|s:14:\"37.111.212.218\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f27789d6a88d9ca349cc8175f08bb80673d35092', '37.111.218.43', 1679647029, '__ci_last_regenerate|i:1679640313;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679565634\";last_ip|s:13:\"37.111.219.35\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679647029;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bec075a4974a3b060e594f9139fb099197d7dee', '31.222.203.2', 1679641394, '__ci_last_regenerate|i:1679641394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eb56a88c0c72154fd7bdc43c6a4c536d9890fe6', '31.222.203.2', 1679641394, '__ci_last_regenerate|i:1679641394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4253779071d7ea0dbb0813c8bb7efd05d2567ea2', '31.222.203.2', 1679641394, '__ci_last_regenerate|i:1679641394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a530560be67a490dc4d9631104592075b24e3830', '31.222.203.2', 1679641394, '__ci_last_regenerate|i:1679641394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82313400a67e4eac3fac3eaa7abaa6f73e945159', '31.222.203.2', 1679641394, '__ci_last_regenerate|i:1679641394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2dced8ce59893e9adfa20b49dab402d3707ee72', '31.222.203.2', 1679641394, '__ci_last_regenerate|i:1679641394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56c9f44a29389b4cad3a140e2af904e9751fc575', '31.222.203.2', 1679643188, '__ci_last_regenerate|i:1679643188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc455bbbbcbe4e55fa1ab748a875a9295c3196f', '31.222.203.2', 1679643188, '__ci_last_regenerate|i:1679643188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('719a47ae7abb265a9a3d48fa0271dd882287a057', '31.222.203.2', 1679643188, '__ci_last_regenerate|i:1679643188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2434ef09a5562fbeadbbda5980e00e3f70af4361', '31.222.203.2', 1679643188, '__ci_last_regenerate|i:1679643188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd57546efa30fe2c987c810dd02c73eadc1e37d', '31.222.203.2', 1679643188, '__ci_last_regenerate|i:1679643188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a877fe5ddb86c6c836c2662a8b051be9e923218', '31.222.203.2', 1679643188, '__ci_last_regenerate|i:1679643188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ded05dbc48972408286cfb1da934feed99150380', '31.222.203.2', 1679644985, '__ci_last_regenerate|i:1679644985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47cc1c952e5b7c61977cef3d2ed6a5b7ec702bf', '31.222.203.2', 1679644987, '__ci_last_regenerate|i:1679644987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c8005ca4a9944547aed575416524f2178d6024e', '31.222.203.2', 1679644987, '__ci_last_regenerate|i:1679644987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9d8fbda84d0a9bd6d47089ddc2397a0f0e0bf7f', '31.222.203.2', 1679644987, '__ci_last_regenerate|i:1679644987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5bb68fa40dc939dd10c5f1bbb552bd197c71c99', '31.222.203.2', 1679644987, '__ci_last_regenerate|i:1679644987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd23fe814c9f879ea945c4d50efb94ee371fada1', '31.222.203.2', 1679644987, '__ci_last_regenerate|i:1679644987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7ae8994afa389048cfadeb06c9aa039e14e329', '31.222.203.2', 1679646780, '__ci_last_regenerate|i:1679646780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd03a2484bcc1e575d4c2076a720374dc78e1e34', '31.222.203.2', 1679646780, '__ci_last_regenerate|i:1679646780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82e9942ccd7b10258a5142ae7d22bf3ed35f5e3', '31.222.203.2', 1679646780, '__ci_last_regenerate|i:1679646780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3afad511bf920e32c59cb1530a34cf02f2e4254a', '31.222.203.2', 1679646781, '__ci_last_regenerate|i:1679646781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4772149c0e8bad8de057a35bc7738dc4b8815008', '31.222.203.2', 1679646781, '__ci_last_regenerate|i:1679646781;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5adf38a2fde5e28191ab574c6f663d15442dfff6', '31.222.203.2', 1679646781, '__ci_last_regenerate|i:1679646781;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef936bb047dd46ac1abfd8512acb7069e8071c31', '31.222.203.2', 1679648586, '__ci_last_regenerate|i:1679648586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f8d861ba384ace671f62e8fca0e20466831a79', '31.222.203.2', 1679648586, '__ci_last_regenerate|i:1679648586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b552556a64dd4ede067f8f9a3122c27312bf77a', '31.222.203.2', 1679648586, '__ci_last_regenerate|i:1679648586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5f798f931e88392a213c7a391935106b0f7949c', '31.222.203.2', 1679648588, '__ci_last_regenerate|i:1679648588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e575fbcc58893fb20a8995ee3b536c952169347', '31.222.203.2', 1679648588, '__ci_last_regenerate|i:1679648588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d02c28738d2051f6e0c0fa31507d0ae9a961da89', '31.222.203.2', 1679648588, '__ci_last_regenerate|i:1679648588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3cd39748389be3b98b4410ce2062cdbcf4322da', '31.222.203.2', 1679650391, '__ci_last_regenerate|i:1679650391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9d95664945fac88b965cd24430e35bf5c48a5c0', '31.222.203.2', 1679650391, '__ci_last_regenerate|i:1679650391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fc6b556bc782d5532ace56cb641cfd9a7afb5e4', '31.222.203.2', 1679650391, '__ci_last_regenerate|i:1679650391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189218b1196f64b6389e441b78b188802f14c373', '31.222.203.2', 1679650391, '__ci_last_regenerate|i:1679650391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('478f6d72b82967dbb6efeda73ad0d7a2c8b9a2da', '31.222.203.2', 1679650391, '__ci_last_regenerate|i:1679650391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25a498d3c38a0dc8b5e8f5939b973b62bd959a95', '31.222.203.2', 1679650391, '__ci_last_regenerate|i:1679650391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d21de2f3c74296ac4f02316bed4a6d4b37e2a7f9', '79.124.59.162', 1679651643, '__ci_last_regenerate|i:1679651643;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa6f7b8e507e2ace1f8ff8ac1daa0bbc353f789', '79.124.59.162', 1679651646, '__ci_last_regenerate|i:1679651646;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18284c7cb620217b1b984f7ed66ec5d447244cda', '79.124.59.162', 1679651646, '__ci_last_regenerate|i:1679651646;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38333a1a8364cbdf5269b8455713a759d905386b', '31.222.203.2', 1679652184, '__ci_last_regenerate|i:1679652184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbac78329883886cba9b3bb3e1c9ee06cdbac3d2', '31.222.203.2', 1679652184, '__ci_last_regenerate|i:1679652184;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e8b9530e768cdbbfca8c70aaafefd7385f98dae', '31.222.203.2', 1679652184, '__ci_last_regenerate|i:1679652184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec1a539871b5ac8b6ca1d09f7aefcf334adb597', '31.222.203.2', 1679652186, '__ci_last_regenerate|i:1679652186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c99c83310a1f0d999db5fc6d45fcfb8b98c659', '31.222.203.2', 1679652186, '__ci_last_regenerate|i:1679652186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c3c897f3d6df9d20e463b38c7e8e63112dc226', '31.222.203.2', 1679652186, '__ci_last_regenerate|i:1679652186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67b8c3b01a5794c7d4bd54a265ca70221d0fdb55', '31.222.203.2', 1679653995, '__ci_last_regenerate|i:1679653995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea447232abc05672ec5f51bd6094e38f2afacaf', '31.222.203.2', 1679653995, '__ci_last_regenerate|i:1679653995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b24923a2000ebe55148e62ba3795e807ab9336', '31.222.203.2', 1679653995, '__ci_last_regenerate|i:1679653995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b48b0b3245508aa4e726fedd5e30b89e174c6cdf', '31.222.203.2', 1679653995, '__ci_last_regenerate|i:1679653995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('665ecd5490135897b91a56db18924c9ac67f31d8', '31.222.203.2', 1679653995, '__ci_last_regenerate|i:1679653995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a172bb9a03b71c67b9e515b6860460baed690449', '31.222.203.2', 1679653995, '__ci_last_regenerate|i:1679653995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb7bad13cdd4b940934f3f3bd83dd37194c2651c', '79.124.59.162', 1679655614, '__ci_last_regenerate|i:1679655614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e4a6cd98435efd19a134c49af0948513f10782', '79.124.59.162', 1679655614, '__ci_last_regenerate|i:1679655614;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b83d0630ecbf9e9e4a26abd81c19a4c71ae9c7d', '79.124.59.162', 1679655614, '__ci_last_regenerate|i:1679655614;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1c0a0b3ed1fb99c5d782da19c41f42b9a134c4d', '31.222.203.2', 1679655775, '__ci_last_regenerate|i:1679655775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0bfbade3cd9e821a092a20b30b1543af9199b19', '31.222.203.2', 1679655775, '__ci_last_regenerate|i:1679655775;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0d4e560a2ab8d26d32be08f34d1db0c53f17a10', '31.222.203.2', 1679655775, '__ci_last_regenerate|i:1679655775;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0012f79ca469bb03304fb4e2389ce0bea1c9989', '31.222.203.2', 1679655777, '__ci_last_regenerate|i:1679655777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4abb748bf3384f8a2b8462523b4ce595b89c76c', '31.222.203.2', 1679655777, '__ci_last_regenerate|i:1679655777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5d58e3a093688fde55644c1414bee72d78cd944', '31.222.203.2', 1679655777, '__ci_last_regenerate|i:1679655777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d25035222367acea81079208c94c267c98a4f6da', '31.222.203.2', 1679657594, '__ci_last_regenerate|i:1679657594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8238f97bf499ebf011a185ba09bcd171ae8168a4', '31.222.203.2', 1679657594, '__ci_last_regenerate|i:1679657594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cecf157b550dff0f313ce30904d4e6a185b38863', '31.222.203.2', 1679657594, '__ci_last_regenerate|i:1679657594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfea935146983afd7b1736595832be5b7a0a83d1', '31.222.203.2', 1679657594, '__ci_last_regenerate|i:1679657594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('509e85473a4fd89fa2a65ff2ef5586b172b0ad74', '31.222.203.2', 1679657594, '__ci_last_regenerate|i:1679657594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bae5cd73ae5bc9536d7b31915efab717beb5d5f', '31.222.203.2', 1679657594, '__ci_last_regenerate|i:1679657594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('706fc518aff39342e3e9b4a7a88ab7f99edcc4e7', '31.222.203.2', 1679659401, '__ci_last_regenerate|i:1679659401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('606d239f49194ea1001ad63588aaeb4ae910d40c', '31.222.203.2', 1679659401, '__ci_last_regenerate|i:1679659401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e19fc89e97603fcbd0d0e11f470e193d00aaa5c', '31.222.203.2', 1679659401, '__ci_last_regenerate|i:1679659401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('533136a04139abd52345805e8aec4a924e97154f', '31.222.203.2', 1679659403, '__ci_last_regenerate|i:1679659403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54d811bce385f468bff1fc83bfc603b41476b12', '31.222.203.2', 1679659403, '__ci_last_regenerate|i:1679659403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a5815d2baaecaeee16803926fc8ed139dbc69f8', '31.222.203.2', 1679659403, '__ci_last_regenerate|i:1679659403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1faf4141382d62d0d519e8bec80fd2dd0fcf47', '31.222.203.2', 1679661191, '__ci_last_regenerate|i:1679661191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63e36c7529204011749bcb08cc12e16d0d11ba7', '31.222.203.2', 1679661193, '__ci_last_regenerate|i:1679661193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb30335aff95a37829d770221b2ddd0f4ac98050', '31.222.203.2', 1679661193, '__ci_last_regenerate|i:1679661193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd723e4a4ee71db05a3ef43ec58485c71e7537e', '31.222.203.2', 1679661193, '__ci_last_regenerate|i:1679661193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db941d0f7a04a10cf3239b73996d156181c94e5a', '31.222.203.2', 1679661193, '__ci_last_regenerate|i:1679661193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a8e50c2953688924ccab25bba6df16ce27e6044', '31.222.203.2', 1679661193, '__ci_last_regenerate|i:1679661193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d556b4497eb47687bcacfc238092edbc16d574bc', '31.222.203.2', 1679662981, '__ci_last_regenerate|i:1679662981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54d562b6cd0bdbba1630ee96daffb1a1b25b10a', '31.222.203.2', 1679662981, '__ci_last_regenerate|i:1679662981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59c8a3461f95a8ec7c3fc21be90d8747022e935f', '31.222.203.2', 1679662981, '__ci_last_regenerate|i:1679662981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c307484069d34a51f766ec4fa585b051d862f231', '31.222.203.2', 1679662983, '__ci_last_regenerate|i:1679662983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f3550ac234554cc8ba81b7f21446281d92c3d86', '31.222.203.2', 1679662983, '__ci_last_regenerate|i:1679662983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42ac905bc2e83f7ae4ec7c5e4e208763cc9156ac', '31.222.203.2', 1679662983, '__ci_last_regenerate|i:1679662983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('031ea730aeb0d2a3ac28db4321ae8d8e933edbc3', '37.111.218.57', 1679663632, '__ci_last_regenerate|i:1679663632;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679632469\";last_ip|s:13:\"37.111.218.43\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679663615;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57a35763d1f1b9e111f9a28c3f3a68c743704683', '116.204.230.28', 1679663702, '__ci_last_regenerate|i:1679663591;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679637466\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1679663698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d78bae1a6317946cfd855430efa5b5fe8c6f85', '37.111.218.57', 1679665851, '__ci_last_regenerate|i:1679665851;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679632469\";last_ip|s:13:\"37.111.218.43\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679663866;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b59c7cf93394c616fdb0819cd89abd1194b29f41', '116.204.230.28', 1679664330, '__ci_last_regenerate|i:1679664330;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679663597\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1679663978;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('191cc75907f40e0f38610aa6330f2b8c67d33029', '116.204.230.28', 1679664334, '__ci_last_regenerate|i:1679664330;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679663597\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1679663978;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b433999d3606d30d1ecc5c72098164641e0e3c11', '31.222.203.2', 1679664791, '__ci_last_regenerate|i:1679664791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bca40426794a555cdc46b6d65af633cfbdf07bc7', '31.222.203.2', 1679664791, '__ci_last_regenerate|i:1679664791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44d1a0cc30aa9ed37f1c6c6e01f0e21ec5f9486c', '31.222.203.2', 1679664791, '__ci_last_regenerate|i:1679664791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006c8fdce4f8fe467e66a7479025f442316ec782', '31.222.203.2', 1679664791, '__ci_last_regenerate|i:1679664791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f212a15f14576ac8265155e24955a4e538732ac', '31.222.203.2', 1679664791, '__ci_last_regenerate|i:1679664791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('200e8d84108aae54a3c6a4636e076f381c069701', '31.222.203.2', 1679664791, '__ci_last_regenerate|i:1679664791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e737ee7a8b56cef96002abaea3d3ae15444cac5e', '37.111.218.57', 1679669831, '__ci_last_regenerate|i:1679669831;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679632469\";last_ip|s:13:\"37.111.218.43\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679663866;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4069ab644490328ea003ef0372c4ddc95b87892b', '37.111.194.239', 1679666620, '__ci_last_regenerate|i:1679666597;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679538293\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1505876a9d9b6eccd706922b6f0c56f82a75e38b', '31.222.203.2', 1679666598, '__ci_last_regenerate|i:1679666598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8007c184eecad6fb1ea49f89ff749b36bbcb65aa', '31.222.203.2', 1679666598, '__ci_last_regenerate|i:1679666598;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bea271d773952539adc6a939860f6c718d4e634', '31.222.203.2', 1679666598, '__ci_last_regenerate|i:1679666598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('761c0dbf67f08f6f36fec52e839bd71813704f4e', '31.222.203.2', 1679666600, '__ci_last_regenerate|i:1679666600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec522f92de37c91e1d59273324616d498688a74', '31.222.203.2', 1679666600, '__ci_last_regenerate|i:1679666600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6608bab0380cc56215f8633a0dcef27c6118129', '31.222.203.2', 1679666600, '__ci_last_regenerate|i:1679666600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bb2af8376925ddd8904a4867edbc77ba9a20f35', '31.222.203.2', 1679668392, '__ci_last_regenerate|i:1679668392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d8e9a3afa35a56dff8199bbc4da20acd788675', '31.222.203.2', 1679668392, '__ci_last_regenerate|i:1679668392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed70da2f35b1cfbb20e9b041b30e27e13e753645', '31.222.203.2', 1679668392, '__ci_last_regenerate|i:1679668392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b05cb8b3070907bb92443af4583981d3c6038d6', '31.222.203.2', 1679668394, '__ci_last_regenerate|i:1679668394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82feafc4cf1f4fed70ee4be81d2890ba12e8dde2', '31.222.203.2', 1679668394, '__ci_last_regenerate|i:1679668394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97f15fdf288e0b9599dfe3a225055914c95a801f', '31.222.203.2', 1679668394, '__ci_last_regenerate|i:1679668394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da8292dcc42180ee201a34304d220eff38ea0d4', '37.111.218.57', 1679670886, '__ci_last_regenerate|i:1679670886;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679632469\";last_ip|s:13:\"37.111.218.43\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679670095;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";error|s:126:\"Access Denied! You don\'t have right to access the requested page. If you think, it\'s by mistake, please contact administrator.\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b18956cf32cfc8cbd8d07638534d00678f83463d', '31.222.203.2', 1679670193, '__ci_last_regenerate|i:1679670193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f709362b07b5a85bb710f57af7845335ad05b1cd', '31.222.203.2', 1679670193, '__ci_last_regenerate|i:1679670193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b5a14b8742753fbda00d0661eb0d4a741e95341', '31.222.203.2', 1679670193, '__ci_last_regenerate|i:1679670193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5459d602642497e7bd16a9460826ae2308205b9', '31.222.203.2', 1679670195, '__ci_last_regenerate|i:1679670195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983af28e0708fbda04b951e36b00739eee572565', '31.222.203.2', 1679670195, '__ci_last_regenerate|i:1679670195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae1d1ad8c195583aa771308fbd42ed66631db8dd', '31.222.203.2', 1679670195, '__ci_last_regenerate|i:1679670195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89ba0e7aa9e02b932c436b4d16b226820adc9917', '37.111.218.57', 1679672291, '__ci_last_regenerate|i:1679672291;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679632469\";last_ip|s:13:\"37.111.218.43\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679672247;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8340bd4eb7e5c57ecc0d5545a4e8d9858a084024', '31.222.203.2', 1679671993, '__ci_last_regenerate|i:1679671993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c2011c2368fb3c3fee5f0a8db7c19000b2ac3bc', '31.222.203.2', 1679671993, '__ci_last_regenerate|i:1679671993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d40d1ad7e73b238d9283d77b712f86dfc3d477', '31.222.203.2', 1679671993, '__ci_last_regenerate|i:1679671993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369754503fed845e643e6010f7d2dfb56d1cc887', '31.222.203.2', 1679671995, '__ci_last_regenerate|i:1679671995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d6be88d2e2e811bc0b5e7fd37916b0815957af5', '31.222.203.2', 1679671995, '__ci_last_regenerate|i:1679671995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('898bb71780748a91b1903eadbd2baabb76357f3e', '31.222.203.2', 1679671995, '__ci_last_regenerate|i:1679671995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('569cfb17ed791e909855d3ba127dc810077ff5b3', '37.111.218.57', 1679672292, '__ci_last_regenerate|i:1679672291;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679632469\";last_ip|s:13:\"37.111.218.43\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679672291;register_id|s:3:\"379\";cash_in_hand|s:9:\"1860.0000\";register_open_time|s:19:\"2023-03-23 21:10:52\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0cb760feb2378cd4a1089db2515ba2774af6a7', '31.222.203.2', 1679673798, '__ci_last_regenerate|i:1679673798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('678f09257e5a20153ba1d8be5f3bf4185105a433', '31.222.203.2', 1679673798, '__ci_last_regenerate|i:1679673798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e879e53db4ed2ff4851a984e46a6c5bfeb16814', '31.222.203.2', 1679673798, '__ci_last_regenerate|i:1679673798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe114e41d652ba063b9faecc9aa182fa623bcca', '31.222.203.2', 1679673798, '__ci_last_regenerate|i:1679673798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a113118fac690fcf50932f541f789bab0eea58ac', '31.222.203.2', 1679673798, '__ci_last_regenerate|i:1679673798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e5f1d16fb30248e71594dc56eda5774a686060a', '31.222.203.2', 1679673798, '__ci_last_regenerate|i:1679673798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f19bd7e41e6204e7dacc7e13284cf5d7feea6ba6', '31.222.203.2', 1679675582, '__ci_last_regenerate|i:1679675582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b94f76ca613b19bda1bcd993dcc80f1994073a61', '31.222.203.2', 1679675582, '__ci_last_regenerate|i:1679675582;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2659fd3cb435d48f6bc3e907889f3a917eab3c53', '31.222.203.2', 1679675583, '__ci_last_regenerate|i:1679675583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('687b7bc86a604cdb0d23c796771307b21ed96894', '31.222.203.2', 1679675584, '__ci_last_regenerate|i:1679675584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddbebb95505537e65207246d068f66ea5ecc72da', '31.222.203.2', 1679675585, '__ci_last_regenerate|i:1679675585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8297dbe17605d9fc73dba4e5aeaf0f6dd91c01a7', '31.222.203.2', 1679675585, '__ci_last_regenerate|i:1679675585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15d3d6798acb8242ef7fffb5d95467d91887572c', '31.222.203.2', 1679677376, '__ci_last_regenerate|i:1679677376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c9de514c2217b07bcebea58e1177b6eab1a3d2e', '31.222.203.2', 1679677376, '__ci_last_regenerate|i:1679677376;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('338e4a11dc6cf8567f0ea9ee8a0fca557a7f5ba5', '31.222.203.2', 1679677376, '__ci_last_regenerate|i:1679677376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a57fa30501632d2fad1add87b1727d09a4f1e80', '31.222.203.2', 1679677378, '__ci_last_regenerate|i:1679677378;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('794984aaaa2ee6a837e430e3989b6ee00607d32d', '31.222.203.2', 1679677378, '__ci_last_regenerate|i:1679677378;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0da0a9e9d96ae5659114841b6f88634bc44d01e', '31.222.203.2', 1679677378, '__ci_last_regenerate|i:1679677378;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07390f5327b30c14c93137cdeae78a61605f9d7a', '31.222.203.2', 1679679189, '__ci_last_regenerate|i:1679679189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('344e34514af924979c236c44a03c12ee2b06e2d3', '31.222.203.2', 1679679190, '__ci_last_regenerate|i:1679679190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('074b090788b179781240a3ec8d7c9d6a959b6ad5', '31.222.203.2', 1679679190, '__ci_last_regenerate|i:1679679190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2157a1a0ab186741b873f28d88851ee637f995d3', '31.222.203.2', 1679679190, '__ci_last_regenerate|i:1679679190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cfd44c0421b654a3382529166323bf47ce26d318', '31.222.203.2', 1679679190, '__ci_last_regenerate|i:1679679190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f34c901827d6af99acd349c8714a6443ee844a7', '31.222.203.2', 1679679190, '__ci_last_regenerate|i:1679679190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4d14984d104356c12dfab533620c9916ff45a2', '31.222.203.2', 1679680980, '__ci_last_regenerate|i:1679680980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c7b06f5daa10d997c22af7e38587a91c196cdf8a', '31.222.203.2', 1679680980, '__ci_last_regenerate|i:1679680980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c0fc3cd2423430b4f087b1cb0e548d48df4a86e', '31.222.203.2', 1679680980, '__ci_last_regenerate|i:1679680980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('869753edd81fcaf484bd0388f318aaf450618949', '31.222.203.2', 1679680982, '__ci_last_regenerate|i:1679680982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d48963311602902ad5b96a00ced09c7d0186d050', '31.222.203.2', 1679680982, '__ci_last_regenerate|i:1679680982;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cdb5f847fce4ab7763463ac50f69bbb32494dab', '31.222.203.2', 1679680982, '__ci_last_regenerate|i:1679680982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107c29719062e8718dd04951c1cb9ec85a54a9f6', '31.222.203.2', 1679682778, '__ci_last_regenerate|i:1679682778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16dd74d89cc7dc66cf0bfdf9215bbcf864f7ca15', '31.222.203.2', 1679682778, '__ci_last_regenerate|i:1679682778;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e33e79c09e3dd355637d27c8ead41f5bf3df8df3', '31.222.203.2', 1679682778, '__ci_last_regenerate|i:1679682778;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b67d86d23d90e749cb0dba996534f9189e0b5c9a', '31.222.203.2', 1679682780, '__ci_last_regenerate|i:1679682780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f85c18da55f364d6cc58a6ac36dd69e232b4bab', '31.222.203.2', 1679682780, '__ci_last_regenerate|i:1679682780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa7fbc57930f38ce9ce9acb40f3abbe0318d769', '31.222.203.2', 1679682780, '__ci_last_regenerate|i:1679682780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4953c38afc4eb96fdf95525985883c89fb1ad128', '31.222.203.2', 1679684591, '__ci_last_regenerate|i:1679684591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b77d519259855951b8508610311db71d5eac0851', '31.222.203.2', 1679684591, '__ci_last_regenerate|i:1679684591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('663d92e12189c45608c3c416f773a52355023e3f', '31.222.203.2', 1679684591, '__ci_last_regenerate|i:1679684591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4187699968cc0e36571a872468f37ba7a3c5899f', '31.222.203.2', 1679684591, '__ci_last_regenerate|i:1679684591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('348e6ad8bb98d0f290bb321f77859993c79bae7f', '31.222.203.2', 1679684591, '__ci_last_regenerate|i:1679684591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a12b46f97c4ad1890be7a6fa5fbf77371a80d795', '31.222.203.2', 1679684591, '__ci_last_regenerate|i:1679684591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096761de862af08ff0b3d73f07fffd90e22c1504', '31.222.203.2', 1679686384, '__ci_last_regenerate|i:1679686384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a994152d37f7105c83ba6ef84a643941f29fb8', '31.222.203.2', 1679686384, '__ci_last_regenerate|i:1679686384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752cc246257c1cb04f9bcdaa7fe366523e4529d5', '31.222.203.2', 1679686384, '__ci_last_regenerate|i:1679686384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('413124a7371e42fe7bb4b56c4f52570d14bf565d', '31.222.203.2', 1679686384, '__ci_last_regenerate|i:1679686384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69911b5c2ae8ccf46faf61f83528941b9b987d7f', '31.222.203.2', 1679686384, '__ci_last_regenerate|i:1679686384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f66c1b1d721bd1aeb9c3f712f3485a6aaa6edf0', '31.222.203.2', 1679686384, '__ci_last_regenerate|i:1679686384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf235f291232077f2e93889b5ab0548970e5f41', '31.222.203.2', 1679688186, '__ci_last_regenerate|i:1679688186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e510324531965e9a62d56b54af10da25874a7bfc', '31.222.203.2', 1679688186, '__ci_last_regenerate|i:1679688186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23bbe1bb4451a99248b5d1c2bca9c3dfa510c7e', '31.222.203.2', 1679688186, '__ci_last_regenerate|i:1679688186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83eaa277c97b61d45700b2106b6527aa9e3c38ac', '31.222.203.2', 1679688186, '__ci_last_regenerate|i:1679688186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('024535e5d41bb48f160805b3e05c5acea0ac14df', '31.222.203.2', 1679688186, '__ci_last_regenerate|i:1679688186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255d27cb79aafa01bff7b42d75a9570c7b8f08b3', '31.222.203.2', 1679688186, '__ci_last_regenerate|i:1679688186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1250adb4d8ee7bb19377375cb2ac10f67d561e47', '31.222.203.2', 1679689989, '__ci_last_regenerate|i:1679689989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae6a093299b6c895c6ed13c6fb6a54ae4641f6d5', '31.222.203.2', 1679689989, '__ci_last_regenerate|i:1679689989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c91276b4a37462c6049525f6f7371b426c0017c', '31.222.203.2', 1679689989, '__ci_last_regenerate|i:1679689989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af915b79d70c42fe49c03a7d6b6dc3849cf74e10', '31.222.203.2', 1679689990, '__ci_last_regenerate|i:1679689990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d463937996434e5cd9ffaa1c818ce55d329fcbd7', '31.222.203.2', 1679689990, '__ci_last_regenerate|i:1679689990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224536393cb21e8c65db6f14b75d2cfcab585152', '31.222.203.2', 1679689990, '__ci_last_regenerate|i:1679689990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('366fcaff841c321f6836ec142b6b1f46f570b841', '31.222.203.2', 1679691783, '__ci_last_regenerate|i:1679691783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c817e900dec195a7faf39c3d816e11767c80b6fc', '31.222.203.2', 1679691783, '__ci_last_regenerate|i:1679691783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9085a5d020908ae6f935d081478b6ffddc659f2', '31.222.203.2', 1679691783, '__ci_last_regenerate|i:1679691783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403cf13186e284fafa9009d404a458577eddef6c', '31.222.203.2', 1679691785, '__ci_last_regenerate|i:1679691785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fc4b9906534f1a179471c9f94cd555402d03755', '31.222.203.2', 1679691785, '__ci_last_regenerate|i:1679691785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a325d24f69cf30c683fa71f23b23dccfec49cf', '31.222.203.2', 1679691785, '__ci_last_regenerate|i:1679691785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c7b626bb39cdca7415e87e6c86d057067e46c0', '31.222.203.2', 1679693586, '__ci_last_regenerate|i:1679693586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f67fc4fbd455fbcc91e3d7132181eb4b2ecf7ef', '31.222.203.2', 1679693586, '__ci_last_regenerate|i:1679693586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72f0f6781222832db12d11df2157f9301716d645', '31.222.203.2', 1679693586, '__ci_last_regenerate|i:1679693586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b838d5f806f16b18a5c73357a8a64c387235b0c4', '31.222.203.2', 1679693586, '__ci_last_regenerate|i:1679693586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0b106e712f5fef41a86105bda000f3e10f77d3f', '31.222.203.2', 1679693586, '__ci_last_regenerate|i:1679693586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e1c55121b262465cafc1945fc65192f5a2d0c4', '31.222.203.2', 1679693586, '__ci_last_regenerate|i:1679693586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c111f9ac10873e006578addcff5f815295239c7d', '31.222.203.2', 1679695389, '__ci_last_regenerate|i:1679695389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13ab39f019a71aee8b94bbd065a506f6fd17c1e0', '31.222.203.2', 1679695389, '__ci_last_regenerate|i:1679695389;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a76fdebb39ba015517a0247813fd4a2c72643b', '31.222.203.2', 1679695389, '__ci_last_regenerate|i:1679695389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('372b41144fe48102959cedd889964cdc350b1d56', '31.222.203.2', 1679695391, '__ci_last_regenerate|i:1679695391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21ed249b6ea5ad699b3bd03d083a5d50d68fe1e6', '31.222.203.2', 1679695391, '__ci_last_regenerate|i:1679695391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f45fa2b87677cdb39a8f0a5a99bcf9ee3304318', '31.222.203.2', 1679695391, '__ci_last_regenerate|i:1679695391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a28c1268076220f44aeb553fb655263bea3352ee', '31.222.203.2', 1679697181, '__ci_last_regenerate|i:1679697181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('051ece2de42a1c4121df2407a2e049c886bff439', '31.222.203.2', 1679697181, '__ci_last_regenerate|i:1679697181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6595b19a1f651a7944f48bd6d942c39f8fd7a1be', '31.222.203.2', 1679697181, '__ci_last_regenerate|i:1679697181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9efc692463eef5f265d58e76b1ea5043b4139ffa', '31.222.203.2', 1679697181, '__ci_last_regenerate|i:1679697181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0becfa1702ec4e731c72f20dcfb3386de50fb5f9', '31.222.203.2', 1679697181, '__ci_last_regenerate|i:1679697181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d88bd413ca1f301f19c4d77f25424cda64c04c5', '31.222.203.2', 1679697181, '__ci_last_regenerate|i:1679697181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f2d210aa77ec59429c25700f2e378e36c75c980', '31.222.203.2', 1679698985, '__ci_last_regenerate|i:1679698985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc7f759856f88053170ffa3db1f39f04ca706ab8', '31.222.203.2', 1679698985, '__ci_last_regenerate|i:1679698985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('336b290d00e6f5ece84a376b55d175dfbdb761e5', '31.222.203.2', 1679698985, '__ci_last_regenerate|i:1679698985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82f49a311e87d92647bf09e392ba9317d9c3af3', '31.222.203.2', 1679698986, '__ci_last_regenerate|i:1679698986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b51fcfaf47508ef3398d38d42f58f6810205a5', '31.222.203.2', 1679698986, '__ci_last_regenerate|i:1679698986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a47ffca5717cd6cf79d04a5854d1d0a9a5faaf', '31.222.203.2', 1679698986, '__ci_last_regenerate|i:1679698986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be70f8206bd58358f9fa09a878f6c0316869a7f4', '31.222.203.2', 1679700796, '__ci_last_regenerate|i:1679700796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f26862f8123acdb0d38f83505da07dfc29234b5d', '31.222.203.2', 1679700796, '__ci_last_regenerate|i:1679700796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('514e7b7482fbdce8a8b1f49f7abd578b5959885d', '31.222.203.2', 1679700796, '__ci_last_regenerate|i:1679700796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a7c53a4e03b9fff9cafdc24aae57228351b8f98', '31.222.203.2', 1679700796, '__ci_last_regenerate|i:1679700796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ab06743df5d07173a60047f47861a7756436f37', '31.222.203.2', 1679700796, '__ci_last_regenerate|i:1679700796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4839645d937f9a0eda95d6d96a0dfb7ce55c464', '31.222.203.2', 1679700796, '__ci_last_regenerate|i:1679700796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87f71c1a5eb1171087f0a0cb08fdf0769235d081', '31.222.203.2', 1679702585, '__ci_last_regenerate|i:1679702585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5260e103f968d367e8ca25ee59d694a52788c580', '31.222.203.2', 1679702585, '__ci_last_regenerate|i:1679702585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13b4fbb980e3f7b9cbf823b4234be90d6f41db0a', '31.222.203.2', 1679702585, '__ci_last_regenerate|i:1679702585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a01ebe19beaae742cbfda99fe8d25903d29395e4', '31.222.203.2', 1679702586, '__ci_last_regenerate|i:1679702586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62a66a57b394faf2cfcff26c17237d2d67c5c36e', '31.222.203.2', 1679702586, '__ci_last_regenerate|i:1679702586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d60e1a5cfc15278341cea79b710cbdc7a5a57c9', '31.222.203.2', 1679702586, '__ci_last_regenerate|i:1679702586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e28114c5fdc6c04109c1f6b7c49a8047fa88a8c5', '205.210.31.12', 1679704367, '__ci_last_regenerate|i:1679704367;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0337e3a122d872920c100499004141b6cea640f', '31.222.203.2', 1679704390, '__ci_last_regenerate|i:1679704390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ce121d001ca5d05813d510b6590df0e3a68c35', '31.222.203.2', 1679704390, '__ci_last_regenerate|i:1679704390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04dccafed9961f44fcb6fc4a42139739980763ec', '31.222.203.2', 1679704390, '__ci_last_regenerate|i:1679704390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('812ce92c1e9ed8643c63a0dea377594beb35365b', '31.222.203.2', 1679704391, '__ci_last_regenerate|i:1679704391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f56e124d4957575591bfd4915f00803ddba036a', '31.222.203.2', 1679704391, '__ci_last_regenerate|i:1679704391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d637fbc6eb87bc17fd65354c01c782d6e5e53da4', '31.222.203.2', 1679704391, '__ci_last_regenerate|i:1679704391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073e2d7a5622df5896ff923e29be57b5f7fc4703', '31.222.203.2', 1679706183, '__ci_last_regenerate|i:1679706183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b38797c8b0ee30a05639e9929132cf7ffdf0b1', '31.222.203.2', 1679706183, '__ci_last_regenerate|i:1679706183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb81b2feff640defef8399b8f30cdcfd5bd6534f', '31.222.203.2', 1679706183, '__ci_last_regenerate|i:1679706183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8c7b9bc1013a5a3e7bcf38da8051c2f0dc7c0c2', '31.222.203.2', 1679706183, '__ci_last_regenerate|i:1679706183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84debd73b669f8a107b745f7ee9afbdc47d05825', '31.222.203.2', 1679706183, '__ci_last_regenerate|i:1679706183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c01e96f8e5caa5f18a70f45491bf501f1f994e', '31.222.203.2', 1679706183, '__ci_last_regenerate|i:1679706183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbc97fbf8cac08f8c2a26c1825086fc7c4a2fa78', '31.222.203.2', 1679707989, '__ci_last_regenerate|i:1679707989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4c90443c53a1112b545c901082385aaa9ce5f38', '31.222.203.2', 1679707989, '__ci_last_regenerate|i:1679707989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92a3ade3b7664ea4f5aa19c330723cb4a5e356d', '31.222.203.2', 1679707989, '__ci_last_regenerate|i:1679707989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d212bf36d19cb7119cd1babfc18a82b903578bb2', '31.222.203.2', 1679707990, '__ci_last_regenerate|i:1679707990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03564cac299b6b539aa43cae35e0d25b4bf0e1b4', '31.222.203.2', 1679707990, '__ci_last_regenerate|i:1679707990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d32cbc2b2ab873f5ad02f8bfe1f55d532acc2ad', '31.222.203.2', 1679707990, '__ci_last_regenerate|i:1679707990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f75d8078163b8cb4a98ad13bc36c35e60040321', '31.222.203.2', 1679709796, '__ci_last_regenerate|i:1679709796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd94c7f2e54cc3795a99f7dabfe9f7a5f5297988', '31.222.203.2', 1679709796, '__ci_last_regenerate|i:1679709796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42daa6366d566ae49a866bf5217d9cbf70710a71', '31.222.203.2', 1679709796, '__ci_last_regenerate|i:1679709796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8cd9ad5112dfb199e1c0e60fb526922fd6f7e71', '31.222.203.2', 1679709796, '__ci_last_regenerate|i:1679709796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dedccff55c14620a943ca0029ea64afc5f2bb605', '31.222.203.2', 1679709796, '__ci_last_regenerate|i:1679709796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef0dc9f2961a5f1dc69de4206dfbcadbc40275aa', '31.222.203.2', 1679709796, '__ci_last_regenerate|i:1679709796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7dbb3974b3f0877e3404e85e2d60954fe6fd0f78', '205.210.31.162', 1679709879, '__ci_last_regenerate|i:1679709879;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('817d84a1a431a95c89760ae935b17e718c8a4a32', '31.222.203.2', 1679711579, '__ci_last_regenerate|i:1679711579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5918bb9afcea97b4ea96afd2175a59681291bfc1', '31.222.203.2', 1679711579, '__ci_last_regenerate|i:1679711579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c211fddb74155ea2de2be95fa3b07d4551dd5a', '31.222.203.2', 1679711579, '__ci_last_regenerate|i:1679711579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3043504fad7da15e07b4839c5b54748c7b9011aa', '31.222.203.2', 1679711579, '__ci_last_regenerate|i:1679711579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('574eb62b700847c8f93baf6dc6c421bcd1318ad5', '31.222.203.2', 1679711579, '__ci_last_regenerate|i:1679711579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4eb2fc6c90ee90f939dfb51eb05a20ee0301b9', '31.222.203.2', 1679711579, '__ci_last_regenerate|i:1679711579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3166848891c38923d310f65948d47708e1956b', '31.222.203.2', 1679713379, '__ci_last_regenerate|i:1679713378;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5606e099e5510442689f1d2a305fc96dfb8698c9', '31.222.203.2', 1679713379, '__ci_last_regenerate|i:1679713379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45360e1f37d5c398fa423e5be0fff6103307cb6f', '31.222.203.2', 1679713379, '__ci_last_regenerate|i:1679713379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e562b7331ee8e15b8ac695f499d624aaa9678552', '31.222.203.2', 1679713379, '__ci_last_regenerate|i:1679713379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224578097d02b567430cf8d413161d7a7fa4907d', '31.222.203.2', 1679713379, '__ci_last_regenerate|i:1679713379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('563967cd814431f34a6129975ae638ce70a9583b', '31.222.203.2', 1679713379, '__ci_last_regenerate|i:1679713379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f084900190146aa601920dc862fec41a50729333', '31.222.203.2', 1679715187, '__ci_last_regenerate|i:1679715187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fa34bf52cab3df354a97c4f37848befa4a7a358', '31.222.203.2', 1679715187, '__ci_last_regenerate|i:1679715187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91f048b403da51e7c5d89bdc7cc949c7c00688c', '31.222.203.2', 1679715187, '__ci_last_regenerate|i:1679715187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de3b427e9ffab2bb7f400efd46480533efa07e7', '31.222.203.2', 1679715187, '__ci_last_regenerate|i:1679715187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f52d0130fb6c90fbbb4a94deae994691c761b74e', '31.222.203.2', 1679715187, '__ci_last_regenerate|i:1679715187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ddbcb587dae93b841689b7272e002136290c8b98', '31.222.203.2', 1679715187, '__ci_last_regenerate|i:1679715187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f86a1eabbd5b60798f1bbc9799f05cb23a4d58ff', '198.235.24.56', 1679715215, '__ci_last_regenerate|i:1679715215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('659e9bc37b8e2cf98ce3fb7c9344db7d0222b094', '124.70.98.118', 1679716259, '__ci_last_regenerate|i:1679716259;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03858f066d8591f6412c605f8e7f0ca386e29faa', '124.70.98.118', 1679716262, '__ci_last_regenerate|i:1679716262;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3488f64f895dffe308e284cca6ea47312f3e18c6', '124.70.98.118', 1679716264, '__ci_last_regenerate|i:1679716264;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b02aad0a9af977f5cdcb4dafae5fe59bfae52eb', '124.70.98.118', 1679716265, '__ci_last_regenerate|i:1679716265;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9ccebb3c8b429b0d36366254826868ce2191de', '116.204.230.19', 1679716365, '__ci_last_regenerate|i:1679716334;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679666605\";last_ip|s:14:\"37.111.194.239\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679716350;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2a07d40e452cb7095a6d78dd6bf445a7497fa9c', '31.222.203.2', 1679716986, '__ci_last_regenerate|i:1679716986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c8901889d01a57c1956d079c08e92d90e5750d1', '31.222.203.2', 1679716986, '__ci_last_regenerate|i:1679716986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5d289b314f0e955a2edd365c8cd538a0344d50', '31.222.203.2', 1679716986, '__ci_last_regenerate|i:1679716986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fdc2b09b4de28e0f2897aee2bcda7dfaa87d8f7', '31.222.203.2', 1679716988, '__ci_last_regenerate|i:1679716988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8777abdb6d18a514b17058d225065f64d4253d84', '31.222.203.2', 1679716988, '__ci_last_regenerate|i:1679716988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fa0421296113ea719117a0c0fd62d6ec0f3e4d', '31.222.203.2', 1679716988, '__ci_last_regenerate|i:1679716988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ef522b26143b344482b5218b793d9c9ac85f274', '31.222.203.2', 1679718784, '__ci_last_regenerate|i:1679718784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d799a6feaed984e53d777d3e95de002383fe511', '31.222.203.2', 1679718784, '__ci_last_regenerate|i:1679718784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74c982512fe3868fdaf2d702dfd334c2ca987951', '31.222.203.2', 1679718784, '__ci_last_regenerate|i:1679718784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fda5d7328eab2761c26eccb6f7fe8f735f595ef', '31.222.203.2', 1679718786, '__ci_last_regenerate|i:1679718786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ced88f189bab411d6da77a46abd4df1ce7d2d3f', '31.222.203.2', 1679718786, '__ci_last_regenerate|i:1679718786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('baaeff45bb86c640b24c3f14f1cdedd7a5856772', '31.222.203.2', 1679718786, '__ci_last_regenerate|i:1679718786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fad2da5a565f5ebeda65f5b6daaa8f2b64e1be5b', '45.120.39.89', 1679723990, '__ci_last_regenerate|i:1679723990;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679719411;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('386aef0dbeb29054fa8d62c3e6fb1dece83cff24', '134.209.96.22', 1679719837, '__ci_last_regenerate|i:1679719837;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1457d1a292399ba9bd0b3c78c6011f494ea87cef', '134.209.96.22', 1679719838, '__ci_last_regenerate|i:1679719838;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a86e6260670871cda5224df968c63a08fef9d0', '134.209.96.22', 1679719840, '__ci_last_regenerate|i:1679719840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c00163d2139f0dfbd8be8cf767b7c2ed5056c052', '134.209.96.22', 1679719842, '__ci_last_regenerate|i:1679719842;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d71e7a3fb6404ca865f31ecfcc7344fdd275a8a', '31.222.203.2', 1679720596, '__ci_last_regenerate|i:1679720596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a978dfeb2beca1af2fec623cc8c596b192796b6', '31.222.203.2', 1679720596, '__ci_last_regenerate|i:1679720596;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef14932a0f50b63c7e5a9224ed635f724d3c8380', '31.222.203.2', 1679720596, '__ci_last_regenerate|i:1679720596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('953a9246e414a069fb3b20c19e9e6729d94cd653', '31.222.203.2', 1679720596, '__ci_last_regenerate|i:1679720596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11180e6d73cb996e944699c7e9b14f5a17dd83d1', '31.222.203.2', 1679720596, '__ci_last_regenerate|i:1679720596;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3036597bd5e606b9eb4b521b8b6b8263e2e12261', '31.222.203.2', 1679720596, '__ci_last_regenerate|i:1679720596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee97f4bd4d000e20e9d9cd841ec8bcf1b11ac685', '31.222.203.2', 1679722385, '__ci_last_regenerate|i:1679722385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4bf4041bf7d656e3e8df7755bea288f771b97b', '31.222.203.2', 1679722385, '__ci_last_regenerate|i:1679722385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d69676e51cafa31c4298cb12bb3a0d086a48a411', '31.222.203.2', 1679722385, '__ci_last_regenerate|i:1679722385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21864a1dce153808bf97b84762368f1654db5037', '31.222.203.2', 1679722387, '__ci_last_regenerate|i:1679722387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('774ba1fa2c16989d9dcebbddb377263f15c91c17', '31.222.203.2', 1679722387, '__ci_last_regenerate|i:1679722387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88ab5a0042981cdb9e01292e8187ad65d2e92ef8', '31.222.203.2', 1679722387, '__ci_last_regenerate|i:1679722387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99ee1ccd949e8f3429ba5b928867b4d52e9766bf', '37.111.218.178', 1679726187, '__ci_last_regenerate|i:1679726187;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679724015;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3388c15c631dbabfcca54d67d6186965689f7a36', '31.222.203.2', 1679724188, '__ci_last_regenerate|i:1679724188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5776f4faafe1dad98163d6f4a9977c834c62cd', '31.222.203.2', 1679724188, '__ci_last_regenerate|i:1679724188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53046e60a3e795b835903b2c79a62d42932f8d1a', '31.222.203.2', 1679724188, '__ci_last_regenerate|i:1679724188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f545a4ecfc238f5594470ef76b386cb9de09c4', '31.222.203.2', 1679724190, '__ci_last_regenerate|i:1679724190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40307a1d1262ee81cd37972591356ef4ac727a0e', '31.222.203.2', 1679724190, '__ci_last_regenerate|i:1679724190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571c88c493853fa255131213773c2db11d11bfac', '31.222.203.2', 1679724190, '__ci_last_regenerate|i:1679724190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90aeffe5461811dad8a96b15d4bbce81ca4383ab', '31.222.203.2', 1679725993, '__ci_last_regenerate|i:1679725993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91ddb2e00b19ff52cb3dd17313f321b6d869dbb0', '31.222.203.2', 1679725993, '__ci_last_regenerate|i:1679725993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25e7f3a319ca68052f0ede9a56cd256fb45820f3', '31.222.203.2', 1679725993, '__ci_last_regenerate|i:1679725993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d69a956b3bab6b18ca216827ea256c0aa28f37', '31.222.203.2', 1679725993, '__ci_last_regenerate|i:1679725993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79128eb0648c8f6d20d673b0d387e2af15d6652', '31.222.203.2', 1679725993, '__ci_last_regenerate|i:1679725993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f7ed3c9d528be25a2d1d700a31340825f553383', '31.222.203.2', 1679725993, '__ci_last_regenerate|i:1679725993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ef1fc203c91632e0a8d5ccaccfc61b65c973ddf', '37.111.218.178', 1679728786, '__ci_last_regenerate|i:1679728786;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679726187;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6242841e33118eb8dfdf7312a4f21714aa52db35', '180.211.97.53', 1679727637, '__ci_last_regenerate|i:1679727637;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2161c633ba8ad6ef9e39ba5d93d38144756aa12e', '180.211.97.53', 1679727649, '__ci_last_regenerate|i:1679727649;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca898958152f527ff9e7fbe06e48bc2c8e9d4687', '180.211.97.53', 1679727649, '__ci_last_regenerate|i:1679727649;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e32954f611eb1c9d233061c60dfff562926abc47', '180.211.97.53', 1679727650, '__ci_last_regenerate|i:1679727650;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a919d99b9fc0b842f18fa3b404a89804ac6b1dcc', '31.222.203.2', 1679727793, '__ci_last_regenerate|i:1679727793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc417b8eaccae88b9a9c3982ec6f42bfbc9965ff', '31.222.203.2', 1679727794, '__ci_last_regenerate|i:1679727794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab64a6cec8cd711fa799c6090b56eb59b5671899', '31.222.203.2', 1679727794, '__ci_last_regenerate|i:1679727794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e4280ddc39704966e1775ca1f91d4ababec80c6', '31.222.203.2', 1679727794, '__ci_last_regenerate|i:1679727794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f041951e7cd5261959c543e96c71c7e7c2147220', '31.222.203.2', 1679727794, '__ci_last_regenerate|i:1679727794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a7927fb32ac5e227e5c2b00e6285ef4280ee17d', '31.222.203.2', 1679727794, '__ci_last_regenerate|i:1679727794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8137a50a9ac32d0bc8c53ab77ba6a1c3a5b7b6cb', '37.111.218.178', 1679734819, '__ci_last_regenerate|i:1679734819;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679728941;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0abe650a3f523c06a4253bbe5c964b76addf6b2', '31.222.203.2', 1679729597, '__ci_last_regenerate|i:1679729597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70b6fc751cb7a98857dd777a94b904d3bceb863', '31.222.203.2', 1679729598, '__ci_last_regenerate|i:1679729598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('652e06305aa478c0dc997b315ad238def021c1df', '31.222.203.2', 1679729598, '__ci_last_regenerate|i:1679729598;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0ee1c2c6c2eaec4af104820423d099d825c5d5c', '31.222.203.2', 1679729598, '__ci_last_regenerate|i:1679729598;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71b669c2ac839d9ed905e7e39e8e57359629f20d', '31.222.203.2', 1679729598, '__ci_last_regenerate|i:1679729598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf75d8fb0350c42ca142887bcab524fa393f6eb', '31.222.203.2', 1679729598, '__ci_last_regenerate|i:1679729598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a330dbf0ba67eecd2a0703323333166429930946', '31.222.203.2', 1679731387, '__ci_last_regenerate|i:1679731387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8459f28d97ef01179407aff78866c530be52becf', '31.222.203.2', 1679731387, '__ci_last_regenerate|i:1679731387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a53ace8afdba0b2ffdefd90f0a2cbe9fe27b561b', '31.222.203.2', 1679731387, '__ci_last_regenerate|i:1679731387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b18128f5265bd9ca00c615792064df4c8d138b8', '31.222.203.2', 1679731388, '__ci_last_regenerate|i:1679731388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a6281c840ac881a005bf56a7a59020e59b2057e', '31.222.203.2', 1679731388, '__ci_last_regenerate|i:1679731388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c46e9f6709a8b30e0e82cdbe6d2d37af71b0016', '31.222.203.2', 1679731388, '__ci_last_regenerate|i:1679731388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aec636349149eab0067c5e61e8ba25670ccadc2b', '157.230.249.205', 1679733173, '__ci_last_regenerate|i:1679733173;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5d1477aa376a0b5d6ea080d1561796f4c375339', '157.230.249.205', 1679733173, '__ci_last_regenerate|i:1679733173;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48903af3328672b4b9dbde0d1178f651ee87a7ef', '157.230.249.205', 1679733173, '__ci_last_regenerate|i:1679733173;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1cf0fe985fc80fd77fc1605dab07ecab1baa83d', '157.230.249.205', 1679733174, '__ci_last_regenerate|i:1679733174;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9464858fd9d3c9bc8de3d66d838ec0b1d9179b0e', '157.230.249.205', 1679733175, '__ci_last_regenerate|i:1679733175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729888fe5c89bbbed49960747a92112f0edf1511', '157.230.249.205', 1679733175, '__ci_last_regenerate|i:1679733175;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2385065c73c91c86698c8ebbb30b3935240912', '157.230.249.205', 1679733175, '__ci_last_regenerate|i:1679733175;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7843617191d027da4aad5f6440fd77082aad36f', '157.230.249.205', 1679733177, '__ci_last_regenerate|i:1679733177;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('766a44f4187f3b5deed3d7f3f28e9a0d3536f139', '157.230.249.205', 1679733177, '__ci_last_regenerate|i:1679733177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4278fe08f26c6733195e813b62a63c582e7e8997', '157.230.249.205', 1679733177, '__ci_last_regenerate|i:1679733177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6203de341268a6a9a144ccaae11c628d23bad0bb', '157.230.249.205', 1679733177, '__ci_last_regenerate|i:1679733177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99d8500d916cd8b7390f35f672419e80ef7d8571', '31.222.203.2', 1679733191, '__ci_last_regenerate|i:1679733191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edfb8aa2a64c89b499e8a7aec1f0eea3b7a621bd', '31.222.203.2', 1679733191, '__ci_last_regenerate|i:1679733191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('873676eaae756e5e3695eca174596c9730485475', '31.222.203.2', 1679733191, '__ci_last_regenerate|i:1679733191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a685cd4d55e5f8ea22bd3ee4ab127b057a2c6a3', '31.222.203.2', 1679733194, '__ci_last_regenerate|i:1679733194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5b87608e8803094c3aacc3da041e54494847c7e', '31.222.203.2', 1679733194, '__ci_last_regenerate|i:1679733194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96f83f3cf44a037000c88ff0d5de02ca071a68af', '31.222.203.2', 1679733194, '__ci_last_regenerate|i:1679733194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5d00d1e48967df0a2ecb509fa4a67973865e9a', '37.111.218.178', 1679735260, '__ci_last_regenerate|i:1679735260;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679734891;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e262017d8feb43e4f82c561904442f41bacd2936', '31.222.203.2', 1679734989, '__ci_last_regenerate|i:1679734989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7370755014411270c9590b44f750eb9d497a9242', '31.222.203.2', 1679734989, '__ci_last_regenerate|i:1679734989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee6662ca202471f4b3152ffcfaebccfd3c61e745', '31.222.203.2', 1679734989, '__ci_last_regenerate|i:1679734989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33d24695f24d8aaa56098f06676554df52b4c63c', '31.222.203.2', 1679734989, '__ci_last_regenerate|i:1679734989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a57c0532c3b37621dc24b665b71e4b72e5daf165', '31.222.203.2', 1679734989, '__ci_last_regenerate|i:1679734989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d39adf7bb38198b4fd8c68c6a15abdc666f44e66', '31.222.203.2', 1679734989, '__ci_last_regenerate|i:1679734989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d7651816f263e0ee50c170f856ae192567c8759', '37.111.218.178', 1679735642, '__ci_last_regenerate|i:1679735642;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679735260;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4aed8cbb6bb8ccf84adbf8ea58fc141716eccc7a', '37.111.218.178', 1679735974, '__ci_last_regenerate|i:1679735974;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679735905;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3767ec1c226375c2cd38b513327eb1517bca299e', '37.111.218.178', 1679737663, '__ci_last_regenerate|i:1679737663;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679737647;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6c3e157a3825e2000a6cac5d41ba8c6682f504', '31.222.203.2', 1679736800, '__ci_last_regenerate|i:1679736800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb74fbfaef14898f746d58f3930c38f24009aa8e', '31.222.203.2', 1679736800, '__ci_last_regenerate|i:1679736800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0609ef6780781f0a34d98ca6165c19718014ae70', '31.222.203.2', 1679736800, '__ci_last_regenerate|i:1679736800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6997aaeabeaedeb567bbe1fb2bbbb89a82137e17', '31.222.203.2', 1679736802, '__ci_last_regenerate|i:1679736802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79003b7644c208346e8ffbdf6eebd6a9bf956869', '31.222.203.2', 1679736802, '__ci_last_regenerate|i:1679736802;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c24919fde158c59d5644410b5bf6479133872b31', '31.222.203.2', 1679736802, '__ci_last_regenerate|i:1679736802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc7c5b5cf5ebd273aec27c9c83fa3a835d1a9ed7', '37.111.218.178', 1679741621, '__ci_last_regenerate|i:1679741621;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679741615;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e410b0a2d6b757a1578afb44954a1ef1cb18cc9e', '31.222.203.2', 1679738588, '__ci_last_regenerate|i:1679738588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81877e83119bea25e46a7b4597d81d187a33e51c', '31.222.203.2', 1679738588, '__ci_last_regenerate|i:1679738588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb76e2658263cae7d7b47382926c1b51c41a4d45', '31.222.203.2', 1679738588, '__ci_last_regenerate|i:1679738588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce05d9fdf0ec90ea878e90879c263db5e2247eae', '31.222.203.2', 1679738589, '__ci_last_regenerate|i:1679738589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3132d3f904055ed95682e8f0518c8f1314eca181', '31.222.203.2', 1679738589, '__ci_last_regenerate|i:1679738589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10245e2843224a603283a65f3b67473a2cc03b5a', '31.222.203.2', 1679738589, '__ci_last_regenerate|i:1679738589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('069cd6c0ed7509b5e071122205e6533b3d75e973', '31.222.203.2', 1679740391, '__ci_last_regenerate|i:1679740391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c234ed77632a78ce4539c96391fcc5027aa6c39e', '31.222.203.2', 1679740391, '__ci_last_regenerate|i:1679740391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db60006e503a49c80d0db8038ead0e812b7f7430', '31.222.203.2', 1679740391, '__ci_last_regenerate|i:1679740391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffd8de8a13f067cef0b7d794889782998f040489', '31.222.203.2', 1679740392, '__ci_last_regenerate|i:1679740392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('235eb2e43a7bc0dd812d4c72e723866c50ea49f0', '31.222.203.2', 1679740392, '__ci_last_regenerate|i:1679740392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c65f3e6a57e4a0483cba6e990fa77dfd2619cd', '31.222.203.2', 1679740392, '__ci_last_regenerate|i:1679740392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15e1283caacf09b7ac4e57884b14a296f191b6de', '37.111.218.178', 1679743240, '__ci_last_regenerate|i:1679743240;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679741684;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c28a4c41c4e1afdf3d6893efb6983461d657b7', '31.222.203.2', 1679742196, '__ci_last_regenerate|i:1679742196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1250f9f3c4588b06591f212d666d8b1b76e32ee', '31.222.203.2', 1679742196, '__ci_last_regenerate|i:1679742196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6f104dd2fc3a583aeed37b097775610242b2eb6', '31.222.203.2', 1679742196, '__ci_last_regenerate|i:1679742196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e875b6a3924ff69fbd4395f7e6e66021fabe0d0', '31.222.203.2', 1679742196, '__ci_last_regenerate|i:1679742196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60171a9abbb0b89ab917915c59d40dd036f5e561', '31.222.203.2', 1679742196, '__ci_last_regenerate|i:1679742196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29775687964792105be99bdf533302106f1d9cb2', '31.222.203.2', 1679742196, '__ci_last_regenerate|i:1679742196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1131bd3773276ad5cb768b33857906274a59b6', '37.111.218.178', 1679743242, '__ci_last_regenerate|i:1679743240;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679663296\";last_ip|s:13:\"37.111.218.57\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679743240;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d79f530df6c512f3e96a1cd00eb4f3bef23b0562', '116.204.230.19', 1679743995, '__ci_last_regenerate|i:1679743927;requested_page|s:19:\"admin/reports/sales\";__ci_vars|a:2:{s:5:\"error\";s:3:\"old\";s:7:\"message\";s:3:\"old\";}identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679716344\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76c025aeeed3190b446a58f18f2416e57774eea0', '103.15.42.71', 1679743975, '__ci_last_regenerate|i:1679743975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2506fd93936c9b81e900c9157f04a3feb11b1cd3', '31.222.203.2', 1679743993, '__ci_last_regenerate|i:1679743993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb19da8d89a616961dc20212552712bfb00e3af7', '31.222.203.2', 1679743993, '__ci_last_regenerate|i:1679743993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae5fa598831132af6cb470394ca2aa95a4c4b34d', '31.222.203.2', 1679743993, '__ci_last_regenerate|i:1679743993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71309188372c2e2b6894c1a83cc7a51ffbf3e6f', '31.222.203.2', 1679743994, '__ci_last_regenerate|i:1679743994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11af0b119e6d17d3be6c93853f394d9a1bb26eb5', '31.222.203.2', 1679743994, '__ci_last_regenerate|i:1679743994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('623e5586856e2488f0b67773066f87a168846bde', '31.222.203.2', 1679743994, '__ci_last_regenerate|i:1679743994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59ae891e9f9aa12ceba6ffb88d6d620b0d76b219', '31.222.203.2', 1679745796, '__ci_last_regenerate|i:1679745796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9975545dfc639e71f4db1531e5b3873008cc2cc9', '31.222.203.2', 1679745798, '__ci_last_regenerate|i:1679745798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52634feaa4758161dfcafa466f24dde07325b1b0', '31.222.203.2', 1679745798, '__ci_last_regenerate|i:1679745798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea1368bdaa1dc2d40c18078149a9a1dbff8fb8f', '31.222.203.2', 1679745798, '__ci_last_regenerate|i:1679745798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f397e0d7a31c497a2141ff9ec28b97385d9e800', '31.222.203.2', 1679745798, '__ci_last_regenerate|i:1679745798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cad2f87f82c1bbd9ef886ab3404b8ccbb86ea134', '31.222.203.2', 1679745798, '__ci_last_regenerate|i:1679745798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ff79ffb49e0a4d1cd468fac59b5f2141b517c63', '31.222.203.2', 1679747599, '__ci_last_regenerate|i:1679747599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d4475c0fc0cd10c373024ef3c3a7a8b257c84f5', '31.222.203.2', 1679747600, '__ci_last_regenerate|i:1679747600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2168aabc54a59ea9bdddd7c2617baeb086b7f4d4', '31.222.203.2', 1679747600, '__ci_last_regenerate|i:1679747600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e79e7f083498bd71e73219b4acd480e09e63a93', '31.222.203.2', 1679747600, '__ci_last_regenerate|i:1679747600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce582c5e0841656515a153ccd92faa14793ed65b', '31.222.203.2', 1679747600, '__ci_last_regenerate|i:1679747600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d92d343fd2990c8ed9b3c4b26ab01672bbf286a', '31.222.203.2', 1679747600, '__ci_last_regenerate|i:1679747600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0dcbe42c69ad01fda379ca7e3117ce0d5de316e', '31.222.203.2', 1679749389, '__ci_last_regenerate|i:1679749389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ee022cf94b08fa1382d96202b80c77b7d0f681a', '31.222.203.2', 1679749389, '__ci_last_regenerate|i:1679749389;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc5ed2a5b9c00f2bbf22e5b531d4afedb1ae742', '31.222.203.2', 1679749389, '__ci_last_regenerate|i:1679749389;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca88205e2967f5b1872289e9101b5cec5a96635a', '31.222.203.2', 1679749392, '__ci_last_regenerate|i:1679749392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98cc0cb5e99dc0a637ab0f46858dda9f3fcba3be', '31.222.203.2', 1679749392, '__ci_last_regenerate|i:1679749392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bad89b1d091e16d6a9c1a98122ed1c169847dd4a', '31.222.203.2', 1679749392, '__ci_last_regenerate|i:1679749392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed582d534fc5db36603dad663d64b05806e21a86', '31.222.203.2', 1679751183, '__ci_last_regenerate|i:1679751183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec95f47783cdca0c8e187b1d3fec4d78903eec74', '31.222.203.2', 1679751183, '__ci_last_regenerate|i:1679751183;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ac18c46971a4f6cbee34bc8376fdfbdbd615b80', '31.222.203.2', 1679751183, '__ci_last_regenerate|i:1679751183;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68312d27611a5d6710ee52870c2a151bee178512', '31.222.203.2', 1679751185, '__ci_last_regenerate|i:1679751185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ded2acdc57a7cc5d0c0b1f78af595de555563207', '31.222.203.2', 1679751185, '__ci_last_regenerate|i:1679751185;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('145d80cc6e41716c616f50df9e6d857e82cf8613', '31.222.203.2', 1679751185, '__ci_last_regenerate|i:1679751185;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71ee87135fd208a06dca4fcc5d7f1d512b06611c', '37.111.218.178', 1679751794, '__ci_last_regenerate|i:1679751794;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679719314\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679751789;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d89e6d9c8d0b2cd6a3b3d19048c37f4078a402a', '37.111.218.178', 1679756512, '__ci_last_regenerate|i:1679756512;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679719314\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679756508;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dcbd48c1e8826aa4d3df1c9da98fb19c18fa7e4', '31.222.203.2', 1679752985, '__ci_last_regenerate|i:1679752985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc206bd5854567cb0ff23ee85a7142eb02b8a03d', '31.222.203.2', 1679752985, '__ci_last_regenerate|i:1679752985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73e977ef7ff6a466de8ff13e732739008a47c3e7', '31.222.203.2', 1679752985, '__ci_last_regenerate|i:1679752985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a4c48de185dcc12bd2ae590749955ff3372cd5', '31.222.203.2', 1679752987, '__ci_last_regenerate|i:1679752987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da58c3753fdccfbfe82d572499a214dc8a5b27a0', '31.222.203.2', 1679752987, '__ci_last_regenerate|i:1679752987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec357b3323e3924b09ce816371f065bc5776aab', '31.222.203.2', 1679752987, '__ci_last_regenerate|i:1679752987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f850cc89824cb4a5a0132cde85c9049626e46000', '31.222.203.2', 1679754790, '__ci_last_regenerate|i:1679754790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bfcd1f5aa7a10863da53416540b36871acf2378', '31.222.203.2', 1679754790, '__ci_last_regenerate|i:1679754790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a0243e1317905162df724f65301e28fe0550a46', '31.222.203.2', 1679754790, '__ci_last_regenerate|i:1679754790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2374e686be7361b953e4f37fd21600c1bb60df', '31.222.203.2', 1679754792, '__ci_last_regenerate|i:1679754792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f95037ce71343614f8b8b68406791d37f9f64280', '31.222.203.2', 1679754792, '__ci_last_regenerate|i:1679754792;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afd19bd143ebfc296baf4ecaa46a3d2c66fda7b2', '31.222.203.2', 1679754792, '__ci_last_regenerate|i:1679754792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba41df6a223c1acbf181aa0c66963e8befdbbcd2', '205.210.31.22', 1679755254, '__ci_last_regenerate|i:1679755254;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d467b643bfbc0683e7a176042afba504f0af4ab', '205.210.31.22', 1679755255, '__ci_last_regenerate|i:1679755255;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('876666e2198920c858697c9768fd35dce763ffa6', '205.210.31.22', 1679755255, '__ci_last_regenerate|i:1679755255;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be26c00fab4977cff546ae101af0366e2e5f7dd', '37.111.218.178', 1679758004, '__ci_last_regenerate|i:1679758004;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679719314\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679756546;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4d41b797100097a95cae04527dfbc98c26171dd', '31.222.203.2', 1679756585, '__ci_last_regenerate|i:1679756585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52a06a1493d3e32bf4e5138392eb48842c4649d4', '31.222.203.2', 1679756585, '__ci_last_regenerate|i:1679756585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('458ef2045888b1aa25f7c6545a5d5d79b3558270', '31.222.203.2', 1679756585, '__ci_last_regenerate|i:1679756585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b492081b4e82909ddf886a96cceb9b82f8c62c24', '31.222.203.2', 1679756587, '__ci_last_regenerate|i:1679756587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9852a05791a40be289a896495913fb78446f4f1e', '31.222.203.2', 1679756587, '__ci_last_regenerate|i:1679756587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b653f9e4eeee61e285d36e79204d4c3e96845403', '31.222.203.2', 1679756587, '__ci_last_regenerate|i:1679756587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c418d7abefd99d147b69fb05bdafdea50f93d60', '116.204.230.19', 1679757891, '__ci_last_regenerate|i:1679757871;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679743985\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87223d00802f1e6933a482cecd3eaa77c3fc7e9e', '37.111.218.178', 1679759114, '__ci_last_regenerate|i:1679759114;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679719314\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679758028;register_id|s:3:\"380\";cash_in_hand|s:9:\"2660.0000\";register_open_time|s:19:\"2023-03-25 10:43:24\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7df46bdb7322e52603ba6a5c73c102e351a70f2d', '31.222.203.2', 1679758388, '__ci_last_regenerate|i:1679758388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e85d5fdc0dfbfcd975d17ba83278d869322ea648', '31.222.203.2', 1679758388, '__ci_last_regenerate|i:1679758388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bfbf6a4a95f3de8e0ed8657256e89747949d1ab', '31.222.203.2', 1679758388, '__ci_last_regenerate|i:1679758388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0be3cc2bae5088a4949fbe598f69ec2c52e279d', '31.222.203.2', 1679758390, '__ci_last_regenerate|i:1679758390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('037b685688797f803be2250e538272c4e9328a6a', '31.222.203.2', 1679758390, '__ci_last_regenerate|i:1679758390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92ef2a5a63f73032383eb5f381bb68adfb4d4f89', '31.222.203.2', 1679758390, '__ci_last_regenerate|i:1679758390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b66a6813818193d741ee358811949266e4a956', '37.111.218.178', 1679759176, '__ci_last_regenerate|i:1679759114;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679719314\";last_ip|s:12:\"45.120.39.89\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679759176;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a394390d93bbc65e3e13a845283e128d95de4068', '31.222.203.2', 1679760203, '__ci_last_regenerate|i:1679760203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9ebb0de0a4f48d7e30d4846219168a6f9eff51d', '31.222.203.2', 1679760203, '__ci_last_regenerate|i:1679760203;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44c38b7755555d4e8e5781fc80f43f266aec8c86', '31.222.203.2', 1679760203, '__ci_last_regenerate|i:1679760203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65e5de7da2c67dabc1f326d73f585d6d612befbe', '31.222.203.2', 1679760205, '__ci_last_regenerate|i:1679760205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcdf8a8054d85c170a67d23d3fc62b16531f2f97', '31.222.203.2', 1679760205, '__ci_last_regenerate|i:1679760205;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('484e60b785c3d35b64361a26660f833533cf20df', '31.222.203.2', 1679760206, '__ci_last_regenerate|i:1679760206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e33c840d9d42b30ac9d9cc1bf4f8e4719ee9a66', '31.222.203.2', 1679762010, '__ci_last_regenerate|i:1679762010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10eaabf21745c1d234442d5db3b95fa77be8c353', '31.222.203.2', 1679762010, '__ci_last_regenerate|i:1679762010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f92a8f4ddf0cb33c8b7ad1a0092366bb57e1c2', '31.222.203.2', 1679762010, '__ci_last_regenerate|i:1679762010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589dc0abfd9565f8af60d4308ee132349daf6f68', '31.222.203.2', 1679762010, '__ci_last_regenerate|i:1679762010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af0ad7b8da53052cf7b24fcfb891f5fc1e83976', '31.222.203.2', 1679762010, '__ci_last_regenerate|i:1679762010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709d13297dff72e332873a39f71be4b350727b48', '31.222.203.2', 1679762010, '__ci_last_regenerate|i:1679762010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ee6adb056caa9cb1738b21729cf3e1992aff9d2', '31.222.203.2', 1679763795, '__ci_last_regenerate|i:1679763795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f059576dd75cf7701b4f245b5c6549feabf6ae0d', '31.222.203.2', 1679763795, '__ci_last_regenerate|i:1679763795;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b98daed2227ff289244e7128f2b0ae38591ff1d4', '31.222.203.2', 1679763795, '__ci_last_regenerate|i:1679763795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29935448be761b43bcf72acc419fbc5b9132c947', '31.222.203.2', 1679763797, '__ci_last_regenerate|i:1679763797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d90fa0bf531729df859e4248e99e35504517d12d', '31.222.203.2', 1679763797, '__ci_last_regenerate|i:1679763797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3dbfa80367644b8450e93873328af3095c64f31', '31.222.203.2', 1679763797, '__ci_last_regenerate|i:1679763797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5fe1211d04ea80de8823c0d7e45af7d3ce130de', '31.222.203.2', 1679765602, '__ci_last_regenerate|i:1679765602;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8d750262fc755b47e8606818046d6d083ea8c8', '31.222.203.2', 1679765602, '__ci_last_regenerate|i:1679765602;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b9720eef1db65d136c30202b5427fb9882c4c2e', '31.222.203.2', 1679765602, '__ci_last_regenerate|i:1679765602;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5b788ec3d1108fc3546f4ab62c4000c1235bf1d', '31.222.203.2', 1679765605, '__ci_last_regenerate|i:1679765605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05dc8aafc8038529f518950e16db1a0f0f858b75', '31.222.203.2', 1679765605, '__ci_last_regenerate|i:1679765605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb28e9edd6d546c0de64b1b1ab916c0dfbac5e7b', '31.222.203.2', 1679765605, '__ci_last_regenerate|i:1679765605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3003f3c51976ce96c9724a5baebe941e6be6e7b0', '31.222.203.2', 1679767396, '__ci_last_regenerate|i:1679767396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1a8384252d07e6fc6d2fcac7205003a110d79ed', '31.222.203.2', 1679767396, '__ci_last_regenerate|i:1679767396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfeb6a445c3678bc889c2d3d303ede5b7524967d', '31.222.203.2', 1679767396, '__ci_last_regenerate|i:1679767396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('418a8c49553289ba60daf13e172f4dab096c138d', '31.222.203.2', 1679767396, '__ci_last_regenerate|i:1679767396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa7a53221a0616c4c7d0b08f96d65e1131057312', '31.222.203.2', 1679767396, '__ci_last_regenerate|i:1679767396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7e0ebb2a922dedd730f0048a90703a5979dc3b5', '31.222.203.2', 1679767396, '__ci_last_regenerate|i:1679767396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c84e3809c3015627f39d1ddb6e7b9ac13529b7', '31.222.203.2', 1679769177, '__ci_last_regenerate|i:1679769177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e64be3f2dd9f7d642430afa0a8ebd9eb8cd8005', '31.222.203.2', 1679769177, '__ci_last_regenerate|i:1679769177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e49d67b2f9e6c998afe41cce92e420aa22069ac', '31.222.203.2', 1679769177, '__ci_last_regenerate|i:1679769177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('537f3a2bad5549addb28c8f43810c9d6d18112ac', '31.222.203.2', 1679769179, '__ci_last_regenerate|i:1679769179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('159f87fb18b9ea84f22b1c9f98c9f74fe0c65d4b', '31.222.203.2', 1679769179, '__ci_last_regenerate|i:1679769179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('709957fa5da4bc2e9e76cd7927bbb32b22734245', '31.222.203.2', 1679769179, '__ci_last_regenerate|i:1679769179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('224125d8994a4ff392bcd9879d2b1deb0c7f30f8', '31.222.203.2', 1679770992, '__ci_last_regenerate|i:1679770992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('209ab7e39007a3e1d4b9ebacb4714b076769e171', '31.222.203.2', 1679770992, '__ci_last_regenerate|i:1679770992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c52547bf67d137892fd49edca2ca5a57cf751c42', '31.222.203.2', 1679770992, '__ci_last_regenerate|i:1679770992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eba6f107e96ed346334bf612d695a760c22f32d', '31.222.203.2', 1679770993, '__ci_last_regenerate|i:1679770993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aec150128c1bae1700355a14a073f24eb0b12f3', '31.222.203.2', 1679770993, '__ci_last_regenerate|i:1679770993;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7fb701048b24a74477461b0e0c55fd6bb0806a', '31.222.203.2', 1679770993, '__ci_last_regenerate|i:1679770993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b061a4f1d6d37774b6ed348a4e0ea0ebaca33b16', '31.222.203.2', 1679772777, '__ci_last_regenerate|i:1679772777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7de2af20258ec5ed81bd05af6cc0ee262f02ec19', '31.222.203.2', 1679772777, '__ci_last_regenerate|i:1679772777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79d9ecdc3ee0bf14f99523bffa4d1234eb4cbc34', '31.222.203.2', 1679772777, '__ci_last_regenerate|i:1679772777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0a509a4d503648aefb8db1682546762f2b1d7c5', '31.222.203.2', 1679772777, '__ci_last_regenerate|i:1679772777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e15748d9e40809e62a45326e070693d3ea3dbe25', '31.222.203.2', 1679772777, '__ci_last_regenerate|i:1679772777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83456e32af3e89a68492b9bb0456bf8e84c9ea9d', '31.222.203.2', 1679772777, '__ci_last_regenerate|i:1679772777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad5cd95300e5939d0a76a2f2dcd034c8d1ffbea8', '31.222.203.2', 1679774581, '__ci_last_regenerate|i:1679774581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e03b1458cdf1be8266b4f005a43423d3656f5fb9', '31.222.203.2', 1679774581, '__ci_last_regenerate|i:1679774581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c38248ef0a057d95cbae985611b50c7e4474d5f6', '31.222.203.2', 1679774581, '__ci_last_regenerate|i:1679774581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2acb5cef3a8eb51d0387c5c50b30e94d34717297', '31.222.203.2', 1679774582, '__ci_last_regenerate|i:1679774582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6670c27fc8600220f42292a5fd3edee31c07ecf', '31.222.203.2', 1679774582, '__ci_last_regenerate|i:1679774582;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3d58cdfac8e2d705fccf9f7326363ad8153f877', '31.222.203.2', 1679774582, '__ci_last_regenerate|i:1679774582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e64b699e41c03b89e713bf4641b39d34e8e7a117', '31.222.203.2', 1679776365, '__ci_last_regenerate|i:1679776365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bba78fe337eea5f063dc01c6b32ca76afe975884', '31.222.203.2', 1679776365, '__ci_last_regenerate|i:1679776365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb7d2b1c6e3e394f5e7a9e85f7c96443747fa0ad', '31.222.203.2', 1679776365, '__ci_last_regenerate|i:1679776365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('435857ec4f223391fe45ddff71d74fbda46438f3', '31.222.203.2', 1679776365, '__ci_last_regenerate|i:1679776365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7189a99e3c5fc82fdc3c70a1fff4430a554c722f', '31.222.203.2', 1679776365, '__ci_last_regenerate|i:1679776365;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('321070b5e3d47a8211f0530c2f6e3e11abc8eee6', '31.222.203.2', 1679776365, '__ci_last_regenerate|i:1679776365;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b527b73da51595cb6d88375a00d1953482028500', '31.222.203.2', 1679778181, '__ci_last_regenerate|i:1679778181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77a45a752bad9061935a32a36b4e5fcf26f4b02d', '31.222.203.2', 1679778181, '__ci_last_regenerate|i:1679778181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a6f5f102f073f5d199f4fc699cc05dd64bb8cb', '31.222.203.2', 1679778181, '__ci_last_regenerate|i:1679778181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3cab812c4cc3187ea10425177b12a9c762a121d', '31.222.203.2', 1679778182, '__ci_last_regenerate|i:1679778182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('425ccff098ef3346bfd1889755d1c5fec291ea63', '31.222.203.2', 1679778182, '__ci_last_regenerate|i:1679778182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ad5c3ee0af10611a9d4546d985370b14d266fc8', '31.222.203.2', 1679778182, '__ci_last_regenerate|i:1679778182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0541c91e5825d1a10ed74cecfe2751602a70a81e', '31.222.203.2', 1679779986, '__ci_last_regenerate|i:1679779986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6002d8c6f5fe582273c303f23b5a2e2a70fda6d7', '31.222.203.2', 1679779986, '__ci_last_regenerate|i:1679779986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('717c86ab97d648e070331cf45f1a00ca35a644ea', '31.222.203.2', 1679779986, '__ci_last_regenerate|i:1679779986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('261fc36ec889abf7852a98afae53d6c7eea5e6fd', '31.222.203.2', 1679779986, '__ci_last_regenerate|i:1679779986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('729054b5a088b0ebfa0f6452600113d2039b876f', '31.222.203.2', 1679779986, '__ci_last_regenerate|i:1679779986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ceabdb48b8b66d32233289d1fcdb5bf4849bfac6', '31.222.203.2', 1679779986, '__ci_last_regenerate|i:1679779986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d6b800616a3b7fd38d606c461ac80144a4fa189', '31.222.203.2', 1679781787, '__ci_last_regenerate|i:1679781787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('427990f6cb0d57333891a6ad9a81063406e88953', '31.222.203.2', 1679781787, '__ci_last_regenerate|i:1679781787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7f931af05145a24a38482fbe90333d1190edeb3', '31.222.203.2', 1679781787, '__ci_last_regenerate|i:1679781787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3fb0ca094d91a32d1519b25175bc5b42f9c2c9', '31.222.203.2', 1679781790, '__ci_last_regenerate|i:1679781790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6943c413a64c56c9f81ecd5235295638472a7a60', '31.222.203.2', 1679781790, '__ci_last_regenerate|i:1679781790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5e735604c02bf0e1e08c22816784505a9502897', '31.222.203.2', 1679781790, '__ci_last_regenerate|i:1679781790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd049855daa167390a8106e92b79975481635ae2', '31.222.203.2', 1679783578, '__ci_last_regenerate|i:1679783578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfa25fbaf1bd435be9836e20c70bf4d10e10b311', '31.222.203.2', 1679783578, '__ci_last_regenerate|i:1679783578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466a8ad00f0524bb6fcc39e3a3d1ce47e0739f95', '31.222.203.2', 1679783578, '__ci_last_regenerate|i:1679783578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32b80d0595b17e7741dc86fe9b649a381860f3f8', '31.222.203.2', 1679783579, '__ci_last_regenerate|i:1679783579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8d3c854878433a2cd1976b2224fbe3c3e697c1', '31.222.203.2', 1679783579, '__ci_last_regenerate|i:1679783579;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27a893adc622c3b76b7d0bfa486a6d8d15a4ab6b', '31.222.203.2', 1679783579, '__ci_last_regenerate|i:1679783579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b38fdd5067a58f097ab006796a77378631b4fb25', '31.222.203.2', 1679785385, '__ci_last_regenerate|i:1679785385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6448ef04183449691c23cf76214e9f2356254e9', '31.222.203.2', 1679785386, '__ci_last_regenerate|i:1679785386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24fd11ef91161d167823592b626e3f3082bc9851', '31.222.203.2', 1679785386, '__ci_last_regenerate|i:1679785386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b80677f72649b0ff6198af5670e3ad0af75e4d', '31.222.203.2', 1679785386, '__ci_last_regenerate|i:1679785386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('922f6ff1d3df5ae7fe9736f6f96168b2c8010609', '31.222.203.2', 1679785386, '__ci_last_regenerate|i:1679785386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292a603488b9efa0b14ea58aee5565451548e7be', '31.222.203.2', 1679785386, '__ci_last_regenerate|i:1679785386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36113141015227fd83fec917454fb5b767fac183', '31.222.203.2', 1679787181, '__ci_last_regenerate|i:1679787181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c801a2ea54fb56c2c8c9b7194635a44fe039841c', '31.222.203.2', 1679787181, '__ci_last_regenerate|i:1679787181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f865052d7b3ee4bbe501ec6a489b8bbffcaa8054', '31.222.203.2', 1679787181, '__ci_last_regenerate|i:1679787181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ea342e5537fa97970bf847c005c6f61043b844', '31.222.203.2', 1679787181, '__ci_last_regenerate|i:1679787181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f79d59817df4d362be6cad5cf38e2928a87929f1', '31.222.203.2', 1679787181, '__ci_last_regenerate|i:1679787181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce9c228f1053c078622e111203264ff0796d98ee', '31.222.203.2', 1679787181, '__ci_last_regenerate|i:1679787181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9121074fd2403a389b62037f95fcba9c51dbdee', '31.222.203.2', 1679788988, '__ci_last_regenerate|i:1679788988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3313fcb69e660c666e620af045ea61a82e60891', '31.222.203.2', 1679788988, '__ci_last_regenerate|i:1679788988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('394b9f8ce085b1bd70e3b5469ea3698b0651871b', '31.222.203.2', 1679788988, '__ci_last_regenerate|i:1679788988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed1c862088da8e3848cda28cc94ab012c4d28f8e', '31.222.203.2', 1679788990, '__ci_last_regenerate|i:1679788990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86f550c74936136c29ad49636added1d6e6a89c2', '31.222.203.2', 1679788990, '__ci_last_regenerate|i:1679788990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ac7d7b14646329773d4549961afd7a052a039f', '31.222.203.2', 1679788990, '__ci_last_regenerate|i:1679788990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09bd85ba7006ef622b3d826cd2a8696ec44a6927', '31.222.203.2', 1679790780, '__ci_last_regenerate|i:1679790780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a79d84f2e4f9652a40833187bf5433840580a5', '31.222.203.2', 1679790780, '__ci_last_regenerate|i:1679790780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ca15fc0d696d3e42bd82bcb3ce652535d498050', '31.222.203.2', 1679790780, '__ci_last_regenerate|i:1679790780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75ac5a2f1ddd1ccff326af21d979408d5ce81a64', '31.222.203.2', 1679790780, '__ci_last_regenerate|i:1679790780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaf06d43a687598bac96295cada01e514eec3706', '31.222.203.2', 1679790780, '__ci_last_regenerate|i:1679790780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c4975e2d0210cee6fbbabab5fbce2321ce602ff', '31.222.203.2', 1679790780, '__ci_last_regenerate|i:1679790780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238a38eab1b9663ab292389e9880db4a1a955fdd', '31.222.203.2', 1679792587, '__ci_last_regenerate|i:1679792587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47babdb12a7d629c2dd8e23d3de6a7c3500d55a7', '31.222.203.2', 1679792587, '__ci_last_regenerate|i:1679792587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dcd5451690f17c649ced4f4d5712e4b21aec546', '31.222.203.2', 1679792587, '__ci_last_regenerate|i:1679792587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6736a503e3c592d5704a16ea21f412ea7421c775', '31.222.203.2', 1679792590, '__ci_last_regenerate|i:1679792590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b5c597da7d039f2761d324ca7207c8778a85bef', '31.222.203.2', 1679792590, '__ci_last_regenerate|i:1679792590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2cd446867844ddcd09ca2e0772ceb17400923880', '31.222.203.2', 1679792590, '__ci_last_regenerate|i:1679792590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8a4a4501babc1f2dedfd40c0759053b7bcc47b8', '31.222.203.2', 1679794390, '__ci_last_regenerate|i:1679794390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48019fabf8759f85d0558e2828d40060aa7c8339', '31.222.203.2', 1679794390, '__ci_last_regenerate|i:1679794390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb4f8191bb191d17e67e7351be53d90a7de14db', '31.222.203.2', 1679794390, '__ci_last_regenerate|i:1679794390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57dee15b46ad7915d67f03b6393a22f8add3a0e9', '31.222.203.2', 1679794391, '__ci_last_regenerate|i:1679794391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d687b7776e1189a94c24c9fb61a521240cc52485', '31.222.203.2', 1679794391, '__ci_last_regenerate|i:1679794391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('749cbcb8159cff9a2442e21b7f256657350cea5c', '31.222.203.2', 1679794391, '__ci_last_regenerate|i:1679794391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d29b122374284eed5395c4fe9cf5ed1b934d6483', '31.222.203.2', 1679796192, '__ci_last_regenerate|i:1679796192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8823aeb22cd43017be3a8b31285aee45641584c9', '31.222.203.2', 1679796192, '__ci_last_regenerate|i:1679796192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca8ed2910f4acf7d4de1a91225d6132c5f45a9e', '31.222.203.2', 1679796192, '__ci_last_regenerate|i:1679796192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23ddd6091dc13bfacb20e2f62c3e97d2e9dd2944', '31.222.203.2', 1679796194, '__ci_last_regenerate|i:1679796194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89461488d2501efd20046c60ce75e997f3392c49', '31.222.203.2', 1679796194, '__ci_last_regenerate|i:1679796194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b9c17907905f313f8da0038cbe99d3e60bb972', '31.222.203.2', 1679796194, '__ci_last_regenerate|i:1679796194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b19bd08e19cb391ec319b5a9fba9b575b2f33d1f', '31.222.203.2', 1679797979, '__ci_last_regenerate|i:1679797979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37faa75cacdef68ca4444ef1e256072962da2479', '31.222.203.2', 1679797979, '__ci_last_regenerate|i:1679797979;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ec4a1d40b53e0ec44ee358310f2f07c45330787', '31.222.203.2', 1679797979, '__ci_last_regenerate|i:1679797979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56f2272329301c1fc0f61dbe4f1d20017784c253', '31.222.203.2', 1679797980, '__ci_last_regenerate|i:1679797980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e8b44c2e18e1bd01c3b843119cdc9bf2d709e2e', '31.222.203.2', 1679797980, '__ci_last_regenerate|i:1679797980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ca8e6127cb6313c6e7d49f39f533a26be707331', '31.222.203.2', 1679797980, '__ci_last_regenerate|i:1679797980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62da5b54bc2f67264f189f70aed15b9cc50b20f5', '116.204.230.19', 1679798469, '__ci_last_regenerate|i:1679798469;requested_page|s:19:\"admin/reports/sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('590ed45953c094e8ca1e74fd9b20e123d6f1aa2e', '31.222.203.2', 1679799790, '__ci_last_regenerate|i:1679799790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54d2bba6d750e17a6a3ab6a8925cbe16e6c8ff3d', '31.222.203.2', 1679799790, '__ci_last_regenerate|i:1679799790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c21acb216dcdde90c411df1ad075b86a87ba4cdc', '31.222.203.2', 1679799790, '__ci_last_regenerate|i:1679799790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2abea4aa82480f3936093188754e69c88105f636', '31.222.203.2', 1679799793, '__ci_last_regenerate|i:1679799793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e306606b3ee943b2b3bbbfb1e3cabb967d3d5b', '31.222.203.2', 1679799793, '__ci_last_regenerate|i:1679799793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('790ec38ca5931bfd42fb1ccd62793365872271a1', '31.222.203.2', 1679799793, '__ci_last_regenerate|i:1679799793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64edbd8a48e805067ca6c60a5d1316ba1144b2a3', '198.235.24.178', 1679800033, '__ci_last_regenerate|i:1679800033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4f4b45cd930ff1f85e7f85f6d8ad2df3e04f27', '198.235.24.178', 1679800034, '__ci_last_regenerate|i:1679800034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bdaaf924c48f2112b587e4958756ef80f60b153', '198.235.24.178', 1679800035, '__ci_last_regenerate|i:1679800035;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9934839edcd7189e968747097fcb35e461d1c4c', '31.222.203.2', 1679801592, '__ci_last_regenerate|i:1679801592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c67d3eaffa46f26c86b08cdb913984634df553fd', '31.222.203.2', 1679801592, '__ci_last_regenerate|i:1679801592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82f75ea8d5c57fd7acd78b092d7e6f2cbcaf1eaa', '31.222.203.2', 1679801592, '__ci_last_regenerate|i:1679801592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d50292a54d957e379aded6de6287b9ab806c15', '31.222.203.2', 1679801594, '__ci_last_regenerate|i:1679801594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acb62528352d807f7c49d969db6cf1d45acf1ccb', '31.222.203.2', 1679801594, '__ci_last_regenerate|i:1679801594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8fbbac10de3a6d179b298fc8e23a0e99dbe8149', '31.222.203.2', 1679801594, '__ci_last_regenerate|i:1679801594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21bb46931483356db5b22e077c2f23a3a044a0cf', '31.222.203.2', 1679803380, '__ci_last_regenerate|i:1679803380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4296784451a9c19db1ea753363900fd8cf9e98a8', '31.222.203.2', 1679803380, '__ci_last_regenerate|i:1679803380;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47da895816bcf9ff2fbc247b57f11b5a1f4c23bb', '31.222.203.2', 1679803380, '__ci_last_regenerate|i:1679803380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad90c8f412b939de786596775ed40bb27ac66a3', '31.222.203.2', 1679803383, '__ci_last_regenerate|i:1679803383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ebfb4f08b1379fc498c2ad49dc13c6128828d71', '31.222.203.2', 1679803383, '__ci_last_regenerate|i:1679803383;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c493150d498ac4d627976ae6e4ae2fd759a17695', '31.222.203.2', 1679803383, '__ci_last_regenerate|i:1679803383;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1d9fed3d373480ce04ed1d1c7675d4c129de975', '31.222.203.2', 1679805189, '__ci_last_regenerate|i:1679805189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b10a7e442c5e2c52e7f1c3e13a7f3a840f9c51e', '31.222.203.2', 1679805189, '__ci_last_regenerate|i:1679805189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a85f8bdcf3a279673469dadbb19933bb92714f60', '31.222.203.2', 1679805189, '__ci_last_regenerate|i:1679805189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27969dd91c369a4945a56baffaa0adb245b327a7', '31.222.203.2', 1679805189, '__ci_last_regenerate|i:1679805189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc733ab9e5ccb0eda794c7dfd94609680e7dde80', '31.222.203.2', 1679805189, '__ci_last_regenerate|i:1679805189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4ba298a8f1a66d119ac7bf168dd1dee3a0efe35', '31.222.203.2', 1679805189, '__ci_last_regenerate|i:1679805189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ababae3b1b0ce3912bcff512993f6f773c7898', '31.222.203.2', 1679806989, '__ci_last_regenerate|i:1679806989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cd561eada8a41b06f919dfb0cc891d02c59639a', '31.222.203.2', 1679806989, '__ci_last_regenerate|i:1679806989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fe540c23e75394935dd78a6cfd93e43de32a1a7', '31.222.203.2', 1679806989, '__ci_last_regenerate|i:1679806989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60bc71ff3e958940480876e77b87dbb7d768d99', '31.222.203.2', 1679806992, '__ci_last_regenerate|i:1679806992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26107f01be349ff838d440e3ce85e461d3fc1f8c', '31.222.203.2', 1679806992, '__ci_last_regenerate|i:1679806992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af1d302dd288867fdcd70d0e0e1d0bddf0c5d5b7', '31.222.203.2', 1679806992, '__ci_last_regenerate|i:1679806992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb300fa71de1bc333aab1b8aae6c52388802b167', '31.222.203.2', 1679808783, '__ci_last_regenerate|i:1679808783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a7319e754ae2a3bfcc54715b33e2822032afd8', '31.222.203.2', 1679808783, '__ci_last_regenerate|i:1679808783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('82b142e8160b88cf46d60f452afe76351d1a7f63', '31.222.203.2', 1679808783, '__ci_last_regenerate|i:1679808783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ddde36c94cc7cd833c6b1dba3b8e62f837f2489', '31.222.203.2', 1679808783, '__ci_last_regenerate|i:1679808783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8045cacead1eccac9bab19963774e6065388256', '31.222.203.2', 1679808783, '__ci_last_regenerate|i:1679808783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6969d4d79a471017a0347a83dcf4e4f53554bdb', '31.222.203.2', 1679808783, '__ci_last_regenerate|i:1679808783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e827794c343a2b7e80fa1b748ce5bc5edb1a5135', '37.111.219.28', 1679810529, '__ci_last_regenerate|i:1679810529;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679809006;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54bdae725f6682c5fe00a114c8fd9ddc3cc58b2b', '37.111.219.28', 1679815334, '__ci_last_regenerate|i:1679815334;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679815254;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb3686a62ef989dbed9d0b550adb971c717eda9', '31.222.203.2', 1679810591, '__ci_last_regenerate|i:1679810591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b64995f4d7acd9f388138d0a741bce566e95f16a', '31.222.203.2', 1679810591, '__ci_last_regenerate|i:1679810591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0062a86a376ef867cc75f0a3d97a9bd7aae0ea2', '31.222.203.2', 1679810591, '__ci_last_regenerate|i:1679810591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11143af8e28a5ce731fbdad0ebb1e92863588840', '31.222.203.2', 1679810593, '__ci_last_regenerate|i:1679810593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19ee1c866190598cc626469dca0e2365f9d7b508', '31.222.203.2', 1679810593, '__ci_last_regenerate|i:1679810593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ae5752cbbbffe9ba5242d4b036567ba65ae716e', '31.222.203.2', 1679810593, '__ci_last_regenerate|i:1679810593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('829d44aa54b9dc54b90f310dec1459a5fd4ceb45', '116.204.230.28', 1679811071, '__ci_last_regenerate|i:1679811051;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679663952\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b807e509cfdcaacfa41c3f63708bcbf8017af8b8', '31.222.203.2', 1679812393, '__ci_last_regenerate|i:1679812393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3475413a673faf665cdb8e94c81f732e298ea101', '31.222.203.2', 1679812393, '__ci_last_regenerate|i:1679812393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fa27e868cfe35a2ad1f0b9dffe5374482ea7e3a', '31.222.203.2', 1679812393, '__ci_last_regenerate|i:1679812393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d3c018f75f1aeba6b7ca88afc8361f804685860', '31.222.203.2', 1679812397, '__ci_last_regenerate|i:1679812397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b4235836639b15d6938377ea7b03a48011cedd', '31.222.203.2', 1679812397, '__ci_last_regenerate|i:1679812397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24ecc7bcc571fd20999d8beb1065ae5d30c6c37', '31.222.203.2', 1679812397, '__ci_last_regenerate|i:1679812397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25ee1b9d158435cd425a3f52ff15660d04b891fb', '31.222.203.2', 1679814197, '__ci_last_regenerate|i:1679814197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c898a81a04997020e33bdf4135e3b4edcb08e0ab', '31.222.203.2', 1679814197, '__ci_last_regenerate|i:1679814197;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6629e87e0ea5eaa7e1a19cf051f865e290821e39', '31.222.203.2', 1679814197, '__ci_last_regenerate|i:1679814197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f13fe34e5a6a8ff45aaaa22350c30df9e32b73c', '31.222.203.2', 1679814199, '__ci_last_regenerate|i:1679814199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db48d9105ac994b6f7c565cc5f2219576ad9b382', '31.222.203.2', 1679814199, '__ci_last_regenerate|i:1679814199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f34bc9be8e7617dd0ef86d940e2e384a41f044', '31.222.203.2', 1679814199, '__ci_last_regenerate|i:1679814199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6be81c8c5666574be6f311bb64612b08d3db430', '37.111.219.28', 1679816549, '__ci_last_regenerate|i:1679816549;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679816545;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd752d28f7c50c018f052a96d3fe3dc762d0222', '31.222.203.2', 1679815994, '__ci_last_regenerate|i:1679815994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973a6216c48b7f96af46ffa7f52a66c5b1b967b0', '31.222.203.2', 1679815994, '__ci_last_regenerate|i:1679815994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e18f465b3d4df7a7d1583181c653766836719f37', '31.222.203.2', 1679815994, '__ci_last_regenerate|i:1679815994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d404aad090719d3b25f716972503d4ed95332939', '31.222.203.2', 1679815995, '__ci_last_regenerate|i:1679815995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('125923098fab4ee66c44c2153e035ed364040c5d', '31.222.203.2', 1679815995, '__ci_last_regenerate|i:1679815995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03c235069846b64159091e6d7cf4cf2be68915fa', '31.222.203.2', 1679815995, '__ci_last_regenerate|i:1679815995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81c16c9981d9fc7ce6697180e1985b516e219d3f', '37.111.219.28', 1679819867, '__ci_last_regenerate|i:1679819867;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679816690;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bf5486268b5788a1e42ca1ae9421c26d043f78b', '31.222.203.2', 1679817805, '__ci_last_regenerate|i:1679817805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ba1d21279e899d2e91af69aa6c8f441e4de50c7', '31.222.203.2', 1679817805, '__ci_last_regenerate|i:1679817805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dec342254cc265e336c25b63755c32118a0524cd', '31.222.203.2', 1679817805, '__ci_last_regenerate|i:1679817805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4111e7711e1fdcd7543e3433e1e2e073c1a61e42', '31.222.203.2', 1679817807, '__ci_last_regenerate|i:1679817807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84dde5abf61bfc050eb2b732bba6a6250a266a78', '31.222.203.2', 1679817807, '__ci_last_regenerate|i:1679817807;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a3eab1c12de661876c30325a618b354ab4b610', '31.222.203.2', 1679817807, '__ci_last_regenerate|i:1679817807;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b4725cfd6360588fe8f23652b0aba7cde94706c', '31.222.203.2', 1679819603, '__ci_last_regenerate|i:1679819603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4975d2e4c16f625993696d02367345aee063d9bf', '31.222.203.2', 1679819603, '__ci_last_regenerate|i:1679819603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc545d8453b59ac69859c590eb9fc0a60a54ba9', '31.222.203.2', 1679819603, '__ci_last_regenerate|i:1679819603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e5e2e7fe90dcdcb3978de84ebfb6fd5d5de0ca', '31.222.203.2', 1679819605, '__ci_last_regenerate|i:1679819605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc81bd83ef5053b9f0f1cd899e9e4c822dbb7d28', '31.222.203.2', 1679819605, '__ci_last_regenerate|i:1679819605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7cbfcef3cf1a98e3cdfecea04973a4127e9a196', '31.222.203.2', 1679819605, '__ci_last_regenerate|i:1679819605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c84e053883bf4900691021b0e50374175d1df6', '37.111.219.28', 1679820643, '__ci_last_regenerate|i:1679820643;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679820012;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e71abfe275d4c277544bb564fa270595957dfca6', '37.111.219.28', 1679821918, '__ci_last_regenerate|i:1679821918;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679820696;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78292efaeabec2ae8fcce5cddedfe095e9b2d8c', '31.222.203.2', 1679821400, '__ci_last_regenerate|i:1679821400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f96ddae7fcc96fbaae62971550fcc8b48b1278', '31.222.203.2', 1679821400, '__ci_last_regenerate|i:1679821400;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbae3e3a73f81de12a57642114c5f21bed3462c8', '31.222.203.2', 1679821400, '__ci_last_regenerate|i:1679821400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30820b02dda00f1ccd39aec22b1ca6c771176197', '31.222.203.2', 1679821400, '__ci_last_regenerate|i:1679821400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b5c1c8ee303580be97f95c59a76cebfa528e67', '31.222.203.2', 1679821400, '__ci_last_regenerate|i:1679821400;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ed7bce339403e260c677c12b4f0c2dd6187679', '31.222.203.2', 1679821400, '__ci_last_regenerate|i:1679821400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7742632484a03e889eb807263173a6e9771a013b', '37.111.219.28', 1679823813, '__ci_last_regenerate|i:1679823813;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679823807;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8acb63b7cfa455a39fadfc185d0b1a70423c091', '31.222.203.2', 1679823198, '__ci_last_regenerate|i:1679823198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80c5d5be6bce74e560fef02511fd92ed2313ae63', '31.222.203.2', 1679823198, '__ci_last_regenerate|i:1679823198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3fb07a8db1de8c661c86edfae24f617dc8adef0d', '31.222.203.2', 1679823198, '__ci_last_regenerate|i:1679823198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ed6a850ef2cb986d6596efb2357ae93d032e3f', '31.222.203.2', 1679823200, '__ci_last_regenerate|i:1679823200;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb37f3d7c72d3c791fa3e8e35cbb1a7943695b22', '31.222.203.2', 1679823200, '__ci_last_regenerate|i:1679823200;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('807f1f509d0e68384be9a246209f9d501979e234', '31.222.203.2', 1679823200, '__ci_last_regenerate|i:1679823200;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e79ce8cdacb2533ea462056f7928ebd9e9a05ee9', '37.111.219.28', 1679826036, '__ci_last_regenerate|i:1679826036;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679823819;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39bc8dc4353dfccaeb03689a3f3428eb898a9bee', '31.222.203.2', 1679824992, '__ci_last_regenerate|i:1679824992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('409ebbc12efb843929e08e4260c4eaeb43396b0c', '31.222.203.2', 1679824992, '__ci_last_regenerate|i:1679824992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfbfc1446c67eab411df69ad790a68a28071f1c5', '31.222.203.2', 1679824992, '__ci_last_regenerate|i:1679824992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc189f43124222684f9debaecb8e7355dfe9f82f', '31.222.203.2', 1679824994, '__ci_last_regenerate|i:1679824994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdb43521de74e5f4fe816ed03515501d7b933cd1', '31.222.203.2', 1679824994, '__ci_last_regenerate|i:1679824994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d4a84f82965da3cd61005318249e6df9263e85d', '31.222.203.2', 1679824994, '__ci_last_regenerate|i:1679824994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c9f910f68802e7d0aa5a1934f330d6c2ccde49', '37.111.219.28', 1679826523, '__ci_last_regenerate|i:1679826523;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679826319;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('256d0743b4686f395f2296e06f5572f9195c668f', '37.111.219.28', 1679829120, '__ci_last_regenerate|i:1679829120;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679829032;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d4c5fb238b965cef0c92db3bc5df0178e42034a', '31.222.203.2', 1679826796, '__ci_last_regenerate|i:1679826796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e7e8fe75ab7fb2f391c6e0f4f392f74ee6f0359', '31.222.203.2', 1679826796, '__ci_last_regenerate|i:1679826796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('238fc06f8a1f21fa2b7251e9b8d95815ec173239', '31.222.203.2', 1679826796, '__ci_last_regenerate|i:1679826796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eda6dab8a9560a3b325ba8e6451b594abb34e76f', '31.222.203.2', 1679826796, '__ci_last_regenerate|i:1679826796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c69b123405274a8e2ae6df8c296b1996f59b85e', '31.222.203.2', 1679826796, '__ci_last_regenerate|i:1679826796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c943ac73775eebcfa2158b7e62546070b3536e', '31.222.203.2', 1679826796, '__ci_last_regenerate|i:1679826796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdac7f8698b38990a91eb9b1e751f8524188041d', '31.222.203.2', 1679828597, '__ci_last_regenerate|i:1679828597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b17345addc6c4274f2a5504d47fb7a31aef1a4d', '31.222.203.2', 1679828598, '__ci_last_regenerate|i:1679828598;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096442fd6f59a1e15fe9fb96755aa634ab2050b7', '31.222.203.2', 1679828598, '__ci_last_regenerate|i:1679828598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a4e6a020fa800f4826ebf66fdbc81bc641cd72', '31.222.203.2', 1679828598, '__ci_last_regenerate|i:1679828598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af16a27d008be50fce883bd8a3f574e19f245c3', '31.222.203.2', 1679828598, '__ci_last_regenerate|i:1679828598;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836cdc12b030e90247be1a940e4002a09560ee8c', '31.222.203.2', 1679828598, '__ci_last_regenerate|i:1679828598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af72998423b598d9e1c1cda9ad38c1517731eff6', '37.111.219.28', 1679829441, '__ci_last_regenerate|i:1679829441;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679829332;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eddb53317282f82bca38684457b48a1bfbbc397c', '37.111.219.28', 1679829765, '__ci_last_regenerate|i:1679829765;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679829756;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f748044a47b29f3d49d10ce75e62058cedb7aa51', '37.111.219.28', 1679831335, '__ci_last_regenerate|i:1679831335;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679829888;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d1e5b6d07e8a5fab5ec4cb88d13e751327d3a3c', '31.222.203.2', 1679830399, '__ci_last_regenerate|i:1679830399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073777635166e0e8e54773c933cf58be969b5e52', '31.222.203.2', 1679830401, '__ci_last_regenerate|i:1679830401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e5194fdc9c228625199393bf30b3ec957ffaf00', '31.222.203.2', 1679830401, '__ci_last_regenerate|i:1679830401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a505f4cf9a63ddb0a600ad29806fed665630f84c', '31.222.203.2', 1679830401, '__ci_last_regenerate|i:1679830401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd389332cae5250a810d71f5c91536e97a058214', '31.222.203.2', 1679830401, '__ci_last_regenerate|i:1679830401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f8441c639388683fcec1be7fb75032f0ecec631', '31.222.203.2', 1679830401, '__ci_last_regenerate|i:1679830401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c2df0a204e03aa37fe963ac01825bf0bc3d009a', '116.204.230.19', 1679831267, '__ci_last_regenerate|i:1679831190;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679757882\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}last_activity|i:1679831229;register_id|s:2:\"53\";cash_in_hand|s:8:\"100.0000\";register_open_time|s:19:\"2022-04-27 16:33:20\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0bb47c54bc2f3d5f4b9f3308140ab26c475a2b3', '37.111.219.28', 1679835388, '__ci_last_regenerate|i:1679835388;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679831343;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0fdc8f74ebdd69a42f540f4a7ee72a31e412ac1', '31.222.203.2', 1679832203, '__ci_last_regenerate|i:1679832203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789dee60b2258fc5f6e516e257024cd0f5af7825', '31.222.203.2', 1679832203, '__ci_last_regenerate|i:1679832203;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93ce2fcc723f6eb7f755b30066bf25b02e3a114c', '31.222.203.2', 1679832203, '__ci_last_regenerate|i:1679832203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7666d1df1394765e0f246cac13a13ebbcb117236', '31.222.203.2', 1679832205, '__ci_last_regenerate|i:1679832205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9753549a24c32ab0e7f2bfbb603c64c0f36a75ea', '31.222.203.2', 1679832205, '__ci_last_regenerate|i:1679832205;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0808e33037dc5e2382b1ceb18c7459f491c5dbb', '31.222.203.2', 1679832205, '__ci_last_regenerate|i:1679832205;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6448b3d95183c9823051c8781c81a21c586999f4', '31.222.203.2', 1679833997, '__ci_last_regenerate|i:1679833997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('752b59ae42fc7a80eb29dd76855d994ecda57d5b', '31.222.203.2', 1679833997, '__ci_last_regenerate|i:1679833997;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f304431669c48b2dc649e703cf56264a6bffb70', '31.222.203.2', 1679833997, '__ci_last_regenerate|i:1679833997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f4a3959a387d9085ad6a28c4d69d78c05faa207', '31.222.203.2', 1679833997, '__ci_last_regenerate|i:1679833997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4170aa8f0665a0b087c1a20c3e6397b64b0a8a4b', '31.222.203.2', 1679833997, '__ci_last_regenerate|i:1679833997;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0802f9463e1d796b3af870b1ed0d8e8d3b4a2700', '31.222.203.2', 1679833997, '__ci_last_regenerate|i:1679833997;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('857bf10a83501b9aef6606fff8653fc15e00bc87', '37.111.219.28', 1679836611, '__ci_last_regenerate|i:1679836611;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679835455;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('167fa34e5a5451fd5df848a9c1b66fb3485db1d4', '31.222.203.2', 1679835784, '__ci_last_regenerate|i:1679835784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ac18e4cbaa38d759286520913e334a0a2474555', '31.222.203.2', 1679835784, '__ci_last_regenerate|i:1679835784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b4d649a05ae1071225bff2a6678d20109652865', '31.222.203.2', 1679835784, '__ci_last_regenerate|i:1679835784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a70763f093880b6f9db5ad1e4b1d05f58ca6217c', '31.222.203.2', 1679835785, '__ci_last_regenerate|i:1679835785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18af6c22df2d75b395abf31d2c8b8c0ab9e65695', '31.222.203.2', 1679835785, '__ci_last_regenerate|i:1679835785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b27bae2c3318624e8c84d92e1aa5be8f9e9d6ff3', '31.222.203.2', 1679835785, '__ci_last_regenerate|i:1679835785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b889514232fdf04d25d270b0c1042d0c894c8139', '37.111.219.28', 1679836822, '__ci_last_regenerate|i:1679836611;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679751240\";last_ip|s:14:\"37.111.218.178\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679836621;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a1eef7223c77db8c8d158920ff7a19d11e6701', '31.222.203.2', 1679837588, '__ci_last_regenerate|i:1679837588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e880b6edf7d46a8c91d2e0b6fff98809f5075e3d', '31.222.203.2', 1679837588, '__ci_last_regenerate|i:1679837588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a75ae58d1a6ee2522661f7d2c99308c4eb23c182', '31.222.203.2', 1679837588, '__ci_last_regenerate|i:1679837588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dbf54fd605b4bb1558da73c1ac1b74e723e14af', '31.222.203.2', 1679837589, '__ci_last_regenerate|i:1679837589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a251dfbfa3061130100070d82efda6b842563aba', '31.222.203.2', 1679837589, '__ci_last_regenerate|i:1679837589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eac53c97aa028cc5f82df7403757d631890b483', '31.222.203.2', 1679837589, '__ci_last_regenerate|i:1679837589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0226bc04632adefe1f5c87b75dae279aea9e6055', '31.222.203.2', 1679839382, '__ci_last_regenerate|i:1679839382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa08d34ff6c69a6bcec0fbfd81de945a84ae7d79', '31.222.203.2', 1679839382, '__ci_last_regenerate|i:1679839382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d92b07ab2bdabe2a36ae09a10ce79b175664e21', '31.222.203.2', 1679839382, '__ci_last_regenerate|i:1679839382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90fac5faf23e802dfe2aac9a6dbfc59947594d86', '31.222.203.2', 1679839384, '__ci_last_regenerate|i:1679839384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885f53e722468d23c79d9cc562eab3588bfd6b74', '31.222.203.2', 1679839384, '__ci_last_regenerate|i:1679839384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11177b093bba990863e48e932d0eb2617eb1b6c9', '31.222.203.2', 1679839384, '__ci_last_regenerate|i:1679839384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9fc71c4eeee1c05b48769ee18a8e1d259dc394e', '31.222.203.2', 1679841186, '__ci_last_regenerate|i:1679841186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10047aa87fa38455faab123ff733dfd51bb5c664', '31.222.203.2', 1679841186, '__ci_last_regenerate|i:1679841186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f375ca9a59ee75209fc985a31d151b5a81828f49', '31.222.203.2', 1679841186, '__ci_last_regenerate|i:1679841186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58fd2e4e469c77bb61a9f2b3d78a9c7a538e5b24', '31.222.203.2', 1679841187, '__ci_last_regenerate|i:1679841187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9dd00ca2268463e69b6e715bade40d649fbced', '31.222.203.2', 1679841187, '__ci_last_regenerate|i:1679841187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59901507dfcfce385290862a4c75a8f847097b4f', '31.222.203.2', 1679841187, '__ci_last_regenerate|i:1679841187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23b5245c48dca344b07699f6f34be08eb3702fa9', '31.222.203.2', 1679842985, '__ci_last_regenerate|i:1679842985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcc313babdc14fac451af088476347860ab2abe6', '31.222.203.2', 1679842985, '__ci_last_regenerate|i:1679842985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('600271afdb66483a587daa92ca41c088707fa88c', '31.222.203.2', 1679842985, '__ci_last_regenerate|i:1679842985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad1b83d4824a3d8f1090c456eda8ed294a8cdbc0', '31.222.203.2', 1679842986, '__ci_last_regenerate|i:1679842986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcd2e4d7ec51d9f56d2cd50ef2d3589437e72932', '31.222.203.2', 1679842986, '__ci_last_regenerate|i:1679842986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76e3fff4751fb47dee983508db7b3daa9adc7699', '31.222.203.2', 1679842986, '__ci_last_regenerate|i:1679842986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2b47ee05833a2faadc667189bc4de35c1bf1942', '31.222.203.2', 1679844787, '__ci_last_regenerate|i:1679844787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b3f4006e28b360baee88cf688b9037a918f2458', '31.222.203.2', 1679844787, '__ci_last_regenerate|i:1679844787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('230f41cba9665ccc569ffac1255fdf6b405a3de7', '31.222.203.2', 1679844787, '__ci_last_regenerate|i:1679844787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c53ce696d76df92868f06f0c3525e77f0a75b144', '31.222.203.2', 1679844787, '__ci_last_regenerate|i:1679844787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea992428e39e4b038530d9a4e25babe3c67977c', '31.222.203.2', 1679844787, '__ci_last_regenerate|i:1679844787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fa48a39a5a4b9f786da9f4839160edb8b996666', '31.222.203.2', 1679844787, '__ci_last_regenerate|i:1679844787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f184a2fa387870b8b482fce9b9bcc5cbc4cb30e', '37.111.219.28', 1679846035, '__ci_last_regenerate|i:1679846035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679808950\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679845595;register_id|s:3:\"381\";cash_in_hand|s:9:\"4470.0000\";register_open_time|s:19:\"2023-03-25 21:46:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('283740a8c748f4ba789804dc34610600a4a572e3', '37.111.219.28', 1679846140, '__ci_last_regenerate|i:1679846035;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679808950\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679846140;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('416c2375b4b286f937f4955d1f220654499baa60', '31.222.203.2', 1679846583, '__ci_last_regenerate|i:1679846583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c09e487d513ff7375ee3a2ada2e83197422976c4', '31.222.203.2', 1679846583, '__ci_last_regenerate|i:1679846583;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c6304c9e78009f598a64ce0934230cfdfce6ce', '31.222.203.2', 1679846583, '__ci_last_regenerate|i:1679846583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6df8822d019c298f0df8c221094da0a1804ad891', '31.222.203.2', 1679846584, '__ci_last_regenerate|i:1679846584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('80ad741f3880a9ca771344aeec3dbfaede78e15b', '31.222.203.2', 1679846584, '__ci_last_regenerate|i:1679846584;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fb2eeb90a4c949d87abb27828041ec2e3736f72', '31.222.203.2', 1679846584, '__ci_last_regenerate|i:1679846584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36626171db423912571fdbd8e4b5306c8806efce', '119.30.41.239', 1679847405, '__ci_last_regenerate|i:1679847362;requested_page|s:13:\"admin/welcome\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679831197\";last_ip|s:14:\"116.204.230.19\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf3f0b6fc7800d6e6d43f4f038378f24e0b1ada1', '31.222.203.2', 1679848386, '__ci_last_regenerate|i:1679848386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0a7a88470733069eac16bf8b38d044cd9e8515', '31.222.203.2', 1679848386, '__ci_last_regenerate|i:1679848386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfe13ad2417749589237fea0336f5f93256bb4aa', '31.222.203.2', 1679848386, '__ci_last_regenerate|i:1679848386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('681047e6c500fa7c2af2ba0c0909fd6ca9cca5d7', '31.222.203.2', 1679848386, '__ci_last_regenerate|i:1679848386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afeb9c209696e8a26e3faaab5abd8c4c470771ef', '31.222.203.2', 1679848386, '__ci_last_regenerate|i:1679848386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8eae1be4de1fd47a3c80ded53f71062057d2014', '31.222.203.2', 1679848386, '__ci_last_regenerate|i:1679848386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c50b9c2ce79ccb189bc74d726cce63aba308f08', '31.222.203.2', 1679850189, '__ci_last_regenerate|i:1679850189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87355e1c4eed43a81464d5ff0195e8ff9068d0f0', '31.222.203.2', 1679850189, '__ci_last_regenerate|i:1679850189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2912cc1ee7d949aabbf74673ee0f9de4f187e9f9', '31.222.203.2', 1679850189, '__ci_last_regenerate|i:1679850189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daef5677346814a96602fbc68ae55cbde517b637', '31.222.203.2', 1679850190, '__ci_last_regenerate|i:1679850190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55df7a6be0a503305f6df548de3e67db10d12835', '31.222.203.2', 1679850190, '__ci_last_regenerate|i:1679850190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a809e9ee190863b81bf6866ada0de709ac21da1', '31.222.203.2', 1679850190, '__ci_last_regenerate|i:1679850190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e5fd1cf821803a752680912ab410f00b57b2f49', '31.222.203.2', 1679851981, '__ci_last_regenerate|i:1679851981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4bcf1df0d445d2853bfee5cbab94dbc5e826d27f', '31.222.203.2', 1679851981, '__ci_last_regenerate|i:1679851981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a52beb8ff8e0f8903c21e6d8447049414bc97d42', '31.222.203.2', 1679851981, '__ci_last_regenerate|i:1679851981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25951653b4d8ca3952badc1a470316e1be5297cf', '31.222.203.2', 1679851983, '__ci_last_regenerate|i:1679851983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6710e1fc4ee9fa71db9c9553e212d5d73f74062', '31.222.203.2', 1679851983, '__ci_last_regenerate|i:1679851983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac629a054e473037790119019aa67cf6ad44a34', '31.222.203.2', 1679851983, '__ci_last_regenerate|i:1679851983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8961ae8fb66021ba50e5abc22a8a2a46bffcc69e', '31.222.203.2', 1679853785, '__ci_last_regenerate|i:1679853785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7cc50a467389a07e4d96accf63e25ea4efec9e9', '31.222.203.2', 1679853785, '__ci_last_regenerate|i:1679853785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96df192349198856363450169faa1d796748e4a3', '31.222.203.2', 1679853785, '__ci_last_regenerate|i:1679853785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('068318f954fed9b65eb65495a80cb124da2bc099', '31.222.203.2', 1679853786, '__ci_last_regenerate|i:1679853786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd630e884f1a4226097b49c25fde54854da08490', '31.222.203.2', 1679853786, '__ci_last_regenerate|i:1679853786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd121094683537760f7ecdfeba74bbb1053dbb88', '31.222.203.2', 1679853786, '__ci_last_regenerate|i:1679853786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d779da19fecc6de18793057472b7d033984085', '31.222.203.2', 1679855577, '__ci_last_regenerate|i:1679855577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f62783f4b685c48607e65a135bff7f17ec2c0745', '31.222.203.2', 1679855577, '__ci_last_regenerate|i:1679855577;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a83d6e0707fa773d29c6726eda3a1474358b8a9', '31.222.203.2', 1679855577, '__ci_last_regenerate|i:1679855577;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b2193474192255ca79365646254d06b5f066bb5', '31.222.203.2', 1679855578, '__ci_last_regenerate|i:1679855578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff38a47b0daa70b62895c7f82caaf95ab9e0d6a', '31.222.203.2', 1679855578, '__ci_last_regenerate|i:1679855578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d9b483aa637afa248e936480b94ae3e92743e49', '31.222.203.2', 1679855578, '__ci_last_regenerate|i:1679855578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e6a54f29547639952ae7bd401e30842a9725a5', '31.222.203.2', 1679857380, '__ci_last_regenerate|i:1679857380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef6e0a84f54a6b99dee6222681acba2ccc5ad46d', '31.222.203.2', 1679857380, '__ci_last_regenerate|i:1679857380;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ca36fed6868d2718c83944edcd140c5594e7e69', '31.222.203.2', 1679857380, '__ci_last_regenerate|i:1679857380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cdae36d474959998040615acdf7b9cfaa8a95e4', '31.222.203.2', 1679857381, '__ci_last_regenerate|i:1679857381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ede1b5d7e812f84928de1d28886cac1a9cf8d8f', '31.222.203.2', 1679857381, '__ci_last_regenerate|i:1679857381;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('026514e0505650917b239a0b61ad364397b4e533', '31.222.203.2', 1679857381, '__ci_last_regenerate|i:1679857381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e48c53c851d90a22503ae1f6a01b82e442a9f33f', '31.222.203.2', 1679859189, '__ci_last_regenerate|i:1679859189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c9095e2ea7812f9f7a75c540b0f63ef0f85c84', '31.222.203.2', 1679859189, '__ci_last_regenerate|i:1679859189;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('221a4fc14ef4fe7428510e16cdc73ca3bc7b65a5', '31.222.203.2', 1679859189, '__ci_last_regenerate|i:1679859189;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('701ac44644ef86a20689043a0084400ebcbd6ece', '31.222.203.2', 1679859191, '__ci_last_regenerate|i:1679859191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6c9bf29a079ed9d359d4da43346cd2f7464ba97', '31.222.203.2', 1679859191, '__ci_last_regenerate|i:1679859191;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f98f47c04c47a1bc4355ef25dde7ddf836bd32c0', '31.222.203.2', 1679859191, '__ci_last_regenerate|i:1679859191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a45350b4bdafba20efa9363e525564080b309ca6', '31.222.203.2', 1679860980, '__ci_last_regenerate|i:1679860980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21c6abd56d7edc411c44f538cfee6fd853c63cdf', '31.222.203.2', 1679860980, '__ci_last_regenerate|i:1679860980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b016a4d0a7586dfa6b39b5ac7565ae685d70a25', '31.222.203.2', 1679860980, '__ci_last_regenerate|i:1679860980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3361dac6bf418b3390534364074df95587c0ef8', '31.222.203.2', 1679860982, '__ci_last_regenerate|i:1679860982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acc77bfd7df87f433ce0f7c1ab778b610f0f5c06', '31.222.203.2', 1679860982, '__ci_last_regenerate|i:1679860982;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5dd1e77071c5320a559061ef8e32e5ce264e41', '31.222.203.2', 1679860982, '__ci_last_regenerate|i:1679860982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ae27c6fc2183db868ae0cf009688ffec3871ff7', '31.222.203.2', 1679862784, '__ci_last_regenerate|i:1679862784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4aee780e9947bfaa5381bc10d220d672c788d8a', '31.222.203.2', 1679862784, '__ci_last_regenerate|i:1679862784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a7b5d73eed8e713e465b1d2b2e20a3780c7624a', '31.222.203.2', 1679862784, '__ci_last_regenerate|i:1679862784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b1450acdea9ab05896738ad25b51bcfdb721fa2', '31.222.203.2', 1679862784, '__ci_last_regenerate|i:1679862784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b54488757cec416b29bc962fd53b5b092d6b7f1', '31.222.203.2', 1679862784, '__ci_last_regenerate|i:1679862784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47a86130f064595ba40278a63fa89c7b35b0a471', '31.222.203.2', 1679862784, '__ci_last_regenerate|i:1679862784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bf78250bf747dca87c7cfe708c7ae0d7548326d', '31.222.203.2', 1679864585, '__ci_last_regenerate|i:1679864585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7bd106fbc8422ac35a7c10db1b6eb68abea9235', '31.222.203.2', 1679864585, '__ci_last_regenerate|i:1679864585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83dcad2c4bc38edd1d0ec45441439fe0a317e0c2', '31.222.203.2', 1679864585, '__ci_last_regenerate|i:1679864585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04cba1d08d302fb55d0c1fbe9f1419f03d041fa6', '31.222.203.2', 1679864587, '__ci_last_regenerate|i:1679864587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01d327be6bda3c6bfaa63909e575d2303eef55f2', '31.222.203.2', 1679864587, '__ci_last_regenerate|i:1679864587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('810919df83d07e9dfa1de9c1bdc2f4e955a47ecb', '31.222.203.2', 1679864587, '__ci_last_regenerate|i:1679864587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43bc9c3c9b9f985d6110080f6a84bc377c0b7a20', '31.222.203.2', 1679866380, '__ci_last_regenerate|i:1679866380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04e8343dcb0fef40e5aefc4b998e1b21bc7453d8', '31.222.203.2', 1679866380, '__ci_last_regenerate|i:1679866380;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d41585dbacd8f3da8421545f547e26e9502cbd', '31.222.203.2', 1679866380, '__ci_last_regenerate|i:1679866380;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e966c330ea7538ec4c4d078b711c9c86e832544b', '31.222.203.2', 1679866381, '__ci_last_regenerate|i:1679866381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56bd088a6f5502d7a0c42a748fd1e1ac4b877cd6', '31.222.203.2', 1679866381, '__ci_last_regenerate|i:1679866381;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e6f3e87bf08eb133e7c167682b83bb31235f14a', '31.222.203.2', 1679866381, '__ci_last_regenerate|i:1679866381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('966cb30762f1572060b8cc42a03cbd8f45b4666b', '31.222.203.2', 1679868182, '__ci_last_regenerate|i:1679868182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('859e5b499deb9018b13381665c60e3562bc1c9b6', '31.222.203.2', 1679868182, '__ci_last_regenerate|i:1679868182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5db1acc400db68e22e7f8222897b6cbf841a82ae', '31.222.203.2', 1679868182, '__ci_last_regenerate|i:1679868182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7558c52098019c062ba8682fae8cdf0e187f21c6', '31.222.203.2', 1679868184, '__ci_last_regenerate|i:1679868184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e252fbee27672d3d11e63c05113042e4c9b1e05c', '31.222.203.2', 1679868184, '__ci_last_regenerate|i:1679868184;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0aee627c484d335681652484c8efed101ceb18f6', '31.222.203.2', 1679868184, '__ci_last_regenerate|i:1679868184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b30e1678a05ce66139ab043fb70dbc4ceb69cd', '31.222.203.2', 1679869980, '__ci_last_regenerate|i:1679869980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f344c990b0a94fdaacac1f5f48a8f555b2ec15c8', '31.222.203.2', 1679869980, '__ci_last_regenerate|i:1679869980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('354b3343ed8c517d0e389ff0a9364f731b33712a', '31.222.203.2', 1679869980, '__ci_last_regenerate|i:1679869980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95ed6584e0f29a064175cf6536a092c939e4ecb9', '31.222.203.2', 1679869980, '__ci_last_regenerate|i:1679869980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6c7785ead30ca9eb6fc7cf7b9fada523a5503dd', '31.222.203.2', 1679869980, '__ci_last_regenerate|i:1679869980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('839bac9b446bcad5a7408e1afd772c9644387c35', '31.222.203.2', 1679869980, '__ci_last_regenerate|i:1679869980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a5127dfaa69c8608eaea649b292c1d47aa53647', '31.222.203.2', 1679871791, '__ci_last_regenerate|i:1679871791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a8e0ce6553a1ebf211245d3f8566c7088412d17', '31.222.203.2', 1679871791, '__ci_last_regenerate|i:1679871791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0566faca55ddb430eceecf7b7582cb6f810700a', '31.222.203.2', 1679871791, '__ci_last_regenerate|i:1679871791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e66e8cffa668935d998a0c818446f528d3acc722', '31.222.203.2', 1679871791, '__ci_last_regenerate|i:1679871791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('066d3fce27bfaac2026d25246d81f9f41e1e535c', '31.222.203.2', 1679871791, '__ci_last_regenerate|i:1679871791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a42c9b80b57e237b6d18a80981a2202c1a9aca4', '31.222.203.2', 1679871791, '__ci_last_regenerate|i:1679871791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1793c066836d6bdff7dc378121e17117efb285', '31.222.203.2', 1679873585, '__ci_last_regenerate|i:1679873585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('523a6fd56dc2dc33cd51fc5f294aad405f006574', '31.222.203.2', 1679873585, '__ci_last_regenerate|i:1679873585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e775cb53dbbb3c36c022e2555a9eb59f0f0290d', '31.222.203.2', 1679873585, '__ci_last_regenerate|i:1679873585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fdd5159af4837bbd9eb66388cf76cc63840cc59', '31.222.203.2', 1679873585, '__ci_last_regenerate|i:1679873585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad7a6e6668c59abcd8c68f0b0adc004368c1e7e', '31.222.203.2', 1679873585, '__ci_last_regenerate|i:1679873585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95a6db99576e3447b91bdaf8fbeeb524512c99eb', '31.222.203.2', 1679873585, '__ci_last_regenerate|i:1679873585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('660c550485531918928a23d97787c2ec1f13f514', '31.222.203.2', 1679875397, '__ci_last_regenerate|i:1679875397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('189a0afa6041961cf7f465b980067b32169fc097', '31.222.203.2', 1679875397, '__ci_last_regenerate|i:1679875397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6febef399df199fda841fc6039c8e6ad64f99d6f', '31.222.203.2', 1679875397, '__ci_last_regenerate|i:1679875397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c9e457391b504a6702323f181643149e130be99', '31.222.203.2', 1679875398, '__ci_last_regenerate|i:1679875398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7605dd0153e9e19ad07fb967ac04d2165eb129ac', '31.222.203.2', 1679875398, '__ci_last_regenerate|i:1679875398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('236a58210b361370c5c7637231a8992fa3e24ab8', '31.222.203.2', 1679875398, '__ci_last_regenerate|i:1679875398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('657dd37036b6fe067c7772edc4b5a0a68bc08205', '31.222.203.2', 1679877186, '__ci_last_regenerate|i:1679877186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a4c101da30a4c00c9ae939d74deae8ea48d6249', '31.222.203.2', 1679877188, '__ci_last_regenerate|i:1679877188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f12db208edd21afd8dc54cbde490f4884894b57b', '31.222.203.2', 1679877188, '__ci_last_regenerate|i:1679877188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abef9fd25a405c45ed36f4eeabc364ee00a537ff', '31.222.203.2', 1679877188, '__ci_last_regenerate|i:1679877188;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f6478f875ea551fe0fc0686d9d771e05ec61c0b', '31.222.203.2', 1679877188, '__ci_last_regenerate|i:1679877188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72af01351b20f6719f9f8e5f79b42b5b61fa7bc3', '31.222.203.2', 1679877188, '__ci_last_regenerate|i:1679877188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eff5e846f57da53c80f0dc57a00464c2a8487ff', '31.222.203.2', 1679878991, '__ci_last_regenerate|i:1679878991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1665357aea8c88cd4cf3fa6c586452d7abdc5397', '31.222.203.2', 1679878991, '__ci_last_regenerate|i:1679878991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55a3637dcc1bcff23d0d08bb85ed53dcbd3ca856', '31.222.203.2', 1679878991, '__ci_last_regenerate|i:1679878991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0fd35b4df1ae386d7500679b9ada4613faa18204', '31.222.203.2', 1679878992, '__ci_last_regenerate|i:1679878992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b741ece82d88b15ac33edcfe38e46d3e02c5aab3', '31.222.203.2', 1679878992, '__ci_last_regenerate|i:1679878992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e636e71ce069b90f574359f750a150a5bac4b7d', '31.222.203.2', 1679878992, '__ci_last_regenerate|i:1679878992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bc9edd63c0e7d809d1015c6f3d628c3b8bbc84a', '31.222.203.2', 1679880791, '__ci_last_regenerate|i:1679880791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f27a13d0e3df92a307b26648a8cf4c83aff17c9', '31.222.203.2', 1679880791, '__ci_last_regenerate|i:1679880791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92a9a1f06b4be2719dd96e371f901d3540084372', '31.222.203.2', 1679880791, '__ci_last_regenerate|i:1679880791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c91d2092e0d5c8659f88a65fff525ed62cd94249', '31.222.203.2', 1679880793, '__ci_last_regenerate|i:1679880793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('840ae81ca33edb8baeb6fa3f1d0b2b1278a071f2', '31.222.203.2', 1679880793, '__ci_last_regenerate|i:1679880793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96819685e655894afcd1a764a0f63e19fa1fbf9d', '31.222.203.2', 1679880793, '__ci_last_regenerate|i:1679880793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d51bf90a1dae02b95946eb9b4baa26038f4b35c', '31.222.203.2', 1679882586, '__ci_last_regenerate|i:1679882586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4e42f629ce3b76969bcef1c3aead9927ae964c1', '31.222.203.2', 1679882586, '__ci_last_regenerate|i:1679882586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a3b3c116a4c7507d796970988d18569c1813d68', '31.222.203.2', 1679882586, '__ci_last_regenerate|i:1679882586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31fdd15f74d4cb1323ff07f7575184cfe58f6b9', '31.222.203.2', 1679882589, '__ci_last_regenerate|i:1679882589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('365d8d7b6eda5deb8e2ce906d103f5ad17a80170', '31.222.203.2', 1679882589, '__ci_last_regenerate|i:1679882589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('938ade2f1244233d6f4b7ddef3f508e4dd506e6f', '31.222.203.2', 1679882589, '__ci_last_regenerate|i:1679882589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b2e9790f5f817b63c73fc28f7573c22ba23ee29', '31.222.203.2', 1679884388, '__ci_last_regenerate|i:1679884388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48e9ccb4ff3ed3d4c10e574760b5ea3c83f55030', '31.222.203.2', 1679884388, '__ci_last_regenerate|i:1679884388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('157e91381d2fc07de0a043bb60dd32c4e3f0cf25', '31.222.203.2', 1679884388, '__ci_last_regenerate|i:1679884388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc6facd1c6eb6982684933283b55e11f5d48976c', '31.222.203.2', 1679884390, '__ci_last_regenerate|i:1679884390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1251ac6247232bbafb146df28e0ec21882446b6', '31.222.203.2', 1679884390, '__ci_last_regenerate|i:1679884390;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('790c6f866a27c3fc588eb650bcbaec04fcfd8425', '31.222.203.2', 1679884390, '__ci_last_regenerate|i:1679884390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35155c3f804c37558a98b30513930e9583232b3a', '31.222.203.2', 1679886193, '__ci_last_regenerate|i:1679886193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2d10c310b6fc4cad262ad87210e23984ea8234f', '31.222.203.2', 1679886194, '__ci_last_regenerate|i:1679886194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7010504d9adac2a489c291327184d3c9f727c841', '31.222.203.2', 1679886194, '__ci_last_regenerate|i:1679886194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87696a567fbe8265733fe565fe12268540a4e3d3', '31.222.203.2', 1679886194, '__ci_last_regenerate|i:1679886194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19d2ffa25daad0997c437f9ca77b558da5ab199b', '31.222.203.2', 1679886194, '__ci_last_regenerate|i:1679886194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff74728a70070980b6068ff5c7c8d23a4fd5313', '31.222.203.2', 1679886194, '__ci_last_regenerate|i:1679886194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03fc3e3a06b8968ac8380687dd71a039145ffdfa', '31.222.203.2', 1679887990, '__ci_last_regenerate|i:1679887990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79aaf5041ddd2ad93dea2cf15c50c748a8a47518', '31.222.203.2', 1679887992, '__ci_last_regenerate|i:1679887992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23fb43a7f9815c4312aac9e45286ca7899ada69f', '31.222.203.2', 1679887992, '__ci_last_regenerate|i:1679887992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93da1d9fcab36ea0f2429f713e9ecf46b1aa9dbc', '31.222.203.2', 1679887992, '__ci_last_regenerate|i:1679887992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a8e218c9a3133993e2ba74d9767d2133cc7158e', '31.222.203.2', 1679887992, '__ci_last_regenerate|i:1679887992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc76949701a707750ae33698a4f306d29cecb5f1', '31.222.203.2', 1679887992, '__ci_last_regenerate|i:1679887992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76417c2b3d946fb63d1dd2f6fde72871e450d306', '31.222.203.2', 1679889791, '__ci_last_regenerate|i:1679889791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('925fcda98174ec28d6c4efc920678961adb38058', '31.222.203.2', 1679889791, '__ci_last_regenerate|i:1679889791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4bed7ab385b2ef666059f42d9fb97123cdbfb1c', '31.222.203.2', 1679889791, '__ci_last_regenerate|i:1679889791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55603da8ca4f4c22008fbfe3f98e80972a8b36c0', '31.222.203.2', 1679889794, '__ci_last_regenerate|i:1679889794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36da232679c7136b85c903a5163b92369af2c993', '31.222.203.2', 1679889794, '__ci_last_regenerate|i:1679889794;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381480fec479c9b26578e9800dce878834218a30', '31.222.203.2', 1679889794, '__ci_last_regenerate|i:1679889794;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd44f7292a0e9e55747e596fef69419cb0cae6c7', '31.222.203.2', 1679891607, '__ci_last_regenerate|i:1679891607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74fba1950f051e2bf2f237c30d596aa53ca44e16', '31.222.203.2', 1679891607, '__ci_last_regenerate|i:1679891607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07dd994c3c2b894ef2a7fe47b42f641852bb6527', '31.222.203.2', 1679891607, '__ci_last_regenerate|i:1679891607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90f27650ad94b767dd08da02f01e19ef66cad39b', '31.222.203.2', 1679891607, '__ci_last_regenerate|i:1679891607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00d723aef65ebc93d1fd726a2988b46800642e7d', '31.222.203.2', 1679891607, '__ci_last_regenerate|i:1679891607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12a74a323dda48596f9fd34d33a5d1f4876dedbf', '31.222.203.2', 1679891607, '__ci_last_regenerate|i:1679891607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce65c97368908b5e38a40da4584e5c34d629a72', '37.111.219.81', 1679898413, '__ci_last_regenerate|i:1679898413;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679892310;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a90af28958d3716e6c5082834d9a4672ab5c40', '31.222.203.2', 1679893398, '__ci_last_regenerate|i:1679893398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d517ce00b92624186113bd7c4a27d3a77ecdde54', '31.222.203.2', 1679893398, '__ci_last_regenerate|i:1679893398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd19d94548f643d7a9dbd76f9ddb1fea981b881b', '31.222.203.2', 1679893398, '__ci_last_regenerate|i:1679893398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5549fc43daddbfc2f531e11b1a673562e5f1093a', '31.222.203.2', 1679893398, '__ci_last_regenerate|i:1679893398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62b0eff47ee2d1bbc3d9545f07d98275c6192838', '31.222.203.2', 1679893398, '__ci_last_regenerate|i:1679893398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1de526b6aa60cd26e7c82b6dfd4b6d07356c933c', '31.222.203.2', 1679893398, '__ci_last_regenerate|i:1679893398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bfcaaa5d4bd180c8b19659f5eac8a623f94623d', '31.222.203.2', 1679895195, '__ci_last_regenerate|i:1679895195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50bff3e39f5a3b989298867881c7b6ca16c5ec0f', '31.222.203.2', 1679895195, '__ci_last_regenerate|i:1679895195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be1fcdc528aa92c146ad52dab1b7247f37771862', '31.222.203.2', 1679895195, '__ci_last_regenerate|i:1679895195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('560b4d4a28bfc8d124ece0c20d5078403ff7eff9', '31.222.203.2', 1679895195, '__ci_last_regenerate|i:1679895195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0af0ae4a12282a0bb03aaa0afcd8fab0ed04f727', '31.222.203.2', 1679895195, '__ci_last_regenerate|i:1679895195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46c76a4eab8270c9f014086308c69edb07e69352', '31.222.203.2', 1679895195, '__ci_last_regenerate|i:1679895195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('948d59b4c042a52cde96adc52a8bae54c79f8870', '31.222.203.2', 1679897003, '__ci_last_regenerate|i:1679897003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cec6cc28a66e316730334d1ca7c2722cd15c7b52', '31.222.203.2', 1679897003, '__ci_last_regenerate|i:1679897003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c36a9c0821ad7a5852fb062c9cf09262e91b73b6', '31.222.203.2', 1679897003, '__ci_last_regenerate|i:1679897003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6851ab21b899484a0c5cea2d3c4567025260b2c4', '31.222.203.2', 1679897005, '__ci_last_regenerate|i:1679897005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f2958f56693fcd9db0d09fdc9676d09a384f5d6', '31.222.203.2', 1679897005, '__ci_last_regenerate|i:1679897005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('377f4535e87731ee45bc22406bd9e9ebd941848d', '31.222.203.2', 1679897006, '__ci_last_regenerate|i:1679897006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2ce1ad50f79baf9f4076eac3a539466875ebc3e', '37.111.219.81', 1679899126, '__ci_last_regenerate|i:1679899126;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679898427;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e7bb5538949b0b32692406197cf975b3ff09676', '31.222.203.2', 1679898798, '__ci_last_regenerate|i:1679898798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a1d1435cf66d4226239153c6509eb545ed60157', '31.222.203.2', 1679898798, '__ci_last_regenerate|i:1679898798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b93ffc9357878554ec692230244d6cd0a5ae083', '31.222.203.2', 1679898798, '__ci_last_regenerate|i:1679898798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b75745b00832aecaaf2bce4e94871eb65f321c5', '31.222.203.2', 1679898800, '__ci_last_regenerate|i:1679898800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b93629013a814a84a157427791a463c05dc0385', '31.222.203.2', 1679898800, '__ci_last_regenerate|i:1679898800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1429f36412bea81e6f0ff33e5d7c75d662d915a2', '31.222.203.2', 1679898800, '__ci_last_regenerate|i:1679898800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('586b0b0dde665288556f18779bee44072e1ae475', '37.111.219.81', 1679903904, '__ci_last_regenerate|i:1679903904;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679899145;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95d15f4a19905fda9ba38125e54727ba5a1a73df', '31.222.203.2', 1679900602, '__ci_last_regenerate|i:1679900602;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e0c6c0942091085695cacd3dc41a7cb0e5cc14d5', '31.222.203.2', 1679900603, '__ci_last_regenerate|i:1679900603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b8d1544d3ae900901e42f2f945c5c9b43bfd571', '31.222.203.2', 1679900603, '__ci_last_regenerate|i:1679900603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d1fa6545153de9e5cbe79b1c2c9f97682a71cf8', '31.222.203.2', 1679900603, '__ci_last_regenerate|i:1679900603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f7e565e070cc1ff1c45cb632ad2e5014e5f6eac', '31.222.203.2', 1679900603, '__ci_last_regenerate|i:1679900603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2dee77b0074551edf91c8b91075e77cefca1e6c', '31.222.203.2', 1679900603, '__ci_last_regenerate|i:1679900603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27982d86652b82b27e371f024594176463884ffc', '31.222.203.2', 1679902397, '__ci_last_regenerate|i:1679902397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef3b10e67518b7ac7cdd152a23945011e262e3ea', '31.222.203.2', 1679902398, '__ci_last_regenerate|i:1679902398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6ea89e26b02c0d21e0f8f070d2ac8bd20e88d30', '31.222.203.2', 1679902398, '__ci_last_regenerate|i:1679902398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe75a4c1d3b98337148585a93d3c5a177d11881e', '31.222.203.2', 1679902398, '__ci_last_regenerate|i:1679902398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c337e5b5bab9d739f913d48a3b5c1afd53298f1', '31.222.203.2', 1679902398, '__ci_last_regenerate|i:1679902398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46f52fd1736a7f16002dcde0190bfc8a28a16532', '31.222.203.2', 1679902398, '__ci_last_regenerate|i:1679902398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6a860c809db0dbe23fdb1e40447ef3053618436', '45.120.39.89', 1679908046, '__ci_last_regenerate|i:1679908046;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679903930;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91932d02ff1311010b97eca14edd1591c526d850', '31.222.203.2', 1679904199, '__ci_last_regenerate|i:1679904199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b5665383783801ac6eb0fd47878727e9b35fb44', '31.222.203.2', 1679904199, '__ci_last_regenerate|i:1679904199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0eeed32b0e57f694d835d34fe1cbb0b0e374847d', '31.222.203.2', 1679904199, '__ci_last_regenerate|i:1679904199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78e4677933a7434230d958396ecb87b6b8f59621', '31.222.203.2', 1679904199, '__ci_last_regenerate|i:1679904199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69869afdd6be4adac848ed5ec1ba1e3884b1a8f9', '31.222.203.2', 1679904199, '__ci_last_regenerate|i:1679904199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('757e107d0620ac3f1936a00653f14e2605049efc', '31.222.203.2', 1679904199, '__ci_last_regenerate|i:1679904199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32736ab46d6b001ff2f72bdab64c1e7d330c9eb5', '116.204.230.28', 1679912083, '__ci_last_regenerate|i:1679912083;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679811057\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c9b6b7c98a2aeae69ebf6ee8bd15335141a6c5', '31.222.203.2', 1679906003, '__ci_last_regenerate|i:1679906003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8562b668b25beac90af9499e3adb586122120b4', '31.222.203.2', 1679906003, '__ci_last_regenerate|i:1679906003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b89ab3d1a711d6c5789c269a77d699e3690fc937', '31.222.203.2', 1679906003, '__ci_last_regenerate|i:1679906003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('009e51e9a86de65f2e8ec5e358f25eca84a00cfc', '31.222.203.2', 1679906003, '__ci_last_regenerate|i:1679906003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('640c166c0cbd2418d3ba5a9ffa81a97d7618c8cd', '31.222.203.2', 1679906003, '__ci_last_regenerate|i:1679906003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c2ca84cab4708aa02ccc31a1e1caa4f967f2a16', '31.222.203.2', 1679906003, '__ci_last_regenerate|i:1679906003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19369d97eb597cca62e4d3fa9ab9bfd95fe184c9', '31.222.203.2', 1679907790, '__ci_last_regenerate|i:1679907790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e43af82530ce5847850676f65ff11a2881ba23a', '31.222.203.2', 1679907791, '__ci_last_regenerate|i:1679907791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36d10254428bdea815e3353dfbf99eccf5771770', '31.222.203.2', 1679907791, '__ci_last_regenerate|i:1679907791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ab05e4bd27f16cdd48c7033497320dcf8cfe87a', '31.222.203.2', 1679907791, '__ci_last_regenerate|i:1679907791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc1364abee934451efca0a4069a384b99bd4f3d', '31.222.203.2', 1679907791, '__ci_last_regenerate|i:1679907791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8691e25b96ea890185cdca1816bf9d096dc9950e', '31.222.203.2', 1679907791, '__ci_last_regenerate|i:1679907791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bc75fdf54912966f0f12daad3d267c4671d3809', '37.111.219.81', 1679908449, '__ci_last_regenerate|i:1679908449;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679908409;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('122d220ce169c0f014a47798d59f9fc5eadf1f37', '37.111.219.81', 1679909300, '__ci_last_regenerate|i:1679909300;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679908495;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('61f9f7c695f29ce4dccbcb92dd8de48156544cdc', '37.111.219.81', 1679913038, '__ci_last_regenerate|i:1679913038;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679909446;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e104dea0e43d7b9bd3ae0f8944dd215a8743f2d', '31.222.203.2', 1679909590, '__ci_last_regenerate|i:1679909590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87abe75221c8eef2346494c344258258406653dc', '31.222.203.2', 1679909590, '__ci_last_regenerate|i:1679909590;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9222ed9629a0695d8e55c8c21e4e0e69f4b515c5', '31.222.203.2', 1679909590, '__ci_last_regenerate|i:1679909590;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9326dbff76b5ef9bd533a6377b1528101677f40d', '31.222.203.2', 1679909591, '__ci_last_regenerate|i:1679909591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eaaa9c4ffa69a25f944adb983c42da3907d0597a', '31.222.203.2', 1679909591, '__ci_last_regenerate|i:1679909591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654293f2acbfe44287aa18ec9a18b0be06573713', '31.222.203.2', 1679909591, '__ci_last_regenerate|i:1679909591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e74360e56048625f70f50b56c5da57d4cb267bc7', '31.222.203.2', 1679911395, '__ci_last_regenerate|i:1679911395;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ccdbed7db4423a39cab3b515ae3b988d1b81ce49', '31.222.203.2', 1679911396, '__ci_last_regenerate|i:1679911396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad7f292d7ff20a7d5e5529799fddf95b05bc7607', '31.222.203.2', 1679911396, '__ci_last_regenerate|i:1679911396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ddd64faf0b38d992e642de9d44e534aec93afe0', '31.222.203.2', 1679911396, '__ci_last_regenerate|i:1679911396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('960caff7028a9a28642c051d61dc15f0e3af6911', '31.222.203.2', 1679911396, '__ci_last_regenerate|i:1679911396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1943ef76320d3ee7be71083ea592078ece69bc7', '31.222.203.2', 1679911396, '__ci_last_regenerate|i:1679911396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5af3f0fac34c06bd2f4e037c3ec37b9dbb88dc8', '116.204.230.28', 1679912097, '__ci_last_regenerate|i:1679912083;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679811057\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54403e6c554a37eb0bee9c34a8b4a2bb9c7d2c82', '37.111.219.81', 1679916786, '__ci_last_regenerate|i:1679916786;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679913055;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a7ab8b84617f4d00bfc0fc7ca09e1e9a4d9283', '31.222.203.2', 1679913197, '__ci_last_regenerate|i:1679913197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e54e8255e7106fc62e569541b21e4f3cfb599c34', '31.222.203.2', 1679913197, '__ci_last_regenerate|i:1679913197;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f31af3db93529afaacc70a447fe0db8637ab2a05', '31.222.203.2', 1679913197, '__ci_last_regenerate|i:1679913197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c5817cbba9e9b1ae4fce07f674f223e84658a4', '31.222.203.2', 1679913197, '__ci_last_regenerate|i:1679913197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f526f98ba15b838ef56259867fe1d940e3a98a0', '31.222.203.2', 1679913197, '__ci_last_regenerate|i:1679913197;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a235890ecf6adb9b11dc82e1e9264f0fc73ab4bf', '31.222.203.2', 1679913197, '__ci_last_regenerate|i:1679913197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e75e0a81d3abe5362882efd675e0b562bfda4816', '31.222.203.2', 1679914989, '__ci_last_regenerate|i:1679914989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fb05d8db649fc0afe20b9649e963e63b0001e50', '31.222.203.2', 1679914989, '__ci_last_regenerate|i:1679914989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea0757b9778164d0b5cb22adae0e136c7b3e11e6', '31.222.203.2', 1679914989, '__ci_last_regenerate|i:1679914989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f603f9d2779c9834e77e70d98c6b03e564f02b35', '31.222.203.2', 1679914990, '__ci_last_regenerate|i:1679914990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6108de9b27feb916be77534e458bcd23aff0b4a', '31.222.203.2', 1679914990, '__ci_last_regenerate|i:1679914990;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0195a25a228d46ceeed43f6987e1442314f7bb9d', '31.222.203.2', 1679914990, '__ci_last_regenerate|i:1679914990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cb70ebe8abb2b34c38b2b6234a742e47fad3f71', '37.111.219.81', 1679922068, '__ci_last_regenerate|i:1679922068;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679916885;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30d6deeebb527c7ae7066606278f51fb23d1366c', '31.222.203.2', 1679916803, '__ci_last_regenerate|i:1679916803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecf464fa02c30a57f6bd67a8d8e426a2dca2951f', '31.222.203.2', 1679916803, '__ci_last_regenerate|i:1679916803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4f336d5f1f558fa709b1eb7ee4242fba58d1f76', '31.222.203.2', 1679916803, '__ci_last_regenerate|i:1679916803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f9258509581baa2c5fe5f57c576964be59eb2cb', '31.222.203.2', 1679916804, '__ci_last_regenerate|i:1679916804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51126700d4e837e1a53e62ea52ef92c15a05e4a6', '31.222.203.2', 1679916804, '__ci_last_regenerate|i:1679916804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60a917b30e2dbedf3ec6222d72d351e975545529', '31.222.203.2', 1679916804, '__ci_last_regenerate|i:1679916804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b72f7bd3ce99d965bdd84e5d07d4cbf1ec9b7150', '31.222.203.2', 1679918587, '__ci_last_regenerate|i:1679918587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c919bdcb30d3d533af2fc437619b0b220ff943', '31.222.203.2', 1679918587, '__ci_last_regenerate|i:1679918587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7c4361f0256059992166e3efaa775acdb957fd3', '31.222.203.2', 1679918587, '__ci_last_regenerate|i:1679918587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('750c1d5d1cfdc49c67374e0b8dc00635020605c3', '31.222.203.2', 1679918587, '__ci_last_regenerate|i:1679918587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d582a1ecaec60d51df7e58c14668e4fc36307ece', '31.222.203.2', 1679918587, '__ci_last_regenerate|i:1679918587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec90899f1a0bcb1bdf9398e7ebe3041a71847c4', '31.222.203.2', 1679918587, '__ci_last_regenerate|i:1679918587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b36e1bb6b586f1a8de32161c0107c33335e4167e', '31.222.203.2', 1679920393, '__ci_last_regenerate|i:1679920393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('590a9c5fbccfbc8b5f74e59055863c8c2509a9d9', '31.222.203.2', 1679920394, '__ci_last_regenerate|i:1679920394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eba0b03448bb9e0621580bd45fce8723ea135ce1', '31.222.203.2', 1679920394, '__ci_last_regenerate|i:1679920394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b2c7e53d6c615270970c9796e17e2df88a4c943', '31.222.203.2', 1679920394, '__ci_last_regenerate|i:1679920394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44dcb3218ca51644b1de0a3cf4950b81ad4bcf79', '31.222.203.2', 1679920394, '__ci_last_regenerate|i:1679920394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3e1c16eded65d9cf6b0cd18d2ac5cd7b6da95e8', '31.222.203.2', 1679920394, '__ci_last_regenerate|i:1679920394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89e2c435693ad71bc4847d620c26f67f1c1f369d', '119.30.41.124', 1679921347, '__ci_last_regenerate|i:1679921316;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679847373\";last_ip|s:13:\"119.30.41.239\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('159d9bc7566c998cd07b89b7baeec60b39317f5d', '37.111.219.81', 1679922302, '__ci_last_regenerate|i:1679922068;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679845567\";last_ip|s:13:\"37.111.219.28\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679922302;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97d19e550c2e3b67346441bf6bcdfdacde8c0882', '31.222.203.2', 1679922188, '__ci_last_regenerate|i:1679922188;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d024c4f79e8d4d3cb475c775170b2b197040b3e', '31.222.203.2', 1679922190, '__ci_last_regenerate|i:1679922190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfb00af6b265123f9086a10aac9afa6e38974346', '31.222.203.2', 1679922190, '__ci_last_regenerate|i:1679922190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8504b139131243f972f8ea3fb0589e2e7e24ae4', '31.222.203.2', 1679922190, '__ci_last_regenerate|i:1679922190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e57e1da946ad1099d0572c699f80f1212af1108', '31.222.203.2', 1679922190, '__ci_last_regenerate|i:1679922190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e294aa9bfe77fb7a1cdef2fb69e759f163c076e0', '31.222.203.2', 1679922190, '__ci_last_regenerate|i:1679922190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a9b2c509eef45d7d3fb6aaa78d7b298deb01a22f', '31.222.203.2', 1679923980, '__ci_last_regenerate|i:1679923980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05ea5c9be383e1aab0f776cf9b4fd5e016247e9e', '31.222.203.2', 1679923980, '__ci_last_regenerate|i:1679923980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe31263e41decea41c2e832b6e9063a86189d8f8', '31.222.203.2', 1679923980, '__ci_last_regenerate|i:1679923980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ac71a69b6e0da0b283f13e44196af859b599853', '31.222.203.2', 1679923982, '__ci_last_regenerate|i:1679923982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5270ffedd4d0d12b4393b57614a6b5c1c92d6dc2', '31.222.203.2', 1679923982, '__ci_last_regenerate|i:1679923982;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a641ec54e8ae818672b7dbdc7e687897def0508f', '31.222.203.2', 1679923982, '__ci_last_regenerate|i:1679923982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c63e44a6f7f2bc3ce1d28b525a245007458d4fc6', '31.222.203.2', 1679925785, '__ci_last_regenerate|i:1679925785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ce078657cad22101e12d27427647fbdd4f8efe', '31.222.203.2', 1679925785, '__ci_last_regenerate|i:1679925785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2d693af2d4877018bed1836783f90dff36b55b7', '31.222.203.2', 1679925785, '__ci_last_regenerate|i:1679925785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d19528614f51d27e009c576de07ec3625aa47893', '31.222.203.2', 1679925785, '__ci_last_regenerate|i:1679925785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4af435b8f3f53e43f6003224b572e5ca23f2978f', '31.222.203.2', 1679925785, '__ci_last_regenerate|i:1679925785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8583cc9488a45c9934d5b4437e289e143c9cf581', '31.222.203.2', 1679925785, '__ci_last_regenerate|i:1679925785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ffecfa91a1526e5ea4c0bb8dbc700f9a72b1f9', '31.222.203.2', 1679927587, '__ci_last_regenerate|i:1679927587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8475cd334cdd8efc164dea1a70c887984d0f72', '31.222.203.2', 1679927587, '__ci_last_regenerate|i:1679927587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cf31846af3945f3e0c4cec7068fd6c1eaa77a7', '31.222.203.2', 1679927587, '__ci_last_regenerate|i:1679927587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf7bc25cd872e75111f9ba0a281f4f02057bf2fb', '31.222.203.2', 1679927588, '__ci_last_regenerate|i:1679927588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2dd13dc8eeb5818f54931c447c0836b0e4e9a1d5', '31.222.203.2', 1679927588, '__ci_last_regenerate|i:1679927588;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2af13b02f194a976bc2762c9676f2a02646301e', '31.222.203.2', 1679927588, '__ci_last_regenerate|i:1679927588;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f1d4141798c76018080eab840116c42e24c563', '31.222.203.2', 1679929386, '__ci_last_regenerate|i:1679929386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('146c051e9709177c687a433484d5d9e879f6f452', '31.222.203.2', 1679929386, '__ci_last_regenerate|i:1679929386;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b21b96f7534a13f3210b12e00bce72e0b14fe123', '31.222.203.2', 1679929386, '__ci_last_regenerate|i:1679929386;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6012d212e573d5a5dabfe2c75cfac0e3bd19c738', '31.222.203.2', 1679929388, '__ci_last_regenerate|i:1679929388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5af80e59de0e82dee6113242c27f7c062f56f4be', '31.222.203.2', 1679929388, '__ci_last_regenerate|i:1679929388;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('003b5b714f3011dd0e7b1344e80c5459c59c2c45', '31.222.203.2', 1679929388, '__ci_last_regenerate|i:1679929388;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bf980165248b6a9d342eb30e61bfb7c7eff46a0', '51.81.186.251', 1679930274, '__ci_last_regenerate|i:1679930255;requested_page|s:19:\"admin/reports/sales\";identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679921326\";last_ip|s:13:\"119.30.41.124\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0150839d3de003fbf06dd9156208a5c2dc074f', '37.111.219.81', 1679931301, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1679931301;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679892271\";last_ip|s:13:\"37.111.219.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679931288;register_id|s:3:\"382\";cash_in_hand|s:9:\"1170.0000\";register_open_time|s:19:\"2023-03-26 21:55:32\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1fc272c5e8f0b727550f736df0deab2b36b6ca1', '31.222.203.2', 1679931193, '__ci_last_regenerate|i:1679931193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4417d47bdd3704a5cc450166fe3e1be26e4f63b3', '31.222.203.2', 1679931194, '__ci_last_regenerate|i:1679931194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('875d2fc4983eaa6c4b267fa41bf8d3a1385846d8', '31.222.203.2', 1679931194, '__ci_last_regenerate|i:1679931194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bc2665d2739c6f583e420ca0f5ef9e51a411fe1', '31.222.203.2', 1679931194, '__ci_last_regenerate|i:1679931194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9d0b762b0bab0ed46909c6b0da309bf82db252e', '31.222.203.2', 1679931194, '__ci_last_regenerate|i:1679931194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0a4ff732c9a113a32a713c79a5343d559ffcf1', '31.222.203.2', 1679931194, '__ci_last_regenerate|i:1679931194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f4b5c59bfff3440d2746b094984db56c8d09b5c', '37.111.219.81', 1679931313, 'requested_page|s:26:\"admin/pos/register_details\";__ci_last_regenerate|i:1679931301;identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679892271\";last_ip|s:13:\"37.111.219.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679931313;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ec08d676055c7c49ae2a4ceb2f0b1b666439861', '31.222.203.2', 1679932986, '__ci_last_regenerate|i:1679932986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6241462e57eace3214eeb78056f5ff9e8ffa1ff', '31.222.203.2', 1679932988, '__ci_last_regenerate|i:1679932988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30ef83b3d6057f6b8153a8e99cade22858d7134b', '31.222.203.2', 1679932988, '__ci_last_regenerate|i:1679932988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd28bb4dca452c3150057db6187c6601df61abf3', '31.222.203.2', 1679932988, '__ci_last_regenerate|i:1679932988;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e6a2beef4125e235187f0b166909397b219fd63', '31.222.203.2', 1679932988, '__ci_last_regenerate|i:1679932988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bb809586f46d3c303691c0b4089100547cb44db', '31.222.203.2', 1679932988, '__ci_last_regenerate|i:1679932988;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62e87bcfe20b3bc6acf531d84bacf8bd0efff262', '31.222.203.2', 1679934793, '__ci_last_regenerate|i:1679934793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0be1c448d79c3ae2ff5b4a19a1229504e232ff2', '31.222.203.2', 1679934793, '__ci_last_regenerate|i:1679934793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40bbfd74873d87733c3b63ddeb03bf3e6441b91d', '31.222.203.2', 1679934793, '__ci_last_regenerate|i:1679934793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ea6baf65b5d12e847f56fe5c9fc9ed4c14da704', '31.222.203.2', 1679934793, '__ci_last_regenerate|i:1679934793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c477d036cfc0aa2e7a0a7fc74c8571b77f8fc2e4', '31.222.203.2', 1679934793, '__ci_last_regenerate|i:1679934793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be98a40ddcd1ece0565e30fce9f5fe38b303cefe', '31.222.203.2', 1679934793, '__ci_last_regenerate|i:1679934793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d5a53a94d7a9742d98a597982ae0920ae4754e4', '31.222.203.2', 1679936587, '__ci_last_regenerate|i:1679936587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e5e50777db35935a9873f3a841b5a39f9b1df2', '31.222.203.2', 1679936587, '__ci_last_regenerate|i:1679936587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c657117f151535a90aff081cd4493d258559f56', '31.222.203.2', 1679936587, '__ci_last_regenerate|i:1679936587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde840021cc8546044bf497a58e2290946bfccef', '31.222.203.2', 1679936587, '__ci_last_regenerate|i:1679936587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3ddc079bd94dd54f865a0f40ceccbbcb02d980', '31.222.203.2', 1679936587, '__ci_last_regenerate|i:1679936587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6202b878a2ad179b2097f90e98d5e09c772baf4', '31.222.203.2', 1679936587, '__ci_last_regenerate|i:1679936587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a8eb13b258f1bb22328ceaed44339d2bb307839', '79.124.49.10', 1679937759, '__ci_last_regenerate|i:1679937759;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('beae7c8e4730513a081d8a51e3923e668bfb2800', '79.124.49.10', 1679937760, '__ci_last_regenerate|i:1679937760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa42e8a52be6309c446c250f903999292fc77f1', '79.124.49.10', 1679937760, '__ci_last_regenerate|i:1679937760;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a83ac2f7ce44852bca74a122dca06a8423f64189', '79.124.49.10', 1679937760, '__ci_last_regenerate|i:1679937760;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2527a4f7707c1779a9a274a6cd319700e71e9f5', '79.124.49.10', 1679937768, '__ci_last_regenerate|i:1679937768;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f4e63065fd89d77a42595f7e2759e947082e4e', '79.124.49.10', 1679937768, '__ci_last_regenerate|i:1679937768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea349d42ef8e757d211bd5d77f349bd45b0c44fd', '79.124.49.10', 1679937768, '__ci_last_regenerate|i:1679937768;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4be0471f1db1255095fa67e44a075520cd18b2d9', '79.124.49.10', 1679937769, '__ci_last_regenerate|i:1679937769;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('805f50ac021eb64da2b4063a5c519e8616e5c5e5', '79.124.49.10', 1679937776, '__ci_last_regenerate|i:1679937776;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c33db1b42a05fd68a6ae7bea8a97cf01c476fee', '79.124.49.10', 1679937776, '__ci_last_regenerate|i:1679937776;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fa6b3d6f83364948b3a7a6af6fa69c1da86d3a7', '79.124.49.10', 1679937776, '__ci_last_regenerate|i:1679937776;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7e3caf1af1dc1b90846fa38e9e97468af5a1d2c', '79.124.49.10', 1679937777, '__ci_last_regenerate|i:1679937777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3b3aac793934144bae69854bb72477bd8adb1129', '79.124.49.10', 1679937784, '__ci_last_regenerate|i:1679937784;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3734bcbe4b24fea809e446689a7897b37bd2be1a', '79.124.49.10', 1679937784, '__ci_last_regenerate|i:1679937784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f32197370cda659bc3a7f7d65f2a04aa20f02ba1', '79.124.49.10', 1679937785, '__ci_last_regenerate|i:1679937785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98753fb774b6801259a39d4d5ea2fb0fc73edc1d', '79.124.49.10', 1679937785, '__ci_last_regenerate|i:1679937785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3d29095e9e1e185daeab63c6a9c0797c68c6d96', '79.124.49.10', 1679937792, '__ci_last_regenerate|i:1679937792;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c69661734217ecc08446dc4f90fe280b304926', '79.124.49.10', 1679937792, '__ci_last_regenerate|i:1679937792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a40af0b18e7a9d440e58c82c21f5fdf933f45b', '79.124.49.10', 1679937792, '__ci_last_regenerate|i:1679937792;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ce16b775433719e94f3940ede8d42fde250460', '79.124.49.10', 1679937793, '__ci_last_regenerate|i:1679937793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73dc61960dd02b95e6180677cc523772d0452499', '79.124.49.10', 1679937800, '__ci_last_regenerate|i:1679937800;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d14e5f3a1dfbf4a9a9e35207ac7a1c17cd8f9a', '79.124.49.10', 1679937800, '__ci_last_regenerate|i:1679937800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e207697e7226c43010126ae9b5763c5e9f840516', '79.124.49.10', 1679937800, '__ci_last_regenerate|i:1679937800;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66707d07d1ce35df5c5f7f11d852bcd179241844', '79.124.49.10', 1679937801, '__ci_last_regenerate|i:1679937801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c638d9e5220dfe1c67258d117381af91ecd33076', '79.124.49.10', 1679937808, '__ci_last_regenerate|i:1679937808;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2c2457d040d3e098a5c6ba3838cab062c1b81e', '79.124.49.10', 1679937808, '__ci_last_regenerate|i:1679937808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7433045a95b75a7c03e41880abbfe335d5dfb3d0', '79.124.49.10', 1679937808, '__ci_last_regenerate|i:1679937808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14c479f362ae8e131ec0984f694de5ec6b3798b7', '79.124.49.10', 1679937809, '__ci_last_regenerate|i:1679937809;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a54449a25a6b4f0665160ff4f8588d51afae2f66', '79.124.49.10', 1679937816, '__ci_last_regenerate|i:1679937816;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e02b70acb70094736c7f3ac73b054815636419b', '79.124.49.10', 1679937816, '__ci_last_regenerate|i:1679937816;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('845ad8eb71ab339efcb6ec090bf0ae75bb2b0808', '79.124.49.10', 1679937817, '__ci_last_regenerate|i:1679937817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea3718b9e17fd2474268310c29b5d00f33b2e7e6', '79.124.49.10', 1679937817, '__ci_last_regenerate|i:1679937817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8acfd73c4451e1186f8372e9a309a8c87421000e', '79.124.49.10', 1679937824, '__ci_last_regenerate|i:1679937824;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0c1498267f361c03f8d51682cf4873c746468f5', '79.124.49.10', 1679937824, '__ci_last_regenerate|i:1679937824;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887da582fb6b38e1093245f44441f015bf0d68d0', '79.124.49.10', 1679937824, '__ci_last_regenerate|i:1679937824;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cf4ea959aff2f913600c5889c59445c41a29fe0', '79.124.49.10', 1679937825, '__ci_last_regenerate|i:1679937825;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf5baa7d1d1f5954cf8f27318d89b2498a40b1df', '79.124.49.10', 1679937832, '__ci_last_regenerate|i:1679937832;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6471abbda382684851abd22e2a8cc10231f04bd', '79.124.49.10', 1679937832, '__ci_last_regenerate|i:1679937832;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557f3f08f0ed62b3f77825c256be3152906a90ed', '79.124.49.10', 1679937832, '__ci_last_regenerate|i:1679937832;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5aea01bc078585669404f2bce7318131e86e467', '79.124.49.10', 1679937833, '__ci_last_regenerate|i:1679937833;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('809d93ac36465f01d7634012c7b6ceccf7bf58ed', '79.124.49.10', 1679937840, '__ci_last_regenerate|i:1679937840;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90ee6bb1db5da897c119fe36d2d7319ced143517', '79.124.49.10', 1679937840, '__ci_last_regenerate|i:1679937840;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aad0746914617a0cc7b7d1ef80050327ccba15c', '79.124.49.10', 1679937840, '__ci_last_regenerate|i:1679937840;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3b3b9c7dd0552767675146e8d0446feba7846e8', '79.124.49.10', 1679937841, '__ci_last_regenerate|i:1679937841;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e64899679248b8e79aab615a9d443275c6621c7', '79.124.49.10', 1679937848, '__ci_last_regenerate|i:1679937848;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50b1f88b0654543c554d925c00dcbfe9a63b9b01', '79.124.49.10', 1679937848, '__ci_last_regenerate|i:1679937848;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aac7775f48f953d9abe8c82f82f770561d0b9933', '79.124.49.10', 1679937849, '__ci_last_regenerate|i:1679937849;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac89601b68cbef9c90d0ac1adb9ac7a45dede962', '79.124.49.10', 1679937849, '__ci_last_regenerate|i:1679937849;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6b6eb301548e21f2b86ec689614460e9bc72eae', '79.124.49.10', 1679937856, '__ci_last_regenerate|i:1679937856;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('092694b31bf86430c8d78bb4740abdee2c25553c', '79.124.49.10', 1679937856, '__ci_last_regenerate|i:1679937856;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a92782d8bf1d35bee0c9ca52beeb0109968edaa', '79.124.49.10', 1679937857, '__ci_last_regenerate|i:1679937857;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0a2e404e93ce26912e502674416e747ecd29c3b', '79.124.49.10', 1679937857, '__ci_last_regenerate|i:1679937857;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('921b1ea54f839f0716dc2338f2e7f1026742b3bc', '79.124.49.10', 1679937864, '__ci_last_regenerate|i:1679937864;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3c2712af8d7011d886a56866d90df235307730a', '79.124.49.10', 1679937864, '__ci_last_regenerate|i:1679937864;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f4edb3779ae1f3d1c66fb57d55155c608a1fecf8', '79.124.49.10', 1679937864, '__ci_last_regenerate|i:1679937864;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db3843212fdd89e07cabdf61a4d234498f34b363', '79.124.49.10', 1679937865, '__ci_last_regenerate|i:1679937865;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23e6c83c6627b7db2b459a07201e325a0179f2ed', '79.124.49.10', 1679937872, '__ci_last_regenerate|i:1679937872;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f2fa56c19afab9d24844b08baf88ce53e19a4131', '79.124.49.10', 1679937872, '__ci_last_regenerate|i:1679937872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0db8720068213696556ba0d203085eb77fc6324d', '79.124.49.10', 1679937872, '__ci_last_regenerate|i:1679937872;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94ec1e70a4e8c95c64252ebcd9fe5666a81cbc1f', '79.124.49.10', 1679937873, '__ci_last_regenerate|i:1679937873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3572fee5787943c02dfd7c9760a50bab3491923c', '79.124.49.10', 1679937880, '__ci_last_regenerate|i:1679937880;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e2a287c89b75dfb53cd6cc309dc98d15e73f6d6f', '79.124.49.10', 1679937880, '__ci_last_regenerate|i:1679937880;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eef160848cfa57acf33c3737b0bb66307b744a86', '79.124.49.10', 1679937880, '__ci_last_regenerate|i:1679937880;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334e43eb4a05506ad73fa5de4062ecbeb384dbc0', '79.124.49.10', 1679937881, '__ci_last_regenerate|i:1679937881;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08ae93c67ff1984715aeebb1d5d4df5a8b2fb1df', '79.124.49.10', 1679937888, '__ci_last_regenerate|i:1679937888;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96782ccfa73b0f303b2d4da50fa1b9f0d95edc27', '79.124.49.10', 1679937888, '__ci_last_regenerate|i:1679937888;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65eb45c586bbdd0b72e2ccdcb96294bdb2495dd7', '79.124.49.10', 1679937888, '__ci_last_regenerate|i:1679937888;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8201ed29c2c48b3b324fd53001e5c1d2b7f86e1', '79.124.49.10', 1679937889, '__ci_last_regenerate|i:1679937889;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('47caef2035369e483a8759f62c7cf30537d46d53', '79.124.49.10', 1679937896, '__ci_last_regenerate|i:1679937896;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14f6e76d354e95300ac17a10dd9b10104d4909fc', '79.124.49.10', 1679937896, '__ci_last_regenerate|i:1679937896;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32096dabc7c1f3a2c9cce1869737147d46392a65', '79.124.49.10', 1679937896, '__ci_last_regenerate|i:1679937896;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7fbfb8c589e86235bfb30c3df4bc488f8668fe', '79.124.49.10', 1679937897, '__ci_last_regenerate|i:1679937897;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7c72b43eec2ed120a65fe4bed13cf72ab0e7765', '79.124.49.10', 1679937904, '__ci_last_regenerate|i:1679937904;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('882a9edc2eb27caf07eccd6eb9ab447e826e9557', '79.124.49.10', 1679937904, '__ci_last_regenerate|i:1679937904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab6755fe033225e270fa32aff4714daebe350d1f', '79.124.49.10', 1679937905, '__ci_last_regenerate|i:1679937905;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6509bedd2877ed937daf04120d320a610c8b0674', '79.124.49.10', 1679937905, '__ci_last_regenerate|i:1679937905;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b5fd5888709d6e2c00ad5b2b7c57ffd2a6de26', '79.124.49.10', 1679937912, '__ci_last_regenerate|i:1679937912;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97be5def08100711ebfa75582fd3de4ac56977c3', '79.124.49.10', 1679937912, '__ci_last_regenerate|i:1679937912;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75b5940b6a8d3638f9afa4c19fc0092bbcdfcdd7', '79.124.49.10', 1679937912, '__ci_last_regenerate|i:1679937912;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1762d539587f6f42cde13e1a19af55c4705b9675', '79.124.49.10', 1679937913, '__ci_last_regenerate|i:1679937913;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b2c656d515dea35b9ed54bf9e11d39026f4b13ed', '79.124.49.10', 1679937920, '__ci_last_regenerate|i:1679937920;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a60541d93767ecab7aecb0b1f43a46bf8d7f48f6', '79.124.49.10', 1679937920, '__ci_last_regenerate|i:1679937920;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde1060bc6002bd346918e6676cf87c57efb5d2d', '79.124.49.10', 1679937921, '__ci_last_regenerate|i:1679937921;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37dd57fc782c7b0974d45813ad2577be946d988', '79.124.49.10', 1679937921, '__ci_last_regenerate|i:1679937921;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2580d929824ee9a472187b89b6828a12275fc031', '79.124.49.10', 1679937928, '__ci_last_regenerate|i:1679937928;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcde5add8dafc3c4b5cf248457d93a4c7be3064e', '79.124.49.10', 1679937928, '__ci_last_regenerate|i:1679937928;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('950aa9549fa03244950c37f3f5f69f8ddc22ca19', '79.124.49.10', 1679937928, '__ci_last_regenerate|i:1679937928;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c0ff89fa06eece6928708f97409f08a8e15c555', '79.124.49.10', 1679937929, '__ci_last_regenerate|i:1679937929;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7407a76238ba24a78375ac240bd8bcfa8d280fcf', '79.124.49.10', 1679937936, '__ci_last_regenerate|i:1679937936;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31a6a3ebd65ec3495749ff85399364cb5c470fb5', '79.124.49.10', 1679937936, '__ci_last_regenerate|i:1679937936;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05afbf54e323b7da96ecd57df845834bfa6d34f6', '79.124.49.10', 1679937937, '__ci_last_regenerate|i:1679937936;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbb6448948899bb462de321c456b70615a7eb064', '79.124.49.10', 1679937937, '__ci_last_regenerate|i:1679937937;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('acd48c0d58e8fbecf630dc9d9ed2820a655e4ce8', '79.124.49.10', 1679937944, '__ci_last_regenerate|i:1679937944;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bb355f8009ff6ce8e33508196c42ee7cbb35368c', '79.124.49.10', 1679937944, '__ci_last_regenerate|i:1679937944;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b25a9713a0d58c631fa98394fcc13bc833b0170', '79.124.49.10', 1679937944, '__ci_last_regenerate|i:1679937944;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5bc5129dbfe7c792d1a8ac97063a02fdb2d73dd7', '79.124.49.10', 1679937945, '__ci_last_regenerate|i:1679937945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6150bf7737b47ab9cfad058e7142ba3630117f55', '79.124.49.10', 1679937952, '__ci_last_regenerate|i:1679937952;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e27996e22381cb9e635f712637a22149220569', '79.124.49.10', 1679937952, '__ci_last_regenerate|i:1679937952;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b142d3e415e31b1345755d3c47fa07fcf7f2c7e', '79.124.49.10', 1679937952, '__ci_last_regenerate|i:1679937952;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69e82accd8a5bbca86436cb334aa1200f2c0c40a', '79.124.49.10', 1679937953, '__ci_last_regenerate|i:1679937953;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3bc6c4f3ff9c727632107aa855d1adc14df148', '79.124.49.10', 1679937967, '__ci_last_regenerate|i:1679937967;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b9ebceae40eec6a2c3aa775470ad60962ee2989', '79.124.49.10', 1679937967, '__ci_last_regenerate|i:1679937967;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bee8b62e5b1c846e2cdb68c802d55a6863fa251', '79.124.49.10', 1679937968, '__ci_last_regenerate|i:1679937968;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9831dc4ac73284e1afd69cca6e512a811c9c415', '79.124.49.10', 1679937968, '__ci_last_regenerate|i:1679937968;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f4ee0fdcca5a87b6646f170b4277d9d1c0c5c78', '79.124.49.10', 1679937982, '__ci_last_regenerate|i:1679937982;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0097093270709b708443769e2f968662a9220fdf', '79.124.49.10', 1679937982, '__ci_last_regenerate|i:1679937982;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58fc6ace80ffc8e4cdd8980d57d1bbd88d7209c6', '79.124.49.10', 1679937983, '__ci_last_regenerate|i:1679937983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a501e54ec869216f41c883290b1d445971f63036', '79.124.49.10', 1679937983, '__ci_last_regenerate|i:1679937983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53cb69fcd6b8bbcd610f60f2322b59f41e72f4db', '79.124.49.10', 1679937990, '__ci_last_regenerate|i:1679937990;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6957fb956fa903648992bc38c842af4e9fc00ba8', '79.124.49.10', 1679937990, '__ci_last_regenerate|i:1679937990;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc06e97b4472efa4ec24a2a49cc33f7cdbcd4e4d', '79.124.49.10', 1679937991, '__ci_last_regenerate|i:1679937991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f12361fcdc81146f8d242d8432e8812876212c', '79.124.49.10', 1679937991, '__ci_last_regenerate|i:1679937991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e876fdc5ed64552a34a406d07756dce69ca6445', '79.124.49.10', 1679937998, '__ci_last_regenerate|i:1679937998;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc1faabbdd38c2054e394e15f0f724ad671abaf4', '79.124.49.10', 1679937998, '__ci_last_regenerate|i:1679937998;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afa11b027826c08c38b486d6870cf0d0b1961032', '79.124.49.10', 1679937999, '__ci_last_regenerate|i:1679937999;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67c801a94638bfb48cdfea5975d77ac1971404b7', '79.124.49.10', 1679937999, '__ci_last_regenerate|i:1679937999;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22157d2799f0a17937108368afa7b5cdf24e86f6', '79.124.49.10', 1679938006, '__ci_last_regenerate|i:1679938006;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f116773efa0476d3161bcc87d44a1fa032df0972', '79.124.49.10', 1679938006, '__ci_last_regenerate|i:1679938006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d37900d67007328ceacdd19d1138c3f9b82202e', '79.124.49.10', 1679938007, '__ci_last_regenerate|i:1679938007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d5aaf95e3dd1d85c9e98a7b5d6c16b47445fb5a', '79.124.49.10', 1679938007, '__ci_last_regenerate|i:1679938007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14a8675b03cea55f0bdde2146f31094c7251df4b', '79.124.49.10', 1679938014, '__ci_last_regenerate|i:1679938014;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fb8208355faea77ad680764e0bdcf57d0f956fa', '79.124.49.10', 1679938014, '__ci_last_regenerate|i:1679938014;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee48a29b0e2e15020a92a42523abaafd39ba5f91', '79.124.49.10', 1679938014, '__ci_last_regenerate|i:1679938014;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2132cf1027a9a782c978f33b637609c5d3c43c0', '79.124.49.10', 1679938015, '__ci_last_regenerate|i:1679938015;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bac386b682108a302e030218720e80e91ffd255b', '79.124.49.10', 1679938022, '__ci_last_regenerate|i:1679938022;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7fba80ba32bcef3dad972619672262be01c53e2', '79.124.49.10', 1679938022, '__ci_last_regenerate|i:1679938022;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3752cb910bd345efc0ce7624fd7fe18d2c64fd6b', '79.124.49.10', 1679938023, '__ci_last_regenerate|i:1679938023;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62f61e22e3a1ff27861743bfc31fdf068b9a7da6', '79.124.49.10', 1679938023, '__ci_last_regenerate|i:1679938023;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77191fabf28c3a84b27b3ae3f16d2c851a833d59', '79.124.49.10', 1679938030, '__ci_last_regenerate|i:1679938030;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9557b958fda092bb05aa6218e768e124d834e45a', '79.124.49.10', 1679938030, '__ci_last_regenerate|i:1679938030;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cee46d1af3b763f6935101477dfa2547d3d60dcf', '79.124.49.10', 1679938031, '__ci_last_regenerate|i:1679938031;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec36fdce56f0c1bcf73c7e1197b4acf7cc99b3d7', '79.124.49.10', 1679938031, '__ci_last_regenerate|i:1679938031;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('911c20394324a4d2fe58e5d6e9faca8fd92f71c7', '79.124.49.10', 1679938038, '__ci_last_regenerate|i:1679938038;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3b575216e39339579806e106a985bcbd6fbb491', '79.124.49.10', 1679938038, '__ci_last_regenerate|i:1679938038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bec29f35e163857dc26500c8f41e8ab819664584', '79.124.49.10', 1679938038, '__ci_last_regenerate|i:1679938038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7c838ba97258a74c47d747752eec54df488bd19', '79.124.49.10', 1679938039, '__ci_last_regenerate|i:1679938039;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f60dbd227fe78112bfd91161b2ebc9bfab5e28e', '79.124.49.10', 1679938046, '__ci_last_regenerate|i:1679938046;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3a7003923aaac61c1cf1f006a73345c1725b2e1', '79.124.49.10', 1679938046, '__ci_last_regenerate|i:1679938046;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47d179b3954a10a61deaa922f65599f1aadab18', '79.124.49.10', 1679938047, '__ci_last_regenerate|i:1679938047;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10f77a4f29bf5777a66e330610379c61a41953f1', '79.124.49.10', 1679938047, '__ci_last_regenerate|i:1679938047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1725fdc693b253fd9cf6087f710b1304a007cd79', '31.222.203.2', 1679938385, '__ci_last_regenerate|i:1679938385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('502d837204ffc1c39f01bf69380203da11221964', '31.222.203.2', 1679938385, '__ci_last_regenerate|i:1679938385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('381ea538ffb17c48809ab8eb5ec12eafd42e1250', '31.222.203.2', 1679938385, '__ci_last_regenerate|i:1679938385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923fb8e1dc2c183299fa938e9dfed8fcbe663572', '31.222.203.2', 1679938385, '__ci_last_regenerate|i:1679938385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6650e70fbc68ff11ba0086a58aa8140396e6168', '31.222.203.2', 1679938385, '__ci_last_regenerate|i:1679938385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ae94eb92e5117a62e6882f62b681ed50539bd5d', '31.222.203.2', 1679938385, '__ci_last_regenerate|i:1679938385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4661e977ce474337ee2d39ab22893b1a7424bde9', '209.188.18.187', 1679939218, '__ci_last_regenerate|i:1679939218;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5daa0edd79b2a4143c3f14e286126f198dd55b02', '209.188.18.187', 1679939220, '__ci_last_regenerate|i:1679939220;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3912819bfd4a0d880d0f35a1c389098ca2e640bc', '209.188.18.187', 1679939222, '__ci_last_regenerate|i:1679939222;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de75aad5d4c99a5b78adb0fa8b4d18733fd086c', '209.188.18.187', 1679939224, '__ci_last_regenerate|i:1679939224;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3428ea1ac409f0591319776e87fd6810b41c8838', '157.230.249.205', 1679939689, '__ci_last_regenerate|i:1679939689;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a765c6ead2a602504102a1ff3c9fef9563a7188b', '157.230.249.205', 1679939690, '__ci_last_regenerate|i:1679939690;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a100ba45205ca7d3b92fa62769e989d96ed1f6', '157.230.249.205', 1679939693, '__ci_last_regenerate|i:1679939693;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92cbf083beecfef907d9112d44df174c8853778', '157.230.249.205', 1679939693, '__ci_last_regenerate|i:1679939693;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1a630969f6de18cb8e286b60e5eaea9b4adcb19', '157.230.249.205', 1679939695, '__ci_last_regenerate|i:1679939695;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd96432cfd4243a023c3a64bada583084fa45885', '157.230.249.205', 1679939696, '__ci_last_regenerate|i:1679939696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d4d074e03ee51749e9e3c41ecc38e4614b602be', '157.230.249.205', 1679939696, '__ci_last_regenerate|i:1679939696;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc9e2b0ddfa9f66c1e5957040a9c1b800807b3ec', '157.230.249.205', 1679939696, '__ci_last_regenerate|i:1679939696;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d95df223f7e6be4b8aca948d9d1ca38c3aa1955e', '157.230.249.205', 1679939697, '__ci_last_regenerate|i:1679939697;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a6e1e11ed7e384991dd73a96f9d45e0d76e14ab', '157.230.249.205', 1679939698, '__ci_last_regenerate|i:1679939698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20a38972a4f644d0f55b6a7f388630bd5cc31015', '157.230.249.205', 1679939698, '__ci_last_regenerate|i:1679939698;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41548fd1488ff35072ad398982a76fe09a651586', '157.230.249.205', 1679939698, '__ci_last_regenerate|i:1679939698;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4c3323e2f658935ca2bde4b4d88234f9dacfd7a', '157.230.249.205', 1679939701, '__ci_last_regenerate|i:1679939701;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('096198638b09e891f899a21da21912dc4649aa32', '157.230.249.205', 1679939701, '__ci_last_regenerate|i:1679939701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a8f0cc91b699604d6a2b45b996437744c44d9fe', '157.230.249.205', 1679939702, '__ci_last_regenerate|i:1679939702;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8a779d546c1c6523e844fab78791725797ba07f', '157.230.249.205', 1679939702, '__ci_last_regenerate|i:1679939702;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b2ea40badb5c6a473e570f47dc4e4b8610e45ec', '157.230.249.205', 1679939706, '__ci_last_regenerate|i:1679939706;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27f6d13518293773116bac4b619f19d1392fe600', '157.230.249.205', 1679939706, '__ci_last_regenerate|i:1679939706;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cdb2dd02989fa12003a7334b13e11379cdd7d03', '157.230.249.205', 1679939707, '__ci_last_regenerate|i:1679939707;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50976bae406f5a8e8c8a118b18bca9fc3a66b3e8', '157.230.249.205', 1679939707, '__ci_last_regenerate|i:1679939707;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c035e0bd49bd8fa69ceb0b8de3ffbf14963c1e4', '157.230.249.205', 1679939709, '__ci_last_regenerate|i:1679939709;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5c26d17e5eb1e85455e805bc6e721b20fa79ea3', '157.230.249.205', 1679939710, '__ci_last_regenerate|i:1679939710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70e873fc549da530ac3eb440a558268bb56c3dff', '157.230.249.205', 1679939710, '__ci_last_regenerate|i:1679939710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cde07babbe8258a53d3fd718d98f57cff18b4eb', '157.230.249.205', 1679939710, '__ci_last_regenerate|i:1679939710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f76095bf5042d7e22c56f1072dc59ad28d1a0a31', '157.230.249.205', 1679939712, '__ci_last_regenerate|i:1679939712;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2ebae8a9216a93e11bb1b069089fa0333b33dfe', '157.230.249.205', 1679939712, '__ci_last_regenerate|i:1679939712;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c31e909252782649ec877be0223dc407f790a5eb', '157.230.249.205', 1679939712, '__ci_last_regenerate|i:1679939712;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f720c2f288a1379c7119f0e97b7d7b1f1e1f6d24', '157.230.249.205', 1679939713, '__ci_last_regenerate|i:1679939713;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45410f65723f3c496766d6351a6bf3498689c641', '157.230.249.205', 1679939714, '__ci_last_regenerate|i:1679939714;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('149dd8d21c8a387f1b83141bdc7824d9798e8c33', '157.230.249.205', 1679939715, '__ci_last_regenerate|i:1679939715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11105ee12d946810e9af0115f1df1f35dce4ca3c', '157.230.249.205', 1679939715, '__ci_last_regenerate|i:1679939715;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d426b6c5c5335cf306d628d8d51bf21fd898e427', '157.230.249.205', 1679939715, '__ci_last_regenerate|i:1679939715;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d726f6e3a3cd3d0ab08f442775ccad27e6f17d', '157.230.249.205', 1679939716, '__ci_last_regenerate|i:1679939716;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5238ca83e565e1aa9f36f02709a6295782c23a64', '157.230.249.205', 1679939717, '__ci_last_regenerate|i:1679939717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b9db8f32c72f380c9f7800934ea0e1d7898b2fe', '157.230.249.205', 1679939717, '__ci_last_regenerate|i:1679939717;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb6385cbd4fc019c667c23c2ddee6ba19ff37bb2', '157.230.249.205', 1679939717, '__ci_last_regenerate|i:1679939717;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dc719229208cf3f375fcb828d52ecf91604b4e4', '157.230.249.205', 1679939719, '__ci_last_regenerate|i:1679939719;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7656439540d90c350f017a2509fbfb920c0eb7cb', '157.230.249.205', 1679939719, '__ci_last_regenerate|i:1679939719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6af095f2eb0a19ddf6ff19ffb97d8f7ee8735a94', '157.230.249.205', 1679939720, '__ci_last_regenerate|i:1679939720;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7adf96b5e65706a95ddfd97431406027b1a4a82', '157.230.249.205', 1679939720, '__ci_last_regenerate|i:1679939720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af16b865a2e8eeedab84cc0374f50613278c3a52', '157.230.249.205', 1679939722, '__ci_last_regenerate|i:1679939722;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef327ec3badae8c324124f78bc38b15fa9ec4d3c', '157.230.249.205', 1679939723, '__ci_last_regenerate|i:1679939723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8cf0432c474a75345b730a8025b6b3330b3d073d', '157.230.249.205', 1679939723, '__ci_last_regenerate|i:1679939723;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87bd8510425f2fd6c278cd2004e42e00e78d2027', '157.230.249.205', 1679939723, '__ci_last_regenerate|i:1679939723;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb5e805d0595fc1d90e4006fa32fce10bbb4c11', '157.230.249.205', 1679939725, '__ci_last_regenerate|i:1679939725;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85f845ff54bc57f4bdd6b1100d8d40343848b238', '157.230.249.205', 1679939726, '__ci_last_regenerate|i:1679939726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f7c040755166f683d20035d11e16972d9d6af6d', '157.230.249.205', 1679939726, '__ci_last_regenerate|i:1679939726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2afc300bd3a16531a838b1ed36202fffde9dc9e1', '157.230.249.205', 1679939726, '__ci_last_regenerate|i:1679939726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c49e9b26a2918c791f5248da610b128a3c67de7', '157.230.249.205', 1679939728, '__ci_last_regenerate|i:1679939728;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e419e55caf03af93d1909996e0a7e34b8b4a424', '157.230.249.205', 1679939728, '__ci_last_regenerate|i:1679939728;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c50f385a2fbf02f29f59c698f4120f1a0a05ce36', '157.230.249.205', 1679939729, '__ci_last_regenerate|i:1679939729;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35eada0588840c1a786bbf282b372688b23f7e9e', '157.230.249.205', 1679939729, '__ci_last_regenerate|i:1679939729;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('136a35a72a4075fab59e50064d9a8b8faf093bba', '157.230.249.205', 1679939730, '__ci_last_regenerate|i:1679939730;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('674ad87776cf5ace1b00fe087896ad6762f87bdd', '157.230.249.205', 1679939730, '__ci_last_regenerate|i:1679939730;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('804c1efb18b0622efffa2c44c8e0c3d6858e1d2b', '157.230.249.205', 1679939731, '__ci_last_regenerate|i:1679939731;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d03401ca18754912329e3db746068c77c0dc981c', '157.230.249.205', 1679939731, '__ci_last_regenerate|i:1679939731;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05148f1bffc07e479311583f78bc1db4b00a4a98', '157.230.249.205', 1679939732, '__ci_last_regenerate|i:1679939732;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('527a949a17f88519ca7962dfd2ad0cadf00bedac', '157.230.249.205', 1679939733, '__ci_last_regenerate|i:1679939733;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72186b061cf48e418e4fd9fa9628af8829e55cbc', '157.230.249.205', 1679939733, '__ci_last_regenerate|i:1679939733;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75cdf9d9c18fac00792c3e7dbe92f2c85ac5a131', '157.230.249.205', 1679939734, '__ci_last_regenerate|i:1679939734;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25afd082c644ba7a8a492c1386ef1d27782c68ac', '157.230.249.205', 1679939735, '__ci_last_regenerate|i:1679939735;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f07193414fc90c49bbd39df307b832d2c73a124', '157.230.249.205', 1679939736, '__ci_last_regenerate|i:1679939736;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('019bbb7a206a401f77de77a54d42e24d594b7e07', '157.230.249.205', 1679939736, '__ci_last_regenerate|i:1679939736;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7ac3ffafd71009f3ddeb95790a4975c00dd89ba', '157.230.249.205', 1679939737, '__ci_last_regenerate|i:1679939737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57146ab1a03305ec46a6853f6791e4cbde97434b', '157.230.249.205', 1679939740, '__ci_last_regenerate|i:1679939740;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0f6ff1f68e193fc232e6a16f6c8e095ec26d648', '157.230.249.205', 1679939741, '__ci_last_regenerate|i:1679939741;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1725fe4e09ec5f94096517b2fcc16c6d6d75382', '157.230.249.205', 1679939741, '__ci_last_regenerate|i:1679939741;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cdbb4bd49bea88e42295e78a9de193b75e82254', '157.230.249.205', 1679939742, '__ci_last_regenerate|i:1679939742;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a0735625f4f4cec2bb25a6bff427800813454c9', '157.230.249.205', 1679939743, '__ci_last_regenerate|i:1679939743;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade4165295a5a2626a90382b9d46113d890f7eb6', '157.230.249.205', 1679939744, '__ci_last_regenerate|i:1679939744;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7fbb141c06a9781d1ea76576e44f7176f8ce18f0', '157.230.249.205', 1679939744, '__ci_last_regenerate|i:1679939744;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3e12fe7e4dcfb784bda2b883590dc9545ca652', '157.230.249.205', 1679939745, '__ci_last_regenerate|i:1679939745;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d7518f9f8b9605a060c9a7b454c62adbed071e4', '157.230.249.205', 1679939746, '__ci_last_regenerate|i:1679939746;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a64fb4d7995c72a8357fb057190550e7c3c050f', '157.230.249.205', 1679939747, '__ci_last_regenerate|i:1679939747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e69fb86bb8d5bf13712f79b41ada2f0ea6e5764a', '157.230.249.205', 1679939747, '__ci_last_regenerate|i:1679939747;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e8eca45da6c21258ce93a53a35f4a976739f439', '157.230.249.205', 1679939747, '__ci_last_regenerate|i:1679939747;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2528ef97e1beca65c070db9e5d585bca7ef5d22', '157.230.249.205', 1679939748, '__ci_last_regenerate|i:1679939748;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c507721ae7b59c0b832e46bdb7a070769891d6', '157.230.249.205', 1679939749, '__ci_last_regenerate|i:1679939749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc52b30de97449a7766bc7bba7f0d2b75ddfae9f', '157.230.249.205', 1679939749, '__ci_last_regenerate|i:1679939749;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('324ec01207e9271286234ba2f71999bd3e3716b1', '157.230.249.205', 1679939749, '__ci_last_regenerate|i:1679939749;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfb4bbddab2a5f139a0dfba6535e3774e4c32a17', '157.230.249.205', 1679939751, '__ci_last_regenerate|i:1679939751;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec9235d49f7a22ec2a0e1b8a8c0ae2077eaa548b', '157.230.249.205', 1679939752, '__ci_last_regenerate|i:1679939752;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('908cad1b70b4a4a37678bd46d736469540bf33ff', '157.230.249.205', 1679939752, '__ci_last_regenerate|i:1679939752;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65f028cf9f393ac8a9122de9663423c6c52c1a63', '157.230.249.205', 1679939753, '__ci_last_regenerate|i:1679939753;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ff2d7c657bc8653a80527fe0cf3cdfc0bde27f8', '157.230.249.205', 1679939755, '__ci_last_regenerate|i:1679939755;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcefc2ce547244dddf110a7dff945b6d18075d29', '157.230.249.205', 1679939756, '__ci_last_regenerate|i:1679939756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf63430979553815704f2a6999fe14a852360f53', '157.230.249.205', 1679939756, '__ci_last_regenerate|i:1679939756;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c100589baff5b2522f3838e4aa60fabe704ca04', '157.230.249.205', 1679939756, '__ci_last_regenerate|i:1679939756;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87fdcad56d08ff757dc9a625a68a63ea86867fa0', '157.230.249.205', 1679939758, '__ci_last_regenerate|i:1679939758;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c86cbd8082c72ca081e5aa9aec5de0f53cf87385', '157.230.249.205', 1679939759, '__ci_last_regenerate|i:1679939759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7ca02c410bdc589e58aa968d77841ad04ca9e5e', '157.230.249.205', 1679939759, '__ci_last_regenerate|i:1679939759;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7cc3aed0ccded48689c22d8df197ba2c337567a', '157.230.249.205', 1679939759, '__ci_last_regenerate|i:1679939759;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08584ab7a32c3ba8cccde4980601b6c47c69f11f', '157.230.249.205', 1679939763, '__ci_last_regenerate|i:1679939763;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5404d2ebf0d51011b76a3e8eea69a5b8a6786676', '157.230.249.205', 1679939764, '__ci_last_regenerate|i:1679939764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('535172ef487cf9c17ae09bacfe0e58e5b5b16266', '157.230.249.205', 1679939764, '__ci_last_regenerate|i:1679939764;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69220301d7df47f0d6f255000dae788f9856aab', '157.230.249.205', 1679939765, '__ci_last_regenerate|i:1679939765;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19dae3688955e2eb6a5cfd19717860ca03aff5bc', '157.230.249.205', 1679939768, '__ci_last_regenerate|i:1679939768;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b815ba31cc772ed581acb17f499a933aaa055da3', '157.230.249.205', 1679939768, '__ci_last_regenerate|i:1679939768;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e17d56b42563f5eecbc20d7b76f78231bb3e5f8', '157.230.249.205', 1679939769, '__ci_last_regenerate|i:1679939769;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31acb21e3f2dbb02603afe38b662c9761404fd8d', '157.230.249.205', 1679939769, '__ci_last_regenerate|i:1679939769;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c3caedf18a862bd2ff83c017d6948525b6cfa189', '157.230.249.205', 1679939773, '__ci_last_regenerate|i:1679939773;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe381725653e0b19c21a6a569f5f7fd1c170822e', '157.230.249.205', 1679939774, '__ci_last_regenerate|i:1679939774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38f2268dcc7588d4e5a65a3a51b3a6b7f30dadf9', '157.230.249.205', 1679939774, '__ci_last_regenerate|i:1679939774;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d043fb961cbb901c2ed4475a2f8a84295fc868', '157.230.249.205', 1679939774, '__ci_last_regenerate|i:1679939774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ee7238fefc94237f8addbfa2ab2fc347feaa56a', '157.230.249.205', 1679939776, '__ci_last_regenerate|i:1679939776;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7ae61673e9d546f4582abad4444bea2c4d1322b', '157.230.249.205', 1679939776, '__ci_last_regenerate|i:1679939776;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c58a1b207af026d7379e9f26e5d3b4eb1f6888a7', '157.230.249.205', 1679939777, '__ci_last_regenerate|i:1679939777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('297dd19d41f7572ea2219157fc7220dd83b3ab9d', '157.230.249.205', 1679939777, '__ci_last_regenerate|i:1679939777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc2c068521eaf6155e78080e2d9803be95954494', '157.230.249.205', 1679939781, '__ci_last_regenerate|i:1679939781;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('445676b8fcaac18b9eab4945b94e0499354fe6d7', '157.230.249.205', 1679939782, '__ci_last_regenerate|i:1679939782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f8e5488c34365822b6029192f3bb9d977211aa7', '157.230.249.205', 1679939782, '__ci_last_regenerate|i:1679939782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a096eb8dbf208acb9c331b3cc7077ae833134bd', '157.230.249.205', 1679939783, '__ci_last_regenerate|i:1679939783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96aa59d7cce374ce29daceecbafa0b7b86297246', '157.230.249.205', 1679939784, '__ci_last_regenerate|i:1679939784;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b725cca1478106bb79d512dee02abd5fb53bdcf', '157.230.249.205', 1679939785, '__ci_last_regenerate|i:1679939785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b718d29af6086dc09df9c21e22d46b94fe49532d', '157.230.249.205', 1679939785, '__ci_last_regenerate|i:1679939785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72dbe62b7fd5aeb6ff99ce2d7b677604aa02d2f9', '157.230.249.205', 1679939785, '__ci_last_regenerate|i:1679939785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c1822ad75288ec0f989fb1a5a0757ad29bd4ca', '157.230.249.205', 1679939787, '__ci_last_regenerate|i:1679939787;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd96b2b3c81f658a7f6496ca87238f69a344918', '157.230.249.205', 1679939787, '__ci_last_regenerate|i:1679939787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e612d3ba71fa1ef77ddbc56c1243c822c2021648', '157.230.249.205', 1679939788, '__ci_last_regenerate|i:1679939788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('361a7a17157ec38210ac794547c354fc7d104e20', '157.230.249.205', 1679939788, '__ci_last_regenerate|i:1679939788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('24bad1c16d5abe055a60bc7ea353bc3d102e8094', '157.230.249.205', 1679939791, '__ci_last_regenerate|i:1679939791;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3c71913e9c0094d81ea00130085f38e7374e7ae', '157.230.249.205', 1679939792, '__ci_last_regenerate|i:1679939792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('144c1c85033738dd1cb90e8d5bb7f92d399d09c0', '157.230.249.205', 1679939792, '__ci_last_regenerate|i:1679939792;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b6d0a23c2c40d3d9b46845a7d27d1cd937f6ef3', '157.230.249.205', 1679939792, '__ci_last_regenerate|i:1679939792;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9514a5cfb7c42e3ece46d1220c8f7de19e1c17f8', '157.230.249.205', 1679939794, '__ci_last_regenerate|i:1679939794;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('668fd058f3b6ca428828ab2dea769c7f0ae2abb1', '157.230.249.205', 1679939795, '__ci_last_regenerate|i:1679939795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('025a598f034c99cbeaea14757f129df88e2d54f3', '157.230.249.205', 1679939795, '__ci_last_regenerate|i:1679939795;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4ec47ead24ff6fdc17665fd933b585431dd7e8', '157.230.249.205', 1679939795, '__ci_last_regenerate|i:1679939795;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('982283679b8dc696c92466fe4b3e4b98527b5199', '157.230.249.205', 1679939797, '__ci_last_regenerate|i:1679939797;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28b40fbb4f264bffbfa92a4253866a85fd44574c', '157.230.249.205', 1679939798, '__ci_last_regenerate|i:1679939798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f3c7daa2f98edda0914c7d066c4350ff882b807', '157.230.249.205', 1679939798, '__ci_last_regenerate|i:1679939798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb5cdfef173d0f5499b12c30977e14a75f2c8da2', '157.230.249.205', 1679939798, '__ci_last_regenerate|i:1679939798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8aa527059f3734fff9f37e905f8a761d77ac796f', '157.230.249.205', 1679939800, '__ci_last_regenerate|i:1679939800;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7956cf1a4971b22a267062780e2f4a6adb47db5', '157.230.249.205', 1679939800, '__ci_last_regenerate|i:1679939800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c6b9d90d96e487457acff49604558d3936f53c6', '157.230.249.205', 1679939801, '__ci_last_regenerate|i:1679939801;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60124db2c0b653cb083ca6d996863c57b49d3cdb', '157.230.249.205', 1679939801, '__ci_last_regenerate|i:1679939801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43e1f3b968878c908a64946377af7b70f08297ac', '157.230.249.205', 1679939803, '__ci_last_regenerate|i:1679939803;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5a87967187cdaaf2e96fc8e70109a507777bb56', '157.230.249.205', 1679939803, '__ci_last_regenerate|i:1679939803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c54592a82d4369c1b8f79b1a02f89bf75c55d7ca', '157.230.249.205', 1679939804, '__ci_last_regenerate|i:1679939804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69f933ee18c2efd1bd27d7151cc360df26fc02cb', '157.230.249.205', 1679939804, '__ci_last_regenerate|i:1679939804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37257f40cb2f475309ca09868ebc2344282a29d9', '31.222.203.2', 1679940177, '__ci_last_regenerate|i:1679940177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc3187ccfa34917d9b6b23156afbb61cf969ad66', '31.222.203.2', 1679940177, '__ci_last_regenerate|i:1679940177;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('411d486709ae243d2d04faba54510b8e829b53e5', '31.222.203.2', 1679940177, '__ci_last_regenerate|i:1679940177;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('543c0145acb80d76142ad9b217dfd813c138057a', '31.222.203.2', 1679940179, '__ci_last_regenerate|i:1679940179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4daca49860cf6976d46c96d6ff9a9cf814e9ed48', '31.222.203.2', 1679940179, '__ci_last_regenerate|i:1679940179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5bbe3b749c575e4370748979764956204195a2e', '31.222.203.2', 1679940179, '__ci_last_regenerate|i:1679940179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f205b3d07bc0dc7c04d047c056d840f1f099c1f4', '31.222.203.2', 1679941980, '__ci_last_regenerate|i:1679941980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f79d1ae5d66ad0e5a2882d458edf5e0c79877b2a', '31.222.203.2', 1679941980, '__ci_last_regenerate|i:1679941980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60e479596fc02aabee6ba043ad4e21f0d35df84f', '31.222.203.2', 1679941980, '__ci_last_regenerate|i:1679941980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eeb3f235caf14e999fd412116cffc855f1728eb1', '31.222.203.2', 1679941980, '__ci_last_regenerate|i:1679941980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('234757941258291b435157ed800a570d450347fe', '31.222.203.2', 1679941980, '__ci_last_regenerate|i:1679941980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ea4b28ffb71424178552d940c6886a6b28e14f', '31.222.203.2', 1679941980, '__ci_last_regenerate|i:1679941980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7d7941cb83565a979e30a53016f62adca1e5ec7', '31.222.203.2', 1679943780, '__ci_last_regenerate|i:1679943780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59d4dbcdacf2d2c338ea7d9276d14d46ff555ecd', '31.222.203.2', 1679943780, '__ci_last_regenerate|i:1679943780;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66e3a13265121e89b84f6ea3fa46a6e268134817', '31.222.203.2', 1679943780, '__ci_last_regenerate|i:1679943780;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cadc946a8ea70184834a391c809d8f455c7cd73a', '31.222.203.2', 1679943782, '__ci_last_regenerate|i:1679943782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('052757a3752c24e662368a545b7bf3860107d9d4', '31.222.203.2', 1679943782, '__ci_last_regenerate|i:1679943782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('accfae95541e9a1f8442e15ac5a5d1aa48d950c0', '31.222.203.2', 1679943782, '__ci_last_regenerate|i:1679943782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd4c1109bb7737b94502122671cc4e95277037e1', '39.101.185.186', 1679944390, '__ci_last_regenerate|i:1679944390;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10530c3523dbb0d8414cbb0b1434e8c4798a7eca', '39.101.185.186', 1679944392, '__ci_last_regenerate|i:1679944392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('629f376a38d60ecf6ed044e7a45786c8c309d0d2', '39.101.185.186', 1679944392, '__ci_last_regenerate|i:1679944392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7b19bbafe211ca7023d45da108ab5517c4ccfbd', '39.101.185.186', 1679944394, '__ci_last_regenerate|i:1679944394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('639dba7ef41d6ca1b2b2b6d868702a1c734c6737', '1.85.219.146', 1679945486, '__ci_last_regenerate|i:1679945478;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('334562c9d2356f2e675cca0a1ee7d1139ec8c311', '31.222.203.2', 1679945573, '__ci_last_regenerate|i:1679945573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae8ddfbb17f65cc4f22ae06300cffe74cefc33f3', '31.222.203.2', 1679945573, '__ci_last_regenerate|i:1679945573;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f82342cbb208594cf8e877b73165f9dc89eaa837', '31.222.203.2', 1679945573, '__ci_last_regenerate|i:1679945573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d04c2021c140bd3f14e59421311e8dd2943b4c13', '31.222.203.2', 1679945573, '__ci_last_regenerate|i:1679945573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4cd87e1a92ecdb92fb2403fd0829c79317ee906', '31.222.203.2', 1679945573, '__ci_last_regenerate|i:1679945573;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d37a0b75e60b4f47b26672f724d759023493b50c', '31.222.203.2', 1679945573, '__ci_last_regenerate|i:1679945573;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d0d7cc9ed39326066bbf8e8bd24e79cbc46645e', '31.222.203.2', 1679947375, '__ci_last_regenerate|i:1679947375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('133ef03351eb8297c38a150aa8ff82aea5ad1500', '31.222.203.2', 1679947375, '__ci_last_regenerate|i:1679947375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8afc4ca77fd8095492f8d9fae29725833af4aec0', '31.222.203.2', 1679947375, '__ci_last_regenerate|i:1679947375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('246ffad0d46b4e7cd82273cb877c84e4a41aa5a2', '31.222.203.2', 1679947375, '__ci_last_regenerate|i:1679947375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e69c582db024208e8f32f228f577e0cb9bb4cd8', '31.222.203.2', 1679947375, '__ci_last_regenerate|i:1679947375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79005bcb28871b29e7732f445e73155d095f38e5', '31.222.203.2', 1679947375, '__ci_last_regenerate|i:1679947375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8d5583993f0f903793a4c8771b997d820a603d3', '31.222.203.2', 1679949171, '__ci_last_regenerate|i:1679949171;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f3da203b2b2dfeb7d99ee29ccd20df3cd5c096ff', '31.222.203.2', 1679949171, '__ci_last_regenerate|i:1679949171;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adfade62a3671ef98db3829c7a1a7e02f2450b80', '31.222.203.2', 1679949171, '__ci_last_regenerate|i:1679949171;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81f3e37b1f7356d6e814018ad7914e40be652c92', '31.222.203.2', 1679949172, '__ci_last_regenerate|i:1679949172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff425264b5ac5d95223906d8aebfb6aea72e6a1f', '31.222.203.2', 1679949172, '__ci_last_regenerate|i:1679949172;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('120de008ba0e9aac8fd34203be3e3832ea818675', '31.222.203.2', 1679949172, '__ci_last_regenerate|i:1679949172;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b18f112fb1510cc1813f7b1dcf33867ea895be2', '31.222.203.2', 1679950979, '__ci_last_regenerate|i:1679950979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef41e57d493571705e988cf84b344252d3812926', '31.222.203.2', 1679950979, '__ci_last_regenerate|i:1679950979;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e258a1cc8c4414a0374eb86c9045b1223175c693', '31.222.203.2', 1679950979, '__ci_last_regenerate|i:1679950979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c892637a9a8ba89701e95bbd064175dff4609bf5', '31.222.203.2', 1679950980, '__ci_last_regenerate|i:1679950979;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('175a395a3e4ac53499b68f5b9520aea49cd2b590', '31.222.203.2', 1679950980, '__ci_last_regenerate|i:1679950980;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9af683a3fca82a038c5d17fc049824ea986aee5d', '31.222.203.2', 1679950980, '__ci_last_regenerate|i:1679950980;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c462d7bb0b3365aaf3acb1c6cbcebb17a07d2818', '87.236.176.138', 1679951360, '__ci_last_regenerate|i:1679951360;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f781483f76dc889be64b3df48ce1810ffc777c57', '87.236.176.138', 1679951366, '__ci_last_regenerate|i:1679951361;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3764542730de715258c60c38b43939cdba31f1a', '31.222.203.2', 1679952782, '__ci_last_regenerate|i:1679952782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee13b061c55c4f5dbdb39f8e1aae81c9a2be44b4', '31.222.203.2', 1679952782, '__ci_last_regenerate|i:1679952782;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df2170973ca1827a0b24e5fa4b7fe1866cd5be5', '31.222.203.2', 1679952782, '__ci_last_regenerate|i:1679952782;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18203ee6712d964b6544881e6cbe56d136bfde1d', '31.222.203.2', 1679952784, '__ci_last_regenerate|i:1679952784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('70ec91c67a0dc52b29d8cb11330156d46cc7defe', '31.222.203.2', 1679952784, '__ci_last_regenerate|i:1679952784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb06d4456d343e5680aeb19a5d3ee1dd04de64f5', '31.222.203.2', 1679952784, '__ci_last_regenerate|i:1679952784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('874a2f0ef941cc2947ea28c0f1c9c5af5656f513', '31.222.203.2', 1679954587, '__ci_last_regenerate|i:1679954587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77c497a322646e78c1f21751c4ba8690bdf25290', '31.222.203.2', 1679954587, '__ci_last_regenerate|i:1679954587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d5a5ae5fcc8b5325cb8fa7080553271c6588bb7', '31.222.203.2', 1679954587, '__ci_last_regenerate|i:1679954587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bde888374213ac637c27953925849d51cd624f26', '31.222.203.2', 1679954587, '__ci_last_regenerate|i:1679954587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('23a98f5143eee37c353581c1628618e5373e828c', '31.222.203.2', 1679954587, '__ci_last_regenerate|i:1679954587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b509dc24b0ad07e27d730ff28af3307afd108b5', '31.222.203.2', 1679954587, '__ci_last_regenerate|i:1679954587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c534a1a6be837a0402c160ad3e4cb564f2354a2', '31.222.203.2', 1679956376, '__ci_last_regenerate|i:1679956376;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d702622f3069d23baf2214d677cc7d44e5c4121', '31.222.203.2', 1679956377, '__ci_last_regenerate|i:1679956377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9272942b9dcc99ff7b8478495d89b168218a5aaf', '31.222.203.2', 1679956377, '__ci_last_regenerate|i:1679956377;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be3e614eee0ba0d5808c5dfac3824827cc0d2218', '31.222.203.2', 1679956377, '__ci_last_regenerate|i:1679956377;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d2508e4b54401e132c0e953bc34cd98d7f57060c', '31.222.203.2', 1679956377, '__ci_last_regenerate|i:1679956377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('926b496e4f736f72eeb1a6b5f8b8aae1e17c2ccf', '31.222.203.2', 1679956377, '__ci_last_regenerate|i:1679956377;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7aec21b9a4abf938a8e6b615ee7de63226e8296', '31.222.203.2', 1679958178, '__ci_last_regenerate|i:1679958178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72fd7413d7368003644328186ca2c6b69ad3a73a', '31.222.203.2', 1679958179, '__ci_last_regenerate|i:1679958179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11bfae5d7b61cffb72841bfdbddcaab2c564cc78', '31.222.203.2', 1679958179, '__ci_last_regenerate|i:1679958179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ab202ce7c4999e2495d03f82ccfde49caa5f20e', '31.222.203.2', 1679958179, '__ci_last_regenerate|i:1679958179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('03dcf3e1f9dad2f3bb7879dd344d2a35acf0c06f', '31.222.203.2', 1679958179, '__ci_last_regenerate|i:1679958179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf36a3da339157c13f73f146b48086fac98a6900', '31.222.203.2', 1679958179, '__ci_last_regenerate|i:1679958179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('792b4281693fda4ca96965677f932cb9ffa068f0', '31.222.203.2', 1679959977, '__ci_last_regenerate|i:1679959977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de72c24dbc8139e847f221c9aff6f8fe0196392', '31.222.203.2', 1679959977, '__ci_last_regenerate|i:1679959977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7bc414df9c8e7be3eb2f1be46cdd9011ad11b75', '31.222.203.2', 1679959977, '__ci_last_regenerate|i:1679959977;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f73e4a869609fc2dd64cdc1983f9b22b27be67a9', '31.222.203.2', 1679959977, '__ci_last_regenerate|i:1679959977;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('171d46fe8ee50605d48e172693e87966129717ee', '31.222.203.2', 1679959977, '__ci_last_regenerate|i:1679959977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d2362fe44106c37ccc1be62cbba405ebe7283c', '31.222.203.2', 1679959977, '__ci_last_regenerate|i:1679959977;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52c3894a4a0770f9acc0b14967a7495eae340986', '31.222.203.2', 1679961791, '__ci_last_regenerate|i:1679961791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41c5da7d816bb042519c8851a4f1053606dc8188', '31.222.203.2', 1679961791, '__ci_last_regenerate|i:1679961791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9eaac633409102cb7daeea366b5556b4154d6950', '31.222.203.2', 1679961791, '__ci_last_regenerate|i:1679961791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71fe2ad6f797aaedf66ce91fa6ba8ac6f3308b74', '31.222.203.2', 1679961791, '__ci_last_regenerate|i:1679961791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c80671b87a7973f87b68d05f162c4bb329db8b7a', '31.222.203.2', 1679961791, '__ci_last_regenerate|i:1679961791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('038afc5520a07339849424330c70c64ad96d0a9e', '31.222.203.2', 1679961791, '__ci_last_regenerate|i:1679961791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f430b22580b5e94468c3f7408b760ef54a4fd9e5', '31.222.203.2', 1679963581, '__ci_last_regenerate|i:1679963581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31fc766b61a9dab4166322c3f8e2d0eea9f4892d', '31.222.203.2', 1679963581, '__ci_last_regenerate|i:1679963581;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('082a035add984b3ee868af7a3923279e09eee30a', '31.222.203.2', 1679963581, '__ci_last_regenerate|i:1679963581;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cf7fcf7bfaf088749218f498e8894c855f887e', '31.222.203.2', 1679963582, '__ci_last_regenerate|i:1679963582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3d45b37de11dd83fcb93d4afb535051c544469f', '31.222.203.2', 1679963582, '__ci_last_regenerate|i:1679963582;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a787436b014a2ed2d8f698e326ad895fb13cf490', '31.222.203.2', 1679963582, '__ci_last_regenerate|i:1679963582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77eb995f262d21c1959d6bb1728e3fdbbf8b81d1', '31.222.203.2', 1679965373, '__ci_last_regenerate|i:1679965373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcc54445645ea6e595b8836f6fb82adf87bbda78', '31.222.203.2', 1679965373, '__ci_last_regenerate|i:1679965373;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df804d5eac1c6921df619bd4c7f8b574b3cdda95', '31.222.203.2', 1679965373, '__ci_last_regenerate|i:1679965373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6af30df679878f32f783b76be14c73b2d8e1ecd', '31.222.203.2', 1679965373, '__ci_last_regenerate|i:1679965373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a40de457cb14916c6e37ea7ce4d23282f3ae3f1d', '31.222.203.2', 1679965373, '__ci_last_regenerate|i:1679965373;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('278e828bdd69cbf0f2a8e0d0b9299ebdd4d01cc6', '31.222.203.2', 1679965373, '__ci_last_regenerate|i:1679965373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7ef6839cc501639220dd08277497154ec728c46', '31.222.203.2', 1679967180, '__ci_last_regenerate|i:1679967180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ec3c1a2838c72fb6f7e8d51e417fb26759358da', '31.222.203.2', 1679967182, '__ci_last_regenerate|i:1679967182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d1252cb34a3eaa0d2db7304b4d791cf0e3e30c5', '31.222.203.2', 1679967182, '__ci_last_regenerate|i:1679967182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e92728c1cdc8e846910bba91b4473de6a57c634b', '31.222.203.2', 1679967182, '__ci_last_regenerate|i:1679967182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('550c4af548c38a5d43c92faf8023fe2b3cd539ca', '31.222.203.2', 1679967182, '__ci_last_regenerate|i:1679967182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('773a131153db274386af18ca59e231d32a11dc2a', '31.222.203.2', 1679967182, '__ci_last_regenerate|i:1679967182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b300c2d7b2bad35486fc576e3a4f7c2a37666eec', '162.142.125.223', 1679968065, '__ci_last_regenerate|i:1679968065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5936b1466c917444692206382dcc659883ab6bab', '162.142.125.223', 1679968065, '__ci_last_regenerate|i:1679968065;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('036c4e90af5c6e8b6a83fc94a571ed6ae2896289', '162.142.125.223', 1679968065, '__ci_last_regenerate|i:1679968065;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b15d685b905977679a42eb9fceb2f47dc6b6a595', '167.248.133.51', 1679968248, '__ci_last_regenerate|i:1679968248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c841cde2076c74cc9ba1e65d7c4166e1250b2d93', '167.248.133.51', 1679968248, '__ci_last_regenerate|i:1679968248;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('474a11055f9a759636404bd61f49398a218f8e77', '167.248.133.51', 1679968248, '__ci_last_regenerate|i:1679968248;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1e01271f94ccee5074fb3e4eef7f5e78718f4a4', '31.222.203.2', 1679968987, '__ci_last_regenerate|i:1679968987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c3461c74b555d5a92af3f10e8a06c335537e72f', '31.222.203.2', 1679968987, '__ci_last_regenerate|i:1679968987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3de5507d48967362a9f4619c6258f259e0e16815', '31.222.203.2', 1679968987, '__ci_last_regenerate|i:1679968987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1bbee32535fdc39b98f269fc148c577783f359d', '31.222.203.2', 1679968989, '__ci_last_regenerate|i:1679968989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4646a09a454f3af290f026fa3984b1f855aed4ff', '31.222.203.2', 1679968989, '__ci_last_regenerate|i:1679968989;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4ff12709faec64930f59d1c488eb3dc2711b519', '31.222.203.2', 1679968989, '__ci_last_regenerate|i:1679968989;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('006f355b8bcf7507a535c1647c19eeff7ab24a3d', '31.222.203.2', 1679970783, '__ci_last_regenerate|i:1679970783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eab55ce60eb9c52bb60be71d7f874cf31c295778', '31.222.203.2', 1679970783, '__ci_last_regenerate|i:1679970783;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('973b168e0d74755c6b467a6dc78df3fe3783c1ed', '31.222.203.2', 1679970783, '__ci_last_regenerate|i:1679970783;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da9856bd5c1a1fee6f0a26ed0a73e2411171a61b', '31.222.203.2', 1679970785, '__ci_last_regenerate|i:1679970785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ede4e08d540e1ce5dfdfa027e83529a4b2f24a2', '31.222.203.2', 1679970785, '__ci_last_regenerate|i:1679970785;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56380cf654e912e84a4f98ba89621f18ca533cb1', '31.222.203.2', 1679970785, '__ci_last_regenerate|i:1679970785;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77b1d1bd2c802eebaa955b218fffdfa90cccf7f5', '31.222.203.2', 1679972586, '__ci_last_regenerate|i:1679972586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('968e9af3a446817912f717894a1b701617d48eb3', '31.222.203.2', 1679972586, '__ci_last_regenerate|i:1679972586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a32f124354cc216a5a2930e318c94ac9fbd70106', '31.222.203.2', 1679972586, '__ci_last_regenerate|i:1679972586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('488d30e1fc704fc766955806d862f03500dedcfd', '31.222.203.2', 1679972587, '__ci_last_regenerate|i:1679972587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('684c18c711e3e78a1e510658803d1d5b4cf67b1b', '31.222.203.2', 1679972587, '__ci_last_regenerate|i:1679972587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e317a8ed49621b8147cad5511ae7aa2925e7bf97', '31.222.203.2', 1679972587, '__ci_last_regenerate|i:1679972587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75f2268d58e95413032d1aebaf63e0ee7c01a008', '31.222.203.2', 1679974385, '__ci_last_regenerate|i:1679974385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c7920a54955230ce51b03a18067a73d7f565862', '31.222.203.2', 1679974387, '__ci_last_regenerate|i:1679974387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8444378a14b7162d685302953e0aac7bdff7fb', '31.222.203.2', 1679974387, '__ci_last_regenerate|i:1679974387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a1e65606c991d0921a6ccbcb853a17b3b41f2b7', '31.222.203.2', 1679974387, '__ci_last_regenerate|i:1679974387;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ffcd48ce6d0a420c5b8524ea7662737d7c686b9d', '31.222.203.2', 1679974387, '__ci_last_regenerate|i:1679974387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7ed0414deec051211fad6ef2a57abce148141f0', '31.222.203.2', 1679974387, '__ci_last_regenerate|i:1679974387;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b154357d2838357489844b68830baa15917e07ad', '31.222.203.2', 1679976186, '__ci_last_regenerate|i:1679976186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('526f056a96a184fd527bd3fc351f2a766e729ec4', '31.222.203.2', 1679976187, '__ci_last_regenerate|i:1679976187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9f8ccef7341dc752272a85dbd9aed94a36a69b8', '31.222.203.2', 1679976187, '__ci_last_regenerate|i:1679976187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cde6f09ec67d96d757a9c984034fec11c18364d', '31.222.203.2', 1679976187, '__ci_last_regenerate|i:1679976187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab2a094ddc5203dc5e546d7b7d5e2a48736aa837', '31.222.203.2', 1679976187, '__ci_last_regenerate|i:1679976187;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20b50f191a9c10dd6e0d1546d78e849c9ce0708e', '31.222.203.2', 1679976187, '__ci_last_regenerate|i:1679976187;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20dbc3f15fc53ad5ab536c2877560ee2390a7302', '31.222.203.2', 1679977960, '__ci_last_regenerate|i:1679977960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5324f275ef79513adca2db14ab21101b0622e97', '31.222.203.2', 1679977960, '__ci_last_regenerate|i:1679977960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4428d0011624042ff3eedbff7fa304d5a6b944c8', '31.222.203.2', 1679977960, '__ci_last_regenerate|i:1679977960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96be92f26749ef8c65081ba4501303198c822058', '31.222.203.2', 1679977960, '__ci_last_regenerate|i:1679977960;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e574c2c06930a47efee08479c10498e45a763bae', '31.222.203.2', 1679977960, '__ci_last_regenerate|i:1679977960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('370b21d64f9df51dc68d6f5c0be56fceb7f5289b', '31.222.203.2', 1679977960, '__ci_last_regenerate|i:1679977960;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('707e73c94e12e9793962d2fa5a92be8c87dc3749', '37.111.218.245', 1679980885, '__ci_last_regenerate|i:1679979172;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679931006\";last_ip|s:13:\"37.111.219.81\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679980885;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da837bfbbacd9fefaee192ed1f8b2d3000061514', '31.222.203.2', 1679979796, '__ci_last_regenerate|i:1679979796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0fe00b7f2ba08ad86debac4cfeaddbabdd85e0f', '31.222.203.2', 1679979796, '__ci_last_regenerate|i:1679979796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c05811c75c1707ab4e8cf5643967117d6c113088', '31.222.203.2', 1679979796, '__ci_last_regenerate|i:1679979796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4e5d8050b7b7025990d553dd078cd326081755a', '31.222.203.2', 1679979796, '__ci_last_regenerate|i:1679979796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad247453c21882f4342d2d3dcf784fbdd92a1a4', '31.222.203.2', 1679979796, '__ci_last_regenerate|i:1679979796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e45f6d3f751ca29a66c9004b5746a2b7122c8a', '31.222.203.2', 1679979796, '__ci_last_regenerate|i:1679979796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c45a08d0c4c2b0ea8032b15bd82568ce29a865fa', '31.222.203.2', 1679981585, '__ci_last_regenerate|i:1679981585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2013d752bce85fdef5b40a0add443bb3a8a15860', '31.222.203.2', 1679981586, '__ci_last_regenerate|i:1679981586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11476be747bc9405ec374482e8c1d4d5e63a3984', '31.222.203.2', 1679981586, '__ci_last_regenerate|i:1679981586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1ae83d95a91ed833428bc95eb7621e7fc40b564', '31.222.203.2', 1679981586, '__ci_last_regenerate|i:1679981586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f248ba4f1924e058c492fc0713a1fe9c0e11cef', '31.222.203.2', 1679981586, '__ci_last_regenerate|i:1679981586;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5b6a1423ed1c508764c50b53ee75029bde6d705', '31.222.203.2', 1679981586, '__ci_last_regenerate|i:1679981586;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bbe95128cb25a2179f9d38c23ce7530b522106b1', '31.222.203.2', 1679983403, '__ci_last_regenerate|i:1679983403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3a0c940e86baa812070807ec24557b565034dae', '31.222.203.2', 1679983403, '__ci_last_regenerate|i:1679983403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0935e39e2c7f5881ef48d1703aa9dab2248aa0fd', '31.222.203.2', 1679983403, '__ci_last_regenerate|i:1679983403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('429fade9d99ca55add46f2e18563ce096403a3b6', '31.222.203.2', 1679983405, '__ci_last_regenerate|i:1679983405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d664018189a63b68ab7ab5c6fcdf7ba730ef3a7', '31.222.203.2', 1679983405, '__ci_last_regenerate|i:1679983405;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e68bfe6b01aafb6464d33a50921e338094c4f75', '31.222.203.2', 1679983405, '__ci_last_regenerate|i:1679983405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86e0cc703bfa830d5b8aeccfea562dd3828d6fc4', '116.204.230.28', 1679984987, '__ci_last_regenerate|i:1679984987;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679905218\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9b5a2d0db9b312d39edce3aba5a07bb326bc6b0', '116.204.230.28', 1679985040, '__ci_last_regenerate|i:1679984987;requested_page|s:5:\"admin\";identity|s:11:\"recallgreen\";username|s:11:\"recallgreen\";email|s:22:\"rashed@recallgreen.com\";user_id|s:1:\"5\";old_last_login|s:10:\"1679905218\";last_ip|s:14:\"116.204.230.28\";avatar|s:36:\"5a4f533747f0a2eaab45f126ff1889b0.png\";gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb7076388a5c6076575d0ba955061d5b514f4aa', '31.222.203.2', 1679985192, '__ci_last_regenerate|i:1679985192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa0ba5cdf5a58a0f50087ce794db549d4f1a470', '31.222.203.2', 1679985194, '__ci_last_regenerate|i:1679985194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41da7c9bdd0fa11c5269df7bb3cf2e5f7ce7e42a', '31.222.203.2', 1679985194, '__ci_last_regenerate|i:1679985194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ada442e7a9b07d11c6327ab45e98b48969b431a6', '31.222.203.2', 1679985194, '__ci_last_regenerate|i:1679985194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3982cbf3aeb49f27e4f90db3ee863842267d95e0', '31.222.203.2', 1679985194, '__ci_last_regenerate|i:1679985194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7635aff08689e4bf4fb5ce08dbeffd105ac50c72', '31.222.203.2', 1679985194, '__ci_last_regenerate|i:1679985194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40dc490be6af3ad8d1c51f5e5209fb2443076ae4', '103.51.103.2', 1679986542, '__ci_last_regenerate|i:1679986542;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c6505c99a48a10efb18f1312862584cc8761cd0', '103.51.103.2', 1679986545, '__ci_last_regenerate|i:1679986545;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9134a0c28960f6ce1491e7d54661849b12bae3d5', '103.51.103.2', 1679986548, '__ci_last_regenerate|i:1679986548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ce157d7c7176cca3fe0ad5764c7114872a2521d', '103.51.103.2', 1679986551, '__ci_last_regenerate|i:1679986551;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a931f9d9ceb8c476cfa3e7642d54dd442817e8e', '31.222.203.2', 1679987016, '__ci_last_regenerate|i:1679987016;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94e47fa1d6de429067effea594bf061ebb35dcc2', '31.222.203.2', 1679987016, '__ci_last_regenerate|i:1679987016;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e874d013ebc192af35a6e0b372c5b4074d865e8', '31.222.203.2', 1679987017, '__ci_last_regenerate|i:1679987017;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db40622e6f13a9da3205cb0b365a511663bedfca', '31.222.203.2', 1679987019, '__ci_last_regenerate|i:1679987019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1bba49e5e7297d3d73d81d0521aa9035c62e2979', '31.222.203.2', 1679987019, '__ci_last_regenerate|i:1679987019;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40efe13e1c099bd2d2c5b877145ff851ab867eb6', '31.222.203.2', 1679987019, '__ci_last_regenerate|i:1679987019;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('776f3c4633ca304d0acc46f86833589221d14bfc', '31.222.203.2', 1679988808, '__ci_last_regenerate|i:1679988808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26c88e65b4711409d72741c346fd9d86979e0b8a', '31.222.203.2', 1679988808, '__ci_last_regenerate|i:1679988808;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9de9208bb843c6b146cff62d3a9c1aa3be1830f2', '31.222.203.2', 1679988808, '__ci_last_regenerate|i:1679988808;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('867a02333236d1a2e449195f1127642f6893fcfc', '31.222.203.2', 1679988810, '__ci_last_regenerate|i:1679988810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d95529bdbe35161e01aeb909ed3aadb95270c07', '31.222.203.2', 1679988810, '__ci_last_regenerate|i:1679988810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a61a79f413ee1d51980346820c5a8e846bc202d', '31.222.203.2', 1679988810, '__ci_last_regenerate|i:1679988810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63decb4a96835ca2149f5b39d936ea208d75cd17', '37.111.218.245', 1679990363, '__ci_last_regenerate|i:1679990363;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679988910;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5be99ce92f54d3c6a02a3ce523ab3caf1717e824', '37.111.218.245', 1679993197, '__ci_last_regenerate|i:1679993197;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679993094;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc75207816c6cf7b4e9f8d9dd5400cca73a18a5', '31.222.203.2', 1679990606, '__ci_last_regenerate|i:1679990606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d09bb1789c1dc3e4fa33ca9e103f426a58966d9f', '31.222.203.2', 1679990606, '__ci_last_regenerate|i:1679990606;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71a047fda44965dcb77f1c86acec3267b1f3f050', '31.222.203.2', 1679990606, '__ci_last_regenerate|i:1679990606;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cff54e3232d738994d8622c717d04f7caec123d', '31.222.203.2', 1679990607, '__ci_last_regenerate|i:1679990607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdfc67a108d2b76dbb85715e2382788f8289979c', '31.222.203.2', 1679990607, '__ci_last_regenerate|i:1679990607;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a47901d40c583d77269d5e9d161f59a3caf05310', '31.222.203.2', 1679990607, '__ci_last_regenerate|i:1679990607;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8713abd72f63ff3a14920b098dd178a6f4c8ab1b', '31.222.203.2', 1679992417, '__ci_last_regenerate|i:1679992417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e70569bb1cb4f264e612cabeba305dfc3ee9b68', '31.222.203.2', 1679992417, '__ci_last_regenerate|i:1679992417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2bb3dac86857ae25a6a5186c459e82c78a9d5514', '31.222.203.2', 1679992417, '__ci_last_regenerate|i:1679992417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f45ba640fd0b7aeca057c9ba6be258d8521d3d36', '31.222.203.2', 1679992419, '__ci_last_regenerate|i:1679992419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e4fb608bbde402491ccfcacd1037e214419069d', '31.222.203.2', 1679992419, '__ci_last_regenerate|i:1679992419;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86faa8c61765a2b4aad85b4b5d1f80ad796d0417', '31.222.203.2', 1679992419, '__ci_last_regenerate|i:1679992419;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73ebc6494877766350d64eedd5a390474b0e938c', '37.111.218.245', 1679995276, '__ci_last_regenerate|i:1679995276;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679993197;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6427f09991e64ea158b49ac9d3f9a973cae50552', '31.222.203.2', 1679994211, '__ci_last_regenerate|i:1679994211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7b0878ab27225f33c1dd72b1bb12d18d30ee3b4', '31.222.203.2', 1679994211, '__ci_last_regenerate|i:1679994211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22c7038cff3eee061ab6725856b3d5c3faf6286', '31.222.203.2', 1679994211, '__ci_last_regenerate|i:1679994211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43dd70f5083ed7592a66d3cf3b8d06974c7c4d6a', '31.222.203.2', 1679994214, '__ci_last_regenerate|i:1679994214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26cd2c81f951b6b4d8faf3f4995259ac96f5e5f8', '31.222.203.2', 1679994214, '__ci_last_regenerate|i:1679994214;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87667a6f06ffc4e4f353f4acbf762c39e10d749e', '31.222.203.2', 1679994214, '__ci_last_regenerate|i:1679994214;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5af31bbbde140e0faa406776627303aff121ce1', '37.111.218.245', 1679997336, '__ci_last_regenerate|i:1679997336;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679995474;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37b962ebefe6a2bf5590934c06207df06480e7c3', '31.222.203.2', 1679996004, '__ci_last_regenerate|i:1679996004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38da8da4d38bada71fa90ccd4515ae145508ceb3', '31.222.203.2', 1679996004, '__ci_last_regenerate|i:1679996004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f3cd275e702999b66bc63d1f10d6837ce520a8c', '31.222.203.2', 1679996004, '__ci_last_regenerate|i:1679996004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('670773ae6ae9f4104e9c1bd2deeaabda33259d06', '31.222.203.2', 1679996006, '__ci_last_regenerate|i:1679996006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09bd29f63937abe00eae6dedbf5216b94f156a35', '31.222.203.2', 1679996006, '__ci_last_regenerate|i:1679996006;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f648623b0ff5596e703374859db7f6a31ae991ff', '31.222.203.2', 1679996006, '__ci_last_regenerate|i:1679996006;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f659a17989146b5ee90ee271419c06873db029a', '37.111.218.245', 1680000002, '__ci_last_regenerate|i:1680000002;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1679997383;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc0b12f7e6ba0a6655a03cce71319c8eb6c545fa', '31.222.203.2', 1679997801, '__ci_last_regenerate|i:1679997801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760b9888b5ebcc25beea0d3b48a46b2549d26659', '31.222.203.2', 1679997803, '__ci_last_regenerate|i:1679997803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('593938fab5d61edb0408494a83cfb3ef0ffb3caf', '31.222.203.2', 1679997803, '__ci_last_regenerate|i:1679997803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c08afa38035c694fd5790f67ea86aac7d8530e', '31.222.203.2', 1679997803, '__ci_last_regenerate|i:1679997803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cf61fcf93cb4570e47bafcd896f03e25d2da8ec5', '31.222.203.2', 1679997803, '__ci_last_regenerate|i:1679997803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48f1d65886f13a7b1cdc4123365658e477d35c8e', '31.222.203.2', 1679997803, '__ci_last_regenerate|i:1679997803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9fe8ce15f89a8feb5fdb2fe43ba547a9f74edb69', '167.248.133.191', 1679999364, '__ci_last_regenerate|i:1679999364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4dd6a01134430393e82a836b78fdd6901d471aa1', '167.248.133.191', 1679999364, '__ci_last_regenerate|i:1679999364;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('802792595ffdb4fc12958196018541cc2fb672f7', '167.248.133.191', 1679999364, '__ci_last_regenerate|i:1679999364;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e17b6fde2b054fcba8e430b463f3db40cb5f9b6', '31.222.203.2', 1679999601, '__ci_last_regenerate|i:1679999601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4c57396b76a40db2cef74225559424fc2bbbd35', '31.222.203.2', 1679999601, '__ci_last_regenerate|i:1679999601;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9e3b977e0cf42d5cca0eeba085c4c885099ce6d', '31.222.203.2', 1679999601, '__ci_last_regenerate|i:1679999601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d39ca0b4343f0f9939fe18aff2048cec74665b7a', '31.222.203.2', 1679999604, '__ci_last_regenerate|i:1679999604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94dcae46eba09563070907513da962509db13bc1', '31.222.203.2', 1679999604, '__ci_last_regenerate|i:1679999604;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a240f39dcfb49d5c64d1d5cd306e1f785d7a0d35', '31.222.203.2', 1679999604, '__ci_last_regenerate|i:1679999604;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c92844150b39acbc2f81a5346881bcbee22a45e', '37.111.218.245', 1680004769, '__ci_last_regenerate|i:1680004769;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680000055;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5cb4089197e310fc3d1214380dee8638cf16407b', '31.222.203.2', 1680001397, '__ci_last_regenerate|i:1680001397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d030f341e697995da1a32f9b49f5c9c5fe0ae0b1', '31.222.203.2', 1680001397, '__ci_last_regenerate|i:1680001397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdd2d39e7bd3c5bb3c210771834828df9926b88e', '31.222.203.2', 1680001397, '__ci_last_regenerate|i:1680001397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f491513d4c097eff0ad515414e86b06af7615c44', '31.222.203.2', 1680001400, '__ci_last_regenerate|i:1680001400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a5f7036a9b62e6126afb81e9045ecc774906959', '31.222.203.2', 1680001400, '__ci_last_regenerate|i:1680001400;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae9373bee91826b40cfbf5a2a50002f04f27721e', '31.222.203.2', 1680001400, '__ci_last_regenerate|i:1680001400;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e90007d80ed8d4ab9e95db151dc0b5a8b5a8d4b', '31.222.203.2', 1680003215, '__ci_last_regenerate|i:1680003215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a15cc1fe8f81c96f62dfeed706c1df3a3e9e60d7', '31.222.203.2', 1680003215, '__ci_last_regenerate|i:1680003215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731debdb9b172c1a0624bba746eb03344f9e16b8', '31.222.203.2', 1680003215, '__ci_last_regenerate|i:1680003215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e720bc3eb7c94271e89981c1f8c4fb9181d33ffe', '31.222.203.2', 1680003215, '__ci_last_regenerate|i:1680003215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df6b75f0d2ba416223a4d3f06c427984cad8e307', '31.222.203.2', 1680003215, '__ci_last_regenerate|i:1680003215;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('866c983a5cec9c0ac3a9dc00ee1bc956f899baae', '31.222.203.2', 1680003215, '__ci_last_regenerate|i:1680003215;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da5bf89b512889c1a66cffbbcbb53f3fe7131608', '37.111.212.11', 1680004623, '__ci_last_regenerate|i:1680004623;requested_page|s:25:\"admin/reports/daily_sales\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a61636def1d9f70271721fd6450226e91ca3662', '37.111.218.245', 1680016592, '__ci_last_regenerate|i:1680016592;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680016577;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d93b6f4c4caa78c046df653e9f6dc35faf51e181', '31.222.203.2', 1680005002, '__ci_last_regenerate|i:1680005002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59a9e03bfe4904dd595a2490f1bf988d9d653524', '31.222.203.2', 1680005002, '__ci_last_regenerate|i:1680005002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('102e6ab47d67a7e3d1dcf668b8cb9c36881f843c', '31.222.203.2', 1680005002, '__ci_last_regenerate|i:1680005002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e11856f57fb34ec4a1ce7fd2510045e0f2e4d45', '31.222.203.2', 1680005005, '__ci_last_regenerate|i:1680005005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('309136f78174b0f20ce334dd3d2c492d5485d8a2', '31.222.203.2', 1680005005, '__ci_last_regenerate|i:1680005005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5c6becb50ab3d865225d6cccd1687acb1a86396', '31.222.203.2', 1680005005, '__ci_last_regenerate|i:1680005005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84cde7a09021e1faca2429a30de720b9d89a0f69', '31.222.203.2', 1680006804, '__ci_last_regenerate|i:1680006804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f1cf13dfa8b6d14b56517552f4db7bd7a73e74', '31.222.203.2', 1680006805, '__ci_last_regenerate|i:1680006805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f77de0194ad96ca667cd373c36db6eb5d9dbfcf6', '31.222.203.2', 1680006805, '__ci_last_regenerate|i:1680006805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa194f8d2c7cc3d40ae749d007eab36b8980525', '31.222.203.2', 1680006805, '__ci_last_regenerate|i:1680006805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bed5f19b62cf879d110903ee98fc3c5124ee6be4', '31.222.203.2', 1680006805, '__ci_last_regenerate|i:1680006805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bcb9acf7c8d423c0894188761f24401fc1e475c7', '31.222.203.2', 1680006805, '__ci_last_regenerate|i:1680006805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('741c3b378c1bbc56ff10273c23fab7081135adea', '31.222.203.2', 1680008605, '__ci_last_regenerate|i:1680008605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17139987bce188f856e2aab3e869f8fca1c6cc75', '31.222.203.2', 1680008605, '__ci_last_regenerate|i:1680008605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f70fbfdfe6af29af93debf83f8edc47865e3440e', '31.222.203.2', 1680008605, '__ci_last_regenerate|i:1680008605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8734b05016add421348a863ab20c2c90f8e1814f', '31.222.203.2', 1680008605, '__ci_last_regenerate|i:1680008605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('466c82e29570495d3154bb032bc6dba53463d3aa', '31.222.203.2', 1680008605, '__ci_last_regenerate|i:1680008605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a281a80eda66f55383e29e55928c0262bd07a0e0', '31.222.203.2', 1680008605, '__ci_last_regenerate|i:1680008605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('60c994dfa72dd8f78fd4e0f3955977e81e86ef83', '31.222.203.2', 1680010402, '__ci_last_regenerate|i:1680010402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85ef23a24e634b3209ef1ef9beddf851b64c2851', '31.222.203.2', 1680010402, '__ci_last_regenerate|i:1680010402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9b0b9bcdb71f935c2175697bcf618c13856f352', '31.222.203.2', 1680010402, '__ci_last_regenerate|i:1680010402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac5c284e2dc05300a727bb664fe8ecffbc6d893a', '31.222.203.2', 1680010403, '__ci_last_regenerate|i:1680010403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826c30fce6db9aff5bf81fc6d2449c3ce83ce43e', '31.222.203.2', 1680010403, '__ci_last_regenerate|i:1680010403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20f18619110af73b1ad72c13c31adc19061ce295', '31.222.203.2', 1680010403, '__ci_last_regenerate|i:1680010403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf9b2ea16fa82d5dd5512b0b75bb8077381fda9', '31.222.203.2', 1680012195, '__ci_last_regenerate|i:1680012195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef30655914d4923d2f480b8648a89a6833d4be4e', '31.222.203.2', 1680012195, '__ci_last_regenerate|i:1680012195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('900ed86ea212b8d95b3d460b3db4d8dbb621af71', '31.222.203.2', 1680012195, '__ci_last_regenerate|i:1680012195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('effadc9bd1ed0fd0077f1278f09cc0dbfa09dc92', '31.222.203.2', 1680012198, '__ci_last_regenerate|i:1680012198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('638b1e1a70be3bf32c94c973fc9a4f3cf7b58f31', '31.222.203.2', 1680012198, '__ci_last_regenerate|i:1680012198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af696ac0da2835e7caa01a4b5e17fbe8b7d6f8b7', '31.222.203.2', 1680012198, '__ci_last_regenerate|i:1680012198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05f6eeb34818c9467d590f95950aaa71acfca522', '31.222.203.2', 1680014005, '__ci_last_regenerate|i:1680014005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44af95a5b6ca186c4d6a676c320229f8935bf576', '31.222.203.2', 1680014005, '__ci_last_regenerate|i:1680014005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('08a1a181d57b220e5039a367380af0aebdf237d3', '31.222.203.2', 1680014005, '__ci_last_regenerate|i:1680014005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5491895717b424315e20ca4c560df528eaabbfb', '31.222.203.2', 1680014007, '__ci_last_regenerate|i:1680014007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d5e661842dce4b46a70f2554aeb40af57f1642a', '31.222.203.2', 1680014007, '__ci_last_regenerate|i:1680014007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02428d21fb102c924b5c5aedc83795995e9d4f5e', '31.222.203.2', 1680014007, '__ci_last_regenerate|i:1680014007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1211a023c53346b3ef7f9430d4fa502639350354', '31.222.203.2', 1680015817, '__ci_last_regenerate|i:1680015817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dac43070f3160ff96f47a75ab4e96af69fc3a894', '31.222.203.2', 1680015817, '__ci_last_regenerate|i:1680015817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01e8f5b8ac20c45bea9d65ae163cbc46aa32ba3a', '31.222.203.2', 1680015817, '__ci_last_regenerate|i:1680015817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c71617ec84c6e6b3a16847ab7d01a189c32da01', '31.222.203.2', 1680015818, '__ci_last_regenerate|i:1680015818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29fcfbe97226b316a8b621d0760aa8b2a34487e2', '31.222.203.2', 1680015818, '__ci_last_regenerate|i:1680015818;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c02396327da2f9dcf2b2d190d57d0475ccd6424f', '31.222.203.2', 1680015818, '__ci_last_regenerate|i:1680015818;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3a147e060ad94796954c462b17b194596d70cbe', '37.111.218.245', 1680018007, '__ci_last_regenerate|i:1680018007;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680017491;register_id|s:3:\"383\";cash_in_hand|s:9:\"2650.0000\";register_open_time|s:19:\"2023-03-27 21:35:01\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1f247aecd4359e78c4ab810a3e628368bb8d50b', '31.222.203.2', 1680017603, '__ci_last_regenerate|i:1680017603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e53ecfcb351a44f4884edc4ff69cc92d17c08c33', '31.222.203.2', 1680017603, '__ci_last_regenerate|i:1680017603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9b3d4d8985048484ae240477ce1f5d766a8ead0f', '31.222.203.2', 1680017603, '__ci_last_regenerate|i:1680017603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a71ee1ae0b7615ef06af40c531a6290afe27e85', '31.222.203.2', 1680017605, '__ci_last_regenerate|i:1680017605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecd2fa86612a8b4ab0bcec100655d8b3c320bbdc', '31.222.203.2', 1680017605, '__ci_last_regenerate|i:1680017605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c0ee80e9aaf2c4a662399289d332c34348e2cd8', '31.222.203.2', 1680017605, '__ci_last_regenerate|i:1680017605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8759e0f3a262bd7fd9aba8495e52ef7335dad80', '37.111.218.245', 1680018260, '__ci_last_regenerate|i:1680018007;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679979179\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680018260;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d382a619023c0d6bd90a5a2a1c2c4f9bd50ef6d8', '31.222.203.2', 1680019401, '__ci_last_regenerate|i:1680019401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7044f0e09ddd0bc1925859040c2a1d648ab3b0e1', '31.222.203.2', 1680019401, '__ci_last_regenerate|i:1680019401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9838c3426fbebbd269f7c5de9ff76c603f2ef4ba', '31.222.203.2', 1680019401, '__ci_last_regenerate|i:1680019401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df2e580ba310ad0de9abed475ed6271ef653e35c', '31.222.203.2', 1680019403, '__ci_last_regenerate|i:1680019403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d31b522309e72cb158d791ca41aa072fd668d8d', '31.222.203.2', 1680019403, '__ci_last_regenerate|i:1680019403;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('307cdcb868bfcccb8a2b43c37dc3c1047a777762', '31.222.203.2', 1680019403, '__ci_last_regenerate|i:1680019403;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1945ae870034e93b2075f7c2d5974edd8f9a5c2', '31.222.203.2', 1680021204, '__ci_last_regenerate|i:1680021204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc3f2bb2b748fe3dda71806070abdf1bf04d0cf3', '31.222.203.2', 1680021204, '__ci_last_regenerate|i:1680021204;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76a067d4dfdf65717fbbf4988f90138c5ffaeee0', '31.222.203.2', 1680021204, '__ci_last_regenerate|i:1680021204;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31faa4ff65e386c49c3ca283327fe4903623fcce', '31.222.203.2', 1680021206, '__ci_last_regenerate|i:1680021206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('87b360e7feba699d539f623f700bb444e7b75eca', '31.222.203.2', 1680021206, '__ci_last_regenerate|i:1680021206;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4d0d97d00b9527bc5d956043babb9867130302b', '31.222.203.2', 1680021206, '__ci_last_regenerate|i:1680021206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f76136e4bffcda7d4ecbf5009961a470cf0b75', '31.222.203.2', 1680023008, '__ci_last_regenerate|i:1680023008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4954ae417a1c95c035c64b6e7fbe359e7c92b08b', '31.222.203.2', 1680023008, '__ci_last_regenerate|i:1680023008;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edaaeb8072e865a36afc1a1c24acd967ac466337', '31.222.203.2', 1680023008, '__ci_last_regenerate|i:1680023008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('162cb3b72eff9e77c26e0b5d571fd3c1a659f7eb', '31.222.203.2', 1680023010, '__ci_last_regenerate|i:1680023010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52f3597979e62d3901a3272930804c3fae750e99', '31.222.203.2', 1680023010, '__ci_last_regenerate|i:1680023010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('afb4f6c0681d7571a871ce2bc6565f43c8d92bb8', '31.222.203.2', 1680023010, '__ci_last_regenerate|i:1680023010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b7a5c8b9a68d03a7c96254c0fb16a5268c3bb24', '31.222.203.2', 1680024806, '__ci_last_regenerate|i:1680024806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88983fb4b42ef70894afa0c224abe204af47f221', '31.222.203.2', 1680024806, '__ci_last_regenerate|i:1680024806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6786fa1fada80cd46beb61047e875c29ad989ede', '31.222.203.2', 1680024806, '__ci_last_regenerate|i:1680024806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af6eb396e3c39189d6a1a05f24872a9e5f003fdd', '31.222.203.2', 1680024806, '__ci_last_regenerate|i:1680024806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('88430933c6e7198ccf12cb65cba31e30d46c3d38', '31.222.203.2', 1680024806, '__ci_last_regenerate|i:1680024806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f806e0f61278cb4a5e0cb9255fd3a2274e787b9', '31.222.203.2', 1680024806, '__ci_last_regenerate|i:1680024806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c5fcc53ea454cdfd9c8b3386fc75c2085a8964e', '51.15.251.143', 1680025644, '__ci_last_regenerate|i:1680025644;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('edd93328fc4bbb96fc24c236ec4e3cebf47e7f37', '31.222.203.2', 1680026595, '__ci_last_regenerate|i:1680026595;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('946961cc624f158830a50614b1acd69961b09956', '31.222.203.2', 1680026597, '__ci_last_regenerate|i:1680026597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b5f5839f6d66556242808ffd3923dd6eeb2f1b', '31.222.203.2', 1680026597, '__ci_last_regenerate|i:1680026597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e7743b5cca480efe22d9c050d890e208baee1b4', '31.222.203.2', 1680026597, '__ci_last_regenerate|i:1680026597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4b3e39adb206d28954faa8d16fa96e91b73ff438', '31.222.203.2', 1680026597, '__ci_last_regenerate|i:1680026597;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4053a9523d66a893779ecbae9de9467615461210', '31.222.203.2', 1680026597, '__ci_last_regenerate|i:1680026597;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98377e2f85de5b8be42222b6cd160510a408d04c', '31.222.203.2', 1680028405, '__ci_last_regenerate|i:1680028405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54c46000f9017bab90afa5b9963b21fcfb42ce26', '31.222.203.2', 1680028405, '__ci_last_regenerate|i:1680028405;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5191d1aa5944740857ac1130b79028e2d32d8a61', '31.222.203.2', 1680028405, '__ci_last_regenerate|i:1680028405;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35bfbe8b3bbdfa8c1733d171fc10ca6bcd2297b9', '31.222.203.2', 1680028406, '__ci_last_regenerate|i:1680028406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5e0e441f2b0305613d89c782b708924e29de59a', '31.222.203.2', 1680028406, '__ci_last_regenerate|i:1680028406;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4c042c3013be59115eb1da4b39d42ba1812271b', '31.222.203.2', 1680028406, '__ci_last_regenerate|i:1680028406;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea6dc3cb521bc16a77b26d35db2ff198cfd10d1a', '31.222.203.2', 1680030193, '__ci_last_regenerate|i:1680030193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adf76dbb88bb6e012dd3e6ebe43eda05dd62eace', '31.222.203.2', 1680030193, '__ci_last_regenerate|i:1680030193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d033942b5edb37b4abc4f40ff6a009c419a7495', '31.222.203.2', 1680030193, '__ci_last_regenerate|i:1680030193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe4cb8162dfeab4040e8e05c75ac6a908b3b6e6e', '31.222.203.2', 1680030194, '__ci_last_regenerate|i:1680030194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efd814b7951de3b33db4482853764c6fe5dec8f0', '31.222.203.2', 1680030194, '__ci_last_regenerate|i:1680030194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5f3b8226ec8ee040b2cb9ddd24d76664b42f127', '31.222.203.2', 1680030194, '__ci_last_regenerate|i:1680030194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd6584a646aa99aae3849ef865515fdf8e27ca9f', '87.236.176.236', 1680030826, '__ci_last_regenerate|i:1680030826;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4fbb1490b728e845102e539b3117de1d2735acfb', '87.236.176.236', 1680030835, '__ci_last_regenerate|i:1680030830;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('580967d19b56a73ff807746c5bfe3d7ee7814786', '31.222.203.2', 1680031994, '__ci_last_regenerate|i:1680031994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20229b7657648f93e18292e1085213a6f269d2ab', '31.222.203.2', 1680031994, '__ci_last_regenerate|i:1680031994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1121e707c76354c4b9cabb9e08b14fb275d8621', '31.222.203.2', 1680031994, '__ci_last_regenerate|i:1680031994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e34e1b8ab81d6db37861d64a893fef5981f51802', '31.222.203.2', 1680031996, '__ci_last_regenerate|i:1680031996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dcd505e0e1db232e2fb7c438323da15fda9fd82e', '31.222.203.2', 1680031996, '__ci_last_regenerate|i:1680031996;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e8af016afb1692407aae808de6a02c80e080485', '31.222.203.2', 1680031996, '__ci_last_regenerate|i:1680031996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f72efa4b08c4cf2172564ef8db2a84f23dfb9c', '31.222.203.2', 1680033800, '__ci_last_regenerate|i:1680033800;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ecc1b22422c9a7c9c576190afc9f4c6dd3eeb5f', '31.222.203.2', 1680033801, '__ci_last_regenerate|i:1680033801;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('be53c3efb8ea105c38919128b33d16507cb4180c', '31.222.203.2', 1680033801, '__ci_last_regenerate|i:1680033801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c087003f80bb31b724f2d469c8cd4f412112ac57', '31.222.203.2', 1680033802, '__ci_last_regenerate|i:1680033802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cfd0ef515919b15dd343f1228eee86b01d4dbc4', '31.222.203.2', 1680033802, '__ci_last_regenerate|i:1680033802;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0ab7b7c9d5f532cbbf4231a369113eb4cce547a', '31.222.203.2', 1680033802, '__ci_last_regenerate|i:1680033802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef81717244f38c1cda4339d20c9682d5714e1d3d', '162.142.125.225', 1680035275, '__ci_last_regenerate|i:1680035275;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72491f3856ed410bad8424c78ec7c2d3d56420f2', '162.142.125.225', 1680035281, '__ci_last_regenerate|i:1680035281;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf97f2ab8292622362668cd20ffea7e205ca238f', '162.142.125.225', 1680035281, '__ci_last_regenerate|i:1680035281;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ff2b6c93208a68ba4c46d9d8c811844d976e3540', '31.222.203.2', 1680035591, '__ci_last_regenerate|i:1680035591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7b2e54720dcb965d7a8625d1fd21cd3fb6090c0', '31.222.203.2', 1680035593, '__ci_last_regenerate|i:1680035593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab8cbfffaf7a2cfa36b33651fcef8c041b5024a8', '31.222.203.2', 1680035593, '__ci_last_regenerate|i:1680035593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('06a50ca5ed38b1c8cb9429fce72e00978f5f117e', '31.222.203.2', 1680035593, '__ci_last_regenerate|i:1680035593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7396ca68bf19a0709acf11b4e6669fc81fef978f', '31.222.203.2', 1680035593, '__ci_last_regenerate|i:1680035593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de17fd473c48d1d3fbd0f27cd2144ba24354fe0b', '31.222.203.2', 1680035593, '__ci_last_regenerate|i:1680035593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02cb0ed16370924d00c36fe9cc01f5f6b09345c8', '31.222.203.2', 1680037394, '__ci_last_regenerate|i:1680037394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('369788d792a9f66f4f1014455827d022021ef923', '31.222.203.2', 1680037394, '__ci_last_regenerate|i:1680037394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31acec70411d7dc1c5a0b6ceab257c48b3cc08cc', '31.222.203.2', 1680037394, '__ci_last_regenerate|i:1680037394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('532b270cf95e2c1ec47e0d463f7b294d3bbef39d', '31.222.203.2', 1680037394, '__ci_last_regenerate|i:1680037394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa49627171f15405405e0d2dbe9b7079502d03e1', '31.222.203.2', 1680037394, '__ci_last_regenerate|i:1680037394;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d7928f9d8a92db77c8ab2fa93c5e05c5527cbb4e', '31.222.203.2', 1680037394, '__ci_last_regenerate|i:1680037394;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50d7e0d041c467c3db6c62e54efea868cd6c9487', '31.222.203.2', 1680039194, '__ci_last_regenerate|i:1680039194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21938e5955d312537f622b04223afabb89e8faed', '31.222.203.2', 1680039194, '__ci_last_regenerate|i:1680039194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a24c2cb0718fa01b0504769e082bb70c2e64a3d1', '31.222.203.2', 1680039194, '__ci_last_regenerate|i:1680039194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e7db921d0b0b0f469890032040852a804cbe494', '31.222.203.2', 1680039194, '__ci_last_regenerate|i:1680039194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84b87df09ab31777dac506abd0670209fc0f0dac', '31.222.203.2', 1680039194, '__ci_last_regenerate|i:1680039194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8b60c5a4becc76b279a37cd2554111f9b684a9c', '31.222.203.2', 1680039194, '__ci_last_regenerate|i:1680039194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba310924c34d62a76391b12198d4a790f93c79cc', '31.222.203.2', 1680040995, '__ci_last_regenerate|i:1680040995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da7823db10503bf8e207a7ef5a01480f010d50dc', '31.222.203.2', 1680040995, '__ci_last_regenerate|i:1680040995;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adaec605b7fe188a5d84d3284ab4ea607ab1c39d', '31.222.203.2', 1680040995, '__ci_last_regenerate|i:1680040995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d179f8892c75dd47c042f0cb5133103c2baff45', '31.222.203.2', 1680040996, '__ci_last_regenerate|i:1680040996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a18e80c71205f608a6e8d1a733b16204b0905fd', '31.222.203.2', 1680040996, '__ci_last_regenerate|i:1680040996;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0721c6efef82881740b6d2432b018ec11de907', '31.222.203.2', 1680040996, '__ci_last_regenerate|i:1680040996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e29fa931f80c2dc1af9a1b70f63712a455056e59', '31.222.203.2', 1680042796, '__ci_last_regenerate|i:1680042796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69fae5b5c59cce6e5da8f1641925fc360b8e7593', '31.222.203.2', 1680042796, '__ci_last_regenerate|i:1680042796;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a06c6d5a5fbd0a82bff3b9ac867de303051af1c', '31.222.203.2', 1680042796, '__ci_last_regenerate|i:1680042796;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4710cb92223e2cce0169ebacfca8caef0db9e3c', '31.222.203.2', 1680042797, '__ci_last_regenerate|i:1680042797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4371fa203dde0a732ee5bab571026101326462a', '31.222.203.2', 1680042797, '__ci_last_regenerate|i:1680042797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e50baa968cb289e4769fdf12441e390735e8b82f', '31.222.203.2', 1680042797, '__ci_last_regenerate|i:1680042797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3f2dcbd9c1028491c7456da38b613181900fe4', '31.222.203.2', 1680044598, '__ci_last_regenerate|i:1680044598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2efa11dc233e4a25d18e2a04827761cabfef3a2c', '31.222.203.2', 1680044598, '__ci_last_regenerate|i:1680044598;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a807e8b3d5fa747631a6c3b5851f82189a4698ab', '31.222.203.2', 1680044598, '__ci_last_regenerate|i:1680044598;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07511b5590a99388f8fa90356556b022158dbe74', '31.222.203.2', 1680044601, '__ci_last_regenerate|i:1680044601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44165034065ee81d9da946d3c14ce56df7a7e546', '31.222.203.2', 1680044601, '__ci_last_regenerate|i:1680044601;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbcec7ca94a98b3f2bc1b1a4c6841e09f14b5e0b', '31.222.203.2', 1680044601, '__ci_last_regenerate|i:1680044601;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c6b9ead76578022114b8510420a423083a7c3ac2', '31.222.203.2', 1680046393, '__ci_last_regenerate|i:1680046393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b43e1aae36e672a37498e2a3f3093b641cc004', '31.222.203.2', 1680046393, '__ci_last_regenerate|i:1680046393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14ed5133b16633ba96794d8223b34568995631d7', '31.222.203.2', 1680046393, '__ci_last_regenerate|i:1680046393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53fd3efd1e0946fe09e9110e39f9de4c3fb7cff5', '31.222.203.2', 1680046397, '__ci_last_regenerate|i:1680046397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('01747a66088c53ab6da79bf9d8be97863d6adbf3', '31.222.203.2', 1680046397, '__ci_last_regenerate|i:1680046397;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25c205b44113f4c7a0035e26dccb6c1edea5a925', '31.222.203.2', 1680046397, '__ci_last_regenerate|i:1680046397;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d57a0c907717f946bf4436af13c354997978e2d', '31.222.203.2', 1680048191, '__ci_last_regenerate|i:1680048191;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ad6e1d16ec6d4b1dd0a1ed62a1ee3cf8878a9fb', '31.222.203.2', 1680048193, '__ci_last_regenerate|i:1680048193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29d8273e84c79d9884a1df6637f6f117dd5b22b9', '31.222.203.2', 1680048193, '__ci_last_regenerate|i:1680048193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e31328fe92288e91b52f1405604e9264b04545c0', '31.222.203.2', 1680048193, '__ci_last_regenerate|i:1680048193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a2db9e2136e32ed82367c161442965df6a22ca5', '31.222.203.2', 1680048193, '__ci_last_regenerate|i:1680048193;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a39292574aaa4bf48de0db5b3c5576b83146181b', '31.222.203.2', 1680048193, '__ci_last_regenerate|i:1680048193;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e99cdf3c189db3912d99d6b7686d60ff4f63fc0', '31.222.203.2', 1680049991, '__ci_last_regenerate|i:1680049991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e225338a4ed2379174774d201c3e0b11f3ac7307', '31.222.203.2', 1680049991, '__ci_last_regenerate|i:1680049991;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d5a66d71a93ae0169b91b03ea005dfe83dd8d399', '31.222.203.2', 1680049991, '__ci_last_regenerate|i:1680049991;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72771b72d875e4c87554888cab9e2328893573a6', '31.222.203.2', 1680049994, '__ci_last_regenerate|i:1680049993;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92247546624d8f02ff2636c2f3901ab2526a3d40', '31.222.203.2', 1680049994, '__ci_last_regenerate|i:1680049994;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7111fff7d49dfb09c69a4e0675cdd72e823a2446', '31.222.203.2', 1680049994, '__ci_last_regenerate|i:1680049994;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('37fa8c585d316baee6ae0652fdb139a17c957580', '31.222.203.2', 1680051789, '__ci_last_regenerate|i:1680051789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b88adc96110a57dc4073f3b4774c0cabdd33629b', '31.222.203.2', 1680051789, '__ci_last_regenerate|i:1680051789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('135dc1f8e8466591e3d5b4188c780f42af17d697', '31.222.203.2', 1680051789, '__ci_last_regenerate|i:1680051789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3aade49b9ff1d3d65085556baf627a079e71d313', '31.222.203.2', 1680051791, '__ci_last_regenerate|i:1680051791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('62445b0a2959ace4bffa0fd8efa33b9e2ebf4df9', '31.222.203.2', 1680051791, '__ci_last_regenerate|i:1680051791;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('906a75ff337abe0a50066e67f274aeb44131655e', '31.222.203.2', 1680051791, '__ci_last_regenerate|i:1680051791;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11b35a0e45e4ad36d5566f8727e51d40a8bead33', '31.222.203.2', 1680053592, '__ci_last_regenerate|i:1680053592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('debf37f07fd7230601571938ed59ef117ff70533', '31.222.203.2', 1680053592, '__ci_last_regenerate|i:1680053592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89f091faf9eeba542da9097c38acd389c05e65bb', '31.222.203.2', 1680053592, '__ci_last_regenerate|i:1680053592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4ff9fa2d822de7ac7471f487306eedb4e86fd7b', '31.222.203.2', 1680053594, '__ci_last_regenerate|i:1680053594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2138010609964b29cee28663d55df3a826486f33', '31.222.203.2', 1680053594, '__ci_last_regenerate|i:1680053594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51a5dc31eaba50aa95132d9bf50c8fe6d9da3b59', '31.222.203.2', 1680053594, '__ci_last_regenerate|i:1680053594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56d53f0ae4b6549e0e77154291d6e226d2993f40', '31.222.203.2', 1680055396, '__ci_last_regenerate|i:1680055396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a59aa526942ca828f8182df1c533ae8fc5780b78', '31.222.203.2', 1680055396, '__ci_last_regenerate|i:1680055396;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3ffbfc0e38364e773d5576277ab05391df8ce26f', '31.222.203.2', 1680055396, '__ci_last_regenerate|i:1680055396;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1a55563d15a48a924fd43dd8e6eaa0795445087', '31.222.203.2', 1680055398, '__ci_last_regenerate|i:1680055398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d0ad787d0f5cf1ff6e985e50594ec15a7ee2f3d', '31.222.203.2', 1680055398, '__ci_last_regenerate|i:1680055398;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('848966fd76aac603954d60ea84b58c72b7ec6f09', '31.222.203.2', 1680055398, '__ci_last_regenerate|i:1680055398;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('73fdc6fd98b65ab040873b0488e747c27bbe2536', '31.222.203.2', 1680057194, '__ci_last_regenerate|i:1680057194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a7ee53be9957c9f634acdcb1b143a616e791a3', '31.222.203.2', 1680057194, '__ci_last_regenerate|i:1680057194;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19f5fde0ef8d19e2377e72a8305594a4f8c343df', '31.222.203.2', 1680057194, '__ci_last_regenerate|i:1680057194;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e16fae77389a7e3186fdf57d602b928f68206a01', '31.222.203.2', 1680057195, '__ci_last_regenerate|i:1680057195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('726a2a549017548c72cc591ab299f709a93a2e55', '31.222.203.2', 1680057195, '__ci_last_regenerate|i:1680057195;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41a5465522a13479d3b4a358fe56dacad45daeb4', '31.222.203.2', 1680057195, '__ci_last_regenerate|i:1680057195;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2463c48e009f6cbd389b3818fc66a395434160', '31.222.203.2', 1680059000, '__ci_last_regenerate|i:1680059000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e362abb1186b32b8700ad7a4f6f318834973c249', '31.222.203.2', 1680059000, '__ci_last_regenerate|i:1680059000;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f12ab1b3db4483c8f94571a38d479df646e59b', '31.222.203.2', 1680059000, '__ci_last_regenerate|i:1680059000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4caefc7710a19c0b8d52e81137f2731ec63df7c5', '31.222.203.2', 1680059003, '__ci_last_regenerate|i:1680059003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('36cb18d619b18d7b8b7ccf3e84fbdd5a827fa82e', '31.222.203.2', 1680059003, '__ci_last_regenerate|i:1680059003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e02337f6ba4344ccdd296fff305a57107ef60b6d', '31.222.203.2', 1680059003, '__ci_last_regenerate|i:1680059003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc4b6e3efd61b9eabb0eed46d75d2eddd8dec51d', '31.222.203.2', 1680060793, '__ci_last_regenerate|i:1680060793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('14d099410102064554c49ed2069a99dde8c95bf6', '31.222.203.2', 1680060793, '__ci_last_regenerate|i:1680060793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4d294352ea42e1ff68892e6b903336c005dcec6f', '31.222.203.2', 1680060793, '__ci_last_regenerate|i:1680060793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba30dc3ae748564d2a6fdaf9c6ad659712c93402', '31.222.203.2', 1680060793, '__ci_last_regenerate|i:1680060793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f1ffc91ac19d621e47bff6d657d06c6f8a16299b', '31.222.203.2', 1680060793, '__ci_last_regenerate|i:1680060793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dabd402779232d02a1336c8e8437800a909adcf9', '31.222.203.2', 1680060793, '__ci_last_regenerate|i:1680060793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55b86e89f0e9d81364b1158325ea0944d3e546b2', '31.222.203.2', 1680062603, '__ci_last_regenerate|i:1680062603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8b74616eadc9259788e1f417e8d0485804d4b1ce', '31.222.203.2', 1680062603, '__ci_last_regenerate|i:1680062603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32043c2c5c78663ff53f14bf9e840a07fc962df9', '31.222.203.2', 1680062603, '__ci_last_regenerate|i:1680062603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a131b706766dfc227323b6b270edf4b6973129e2', '31.222.203.2', 1680062605, '__ci_last_regenerate|i:1680062605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f685d7535605bf7fc679d7f8ef7aa952af2ed3a3', '31.222.203.2', 1680062605, '__ci_last_regenerate|i:1680062605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e955f44ea7a5e0dee4290d4b1caa78b2983ddc22', '31.222.203.2', 1680062605, '__ci_last_regenerate|i:1680062605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2fcd182f5d99b2dbfd27c9f940b48e0df7fa316d', '167.248.133.185', 1680063471, '__ci_last_regenerate|i:1680063471;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2b157add9acf2c5621ab02fee546242a222af23', '167.248.133.185', 1680063472, '__ci_last_regenerate|i:1680063472;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d1e1b7d985a37e6bd5130ca1ff1acf4ef9b009a', '167.248.133.185', 1680063472, '__ci_last_regenerate|i:1680063472;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c62970335dedd6d921aa240d27af16b186ddfc04', '31.222.203.2', 1680064407, '__ci_last_regenerate|i:1680064407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91068108593081e5433b5393f2ccb38d0865df5f', '31.222.203.2', 1680064408, '__ci_last_regenerate|i:1680064408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d1d6f98cffd209b97a6df522054b13de6d0dcec', '31.222.203.2', 1680064408, '__ci_last_regenerate|i:1680064408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67152d91fa238eec2d7dfa16415838492277b0a6', '31.222.203.2', 1680064408, '__ci_last_regenerate|i:1680064408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdbcbc92230a8e6c6c709928a26facca1e448bb7', '31.222.203.2', 1680064408, '__ci_last_regenerate|i:1680064408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f14d4a4fd9ce86f292ca9e53af27db70656d0f6', '31.222.203.2', 1680064408, '__ci_last_regenerate|i:1680064408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f8b1242968f5113448bd36b9b012453df55be73', '31.222.203.2', 1680066197, '__ci_last_regenerate|i:1680066197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8bc5c5f1250d57aeceee5c6de969dba7644c424', '31.222.203.2', 1680066197, '__ci_last_regenerate|i:1680066197;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9db155ddf4be39465d6bdd04928f912f3eada6b4', '31.222.203.2', 1680066197, '__ci_last_regenerate|i:1680066197;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f77877899d05b5d00c93d9fbdcf6f96a8784923', '31.222.203.2', 1680066201, '__ci_last_regenerate|i:1680066201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca3469a1d834041cef9620ef54a56ae32104de03', '31.222.203.2', 1680066201, '__ci_last_regenerate|i:1680066201;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c17249974043f7946ca1de835de79fab4a720a', '31.222.203.2', 1680066201, '__ci_last_regenerate|i:1680066201;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0031eb86cd0b198931622bfaa2daadc61256ba', '31.222.203.2', 1680068002, '__ci_last_regenerate|i:1680068002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27c438d3fb086b24d6a707c5b7d4595201945f8e', '31.222.203.2', 1680068002, '__ci_last_regenerate|i:1680068002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1944a87d30bae47da0a126bd9fa59469dd56748a', '31.222.203.2', 1680068002, '__ci_last_regenerate|i:1680068002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e863f82bf9927a182f28fa423cdc0000338edee', '31.222.203.2', 1680068005, '__ci_last_regenerate|i:1680068005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0c9173930c2f6826dc83da7577a6b82ab496594', '31.222.203.2', 1680068005, '__ci_last_regenerate|i:1680068005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38560ac2e3468014a9ff7edffcc5bbec1ef1fdcc', '31.222.203.2', 1680068005, '__ci_last_regenerate|i:1680068005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44854426829856553fd422beb2a7aee4790debe3', '37.111.218.20', 1680073731, '__ci_last_regenerate|i:1680073731;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679988886\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680069656;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('468a20a643d5ab1be49e0a8083215d8ed31142c3', '31.222.203.2', 1680069802, '__ci_last_regenerate|i:1680069802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d832c5a21e6d33339a48e7618696ae63fed9280', '31.222.203.2', 1680069802, '__ci_last_regenerate|i:1680069802;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c4c0123aa345ba4307b66a1b5538b9d2072c5f', '31.222.203.2', 1680069802, '__ci_last_regenerate|i:1680069802;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade2803e532651a489866fedbb3ade683339156b', '31.222.203.2', 1680069805, '__ci_last_regenerate|i:1680069805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df01f3fdc9d405d09db076879d18d43b86a1706f', '31.222.203.2', 1680069805, '__ci_last_regenerate|i:1680069805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8cc9f18c9608dd712ce4d0f85be5fc6816cffb2', '31.222.203.2', 1680069805, '__ci_last_regenerate|i:1680069805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c7561e77c9b100ebd52bf2e0f75992b3e20158c', '31.222.203.2', 1680071592, '__ci_last_regenerate|i:1680071592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52abcbb0f0b20baa388b33ab483ba3ee55f57e74', '31.222.203.2', 1680071592, '__ci_last_regenerate|i:1680071592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02b1799edaecc99f5130e92e2ff5ced3bd0c6b6c', '31.222.203.2', 1680071592, '__ci_last_regenerate|i:1680071592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0025871fa0f535433181f80668a870c3acafd7f2', '31.222.203.2', 1680071594, '__ci_last_regenerate|i:1680071594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6666f5128d01518c250036b15c6b44ed5f04375', '31.222.203.2', 1680071594, '__ci_last_regenerate|i:1680071594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb3b76d55099c53e837c21a23b7716bc26e80656', '31.222.203.2', 1680071594, '__ci_last_regenerate|i:1680071594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ff1ae98a140c4eec694df834455ca962d969dc0', '31.222.203.2', 1680073399, '__ci_last_regenerate|i:1680073399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8eb38ca92f1d2896102837b26be7ea8d75694de0', '31.222.203.2', 1680073399, '__ci_last_regenerate|i:1680073399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd8fa0a5c22db4ba2951ff4dd6917419b2fb496c', '31.222.203.2', 1680073399, '__ci_last_regenerate|i:1680073399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5352ebab92cd62b42426f27033745c21e4f1f329', '31.222.203.2', 1680073399, '__ci_last_regenerate|i:1680073399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45c78d800e986973c9890fc39c821c1d0a3b5779', '31.222.203.2', 1680073399, '__ci_last_regenerate|i:1680073399;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b16ed4af36618bf29039995e5545077ab327f2be', '31.222.203.2', 1680073399, '__ci_last_regenerate|i:1680073399;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04973bcbcd5550803edb5dea38a0f0f8ba4af2e5', '37.111.218.20', 1680074992, '__ci_last_regenerate|i:1680074992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679988886\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680073738;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bf8bb8b9362141a17424f18f98e164879cc8494', '37.111.218.20', 1680075022, '__ci_last_regenerate|i:1680074992;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1679988886\";last_ip|s:14:\"37.111.218.245\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680075022;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbb0a4e4248f1c35fb8fd5fc13667dae0c84d8ca', '31.222.203.2', 1680075192, '__ci_last_regenerate|i:1680075192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f25f28ecd3437f52ae8209e2d8f5227ba287adf', '31.222.203.2', 1680075192, '__ci_last_regenerate|i:1680075192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1a12f769f28c44ce4b0824b0a9b62e6e7a38b03', '31.222.203.2', 1680075192, '__ci_last_regenerate|i:1680075192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552d80b8dc4b76dce7b2a1757cd52cdb4e11f682', '31.222.203.2', 1680075192, '__ci_last_regenerate|i:1680075192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8809bbcdb75e73d5c5ebe26f120efaf80d68f49', '31.222.203.2', 1680075192, '__ci_last_regenerate|i:1680075192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96addb172317ea2f0b749451e6b88fb20ac5a817', '31.222.203.2', 1680075192, '__ci_last_regenerate|i:1680075192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a92f080de42ea90b8694c1743b59cbd9e24f8beb', '31.222.203.2', 1680076986, '__ci_last_regenerate|i:1680076986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7116ba118256738596832dd33f88585b4ce30eca', '31.222.203.2', 1680076986, '__ci_last_regenerate|i:1680076986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4a950f0cf8910275ebc01dd1d157ac73b8743db6', '31.222.203.2', 1680076986, '__ci_last_regenerate|i:1680076986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3649ce210a8cd0ccb84c55d8a791a65f3ec13c89', '31.222.203.2', 1680076986, '__ci_last_regenerate|i:1680076986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1294865c3885f1976fd3f10982296dc07351834f', '31.222.203.2', 1680076986, '__ci_last_regenerate|i:1680076986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a911e0eb9c5dd8fdf4ac700daecb2ff238a126', '31.222.203.2', 1680076986, '__ci_last_regenerate|i:1680076986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7f337b5a0a202d2d640c51cebe906d0ad87f74d7', '31.222.203.2', 1680078786, '__ci_last_regenerate|i:1680078786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f3b83112b9727e11cd80fbb1af5784265b1f531', '31.222.203.2', 1680078786, '__ci_last_regenerate|i:1680078786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd179646a0ea059bc2b847293874fe474fce8641', '31.222.203.2', 1680078786, '__ci_last_regenerate|i:1680078786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22ee224164ea323ceff4ba92e2d1db60ee4af2c2', '31.222.203.2', 1680078786, '__ci_last_regenerate|i:1680078786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b5048d72def8441fb671fee7c6a4513a1ab0f63', '31.222.203.2', 1680078786, '__ci_last_regenerate|i:1680078786;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bfee8bef2af745e2e4e239bbd639a79304047e12', '31.222.203.2', 1680078786, '__ci_last_regenerate|i:1680078786;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9a22009c43c180df5b8f90761cb3d6656443c23', '162.142.125.215', 1680080253, '__ci_last_regenerate|i:1680080253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('98e7994e66f4839d51302eeb2e7f19f916955db8', '162.142.125.215', 1680080253, '__ci_last_regenerate|i:1680080253;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('983807449b05770ee5ec95c9cc7a5d1652c2f857', '162.142.125.215', 1680080253, '__ci_last_regenerate|i:1680080253;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb0e9c6011d0411991a72526bfe7ddc270d85549', '31.222.203.2', 1680080638, '__ci_last_regenerate|i:1680080638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('391bc9e115338b1619bcb87a7b9352c7eccdb350', '31.222.203.2', 1680080638, '__ci_last_regenerate|i:1680080638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53a44d39e47dcee7f5f2fd85fe179295fd6a2fb0', '31.222.203.2', 1680080638, '__ci_last_regenerate|i:1680080638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('314e1dba39207382515d21779cdd15b3a9e280bb', '31.222.203.2', 1680080638, '__ci_last_regenerate|i:1680080638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e06f64e6098718f9aab61a98296050e08a09d1ab', '31.222.203.2', 1680080638, '__ci_last_regenerate|i:1680080638;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d1610ec86ae74a93a7ed5f3834e3d225f02b7093', '31.222.203.2', 1680080638, '__ci_last_regenerate|i:1680080638;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c171adb08475c8fbeb5919a02db1d88bc69fe7fc', '31.222.203.2', 1680082379, '__ci_last_regenerate|i:1680082379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e49e90b0308bd24de591e3ec15df54c8aa5c1613', '31.222.203.2', 1680082379, '__ci_last_regenerate|i:1680082379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9017c243a9f8b67ed29915b15cf6cd6c22df121a', '31.222.203.2', 1680082379, '__ci_last_regenerate|i:1680082379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58705997a403422d4e16f4ddca2c36ad3a926563', '31.222.203.2', 1680082381, '__ci_last_regenerate|i:1680082381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10e14b465539973447e3525f71470fa1cd66ff9f', '31.222.203.2', 1680082381, '__ci_last_regenerate|i:1680082381;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97e7ccb17f250a59092b41188633790063dbfe31', '31.222.203.2', 1680082381, '__ci_last_regenerate|i:1680082381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa52ec24869f72c4da9cb2eab7e19653c61090c9', '147.78.47.249', 1680083277, '__ci_last_regenerate|i:1680083277;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9abb45f7f2fc5c780a8e4f52a7a0015ca9321e62', '147.78.47.249', 1680083279, '__ci_last_regenerate|i:1680083279;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5189597c046e5083d5ebaa51017ef3786eec38db', '147.78.47.249', 1680083281, '__ci_last_regenerate|i:1680083281;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d8d2d544a1daccec98bfcfe54d8468b9a6276aa7', '37.111.218.20', 1680083813, '__ci_last_regenerate|i:1680083813;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680069641\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680083706;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48cc1a67f93f6fc26fb67318c3947435e0a5e5e7', '37.111.218.20', 1680084786, '__ci_last_regenerate|i:1680084786;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680069641\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680084039;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eca239a0ed93528ecea1fe34f27aedd35e20b4ee', '31.222.203.2', 1680084192, '__ci_last_regenerate|i:1680084192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a098241f4a1f2662666a489c25b5c07cecf1d15b', '31.222.203.2', 1680084192, '__ci_last_regenerate|i:1680084192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e08aec25ccb5c60107b5697589786a358e35b52', '31.222.203.2', 1680084192, '__ci_last_regenerate|i:1680084192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('371379dd9534e1daf2a7e22ad45020c2f24a6b95', '31.222.203.2', 1680084192, '__ci_last_regenerate|i:1680084192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91bffa67e12ba31cfbd1b0a308863f94933168cd', '31.222.203.2', 1680084192, '__ci_last_regenerate|i:1680084192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6b84df477157db530f2af5daa83c92cb05ce39fa', '31.222.203.2', 1680084192, '__ci_last_regenerate|i:1680084192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0dcbbdbc0c66a2f8f57c0d6175ef0f8651340781', '37.111.218.20', 1680086964, '__ci_last_regenerate|i:1680086964;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680069641\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680085016;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d3b926724b5ce1b0e1b365d3f8fd6d1de71e3253', '31.222.203.2', 1680085983, '__ci_last_regenerate|i:1680085983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00f7edd11d7467cb4923b27c8064d135991ade43', '31.222.203.2', 1680085985, '__ci_last_regenerate|i:1680085985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bf4c6bfdadbdc768a81e6b7ef14ade7b6e7d55c', '31.222.203.2', 1680085985, '__ci_last_regenerate|i:1680085985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('513ff4aa15e455a90510869ea9f17697adfd9dc2', '31.222.203.2', 1680085985, '__ci_last_regenerate|i:1680085985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b8ac7c7e2d6986d074d44e6a5cf04ed0a1d28a2', '31.222.203.2', 1680085985, '__ci_last_regenerate|i:1680085985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7afe9cce4d74b11759ceaa184868679f1cd584a7', '31.222.203.2', 1680085985, '__ci_last_regenerate|i:1680085985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45f1ba118cccac1063472c9d72174b94e641fd19', '37.111.218.20', 1680086968, '__ci_last_regenerate|i:1680086964;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680069641\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680086968;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('41180e407d1ed5351d1507da401cd84c37bcc999', '31.222.203.2', 1680087789, '__ci_last_regenerate|i:1680087789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1d33e4cdb9df5386d15d0d5bc8efeb1dedcf22a', '31.222.203.2', 1680087789, '__ci_last_regenerate|i:1680087789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('899c38ddf1712b59d0f25f3ae40c8cd3d5072e32', '31.222.203.2', 1680087789, '__ci_last_regenerate|i:1680087789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b47de7e65da01173b0f5eb92d7c78455d5d8fa95', '31.222.203.2', 1680087789, '__ci_last_regenerate|i:1680087789;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e20d0d1f19272febde5188d2bace17366509558', '31.222.203.2', 1680087789, '__ci_last_regenerate|i:1680087789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3e5a1edbb9425b0baa7b73005993bfdf0f2fca', '31.222.203.2', 1680087789, '__ci_last_regenerate|i:1680087789;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77f679e62a4ff924b967c2ae48701c247e184748', '31.222.203.2', 1680089585, '__ci_last_regenerate|i:1680089585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b0a624426a3fa67c40b5294dc10881a50aef327', '31.222.203.2', 1680089585, '__ci_last_regenerate|i:1680089585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2cbf91082a2fd4379883fe3ced91fa5b8516332', '31.222.203.2', 1680089585, '__ci_last_regenerate|i:1680089585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ca3a9f2811ba62019c467a87e5fa79ec4d480c1', '31.222.203.2', 1680089587, '__ci_last_regenerate|i:1680089587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('718c58a29231bbfbb33b8dc272a23861bb15d00d', '31.222.203.2', 1680089587, '__ci_last_regenerate|i:1680089587;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc3e0e10cae0788e9d42b0e6534241de0e1cde90', '31.222.203.2', 1680089587, '__ci_last_regenerate|i:1680089587;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3eaa7e4aa0dd7b050a50da76c9671b14be718487', '31.222.203.2', 1680091382, '__ci_last_regenerate|i:1680091382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c04198dce5b6c8bc4c84fa68b23f9c9da12d9c8', '31.222.203.2', 1680091382, '__ci_last_regenerate|i:1680091382;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dda654c3ac93854215c9adc11b900de1a1984847', '31.222.203.2', 1680091382, '__ci_last_regenerate|i:1680091382;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10a0ce91fbd8d1c808b0c1327be741f733953ce3', '31.222.203.2', 1680091384, '__ci_last_regenerate|i:1680091384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a6a395b929758631f46f9023829e85d2962c5f9', '31.222.203.2', 1680091384, '__ci_last_regenerate|i:1680091384;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a5e4146b5662f807fb135b8d9a843b699b75ccac', '31.222.203.2', 1680091384, '__ci_last_regenerate|i:1680091384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e283c9e311364cd93de99a0b7412fe98caeda6fc', '31.222.203.2', 1680093179, '__ci_last_regenerate|i:1680093179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f7a60ebf86e21ce1a9097bcf8c054f5a1d8426db', '31.222.203.2', 1680093179, '__ci_last_regenerate|i:1680093179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fc705616f598eacd55eb0b998e7fb9edf982ebe', '31.222.203.2', 1680093179, '__ci_last_regenerate|i:1680093179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('557e5fb194daa0d98236e43bdaa5e946ca208c75', '31.222.203.2', 1680093179, '__ci_last_regenerate|i:1680093179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5364adcd77c251972381f53e26bd42f06e6035e', '31.222.203.2', 1680093179, '__ci_last_regenerate|i:1680093179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('107f43ab82999f127a30bbe2d7a1366eee20d6d2', '31.222.203.2', 1680093179, '__ci_last_regenerate|i:1680093179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69b60c8ed03c69e1dd58212837726e746a53d0a0', '31.222.203.2', 1680094976, '__ci_last_regenerate|i:1680094976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd01caeede1fddb0b0f0cec30da2f1be1611d2e5', '31.222.203.2', 1680094976, '__ci_last_regenerate|i:1680094976;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6d5997fc1e25c10359f130c6e75f6523a3563ed', '31.222.203.2', 1680094976, '__ci_last_regenerate|i:1680094976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9ebcf321c6ff20ce6a0da5083e6c87394b5312cf', '31.222.203.2', 1680094978, '__ci_last_regenerate|i:1680094978;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de4ced0a144c10b5eee51478be5e500ca5d6db05', '31.222.203.2', 1680094978, '__ci_last_regenerate|i:1680094978;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df347e7898eb88b6d474301c80f8e539bfb56d37', '31.222.203.2', 1680094978, '__ci_last_regenerate|i:1680094978;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df16008d5a97b405e70157ae4521a4fd3b57cd7', '31.222.203.2', 1680096777, '__ci_last_regenerate|i:1680096777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91357a68888d5a4468d709fcbe645a1783c4ff3', '31.222.203.2', 1680096777, '__ci_last_regenerate|i:1680096777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('018e698ca11fc4149f6f936f5f671a250d8a8f06', '31.222.203.2', 1680096777, '__ci_last_regenerate|i:1680096777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d44831828baf4d614978ee845faf4e6f77518b32', '31.222.203.2', 1680096777, '__ci_last_regenerate|i:1680096777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('78a5256aa0626c804139a1b3c7798f244d3e3115', '31.222.203.2', 1680096777, '__ci_last_regenerate|i:1680096777;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1fbc656f702024210e575f6dc2688f0902ac23f5', '31.222.203.2', 1680096777, '__ci_last_regenerate|i:1680096777;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04cae42987ce0f6ac9ca4e57eed376cc7aa96389', '79.124.59.162', 1680097853, '__ci_last_regenerate|i:1680097853;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4649940e2005fe4ffbfd31878bfafaa375f17e52', '79.124.59.162', 1680097853, '__ci_last_regenerate|i:1680097853;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ef42bd559b23c913d8219e377f10a140e32d8d67', '79.124.59.162', 1680097854, '__ci_last_regenerate|i:1680097854;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('204a7e81324f39cfd16061946c750288c4636fd9', '79.124.59.162', 1680097862, '__ci_last_regenerate|i:1680097862;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec88f8bd1662ec7346eab27d3cf6546f324b3180', '79.124.59.162', 1680097862, '__ci_last_regenerate|i:1680097862;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2ae783164f6ff9d7ca2691f5d60cdad47cfcee06', '79.124.59.162', 1680097863, '__ci_last_regenerate|i:1680097863;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85d2572e4e66ae19699f4fd5b0623f9a70bc5142', '79.124.59.162', 1680097863, '__ci_last_regenerate|i:1680097863;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6eb8666723c43d1abf5961e12bb7e1507198d4', '79.124.59.162', 1680097872, '__ci_last_regenerate|i:1680097872;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4cf729287d2ea1df5f0d1b3023d4d0d14d41afad', '79.124.59.162', 1680097872, '__ci_last_regenerate|i:1680097872;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('66d3ce5defca4dc6fcb44c16ab9190caeaba84b5', '79.124.59.162', 1680097873, '__ci_last_regenerate|i:1680097873;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c82380a9348b49f35400d9385195575a3d8ecd', '79.124.59.162', 1680097873, '__ci_last_regenerate|i:1680097873;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92456fdc88468f6b267ed3527d2c20be9fbca1b9', '79.124.59.162', 1680097882, '__ci_last_regenerate|i:1680097882;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e20166b81e55a5aceebdbe2c495a8ef62364937', '79.124.59.162', 1680097882, '__ci_last_regenerate|i:1680097882;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('da3531e90461626e6ade16284326274d38a200c2', '79.124.59.162', 1680097883, '__ci_last_regenerate|i:1680097883;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d3e4e7672cc79cb7d9c94128d310dafe9da5a7d', '79.124.59.162', 1680097883, '__ci_last_regenerate|i:1680097883;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('760149849977aa0dbee30a17b2c69cbd2ead2075', '79.124.59.162', 1680097892, '__ci_last_regenerate|i:1680097892;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e96c0b74a58a9d20ca2aaea02532272f910af08b', '79.124.59.162', 1680097893, '__ci_last_regenerate|i:1680097893;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f482e7be3c7d38a9dbdb7048366afa527c3d271f', '79.124.59.162', 1680097893, '__ci_last_regenerate|i:1680097893;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('292da4eb231873ec1c614ea6baba4842cdf3e2bd', '79.124.59.162', 1680097894, '__ci_last_regenerate|i:1680097894;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dea47d8b9f32d71d67be27960552482f34b9f08d', '79.124.59.162', 1680097903, '__ci_last_regenerate|i:1680097903;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30635e964f3d72111dd07ea6cb9c605ac2fe9d11', '79.124.59.162', 1680097903, '__ci_last_regenerate|i:1680097903;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('437913dca3b2b5ddb4c615f1fdf725199d922b31', '79.124.59.162', 1680097904, '__ci_last_regenerate|i:1680097904;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('499874db38df687246395a288745262cf33d7b1b', '79.124.59.162', 1680097904, '__ci_last_regenerate|i:1680097904;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('53995d65ceadf874079a88673755b6668f1a3217', '79.124.59.162', 1680097913, '__ci_last_regenerate|i:1680097913;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f58ae0e280442a9d91dad921e4c93e180d2a067c', '79.124.59.162', 1680097914, '__ci_last_regenerate|i:1680097914;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a178b0d1debf96d59cc0bdbdb0a810bca821ade3', '79.124.59.162', 1680097914, '__ci_last_regenerate|i:1680097914;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f5c9a68d9565f81bc85d1410f02c67009a35e57', '79.124.59.162', 1680097915, '__ci_last_regenerate|i:1680097915;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bf4e55e007495b50c9d4e489daa76e4fd0e2e3f', '79.124.59.162', 1680097924, '__ci_last_regenerate|i:1680097924;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8b9c65a4a642b8a285c6f696c081fdcf6e100da', '79.124.59.162', 1680097924, '__ci_last_regenerate|i:1680097924;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e2039a7e29fd086f0f57ff77d8d73f7b715ea80', '79.124.59.162', 1680097925, '__ci_last_regenerate|i:1680097925;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('97793949b6f7d69bf1f5856a383924fa9cc815fa', '79.124.59.162', 1680097925, '__ci_last_regenerate|i:1680097925;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cc41b66dc00566bda736a7e5c37228309b63d0a', '79.124.59.162', 1680097934, '__ci_last_regenerate|i:1680097934;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8332d92cdc454a11aa94ca93a1a977b03adcf21', '79.124.59.162', 1680097934, '__ci_last_regenerate|i:1680097934;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('942fc750d5403229ea08ead687a0ea6ccf4e9eea', '79.124.59.162', 1680097935, '__ci_last_regenerate|i:1680097935;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d0d2bc62dec9e8a0b7bb5c13e9f4be0e0b496b6', '79.124.59.162', 1680097935, '__ci_last_regenerate|i:1680097935;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7a76ac5bd6bb564fc85b9f7985dd3d1bcf82e20', '79.124.59.162', 1680097944, '__ci_last_regenerate|i:1680097944;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('109206359c75043f99491a7c2986b5ccbfb038e6', '79.124.59.162', 1680097945, '__ci_last_regenerate|i:1680097945;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df170d865f977301f44ab792ec836ae626601883', '79.124.59.162', 1680097945, '__ci_last_regenerate|i:1680097945;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55cf3a1d594d6e39eeb0873ffe0d9d6dda3963bb', '79.124.59.162', 1680097946, '__ci_last_regenerate|i:1680097946;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e006eb4423f210a5b5d6de5f0710ed5db8125e4', '79.124.59.162', 1680097955, '__ci_last_regenerate|i:1680097955;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('256c64beeedba3f2471bc63bbba2c97f585e76cb', '79.124.59.162', 1680097955, '__ci_last_regenerate|i:1680097955;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cc0a53c9be836200c9fd038b76bd23b5e94a4add', '79.124.59.162', 1680097956, '__ci_last_regenerate|i:1680097956;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6645f5db06d415448da313cf9eb92d22f214123f', '79.124.59.162', 1680097956, '__ci_last_regenerate|i:1680097956;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29aa5d2ab6e79008099a56a10af3425c2faf326d', '79.124.59.162', 1680097974, '__ci_last_regenerate|i:1680097974;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11826df79017b8a58bfe42b607ca35a1743b9f8e', '79.124.59.162', 1680097975, '__ci_last_regenerate|i:1680097975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a08a75e6d8820dfc5d3f52db3949bf2f8258231', '79.124.59.162', 1680097975, '__ci_last_regenerate|i:1680097975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ab72ce2f9a6f29707e6ba289f6fd0ea1370b650', '79.124.59.162', 1680097976, '__ci_last_regenerate|i:1680097976;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bad9df9556bae5a8b7dbe0278ca95f7dd35f206', '79.124.59.162', 1680097985, '__ci_last_regenerate|i:1680097985;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adc9d8e31664989796eb5ddca635b5df4326044f', '79.124.59.162', 1680097985, '__ci_last_regenerate|i:1680097985;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6f9f08614b97e8503b96cd468e358183d862f39', '79.124.59.162', 1680097985, '__ci_last_regenerate|i:1680097985;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('582e58ade02b1efc6ef39954e19e2037ca985a02', '79.124.59.162', 1680097986, '__ci_last_regenerate|i:1680097986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8ff728b9e71122d520f5630ba5f71425fd8d3d0', '79.124.59.162', 1680097995, '__ci_last_regenerate|i:1680097995;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0ec6c0aa5ac0550b749d304cc5989b9f83eee36', '79.124.59.162', 1680097995, '__ci_last_regenerate|i:1680097995;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fddf8b3808f46f14a262ab32d09f0728a9e31399', '79.124.59.162', 1680097996, '__ci_last_regenerate|i:1680097996;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c1c8fdf148a814595a90eb5978b20fce4cf80d3', '79.124.59.162', 1680097996, '__ci_last_regenerate|i:1680097996;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('133733be5fee5fede3bbca77911bd443625bbf7b', '79.124.59.162', 1680098006, '__ci_last_regenerate|i:1680098006;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09b79f9acc8a30626ba8663f41dc7434033a34b5', '79.124.59.162', 1680098007, '__ci_last_regenerate|i:1680098007;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3514e1a857b63f28654ebd70bd7759c57ad6b655', '79.124.59.162', 1680098007, '__ci_last_regenerate|i:1680098007;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5ffdfa1982a53e7f5e362d684d8350cf6b642ae', '79.124.59.162', 1680098008, '__ci_last_regenerate|i:1680098008;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a28234dafb3ee624e01bd5c2641a93c72b5eb3f0', '79.124.59.162', 1680098026, '__ci_last_regenerate|i:1680098026;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07fab9f9440ca16431c57725a48cc46cb6ae767c', '79.124.59.162', 1680098026, '__ci_last_regenerate|i:1680098026;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec881abb275cfc270b5990b59f6619a93367d833', '79.124.59.162', 1680098027, '__ci_last_regenerate|i:1680098027;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3740ef71a884a0eb8b8e8fd68aaa1fbe60b4b4f', '79.124.59.162', 1680098027, '__ci_last_regenerate|i:1680098027;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4da1c57759d852f0bdec858a936b6997555a281a', '79.124.59.162', 1680098037, '__ci_last_regenerate|i:1680098037;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1b0b71abb8d683b7a73cb1a28e69c73780c33a2', '79.124.59.162', 1680098037, '__ci_last_regenerate|i:1680098037;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('571d3f99608f02be1e84009a5c83b97907d1618a', '79.124.59.162', 1680098038, '__ci_last_regenerate|i:1680098038;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abcf582a9f4fc7206a39d56e8891aec018bd39e2', '79.124.59.162', 1680098038, '__ci_last_regenerate|i:1680098038;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cf878c455392a4f1815e633d17814c86f4ab01e', '79.124.59.162', 1680098047, '__ci_last_regenerate|i:1680098047;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e913a2c6d48067c50d909271b642d3718cc898e', '79.124.59.162', 1680098047, '__ci_last_regenerate|i:1680098047;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cf92e9b04a42a1e6880bf756bcb778a662a37e6', '79.124.59.162', 1680098048, '__ci_last_regenerate|i:1680098048;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('12fe2d74967571a275e872f7c6416fe64f267171', '79.124.59.162', 1680098049, '__ci_last_regenerate|i:1680098049;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2a4db517a26945193373b44c669c62c992fc6e30', '79.124.59.162', 1680098058, '__ci_last_regenerate|i:1680098058;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71109afcd4eb75df1340272daa95f28def187702', '79.124.59.162', 1680098058, '__ci_last_regenerate|i:1680098058;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6d7c8368c654eed0dcfd516bceb9dd4a9e9d7c3', '79.124.59.162', 1680098058, '__ci_last_regenerate|i:1680098058;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec2e26cebf7805fad7c6971a4e65720648e19b10', '79.124.59.162', 1680098059, '__ci_last_regenerate|i:1680098059;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f22cd0e4f6140f34f66d96f3222b223ce94d545', '79.124.59.162', 1680098077, '__ci_last_regenerate|i:1680098077;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1aa14b9d6048c27d5c7299baac0d1c7f5a4c178d', '79.124.59.162', 1680098077, '__ci_last_regenerate|i:1680098077;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bf3e923ea7e1b03d69bf7791a80ca810a162522', '79.124.59.162', 1680098078, '__ci_last_regenerate|i:1680098078;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3225a9f0edf920ab497f80b3992112d124730fbe', '79.124.59.162', 1680098078, '__ci_last_regenerate|i:1680098078;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('763d3247721a34e5a302515b13a4ca3c579cc9fa', '79.124.59.162', 1680098088, '__ci_last_regenerate|i:1680098088;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b44b0d8d2a610ffd9db37292ef4cac41ec858025', '79.124.59.162', 1680098088, '__ci_last_regenerate|i:1680098088;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('09f072af96f713bf7bfb095b5460d290f0dcdfc0', '79.124.59.162', 1680098089, '__ci_last_regenerate|i:1680098089;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55558e2bc8d56abc0c721208eaaf588c457d9ccb', '79.124.59.162', 1680098089, '__ci_last_regenerate|i:1680098089;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69e144cb501fc9d016d929fde70dc3d480de0e3', '79.124.59.162', 1680098099, '__ci_last_regenerate|i:1680098099;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('67ce82bd522f7ab65bdbf7d59abafdfc0c593f15', '79.124.59.162', 1680098099, '__ci_last_regenerate|i:1680098099;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae23c4aaf358aec207998e6177d673ec1d20ba1f', '79.124.59.162', 1680098100, '__ci_last_regenerate|i:1680098100;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5da115884aaa613a932d678046c19caa2a0e698b', '79.124.59.162', 1680098100, '__ci_last_regenerate|i:1680098100;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e471fa190ee87be2c6f6d2702ec33de7c8bccf3', '79.124.59.162', 1680098110, '__ci_last_regenerate|i:1680098110;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7f3dd60b7239fdcda7a5652dbbf85932b62d493', '79.124.59.162', 1680098110, '__ci_last_regenerate|i:1680098110;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9a8fe1245900d2c804db4768c79ade03d6780fd', '79.124.59.162', 1680098111, '__ci_last_regenerate|i:1680098111;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fec8b11f4012cb7362fffac76197606f85ba697f', '79.124.59.162', 1680098111, '__ci_last_regenerate|i:1680098111;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5098439e5615dcbecf237b2c00e04905c8dafa14', '45.149.79.127', 1680098167, '__ci_last_regenerate|i:1680098167;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6824b2f50778a369a946f724362fe49418ff602', '45.149.79.127', 1680098168, '__ci_last_regenerate|i:1680098168;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2514cb1343449392bdc09059dbc9014c09c4ee9d', '45.149.79.127', 1680098171, '__ci_last_regenerate|i:1680098171;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8e1e06092b8c81ec38b8c0622cc5aa1c5380da6f', '45.149.79.127', 1680098173, '__ci_last_regenerate|i:1680098173;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f332c36f51e1b2010ced6ec977c85bdd45a1e6d8', '31.222.203.2', 1680098583, '__ci_last_regenerate|i:1680098583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fe431aa97654230a23e52bcba60f0193e455b44b', '31.222.203.2', 1680098583, '__ci_last_regenerate|i:1680098583;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f29c18ce10a7b818319398d752a6cc5f25eae132', '31.222.203.2', 1680098583, '__ci_last_regenerate|i:1680098583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('252a6e096f2864d08af26e9bfeea065bc7641848', '31.222.203.2', 1680098585, '__ci_last_regenerate|i:1680098585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3cf970794ddbcf04e2bdc21ed9ecbe4a00027168', '31.222.203.2', 1680098585, '__ci_last_regenerate|i:1680098585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ba3938660b2a44c8e83d29e9aae0c1efa3eacd43', '31.222.203.2', 1680098585, '__ci_last_regenerate|i:1680098585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c879a617451a35a5e0b0f339ed3e3e7da749867', '91.201.215.19', 1680099452, '__ci_last_regenerate|i:1680099452;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd099718bf01db53ad02a94f86037fdb3d4cc785', '91.201.215.19', 1680099453, '__ci_last_regenerate|i:1680099453;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('187dc71df36336b5a252b86ef1e19facb26d0a3f', '91.201.215.19', 1680099455, '__ci_last_regenerate|i:1680099455;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c79e00b2d77546ea146e2137876d89a84a96c40e', '91.201.215.19', 1680099455, '__ci_last_regenerate|i:1680099455;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fb47bbd805a8e1524833bba367ec67385f98ed63', '31.222.203.2', 1680100375, '__ci_last_regenerate|i:1680100375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a384bf00a811d4e4333537dfc79a025a500cf3e5', '31.222.203.2', 1680100375, '__ci_last_regenerate|i:1680100375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('91e58ff078724278fd8357c03d3ef91a3ecfb6b5', '31.222.203.2', 1680100375, '__ci_last_regenerate|i:1680100375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('086fa589e2c70fc6da33cdbd6e66b31629e9b39b', '31.222.203.2', 1680100375, '__ci_last_regenerate|i:1680100375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d285325bef793e6894101bedd28b0b520c27d756', '31.222.203.2', 1680100375, '__ci_last_regenerate|i:1680100375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('19a9c4bea1a9d1e01e1a5bc6baed61a6c95dc128', '31.222.203.2', 1680100375, '__ci_last_regenerate|i:1680100375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca1b85318d8f48cabbbcbdb448a758fc92c094b5', '37.111.218.20', 1680103177, '__ci_last_regenerate|i:1680103177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680083359\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680102337;register_id|s:3:\"384\";cash_in_hand|s:9:\"1940.0000\";register_open_time|s:19:\"2023-03-28 21:44:16\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f20309e200786dbae532ea9b2714aa83e5217807', '131.72.236.128', 1680101960, '__ci_last_regenerate|i:1680101960;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6fae06922f8192627a06a5154817d096296f2aa', '131.72.236.128', 1680101961, '__ci_last_regenerate|i:1680101961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f9f169b22c6fcd2e880772a0186ca199147fedf', '131.72.236.128', 1680101961, '__ci_last_regenerate|i:1680101961;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d40e8d5fe03f6d358167f9348b0bd9289ec8223', '131.72.236.128', 1680101961, '__ci_last_regenerate|i:1680101961;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dff2d7f2d9992bbc05638912a567b3f49042c7a1', '31.222.203.2', 1680102182, '__ci_last_regenerate|i:1680102182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('885c0b17e9cfce166a29e463a2b4644d9151ae57', '31.222.203.2', 1680102182, '__ci_last_regenerate|i:1680102182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e78f622da2dde8c3c5aa7b03cb84d38c5cfd41a8', '31.222.203.2', 1680102182, '__ci_last_regenerate|i:1680102182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfa6a63bc8c3a23e9a5aa6de1e257e3dcb3819f7', '31.222.203.2', 1680102182, '__ci_last_regenerate|i:1680102182;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d36a60cbab8ccc31f3360ffbac298d557542e030', '31.222.203.2', 1680102182, '__ci_last_regenerate|i:1680102182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9032ee9dd0fb5f44f89edf30b27fca638871c46d', '31.222.203.2', 1680102182, '__ci_last_regenerate|i:1680102182;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d759fe04e6df3d1af73e5dab0cb056f2ed9c814e', '37.111.218.20', 1680103215, '__ci_last_regenerate|i:1680103177;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680083359\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680103215;register_id|s:3:\"385\";cash_in_hand|s:9:\"4910.0000\";register_open_time|s:19:\"2023-03-29 21:20:10\";message|s:14:\"Welcome to POS\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0cb6a24de95a5efd245730896795c3c77990d397', '31.222.203.2', 1680104042, '__ci_last_regenerate|i:1680104042;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0c5a8a71952b792301a9feb87b5f1a670efbcad8', '31.222.203.2', 1680104044, '__ci_last_regenerate|i:1680104044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5ef50cf6e458d68498d8c2070165668ce2aaec8', '31.222.203.2', 1680104044, '__ci_last_regenerate|i:1680104044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('910c3a7cc23df29995abd6e32eb9a9b9083ccafe', '31.222.203.2', 1680104044, '__ci_last_regenerate|i:1680104044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f3334990c9b261dd6a16cc28b318d332908b2f2', '31.222.203.2', 1680104044, '__ci_last_regenerate|i:1680104044;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f651d13cfadafd1a1e6d64ae3fc8290142678d63', '31.222.203.2', 1680104044, '__ci_last_regenerate|i:1680104044;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e569f1f2363381277912bf84ebf6d1a54acbdd1', '31.222.203.2', 1680105784, '__ci_last_regenerate|i:1680105784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e3b8179a903362579f021fc21ca5ad2f5b7575c', '31.222.203.2', 1680105784, '__ci_last_regenerate|i:1680105784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd4a3b05e03e457e928494c327deacd83cbc5a7c', '31.222.203.2', 1680105784, '__ci_last_regenerate|i:1680105784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b04612fdfd088abcdffbf3826b6a087441a3bafb', '31.222.203.2', 1680105784, '__ci_last_regenerate|i:1680105784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a34f33ee753eba43fd422db2e581d535f94d43fd', '31.222.203.2', 1680105784, '__ci_last_regenerate|i:1680105784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4eb6f016f17fc75695f4950e7fa21f51c63f6388', '31.222.203.2', 1680105784, '__ci_last_regenerate|i:1680105784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aa8bbfb3292a1bb59907f67806a8b5910aff73ed', '31.222.203.2', 1680107583, '__ci_last_regenerate|i:1680107583;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ab3564524f76dcdd0a3e10afaa7bcf151040955b', '31.222.203.2', 1680107585, '__ci_last_regenerate|i:1680107585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e0cb3de92fdf22ccb15b462aa2602ec96993af', '31.222.203.2', 1680107585, '__ci_last_regenerate|i:1680107585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8825b0dae464e1b899a0081ea2006ea0785d302a', '31.222.203.2', 1680107585, '__ci_last_regenerate|i:1680107585;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('694a2059986040544396418adf1b705e43a7bd6f', '31.222.203.2', 1680107585, '__ci_last_regenerate|i:1680107585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6c63e4893a2a08a8669ca5d937754a6739e36a5', '31.222.203.2', 1680107585, '__ci_last_regenerate|i:1680107585;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b9dd679c0bebd7e2918734a606fe2264f1a4c53d', '31.222.203.2', 1680109390, '__ci_last_regenerate|i:1680109390;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('651ae025a40a7397f4e97a5284ad2e0971fcf18e', '31.222.203.2', 1680109391, '__ci_last_regenerate|i:1680109391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0beebdfa0a49767f5f2b4715fc1f404b424729d9', '31.222.203.2', 1680109391, '__ci_last_regenerate|i:1680109391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd7a4de35ab3f4b04b607c8dc1a5c3468ce4d5fd', '31.222.203.2', 1680109391, '__ci_last_regenerate|i:1680109391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7afaf2993894ba02ee6cb19e07b7dd6ff3ea50c5', '31.222.203.2', 1680109391, '__ci_last_regenerate|i:1680109391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39b9c9924ef43debb18cfe4a64b8163bd8c6928f', '31.222.203.2', 1680109391, '__ci_last_regenerate|i:1680109391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cda1e8cbe07fe266a7bca677bf752ab9ee72945a', '34.64.218.102', 1680110460, '__ci_last_regenerate|i:1680110460;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc127222724bd77ff10e4b0f91f1799ecd75c617', '34.64.218.102', 1680110462, '__ci_last_regenerate|i:1680110462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2554dc94aeee55e622fc1230212013addb568ac6', '34.64.218.102', 1680110462, '__ci_last_regenerate|i:1680110462;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d0838350f963926a68a2a218f305f97bf92012d7', '34.64.218.102', 1680110462, '__ci_last_regenerate|i:1680110462;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b6e0be21df1462e3da79c6197883893fd7fdb55', '31.222.203.2', 1680111209, '__ci_last_regenerate|i:1680111209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ca031568aff388aa43e535ecca74bc58503787d', '31.222.203.2', 1680111209, '__ci_last_regenerate|i:1680111209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adafaebd1f2ea4a8563704ff3f1844caa89fdd04', '31.222.203.2', 1680111209, '__ci_last_regenerate|i:1680111209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('31f5828ee1f3e5a177704c5d9933f366b6f72eea', '31.222.203.2', 1680111211, '__ci_last_regenerate|i:1680111211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6943fb5a48b3e7c8b20ad6e0846d695bcc5ead25', '31.222.203.2', 1680111211, '__ci_last_regenerate|i:1680111211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dad935aab0985e06b7955fc48fb1234b4a41e7d1', '31.222.203.2', 1680111211, '__ci_last_regenerate|i:1680111211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c309c9a22988d459d3ca39af8ba73bce488b03e', '31.222.203.2', 1680112981, '__ci_last_regenerate|i:1680112981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a72436ecc5fb68ea3633fc1f01a4b1e30114b09', '31.222.203.2', 1680112981, '__ci_last_regenerate|i:1680112981;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d8907b016fddd24e22ad13197142fb1644bab71', '31.222.203.2', 1680112981, '__ci_last_regenerate|i:1680112981;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2d69ae3b8d44fdcb3b47aed790aacf6780cc7a', '31.222.203.2', 1680112983, '__ci_last_regenerate|i:1680112983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1f10d13e9902fc2353c96d2368c80ee67b20d97', '31.222.203.2', 1680112983, '__ci_last_regenerate|i:1680112983;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('551f51de136b79a50a1f0ca5da79d87219cb3b0c', '31.222.203.2', 1680112983, '__ci_last_regenerate|i:1680112983;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58f51266240e6ce556c44b4e9891856c50d68ee3', '31.222.203.2', 1680114797, '__ci_last_regenerate|i:1680114797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2c9c4c5bdba06ee08d556c130abe7ead763f8e', '31.222.203.2', 1680114797, '__ci_last_regenerate|i:1680114797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17b941e0214a3e83fe9d8729c8b7cf310fc130c5', '31.222.203.2', 1680114797, '__ci_last_regenerate|i:1680114797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3324139b10ceb7da30dbf1d6bf7862968345121', '31.222.203.2', 1680114799, '__ci_last_regenerate|i:1680114799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a0c77c7e9eb35bac205d7a9ebbd7b590881bc064', '31.222.203.2', 1680114799, '__ci_last_regenerate|i:1680114799;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3e7195ce44a3435c43386887ec3af48005d89531', '31.222.203.2', 1680114799, '__ci_last_regenerate|i:1680114799;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e31b643dbb78115e69979dcc6c07c9da17f7052', '31.222.203.2', 1680116574, '__ci_last_regenerate|i:1680116574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0def13782d05517c31f4cca4f7ef33d8a586714b', '31.222.203.2', 1680116574, '__ci_last_regenerate|i:1680116574;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f820b193443cd1390ba3c2d69a59b5f75a0a6e56', '31.222.203.2', 1680116574, '__ci_last_regenerate|i:1680116574;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b0a50b9f60f15b6e778b14451395e438e05e545d', '31.222.203.2', 1680116576, '__ci_last_regenerate|i:1680116576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a485912c1d53f073816a99c542293fca698828b1', '31.222.203.2', 1680116576, '__ci_last_regenerate|i:1680116576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('22d7a7143a0aa0a6f6c86cb5f558a8b6c292ee97', '31.222.203.2', 1680116576, '__ci_last_regenerate|i:1680116576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0689bbb7f8e283498de09ea83dd521d96f61e4a8', '31.222.203.2', 1680118373, '__ci_last_regenerate|i:1680118373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac2a03f86a46496f1eca0afbd36f624dfb52b160', '31.222.203.2', 1680118373, '__ci_last_regenerate|i:1680118373;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('178c51ebd28b696115a57a28282f42a6233aa626', '31.222.203.2', 1680118373, '__ci_last_regenerate|i:1680118373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e35d627c2c9f01e4aa237cf2ac999cdcb4f9ac97', '31.222.203.2', 1680118375, '__ci_last_regenerate|i:1680118375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e6f500d4f6bf461dda2ce1d811ec6690cd35c146', '31.222.203.2', 1680118375, '__ci_last_regenerate|i:1680118375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6dee2a9280e3f668fef3c4f25bf4c72d8acec28a', '31.222.203.2', 1680118375, '__ci_last_regenerate|i:1680118375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3145a76f75c63a4f1ca3e1c7753ba99a44d317e9', '87.236.176.212', 1680119410, '__ci_last_regenerate|i:1680119410;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9eae56571da92c9f13c401040353c8c642c8ab4', '87.236.176.212', 1680119410, '__ci_last_regenerate|i:1680119410;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3b3e4b3583e44e4618e5d7d24e493487c6ac75f', '31.222.203.2', 1680120190, '__ci_last_regenerate|i:1680120190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b56a0b88c290c12061adc4176c191008f3a62522', '31.222.203.2', 1680120190, '__ci_last_regenerate|i:1680120190;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a816ab8503e70c05b43d9d8a75f534c41d9055b3', '31.222.203.2', 1680120190, '__ci_last_regenerate|i:1680120190;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3deadf9e8ff3ef9d50e4825e3bd9a66bc87c28c', '31.222.203.2', 1680120192, '__ci_last_regenerate|i:1680120192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ebd7997a9cfbf54b72883c0ac78b24f1b690c56', '31.222.203.2', 1680120192, '__ci_last_regenerate|i:1680120192;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5ef5fd4890eff4b03a1c826d79be3ff63a0bf02e', '31.222.203.2', 1680120192, '__ci_last_regenerate|i:1680120192;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf47b64fcc8e676826bb9fc4ee88673282fecb3', '79.124.59.162', 1680120539, '__ci_last_regenerate|i:1680120539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a251a914e1db81af3d001b3edf06c0b5156d5d65', '79.124.59.162', 1680120539, '__ci_last_regenerate|i:1680120539;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f39c5bea5d7d125ac8d1348b6d1ba3021626e5dd', '79.124.59.162', 1680120539, '__ci_last_regenerate|i:1680120539;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('433bb05395629e6d8c38e678b724d714055e7381', '79.124.59.162', 1680120548, '__ci_last_regenerate|i:1680120548;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b20e93d2364183027434b17705a8a72b7b2c5f50', '79.124.59.162', 1680120548, '__ci_last_regenerate|i:1680120548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b337b8d0395b921ddea0fcbc572231f671fa027', '79.124.59.162', 1680120548, '__ci_last_regenerate|i:1680120548;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c82cdc268a067054dfb079e7252361442d67eca0', '79.124.59.162', 1680120548, '__ci_last_regenerate|i:1680120548;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c3e8fde32fe52441d3520e596d2e22013434c02', '79.124.59.162', 1680120557, '__ci_last_regenerate|i:1680120557;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81737f86e13389b9602f476f159cd1a355da977b', '79.124.59.162', 1680120557, '__ci_last_regenerate|i:1680120557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c32d955f7b966f325f52dcf4a4f0e2cdcea18534', '79.124.59.162', 1680120557, '__ci_last_regenerate|i:1680120557;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf110b2c9b4792903f3bd7b96def683fb1b4b963', '79.124.59.162', 1680120557, '__ci_last_regenerate|i:1680120557;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('692dff2fa90a470b7b30ce7555110fbd2258fd4f', '79.124.59.162', 1680120566, '__ci_last_regenerate|i:1680120566;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f69d5910c2eebdc080cceb8a0e3dab8388f3814a', '79.124.59.162', 1680120566, '__ci_last_regenerate|i:1680120566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('99e6d1961735303d21c4151e88bdf83193f439df', '79.124.59.162', 1680120566, '__ci_last_regenerate|i:1680120566;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d9f16e5aa4cefddd37ef20a72351cef540335357', '79.124.59.162', 1680120566, '__ci_last_regenerate|i:1680120566;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35c8b94414abe1a1785a132cf0afc8a49451c45e', '79.124.59.162', 1680120575, '__ci_last_regenerate|i:1680120575;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('abddb8c099d15dac4af0d284114184a2ebeddbb0', '79.124.59.162', 1680120575, '__ci_last_regenerate|i:1680120575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('847f2aac5c12c8866bc8e101e5bc110d8c40cec5', '79.124.59.162', 1680120575, '__ci_last_regenerate|i:1680120575;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('826ca329e4a66c9f766134f58b9836c65e161929', '79.124.59.162', 1680120575, '__ci_last_regenerate|i:1680120575;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7ca8212f50e1b45a850fdc0c1f6a128e95e807c5', '79.124.59.162', 1680120584, '__ci_last_regenerate|i:1680120584;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c7c0ed589824d23d38990457a56a9745cafe8c', '79.124.59.162', 1680120584, '__ci_last_regenerate|i:1680120584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('641b4b3cbafdb2838748dc7e4b3ec51f43353a82', '79.124.59.162', 1680120584, '__ci_last_regenerate|i:1680120584;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c833ae6c4db57cf8c8219fa51d36907e387c9af5', '79.124.59.162', 1680120584, '__ci_last_regenerate|i:1680120584;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5a8950b5e25859ccbe32e27144f63000f9059095', '79.124.59.162', 1680120593, '__ci_last_regenerate|i:1680120593;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4a599aa10b3c0cd8f1b24a42d0a0bbdf9573261', '79.124.59.162', 1680120593, '__ci_last_regenerate|i:1680120593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7372ffacbec465ab171937576583900221f44714', '79.124.59.162', 1680120593, '__ci_last_regenerate|i:1680120593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d494c7d170f7d53d3263987611596b8ee8e89b7c', '79.124.59.162', 1680120594, '__ci_last_regenerate|i:1680120594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9e91d4cf0a130826a3190b0d29e63c8ffddee07e', '79.124.59.162', 1680120602, '__ci_last_regenerate|i:1680120602;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c94ec272a63b69aaaf2e3831bd6322b0b04a7396', '79.124.59.162', 1680120602, '__ci_last_regenerate|i:1680120602;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d60698b7fdf39b3e42e1d60321c030c025c5132c', '79.124.59.162', 1680120602, '__ci_last_regenerate|i:1680120602;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a71cbc91bc1820a82edeb8c7120c4ee4f3406e2e', '79.124.59.162', 1680120602, '__ci_last_regenerate|i:1680120602;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1fd22cd54e6fe8374a5cdbe1392d88d2c536df8', '79.124.59.162', 1680120611, '__ci_last_regenerate|i:1680120611;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16ad26f6e09a83f0448646b8f2b76ae673e0c805', '79.124.59.162', 1680120611, '__ci_last_regenerate|i:1680120611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('073951deacd8195019d0087ff35d990ee5c19def', '79.124.59.162', 1680120611, '__ci_last_regenerate|i:1680120611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2f25f452cf68cc5ceb904e67bb30b20d9f92ac85', '79.124.59.162', 1680120611, '__ci_last_regenerate|i:1680120611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6aa45d480d07792837ee54e592ac555e7002a23e', '79.124.59.162', 1680120620, '__ci_last_regenerate|i:1680120620;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('26aba75bcf161f9a2721b1f6d91db113b0457c36', '79.124.59.162', 1680120620, '__ci_last_regenerate|i:1680120620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6894cecbbafe1649e02a1a1a29b903d77f6ebbf0', '79.124.59.162', 1680120620, '__ci_last_regenerate|i:1680120620;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eea50d07e9c08129e54bc6424ce00b9951cd1ba2', '79.124.59.162', 1680120620, '__ci_last_regenerate|i:1680120620;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e3c21551522b78535108ada57de1b0249cd49cc', '79.124.59.162', 1680120629, '__ci_last_regenerate|i:1680120629;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a503601df99882c51ddd65151c353192eeab064b', '79.124.59.162', 1680120629, '__ci_last_regenerate|i:1680120629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bda399beb952af12832ebec91cee5e8e9a29b1ef', '79.124.59.162', 1680120629, '__ci_last_regenerate|i:1680120629;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f437d116c4de3ac6fa6b8be7c42576002e15c312', '79.124.59.162', 1680120629, '__ci_last_regenerate|i:1680120629;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7623cf216e00fd7ae0b3cb13f72a67b73b7b65c2', '79.124.59.162', 1680120647, '__ci_last_regenerate|i:1680120647;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1678ac02bb9885dbfb7c0b08daf87745b8a9e5ce', '79.124.59.162', 1680120647, '__ci_last_regenerate|i:1680120647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a4a5ea24d5a657637864c49a70d74756760ae63e', '79.124.59.162', 1680120647, '__ci_last_regenerate|i:1680120647;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b7a7550cfe7aa075daa046274673f9e546ead801', '79.124.59.162', 1680120647, '__ci_last_regenerate|i:1680120647;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('584078ad6588795f1aba19b82b9d6b00d48436f1', '79.124.59.162', 1680120656, '__ci_last_regenerate|i:1680120656;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81df9ba3c3280ca979acfcc3be82d1bf8eac1647', '79.124.59.162', 1680120656, '__ci_last_regenerate|i:1680120656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d6b188a1f642f3e0fc7b7a0006b24efdac9e215f', '79.124.59.162', 1680120656, '__ci_last_regenerate|i:1680120656;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('333b25493660941facff99092d965cf949378329', '79.124.59.162', 1680120656, '__ci_last_regenerate|i:1680120656;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a046e7b5c858583c5dbe2ffc6b19802d908705c', '79.124.59.162', 1680120665, '__ci_last_regenerate|i:1680120665;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecbe5eb510b89ca0b9cfe34f22854227181d8289', '79.124.59.162', 1680120665, '__ci_last_regenerate|i:1680120665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71746f8f737060bae51a776b1fbfeafef81f5957', '79.124.59.162', 1680120665, '__ci_last_regenerate|i:1680120665;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db91d325b50be73cc0348e9a1e9ae7ee9f9f3f2e', '79.124.59.162', 1680120665, '__ci_last_regenerate|i:1680120665;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6adfca48e96413d7e6c78251fe6d6bcfea6a5f6a', '79.124.59.162', 1680120674, '__ci_last_regenerate|i:1680120674;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fcf47cbeb95e224752efc1acc9b53c4c2f6f0209', '79.124.59.162', 1680120674, '__ci_last_regenerate|i:1680120674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0e623c359f9fb64e95cf90d34f6022112d11f0af', '79.124.59.162', 1680120674, '__ci_last_regenerate|i:1680120674;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('076d45027cd25d9aa3460aac577a4381bf83c7d2', '79.124.59.162', 1680120674, '__ci_last_regenerate|i:1680120674;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a606987d68acb55c209c93efa30130d6f8262ae7', '79.124.59.162', 1680120692, '__ci_last_regenerate|i:1680120692;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74588baf46caf1800aa798c6b97ad155c0859588', '79.124.59.162', 1680120692, '__ci_last_regenerate|i:1680120692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f103140b562536f0d5a7da226c742766f169a4ff', '79.124.59.162', 1680120692, '__ci_last_regenerate|i:1680120692;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2b938d7b767f61b4e6a21024865f234820e3386d', '79.124.59.162', 1680120692, '__ci_last_regenerate|i:1680120692;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea80e5fbb22f5dccc18b02747e5b976613792480', '79.124.59.162', 1680120701, '__ci_last_regenerate|i:1680120701;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69d4732c3b293a8493fb9dcbf5ace68c0939fd45', '79.124.59.162', 1680120701, '__ci_last_regenerate|i:1680120701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c22ac7e1448a23811345e03e32ebf302f205a0ee', '79.124.59.162', 1680120701, '__ci_last_regenerate|i:1680120701;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e514ab147fc0129c339cd4d4cdef230de9b23d9', '79.124.59.162', 1680120701, '__ci_last_regenerate|i:1680120701;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f40f25ce1585288e049e5c7cdf7a33ca70d89e44', '79.124.59.162', 1680120710, '__ci_last_regenerate|i:1680120710;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3c0393fa2d50e727e6c35e49f773101fe2c3526f', '79.124.59.162', 1680120710, '__ci_last_regenerate|i:1680120710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('470ba97a248edba6074bae708699098a39783397', '79.124.59.162', 1680120710, '__ci_last_regenerate|i:1680120710;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('83f109fcedba5658484e4d89215be331583d8994', '79.124.59.162', 1680120710, '__ci_last_regenerate|i:1680120710;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95203919b58f13cfba3606981dd53075554b1182', '79.124.59.162', 1680120719, '__ci_last_regenerate|i:1680120719;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bbc216cb29246d63ff314fa7a83814f56a21970', '79.124.59.162', 1680120719, '__ci_last_regenerate|i:1680120719;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('00c901d7e206a2c16f239b65669eb3ec26a56d34', '79.124.59.162', 1680120719, '__ci_last_regenerate|i:1680120719;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3939e775cc1bfee6ec0ec81ca7ba47e045ccfce', '79.124.59.162', 1680120720, '__ci_last_regenerate|i:1680120720;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9191f9360ad101bb9e6255283ea9c32667cbc098', '79.124.59.162', 1680120737, '__ci_last_regenerate|i:1680120737;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaab3a71ab1ca867103a325c7ef5e8f391ac9271', '79.124.59.162', 1680120737, '__ci_last_regenerate|i:1680120737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68b6e70a26dbc15d660d045f86836b5a37706fa1', '79.124.59.162', 1680120737, '__ci_last_regenerate|i:1680120737;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77d2242e77a0643348bd33913c9ed8a3b0413b1d', '79.124.59.162', 1680120737, '__ci_last_regenerate|i:1680120737;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51cc485e2dc4fb17cfb2531f57d70574a7f20a10', '79.124.59.162', 1680120746, '__ci_last_regenerate|i:1680120746;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5df8b855e1f44b78199635cc3f50c0a715db12b', '79.124.59.162', 1680120746, '__ci_last_regenerate|i:1680120746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bce91886c7aeba365f2ed33c74916b852dc52f7c', '79.124.59.162', 1680120746, '__ci_last_regenerate|i:1680120746;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('17f751c97c99b6409add041bec88b62053055425', '79.124.59.162', 1680120746, '__ci_last_regenerate|i:1680120746;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e745292573e7206a3219be204d30960521e0a48b', '79.124.59.162', 1680120755, '__ci_last_regenerate|i:1680120755;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74cefaa902de41342b13cad8944238427da993cf', '79.124.59.162', 1680120755, '__ci_last_regenerate|i:1680120755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('032e268281311bcdb0ff577648257837c36e3082', '79.124.59.162', 1680120755, '__ci_last_regenerate|i:1680120755;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7742dcb3cd3ff0852f5953f7916212d6559e04c8', '79.124.59.162', 1680120755, '__ci_last_regenerate|i:1680120755;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd2b231533c2372e8dbcbaefd67121c90b78f712', '79.124.59.162', 1680120764, '__ci_last_regenerate|i:1680120764;error|s:76:\"<h4>404 Not Found!</h4><p>The page you are looking for can not be found.</p>\";__ci_vars|a:1:{s:5:\"error\";s:3:\"new\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6bdb359616e8df56591f4aa39df56e71f13f64c1', '79.124.59.162', 1680120764, '__ci_last_regenerate|i:1680120764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee9e5402cfd4c77af8092d8f4ba7191e1e70efa1', '79.124.59.162', 1680120764, '__ci_last_regenerate|i:1680120764;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd5471a6d7a8217d49399db130b16395c9a3a9a4', '79.124.59.162', 1680120764, '__ci_last_regenerate|i:1680120764;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15f7b6b58cd10548ef342c91988a43eff468bcd3', '31.222.203.2', 1680121975, '__ci_last_regenerate|i:1680121975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbdf19d4d5181e558ad6d9c285acd7b735c4d458', '31.222.203.2', 1680121975, '__ci_last_regenerate|i:1680121975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf09a75152ed9dbd643a4416df5766d7e7a34a32', '31.222.203.2', 1680121975, '__ci_last_regenerate|i:1680121975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ade9a4538c76c7aa92ff9e11a343f2b0c6485546', '31.222.203.2', 1680121975, '__ci_last_regenerate|i:1680121975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dc909e54cfdc1dede2fa8eebba10cd1fde1c3173', '31.222.203.2', 1680121975, '__ci_last_regenerate|i:1680121975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54547b9c45b3064102a328263769facf4c9b6aaf', '31.222.203.2', 1680121975, '__ci_last_regenerate|i:1680121975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bee087d6a0dde5ac9d0c1f34365436eeef246b07', '31.222.203.2', 1680123784, '__ci_last_regenerate|i:1680123784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('475abdd2bca2266128f2b4ee380227d09f0e6978', '31.222.203.2', 1680123784, '__ci_last_regenerate|i:1680123784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd3f18bb3977852c40e4cd261d3605a84e4d277f', '31.222.203.2', 1680123784, '__ci_last_regenerate|i:1680123784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('255639e6e53363505456a0f487fbeff7f0811f4e', '31.222.203.2', 1680123784, '__ci_last_regenerate|i:1680123784;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8629fa8448052949c8c37dd05409b6620b93f293', '31.222.203.2', 1680123784, '__ci_last_regenerate|i:1680123784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed205c209cbc23b485e746f027cd6a8bd4b81abd', '31.222.203.2', 1680123784, '__ci_last_regenerate|i:1680123784;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bae4a9e03df0f7f13c0da19ad25a0978e9df86f4', '31.222.203.2', 1680125589, '__ci_last_regenerate|i:1680125589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('42c94baf9b90fabf72389dd5880702f2df4b9fd1', '31.222.203.2', 1680125589, '__ci_last_regenerate|i:1680125589;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2afe6443cce0f5b294a6479c4c76576534672bd2', '31.222.203.2', 1680125589, '__ci_last_regenerate|i:1680125589;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07333af39ee1d41e099efc2753df5c1460673eaf', '31.222.203.2', 1680125591, '__ci_last_regenerate|i:1680125591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('403ab97cfc97255d0a01ad35e5a0aa22da0bb5cf', '31.222.203.2', 1680125591, '__ci_last_regenerate|i:1680125591;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8805abee4b1b5f650c172c8094c0119222d7db4', '31.222.203.2', 1680125591, '__ci_last_regenerate|i:1680125591;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('52392d7e52112828b66f2c9809aa47ac755e120d', '31.222.203.2', 1680127375, '__ci_last_regenerate|i:1680127375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad75ff19b4e871191d37e5cfa776f44701ca3957', '31.222.203.2', 1680127375, '__ci_last_regenerate|i:1680127375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56fd05af9ff7160f6d1d461a1cfb81cb76682268', '31.222.203.2', 1680127375, '__ci_last_regenerate|i:1680127375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('29f5c59a464ed371ea81b2bed672feb7ca78ef32', '31.222.203.2', 1680127375, '__ci_last_regenerate|i:1680127375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d2da602888b47f10f3fd3f203f6ec307deb28f1', '31.222.203.2', 1680127375, '__ci_last_regenerate|i:1680127375;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0af4031bf2534a002c38dab99e0d4af5e7b4033', '31.222.203.2', 1680127375, '__ci_last_regenerate|i:1680127375;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f4410e1407caffa0183093d30173f70d5fcdfad', '31.222.203.2', 1680129178, '__ci_last_regenerate|i:1680129178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4199752d022d07d36b229b745cc26f11f5ce5bb', '31.222.203.2', 1680129178, '__ci_last_regenerate|i:1680129178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ee27b7d6f0cc4448d3af6878bf235a39be54baa3', '31.222.203.2', 1680129178, '__ci_last_regenerate|i:1680129178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f6ca734653af70346397ddc4d43a83897e1425e', '31.222.203.2', 1680129180, '__ci_last_regenerate|i:1680129180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1869cde5f0bf550c6b0dea70da35ce15c2eb4bf8', '31.222.203.2', 1680129180, '__ci_last_regenerate|i:1680129180;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f80bfc8a369e3467f4eec740473d4a4dd4b29f9b', '31.222.203.2', 1680129180, '__ci_last_regenerate|i:1680129180;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e810cde6f9a3611b3ca463970d0da72af70d6979', '31.222.203.2', 1680130984, '__ci_last_regenerate|i:1680130984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('834053c5b4e6fa57a840721d2c12761ffa7befa4', '31.222.203.2', 1680130984, '__ci_last_regenerate|i:1680130984;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('85c650e6d41f7d81ddf29a7d3d8da6b10397d447', '31.222.203.2', 1680130984, '__ci_last_regenerate|i:1680130984;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0a9a22098ecbf48d6a74739f360eeeb59e04ae34', '31.222.203.2', 1680130986, '__ci_last_regenerate|i:1680130986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c296561ba130cc80b8fbb2ac48f5e58e550a330c', '31.222.203.2', 1680130986, '__ci_last_regenerate|i:1680130986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('831cebbeefcb0326b723e5fd62cebe425c253d66', '31.222.203.2', 1680130986, '__ci_last_regenerate|i:1680130986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b545b2e4f85bca9763e3786f1aafe5a4d693d40d', '31.222.203.2', 1680132793, '__ci_last_regenerate|i:1680132793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74b07bbdcd33251194fcea1a1ed6c32949475b13', '31.222.203.2', 1680132793, '__ci_last_regenerate|i:1680132793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('281c62549a4dfbb83e0c86663b05df43ef895bf9', '31.222.203.2', 1680132793, '__ci_last_regenerate|i:1680132793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('10cc210b38704c0b970775b57dafa5041d3c8ffc', '31.222.203.2', 1680132793, '__ci_last_regenerate|i:1680132793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8641c1da85991160c8891778d0a7dc53286529b3', '31.222.203.2', 1680132793, '__ci_last_regenerate|i:1680132793;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d99717110dd9cad05230c7522242c8407cb55643', '31.222.203.2', 1680132793, '__ci_last_regenerate|i:1680132793;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15a0a62f1e6fe523d21d44b0f1f4cf76181571c7', '31.222.203.2', 1680134578, '__ci_last_regenerate|i:1680134578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6eeb08012593d18376d91928a809de6a5f4be065', '31.222.203.2', 1680134578, '__ci_last_regenerate|i:1680134578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('04c611da46090d73806659a99e9ad4e87d4bd647', '31.222.203.2', 1680134578, '__ci_last_regenerate|i:1680134578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c1edb9b0e9ee8296a41df140726c7f366ce7ac', '31.222.203.2', 1680134578, '__ci_last_regenerate|i:1680134578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('46228bb8972cecf8d30050946ff4818b4adf5b27', '31.222.203.2', 1680134578, '__ci_last_regenerate|i:1680134578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fd217710dc4f605e97631007f75304f5e9eebc4e', '31.222.203.2', 1680134579, '__ci_last_regenerate|i:1680134579;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('530174c314694d1cfeb495e5bff68557dd25dd40', '31.222.203.2', 1680136379, '__ci_last_regenerate|i:1680136379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c33c92a5b2f2c129f506e29c03cd936de84825ba', '31.222.203.2', 1680136379, '__ci_last_regenerate|i:1680136379;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1653bc1812836a1f7c65558e57682d4d4b28e315', '31.222.203.2', 1680136379, '__ci_last_regenerate|i:1680136379;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5d38e0336777717fc1352a0b8c14b4947bba4080', '31.222.203.2', 1680136381, '__ci_last_regenerate|i:1680136381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e66f2675d21393fbf340422a8f267208aa5e94', '31.222.203.2', 1680136381, '__ci_last_regenerate|i:1680136381;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb5b501e02bc035748178c8e8b8ffb759b614578', '31.222.203.2', 1680136381, '__ci_last_regenerate|i:1680136381;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8998b79b3629616792d636da447a573fbe45512c', '31.222.203.2', 1680138178, '__ci_last_regenerate|i:1680138178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164f9b85c8873dc45c9e4725e8bd53beeb254e1c', '31.222.203.2', 1680138178, '__ci_last_regenerate|i:1680138178;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac2a70ac0bd8f475d5be0477289f86ec1f79564e', '31.222.203.2', 1680138178, '__ci_last_regenerate|i:1680138178;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('847d8949cddbdf0dea50e4c8b58a9c4ff29f9447', '31.222.203.2', 1680138179, '__ci_last_regenerate|i:1680138179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a645b8090a2afb7691b99488644db2b00cce9aef', '31.222.203.2', 1680138179, '__ci_last_regenerate|i:1680138179;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae2f9f7d0ca9c7e0628a2ee80f56060cc38af6b2', '31.222.203.2', 1680138179, '__ci_last_regenerate|i:1680138179;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('daa587fc6f47b909c1852ea5c77b371985979a81', '31.222.203.2', 1680139975, '__ci_last_regenerate|i:1680139975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81ecc86cf692ae99faaea77db68ac7c03a8fc606', '31.222.203.2', 1680139975, '__ci_last_regenerate|i:1680139975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4309435c245c9c79b8430de15665d3ad59ccfc32', '31.222.203.2', 1680139975, '__ci_last_regenerate|i:1680139975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9628009052a29bb0222809bd6eb0a4cb2824563d', '31.222.203.2', 1680139975, '__ci_last_regenerate|i:1680139975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('421e24d3d991c857066a3a20050308f009729577', '31.222.203.2', 1680139975, '__ci_last_regenerate|i:1680139975;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('38cb926700b5d3539ef22f447c9c80e9d8a748cb', '31.222.203.2', 1680139975, '__ci_last_regenerate|i:1680139975;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('731d4a7b722751ca53d0ff08d1328528f4196d43', '31.222.203.2', 1680141788, '__ci_last_regenerate|i:1680141788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e7af419e8d88df05b19207c4f15ab8d9f9990ce4', '31.222.203.2', 1680141788, '__ci_last_regenerate|i:1680141788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6e207eb97caae781d98c9da1f2048d6f38719c52', '31.222.203.2', 1680141788, '__ci_last_regenerate|i:1680141788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('287e57f51d22f327e392ae353c2849379400c10b', '31.222.203.2', 1680141790, '__ci_last_regenerate|i:1680141790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('74f5c70e4151edde348a198181cbc17655755481', '31.222.203.2', 1680141790, '__ci_last_regenerate|i:1680141790;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('11ab2b5ea6f678ef491b8c02083a67dab5049f8b', '31.222.203.2', 1680141790, '__ci_last_regenerate|i:1680141790;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92c47a76661fe999d836a95226940046726beaea', '31.222.203.2', 1680143576, '__ci_last_regenerate|i:1680143576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a1529866d7ffd13579fd9bd40294e8437d19317', '31.222.203.2', 1680143576, '__ci_last_regenerate|i:1680143576;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f921b490c6b21715b877ccf38f64545053a68c5f', '31.222.203.2', 1680143576, '__ci_last_regenerate|i:1680143576;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92fa7a3ba515d16723d2cff012bffa34746369f3', '31.222.203.2', 1680143578, '__ci_last_regenerate|i:1680143578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86b547527afaadc80685147ba0afaf0e53c134ab', '31.222.203.2', 1680143578, '__ci_last_regenerate|i:1680143578;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7e8b4522f6b3e375f592220e7f0eb86e441c25d3', '31.222.203.2', 1680143578, '__ci_last_regenerate|i:1680143578;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('552e092cd17d9fd0bb3f0eee587a0e4a8042a5a0', '31.222.203.2', 1680145372, '__ci_last_regenerate|i:1680145372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('57739b1ff36d179ccdd0b7d8d53fc177f7f857e6', '31.222.203.2', 1680145372, '__ci_last_regenerate|i:1680145372;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('32f3888cd998d0ced0c772ddd0889ab8abe5a367', '31.222.203.2', 1680145372, '__ci_last_regenerate|i:1680145372;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d56dbecdec9f78dc5d8d2fcaa94df1679dd56ec5', '31.222.203.2', 1680145373, '__ci_last_regenerate|i:1680145373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('69210456cec5fb33bc019be6e70013fcab860f94', '31.222.203.2', 1680145373, '__ci_last_regenerate|i:1680145373;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f42786bdab87c3a44c798c5c6846bcc515d6f990', '31.222.203.2', 1680145373, '__ci_last_regenerate|i:1680145373;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd79c9c733c357cc55bba082593f1455dbb8a3ba', '31.222.203.2', 1680147181, '__ci_last_regenerate|i:1680147181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bc7778ce5a0fa829045c07b816518fef71add04d', '31.222.203.2', 1680147181, '__ci_last_regenerate|i:1680147181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad3dc769fab85d1c26756dd49f52e6b32a3f82dc', '31.222.203.2', 1680147181, '__ci_last_regenerate|i:1680147181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d7ef5cd2f2144da8a8c549aab269e3b92fa46d3', '31.222.203.2', 1680147181, '__ci_last_regenerate|i:1680147181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('201a47c6cff647c070d0459de4cf51682c4d30c5', '31.222.203.2', 1680147181, '__ci_last_regenerate|i:1680147181;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3033e4bfdc63c64e537e8e5a15255f031f694933', '31.222.203.2', 1680147181, '__ci_last_regenerate|i:1680147181;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f28e351dc909456d0447d9befc1189b6ccd6e87', '2.57.122.218', 1680147526, '__ci_last_regenerate|i:1680147526;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('887f580598a67c210ffbb5a9cef8eb89f5e5a1db', '2.57.122.218', 1680147526, '__ci_last_regenerate|i:1680147526;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2323b78944f1db1b340373a326f26a58a2e9ce24', '2.57.122.218', 1680147527, '__ci_last_regenerate|i:1680147527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e1760bb2b28b8d528f2dc7b81ec6e961a18784ad', '2.57.122.218', 1680147527, '__ci_last_regenerate|i:1680147527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5a5e75846405a4b323a67092a5749d0f7d4edc2', '2.57.122.218', 1680147527, '__ci_last_regenerate|i:1680147527;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('faa9e583dcc859ac027a25e51af3fa637ed8889a', '2.57.122.218', 1680147527, '__ci_last_regenerate|i:1680147527;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9f66fd7ca51e891e4ea4d35d8a2f1849254698be', '31.222.203.2', 1680149003, '__ci_last_regenerate|i:1680149003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2986ef6fac57b670a4d2dc3896eed74146ae3df7', '31.222.203.2', 1680149003, '__ci_last_regenerate|i:1680149003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('293b0d9faf284322032159e44400160e8646c2f2', '31.222.203.2', 1680149003, '__ci_last_regenerate|i:1680149003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f10eb41330e1db6c1fa9885b973b01746bfabbc', '31.222.203.2', 1680149005, '__ci_last_regenerate|i:1680149005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1487104d07783053b3bf6f737a8c88c856ba1e41', '31.222.203.2', 1680149005, '__ci_last_regenerate|i:1680149005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5c34495f70c577a58c2a3faee040de9376a21606', '31.222.203.2', 1680149005, '__ci_last_regenerate|i:1680149005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bf008cfa31897b509b8ce33a8e1bead5640c05f0', '31.222.203.2', 1680150810, '__ci_last_regenerate|i:1680150810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('54538ec1a7693753ba405e22fc02db154bc91563', '31.222.203.2', 1680150810, '__ci_last_regenerate|i:1680150810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4df63b840011c4a5e68e329169f1ba500c28530d', '31.222.203.2', 1680150810, '__ci_last_regenerate|i:1680150810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3a2bbc5bcfa53b8a2feca789621e4d44c003285b', '31.222.203.2', 1680150810, '__ci_last_regenerate|i:1680150810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adbfbcb43c2b5d27669f5e583c9d7c950036afaf', '31.222.203.2', 1680150810, '__ci_last_regenerate|i:1680150810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b3da4f69bbc5229d0e167a00ccd33ca638429c2e', '31.222.203.2', 1680150810, '__ci_last_regenerate|i:1680150810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9119203dc0d087e6ed4a945d58c04541777f5c22', '31.222.203.2', 1680152580, '__ci_last_regenerate|i:1680152580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a6e1faddd0a2296b8ac27da61a0e38978e81a4', '31.222.203.2', 1680152580, '__ci_last_regenerate|i:1680152580;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6181f549f5c34f754fe2fa0caccabbdef36e0d41', '31.222.203.2', 1680152580, '__ci_last_regenerate|i:1680152580;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1dae248a6be8555db661c31b041678fb35a1195a', '31.222.203.2', 1680152582, '__ci_last_regenerate|i:1680152582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('836a03d09681393abf654f383c9b3533e2d17ad5', '31.222.203.2', 1680152582, '__ci_last_regenerate|i:1680152582;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('de8b113c36c94dde53200f09d98ea9fbc9369f89', '31.222.203.2', 1680152582, '__ci_last_regenerate|i:1680152582;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18b9490f47e99e686b9b69c8a41fde176e4d04fc', '31.222.203.2', 1680154391, '__ci_last_regenerate|i:1680154391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e3d0e2096e9ef86b444597998585bb961dd410a9', '31.222.203.2', 1680154391, '__ci_last_regenerate|i:1680154391;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015075bf8c6e4b4bfbda34b36669c820623e40b4', '31.222.203.2', 1680154391, '__ci_last_regenerate|i:1680154391;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dd989bea58d6fda63f7345ad60ab78a8264752cc', '31.222.203.2', 1680154393, '__ci_last_regenerate|i:1680154393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c4f1095debf92dc96e0eff787dbaaf201a0c0995', '31.222.203.2', 1680154393, '__ci_last_regenerate|i:1680154393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bd1ebc1d98b6ede3e33599a827590806bf230c03', '31.222.203.2', 1680154393, '__ci_last_regenerate|i:1680154393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbb08f2a0d97ac9ff711452a151554ed27098851', '31.222.203.2', 1680156184, '__ci_last_regenerate|i:1680156184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3127cfca20de95d44e95ae2a2502549e62f249c1', '31.222.203.2', 1680156184, '__ci_last_regenerate|i:1680156184;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e800b69a5749b8cec843da5a35d60f90256382a8', '31.222.203.2', 1680156184, '__ci_last_regenerate|i:1680156184;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6d9914edf62a66163528714d19489bcfb746fa0', '31.222.203.2', 1680156186, '__ci_last_regenerate|i:1680156186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9d961ca34f49130924e8fd5fc620e6dbb54e2e8f', '31.222.203.2', 1680156186, '__ci_last_regenerate|i:1680156186;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db0e2b31149173275504baa7f84a7386e87a1a27', '31.222.203.2', 1680156186, '__ci_last_regenerate|i:1680156186;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6875a3ede68910b5d0f1fd31e366e04fb00d24f7', '37.111.218.249', 1680161111, '__ci_last_regenerate|i:1680161111;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680100746\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680161092;register_id|s:3:\"385\";cash_in_hand|s:9:\"4910.0000\";register_open_time|s:19:\"2023-03-29 21:20:10\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51470cabaf0766cbed29d180034770d5b6388a8c', '31.222.203.2', 1680157992, '__ci_last_regenerate|i:1680157992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d2d3d92e4bb37a3ac90df8eeb5593bf89466a19', '31.222.203.2', 1680157992, '__ci_last_regenerate|i:1680157992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db6c6f0475af2e1cb78a500ef66b34d6d92bb460', '31.222.203.2', 1680157992, '__ci_last_regenerate|i:1680157992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4c0e4b2ff20221effc0860c5fce1f545817e3417', '31.222.203.2', 1680157992, '__ci_last_regenerate|i:1680157992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8fbca671c22235dd3d3e7df2891c49f79888d7f6', '31.222.203.2', 1680157992, '__ci_last_regenerate|i:1680157992;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('177a319ab30d9fa11737a54dacf37bb1d9a2d555', '31.222.203.2', 1680157992, '__ci_last_regenerate|i:1680157992;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfd87245a686765ff2a1de98c973e479e1067236', '31.222.203.2', 1680159787, '__ci_last_regenerate|i:1680159787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f844d95cccb0a02f926411a1b8256a31dffaf2f3', '31.222.203.2', 1680159787, '__ci_last_regenerate|i:1680159787;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('179008d172e97003df33e11f520ea90b0ec50c47', '31.222.203.2', 1680159787, '__ci_last_regenerate|i:1680159787;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a0801ba2ae43a4e2c458951fe8dc24b19cab52d', '31.222.203.2', 1680159788, '__ci_last_regenerate|i:1680159788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d894dd64764f3b98e0481924a296bdacf8c52f7', '31.222.203.2', 1680159788, '__ci_last_regenerate|i:1680159788;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9a1e8b3ad2a7d216d787cd846ab3226adffee905', '31.222.203.2', 1680159788, '__ci_last_regenerate|i:1680159788;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f23fdb3cb9820e54e357ab43ecc7961f09454364', '37.111.218.249', 1680164778, '__ci_last_regenerate|i:1680164778;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680100746\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680161111;register_id|s:3:\"385\";cash_in_hand|s:9:\"4910.0000\";register_open_time|s:19:\"2023-03-29 21:20:10\";remove_posls|i:1;message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('93400dcaa803a15e10a7b9f384b43914aa2ee2e4', '31.222.203.2', 1680161594, '__ci_last_regenerate|i:1680161594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ea651ed36e77495b3f8fdbac8c00066efacc04ce', '31.222.203.2', 1680161594, '__ci_last_regenerate|i:1680161594;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a8f5308a1dd758bbb915480a4ff5110665f0d2af', '31.222.203.2', 1680161594, '__ci_last_regenerate|i:1680161594;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7c894a01d456c63e43d913c523c9541eff96cfb5', '31.222.203.2', 1680161596, '__ci_last_regenerate|i:1680161596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fd39d032a21fe435e674a5f05ba478008ab6ff0', '31.222.203.2', 1680161596, '__ci_last_regenerate|i:1680161596;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3329e888ff6a509fa732d2982baf3c262c1a6ac5', '31.222.203.2', 1680161596, '__ci_last_regenerate|i:1680161596;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('59b095580a7ff4ea019a397803a4340a843b6b96', '31.222.203.2', 1680163392, '__ci_last_regenerate|i:1680163392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3d865fda011dec9103337484c76461a07afb026d', '31.222.203.2', 1680163392, '__ci_last_regenerate|i:1680163392;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65ccfff504252493cb41b37c094a8dda82a47715', '31.222.203.2', 1680163392, '__ci_last_regenerate|i:1680163392;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d70aaed4d877f2b45109d34bf57157ac8d8a70b9', '31.222.203.2', 1680163393, '__ci_last_regenerate|i:1680163393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0b2b2d503f625fb3b1d53fda866d8a7dcd5efdea', '31.222.203.2', 1680163393, '__ci_last_regenerate|i:1680163393;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fc633d642c71602b6e004895366c471c9199e69d', '31.222.203.2', 1680163393, '__ci_last_regenerate|i:1680163393;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8f007e56d537c733d12b55ec5cce16b9b7440c44', '37.111.218.249', 1680171289, '__ci_last_regenerate|i:1680171289;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680100746\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680171284;register_id|s:3:\"385\";cash_in_hand|s:9:\"4910.0000\";register_open_time|s:19:\"2023-03-29 21:20:10\";message|s:27:\"POS Sale successfully added\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('75cc4f844b159f110c9f433ad447c22cba840b79', '31.222.203.2', 1680165196, '__ci_last_regenerate|i:1680165196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7bdb229f58fba94711725db5d05db74b4c4c9ec8', '31.222.203.2', 1680165196, '__ci_last_regenerate|i:1680165196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb2934c6ef7777a00d956c3b71597f9f573eb7ef', '31.222.203.2', 1680165196, '__ci_last_regenerate|i:1680165196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('933f41ba6c6f529f8ace8f18f7e4e954ef5647a3', '31.222.203.2', 1680165196, '__ci_last_regenerate|i:1680165196;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0bc8d3fc55359d442019d1374b963f240458866a', '31.222.203.2', 1680165196, '__ci_last_regenerate|i:1680165196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e5c81a71b687e7cbf7a11c0391ce95ae64f9a675', '31.222.203.2', 1680165196, '__ci_last_regenerate|i:1680165196;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('30b621e58148248015209ffae639cce4910e1019', '31.222.203.2', 1680166986, '__ci_last_regenerate|i:1680166986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50977116443bac0d4596516cf97e52261fadfe72', '31.222.203.2', 1680166986, '__ci_last_regenerate|i:1680166986;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d40b30c42fc5a7152c0c0619f8c2ef296d523cf', '31.222.203.2', 1680166986, '__ci_last_regenerate|i:1680166986;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1db29f8b99f5318eb70fc1de15f5d4552215d8bb', '31.222.203.2', 1680166987, '__ci_last_regenerate|i:1680166987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ceb5fef5cada974bdb0bcc330132686678fd23f', '31.222.203.2', 1680166987, '__ci_last_regenerate|i:1680166987;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0f4f8577bf393a4a77aec21589b7c9a6c4ba87eb', '31.222.203.2', 1680166987, '__ci_last_regenerate|i:1680166987;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('487e95b2d387f61e417d9644351b5a721371a9e1', '31.222.203.2', 1680168797, '__ci_last_regenerate|i:1680168797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d17ab06119ba4f256b24cc2f5fd4109f7b554463', '31.222.203.2', 1680168797, '__ci_last_regenerate|i:1680168797;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8e6bb8f6c159761bd16e295a609f6e5192ecd81', '31.222.203.2', 1680168797, '__ci_last_regenerate|i:1680168797;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b85185702d4cac3a2af70c22d41aed3aaea29b3a', '31.222.203.2', 1680168798, '__ci_last_regenerate|i:1680168798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ae82d64d22624ac3f2ee126c461d6f88d7b45e92', '31.222.203.2', 1680168798, '__ci_last_regenerate|i:1680168798;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('739f7ab1c0797b0d824eaa7bc28f86e915851710', '31.222.203.2', 1680168798, '__ci_last_regenerate|i:1680168798;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d6a95580535d246a4e08ccdcd0779682342c4aa', '31.222.203.2', 1680170599, '__ci_last_regenerate|i:1680170599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfcf41bbbb8fde5b7e20a9629664c116c69eedeb', '31.222.203.2', 1680170599, '__ci_last_regenerate|i:1680170599;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('45ada3e77ccd486c0b075d22d8dacfca1a932705', '31.222.203.2', 1680170599, '__ci_last_regenerate|i:1680170599;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5149a29cc25df70cd274ba85e6ce4be6d05a048e', '31.222.203.2', 1680170600, '__ci_last_regenerate|i:1680170600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a966e29b0ba28bd8db1ce25b98115273b348e98', '31.222.203.2', 1680170600, '__ci_last_regenerate|i:1680170600;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eb42fdd11feba40b87da20f47e305e6da2be76c7', '31.222.203.2', 1680170600, '__ci_last_regenerate|i:1680170600;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ac481cad17043c97480b54f19820bbf289c18dd', '37.111.218.249', 1680171289, '__ci_last_regenerate|i:1680171289;requested_page|s:9:\"admin/pos\";identity|s:6:\"jamuna\";username|s:6:\"jamuna\";email|s:22:\"0rdesr@recallgreen.com\";user_id|s:1:\"2\";old_last_login|s:10:\"1680100746\";last_ip|s:13:\"37.111.218.20\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"5\";warehouse_id|s:1:\"2\";view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"1\";biller_id|s:1:\"6\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}last_activity|i:1680171289;register_id|s:3:\"385\";cash_in_hand|s:9:\"4910.0000\";register_open_time|s:19:\"2023-03-29 21:20:10\";message|s:27:\"POS Sale successfully added\";remove_posls|i:1;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8588d25ef66172aa2a48efb5ce33858ba163d726', '31.222.203.2', 1680531033, '__ci_last_regenerate|i:1680531033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96a7452b0b78730440515de8a7b5744a8d47d41c', '31.222.203.2', 1680531033, '__ci_last_regenerate|i:1680531033;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd934ae039026f3c3f28abd022ad1f7ad936ce1b', '31.222.203.2', 1680531033, '__ci_last_regenerate|i:1680531033;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d35908a492b89dd0c9829930fa4eacdc79beee6d', '31.222.203.2', 1680531034, '__ci_last_regenerate|i:1680531034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ca37d77248c31ce39d9c7c0dfc0d715a7b5f6458', '31.222.203.2', 1680531034, '__ci_last_regenerate|i:1680531034;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('63aa7fcb25fc67ff284ebe07f0a9370b8c6439ed', '31.222.203.2', 1680531034, '__ci_last_regenerate|i:1680531034;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('28918193c230f0bddc88e28c7771d3a36332b0eb', '116.204.230.19', 1680532473, '__ci_last_regenerate|i:1680532432;identity|s:6:\"rashed\";username|s:6:\"rashed\";email|s:22:\"rashedul.107@gmail.com\";user_id|s:1:\"6\";old_last_login|s:10:\"1679930265\";last_ip|s:13:\"51.81.186.251\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|s:1:\"0\";view_right|s:1:\"1\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|s:1:\"0\";company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9c9d7ef83559aed559ebf48785b7a577083f6df', '31.222.203.2', 1680532817, '__ci_last_regenerate|i:1680532817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1a5694bfe29e72f54ce143f5a7bb575303a19270', '31.222.203.2', 1680532817, '__ci_last_regenerate|i:1680532817;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('af2f72823cfd2858d3e16369819ecb669d060a9f', '31.222.203.2', 1680532817, '__ci_last_regenerate|i:1680532817;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ed3d5990278198350e16b00b8e4c301d44a948c9', '31.222.203.2', 1680532819, '__ci_last_regenerate|i:1680532819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('35e7ae6b61939f7d44ec01bea3fef89e7dfb9e57', '31.222.203.2', 1680532819, '__ci_last_regenerate|i:1680532819;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397319db1ca4b1e27eb1c3caea36eb00082cd36f', '31.222.203.2', 1680532819, '__ci_last_regenerate|i:1680532819;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('541af1f08719e164ffb5c85ea3e159d3207c9d80', '31.222.203.2', 1680534617, '__ci_last_regenerate|i:1680534617;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c616a5232c355cf3aa90782628aff17440d8b00f', '31.222.203.2', 1680534619, '__ci_last_regenerate|i:1680534619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9598e1a3c07b16600c1e50b73608f5ba1d682111', '31.222.203.2', 1680534619, '__ci_last_regenerate|i:1680534619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('89bf83777cf6a0c61adf44383fb68c8b858634e9', '31.222.203.2', 1680534619, '__ci_last_regenerate|i:1680534619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a63f646ff1b0c0f647a892f8a1b89b4f163c06bf', '31.222.203.2', 1680534619, '__ci_last_regenerate|i:1680534619;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8970ec5964be4f3a72038cdb89418b686c411603', '31.222.203.2', 1680534619, '__ci_last_regenerate|i:1680534619;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bc275c608ca1df1562d5febc5eff50d9b25dd41', '185.65.135.193', 1680536229, '__ci_last_regenerate|i:1680536229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('783532f686b115d6cc82c7242b17f2400301dd43', '185.65.135.193', 1680536229, '__ci_last_regenerate|i:1680536229;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e805cf93ec67ed39020d3cb8fe301582f5cacac1', '185.65.135.193', 1680536229, '__ci_last_regenerate|i:1680536229;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('77e34b683a2407561d8ff0aca6e665395cae6d0e', '31.222.203.2', 1680536414, '__ci_last_regenerate|i:1680536414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f71d337913c2e64fcbf6f80da4e1b1686e2866c8', '31.222.203.2', 1680536414, '__ci_last_regenerate|i:1680536414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64afebc32d9e5dd01cdf9b5b7f0172e9ff6f5838', '31.222.203.2', 1680536414, '__ci_last_regenerate|i:1680536414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5776a365f0d7de6ab4fd6e4979eefde606abb319', '31.222.203.2', 1680536414, '__ci_last_regenerate|i:1680536414;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94cea90b23a39a42dd8879e94a494ec0a135e6d2', '31.222.203.2', 1680536414, '__ci_last_regenerate|i:1680536414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('975d78f3392335962999b060cc31535b91eef927', '31.222.203.2', 1680536414, '__ci_last_regenerate|i:1680536414;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3015ff61005dde00d3484abf7be84ef3c16d7d4a', '31.222.203.2', 1680538210, '__ci_last_regenerate|i:1680538210;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4ce629ad9342ed9793f1fc16c6001ac8a8300b5f', '31.222.203.2', 1680538211, '__ci_last_regenerate|i:1680538211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ac7cda5364d6b4192565337e986ecd5c555dc24c', '31.222.203.2', 1680538211, '__ci_last_regenerate|i:1680538211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('15b80b6c4b83db7015b4c17335424f5124dad377', '31.222.203.2', 1680538211, '__ci_last_regenerate|i:1680538211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('424dab55dfeb8e9e00c8ce4831319e1fb17867c7', '31.222.203.2', 1680538211, '__ci_last_regenerate|i:1680538211;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adb7c5fb0c1511b2f6dbf72853fd4d3b09cd67e8', '31.222.203.2', 1680538211, '__ci_last_regenerate|i:1680538211;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3730b4c5f86e27461041861f0cc17d3212b7f7cc', '31.222.203.2', 1680540005, '__ci_last_regenerate|i:1680540005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3bb1af0b3015756e6ed41c69085f611f0db8162b', '31.222.203.2', 1680540005, '__ci_last_regenerate|i:1680540005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b5b9061c2885572380edeb2657a809199c29939', '31.222.203.2', 1680540005, '__ci_last_regenerate|i:1680540005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('72b402cdc23ffadfc1ba8f3dc5fc9a75f926b7ed', '31.222.203.2', 1680540005, '__ci_last_regenerate|i:1680540005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8c829cda946c99fbee632a289ab9e279183d6720', '31.222.203.2', 1680540005, '__ci_last_regenerate|i:1680540005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('56e9e982e929f0f30d046a0457da58378e1b4f24', '31.222.203.2', 1680540005, '__ci_last_regenerate|i:1680540005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b1b2bdf52c6fa4fe148460038b0db939e3e86598', '31.222.203.2', 1680541804, '__ci_last_regenerate|i:1680541804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f9ca67031fbcb7cbe3666df6143c2882645ea2e4', '31.222.203.2', 1680541804, '__ci_last_regenerate|i:1680541804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8a54c87387b7bd645c7bc327e4de552b893f1bec', '31.222.203.2', 1680541804, '__ci_last_regenerate|i:1680541804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('360747c9c69a2997ef6581fef8cb2cd30e9f866f', '31.222.203.2', 1680541806, '__ci_last_regenerate|i:1680541806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('865b6d00447b09c99876bd670efbea35b2540f5c', '31.222.203.2', 1680541806, '__ci_last_regenerate|i:1680541806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1cff62086fe60e196a92eca3be13226f6fce30c8', '31.222.203.2', 1680541806, '__ci_last_regenerate|i:1680541806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a9d788ecaf74b06b568b87280138b9e2f83b1ab', '31.222.203.2', 1680543605, '__ci_last_regenerate|i:1680543605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('18344f80f0874ef517711fde5d9cd3472aa47a73', '31.222.203.2', 1680543605, '__ci_last_regenerate|i:1680543605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('16584945f00ac2470a2ebee9d7bc31db8d9d98f9', '31.222.203.2', 1680543605, '__ci_last_regenerate|i:1680543605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dca11ec9f08dc3281f11d5bb41cee5dab52b1bcf', '31.222.203.2', 1680543605, '__ci_last_regenerate|i:1680543605;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('798e9f412a7a47fd59a240c2902016ebe9990fbd', '31.222.203.2', 1680543605, '__ci_last_regenerate|i:1680543605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f72fd3176eaa1cb781e6ad6fb5500cf2f537f21b', '31.222.203.2', 1680543605, '__ci_last_regenerate|i:1680543605;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a87f6bea0ad02035778907115bd97456f29f232b', '31.222.203.2', 1680545401, '__ci_last_regenerate|i:1680545401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0f70fe35fa3c7a1bd8fcc30a70e226da99c5d79', '31.222.203.2', 1680545401, '__ci_last_regenerate|i:1680545401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5df20c581a91821bb6223a841e9a722f302dc201', '31.222.203.2', 1680545401, '__ci_last_regenerate|i:1680545401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('86248c8761adf5e5effc1b1f699bd5336d8f8ce0', '31.222.203.2', 1680545402, '__ci_last_regenerate|i:1680545402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1f0ec0b02136580b42110fbbaaff65527fb8b999', '31.222.203.2', 1680545402, '__ci_last_regenerate|i:1680545402;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1ace516b504867e20815c66408c423c728a82e06', '31.222.203.2', 1680545402, '__ci_last_regenerate|i:1680545402;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('68ddfc54f5e8fe91cfc390b18a8bf9f65b2c3f19', '31.222.203.2', 1680547198, '__ci_last_regenerate|i:1680547198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e2fbfe11d6a2b974eec459c4327fbaffad749b1', '31.222.203.2', 1680547198, '__ci_last_regenerate|i:1680547198;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5c18671403b2379b28cf21ca14a188a832b1e2b', '31.222.203.2', 1680547198, '__ci_last_regenerate|i:1680547198;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ecdbbb75667a2309850d16831dfac8770ebb23e6', '31.222.203.2', 1680547199, '__ci_last_regenerate|i:1680547199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2d4fb9832126815a17c7e008459f52cb4c6cd4d9', '31.222.203.2', 1680547199, '__ci_last_regenerate|i:1680547199;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f01acaafc1aef1376f0bf8021b31e78fe0588a14', '31.222.203.2', 1680547199, '__ci_last_regenerate|i:1680547199;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f6685d584958b8ff8d2840059200acbcd60bb18b', '31.222.203.2', 1680549004, '__ci_last_regenerate|i:1680549004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4583ae90cdb1f58a8aacec1d54d40cd7d7fd2f60', '31.222.203.2', 1680549004, '__ci_last_regenerate|i:1680549004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('789de44c345cf9afd895f392674db22e5355606a', '31.222.203.2', 1680549004, '__ci_last_regenerate|i:1680549004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b03b0465bea2a9768b1ab7bc8607b6068cd078a8', '31.222.203.2', 1680549005, '__ci_last_regenerate|i:1680549005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('51dc37f8c0d034004d94dc96be17281ab1fcfb71', '31.222.203.2', 1680549005, '__ci_last_regenerate|i:1680549005;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('64852c52cd7d6413799600dfafd6a0a9d27f7366', '31.222.203.2', 1680549005, '__ci_last_regenerate|i:1680549005;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b5c2d86cb416079ec5c92d12aff6c80bc2df9cbd', '31.222.203.2', 1680550810, '__ci_last_regenerate|i:1680550810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b4936f5efdea4ab5cfbeb64bc830489dfb133c5c', '31.222.203.2', 1680550810, '__ci_last_regenerate|i:1680550810;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8262028a59073dcb71088a9348862c9cc9f098b3', '31.222.203.2', 1680550810, '__ci_last_regenerate|i:1680550810;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6fea288a7fbe98e4c5a7759d52cd5eb9adf7081c', '31.222.203.2', 1680550811, '__ci_last_regenerate|i:1680550811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('131607ee97efe70842f212de26308e6cc8c093ca', '31.222.203.2', 1680550811, '__ci_last_regenerate|i:1680550811;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7d2944e7ccd11141774efed52c26a11b6d0282a5', '31.222.203.2', 1680550811, '__ci_last_regenerate|i:1680550811;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1405b86722bc4d5de047437cf9526cbc9910a213', '31.222.203.2', 1680552610, '__ci_last_regenerate|i:1680552610;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('499397773749c4f58dc7406ec0bda681747be035', '31.222.203.2', 1680552612, '__ci_last_regenerate|i:1680552612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('572d5fc9fafb628e5ee8681d379e344baa8359e4', '31.222.203.2', 1680552612, '__ci_last_regenerate|i:1680552612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('015c325895368261b26c55d0b94779bae6a3e7d1', '31.222.203.2', 1680552612, '__ci_last_regenerate|i:1680552612;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7a2f6a93fec653c70fc6301097dfa38c97e0c45a', '31.222.203.2', 1680552612, '__ci_last_regenerate|i:1680552612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9843a855746f9862d19da10b9b44ead319025fd1', '31.222.203.2', 1680552612, '__ci_last_regenerate|i:1680552612;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a3fb3eeb7d7db26857b6de888cb143a014ac8cd0', '31.222.203.2', 1680554407, '__ci_last_regenerate|i:1680554407;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('923d30b79eaaf1dc9b4845d91d4e4ac6235c31af', '31.222.203.2', 1680554408, '__ci_last_regenerate|i:1680554408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fa667e3c2a7c227e69fdac076f48a3280020fcda', '31.222.203.2', 1680554408, '__ci_last_regenerate|i:1680554408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7510b5c6e9e8f04093d56ad1855420ecdb4611dd', '31.222.203.2', 1680554408, '__ci_last_regenerate|i:1680554408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e9b040ef9cf3e7a6d3e30681d8e86dc6743404a5', '31.222.203.2', 1680554408, '__ci_last_regenerate|i:1680554408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8bc76a96a5028b7bf7adc6ab9a717df1fcfd3f4', '31.222.203.2', 1680554408, '__ci_last_regenerate|i:1680554408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d84985685b5b9a2d29e79353647b97670e3aeb85', '31.222.203.2', 1680556208, '__ci_last_regenerate|i:1680556208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05d217cbb5b26f5d8e31bb37756ed7dad4c484a1', '31.222.203.2', 1680556209, '__ci_last_regenerate|i:1680556209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5b223fb6b2fd86f636b29f4823703f49ab53fa45', '31.222.203.2', 1680556209, '__ci_last_regenerate|i:1680556209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('49f4e6fd69755b60fcd506e7bd721f423abe31ac', '31.222.203.2', 1680556209, '__ci_last_regenerate|i:1680556209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d4175764986826b7a40d91ef44deed9302bd8af6', '31.222.203.2', 1680556209, '__ci_last_regenerate|i:1680556209;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('337bb573842042fccf5adc6daab618399cc1d119', '31.222.203.2', 1680556209, '__ci_last_regenerate|i:1680556209;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2e89b9f038767c97ab29562af6009a97220706fb', '31.222.203.2', 1680558000, '__ci_last_regenerate|i:1680558000;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f91d43d39c76772016a62458119ee433cd15d476', '31.222.203.2', 1680558002, '__ci_last_regenerate|i:1680558002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('397b1a3b663fa3db74c68991c3b00e318c40525a', '31.222.203.2', 1680558002, '__ci_last_regenerate|i:1680558002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('58478565228e30c2b45fcd0c36378223cf8bb98b', '31.222.203.2', 1680558002, '__ci_last_regenerate|i:1680558002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9cc85d8633ef7a13a55b748f091da417300b06f8', '31.222.203.2', 1680558002, '__ci_last_regenerate|i:1680558002;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5e24f6aaa442b3fa94f2f53009e70186612d58f2', '31.222.203.2', 1680558002, '__ci_last_regenerate|i:1680558002;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('589f967c6a37f1e629f15e264730ffe3dcea8652', '31.222.203.2', 1680559801, '__ci_last_regenerate|i:1680559801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8f88e6c2f22802506561d682bc266bcb5901e81', '31.222.203.2', 1680559801, '__ci_last_regenerate|i:1680559801;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('891a2625b7cdc54ab85c9159a4cba1fb2857b590', '31.222.203.2', 1680559801, '__ci_last_regenerate|i:1680559801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c904c01f576c879be7c17eee18e0a3628eb0c0cf', '31.222.203.2', 1680559803, '__ci_last_regenerate|i:1680559803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4e310dcf0b4a60d5bcc86205bdb62e4ebcaa9dce', '31.222.203.2', 1680559803, '__ci_last_regenerate|i:1680559803;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fdedb2073523a17554a38f99e85c017aa13c9e73', '31.222.203.2', 1680559803, '__ci_last_regenerate|i:1680559803;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82180fe2ac39c2edf8822f7640a1d6577a3bbf2', '31.222.203.2', 1680561592, '__ci_last_regenerate|i:1680561592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('582cdd878699986c722c2c14edacb79aa84a3a7f', '31.222.203.2', 1680561592, '__ci_last_regenerate|i:1680561592;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('40ce3e77308d5565f98b334a0ef460f139a9a7d7', '31.222.203.2', 1680561592, '__ci_last_regenerate|i:1680561592;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c2df27b43c6dd48e112d5d9b7e8ecd2bfdb10e21', '31.222.203.2', 1680561593, '__ci_last_regenerate|i:1680561593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9bb9e96b54e678ef81bcb8265b976a7e49b66b11', '31.222.203.2', 1680561593, '__ci_last_regenerate|i:1680561593;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f8b253387eddb6b38646b988eb5e9b78f5e5c9d0', '31.222.203.2', 1680561593, '__ci_last_regenerate|i:1680561593;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f6adbce2f914f1d02f3799a31bbe1a856662cda', '54.74.71.247', 1680563384, '__ci_last_regenerate|i:1680563384;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dbd95a483a18826a94ca0398e86e1371164b57ef', '54.74.71.247', 1680563385, '__ci_last_regenerate|i:1680563385;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2127395016628d70eb024e5343aeb504ef149ba', '54.74.71.247', 1680563385, '__ci_last_regenerate|i:1680563385;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d50cc9d76487aa7f98dce0d558b115aa5c6c050f', '31.222.203.2', 1680563408, '__ci_last_regenerate|i:1680563408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c0facf516685d47e891996bc1d5832139f9214c8', '31.222.203.2', 1680563408, '__ci_last_regenerate|i:1680563408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('13fda08a8da513242f3e8d181c3ba61777234e94', '31.222.203.2', 1680563408, '__ci_last_regenerate|i:1680563408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('34d01f38c764898b593d3a627b1e1e2c8613e31e', '31.222.203.2', 1680563408, '__ci_last_regenerate|i:1680563408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d28b5396518dcb6055977b268389393e686ba788', '31.222.203.2', 1680563408, '__ci_last_regenerate|i:1680563408;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8d7b632909775a78a68272099f0b8493d79d2cb2', '31.222.203.2', 1680563408, '__ci_last_regenerate|i:1680563408;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('27086abc6d68063a04c808838d18fb0609aae8e8', '31.222.203.2', 1680565207, '__ci_last_regenerate|i:1680565207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8df5d22387d7520d2819740054731b3dde80a8ba', '31.222.203.2', 1680565207, '__ci_last_regenerate|i:1680565207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6ddad3f33976d6707ae127f02b0ee12e02b77838', '31.222.203.2', 1680565207, '__ci_last_regenerate|i:1680565207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ce10129429f8d2fbdd1eefbbcc4b679afe0dd81a', '31.222.203.2', 1680565207, '__ci_last_regenerate|i:1680565207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a7d7753fff3e448b2cb8dd1327bb5e6c3bc85c3f', '31.222.203.2', 1680565207, '__ci_last_regenerate|i:1680565207;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fbbdd21193a7db4b6b46516acc229c13608f6d9a', '31.222.203.2', 1680565207, '__ci_last_regenerate|i:1680565207;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('43eec83e81ecf6b232fe7f9fe1a5c896ab1cc4d6', '31.222.203.2', 1680567003, '__ci_last_regenerate|i:1680567003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ec7c8c22cf5d1abd73a23e43dcd34b2f7b91f577', '31.222.203.2', 1680567003, '__ci_last_regenerate|i:1680567003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('44a81a6d70fa0dbfddedb38bf307fd0c9be1d6c6', '31.222.203.2', 1680567003, '__ci_last_regenerate|i:1680567003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('fae8d4c9475147c2505dab622c1ada3c3137bcef', '31.222.203.2', 1680567004, '__ci_last_regenerate|i:1680567004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1d2a3fc786c219ccaf9994e1cfd74a86ab390f24', '31.222.203.2', 1680567004, '__ci_last_regenerate|i:1680567004;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('635895c7a036184d27f982c2e3af9e462f4d8da1', '31.222.203.2', 1680567004, '__ci_last_regenerate|i:1680567004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('76b951b6d3fb2a68df7778bafc45a94af727ad0b', '31.222.203.2', 1680568801, '__ci_last_regenerate|i:1680568801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('65c9c884b732a4455e08bc3c58dc43cc599ed674', '31.222.203.2', 1680568801, '__ci_last_regenerate|i:1680568801;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('07e62017b32b4739311c6d94f1eb8d13b7da61c0', '31.222.203.2', 1680568801, '__ci_last_regenerate|i:1680568801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('33854869b2c1a9625622633d33cc68619e776bbc', '31.222.203.2', 1680568801, '__ci_last_regenerate|i:1680568801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8de437c3047120720811fad1eaae3cd22a15fc49', '31.222.203.2', 1680568801, '__ci_last_regenerate|i:1680568801;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5f5635c15fd0f8e7b49217e2cb7c0bbc27cc2f02', '31.222.203.2', 1680568801, '__ci_last_regenerate|i:1680568801;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a1a684807179ef9f1a20aa3776232e74a570450c', '103.108.229.61', 1680569291, '__ci_last_regenerate|i:1680569291;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5fa26d8b2616a06a64a28e17dc50b78460b6008c', '103.108.229.61', 1680569295, '__ci_last_regenerate|i:1680569295;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('eec7465b6cf4098759272adeadd4f6994ff77ced', '103.108.229.61', 1680569301, '__ci_last_regenerate|i:1680569301;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('df380ba72b53d7ecba8768e78260c2e8b0b876e1', '31.222.203.2', 1680570609, '__ci_last_regenerate|i:1680570609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('441aa09a70890c8a59df39cb4c077300a27be2a2', '31.222.203.2', 1680570609, '__ci_last_regenerate|i:1680570609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a09f54690dd2ea504c737d2dc6ff6037f6f017e', '31.222.203.2', 1680570609, '__ci_last_regenerate|i:1680570609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('96abf3c4f9ac41af4de77d3a2f422f22c2493d83', '31.222.203.2', 1680570609, '__ci_last_regenerate|i:1680570609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1b3e3cdf6d18d1e19e1566cd9ff0abcbb8e5d60b', '31.222.203.2', 1680570609, '__ci_last_regenerate|i:1680570609;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('007fb0bebadf694d4ae3a61805e1b5039bfd9662', '31.222.203.2', 1680570609, '__ci_last_regenerate|i:1680570609;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('043b6094a82e70ad12ff710ba2cceaf69903e82c', '31.222.203.2', 1680572417, '__ci_last_regenerate|i:1680572417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6c5bcf0869fda88d75d842eb8e9f66afb58994e9', '31.222.203.2', 1680572417, '__ci_last_regenerate|i:1680572417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f41d5e3be8c04d7a3fc009e8e2f2bc7aaf5c2f51', '31.222.203.2', 1680572417, '__ci_last_regenerate|i:1680572417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b8d7aeb3e17a00a658dc91ebd3f47b3ffa7cb681', '31.222.203.2', 1680572417, '__ci_last_regenerate|i:1680572417;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('84a39466e5fd0fd40dfdcbf7e7df1905e31b23a9', '31.222.203.2', 1680572417, '__ci_last_regenerate|i:1680572417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('654640a452c3c67252d9cd3e705940cd588b90b2', '31.222.203.2', 1680572417, '__ci_last_regenerate|i:1680572417;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6d2eed2e3b80c87a046de00078343d18cc92ece8', '31.222.203.2', 1680574206, '__ci_last_regenerate|i:1680574206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cd143133f6dc194c8897e704aa76c70fadd03c02', '31.222.203.2', 1680574206, '__ci_last_regenerate|i:1680574206;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d496d87acf982030f619dc07259013238af4c336', '31.222.203.2', 1680574206, '__ci_last_regenerate|i:1680574206;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f5139974c47128ef05d1404e20cee00b56a3e035', '31.222.203.2', 1680574208, '__ci_last_regenerate|i:1680574208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c62206bb9d2eda2789ecd63dfef65b5245a5d3ee', '31.222.203.2', 1680574208, '__ci_last_regenerate|i:1680574208;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02df0fc8a16e6696b6ca70fb5494b350d97d4260', '31.222.203.2', 1680574208, '__ci_last_regenerate|i:1680574208;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cdf52f328b00b18d6d06b8e5d50aa2d52efe5c50', '167.248.133.34', 1680575459, '__ci_last_regenerate|i:1680575459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8bd53264b5d70670a4109675860224411fa9265f', '167.248.133.34', 1680575459, '__ci_last_regenerate|i:1680575459;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0d5c3d804fdd273740f36e4fb4b6caafdeb6e038', '167.248.133.34', 1680575459, '__ci_last_regenerate|i:1680575459;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('71aed018d15bdfd93bf1fce56aa0d6d712883a00', '31.222.203.2', 1680576009, '__ci_last_regenerate|i:1680576009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5947d744043bbfe73720021aabaa669ff8a12349', '31.222.203.2', 1680576009, '__ci_last_regenerate|i:1680576009;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b6776f652000d08e326a9d2a26e98f7d06b62256', '31.222.203.2', 1680576009, '__ci_last_regenerate|i:1680576009;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c5f9449fa002abd9b0da28e3fee30127b1950f2', '31.222.203.2', 1680576010, '__ci_last_regenerate|i:1680576010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f67af6e782e8b2a4d7351961395562f3589f330f', '31.222.203.2', 1680576010, '__ci_last_regenerate|i:1680576010;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a6f12e8cdb2bac9e6752bb72c45d7303fbc005a6', '31.222.203.2', 1680576010, '__ci_last_regenerate|i:1680576010;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7177f338b83b122b0f505c8d782a23151b6463cc', '31.222.203.2', 1680577805, '__ci_last_regenerate|i:1680577805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f0def2a99a6fc6573016215e2f86db624f80bbd0', '31.222.203.2', 1680577805, '__ci_last_regenerate|i:1680577805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1c42370a66471a4d833663de5c4b44c42b412f76', '31.222.203.2', 1680577805, '__ci_last_regenerate|i:1680577805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('3f165c7f950d6502c947b70e2c3cbef9fbcf1008', '31.222.203.2', 1680577805, '__ci_last_regenerate|i:1680577805;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('1e770c376e036370075be19ff1179ec67695ba66', '31.222.203.2', 1680577805, '__ci_last_regenerate|i:1680577805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e229c89eea3d009ed1105f2eb6808d30fd0e63e4', '31.222.203.2', 1680577805, '__ci_last_regenerate|i:1680577805;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('90db8020a100711f6f9089e3732a1320c964cd49', '31.222.203.2', 1680579603, '__ci_last_regenerate|i:1680579603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7b30747f0df3e4b2e9b38e7c421ac32196beb60d', '31.222.203.2', 1680579603, '__ci_last_regenerate|i:1680579603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('94f083c83e57d66d9918de45ffe081d5abb45f0b', '31.222.203.2', 1680579603, '__ci_last_regenerate|i:1680579603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('4f44f354f963b8955fbd45418ebc6a3afcd48b58', '31.222.203.2', 1680579603, '__ci_last_regenerate|i:1680579603;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d82ef73601089f123225745b8e8faf6dd1c4cb34', '31.222.203.2', 1680579603, '__ci_last_regenerate|i:1680579603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('81d599be9beb367edb9c92b9d14de92a07a29ece', '31.222.203.2', 1680579603, '__ci_last_regenerate|i:1680579603;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('a2943ae7ef584b38b65028e5560078d610613073', '31.222.203.2', 1680581401, '__ci_last_regenerate|i:1680581401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('bdead8f5cc0493ed4cc8459c295a85a31cae5e39', '31.222.203.2', 1680581401, '__ci_last_regenerate|i:1680581401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e8513b9c7d9631ed1beacf8461ff2cf59f70107d', '31.222.203.2', 1680581401, '__ci_last_regenerate|i:1680581401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b42d89e24a0a930c65172a206ac211f61c9d746c', '31.222.203.2', 1680581401, '__ci_last_regenerate|i:1680581401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('efbc0fea94a4cc8e5f7db289c640e44f548b29c6', '31.222.203.2', 1680581401, '__ci_last_regenerate|i:1680581401;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('5651e46cc94b504621d639b92dd61f371d023753', '31.222.203.2', 1680581401, '__ci_last_regenerate|i:1680581401;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('7cb4153a7238ef74128390797d298c774c2208d9', '167.248.133.36', 1680581725, '__ci_last_regenerate|i:1680581725;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f265f71d0bc5c0b9f470a08f8c0700109e817085', '167.248.133.36', 1680581726, '__ci_last_regenerate|i:1680581726;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8ea89184a8e34daf63eafea1a48fe67f55a21eef', '167.248.133.36', 1680581726, '__ci_last_regenerate|i:1680581726;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('21d9d0d99a64a6889e0c495f1346a3f500ddd6d2', '31.222.203.2', 1680583200, '__ci_last_regenerate|i:1680583200;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9c96a71ea5ac38466016f9ad5a92306d913e368a', '31.222.203.2', 1680583203, '__ci_last_regenerate|i:1680583203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d102bdd67a0d1b68c75105b9955ef53f85336aa6', '31.222.203.2', 1680583203, '__ci_last_regenerate|i:1680583203;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('79440db1c74db1b59c14f892f7bd18e1382e1400', '31.222.203.2', 1680583203, '__ci_last_regenerate|i:1680583203;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55f0ce0dc3c21976e46630c3bba06a62c14d2a9d', '31.222.203.2', 1680583203, '__ci_last_regenerate|i:1680583203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('814f1c1d3525aca132af027652b56471bb7bc8be', '31.222.203.2', 1680583203, '__ci_last_regenerate|i:1680583203;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('05bd39da777a7537c07c3d90e92e9aaa9a5903e6', '31.222.203.2', 1680585003, '__ci_last_regenerate|i:1680585003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('55c5174846124cb5ca44e1e5a7466aa70c685817', '31.222.203.2', 1680585003, '__ci_last_regenerate|i:1680585003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('25d550eac97022534676c9bc8af5ee740bbbdf18', '31.222.203.2', 1680585003, '__ci_last_regenerate|i:1680585003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e049bf2b1fddcd742b7f6bcda8644fb6d00f6933', '31.222.203.2', 1680585003, '__ci_last_regenerate|i:1680585003;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('f59a5da1d1d37d41ae4efd09ca58732c8842ffbe', '31.222.203.2', 1680585003, '__ci_last_regenerate|i:1680585003;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('95e9e54284f7e514ed840b14ce3cee41d2b34e29', '31.222.203.2', 1680585004, '__ci_last_regenerate|i:1680585004;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02133bb587433ac65bb88b46a4e5f018d258f4b9', '31.222.203.2', 1680586804, '__ci_last_regenerate|i:1680586804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('d678cb272ea40fc3b0330cb2cb5385ee61deaa69', '31.222.203.2', 1680586804, '__ci_last_regenerate|i:1680586804;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('48374e43303e0c79c1fb5b4b12e68aa15d1323af', '31.222.203.2', 1680586804, '__ci_last_regenerate|i:1680586804;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c5cc22fb7402556e1fc8f7156561d78c79238eab', '31.222.203.2', 1680586806, '__ci_last_regenerate|i:1680586806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8657a1797f20c655feae12ee90c4152b6338bc04', '31.222.203.2', 1680586806, '__ci_last_regenerate|i:1680586806;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('02c1676be32f9ed262388ea391ea7f30e5e69a1a', '31.222.203.2', 1680586806, '__ci_last_regenerate|i:1680586806;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('164475f6c6a9c9d8c97f819394b7949990cd13fc', '31.222.203.2', 1680588611, '__ci_last_regenerate|i:1680588611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e57292aa113ee9dc6a63d0c631a8f09c5174c35f', '31.222.203.2', 1680588611, '__ci_last_regenerate|i:1680588611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8690cc605e3740a372cffd2126f0a9da1a00d109', '31.222.203.2', 1680588611, '__ci_last_regenerate|i:1680588611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('aaff9094ea774b37274178abfa3d1a7d473e2b94', '31.222.203.2', 1680588611, '__ci_last_regenerate|i:1680588611;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('20631aad2cf9967ec2f853d67207e4178a613188', '31.222.203.2', 1680588611, '__ci_last_regenerate|i:1680588611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2713e3570b9afce8979c9ffac31d74fec3b64596', '31.222.203.2', 1680588611, '__ci_last_regenerate|i:1680588611;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('39cdd7926501945f756667f17a0759afa8328b8a', '167.94.138.50', 1680590237, '__ci_last_regenerate|i:1680590237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6a5f0f3c2698416e3b0780801b94798226904bdf', '167.94.138.50', 1680590237, '__ci_last_regenerate|i:1680590237;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('0ff1606c67f980dc29f09dbe0f374a16d434c24a', '167.94.138.50', 1680590237, '__ci_last_regenerate|i:1680590237;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2584258f2c04d3fa4182d81bc85a0bd3b653d44a', '31.222.203.2', 1680590404, '__ci_last_regenerate|i:1680590404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('92d231176e2b7dc8aae350dd2775f48a674bc8e2', '31.222.203.2', 1680590404, '__ci_last_regenerate|i:1680590404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('ad8fc89f3f7acbba15c31ba8c4b2e223013b7a35', '31.222.203.2', 1680590404, '__ci_last_regenerate|i:1680590404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cbdf38eaf5b854c5bf60a5e3030933597c05abba', '31.222.203.2', 1680590404, '__ci_last_regenerate|i:1680590404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('2c9184cff87c1edfb7b63caf9f45e473e4e5e022', '31.222.203.2', 1680590404, '__ci_last_regenerate|i:1680590404;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('6f8825932044b7892d3af89dfbb861d41c175a83', '31.222.203.2', 1680590404, '__ci_last_regenerate|i:1680590404;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('085645102dc1e239050ba302db2341049ad7fe49', '31.222.203.2', 1680591774, '__ci_last_regenerate|i:1680591774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('adac95c83cc1fd295403160f5f65b8658ff728f8', '31.222.203.2', 1680591774, '__ci_last_regenerate|i:1680591774;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('938d930a8162e4ab31deb49bf05f31ccd06906dc', '31.222.203.2', 1680591774, '__ci_last_regenerate|i:1680591774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c9c055fa8d3f4e48bdfe974b843e53c0cc0a9561', '31.222.203.2', 1680591774, '__ci_last_regenerate|i:1680591774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c1b670b723a659ce9cc20f7ee514f24beee4e8d7', '31.222.203.2', 1680591774, '__ci_last_regenerate|i:1680591774;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('9282c1fe2bc2e208463701d7f02568d2b25a5305', '31.222.203.2', 1680591774, '__ci_last_regenerate|i:1680591774;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('db550f0e64642efe4c2285494ed30cdb8cd5a045', '103.114.20.114', 1683003076, '__ci_last_regenerate|i:1683003076;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('dfe4df1fa47e4c09aa590c7fa7e3ac0359049b28', '103.114.20.114', 1683002808, '__ci_last_regenerate|i:1683002808;requested_page|s:5:\"admin\";identity|s:19:\"root@thebluefog.com\";username|s:12:\"System Admin\";email|s:19:\"root@thebluefog.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1683002614\";last_ip|s:14:\"103.114.20.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('e4184d0cceda655a8f839cbb18aab16e51cae220', '103.114.20.114', 1683002532, '__ci_last_regenerate|i:1683002532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('50ffe5930e3fb71ceb02410ad12784e731b3b6a2', '103.114.20.114', 1683002532, '__ci_last_regenerate|i:1683002532;requested_page|s:5:\"admin\";');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('c8f52c1ad0f7573cb42bbb6888b271e4f6e0023c', '103.114.20.114', 1683002532, '__ci_last_regenerate|i:1683002532;');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('cb4fc2a5cf1127c6164d3ab7308ba132ed9112db', '103.114.20.114', 1683003099, '__ci_last_regenerate|i:1683003090;identity|s:19:\"root@thebluefog.com\";username|s:12:\"System Admin\";email|s:19:\"root@thebluefog.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1683002575\";last_ip|s:14:\"103.114.20.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('b666fcc87076badd91a376bdd3d71c29ff09d3f0', '103.114.20.114', 1683003090, '__ci_last_regenerate|i:1683003090;identity|s:19:\"root@thebluefog.com\";username|s:12:\"System Admin\";email|s:19:\"root@thebluefog.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1683002575\";last_ip|s:14:\"103.114.20.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:1:{s:7:\"message\";s:3:\"old\";}');
INSERT INTO `sma_sessions` (`id`, `ip_address`, `timestamp`, `data`) VALUES ('8639e2a5403c71c8370b94405ebd4eeeedb22f57', '103.114.20.114', 1683003063, '__ci_last_regenerate|i:1683002808;requested_page|s:5:\"admin\";identity|s:19:\"root@thebluefog.com\";username|s:12:\"System Admin\";email|s:19:\"root@thebluefog.com\";user_id|s:1:\"4\";old_last_login|s:10:\"1683002614\";last_ip|s:14:\"103.114.20.114\";avatar|N;gender|s:4:\"male\";group_id|s:1:\"1\";warehouse_id|N;view_right|s:1:\"0\";edit_right|s:1:\"0\";allow_discount|s:1:\"0\";biller_id|N;company_id|N;show_cost|s:1:\"0\";show_price|s:1:\"0\";__ci_vars|a:2:{s:7:\"message\";s:3:\"old\";s:5:\"error\";s:3:\"old\";}');


#
# TABLE STRUCTURE FOR: sma_settings
#

DROP TABLE IF EXISTS `sma_settings`;

CREATE TABLE `sma_settings` (
  `setting_id` int(1) NOT NULL,
  `logo` varchar(255) NOT NULL,
  `logo2` varchar(255) NOT NULL,
  `site_name` varchar(55) NOT NULL,
  `language` varchar(20) NOT NULL,
  `default_warehouse` int(2) NOT NULL,
  `accounting_method` tinyint(4) NOT NULL DEFAULT 0,
  `default_currency` varchar(3) NOT NULL,
  `default_tax_rate` int(2) NOT NULL,
  `rows_per_page` int(2) NOT NULL,
  `version` varchar(10) NOT NULL DEFAULT '1.0',
  `default_tax_rate2` int(11) NOT NULL DEFAULT 0,
  `dateformat` int(11) NOT NULL,
  `sales_prefix` varchar(20) DEFAULT NULL,
  `quote_prefix` varchar(20) DEFAULT NULL,
  `purchase_prefix` varchar(20) DEFAULT NULL,
  `transfer_prefix` varchar(20) DEFAULT NULL,
  `delivery_prefix` varchar(20) DEFAULT NULL,
  `payment_prefix` varchar(20) DEFAULT NULL,
  `return_prefix` varchar(20) DEFAULT NULL,
  `returnp_prefix` varchar(20) DEFAULT NULL,
  `expense_prefix` varchar(20) DEFAULT NULL,
  `item_addition` tinyint(1) NOT NULL DEFAULT 0,
  `theme` varchar(20) NOT NULL,
  `product_serial` tinyint(4) NOT NULL,
  `default_discount` int(11) NOT NULL,
  `product_discount` tinyint(1) NOT NULL DEFAULT 0,
  `discount_method` tinyint(4) NOT NULL,
  `tax1` tinyint(4) NOT NULL,
  `tax2` tinyint(4) NOT NULL,
  `overselling` tinyint(1) NOT NULL DEFAULT 0,
  `restrict_user` tinyint(4) NOT NULL DEFAULT 0,
  `restrict_calendar` tinyint(4) NOT NULL DEFAULT 0,
  `timezone` varchar(100) DEFAULT NULL,
  `iwidth` int(11) NOT NULL DEFAULT 0,
  `iheight` int(11) NOT NULL,
  `twidth` int(11) NOT NULL,
  `theight` int(11) NOT NULL,
  `watermark` tinyint(1) DEFAULT NULL,
  `reg_ver` tinyint(1) DEFAULT NULL,
  `allow_reg` tinyint(1) DEFAULT NULL,
  `reg_notification` tinyint(1) DEFAULT NULL,
  `auto_reg` tinyint(1) DEFAULT NULL,
  `protocol` varchar(20) NOT NULL DEFAULT 'mail',
  `mailpath` varchar(55) DEFAULT '/usr/sbin/sendmail',
  `smtp_host` varchar(100) DEFAULT NULL,
  `smtp_user` varchar(100) DEFAULT NULL,
  `smtp_pass` varchar(255) DEFAULT NULL,
  `smtp_port` varchar(10) DEFAULT '25',
  `smtp_crypto` varchar(10) DEFAULT NULL,
  `corn` datetime DEFAULT NULL,
  `customer_group` int(11) NOT NULL,
  `default_email` varchar(100) NOT NULL,
  `mmode` tinyint(1) NOT NULL,
  `bc_fix` tinyint(4) NOT NULL DEFAULT 0,
  `auto_detect_barcode` tinyint(1) NOT NULL DEFAULT 0,
  `captcha` tinyint(1) NOT NULL DEFAULT 1,
  `reference_format` tinyint(1) NOT NULL DEFAULT 1,
  `racks` tinyint(1) DEFAULT 0,
  `attributes` tinyint(1) NOT NULL DEFAULT 0,
  `product_expiry` tinyint(1) NOT NULL DEFAULT 0,
  `decimals` tinyint(2) NOT NULL DEFAULT 2,
  `qty_decimals` tinyint(2) NOT NULL DEFAULT 2,
  `decimals_sep` varchar(2) NOT NULL DEFAULT '.',
  `thousands_sep` varchar(2) NOT NULL DEFAULT ',',
  `invoice_view` tinyint(1) DEFAULT 0,
  `default_biller` int(11) DEFAULT NULL,
  `envato_username` varchar(50) DEFAULT NULL,
  `purchase_code` varchar(100) DEFAULT NULL,
  `rtl` tinyint(1) DEFAULT 0,
  `each_spent` decimal(15,4) DEFAULT NULL,
  `ca_point` tinyint(4) DEFAULT NULL,
  `each_sale` decimal(15,4) DEFAULT NULL,
  `sa_point` tinyint(4) DEFAULT NULL,
  `update` tinyint(1) DEFAULT 0,
  `sac` tinyint(1) DEFAULT 0,
  `display_all_products` tinyint(1) DEFAULT 0,
  `display_symbol` tinyint(1) DEFAULT NULL,
  `symbol` varchar(50) DEFAULT NULL,
  `remove_expired` tinyint(1) DEFAULT 0,
  `barcode_separator` varchar(2) NOT NULL DEFAULT '-',
  `set_focus` tinyint(1) NOT NULL DEFAULT 0,
  `price_group` int(11) DEFAULT NULL,
  `barcode_img` tinyint(1) NOT NULL DEFAULT 1,
  `ppayment_prefix` varchar(20) DEFAULT 'POP',
  `disable_editing` smallint(6) DEFAULT 90,
  `qa_prefix` varchar(55) DEFAULT NULL,
  `update_cost` tinyint(1) DEFAULT NULL,
  `apis` tinyint(1) NOT NULL DEFAULT 0,
  `state` varchar(100) DEFAULT NULL,
  `pdf_lib` varchar(20) DEFAULT 'dompdf',
  `use_code_for_slug` tinyint(1) DEFAULT NULL,
  `ws_barcode_type` varchar(10) DEFAULT 'weight',
  `ws_barcode_chars` tinyint(4) DEFAULT NULL,
  `flag_chars` tinyint(4) DEFAULT NULL,
  `item_code_start` tinyint(4) DEFAULT NULL,
  `item_code_chars` tinyint(4) DEFAULT NULL,
  `price_start` tinyint(4) DEFAULT NULL,
  `price_chars` tinyint(4) DEFAULT NULL,
  `price_divide_by` int(11) DEFAULT NULL,
  `weight_start` tinyint(4) DEFAULT NULL,
  `weight_chars` tinyint(4) DEFAULT NULL,
  `weight_divide_by` int(11) DEFAULT NULL,
  PRIMARY KEY (`setting_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_settings` (`setting_id`, `logo`, `logo2`, `site_name`, `language`, `default_warehouse`, `accounting_method`, `default_currency`, `default_tax_rate`, `rows_per_page`, `version`, `default_tax_rate2`, `dateformat`, `sales_prefix`, `quote_prefix`, `purchase_prefix`, `transfer_prefix`, `delivery_prefix`, `payment_prefix`, `return_prefix`, `returnp_prefix`, `expense_prefix`, `item_addition`, `theme`, `product_serial`, `default_discount`, `product_discount`, `discount_method`, `tax1`, `tax2`, `overselling`, `restrict_user`, `restrict_calendar`, `timezone`, `iwidth`, `iheight`, `twidth`, `theight`, `watermark`, `reg_ver`, `allow_reg`, `reg_notification`, `auto_reg`, `protocol`, `mailpath`, `smtp_host`, `smtp_user`, `smtp_pass`, `smtp_port`, `smtp_crypto`, `corn`, `customer_group`, `default_email`, `mmode`, `bc_fix`, `auto_detect_barcode`, `captcha`, `reference_format`, `racks`, `attributes`, `product_expiry`, `decimals`, `qty_decimals`, `decimals_sep`, `thousands_sep`, `invoice_view`, `default_biller`, `envato_username`, `purchase_code`, `rtl`, `each_spent`, `ca_point`, `each_sale`, `sa_point`, `update`, `sac`, `display_all_products`, `display_symbol`, `symbol`, `remove_expired`, `barcode_separator`, `set_focus`, `price_group`, `barcode_img`, `ppayment_prefix`, `disable_editing`, `qa_prefix`, `update_cost`, `apis`, `state`, `pdf_lib`, `use_code_for_slug`, `ws_barcode_type`, `ws_barcode_chars`, `flag_chars`, `item_code_start`, `item_code_chars`, `price_start`, `price_chars`, `price_divide_by`, `weight_start`, `weight_chars`, `weight_divide_by`) VALUES (1, 'bil_logo.png', 'bil_logo1.png', 'RecallGreen', 'english', 2, 0, 'BDT', 0, 10, '3.4.52', 1, 5, 'SALE', 'QUOTE', 'PO', 'TR', 'DO', 'IPAY', 'SR', 'PR', '', 0, 'default', 1, 1, 1, 1, 0, 1, 0, 1, 0, 'Asia/Dhaka', 800, 800, 150, 150, 0, 0, 0, 0, NULL, 'mail', '/usr/sbin/sendmail', 'pop.gmail.com', 'contact@sma.tecdiary.org', 'jEFTM4T63AiQ9dsidxhPKt9CIg4HQjCN58n/RW9vmdC/UDXCzRLR469ziZ0jjpFlbOg43LyoSmpJLBkcAHh0Yw==', '25', NULL, NULL, 1, 'orders@recallgreen.com', 0, 4, 1, 0, 2, 1, 1, 0, 0, 0, '.', ',', 0, 6, 'mmislamimon', '406be2bb-5bd5-4141-8dc4-2dc904a29ab9', 0, NULL, NULL, NULL, NULL, 0, 1, 1, 2, 'TK', 0, '-', 0, 1, 1, 'POP', 90, '', 0, 0, 'AN', 'dompdf', 0, 'weight', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);


#
# TABLE STRUCTURE FOR: sma_skrill
#

DROP TABLE IF EXISTS `sma_skrill`;

CREATE TABLE `sma_skrill` (
  `id` int(11) NOT NULL,
  `active` tinyint(4) NOT NULL,
  `account_email` varchar(255) NOT NULL DEFAULT 'testaccount2@moneybookers.com',
  `secret_word` varchar(20) NOT NULL DEFAULT 'mbtest',
  `skrill_currency` varchar(3) NOT NULL DEFAULT 'USD',
  `fixed_charges` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `extra_charges_my` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `extra_charges_other` decimal(25,4) NOT NULL DEFAULT 0.0000,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

INSERT INTO `sma_skrill` (`id`, `active`, `account_email`, `secret_word`, `skrill_currency`, `fixed_charges`, `extra_charges_my`, `extra_charges_other`) VALUES (1, 1, 'testaccount2@moneybookers.com', 'mbtest', 'USD', '0.0000', '0.0000', '0.0000');


#
# TABLE STRUCTURE FOR: sma_stock_count_items
#

DROP TABLE IF EXISTS `sma_stock_count_items`;

CREATE TABLE `sma_stock_count_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `stock_count_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(50) DEFAULT NULL,
  `product_name` varchar(255) DEFAULT NULL,
  `product_variant` varchar(55) DEFAULT NULL,
  `product_variant_id` int(11) DEFAULT NULL,
  `expected` decimal(15,4) NOT NULL,
  `counted` decimal(15,4) NOT NULL,
  `cost` decimal(25,4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `stock_count_id` (`stock_count_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_stock_counts
#

DROP TABLE IF EXISTS `sma_stock_counts`;

CREATE TABLE `sma_stock_counts` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `reference_no` varchar(55) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `type` varchar(10) NOT NULL,
  `initial_file` varchar(50) NOT NULL,
  `final_file` varchar(50) DEFAULT NULL,
  `brands` varchar(50) DEFAULT NULL,
  `brand_names` varchar(100) DEFAULT NULL,
  `categories` varchar(50) DEFAULT NULL,
  `category_names` varchar(100) DEFAULT NULL,
  `note` text DEFAULT NULL,
  `products` int(11) DEFAULT NULL,
  `rows` int(11) DEFAULT NULL,
  `differences` int(11) DEFAULT NULL,
  `matches` int(11) DEFAULT NULL,
  `missing` int(11) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `updated_by` int(11) DEFAULT NULL,
  `updated_at` datetime DEFAULT NULL,
  `finalized` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (1, '2021-12-16 12:44:00', '', 1, 'full', 'e572fd881a9003140219ad79b62d049f.csv', NULL, '', '', '', '', NULL, 2, 2, NULL, NULL, NULL, 1, NULL, NULL, NULL);
INSERT INTO `sma_stock_counts` (`id`, `date`, `reference_no`, `warehouse_id`, `type`, `initial_file`, `final_file`, `brands`, `brand_names`, `categories`, `category_names`, `note`, `products`, `rows`, `differences`, `matches`, `missing`, `created_by`, `updated_by`, `updated_at`, `finalized`) VALUES (2, '2021-12-16 12:45:00', '', 2, 'full', '1a83fe7333907d6a77f565c8b2911177.csv', NULL, '', '', '', '', NULL, 2, 2, NULL, NULL, NULL, 1, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_suspended_bills
#

DROP TABLE IF EXISTS `sma_suspended_bills`;

CREATE TABLE `sma_suspended_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `customer_id` int(11) NOT NULL,
  `customer` varchar(55) DEFAULT NULL,
  `count` int(11) NOT NULL,
  `order_discount_id` varchar(20) DEFAULT NULL,
  `order_tax_id` int(11) DEFAULT NULL,
  `total` decimal(25,4) NOT NULL,
  `biller_id` int(11) DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `created_by` int(11) NOT NULL,
  `suspend_note` varchar(255) DEFAULT NULL,
  `shipping` decimal(15,4) DEFAULT 0.0000,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_suspended_items
#

DROP TABLE IF EXISTS `sma_suspended_items`;

CREATE TABLE `sma_suspended_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `suspend_id` int(11) unsigned NOT NULL,
  `product_id` int(11) unsigned NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `net_unit_price` decimal(25,4) NOT NULL,
  `unit_price` decimal(25,4) NOT NULL,
  `quantity` decimal(15,4) DEFAULT 0.0000,
  `warehouse_id` int(11) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `discount` varchar(55) DEFAULT NULL,
  `item_discount` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) NOT NULL,
  `serial_no` varchar(255) DEFAULT NULL,
  `option_id` int(11) DEFAULT NULL,
  `product_type` varchar(20) DEFAULT NULL,
  `real_unit_price` decimal(25,4) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `comment` varchar(255) DEFAULT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_tax_rates
#

DROP TABLE IF EXISTS `sma_tax_rates`;

CREATE TABLE `sma_tax_rates` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(55) NOT NULL,
  `code` varchar(10) DEFAULT NULL,
  `rate` decimal(12,4) NOT NULL,
  `type` varchar(50) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (1, 'No Tax', 'NT', '0.0000', '2');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (2, 'VAT @10%', 'VAT10', '10.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (3, 'GST @6%', 'GST', '6.0000', '1');
INSERT INTO `sma_tax_rates` (`id`, `name`, `code`, `rate`, `type`) VALUES (4, 'VAT @20%', 'VT20', '20.0000', '1');


#
# TABLE STRUCTURE FOR: sma_transfer_items
#

DROP TABLE IF EXISTS `sma_transfer_items`;

CREATE TABLE `sma_transfer_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transfer_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `product_code` varchar(55) NOT NULL,
  `product_name` varchar(255) NOT NULL,
  `option_id` int(11) DEFAULT NULL,
  `expiry` date DEFAULT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `tax_rate_id` int(11) DEFAULT NULL,
  `tax` varchar(55) DEFAULT NULL,
  `item_tax` decimal(25,4) DEFAULT NULL,
  `net_unit_cost` decimal(25,4) DEFAULT NULL,
  `subtotal` decimal(25,4) DEFAULT NULL,
  `quantity_balance` decimal(15,4) NOT NULL,
  `unit_cost` decimal(25,4) DEFAULT NULL,
  `real_unit_cost` decimal(25,4) DEFAULT NULL,
  `date` date DEFAULT NULL,
  `warehouse_id` int(11) DEFAULT NULL,
  `product_unit_id` int(11) DEFAULT NULL,
  `product_unit_code` varchar(10) DEFAULT NULL,
  `unit_quantity` decimal(15,4) NOT NULL,
  `gst` varchar(20) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `transfer_id` (`transfer_id`),
  KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_transfers
#

DROP TABLE IF EXISTS `sma_transfers`;

CREATE TABLE `sma_transfers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `transfer_no` varchar(55) NOT NULL,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `from_warehouse_id` int(11) NOT NULL,
  `from_warehouse_code` varchar(55) NOT NULL,
  `from_warehouse_name` varchar(55) NOT NULL,
  `to_warehouse_id` int(11) NOT NULL,
  `to_warehouse_code` varchar(55) NOT NULL,
  `to_warehouse_name` varchar(55) NOT NULL,
  `note` varchar(1000) DEFAULT NULL,
  `total` decimal(25,4) DEFAULT NULL,
  `total_tax` decimal(25,4) DEFAULT NULL,
  `grand_total` decimal(25,4) DEFAULT NULL,
  `created_by` varchar(255) DEFAULT NULL,
  `status` varchar(55) NOT NULL DEFAULT 'pending',
  `shipping` decimal(25,4) NOT NULL DEFAULT 0.0000,
  `attachment` varchar(55) DEFAULT NULL,
  `cgst` decimal(25,4) DEFAULT NULL,
  `sgst` decimal(25,4) DEFAULT NULL,
  `igst` decimal(25,4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_units
#

DROP TABLE IF EXISTS `sma_units`;

CREATE TABLE `sma_units` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(10) NOT NULL,
  `name` varchar(55) NOT NULL,
  `base_unit` int(11) DEFAULT NULL,
  `operator` varchar(1) DEFAULT NULL,
  `unit_value` varchar(55) DEFAULT NULL,
  `operation_value` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `base_unit` (`base_unit`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (3, 'KG', 'KG', NULL, NULL, NULL, NULL);
INSERT INTO `sma_units` (`id`, `code`, `name`, `base_unit`, `operator`, `unit_value`, `operation_value`) VALUES (2, 'Pcs', 'pcs', NULL, NULL, NULL, NULL);


#
# TABLE STRUCTURE FOR: sma_user_logins
#

DROP TABLE IF EXISTS `sma_user_logins`;

CREATE TABLE `sma_user_logins` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `company_id` int(11) DEFAULT NULL,
  `ip_address` varbinary(16) NOT NULL,
  `login` varchar(100) NOT NULL,
  `time` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1294 DEFAULT CHARSET=utf8;

INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1290, 6, NULL, '116.204.230.19', 'rashed', '2023-04-04 09:34:02');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1291, 4, NULL, '103.114.20.114', 'root@thebluefog.com', '2023-05-02 10:42:55');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1292, 4, NULL, '103.114.20.114', 'root@thebluefog.com', '2023-05-02 10:43:34');
INSERT INTO `sma_user_logins` (`id`, `user_id`, `company_id`, `ip_address`, `login`, `time`) VALUES (1293, 4, NULL, '103.114.20.114', 'root@thebluefog.com', '2023-05-02 10:43:48');


#
# TABLE STRUCTURE FOR: sma_users
#

DROP TABLE IF EXISTS `sma_users`;

CREATE TABLE `sma_users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `last_ip_address` varbinary(45) DEFAULT NULL,
  `ip_address` varbinary(45) NOT NULL,
  `username` varchar(100) NOT NULL,
  `password` varchar(40) NOT NULL,
  `salt` varchar(40) DEFAULT NULL,
  `email` varchar(100) NOT NULL,
  `activation_code` varchar(40) DEFAULT NULL,
  `forgotten_password_code` varchar(40) DEFAULT NULL,
  `forgotten_password_time` int(11) unsigned DEFAULT NULL,
  `remember_code` varchar(40) DEFAULT NULL,
  `created_on` int(11) unsigned NOT NULL,
  `last_login` int(11) unsigned DEFAULT NULL,
  `active` tinyint(1) unsigned DEFAULT NULL,
  `first_name` varchar(50) DEFAULT NULL,
  `last_name` varchar(50) DEFAULT NULL,
  `company` varchar(100) DEFAULT NULL,
  `phone` varchar(20) DEFAULT NULL,
  `avatar` varchar(55) DEFAULT NULL,
  `gender` varchar(20) DEFAULT NULL,
  `group_id` int(10) unsigned NOT NULL,
  `warehouse_id` int(10) unsigned DEFAULT NULL,
  `biller_id` int(10) unsigned DEFAULT NULL,
  `company_id` int(11) DEFAULT NULL,
  `show_cost` tinyint(1) DEFAULT 0,
  `show_price` tinyint(1) DEFAULT 0,
  `award_points` int(11) DEFAULT 0,
  `view_right` tinyint(1) NOT NULL DEFAULT 0,
  `edit_right` tinyint(1) NOT NULL DEFAULT 0,
  `allow_discount` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `group_id` (`group_id`,`warehouse_id`,`biller_id`),
  KEY `group_id_2` (`group_id`,`company_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;

INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (6, '116.204.230.19', '116.204.230.23', 'rashed', '6bbc4760a9ea65c31aad2104c8db64a9aec762ef', NULL, 'rashedul.107@gmail.com', NULL, NULL, NULL, '6b01348f12c39b03d5c2b22a224a3bf7398fd66b', 1648132374, 1680532442, 1, 'Rashedul', 'Islam', 'RecallGreen ', '01717137791', NULL, 'male', 1, 0, 0, NULL, 0, 0, 0, 1, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (2, '37.111.218.249', '116.204.230.24', 'jamuna', '697fe2841725220ba3a7d85877d2c9a65b795aba', NULL, '0rdesr@recallgreen.com', NULL, NULL, NULL, '96e738fadaa267b94548faeb543217bb943f74e5', 1639637110, 1680156622, 1, 'Jamuna ', 'Outlet', 'RecallGreen', '01711134541', NULL, 'male', 5, 2, 6, NULL, 0, 0, 0, 0, 0, 1);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (3, NULL, '116.204.230.30', 'jfp', 'e9a26c4b17b289d265668a84a4786ba666d30d9d', NULL, 'info@recallgreen.com', NULL, NULL, NULL, NULL, 1643445820, 1643445820, 1, 'Jamuna Futre park', 'Branch ', 'RecallGreen', '01711134541', NULL, 'male', 5, 2, 6, NULL, 0, 0, 0, 0, 0, 1);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (4, '103.114.20.114', '\0\0', 'System Admin', '4453cec9bee97b0b1395c80ae7567488b80235bf', NULL, 'root@thebluefog.com', NULL, NULL, NULL, 'c3786842d705192b0d9af27e46e9445e549d6072', 1351661704, 1683002628, 1, 'System', 'Admin', 'RecallGreen', 'xxxx', NULL, 'male', 1, NULL, NULL, NULL, 0, 0, 0, 0, 0, 0);
INSERT INTO `sma_users` (`id`, `last_ip_address`, `ip_address`, `username`, `password`, `salt`, `email`, `activation_code`, `forgotten_password_code`, `forgotten_password_time`, `remember_code`, `created_on`, `last_login`, `active`, `first_name`, `last_name`, `company`, `phone`, `avatar`, `gender`, `group_id`, `warehouse_id`, `biller_id`, `company_id`, `show_cost`, `show_price`, `award_points`, `view_right`, `edit_right`, `allow_discount`) VALUES (5, '116.204.230.28', '37.111.219.85', 'recallgreen', '341540d6babad6666d8848c52d6b2c463b14a61f', NULL, 'rashed@recallgreen.com', NULL, NULL, NULL, '2d54136ff4854f86c01fbae580073203c6dc66f8', 1645595835, 1679984680, 1, 'RecallGreen ', 'Control', 'RecallGreen', '01711134541', '5a4f533747f0a2eaab45f126ff1889b0.png', 'male', 1, 0, 0, NULL, 0, 0, 0, 1, 0, 0);


#
# TABLE STRUCTURE FOR: sma_variants
#

DROP TABLE IF EXISTS `sma_variants`;

CREATE TABLE `sma_variants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(55) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

#
# TABLE STRUCTURE FOR: sma_warehouses
#

DROP TABLE IF EXISTS `sma_warehouses`;

CREATE TABLE `sma_warehouses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) NOT NULL,
  `name` varchar(255) NOT NULL,
  `address` varchar(255) NOT NULL,
  `map` varchar(255) DEFAULT NULL,
  `phone` varchar(55) DEFAULT NULL,
  `email` varchar(55) DEFAULT NULL,
  `price_group_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (1, 'WHI', 'RG Central ', 'House 152/20, Road-9, Block-B\r\nMirpur 12, Dhaka', NULL, '+8801717137791', 'orders@recallgreen.com', 1);
INSERT INTO `sma_warehouses` (`id`, `code`, `name`, `address`, `map`, `phone`, `email`, `price_group_id`) VALUES (2, 'WHII', 'Jamuna Store', 'Level -2, Jamuna City, bashundhara', NULL, '01711134541', '0rders@recallgreen.com', 1);


#
# TABLE STRUCTURE FOR: sma_warehouses_products
#

DROP TABLE IF EXISTS `sma_warehouses_products`;

CREATE TABLE `sma_warehouses_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `rack` varchar(55) DEFAULT NULL,
  `avg_cost` decimal(25,4) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `product_id` (`product_id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1189 DEFAULT CHARSET=utf8;

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


#
# TABLE STRUCTURE FOR: sma_warehouses_products_variants
#

DROP TABLE IF EXISTS `sma_warehouses_products_variants`;

CREATE TABLE `sma_warehouses_products_variants` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `option_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `warehouse_id` int(11) NOT NULL,
  `quantity` decimal(15,4) NOT NULL,
  `rack` varchar(55) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `option_id` (`option_id`),
  KEY `product_id` (`product_id`),
  KEY `warehouse_id` (`warehouse_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

